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  13584 SyS_rt_sigsuspend 0 S logd              logd
10054system         556     1   15876   3680 do_wait 0 S qseecomd                    qseecomd
10055system         557     1   17460   3664 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   3092 binder_ioctl 0 S android.hardware.boot@1.0-service android.hardware.boot@1.0-service
10067system         591     1   13968   3296 binder_ioctl 0 S android.hardware.gatekeeper@1.0-service-qti android.hardware.gatekeeper@1.0-service-qti
10068hsm            592     1 2127108   6120 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   3128 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   4900 binder_ioctl 0 S vr_hwc                 vr_hwc
10111system         756     1 2120204   5736 binder_ioctl 0 S android.hardware.neuralnetworks@1.0-service-paintbox android.hardware.neuralnetworks@1.0-service-paintbox
10112audioserver    757     1   47928  14872 binder_ioctl 0 S android.hardware.audio@2.0-service android.hardware.audio@2.0-service
10113hsm            758     1   18672   5468 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  32108 binder_ioctl 0 S android.hardware.camera.provider@2.4-service_64 android.hardware.camera.provider@2.4-service_64
10116media          761     1   11312   3092 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   4140 binder_ioctl 0 S android.hardware.drm@1.0-service android.hardware.drm@1.0-service
10119media          765     1   19668   4300 binder_ioctl 0 S android.hardware.drm@1.1-service.clearkey android.hardware.drm@1.1-service.clearkey
10120media          766     1   23804   5076 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   3092 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   5092 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   5268 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   5256 binder_ioctl 0 S android.hardware.weaver@1.0-service.citadel android.hardware.weaver@1.0-service.citadel
10129wifi           783     1   22948   8688 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   3820 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   8348 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  51796 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  12116 binder_ioctl 0 S mediaserver            mediaserver
10177statsd         887     1 203499360 33804 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   5104 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  21056 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   3736 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   3132 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 diag_socket_read 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   6040 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  48396 SyS_epoll_wait 0 S com.google.android.apps.tips app_process64
10235u0_a68       12540 23897 3676536  48976 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
10239root         12895     2       0      0 0       0 S [kworker/2:0]               1
10240root         12897     2       0      0 worker_thread 0 S [kworker/6:1]         1
10241u0_a26       12973 23897 3674836  50256 SyS_epoll_wait 0 S com.android.providers.calendar app_process64
10242root         13012     2       0      0 worker_thread 0 S [kworker/0:1]         1
10243root         13068     2       0      0 worker_thread 0 S [kworker/1:0]         1
10244root         13074     2       0      0 worker_thread 0 S [kworker/2:2]         1
10245root         13085     2       0      0 worker_thread 0 S [kworker/3:0]         1
10246root         13086     2       0      0 worker_thread 0 S [kworker/1:2]         1
10247root         13087     2       0      0 worker_thread 0 S [kworker/0:0]         1
10248root         13089     2       0      0 worker_thread 0 S [kworker/3:2]         1
10249root         13090     2       0      0 worker_thread 0 S [kworker/2:1]         1
10250root         13091     2       0      0 worker_thread 0 S [kworker/1:1]         1
10251root         13092     2       0      0 worker_thread 0 S [kworker/0:2]         1
10252root         13107  1007    8736   1724 SyS_rt_sigsuspend 0 S sh                sh
10253root         13109 13107    8736    724 SyS_rt_sigsuspend 0 S sh                sh
10254root         13110 13109   10488   2128 0       0 R ps                          toybox
10255root         18284     2       0      0 worker_thread 0 S [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   5216 binder_ioctl 0 S netd                   netd
10263system       23896     1 2173536  27000 SyS_epoll_wait 0 S surfaceflinger       surfaceflinger
10264root         23897     1 4254080  81788 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 4908824 358764 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  65828 SyS_epoll_wait 0 S com.android.bluetooth app_process64
10271u0_a90       24133 23897 3745152  92732 SyS_epoll_wait 0 S com.google.android.inputmethod.latin app_process64
10272u0_a22       24151 23897 3842840 141912 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  74348 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  63452 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 123804 SyS_epoll_wait 0 S com.google.android.gms.persistent app_process64
10289u0_a148      24754 23897 3695616  63700 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 116248 SyS_epoll_wait 0 S com.google.android.apps.nexuslauncher app_process64
10294u0_a6        24894 23897 3691304  53536 SyS_epoll_wait 0 S com.google.process.gservices app_process64
10295u0_a6        25017 23897 3955424 111168 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  75268 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 worker_thread 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  58160 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 13108 shell svc 13107
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
11498root         12895 12895 kworker/2:0
11499root         12897 12897 kworker/6:1
11500u0_a26       12973 12973 viders.calendar
11501u0_a26       12973 12978 Jit thread pool
11502u0_a26       12973 12979 Signal Catcher
11503u0_a26       12973 12980 ADB-JDWP Connec
11504u0_a26       12973 12981 ReferenceQueueD
11505u0_a26       12973 12982 FinalizerDaemon
11506u0_a26       12973 12983 FinalizerWatchd
11507u0_a26       12973 12984 HeapTaskDaemon
11508u0_a26       12973 12985 Binder:12973_1
11509u0_a26       12973 12986 Binder:12973_2
11510u0_a26       12973 12987 Binder:12973_3
11511u0_a26       12973 12988 Profile Saver
11512u0_a26       12973 12992 queued-work-loo
11513root         13012 13012 kworker/0:1
11514root         13068 13068 kworker/1:0
11515root         13074 13074 kworker/2:2
11516root         13085 13085 kworker/3:0
11517root         13086 13086 kworker/1:2
11518root         13087 13087 kworker/0:0
11519root         13089 13089 kworker/3:2
11520root         13090 13090 kworker/2:1
11521root         13091 13091 kworker/1:1
11522root         13092 13092 kworker/0:2
11523root         13107 13107 sh
11524root         13109 13109 sh
11525root         13111 13111 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 12974 ReferenceQueueD
11564root         23897 12975 FinalizerDaemon
11565root         23897 12976 FinalizerWatchd
11566root         23897 12977 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  13652 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   5736 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   5092 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   8688 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  51796 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   8684 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  12116 binder_ioctl 0 S mediaserver            mediaserver
12929statsd         887     1 203499360 33804 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   5104 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  21056 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   3036 do_sys_poll 0 S 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 diag_socket_read 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   6040 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  48648 SyS_epoll_wait 0 S com.google.android.apps.tips app_process64
12987u0_a68       12540 23897 3676536  48976 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
12991root         12895     2       0      0 worker_thread 0 S [kworker/2:0]         1
12992root         12897     2       0      0 worker_thread 0 S [kworker/6:1]         1
12993u0_a26       12973 23897 3674836  50516 SyS_epoll_wait 0 S com.android.providers.calendar app_process64
12994root         13012     2       0      0 worker_thread 0 S [kworker/0:1]         1
12995root         13068     2       0      0 worker_thread 0 S [kworker/1:0]         1
12996root         13074     2       0      0 worker_thread 0 S [kworker/2:2]         1
12997root         13085     2       0      0 worker_thread 0 S [kworker/3:0]         1
12998root         13086     2       0      0 worker_thread 0 S [kworker/1:2]         1
12999root         13087     2       0      0 worker_thread 0 S [kworker/0:0]         1
13000root         13089     2       0      0 worker_thread 0 S [kworker/3:2]         1
13001root         13090     2       0      0 worker_thread 0 S [kworker/2:1]         1
13002root         13091     2       0      0 worker_thread 0 S [kworker/1:1]         1
13003root         13092     2       0      0 worker_thread 0 S [kworker/0:2]         1
13004root         13418  1007    8736   1716 SyS_rt_sigsuspend 0 S sh                sh
13005root         13420 13418    8736    716 SyS_rt_sigsuspend 0 S sh                sh
13006root         13421 13420   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 R [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   5216 binder_ioctl 0 S netd                   netd
13015system       23896     1 2173536  27020 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 4909880 380748 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  65828 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 3841656 139196 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  74348 SyS_epoll_wait 0 S com.android.phone    app_process64
13032u0_a59       24382 23897 3683284  53904 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 46188 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 124196 SyS_epoll_wait 0 S com.google.android.gms.persistent app_process64
13041u0_a148      24754 23897 3695616  63700 SyS_epoll_wait 0 S com.google.android.projection.gearhead:shared app_process64
13042u0_a34       24772 23897 3683408  53996 SyS_epoll_wait 0 S com.google.android.apps.dreamliner app_process64
13043u0_a39       24795 23897 3697696  64844 SyS_epoll_wait 0 S com.google.android.setupwizard app_process64
13044u0_a15       24808 23898 1019852  52928 SyS_epoll_wait 0 S com.google.android.as app_process32
13045u0_a25       24827 23897 3769836 114832 SyS_epoll_wait 0 S com.google.android.apps.nexuslauncher app_process64
13046u0_a6        24894 23897 3691304  53536 SyS_epoll_wait 0 S com.google.process.gservices app_process64
13047u0_a6        25017 23897 3955424 111168 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  75268 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 worker_thread 0 S [kworker/u16:20]      2
13054u0_a92       27538 23897 3678696  46048 SyS_epoll_wait 0 S com.qualcomm.telephony app_process64
13055u0_a23       28152 23897 3687080  58160 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 13419 shell svc 13418
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
14250root         12895 12895 kworker/2:0
14251root         12897 12897 kworker/6:1
14252u0_a26       12973 12973 viders.calendar
14253u0_a26       12973 12978 Jit thread pool
14254u0_a26       12973 12979 Signal Catcher
14255u0_a26       12973 12980 ADB-JDWP Connec
14256u0_a26       12973 12981 ReferenceQueueD
14257u0_a26       12973 12982 FinalizerDaemon
14258u0_a26       12973 12983 FinalizerWatchd
14259u0_a26       12973 12984 HeapTaskDaemon
14260u0_a26       12973 12985 Binder:12973_1
14261u0_a26       12973 12986 Binder:12973_2
14262u0_a26       12973 12987 Binder:12973_3
14263u0_a26       12973 12988 Profile Saver
14264u0_a26       12973 12992 queued-work-loo
14265root         13012 13012 kworker/0:1
14266root         13068 13068 kworker/1:0
14267root         13074 13074 kworker/2:2
14268root         13085 13085 kworker/3:0
14269root         13086 13086 kworker/1:2
14270root         13087 13087 kworker/0:0
14271root         13089 13089 kworker/3:2
14272root         13090 13090 kworker/2:1
14273root         13091 13091 kworker/1:1
14274root         13092 13092 kworker/0:2
14275root         13418 13418 sh
14276root         13420 13420 sh
14277root         13422 13422 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       23968 13414 Instrumentation
14443system       24047 24047 sensors@1.0-ser
14444system       24047 24049 sensors@1.0-ser
14445system       24047 24053 sensors@1.0-ser
14446system       24047 24056 sensors@1.0-ser
14447system       24047 24057 HwBinder:24047_
14448system       24047 24064 sensors@1.0-ser
14449system       24047 24065 sensors@1.0-ser
14450system       24047 24066 sensors@1.0-ser
14451system       24047 24115 HwBinder:24047_
14452system       24047 24116 HwBinder:24047_
14453bluetooth    24119 24119 droid.bluetooth
14454bluetooth    24119 24124 Jit thread pool
14455bluetooth    24119 24125 Signal Catcher
14456bluetooth    24119 24126 ADB-JDWP Connec
14457bluetooth    24119 24127 ReferenceQueueD
14458bluetooth    24119 24128 FinalizerDaemon
14459bluetooth    24119 24129 FinalizerWatchd
14460bluetooth    24119 24130 HeapTaskDaemon
14461bluetooth    24119 24135 Binder:24119_1
14462bluetooth    24119 24139 Binder:24119_2
14463bluetooth    24119 24159 Binder:24119_3
14464bluetooth    24119 24171 Profile Saver
14465bluetooth    24119 24219 AdapterState
14466bluetooth    24119 24224 stack_manager
14467bluetooth    24119 24225 POSIX timer 0
14468bluetooth    24119 24226 POSIX timer 1
14469bluetooth    24119 24227 alarm_default_c
14470bluetooth    24119 24228 alarm_dispatche
14471bluetooth    24119 24229 BT Service Call
14472bluetooth    24119 24236 BluetoothActive
14473bluetooth    24119 24240 AudioPortEventH
14474bluetooth    24119 24380 BondStateMachin
14475bluetooth    24119 24408 BluetoothAdvert
14476bluetooth    24119 24410 BluetoothScanMa
14477bluetooth    24119 24415 queued-work-loo
14478bluetooth    24119 24418 hci_thread
14479bluetooth    24119 24420 HwBinder:24119_
14480bluetooth    24119 24511 bt_workqueue
14481bluetooth    24119 24512 btu message loo
14482bluetooth    24119 24521 BT Service Call
14483bluetooth    24119 24522 btif_sock
14484bluetooth    24119 24523 Binder:24119_4
14485bluetooth    24119 24524 Binder:24119_5
14486bluetooth    24119 24525 e.StateMachines
14487bluetooth    24119 24526 e.StateMachines
14488bluetooth    24119 24527 btif_a2dp_sourc
14489bluetooth    24119 24528 BluetoothHdpHan
14490bluetooth    24119 24529 droid.bluetooth
14491bluetooth    24119 24530 BluetoothMapHan
14492bluetooth    24119 24534 PbapHandlerThre
14493bluetooth    24119 24536 e.StateMachines
14494bluetooth    24119 24537 Thread-3
14495bluetooth    24119 24538 uipc-main
14496bluetooth    24119 24539 Thread-4
14497bluetooth    24119 24543 SapAcceptThread
14498bluetooth    24119 24545 Thread-6
14499bluetooth    24119 24546 Thread-7
14500bluetooth    24119 24547 Thread-8
14501bluetooth    24119 24548 Thread-9
14502bluetooth    24119 24661 Binder:24119_6
14503u0_a90       24133 24133 putmethod.latin
14504u0_a90       24133 24140 Jit thread pool
14505u0_a90       24133 24141 Signal Catcher
14506u0_a90       24133 24143 ADB-JDWP Connec
14507u0_a90       24133 24144 ReferenceQueueD
14508u0_a90       24133 24145 FinalizerDaemon
14509u0_a90       24133 24146 FinalizerWatchd
14510u0_a90       24133 24148 HeapTaskDaemon
14511u0_a90       24133 24149 Binder:24133_1
14512u0_a90       24133 24157 Binder:24133_2
14513u0_a90       24133 24162 Binder:24133_3
14514u0_a90       24133 24179 Profile Saver
14515u0_a90       24133 24217 queued-work-loo
14516u0_a90       24133 24218 ExUtils-P11-1
14517u0_a90       24133 24237 ExUtils-P9-1
14518u0_a90       24133 24431 Binder:24133_4
14519u0_a90       24133 24732 GoogleApiHandle
14520u0_a90       24133 24832 GAC_Executor[0]
14521u0_a90       24133 24844 MetricsManager
14522u0_a90       24133 24998 AnrDetector
14523u0_a90       24133 25008 NativeLogger-1
14524u0_a90       24133 25013 DwldManWrapper
14525u0_a90       24133 25070 ExUtils-P10-1
14526u0_a90       24133 25121 sp-control-1
14527u0_a90       24133 25129 GAC_Executor[1]
14528u0_a90       24133 25145 Primes-1
14529u0_a90       24133 25161 ExUtils-P1-1
14530u0_a90       24133 25162 Primes-2
14531u0_a90       24133 25451 Binder:24133_5
14532u0_a90       24133 25555 Binder:24133_6
14533u0_a90       24133 25998 DecoderWrapper
14534u0_a90       24133 12580 Binder:24133_7
14535u0_a22       24151 24151 ndroid.systemui
14536u0_a22       24151 24160 Jit thread pool
14537u0_a22       24151 24163 Signal Catcher
14538u0_a22       24151 24164 ADB-JDWP Connec
14539u0_a22       24151 24165 ReferenceQueueD
14540u0_a22       24151 24166 FinalizerDaemon
14541u0_a22       24151 24167 FinalizerWatchd
14542u0_a22       24151 24168 HeapTaskDaemon
14543u0_a22       24151 24169 Binder:24151_1
14544u0_a22       24151 24170 Binder:24151_2
14545u0_a22       24151 24177 Binder:24151_3
14546u0_a22       24151 24178 Profile Saver
14547u0_a22       24151 24247 smartspace-back
14548u0_a22       24151 24340 pool-1-thread-1
14549u0_a22       24151 24348 SoundPool
14550u0_a22       24151 24349 SoundPoolThread
14551u0_a22       24151 24359 Recents-HighRes
14552u0_a22       24151 24360 Recents-TaskRes
14553u0_a22       24151 24367 CCodecWatchdog
14554u0_a22       24151 24368 HwBinder:24151_
14555u0_a22       24151 24369 recents.fg
14556u0_a22       24151 24376 Binder:24151_4
14557u0_a22       24151 24390 async_sensor
14558u0_a22       24151 24406 Binder:24151_5
14559u0_a22       24151 24424 VolumeDialogCon
14560u0_a22       24151 24428 SysUiBg
14561u0_a22       24151 24436 queued-work-loo
14562u0_a22       24151 24437 RenderThread
14563u0_a22       24151 24438 ConnectivityThr
14564u0_a22       24151 24439 WifiTracker{876
14565u0_a22       24151 24449 TimeTick
14566u0_a22       24151 24457 FlashlightContr
14567u0_a22       24151 24486 Keyboard
14568u0_a22       24151 24488 Binder:24151_6
14569u0_a22       24151 24494 pool-3-thread-1
14570u0_a22       24151 24502 pool-5-thread-1
14571u0_a22       24151 24503 GrallocUploadTh
14572u0_a22       24151 24504 hwuiTask1
14573u0_a22       24151 24505 Thread-2
14574u0_a22       24151 25987 AudioTrack
14575webview_zygote 24180 24180 webview_zygote
14576webview_zygote 24180 24192 ReferenceQueueD
14577webview_zygote 24180 24193 FinalizerDaemon
14578webview_zygote 24180 24194 FinalizerWatchd
14579webview_zygote 24180 24195 HeapTaskDaemon
14580radio        24249 24249 .dataservices
14581radio        24249 24255 Jit thread pool
14582radio        24249 24256 Signal Catcher
14583radio        24249 24257 ADB-JDWP Connec
14584radio        24249 24258 ReferenceQueueD
14585radio        24249 24259 FinalizerDaemon
14586radio        24249 24260 FinalizerWatchd
14587radio        24249 24261 HeapTaskDaemon
14588radio        24249 24262 Binder:24249_1
14589radio        24249 24270 Binder:24249_2
14590radio        24249 24291 Profile Saver
14591radio        24249 24307 cneservice_thre
14592radio        24249 24323 CNEReceiver
14593radio        24249 24336 ConnectivityThr
14594radio        24249 24339 MainEventThread
14595radio        24249 24344 HwBinder:24249_
14596radio        24249 25165 Binder:24249_3
14597radio        24249 25166 MainEventThread
14598radio        24249 25176 queued-work-loo
14599root         24254 24254 kworker/5:0
14600radio        24263 24263 elephonyservice
14601radio        24263 24271 Jit thread pool
14602radio        24263 24272 Signal Catcher
14603radio        24263 24273 ADB-JDWP Connec
14604radio        24263 24274 ReferenceQueueD
14605radio        24263 24275 FinalizerDaemon
14606radio        24263 24276 FinalizerWatchd
14607radio        24263 24277 HeapTaskDaemon
14608radio        24263 24278 Binder:24263_1
14609radio        24263 24279 Binder:24263_2
14610radio        24263 24286 Binder:24263_3
14611radio        24263 24311 Profile Saver
14612radio        24263 25158 HwBinder:24263_
14613radio        24263 25159 AudioPortEventH
14614radio        24263 25160 queued-work-loo
14615root         24269 24269 kworker/4:0
14616radio        24280 24280 oid.grilservice
14617radio        24280 24288 Jit thread pool
14618radio        24280 24292 Signal Catcher
14619radio        24280 24299 ADB-JDWP Connec
14620radio        24280 24300 ReferenceQueueD
14621radio        24280 24301 FinalizerDaemon
14622radio        24280 24302 FinalizerWatchd
14623radio        24280 24303 HeapTaskDaemon
14624radio        24280 24304 Binder:24280_1
14625radio        24280 24308 Binder:24280_2
14626radio        24280 24326 Profile Saver
14627radio        24280 25107 Binder:24280_3
14628radio        24280 25117 HwBinder:24280_
14629radio        24290 24290 m.android.phone
14630radio        24290 24305 Jit thread pool
14631radio        24290 24310 Signal Catcher
14632radio        24290 24315 ADB-JDWP Connec
14633radio        24290 24316 ReferenceQueueD
14634radio        24290 24317 FinalizerDaemon
14635radio        24290 24318 FinalizerWatchd
14636radio        24290 24319 HeapTaskDaemon
14637radio        24290 24320 Binder:24290_1
14638radio        24290 24325 Binder:24290_2
14639radio        24290 24343 Profile Saver
14640radio        24290 24373 HwBinder:24290_
14641radio        24290 24377 EuiccConnector
14642radio        24290 24379 android.bg
14643radio        24290 24387 queued-work-loo
14644radio        24290 24399 GsmCellBroadcas
14645radio        24290 24402 GsmInboundSmsHa
14646radio        24290 24409 CellBroadcastHa
14647radio        24290 24411 CdmaInboundSmsH
14648radio        24290 24414 CdmaServiceCate
14649radio        24290 24429 Binder:24290_3
14650radio        24290 24432 LocaleTracker
14651radio        24290 24435 DcHandlerThread
14652radio        24290 24441 Binder:24290_4
14653radio        24290 24446 Binder:24290_5
14654radio        24290 24448 ImsServiceContr
14655radio        24290 24450 NetworkService
14656radio        24290 24455 DataService
14657radio        24290 24459 org.codeaurora.
14658radio        24290 24460 ImsConfigImplHa
14659radio        24290 24461 ImsSmsImpl
14660radio        24290 24462 CellularNetwork
14661radio        24290 24463 CellularDataSer
14662radio        24290 24468 ConnectivityThr
14663radio        24290 24471 Binder:24290_6
14664radio        24290 24501 Binder:24290_7
14665radio        24290 25668 ervice.Executor
14666u0_a59       24382 24382 id.ext.services
14667u0_a59       24382 24389 Jit thread pool
14668u0_a59       24382 24391 Signal Catcher
14669u0_a59       24382 24392 ADB-JDWP Connec
14670u0_a59       24382 24393 ReferenceQueueD
14671u0_a59       24382 24394 FinalizerDaemon
14672u0_a59       24382 24395 FinalizerWatchd
14673u0_a59       24382 24396 HeapTaskDaemon
14674u0_a59       24382 24397 Binder:24382_1
14675u0_a59       24382 24401 Binder:24382_2
14676u0_a59       24382 24403 Binder:24382_3
14677u0_a59       24382 24405 Binder:24382_4
14678u0_a59       24382 24416 Profile Saver
14679u0_a59       24382 24582 queued-work-loo
14680root         24613 24613 irq/79-1436400.
14681root         24617 24617 irq/80-114a000.
14682nfc          24655 24655 com.android.nfc
14683nfc          24655 24662 Jit thread pool
14684nfc          24655 24663 Signal Catcher
14685nfc          24655 24664 ADB-JDWP Connec
14686nfc          24655 24665 ReferenceQueueD
14687nfc          24655 24666 FinalizerDaemon
14688nfc          24655 24667 FinalizerWatchd
14689nfc          24655 24668 HeapTaskDaemon
14690nfc          24655 24669 Binder:24655_1
14691nfc          24655 24675 Binder:24655_2
14692nfc          24655 24692 Binder:24655_3
14693nfc          24655 24714 Profile Saver
14694nfc          24655 24915 AsyncTask #1
14695nfc          24655 24926 AsyncTask #1
14696nfc          24655 24927 HwBinder:24655_
14697nfc          24655 25000 Thread-2
14698nfc          24655 25001 Thread-3
14699nfc          24655 25002 Thread-4
14700nfc          24655 25003 SoundPool
14701nfc          24655 25004 SoundPoolThread
14702nfc          24655 25015 CCodecWatchdog
14703nfc          24655 25074 Binder:24655_4
14704nfc          24655 26061 Binder:24655_5
14705secure_element 24670 24670 com.android.se
14706secure_element 24670 24676 Jit thread pool
14707secure_element 24670 24677 Signal Catcher
14708secure_element 24670 24678 ADB-JDWP Connec
14709secure_element 24670 24679 ReferenceQueueD
14710secure_element 24670 24680 FinalizerDaemon
14711secure_element 24670 24681 FinalizerWatchd
14712secure_element 24670 24683 HeapTaskDaemon
14713secure_element 24670 24685 Binder:24670_1
14714secure_element 24670 24686 Binder:24670_2
14715secure_element 24670 24695 Binder:24670_3
14716secure_element 24670 24710 Profile Saver
14717secure_element 24670 24742 HwBinder:24670_
14718secure_element 24670 24749 queued-work-loo
14719radio        24691 24691 .ims.rcsservice
14720radio        24691 24701 Jit thread pool
14721radio        24691 24702 Signal Catcher
14722radio        24691 24704 ADB-JDWP Connec
14723radio        24691 24712 ReferenceQueueD
14724radio        24691 24715 FinalizerDaemon
14725radio        24691 24721 FinalizerWatchd
14726radio        24691 24722 HeapTaskDaemon
14727radio        24691 24723 Binder:24691_1
14728radio        24691 24724 Binder:24691_2
14729radio        24691 24753 Profile Saver
14730radio        24691 24783 Binder:24691_3
14731radio        24691 24786 Listener
14732radio        24691 24839 queued-work-loo
14733radio        24691 25522 EABServiceHandl
14734radio        24691 25882 Binder:24691_4
14735system       24703 24703 RestartDetector
14736system       24703 24711 Jit thread pool
14737system       24703 24713 Signal Catcher
14738system       24703 24716 ADB-JDWP Connec
14739system       24703 24717 ReferenceQueueD
14740system       24703 24718 FinalizerDaemon
14741system       24703 24719 FinalizerWatchd
14742system       24703 24725 HeapTaskDaemon
14743system       24703 24740 Binder:24703_1
14744system       24703 24747 Binder:24703_2
14745system       24703 24768 Profile Saver
14746system       24703 25947 Binder:24703_3
14747system       24703 25948 FileObserver
14748system       24703 25958 queued-work-loo
14749u0_a72       24726 24726 eui:sui_service
14750u0_a72       24726 24731 Jit thread pool
14751u0_a72       24726 24733 Signal Catcher
14752u0_a72       24726 24734 ADB-JDWP Connec
14753u0_a72       24726 24735 ReferenceQueueD
14754u0_a72       24726 24736 FinalizerDaemon
14755u0_a72       24726 24737 FinalizerWatchd
14756u0_a72       24726 24738 HeapTaskDaemon
14757u0_a72       24726 24739 Binder:24726_1
14758u0_a72       24726 24748 Binder:24726_2
14759u0_a72       24726 24751 Binder:24726_3
14760u0_a72       24726 24766 Profile Saver
14761u0_a72       24726 25402 Thread-2
14762u0_a72       24726 25403 queued-work-loo
14763u0_a72       24726 25406 HwBinder:24726_
14764u0_a72       24726 25539 Thread-2
14765u0_a6        24741 24741 .gms.persistent
14766u0_a6        24741 24750 Jit thread pool
14767u0_a6        24741 24752 Signal Catcher
14768u0_a6        24741 24759 ADB-JDWP Connec
14769u0_a6        24741 24760 ReferenceQueueD
14770u0_a6        24741 24761 FinalizerDaemon
14771u0_a6        24741 24762 FinalizerWatchd
14772u0_a6        24741 24763 HeapTaskDaemon
14773u0_a6        24741 24764 Binder:24741_1
14774u0_a6        24741 24767 Binder:24741_2
14775u0_a6        24741 24769 Binder:24741_3
14776u0_a6        24741 24834 Profile Saver
14777u0_a6        24741 25011 FileObserver
14778u0_a6        24741 25016 GlobalDispatchi
14779u0_a6        24741 25141 Binder:24741_4
14780u0_a6        24741 25144 Binder:24741_5
14781u0_a6        24741 25193 GoogleApiHandle
14782u0_a6        24741 25211 GlobalScheduler
14783u0_a6        24741 25239 ConnectivityThr
14784u0_a6        24741 25266 queued-work-loo
14785u0_a6        24741 25269 highpool[0]
14786u0_a6        24741 25276 highpool[1]
14787u0_a6        24741 25289 lowpool[0]
14788u0_a6        24741 25294 Binder:24741_6
14789u0_a6        24741 25296 lowpool[3]
14790u0_a6        24741 25302 Binder:24741_7
14791u0_a6        24741 25303 Binder:24741_8
14792u0_a6        24741 25320 lowpool[4]
14793u0_a6        24741 25344 Binder:24741_9
14794u0_a6        24741 25382 GAC_Executor[0]
14795u0_a6        24741 25385 highpool[2]
14796u0_a6        24741 25386 highpool[3]
14797u0_a6        24741 25391 FlpThread
14798u0_a6        24741 25487 GAC_Executor[1]
14799u0_a6        24741 25511 GeofencerStateM
14800u0_a6        24741 25512 RealContextHub
14801u0_a6        24741 25517 Thread-4
14802u0_a6        24741 25518 Thread-5
14803u0_a6        24741 25519 Thread-6
14804u0_a6        24741 25520 Thread-7
14805u0_a6        24741 25521 Thread-8
14806u0_a6        24741 25525 GoogleLocationS
14807u0_a6        24741 25548 Places
14808u0_a6        24741 25591 MSMuxTR-0
14809u0_a6        24741 26056 netscheduler-qu
14810u0_a6        24741 26166 Binder:24741_A
14811u0_a6        24741 26167 Binder:24741_B
14812u0_a6        24741 27059 NearbyMessages
14813u0_a6        24741 27109 NearbyDirectMai
14814u0_a6        24741 27168 lowpool[8]
14815u0_a6        24741 28229 Binder:24741_C
14816u0_a148      24754 24754 gearhead:shared
14817u0_a148      24754 24765 Jit thread pool
14818u0_a148      24754 24770 Signal Catcher
14819u0_a148      24754 24771 ADB-JDWP Connec
14820u0_a148      24754 24775 ReferenceQueueD
14821u0_a148      24754 24776 FinalizerDaemon
14822u0_a148      24754 24777 FinalizerWatchd
14823u0_a148      24754 24778 HeapTaskDaemon
14824u0_a148      24754 24780 Binder:24754_1
14825u0_a148      24754 24784 Binder:24754_2
14826u0_a148      24754 24793 Binder:24754_3
14827u0_a148      24754 24836 Profile Saver
14828u0_a148      24754 24972 GoogleApiHandle
14829u0_a148      24754 25208 FileObserver
14830u0_a148      24754 25209 ConnectivityThr
14831u0_a148      24754 25235 queued-work-loo
14832u0_a148      24754 25238 GAC_Executor[0]
14833u0_a148      24754 25438 GAC_Executor[1]
14834u0_a148      24754 25449 Binder:24754_4
14835u0_a148      24754 27819 Binder:24754_5
14836u0_a34       24772 24772 apps.dreamliner
14837u0_a34       24772 24782 Jit thread pool
14838u0_a34       24772 24785 Signal Catcher
14839u0_a34       24772 24787 ADB-JDWP Connec
14840u0_a34       24772 24788 ReferenceQueueD
14841u0_a34       24772 24789 FinalizerDaemon
14842u0_a34       24772 24790 FinalizerWatchd
14843u0_a34       24772 24791 HeapTaskDaemon
14844u0_a34       24772 24792 Binder:24772_1
14845u0_a34       24772 24814 Binder:24772_2
14846u0_a34       24772 24825 Binder:24772_3
14847u0_a34       24772 24835 Profile Saver
14848u0_a39       24795 24795 oid.setupwizard
14849u0_a39       24795 24801 Jit thread pool
14850u0_a39       24795 24802 Signal Catcher
14851u0_a39       24795 24803 ADB-JDWP Connec
14852u0_a39       24795 24804 ReferenceQueueD
14853u0_a39       24795 24805 FinalizerDaemon
14854u0_a39       24795 24806 FinalizerWatchd
14855u0_a39       24795 24807 HeapTaskDaemon
14856u0_a39       24795 24809 Binder:24795_1
14857u0_a39       24795 24815 Binder:24795_2
14858u0_a39       24795 24826 Binder:24795_3
14859u0_a39       24795 24856 Profile Saver
14860u0_a39       24795 24987 queued-work-loo
14861u0_a39       24795 24990 GoogleApiHandle
14862u0_a39       24795 24994 ConnectivityThr
14863u0_a39       24795 24995 WifiTracker{910
14864u0_a39       24795 25377 pool-1-thread-1
14865u0_a39       24795 25446 Binder:24795_4
14866u0_a39       24795 29514 Binder:24795_5
14867u0_a15       24808 24808 ogle.android.as
14868u0_a15       24808 24816 Jit thread pool
14869u0_a15       24808 24817 Signal Catcher
14870u0_a15       24808 24818 ADB-JDWP Connec
14871u0_a15       24808 24819 ReferenceQueueD
14872u0_a15       24808 24820 FinalizerDaemon
14873u0_a15       24808 24821 FinalizerWatchd
14874u0_a15       24808 24822 HeapTaskDaemon
14875u0_a15       24808 24823 Binder:24808_1
14876u0_a15       24808 24837 Binder:24808_2
14877u0_a15       24808 24842 Profile Saver
14878u0_a15       24808 24937 GoogleApiHandle
14879u0_a15       24808 25445 Binder:24808_3
14880u0_a15       24808  9970 aiai-bg-0
14881u0_a15       24808  9974 GAC_Executor[0]
14882u0_a15       24808  9975 GAC_Executor[1]
14883u0_a25       24827 24827 s.nexuslauncher
14884u0_a25       24827 24838 Jit thread pool
14885u0_a25       24827 24841 Signal Catcher
14886u0_a25       24827 24845 ADB-JDWP Connec
14887u0_a25       24827 24846 ReferenceQueueD
14888u0_a25       24827 24847 FinalizerDaemon
14889u0_a25       24827 24848 FinalizerWatchd
14890u0_a25       24827 24849 HeapTaskDaemon
14891u0_a25       24827 24850 Binder:24827_1
14892u0_a25       24827 24857 Binder:24827_2
14893u0_a25       24827 24863 Binder:24827_3
14894u0_a25       24827 24890 Profile Saver
14895u0_a25       24827 24943 launcher-loader
14896u0_a25       24827 24985 GAC_Executor[0]
14897u0_a25       24827 24986 GoogleApiHandle
14898u0_a25       24827 25108 UiThreadHelper
14899u0_a25       24827 25109 pool-1-thread-1
14900u0_a25       24827 25113 Recents-HighRes
14901u0_a25       24827 25114 Recents-TaskRes
14902u0_a25       24827 25116 pool-3-thread-1
14903u0_a25       24827 25147 qsb-experiments
14904u0_a25       24827 25154 magnifier pixel
14905u0_a25       24827 25155 search-thread
14906u0_a25       24827 25168 smartspace-load
14907u0_a25       24827 25194 RenderThread
14908u0_a25       24827 25198 remote-ui
14909u0_a25       24827 25201 reflection-thre
14910u0_a25       24827 25202 reflection-plac
14911u0_a25       24827 25203 queued-work-loo
14912u0_a25       24827 25216 GAC_Executor[1]
14913u0_a25       24827 25243 GrallocUploadTh
14914u0_a25       24827 25554 Binder:24827_4
14915u0_a25       24827 27853 hwuiTask1
14916u0_a25       24827  5558 Binder:24827_5
14917u0_a25       24827  9968 pool-3-thread-2
14918u0_a25       24827 12577 Binder:24827_6
14919u0_a6        24894 24894 ocess.gservices
14920u0_a6        24894 24907 Jit thread pool
14921u0_a6        24894 24913 Signal Catcher
14922u0_a6        24894 24919 ADB-JDWP Connec
14923u0_a6        24894 24920 ReferenceQueueD
14924u0_a6        24894 24921 FinalizerDaemon
14925u0_a6        24894 24922 FinalizerWatchd
14926u0_a6        24894 24923 HeapTaskDaemon
14927u0_a6        24894 24924 Binder:24894_1
14928u0_a6        24894 24936 Binder:24894_2
14929u0_a6        24894 24945 Profile Saver
14930u0_a6        24894 24962 Binder:24894_3
14931u0_a6        24894 24979 Binder:24894_4
14932u0_a6        24894 24997 Binder:24894_5
14933u0_a6        24894 25005 Binder:24894_6
14934u0_a6        24894 25205 Binder:24894_7
14935u0_a6        24894 25434 Binder:24894_8
14936u0_a6        24894 25439 Binder:24894_9
14937u0_a6        24894 25442 Binder:24894_A
14938u0_a6        24894 25464 Binder:24894_B
14939u0_a6        24894 25499 Binder:24894_C
14940u0_a6        24894 25502 Binder:24894_D
14941u0_a6        24894 25527 Binder:24894_E
14942u0_a6        24894 25553 Binder:24894_F
14943u0_a6        24894 25716 Binder:24894_10
14944u0_a6        25017 25017 gle.android.gms
14945u0_a6        25017 25026 Jit thread pool
14946u0_a6        25017 25027 Signal Catcher
14947u0_a6        25017 25028 ADB-JDWP Connec
14948u0_a6        25017 25029 ReferenceQueueD
14949u0_a6        25017 25030 FinalizerDaemon
14950u0_a6        25017 25031 FinalizerWatchd
14951u0_a6        25017 25032 HeapTaskDaemon
14952u0_a6        25017 25033 Binder:25017_1
14953u0_a6        25017 25043 Binder:25017_2
14954u0_a6        25017 25075 Profile Saver
14955u0_a6        25017 25169 FileObserver
14956u0_a6        25017 25199 GlobalDispatchi
14957u0_a6        25017 25236 Binder:25017_3
14958u0_a6        25017 25261 GoogleApiHandle
14959u0_a6        25017 25286 GlobalScheduler
14960u0_a6        25017 25409 Binder:25017_4
14961u0_a6        25017 25430 Binder:25017_5
14962u0_a6        25017 25436 lowpool[1]
14963u0_a6        25017 25440 lowpool[3]
14964u0_a6        25017 25452 Binder:25017_6
14965u0_a6        25017 25457 queued-work-loo
14966u0_a6        25017 25693 highpool[0]
14967u0_a6        25017 25862 Thread-5
14968u0_a6        25017 25863 Thread-6
14969u0_a6        25017 25864 Thread-7
14970u0_a6        25017 25865 Thread-8
14971u0_a6        25017 25866 Thread-9
14972u0_a6        25017 26802 Binder:25017_7
14973u0_a6        25017 26820 highpool[1]
14974u0_a6        25017 26838 highpool[2]
14975u0_a6        25017 26840 GAC_Executor[0]
14976u0_a6        25017 26841 GAC_Executor[1]
14977u0_a6        25017 26842 Binder:25017_8
14978u0_a6        25017 26870 highpool[3]
14979u0_a6        25017 26883 AdWorker(Defaul
14980u0_a6        25017 26921 AdWorker(Defaul
14981u0_a6        25017 26930 Binder:25017_9
14982u0_a6        25017 26993 ConnectivityThr
14983u0_a6        25017 27066 Binder:25017_A
14984u0_a6        25017 27076 Binder:25017_B
14985u0_a6        25017 27923 Binder:25017_C
14986u0_a6        25017 27933 Binder:25017_D
14987u0_a6        25017 28134 lowpool[4]
14988u0_a6        25017 28186 lowpool[5]
14989u0_a6        25017   612 Binder:25017_E
14990u0_a6        25017 12583 Binder:25017_F
14991u0_a6        25017 12948 Binder:25017_10
14992u0_a46       25035 25035 le.modemservice
14993u0_a46       25035 25042 Jit thread pool
14994u0_a46       25035 25045 Signal Catcher
14995u0_a46       25035 25046 ADB-JDWP Connec
14996u0_a46       25035 25047 ReferenceQueueD
14997u0_a46       25035 25048 FinalizerDaemon
14998u0_a46       25035 25049 FinalizerWatchd
14999u0_a46       25035 25050 HeapTaskDaemon
15000u0_a46       25035 25051 Binder:25035_1
15001u0_a46       25035 25054 Binder:25035_2
15002u0_a46       25035 25068 Profile Saver
15003u0_a46       25035 25076 Binder:25035_3
15004u0_a46       25035 25095 StateService
15005u0_a46       25035 25110 queued-work-loo
15006u0_a46       25035 25112 ConnectivityThr
15007u0_a46       25035 25148 Binder:25035_4
15008u0_a69       25053 25053 android.vending
15009u0_a69       25053 25060 Jit thread pool
15010u0_a69       25053 25061 Signal Catcher
15011u0_a69       25053 25062 ADB-JDWP Connec
15012u0_a69       25053 25063 ReferenceQueueD
15013u0_a69       25053 25064 FinalizerDaemon
15014u0_a69       25053 25065 FinalizerWatchd
15015u0_a69       25053 25066 HeapTaskDaemon
15016u0_a69       25053 25067 Binder:25053_1
15017u0_a69       25053 25073 Binder:25053_2
15018u0_a69       25053 25119 Profile Saver
15019u0_a69       25053 25245 queued-work-loo
15020u0_a69       25053 25274 FinskyApp
15021u0_a69       25053 25293 ndroid.play.b.g
15022u0_a69       25053 25346 Thread-3
15023u0_a69       25053 25347 Thread-4
15024u0_a69       25053 25348 Thread-5
15025u0_a69       25053 25352 libraries-threa
15026u0_a69       25053 25368 download-manage
15027u0_a69       25053 25378 NetworkQualityQ
15028u0_a69       25053 25389 ConnectivityThr
15029u0_a69       25053 25397 Thread-6
15030u0_a69       25053 25398 Thread-7
15031u0_a69       25053 25399 Thread-8
15032u0_a69       25053 25400 Thread-9
15033u0_a69       25053 25401 Thread-10
15034u0_a69       25053 25426 tentative-gc-ru
15035u0_a69       25053 25443 Db-scheduler
15036u0_a69       25053 25458 LibrariesImpl
15037u0_a69       25053 25459 PackageInstalle
15038u0_a69       25053 25472 WriteThroughIns
15039u0_a69       25053 25574 Binder:25053_3
15040u0_a69       25053 25583 Db-user_languag
15041u0_a69       25053 25606 GearheadStateMo
15042u0_a69       25053 25609 wear-nodes-cont
15043u0_a69       25053 25611 RefQueueWorker@
15044u0_a69       25053 25612 GAC_Executor[0]
15045u0_a69       25053 25621 GoogleApiHandle
15046u0_a69       25053 25660 GAC_Executor[1]
15047u0_a69       25053 25678 Binder:25053_4
15048u0_a69       25053 25713 RefQueueWorker@
15049u0_a69       25053 25736 RefQueueWorker@
15050u0_a69       25053 26169 Binder:25053_5
15051u0_a69       25053 26171 Binder:25053_6
15052u0_a69       25053 26646 RefQueueWorker@
15053u0_a69       25053 26653 RefQueueWorker@
15054u0_a69       25053 26734 BackgroundThrea
15055u0_a69       25053 27702 Timer-0
15056u0_a69       25053 29466 RefQueueWorker@
15057u0_a69       25053 29470 PaiConfigResolv
15058u0_a69       25053 29471 RefQueueWorker@
15059u0_a69       25053 29472 RefQueueWorker@
15060radio        25099 25099 .qcrilmsgtunnel
15061radio        25099 25111 Jit thread pool
15062radio        25099 25118 Signal Catcher
15063radio        25099 25123 ADB-JDWP Connec
15064radio        25099 25124 ReferenceQueueD
15065radio        25099 25125 FinalizerDaemon
15066radio        25099 25126 FinalizerWatchd
15067radio        25099 25127 HeapTaskDaemon
15068radio        25099 25128 Binder:25099_1
15069radio        25099 25130 Binder:25099_2
15070radio        25099 25131 Binder:25099_3
15071radio        25099 25138 Profile Saver
15072radio        25099 25140 Binder:25099_4
15073radio        25099 25153 HwBinder:25099_
15074radio        25099 25157 queued-work-loo
15075system       25623 25623 ti.diagservices
15076system       25623 25642 Jit thread pool
15077system       25623 25645 Signal Catcher
15078system       25623 25648 ADB-JDWP Connec
15079system       25623 25649 ReferenceQueueD
15080system       25623 25650 FinalizerDaemon
15081system       25623 25651 FinalizerWatchd
15082system       25623 25652 HeapTaskDaemon
15083system       25623 25653 Binder:25623_1
15084system       25623 25655 Binder:25623_2
15085system       25623 25657 Profile Saver
15086system       25623 25661 Binder:25623_3
15087system       25623 25662 ti.diagservices
15088system       25623 25672 queued-work-loo
15089root         25995 25995 kworker/u16:16
15090root         25996 25996 kworker/u16:20
15091u0_a92       27538 27538 lcomm.telephony
15092u0_a92       27538 27543 Jit thread pool
15093u0_a92       27538 27544 Signal Catcher
15094u0_a92       27538 27545 ADB-JDWP Connec
15095u0_a92       27538 27546 ReferenceQueueD
15096u0_a92       27538 27547 FinalizerDaemon
15097u0_a92       27538 27548 FinalizerWatchd
15098u0_a92       27538 27549 HeapTaskDaemon
15099u0_a92       27538 27550 Binder:27538_1
15100u0_a92       27538 27551 Binder:27538_2
15101u0_a92       27538 27552 Binder:27538_3
15102u0_a92       27538 27555 Profile Saver
15103u0_a92       27538 27556 Thread-2
15104u0_a92       27538 27557 CTSA Inject Thr
15105u0_a92       27538 27562 HwBinder:27538_
15106u0_a92       27538 27564 queued-work-loo
15107u0_a23       28152 28152 .apps.turbo:aab
15108u0_a23       28152 28159 Jit thread pool
15109u0_a23       28152 28160 Signal Catcher
15110u0_a23       28152 28161 ADB-JDWP Connec
15111u0_a23       28152 28162 ReferenceQueueD
15112u0_a23       28152 28163 FinalizerDaemon
15113u0_a23       28152 28164 FinalizerWatchd
15114u0_a23       28152 28165 HeapTaskDaemon
15115u0_a23       28152 28166 Binder:28152_1
15116u0_a23       28152 28168 Binder:28152_2
15117u0_a23       28152 28171 Binder:28152_3
15118u0_a23       28152 28183 Profile Saver
15119u0_a23       28152 28493 Binder:28152_4
15120u0_a23       28152 28494 Binder:28152_5
15121u0_a23       28152 29720 GoogleApiHandle
15122u0_a23       28152  7773 Binder:28152_6
15123u0_a23       28152 12724 GAC_Executor[0]
15124u0_a23       28152 12725 GAC_Executor[1]
15125u0_a23       28152 12726 queued-work-loo
15126u0_a146      30159 30159 android.ramdump
15127u0_a146      30159 30166 Jit thread pool
15128u0_a146      30159 30167 Signal Catcher
15129u0_a146      30159 30168 ADB-JDWP Connec
15130u0_a146      30159 30169 ReferenceQueueD
15131u0_a146      30159 30170 FinalizerDaemon
15132u0_a146      30159 30171 FinalizerWatchd
15133u0_a146      30159 30172 HeapTaskDaemon
15134u0_a146      30159 30173 Binder:30159_1
15135u0_a146      30159 30174 Binder:30159_2
15136u0_a146      30159 30177 Binder:30159_3
15137u0_a146      30159 30180 Profile Saver
15138u0_a146      30159 30184 Binder:30159_4
15139u0_a146      30159 30185 queued-work-loo
15140  </script>
15141  <script class="trace-data" type="application/text">
15142# tracer: nop
15143#
15144# entries-in-buffer/entries-written: 133936/133936   #P:8
15145#
15146#                                      _-----=> irqs-off
15147#                                     / _----=> need-resched
15148#                                    | / _---=> hardirq/softirq
15149#                                    || / _--=> preempt-depth
15150#                                    ||| /     delay
15151#           TASK-PID    TGID   CPU#  ||||    TIMESTAMP  FUNCTION
15152#              | |        |      |   ||||       |         |
15153           <...>-13117 (-----) [001] ...1 24560.589411: tracing_mark_write: trace_event_clock_sync: parent_ts=24560.589844
15154           <...>-13117 (-----) [001] ...1 24560.589420: tracing_mark_write: trace_event_clock_sync: realtime_ts=1529512932210
15155          <idle>-0     (-----) [000] d.s2 24560.590901: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
15156          <idle>-0     (-----) [000] dns3 24560.590913: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
15157          <idle>-0     (-----) [000] dns3 24560.590915: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
15158          <idle>-0     (-----) [000] dns4 24560.590936: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
15159           <...>-13117 (-----) [001] d..2 24560.590947: sched_switch: prev_comm=atrace prev_pid=13117 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
15160          <idle>-0     (-----) [000] .n.1 24560.590948: cpu_idle: state=4294967295 cpu_id=0
15161          <idle>-0     (-----) [000] d..2 24560.590954: 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
15162       rcu_sched-8     (    8) [000] d..2 24560.590962: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=000
15163       rcu_sched-8     (    8) [000] d..3 24560.590970: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=000
15164       rcu_sched-8     (    8) [000] d..2 24560.590976: 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
15165<...>-11 ( 11) [000] d..2 24560.590989: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
15166<...>-11 ( 11) [000] d..3 24560.590997: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
15167<...>-11 ( 11) [000] d..2 24560.591005: sched_switch: prev_comm=rcuos/0 prev_pid=11 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
15168  kworker/u16:16-25995 (25995) [001] .... 24560.591013: clk_set_rate: l3_cluster0_vote_clk 1036800000
15169  kworker/u16:16-25995 (25995) [001] .... 24560.591019: clk_set_rate: l3_clk 1036800000
15170       rcu_sched-8     (    8) [000] d..2 24560.591020: 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
15171          <idle>-0     (-----) [000] d..1 24560.591028: cpu_idle: state=0 cpu_id=0
15172  kworker/u16:16-25995 (25995) [001] d..2 24560.591060: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=13117 next_prio=120
15173           <...>-13117 (-----) [001] d..2 24560.591201: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15174           <...>-13117 (-----) [001] dn.3 24560.591209: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15175           <...>-13117 (-----) [001] d..2 24560.591214: sched_switch: prev_comm=atrace prev_pid=13117 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
15176     kworker/1:1-13091 (13091) [001] d..2 24560.591226: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=13117 next_prio=120
15177           <...>-13117 (-----) [001] d..2 24560.591228: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15178           <...>-13117 (-----) [001] dn.3 24560.591232: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15179           <...>-13117 (-----) [001] d..2 24560.591237: sched_switch: prev_comm=atrace prev_pid=13117 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
15180     kworker/1:1-13091 (13091) [001] d..2 24560.591243: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=13117 next_prio=120
15181           <...>-13117 (-----) [001] d..2 24560.591261: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15182           <...>-13117 (-----) [001] dn.3 24560.591266: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15183           <...>-13117 (-----) [001] d..2 24560.591270: sched_switch: prev_comm=atrace prev_pid=13117 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
15184     kworker/1:1-13091 (13091) [001] d..2 24560.591317: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=13117 next_prio=120
15185           <...>-13117 (-----) [001] d..2 24560.591366: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15186           <...>-13117 (-----) [001] dn.3 24560.591372: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15187           <...>-13117 (-----) [001] d..2 24560.591376: sched_switch: prev_comm=atrace prev_pid=13117 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
15188     kworker/1:1-13091 (13091) [001] d..2 24560.591407: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=13117 next_prio=120
15189           <...>-13117 (-----) [001] d..3 24560.591555: sched_waking: comm=sh pid=13115 prio=120 target_cpu=003
15190           <...>-13117 (-----) [001] dn.4 24560.591582: sched_wakeup: comm=sh pid=13115 prio=120 target_cpu=001
15191           <...>-13117 (-----) [001] d..2 24560.591589: sched_switch: prev_comm=atrace prev_pid=13117 prev_prio=120 prev_state=R+ ==> next_comm=sh next_pid=13115 next_prio=120
15192           <...>-13115 (-----) [001] d..2 24560.592102: sched_waking: comm=shell svc 13115 pid=13116 prio=120 target_cpu=000
15193           <...>-13115 (-----) [001] d..3 24560.592119: sched_wakeup: comm=shell svc 13115 pid=13116 prio=120 target_cpu=000
15194          <idle>-0     (-----) [000] .n.1 24560.592122: cpu_idle: state=4294967295 cpu_id=0
15195          <idle>-0     (-----) [000] d..2 24560.592130: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=shell svc 13115 next_pid=13116 next_prio=120
15196           <...>-13116 (-----) [000] d..2 24560.592159: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
15197           <...>-13116 (-----) [000] d..3 24560.592171: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
15198           <...>-13116 (-----) [000] d..2 24560.592185: sched_switch: prev_comm=shell svc 13115 prev_pid=13116 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
15199            adbd-1007  ( 1007) [000] d..1 24560.592245: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
15200            adbd-1007  ( 1007) [000] d..2 24560.592266: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
15201            adbd-1007  ( 1007) [000] d..2 24560.592300: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
15202           <...>-13115 (-----) [001] d..2 24560.592349: sched_waking: comm=shell svc 13115 pid=13116 prio=120 target_cpu=000
15203            adbd-23485 ( 1007) [000] d..2 24560.592361: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15204          <idle>-0     (-----) [002] d.h3 24560.592365: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
15205           <...>-13115 (-----) [001] d..3 24560.592368: sched_wakeup: comm=shell svc 13115 pid=13116 prio=120 target_cpu=000
15206          <idle>-0     (-----) [000] d..2 24560.592374: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=shell svc 13115 next_pid=13116 next_prio=120
15207          <idle>-0     (-----) [002] dnh4 24560.592378: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
15208          <idle>-0     (-----) [002] .n.1 24560.592383: cpu_idle: state=4294967295 cpu_id=2
15209          <idle>-0     (-----) [002] d..2 24560.592392: 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
15210   kworker/u17:1-18284 (18284) [002] d..2 24560.592402: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
15211   kworker/u17:1-18284 (18284) [002] d..3 24560.592408: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
15212   kworker/u17:1-18284 (18284) [002] d..2 24560.592426: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
15213     kworker/2:0-12895 (12895) [002] d..2 24560.592432: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
15214     kworker/2:0-12895 (12895) [002] d..3 24560.592454: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
15215     kworker/2:0-12895 (12895) [002] d..2 24560.592463: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
15216           <...>-13116 (-----) [000] d..2 24560.592468: sched_switch: prev_comm=shell svc 13115 prev_pid=13116 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=13117 next_prio=120
15217           <...>-13117 (-----) [000] d..2 24560.592479: sched_switch: prev_comm=atrace prev_pid=13117 prev_prio=120 prev_state=x ==> next_comm=swapper/0 next_pid=0 next_prio=120
15218          <idle>-0     (-----) [000] d..1 24560.592495: cpu_idle: state=0 cpu_id=0
15219            adbd-23485 ( 1007) [002] d..2 24560.592515: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
15220          <idle>-0     (-----) [002] d.h4 24560.592533: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
15221          <idle>-0     (-----) [002] dnh5 24560.592539: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
15222          <idle>-0     (-----) [002] d..2 24560.592547: 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
15223   kworker/u17:1-18284 (18284) [002] d..2 24560.592554: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
15224   kworker/u17:1-18284 (18284) [002] d..3 24560.592559: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
15225   kworker/u17:1-18284 (18284) [002] d..2 24560.592575: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
15226     kworker/2:0-12895 (12895) [002] d..2 24560.592579: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
15227     kworker/2:0-12895 (12895) [002] d..3 24560.592602: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
15228           <...>-13115 (-----) [001] d..2 24560.592608: sched_switch: prev_comm=sh prev_pid=13115 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=23485 next_prio=120
15229     kworker/2:0-12895 (12895) [002] d..2 24560.592625: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
15230          <idle>-0     (-----) [002] d..1 24560.592633: cpu_idle: state=0 cpu_id=2
15231          <idle>-0     (-----) [002] d.h3 24560.592728: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
15232          <idle>-0     (-----) [002] dnh4 24560.592734: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
15233          <idle>-0     (-----) [002] .n.1 24560.592738: cpu_idle: state=4294967295 cpu_id=2
15234          <idle>-0     (-----) [002] d..2 24560.592745: 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
15235   kworker/u17:1-18284 (18284) [002] d..2 24560.592752: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
15236   kworker/u17:1-18284 (18284) [002] d..3 24560.592758: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
15237   kworker/u17:1-18284 (18284) [002] d..2 24560.592774: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
15238            adbd-23485 ( 1007) [001] d..2 24560.592777: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13115 next_prio=120
15239     kworker/2:0-12895 (12895) [002] d..2 24560.592781: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
15240     kworker/2:0-12895 (12895) [002] d..3 24560.592804: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
15241           <...>-13115 (-----) [001] d..2 24560.592809: sched_switch: prev_comm=sh prev_pid=13115 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=23484 next_prio=120
15242     kworker/2:0-12895 (12895) [002] d..2 24560.592829: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13115 next_prio=120
15243            adbd-23484 ( 1007) [001] d..2 24560.592829: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
15244            adbd-23484 ( 1007) [001] d..3 24560.592841: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
15245            adbd-23484 ( 1007) [001] d..2 24560.592892: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
15246            adbd-1007  ( 1007) [001] d..2 24560.592962: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15247          <idle>-0     (-----) [001] d..1 24560.592970: cpu_idle: state=0 cpu_id=1
15248           <...>-13115 (-----) [002] d..4 24560.593140: sched_waking: comm=shell svc 13115 pid=13116 prio=120 target_cpu=000
15249           <...>-13115 (-----) [002] dn.5 24560.593152: sched_wakeup: comm=shell svc 13115 pid=13116 prio=120 target_cpu=002
15250           <...>-13115 (-----) [002] d..2 24560.593158: sched_switch: prev_comm=sh prev_pid=13115 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13115 next_pid=13116 next_prio=120
15251           <...>-13116 (-----) [002] d..2 24560.593252: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
15252           <...>-13116 (-----) [002] d..3 24560.593278: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
15253          <idle>-0     (-----) [000] .n.1 24560.593282: cpu_idle: state=4294967295 cpu_id=0
15254          <idle>-0     (-----) [000] d..2 24560.593289: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
15255            adbd-1007  ( 1007) [000] d..1 24560.593341: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
15256            adbd-1007  ( 1007) [000] d..2 24560.593351: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
15257          <idle>-0     (-----) [001] .n.1 24560.593357: cpu_idle: state=4294967295 cpu_id=1
15258          <idle>-0     (-----) [001] d..2 24560.593363: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
15259            adbd-1007  ( 1007) [000] d..2 24560.593401: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
15260           <...>-13116 (-----) [002] d..1 24560.593402: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
15261          <idle>-0     (-----) [000] d..1 24560.593409: cpu_idle: state=0 cpu_id=0
15262           <...>-13116 (-----) [002] d..2 24560.593409: sched_blocked_reason: pid=1007 iowait=0 caller=do_page_fault+0x4e0/0x594
15263           <...>-13116 (-----) [002] d..2 24560.593416: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
15264            adbd-23485 ( 1007) [001] d..2 24560.593419: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13115 next_prio=120
15265          <idle>-0     (-----) [000] .n.1 24560.593422: cpu_idle: state=4294967295 cpu_id=0
15266          <idle>-0     (-----) [000] d..2 24560.593428: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
15267           <...>-13115 (-----) [001] d..2 24560.593430: sched_switch: prev_comm=sh prev_pid=13115 prev_prio=120 prev_state=x ==> next_comm=swapper/1 next_pid=0 next_prio=120
15268           <...>-13116 (-----) [002] d.h3 24560.593433: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
15269          <idle>-0     (-----) [001] d..1 24560.593439: cpu_idle: state=0 cpu_id=1
15270           <...>-13116 (-----) [002] d.h4 24560.593454: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
15271          <idle>-0     (-----) [001] .n.1 24560.593459: cpu_idle: state=4294967295 cpu_id=1
15272          <idle>-0     (-----) [001] d..2 24560.593465: 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
15273            adbd-1007  ( 1007) [000] d..2 24560.593470: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15274   kworker/u17:1-18284 (18284) [001] d..2 24560.593474: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15275          <idle>-0     (-----) [000] d..1 24560.593476: cpu_idle: state=0 cpu_id=0
15276   kworker/u17:1-18284 (18284) [001] d..3 24560.593481: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15277   kworker/u17:1-18284 (18284) [001] d..2 24560.593497: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
15278           <...>-13116 (-----) [002] d..2 24560.593502: sched_switch: prev_comm=shell svc 13115 prev_pid=13116 prev_prio=120 prev_state=x ==> next_comm=swapper/2 next_pid=0 next_prio=120
15279     kworker/1:1-13091 (13091) [001] d..2 24560.593503: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
15280          <idle>-0     (-----) [002] dn.1 24560.593517: cpu_idle: state=0 cpu_id=2
15281          <idle>-0     (-----) [002] .n.1 24560.593519: cpu_idle: state=4294967295 cpu_id=2
15282     kworker/1:1-13091 (13091) [001] d..3 24560.593520: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
15283          <idle>-0     (-----) [002] d..2 24560.593530: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
15284     kworker/1:1-13091 (13091) [001] d..2 24560.593534: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15285          <idle>-0     (-----) [001] d..1 24560.593538: cpu_idle: state=0 cpu_id=1
15286            adbd-23485 ( 1007) [002] d..2 24560.593584: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
15287          <idle>-0     (-----) [002] d.h4 24560.593602: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
15288          <idle>-0     (-----) [002] d.h5 24560.593611: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
15289          <idle>-0     (-----) [001] .n.1 24560.593616: cpu_idle: state=4294967295 cpu_id=1
15290          <idle>-0     (-----) [001] d..2 24560.593622: 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
15291          <idle>-0     (-----) [002] d..1 24560.593623: cpu_idle: state=0 cpu_id=2
15292   kworker/u17:1-18284 (18284) [001] d..2 24560.593631: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15293   kworker/u17:1-18284 (18284) [001] d..3 24560.593636: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15294   kworker/u17:1-18284 (18284) [001] d..2 24560.593655: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
15295     kworker/1:1-13091 (13091) [001] d..2 24560.593660: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
15296     kworker/1:1-13091 (13091) [001] d..3 24560.593669: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
15297          <idle>-0     (-----) [002] .n.1 24560.593674: cpu_idle: state=4294967295 cpu_id=2
15298          <idle>-0     (-----) [002] d..2 24560.593682: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
15299     kworker/1:1-13091 (13091) [001] d..2 24560.593683: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15300          <idle>-0     (-----) [001] d..1 24560.593688: cpu_idle: state=0 cpu_id=1
15301            adbd-23485 ( 1007) [002] d..2 24560.593738: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
15302          <idle>-0     (-----) [002] d.h3 24560.593759: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
15303          <idle>-0     (-----) [002] d.h4 24560.593769: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
15304          <idle>-0     (-----) [001] .n.1 24560.593774: cpu_idle: state=4294967295 cpu_id=1
15305          <idle>-0     (-----) [002] d..1 24560.593778: cpu_idle: state=0 cpu_id=2
15306          <idle>-0     (-----) [001] d..2 24560.593779: 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
15307   kworker/u17:1-18284 (18284) [001] d..2 24560.593788: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15308   kworker/u17:1-18284 (18284) [001] d..3 24560.593794: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15309   kworker/u17:1-18284 (18284) [001] d..2 24560.593813: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
15310     kworker/1:1-13091 (13091) [001] d..2 24560.593819: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
15311          <idle>-0     (-----) [002] dnh3 24560.593824: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
15312     kworker/1:1-13091 (13091) [001] d..3 24560.593827: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
15313          <idle>-0     (-----) [002] dnh4 24560.593837: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
15314     kworker/1:1-13091 (13091) [001] d..2 24560.593844: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
15315          <idle>-0     (-----) [002] .n.1 24560.593853: cpu_idle: state=4294967295 cpu_id=2
15316   kworker/u17:1-18284 (18284) [001] d..2 24560.593855: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15317          <idle>-0     (-----) [002] d..2 24560.593859: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
15318   kworker/u17:1-18284 (18284) [001] d..3 24560.593860: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15319            adbd-23485 ( 1007) [002] d..2 24560.593875: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
15320   kworker/u17:1-18284 (18284) [001] d..2 24560.593877: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
15321          <idle>-0     (-----) [002] d..1 24560.593882: cpu_idle: state=0 cpu_id=2
15322     kworker/1:1-13091 (13091) [001] d..2 24560.593885: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
15323     kworker/1:1-13091 (13091) [001] d..3 24560.593895: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
15324     kworker/1:1-13091 (13091) [001] d..2 24560.593903: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
15325            adbd-23484 ( 1007) [001] d..2 24560.593916: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
15326            adbd-23484 ( 1007) [001] d..3 24560.593927: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
15327            adbd-23484 ( 1007) [001] d..2 24560.593976: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
15328          <idle>-0     (-----) [002] d.h3 24560.594007: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
15329            adbd-1007  ( 1007) [001] d..1 24560.594019: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
15330          <idle>-0     (-----) [002] dnh4 24560.594019: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
15331          <idle>-0     (-----) [002] .n.1 24560.594027: cpu_idle: state=4294967295 cpu_id=2
15332            adbd-1007  ( 1007) [001] d..2 24560.594033: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
15333          <idle>-0     (-----) [002] d..2 24560.594038: 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
15334   kworker/u17:1-18284 (18284) [002] d..2 24560.594048: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
15335   kworker/u17:1-18284 (18284) [002] d..3 24560.594054: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
15336   kworker/u17:1-18284 (18284) [002] d..2 24560.594071: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
15337            adbd-1007  ( 1007) [001] d..2 24560.594074: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15338     kworker/2:0-12895 (12895) [002] d..2 24560.594078: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
15339          <idle>-0     (-----) [001] d..1 24560.594080: cpu_idle: state=0 cpu_id=1
15340     kworker/2:0-12895 (12895) [002] d..3 24560.594097: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
15341     kworker/2:0-12895 (12895) [002] d..2 24560.594106: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
15342            adbd-23484 ( 1007) [002] d..2 24560.594119: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
15343            adbd-23484 ( 1007) [002] d..3 24560.594128: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
15344          <idle>-0     (-----) [001] .n.1 24560.594133: cpu_idle: state=4294967295 cpu_id=1
15345          <idle>-0     (-----) [001] d..2 24560.594139: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
15346            adbd-23484 ( 1007) [002] d..2 24560.594172: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
15347            adbd-1007  ( 1007) [001] d..2 24560.594191: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15348          <idle>-0     (-----) [001] d..1 24560.594196: cpu_idle: state=0 cpu_id=1
15349            adbd-23485 ( 1007) [002] d..2 24560.594221: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
15350          <idle>-0     (-----) [002] d.H4 24560.594258: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
15351          <idle>-0     (-----) [001] d.s2 24560.594263: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15352          <idle>-0     (-----) [002] dnH5 24560.594264: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
15353          <idle>-0     (-----) [001] dns3 24560.594274: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15354          <idle>-0     (-----) [001] dns3 24560.594278: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
15355          <idle>-0     (-----) [002] d..2 24560.594283: 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
15356          <idle>-0     (-----) [001] dns4 24560.594285: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
15357   kworker/u17:1-18284 (18284) [002] d..2 24560.594292: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
15358          <idle>-0     (-----) [001] .n.1 24560.594295: cpu_idle: state=4294967295 cpu_id=1
15359   kworker/u17:1-18284 (18284) [002] d..3 24560.594298: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
15360          <idle>-0     (-----) [001] d..2 24560.594302: 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
15361     rcu_preempt-7     (    7) [001] d..2 24560.594314: 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
15362   kworker/u17:1-18284 (18284) [002] d..2 24560.594315: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
15363     kworker/2:0-12895 (12895) [002] d..2 24560.594320: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
15364     kworker/2:0-12895 (12895) [002] d..3 24560.594329: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
15365     kworker/2:0-12895 (12895) [002] d..2 24560.594337: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
15366            adbd-23485 ( 1007) [002] d..2 24560.594358: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
15367          <idle>-0     (-----) [002] d..1 24560.594366: cpu_idle: state=0 cpu_id=2
15368  kworker/u16:16-25995 (25995) [001] d..2 24560.594375: 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
15369          <idle>-0     (-----) [001] d..1 24560.594382: cpu_idle: state=0 cpu_id=1
15370          <idle>-0     (-----) [002] ...1 24560.595479: cpu_idle: state=4294967295 cpu_id=2
15371          <idle>-0     (-----) [002] d..1 24560.595481: cpu_idle: state=0 cpu_id=2
15372          <idle>-0     (-----) [000] d.H3 24560.597657: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
15373          <idle>-0     (-----) [000] d.H3 24560.597675: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
15374          <idle>-0     (-----) [000] d.H4 24560.597687: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
15375          <idle>-0     (-----) [002] .n.1 24560.597692: cpu_idle: state=4294967295 cpu_id=2
15376          <idle>-0     (-----) [000] d.s2 24560.597693: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
15377          <idle>-0     (-----) [002] d..2 24560.597700: 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
15378          <idle>-0     (-----) [000] dns3 24560.597703: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
15379          <idle>-0     (-----) [000] dns3 24560.597706: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
15380          <idle>-0     (-----) [000] dns4 24560.597724: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
15381          <idle>-0     (-----) [000] .n.1 24560.597731: cpu_idle: state=4294967295 cpu_id=0
15382          <idle>-0     (-----) [000] d..2 24560.597738: 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
15383         sugov:0-559   (  559) [002] .... 24560.597739: clk_set_rate: pwrcl_clk 1689600000
15384         sugov:0-559   (  559) [002] .... 24560.597749: clk_set_rate: cpu3_pwrcl_clk 1766400000
15385       rcu_sched-8     (    8) [000] d..2 24560.597750: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
15386         sugov:0-559   (  559) [002] .... 24560.597759: clk_set_rate: cpu2_pwrcl_clk 1766400000
15387         sugov:0-559   (  559) [002] .... 24560.597774: clk_set_rate: cpu1_pwrcl_clk 1766400000
15388         sugov:0-559   (  559) [002] .... 24560.597783: clk_set_rate: cpu0_pwrcl_clk 1689600000
15389         sugov:0-559   (  559) [002] .... 24560.597895: cpu_frequency: state=1689600 cpu_id=0
15390  kworker/u16:16-25995 (25995) [000] d..2 24560.597936: 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
15391         sugov:0-559   (  559) [002] d..3 24560.597939: sched_pi_setprio: comm=kworker/u16:16 pid=25995 oldprio=120 newprio=49
15392          <idle>-0     (-----) [000] d..1 24560.597945: cpu_idle: state=2 cpu_id=0
15393          <idle>-0     (-----) [003] d.s3 24560.597963: sched_waking: comm=kworker/u16:16 pid=25995 prio=49 target_cpu=000
15394         sugov:0-559   (  559) [002] d..2 24560.597964: 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
15395          <idle>-0     (-----) [002] d..1 24560.597971: cpu_idle: state=0 cpu_id=2
15396          <idle>-0     (-----) [003] d.s4 24560.597977: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=49 target_cpu=000
15397          <idle>-0     (-----) [003] ...1 24560.597983: cpu_idle: state=4294967295 cpu_id=3
15398          <idle>-0     (-----) [003] d..1 24560.597987: cpu_idle: state=0 cpu_id=3
15399          <idle>-0     (-----) [000] .n.1 24560.598318: cpu_idle: state=4294967295 cpu_id=0
15400          <idle>-0     (-----) [000] d..2 24560.598328: 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=49
15401  kworker/u16:16-25995 (25995) [000] d..1 24560.598339: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
15402  kworker/u16:16-25995 (25995) [000] d..2 24560.598352: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
15403  kworker/u16:16-25995 (25995) [000] d..2 24560.598355: sched_pi_setprio: comm=kworker/u16:16 pid=25995 oldprio=49 newprio=120
15404          <idle>-0     (-----) [002] .n.1 24560.598357: cpu_idle: state=4294967295 cpu_id=2
15405          <idle>-0     (-----) [002] d..2 24560.598363: 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
15406  kworker/u16:16-25995 (25995) [000] d..2 24560.598382: 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
15407          <idle>-0     (-----) [000] d..1 24560.598389: cpu_idle: state=0 cpu_id=0
15408          <idle>-0     (-----) [005] dnh2 24560.598478: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
15409         sugov:0-559   (  559) [002] d..2 24560.598480: 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
15410          <idle>-0     (-----) [005] .n.1 24560.598486: cpu_idle: state=4294967295 cpu_id=5
15411          <idle>-0     (-----) [002] d..1 24560.598488: cpu_idle: state=0 cpu_id=2
15412          <idle>-0     (-----) [005] d..2 24560.598497: 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
15413          <idle>-0     (-----) [003] d.s3 24560.598508: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
15414          <idle>-0     (-----) [003] d.s4 24560.598518: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
15415         sugov:4-560   (  560) [005] d..2 24560.598519: 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
15416          <idle>-0     (-----) [002] .n.1 24560.598524: cpu_idle: state=4294967295 cpu_id=2
15417          <idle>-0     (-----) [003] ...1 24560.598524: cpu_idle: state=4294967295 cpu_id=3
15418          <idle>-0     (-----) [003] d..1 24560.598527: cpu_idle: state=0 cpu_id=3
15419          <idle>-0     (-----) [005] d..1 24560.598529: cpu_idle: state=2 cpu_id=5
15420          <idle>-0     (-----) [002] d..2 24560.598530: 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
15421         sugov:0-559   (  559) [002] .... 24560.598537: cpu_frequency: state=1689600 cpu_id=1
15422         sugov:0-559   (  559) [002] .... 24560.598541: cpu_frequency: state=1689600 cpu_id=2
15423         sugov:0-559   (  559) [002] .... 24560.598543: cpu_frequency: state=1689600 cpu_id=3
15424         sugov:0-559   (  559) [002] d..2 24560.598557: 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
15425          <idle>-0     (-----) [002] d..1 24560.598563: cpu_idle: state=0 cpu_id=2
15426          <idle>-0     (-----) [002] ...1 24560.599711: cpu_idle: state=4294967295 cpu_id=2
15427          <idle>-0     (-----) [002] d..1 24560.599714: cpu_idle: state=0 cpu_id=2
15428          <idle>-0     (-----) [001] d.s2 24560.600900: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15429          <idle>-0     (-----) [001] dns3 24560.600911: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15430          <idle>-0     (-----) [001] dns3 24560.600914: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
15431          <idle>-0     (-----) [001] dns4 24560.600932: sched_blocked_reason: pid=25995 iowait=0 caller=worker_thread+0x578/0x788
15432          <idle>-0     (-----) [001] dns4 24560.600935: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
15433          <idle>-0     (-----) [001] .n.1 24560.600942: cpu_idle: state=4294967295 cpu_id=1
15434          <idle>-0     (-----) [001] d..2 24560.600949: 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
15435     rcu_preempt-7     (    7) [001] d..2 24560.600955: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
15436     rcu_preempt-7     (    7) [001] d..3 24560.600967: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
15437     rcu_preempt-7     (    7) [001] d..2 24560.600975: 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
15438         rcuop/2-29    (   29) [001] d..2 24560.600981: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
15439         rcuop/2-29    (   29) [001] d..3 24560.600998: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
15440         rcuop/2-29    (   29) [001] d..2 24560.601051: 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
15441         rcuop/3-37    (   37) [001] d..2 24560.601095: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
15442  kworker/u16:16-25995 (25995) [001] .... 24560.601121: clk_set_rate: l3_cluster0_vote_clk 480000000
15443  kworker/u16:16-25995 (25995) [001] .... 24560.601124: clk_set_rate: l3_clk 480000000
15444  kworker/u16:16-25995 (25995) [001] d..2 24560.601180: 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
15445          <idle>-0     (-----) [001] d..1 24560.601190: cpu_idle: state=0 cpu_id=1
15446          <idle>-0     (-----) [000] d.s2 24560.604266: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
15447          <idle>-0     (-----) [000] dns3 24560.604280: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
15448          <idle>-0     (-----) [000] .n.1 24560.604293: cpu_idle: state=4294967295 cpu_id=0
15449          <idle>-0     (-----) [000] d..2 24560.604301: 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
15450       rcu_sched-8     (    8) [000] d..2 24560.604308: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=000
15451       rcu_sched-8     (    8) [000] d..3 24560.604321: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=000
15452       rcu_sched-8     (    8) [000] d..2 24560.604329: 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
15453<...>-11 ( 11) [000] d..2 24560.604349: sched_switch: prev_comm=rcuos/0 prev_pid=11 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15454          <idle>-0     (-----) [000] d..1 24560.604360: cpu_idle: state=0 cpu_id=0
15455          <idle>-0     (-----) [001] d.s2 24560.607573: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15456          <idle>-0     (-----) [001] dns3 24560.607587: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15457          <idle>-0     (-----) [001] dns3 24560.607590: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
15458          <idle>-0     (-----) [001] dns4 24560.607598: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
15459          <idle>-0     (-----) [001] .n.1 24560.607611: cpu_idle: state=4294967295 cpu_id=1
15460          <idle>-0     (-----) [001] d..2 24560.607619: 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
15461     rcu_preempt-7     (    7) [001] d..2 24560.607627: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
15462     rcu_preempt-7     (    7) [001] d..3 24560.607651: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
15463     rcu_preempt-7     (    7) [001] d..2 24560.607661: 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
15464         rcuop/0-10    (   10) [001] d..2 24560.607666: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
15465         rcuop/0-10    (   10) [001] d..3 24560.607679: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
15466         rcuop/0-10    (   10) [001] d..2 24560.607920: 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
15467         rcuop/1-21    (   21) [001] d..2 24560.607946: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
15468  kworker/u16:16-25995 (25995) [001] d..2 24560.608091: 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
15469          <idle>-0     (-----) [001] d..1 24560.608103: cpu_idle: state=2 cpu_id=1
15470          <idle>-0     (-----) [003] d.s3 24560.608115: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
15471          <idle>-0     (-----) [003] d.s4 24560.608138: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
15472          <idle>-0     (-----) [003] dns4 24560.608141: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
15473          <idle>-0     (-----) [003] .n.1 24560.608146: cpu_idle: state=4294967295 cpu_id=3
15474          <idle>-0     (-----) [003] d..2 24560.608156: 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
15475  kworker/u16:16-25995 (25995) [003] d..2 24560.608183: 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
15476          <idle>-0     (-----) [003] d..1 24560.608192: cpu_idle: state=0 cpu_id=3
15477          <idle>-0     (-----) [000] ...1 24560.610363: cpu_idle: state=4294967295 cpu_id=0
15478          <idle>-0     (-----) [000] d..1 24560.610367: cpu_idle: state=2 cpu_id=0
15479          <idle>-0     (-----) [003] d..2 24560.614198: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
15480          <idle>-0     (-----) [003] dn.3 24560.614219: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
15481          <idle>-0     (-----) [003] .n.1 24560.614224: cpu_idle: state=4294967295 cpu_id=3
15482          <idle>-0     (-----) [003] d..2 24560.614234: 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
15483     ksoftirqd/3-34    (   34) [003] d.s2 24560.614258: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
15484     ksoftirqd/3-34    (   34) [003] d.s3 24560.614271: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
15485     ksoftirqd/3-34    (   34) [003] d..2 24560.614282: 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
15486  kworker/u16:16-25995 (25995) [003] .... 24560.614308: clk_set_rate: l3_cluster0_vote_clk 300000000
15487  kworker/u16:16-25995 (25995) [003] .... 24560.614312: clk_set_rate: l3_clk 300000000
15488  kworker/u16:16-25995 (25995) [003] d..2 24560.614368: 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
15489          <idle>-0     (-----) [003] d..1 24560.614381: cpu_idle: state=2 cpu_id=3
15490          <idle>-0     (-----) [001] d.s2 24560.614625: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15491          <idle>-0     (-----) [001] dns3 24560.614646: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15492          <idle>-0     (-----) [001] .n.1 24560.614656: cpu_idle: state=4294967295 cpu_id=1
15493          <idle>-0     (-----) [001] d..2 24560.614670: 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
15494     rcu_preempt-7     (    7) [001] d..2 24560.614679: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
15495     rcu_preempt-7     (    7) [001] d..3 24560.614691: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
15496     rcu_preempt-7     (    7) [001] d..2 24560.614705: 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
15497         rcuop/2-29    (   29) [001] d..2 24560.614823: 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
15498          <idle>-0     (-----) [001] d..1 24560.614837: cpu_idle: state=2 cpu_id=1
15499          <idle>-0     (-----) [001] d.H3 24560.621339: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
15500          <idle>-0     (-----) [001] d.H3 24560.621359: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
15501          <idle>-0     (-----) [001] d.H4 24560.621373: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
15502          <idle>-0     (-----) [002] .n.1 24560.621377: cpu_idle: state=4294967295 cpu_id=2
15503          <idle>-0     (-----) [001] d.s2 24560.621382: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15504          <idle>-0     (-----) [002] d..2 24560.621388: 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
15505          <idle>-0     (-----) [001] dns3 24560.621398: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15506          <idle>-0     (-----) [001] dns3 24560.621403: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
15507         sugov:0-559   (  559) [002] .... 24560.621412: clk_set_rate: pwrcl_clk 1228800000
15508          <idle>-0     (-----) [001] dns4 24560.621429: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
15509          <idle>-0     (-----) [001] .n.1 24560.621446: cpu_idle: state=4294967295 cpu_id=1
15510          <idle>-0     (-----) [001] d..2 24560.621460: 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
15511     rcu_preempt-7     (    7) [001] d..2 24560.621475: 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
15512         sugov:0-559   (  559) [002] .... 24560.621538: clk_set_rate: cpu3_pwrcl_clk 1689600000
15513         sugov:0-559   (  559) [002] .... 24560.621549: clk_set_rate: cpu2_pwrcl_clk 1689600000
15514         sugov:0-559   (  559) [002] .... 24560.621558: clk_set_rate: cpu1_pwrcl_clk 1689600000
15515  kworker/u16:16-25995 (25995) [001] d..2 24560.621561: 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
15516         sugov:0-559   (  559) [002] .... 24560.621567: clk_set_rate: cpu0_pwrcl_clk 1228800000
15517          <idle>-0     (-----) [001] d..1 24560.621572: cpu_idle: state=0 cpu_id=1
15518         sugov:0-559   (  559) [002] .... 24560.621684: cpu_frequency: state=1228800 cpu_id=0
15519         sugov:0-559   (  559) [002] .... 24560.621700: cpu_frequency: state=1228800 cpu_id=1
15520         sugov:0-559   (  559) [002] .... 24560.621704: cpu_frequency: state=1228800 cpu_id=2
15521         sugov:0-559   (  559) [002] .... 24560.621708: cpu_frequency: state=1228800 cpu_id=3
15522         sugov:0-559   (  559) [002] d..2 24560.621740: 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
15523          <idle>-0     (-----) [002] d..1 24560.621755: cpu_idle: state=0 cpu_id=2
15524          <idle>-0     (-----) [003] ...1 24560.621889: cpu_idle: state=4294967295 cpu_id=3
15525          <idle>-0     (-----) [003] d..1 24560.621902: cpu_idle: state=2 cpu_id=3
15526          <idle>-0     (-----) [005] dnh2 24560.622425: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
15527          <idle>-0     (-----) [005] .n.1 24560.622434: cpu_idle: state=4294967295 cpu_id=5
15528          <idle>-0     (-----) [005] d..2 24560.622446: 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
15529         sugov:4-560   (  560) [005] d..2 24560.622471: 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
15530          <idle>-0     (-----) [005] d..1 24560.622483: cpu_idle: state=2 cpu_id=5
15531          <idle>-0     (-----) [001] d.s2 24560.627580: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15532          <idle>-0     (-----) [001] dns3 24560.627596: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15533          <idle>-0     (-----) [001] dns3 24560.627600: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
15534          <idle>-0     (-----) [001] dns4 24560.627611: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
15535          <idle>-0     (-----) [001] .n.1 24560.627622: cpu_idle: state=4294967295 cpu_id=1
15536          <idle>-0     (-----) [001] d..2 24560.627632: 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
15537     rcu_preempt-7     (    7) [001] d..2 24560.627640: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
15538     rcu_preempt-7     (    7) [001] d..3 24560.627655: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
15539     rcu_preempt-7     (    7) [001] d..2 24560.627666: 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
15540         rcuop/0-10    (   10) [001] d..2 24560.627671: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
15541         rcuop/0-10    (   10) [001] d..3 24560.627682: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
15542         rcuop/0-10    (   10) [001] d..2 24560.627699: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15543         rcuop/0-10    (   10) [001] d..3 24560.627708: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15544         rcuop/0-10    (   10) [001] d..2 24560.627716: 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
15545         rcuop/1-21    (   21) [001] d..2 24560.627939: 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
15546     rcu_preempt-7     (    7) [001] d..2 24560.627955: 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
15547  kworker/u16:16-25995 (25995) [001] d..2 24560.628029: 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
15548          <idle>-0     (-----) [001] d..1 24560.628045: cpu_idle: state=2 cpu_id=1
15549          <idle>-0     (-----) [001] d.s2 24560.634562: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15550          <idle>-0     (-----) [001] dns3 24560.634586: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15551          <idle>-0     (-----) [001] dns3 24560.634593: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
15552          <idle>-0     (-----) [001] dns4 24560.634603: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
15553          <idle>-0     (-----) [001] .n.1 24560.634624: cpu_idle: state=4294967295 cpu_id=1
15554          <idle>-0     (-----) [001] d..2 24560.634638: 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
15555     rcu_preempt-7     (    7) [001] d..2 24560.634649: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
15556     rcu_preempt-7     (    7) [001] d..3 24560.634661: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
15557     rcu_preempt-7     (    7) [001] d..2 24560.634672: 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
15558         rcuop/0-10    (   10) [001] d..2 24560.634675: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
15559         rcuop/0-10    (   10) [001] d..3 24560.634685: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
15560         rcuop/0-10    (   10) [001] d..2 24560.634690: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15561         rcuop/0-10    (   10) [001] d..3 24560.634699: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15562         rcuop/0-10    (   10) [001] d..2 24560.634706: 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
15563     rcu_preempt-7     (    7) [001] d..2 24560.634719: 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
15564         rcuop/1-21    (   21) [001] d..2 24560.634739: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
15565  kworker/u16:16-25995 (25995) [001] d..2 24560.634861: 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
15566          <idle>-0     (-----) [001] d..1 24560.634876: cpu_idle: state=2 cpu_id=1
15567          <idle>-0     (-----) [001] d.H3 24560.641305: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
15568          <idle>-0     (-----) [001] d.H3 24560.641321: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
15569          <idle>-0     (-----) [001] d.H4 24560.641336: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
15570          <idle>-0     (-----) [002] .n.1 24560.641343: cpu_idle: state=4294967295 cpu_id=2
15571          <idle>-0     (-----) [001] d.s2 24560.641345: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15572          <idle>-0     (-----) [002] d..2 24560.641356: 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
15573          <idle>-0     (-----) [001] dns3 24560.641364: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15574          <idle>-0     (-----) [001] dns3 24560.641369: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
15575         sugov:0-559   (  559) [002] .... 24560.641377: clk_set_rate: pwrcl_clk 652800000
15576         sugov:0-559   (  559) [002] .... 24560.641386: clk_set_rate: cpu3_pwrcl_clk 1228800000
15577         sugov:0-559   (  559) [002] .... 24560.641397: clk_set_rate: cpu2_pwrcl_clk 1228800000
15578          <idle>-0     (-----) [001] dns4 24560.641402: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
15579         sugov:0-559   (  559) [002] .... 24560.641408: clk_set_rate: cpu1_pwrcl_clk 1228800000
15580          <idle>-0     (-----) [001] dns3 24560.641414: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15581         sugov:0-559   (  559) [002] .... 24560.641417: clk_set_rate: cpu0_pwrcl_clk 652800000
15582          <idle>-0     (-----) [001] dns4 24560.641426: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15583          <idle>-0     (-----) [001] .n.1 24560.641448: cpu_idle: state=4294967295 cpu_id=1
15584          <idle>-0     (-----) [001] d..2 24560.641473: 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
15585     rcu_preempt-7     (    7) [001] d..2 24560.641502: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
15586         sugov:0-559   (  559) [002] .... 24560.641535: cpu_frequency: state=652800 cpu_id=0
15587         sugov:0-559   (  559) [002] .... 24560.641548: cpu_frequency: state=652800 cpu_id=1
15588         sugov:0-559   (  559) [002] .... 24560.641554: cpu_frequency: state=652800 cpu_id=2
15589         sugov:0-559   (  559) [002] .... 24560.641559: cpu_frequency: state=652800 cpu_id=3
15590         sugov:0-559   (  559) [002] d..2 24560.641585: 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
15591     kworker/1:1-13091 (13091) [001] d..2 24560.641684: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15592          <idle>-0     (-----) [001] d..1 24560.641732: cpu_idle: state=0 cpu_id=1
15593  kworker/u16:16-25995 (25995) [002] d..2 24560.641789: 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
15594          <idle>-0     (-----) [002] d..1 24560.641813: cpu_idle: state=0 cpu_id=2
15595          <idle>-0     (-----) [005] dnh2 24560.642378: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
15596          <idle>-0     (-----) [005] .n.1 24560.642387: cpu_idle: state=4294967295 cpu_id=5
15597          <idle>-0     (-----) [005] d..2 24560.642401: 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
15598         sugov:4-560   (  560) [005] d..2 24560.642424: 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
15599          <idle>-0     (-----) [005] d..1 24560.642437: cpu_idle: state=2 cpu_id=5
15600          <idle>-0     (-----) [001] d.s2 24560.647587: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15601          <idle>-0     (-----) [001] dns3 24560.647610: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15602          <idle>-0     (-----) [001] dns3 24560.647617: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
15603          <idle>-0     (-----) [001] dns4 24560.647662: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
15604          <idle>-0     (-----) [001] .n.1 24560.647689: cpu_idle: state=4294967295 cpu_id=1
15605          <idle>-0     (-----) [001] d..2 24560.647706: 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
15606     rcu_preempt-7     (    7) [001] d..2 24560.647718: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
15607     rcu_preempt-7     (    7) [001] d..3 24560.647741: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
15608     rcu_preempt-7     (    7) [001] d..2 24560.647757: 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
15609         rcuop/0-10    (   10) [001] d..2 24560.647763: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
15610         rcuop/0-10    (   10) [001] d..3 24560.647781: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
15611         rcuop/0-10    (   10) [001] d..2 24560.647795: 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
15612         rcuop/1-21    (   21) [001] d..2 24560.647867: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
15613  kworker/u16:16-25995 (25995) [001] d..2 24560.648006: 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
15614          <idle>-0     (-----) [001] d..1 24560.648027: cpu_idle: state=2 cpu_id=1
15615          <idle>-0     (-----) [000] d.h2 24560.662936: sched_waking: comm=PowerManagerSer pid=24006 prio=116 target_cpu=000
15616          <idle>-0     (-----) [000] dnh3 24560.662997: sched_wakeup: comm=PowerManagerSer pid=24006 prio=116 target_cpu=000
15617          <idle>-0     (-----) [000] dnh3 24560.663101: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
15618          <idle>-0     (-----) [000] dnh3 24560.663122: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
15619          <idle>-0     (-----) [000] dnh4 24560.663140: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
15620          <idle>-0     (-----) [002] .n.1 24560.663148: cpu_idle: state=4294967295 cpu_id=2
15621          <idle>-0     (-----) [000] .n.1 24560.663152: cpu_idle: state=4294967295 cpu_id=0
15622          <idle>-0     (-----) [002] d..2 24560.663166: 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
15623          <idle>-0     (-----) [000] d..2 24560.663180: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=24006 next_prio=116
15624         sugov:0-559   (  559) [002] d..2 24560.663211: 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
15625          <idle>-0     (-----) [002] d..2 24560.663219: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
15626          <idle>-0     (-----) [002] dn.3 24560.663250: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
15627          <idle>-0     (-----) [002] d..2 24560.663266: 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
15628     ksoftirqd/2-26    (   26) [002] d.s2 24560.663294: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
15629     ksoftirqd/2-26    (   26) [002] d.s3 24560.663351: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
15630     ksoftirqd/2-26    (   26) [002] d..2 24560.663374: 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
15631  kworker/u16:16-25995 (25995) [002] d..2 24560.663553: 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
15632          <idle>-0     (-----) [002] d..1 24560.663573: cpu_idle: state=0 cpu_id=2
15633 PowerManagerSer-24006 (23968) [000] d..2 24560.663908: sched_switch: prev_comm=PowerManagerSer prev_pid=24006 prev_prio=116 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15634          <idle>-0     (-----) [000] d..1 24560.663940: cpu_idle: state=0 cpu_id=0
15635          <idle>-0     (-----) [005] dnh2 24560.664171: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
15636          <idle>-0     (-----) [005] .n.1 24560.664180: cpu_idle: state=4294967295 cpu_id=5
15637          <idle>-0     (-----) [005] d..2 24560.664193: 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
15638         sugov:4-560   (  560) [005] d..2 24560.664216: 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
15639          <idle>-0     (-----) [005] d..1 24560.664273: cpu_idle: state=2 cpu_id=5
15640          <idle>-0     (-----) [000] d..2 24560.669958: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
15641          <idle>-0     (-----) [000] dn.3 24560.669990: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
15642          <idle>-0     (-----) [000] .n.1 24560.669997: cpu_idle: state=4294967295 cpu_id=0
15643          <idle>-0     (-----) [000] d..2 24560.670019: 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
15644     ksoftirqd/0-3     (    3) [000] d..2 24560.670089: 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
15645          <idle>-0     (-----) [000] d..1 24560.670104: cpu_idle: state=2 cpu_id=0
15646          <idle>-0     (-----) [001] d.H3 24560.718050: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
15647          <idle>-0     (-----) [001] d.H3 24560.718091: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
15648          <idle>-0     (-----) [001] d.H4 24560.718112: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
15649          <idle>-0     (-----) [002] .n.1 24560.718121: cpu_idle: state=4294967295 cpu_id=2
15650          <idle>-0     (-----) [001] d.s3 24560.718130: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15651          <idle>-0     (-----) [002] d..2 24560.718141: 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
15652          <idle>-0     (-----) [001] dns4 24560.718146: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15653          <idle>-0     (-----) [001] dns3 24560.718157: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
15654         sugov:0-559   (  559) [002] d..2 24560.718187: 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
15655          <idle>-0     (-----) [001] dns4 24560.718200: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
15656          <idle>-0     (-----) [002] d..2 24560.718215: 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
15657          <idle>-0     (-----) [001] .n.1 24560.718246: cpu_idle: state=4294967295 cpu_id=1
15658          <idle>-0     (-----) [001] d..2 24560.718268: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
15659     kworker/1:1-13091 (13091) [001] d..3 24560.718523: sched_waking: comm=kworker/1:0 pid=13068 prio=120 target_cpu=001
15660     kworker/1:1-13091 (13091) [001] d..3 24560.718562: sched_wakeup: comm=kworker/1:0 pid=13068 prio=120 target_cpu=001
15661  kworker/u16:16-25995 (25995) [002] d..2 24560.718572: 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
15662     kworker/1:1-13091 (13091) [001] d..2 24560.718575: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=D ==> next_comm=kworker/1:0 next_pid=13068 next_prio=120
15663          <idle>-0     (-----) [002] d..1 24560.718594: cpu_idle: state=0 cpu_id=2
15664<...>-13068 ( 13068) [001] d..2 24560.718656: sched_switch: prev_comm=kworker/1:0 prev_pid=13068 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15665          <idle>-0     (-----) [001] d..1 24560.718683: cpu_idle: state=2 cpu_id=1
15666          <idle>-0     (-----) [003] d.s3 24560.718928: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
15667          <idle>-0     (-----) [003] d.s4 24560.718982: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
15668          <idle>-0     (-----) [003] dns4 24560.718992: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
15669          <idle>-0     (-----) [003] .n.1 24560.719004: cpu_idle: state=4294967295 cpu_id=3
15670          <idle>-0     (-----) [003] d..2 24560.719026: 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
15671  kworker/u16:16-25995 (25995) [003] d..2 24560.719139: 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
15672          <idle>-0     (-----) [003] d..1 24560.719162: cpu_idle: state=2 cpu_id=3
15673          <idle>-0     (-----) [006] dnh2 24560.719226: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
15674          <idle>-0     (-----) [006] .n.1 24560.719239: cpu_idle: state=4294967295 cpu_id=6
15675          <idle>-0     (-----) [006] d..2 24560.719256: 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
15676         sugov:4-560   (  560) [006] d..2 24560.719284: 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
15677          <idle>-0     (-----) [006] d..1 24560.719304: cpu_idle: state=2 cpu_id=6
15678          <idle>-0     (-----) [000] d.h3 24560.719625: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
15679          <idle>-0     (-----) [000] dnh4 24560.719655: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
15680          <idle>-0     (-----) [000] .n.1 24560.719694: cpu_idle: state=4294967295 cpu_id=0
15681          <idle>-0     (-----) [000] d..2 24560.719722: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
15682     kworker/0:1-13012 (13012) [000] d..2 24560.719738: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15683     kworker/0:1-13012 (13012) [000] d..3 24560.719749: sched_blocked_reason: pid=13091 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
15684     kworker/0:1-13012 (13012) [000] d..3 24560.719762: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15685     kworker/0:1-13012 (13012) [000] d..2 24560.719801: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15686          <idle>-0     (-----) [000] d..1 24560.719823: cpu_idle: state=0 cpu_id=0
15687          <idle>-0     (-----) [001] .n.1 24560.720085: cpu_idle: state=4294967295 cpu_id=1
15688          <idle>-0     (-----) [001] d..2 24560.720120: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
15689     kworker/1:1-13091 (13091) [001] d..2 24560.720326: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15690          <idle>-0     (-----) [001] d..1 24560.720351: cpu_idle: state=0 cpu_id=1
15691          <idle>-0     (-----) [000] d..2 24560.725837: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
15692          <idle>-0     (-----) [000] dn.3 24560.725854: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
15693          <idle>-0     (-----) [000] .n.1 24560.725859: cpu_idle: state=4294967295 cpu_id=0
15694          <idle>-0     (-----) [000] d..2 24560.725879: 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
15695     ksoftirqd/0-3     (    3) [000] d..2 24560.725928: 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
15696          <idle>-0     (-----) [000] d..1 24560.725943: cpu_idle: state=2 cpu_id=0
15697          <idle>-0     (-----) [001] ...1 24560.726365: cpu_idle: state=4294967295 cpu_id=1
15698          <idle>-0     (-----) [001] d..1 24560.726373: cpu_idle: state=2 cpu_id=1
15699          <idle>-0     (-----) [000] d..2 24561.020193: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
15700          <idle>-0     (-----) [000] dn.3 24561.020217: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
15701          <idle>-0     (-----) [000] dnH3 24561.020309: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
15702          <idle>-0     (-----) [000] dnH3 24561.020328: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
15703          <idle>-0     (-----) [000] dnH4 24561.020349: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
15704          <idle>-0     (-----) [002] .n.1 24561.020358: cpu_idle: state=4294967295 cpu_id=2
15705          <idle>-0     (-----) [000] dns3 24561.020365: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
15706          <idle>-0     (-----) [002] d..2 24561.020377: 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
15707          <idle>-0     (-----) [000] dns4 24561.020420: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
15708         sugov:0-559   (  559) [002] d..2 24561.020435: 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
15709          <idle>-0     (-----) [000] dns3 24561.020447: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
15710          <idle>-0     (-----) [000] dns4 24561.020514: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
15711          <idle>-0     (-----) [000] dns3 24561.020529: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
15712          <idle>-0     (-----) [000] dns4 24561.020541: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
15713          <idle>-0     (-----) [000] .n.1 24561.020563: cpu_idle: state=4294967295 cpu_id=0
15714          <idle>-0     (-----) [000] d..2 24561.020586: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
15715  kworker/u16:15-18488 (18488) [000] d..2 24561.020613: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
15716     kworker/0:1-13012 (13012) [000] d..2 24561.020680: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
15717  kworker/u16:16-25995 (25995) [002] d..2 24561.020710: 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
15718     ksoftirqd/0-3     (    3) [000] d..2 24561.020714: 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
15719          <idle>-0     (-----) [002] d..1 24561.020732: cpu_idle: state=0 cpu_id=2
15720          <idle>-0     (-----) [000] d..1 24561.020739: cpu_idle: state=0 cpu_id=0
15721          <idle>-0     (-----) [006] dnh2 24561.021402: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
15722          <idle>-0     (-----) [006] .n.1 24561.021413: cpu_idle: state=4294967295 cpu_id=6
15723          <idle>-0     (-----) [006] d..2 24561.021427: 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
15724         sugov:4-560   (  560) [006] d..2 24561.021457: 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
15725          <idle>-0     (-----) [006] d..2 24561.021463: sched_waking: comm=ksoftirqd/6 pid=58 prio=120 target_cpu=006
15726          <idle>-0     (-----) [006] dn.3 24561.021481: sched_wakeup: comm=ksoftirqd/6 pid=58 prio=120 target_cpu=006
15727          <idle>-0     (-----) [006] d..2 24561.021492: 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
15728     ksoftirqd/6-58    (   58) [006] d..2 24561.021529: 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
15729          <idle>-0     (-----) [006] d..1 24561.021542: cpu_idle: state=2 cpu_id=6
15730          <idle>-0     (-----) [000] d..2 24561.026754: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
15731          <idle>-0     (-----) [000] dn.3 24561.026767: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
15732          <idle>-0     (-----) [000] .n.1 24561.026774: cpu_idle: state=4294967295 cpu_id=0
15733          <idle>-0     (-----) [000] d..2 24561.026791: 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
15734     ksoftirqd/0-3     (    3) [000] d..2 24561.026833: 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
15735          <idle>-0     (-----) [000] d..1 24561.026848: cpu_idle: state=2 cpu_id=0
15736          <idle>-0     (-----) [003] d.h2 24561.492839: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
15737          <idle>-0     (-----) [003] dnh3 24561.492890: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
15738          <idle>-0     (-----) [003] dnh3 24561.492992: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
15739          <idle>-0     (-----) [003] dnh3 24561.493012: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
15740          <idle>-0     (-----) [003] dnh4 24561.493030: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
15741          <idle>-0     (-----) [002] .n.1 24561.493038: cpu_idle: state=4294967295 cpu_id=2
15742          <idle>-0     (-----) [003] .n.1 24561.493040: cpu_idle: state=4294967295 cpu_id=3
15743          <idle>-0     (-----) [002] d..2 24561.493057: 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
15744          <idle>-0     (-----) [003] d..2 24561.493068: 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
15745         sugov:0-559   (  559) [002] d..2 24561.493102: 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
15746          <idle>-0     (-----) [002] d..2 24561.493107: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
15747          <idle>-0     (-----) [002] dn.3 24561.493125: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
15748          <idle>-0     (-----) [002] d..2 24561.493137: 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
15749     ksoftirqd/2-26    (   26) [002] d.s2 24561.493150: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
15750     ksoftirqd/2-26    (   26) [002] d.s3 24561.493175: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
15751     ksoftirqd/2-26    (   26) [002] d.s2 24561.493189: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
15752     ksoftirqd/2-26    (   26) [002] d.s3 24561.493204: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
15753     ksoftirqd/2-26    (   26) [002] d.s2 24561.493222: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
15754     ksoftirqd/2-26    (   26) [002] d.s2 24561.493256: sched_waking: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
15755     ksoftirqd/2-26    (   26) [002] d.s2 24561.493282: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
15756 bluetooth@1.0-s-24508 (  759) [003] d..2 24561.493287: 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
15757          <idle>-0     (-----) [003] d..2 24561.493295: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
15758     ksoftirqd/2-26    (   26) [002] d.s2 24561.493306: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
15759          <idle>-0     (-----) [003] dn.3 24561.493316: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
15760          <idle>-0     (-----) [003] d..2 24561.493331: 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
15761     ksoftirqd/2-26    (   26) [002] d.s2 24561.493332: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
15762     ksoftirqd/2-26    (   26) [002] d.s3 24561.493358: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
15763     ksoftirqd/3-34    (   34) [003] d..2 24561.493379: 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
15764     ksoftirqd/2-26    (   26) [002] d..2 24561.493412: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
15765     kworker/3:1-12662 (12662) [003] d..2 24561.493444: 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
15766          <idle>-0     (-----) [003] d..1 24561.493465: cpu_idle: state=2 cpu_id=3
15767     kworker/2:0-12895 (12895) [002] d..2 24561.493478: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
15768     kworker/2:0-12895 (12895) [002] d..3 24561.493498: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
15769     kworker/2:0-12895 (12895) [002] d..2 24561.493509: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15770     kworker/2:0-12895 (12895) [002] d..3 24561.493524: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15771     kworker/2:0-12895 (12895) [002] d..2 24561.493551: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
15772  kworker/u16:16-25995 (25995) [002] d..2 24561.493757: 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
15773          <idle>-0     (-----) [002] d..1 24561.493778: cpu_idle: state=0 cpu_id=2
15774          <idle>-0     (-----) [000] .n.1 24561.493886: cpu_idle: state=4294967295 cpu_id=0
15775          <idle>-0     (-----) [000] d..2 24561.493919: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
15776          <idle>-0     (-----) [001] .n.1 24561.493962: cpu_idle: state=4294967295 cpu_id=1
15777     kworker/0:1-13012 (13012) [000] d..2 24561.493983: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15778          <idle>-0     (-----) [001] d..2 24561.493994: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
15779          <idle>-0     (-----) [000] d..1 24561.494007: cpu_idle: state=2 cpu_id=0
15780     kworker/1:1-13091 (13091) [001] d..2 24561.494054: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15781          <idle>-0     (-----) [001] d..1 24561.494077: cpu_idle: state=0 cpu_id=1
15782          <idle>-0     (-----) [004] dnh2 24561.494148: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
15783          <idle>-0     (-----) [004] .n.1 24561.494160: cpu_idle: state=4294967295 cpu_id=4
15784          <idle>-0     (-----) [004] d..2 24561.494179: 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
15785     kworker/4:0-24269 (24269) [004] d..2 24561.494222: 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
15786          <idle>-0     (-----) [007] dnh2 24561.494273: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
15787          <idle>-0     (-----) [005] dnh2 24561.494277: sched_wakeup: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
15788          <idle>-0     (-----) [004] d..1 24561.494284: cpu_idle: state=2 cpu_id=4
15789          <idle>-0     (-----) [005] .n.1 24561.494287: cpu_idle: state=4294967295 cpu_id=5
15790          <idle>-0     (-----) [007] .n.1 24561.494287: cpu_idle: state=4294967295 cpu_id=7
15791          <idle>-0     (-----) [005] d..2 24561.494302: 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
15792          <idle>-0     (-----) [007] d..2 24561.494306: 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
15793     kworker/5:0-24254 (24254) [005] d..2 24561.494344: 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
15794          <idle>-0     (-----) [006] dnh2 24561.494348: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
15795     kworker/7:0-12892 (12892) [007] d..2 24561.494351: 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
15796          <idle>-0     (-----) [006] dnh2 24561.494355: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
15797          <idle>-0     (-----) [005] d..1 24561.494356: cpu_idle: state=2 cpu_id=5
15798          <idle>-0     (-----) [006] .n.1 24561.494363: cpu_idle: state=4294967295 cpu_id=6
15799          <idle>-0     (-----) [007] d..1 24561.494370: cpu_idle: state=2 cpu_id=7
15800          <idle>-0     (-----) [006] d..2 24561.494375: 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
15801         sugov:4-560   (  560) [006] d..2 24561.494386: 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
15802     kworker/6:0-21469 (21469) [006] d..2 24561.494419: 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
15803          <idle>-0     (-----) [006] d..1 24561.494432: cpu_idle: state=2 cpu_id=6
15804          <idle>-0     (-----) [001] d..2 24561.500103: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
15805          <idle>-0     (-----) [001] dn.3 24561.500129: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
15806          <idle>-0     (-----) [001] dnH3 24561.500220: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
15807          <idle>-0     (-----) [001] dnH3 24561.500240: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
15808          <idle>-0     (-----) [001] dnH4 24561.500258: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
15809          <idle>-0     (-----) [002] .n.1 24561.500267: cpu_idle: state=4294967295 cpu_id=2
15810          <idle>-0     (-----) [001] .n.1 24561.500277: cpu_idle: state=4294967295 cpu_id=1
15811          <idle>-0     (-----) [002] d..2 24561.500284: 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
15812          <idle>-0     (-----) [001] d..2 24561.500300: 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
15813         sugov:0-559   (  559) [002] d..2 24561.500329: 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
15814          <idle>-0     (-----) [002] d..1 24561.500343: cpu_idle: state=0 cpu_id=2
15815     ksoftirqd/1-18    (   18) [001] d..2 24561.500349: 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
15816          <idle>-0     (-----) [001] d..1 24561.500367: cpu_idle: state=2 cpu_id=1
15817          <idle>-0     (-----) [006] dnh2 24561.501299: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
15818          <idle>-0     (-----) [006] .n.1 24561.501308: cpu_idle: state=4294967295 cpu_id=6
15819          <idle>-0     (-----) [006] d..2 24561.501322: 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
15820         sugov:4-560   (  560) [006] d..2 24561.501349: 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
15821          <idle>-0     (-----) [006] d..2 24561.501353: sched_waking: comm=ksoftirqd/6 pid=58 prio=120 target_cpu=006
15822          <idle>-0     (-----) [006] dn.3 24561.501364: sched_wakeup: comm=ksoftirqd/6 pid=58 prio=120 target_cpu=006
15823          <idle>-0     (-----) [006] d..2 24561.501373: 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
15824     ksoftirqd/6-58    (   58) [006] d.s2 24561.501385: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
15825     ksoftirqd/6-58    (   58) [006] d..2 24561.501417: 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
15826          <idle>-0     (-----) [002] dnh2 24561.501423: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
15827          <idle>-0     (-----) [006] d..1 24561.501428: cpu_idle: state=2 cpu_id=6
15828          <idle>-0     (-----) [002] .n.1 24561.501432: cpu_idle: state=4294967295 cpu_id=2
15829          <idle>-0     (-----) [002] d..2 24561.501447: 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
15830  kworker/u16:16-25995 (25995) [002] d..2 24561.501549: 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
15831          <idle>-0     (-----) [002] d..1 24561.501566: cpu_idle: state=0 cpu_id=2
15832          <idle>-0     (-----) [001] d.h3 24561.731272: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
15833          <idle>-0     (-----) [001] dnh4 24561.731318: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
15834          <idle>-0     (-----) [001] dnH3 24561.731421: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
15835          <idle>-0     (-----) [001] dnH3 24561.731449: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
15836          <idle>-0     (-----) [001] dnH4 24561.731469: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
15837          <idle>-0     (-----) [002] .n.1 24561.731478: cpu_idle: state=4294967295 cpu_id=2
15838          <idle>-0     (-----) [001] dns3 24561.731487: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15839          <idle>-0     (-----) [002] d..2 24561.731496: 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
15840          <idle>-0     (-----) [001] dns4 24561.731500: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15841          <idle>-0     (-----) [001] .n.1 24561.731553: cpu_idle: state=4294967295 cpu_id=1
15842         sugov:0-559   (  559) [002] d..2 24561.731559: 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
15843  kworker/u16:16-25995 (25995) [002] d..2 24561.731567: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
15844          <idle>-0     (-----) [001] d..2 24561.731575: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
15845  kworker/u16:16-25995 (25995) [002] dn.3 24561.731625: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
15846  kworker/u16:16-25995 (25995) [002] d..2 24561.731638: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
15847     kworker/1:1-13091 (13091) [001] d..3 24561.731660: sched_waking: comm=kworker/1:0 pid=13068 prio=120 target_cpu=001
15848     kworker/1:1-13091 (13091) [001] d..3 24561.731679: sched_wakeup: comm=kworker/1:0 pid=13068 prio=120 target_cpu=001
15849     kworker/1:1-13091 (13091) [001] d..2 24561.731690: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=D ==> next_comm=kworker/1:0 next_pid=13068 next_prio=120
15850<...>-13068 ( 13068) [001] d..2 24561.731822: sched_switch: prev_comm=kworker/1:0 prev_pid=13068 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
15851  kworker/u16:16-25995 (25995) [001] d..3 24561.731876: sched_waking: comm=kworker/1:0 pid=13068 prio=120 target_cpu=001
15852  kworker/u16:16-25995 (25995) [001] dn.4 24561.731892: sched_wakeup: comm=kworker/1:0 pid=13068 prio=120 target_cpu=001
15853  kworker/u16:16-25995 (25995) [001] d..2 24561.731903: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:0 next_pid=13068 next_prio=120
15854<...>-13068 ( 13068) [001] d..3 24561.731917: sched_waking: comm=msm_irqbalance pid=805 prio=120 target_cpu=001
15855<...>-13068 ( 13068) [001] d..4 24561.731955: sched_wakeup: comm=msm_irqbalance pid=805 prio=120 target_cpu=001
15856<...>-13068 ( 13068) [001] d..2 24561.732007: sched_switch: prev_comm=kworker/1:0 prev_pid=13068 prev_prio=120 prev_state=S ==> next_comm=msm_irqbalance next_pid=805 next_prio=120
15857  kworker/u16:15-18488 (18488) [002] d..2 24561.732062: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
15858  kworker/u16:16-25995 (25995) [002] d..2 24561.732096: 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
15859          <idle>-0     (-----) [002] d..1 24561.732117: cpu_idle: state=0 cpu_id=2
15860          <idle>-0     (-----) [007] dnh2 24561.732500: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
15861          <idle>-0     (-----) [007] .n.1 24561.732510: cpu_idle: state=4294967295 cpu_id=7
15862          <idle>-0     (-----) [007] d..2 24561.732522: 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
15863         sugov:4-560   (  560) [007] d..2 24561.732546: 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
15864          <idle>-0     (-----) [007] d..1 24561.732560: cpu_idle: state=2 cpu_id=7
15865          <idle>-0     (-----) [000] d.h3 24561.732742: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
15866          <idle>-0     (-----) [000] dnh4 24561.732767: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
15867          <idle>-0     (-----) [000] .n.1 24561.732799: cpu_idle: state=4294967295 cpu_id=0
15868          <idle>-0     (-----) [000] d..2 24561.732821: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
15869     kworker/0:1-13012 (13012) [000] d..2 24561.732833: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15870     kworker/0:1-13012 (13012) [000] d..3 24561.732851: sched_blocked_reason: pid=13091 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
15871     kworker/0:1-13012 (13012) [000] d..3 24561.732860: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
15872     kworker/0:1-13012 (13012) [000] d..2 24561.732901: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15873          <idle>-0     (-----) [000] d..1 24561.732922: cpu_idle: state=2 cpu_id=0
15874  msm_irqbalance-805   (  805) [001] dnH3 24561.737709: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
15875  msm_irqbalance-805   (  805) [001] dnH3 24561.737733: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
15876  msm_irqbalance-805   (  805) [001] dnH4 24561.737755: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
15877          <idle>-0     (-----) [002] .n.1 24561.737761: cpu_idle: state=4294967295 cpu_id=2
15878          <idle>-0     (-----) [002] d..2 24561.737779: 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
15879  msm_irqbalance-805   (  805) [001] d..2 24561.737785: sched_switch: prev_comm=msm_irqbalance prev_pid=805 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
15880         sugov:0-559   (  559) [002] d..2 24561.737827: 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
15881          <idle>-0     (-----) [002] d..1 24561.737842: cpu_idle: state=0 cpu_id=2
15882     kworker/1:1-13091 (13091) [001] d..2 24561.737908: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=msm_irqbalance next_pid=805 next_prio=120
15883          <idle>-0     (-----) [007] dnh2 24561.738793: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
15884          <idle>-0     (-----) [007] .n.1 24561.738803: cpu_idle: state=4294967295 cpu_id=7
15885          <idle>-0     (-----) [007] d..2 24561.738815: 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
15886         sugov:4-560   (  560) [007] d..2 24561.738839: 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
15887          <idle>-0     (-----) [007] d..1 24561.738851: cpu_idle: state=2 cpu_id=7
15888  msm_irqbalance-805   (  805) [001] d.s3 24561.740952: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
15889  msm_irqbalance-805   (  805) [001] dns4 24561.741017: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
15890  msm_irqbalance-805   (  805) [001] d..2 24561.741045: 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
15891  kworker/u16:16-25995 (25995) [001] .... 24561.741116: clk_set_rate: l3_cluster0_vote_clk 480000000
15892  kworker/u16:16-25995 (25995) [001] .... 24561.741126: clk_set_rate: l3_clk 480000000
15893  kworker/u16:16-25995 (25995) [001] d..2 24561.741215: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=msm_irqbalance next_pid=805 next_prio=120
15894  msm_irqbalance-805   (  805) [001] d..2 24561.748308: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
15895  msm_irqbalance-805   (  805) [001] dn.3 24561.748343: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
15896  msm_irqbalance-805   (  805) [001] d..2 24561.748358: 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
15897         rcuop/0-10    (   10) [001] d..2 24561.748365: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15898         rcuop/0-10    (   10) [001] d..3 24561.748385: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15899         rcuop/0-10    (   10) [001] d..2 24561.748398: 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
15900     rcu_preempt-7     (    7) [001] d..2 24561.748416: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=msm_irqbalance next_pid=805 next_prio=120
15901  msm_irqbalance-805   (  805) [001] d..2 24561.749031: 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
15902          <idle>-0     (-----) [001] d..1 24561.749054: cpu_idle: state=0 cpu_id=1
15903          <idle>-0     (-----) [001] d.s2 24561.754252: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15904          <idle>-0     (-----) [001] dns3 24561.754275: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15905          <idle>-0     (-----) [001] dns3 24561.754283: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
15906          <idle>-0     (-----) [001] dns4 24561.754299: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
15907          <idle>-0     (-----) [001] .n.1 24561.754324: cpu_idle: state=4294967295 cpu_id=1
15908          <idle>-0     (-----) [001] d..2 24561.754340: 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
15909     rcu_preempt-7     (    7) [001] d..2 24561.754354: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
15910     rcu_preempt-7     (    7) [001] d..3 24561.754372: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
15911     rcu_preempt-7     (    7) [001] d..2 24561.754386: 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
15912  kworker/u16:16-25995 (25995) [001] .... 24561.754447: clk_set_rate: l3_cluster0_vote_clk 403200000
15913  kworker/u16:16-25995 (25995) [001] .... 24561.754454: clk_set_rate: l3_clk 403200000
15914  kworker/u16:16-25995 (25995) [001] d..2 24561.754510: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
15915         rcuop/0-10    (   10) [001] d..2 24561.754517: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
15916         rcuop/0-10    (   10) [001] d..3 24561.754543: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
15917         rcuop/0-10    (   10) [001] d..2 24561.754548: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15918         rcuop/0-10    (   10) [001] d..3 24561.754564: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15919         rcuop/0-10    (   10) [001] d..2 24561.754577: 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
15920         rcuop/1-21    (   21) [001] d..2 24561.754593: 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
15921     rcu_preempt-7     (    7) [001] d..2 24561.754629: 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
15922          <idle>-0     (-----) [001] d..1 24561.754651: cpu_idle: state=0 cpu_id=1
15923          <idle>-0     (-----) [001] d.H3 24561.760998: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
15924          <idle>-0     (-----) [001] d.H3 24561.761018: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
15925          <idle>-0     (-----) [001] d.H4 24561.761037: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
15926          <idle>-0     (-----) [002] .n.1 24561.761043: cpu_idle: state=4294967295 cpu_id=2
15927          <idle>-0     (-----) [001] d.s2 24561.761047: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15928          <idle>-0     (-----) [002] d..2 24561.761058: 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
15929          <idle>-0     (-----) [001] dns3 24561.761068: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15930          <idle>-0     (-----) [001] .n.1 24561.761082: cpu_idle: state=4294967295 cpu_id=1
15931         sugov:0-559   (  559) [002] d..2 24561.761094: 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
15932          <idle>-0     (-----) [001] d..2 24561.761099: 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
15933          <idle>-0     (-----) [002] d..1 24561.761109: cpu_idle: state=0 cpu_id=2
15934     rcu_preempt-7     (    7) [001] d..2 24561.761111: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
15935     rcu_preempt-7     (    7) [001] d..3 24561.761133: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
15936     rcu_preempt-7     (    7) [001] d..2 24561.761149: 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
15937         rcuop/0-10    (   10) [001] d..2 24561.761154: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
15938         rcuop/0-10    (   10) [001] d..3 24561.761171: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
15939         rcuop/0-10    (   10) [001] d..2 24561.761183: 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
15940         rcuop/1-21    (   21) [001] d..2 24561.761216: 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
15941          <idle>-0     (-----) [001] d..1 24561.761237: cpu_idle: state=0 cpu_id=1
15942          <idle>-0     (-----) [007] dnh2 24561.762064: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
15943          <idle>-0     (-----) [007] .n.1 24561.762073: cpu_idle: state=4294967295 cpu_id=7
15944          <idle>-0     (-----) [007] d..2 24561.762084: 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
15945         sugov:4-560   (  560) [007] d..2 24561.762105: 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
15946          <idle>-0     (-----) [007] d..1 24561.762117: cpu_idle: state=2 cpu_id=7
15947          <idle>-0     (-----) [001] d..2 24561.767252: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
15948          <idle>-0     (-----) [001] dn.3 24561.767269: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
15949          <idle>-0     (-----) [001] .n.1 24561.767275: cpu_idle: state=4294967295 cpu_id=1
15950          <idle>-0     (-----) [001] d..2 24561.767293: 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
15951     ksoftirqd/1-18    (   18) [001] d.s2 24561.767309: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
15952     ksoftirqd/1-18    (   18) [001] d.s3 24561.767331: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
15953     ksoftirqd/1-18    (   18) [001] d..2 24561.767353: 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
15954  kworker/u16:16-25995 (25995) [001] .... 24561.767398: clk_set_rate: l3_cluster0_vote_clk 300000000
15955  kworker/u16:16-25995 (25995) [001] .... 24561.767405: clk_set_rate: l3_clk 300000000
15956  kworker/u16:16-25995 (25995) [001] d..2 24561.767511: 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
15957          <idle>-0     (-----) [001] d..1 24561.767532: cpu_idle: state=2 cpu_id=1
15958          <idle>-0     (-----) [000] d.h2 24561.801789: sched_waking: comm=oid.setupwizard pid=24795 prio=120 target_cpu=000
15959          <idle>-0     (-----) [000] dnh3 24561.801852: sched_wakeup: comm=oid.setupwizard pid=24795 prio=120 target_cpu=000
15960          <idle>-0     (-----) [000] dnh3 24561.801954: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
15961          <idle>-0     (-----) [000] dnh3 24561.801975: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
15962          <idle>-0     (-----) [000] dnh4 24561.801994: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
15963          <idle>-0     (-----) [002] .n.1 24561.802000: cpu_idle: state=4294967295 cpu_id=2
15964          <idle>-0     (-----) [000] .n.1 24561.802003: cpu_idle: state=4294967295 cpu_id=0
15965          <idle>-0     (-----) [002] d..2 24561.802015: 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
15966          <idle>-0     (-----) [000] d..2 24561.802032: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=oid.setupwizard next_pid=24795 next_prio=120
15967         sugov:0-559   (  559) [002] d..2 24561.802053: 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
15968          <idle>-0     (-----) [002] d..2 24561.802060: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
15969          <idle>-0     (-----) [002] dn.3 24561.802077: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
15970          <idle>-0     (-----) [002] d..2 24561.802088: 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
15971     ksoftirqd/2-26    (   26) [002] d.s2 24561.802103: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
15972     ksoftirqd/2-26    (   26) [002] d.s3 24561.802155: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
15973     ksoftirqd/2-26    (   26) [002] d..2 24561.802180: 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
15974  kworker/u16:16-25995 (25995) [002] d..2 24561.802460: 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
15975          <idle>-0     (-----) [002] d..1 24561.802480: cpu_idle: state=0 cpu_id=2
15976 oid.setupwizard-24795 (24795) [000] d..2 24561.802606: sched_switch: prev_comm=oid.setupwizard prev_pid=24795 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15977          <idle>-0     (-----) [000] d..1 24561.802636: cpu_idle: state=2 cpu_id=0
15978          <idle>-0     (-----) [007] dnh2 24561.803026: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
15979          <idle>-0     (-----) [007] .n.1 24561.803035: cpu_idle: state=4294967295 cpu_id=7
15980          <idle>-0     (-----) [007] d..2 24561.803048: 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
15981         sugov:4-560   (  560) [007] d..2 24561.803070: 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
15982          <idle>-0     (-----) [007] d..1 24561.803082: cpu_idle: state=2 cpu_id=7
15983          <idle>-0     (-----) [000] d..2 24562.020173: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
15984          <idle>-0     (-----) [000] dn.3 24562.020197: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
15985          <idle>-0     (-----) [000] dnH3 24562.020290: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
15986          <idle>-0     (-----) [000] dnH3 24562.020308: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
15987          <idle>-0     (-----) [000] dnH4 24562.020330: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
15988          <idle>-0     (-----) [002] .n.1 24562.020339: cpu_idle: state=4294967295 cpu_id=2
15989          <idle>-0     (-----) [000] dns3 24562.020349: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
15990          <idle>-0     (-----) [002] d..2 24562.020359: 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
15991          <idle>-0     (-----) [000] dns4 24562.020391: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
15992         sugov:0-559   (  559) [002] d..2 24562.020406: 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
15993          <idle>-0     (-----) [000] dns3 24562.020415: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
15994          <idle>-0     (-----) [000] dns4 24562.020438: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
15995          <idle>-0     (-----) [000] dns3 24562.020449: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
15996          <idle>-0     (-----) [000] dns4 24562.020465: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
15997          <idle>-0     (-----) [000] .n.1 24562.020494: cpu_idle: state=4294967295 cpu_id=0
15998          <idle>-0     (-----) [000] d..2 24562.020515: 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
15999     ksoftirqd/0-3     (    3) [000] d..2 24562.020530: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
16000  kworker/u16:16-25995 (25995) [002] d..2 24562.020614: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16001     kworker/0:1-13012 (13012) [000] d..2 24562.020637: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16002  kworker/u16:15-18488 (18488) [002] d..2 24562.020643: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16003          <idle>-0     (-----) [000] d..1 24562.020661: cpu_idle: state=2 cpu_id=0
16004          <idle>-0     (-----) [002] d..1 24562.020665: cpu_idle: state=0 cpu_id=2
16005          <idle>-0     (-----) [007] dnh2 24562.021362: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
16006          <idle>-0     (-----) [007] .n.1 24562.021371: cpu_idle: state=4294967295 cpu_id=7
16007          <idle>-0     (-----) [007] d..2 24562.021384: 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
16008         sugov:4-560   (  560) [007] d..2 24562.021411: 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
16009          <idle>-0     (-----) [007] d..2 24562.021416: sched_waking: comm=ksoftirqd/7 pid=66 prio=120 target_cpu=007
16010          <idle>-0     (-----) [007] dn.3 24562.021434: sched_wakeup: comm=ksoftirqd/7 pid=66 prio=120 target_cpu=007
16011          <idle>-0     (-----) [007] d..2 24562.021445: 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
16012     ksoftirqd/7-66    (   66) [007] d..2 24562.021478: 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
16013          <idle>-0     (-----) [007] d..1 24562.021489: cpu_idle: state=2 cpu_id=7
16014          <idle>-0     (-----) [003] d.h2 24562.493587: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
16015          <idle>-0     (-----) [003] dnh3 24562.493624: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
16016          <idle>-0     (-----) [003] dnh3 24562.493720: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
16017          <idle>-0     (-----) [003] dnh3 24562.493739: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
16018          <idle>-0     (-----) [003] dnh4 24562.493757: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
16019          <idle>-0     (-----) [002] .n.1 24562.493766: cpu_idle: state=4294967295 cpu_id=2
16020          <idle>-0     (-----) [003] .n.1 24562.493768: cpu_idle: state=4294967295 cpu_id=3
16021          <idle>-0     (-----) [002] d..2 24562.493785: 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
16022          <idle>-0     (-----) [003] d..2 24562.493792: 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
16023         sugov:0-559   (  559) [002] d..2 24562.493829: 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
16024          <idle>-0     (-----) [002] d..2 24562.493835: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
16025          <idle>-0     (-----) [002] dn.3 24562.493852: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
16026          <idle>-0     (-----) [002] d..2 24562.493863: 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
16027     ksoftirqd/2-26    (   26) [002] d.s2 24562.493875: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
16028 bluetooth@1.0-s-24508 (  759) [003] d..2 24562.493899: 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
16029          <idle>-0     (-----) [003] d..2 24562.493907: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
16030          <idle>-0     (-----) [003] dn.3 24562.493935: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
16031     ksoftirqd/2-26    (   26) [002] d.s3 24562.493946: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
16032     ksoftirqd/2-26    (   26) [002] d.s2 24562.493961: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
16033          <idle>-0     (-----) [003] d..2 24562.493963: 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
16034     ksoftirqd/2-26    (   26) [002] d.s3 24562.493978: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
16035     ksoftirqd/3-34    (   34) [003] d.s2 24562.493983: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
16036     ksoftirqd/3-34    (   34) [003] d.s3 24562.494003: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
16037     ksoftirqd/3-34    (   34) [003] d.s2 24562.494011: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
16038     ksoftirqd/2-26    (   26) [002] d..2 24562.494023: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
16039     ksoftirqd/3-34    (   34) [003] d.s3 24562.494029: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
16040     ksoftirqd/3-34    (   34) [003] d.s2 24562.494035: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
16041     ksoftirqd/3-34    (   34) [003] d.s3 24562.494051: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
16042     ksoftirqd/3-34    (   34) [003] d..2 24562.494072: 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
16043     kworker/2:0-12895 (12895) [002] d..2 24562.494077: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16044          <idle>-0     (-----) [002] d..1 24562.494096: cpu_idle: state=0 cpu_id=2
16045     kworker/3:1-12662 (12662) [003] d..2 24562.494138: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16046          <idle>-0     (-----) [001] .n.1 24562.494350: cpu_idle: state=4294967295 cpu_id=1
16047          <idle>-0     (-----) [001] d..2 24562.494384: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
16048          <idle>-0     (-----) [000] .n.1 24562.494429: cpu_idle: state=4294967295 cpu_id=0
16049  kworker/u16:15-18488 (18488) [003] d..2 24562.494444: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16050     kworker/1:1-13091 (13091) [001] d..2 24562.494446: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16051          <idle>-0     (-----) [000] d..2 24562.494460: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
16052          <idle>-0     (-----) [001] d..1 24562.494469: cpu_idle: state=2 cpu_id=1
16053          <idle>-0     (-----) [003] d..1 24562.494470: cpu_idle: state=2 cpu_id=3
16054     kworker/0:1-13012 (13012) [000] d..2 24562.494510: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16055          <idle>-0     (-----) [000] d..1 24562.494529: cpu_idle: state=2 cpu_id=0
16056          <idle>-0     (-----) [007] dnh2 24562.494787: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
16057          <idle>-0     (-----) [007] .n.1 24562.494795: cpu_idle: state=4294967295 cpu_id=7
16058          <idle>-0     (-----) [007] d..2 24562.494807: 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
16059         sugov:4-560   (  560) [007] d..2 24562.494830: 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
16060          <idle>-0     (-----) [007] d..1 24562.494841: cpu_idle: state=2 cpu_id=7
16061          <idle>-0     (-----) [003] d.h2 24562.502014: sched_waking: comm=CCodecWatchdog pid=25015 prio=120 target_cpu=003
16062          <idle>-0     (-----) [003] dnh3 24562.502074: sched_wakeup: comm=CCodecWatchdog pid=25015 prio=120 target_cpu=003
16063          <idle>-0     (-----) [003] dnh3 24562.502170: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
16064          <idle>-0     (-----) [003] dnh3 24562.502191: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
16065          <idle>-0     (-----) [003] dnh4 24562.502209: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
16066          <idle>-0     (-----) [002] .n.1 24562.502217: cpu_idle: state=4294967295 cpu_id=2
16067          <idle>-0     (-----) [003] .n.1 24562.502220: cpu_idle: state=4294967295 cpu_id=3
16068          <idle>-0     (-----) [002] d..2 24562.502234: 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
16069          <idle>-0     (-----) [003] d..2 24562.502246: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=25015 next_prio=120
16070         sugov:0-559   (  559) [002] d..2 24562.502276: 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
16071          <idle>-0     (-----) [002] d..2 24562.502281: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
16072          <idle>-0     (-----) [002] dn.3 24562.502296: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
16073          <idle>-0     (-----) [002] d..2 24562.502307: 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
16074     ksoftirqd/2-26    (   26) [002] d.s2 24562.502316: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
16075          <idle>-0     (-----) [000] d.h2 24562.502323: sched_waking: comm=CCodecWatchdog pid=24367 prio=120 target_cpu=000
16076     ksoftirqd/2-26    (   26) [002] d.s3 24562.502368: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
16077          <idle>-0     (-----) [000] dnh3 24562.502369: sched_wakeup: comm=CCodecWatchdog pid=24367 prio=120 target_cpu=000
16078          <idle>-0     (-----) [000] .n.1 24562.502385: cpu_idle: state=4294967295 cpu_id=0
16079     ksoftirqd/2-26    (   26) [002] d..2 24562.502387: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16080          <idle>-0     (-----) [000] d..2 24562.502406: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=24367 next_prio=120
16081  kworker/u16:15-18488 (18488) [002] d..2 24562.502530: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16082          <idle>-0     (-----) [002] d..1 24562.502549: cpu_idle: state=0 cpu_id=2
16083  CCodecWatchdog-25015 (24655) [003] d..2 24562.502587: sched_switch: prev_comm=CCodecWatchdog prev_pid=25015 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16084          <idle>-0     (-----) [003] d..1 24562.502613: cpu_idle: state=2 cpu_id=3
16085  CCodecWatchdog-24367 (24151) [000] d..2 24562.502651: sched_switch: prev_comm=CCodecWatchdog prev_pid=24367 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16086          <idle>-0     (-----) [000] d..1 24562.502675: cpu_idle: state=2 cpu_id=0
16087          <idle>-0     (-----) [007] dnh2 24562.503248: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
16088          <idle>-0     (-----) [007] .n.1 24562.503257: cpu_idle: state=4294967295 cpu_id=7
16089          <idle>-0     (-----) [007] d..2 24562.503270: 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
16090         sugov:4-560   (  560) [007] d..2 24562.503291: 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
16091          <idle>-0     (-----) [007] d..1 24562.503303: cpu_idle: state=2 cpu_id=7
16092          <idle>-0     (-----) [002] d.H3 24562.611011: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
16093          <idle>-0     (-----) [002] d.H3 24562.611033: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
16094          <idle>-0     (-----) [002] dnH4 24562.611050: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
16095          <idle>-0     (-----) [002] dns3 24562.611066: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
16096          <idle>-0     (-----) [002] dns4 24562.611080: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
16097          <idle>-0     (-----) [002] dns3 24562.611088: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
16098          <idle>-0     (-----) [002] dns4 24562.611108: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
16099          <idle>-0     (-----) [002] .n.1 24562.611146: cpu_idle: state=4294967295 cpu_id=2
16100          <idle>-0     (-----) [002] d..2 24562.611162: 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
16101         sugov:0-559   (  559) [002] d..2 24562.611182: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
16102     kworker/2:0-12895 (12895) [002] d..2 24562.611310: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16103  kworker/u16:15-18488 (18488) [002] d..2 24562.611534: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16104          <idle>-0     (-----) [002] d..1 24562.611558: cpu_idle: state=2 cpu_id=2
16105          <idle>-0     (-----) [007] dnh2 24562.612099: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
16106          <idle>-0     (-----) [007] .n.1 24562.612108: cpu_idle: state=4294967295 cpu_id=7
16107          <idle>-0     (-----) [007] d..2 24562.612119: 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
16108         sugov:4-560   (  560) [007] d..2 24562.612141: 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
16109          <idle>-0     (-----) [007] d..1 24562.612152: cpu_idle: state=2 cpu_id=7
16110          <idle>-0     (-----) [000] d.h2 24562.670748: sched_waking: comm=PowerManagerSer pid=24006 prio=116 target_cpu=000
16111          <idle>-0     (-----) [000] dnh3 24562.671073: sched_wakeup: comm=PowerManagerSer pid=24006 prio=116 target_cpu=000
16112          <idle>-0     (-----) [000] dnh3 24562.671652: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
16113          <idle>-0     (-----) [000] dnh3 24562.671744: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
16114          <idle>-0     (-----) [000] dnh4 24562.671820: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
16115          <idle>-0     (-----) [000] .n.1 24562.671859: cpu_idle: state=4294967295 cpu_id=0
16116          <idle>-0     (-----) [000] d..2 24562.672018: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=24006 next_prio=116
16117          <idle>-0     (-----) [002] .n.1 24562.672227: cpu_idle: state=4294967295 cpu_id=2
16118          <idle>-0     (-----) [002] d..2 24562.672292: 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
16119         sugov:0-559   (  559) [002] d..2 24562.672519: 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
16120          <idle>-0     (-----) [002] d..2 24562.672543: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
16121          <idle>-0     (-----) [002] dn.3 24562.672577: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
16122          <idle>-0     (-----) [002] d..2 24562.672594: 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
16123     ksoftirqd/2-26    (   26) [002] d.s2 24562.672683: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
16124 PowerManagerSer-24006 (23968) [000] d..2 24562.672684: sched_switch: prev_comm=PowerManagerSer prev_pid=24006 prev_prio=116 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16125          <idle>-0     (-----) [000] d..2 24562.672696: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16126     ksoftirqd/2-26    (   26) [002] d.s3 24562.672724: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
16127          <idle>-0     (-----) [000] dn.3 24562.672730: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16128     ksoftirqd/2-26    (   26) [002] d.s2 24562.672749: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
16129          <idle>-0     (-----) [000] d..2 24562.672754: 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
16130     ksoftirqd/2-26    (   26) [002] d.s3 24562.672889: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16131          <idle>-0     (-----) [007] dnh2 24562.672892: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
16132          <idle>-0     (-----) [007] .n.1 24562.672913: cpu_idle: state=4294967295 cpu_id=7
16133     ksoftirqd/0-3     (    3) [000] d..2 24562.672931: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16134     ksoftirqd/2-26    (   26) [002] d..2 24562.672932: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
16135          <idle>-0     (-----) [007] d..2 24562.672939: 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
16136         sugov:4-560   (  560) [007] d..2 24562.672986: 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
16137          <idle>-0     (-----) [007] d..1 24562.673034: cpu_idle: state=2 cpu_id=7
16138     kworker/2:0-12895 (12895) [002] d..2 24562.673039: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16139          <idle>-0     (-----) [002] d..1 24562.673077: cpu_idle: state=2 cpu_id=2
16140  kworker/u16:15-18488 (18488) [000] d..2 24562.673787: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
16141          <idle>-0     (-----) [000] d..1 24562.673823: cpu_idle: state=2 cpu_id=0
16142          <idle>-0     (-----) [003] d.s3 24562.674266: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16143          <idle>-0     (-----) [003] d.s4 24562.674351: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
16144          <idle>-0     (-----) [003] dns4 24562.674370: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
16145          <idle>-0     (-----) [003] .n.1 24562.674395: cpu_idle: state=4294967295 cpu_id=3
16146          <idle>-0     (-----) [003] d..2 24562.674444: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16147  kworker/u16:15-18488 (18488) [003] d..2 24562.674905: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16148          <idle>-0     (-----) [003] d..2 24562.674915: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
16149          <idle>-0     (-----) [003] dn.3 24562.674952: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
16150          <idle>-0     (-----) [003] d..2 24562.674975: 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
16151     ksoftirqd/3-34    (   34) [003] d..2 24562.675036: 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
16152          <idle>-0     (-----) [003] d..1 24562.675064: cpu_idle: state=2 cpu_id=3
16153          <idle>-0     (-----) [000] ...1 24562.749307: cpu_idle: state=4294967295 cpu_id=0
16154          <idle>-0     (-----) [000] d..1 24562.749406: cpu_idle: state=2 cpu_id=0
16155          <idle>-0     (-----) [001] d.H3 24562.749633: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
16156          <idle>-0     (-----) [001] d.H3 24562.749804: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
16157          <idle>-0     (-----) [001] d.H4 24562.749901: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
16158          <idle>-0     (-----) [001] d.s3 24562.749967: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
16159          <idle>-0     (-----) [001] dns4 24562.750060: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
16160          <idle>-0     (-----) [001] dns3 24562.750091: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
16161          <idle>-0     (-----) [001] dns4 24562.750202: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
16162          <idle>-0     (-----) [002] .n.1 24562.750285: cpu_idle: state=4294967295 cpu_id=2
16163          <idle>-0     (-----) [001] .n.1 24562.750369: cpu_idle: state=4294967295 cpu_id=1
16164          <idle>-0     (-----) [002] d..2 24562.750396: 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
16165          <idle>-0     (-----) [001] d..2 24562.750427: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
16166         sugov:0-559   (  559) [002] d..2 24562.750489: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16167     kworker/1:1-13091 (13091) [001] d..3 24562.750728: sched_waking: comm=kworker/1:0 pid=13068 prio=120 target_cpu=001
16168     kworker/1:1-13091 (13091) [001] d..3 24562.750769: sched_wakeup: comm=kworker/1:0 pid=13068 prio=120 target_cpu=001
16169     kworker/1:1-13091 (13091) [001] d..2 24562.750786: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=D ==> next_comm=kworker/1:0 next_pid=13068 next_prio=120
16170          <idle>-0     (-----) [006] dnh2 24562.750932: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
16171          <idle>-0     (-----) [006] .n.1 24562.750952: cpu_idle: state=4294967295 cpu_id=6
16172          <idle>-0     (-----) [006] d..2 24562.750977: 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
16173         sugov:4-560   (  560) [006] d..2 24562.751054: 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
16174          <idle>-0     (-----) [006] d..1 24562.751082: cpu_idle: state=2 cpu_id=6
16175<...>-13068 ( 13068) [001] d..2 24562.751097: sched_switch: prev_comm=kworker/1:0 prev_pid=13068 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16176          <idle>-0     (-----) [001] d..1 24562.751150: cpu_idle: state=2 cpu_id=1
16177          <idle>-0     (-----) [000] d.h3 24562.751747: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
16178          <idle>-0     (-----) [000] dnh4 24562.751788: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
16179          <idle>-0     (-----) [000] .n.1 24562.751823: cpu_idle: state=4294967295 cpu_id=0
16180          <idle>-0     (-----) [000] d..2 24562.751860: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
16181  kworker/u16:15-18488 (18488) [002] d..2 24562.751871: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
16182     kworker/0:1-13012 (13012) [000] d..2 24562.751884: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
16183          <idle>-0     (-----) [002] d..1 24562.751905: cpu_idle: state=2 cpu_id=2
16184     kworker/0:1-13012 (13012) [000] d..3 24562.751907: sched_blocked_reason: pid=13091 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
16185     kworker/0:1-13012 (13012) [000] d..3 24562.751925: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
16186     kworker/0:1-13012 (13012) [000] d..2 24562.751981: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16187          <idle>-0     (-----) [000] d..1 24562.752003: cpu_idle: state=2 cpu_id=0
16188          <idle>-0     (-----) [001] .n.1 24562.752331: cpu_idle: state=4294967295 cpu_id=1
16189          <idle>-0     (-----) [003] d.s3 24562.752343: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
16190          <idle>-0     (-----) [001] d..2 24562.752361: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
16191          <idle>-0     (-----) [003] d.s4 24562.752449: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
16192          <idle>-0     (-----) [003] dns4 24562.752460: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
16193          <idle>-0     (-----) [003] .n.1 24562.752479: cpu_idle: state=4294967295 cpu_id=3
16194          <idle>-0     (-----) [003] d..2 24562.752523: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16195     kworker/1:1-13091 (13091) [001] d..2 24562.752557: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16196          <idle>-0     (-----) [001] d..1 24562.752577: cpu_idle: state=2 cpu_id=1
16197  kworker/u16:15-18488 (18488) [003] d..2 24562.752609: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16198          <idle>-0     (-----) [003] d..1 24562.752641: cpu_idle: state=2 cpu_id=3
16199          <idle>-0     (-----) [000] d..2 24563.024848: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16200          <idle>-0     (-----) [000] dn.3 24563.025047: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16201          <idle>-0     (-----) [000] dnH3 24563.025576: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
16202          <idle>-0     (-----) [000] dnH3 24563.025668: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
16203          <idle>-0     (-----) [000] dnH4 24563.025764: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
16204          <idle>-0     (-----) [000] dns3 24563.025839: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
16205          <idle>-0     (-----) [000] dns4 24563.026032: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16206          <idle>-0     (-----) [000] dns3 24563.026069: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
16207          <idle>-0     (-----) [000] dns4 24563.026101: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
16208          <idle>-0     (-----) [000] .n.1 24563.026153: cpu_idle: state=4294967295 cpu_id=0
16209          <idle>-0     (-----) [002] .n.1 24563.026172: cpu_idle: state=4294967295 cpu_id=2
16210          <idle>-0     (-----) [002] d..2 24563.026276: 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
16211          <idle>-0     (-----) [000] d..2 24563.026278: 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
16212     ksoftirqd/0-3     (    3) [000] d..2 24563.026345: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
16213         sugov:0-559   (  559) [002] d..2 24563.026531: 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
16214     kworker/0:1-13012 (13012) [000] d..2 24563.026575: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16215          <idle>-0     (-----) [002] d..1 24563.026610: cpu_idle: state=2 cpu_id=2
16216          <idle>-0     (-----) [006] dnh2 24563.026806: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
16217          <idle>-0     (-----) [006] .n.1 24563.026827: cpu_idle: state=4294967295 cpu_id=6
16218          <idle>-0     (-----) [006] d..2 24563.026851: 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
16219         sugov:4-560   (  560) [006] d..2 24563.026897: 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
16220          <idle>-0     (-----) [006] d..1 24563.026920: cpu_idle: state=2 cpu_id=6
16221  kworker/u16:15-18488 (18488) [000] d..2 24563.027907: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
16222          <idle>-0     (-----) [000] d..1 24563.027939: cpu_idle: state=2 cpu_id=0
16223          <idle>-0     (-----) [003] d.s3 24563.028183: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16224          <idle>-0     (-----) [003] d.s4 24563.028272: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
16225          <idle>-0     (-----) [003] dns4 24563.028296: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
16226          <idle>-0     (-----) [003] .n.1 24563.028319: cpu_idle: state=4294967295 cpu_id=3
16227          <idle>-0     (-----) [003] d..2 24563.028362: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16228  kworker/u16:15-18488 (18488) [003] d..2 24563.028541: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16229          <idle>-0     (-----) [003] d..1 24563.028571: cpu_idle: state=2 cpu_id=3
16230          <idle>-0     (-----) [000] d.h2 24563.287841: sched_waking: comm=CCodecWatchdog pid=23520 prio=120 target_cpu=000
16231          <idle>-0     (-----) [000] dnh3 24563.288140: sched_wakeup: comm=CCodecWatchdog pid=23520 prio=120 target_cpu=000
16232          <idle>-0     (-----) [001] d.h2 24563.288183: sched_waking: comm=CCodecWatchdog pid=24186 prio=120 target_cpu=001
16233          <idle>-0     (-----) [001] dnh3 24563.288270: sched_wakeup: comm=CCodecWatchdog pid=24186 prio=120 target_cpu=001
16234          <idle>-0     (-----) [001] .n.1 24563.288318: cpu_idle: state=4294967295 cpu_id=1
16235          <idle>-0     (-----) [000] dnh3 24563.288636: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
16236          <idle>-0     (-----) [001] d..2 24563.288663: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=24186 next_prio=120
16237          <idle>-0     (-----) [000] dnh3 24563.288712: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
16238          <idle>-0     (-----) [000] dnh4 24563.288771: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
16239          <idle>-0     (-----) [000] .n.1 24563.288791: cpu_idle: state=4294967295 cpu_id=0
16240          <idle>-0     (-----) [000] d..2 24563.288838: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=23520 next_prio=120
16241          <idle>-0     (-----) [002] .n.1 24563.289159: cpu_idle: state=4294967295 cpu_id=2
16242          <idle>-0     (-----) [002] d..2 24563.289217: 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
16243  CCodecWatchdog-24186 (23968) [001] d..2 24563.289268: sched_switch: prev_comm=CCodecWatchdog prev_pid=24186 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16244  CCodecWatchdog-23520 (  884) [000] d..2 24563.289268: sched_switch: prev_comm=CCodecWatchdog prev_pid=23520 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16245          <idle>-0     (-----) [001] d..2 24563.289287: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
16246          <idle>-0     (-----) [001] dn.3 24563.289317: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
16247         sugov:0-559   (  559) [002] d..2 24563.289322: 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
16248          <idle>-0     (-----) [001] d..2 24563.289333: 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
16249          <idle>-0     (-----) [002] d..1 24563.289363: cpu_idle: state=2 cpu_id=2
16250          <idle>-0     (-----) [000] d..1 24563.289364: cpu_idle: state=2 cpu_id=0
16251     ksoftirqd/1-18    (   18) [001] d.s2 24563.289409: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
16252     ksoftirqd/1-18    (   18) [001] d.s3 24563.289555: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
16253     ksoftirqd/1-18    (   18) [001] d.s2 24563.289597: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
16254     ksoftirqd/1-18    (   18) [001] d.s3 24563.289627: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
16255     ksoftirqd/1-18    (   18) [001] d..2 24563.289665: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
16256          <idle>-0     (-----) [006] dnh2 24563.289885: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
16257     kworker/1:1-13091 (13091) [001] d..2 24563.289888: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16258          <idle>-0     (-----) [006] .n.1 24563.289906: cpu_idle: state=4294967295 cpu_id=6
16259          <idle>-0     (-----) [006] d..2 24563.289930: 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
16260         sugov:4-560   (  560) [006] d..2 24563.289976: 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
16261          <idle>-0     (-----) [006] d..1 24563.290000: cpu_idle: state=2 cpu_id=6
16262  kworker/u16:15-18488 (18488) [001] d..2 24563.290555: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16263          <idle>-0     (-----) [001] d..1 24563.290590: cpu_idle: state=2 cpu_id=1
16264          <idle>-0     (-----) [003] d.h2 24563.498753: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
16265          <idle>-0     (-----) [000] d..2 24563.498895: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16266          <idle>-0     (-----) [003] dnh3 24563.499004: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
16267          <idle>-0     (-----) [000] dn.3 24563.499015: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16268          <idle>-0     (-----) [000] .n.1 24563.499050: cpu_idle: state=4294967295 cpu_id=0
16269          <idle>-0     (-----) [003] dnh3 24563.499396: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
16270          <idle>-0     (-----) [000] d..2 24563.499423: 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
16271          <idle>-0     (-----) [003] dnh3 24563.499443: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
16272          <idle>-0     (-----) [003] dnh4 24563.499481: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
16273          <idle>-0     (-----) [003] .n.1 24563.499498: cpu_idle: state=4294967295 cpu_id=3
16274     ksoftirqd/0-3     (    3) [000] d.s2 24563.499523: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
16275          <idle>-0     (-----) [003] d..2 24563.499541: 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
16276     ksoftirqd/0-3     (    3) [000] d.s3 24563.499739: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16277     ksoftirqd/0-3     (    3) [000] d.s2 24563.499776: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
16278     ksoftirqd/0-3     (    3) [000] d.s3 24563.499806: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
16279          <idle>-0     (-----) [002] .n.1 24563.499871: cpu_idle: state=4294967295 cpu_id=2
16280     ksoftirqd/0-3     (    3) [000] d..2 24563.499878: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
16281          <idle>-0     (-----) [002] d..2 24563.499928: 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
16282         sugov:0-559   (  559) [002] d..2 24563.500118: 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
16283 bluetooth@1.0-s-24508 (  759) [003] d..2 24563.500122: 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
16284     kworker/0:1-13012 (13012) [000] d..2 24563.500148: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16285          <idle>-0     (-----) [002] d..1 24563.500196: cpu_idle: state=2 cpu_id=2
16286          <idle>-0     (-----) [003] d..1 24563.500196: cpu_idle: state=2 cpu_id=3
16287          <idle>-0     (-----) [006] dnh2 24563.500650: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
16288          <idle>-0     (-----) [006] .n.1 24563.500670: cpu_idle: state=4294967295 cpu_id=6
16289          <idle>-0     (-----) [006] d..2 24563.500693: 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
16290         sugov:4-560   (  560) [006] d..2 24563.500739: 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
16291          <idle>-0     (-----) [006] d..1 24563.500758: cpu_idle: state=2 cpu_id=6
16292  kworker/u16:15-18488 (18488) [000] d..2 24563.500793: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16293          <idle>-0     (-----) [000] d..1 24563.500827: cpu_idle: state=2 cpu_id=0
16294          <idle>-0     (-----) [002] d.h3 24563.572950: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
16295          <idle>-0     (-----) [000] d..2 24563.573130: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16296          <idle>-0     (-----) [000] dn.3 24563.573260: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16297          <idle>-0     (-----) [002] dnh4 24563.573261: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
16298          <idle>-0     (-----) [000] .n.1 24563.573305: cpu_idle: state=4294967295 cpu_id=0
16299          <idle>-0     (-----) [000] d..2 24563.573628: 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
16300     ksoftirqd/0-3     (    3) [000] d.s2 24563.573717: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16301          <idle>-0     (-----) [002] dnh3 24563.573749: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
16302     ksoftirqd/0-3     (    3) [000] d.s3 24563.573790: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16303          <idle>-0     (-----) [002] dnh3 24563.573826: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
16304     ksoftirqd/0-3     (    3) [000] d..2 24563.573860: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16305          <idle>-0     (-----) [002] dnh4 24563.573913: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
16306          <idle>-0     (-----) [002] .n.1 24563.573931: cpu_idle: state=4294967295 cpu_id=2
16307          <idle>-0     (-----) [002] d..2 24563.573982: 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
16308   kworker/u17:1-18284 (18284) [002] d..2 24563.574159: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
16309   kworker/u17:1-18284 (18284) [002] d..3 24563.574195: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
16310          <idle>-0     (-----) [003] .n.1 24563.574312: cpu_idle: state=4294967295 cpu_id=3
16311          <idle>-0     (-----) [003] d..2 24563.574365: 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
16312   kworker/u17:1-18284 (18284) [002] d..2 24563.574494: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
16313         sugov:0-559   (  559) [003] d..2 24563.574521: 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
16314     kworker/2:0-12895 (12895) [002] d..2 24563.574618: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
16315          <idle>-0     (-----) [003] d..1 24563.574644: cpu_idle: state=2 cpu_id=3
16316     kworker/2:0-12895 (12895) [002] d..3 24563.574663: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
16317     kworker/2:0-12895 (12895) [002] d..2 24563.574704: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
16318          <idle>-0     (-----) [006] dnh2 24563.574976: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
16319          <idle>-0     (-----) [006] .n.1 24563.574995: cpu_idle: state=4294967295 cpu_id=6
16320          <idle>-0     (-----) [006] d..2 24563.575018: 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
16321         sugov:4-560   (  560) [006] d..2 24563.575061: 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
16322          <idle>-0     (-----) [006] d..1 24563.575082: cpu_idle: state=2 cpu_id=6
16323  kworker/u16:15-18488 (18488) [000] d..2 24563.575152: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16324            adbd-23484 ( 1007) [002] d.h2 24563.575171: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
16325          <idle>-0     (-----) [000] d..1 24563.575186: cpu_idle: state=2 cpu_id=0
16326            adbd-23484 ( 1007) [002] d.h3 24563.575215: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
16327            adbd-23484 ( 1007) [002] d..2 24563.575281: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16328          <idle>-0     (-----) [002] d..1 24563.575313: cpu_idle: state=2 cpu_id=2
16329          <idle>-0     (-----) [000] .n.1 24563.575724: cpu_idle: state=4294967295 cpu_id=0
16330          <idle>-0     (-----) [000] d..2 24563.575753: 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
16331   kworker/u17:1-18284 (18284) [000] d..2 24563.575793: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
16332   kworker/u17:1-18284 (18284) [000] d..3 24563.575844: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
16333   kworker/u17:1-18284 (18284) [000] d..2 24563.575892: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
16334     kworker/0:1-13012 (13012) [000] d..2 24563.575941: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
16335     kworker/0:1-13012 (13012) [000] d..3 24563.576075: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
16336     kworker/0:1-13012 (13012) [000] d..2 24563.576110: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
16337            adbd-23484 ( 1007) [000] d..2 24563.576300: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
16338            adbd-23484 ( 1007) [000] d..3 24563.576343: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
16339            adbd-23484 ( 1007) [000] d..2 24563.576494: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
16340            adbd-1007  ( 1007) [000] d.H3 24563.577690: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
16341            adbd-1007  ( 1007) [000] d.H3 24563.577718: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
16342            adbd-1007  ( 1007) [000] d.H4 24563.577743: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
16343          <idle>-0     (-----) [003] .n.1 24563.578052: cpu_idle: state=4294967295 cpu_id=3
16344          <idle>-0     (-----) [003] d..2 24563.578084: 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
16345         sugov:0-559   (  559) [003] .... 24563.578193: clk_set_rate: pwrcl_clk 748800000
16346         sugov:0-559   (  559) [003] .... 24563.578286: clk_set_rate: cpu3_pwrcl_clk 652800000
16347         sugov:0-559   (  559) [003] .... 24563.578305: clk_set_rate: cpu2_pwrcl_clk 652800000
16348         sugov:0-559   (  559) [003] .... 24563.578317: clk_set_rate: cpu1_pwrcl_clk 652800000
16349         sugov:0-559   (  559) [003] .... 24563.578328: clk_set_rate: cpu0_pwrcl_clk 748800000
16350         sugov:0-559   (  559) [003] .... 24563.578345: cpu_frequency: state=748800 cpu_id=0
16351         sugov:0-559   (  559) [003] .... 24563.578432: cpu_frequency: state=748800 cpu_id=1
16352         sugov:0-559   (  559) [003] .... 24563.578437: cpu_frequency: state=748800 cpu_id=2
16353         sugov:0-559   (  559) [003] .... 24563.578442: cpu_frequency: state=748800 cpu_id=3
16354         sugov:0-559   (  559) [003] d..2 24563.578492: 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
16355          <idle>-0     (-----) [003] d..1 24563.578513: cpu_idle: state=2 cpu_id=3
16356          <idle>-0     (-----) [006] dnh2 24563.578771: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
16357          <idle>-0     (-----) [006] .n.1 24563.578781: cpu_idle: state=4294967295 cpu_id=6
16358          <idle>-0     (-----) [006] d..2 24563.578792: 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
16359         sugov:4-560   (  560) [006] d..2 24563.578812: 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
16360          <idle>-0     (-----) [006] d..1 24563.578822: cpu_idle: state=2 cpu_id=6
16361            adbd-1007  ( 1007) [000] d..2 24563.581394: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=13118 next_prio=120
16362           <...>-13118 (-----) [000] d.s2 24563.584267: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16363           <...>-13118 (-----) [000] d.s3 24563.584326: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
16364           <...>-13118 (-----) [000] d.s2 24563.584341: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
16365           <...>-13118 (-----) [000] d.s3 24563.584377: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
16366          <idle>-0     (-----) [001] .n.1 24563.584688: cpu_idle: state=4294967295 cpu_id=1
16367          <idle>-0     (-----) [001] d..2 24563.584745: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16368           <...>-13118 (-----) [000] d..2 24563.585111: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
16369           <...>-13118 (-----) [000] d..3 24563.585173: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
16370  kworker/u16:15-18488 (18488) [001] d..2 24563.585362: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=rcuop/0 next_pid=10 next_prio=120
16371         rcuop/0-10    (   10) [001] d..2 24563.585395: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
16372         rcuop/0-10    (   10) [001] d..3 24563.585446: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
16373         rcuop/0-10    (   10) [001] d..2 24563.585467: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
16374          <idle>-0     (-----) [003] d.s3 24563.586258: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
16375            adbd-1007  ( 1007) [001] d..1 24563.586286: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
16376          <idle>-0     (-----) [003] d.s4 24563.586328: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
16377          <idle>-0     (-----) [003] dns4 24563.586341: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
16378            adbd-1007  ( 1007) [001] d..2 24563.586343: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
16379          <idle>-0     (-----) [003] .n.1 24563.586354: cpu_idle: state=4294967295 cpu_id=3
16380          <idle>-0     (-----) [003] d..2 24563.586380: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16381  kworker/u16:15-18488 (18488) [003] .... 24563.586527: clk_set_rate: l3_cluster0_vote_clk 576000000
16382  kworker/u16:15-18488 (18488) [003] .... 24563.586538: clk_set_rate: l3_clk 576000000
16383            adbd-1007  ( 1007) [001] d..2 24563.586560: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
16384     rcu_preempt-7     (    7) [001] d..2 24563.586598: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=13119 next_prio=120
16385  kworker/u16:15-18488 (18488) [003] d..2 24563.586613: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16386          <idle>-0     (-----) [002] .n.1 24563.586617: cpu_idle: state=4294967295 cpu_id=2
16387          <idle>-0     (-----) [003] d..1 24563.586630: cpu_idle: state=2 cpu_id=3
16388          <idle>-0     (-----) [002] d..2 24563.586643: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
16389           <...>-13119 (-----) [001] d..2 24563.586718: sched_switch: prev_comm=shell svc 13118 prev_pid=13119 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16390          <idle>-0     (-----) [001] d..1 24563.586741: cpu_idle: state=0 cpu_id=1
16391            adbd-23485 ( 1007) [002] d..2 24563.586788: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16392          <idle>-0     (-----) [002] d.h4 24563.586816: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
16393          <idle>-0     (-----) [002] dnh5 24563.586848: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
16394          <idle>-0     (-----) [002] d..2 24563.586864: 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
16395   kworker/u17:1-18284 (18284) [002] d..2 24563.586881: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
16396   kworker/u17:1-18284 (18284) [002] d..3 24563.586896: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
16397   kworker/u17:1-18284 (18284) [002] d..2 24563.586925: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
16398     kworker/2:0-12895 (12895) [002] d..2 24563.586939: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
16399     kworker/2:0-12895 (12895) [002] d..3 24563.586956: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
16400     kworker/2:0-12895 (12895) [002] d..2 24563.586974: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
16401            adbd-23485 ( 1007) [002] d..2 24563.587030: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16402          <idle>-0     (-----) [002] d..1 24563.587048: cpu_idle: state=2 cpu_id=2
16403          <idle>-0     (-----) [002] d.h3 24563.587702: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
16404          <idle>-0     (-----) [002] dnh4 24563.587729: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
16405          <idle>-0     (-----) [002] .n.1 24563.587740: cpu_idle: state=4294967295 cpu_id=2
16406          <idle>-0     (-----) [002] d..2 24563.587758: 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
16407   kworker/u17:1-18284 (18284) [002] d..2 24563.587777: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
16408   kworker/u17:1-18284 (18284) [002] d..3 24563.587791: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
16409   kworker/u17:1-18284 (18284) [002] d..2 24563.587819: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
16410     kworker/2:0-12895 (12895) [002] d..2 24563.587837: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
16411     kworker/2:0-12895 (12895) [002] d..3 24563.587883: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
16412     kworker/2:0-12895 (12895) [002] d..2 24563.587904: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
16413            adbd-23484 ( 1007) [002] d..2 24563.588027: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16414          <idle>-0     (-----) [002] d.h4 24563.588054: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
16415          <idle>-0     (-----) [002] dnh5 24563.588067: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
16416          <idle>-0     (-----) [002] d..2 24563.588082: 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
16417   kworker/u17:1-18284 (18284) [002] d..2 24563.588096: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
16418   kworker/u17:1-18284 (18284) [002] d..3 24563.588107: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
16419   kworker/u17:1-18284 (18284) [002] d..2 24563.588134: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
16420     kworker/2:0-12895 (12895) [002] d..2 24563.588147: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
16421     kworker/2:0-12895 (12895) [002] d..3 24563.588163: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
16422     kworker/2:0-12895 (12895) [002] d..2 24563.588183: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
16423            adbd-23484 ( 1007) [002] d..2 24563.588220: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
16424            adbd-23484 ( 1007) [002] d..3 24563.588240: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
16425            adbd-23484 ( 1007) [002] d..2 24563.588322: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
16426            adbd-1007  ( 1007) [002] d..2 24563.588448: sched_waking: comm=shell svc 13118 pid=13119 prio=120 target_cpu=001
16427            adbd-1007  ( 1007) [002] d..3 24563.588472: sched_wakeup: comm=shell svc 13118 pid=13119 prio=120 target_cpu=002
16428            adbd-1007  ( 1007) [002] d..1 24563.588494: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
16429            adbd-1007  ( 1007) [002] d..2 24563.588541: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
16430          <idle>-0     (-----) [001] .n.1 24563.588549: cpu_idle: state=4294967295 cpu_id=1
16431          <idle>-0     (-----) [001] d..2 24563.588566: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
16432            adbd-1007  ( 1007) [002] d..2 24563.588614: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=shell svc 13118 next_pid=13119 next_prio=120
16433            adbd-23485 ( 1007) [001] d..2 24563.588671: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16434           <...>-13119 (-----) [002] d.h2 24563.588682: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
16435          <idle>-0     (-----) [001] d..1 24563.588683: cpu_idle: state=0 cpu_id=1
16436           <...>-13119 (-----) [002] dnh3 24563.588704: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
16437           <...>-13119 (-----) [002] d..2 24563.588718: sched_switch: prev_comm=shell svc 13118 prev_pid=13119 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
16438   kworker/u17:1-18284 (18284) [002] d..2 24563.588737: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
16439   kworker/u17:1-18284 (18284) [002] d..3 24563.588748: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
16440   kworker/u17:1-18284 (18284) [002] d..2 24563.588776: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
16441     kworker/2:0-12895 (12895) [002] d..2 24563.588789: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
16442     kworker/2:0-12895 (12895) [002] d..3 24563.588826: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
16443          <idle>-0     (-----) [001] .n.1 24563.588832: cpu_idle: state=4294967295 cpu_id=1
16444          <idle>-0     (-----) [001] d..2 24563.588843: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
16445     kworker/2:0-12895 (12895) [002] d..2 24563.588846: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=shell svc 13118 next_pid=13119 next_prio=120
16446            adbd-23485 ( 1007) [001] d..2 24563.588876: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16447          <idle>-0     (-----) [001] d..1 24563.588884: cpu_idle: state=0 cpu_id=1
16448           <...>-13119 (-----) [002] d..2 24563.588916: sched_switch: prev_comm=shell svc 13118 prev_pid=13119 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16449          <idle>-0     (-----) [002] d..1 24563.588936: cpu_idle: state=2 cpu_id=2
16450          <idle>-0     (-----) [001] d.s2 24563.590917: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
16451          <idle>-0     (-----) [001] dns3 24563.590937: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
16452          <idle>-0     (-----) [001] .n.1 24563.590960: cpu_idle: state=4294967295 cpu_id=1
16453          <idle>-0     (-----) [001] d..2 24563.590971: 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
16454     rcu_preempt-7     (    7) [001] d..2 24563.590997: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
16455     rcu_preempt-7     (    7) [001] d..3 24563.591014: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
16456     rcu_preempt-7     (    7) [001] d..2 24563.591030: 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
16457         rcuop/0-10    (   10) [001] d..2 24563.591067: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
16458         rcuop/0-10    (   10) [001] d..3 24563.591083: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
16459         rcuop/0-10    (   10) [001] d..2 24563.591094: 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
16460     rcu_preempt-7     (    7) [001] d..2 24563.591124: 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
16461          <idle>-0     (-----) [001] d..1 24563.591138: cpu_idle: state=2 cpu_id=1
16462           <...>-13118 (-----) [000] d.s2 24563.594253: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
16463           <...>-13118 (-----) [000] d.s3 24563.594292: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
16464          <idle>-0     (-----) [003] .n.1 24563.594549: cpu_idle: state=4294967295 cpu_id=3
16465          <idle>-0     (-----) [003] d..2 24563.594577: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16466  kworker/u16:15-18488 (18488) [003] d..2 24563.594770: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16467          <idle>-0     (-----) [003] d..1 24563.594785: cpu_idle: state=2 cpu_id=3
16468           <...>-13118 (-----) [000] d.H2 24563.597650: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
16469           <...>-13118 (-----) [000] d.H2 24563.597669: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
16470           <...>-13118 (-----) [000] d.H3 24563.597687: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
16471           <...>-13118 (-----) [000] d.s2 24563.597696: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
16472           <...>-13118 (-----) [000] dns3 24563.597714: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
16473           <...>-13118 (-----) [000] d..2 24563.597729: sched_switch: prev_comm=sh prev_pid=13118 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
16474     kworker/0:1-13012 (13012) [000] d..2 24563.597815: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13118 next_prio=120
16475          <idle>-0     (-----) [001] d.s2 24563.597868: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
16476          <idle>-0     (-----) [001] dns3 24563.597898: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
16477          <idle>-0     (-----) [001] .n.1 24563.597911: cpu_idle: state=4294967295 cpu_id=1
16478          <idle>-0     (-----) [001] d..2 24563.597928: 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
16479          <idle>-0     (-----) [003] .n.1 24563.597941: cpu_idle: state=4294967295 cpu_id=3
16480     rcu_preempt-7     (    7) [001] d..2 24563.597942: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
16481          <idle>-0     (-----) [003] d..2 24563.597964: 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
16482     rcu_preempt-7     (    7) [001] d..3 24563.597987: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
16483         sugov:0-559   (  559) [003] .... 24563.598002: clk_set_rate: pwrcl_clk 1516800000
16484         sugov:0-559   (  559) [003] .... 24563.598015: clk_set_rate: cpu3_pwrcl_clk 748800000
16485     rcu_preempt-7     (    7) [001] d..2 24563.598019: 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
16486         sugov:0-559   (  559) [003] .... 24563.598027: clk_set_rate: cpu2_pwrcl_clk 748800000
16487         sugov:0-559   (  559) [003] .... 24563.598036: clk_set_rate: cpu1_pwrcl_clk 748800000
16488          <idle>-0     (-----) [001] d..1 24563.598040: cpu_idle: state=2 cpu_id=1
16489         sugov:0-559   (  559) [003] .... 24563.598046: clk_set_rate: cpu0_pwrcl_clk 1516800000
16490         sugov:0-559   (  559) [003] .... 24563.598058: cpu_frequency: state=1516800 cpu_id=0
16491         sugov:0-559   (  559) [003] .... 24563.598082: cpu_frequency: state=1516800 cpu_id=1
16492         sugov:0-559   (  559) [003] .... 24563.598087: cpu_frequency: state=1516800 cpu_id=2
16493         sugov:0-559   (  559) [003] .... 24563.598092: cpu_frequency: state=1516800 cpu_id=3
16494         sugov:0-559   (  559) [003] d..2 24563.598116: 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
16495         rcuop/0-10    (   10) [003] d..2 24563.598124: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
16496         rcuop/0-10    (   10) [003] d..3 24563.598163: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
16497         rcuop/0-10    (   10) [003] d..2 24563.598183: 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
16498         rcuop/1-21    (   21) [003] d..2 24563.598206: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16499          <idle>-0     (-----) [003] d..1 24563.598222: cpu_idle: state=0 cpu_id=3
16500          <idle>-0     (-----) [006] dnh2 24563.598617: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
16501          <idle>-0     (-----) [006] .n.1 24563.598625: cpu_idle: state=4294967295 cpu_id=6
16502          <idle>-0     (-----) [006] d..2 24563.598635: 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
16503         sugov:4-560   (  560) [006] d..2 24563.598656: 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
16504          <idle>-0     (-----) [006] d..1 24563.598666: cpu_idle: state=2 cpu_id=6
16505           <...>-13118 (-----) [000] d..2 24563.601579: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
16506           <...>-13118 (-----) [000] dn.3 24563.601613: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
16507           <...>-13118 (-----) [000] d..2 24563.601622: sched_switch: prev_comm=sh prev_pid=13118 prev_prio=120 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
16508         rcuop/0-10    (   10) [000] d..2 24563.601626: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
16509         rcuop/0-10    (   10) [000] d..3 24563.601651: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
16510          <idle>-0     (-----) [003] .n.1 24563.601659: cpu_idle: state=4294967295 cpu_id=3
16511         rcuop/0-10    (   10) [000] d..2 24563.601659: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13118 next_prio=120
16512          <idle>-0     (-----) [003] d..2 24563.601669: 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
16513     rcu_preempt-7     (    7) [003] d..2 24563.601691: 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
16514          <idle>-0     (-----) [003] d..1 24563.601697: cpu_idle: state=0 cpu_id=3
16515           <...>-13118 (-----) [000] d.s2 24563.604243: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
16516           <...>-13118 (-----) [000] dns3 24563.604274: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16517           <...>-13118 (-----) [000] d..2 24563.604287: sched_switch: prev_comm=sh prev_pid=13118 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16518  kworker/u16:15-18488 (18488) [000] d..2 24563.604514: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=sh next_pid=13118 next_prio=120
16519           <...>-13118 (-----) [000] d..2 24563.604711: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
16520           <...>-13118 (-----) [000] dn.3 24563.604726: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
16521           <...>-13118 (-----) [000] d..2 24563.604736: sched_switch: prev_comm=sh prev_pid=13118 prev_prio=120 prev_state=R+ ==> next_comm=migration/0 next_pid=13 next_prio=0
16522          <idle>-0     (-----) [003] .n.1 24563.604778: cpu_idle: state=4294967295 cpu_id=3
16523          <idle>-0     (-----) [003] d..2 24563.604787: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=13118 next_prio=120
16524     migration/0-13    (   13) [000] d..2 24563.604799: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16525          <idle>-0     (-----) [000] d..1 24563.604816: cpu_idle: state=2 cpu_id=0
16526           <...>-13118 (-----) [003] d.s2 24563.605184: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16527           <...>-13118 (-----) [003] d.s3 24563.605195: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
16528           <...>-13118 (-----) [003] d.s3 24563.605204: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16529          <idle>-0     (-----) [000] .n.1 24563.605374: cpu_idle: state=4294967295 cpu_id=0
16530          <idle>-0     (-----) [000] d..2 24563.605388: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16531           <...>-13118 (-----) [003] d..2 24563.605437: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
16532           <...>-13118 (-----) [003] d..3 24563.605478: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
16533  kworker/u16:15-18488 (18488) [000] .... 24563.605492: clk_set_rate: l3_cluster0_vote_clk 940800000
16534  kworker/u16:15-18488 (18488) [000] .... 24563.605497: clk_set_rate: l3_clk 940800000
16535  kworker/u16:15-18488 (18488) [000] d..2 24563.605525: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
16536         rcuop/2-29    (   29) [000] d..2 24563.605556: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16537          <idle>-0     (-----) [000] d..1 24563.605566: cpu_idle: state=2 cpu_id=0
16538           <...>-13118 (-----) [003] d.s1 24563.607573: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
16539           <...>-13118 (-----) [003] dns2 24563.607585: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
16540           <...>-13118 (-----) [003] d..2 24563.607607: sched_switch: prev_comm=setprop prev_pid=13118 prev_prio=120 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
16541     rcu_preempt-7     (    7) [003] d..2 24563.607615: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
16542     rcu_preempt-7     (    7) [003] d..3 24563.607634: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
16543     rcu_preempt-7     (    7) [003] d..2 24563.607644: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=setprop next_pid=13118 next_prio=120
16544          <idle>-0     (-----) [000] .n.1 24563.607801: cpu_idle: state=4294967295 cpu_id=0
16545          <idle>-0     (-----) [000] d..2 24563.607815: 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
16546         rcuop/0-10    (   10) [000] d..2 24563.607842: 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
16547          <idle>-0     (-----) [000] d..1 24563.607850: cpu_idle: state=2 cpu_id=0
16548           <...>-13118 (-----) [003] d.s1 24563.614236: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
16549           <...>-13118 (-----) [003] dns2 24563.614249: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
16550           <...>-13118 (-----) [003] dns2 24563.614253: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16551           <...>-13118 (-----) [003] dns3 24563.614272: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16552           <...>-13118 (-----) [003] d..2 24563.614281: sched_switch: prev_comm=setprop prev_pid=13118 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
16553     rcu_preempt-7     (    7) [003] d..2 24563.614288: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
16554     rcu_preempt-7     (    7) [003] d..3 24563.614297: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
16555     rcu_preempt-7     (    7) [003] d..2 24563.614308: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=setprop next_pid=13118 next_prio=120
16556          <idle>-0     (-----) [000] .n.1 24563.614427: cpu_idle: state=4294967295 cpu_id=0
16557          <idle>-0     (-----) [000] d..2 24563.614443: 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
16558         rcuop/2-29    (   29) [000] d..2 24563.614449: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
16559         rcuop/2-29    (   29) [000] d..3 24563.614484: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
16560         rcuop/2-29    (   29) [000] d..2 24563.614493: 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
16561         rcuop/3-37    (   37) [000] d..2 24563.614512: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16562  kworker/u16:15-18488 (18488) [000] .... 24563.614555: clk_set_rate: l3_cluster0_vote_clk 1209600000
16563  kworker/u16:15-18488 (18488) [000] .... 24563.614558: clk_set_rate: l3_clk 1209600000
16564  kworker/u16:15-18488 (18488) [000] d..2 24563.614738: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
16565          <idle>-0     (-----) [000] d..1 24563.614750: cpu_idle: state=0 cpu_id=0
16566           <...>-13118 (-----) [003] d.s2 24563.614768: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16567           <...>-13118 (-----) [003] d.s3 24563.614777: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
16568           <...>-13118 (-----) [003] d.s3 24563.614784: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16569          <idle>-0     (-----) [000] .n.1 24563.614790: cpu_idle: state=4294967295 cpu_id=0
16570          <idle>-0     (-----) [000] d..2 24563.614798: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16571  kworker/u16:15-18488 (18488) [000] d..2 24563.614835: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16572          <idle>-0     (-----) [000] d..1 24563.614842: cpu_idle: state=0 cpu_id=0
16573           <...>-13118 (-----) [003] d.H2 24563.617660: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
16574           <...>-13118 (-----) [003] d.H2 24563.617685: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
16575           <...>-13118 (-----) [003] d.H3 24563.617710: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
16576          <idle>-0     (-----) [000] .n.1 24563.617716: cpu_idle: state=4294967295 cpu_id=0
16577          <idle>-0     (-----) [000] d..2 24563.617724: 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
16578         sugov:0-559   (  559) [000] .... 24563.617764: clk_set_rate: pwrcl_clk 1228800000
16579         sugov:0-559   (  559) [000] .... 24563.617773: clk_set_rate: cpu3_pwrcl_clk 1516800000
16580         sugov:0-559   (  559) [000] .... 24563.617785: clk_set_rate: cpu2_pwrcl_clk 1516800000
16581         sugov:0-559   (  559) [000] .... 24563.617793: clk_set_rate: cpu1_pwrcl_clk 1516800000
16582         sugov:0-559   (  559) [000] .... 24563.617802: clk_set_rate: cpu0_pwrcl_clk 1228800000
16583         sugov:0-559   (  559) [000] .... 24563.617925: cpu_frequency: state=1228800 cpu_id=0
16584         sugov:0-559   (  559) [000] .... 24563.617958: cpu_frequency: state=1228800 cpu_id=1
16585         sugov:0-559   (  559) [000] .... 24563.617963: cpu_frequency: state=1228800 cpu_id=2
16586         sugov:0-559   (  559) [000] .... 24563.617967: cpu_frequency: state=1228800 cpu_id=3
16587         sugov:0-559   (  559) [000] d..2 24563.617996: 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
16588          <idle>-0     (-----) [000] d..1 24563.618005: cpu_idle: state=0 cpu_id=0
16589          <idle>-0     (-----) [006] dnh2 24563.618746: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
16590          <idle>-0     (-----) [006] .n.1 24563.618755: cpu_idle: state=4294967295 cpu_id=6
16591          <idle>-0     (-----) [006] d..2 24563.618766: 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
16592         sugov:4-560   (  560) [006] d..2 24563.618791: 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
16593          <idle>-0     (-----) [006] d..1 24563.618804: cpu_idle: state=2 cpu_id=6
16594           <...>-13118 (-----) [003] d.s1 24563.620906: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
16595           <...>-13118 (-----) [003] d.s2 24563.620929: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
16596          <idle>-0     (-----) [000] .n.1 24563.620934: cpu_idle: state=4294967295 cpu_id=0
16597           <...>-13118 (-----) [003] d.s2 24563.620943: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
16598          <idle>-0     (-----) [000] d..2 24563.620945: 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
16599           <...>-13118 (-----) [003] dns3 24563.620965: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
16600     rcu_preempt-7     (    7) [000] d..2 24563.620970: 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
16601           <...>-13118 (-----) [003] d..2 24563.620976: sched_switch: prev_comm=setprop prev_pid=13118 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
16602          <idle>-0     (-----) [000] d..1 24563.620978: cpu_idle: state=0 cpu_id=0
16603     kworker/3:1-12662 (12662) [003] d..2 24563.621027: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=setprop next_pid=13118 next_prio=120
16604           <...>-13118 (-----) [003] d.s3 24563.624240: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16605           <...>-13118 (-----) [003] d.s4 24563.624259: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16606          <idle>-0     (-----) [000] .n.1 24563.624264: cpu_idle: state=4294967295 cpu_id=0
16607          <idle>-0     (-----) [000] d..2 24563.624274: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16608  kworker/u16:15-18488 (18488) [000] .... 24563.624370: clk_set_rate: l3_cluster0_vote_clk 1036800000
16609  kworker/u16:15-18488 (18488) [000] .... 24563.624373: clk_set_rate: l3_clk 1036800000
16610  kworker/u16:15-18488 (18488) [000] d..2 24563.624616: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
16611          <idle>-0     (-----) [000] d..1 24563.624623: cpu_idle: state=0 cpu_id=0
16612           <...>-13118 (-----) [003] d.s2 24563.624643: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16613           <...>-13118 (-----) [003] d.s3 24563.624655: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
16614           <...>-13118 (-----) [003] d.s3 24563.624663: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16615          <idle>-0     (-----) [000] .n.1 24563.624668: cpu_idle: state=4294967295 cpu_id=0
16616          <idle>-0     (-----) [000] d..2 24563.624677: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16617  kworker/u16:15-18488 (18488) [000] d..2 24563.624755: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16618          <idle>-0     (-----) [000] d..1 24563.624760: cpu_idle: state=0 cpu_id=0
16619           <...>-13118 (-----) [003] d..3 24563.625124: sched_waking: comm=init pid=1 prio=120 target_cpu=000
16620           <...>-13118 (-----) [003] d..4 24563.625161: sched_wakeup: comm=init pid=1 prio=120 target_cpu=000
16621          <idle>-0     (-----) [000] .n.1 24563.625166: cpu_idle: state=4294967295 cpu_id=0
16622          <idle>-0     (-----) [000] d..2 24563.625176: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=init next_pid=1 next_prio=120
16623           <...>-13118 (-----) [003] d..2 24563.625270: sched_switch: prev_comm=setprop prev_pid=13118 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16624          <idle>-0     (-----) [003] d..1 24563.625287: cpu_idle: state=0 cpu_id=3
16625<...>-1 ( 1) [000] d..2 24563.625534: sched_waking: comm=setprop pid=13118 prio=120 target_cpu=003
16626<...>-1 ( 1) [000] d..3 24563.625555: sched_wakeup: comm=setprop pid=13118 prio=120 target_cpu=000
16627<...>-1 ( 1) [000] d..1 24563.625833: sched_waking: comm=DispatcherModul pid=1388 prio=120 target_cpu=001
16628<...>-1 ( 1) [000] d..2 24563.625885: sched_wakeup: comm=DispatcherModul pid=1388 prio=120 target_cpu=003
16629          <idle>-0     (-----) [003] .n.1 24563.625892: cpu_idle: state=4294967295 cpu_id=3
16630          <idle>-0     (-----) [003] d..2 24563.625905: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispatcherModul next_pid=1388 next_prio=120
16631<...>-1388 ( 933) [003] d..2 24563.626102: sched_switch: prev_comm=DispatcherModul prev_pid=1388 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16632          <idle>-0     (-----) [003] d..1 24563.626114: cpu_idle: state=0 cpu_id=3
16633<...>-1 ( 1) [000] d..2 24563.627202: sched_switch: prev_comm=init prev_pid=1 prev_prio=120 prev_state=S ==> next_comm=setprop next_pid=13118 next_prio=120
16634           <...>-13118 (-----) [000] d.s2 24563.627573: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
16635           <...>-13118 (-----) [000] dns3 24563.627588: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
16636           <...>-13118 (-----) [000] d..2 24563.627606: sched_switch: prev_comm=setprop prev_pid=13118 prev_prio=120 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
16637     rcu_preempt-7     (    7) [000] d..2 24563.627613: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
16638     rcu_preempt-7     (    7) [000] d..3 24563.627625: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
16639     rcu_preempt-7     (    7) [000] d..2 24563.627640: 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
16640         rcuop/0-10    (   10) [000] d..2 24563.627694: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=setprop next_pid=13118 next_prio=120
16641           <...>-13118 (-----) [000] d..2 24563.628184: sched_waking: comm=shell svc 13118 pid=13119 prio=120 target_cpu=002
16642           <...>-13118 (-----) [000] d..3 24563.628226: sched_wakeup: comm=shell svc 13118 pid=13119 prio=120 target_cpu=000
16643           <...>-13118 (-----) [000] d..2 24563.628406: sched_switch: prev_comm=setprop prev_pid=13118 prev_prio=120 prev_state=x ==> next_comm=shell svc 13118 next_pid=13119 next_prio=120
16644           <...>-13119 (-----) [000] d..2 24563.628916: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
16645           <...>-13119 (-----) [000] dn.3 24563.628942: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
16646           <...>-13119 (-----) [000] d..2 24563.628956: sched_switch: prev_comm=shell svc 13118 prev_pid=13119 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=1007 next_prio=120
16647            adbd-1007  ( 1007) [000] d..1 24563.629262: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
16648            adbd-1007  ( 1007) [000] d..2 24563.629308: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
16649          <idle>-0     (-----) [003] .n.1 24563.629312: cpu_idle: state=4294967295 cpu_id=3
16650          <idle>-0     (-----) [003] d..2 24563.629324: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
16651            adbd-1007  ( 1007) [000] d..2 24563.629397: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=shell svc 13118 next_pid=13119 next_prio=120
16652           <...>-13119 (-----) [000] d..2 24563.629420: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
16653           <...>-13119 (-----) [000] d..3 24563.629449: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
16654            adbd-23485 ( 1007) [003] d..2 24563.629544: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
16655            adbd-1007  ( 1007) [003] d..1 24563.629737: sched_waking: comm=shell svc 13118 pid=13119 prio=120 target_cpu=000
16656           <...>-13119 (-----) [000] d..2 24563.629752: sched_switch: prev_comm=shell svc 13118 prev_pid=13119 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16657          <idle>-0     (-----) [000] d..1 24563.629764: cpu_idle: state=0 cpu_id=0
16658          <idle>-0     (-----) [000] .n.1 24563.629767: cpu_idle: state=4294967295 cpu_id=0
16659            adbd-1007  ( 1007) [003] d..2 24563.629768: sched_wakeup: comm=shell svc 13118 pid=13119 prio=120 target_cpu=000
16660          <idle>-0     (-----) [000] d..2 24563.629781: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=shell svc 13118 next_pid=13119 next_prio=120
16661            adbd-1007  ( 1007) [003] d..2 24563.630060: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16662          <idle>-0     (-----) [003] d..1 24563.630075: cpu_idle: state=0 cpu_id=3
16663          <idle>-0     (-----) [002] d.h3 24563.630090: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
16664          <idle>-0     (-----) [002] dnh4 24563.630125: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
16665           <...>-13119 (-----) [000] d..1 24563.630133: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
16666          <idle>-0     (-----) [002] .n.1 24563.630139: cpu_idle: state=4294967295 cpu_id=2
16667          <idle>-0     (-----) [002] d..2 24563.630161: 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
16668           <...>-13119 (-----) [000] d..2 24563.630179: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
16669   kworker/u17:1-18284 (18284) [002] d..2 24563.630215: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
16670   kworker/u17:1-18284 (18284) [002] d..3 24563.630236: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
16671   kworker/u17:1-18284 (18284) [002] d..2 24563.630274: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
16672     kworker/2:0-12895 (12895) [002] d..2 24563.630299: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
16673     kworker/2:0-12895 (12895) [002] d..3 24563.630313: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
16674          <idle>-0     (-----) [003] .n.1 24563.630320: cpu_idle: state=4294967295 cpu_id=3
16675          <idle>-0     (-----) [003] d..2 24563.630330: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
16676     kworker/2:0-12895 (12895) [002] d..2 24563.630334: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
16677           <...>-13119 (-----) [000] d..2 24563.630397: sched_switch: prev_comm=shell svc 13118 prev_pid=13119 prev_prio=120 prev_state=x ==> next_comm=swapper/0 next_pid=0 next_prio=120
16678          <idle>-0     (-----) [000] d..1 24563.630414: cpu_idle: state=0 cpu_id=0
16679            adbd-1007  ( 1007) [002] d..2 24563.630415: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16680          <idle>-0     (-----) [002] d..1 24563.630432: cpu_idle: state=2 cpu_id=2
16681            adbd-23485 ( 1007) [003] d..2 24563.630438: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16682          <idle>-0     (-----) [003] d..1 24563.630448: cpu_idle: state=2 cpu_id=3
16683          <idle>-0     (-----) [002] d.h3 24563.630879: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
16684          <idle>-0     (-----) [002] dnh4 24563.630891: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
16685          <idle>-0     (-----) [002] .n.1 24563.630899: cpu_idle: state=4294967295 cpu_id=2
16686          <idle>-0     (-----) [002] d..2 24563.630914: 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
16687   kworker/u17:1-18284 (18284) [002] d..2 24563.630932: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
16688   kworker/u17:1-18284 (18284) [002] d..3 24563.630942: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
16689   kworker/u17:1-18284 (18284) [002] d..2 24563.630987: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
16690     kworker/2:0-12895 (12895) [002] d..2 24563.630999: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
16691     kworker/2:0-12895 (12895) [002] d..3 24563.631012: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
16692     kworker/2:0-12895 (12895) [002] d..2 24563.631040: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
16693     kworker/2:0-12895 (12895) [002] d..3 24563.631057: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
16694     kworker/2:0-12895 (12895) [002] d..2 24563.631072: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
16695            adbd-23484 ( 1007) [002] d..2 24563.631119: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
16696            adbd-23484 ( 1007) [002] d..3 24563.631127: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
16697            adbd-23484 ( 1007) [002] d..2 24563.631221: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
16698          <idle>-0     (-----) [003] .n.1 24563.631277: cpu_idle: state=4294967295 cpu_id=3
16699          <idle>-0     (-----) [003] d..2 24563.631293: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
16700            adbd-1007  ( 1007) [002] d..2 24563.631330: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16701          <idle>-0     (-----) [002] d..2 24563.631336: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
16702          <idle>-0     (-----) [002] dn.3 24563.631356: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
16703          <idle>-0     (-----) [002] d..2 24563.631366: 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
16704            adbd-23485 ( 1007) [003] d..2 24563.631385: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16705     ksoftirqd/2-26    (   26) [002] d.h4 24563.631393: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
16706          <idle>-0     (-----) [003] d..1 24563.631399: cpu_idle: state=0 cpu_id=3
16707     ksoftirqd/2-26    (   26) [002] dnh5 24563.631407: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
16708     ksoftirqd/2-26    (   26) [002] d..2 24563.631429: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
16709   kworker/u17:1-18284 (18284) [002] d..2 24563.631447: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
16710   kworker/u17:1-18284 (18284) [002] d..3 24563.631456: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
16711   kworker/u17:1-18284 (18284) [002] d..2 24563.631481: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
16712     ksoftirqd/2-26    (   26) [002] d..2 24563.631495: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
16713     kworker/2:0-12895 (12895) [002] d..2 24563.631505: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
16714     kworker/2:0-12895 (12895) [002] d..3 24563.631533: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
16715     kworker/2:0-12895 (12895) [002] d..2 24563.631547: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
16716            adbd-23485 ( 1007) [002] d.h3 24563.631632: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
16717            adbd-23485 ( 1007) [002] dnh4 24563.631646: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
16718            adbd-23485 ( 1007) [002] d..2 24563.631655: 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
16719   kworker/u17:1-18284 (18284) [002] d..2 24563.631669: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
16720   kworker/u17:1-18284 (18284) [002] d..3 24563.631677: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
16721   kworker/u17:1-18284 (18284) [002] d.h2 24563.631717: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
16722   kworker/u17:1-18284 (18284) [002] d.h3 24563.631767: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
16723   kworker/u17:1-18284 (18284) [002] d..2 24563.631811: 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
16724   kworker/u17:2-23076 (23076) [002] d..2 24563.631835: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
16725     kworker/2:0-12895 (12895) [002] d..2 24563.631848: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
16726     kworker/2:0-12895 (12895) [002] d..3 24563.631860: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
16727     kworker/2:0-12895 (12895) [002] d..2 24563.631881: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
16728            adbd-23484 ( 1007) [002] d..2 24563.631897: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
16729            adbd-23484 ( 1007) [002] d..3 24563.631908: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
16730            adbd-23484 ( 1007) [002] d..2 24563.631977: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
16731            adbd-1007  ( 1007) [002] d..2 24563.632052: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
16732            adbd-23485 ( 1007) [002] d..2 24563.632082: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16733          <idle>-0     (-----) [002] d..1 24563.632099: cpu_idle: state=0 cpu_id=2
16734          <idle>-0     (-----) [000] d.s2 24563.634243: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
16735          <idle>-0     (-----) [000] dns3 24563.634256: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
16736          <idle>-0     (-----) [000] dns3 24563.634261: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16737          <idle>-0     (-----) [000] dns4 24563.634271: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16738          <idle>-0     (-----) [000] .n.1 24563.634290: cpu_idle: state=4294967295 cpu_id=0
16739          <idle>-0     (-----) [000] d..2 24563.634300: 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
16740     rcu_preempt-7     (    7) [000] d..2 24563.634309: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
16741     rcu_preempt-7     (    7) [000] d..3 24563.634325: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
16742     rcu_preempt-7     (    7) [000] d..2 24563.634337: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16743  kworker/u16:15-18488 (18488) [000] .... 24563.634363: clk_set_rate: l3_cluster0_vote_clk 576000000
16744  kworker/u16:15-18488 (18488) [000] .... 24563.634369: clk_set_rate: l3_clk 576000000
16745  kworker/u16:15-18488 (18488) [000] d..2 24563.634601: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=rcuop/2 next_pid=29 next_prio=120
16746         rcuop/2-29    (   29) [000] d..2 24563.634611: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
16747         rcuop/2-29    (   29) [000] d..3 24563.634633: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
16748         rcuop/2-29    (   29) [000] d..2 24563.634644: 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
16749         rcuop/3-37    (   37) [000] d..2 24563.634685: 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
16750          <idle>-0     (-----) [000] d..1 24563.634699: cpu_idle: state=2 cpu_id=0
16751          <idle>-0     (-----) [003] d.s3 24563.635218: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16752          <idle>-0     (-----) [003] d.s4 24563.635247: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
16753          <idle>-0     (-----) [003] dns4 24563.635253: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
16754          <idle>-0     (-----) [003] .n.1 24563.635261: cpu_idle: state=4294967295 cpu_id=3
16755          <idle>-0     (-----) [003] d..2 24563.635270: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16756  kworker/u16:15-18488 (18488) [003] d..2 24563.635325: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16757          <idle>-0     (-----) [003] d..1 24563.635337: cpu_idle: state=0 cpu_id=3
16758          <idle>-0     (-----) [002] d..2 24563.638118: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
16759          <idle>-0     (-----) [002] dn.3 24563.638132: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
16760          <idle>-0     (-----) [002] dnH3 24563.638213: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
16761          <idle>-0     (-----) [002] dnH3 24563.638232: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
16762          <idle>-0     (-----) [002] dnH4 24563.638246: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
16763          <idle>-0     (-----) [002] .n.1 24563.638256: cpu_idle: state=4294967295 cpu_id=2
16764          <idle>-0     (-----) [002] d..2 24563.638270: 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
16765     ksoftirqd/2-26    (   26) [002] d..2 24563.638292: 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
16766          <idle>-0     (-----) [002] d..1 24563.638301: cpu_idle: state=2 cpu_id=2
16767          <idle>-0     (-----) [000] .n.1 24563.638496: cpu_idle: state=4294967295 cpu_id=0
16768          <idle>-0     (-----) [000] d..2 24563.638512: 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
16769         sugov:0-559   (  559) [000] .... 24563.638543: clk_set_rate: pwrcl_clk 1766400000
16770         sugov:0-559   (  559) [000] d..2 24563.638657: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
16771          <idle>-0     (-----) [000] d..1 24563.638666: cpu_idle: state=0 cpu_id=0
16772          <idle>-0     (-----) [003] d.s3 24563.638790: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
16773          <idle>-0     (-----) [003] d.s4 24563.638807: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
16774          <idle>-0     (-----) [000] .n.1 24563.638813: cpu_idle: state=4294967295 cpu_id=0
16775          <idle>-0     (-----) [003] ...1 24563.638816: cpu_idle: state=4294967295 cpu_id=3
16776          <idle>-0     (-----) [000] d..2 24563.638819: 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
16777          <idle>-0     (-----) [003] d..1 24563.638821: cpu_idle: state=0 cpu_id=3
16778         sugov:0-559   (  559) [000] .... 24563.638832: clk_set_rate: cpu3_pwrcl_clk 1228800000
16779         sugov:0-559   (  559) [000] .... 24563.638843: clk_set_rate: cpu2_pwrcl_clk 1228800000
16780         sugov:0-559   (  559) [000] .... 24563.638851: clk_set_rate: cpu1_pwrcl_clk 1228800000
16781         sugov:0-559   (  559) [000] .... 24563.638860: clk_set_rate: cpu0_pwrcl_clk 1766400000
16782         sugov:0-559   (  559) [000] .... 24563.638871: cpu_frequency: state=1766400 cpu_id=0
16783         sugov:0-559   (  559) [000] d..2 24563.639025: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
16784          <idle>-0     (-----) [000] d..1 24563.639032: cpu_idle: state=0 cpu_id=0
16785          <idle>-0     (-----) [003] d.s3 24563.639055: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
16786          <idle>-0     (-----) [003] d.s4 24563.639066: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
16787          <idle>-0     (-----) [003] ...1 24563.639071: cpu_idle: state=4294967295 cpu_id=3
16788          <idle>-0     (-----) [000] .n.1 24563.639071: cpu_idle: state=4294967295 cpu_id=0
16789          <idle>-0     (-----) [003] d..1 24563.639075: cpu_idle: state=0 cpu_id=3
16790          <idle>-0     (-----) [000] d..2 24563.639077: 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
16791         sugov:0-559   (  559) [000] .... 24563.639084: cpu_frequency: state=1766400 cpu_id=1
16792         sugov:0-559   (  559) [000] .... 24563.639087: cpu_frequency: state=1766400 cpu_id=2
16793         sugov:0-559   (  559) [000] .... 24563.639090: cpu_frequency: state=1766400 cpu_id=3
16794         sugov:0-559   (  559) [000] d..2 24563.639103: 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
16795          <idle>-0     (-----) [000] d..1 24563.639108: cpu_idle: state=0 cpu_id=0
16796          <idle>-0     (-----) [006] dnh2 24563.639207: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
16797          <idle>-0     (-----) [006] .n.1 24563.639215: cpu_idle: state=4294967295 cpu_id=6
16798          <idle>-0     (-----) [006] d..2 24563.639228: 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
16799         sugov:4-560   (  560) [006] d..2 24563.639251: 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
16800          <idle>-0     (-----) [006] d..1 24563.639263: cpu_idle: state=2 cpu_id=6
16801          <idle>-0     (-----) [000] d.s2 24563.640935: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
16802          <idle>-0     (-----) [000] dns3 24563.640949: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
16803          <idle>-0     (-----) [000] .n.1 24563.640957: cpu_idle: state=4294967295 cpu_id=0
16804          <idle>-0     (-----) [000] d..2 24563.640963: 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
16805     rcu_preempt-7     (    7) [000] d..2 24563.640969: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
16806     rcu_preempt-7     (    7) [000] d..3 24563.640980: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
16807     rcu_preempt-7     (    7) [000] d..2 24563.640989: 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
16808         rcuop/0-10    (   10) [000] d..2 24563.641014: 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
16809          <idle>-0     (-----) [000] d..1 24563.641023: cpu_idle: state=0 cpu_id=0
16810          <idle>-0     (-----) [003] d..2 24563.645083: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
16811          <idle>-0     (-----) [003] dn.3 24563.645100: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
16812          <idle>-0     (-----) [003] .n.1 24563.645102: cpu_idle: state=4294967295 cpu_id=3
16813          <idle>-0     (-----) [003] d..2 24563.645113: 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
16814     ksoftirqd/3-34    (   34) [003] d.s2 24563.645127: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
16815     ksoftirqd/3-34    (   34) [003] d.s3 24563.645143: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
16816     ksoftirqd/3-34    (   34) [003] d..2 24563.645155: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16817  kworker/u16:15-18488 (18488) [003] d..2 24563.645319: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16818          <idle>-0     (-----) [003] d.s4 24563.645357: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
16819          <idle>-0     (-----) [003] d.s5 24563.645367: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
16820          <idle>-0     (-----) [003] dns5 24563.645371: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
16821          <idle>-0     (-----) [003] d..2 24563.645380: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16822  kworker/u16:15-18488 (18488) [003] .... 24563.645400: clk_set_rate: l3_cluster0_vote_clk 300000000
16823  kworker/u16:15-18488 (18488) [003] .... 24563.645404: clk_set_rate: l3_clk 300000000
16824  kworker/u16:15-18488 (18488) [003] d..2 24563.645442: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16825          <idle>-0     (-----) [003] d..1 24563.645458: cpu_idle: state=2 cpu_id=3
16826          <idle>-0     (-----) [000] d.s2 24563.647572: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
16827          <idle>-0     (-----) [000] dns3 24563.647584: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
16828          <idle>-0     (-----) [000] .n.1 24563.647592: cpu_idle: state=4294967295 cpu_id=0
16829          <idle>-0     (-----) [000] d..2 24563.647600: 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
16830     rcu_preempt-7     (    7) [000] d..2 24563.647608: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
16831     rcu_preempt-7     (    7) [000] d..3 24563.647619: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
16832     rcu_preempt-7     (    7) [000] d..2 24563.647629: 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
16833         rcuop/2-29    (   29) [000] d..2 24563.647632: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
16834         rcuop/2-29    (   29) [000] d..3 24563.647642: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
16835         rcuop/2-29    (   29) [000] d..2 24563.647648: 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
16836         rcuop/3-37    (   37) [000] d..2 24563.647675: 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
16837          <idle>-0     (-----) [000] d..1 24563.647685: cpu_idle: state=0 cpu_id=0
16838          <idle>-0     (-----) [000] d.s2 24563.654239: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
16839          <idle>-0     (-----) [000] dns3 24563.654250: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
16840          <idle>-0     (-----) [000] dns3 24563.654255: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
16841          <idle>-0     (-----) [000] dns4 24563.654278: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16842          <idle>-0     (-----) [000] .n.1 24563.654295: cpu_idle: state=4294967295 cpu_id=0
16843          <idle>-0     (-----) [000] d..2 24563.654305: 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
16844     rcu_preempt-7     (    7) [000] d..2 24563.654313: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
16845     rcu_preempt-7     (    7) [000] d..3 24563.654323: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
16846     rcu_preempt-7     (    7) [000] d..2 24563.654330: 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
16847         rcuop/0-10    (   10) [000] d..2 24563.654418: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
16848         rcuop/0-10    (   10) [000] d..3 24563.654431: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
16849         rcuop/0-10    (   10) [000] d..2 24563.654439: 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
16850     rcu_preempt-7     (    7) [000] d..2 24563.654451: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16851  kworker/u16:15-18488 (18488) [000] d..2 24563.654518: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16852          <idle>-0     (-----) [000] d..1 24563.654532: cpu_idle: state=2 cpu_id=0
16853          <idle>-0     (-----) [000] d.H3 24563.661313: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
16854          <idle>-0     (-----) [000] d.H3 24563.661329: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
16855          <idle>-0     (-----) [000] dnH4 24563.661338: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
16856          <idle>-0     (-----) [000] dns2 24563.661344: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
16857          <idle>-0     (-----) [000] dns3 24563.661360: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
16858          <idle>-0     (-----) [000] .n.1 24563.661370: cpu_idle: state=4294967295 cpu_id=0
16859          <idle>-0     (-----) [000] d..2 24563.661381: 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
16860         sugov:0-559   (  559) [000] .... 24563.661402: clk_set_rate: pwrcl_clk 748800000
16861         sugov:0-559   (  559) [000] .... 24563.661469: clk_set_rate: cpu3_pwrcl_clk 1766400000
16862         sugov:0-559   (  559) [000] .... 24563.661479: clk_set_rate: cpu2_pwrcl_clk 1766400000
16863         sugov:0-559   (  559) [000] .... 24563.661487: clk_set_rate: cpu1_pwrcl_clk 1766400000
16864         sugov:0-559   (  559) [000] .... 24563.661496: clk_set_rate: cpu0_pwrcl_clk 748800000
16865         sugov:0-559   (  559) [000] .... 24563.661663: cpu_frequency: state=748800 cpu_id=0
16866          <idle>-0     (-----) [003] ...1 24563.661811: cpu_idle: state=4294967295 cpu_id=3
16867          <idle>-0     (-----) [003] d..1 24563.661829: cpu_idle: state=0 cpu_id=3
16868         sugov:0-559   (  559) [000] d..2 24563.661864: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
16869          <idle>-0     (-----) [003] d.s3 24563.661904: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
16870     rcu_preempt-7     (    7) [000] d..2 24563.661912: 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
16871          <idle>-0     (-----) [000] dn.1 24563.661936: cpu_idle: state=0 cpu_id=0
16872          <idle>-0     (-----) [003] d.s4 24563.661941: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
16873          <idle>-0     (-----) [000] .n.1 24563.661947: cpu_idle: state=4294967295 cpu_id=0
16874          <idle>-0     (-----) [003] ...1 24563.661957: cpu_idle: state=4294967295 cpu_id=3
16875          <idle>-0     (-----) [000] d..2 24563.661959: 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
16876          <idle>-0     (-----) [003] d..1 24563.661963: cpu_idle: state=0 cpu_id=3
16877         sugov:0-559   (  559) [000] .... 24563.661972: cpu_frequency: state=748800 cpu_id=1
16878         sugov:0-559   (  559) [000] .... 24563.661983: cpu_frequency: state=748800 cpu_id=2
16879         sugov:0-559   (  559) [000] .... 24563.661987: cpu_frequency: state=748800 cpu_id=3
16880         sugov:0-559   (  559) [000] d..2 24563.662018: 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
16881          <idle>-0     (-----) [000] d..1 24563.662030: cpu_idle: state=0 cpu_id=0
16882          <idle>-0     (-----) [006] dnh2 24563.662367: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
16883          <idle>-0     (-----) [006] .n.1 24563.662377: cpu_idle: state=4294967295 cpu_id=6
16884          <idle>-0     (-----) [006] d..2 24563.662393: 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
16885         sugov:4-560   (  560) [006] d..2 24563.662422: 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
16886          <idle>-0     (-----) [006] d..1 24563.662436: cpu_idle: state=2 cpu_id=6
16887          <idle>-0     (-----) [000] d.s2 24563.667590: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
16888          <idle>-0     (-----) [000] dns3 24563.667614: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
16889          <idle>-0     (-----) [000] dns3 24563.667623: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16890          <idle>-0     (-----) [000] dns4 24563.667642: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16891          <idle>-0     (-----) [000] .n.1 24563.667658: cpu_idle: state=4294967295 cpu_id=0
16892          <idle>-0     (-----) [000] d..2 24563.667672: 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
16893     rcu_preempt-7     (    7) [000] d..2 24563.667682: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
16894     rcu_preempt-7     (    7) [000] d..3 24563.667701: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
16895     rcu_preempt-7     (    7) [000] d..2 24563.667713: 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
16896         rcuop/0-10    (   10) [000] d..2 24563.667767: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16897  kworker/u16:15-18488 (18488) [000] d..2 24563.667877: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16898          <idle>-0     (-----) [000] d..1 24563.667896: cpu_idle: state=2 cpu_id=0
16899          <idle>-0     (-----) [001] d.H3 24563.758081: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
16900          <idle>-0     (-----) [001] d.H3 24563.758126: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
16901          <idle>-0     (-----) [001] d.H4 24563.758144: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
16902          <idle>-0     (-----) [001] d.s3 24563.758168: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
16903          <idle>-0     (-----) [001] dns4 24563.758200: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
16904          <idle>-0     (-----) [001] dns3 24563.758209: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16905          <idle>-0     (-----) [001] dns4 24563.758230: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16906          <idle>-0     (-----) [001] .n.1 24563.758275: cpu_idle: state=4294967295 cpu_id=1
16907          <idle>-0     (-----) [001] d..2 24563.758301: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
16908          <idle>-0     (-----) [000] .n.1 24563.758446: cpu_idle: state=4294967295 cpu_id=0
16909          <idle>-0     (-----) [000] d..2 24563.758476: 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
16910         sugov:0-559   (  559) [000] .... 24563.758508: clk_set_rate: pwrcl_clk 652800000
16911         sugov:0-559   (  559) [000] .... 24563.758520: clk_set_rate: cpu3_pwrcl_clk 748800000
16912         sugov:0-559   (  559) [000] .... 24563.758531: clk_set_rate: cpu2_pwrcl_clk 748800000
16913         sugov:0-559   (  559) [000] .... 24563.758543: clk_set_rate: cpu1_pwrcl_clk 748800000
16914     kworker/1:1-13091 (13091) [001] d..3 24563.758545: sched_waking: comm=kworker/1:0 pid=13068 prio=120 target_cpu=001
16915         sugov:0-559   (  559) [000] .... 24563.758553: clk_set_rate: cpu0_pwrcl_clk 652800000
16916     kworker/1:1-13091 (13091) [001] d..3 24563.758593: sched_wakeup: comm=kworker/1:0 pid=13068 prio=120 target_cpu=001
16917     kworker/1:1-13091 (13091) [001] d..2 24563.758611: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=D ==> next_comm=kworker/1:0 next_pid=13068 next_prio=120
16918         sugov:0-559   (  559) [000] .... 24563.758671: cpu_frequency: state=652800 cpu_id=0
16919         sugov:0-559   (  559) [000] .... 24563.758687: cpu_frequency: state=652800 cpu_id=1
16920         sugov:0-559   (  559) [000] .... 24563.758694: cpu_frequency: state=652800 cpu_id=2
16921         sugov:0-559   (  559) [000] .... 24563.758699: cpu_frequency: state=652800 cpu_id=3
16922         sugov:0-559   (  559) [000] d..2 24563.758728: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16923<...>-13068 ( 13068) [001] d..2 24563.758782: sched_switch: prev_comm=kworker/1:0 prev_pid=13068 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16924          <idle>-0     (-----) [001] d..1 24563.758811: cpu_idle: state=2 cpu_id=1
16925  kworker/u16:15-18488 (18488) [000] d..2 24563.758972: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16926          <idle>-0     (-----) [000] d..1 24563.758994: cpu_idle: state=2 cpu_id=0
16927          <idle>-0     (-----) [004] dnh2 24563.759278: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
16928          <idle>-0     (-----) [004] .n.1 24563.759291: cpu_idle: state=4294967295 cpu_id=4
16929          <idle>-0     (-----) [004] d..2 24563.759311: 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
16930         sugov:4-560   (  560) [004] d..2 24563.759338: 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
16931          <idle>-0     (-----) [004] d..1 24563.759356: cpu_idle: state=2 cpu_id=4
16932          <idle>-0     (-----) [000] d.h3 24563.759646: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
16933          <idle>-0     (-----) [000] dnh4 24563.759678: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
16934          <idle>-0     (-----) [000] .n.1 24563.759717: cpu_idle: state=4294967295 cpu_id=0
16935          <idle>-0     (-----) [000] d..2 24563.759739: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
16936     kworker/0:1-13012 (13012) [000] d..2 24563.759755: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
16937     kworker/0:1-13012 (13012) [000] d..3 24563.759768: sched_blocked_reason: pid=13091 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
16938     kworker/0:1-13012 (13012) [000] d..3 24563.759780: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
16939     kworker/0:1-13012 (13012) [000] d..2 24563.759816: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16940          <idle>-0     (-----) [000] d..1 24563.759839: cpu_idle: state=0 cpu_id=0
16941          <idle>-0     (-----) [001] .n.1 24563.760102: cpu_idle: state=4294967295 cpu_id=1
16942          <idle>-0     (-----) [001] d..2 24563.760140: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
16943     kworker/1:1-13091 (13091) [001] d..2 24563.760361: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16944          <idle>-0     (-----) [001] d..1 24563.760389: cpu_idle: state=0 cpu_id=1
16945          <idle>-0     (-----) [000] d..2 24563.765857: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16946          <idle>-0     (-----) [000] dn.3 24563.765885: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16947          <idle>-0     (-----) [000] .n.1 24563.765893: cpu_idle: state=4294967295 cpu_id=0
16948          <idle>-0     (-----) [000] d..2 24563.765912: 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
16949     ksoftirqd/0-3     (    3) [000] d..2 24563.765981: 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
16950          <idle>-0     (-----) [000] d..1 24563.765996: cpu_idle: state=2 cpu_id=0
16951          <idle>-0     (-----) [001] ...1 24563.766404: cpu_idle: state=4294967295 cpu_id=1
16952          <idle>-0     (-----) [001] d..1 24563.766410: cpu_idle: state=2 cpu_id=1
16953          <idle>-0     (-----) [003] d.H3 24563.891011: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
16954          <idle>-0     (-----) [003] d.H3 24563.891034: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
16955          <idle>-0     (-----) [003] d.H4 24563.891051: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
16956          <idle>-0     (-----) [003] d.s3 24563.891072: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
16957          <idle>-0     (-----) [003] dns4 24563.891105: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
16958          <idle>-0     (-----) [003] dns3 24563.891127: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
16959          <idle>-0     (-----) [003] dns4 24563.891147: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
16960          <idle>-0     (-----) [003] .n.1 24563.891177: cpu_idle: state=4294967295 cpu_id=3
16961          <idle>-0     (-----) [003] d..2 24563.891198: 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
16962     kworker/3:1-12662 (12662) [003] d..2 24563.891274: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
16963  kworker/u16:15-18488 (18488) [003] d..2 24563.891284: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
16964  kworker/u16:15-18488 (18488) [003] d..3 24563.891355: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
16965          <idle>-0     (-----) [000] .n.1 24563.891363: cpu_idle: state=4294967295 cpu_id=0
16966          <idle>-0     (-----) [000] d..2 24563.891397: 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
16967         sugov:0-559   (  559) [000] d..2 24563.891427: 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
16968  kworker/u16:15-18488 (18488) [003] d.s2 24563.891839: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
16969  kworker/u16:16-25995 (25995) [000] d..2 24563.891845: 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
16970  kworker/u16:15-18488 (18488) [003] d.s3 24563.891866: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
16971          <idle>-0     (-----) [000] d..1 24563.891872: cpu_idle: state=0 cpu_id=0
16972  kworker/u16:15-18488 (18488) [003] d.s3 24563.891878: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
16973          <idle>-0     (-----) [000] .n.1 24563.891883: cpu_idle: state=4294967295 cpu_id=0
16974          <idle>-0     (-----) [000] d..2 24563.891901: 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
16975  kworker/u16:16-25995 (25995) [000] d..2 24563.891991: 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
16976          <idle>-0     (-----) [000] d..1 24563.892008: cpu_idle: state=0 cpu_id=0
16977          <idle>-0     (-----) [004] dnh2 24563.892090: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
16978          <idle>-0     (-----) [004] .n.1 24563.892100: cpu_idle: state=4294967295 cpu_id=4
16979          <idle>-0     (-----) [004] d..2 24563.892115: 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
16980         sugov:4-560   (  560) [004] d..2 24563.892141: 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
16981          <idle>-0     (-----) [004] d..1 24563.892153: cpu_idle: state=2 cpu_id=4
16982  kworker/u16:15-18488 (18488) [003] d..4 24563.892287: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
16983  kworker/u16:15-18488 (18488) [003] d..5 24563.892308: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
16984  kworker/u16:15-18488 (18488) [003] d..2 24563.892502: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
16985     kworker/3:1-12662 (12662) [003] d..2 24563.893174: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16986          <idle>-0     (-----) [003] d..1 24563.893200: cpu_idle: state=2 cpu_id=3
16987          <idle>-0     (-----) [003] d.s3 24563.894264: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
16988          <idle>-0     (-----) [003] d.s4 24563.894279: sched_blocked_reason: pid=12662 iowait=0 caller=wait_for_tx_done+0x34/0x120
16989          <idle>-0     (-----) [003] dns4 24563.894288: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
16990          <idle>-0     (-----) [003] .n.1 24563.894299: cpu_idle: state=4294967295 cpu_id=3
16991          <idle>-0     (-----) [003] d..2 24563.894326: 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
16992     kworker/3:1-12662 (12662) [003] d..2 24563.894530: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16993          <idle>-0     (-----) [003] d.s4 24563.894574: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
16994          <idle>-0     (-----) [003] d.s5 24563.894585: sched_blocked_reason: pid=12662 iowait=0 caller=wait_for_tx_done+0x34/0x120
16995          <idle>-0     (-----) [003] dns5 24563.894591: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
16996          <idle>-0     (-----) [003] d..2 24563.894608: 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
16997     kworker/3:1-12662 (12662) [003] d..1 24563.894650: clk_enable: gcc_ufs_phy_axi_clk_src
16998     kworker/3:1-12662 (12662) [003] d..1 24563.894677: clk_enable: gcc_ufs_phy_axi_clk
16999     kworker/3:1-12662 (12662) [003] d..1 24563.894695: clk_enable: gcc_ufs_phy_axi_hw_ctl_clk
17000     kworker/3:1-12662 (12662) [003] d..1 24563.894710: clk_enable: gcc_aggre_ufs_phy_axi_clk
17001     kworker/3:1-12662 (12662) [003] d..1 24563.894721: clk_enable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
17002     kworker/3:1-12662 (12662) [003] d..1 24563.894735: clk_enable: gcc_ufs_phy_ahb_clk
17003     kworker/3:1-12662 (12662) [003] d..1 24563.894755: clk_enable: gcc_ufs_phy_unipro_core_clk_src
17004     kworker/3:1-12662 (12662) [003] d..1 24563.894766: clk_enable: gcc_ufs_phy_unipro_core_clk
17005     kworker/3:1-12662 (12662) [003] d..1 24563.894776: clk_enable: gcc_ufs_phy_unipro_core_hw_ctl_clk
17006     kworker/3:1-12662 (12662) [003] d..1 24563.894793: clk_enable: gcc_ufs_phy_ice_core_clk_src
17007     kworker/3:1-12662 (12662) [003] d..1 24563.894803: clk_enable: gcc_ufs_phy_ice_core_clk
17008     kworker/3:1-12662 (12662) [003] d..1 24563.894814: clk_enable: gcc_ufs_phy_ice_core_hw_ctl_clk
17009     kworker/3:1-12662 (12662) [003] d..1 24563.894826: clk_enable: gcc_ufs_phy_tx_symbol_0_clk
17010     kworker/3:1-12662 (12662) [003] d..1 24563.895339: clk_enable: gcc_ufs_phy_rx_symbol_0_clk
17011     kworker/3:1-12662 (12662) [003] d..1 24563.895851: clk_enable: gcc_ufs_phy_rx_symbol_1_clk
17012     kworker/3:1-12662 (12662) [003] d..1 24563.896371: clk_enable: gcc_ufs_mem_clkref_clk
17013     kworker/3:1-12662 (12662) [003] d..1 24563.896387: clk_enable: gcc_ufs_phy_phy_aux_clk_src
17014     kworker/3:1-12662 (12662) [003] d..1 24563.896395: clk_enable: gcc_ufs_phy_phy_aux_clk
17015     kworker/3:1-12662 (12662) [003] d..1 24563.896405: clk_enable: gcc_ufs_phy_phy_aux_hw_ctl_clk
17016     kworker/3:1-12662 (12662) [003] d..2 24563.896581: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17017          <idle>-0     (-----) [003] d..2 24563.896588: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
17018          <idle>-0     (-----) [003] dn.3 24563.896608: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
17019          <idle>-0     (-----) [003] d..2 24563.896621: 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
17020     ksoftirqd/3-34    (   34) [003] d.s3 24563.896663: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
17021     ksoftirqd/3-34    (   34) [003] d.s4 24563.896673: sched_blocked_reason: pid=12662 iowait=0 caller=wait_for_tx_done+0x34/0x120
17022     ksoftirqd/3-34    (   34) [003] d.s4 24563.896680: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
17023     ksoftirqd/3-34    (   34) [003] d..2 24563.896698: 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
17024     kworker/3:1-12662 (12662) [003] d..2 24563.896805: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17025          <idle>-0     (-----) [003] d.s3 24563.896856: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
17026          <idle>-0     (-----) [003] d.s4 24563.896865: sched_blocked_reason: pid=12662 iowait=0 caller=wait_for_tx_done+0x34/0x120
17027          <idle>-0     (-----) [003] dns4 24563.896871: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
17028          <idle>-0     (-----) [003] d..2 24563.896891: 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
17029     kworker/3:1-12662 (12662) [003] d..2 24563.896988: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17030          <idle>-0     (-----) [003] d..1 24563.897011: cpu_idle: state=0 cpu_id=3
17031          <idle>-0     (-----) [003] d.s3 24563.897388: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
17032          <idle>-0     (-----) [003] d.s4 24563.897398: sched_blocked_reason: pid=12662 iowait=0 caller=wait_for_tx_done+0x34/0x120
17033          <idle>-0     (-----) [003] dns4 24563.897405: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
17034          <idle>-0     (-----) [003] .n.1 24563.897416: cpu_idle: state=4294967295 cpu_id=3
17035          <idle>-0     (-----) [003] d..2 24563.897430: 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
17036     kworker/3:1-12662 (12662) [003] d..2 24563.897577: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17037          <idle>-0     (-----) [003] d.H4 24563.897689: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
17038          <idle>-0     (-----) [003] d.H4 24563.897709: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
17039          <idle>-0     (-----) [003] d.H5 24563.897728: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
17040          <idle>-0     (-----) [000] .n.1 24563.897736: cpu_idle: state=4294967295 cpu_id=0
17041          <idle>-0     (-----) [000] d..2 24563.897752: 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
17042          <idle>-0     (-----) [003] d..1 24563.897760: cpu_idle: state=0 cpu_id=3
17043         sugov:0-559   (  559) [000] d..2 24563.897794: 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
17044          <idle>-0     (-----) [000] d..1 24563.897810: cpu_idle: state=0 cpu_id=0
17045          <idle>-0     (-----) [001] d.h4 24563.898165: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
17046          <idle>-0     (-----) [001] d.h5 24563.898184: sched_blocked_reason: pid=12662 iowait=0 caller=ufshcd_uic_pwr_ctrl+0x3dc/0x758
17047          <idle>-0     (-----) [001] d.h5 24563.898199: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
17048          <idle>-0     (-----) [003] .n.1 24563.898207: cpu_idle: state=4294967295 cpu_id=3
17049          <idle>-0     (-----) [001] ...1 24563.898220: cpu_idle: state=4294967295 cpu_id=1
17050          <idle>-0     (-----) [003] d..2 24563.898225: 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
17051          <idle>-0     (-----) [001] d..1 24563.898236: cpu_idle: state=0 cpu_id=1
17052     kworker/3:1-12662 (12662) [003] d..3 24563.898340: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
17053     kworker/3:1-12662 (12662) [003] d..4 24563.898374: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
17054     kworker/3:1-12662 (12662) [003] d..2 24563.898427: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
17055          <idle>-0     (-----) [004] dnh2 24563.898466: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
17056          <idle>-0     (-----) [004] .n.1 24563.898475: cpu_idle: state=4294967295 cpu_id=4
17057          <idle>-0     (-----) [000] ...1 24563.898487: cpu_idle: state=4294967295 cpu_id=0
17058          <idle>-0     (-----) [004] d..2 24563.898487: 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
17059          <idle>-0     (-----) [001] ...1 24563.898491: cpu_idle: state=4294967295 cpu_id=1
17060          <idle>-0     (-----) [000] d..1 24563.898495: cpu_idle: state=0 cpu_id=0
17061          <idle>-0     (-----) [001] d..1 24563.898499: cpu_idle: state=0 cpu_id=1
17062         sugov:4-560   (  560) [004] d..2 24563.898509: 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
17063  kworker/u16:15-18488 (18488) [003] d..2 24563.898511: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17064          <idle>-0     (-----) [004] d..1 24563.898519: cpu_idle: state=2 cpu_id=4
17065          <idle>-0     (-----) [003] d..1 24563.898535: cpu_idle: state=0 cpu_id=3
17066          <idle>-0     (-----) [002] ...1 24563.898668: cpu_idle: state=4294967295 cpu_id=2
17067          <idle>-0     (-----) [002] d..1 24563.898687: cpu_idle: state=0 cpu_id=2
17068          <idle>-0     (-----) [001] d.h4 24563.898806: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
17069          <idle>-0     (-----) [001] dnh5 24563.898861: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
17070          <idle>-0     (-----) [001] dns4 24563.898923: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
17071          <idle>-0     (-----) [001] dns5 24563.898933: sched_blocked_reason: pid=12662 iowait=1 caller=blk_execute_rq+0xc0/0x118
17072          <idle>-0     (-----) [001] dns5 24563.898944: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
17073          <idle>-0     (-----) [003] .n.1 24563.898953: cpu_idle: state=4294967295 cpu_id=3
17074          <idle>-0     (-----) [003] d..2 24563.898969: 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
17075          <idle>-0     (-----) [001] .n.1 24563.898974: cpu_idle: state=4294967295 cpu_id=1
17076          <idle>-0     (-----) [001] d..2 24563.898993: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
17077     kworker/3:1-12662 (12662) [003] d..2 24563.899034: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17078  kworker/u16:15-18488 (18488) [001] d..2 24563.899040: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17079          <idle>-0     (-----) [003] d..1 24563.899051: cpu_idle: state=0 cpu_id=3
17080          <idle>-0     (-----) [001] d.h5 24563.899069: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
17081          <idle>-0     (-----) [001] d.h6 24563.899080: sched_blocked_reason: pid=12662 iowait=0 caller=ufshcd_exec_dev_cmd+0x3a4/0x74c
17082          <idle>-0     (-----) [001] d.h6 24563.899091: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
17083          <idle>-0     (-----) [003] .n.1 24563.899098: cpu_idle: state=4294967295 cpu_id=3
17084          <idle>-0     (-----) [003] d..2 24563.899112: 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
17085          <idle>-0     (-----) [001] d..1 24563.899119: cpu_idle: state=0 cpu_id=1
17086     kworker/3:1-12662 (12662) [003] d..3 24563.899213: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
17087     kworker/3:1-12662 (12662) [003] d..4 24563.899236: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
17088          <idle>-0     (-----) [001] .n.1 24563.899242: cpu_idle: state=4294967295 cpu_id=1
17089          <idle>-0     (-----) [001] d..2 24563.899257: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
17090  kworker/u16:15-18488 (18488) [001] d..2 24563.899290: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17091          <idle>-0     (-----) [001] d..1 24563.899306: cpu_idle: state=0 cpu_id=1
17092     kworker/3:1-12662 (12662) [003] d..2 24563.899336: 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
17093          <idle>-0     (-----) [003] d..1 24563.899356: cpu_idle: state=0 cpu_id=3
17094          <idle>-0     (-----) [001] ...1 24563.900798: cpu_idle: state=4294967295 cpu_id=1
17095          <idle>-0     (-----) [001] d..1 24563.900804: cpu_idle: state=0 cpu_id=1
17096          <idle>-0     (-----) [003] ...1 24563.900821: cpu_idle: state=4294967295 cpu_id=3
17097          <idle>-0     (-----) [003] d..1 24563.900827: cpu_idle: state=0 cpu_id=3
17098          <idle>-0     (-----) [001] d.h4 24563.901930: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
17099          <idle>-0     (-----) [001] dnh5 24563.901954: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
17100          <idle>-0     (-----) [001] dns4 24563.902067: sched_waking: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
17101          <idle>-0     (-----) [001] dns5 24563.902092: sched_wakeup: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
17102          <idle>-0     (-----) [001] .n.1 24563.902118: cpu_idle: state=4294967295 cpu_id=1
17103          <idle>-0     (-----) [001] d..2 24563.902139: 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
17104    kworker/1:1H-533   (  533) [001] d..2 24563.902166: sched_switch: prev_comm=kworker/1:1H prev_pid=533 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
17105  kworker/u16:15-18488 (18488) [001] d..2 24563.902207: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17106          <idle>-0     (-----) [001] d..2 24563.902213: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
17107          <idle>-0     (-----) [001] dn.3 24563.902234: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
17108          <idle>-0     (-----) [001] d..2 24563.902246: 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
17109     ksoftirqd/1-18    (   18) [001] d.s2 24563.902266: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
17110     ksoftirqd/1-18    (   18) [001] d.s3 24563.902290: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
17111     ksoftirqd/1-18    (   18) [001] d..2 24563.902310: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
17112  kworker/u16:15-18488 (18488) [001] .... 24563.902350: clk_set_rate: l3_cluster0_vote_clk 403200000
17113  kworker/u16:15-18488 (18488) [001] .... 24563.902357: clk_set_rate: l3_clk 403200000
17114  kworker/u16:15-18488 (18488) [001] d..2 24563.902588: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
17115          <idle>-0     (-----) [001] d..1 24563.902610: cpu_idle: state=0 cpu_id=1
17116          <idle>-0     (-----) [003] d.s3 24563.902626: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
17117          <idle>-0     (-----) [003] d.s4 24563.902641: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
17118          <idle>-0     (-----) [003] d.s4 24563.902652: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
17119          <idle>-0     (-----) [001] .n.1 24563.902659: cpu_idle: state=4294967295 cpu_id=1
17120          <idle>-0     (-----) [003] ...1 24563.902665: cpu_idle: state=4294967295 cpu_id=3
17121          <idle>-0     (-----) [001] d..2 24563.902675: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
17122          <idle>-0     (-----) [003] d..1 24563.902675: cpu_idle: state=0 cpu_id=3
17123  kworker/u16:15-18488 (18488) [001] d..2 24563.902751: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17124          <idle>-0     (-----) [001] d..1 24563.902771: cpu_idle: state=0 cpu_id=1
17125          <idle>-0     (-----) [001] ...1 24563.903953: cpu_idle: state=4294967295 cpu_id=1
17126          <idle>-0     (-----) [001] d..1 24563.903959: cpu_idle: state=0 cpu_id=1
17127          <idle>-0     (-----) [003] ...1 24563.903997: cpu_idle: state=4294967295 cpu_id=3
17128          <idle>-0     (-----) [003] d..1 24563.904003: cpu_idle: state=0 cpu_id=3
17129          <idle>-0     (-----) [000] d..2 24563.904507: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17130          <idle>-0     (-----) [000] dn.3 24563.904525: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17131          <idle>-0     (-----) [000] .n.1 24563.904530: cpu_idle: state=4294967295 cpu_id=0
17132          <idle>-0     (-----) [000] d..2 24563.904546: 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
17133     ksoftirqd/0-3     (    3) [000] d..2 24563.904585: 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
17134          <idle>-0     (-----) [000] d..1 24563.904599: cpu_idle: state=0 cpu_id=0
17135          <idle>-0     (-----) [002] ...1 24563.904700: cpu_idle: state=4294967295 cpu_id=2
17136          <idle>-0     (-----) [002] d..1 24563.904706: cpu_idle: state=0 cpu_id=2
17137          <idle>-0     (-----) [001] d.s3 24563.910919: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
17138          <idle>-0     (-----) [001] dns4 24563.910936: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
17139          <idle>-0     (-----) [001] dns3 24563.910942: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
17140          <idle>-0     (-----) [001] dns4 24563.910964: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
17141          <idle>-0     (-----) [001] .n.1 24563.910990: cpu_idle: state=4294967295 cpu_id=1
17142          <idle>-0     (-----) [001] d..2 24563.911006: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
17143          <idle>-0     (-----) [000] ...1 24563.911033: cpu_idle: state=4294967295 cpu_id=0
17144          <idle>-0     (-----) [002] ...1 24563.911035: cpu_idle: state=4294967295 cpu_id=2
17145          <idle>-0     (-----) [003] ...1 24563.911038: cpu_idle: state=4294967295 cpu_id=3
17146          <idle>-0     (-----) [000] d..1 24563.911040: cpu_idle: state=2 cpu_id=0
17147     kworker/1:1-13091 (13091) [001] d..2 24563.911043: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
17148          <idle>-0     (-----) [002] d..1 24563.911044: cpu_idle: state=0 cpu_id=2
17149          <idle>-0     (-----) [003] d..1 24563.911044: cpu_idle: state=2 cpu_id=3
17150  kworker/u16:15-18488 (18488) [001] d..2 24563.911283: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
17151          <idle>-0     (-----) [001] d..1 24563.911302: cpu_idle: state=2 cpu_id=1
17152          <idle>-0     (-----) [003] d.s3 24563.911482: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
17153          <idle>-0     (-----) [003] d.s4 24563.911529: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
17154          <idle>-0     (-----) [003] dns4 24563.911537: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
17155          <idle>-0     (-----) [003] .n.1 24563.911549: cpu_idle: state=4294967295 cpu_id=3
17156          <idle>-0     (-----) [003] d..2 24563.911568: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
17157  kworker/u16:15-18488 (18488) [003] .... 24563.911615: clk_set_rate: l3_cluster0_vote_clk 300000000
17158  kworker/u16:15-18488 (18488) [003] .... 24563.911624: clk_set_rate: l3_clk 300000000
17159  kworker/u16:15-18488 (18488) [003] d..2 24563.911686: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17160          <idle>-0     (-----) [003] d..1 24563.911710: cpu_idle: state=0 cpu_id=3
17161          <idle>-0     (-----) [002] d..2 24563.917054: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
17162          <idle>-0     (-----) [002] dn.3 24563.917079: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
17163          <idle>-0     (-----) [002] .n.1 24563.917085: cpu_idle: state=4294967295 cpu_id=2
17164          <idle>-0     (-----) [002] d..2 24563.917109: 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
17165     ksoftirqd/2-26    (   26) [002] d..2 24563.917174: 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
17166          <idle>-0     (-----) [002] d..1 24563.917190: cpu_idle: state=2 cpu_id=2
17167          <idle>-0     (-----) [003] d..2 24563.917728: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
17168          <idle>-0     (-----) [003] dn.3 24563.917746: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
17169          <idle>-0     (-----) [003] dnH3 24563.917827: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
17170          <idle>-0     (-----) [003] dnH3 24563.917845: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
17171          <idle>-0     (-----) [003] dnH4 24563.917862: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
17172          <idle>-0     (-----) [003] .n.1 24563.917878: cpu_idle: state=4294967295 cpu_id=3
17173          <idle>-0     (-----) [003] d..2 24563.917898: 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
17174     ksoftirqd/3-34    (   34) [003] d..2 24563.917932: 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
17175          <idle>-0     (-----) [003] d..1 24563.917948: cpu_idle: state=2 cpu_id=3
17176          <idle>-0     (-----) [000] .n.1 24563.918047: cpu_idle: state=4294967295 cpu_id=0
17177          <idle>-0     (-----) [000] d..2 24563.918075: 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
17178         sugov:0-559   (  559) [000] d..2 24563.918117: 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
17179          <idle>-0     (-----) [000] d..1 24563.918137: cpu_idle: state=2 cpu_id=0
17180          <idle>-0     (-----) [004] dnh2 24563.918611: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
17181          <idle>-0     (-----) [004] .n.1 24563.918619: cpu_idle: state=4294967295 cpu_id=4
17182          <idle>-0     (-----) [004] d..2 24563.918632: 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
17183         sugov:4-560   (  560) [004] d..2 24563.918652: 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
17184          <idle>-0     (-----) [004] d..1 24563.918662: cpu_idle: state=2 cpu_id=4
17185          <idle>-0     (-----) [001] d.h3 24563.955354: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
17186          <idle>-0     (-----) [000] d..2 24563.955440: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17187          <idle>-0     (-----) [000] dn.3 24563.955518: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17188          <idle>-0     (-----) [000] .n.1 24563.955548: cpu_idle: state=4294967295 cpu_id=0
17189          <idle>-0     (-----) [001] d.h4 24563.955554: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
17190          <idle>-0     (-----) [000] d..2 24563.955638: 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
17191          <idle>-0     (-----) [003] .n.1 24563.955768: cpu_idle: state=4294967295 cpu_id=3
17192          <idle>-0     (-----) [003] d..2 24563.955822: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
17193          <idle>-0     (-----) [001] d.h3 24563.955839: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
17194  kworker/u16:15-18488 (18488) [003] d..2 24563.955842: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17195     ksoftirqd/0-3     (    3) [000] d..2 24563.955879: 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
17196          <idle>-0     (-----) [001] d.h3 24563.955890: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
17197  kworker/u16:15-18488 (18488) [003] d..3 24563.955901: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17198          <idle>-0     (-----) [000] d..2 24563.955924: 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
17199          <idle>-0     (-----) [001] dnh4 24563.955965: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
17200  kworker/u16:15-18488 (18488) [003] d..1 24563.955977: clk_disable: gcc_ufs_phy_phy_aux_hw_ctl_clk
17201          <idle>-0     (-----) [001] .n.1 24563.955977: cpu_idle: state=4294967295 cpu_id=1
17202          <idle>-0     (-----) [001] d..2 24563.956003: 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
17203  kworker/u16:15-18488 (18488) [003] d..1 24563.956009: clk_disable: gcc_ufs_phy_phy_aux_clk
17204  kworker/u16:15-18488 (18488) [003] d..1 24563.956027: clk_disable: gcc_ufs_phy_phy_aux_clk_src
17205  kworker/u16:15-18488 (18488) [003] d..1 24563.956048: clk_disable: gcc_ufs_mem_clkref_clk
17206         sugov:0-559   (  559) [001] d..2 24563.956088: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17207  kworker/u16:15-18488 (18488) [003] d..1 24563.956101: clk_disable: gcc_ufs_phy_axi_hw_ctl_clk
17208  kworker/u16:15-18488 (18488) [003] d..1 24563.956109: clk_disable: gcc_ufs_phy_axi_clk
17209          <idle>-0     (-----) [001] d..1 24563.956122: cpu_idle: state=2 cpu_id=1
17210  kworker/u16:15-18488 (18488) [003] d..1 24563.956128: clk_disable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
17211  kworker/u16:15-18488 (18488) [003] d..1 24563.956136: clk_disable: gcc_aggre_ufs_phy_axi_clk
17212  kworker/u16:15-18488 (18488) [003] d..1 24563.956146: clk_disable: gcc_ufs_phy_axi_clk_src
17213  kworker/u16:15-18488 (18488) [003] d..1 24563.956158: clk_disable: gcc_ufs_phy_ahb_clk
17214  kworker/u16:15-18488 (18488) [003] d..1 24563.956171: clk_disable: gcc_ufs_phy_unipro_core_hw_ctl_clk
17215  kworker/u16:15-18488 (18488) [003] d..1 24563.956179: clk_disable: gcc_ufs_phy_unipro_core_clk
17216  kworker/u16:15-18488 (18488) [003] d..1 24563.956189: clk_disable: gcc_ufs_phy_unipro_core_clk_src
17217  kworker/u16:15-18488 (18488) [003] d..1 24563.956206: clk_disable: gcc_ufs_phy_ice_core_hw_ctl_clk
17218  kworker/u16:15-18488 (18488) [003] d..1 24563.956213: clk_disable: gcc_ufs_phy_ice_core_clk
17219  kworker/u16:15-18488 (18488) [003] d..1 24563.956223: clk_disable: gcc_ufs_phy_ice_core_clk_src
17220          <idle>-0     (-----) [004] dnh2 24563.956670: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
17221          <idle>-0     (-----) [004] .n.1 24563.956682: cpu_idle: state=4294967295 cpu_id=4
17222          <idle>-0     (-----) [004] d..2 24563.956700: 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
17223  kworker/u16:16-25995 (25995) [000] d..2 24563.956703: 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
17224          <idle>-0     (-----) [000] d..1 24563.956726: cpu_idle: state=2 cpu_id=0
17225         sugov:4-560   (  560) [004] d..2 24563.956735: 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
17226          <idle>-0     (-----) [004] d..1 24563.956750: cpu_idle: state=2 cpu_id=4
17227  kworker/u16:15-18488 (18488) [003] d..2 24563.956997: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17228          <idle>-0     (-----) [003] d.s4 24563.957066: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
17229          <idle>-0     (-----) [003] d.s5 24563.957092: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
17230          <idle>-0     (-----) [003] dns5 24563.957111: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
17231          <idle>-0     (-----) [003] d..2 24563.957131: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
17232  kworker/u16:15-18488 (18488) [003] d..1 24563.957171: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17233  kworker/u16:15-18488 (18488) [003] d..2 24563.957230: sched_blocked_reason: pid=25995 iowait=0 caller=update_request_adhoc+0x384/0x480
17234  kworker/u16:15-18488 (18488) [003] d..2 24563.957242: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17235  kworker/u16:15-18488 (18488) [003] d..2 24563.957279: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17236  kworker/u16:16-25995 (25995) [003] d..2 24563.957502: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17237          <idle>-0     (-----) [003] d.H4 24563.957771: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
17238          <idle>-0     (-----) [003] d.H4 24563.957794: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
17239          <idle>-0     (-----) [003] d.H5 24563.957813: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
17240          <idle>-0     (-----) [003] d.s4 24563.957834: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17241          <idle>-0     (-----) [003] d.s5 24563.957849: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
17242          <idle>-0     (-----) [003] dns5 24563.957855: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17243          <idle>-0     (-----) [003] dns3 24563.957862: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
17244          <idle>-0     (-----) [003] dns4 24563.957886: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
17245          <idle>-0     (-----) [003] d..2 24563.957907: 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
17246     ksoftirqd/3-34    (   34) [003] d..2 24563.957973: 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
17247  kworker/u16:16-25995 (25995) [003] d..2 24563.958022: 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
17248          <idle>-0     (-----) [003] d..1 24563.958053: cpu_idle: state=2 cpu_id=3
17249          <idle>-0     (-----) [001] .n.1 24563.958154: cpu_idle: state=4294967295 cpu_id=1
17250          <idle>-0     (-----) [001] d..2 24563.958184: 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
17251         sugov:0-559   (  559) [001] d..2 24563.958237: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17252          <idle>-0     (-----) [001] d..1 24563.958256: cpu_idle: state=2 cpu_id=1
17253          <idle>-0     (-----) [004] dnh2 24563.958853: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
17254          <idle>-0     (-----) [004] .n.1 24563.958862: cpu_idle: state=4294967295 cpu_id=4
17255          <idle>-0     (-----) [004] d..2 24563.958875: 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
17256         sugov:4-560   (  560) [004] d..2 24563.958895: 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
17257          <idle>-0     (-----) [004] d..1 24563.958906: cpu_idle: state=2 cpu_id=4
17258          <idle>-0     (-----) [000] d.h2 24564.024616: sched_waking: comm=android.io pid=24002 prio=120 target_cpu=000
17259          <idle>-0     (-----) [000] dnh3 24564.024930: sched_wakeup: comm=android.io pid=24002 prio=120 target_cpu=000
17260          <idle>-0     (-----) [000] dnh3 24564.025459: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
17261          <idle>-0     (-----) [000] dnh3 24564.025543: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
17262          <idle>-0     (-----) [000] dnh4 24564.025627: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
17263          <idle>-0     (-----) [000] .n.1 24564.025664: cpu_idle: state=4294967295 cpu_id=0
17264          <idle>-0     (-----) [000] d..2 24564.025801: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.io next_pid=24002 next_prio=120
17265          <idle>-0     (-----) [001] .n.1 24564.026051: cpu_idle: state=4294967295 cpu_id=1
17266          <idle>-0     (-----) [001] d..2 24564.026116: 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
17267         sugov:0-559   (  559) [001] d..2 24564.026344: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17268          <idle>-0     (-----) [001] d..2 24564.026364: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
17269          <idle>-0     (-----) [001] dn.3 24564.026398: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
17270          <idle>-0     (-----) [001] d..2 24564.026414: 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
17271     ksoftirqd/1-18    (   18) [001] d.s2 24564.026497: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17272     ksoftirqd/1-18    (   18) [001] d.s3 24564.026646: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
17273     ksoftirqd/1-18    (   18) [001] d.s2 24564.026679: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
17274          <idle>-0     (-----) [004] dnh2 24564.026692: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
17275          <idle>-0     (-----) [004] .n.1 24564.026710: cpu_idle: state=4294967295 cpu_id=4
17276     ksoftirqd/1-18    (   18) [001] d.s3 24564.026712: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
17277          <idle>-0     (-----) [004] d..2 24564.026734: 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
17278     ksoftirqd/1-18    (   18) [001] d..2 24564.026773: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
17279         sugov:4-560   (  560) [004] d..2 24564.026783: 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
17280<...>-24002 ( 23968) [000] d..2 24564.026811: sched_switch: prev_comm=android.io prev_pid=24002 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17281          <idle>-0     (-----) [004] d..1 24564.026830: cpu_idle: state=2 cpu_id=4
17282          <idle>-0     (-----) [000] d..1 24564.026852: cpu_idle: state=2 cpu_id=0
17283     kworker/1:1-13091 (13091) [001] d..2 24564.026988: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17284  kworker/u16:16-25995 (25995) [001] d..2 24564.028432: 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
17285          <idle>-0     (-----) [001] d..1 24564.028461: cpu_idle: state=2 cpu_id=1
17286          <idle>-0     (-----) [003] d.s3 24564.028891: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
17287          <idle>-0     (-----) [003] d.s4 24564.028980: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
17288          <idle>-0     (-----) [003] dns4 24564.028997: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17289          <idle>-0     (-----) [003] .n.1 24564.029018: cpu_idle: state=4294967295 cpu_id=3
17290          <idle>-0     (-----) [003] d..2 24564.029059: 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
17291  kworker/u16:16-25995 (25995) [003] d..2 24564.029145: 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
17292          <idle>-0     (-----) [003] d..1 24564.029175: cpu_idle: state=2 cpu_id=3
17293          <idle>-0     (-----) [007] d.H3 24564.322852: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
17294          <idle>-0     (-----) [000] ...1 24564.322947: cpu_idle: state=4294967295 cpu_id=0
17295          <idle>-0     (-----) [007] d.H4 24564.322960: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
17296          <idle>-0     (-----) [007] d.H3 24564.322974: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
17297          <idle>-0     (-----) [000] d..1 24564.323021: cpu_idle: state=2 cpu_id=0
17298          <idle>-0     (-----) [007] d.s3 24564.323065: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17299          <idle>-0     (-----) [007] d.s3 24564.323178: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
17300          <idle>-0     (-----) [007] dns4 24564.323226: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
17301          <idle>-0     (-----) [007] dns2 24564.323312: sched_waking: comm=ksoftirqd/7 pid=66 prio=120 target_cpu=007
17302          <idle>-0     (-----) [007] dns3 24564.323326: sched_wakeup: comm=ksoftirqd/7 pid=66 prio=120 target_cpu=007
17303          <idle>-0     (-----) [007] .n.1 24564.323334: cpu_idle: state=4294967295 cpu_id=7
17304          <idle>-0     (-----) [007] d..2 24564.323395: 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
17305          <idle>-0     (-----) [001] dnh2 24564.323429: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
17306     ksoftirqd/7-66    (   66) [007] d..2 24564.323448: 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
17307          <idle>-0     (-----) [001] .n.1 24564.323456: cpu_idle: state=4294967295 cpu_id=1
17308          <idle>-0     (-----) [001] d..2 24564.323502: 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
17309          <idle>-0     (-----) [003] dnh2 24564.323586: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17310     kworker/7:0-12892 (12892) [007] d..2 24564.323610: 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
17311          <idle>-0     (-----) [003] .n.1 24564.323613: cpu_idle: state=4294967295 cpu_id=3
17312         sugov:0-559   (  559) [001] d..2 24564.323632: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17313          <idle>-0     (-----) [007] d..1 24564.323639: cpu_idle: state=2 cpu_id=7
17314          <idle>-0     (-----) [003] d..2 24564.323653: 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
17315          <idle>-0     (-----) [001] d..1 24564.323664: cpu_idle: state=2 cpu_id=1
17316          <idle>-0     (-----) [004] .n.1 24564.323671: cpu_idle: state=4294967295 cpu_id=4
17317          <idle>-0     (-----) [004] d..2 24564.323707: 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
17318         sugov:4-560   (  560) [004] d..2 24564.323750: 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
17319          <idle>-0     (-----) [004] d..1 24564.323769: cpu_idle: state=2 cpu_id=4
17320  kworker/u16:16-25995 (25995) [003] d..2 24564.324492: 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
17321          <idle>-0     (-----) [003] d..1 24564.324524: cpu_idle: state=2 cpu_id=3
17322          <idle>-0     (-----) [003] d.h2 24564.504777: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
17323          <idle>-0     (-----) [000] d..2 24564.504925: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17324          <idle>-0     (-----) [003] dnh3 24564.505032: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
17325          <idle>-0     (-----) [000] dn.3 24564.505044: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17326          <idle>-0     (-----) [000] .n.1 24564.505080: cpu_idle: state=4294967295 cpu_id=0
17327          <idle>-0     (-----) [003] dnh3 24564.505423: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
17328          <idle>-0     (-----) [000] d..2 24564.505449: 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
17329          <idle>-0     (-----) [003] dnh3 24564.505467: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
17330          <idle>-0     (-----) [003] dnh4 24564.505502: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
17331          <idle>-0     (-----) [003] .n.1 24564.505519: cpu_idle: state=4294967295 cpu_id=3
17332     ksoftirqd/0-3     (    3) [000] d.s2 24564.505550: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17333          <idle>-0     (-----) [003] d..2 24564.505560: 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
17334     ksoftirqd/0-3     (    3) [000] d.s3 24564.505804: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17335     ksoftirqd/0-3     (    3) [000] d.s2 24564.505838: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
17336     ksoftirqd/0-3     (    3) [000] d.s3 24564.505865: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
17337          <idle>-0     (-----) [001] .n.1 24564.505888: cpu_idle: state=4294967295 cpu_id=1
17338     ksoftirqd/0-3     (    3) [000] d..2 24564.505938: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
17339          <idle>-0     (-----) [001] d..2 24564.505947: 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
17340     kworker/0:1-13012 (13012) [000] d..2 24564.505992: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
17341     kworker/0:1-13012 (13012) [000] d..3 24564.506054: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
17342     kworker/0:1-13012 (13012) [000] d..2 24564.506084: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
17343         sugov:0-559   (  559) [001] d..2 24564.506107: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
17344     kworker/0:1-13012 (13012) [000] d..3 24564.506110: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
17345 bluetooth@1.0-s-24508 (  759) [003] d..2 24564.506151: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
17346     kworker/1:1-13091 (13091) [001] d..2 24564.506205: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17347     kworker/3:1-12662 (12662) [003] d..2 24564.506218: 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
17348          <idle>-0     (-----) [001] d..1 24564.506284: cpu_idle: state=2 cpu_id=1
17349          <idle>-0     (-----) [003] d..1 24564.506284: cpu_idle: state=2 cpu_id=3
17350     kworker/0:1-13012 (13012) [000] d..2 24564.506339: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17351          <idle>-0     (-----) [004] dnh2 24564.506610: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
17352          <idle>-0     (-----) [004] .n.1 24564.506628: cpu_idle: state=4294967295 cpu_id=4
17353          <idle>-0     (-----) [004] d..2 24564.506651: 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
17354         sugov:4-560   (  560) [004] d..2 24564.506697: 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
17355          <idle>-0     (-----) [004] d..1 24564.506716: cpu_idle: state=2 cpu_id=4
17356  kworker/u16:16-25995 (25995) [000] d..2 24564.507521: 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
17357          <idle>-0     (-----) [000] d..1 24564.507551: cpu_idle: state=2 cpu_id=0
17358          <idle>-0     (-----) [003] d.s3 24564.507915: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17359          <idle>-0     (-----) [003] d.s4 24564.507992: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
17360          <idle>-0     (-----) [003] dns4 24564.508009: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17361          <idle>-0     (-----) [003] .n.1 24564.508031: cpu_idle: state=4294967295 cpu_id=3
17362          <idle>-0     (-----) [003] d..2 24564.508056: 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
17363  kworker/u16:16-25995 (25995) [003] d..2 24564.508133: 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
17364          <idle>-0     (-----) [003] d..2 24564.508143: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
17365          <idle>-0     (-----) [003] dn.3 24564.508173: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
17366          <idle>-0     (-----) [003] d..2 24564.508193: 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
17367     ksoftirqd/3-34    (   34) [003] d..2 24564.508253: 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
17368          <idle>-0     (-----) [003] d..1 24564.508271: cpu_idle: state=2 cpu_id=3
17369          <idle>-0     (-----) [000] d.h2 24564.679383: sched_waking: comm=PowerManagerSer pid=24006 prio=116 target_cpu=000
17370          <idle>-0     (-----) [000] dnh3 24564.679709: sched_wakeup: comm=PowerManagerSer pid=24006 prio=116 target_cpu=000
17371          <idle>-0     (-----) [000] dnh3 24564.680268: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
17372          <idle>-0     (-----) [000] dnh3 24564.680351: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
17373          <idle>-0     (-----) [000] dnh4 24564.680412: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
17374          <idle>-0     (-----) [000] .n.1 24564.680448: cpu_idle: state=4294967295 cpu_id=0
17375          <idle>-0     (-----) [000] d..2 24564.680603: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=24006 next_prio=116
17376          <idle>-0     (-----) [001] .n.1 24564.680817: cpu_idle: state=4294967295 cpu_id=1
17377          <idle>-0     (-----) [001] d..2 24564.680888: 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
17378 PowerManagerSer-24006 (23968) [000] d.s2 24564.681087: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17379 PowerManagerSer-24006 (23968) [000] d.s3 24564.681253: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
17380         sugov:0-559   (  559) [001] d..2 24564.681293: 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
17381 PowerManagerSer-24006 (23968) [000] d.s2 24564.681296: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
17382 PowerManagerSer-24006 (23968) [000] d.s3 24564.681332: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
17383          <idle>-0     (-----) [004] dnh2 24564.681509: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
17384          <idle>-0     (-----) [004] .n.1 24564.681527: cpu_idle: state=4294967295 cpu_id=4
17385          <idle>-0     (-----) [004] d..2 24564.681553: 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
17386         sugov:4-560   (  560) [004] d..2 24564.681617: 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
17387          <idle>-0     (-----) [004] d..1 24564.681667: cpu_idle: state=2 cpu_id=4
17388 PowerManagerSer-24006 (23968) [000] d..2 24564.681919: sched_switch: prev_comm=PowerManagerSer prev_pid=24006 prev_prio=116 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
17389  kworker/u16:16-25995 (25995) [001] d..2 24564.682049: 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
17390          <idle>-0     (-----) [001] d..1 24564.682088: cpu_idle: state=2 cpu_id=1
17391     kworker/0:1-13012 (13012) [000] d..2 24564.682142: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17392          <idle>-0     (-----) [000] d..1 24564.682183: cpu_idle: state=2 cpu_id=0
17393          <idle>-0     (-----) [000] ...1 24564.749244: cpu_idle: state=4294967295 cpu_id=0
17394          <idle>-0     (-----) [000] d..1 24564.749342: cpu_idle: state=2 cpu_id=0
17395          <idle>-0     (-----) [002] d.H3 24564.749561: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
17396          <idle>-0     (-----) [002] d.H3 24564.749690: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
17397          <idle>-0     (-----) [002] d.H4 24564.749776: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
17398          <idle>-0     (-----) [002] d.s3 24564.749837: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
17399          <idle>-0     (-----) [002] dns4 24564.749924: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
17400          <idle>-0     (-----) [002] dns3 24564.749959: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
17401          <idle>-0     (-----) [002] dns4 24564.750059: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
17402          <idle>-0     (-----) [001] .n.1 24564.750147: cpu_idle: state=4294967295 cpu_id=1
17403          <idle>-0     (-----) [002] .n.1 24564.750220: cpu_idle: state=4294967295 cpu_id=2
17404          <idle>-0     (-----) [001] d..2 24564.750254: 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
17405          <idle>-0     (-----) [002] d..2 24564.750275: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
17406         sugov:0-559   (  559) [001] d..2 24564.750355: 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
17407     kworker/2:0-12895 (12895) [002] d..2 24564.750439: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17408          <idle>-0     (-----) [002] d..1 24564.750476: cpu_idle: state=2 cpu_id=2
17409          <idle>-0     (-----) [004] dnh2 24564.750822: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
17410          <idle>-0     (-----) [004] .n.1 24564.750838: cpu_idle: state=4294967295 cpu_id=4
17411          <idle>-0     (-----) [004] d..2 24564.750861: 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
17412         sugov:4-560   (  560) [004] d..2 24564.750906: 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
17413          <idle>-0     (-----) [004] d..1 24564.750972: cpu_idle: state=2 cpu_id=4
17414  kworker/u16:16-25995 (25995) [001] d..2 24564.751149: 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
17415          <idle>-0     (-----) [001] d..1 24564.751185: cpu_idle: state=2 cpu_id=1
17416          <idle>-0     (-----) [000] ...1 24564.775997: cpu_idle: state=4294967295 cpu_id=0
17417          <idle>-0     (-----) [000] d..1 24564.776095: cpu_idle: state=2 cpu_id=0
17418          <idle>-0     (-----) [001] d.H3 24564.776316: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
17419          <idle>-0     (-----) [001] d.H3 24564.776487: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
17420          <idle>-0     (-----) [001] dnH4 24564.776572: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
17421          <idle>-0     (-----) [001] dns3 24564.776639: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
17422          <idle>-0     (-----) [001] dns4 24564.776743: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
17423          <idle>-0     (-----) [001] dns3 24564.776793: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
17424          <idle>-0     (-----) [001] dns4 24564.776917: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
17425          <idle>-0     (-----) [001] .n.1 24564.777079: cpu_idle: state=4294967295 cpu_id=1
17426          <idle>-0     (-----) [001] d..2 24564.777163: 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
17427         sugov:0-559   (  559) [001] d..2 24564.777260: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
17428     kworker/1:1-13091 (13091) [001] d..2 24564.777590: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17429          <idle>-0     (-----) [005] dnh2 24564.777627: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
17430          <idle>-0     (-----) [005] .n.1 24564.777649: cpu_idle: state=4294967295 cpu_id=5
17431          <idle>-0     (-----) [005] d..2 24564.777684: 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
17432  kworker/u16:16-25995 (25995) [001] d.H4 24564.777770: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
17433         sugov:4-560   (  560) [005] d..2 24564.777818: 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
17434  kworker/u16:16-25995 (25995) [001] d.H4 24564.777838: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
17435          <idle>-0     (-----) [005] d..1 24564.777848: cpu_idle: state=2 cpu_id=5
17436  kworker/u16:16-25995 (25995) [001] d.H5 24564.777878: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
17437          <idle>-0     (-----) [003] .n.1 24564.778278: cpu_idle: state=4294967295 cpu_id=3
17438          <idle>-0     (-----) [003] d..2 24564.778334: 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
17439  kworker/u16:16-25995 (25995) [001] d..2 24564.778396: 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
17440         sugov:0-559   (  559) [003] d..2 24564.778398: 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
17441          <idle>-0     (-----) [003] d..1 24564.778433: cpu_idle: state=2 cpu_id=3
17442          <idle>-0     (-----) [001] d..1 24564.778437: cpu_idle: state=2 cpu_id=1
17443          <idle>-0     (-----) [000] d.h3 24564.778639: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
17444          <idle>-0     (-----) [000] dnh4 24564.778685: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
17445          <idle>-0     (-----) [000] .n.1 24564.778725: cpu_idle: state=4294967295 cpu_id=0
17446          <idle>-0     (-----) [000] d..2 24564.778762: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
17447     kworker/0:1-13012 (13012) [000] d..2 24564.778795: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
17448     kworker/0:1-13012 (13012) [000] d..3 24564.778817: sched_blocked_reason: pid=13091 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
17449     kworker/0:1-13012 (13012) [000] d..3 24564.778836: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
17450     kworker/0:1-13012 (13012) [000] d..2 24564.778887: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17451          <idle>-0     (-----) [000] d..1 24564.778912: cpu_idle: state=2 cpu_id=0
17452          <idle>-0     (-----) [001] .n.1 24564.779172: cpu_idle: state=4294967295 cpu_id=1
17453          <idle>-0     (-----) [001] d..2 24564.779202: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
17454          <idle>-0     (-----) [005] dnh2 24564.779299: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
17455          <idle>-0     (-----) [005] .n.1 24564.779310: cpu_idle: state=4294967295 cpu_id=5
17456          <idle>-0     (-----) [005] d..2 24564.779324: 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
17457         sugov:4-560   (  560) [005] d..2 24564.779345: 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
17458          <idle>-0     (-----) [005] d..1 24564.779354: cpu_idle: state=2 cpu_id=5
17459     kworker/1:1-13091 (13091) [001] d..2 24564.779398: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17460          <idle>-0     (-----) [001] d..1 24564.779423: cpu_idle: state=2 cpu_id=1
17461          <idle>-0     (-----) [000] d.h2 24564.810448: sched_waking: comm=oid.setupwizard pid=24795 prio=120 target_cpu=000
17462          <idle>-0     (-----) [000] dnh3 24564.810801: sched_wakeup: comm=oid.setupwizard pid=24795 prio=120 target_cpu=000
17463          <idle>-0     (-----) [000] dnh3 24564.811345: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
17464          <idle>-0     (-----) [000] dnh3 24564.811443: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
17465          <idle>-0     (-----) [000] dnh4 24564.811514: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
17466          <idle>-0     (-----) [000] .n.1 24564.811553: cpu_idle: state=4294967295 cpu_id=0
17467          <idle>-0     (-----) [000] d..2 24564.811713: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=oid.setupwizard next_pid=24795 next_prio=120
17468          <idle>-0     (-----) [003] .n.1 24564.811926: cpu_idle: state=4294967295 cpu_id=3
17469          <idle>-0     (-----) [003] d..2 24564.811991: 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
17470         sugov:0-559   (  559) [003] d..2 24564.812211: 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
17471          <idle>-0     (-----) [003] d..2 24564.812238: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
17472          <idle>-0     (-----) [003] dn.3 24564.812272: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
17473          <idle>-0     (-----) [003] d..2 24564.812289: 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
17474     ksoftirqd/3-34    (   34) [003] d.s2 24564.812373: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
17475     ksoftirqd/3-34    (   34) [003] d.s3 24564.812415: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
17476     ksoftirqd/3-34    (   34) [003] d.s2 24564.812439: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
17477 oid.setupwizard-24795 (24795) [000] d..2 24564.812473: sched_switch: prev_comm=oid.setupwizard prev_pid=24795 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17478          <idle>-0     (-----) [000] d..2 24564.812488: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17479          <idle>-0     (-----) [000] dn.3 24564.812517: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17480          <idle>-0     (-----) [000] d..2 24564.812534: 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
17481          <idle>-0     (-----) [005] dnh2 24564.812581: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
17482     ksoftirqd/3-34    (   34) [003] d.s3 24564.812585: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17483          <idle>-0     (-----) [005] .n.1 24564.812603: cpu_idle: state=4294967295 cpu_id=5
17484     ksoftirqd/0-3     (    3) [000] d.s2 24564.812616: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
17485          <idle>-0     (-----) [005] d..2 24564.812628: 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
17486     ksoftirqd/3-34    (   34) [003] d..2 24564.812635: 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
17487     ksoftirqd/0-3     (    3) [000] d.s3 24564.812652: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
17488         sugov:4-560   (  560) [005] d..2 24564.812673: 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
17489     ksoftirqd/0-3     (    3) [000] d..2 24564.812675: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
17490          <idle>-0     (-----) [005] d..1 24564.812723: cpu_idle: state=2 cpu_id=5
17491     kworker/0:1-13012 (13012) [000] d..2 24564.812762: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17492     kworker/3:1-12662 (12662) [003] d..2 24564.812819: 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
17493          <idle>-0     (-----) [003] d..1 24564.812855: cpu_idle: state=2 cpu_id=3
17494  kworker/u16:16-25995 (25995) [000] d..2 24564.813456: 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
17495          <idle>-0     (-----) [000] d..1 24564.813485: cpu_idle: state=2 cpu_id=0
17496          <idle>-0     (-----) [000] d..2 24565.024860: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17497          <idle>-0     (-----) [000] dn.3 24565.025052: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17498          <idle>-0     (-----) [000] dnH3 24565.025595: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
17499          <idle>-0     (-----) [000] dnH3 24565.025694: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
17500          <idle>-0     (-----) [000] dnH4 24565.025784: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
17501          <idle>-0     (-----) [000] dns3 24565.025866: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17502          <idle>-0     (-----) [000] dns4 24565.025969: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17503          <idle>-0     (-----) [000] dns3 24565.026013: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
17504          <idle>-0     (-----) [000] dns4 24565.026043: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
17505          <idle>-0     (-----) [000] .n.1 24565.026089: cpu_idle: state=4294967295 cpu_id=0
17506          <idle>-0     (-----) [003] .n.1 24565.026196: cpu_idle: state=4294967295 cpu_id=3
17507          <idle>-0     (-----) [000] d..2 24565.026228: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
17508          <idle>-0     (-----) [003] d..2 24565.026260: 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
17509     kworker/0:1-13012 (13012) [000] d..2 24565.026496: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
17510         sugov:0-559   (  559) [003] d..2 24565.026504: 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
17511     ksoftirqd/0-3     (    3) [000] d..2 24565.026544: 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
17512          <idle>-0     (-----) [003] d..1 24565.026590: cpu_idle: state=2 cpu_id=3
17513          <idle>-0     (-----) [005] dnh2 24565.026831: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
17514          <idle>-0     (-----) [005] .n.1 24565.026850: cpu_idle: state=4294967295 cpu_id=5
17515          <idle>-0     (-----) [005] d..2 24565.026874: 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
17516         sugov:4-560   (  560) [005] d..2 24565.026927: 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
17517          <idle>-0     (-----) [005] d..1 24565.026949: cpu_idle: state=2 cpu_id=5
17518  kworker/u16:16-25995 (25995) [000] d..2 24565.027229: 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
17519          <idle>-0     (-----) [000] d..1 24565.027260: cpu_idle: state=2 cpu_id=0
17520          <idle>-0     (-----) [000] ...1 24565.175998: cpu_idle: state=4294967295 cpu_id=0
17521          <idle>-0     (-----) [000] d..1 24565.176100: cpu_idle: state=2 cpu_id=0
17522          <idle>-0     (-----) [002] d.H3 24565.176292: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
17523          <idle>-0     (-----) [002] d.H3 24565.176420: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
17524          <idle>-0     (-----) [002] d.H4 24565.176509: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
17525          <idle>-0     (-----) [002] d.s3 24565.176558: sched_waking: comm=msm_watchdog pid=77 prio=0 target_cpu=002
17526          <idle>-0     (-----) [002] dns4 24565.176586: sched_wakeup: comm=msm_watchdog pid=77 prio=0 target_cpu=002
17527          <idle>-0     (-----) [002] dns3 24565.176632: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17528          <idle>-0     (-----) [002] dns4 24565.176883: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
17529          <idle>-0     (-----) [003] .n.1 24565.176898: cpu_idle: state=4294967295 cpu_id=3
17530          <idle>-0     (-----) [002] dns3 24565.176925: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
17531          <idle>-0     (-----) [002] dns4 24565.176963: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
17532          <idle>-0     (-----) [003] d..2 24565.177006: 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
17533          <idle>-0     (-----) [002] .n.1 24565.177100: cpu_idle: state=4294967295 cpu_id=2
17534          <idle>-0     (-----) [002] d..2 24565.177133: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=msm_watchdog next_pid=77 next_prio=0
17535         sugov:0-559   (  559) [003] d..2 24565.177227: 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
17536          <idle>-0     (-----) [003] d..1 24565.177293: cpu_idle: state=2 cpu_id=3
17537<...>-77 ( 77) [002] d..2 24565.177313: sched_switch: prev_comm=msm_watchdog prev_pid=77 prev_prio=0 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
17538     kworker/2:0-12895 (12895) [002] d..2 24565.177538: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17539          <idle>-0     (-----) [005] dnh2 24565.177576: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
17540          <idle>-0     (-----) [005] dnh3 24565.177672: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
17541          <idle>-0     (-----) [005] .n.1 24565.177695: cpu_idle: state=4294967295 cpu_id=5
17542          <idle>-0     (-----) [005] d..2 24565.177721: 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
17543         sugov:4-560   (  560) [005] d..2 24565.177778: 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
17544          <idle>-0     (-----) [005] d..1 24565.177808: cpu_idle: state=2 cpu_id=5
17545          <idle>-0     (-----) [003] dnh2 24565.178031: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
17546          <idle>-0     (-----) [003] .n.1 24565.178045: cpu_idle: state=4294967295 cpu_id=3
17547          <idle>-0     (-----) [003] d..2 24565.178065: 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
17548         sugov:0-559   (  559) [003] d..2 24565.178107: 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
17549          <idle>-0     (-----) [003] d..1 24565.178126: cpu_idle: state=2 cpu_id=3
17550          <idle>-0     (-----) [005] ...1 24565.179178: cpu_idle: state=4294967295 cpu_id=5
17551          <idle>-0     (-----) [005] d..1 24565.179185: cpu_idle: state=2 cpu_id=5
17552  kworker/u16:16-25995 (25995) [002] d..2 24565.179781: 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
17553          <idle>-0     (-----) [002] d..1 24565.179817: cpu_idle: state=2 cpu_id=2
17554          <idle>-0     (-----) [003] d.h2 24565.507400: sched_waking: comm=CCodecWatchdog pid=25015 prio=120 target_cpu=003
17555          <idle>-0     (-----) [000] d..2 24565.507540: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17556          <idle>-0     (-----) [003] dnh3 24565.507677: sched_wakeup: comm=CCodecWatchdog pid=25015 prio=120 target_cpu=003
17557          <idle>-0     (-----) [000] dn.3 24565.507677: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17558          <idle>-0     (-----) [003] dnh2 24565.507701: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
17559          <idle>-0     (-----) [000] dnh2 24565.507733: sched_waking: comm=CCodecWatchdog pid=24367 prio=120 target_cpu=000
17560          <idle>-0     (-----) [003] dnh3 24565.507850: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=001
17561          <idle>-0     (-----) [000] dnh3 24565.507869: sched_wakeup: comm=CCodecWatchdog pid=24367 prio=120 target_cpu=001
17562          <idle>-0     (-----) [000] dns3 24565.507951: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
17563          <idle>-0     (-----) [003] dnh3 24565.508233: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
17564          <idle>-0     (-----) [000] dns4 24565.508252: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17565          <idle>-0     (-----) [001] .n.1 24565.508255: cpu_idle: state=4294967295 cpu_id=1
17566          <idle>-0     (-----) [003] dnh3 24565.508272: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
17567          <idle>-0     (-----) [000] dns3 24565.508295: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
17568          <idle>-0     (-----) [003] dnh4 24565.508316: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
17569          <idle>-0     (-----) [000] dns4 24565.508325: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
17570          <idle>-0     (-----) [003] .n.1 24565.508332: cpu_idle: state=4294967295 cpu_id=3
17571          <idle>-0     (-----) [000] dns3 24565.508356: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
17572          <idle>-0     (-----) [001] d..2 24565.508402: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=bluetooth@1.0-s next_pid=24508 next_prio=98
17573          <idle>-0     (-----) [003] d..2 24565.508406: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=25015 next_prio=120
17574          <idle>-0     (-----) [000] dns4 24565.508448: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
17575          <idle>-0     (-----) [000] dns3 24565.508471: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
17576          <idle>-0     (-----) [000] dns4 24565.508502: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
17577          <idle>-0     (-----) [000] .n.1 24565.508525: cpu_idle: state=4294967295 cpu_id=0
17578          <idle>-0     (-----) [000] d..2 24565.508572: 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
17579     ksoftirqd/0-3     (    3) [000] d..2 24565.508625: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
17580          <idle>-0     (-----) [002] .n.1 24565.508697: cpu_idle: state=4294967295 cpu_id=2
17581 bluetooth@1.0-s-24508 (  759) [001] d..2 24565.508712: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=CCodecWatchdog next_pid=24367 next_prio=120
17582          <idle>-0     (-----) [002] d..2 24565.508750: 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
17583  CCodecWatchdog-25015 (24655) [003] d..2 24565.508832: sched_switch: prev_comm=CCodecWatchdog prev_pid=25015 prev_prio=120 prev_state=S ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
17584     kworker/3:1-12662 (12662) [003] d..2 24565.508883: 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
17585  CCodecWatchdog-24367 (24151) [001] d..2 24565.508924: sched_switch: prev_comm=CCodecWatchdog prev_pid=24367 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
17586         sugov:0-559   (  559) [002] d..2 24565.508944: 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
17587     kworker/0:1-13012 (13012) [000] d..2 24565.508946: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17588     kworker/1:1-13091 (13091) [001] d..2 24565.509000: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17589          <idle>-0     (-----) [002] d..1 24565.509016: cpu_idle: state=2 cpu_id=2
17590          <idle>-0     (-----) [000] d..1 24565.509024: cpu_idle: state=2 cpu_id=0
17591          <idle>-0     (-----) [001] d..1 24565.509032: cpu_idle: state=2 cpu_id=1
17592          <idle>-0     (-----) [005] dnh2 24565.509524: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
17593          <idle>-0     (-----) [005] .n.1 24565.509543: cpu_idle: state=4294967295 cpu_id=5
17594          <idle>-0     (-----) [005] d..2 24565.509566: 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
17595         sugov:4-560   (  560) [005] d..2 24565.509608: 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
17596          <idle>-0     (-----) [005] d..1 24565.509632: cpu_idle: state=2 cpu_id=5
17597          <idle>-0     (-----) [000] ...1 24565.509881: cpu_idle: state=4294967295 cpu_id=0
17598          <idle>-0     (-----) [000] d..1 24565.509893: cpu_idle: state=2 cpu_id=0
17599  kworker/u16:16-25995 (25995) [003] d..2 24565.510450: 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
17600          <idle>-0     (-----) [003] d..1 24565.510483: cpu_idle: state=2 cpu_id=3
17601          <idle>-0     (-----) [000] ...1 24565.789333: cpu_idle: state=4294967295 cpu_id=0
17602          <idle>-0     (-----) [000] d..1 24565.789437: cpu_idle: state=2 cpu_id=0
17603          <idle>-0     (-----) [001] d.H3 24565.789646: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
17604          <idle>-0     (-----) [001] d.H3 24565.789818: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
17605          <idle>-0     (-----) [001] d.H4 24565.789912: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
17606          <idle>-0     (-----) [001] d.s3 24565.789974: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
17607          <idle>-0     (-----) [001] dns4 24565.790064: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
17608          <idle>-0     (-----) [001] dns3 24565.790095: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17609          <idle>-0     (-----) [001] dns4 24565.790195: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
17610          <idle>-0     (-----) [002] .n.1 24565.790293: cpu_idle: state=4294967295 cpu_id=2
17611          <idle>-0     (-----) [001] .n.1 24565.790366: cpu_idle: state=4294967295 cpu_id=1
17612          <idle>-0     (-----) [002] d..2 24565.790405: 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
17613          <idle>-0     (-----) [001] d..2 24565.790423: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
17614         sugov:0-559   (  559) [002] d..2 24565.790625: 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
17615          <idle>-0     (-----) [002] d..1 24565.790660: cpu_idle: state=2 cpu_id=2
17616     kworker/1:1-13091 (13091) [001] d..3 24565.790738: sched_waking: comm=kworker/1:0 pid=13068 prio=120 target_cpu=001
17617     kworker/1:1-13091 (13091) [001] d..3 24565.790778: sched_wakeup: comm=kworker/1:0 pid=13068 prio=120 target_cpu=001
17618     kworker/1:1-13091 (13091) [001] d..2 24565.790795: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=D ==> next_comm=kworker/1:0 next_pid=13068 next_prio=120
17619          <idle>-0     (-----) [006] dnh2 24565.790958: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
17620          <idle>-0     (-----) [006] .n.1 24565.790980: cpu_idle: state=4294967295 cpu_id=6
17621          <idle>-0     (-----) [006] d..2 24565.791004: 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
17622         sugov:4-560   (  560) [006] d..2 24565.791056: 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
17623          <idle>-0     (-----) [006] d..1 24565.791080: cpu_idle: state=2 cpu_id=6
17624<...>-13068 ( 13068) [001] d..2 24565.791083: sched_switch: prev_comm=kworker/1:0 prev_pid=13068 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17625  kworker/u16:16-25995 (25995) [001] d..2 24565.791759: 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
17626          <idle>-0     (-----) [000] d.h3 24565.791765: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
17627          <idle>-0     (-----) [001] d..1 24565.791793: cpu_idle: state=2 cpu_id=1
17628          <idle>-0     (-----) [000] dnh4 24565.791809: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
17629          <idle>-0     (-----) [000] .n.1 24565.791849: cpu_idle: state=4294967295 cpu_id=0
17630          <idle>-0     (-----) [000] d..2 24565.791883: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
17631     kworker/0:1-13012 (13012) [000] d..2 24565.791912: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
17632     kworker/0:1-13012 (13012) [000] d..3 24565.791934: sched_blocked_reason: pid=13091 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
17633     kworker/0:1-13012 (13012) [000] d..3 24565.791953: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
17634     kworker/0:1-13012 (13012) [000] d..2 24565.792009: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17635          <idle>-0     (-----) [000] d..1 24565.792028: cpu_idle: state=2 cpu_id=0
17636          <idle>-0     (-----) [001] .n.1 24565.792277: cpu_idle: state=4294967295 cpu_id=1
17637          <idle>-0     (-----) [001] d..2 24565.792307: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
17638     kworker/1:1-13091 (13091) [001] d..2 24565.792510: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17639          <idle>-0     (-----) [001] d..1 24565.792528: cpu_idle: state=2 cpu_id=1
17640          <idle>-0     (-----) [000] d..2 24566.024849: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17641          <idle>-0     (-----) [000] dn.3 24566.025045: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17642          <idle>-0     (-----) [000] dnH3 24566.025586: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
17643          <idle>-0     (-----) [000] dnH3 24566.025679: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
17644          <idle>-0     (-----) [000] dnH4 24566.025777: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
17645          <idle>-0     (-----) [000] dns3 24566.025859: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
17646          <idle>-0     (-----) [000] dns4 24566.026060: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
17647          <idle>-0     (-----) [000] dns3 24566.026105: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
17648          <idle>-0     (-----) [000] dns4 24566.026136: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
17649          <idle>-0     (-----) [000] .n.1 24566.026183: cpu_idle: state=4294967295 cpu_id=0
17650          <idle>-0     (-----) [002] .n.1 24566.026187: cpu_idle: state=4294967295 cpu_id=2
17651          <idle>-0     (-----) [002] d..2 24566.026308: 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
17652          <idle>-0     (-----) [000] d..2 24566.026310: 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
17653     ksoftirqd/0-3     (    3) [000] d..2 24566.026375: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
17654         sugov:0-559   (  559) [002] d..2 24566.026405: 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
17655     kworker/0:1-13012 (13012) [000] d..2 24566.026776: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17656          <idle>-0     (-----) [006] dnh2 24566.026828: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
17657          <idle>-0     (-----) [006] .n.1 24566.026849: cpu_idle: state=4294967295 cpu_id=6
17658          <idle>-0     (-----) [006] d..2 24566.026880: 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
17659          <idle>-0     (-----) [000] d..1 24566.026883: cpu_idle: state=2 cpu_id=0
17660         sugov:4-560   (  560) [006] d..2 24566.026930: 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
17661          <idle>-0     (-----) [006] d..1 24566.026954: cpu_idle: state=2 cpu_id=6
17662  kworker/u16:16-25995 (25995) [002] d..2 24566.027293: 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
17663          <idle>-0     (-----) [002] d..1 24566.027323: cpu_idle: state=2 cpu_id=2
17664          <idle>-0     (-----) [001] d.h2 24566.293875: sched_waking: comm=CCodecWatchdog pid=24186 prio=120 target_cpu=001
17665          <idle>-0     (-----) [000] d..2 24566.294018: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17666          <idle>-0     (-----) [000] dn.3 24566.294154: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17667          <idle>-0     (-----) [001] d.h3 24566.294205: sched_wakeup: comm=CCodecWatchdog pid=24186 prio=120 target_cpu=000
17668          <idle>-0     (-----) [000] dnh2 24566.294233: sched_waking: comm=CCodecWatchdog pid=23520 prio=120 target_cpu=000
17669          <idle>-0     (-----) [000] dnh3 24566.294299: sched_wakeup: comm=CCodecWatchdog pid=23520 prio=120 target_cpu=001
17670          <idle>-0     (-----) [000] dns3 24566.294373: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
17671          <idle>-0     (-----) [001] dnh3 24566.294659: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
17672          <idle>-0     (-----) [000] dns4 24566.294681: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
17673          <idle>-0     (-----) [000] dns3 24566.294723: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
17674          <idle>-0     (-----) [001] dnh3 24566.294730: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
17675          <idle>-0     (-----) [000] dns4 24566.294756: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
17676          <idle>-0     (-----) [001] dnh4 24566.294789: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
17677          <idle>-0     (-----) [000] .n.1 24566.294804: cpu_idle: state=4294967295 cpu_id=0
17678          <idle>-0     (-----) [001] .n.1 24566.294805: cpu_idle: state=4294967295 cpu_id=1
17679          <idle>-0     (-----) [001] d..2 24566.294925: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=23520 next_prio=120
17680          <idle>-0     (-----) [000] d..2 24566.294926: 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
17681     ksoftirqd/0-3     (    3) [000] d..2 24566.294992: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=CCodecWatchdog next_pid=24186 next_prio=120
17682          <idle>-0     (-----) [002] .n.1 24566.295170: cpu_idle: state=4294967295 cpu_id=2
17683          <idle>-0     (-----) [002] d..2 24566.295226: 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
17684  CCodecWatchdog-23520 (  884) [001] d..2 24566.295304: sched_switch: prev_comm=CCodecWatchdog prev_pid=23520 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17685  CCodecWatchdog-24186 (23968) [000] d..2 24566.295379: sched_switch: prev_comm=CCodecWatchdog prev_pid=24186 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
17686         sugov:0-559   (  559) [002] d..2 24566.295429: 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
17687          <idle>-0     (-----) [002] d..1 24566.295497: cpu_idle: state=2 cpu_id=2
17688     kworker/0:1-13012 (13012) [000] d..2 24566.295607: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17689          <idle>-0     (-----) [000] d..1 24566.295686: cpu_idle: state=2 cpu_id=0
17690          <idle>-0     (-----) [006] dnh2 24566.295911: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
17691          <idle>-0     (-----) [006] .n.1 24566.295933: cpu_idle: state=4294967295 cpu_id=6
17692          <idle>-0     (-----) [006] d..2 24566.295953: 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
17693         sugov:4-560   (  560) [006] d..2 24566.295999: 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
17694          <idle>-0     (-----) [006] d..1 24566.296020: cpu_idle: state=2 cpu_id=6
17695          <idle>-0     (-----) [000] ...1 24566.296250: cpu_idle: state=4294967295 cpu_id=0
17696          <idle>-0     (-----) [000] d..1 24566.296262: cpu_idle: state=2 cpu_id=0
17697  kworker/u16:16-25995 (25995) [001] d..2 24566.296599: 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
17698          <idle>-0     (-----) [001] d..1 24566.296629: cpu_idle: state=2 cpu_id=1
17699          <idle>-0     (-----) [001] d.h2 24566.513503: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=001
17700          <idle>-0     (-----) [000] d..2 24566.513648: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17701          <idle>-0     (-----) [001] dnh3 24566.513755: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=001
17702          <idle>-0     (-----) [000] dn.3 24566.513766: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17703          <idle>-0     (-----) [000] .n.1 24566.513802: cpu_idle: state=4294967295 cpu_id=0
17704          <idle>-0     (-----) [001] dnh3 24566.514167: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
17705          <idle>-0     (-----) [000] d..2 24566.514194: 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
17706          <idle>-0     (-----) [001] dnh3 24566.514212: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
17707          <idle>-0     (-----) [001] dnh4 24566.514253: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
17708          <idle>-0     (-----) [001] .n.1 24566.514270: cpu_idle: state=4294967295 cpu_id=1
17709          <idle>-0     (-----) [001] d..2 24566.514320: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=bluetooth@1.0-s next_pid=24508 next_prio=98
17710     ksoftirqd/0-3     (    3) [000] d.s4 24566.514439: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
17711          <idle>-0     (-----) [002] .n.1 24566.514646: cpu_idle: state=4294967295 cpu_id=2
17712     ksoftirqd/0-3     (    3) [000] d.s5 24566.514649: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17713     ksoftirqd/0-3     (    3) [000] d.s4 24566.514682: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
17714          <idle>-0     (-----) [002] d..2 24566.514704: 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
17715     ksoftirqd/0-3     (    3) [000] d.s5 24566.514712: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
17716     ksoftirqd/0-3     (    3) [000] d..2 24566.514853: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
17717 bluetooth@1.0-s-24508 (  759) [001] d..2 24566.514874: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17718         sugov:0-559   (  559) [002] d..2 24566.514875: 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
17719          <idle>-0     (-----) [001] d..1 24566.514954: cpu_idle: state=2 cpu_id=1
17720          <idle>-0     (-----) [002] d..1 24566.514955: cpu_idle: state=2 cpu_id=2
17721     kworker/0:1-13012 (13012) [000] d..2 24566.515126: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17722          <idle>-0     (-----) [006] dnh2 24566.515407: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
17723          <idle>-0     (-----) [006] .n.1 24566.515427: cpu_idle: state=4294967295 cpu_id=6
17724          <idle>-0     (-----) [006] d..2 24566.515451: 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
17725         sugov:4-560   (  560) [006] d..2 24566.515509: 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
17726          <idle>-0     (-----) [006] d..1 24566.515541: cpu_idle: state=2 cpu_id=6
17727          <idle>-0     (-----) [006] ...1 24566.516895: cpu_idle: state=4294967295 cpu_id=6
17728          <idle>-0     (-----) [006] d..1 24566.516903: cpu_idle: state=2 cpu_id=6
17729  kworker/u16:16-25995 (25995) [000] d..2 24566.517205: 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
17730          <idle>-0     (-----) [000] d..1 24566.517236: cpu_idle: state=2 cpu_id=0
17731          <idle>-0     (-----) [000] d.h2 24566.688719: sched_waking: comm=PowerManagerSer pid=24006 prio=116 target_cpu=000
17732          <idle>-0     (-----) [000] dnh3 24566.689051: sched_wakeup: comm=PowerManagerSer pid=24006 prio=116 target_cpu=000
17733          <idle>-0     (-----) [000] dnh3 24566.689630: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
17734          <idle>-0     (-----) [000] dnh3 24566.689719: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
17735          <idle>-0     (-----) [000] dnh4 24566.689792: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
17736          <idle>-0     (-----) [000] .n.1 24566.689833: cpu_idle: state=4294967295 cpu_id=0
17737          <idle>-0     (-----) [000] d..2 24566.689991: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=24006 next_prio=116
17738          <idle>-0     (-----) [002] .n.1 24566.690195: cpu_idle: state=4294967295 cpu_id=2
17739          <idle>-0     (-----) [002] d..2 24566.690264: 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
17740         sugov:0-559   (  559) [002] d..2 24566.690490: 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
17741          <idle>-0     (-----) [002] d..2 24566.690512: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
17742          <idle>-0     (-----) [002] dn.3 24566.690545: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
17743          <idle>-0     (-----) [002] d..2 24566.690562: 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
17744     ksoftirqd/2-26    (   26) [002] d.s2 24566.690646: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17745     ksoftirqd/2-26    (   26) [002] d.s3 24566.690810: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
17746     ksoftirqd/2-26    (   26) [002] d.s2 24566.690855: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
17747 PowerManagerSer-24006 (23968) [000] d..2 24566.690867: sched_switch: prev_comm=PowerManagerSer prev_pid=24006 prev_prio=116 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17748          <idle>-0     (-----) [006] dnh2 24566.690873: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
17749          <idle>-0     (-----) [000] d..2 24566.690878: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17750     ksoftirqd/2-26    (   26) [002] d.s3 24566.690887: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
17751          <idle>-0     (-----) [006] .n.1 24566.690896: cpu_idle: state=4294967295 cpu_id=6
17752          <idle>-0     (-----) [000] dn.3 24566.690909: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17753          <idle>-0     (-----) [006] d..2 24566.690922: 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
17754         sugov:4-560   (  560) [006] d..2 24566.690998: 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
17755          <idle>-0     (-----) [006] d..1 24566.691047: cpu_idle: state=2 cpu_id=6
17756          <idle>-0     (-----) [000] d..2 24566.691067: 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
17757     ksoftirqd/2-26    (   26) [002] d..2 24566.691070: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
17758     ksoftirqd/0-3     (    3) [000] d..2 24566.691117: 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
17759          <idle>-0     (-----) [000] d..1 24566.691153: cpu_idle: state=2 cpu_id=0
17760     kworker/2:0-12895 (12895) [002] d..2 24566.691288: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17761  kworker/u16:16-25995 (25995) [002] d..2 24566.692007: 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
17762          <idle>-0     (-----) [002] d..1 24566.692038: cpu_idle: state=2 cpu_id=2
17763          <idle>-0     (-----) [001] d.h3 24566.802624: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
17764          <idle>-0     (-----) [000] ...1 24566.802634: cpu_idle: state=4294967295 cpu_id=0
17765          <idle>-0     (-----) [000] d..1 24566.802720: cpu_idle: state=2 cpu_id=0
17766          <idle>-0     (-----) [001] dnh4 24566.802933: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
17767          <idle>-0     (-----) [001] dnH3 24566.803370: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
17768          <idle>-0     (-----) [001] dnH3 24566.803477: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
17769          <idle>-0     (-----) [001] dnH4 24566.803547: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
17770          <idle>-0     (-----) [001] dns3 24566.803594: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
17771          <idle>-0     (-----) [001] dns4 24566.803633: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
17772          <idle>-0     (-----) [001] .n.1 24566.803813: cpu_idle: state=4294967295 cpu_id=1
17773          <idle>-0     (-----) [001] d..2 24566.803913: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
17774          <idle>-0     (-----) [002] .n.1 24566.803940: cpu_idle: state=4294967295 cpu_id=2
17775          <idle>-0     (-----) [002] d..2 24566.804004: 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
17776         sugov:0-559   (  559) [002] d..2 24566.804205: 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
17777     kworker/1:1-13091 (13091) [001] d..3 24566.804235: sched_waking: comm=kworker/1:0 pid=13068 prio=120 target_cpu=001
17778     kworker/1:1-13091 (13091) [001] d..3 24566.804278: sched_wakeup: comm=kworker/1:0 pid=13068 prio=120 target_cpu=001
17779     kworker/1:1-13091 (13091) [001] d..2 24566.804292: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=D ==> next_comm=kworker/1:0 next_pid=13068 next_prio=120
17780          <idle>-0     (-----) [002] d..1 24566.804329: cpu_idle: state=2 cpu_id=2
17781<...>-13068 ( 13068) [001] d..2 24566.804545: sched_switch: prev_comm=kworker/1:0 prev_pid=13068 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17782  kworker/u16:16-25995 (25995) [001] d..2 24566.804565: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
17783          <idle>-0     (-----) [007] dnh2 24566.804640: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
17784          <idle>-0     (-----) [007] .n.1 24566.804660: cpu_idle: state=4294967295 cpu_id=7
17785          <idle>-0     (-----) [007] d..2 24566.804682: 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
17786  kworker/u16:16-25995 (25995) [001] dn.3 24566.804683: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
17787  kworker/u16:16-25995 (25995) [001] d..2 24566.804698: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
17788         sugov:4-560   (  560) [007] d..2 24566.804735: 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
17789          <idle>-0     (-----) [007] d..1 24566.804759: cpu_idle: state=2 cpu_id=7
17790  kworker/u16:15-18488 (18488) [001] d..2 24566.805326: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17791  kworker/u16:16-25995 (25995) [001] d..3 24566.805360: sched_waking: comm=kworker/1:0 pid=13068 prio=120 target_cpu=001
17792  kworker/u16:16-25995 (25995) [001] dn.4 24566.805374: sched_wakeup: comm=kworker/1:0 pid=13068 prio=120 target_cpu=001
17793  kworker/u16:16-25995 (25995) [001] d..2 24566.805384: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:0 next_pid=13068 next_prio=120
17794<...>-13068 ( 13068) [001] d..3 24566.805405: sched_waking: comm=msm_irqbalance pid=805 prio=120 target_cpu=001
17795          <idle>-0     (-----) [000] d.h3 24566.805411: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
17796          <idle>-0     (-----) [000] dnh4 24566.805457: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
17797<...>-13068 ( 13068) [001] d..4 24566.805487: sched_wakeup: comm=msm_irqbalance pid=805 prio=120 target_cpu=000
17798          <idle>-0     (-----) [000] .n.1 24566.805508: cpu_idle: state=4294967295 cpu_id=0
17799          <idle>-0     (-----) [000] d..2 24566.805547: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
17800<...>-13068 ( 13068) [001] d..2 24566.805553: sched_switch: prev_comm=kworker/1:0 prev_pid=13068 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17801     kworker/0:1-13012 (13012) [000] d..2 24566.805579: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
17802  kworker/u16:16-25995 (25995) [001] d..2 24566.805587: 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
17803     kworker/0:1-13012 (13012) [000] d..3 24566.805609: sched_blocked_reason: pid=13091 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
17804          <idle>-0     (-----) [001] d..1 24566.805621: cpu_idle: state=2 cpu_id=1
17805     kworker/0:1-13012 (13012) [000] d..3 24566.805628: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
17806     kworker/0:1-13012 (13012) [000] d..2 24566.805655: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=msm_irqbalance next_pid=805 next_prio=120
17807          <idle>-0     (-----) [001] .n.1 24566.805658: cpu_idle: state=4294967295 cpu_id=1
17808          <idle>-0     (-----) [001] d..2 24566.805679: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
17809     kworker/1:1-13091 (13091) [001] d..2 24566.805864: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17810          <idle>-0     (-----) [001] d..1 24566.805879: cpu_idle: state=2 cpu_id=1
17811  msm_irqbalance-805   (  805) [000] d.s2 24566.814262: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
17812  msm_irqbalance-805   (  805) [000] d.s3 24566.814330: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
17813  msm_irqbalance-805   (  805) [000] d.s2 24566.814346: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
17814  msm_irqbalance-805   (  805) [000] dns3 24566.814361: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
17815  msm_irqbalance-805   (  805) [000] d..2 24566.814380: sched_switch: prev_comm=msm_irqbalance prev_pid=805 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
17816     kworker/0:1-13012 (13012) [000] d..2 24566.814431: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=msm_irqbalance next_pid=805 next_prio=120
17817          <idle>-0     (-----) [001] .n.1 24566.814634: cpu_idle: state=4294967295 cpu_id=1
17818          <idle>-0     (-----) [001] d..2 24566.814673: 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
17819  kworker/u16:16-25995 (25995) [001] .... 24566.814870: clk_set_rate: l3_cluster0_vote_clk 480000000
17820  kworker/u16:16-25995 (25995) [001] .... 24566.814894: clk_set_rate: l3_clk 480000000
17821  kworker/u16:16-25995 (25995) [001] d..2 24566.815051: 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
17822          <idle>-0     (-----) [001] d..1 24566.815070: cpu_idle: state=2 cpu_id=1
17823  msm_irqbalance-805   (  805) [000] d.H3 24566.817665: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
17824  msm_irqbalance-805   (  805) [000] d.H3 24566.817687: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
17825  msm_irqbalance-805   (  805) [000] d.H4 24566.817705: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
17826          <idle>-0     (-----) [002] .n.1 24566.817997: cpu_idle: state=4294967295 cpu_id=2
17827          <idle>-0     (-----) [002] d..2 24566.818023: 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
17828         sugov:0-559   (  559) [002] .... 24566.818100: clk_set_rate: pwrcl_clk 1056000000
17829         sugov:0-559   (  559) [002] .... 24566.818117: clk_set_rate: cpu3_pwrcl_clk 652800000
17830         sugov:0-559   (  559) [002] .... 24566.818135: clk_set_rate: cpu2_pwrcl_clk 652800000
17831         sugov:0-559   (  559) [002] .... 24566.818149: clk_set_rate: cpu1_pwrcl_clk 652800000
17832         sugov:0-559   (  559) [002] .... 24566.818159: clk_set_rate: cpu0_pwrcl_clk 1056000000
17833         sugov:0-559   (  559) [002] .... 24566.818178: cpu_frequency: state=1056000 cpu_id=0
17834         sugov:0-559   (  559) [002] .... 24566.818254: cpu_frequency: state=1056000 cpu_id=1
17835         sugov:0-559   (  559) [002] .... 24566.818257: cpu_frequency: state=1056000 cpu_id=2
17836         sugov:0-559   (  559) [002] .... 24566.818261: cpu_frequency: state=1056000 cpu_id=3
17837         sugov:0-559   (  559) [002] d..2 24566.818296: 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
17838          <idle>-0     (-----) [002] d..1 24566.818309: cpu_idle: state=2 cpu_id=2
17839          <idle>-0     (-----) [007] dnh2 24566.818719: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
17840          <idle>-0     (-----) [007] .n.1 24566.818727: cpu_idle: state=4294967295 cpu_id=7
17841          <idle>-0     (-----) [007] d..2 24566.818737: 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
17842         sugov:4-560   (  560) [007] d..2 24566.818756: 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
17843          <idle>-0     (-----) [007] d..1 24566.818766: cpu_idle: state=2 cpu_id=7
17844  msm_irqbalance-805   (  805) [000] d..2 24566.820268: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
17845  msm_irqbalance-805   (  805) [000] dn.3 24566.820312: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
17846  msm_irqbalance-805   (  805) [000] d..2 24566.820328: 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
17847         rcuop/0-10    (   10) [000] d..2 24566.820359: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
17848         rcuop/0-10    (   10) [000] d..3 24566.820392: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
17849         rcuop/0-10    (   10) [000] d..2 24566.820408: 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
17850     rcu_preempt-7     (    7) [000] d..2 24566.820455: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=msm_irqbalance next_pid=805 next_prio=120
17851  msm_irqbalance-805   (  805) [000] d..2 24566.821035: sched_switch: prev_comm=msm_irqbalance prev_pid=805 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17852          <idle>-0     (-----) [000] d..1 24566.821052: cpu_idle: state=0 cpu_id=0
17853          <idle>-0     (-----) [000] d.s2 24566.824249: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
17854          <idle>-0     (-----) [000] dns3 24566.824268: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
17855          <idle>-0     (-----) [000] dns3 24566.824274: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
17856          <idle>-0     (-----) [000] dns4 24566.824310: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17857          <idle>-0     (-----) [000] .n.1 24566.824327: cpu_idle: state=4294967295 cpu_id=0
17858          <idle>-0     (-----) [000] d..2 24566.824338: 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
17859     rcu_preempt-7     (    7) [000] d..2 24566.824383: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
17860     rcu_preempt-7     (    7) [000] d..3 24566.824401: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
17861     rcu_preempt-7     (    7) [000] d..2 24566.824415: 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
17862         rcuop/0-10    (   10) [000] d..2 24566.824433: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
17863         rcuop/0-10    (   10) [000] d..3 24566.824445: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
17864         rcuop/0-10    (   10) [000] d..2 24566.824454: 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
17865     rcu_preempt-7     (    7) [000] d..2 24566.824468: 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
17866  kworker/u16:16-25995 (25995) [000] d..2 24566.824548: 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
17867          <idle>-0     (-----) [000] d..1 24566.824562: cpu_idle: state=2 cpu_id=0
17868          <idle>-0     (-----) [000] d.s2 24566.831283: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
17869          <idle>-0     (-----) [000] dns3 24566.831304: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
17870          <idle>-0     (-----) [000] .n.1 24566.831316: cpu_idle: state=4294967295 cpu_id=0
17871          <idle>-0     (-----) [000] d..2 24566.831329: 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
17872     rcu_preempt-7     (    7) [000] d..2 24566.831339: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
17873     rcu_preempt-7     (    7) [000] d..3 24566.831354: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
17874     rcu_preempt-7     (    7) [000] d..2 24566.831365: 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
17875         rcuop/0-10    (   10) [000] d..2 24566.831397: 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
17876          <idle>-0     (-----) [000] d..1 24566.831409: cpu_idle: state=2 cpu_id=0
17877          <idle>-0     (-----) [000] ...1 24566.882454: cpu_idle: state=4294967295 cpu_id=0
17878          <idle>-0     (-----) [000] d..1 24566.882551: cpu_idle: state=2 cpu_id=0
17879          <idle>-0     (-----) [002] d.H3 24566.882772: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
17880          <idle>-0     (-----) [002] d.H3 24566.882891: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
17881          <idle>-0     (-----) [002] dnH4 24566.882972: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
17882          <idle>-0     (-----) [002] dns3 24566.883038: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
17883          <idle>-0     (-----) [002] dns4 24566.883128: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
17884          <idle>-0     (-----) [002] dns3 24566.883168: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17885          <idle>-0     (-----) [002] dns4 24566.883380: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
17886          <idle>-0     (-----) [002] .n.1 24566.883528: cpu_idle: state=4294967295 cpu_id=2
17887          <idle>-0     (-----) [002] d..2 24566.883604: 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
17888         sugov:0-559   (  559) [002] .... 24566.883760: clk_set_rate: pwrcl_clk 652800000
17889         sugov:0-559   (  559) [002] .... 24566.883851: clk_set_rate: cpu3_pwrcl_clk 1056000000
17890         sugov:0-559   (  559) [002] .... 24566.883868: clk_set_rate: cpu2_pwrcl_clk 1056000000
17891         sugov:0-559   (  559) [002] .... 24566.883878: clk_set_rate: cpu1_pwrcl_clk 1056000000
17892         sugov:0-559   (  559) [002] .... 24566.883888: clk_set_rate: cpu0_pwrcl_clk 652800000
17893         sugov:0-559   (  559) [002] .... 24566.884010: cpu_frequency: state=652800 cpu_id=0
17894          <idle>-0     (-----) [007] dnh2 24566.884014: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
17895          <idle>-0     (-----) [007] .n.1 24566.884035: cpu_idle: state=4294967295 cpu_id=7
17896          <idle>-0     (-----) [007] d..2 24566.884064: 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
17897         sugov:0-559   (  559) [002] .... 24566.884118: cpu_frequency: state=652800 cpu_id=1
17898         sugov:0-559   (  559) [002] .... 24566.884124: cpu_frequency: state=652800 cpu_id=2
17899         sugov:0-559   (  559) [002] .... 24566.884131: cpu_frequency: state=652800 cpu_id=3
17900         sugov:4-560   (  560) [007] d..2 24566.884156: 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
17901         sugov:0-559   (  559) [002] d..2 24566.884178: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
17902          <idle>-0     (-----) [007] d..1 24566.884184: cpu_idle: state=2 cpu_id=7
17903     kworker/2:0-12895 (12895) [002] d..2 24566.884373: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17904  kworker/u16:16-25995 (25995) [002] .... 24566.884814: clk_set_rate: l3_cluster0_vote_clk 300000000
17905  kworker/u16:16-25995 (25995) [002] .... 24566.884837: clk_set_rate: l3_clk 300000000
17906  kworker/u16:16-25995 (25995) [002] d..2 24566.885673: 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
17907          <idle>-0     (-----) [002] d..1 24566.885702: cpu_idle: state=2 cpu_id=2
17908          <idle>-0     (-----) [003] d.s3 24566.886144: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
17909          <idle>-0     (-----) [003] d.s4 24566.886229: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
17910          <idle>-0     (-----) [003] dns4 24566.886250: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17911          <idle>-0     (-----) [003] .n.1 24566.886272: cpu_idle: state=4294967295 cpu_id=3
17912          <idle>-0     (-----) [003] d..2 24566.886317: 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
17913  kworker/u16:16-25995 (25995) [003] d..2 24566.886413: 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
17914          <idle>-0     (-----) [003] d..1 24566.886443: cpu_idle: state=2 cpu_id=3
17915          <idle>-0     (-----) [000] d..2 24567.024861: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17916          <idle>-0     (-----) [000] dn.3 24567.025060: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17917          <idle>-0     (-----) [000] dnH3 24567.025607: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
17918          <idle>-0     (-----) [000] dnH3 24567.025706: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
17919          <idle>-0     (-----) [000] dnH4 24567.025799: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
17920          <idle>-0     (-----) [000] dns3 24567.025879: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17921          <idle>-0     (-----) [000] dns4 24567.026074: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17922          <idle>-0     (-----) [000] dns3 24567.026109: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
17923          <idle>-0     (-----) [000] dns4 24567.026142: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
17924          <idle>-0     (-----) [000] .n.1 24567.026198: cpu_idle: state=4294967295 cpu_id=0
17925          <idle>-0     (-----) [002] .n.1 24567.026208: cpu_idle: state=4294967295 cpu_id=2
17926          <idle>-0     (-----) [002] d..2 24567.026323: 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
17927          <idle>-0     (-----) [000] d..2 24567.026324: 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
17928     ksoftirqd/0-3     (    3) [000] d..2 24567.026389: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
17929         sugov:0-559   (  559) [002] d..2 24567.026579: 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
17930     kworker/0:1-13012 (13012) [000] d..2 24567.026621: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17931          <idle>-0     (-----) [002] d..1 24567.026658: cpu_idle: state=2 cpu_id=2
17932          <idle>-0     (-----) [007] dnh2 24567.026850: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
17933          <idle>-0     (-----) [007] .n.1 24567.026870: cpu_idle: state=4294967295 cpu_id=7
17934          <idle>-0     (-----) [007] d..2 24567.026893: 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
17935         sugov:4-560   (  560) [007] d..2 24567.026937: 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
17936          <idle>-0     (-----) [007] d..1 24567.026963: cpu_idle: state=2 cpu_id=7
17937  kworker/u16:16-25995 (25995) [000] d..2 24567.027917: 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
17938          <idle>-0     (-----) [000] d..1 24567.027946: cpu_idle: state=2 cpu_id=0
17939          <idle>-0     (-----) [003] d.s3 24567.028192: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17940          <idle>-0     (-----) [003] d.s4 24567.028281: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
17941          <idle>-0     (-----) [003] dns4 24567.028300: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17942          <idle>-0     (-----) [003] .n.1 24567.028325: cpu_idle: state=4294967295 cpu_id=3
17943          <idle>-0     (-----) [003] d..2 24567.028365: 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
17944  kworker/u16:16-25995 (25995) [003] d..2 24567.028538: 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
17945          <idle>-0     (-----) [003] d..1 24567.028572: cpu_idle: state=2 cpu_id=3
17946          <idle>-0     (-----) [001] d.h2 24567.519449: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=001
17947          <idle>-0     (-----) [000] d..2 24567.519586: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17948          <idle>-0     (-----) [001] dnh3 24567.519685: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=001
17949          <idle>-0     (-----) [000] dn.3 24567.519700: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17950          <idle>-0     (-----) [000] .n.1 24567.519736: cpu_idle: state=4294967295 cpu_id=0
17951          <idle>-0     (-----) [001] dnh3 24567.520074: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
17952          <idle>-0     (-----) [000] d..2 24567.520086: 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
17953          <idle>-0     (-----) [003] d.s4 24567.520112: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
17954          <idle>-0     (-----) [001] dnh3 24567.520118: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
17955          <idle>-0     (-----) [001] dnh4 24567.520159: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
17956          <idle>-0     (-----) [003] dns5 24567.520163: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
17957          <idle>-0     (-----) [001] .n.1 24567.520175: cpu_idle: state=4294967295 cpu_id=1
17958          <idle>-0     (-----) [003] dns3 24567.520199: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17959          <idle>-0     (-----) [001] d..2 24567.520213: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=bluetooth@1.0-s next_pid=24508 next_prio=98
17960     ksoftirqd/0-3     (    3) [000] d..2 24567.520309: 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
17961          <idle>-0     (-----) [003] dns4 24567.520381: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17962          <idle>-0     (-----) [000] d..2 24567.520413: 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
17963          <idle>-0     (-----) [002] .n.1 24567.520542: cpu_idle: state=4294967295 cpu_id=2
17964          <idle>-0     (-----) [003] .n.1 24567.520547: cpu_idle: state=4294967295 cpu_id=3
17965          <idle>-0     (-----) [003] d..2 24567.520580: 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
17966          <idle>-0     (-----) [002] d..2 24567.520594: 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
17967 bluetooth@1.0-s-24508 (  759) [001] d..2 24567.520671: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17968         sugov:0-559   (  559) [002] d..2 24567.520682: 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
17969          <idle>-0     (-----) [001] d..1 24567.520707: cpu_idle: state=2 cpu_id=1
17970          <idle>-0     (-----) [002] d..1 24567.520711: cpu_idle: state=2 cpu_id=2
17971     kworker/3:1-12662 (12662) [003] d..3 24567.520867: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
17972     kworker/3:1-12662 (12662) [003] d..4 24567.520944: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
17973     kworker/3:1-12662 (12662) [003] d..3 24567.521065: sched_waking: comm=kworker/3:1H pid=697 prio=100 target_cpu=003
17974     kworker/3:1-12662 (12662) [003] dn.4 24567.521098: sched_wakeup: comm=kworker/3:1H pid=697 prio=100 target_cpu=003
17975     kworker/3:1-12662 (12662) [003] d..2 24567.521118: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=R+ ==> next_comm=kworker/3:1H next_pid=697 next_prio=100
17976<...>-697 ( 697) [003] d..2 24567.521181: 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
17977     kworker/3:1-12662 (12662) [003] d..3 24567.521204: sched_waking: comm=kworker/3:2 pid=13089 prio=120 target_cpu=003
17978     kworker/3:1-12662 (12662) [003] dn.3 24567.521237: sched_wakeup: comm=kworker/3:2 pid=13089 prio=120 target_cpu=003
17979     kworker/3:1-12662 (12662) [003] d..2 24567.521247: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=kworker/3:2 next_pid=13089 next_prio=120
17980          <idle>-0     (-----) [007] dnh2 24567.521281: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
17981          <idle>-0     (-----) [007] .n.1 24567.521298: cpu_idle: state=4294967295 cpu_id=7
17982          <idle>-0     (-----) [007] d..2 24567.521326: 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
17983         sugov:4-560   (  560) [007] d..2 24567.521373: 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
17984          <idle>-0     (-----) [007] d..1 24567.521393: cpu_idle: state=2 cpu_id=7
17985<...>-13089 ( 13089) [003] d..2 24567.521474: sched_switch: prev_comm=kworker/3:2 prev_pid=13089 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
17986  kworker/u16:15-18488 (18488) [003] d..2 24567.521700: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17987          <idle>-0     (-----) [003] d..1 24567.521723: cpu_idle: state=0 cpu_id=3
17988  kworker/u16:16-25995 (25995) [000] d..2 24567.521913: 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
17989          <idle>-0     (-----) [000] d..1 24567.521941: cpu_idle: state=2 cpu_id=0
17990          <idle>-0     (-----) [003] d.s3 24567.522844: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17991          <idle>-0     (-----) [003] d.s4 24567.522896: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
17992          <idle>-0     (-----) [003] dns4 24567.522907: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17993          <idle>-0     (-----) [003] .n.1 24567.522921: cpu_idle: state=4294967295 cpu_id=3
17994          <idle>-0     (-----) [003] d..2 24567.522933: 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
17995  kworker/u16:16-25995 (25995) [003] d.s2 24567.523170: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17996  kworker/u16:16-25995 (25995) [003] d.s3 24567.523175: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17997  kworker/u16:16-25995 (25995) [003] d..1 24567.523232: clk_enable: gcc_ufs_phy_axi_clk_src
17998  kworker/u16:16-25995 (25995) [003] d..1 24567.523272: clk_enable: gcc_ufs_phy_axi_clk
17999  kworker/u16:16-25995 (25995) [003] d..1 24567.523289: clk_enable: gcc_ufs_phy_axi_hw_ctl_clk
18000  kworker/u16:16-25995 (25995) [003] d..1 24567.523307: clk_enable: gcc_aggre_ufs_phy_axi_clk
18001  kworker/u16:16-25995 (25995) [003] d..1 24567.523319: clk_enable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
18002  kworker/u16:16-25995 (25995) [003] d..1 24567.523333: clk_enable: gcc_ufs_phy_ahb_clk
18003  kworker/u16:16-25995 (25995) [003] d..1 24567.523358: clk_enable: gcc_ufs_phy_unipro_core_clk_src
18004  kworker/u16:16-25995 (25995) [003] d..1 24567.523368: clk_enable: gcc_ufs_phy_unipro_core_clk
18005  kworker/u16:16-25995 (25995) [003] d..1 24567.523378: clk_enable: gcc_ufs_phy_unipro_core_hw_ctl_clk
18006  kworker/u16:16-25995 (25995) [003] d..1 24567.523395: clk_enable: gcc_ufs_phy_ice_core_clk_src
18007  kworker/u16:16-25995 (25995) [003] d..1 24567.523404: clk_enable: gcc_ufs_phy_ice_core_clk
18008  kworker/u16:16-25995 (25995) [003] d..1 24567.523414: clk_enable: gcc_ufs_phy_ice_core_hw_ctl_clk
18009  kworker/u16:16-25995 (25995) [003] d..1 24567.523447: clk_enable: gcc_ufs_mem_clkref_clk
18010  kworker/u16:16-25995 (25995) [003] d..1 24567.523464: clk_enable: gcc_ufs_phy_phy_aux_clk_src
18011  kworker/u16:16-25995 (25995) [003] d..1 24567.523473: clk_enable: gcc_ufs_phy_phy_aux_clk
18012  kworker/u16:16-25995 (25995) [003] d..1 24567.523483: clk_enable: gcc_ufs_phy_phy_aux_hw_ctl_clk
18013  kworker/u16:16-25995 (25995) [003] d..3 24567.523566: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
18014  kworker/u16:16-25995 (25995) [003] d..4 24567.523609: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
18015          <idle>-0     (-----) [000] .n.1 24567.523784: cpu_idle: state=4294967295 cpu_id=0
18016  kworker/u16:16-25995 (25995) [003] d..2 24567.523787: 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
18017          <idle>-0     (-----) [003] d..1 24567.523806: cpu_idle: state=0 cpu_id=3
18018          <idle>-0     (-----) [000] d..2 24567.523820: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18019  kworker/u16:15-18488 (18488) [000] d..2 24567.523869: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18020          <idle>-0     (-----) [000] d..1 24567.523891: cpu_idle: state=0 cpu_id=0
18021          <idle>-0     (-----) [001] ...1 24567.523949: cpu_idle: state=4294967295 cpu_id=1
18022          <idle>-0     (-----) [001] d..1 24567.523963: cpu_idle: state=0 cpu_id=1
18023          <idle>-0     (-----) [002] ...1 24567.523987: cpu_idle: state=4294967295 cpu_id=2
18024          <idle>-0     (-----) [002] d..1 24567.523999: cpu_idle: state=0 cpu_id=2
18025          <idle>-0     (-----) [003] d.s3 24567.524257: sched_waking: comm=kworker/3:1H pid=697 prio=100 target_cpu=003
18026          <idle>-0     (-----) [003] dns4 24567.524272: sched_wakeup: comm=kworker/3:1H pid=697 prio=100 target_cpu=003
18027          <idle>-0     (-----) [003] .n.1 24567.524282: cpu_idle: state=4294967295 cpu_id=3
18028          <idle>-0     (-----) [003] d..2 24567.524296: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1H next_pid=697 next_prio=100
18029<...>-697 ( 697) [003] d..2 24567.524341: sched_switch: prev_comm=kworker/3:1H prev_pid=697 prev_prio=100 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
18030          <idle>-0     (-----) [003] d..1 24567.524359: cpu_idle: state=0 cpu_id=3
18031          <idle>-0     (-----) [001] d.h4 24567.524492: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
18032          <idle>-0     (-----) [001] dnh5 24567.524553: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
18033          <idle>-0     (-----) [001] dns4 24567.524614: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18034          <idle>-0     (-----) [001] dns5 24567.524626: sched_blocked_reason: pid=12662 iowait=1 caller=blk_execute_rq+0xc0/0x118
18035          <idle>-0     (-----) [001] dns5 24567.524638: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18036          <idle>-0     (-----) [003] .n.1 24567.524645: cpu_idle: state=4294967295 cpu_id=3
18037          <idle>-0     (-----) [003] d..2 24567.524661: 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
18038          <idle>-0     (-----) [001] .n.1 24567.524666: cpu_idle: state=4294967295 cpu_id=1
18039          <idle>-0     (-----) [001] d..2 24567.524687: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18040  kworker/u16:15-18488 (18488) [001] d..2 24567.524736: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18041          <idle>-0     (-----) [001] d..1 24567.524753: cpu_idle: state=0 cpu_id=1
18042     kworker/3:1-12662 (12662) [003] d..2 24567.524799: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
18043          <idle>-0     (-----) [001] d.h4 24567.524805: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18044          <idle>-0     (-----) [003] d..1 24567.524813: cpu_idle: state=0 cpu_id=3
18045          <idle>-0     (-----) [001] d.h5 24567.524817: sched_blocked_reason: pid=12662 iowait=0 caller=ufshcd_exec_dev_cmd+0x3a4/0x74c
18046          <idle>-0     (-----) [001] d.h5 24567.524828: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18047          <idle>-0     (-----) [003] .n.1 24567.524835: cpu_idle: state=4294967295 cpu_id=3
18048          <idle>-0     (-----) [001] ...1 24567.524846: cpu_idle: state=4294967295 cpu_id=1
18049          <idle>-0     (-----) [003] d..2 24567.524849: 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
18050          <idle>-0     (-----) [001] d..1 24567.524852: cpu_idle: state=0 cpu_id=1
18051     kworker/3:1-12662 (12662) [003] d..3 24567.524903: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
18052     kworker/3:1-12662 (12662) [003] d..4 24567.524929: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
18053          <idle>-0     (-----) [001] .n.1 24567.524934: cpu_idle: state=4294967295 cpu_id=1
18054          <idle>-0     (-----) [001] d..2 24567.524950: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18055     kworker/3:1-12662 (12662) [003] d..2 24567.524970: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
18056  kworker/u16:15-18488 (18488) [001] d..2 24567.524985: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18057          <idle>-0     (-----) [003] d..1 24567.524995: cpu_idle: state=0 cpu_id=3
18058          <idle>-0     (-----) [001] d.h5 24567.525018: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
18059          <idle>-0     (-----) [001] dnh6 24567.525033: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
18060          <idle>-0     (-----) [001] dns5 24567.525060: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18061          <idle>-0     (-----) [001] dns6 24567.525070: sched_blocked_reason: pid=12662 iowait=1 caller=blk_execute_rq+0xc0/0x118
18062          <idle>-0     (-----) [001] dns6 24567.525080: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18063          <idle>-0     (-----) [003] .n.1 24567.525087: cpu_idle: state=4294967295 cpu_id=3
18064          <idle>-0     (-----) [001] d..2 24567.525100: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18065          <idle>-0     (-----) [003] d..2 24567.525103: 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
18066  kworker/u16:15-18488 (18488) [001] d..2 24567.525132: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18067          <idle>-0     (-----) [001] d..1 24567.525153: cpu_idle: state=0 cpu_id=1
18068     kworker/3:1-12662 (12662) [003] d..2 24567.525167: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
18069          <idle>-0     (-----) [001] d.h4 24567.525177: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18070          <idle>-0     (-----) [003] d..1 24567.525182: cpu_idle: state=0 cpu_id=3
18071          <idle>-0     (-----) [001] d.h5 24567.525189: sched_blocked_reason: pid=12662 iowait=0 caller=ufshcd_uic_pwr_ctrl+0x3dc/0x758
18072          <idle>-0     (-----) [001] d.h5 24567.525199: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18073          <idle>-0     (-----) [003] .n.1 24567.525206: cpu_idle: state=4294967295 cpu_id=3
18074          <idle>-0     (-----) [001] ...1 24567.525214: cpu_idle: state=4294967295 cpu_id=1
18075          <idle>-0     (-----) [003] d..2 24567.525220: 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
18076          <idle>-0     (-----) [001] d..1 24567.525225: cpu_idle: state=0 cpu_id=1
18077     kworker/3:1-12662 (12662) [003] d..2 24567.525264: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
18078          <idle>-0     (-----) [003] d..1 24567.525276: cpu_idle: state=0 cpu_id=3
18079          <idle>-0     (-----) [001] ...1 24567.526381: cpu_idle: state=4294967295 cpu_id=1
18080          <idle>-0     (-----) [001] d..1 24567.526389: cpu_idle: state=0 cpu_id=1
18081          <idle>-0     (-----) [003] d.h2 24567.527360: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18082          <idle>-0     (-----) [003] d.h3 24567.527371: sched_blocked_reason: pid=12662 iowait=0 caller=ufshcd_vreg_set_lpm+0x64/0x248
18083          <idle>-0     (-----) [003] dnh3 24567.527378: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18084          <idle>-0     (-----) [003] .n.1 24567.527390: cpu_idle: state=4294967295 cpu_id=3
18085          <idle>-0     (-----) [003] d..2 24567.527402: 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
18086     kworker/3:1-12662 (12662) [003] d.s2 24567.527584: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
18087     kworker/3:1-12662 (12662) [003] d.s3 24567.527637: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
18088          <idle>-0     (-----) [000] .n.1 24567.527644: cpu_idle: state=4294967295 cpu_id=0
18089          <idle>-0     (-----) [000] d..2 24567.527662: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18090  kworker/u16:15-18488 (18488) [000] d..2 24567.527834: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18091          <idle>-0     (-----) [000] d..1 24567.527852: cpu_idle: state=0 cpu_id=0
18092     kworker/3:1-12662 (12662) [003] d..1 24567.527894: clk_disable: gcc_ufs_phy_phy_aux_hw_ctl_clk
18093     kworker/3:1-12662 (12662) [003] d..1 24567.527906: clk_disable: gcc_ufs_phy_phy_aux_clk
18094     kworker/3:1-12662 (12662) [003] d..1 24567.527917: clk_disable: gcc_ufs_phy_phy_aux_clk_src
18095     kworker/3:1-12662 (12662) [003] d..1 24567.527930: clk_disable: gcc_ufs_mem_clkref_clk
18096     kworker/3:1-12662 (12662) [003] d..1 24567.527988: clk_disable: gcc_ufs_phy_axi_hw_ctl_clk
18097     kworker/3:1-12662 (12662) [003] d..1 24567.527995: clk_disable: gcc_ufs_phy_axi_clk
18098     kworker/3:1-12662 (12662) [003] d..1 24567.528005: clk_disable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
18099     kworker/3:1-12662 (12662) [003] d..1 24567.528011: clk_disable: gcc_aggre_ufs_phy_axi_clk
18100     kworker/3:1-12662 (12662) [003] d..1 24567.528020: clk_disable: gcc_ufs_phy_axi_clk_src
18101     kworker/3:1-12662 (12662) [003] d..1 24567.528028: clk_disable: gcc_ufs_phy_ahb_clk
18102     kworker/3:1-12662 (12662) [003] d..1 24567.528038: clk_disable: gcc_ufs_phy_unipro_core_hw_ctl_clk
18103     kworker/3:1-12662 (12662) [003] d..1 24567.528044: clk_disable: gcc_ufs_phy_unipro_core_clk
18104     kworker/3:1-12662 (12662) [003] d..1 24567.528053: clk_disable: gcc_ufs_phy_unipro_core_clk_src
18105     kworker/3:1-12662 (12662) [003] d..1 24567.528060: clk_disable: gcc_ufs_phy_ice_core_hw_ctl_clk
18106     kworker/3:1-12662 (12662) [003] d..1 24567.528065: clk_disable: gcc_ufs_phy_ice_core_clk
18107     kworker/3:1-12662 (12662) [003] d..1 24567.528074: clk_disable: gcc_ufs_phy_ice_core_clk_src
18108     kworker/3:1-12662 (12662) [003] d..1 24567.528193: clk_disable: gcc_ufs_phy_tx_symbol_0_clk
18109     kworker/3:1-12662 (12662) [003] d..1 24567.528707: clk_disable: gcc_ufs_phy_rx_symbol_0_clk
18110     kworker/3:1-12662 (12662) [003] d..1 24567.529216: clk_disable: gcc_ufs_phy_rx_symbol_1_clk
18111     kworker/3:1-12662 (12662) [003] d..2 24567.529994: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
18112          <idle>-0     (-----) [003] d.s4 24567.530058: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18113          <idle>-0     (-----) [003] d.s5 24567.530069: sched_blocked_reason: pid=12662 iowait=0 caller=wait_for_tx_done+0x34/0x120
18114          <idle>-0     (-----) [003] dns5 24567.530076: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18115          <idle>-0     (-----) [003] d..2 24567.530093: 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
18116     kworker/3:1-12662 (12662) [003] d..2 24567.530207: 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
18117          <idle>-0     (-----) [003] d..1 24567.530233: cpu_idle: state=0 cpu_id=3
18118          <idle>-0     (-----) [003] d..2 24567.531360: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
18119          <idle>-0     (-----) [003] dn.3 24567.531392: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
18120          <idle>-0     (-----) [003] .n.1 24567.531401: cpu_idle: state=4294967295 cpu_id=3
18121          <idle>-0     (-----) [003] d..2 24567.531421: 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
18122     ksoftirqd/3-34    (   34) [003] d.s2 24567.531449: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
18123     ksoftirqd/3-34    (   34) [003] d.s3 24567.531479: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
18124          <idle>-0     (-----) [000] .n.1 24567.531486: cpu_idle: state=4294967295 cpu_id=0
18125          <idle>-0     (-----) [000] d..2 24567.531505: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18126     ksoftirqd/3-34    (   34) [003] d..2 24567.531521: 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
18127          <idle>-0     (-----) [003] d..1 24567.531581: cpu_idle: state=0 cpu_id=3
18128  kworker/u16:15-18488 (18488) [000] .... 24567.531611: clk_set_rate: l3_cluster0_vote_clk 403200000
18129  kworker/u16:15-18488 (18488) [000] .... 24567.531637: clk_set_rate: l3_clk 403200000
18130  kworker/u16:15-18488 (18488) [000] d..2 24567.531739: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18131          <idle>-0     (-----) [000] d..1 24567.531754: cpu_idle: state=0 cpu_id=0
18132          <idle>-0     (-----) [001] d.s3 24567.534267: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
18133          <idle>-0     (-----) [001] dns4 24567.534301: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
18134          <idle>-0     (-----) [001] .n.1 24567.534336: cpu_idle: state=4294967295 cpu_id=1
18135          <idle>-0     (-----) [001] d..2 24567.534355: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
18136          <idle>-0     (-----) [000] ...1 24567.534396: cpu_idle: state=4294967295 cpu_id=0
18137          <idle>-0     (-----) [002] ...1 24567.534401: cpu_idle: state=4294967295 cpu_id=2
18138          <idle>-0     (-----) [003] ...1 24567.534402: cpu_idle: state=4294967295 cpu_id=3
18139          <idle>-0     (-----) [002] d..1 24567.534407: cpu_idle: state=2 cpu_id=2
18140          <idle>-0     (-----) [000] d..1 24567.534410: cpu_idle: state=0 cpu_id=0
18141          <idle>-0     (-----) [003] d..1 24567.534411: cpu_idle: state=2 cpu_id=3
18142     kworker/1:1-13091 (13091) [001] d..2 24567.534432: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18143          <idle>-0     (-----) [001] d..1 24567.534449: cpu_idle: state=0 cpu_id=1
18144          <idle>-0     (-----) [001] ...1 24567.535608: cpu_idle: state=4294967295 cpu_id=1
18145          <idle>-0     (-----) [001] d..1 24567.535615: cpu_idle: state=2 cpu_id=1
18146          <idle>-0     (-----) [000] d..2 24567.540429: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18147          <idle>-0     (-----) [000] dn.3 24567.540448: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18148          <idle>-0     (-----) [000] dnH3 24567.540538: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
18149          <idle>-0     (-----) [000] dnH3 24567.540560: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18150          <idle>-0     (-----) [000] dnH4 24567.540578: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18151          <idle>-0     (-----) [000] dns3 24567.540592: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
18152          <idle>-0     (-----) [000] dns4 24567.540616: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
18153          <idle>-0     (-----) [000] .n.1 24567.540629: cpu_idle: state=4294967295 cpu_id=0
18154          <idle>-0     (-----) [000] d..2 24567.540647: 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
18155     ksoftirqd/0-3     (    3) [000] d..2 24567.540663: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18156  kworker/u16:15-18488 (18488) [000] d..2 24567.540749: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18157          <idle>-0     (-----) [000] d..1 24567.540767: cpu_idle: state=2 cpu_id=0
18158          <idle>-0     (-----) [002] .n.1 24567.540882: cpu_idle: state=4294967295 cpu_id=2
18159          <idle>-0     (-----) [002] d..2 24567.540910: 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
18160         sugov:0-559   (  559) [002] .... 24567.541006: clk_set_rate: pwrcl_clk 748800000
18161         sugov:0-559   (  559) [002] .... 24567.541023: clk_set_rate: cpu3_pwrcl_clk 652800000
18162         sugov:0-559   (  559) [002] .... 24567.541046: clk_set_rate: cpu2_pwrcl_clk 652800000
18163         sugov:0-559   (  559) [002] .... 24567.541057: clk_set_rate: cpu1_pwrcl_clk 652800000
18164         sugov:0-559   (  559) [002] .... 24567.541067: clk_set_rate: cpu0_pwrcl_clk 748800000
18165         sugov:0-559   (  559) [002] .... 24567.541086: cpu_frequency: state=748800 cpu_id=0
18166         sugov:0-559   (  559) [002] .... 24567.541161: cpu_frequency: state=748800 cpu_id=1
18167         sugov:0-559   (  559) [002] .... 24567.541167: cpu_frequency: state=748800 cpu_id=2
18168         sugov:0-559   (  559) [002] .... 24567.541172: cpu_frequency: state=748800 cpu_id=3
18169         sugov:0-559   (  559) [002] d..2 24567.541215: 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
18170          <idle>-0     (-----) [002] d..2 24567.541222: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
18171          <idle>-0     (-----) [002] dn.3 24567.541255: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
18172          <idle>-0     (-----) [002] d..2 24567.541270: 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
18173     ksoftirqd/2-26    (   26) [002] d.s2 24567.541299: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
18174     ksoftirqd/2-26    (   26) [002] d.s3 24567.541350: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
18175     ksoftirqd/2-26    (   26) [002] d..2 24567.541368: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18176  kworker/u16:15-18488 (18488) [002] .... 24567.541397: clk_set_rate: l3_cluster0_vote_clk 300000000
18177  kworker/u16:15-18488 (18488) [002] .... 24567.541403: clk_set_rate: l3_clk 300000000
18178  kworker/u16:15-18488 (18488) [002] d..2 24567.541456: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18179          <idle>-0     (-----) [002] d..1 24567.541474: cpu_idle: state=2 cpu_id=2
18180          <idle>-0     (-----) [007] dnh2 24567.541606: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
18181          <idle>-0     (-----) [007] .n.1 24567.541617: cpu_idle: state=4294967295 cpu_id=7
18182          <idle>-0     (-----) [007] d..2 24567.541630: 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
18183         sugov:4-560   (  560) [007] d..2 24567.541654: 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
18184          <idle>-0     (-----) [007] d..1 24567.541666: cpu_idle: state=2 cpu_id=7
18185          <idle>-0     (-----) [001] d.h2 24567.766883: sched_waking: comm=wpa_supplicant pid=2697 prio=120 target_cpu=001
18186          <idle>-0     (-----) [000] d..2 24567.767021: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18187          <idle>-0     (-----) [001] dnh3 24567.767154: sched_wakeup: comm=wpa_supplicant pid=2697 prio=120 target_cpu=001
18188          <idle>-0     (-----) [000] dn.3 24567.767154: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18189          <idle>-0     (-----) [000] .n.1 24567.767193: cpu_idle: state=4294967295 cpu_id=0
18190          <idle>-0     (-----) [000] d..2 24567.767492: 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
18191          <idle>-0     (-----) [001] dnh3 24567.767606: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
18192          <idle>-0     (-----) [001] dnh3 24567.767683: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18193          <idle>-0     (-----) [001] dnh4 24567.767736: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18194          <idle>-0     (-----) [001] .n.1 24567.767752: cpu_idle: state=4294967295 cpu_id=1
18195     ksoftirqd/0-3     (    3) [000] d.s2 24567.767757: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
18196          <idle>-0     (-----) [001] d..2 24567.767798: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=wpa_supplicant next_pid=2697 next_prio=120
18197     ksoftirqd/0-3     (    3) [000] d.s3 24567.767910: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
18198     ksoftirqd/0-3     (    3) [000] d.s2 24567.767951: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
18199     ksoftirqd/0-3     (    3) [000] d.s3 24567.767982: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
18200     ksoftirqd/0-3     (    3) [000] d..2 24567.768073: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
18201          <idle>-0     (-----) [002] .n.1 24567.768124: cpu_idle: state=4294967295 cpu_id=2
18202          <idle>-0     (-----) [002] d..2 24567.768176: 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
18203     kworker/0:1-13012 (13012) [000] d..2 24567.768286: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18204         sugov:0-559   (  559) [002] .... 24567.768325: clk_set_rate: pwrcl_clk 652800000
18205  wpa_supplicant-2697  ( 2697) [001] d..2 24567.768361: sched_switch: prev_comm=wpa_supplicant prev_pid=2697 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18206         sugov:0-559   (  559) [002] .... 24567.768423: clk_set_rate: cpu3_pwrcl_clk 748800000
18207         sugov:0-559   (  559) [002] .... 24567.768444: clk_set_rate: cpu2_pwrcl_clk 748800000
18208         sugov:0-559   (  559) [002] .... 24567.768455: clk_set_rate: cpu1_pwrcl_clk 748800000
18209          <idle>-0     (-----) [001] d..1 24567.768464: cpu_idle: state=2 cpu_id=1
18210         sugov:0-559   (  559) [002] .... 24567.768465: clk_set_rate: cpu0_pwrcl_clk 652800000
18211         sugov:0-559   (  559) [002] .... 24567.768587: cpu_frequency: state=652800 cpu_id=0
18212         sugov:0-559   (  559) [002] .... 24567.768680: cpu_frequency: state=652800 cpu_id=1
18213         sugov:0-559   (  559) [002] .... 24567.768687: cpu_frequency: state=652800 cpu_id=2
18214         sugov:0-559   (  559) [002] .... 24567.768692: cpu_frequency: state=652800 cpu_id=3
18215         sugov:0-559   (  559) [002] d..2 24567.768776: 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
18216          <idle>-0     (-----) [002] d..1 24567.768807: cpu_idle: state=2 cpu_id=2
18217          <idle>-0     (-----) [007] dnh2 24567.768836: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
18218          <idle>-0     (-----) [007] .n.1 24567.768856: cpu_idle: state=4294967295 cpu_id=7
18219          <idle>-0     (-----) [007] d..2 24567.768881: 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
18220         sugov:4-560   (  560) [007] d..2 24567.768925: 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
18221          <idle>-0     (-----) [007] d..1 24567.768949: cpu_idle: state=2 cpu_id=7
18222          <idle>-0     (-----) [001] ...1 24567.769206: cpu_idle: state=4294967295 cpu_id=1
18223          <idle>-0     (-----) [001] d..1 24567.769219: cpu_idle: state=2 cpu_id=1
18224  kworker/u16:15-18488 (18488) [000] d..2 24567.770163: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
18225          <idle>-0     (-----) [000] d..1 24567.770192: cpu_idle: state=2 cpu_id=0
18226          <idle>-0     (-----) [003] d.s3 24567.770601: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
18227          <idle>-0     (-----) [003] d.s4 24567.770684: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
18228          <idle>-0     (-----) [003] dns4 24567.770701: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
18229          <idle>-0     (-----) [003] .n.1 24567.770723: cpu_idle: state=4294967295 cpu_id=3
18230          <idle>-0     (-----) [003] d..2 24567.770760: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18231  kworker/u16:15-18488 (18488) [003] d..2 24567.771012: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
18232          <idle>-0     (-----) [003] d..1 24567.771041: cpu_idle: state=2 cpu_id=3
18233          <idle>-0     (-----) [000] d.h2 24567.816007: sched_waking: comm=oid.setupwizard pid=24795 prio=120 target_cpu=000
18234          <idle>-0     (-----) [001] d.H3 24567.816340: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
18235          <idle>-0     (-----) [000] dnh3 24567.816438: sched_wakeup: comm=oid.setupwizard pid=24795 prio=120 target_cpu=000
18236          <idle>-0     (-----) [001] d.H3 24567.816466: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18237          <idle>-0     (-----) [000] .n.1 24567.816483: cpu_idle: state=4294967295 cpu_id=0
18238          <idle>-0     (-----) [001] d.H4 24567.816525: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18239          <idle>-0     (-----) [001] d.s3 24567.816584: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
18240          <idle>-0     (-----) [000] d..2 24567.816599: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=oid.setupwizard next_pid=24795 next_prio=120
18241          <idle>-0     (-----) [001] dns4 24567.816621: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
18242          <idle>-0     (-----) [001] dns3 24567.816653: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
18243          <idle>-0     (-----) [001] dns4 24567.816772: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
18244          <idle>-0     (-----) [001] .n.1 24567.816912: cpu_idle: state=4294967295 cpu_id=1
18245          <idle>-0     (-----) [002] .n.1 24567.816916: cpu_idle: state=4294967295 cpu_id=2
18246          <idle>-0     (-----) [001] d..2 24567.816948: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
18247          <idle>-0     (-----) [002] d..2 24567.816975: 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
18248         sugov:0-559   (  559) [002] d..2 24567.817168: 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
18249          <idle>-0     (-----) [002] d..1 24567.817236: cpu_idle: state=2 cpu_id=2
18250     kworker/1:1-13091 (13091) [001] d..2 24567.817257: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18251 oid.setupwizard-24795 (24795) [000] d..2 24567.817333: sched_switch: prev_comm=oid.setupwizard prev_pid=24795 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18252          <idle>-0     (-----) [000] d..1 24567.817410: cpu_idle: state=2 cpu_id=0
18253          <idle>-0     (-----) [006] dnh2 24567.817651: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
18254          <idle>-0     (-----) [006] .n.1 24567.817718: cpu_idle: state=4294967295 cpu_id=6
18255  kworker/u16:15-18488 (18488) [001] d.H4 24567.817729: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18256          <idle>-0     (-----) [006] d..2 24567.817746: 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
18257  kworker/u16:15-18488 (18488) [001] d.H5 24567.817756: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18258  kworker/u16:15-18488 (18488) [001] d.s4 24567.817771: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
18259         sugov:4-560   (  560) [006] d..2 24567.817797: 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
18260          <idle>-0     (-----) [006] d..1 24567.817821: cpu_idle: state=2 cpu_id=6
18261  kworker/u16:15-18488 (18488) [001] d.s5 24567.817840: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
18262          <idle>-0     (-----) [002] .n.1 24567.818067: cpu_idle: state=4294967295 cpu_id=2
18263          <idle>-0     (-----) [002] d..2 24567.818093: 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
18264          <idle>-0     (-----) [000] d.h3 24567.818096: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
18265         sugov:0-559   (  559) [002] d..2 24567.818119: 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
18266          <idle>-0     (-----) [000] dnh4 24567.818134: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
18267          <idle>-0     (-----) [000] .n.1 24567.818171: cpu_idle: state=4294967295 cpu_id=0
18268  kworker/u16:16-25995 (25995) [002] d..2 24567.818179: 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
18269          <idle>-0     (-----) [000] d..2 24567.818196: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
18270          <idle>-0     (-----) [002] d..1 24567.818198: cpu_idle: state=2 cpu_id=2
18271     kworker/0:1-13012 (13012) [000] d..2 24567.818223: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
18272     kworker/0:1-13012 (13012) [000] d..3 24567.818250: sched_blocked_reason: pid=13091 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
18273     kworker/0:1-13012 (13012) [000] d..3 24567.818274: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
18274  kworker/u16:15-18488 (18488) [001] d..2 24567.818290: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
18275     kworker/0:1-13012 (13012) [000] d..2 24567.818345: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18276          <idle>-0     (-----) [000] d..1 24567.818362: cpu_idle: state=2 cpu_id=0
18277     kworker/1:1-13091 (13091) [001] d..2 24567.818470: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18278  kworker/u16:15-18488 (18488) [001] d..2 24567.818737: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18279          <idle>-0     (-----) [001] d..1 24567.818771: cpu_idle: state=2 cpu_id=1
18280          <idle>-0     (-----) [000] d..2 24568.024851: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18281          <idle>-0     (-----) [000] dn.3 24568.025051: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18282          <idle>-0     (-----) [000] dnH3 24568.025591: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
18283          <idle>-0     (-----) [000] dnH3 24568.025683: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18284          <idle>-0     (-----) [000] dnH4 24568.025774: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18285          <idle>-0     (-----) [000] dns3 24568.025851: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
18286          <idle>-0     (-----) [000] dns4 24568.026049: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
18287          <idle>-0     (-----) [000] dns3 24568.026095: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
18288          <idle>-0     (-----) [000] dns4 24568.026128: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
18289          <idle>-0     (-----) [000] .n.1 24568.026174: cpu_idle: state=4294967295 cpu_id=0
18290          <idle>-0     (-----) [002] .n.1 24568.026181: cpu_idle: state=4294967295 cpu_id=2
18291          <idle>-0     (-----) [002] d..2 24568.026299: 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
18292          <idle>-0     (-----) [000] d..2 24568.026302: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
18293         sugov:0-559   (  559) [002] d..2 24568.026394: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18294     kworker/0:1-13012 (13012) [000] d..2 24568.026560: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
18295     ksoftirqd/0-3     (    3) [000] d..2 24568.026763: 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
18296          <idle>-0     (-----) [006] dnh2 24568.026838: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
18297          <idle>-0     (-----) [000] d..1 24568.026844: cpu_idle: state=2 cpu_id=0
18298          <idle>-0     (-----) [006] .n.1 24568.026860: cpu_idle: state=4294967295 cpu_id=6
18299          <idle>-0     (-----) [006] d..2 24568.026882: 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
18300         sugov:4-560   (  560) [006] d..2 24568.026932: 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
18301          <idle>-0     (-----) [006] d..1 24568.026980: cpu_idle: state=2 cpu_id=6
18302  kworker/u16:15-18488 (18488) [002] d..2 24568.028065: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
18303          <idle>-0     (-----) [002] d..1 24568.028095: cpu_idle: state=2 cpu_id=2
18304          <idle>-0     (-----) [003] d.s3 24568.028574: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
18305          <idle>-0     (-----) [003] d.s4 24568.028664: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
18306          <idle>-0     (-----) [003] dns4 24568.028684: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
18307          <idle>-0     (-----) [003] .n.1 24568.028707: cpu_idle: state=4294967295 cpu_id=3
18308          <idle>-0     (-----) [003] d..2 24568.028756: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18309  kworker/u16:15-18488 (18488) [003] d..2 24568.028849: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
18310          <idle>-0     (-----) [003] d..1 24568.028879: cpu_idle: state=2 cpu_id=3
18311          <idle>-0     (-----) [007] d.H3 24568.376265: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
18312          <idle>-0     (-----) [000] ...1 24568.376356: cpu_idle: state=4294967295 cpu_id=0
18313          <idle>-0     (-----) [007] d.H4 24568.376374: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
18314          <idle>-0     (-----) [007] d.H3 24568.376389: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18315          <idle>-0     (-----) [000] d..1 24568.376438: cpu_idle: state=2 cpu_id=0
18316          <idle>-0     (-----) [007] d.s3 24568.376483: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
18317          <idle>-0     (-----) [007] d.s3 24568.376596: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
18318          <idle>-0     (-----) [007] dns4 24568.376645: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
18319          <idle>-0     (-----) [007] dns2 24568.376734: sched_waking: comm=ksoftirqd/7 pid=66 prio=120 target_cpu=007
18320          <idle>-0     (-----) [007] dns3 24568.376749: sched_wakeup: comm=ksoftirqd/7 pid=66 prio=120 target_cpu=007
18321          <idle>-0     (-----) [007] .n.1 24568.376758: cpu_idle: state=4294967295 cpu_id=7
18322          <idle>-0     (-----) [007] d..2 24568.376817: 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
18323          <idle>-0     (-----) [002] dnh2 24568.376842: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18324          <idle>-0     (-----) [002] .n.1 24568.376868: cpu_idle: state=4294967295 cpu_id=2
18325     ksoftirqd/7-66    (   66) [007] d..2 24568.376870: 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
18326          <idle>-0     (-----) [002] d..2 24568.376912: 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
18327          <idle>-0     (-----) [003] dnh2 24568.377010: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
18328          <idle>-0     (-----) [003] .n.1 24568.377036: cpu_idle: state=4294967295 cpu_id=3
18329     kworker/7:0-12892 (12892) [007] d..2 24568.377051: 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
18330         sugov:0-559   (  559) [002] d..2 24568.377069: 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
18331          <idle>-0     (-----) [003] d..2 24568.377076: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18332          <idle>-0     (-----) [007] d..1 24568.377078: cpu_idle: state=2 cpu_id=7
18333          <idle>-0     (-----) [002] d..1 24568.377101: cpu_idle: state=2 cpu_id=2
18334          <idle>-0     (-----) [006] .n.1 24568.377120: cpu_idle: state=4294967295 cpu_id=6
18335          <idle>-0     (-----) [006] d..2 24568.377158: 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
18336         sugov:4-560   (  560) [006] d..2 24568.377198: 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
18337          <idle>-0     (-----) [006] d..1 24568.377217: cpu_idle: state=2 cpu_id=6
18338  kworker/u16:15-18488 (18488) [003] d.H3 24568.377827: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
18339  kworker/u16:15-18488 (18488) [003] d.H3 24568.377858: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18340  kworker/u16:15-18488 (18488) [003] d.H4 24568.377881: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18341  kworker/u16:15-18488 (18488) [003] d..2 24568.378055: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
18342          <idle>-0     (-----) [003] d..1 24568.378083: cpu_idle: state=2 cpu_id=3
18343          <idle>-0     (-----) [002] .n.1 24568.378198: cpu_idle: state=4294967295 cpu_id=2
18344          <idle>-0     (-----) [002] d..2 24568.378234: 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
18345         sugov:0-559   (  559) [002] d..2 24568.378285: 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
18346          <idle>-0     (-----) [002] d..1 24568.378306: cpu_idle: state=2 cpu_id=2
18347          <idle>-0     (-----) [006] dnh2 24568.378916: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
18348          <idle>-0     (-----) [006] .n.1 24568.378928: cpu_idle: state=4294967295 cpu_id=6
18349          <idle>-0     (-----) [006] d..2 24568.378939: 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
18350         sugov:4-560   (  560) [006] d..2 24568.378961: 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
18351          <idle>-0     (-----) [006] d..1 24568.378972: cpu_idle: state=2 cpu_id=6
18352          <idle>-0     (-----) [003] d.h2 24568.513645: sched_waking: comm=CCodecWatchdog pid=25015 prio=120 target_cpu=003
18353          <idle>-0     (-----) [000] d..2 24568.513787: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18354          <idle>-0     (-----) [003] dnh3 24568.513917: sched_wakeup: comm=CCodecWatchdog pid=25015 prio=120 target_cpu=003
18355          <idle>-0     (-----) [000] dn.3 24568.513917: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18356          <idle>-0     (-----) [000] .n.1 24568.513957: cpu_idle: state=4294967295 cpu_id=0
18357          <idle>-0     (-----) [001] d.h2 24568.513957: sched_waking: comm=CCodecWatchdog pid=24367 prio=120 target_cpu=001
18358          <idle>-0     (-----) [001] dnh3 24568.514228: sched_wakeup: comm=CCodecWatchdog pid=24367 prio=120 target_cpu=001
18359          <idle>-0     (-----) [001] .n.1 24568.514257: cpu_idle: state=4294967295 cpu_id=1
18360          <idle>-0     (-----) [003] dnh3 24568.514316: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
18361          <idle>-0     (-----) [001] d..2 24568.514350: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=24367 next_prio=120
18362          <idle>-0     (-----) [003] dnh3 24568.514389: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18363          <idle>-0     (-----) [003] dnh4 24568.514445: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18364          <idle>-0     (-----) [000] dns3 24568.514448: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
18365          <idle>-0     (-----) [003] .n.1 24568.514459: cpu_idle: state=4294967295 cpu_id=3
18366          <idle>-0     (-----) [003] d..2 24568.514504: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=25015 next_prio=120
18367          <idle>-0     (-----) [000] dns4 24568.514593: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
18368          <idle>-0     (-----) [000] dns3 24568.514637: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
18369          <idle>-0     (-----) [000] dns4 24568.514666: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
18370          <idle>-0     (-----) [000] d..2 24568.514829: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
18371          <idle>-0     (-----) [002] .n.1 24568.514829: cpu_idle: state=4294967295 cpu_id=2
18372          <idle>-0     (-----) [002] d..2 24568.514882: 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
18373  CCodecWatchdog-24367 (24151) [001] d..2 24568.514901: sched_switch: prev_comm=CCodecWatchdog prev_pid=24367 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18374  CCodecWatchdog-25015 (24655) [003] d..2 24568.514903: sched_switch: prev_comm=CCodecWatchdog prev_pid=25015 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
18375         sugov:0-559   (  559) [002] d..2 24568.514960: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18376          <idle>-0     (-----) [001] d..1 24568.514980: cpu_idle: state=0 cpu_id=1
18377          <idle>-0     (-----) [003] d..1 24568.514980: cpu_idle: state=2 cpu_id=3
18378     kworker/0:1-13012 (13012) [000] d..2 24568.515088: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
18379     ksoftirqd/0-3     (    3) [000] d..2 24568.515137: 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
18380          <idle>-0     (-----) [000] d..1 24568.515163: cpu_idle: state=2 cpu_id=0
18381          <idle>-0     (-----) [006] dnh2 24568.515548: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
18382          <idle>-0     (-----) [006] .n.1 24568.515568: cpu_idle: state=4294967295 cpu_id=6
18383          <idle>-0     (-----) [006] d..2 24568.515591: 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
18384         sugov:4-560   (  560) [006] d..2 24568.515640: 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
18385  kworker/u16:15-18488 (18488) [002] d..2 24568.515652: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18386          <idle>-0     (-----) [006] d..1 24568.515661: cpu_idle: state=2 cpu_id=6
18387          <idle>-0     (-----) [002] d..1 24568.515681: cpu_idle: state=2 cpu_id=2
18388          <idle>-0     (-----) [001] d.h2 24568.520592: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=001
18389          <idle>-0     (-----) [001] dnh3 24568.520631: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=001
18390          <idle>-0     (-----) [001] dnh3 24568.520725: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
18391          <idle>-0     (-----) [001] dnh3 24568.520745: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18392          <idle>-0     (-----) [001] dnh4 24568.520760: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18393          <idle>-0     (-----) [001] .n.1 24568.520772: cpu_idle: state=4294967295 cpu_id=1
18394          <idle>-0     (-----) [001] d..2 24568.520794: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=bluetooth@1.0-s next_pid=24508 next_prio=98
18395          <idle>-0     (-----) [002] .n.1 24568.521069: cpu_idle: state=4294967295 cpu_id=2
18396          <idle>-0     (-----) [002] d..2 24568.521100: 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
18397         sugov:0-559   (  559) [002] d..2 24568.521157: 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
18398 bluetooth@1.0-s-24508 (  759) [001] d..2 24568.521161: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18399          <idle>-0     (-----) [002] d..1 24568.521177: cpu_idle: state=2 cpu_id=2
18400          <idle>-0     (-----) [001] d..1 24568.521187: cpu_idle: state=2 cpu_id=1
18401          <idle>-0     (-----) [006] dnh2 24568.521796: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
18402          <idle>-0     (-----) [006] .n.1 24568.521806: cpu_idle: state=4294967295 cpu_id=6
18403          <idle>-0     (-----) [006] d..2 24568.521818: 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
18404         sugov:4-560   (  560) [006] d..2 24568.521839: 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
18405          <idle>-0     (-----) [006] d..1 24568.521848: cpu_idle: state=2 cpu_id=6
18406          <idle>-0     (-----) [000] d.h2 24568.697602: sched_waking: comm=PowerManagerSer pid=24006 prio=116 target_cpu=000
18407          <idle>-0     (-----) [000] dnh3 24568.697941: sched_wakeup: comm=PowerManagerSer pid=24006 prio=116 target_cpu=000
18408          <idle>-0     (-----) [000] dnh3 24568.698528: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
18409          <idle>-0     (-----) [000] dnh3 24568.698614: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18410          <idle>-0     (-----) [000] dnh4 24568.698691: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18411          <idle>-0     (-----) [000] .n.1 24568.698734: cpu_idle: state=4294967295 cpu_id=0
18412          <idle>-0     (-----) [000] d..2 24568.698895: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=24006 next_prio=116
18413          <idle>-0     (-----) [002] .n.1 24568.699107: cpu_idle: state=4294967295 cpu_id=2
18414          <idle>-0     (-----) [002] d..2 24568.699173: 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
18415         sugov:0-559   (  559) [002] d..2 24568.699394: 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
18416          <idle>-0     (-----) [002] d..2 24568.699415: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
18417          <idle>-0     (-----) [002] dn.3 24568.699448: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
18418          <idle>-0     (-----) [002] d..2 24568.699465: 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
18419     ksoftirqd/2-26    (   26) [002] d.s2 24568.699545: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
18420     ksoftirqd/2-26    (   26) [002] d.s3 24568.699610: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
18421     ksoftirqd/2-26    (   26) [002] d.s2 24568.699656: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
18422     ksoftirqd/2-26    (   26) [002] d.s3 24568.699688: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
18423     ksoftirqd/2-26    (   26) [002] d..2 24568.699730: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
18424 PowerManagerSer-24006 (23968) [000] d..2 24568.699731: sched_switch: prev_comm=PowerManagerSer prev_pid=24006 prev_prio=116 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18425          <idle>-0     (-----) [006] dnh2 24568.699761: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
18426          <idle>-0     (-----) [006] .n.1 24568.699783: cpu_idle: state=4294967295 cpu_id=6
18427          <idle>-0     (-----) [006] d..2 24568.699807: 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
18428          <idle>-0     (-----) [000] d..1 24568.699811: cpu_idle: state=2 cpu_id=0
18429         sugov:4-560   (  560) [006] d..2 24568.699851: 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
18430          <idle>-0     (-----) [006] d..1 24568.699876: cpu_idle: state=2 cpu_id=6
18431     kworker/2:0-12895 (12895) [002] d..2 24568.699949: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18432  kworker/u16:15-18488 (18488) [002] d..2 24568.700644: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18433          <idle>-0     (-----) [002] d..1 24568.700675: cpu_idle: state=2 cpu_id=2
18434          <idle>-0     (-----) [000] ...1 24568.802662: cpu_idle: state=4294967295 cpu_id=0
18435          <idle>-0     (-----) [000] d..1 24568.802766: cpu_idle: state=2 cpu_id=0
18436          <idle>-0     (-----) [001] d.H3 24568.802956: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
18437          <idle>-0     (-----) [001] d.H3 24568.803082: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18438          <idle>-0     (-----) [001] d.H4 24568.803176: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18439          <idle>-0     (-----) [001] d.s2 24568.803221: sched_waking: comm=f2fs_discard-25 pid=678 prio=120 target_cpu=001
18440          <idle>-0     (-----) [001] dns3 24568.803388: sched_wakeup: comm=f2fs_discard-25 pid=678 prio=120 target_cpu=001
18441          <idle>-0     (-----) [001] dns3 24568.803431: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
18442          <idle>-0     (-----) [002] .n.1 24568.803562: cpu_idle: state=4294967295 cpu_id=2
18443          <idle>-0     (-----) [001] dns4 24568.803566: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
18444          <idle>-0     (-----) [001] dns3 24568.803607: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
18445          <idle>-0     (-----) [001] dns4 24568.803636: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
18446          <idle>-0     (-----) [002] d..2 24568.803675: 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
18447          <idle>-0     (-----) [001] .n.1 24568.803760: cpu_idle: state=4294967295 cpu_id=1
18448          <idle>-0     (-----) [001] d..2 24568.803814: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=f2fs_discard-25 next_pid=678 next_prio=120
18449         sugov:0-559   (  559) [002] d..2 24568.803897: 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
18450          <idle>-0     (-----) [002] d..1 24568.803934: cpu_idle: state=2 cpu_id=2
18451<...>-678 ( 678) [001] d..2 24568.803976: sched_switch: prev_comm=f2fs_discard-25 prev_pid=678 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
18452     kworker/1:1-13091 (13091) [001] d..2 24568.804160: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18453          <idle>-0     (-----) [006] dnh2 24568.804235: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
18454          <idle>-0     (-----) [006] .n.1 24568.804257: cpu_idle: state=4294967295 cpu_id=6
18455          <idle>-0     (-----) [006] d..2 24568.804282: 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
18456         sugov:4-560   (  560) [006] d..2 24568.804334: 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
18457          <idle>-0     (-----) [006] d..1 24568.804360: cpu_idle: state=2 cpu_id=6
18458  kworker/u16:15-18488 (18488) [001] d..2 24568.804951: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18459          <idle>-0     (-----) [001] d..1 24568.804986: cpu_idle: state=2 cpu_id=1
18460          <idle>-0     (-----) [000] ...1 24568.829332: cpu_idle: state=4294967295 cpu_id=0
18461          <idle>-0     (-----) [000] d..1 24568.829432: cpu_idle: state=2 cpu_id=0
18462          <idle>-0     (-----) [001] d.H3 24568.829657: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
18463          <idle>-0     (-----) [001] d.H3 24568.829830: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18464          <idle>-0     (-----) [001] d.H4 24568.829929: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18465          <idle>-0     (-----) [001] d.s3 24568.829991: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
18466          <idle>-0     (-----) [001] dns4 24568.830079: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
18467          <idle>-0     (-----) [001] dns3 24568.830110: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
18468          <idle>-0     (-----) [001] dns4 24568.830211: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
18469          <idle>-0     (-----) [002] .n.1 24568.830311: cpu_idle: state=4294967295 cpu_id=2
18470          <idle>-0     (-----) [001] .n.1 24568.830366: cpu_idle: state=4294967295 cpu_id=1
18471          <idle>-0     (-----) [002] d..2 24568.830418: 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
18472          <idle>-0     (-----) [001] d..2 24568.830425: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
18473         sugov:0-559   (  559) [002] d..2 24568.830638: 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
18474          <idle>-0     (-----) [002] d..1 24568.830676: cpu_idle: state=2 cpu_id=2
18475     kworker/1:1-13091 (13091) [001] d..3 24568.830744: sched_waking: comm=kworker/1:0 pid=13068 prio=120 target_cpu=001
18476     kworker/1:1-13091 (13091) [001] d..3 24568.830791: sched_wakeup: comm=kworker/1:0 pid=13068 prio=120 target_cpu=001
18477     kworker/1:1-13091 (13091) [001] d..2 24568.830805: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=D ==> next_comm=kworker/1:0 next_pid=13068 next_prio=120
18478<...>-13068 ( 13068) [001] d..2 24568.830877: sched_switch: prev_comm=kworker/1:0 prev_pid=13068 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18479          <idle>-0     (-----) [004] dnh2 24568.830987: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
18480          <idle>-0     (-----) [004] .n.1 24568.831005: cpu_idle: state=4294967295 cpu_id=4
18481          <idle>-0     (-----) [004] d..2 24568.831028: 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
18482         sugov:4-560   (  560) [004] d..2 24568.831080: 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
18483          <idle>-0     (-----) [004] d..1 24568.831106: cpu_idle: state=2 cpu_id=4
18484  kworker/u16:15-18488 (18488) [001] d..2 24568.831457: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18485          <idle>-0     (-----) [001] d..1 24568.831489: cpu_idle: state=2 cpu_id=1
18486          <idle>-0     (-----) [000] d.h3 24568.835396: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
18487          <idle>-0     (-----) [000] dnh4 24568.835448: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
18488          <idle>-0     (-----) [000] .n.1 24568.835538: cpu_idle: state=4294967295 cpu_id=0
18489          <idle>-0     (-----) [000] d..2 24568.835578: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
18490     kworker/0:1-13012 (13012) [000] d..2 24568.835610: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
18491     kworker/0:1-13012 (13012) [000] d..3 24568.835634: sched_blocked_reason: pid=13091 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
18492     kworker/0:1-13012 (13012) [000] d..3 24568.835653: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
18493     kworker/0:1-13012 (13012) [000] d..2 24568.835718: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18494          <idle>-0     (-----) [000] d..2 24568.835734: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18495          <idle>-0     (-----) [000] dn.3 24568.835762: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18496          <idle>-0     (-----) [000] d..2 24568.835777: 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
18497     ksoftirqd/0-3     (    3) [000] d..2 24568.835834: 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
18498          <idle>-0     (-----) [000] d..1 24568.835852: cpu_idle: state=2 cpu_id=0
18499          <idle>-0     (-----) [001] .n.1 24568.835973: cpu_idle: state=4294967295 cpu_id=1
18500          <idle>-0     (-----) [001] d..2 24568.836010: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
18501     kworker/1:1-13091 (13091) [001] d..2 24568.836213: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18502          <idle>-0     (-----) [001] d..1 24568.836233: cpu_idle: state=2 cpu_id=1
18503          <idle>-0     (-----) [000] ...1 24569.015991: cpu_idle: state=4294967295 cpu_id=0
18504          <idle>-0     (-----) [000] d..1 24569.016089: cpu_idle: state=0 cpu_id=0
18505          <idle>-0     (-----) [002] d.H3 24569.016306: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
18506          <idle>-0     (-----) [003] d.s3 24569.016307: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
18507          <idle>-0     (-----) [002] d.H3 24569.016433: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18508          <idle>-0     (-----) [002] dnH4 24569.016507: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18509          <idle>-0     (-----) [002] dns3 24569.016544: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
18510          <idle>-0     (-----) [002] dns4 24569.016594: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
18511          <idle>-0     (-----) [003] dns4 24569.016595: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
18512          <idle>-0     (-----) [003] .n.1 24569.016707: cpu_idle: state=4294967295 cpu_id=3
18513          <idle>-0     (-----) [002] .n.1 24569.016725: cpu_idle: state=4294967295 cpu_id=2
18514          <idle>-0     (-----) [002] d..2 24569.016787: 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
18515          <idle>-0     (-----) [003] d..2 24569.016796: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18516  kworker/u16:15-18488 (18488) [003] d..2 24569.016829: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
18517         sugov:0-559   (  559) [002] d..2 24569.016870: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
18518  kworker/u16:15-18488 (18488) [003] d..3 24569.016926: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
18519     kworker/2:0-12895 (12895) [002] d..2 24569.017132: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
18520          <idle>-0     (-----) [004] dnh2 24569.017559: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
18521          <idle>-0     (-----) [004] dnh3 24569.017667: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18522          <idle>-0     (-----) [004] .n.1 24569.017702: cpu_idle: state=4294967295 cpu_id=4
18523          <idle>-0     (-----) [000] dnh2 24569.017720: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
18524          <idle>-0     (-----) [004] d..2 24569.017729: 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
18525          <idle>-0     (-----) [000] .n.1 24569.017729: cpu_idle: state=4294967295 cpu_id=0
18526          <idle>-0     (-----) [000] d..2 24569.017753: 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
18527         sugov:4-560   (  560) [004] d..2 24569.017799: 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
18528         sugov:0-559   (  559) [000] d..2 24569.017818: 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
18529          <idle>-0     (-----) [004] d..1 24569.017825: cpu_idle: state=2 cpu_id=4
18530          <idle>-0     (-----) [000] d..1 24569.017834: cpu_idle: state=0 cpu_id=0
18531  kworker/u16:16-25995 (25995) [002] d..2 24569.017952: 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
18532          <idle>-0     (-----) [002] d..1 24569.017983: cpu_idle: state=2 cpu_id=2
18533          <idle>-0     (-----) [000] ...1 24569.019880: cpu_idle: state=4294967295 cpu_id=0
18534          <idle>-0     (-----) [000] d..1 24569.019888: cpu_idle: state=2 cpu_id=0
18535  kworker/u16:15-18488 (18488) [003] d.s3 24569.024261: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
18536  kworker/u16:15-18488 (18488) [003] dns4 24569.024336: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
18537  kworker/u16:15-18488 (18488) [003] d..2 24569.024363: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
18538  kworker/u16:16-25995 (25995) [003] d..2 24569.025067: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18539  kworker/u16:15-18488 (18488) [003] d.s2 24569.025693: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
18540  kworker/u16:15-18488 (18488) [003] d.s3 24569.025730: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
18541  kworker/u16:15-18488 (18488) [003] dns3 24569.025742: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
18542  kworker/u16:15-18488 (18488) [003] d..2 24569.025764: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
18543  kworker/u16:16-25995 (25995) [003] d..2 24569.025808: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18544  kworker/u16:15-18488 (18488) [003] d..2 24569.026400: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
18545  kworker/u16:15-18488 (18488) [003] dn.3 24569.026479: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
18546  kworker/u16:15-18488 (18488) [003] d..2 24569.026499: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=rcuop/2 next_pid=29 next_prio=120
18547         rcuop/2-29    (   29) [003] d..2 24569.026521: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
18548         rcuop/2-29    (   29) [003] d..3 24569.026579: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
18549         rcuop/2-29    (   29) [003] d..2 24569.026599: 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
18550     rcu_preempt-7     (    7) [003] d..2 24569.026639: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18551  kworker/u16:15-18488 (18488) [003] d..4 24569.027214: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18552  kworker/u16:15-18488 (18488) [003] dn.5 24569.027254: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18553  kworker/u16:15-18488 (18488) [003] dn.3 24569.027382: sched_waking: comm=kworker/3:1H pid=697 prio=100 target_cpu=003
18554  kworker/u16:15-18488 (18488) [003] dn.4 24569.027416: sched_wakeup: comm=kworker/3:1H pid=697 prio=100 target_cpu=003
18555  kworker/u16:15-18488 (18488) [003] d..2 24569.027440: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
18556     kworker/3:1-12662 (12662) [003] dns2 24569.027602: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
18557     kworker/3:1-12662 (12662) [003] dns3 24569.027632: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
18558     kworker/3:1-12662 (12662) [003] d..2 24569.027660: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=R+ ==> next_comm=kworker/3:1H next_pid=697 next_prio=100
18559<...>-697 ( 697) [003] d..2 24569.027695: 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
18560     kworker/3:1-12662 (12662) [003] d..2 24569.028098: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
18561  kworker/u16:16-25995 (25995) [003] .... 24569.028145: clk_set_rate: l3_cluster0_vote_clk 480000000
18562  kworker/u16:16-25995 (25995) [003] .... 24569.028164: clk_set_rate: l3_clk 480000000
18563  kworker/u16:16-25995 (25995) [003] d..2 24569.028259: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18564  kworker/u16:15-18488 (18488) [003] d..2 24569.028303: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
18565          <idle>-0     (-----) [003] d..1 24569.028322: cpu_idle: state=0 cpu_id=3
18566          <idle>-0     (-----) [003] d.s3 24569.028462: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18567          <idle>-0     (-----) [003] d.s4 24569.028472: sched_blocked_reason: pid=12662 iowait=0 caller=wait_for_tx_done+0x34/0x120
18568          <idle>-0     (-----) [003] dns4 24569.028479: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18569          <idle>-0     (-----) [003] .n.1 24569.028489: cpu_idle: state=4294967295 cpu_id=3
18570          <idle>-0     (-----) [003] d..2 24569.028500: 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
18571     kworker/3:1-12662 (12662) [003] d..2 24569.028681: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
18572          <idle>-0     (-----) [003] d.s4 24569.028723: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18573          <idle>-0     (-----) [003] d.s5 24569.028732: sched_blocked_reason: pid=12662 iowait=0 caller=wait_for_tx_done+0x34/0x120
18574          <idle>-0     (-----) [003] dns5 24569.028738: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18575          <idle>-0     (-----) [003] d..2 24569.028753: 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
18576     kworker/3:1-12662 (12662) [003] d..1 24569.028792: clk_enable: gcc_ufs_phy_axi_clk_src
18577     kworker/3:1-12662 (12662) [003] d..1 24569.028814: clk_enable: gcc_ufs_phy_axi_clk
18578     kworker/3:1-12662 (12662) [003] d..1 24569.028831: clk_enable: gcc_ufs_phy_axi_hw_ctl_clk
18579     kworker/3:1-12662 (12662) [003] d..1 24569.028847: clk_enable: gcc_aggre_ufs_phy_axi_clk
18580     kworker/3:1-12662 (12662) [003] d..1 24569.028858: clk_enable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
18581     kworker/3:1-12662 (12662) [003] d..1 24569.028872: clk_enable: gcc_ufs_phy_ahb_clk
18582     kworker/3:1-12662 (12662) [003] d..1 24569.028890: clk_enable: gcc_ufs_phy_unipro_core_clk_src
18583     kworker/3:1-12662 (12662) [003] d..1 24569.028901: clk_enable: gcc_ufs_phy_unipro_core_clk
18584     kworker/3:1-12662 (12662) [003] d..1 24569.028910: clk_enable: gcc_ufs_phy_unipro_core_hw_ctl_clk
18585     kworker/3:1-12662 (12662) [003] d..1 24569.028925: clk_enable: gcc_ufs_phy_ice_core_clk_src
18586     kworker/3:1-12662 (12662) [003] d..1 24569.028934: clk_enable: gcc_ufs_phy_ice_core_clk
18587     kworker/3:1-12662 (12662) [003] d..1 24569.028943: clk_enable: gcc_ufs_phy_ice_core_hw_ctl_clk
18588     kworker/3:1-12662 (12662) [003] d..1 24569.028956: clk_enable: gcc_ufs_phy_tx_symbol_0_clk
18589     kworker/3:1-12662 (12662) [003] d..1 24569.029469: clk_enable: gcc_ufs_phy_rx_symbol_0_clk
18590     kworker/3:1-12662 (12662) [003] d..1 24569.029981: clk_enable: gcc_ufs_phy_rx_symbol_1_clk
18591     kworker/3:1-12662 (12662) [003] d..1 24569.030502: clk_enable: gcc_ufs_mem_clkref_clk
18592     kworker/3:1-12662 (12662) [003] d..1 24569.030519: clk_enable: gcc_ufs_phy_phy_aux_clk_src
18593     kworker/3:1-12662 (12662) [003] d..1 24569.030530: clk_enable: gcc_ufs_phy_phy_aux_clk
18594     kworker/3:1-12662 (12662) [003] d..1 24569.030539: clk_enable: gcc_ufs_phy_phy_aux_hw_ctl_clk
18595     kworker/3:1-12662 (12662) [003] d..2 24569.030701: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
18596          <idle>-0     (-----) [003] d..1 24569.030715: cpu_idle: state=0 cpu_id=3
18597          <idle>-0     (-----) [003] d.s3 24569.030794: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18598          <idle>-0     (-----) [003] d.s4 24569.030804: sched_blocked_reason: pid=12662 iowait=0 caller=wait_for_tx_done+0x34/0x120
18599          <idle>-0     (-----) [003] dns4 24569.030810: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18600          <idle>-0     (-----) [003] .n.1 24569.030819: cpu_idle: state=4294967295 cpu_id=3
18601          <idle>-0     (-----) [003] d..2 24569.030830: 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
18602     kworker/3:1-12662 (12662) [003] d.s2 24569.030943: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
18603     kworker/3:1-12662 (12662) [003] dns3 24569.030965: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
18604     kworker/3:1-12662 (12662) [003] dns2 24569.031003: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
18605     kworker/3:1-12662 (12662) [003] dns3 24569.031027: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
18606     kworker/3:1-12662 (12662) [003] d..2 24569.031042: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
18607     rcu_preempt-7     (    7) [003] d..2 24569.031075: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
18608     rcu_preempt-7     (    7) [003] d..3 24569.031094: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
18609     rcu_preempt-7     (    7) [003] d..2 24569.031110: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
18610     ksoftirqd/3-34    (   34) [003] d..2 24569.031152: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
18611         rcuop/2-29    (   29) [003] d..2 24569.031160: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
18612         rcuop/2-29    (   29) [003] d..3 24569.031216: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
18613         rcuop/2-29    (   29) [003] d..2 24569.031230: 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
18614         rcuop/3-37    (   37) [003] d..2 24569.031261: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
18615     kworker/3:1-12662 (12662) [003] d..2 24569.031366: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
18616          <idle>-0     (-----) [003] d..1 24569.031387: cpu_idle: state=2 cpu_id=3
18617          <idle>-0     (-----) [003] d.s3 24569.031978: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18618          <idle>-0     (-----) [003] d.s4 24569.031992: sched_blocked_reason: pid=12662 iowait=0 caller=wait_for_tx_done+0x34/0x120
18619          <idle>-0     (-----) [003] dns4 24569.031999: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18620          <idle>-0     (-----) [003] .n.1 24569.032010: cpu_idle: state=4294967295 cpu_id=3
18621          <idle>-0     (-----) [003] d..2 24569.032029: 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
18622     kworker/3:1-12662 (12662) [003] d..2 24569.032166: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
18623          <idle>-0     (-----) [003] d..1 24569.032184: cpu_idle: state=2 cpu_id=3
18624          <idle>-0     (-----) [001] d.h4 24569.035460: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18625          <idle>-0     (-----) [001] d.h5 24569.035482: sched_blocked_reason: pid=12662 iowait=0 caller=ufshcd_uic_pwr_ctrl+0x3dc/0x758
18626          <idle>-0     (-----) [001] d.h5 24569.035495: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18627          <idle>-0     (-----) [001] d..2 24569.035511: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
18628          <idle>-0     (-----) [001] dn.3 24569.035532: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
18629          <idle>-0     (-----) [001] .n.1 24569.035541: cpu_idle: state=4294967295 cpu_id=1
18630          <idle>-0     (-----) [001] d..2 24569.035569: 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
18631          <idle>-0     (-----) [000] ...1 24569.035581: cpu_idle: state=4294967295 cpu_id=0
18632     ksoftirqd/1-18    (   18) [001] d.s2 24569.035590: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
18633          <idle>-0     (-----) [000] d..1 24569.035593: cpu_idle: state=2 cpu_id=0
18634     ksoftirqd/1-18    (   18) [001] d.s3 24569.035641: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
18635     ksoftirqd/1-18    (   18) [001] d..2 24569.035663: 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
18636          <idle>-0     (-----) [003] .n.1 24569.035671: cpu_idle: state=4294967295 cpu_id=3
18637          <idle>-0     (-----) [003] d..2 24569.035704: 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
18638  kworker/u16:16-25995 (25995) [001] d..2 24569.035813: 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
18639          <idle>-0     (-----) [001] d..1 24569.035834: cpu_idle: state=2 cpu_id=1
18640     kworker/3:1-12662 (12662) [003] d..3 24569.035840: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
18641     kworker/3:1-12662 (12662) [003] d..4 24569.035898: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
18642     kworker/3:1-12662 (12662) [003] d..2 24569.035947: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
18643  kworker/u16:16-25995 (25995) [003] d..2 24569.036036: 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
18644          <idle>-0     (-----) [003] d..1 24569.036054: cpu_idle: state=0 cpu_id=3
18645          <idle>-0     (-----) [000] ...1 24569.036174: cpu_idle: state=4294967295 cpu_id=0
18646          <idle>-0     (-----) [000] d..1 24569.036187: cpu_idle: state=0 cpu_id=0
18647          <idle>-0     (-----) [001] ...1 24569.036219: cpu_idle: state=4294967295 cpu_id=1
18648          <idle>-0     (-----) [001] d..1 24569.036230: cpu_idle: state=0 cpu_id=1
18649          <idle>-0     (-----) [002] ...1 24569.036254: cpu_idle: state=4294967295 cpu_id=2
18650          <idle>-0     (-----) [002] d..1 24569.036265: cpu_idle: state=0 cpu_id=2
18651          <idle>-0     (-----) [001] d.h4 24569.036935: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
18652          <idle>-0     (-----) [001] d.h5 24569.036964: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
18653          <idle>-0     (-----) [003] .n.1 24569.036970: cpu_idle: state=4294967295 cpu_id=3
18654          <idle>-0     (-----) [003] d..2 24569.036985: 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
18655  kworker/u16:16-25995 (25995) [003] d..2 24569.037019: 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
18656          <idle>-0     (-----) [001] d.s4 24569.037021: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18657          <idle>-0     (-----) [001] d.s5 24569.037031: sched_blocked_reason: pid=12662 iowait=1 caller=blk_execute_rq+0xc0/0x118
18658          <idle>-0     (-----) [003] d..1 24569.037032: cpu_idle: state=0 cpu_id=3
18659          <idle>-0     (-----) [001] d.s5 24569.037040: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18660          <idle>-0     (-----) [003] .n.1 24569.037046: cpu_idle: state=4294967295 cpu_id=3
18661          <idle>-0     (-----) [003] d..2 24569.037060: 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
18662          <idle>-0     (-----) [001] ...1 24569.037075: cpu_idle: state=4294967295 cpu_id=1
18663          <idle>-0     (-----) [001] d..1 24569.037082: cpu_idle: state=0 cpu_id=1
18664     kworker/3:1-12662 (12662) [003] d..2 24569.037126: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
18665          <idle>-0     (-----) [001] d.h4 24569.037135: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18666          <idle>-0     (-----) [003] d..1 24569.037139: cpu_idle: state=0 cpu_id=3
18667          <idle>-0     (-----) [001] d.h5 24569.037145: sched_blocked_reason: pid=12662 iowait=0 caller=ufshcd_exec_dev_cmd+0x3a4/0x74c
18668          <idle>-0     (-----) [001] d.h5 24569.037155: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18669          <idle>-0     (-----) [003] .n.1 24569.037162: cpu_idle: state=4294967295 cpu_id=3
18670          <idle>-0     (-----) [001] ...1 24569.037170: cpu_idle: state=4294967295 cpu_id=1
18671          <idle>-0     (-----) [003] d..2 24569.037175: 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
18672          <idle>-0     (-----) [001] d..1 24569.037177: cpu_idle: state=0 cpu_id=1
18673     kworker/3:1-12662 (12662) [003] d..3 24569.037270: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
18674     kworker/3:1-12662 (12662) [003] d..4 24569.037295: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
18675     kworker/3:1-12662 (12662) [003] d.H2 24569.037653: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
18676     kworker/3:1-12662 (12662) [003] d.H2 24569.037674: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
18677     kworker/3:1-12662 (12662) [003] d.H3 24569.037694: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
18678          <idle>-0     (-----) [000] .n.1 24569.037699: cpu_idle: state=4294967295 cpu_id=0
18679          <idle>-0     (-----) [000] d..2 24569.037721: 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
18680         sugov:0-559   (  559) [000] d..2 24569.037811: 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
18681  kworker/u16:16-25995 (25995) [000] d..2 24569.037820: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18682  kworker/u16:16-25995 (25995) [000] d..3 24569.037878: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
18683  kworker/u16:16-25995 (25995) [000] .... 24569.037946: clk_set_rate: l3_cluster0_vote_clk 403200000
18684  kworker/u16:16-25995 (25995) [000] .... 24569.037953: clk_set_rate: l3_clk 403200000
18685  kworker/u16:16-25995 (25995) [000] d..2 24569.037995: 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
18686  kworker/u16:10-23868 (23868) [000] d..2 24569.038040: 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
18687          <idle>-0     (-----) [000] d..1 24569.038058: cpu_idle: state=0 cpu_id=0
18688          <idle>-0     (-----) [004] dnh2 24569.038412: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
18689          <idle>-0     (-----) [004] .n.1 24569.038420: cpu_idle: state=4294967295 cpu_id=4
18690          <idle>-0     (-----) [004] d..2 24569.038432: 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
18691         sugov:4-560   (  560) [004] d..2 24569.038454: 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
18692          <idle>-0     (-----) [004] d..1 24569.038464: cpu_idle: state=2 cpu_id=4
18693     kworker/3:1-12662 (12662) [003] d..2 24569.038465: 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
18694          <idle>-0     (-----) [003] d..1 24569.038485: cpu_idle: state=0 cpu_id=3
18695          <idle>-0     (-----) [001] ...1 24569.040390: cpu_idle: state=4294967295 cpu_id=1
18696          <idle>-0     (-----) [001] d..1 24569.040410: cpu_idle: state=0 cpu_id=1
18697          <idle>-0     (-----) [000] d.h2 24569.041085: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
18698          <idle>-0     (-----) [000] dnh3 24569.041103: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
18699          <idle>-0     (-----) [000] .n.1 24569.041116: cpu_idle: state=4294967295 cpu_id=0
18700          <idle>-0     (-----) [000] d..2 24569.041132: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
18701 irq/79-1436400.-24613 (24613) [000] d..2 24569.041334: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
18702          <idle>-0     (-----) [000] d..2 24569.041341: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18703          <idle>-0     (-----) [003] d.s3 24569.041352: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
18704          <idle>-0     (-----) [000] dn.3 24569.041363: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18705          <idle>-0     (-----) [003] d.s4 24569.041377: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
18706          <idle>-0     (-----) [000] d..2 24569.041385: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
18707          <idle>-0     (-----) [003] ...1 24569.041398: cpu_idle: state=4294967295 cpu_id=3
18708          <idle>-0     (-----) [003] d..1 24569.041412: cpu_idle: state=0 cpu_id=3
18709 irq/79-1436400.-24613 (24613) [000] d..2 24569.041422: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
18710     ksoftirqd/0-3     (    3) [000] d..2 24569.041463: 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
18711          <idle>-0     (-----) [000] d..1 24569.041479: cpu_idle: state=0 cpu_id=0
18712          <idle>-0     (-----) [001] ...1 24569.042080: cpu_idle: state=4294967295 cpu_id=1
18713          <idle>-0     (-----) [001] d..1 24569.042088: cpu_idle: state=0 cpu_id=1
18714          <idle>-0     (-----) [001] d..2 24569.045304: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
18715          <idle>-0     (-----) [001] dn.3 24569.045323: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
18716          <idle>-0     (-----) [001] .n.1 24569.045330: cpu_idle: state=4294967295 cpu_id=1
18717          <idle>-0     (-----) [001] d..2 24569.045352: 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
18718     ksoftirqd/1-18    (   18) [001] d.s2 24569.045365: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
18719     ksoftirqd/1-18    (   18) [001] d.s3 24569.045418: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18720     ksoftirqd/1-18    (   18) [001] d..2 24569.045437: 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
18721  kworker/u16:10-23868 (23868) [001] d..2 24569.045712: 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
18722          <idle>-0     (-----) [003] d.s3 24569.045728: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18723          <idle>-0     (-----) [001] d..1 24569.045733: cpu_idle: state=0 cpu_id=1
18724          <idle>-0     (-----) [003] d.s4 24569.045742: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
18725          <idle>-0     (-----) [003] d.s4 24569.045754: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18726          <idle>-0     (-----) [001] .n.1 24569.045761: cpu_idle: state=4294967295 cpu_id=1
18727          <idle>-0     (-----) [003] ...1 24569.045767: cpu_idle: state=4294967295 cpu_id=3
18728          <idle>-0     (-----) [003] d..1 24569.045774: cpu_idle: state=0 cpu_id=3
18729          <idle>-0     (-----) [001] d..2 24569.045777: 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
18730  kworker/u16:10-23868 (23868) [001] d..2 24569.045814: 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
18731          <idle>-0     (-----) [001] d..1 24569.045828: cpu_idle: state=0 cpu_id=1
18732          <idle>-0     (-----) [001] d..2 24569.047733: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
18733          <idle>-0     (-----) [001] dn.3 24569.047748: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
18734          <idle>-0     (-----) [001] .n.1 24569.047754: cpu_idle: state=4294967295 cpu_id=1
18735          <idle>-0     (-----) [001] d..2 24569.047771: 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
18736     ksoftirqd/1-18    (   18) [001] d.s2 24569.047780: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18737     ksoftirqd/1-18    (   18) [001] d.s3 24569.047804: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18738     ksoftirqd/1-18    (   18) [001] d..2 24569.047818: 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
18739  kworker/u16:10-23868 (23868) [001] .... 24569.047848: clk_set_rate: l3_cluster0_vote_clk 300000000
18740  kworker/u16:10-23868 (23868) [001] .... 24569.047853: clk_set_rate: l3_clk 300000000
18741  kworker/u16:10-23868 (23868) [001] d..2 24569.047918: 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
18742          <idle>-0     (-----) [001] d..1 24569.047937: cpu_idle: state=0 cpu_id=1
18743          <idle>-0     (-----) [001] d.h4 24569.048552: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18744          <idle>-0     (-----) [001] dnh5 24569.048574: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18745          <idle>-0     (-----) [001] dns3 24569.049024: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
18746          <idle>-0     (-----) [001] dns4 24569.049081: sched_blocked_reason: pid=18488 iowait=1 caller=write_checkpoint+0x1544/0x1dec
18747          <idle>-0     (-----) [001] dns4 24569.049089: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
18748          <idle>-0     (-----) [001] dns4 24569.049127: sched_waking: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
18749          <idle>-0     (-----) [001] dns5 24569.049151: sched_wakeup: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
18750          <idle>-0     (-----) [001] .n.1 24569.049173: cpu_idle: state=4294967295 cpu_id=1
18751          <idle>-0     (-----) [001] d..2 24569.049194: 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
18752    kworker/1:1H-533   (  533) [001] d..2 24569.049221: sched_switch: prev_comm=kworker/1:1H prev_pid=533 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18753  kworker/u16:10-23868 (23868) [001] d..2 24569.049241: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18754  kworker/u16:15-18488 (18488) [001] d..3 24569.049333: sched_waking: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
18755  kworker/u16:15-18488 (18488) [001] dn.4 24569.049349: sched_wakeup: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
18756  kworker/u16:15-18488 (18488) [001] d..2 24569.049364: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1H next_pid=533 next_prio=100
18757    kworker/1:1H-533   (  533) [001] d..3 24569.049393: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18758    kworker/1:1H-533   (  533) [001] d..4 24569.049417: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18759    kworker/1:1H-533   (  533) [001] d..2 24569.049443: sched_switch: prev_comm=kworker/1:1H prev_pid=533 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18760  kworker/u16:10-23868 (23868) [001] d..2 24569.049458: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18761  kworker/u16:15-18488 (18488) [001] d..2 24569.049485: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
18762          <idle>-0     (-----) [001] d..1 24569.049506: cpu_idle: state=0 cpu_id=1
18763          <idle>-0     (-----) [001] d.h4 24569.051738: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18764          <idle>-0     (-----) [001] dnh5 24569.051759: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18765          <idle>-0     (-----) [001] dns4 24569.051801: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
18766          <idle>-0     (-----) [001] dns5 24569.051826: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
18767          <idle>-0     (-----) [001] .n.1 24569.051848: cpu_idle: state=4294967295 cpu_id=1
18768          <idle>-0     (-----) [001] d..2 24569.051867: 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
18769  kworker/u16:10-23868 (23868) [001] d..2 24569.051888: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
18770     kworker/1:1-13091 (13091) [001] d..3 24569.051938: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18771     kworker/1:1-13091 (13091) [001] d..4 24569.051968: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18772     kworker/1:1-13091 (13091) [001] d..2 24569.052007: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18773  kworker/u16:10-23868 (23868) [001] d..2 24569.052048: 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
18774          <idle>-0     (-----) [001] d..2 24569.052054: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
18775          <idle>-0     (-----) [001] dn.3 24569.052065: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
18776          <idle>-0     (-----) [001] d..2 24569.052076: 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
18777     ksoftirqd/1-18    (   18) [001] d..2 24569.052101: 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
18778          <idle>-0     (-----) [001] d..1 24569.052121: cpu_idle: state=0 cpu_id=1
18779          <idle>-0     (-----) [001] d.h4 24569.052312: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18780          <idle>-0     (-----) [001] dnh5 24569.052327: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18781          <idle>-0     (-----) [001] dns3 24569.052364: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
18782          <idle>-0     (-----) [001] dns4 24569.052381: sched_blocked_reason: pid=18488 iowait=1 caller=write_checkpoint+0x191c/0x1dec
18783          <idle>-0     (-----) [001] dns4 24569.052388: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
18784          <idle>-0     (-----) [001] .n.1 24569.052411: cpu_idle: state=4294967295 cpu_id=1
18785          <idle>-0     (-----) [001] d..2 24569.052428: 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
18786  kworker/u16:10-23868 (23868) [001] d..2 24569.052449: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18787  kworker/u16:15-18488 (18488) [001] d..2 24569.052623: sched_waking: comm=f2fs_discard-25 pid=678 prio=120 target_cpu=001
18788  kworker/u16:15-18488 (18488) [001] dn.3 24569.052661: sched_wakeup: comm=f2fs_discard-25 pid=678 prio=120 target_cpu=001
18789  kworker/u16:15-18488 (18488) [001] d..2 24569.052674: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=f2fs_discard-25 next_pid=678 next_prio=120
18790<...>-678 ( 678) [001] d..3 24569.052806: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18791<...>-678 ( 678) [001] d..4 24569.052833: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18792<...>-678 ( 678) [001] d..2 24569.052912: sched_switch: prev_comm=f2fs_discard-25 prev_pid=678 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18793  kworker/u16:10-23868 (23868) [001] d..2 24569.052932: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18794  kworker/u16:15-18488 (18488) [001] d..2 24569.053001: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18795          <idle>-0     (-----) [001] d..1 24569.053023: cpu_idle: state=0 cpu_id=1
18796          <idle>-0     (-----) [001] d.h4 24569.057198: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
18797          <idle>-0     (-----) [001] dnh5 24569.057225: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
18798          <idle>-0     (-----) [001] dns3 24569.057258: sched_waking: comm=f2fs_discard-25 pid=678 prio=120 target_cpu=001
18799          <idle>-0     (-----) [001] dns4 24569.057274: sched_blocked_reason: pid=678 iowait=1 caller=__wait_one_discard_bio+0x30/0x10c
18800          <idle>-0     (-----) [001] dns4 24569.057281: sched_wakeup: comm=f2fs_discard-25 pid=678 prio=120 target_cpu=001
18801          <idle>-0     (-----) [001] dns4 24569.057329: sched_waking: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
18802          <idle>-0     (-----) [001] dns5 24569.057341: sched_wakeup: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
18803          <idle>-0     (-----) [001] .n.1 24569.057359: cpu_idle: state=4294967295 cpu_id=1
18804          <idle>-0     (-----) [001] d..2 24569.057379: 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
18805    kworker/1:1H-533   (  533) [001] d..2 24569.057398: sched_switch: prev_comm=kworker/1:1H prev_pid=533 prev_prio=100 prev_state=S ==> next_comm=f2fs_discard-25 next_pid=678 next_prio=120
18806<...>-678 ( 678) [001] d..2 24569.057422: sched_switch: prev_comm=f2fs_discard-25 prev_pid=678 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18807  kworker/u16:15-18488 (18488) [001] d..2 24569.057459: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18808          <idle>-0     (-----) [001] d..2 24569.057464: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
18809          <idle>-0     (-----) [001] dn.3 24569.057475: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
18810          <idle>-0     (-----) [001] d..2 24569.057486: 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
18811     ksoftirqd/1-18    (   18) [001] d.s2 24569.057495: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
18812     ksoftirqd/1-18    (   18) [001] d.s3 24569.057516: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
18813     ksoftirqd/1-18    (   18) [001] d..2 24569.057533: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
18814  kworker/u16:15-18488 (18488) [001] d.H4 24569.057664: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
18815  kworker/u16:15-18488 (18488) [001] d.H4 24569.057686: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
18816  kworker/u16:15-18488 (18488) [001] d.H5 24569.057706: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
18817          <idle>-0     (-----) [000] .n.1 24569.057713: cpu_idle: state=4294967295 cpu_id=0
18818  kworker/u16:15-18488 (18488) [001] d.s4 24569.057714: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18819          <idle>-0     (-----) [000] d..2 24569.057729: 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
18820  kworker/u16:15-18488 (18488) [001] d.s5 24569.057767: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
18821         sugov:0-559   (  559) [000] .... 24569.057793: clk_set_rate: pwrcl_clk 825600000
18822         sugov:0-559   (  559) [000] .... 24569.057809: clk_set_rate: cpu3_pwrcl_clk 652800000
18823         sugov:0-559   (  559) [000] .... 24569.057823: clk_set_rate: cpu2_pwrcl_clk 652800000
18824         sugov:0-559   (  559) [000] .... 24569.057832: clk_set_rate: cpu1_pwrcl_clk 652800000
18825         sugov:0-559   (  559) [000] .... 24569.057841: clk_set_rate: cpu0_pwrcl_clk 825600000
18826         sugov:0-559   (  559) [000] .... 24569.057859: cpu_frequency: state=825600 cpu_id=0
18827         sugov:0-559   (  559) [000] .... 24569.057935: cpu_frequency: state=825600 cpu_id=1
18828         sugov:0-559   (  559) [000] .... 24569.057941: cpu_frequency: state=825600 cpu_id=2
18829         sugov:0-559   (  559) [000] .... 24569.057946: cpu_frequency: state=825600 cpu_id=3
18830  kworker/u16:15-18488 (18488) [001] d..2 24569.057957: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18831         sugov:0-559   (  559) [000] d..2 24569.057968: 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
18832          <idle>-0     (-----) [001] d..1 24569.057979: cpu_idle: state=0 cpu_id=1
18833  kworker/u16:10-23868 (23868) [000] d..2 24569.057999: 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
18834          <idle>-0     (-----) [000] d..1 24569.058018: cpu_idle: state=0 cpu_id=0
18835          <idle>-0     (-----) [004] dnh2 24569.058445: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
18836          <idle>-0     (-----) [004] .n.1 24569.058454: cpu_idle: state=4294967295 cpu_id=4
18837          <idle>-0     (-----) [004] d..2 24569.058466: 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
18838         sugov:4-560   (  560) [004] d..2 24569.058489: 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
18839          <idle>-0     (-----) [004] d..1 24569.058500: cpu_idle: state=2 cpu_id=4
18840          <idle>-0     (-----) [000] d..2 24569.064028: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18841          <idle>-0     (-----) [000] dn.3 24569.064044: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18842          <idle>-0     (-----) [000] .n.1 24569.064049: cpu_idle: state=4294967295 cpu_id=0
18843          <idle>-0     (-----) [000] d..2 24569.064063: 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
18844     ksoftirqd/0-3     (    3) [000] d..2 24569.064095: 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
18845          <idle>-0     (-----) [000] d..1 24569.064107: cpu_idle: state=0 cpu_id=0
18846          <idle>-0     (-----) [001] d.s3 24569.064255: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
18847          <idle>-0     (-----) [001] dns4 24569.064271: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
18848          <idle>-0     (-----) [001] .n.1 24569.064293: cpu_idle: state=4294967295 cpu_id=1
18849          <idle>-0     (-----) [001] d..2 24569.064308: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
18850          <idle>-0     (-----) [000] ...1 24569.064334: cpu_idle: state=4294967295 cpu_id=0
18851          <idle>-0     (-----) [002] ...1 24569.064337: cpu_idle: state=4294967295 cpu_id=2
18852          <idle>-0     (-----) [003] ...1 24569.064339: cpu_idle: state=4294967295 cpu_id=3
18853          <idle>-0     (-----) [000] d..1 24569.064341: cpu_idle: state=0 cpu_id=0
18854          <idle>-0     (-----) [002] d..1 24569.064343: cpu_idle: state=2 cpu_id=2
18855          <idle>-0     (-----) [003] d..1 24569.064344: cpu_idle: state=0 cpu_id=3
18856     kworker/1:1-13091 (13091) [001] d..2 24569.064359: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18857          <idle>-0     (-----) [001] d..1 24569.064373: cpu_idle: state=2 cpu_id=1
18858          <idle>-0     (-----) [000] d..2 24569.070349: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18859          <idle>-0     (-----) [000] dn.3 24569.070359: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18860          <idle>-0     (-----) [000] .n.1 24569.070362: cpu_idle: state=4294967295 cpu_id=0
18861          <idle>-0     (-----) [000] d..2 24569.070375: 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
18862     ksoftirqd/0-3     (    3) [000] d.s2 24569.070384: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
18863     ksoftirqd/0-3     (    3) [000] d.s3 24569.070405: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
18864     ksoftirqd/0-3     (    3) [000] d..2 24569.070421: 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
18865  kworker/u16:10-23868 (23868) [000] d..2 24569.070550: 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
18866          <idle>-0     (-----) [000] d..1 24569.070566: cpu_idle: state=2 cpu_id=0
18867          <idle>-0     (-----) [001] d.H3 24569.104520: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
18868          <idle>-0     (-----) [001] d.H3 24569.104540: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
18869          <idle>-0     (-----) [001] d.H4 24569.104555: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
18870          <idle>-0     (-----) [001] d.s2 24569.104566: sched_waking: comm=f2fs_discard-25 pid=678 prio=120 target_cpu=001
18871          <idle>-0     (-----) [001] dns3 24569.104588: sched_wakeup: comm=f2fs_discard-25 pid=678 prio=120 target_cpu=001
18872          <idle>-0     (-----) [001] dns3 24569.104596: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
18873          <idle>-0     (-----) [001] dns4 24569.104610: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
18874          <idle>-0     (-----) [001] .n.1 24569.104638: cpu_idle: state=4294967295 cpu_id=1
18875          <idle>-0     (-----) [001] d..2 24569.104655: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=f2fs_discard-25 next_pid=678 next_prio=120
18876<...>-678 ( 678) [001] d..2 24569.104731: sched_switch: prev_comm=f2fs_discard-25 prev_pid=678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18877          <idle>-0     (-----) [000] .n.1 24569.104734: cpu_idle: state=4294967295 cpu_id=0
18878          <idle>-0     (-----) [001] d..1 24569.104747: cpu_idle: state=0 cpu_id=1
18879          <idle>-0     (-----) [000] d..2 24569.104762: 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
18880         sugov:0-559   (  559) [000] .... 24569.104792: clk_set_rate: pwrcl_clk 652800000
18881         sugov:0-559   (  559) [000] .... 24569.104803: clk_set_rate: cpu3_pwrcl_clk 825600000
18882         sugov:0-559   (  559) [000] .... 24569.104813: clk_set_rate: cpu2_pwrcl_clk 825600000
18883         sugov:0-559   (  559) [000] .... 24569.104823: clk_set_rate: cpu1_pwrcl_clk 825600000
18884         sugov:0-559   (  559) [000] .... 24569.104832: clk_set_rate: cpu0_pwrcl_clk 652800000
18885         sugov:0-559   (  559) [000] .... 24569.104949: cpu_frequency: state=652800 cpu_id=0
18886         sugov:0-559   (  559) [000] .... 24569.104969: cpu_frequency: state=652800 cpu_id=1
18887         sugov:0-559   (  559) [000] .... 24569.104974: cpu_frequency: state=652800 cpu_id=2
18888         sugov:0-559   (  559) [000] .... 24569.104980: cpu_frequency: state=652800 cpu_id=3
18889         sugov:0-559   (  559) [000] d..2 24569.105009: 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
18890          <idle>-0     (-----) [004] dnh2 24569.105297: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
18891  kworker/u16:10-23868 (23868) [000] d..2 24569.105298: 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
18892          <idle>-0     (-----) [003] d.s3 24569.105303: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
18893          <idle>-0     (-----) [004] .n.1 24569.105306: cpu_idle: state=4294967295 cpu_id=4
18894          <idle>-0     (-----) [004] d..2 24569.105319: 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
18895          <idle>-0     (-----) [000] d..1 24569.105324: cpu_idle: state=2 cpu_id=0
18896          <idle>-0     (-----) [003] d.s4 24569.105326: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
18897          <idle>-0     (-----) [003] d.s4 24569.105336: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
18898         sugov:4-560   (  560) [004] d..2 24569.105341: 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
18899          <idle>-0     (-----) [003] ...1 24569.105349: cpu_idle: state=4294967295 cpu_id=3
18900          <idle>-0     (-----) [004] d..1 24569.105352: cpu_idle: state=2 cpu_id=4
18901          <idle>-0     (-----) [000] .n.1 24569.105356: cpu_idle: state=4294967295 cpu_id=0
18902          <idle>-0     (-----) [003] d..1 24569.105357: cpu_idle: state=2 cpu_id=3
18903          <idle>-0     (-----) [000] d..2 24569.105374: 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
18904  kworker/u16:10-23868 (23868) [000] d..2 24569.105413: 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
18905          <idle>-0     (-----) [000] d..1 24569.105430: cpu_idle: state=0 cpu_id=0
18906          <idle>-0     (-----) [001] d.h3 24569.107213: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
18907          <idle>-0     (-----) [001] d.h4 24569.107235: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
18908          <idle>-0     (-----) [000] .n.1 24569.107242: cpu_idle: state=4294967295 cpu_id=0
18909          <idle>-0     (-----) [001] ...1 24569.107251: cpu_idle: state=4294967295 cpu_id=1
18910          <idle>-0     (-----) [000] d..2 24569.107256: 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
18911          <idle>-0     (-----) [001] d..1 24569.107261: cpu_idle: state=2 cpu_id=1
18912  kworker/u16:10-23868 (23868) [000] d..1 24569.107289: clk_disable: gcc_ufs_phy_phy_aux_hw_ctl_clk
18913  kworker/u16:10-23868 (23868) [000] d..1 24569.107301: clk_disable: gcc_ufs_phy_phy_aux_clk
18914  kworker/u16:10-23868 (23868) [000] d..1 24569.107313: clk_disable: gcc_ufs_phy_phy_aux_clk_src
18915  kworker/u16:10-23868 (23868) [000] d..1 24569.107329: clk_disable: gcc_ufs_mem_clkref_clk
18916  kworker/u16:10-23868 (23868) [000] d..1 24569.107345: clk_disable: gcc_ufs_phy_axi_hw_ctl_clk
18917  kworker/u16:10-23868 (23868) [000] d..1 24569.107351: clk_disable: gcc_ufs_phy_axi_clk
18918  kworker/u16:10-23868 (23868) [000] d..1 24569.107361: clk_disable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
18919  kworker/u16:10-23868 (23868) [000] d..1 24569.107371: clk_disable: gcc_aggre_ufs_phy_axi_clk
18920  kworker/u16:10-23868 (23868) [000] d..1 24569.107381: clk_disable: gcc_ufs_phy_axi_clk_src
18921  kworker/u16:10-23868 (23868) [000] d..1 24569.107389: clk_disable: gcc_ufs_phy_ahb_clk
18922  kworker/u16:10-23868 (23868) [000] d..1 24569.107400: clk_disable: gcc_ufs_phy_unipro_core_hw_ctl_clk
18923  kworker/u16:10-23868 (23868) [000] d..1 24569.107406: clk_disable: gcc_ufs_phy_unipro_core_clk
18924  kworker/u16:10-23868 (23868) [000] d..1 24569.107415: clk_disable: gcc_ufs_phy_unipro_core_clk_src
18925  kworker/u16:10-23868 (23868) [000] d..1 24569.107425: clk_disable: gcc_ufs_phy_ice_core_hw_ctl_clk
18926  kworker/u16:10-23868 (23868) [000] d..1 24569.107430: clk_disable: gcc_ufs_phy_ice_core_clk
18927  kworker/u16:10-23868 (23868) [000] d..1 24569.107439: clk_disable: gcc_ufs_phy_ice_core_clk_src
18928          <idle>-0     (-----) [003] ...1 24569.107772: cpu_idle: state=4294967295 cpu_id=3
18929          <idle>-0     (-----) [003] d..1 24569.107790: cpu_idle: state=0 cpu_id=3
18930  kworker/u16:10-23868 (23868) [000] d..2 24569.107897: 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
18931          <idle>-0     (-----) [000] d..1 24569.107928: cpu_idle: state=0 cpu_id=0
18932          <idle>-0     (-----) [003] d.s3 24569.107936: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
18933          <idle>-0     (-----) [003] d.s4 24569.107994: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
18934          <idle>-0     (-----) [003] dns4 24569.108004: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18935          <idle>-0     (-----) [003] .n.1 24569.108020: cpu_idle: state=4294967295 cpu_id=3
18936          <idle>-0     (-----) [003] d..2 24569.108041: 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
18937  kworker/u16:10-23868 (23868) [003] d..2 24569.108108: 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
18938          <idle>-0     (-----) [003] d..1 24569.108129: cpu_idle: state=0 cpu_id=3
18939          <idle>-0     (-----) [000] d..2 24569.113946: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18940          <idle>-0     (-----) [000] dn.3 24569.113966: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18941          <idle>-0     (-----) [000] .n.1 24569.113972: cpu_idle: state=4294967295 cpu_id=0
18942          <idle>-0     (-----) [000] d..2 24569.113996: 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
18943     ksoftirqd/0-3     (    3) [000] d..2 24569.114039: 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
18944          <idle>-0     (-----) [000] d..1 24569.114053: cpu_idle: state=2 cpu_id=0
18945          <idle>-0     (-----) [003] ...1 24569.114142: cpu_idle: state=4294967295 cpu_id=3
18946          <idle>-0     (-----) [003] d..1 24569.114149: cpu_idle: state=2 cpu_id=3
18947          <idle>-0     (-----) [001] d.h2 24569.300034: sched_waking: comm=CCodecWatchdog pid=23520 prio=120 target_cpu=001
18948          <idle>-0     (-----) [000] d..2 24569.300169: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18949          <idle>-0     (-----) [000] dn.3 24569.300307: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18950          <idle>-0     (-----) [001] d.h3 24569.300371: sched_wakeup: comm=CCodecWatchdog pid=23520 prio=120 target_cpu=000
18951          <idle>-0     (-----) [000] dnh2 24569.300397: sched_waking: comm=CCodecWatchdog pid=24186 prio=120 target_cpu=000
18952          <idle>-0     (-----) [000] dnh3 24569.300465: sched_wakeup: comm=CCodecWatchdog pid=24186 prio=120 target_cpu=001
18953          <idle>-0     (-----) [000] dns3 24569.300539: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18954          <idle>-0     (-----) [001] dnh3 24569.300845: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
18955          <idle>-0     (-----) [000] dns4 24569.300870: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
18956          <idle>-0     (-----) [000] dns3 24569.300903: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
18957          <idle>-0     (-----) [001] dnh3 24569.300919: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
18958          <idle>-0     (-----) [000] dns4 24569.300936: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
18959          <idle>-0     (-----) [001] dnh4 24569.301008: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
18960          <idle>-0     (-----) [000] .n.1 24569.301016: cpu_idle: state=4294967295 cpu_id=0
18961          <idle>-0     (-----) [001] .n.1 24569.301023: cpu_idle: state=4294967295 cpu_id=1
18962          <idle>-0     (-----) [001] d..2 24569.301148: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=24186 next_prio=120
18963          <idle>-0     (-----) [000] d..2 24569.301149: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=23520 next_prio=120
18964          <idle>-0     (-----) [003] .n.1 24569.301404: cpu_idle: state=4294967295 cpu_id=3
18965          <idle>-0     (-----) [003] d..2 24569.301460: 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
18966  CCodecWatchdog-23520 (  884) [000] d..2 24569.301537: sched_switch: prev_comm=CCodecWatchdog prev_pid=23520 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
18967         sugov:0-559   (  559) [003] d..2 24569.301652: 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
18968  CCodecWatchdog-24186 (23968) [001] d..2 24569.301655: sched_switch: prev_comm=CCodecWatchdog prev_pid=24186 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18969          <idle>-0     (-----) [003] d..2 24569.301663: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
18970          <idle>-0     (-----) [003] dn.3 24569.301691: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
18971          <idle>-0     (-----) [003] d..2 24569.301708: 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
18972          <idle>-0     (-----) [001] d..1 24569.301718: cpu_idle: state=2 cpu_id=1
18973     ksoftirqd/3-34    (   34) [003] d..2 24569.301768: 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
18974     kworker/0:1-13012 (13012) [000] d..2 24569.301774: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
18975          <idle>-0     (-----) [003] d..1 24569.301798: cpu_idle: state=2 cpu_id=3
18976     kworker/0:1-13012 (13012) [000] d..3 24569.301813: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
18977     kworker/0:1-13012 (13012) [000] d..2 24569.301836: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18978     kworker/0:1-13012 (13012) [000] d..3 24569.301869: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
18979     kworker/0:1-13012 (13012) [000] d..2 24569.301920: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
18980     ksoftirqd/0-3     (    3) [000] d..2 24569.301949: 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
18981          <idle>-0     (-----) [004] dnh2 24569.302071: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
18982          <idle>-0     (-----) [004] .n.1 24569.302086: cpu_idle: state=4294967295 cpu_id=4
18983          <idle>-0     (-----) [004] d..2 24569.302111: 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
18984         sugov:4-560   (  560) [004] d..2 24569.302156: 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
18985          <idle>-0     (-----) [004] d..1 24569.302178: cpu_idle: state=2 cpu_id=4
18986          <idle>-0     (-----) [003] .n.1 24569.302452: cpu_idle: state=4294967295 cpu_id=3
18987          <idle>-0     (-----) [003] d..2 24569.302483: 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
18988          <idle>-0     (-----) [001] .n.1 24569.302538: cpu_idle: state=4294967295 cpu_id=1
18989          <idle>-0     (-----) [001] d..2 24569.302573: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
18990     kworker/3:1-12662 (12662) [003] d..2 24569.302580: 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
18991          <idle>-0     (-----) [003] d..1 24569.302599: cpu_idle: state=2 cpu_id=3
18992     kworker/1:1-13091 (13091) [001] d..2 24569.302658: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18993          <idle>-0     (-----) [001] d..1 24569.302680: cpu_idle: state=2 cpu_id=1
18994          <idle>-0     (-----) [004] ...1 24569.303582: cpu_idle: state=4294967295 cpu_id=4
18995          <idle>-0     (-----) [004] d..1 24569.303590: cpu_idle: state=2 cpu_id=4
18996  kworker/u16:10-23868 (23868) [000] d..2 24569.304772: 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
18997          <idle>-0     (-----) [000] d..1 24569.304802: cpu_idle: state=2 cpu_id=0
18998          <idle>-0     (-----) [003] d.s3 24569.305172: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
18999          <idle>-0     (-----) [003] d.s4 24569.305253: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
19000          <idle>-0     (-----) [003] dns4 24569.305275: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19001          <idle>-0     (-----) [003] .n.1 24569.305295: cpu_idle: state=4294967295 cpu_id=3
19002          <idle>-0     (-----) [003] d..2 24569.305318: 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
19003  kworker/u16:10-23868 (23868) [003] d..2 24569.305389: 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
19004          <idle>-0     (-----) [003] d..1 24569.305408: cpu_idle: state=2 cpu_id=3
19005          <idle>-0     (-----) [000] ...1 24569.442630: cpu_idle: state=4294967295 cpu_id=0
19006          <idle>-0     (-----) [000] d..1 24569.442733: cpu_idle: state=2 cpu_id=0
19007          <idle>-0     (-----) [003] d.H3 24569.442930: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
19008          <idle>-0     (-----) [003] d.H3 24569.443059: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
19009          <idle>-0     (-----) [003] dnH4 24569.443143: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
19010          <idle>-0     (-----) [003] dns3 24569.443224: sched_waking: comm=kworker/3:1H pid=697 prio=100 target_cpu=003
19011          <idle>-0     (-----) [003] dns4 24569.443332: sched_wakeup: comm=kworker/3:1H pid=697 prio=100 target_cpu=003
19012          <idle>-0     (-----) [003] dns3 24569.443378: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19013          <idle>-0     (-----) [003] dns4 24569.443503: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19014          <idle>-0     (-----) [003] dns3 24569.443556: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
19015          <idle>-0     (-----) [003] dns4 24569.443589: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
19016          <idle>-0     (-----) [003] .n.1 24569.443716: cpu_idle: state=4294967295 cpu_id=3
19017          <idle>-0     (-----) [003] d..2 24569.443796: 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
19018         sugov:0-559   (  559) [003] d..2 24569.443890: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/3:1H next_pid=697 next_prio=100
19019<...>-697 ( 697) [003] d..2 24569.443963: sched_switch: prev_comm=kworker/3:1H prev_pid=697 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
19020          <idle>-0     (-----) [004] dnh2 24569.444204: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
19021          <idle>-0     (-----) [004] .n.1 24569.444219: cpu_idle: state=4294967295 cpu_id=4
19022          <idle>-0     (-----) [004] d..2 24569.444250: 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
19023         sugov:4-560   (  560) [004] d..2 24569.444333: 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
19024          <idle>-0     (-----) [004] d..1 24569.444358: cpu_idle: state=2 cpu_id=4
19025  kworker/u16:10-23868 (23868) [003] d..2 24569.445383: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
19026     kworker/3:1-12662 (12662) [003] d..2 24569.445618: 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
19027          <idle>-0     (-----) [003] d..1 24569.445663: cpu_idle: state=2 cpu_id=3
19028          <idle>-0     (-----) [001] d.h2 24569.525964: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=001
19029          <idle>-0     (-----) [000] d..2 24569.526109: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19030          <idle>-0     (-----) [001] dnh3 24569.526215: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=001
19031          <idle>-0     (-----) [000] dn.3 24569.526229: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19032          <idle>-0     (-----) [000] .n.1 24569.526265: cpu_idle: state=4294967295 cpu_id=0
19033          <idle>-0     (-----) [001] dnh3 24569.526619: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
19034          <idle>-0     (-----) [000] d..2 24569.526649: 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
19035          <idle>-0     (-----) [001] dnh3 24569.526663: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
19036          <idle>-0     (-----) [001] dnh4 24569.526703: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
19037          <idle>-0     (-----) [001] .n.1 24569.526721: cpu_idle: state=4294967295 cpu_id=1
19038     ksoftirqd/0-3     (    3) [000] d.s2 24569.526748: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19039          <idle>-0     (-----) [001] d..2 24569.526766: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=bluetooth@1.0-s next_pid=24508 next_prio=98
19040     ksoftirqd/0-3     (    3) [000] d.s3 24569.526857: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19041     ksoftirqd/0-3     (    3) [000] d..2 24569.527073: 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
19042          <idle>-0     (-----) [003] .n.1 24569.527109: cpu_idle: state=4294967295 cpu_id=3
19043          <idle>-0     (-----) [000] d..1 24569.527155: cpu_idle: state=2 cpu_id=0
19044          <idle>-0     (-----) [003] d..2 24569.527162: 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
19045 bluetooth@1.0-s-24508 (  759) [001] d..2 24569.527196: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
19046         sugov:0-559   (  559) [003] d..2 24569.527223: 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
19047          <idle>-0     (-----) [001] d..1 24569.527241: cpu_idle: state=2 cpu_id=1
19048          <idle>-0     (-----) [004] dnh2 24569.527817: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
19049          <idle>-0     (-----) [004] .n.1 24569.527835: cpu_idle: state=4294967295 cpu_id=4
19050          <idle>-0     (-----) [004] d..2 24569.527861: 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
19051         sugov:4-560   (  560) [004] d..2 24569.527909: 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
19052          <idle>-0     (-----) [004] d..1 24569.527930: cpu_idle: state=2 cpu_id=4
19053  kworker/u16:10-23868 (23868) [003] d..2 24569.528726: 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
19054          <idle>-0     (-----) [003] d..1 24569.528763: cpu_idle: state=2 cpu_id=3
19055          <idle>-0     (-----) [000] ...1 24569.842651: cpu_idle: state=4294967295 cpu_id=0
19056          <idle>-0     (-----) [000] d..1 24569.842755: cpu_idle: state=2 cpu_id=0
19057          <idle>-0     (-----) [001] d.H3 24569.842973: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
19058          <idle>-0     (-----) [001] d.H3 24569.843142: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
19059          <idle>-0     (-----) [001] d.H4 24569.843238: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
19060          <idle>-0     (-----) [001] d.s3 24569.843302: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
19061          <idle>-0     (-----) [001] dns4 24569.843393: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
19062          <idle>-0     (-----) [001] dns3 24569.843426: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19063          <idle>-0     (-----) [001] dns4 24569.843518: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19064          <idle>-0     (-----) [003] .n.1 24569.843633: cpu_idle: state=4294967295 cpu_id=3
19065          <idle>-0     (-----) [001] .n.1 24569.843701: cpu_idle: state=4294967295 cpu_id=1
19066          <idle>-0     (-----) [003] d..2 24569.843741: 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
19067          <idle>-0     (-----) [001] d..2 24569.843760: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
19068         sugov:0-559   (  559) [003] d..2 24569.843838: 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
19069     kworker/1:1-13091 (13091) [001] d..3 24569.844105: sched_waking: comm=kworker/1:0 pid=13068 prio=120 target_cpu=001
19070     kworker/1:1-13091 (13091) [001] d..3 24569.844148: sched_wakeup: comm=kworker/1:0 pid=13068 prio=120 target_cpu=001
19071     kworker/1:1-13091 (13091) [001] d..2 24569.844163: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=D ==> next_comm=kworker/1:0 next_pid=13068 next_prio=120
19072          <idle>-0     (-----) [005] dnh2 24569.844274: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
19073          <idle>-0     (-----) [005] .n.1 24569.844294: cpu_idle: state=4294967295 cpu_id=5
19074          <idle>-0     (-----) [005] d..2 24569.844318: 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
19075         sugov:4-560   (  560) [005] d..2 24569.844394: 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
19076          <idle>-0     (-----) [005] d..1 24569.844443: cpu_idle: state=2 cpu_id=5
19077<...>-13068 ( 13068) [001] d..2 24569.844498: sched_switch: prev_comm=kworker/1:0 prev_pid=13068 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
19078          <idle>-0     (-----) [001] d..1 24569.844534: cpu_idle: state=2 cpu_id=1
19079  kworker/u16:10-23868 (23868) [003] d..2 24569.844785: 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
19080          <idle>-0     (-----) [003] d..1 24569.844819: cpu_idle: state=2 cpu_id=3
19081          <idle>-0     (-----) [000] d.h3 24569.848724: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
19082          <idle>-0     (-----) [000] dnh4 24569.848767: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
19083          <idle>-0     (-----) [000] .n.1 24569.848839: cpu_idle: state=4294967295 cpu_id=0
19084          <idle>-0     (-----) [000] d..2 24569.848877: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
19085     kworker/0:1-13012 (13012) [000] d..2 24569.848906: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
19086     kworker/0:1-13012 (13012) [000] d..3 24569.848928: sched_blocked_reason: pid=13091 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
19087     kworker/0:1-13012 (13012) [000] d..3 24569.848946: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
19088     kworker/0:1-13012 (13012) [000] d..2 24569.849009: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19089          <idle>-0     (-----) [000] d..2 24569.849018: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19090          <idle>-0     (-----) [000] dn.3 24569.849045: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19091          <idle>-0     (-----) [000] d..2 24569.849059: 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
19092     ksoftirqd/0-3     (    3) [000] d..2 24569.849116: 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
19093          <idle>-0     (-----) [000] d..1 24569.849135: cpu_idle: state=2 cpu_id=0
19094          <idle>-0     (-----) [001] .n.1 24569.849263: cpu_idle: state=4294967295 cpu_id=1
19095          <idle>-0     (-----) [001] d..2 24569.849297: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
19096     kworker/1:1-13091 (13091) [001] d..2 24569.849495: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
19097          <idle>-0     (-----) [001] d..1 24569.849516: cpu_idle: state=2 cpu_id=1
19098          <idle>-0     (-----) [003] d..2 24570.024792: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
19099          <idle>-0     (-----) [000] ...1 24570.024842: cpu_idle: state=4294967295 cpu_id=0
19100          <idle>-0     (-----) [000] d..1 24570.024928: cpu_idle: state=2 cpu_id=0
19101          <idle>-0     (-----) [003] dn.3 24570.024978: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
19102          <idle>-0     (-----) [003] dnH3 24570.025345: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
19103          <idle>-0     (-----) [003] dnH3 24570.025437: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
19104          <idle>-0     (-----) [003] dnH4 24570.025550: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
19105          <idle>-0     (-----) [003] dns3 24570.025623: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19106          <idle>-0     (-----) [003] dns4 24570.025727: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19107          <idle>-0     (-----) [003] dns3 24570.025773: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
19108          <idle>-0     (-----) [003] dns4 24570.025799: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
19109          <idle>-0     (-----) [003] .n.1 24570.025827: cpu_idle: state=4294967295 cpu_id=3
19110          <idle>-0     (-----) [003] d..2 24570.025939: 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
19111          <idle>-0     (-----) [002] .n.1 24570.025940: cpu_idle: state=4294967295 cpu_id=2
19112     ksoftirqd/3-34    (   34) [003] d..2 24570.026005: 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
19113          <idle>-0     (-----) [002] d..2 24570.026006: 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
19114         sugov:0-559   (  559) [002] d..2 24570.026221: 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
19115     kworker/3:1-12662 (12662) [003] d..2 24570.026235: 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
19116          <idle>-0     (-----) [002] d..1 24570.026258: cpu_idle: state=2 cpu_id=2
19117          <idle>-0     (-----) [005] dnh2 24570.026578: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
19118          <idle>-0     (-----) [005] .n.1 24570.026597: cpu_idle: state=4294967295 cpu_id=5
19119          <idle>-0     (-----) [005] d..2 24570.026620: 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
19120         sugov:4-560   (  560) [005] d..2 24570.026666: 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
19121          <idle>-0     (-----) [005] d..1 24570.026685: cpu_idle: state=2 cpu_id=5
19122  kworker/u16:10-23868 (23868) [003] d..2 24570.026906: 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
19123          <idle>-0     (-----) [003] d..1 24570.026941: cpu_idle: state=2 cpu_id=3
19124          <idle>-0     (-----) [001] d.h2 24570.531924: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=001
19125          <idle>-0     (-----) [000] d..2 24570.532074: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19126          <idle>-0     (-----) [001] dnh3 24570.532168: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=001
19127          <idle>-0     (-----) [000] dn.3 24570.532192: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19128          <idle>-0     (-----) [000] .n.1 24570.532228: cpu_idle: state=4294967295 cpu_id=0
19129          <idle>-0     (-----) [001] dnh3 24570.532563: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
19130          <idle>-0     (-----) [000] d..2 24570.532589: 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
19131          <idle>-0     (-----) [001] dnh3 24570.532609: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
19132          <idle>-0     (-----) [001] dnh4 24570.532649: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
19133          <idle>-0     (-----) [001] .n.1 24570.532671: cpu_idle: state=4294967295 cpu_id=1
19134     ksoftirqd/0-3     (    3) [000] d.s2 24570.532689: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19135          <idle>-0     (-----) [001] d..2 24570.532716: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=bluetooth@1.0-s next_pid=24508 next_prio=98
19136     ksoftirqd/0-3     (    3) [000] d.s3 24570.532914: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
19137     ksoftirqd/0-3     (    3) [000] d.s2 24570.533001: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
19138     ksoftirqd/0-3     (    3) [000] d.s3 24570.533029: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
19139          <idle>-0     (-----) [002] .n.1 24570.533047: cpu_idle: state=4294967295 cpu_id=2
19140     ksoftirqd/0-3     (    3) [000] d.s2 24570.533061: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
19141     ksoftirqd/0-3     (    3) [000] d.s3 24570.533096: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
19142          <idle>-0     (-----) [002] d..2 24570.533104: 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
19143     ksoftirqd/0-3     (    3) [000] d.s2 24570.533117: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
19144     ksoftirqd/0-3     (    3) [000] d.s3 24570.533190: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
19145     ksoftirqd/0-3     (    3) [000] d..2 24570.533239: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
19146 bluetooth@1.0-s-24508 (  759) [001] d..2 24570.533291: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
19147         sugov:0-559   (  559) [002] d..2 24570.533326: 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
19148     kworker/1:1-13091 (13091) [001] d..2 24570.533383: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
19149          <idle>-0     (-----) [002] d..1 24570.533413: cpu_idle: state=2 cpu_id=2
19150          <idle>-0     (-----) [001] d..1 24570.533416: cpu_idle: state=2 cpu_id=1
19151     kworker/0:1-13012 (13012) [000] d..2 24570.533478: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
19152          <idle>-0     (-----) [003] .n.1 24570.533497: cpu_idle: state=4294967295 cpu_id=3
19153          <idle>-0     (-----) [003] d..2 24570.533555: 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
19154     kworker/3:1-12662 (12662) [003] d..2 24570.533633: 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
19155          <idle>-0     (-----) [003] d..1 24570.533700: cpu_idle: state=2 cpu_id=3
19156          <idle>-0     (-----) [005] dnh2 24570.533759: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
19157          <idle>-0     (-----) [005] .n.1 24570.533777: cpu_idle: state=4294967295 cpu_id=5
19158          <idle>-0     (-----) [005] d..2 24570.533804: 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
19159         sugov:4-560   (  560) [005] d..2 24570.533848: 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
19160          <idle>-0     (-----) [005] d..1 24570.533873: cpu_idle: state=2 cpu_id=5
19161          <idle>-0     (-----) [003] ...1 24570.534219: cpu_idle: state=4294967295 cpu_id=3
19162          <idle>-0     (-----) [003] d..1 24570.534231: cpu_idle: state=2 cpu_id=3
19163  kworker/u16:10-23868 (23868) [000] d..2 24570.535000: 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
19164          <idle>-0     (-----) [000] d..1 24570.535028: cpu_idle: state=2 cpu_id=0
19165          <idle>-0     (-----) [000] d.h2 24570.706479: sched_waking: comm=PowerManagerSer pid=24006 prio=116 target_cpu=000
19166          <idle>-0     (-----) [000] dnh3 24570.706806: sched_wakeup: comm=PowerManagerSer pid=24006 prio=116 target_cpu=000
19167          <idle>-0     (-----) [000] dnh3 24570.707366: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
19168          <idle>-0     (-----) [000] dnh3 24570.707445: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
19169          <idle>-0     (-----) [000] dnh4 24570.707507: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
19170          <idle>-0     (-----) [000] .n.1 24570.707544: cpu_idle: state=4294967295 cpu_id=0
19171          <idle>-0     (-----) [000] d..2 24570.707706: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=24006 next_prio=116
19172          <idle>-0     (-----) [002] .n.1 24570.707906: cpu_idle: state=4294967295 cpu_id=2
19173          <idle>-0     (-----) [002] d..2 24570.707971: 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
19174         sugov:0-559   (  559) [002] d..2 24570.708199: 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
19175          <idle>-0     (-----) [002] d..2 24570.708219: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
19176          <idle>-0     (-----) [002] dn.3 24570.708253: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
19177          <idle>-0     (-----) [002] d..2 24570.708271: 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
19178     ksoftirqd/2-26    (   26) [002] d.s2 24570.708353: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
19179     ksoftirqd/2-26    (   26) [002] d.s3 24570.708526: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
19180 PowerManagerSer-24006 (23968) [000] d..2 24570.708547: sched_switch: prev_comm=PowerManagerSer prev_pid=24006 prev_prio=116 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19181          <idle>-0     (-----) [000] d..2 24570.708559: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19182     ksoftirqd/2-26    (   26) [002] d.s2 24570.708569: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
19183          <idle>-0     (-----) [000] dn.3 24570.708588: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19184          <idle>-0     (-----) [005] dnh2 24570.708588: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
19185     ksoftirqd/2-26    (   26) [002] d.s3 24570.708601: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
19186          <idle>-0     (-----) [000] d..2 24570.708604: 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
19187          <idle>-0     (-----) [005] .n.1 24570.708608: cpu_idle: state=4294967295 cpu_id=5
19188          <idle>-0     (-----) [005] d..2 24570.708633: 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
19189     ksoftirqd/2-26    (   26) [002] d..2 24570.708640: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
19190     ksoftirqd/0-3     (    3) [000] d..2 24570.708662: 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
19191         sugov:4-560   (  560) [005] d..2 24570.708676: 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
19192          <idle>-0     (-----) [005] d..1 24570.708716: cpu_idle: state=2 cpu_id=5
19193          <idle>-0     (-----) [000] d..1 24570.708717: cpu_idle: state=2 cpu_id=0
19194     kworker/2:0-12895 (12895) [002] d..2 24570.708856: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
19195  kworker/u16:10-23868 (23868) [002] d..2 24570.709521: 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
19196          <idle>-0     (-----) [002] d..1 24570.709549: cpu_idle: state=2 cpu_id=2
19197          <idle>-0     (-----) [000] d.h2 24570.825151: sched_waking: comm=oid.setupwizard pid=24795 prio=120 target_cpu=000
19198          <idle>-0     (-----) [000] dnh3 24570.825510: sched_wakeup: comm=oid.setupwizard pid=24795 prio=120 target_cpu=000
19199          <idle>-0     (-----) [000] dnh3 24570.826063: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
19200          <idle>-0     (-----) [000] dnh3 24570.826157: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
19201          <idle>-0     (-----) [000] dnh4 24570.826227: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
19202          <idle>-0     (-----) [000] .n.1 24570.826267: cpu_idle: state=4294967295 cpu_id=0
19203          <idle>-0     (-----) [000] d..2 24570.826431: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=oid.setupwizard next_pid=24795 next_prio=120
19204          <idle>-0     (-----) [002] .n.1 24570.826643: cpu_idle: state=4294967295 cpu_id=2
19205          <idle>-0     (-----) [002] d..2 24570.826710: 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
19206         sugov:0-559   (  559) [002] d..2 24570.826936: 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
19207          <idle>-0     (-----) [002] d..2 24570.826958: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
19208          <idle>-0     (-----) [002] dn.3 24570.826990: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
19209          <idle>-0     (-----) [002] d..2 24570.827007: 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
19210     ksoftirqd/2-26    (   26) [002] d.s2 24570.827091: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
19211     ksoftirqd/2-26    (   26) [002] d.s3 24570.827144: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
19212     ksoftirqd/2-26    (   26) [002] d.s2 24570.827186: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
19213 oid.setupwizard-24795 (24795) [000] d..2 24570.827202: sched_switch: prev_comm=oid.setupwizard prev_pid=24795 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19214          <idle>-0     (-----) [000] d..2 24570.827212: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19215     ksoftirqd/2-26    (   26) [002] d.s3 24570.827216: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
19216          <idle>-0     (-----) [000] dn.3 24570.827243: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19217     ksoftirqd/2-26    (   26) [002] d..2 24570.827244: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
19218          <idle>-0     (-----) [000] d..2 24570.827260: 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
19219          <idle>-0     (-----) [005] dnh2 24570.827305: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
19220     ksoftirqd/0-3     (    3) [000] d..2 24570.827313: 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
19221          <idle>-0     (-----) [005] .n.1 24570.827324: cpu_idle: state=4294967295 cpu_id=5
19222          <idle>-0     (-----) [005] d..2 24570.827348: 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
19223          <idle>-0     (-----) [000] d..1 24570.827388: cpu_idle: state=2 cpu_id=0
19224         sugov:4-560   (  560) [005] d..2 24570.827393: 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
19225          <idle>-0     (-----) [005] d..1 24570.827418: cpu_idle: state=2 cpu_id=5
19226     kworker/2:0-12895 (12895) [002] d..2 24570.827430: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
19227  kworker/u16:10-23868 (23868) [002] d..2 24570.828337: 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
19228          <idle>-0     (-----) [002] d..1 24570.828366: cpu_idle: state=2 cpu_id=2
19229          <idle>-0     (-----) [000] ...1 24570.855968: cpu_idle: state=4294967295 cpu_id=0
19230          <idle>-0     (-----) [000] d..1 24570.856070: cpu_idle: state=2 cpu_id=0
19231          <idle>-0     (-----) [001] d.H3 24570.856299: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
19232          <idle>-0     (-----) [001] d.H3 24570.856469: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
19233          <idle>-0     (-----) [001] d.H4 24570.856567: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
19234          <idle>-0     (-----) [001] d.s3 24570.856630: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
19235          <idle>-0     (-----) [001] dns4 24570.856721: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
19236          <idle>-0     (-----) [001] dns3 24570.856762: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
19237          <idle>-0     (-----) [001] dns4 24570.856869: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
19238          <idle>-0     (-----) [002] .n.1 24570.856968: cpu_idle: state=4294967295 cpu_id=2
19239          <idle>-0     (-----) [001] .n.1 24570.857010: cpu_idle: state=4294967295 cpu_id=1
19240          <idle>-0     (-----) [002] d..2 24570.857069: 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
19241          <idle>-0     (-----) [001] d..2 24570.857076: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
19242         sugov:0-559   (  559) [002] .... 24570.857239: clk_set_rate: pwrcl_clk 748800000
19243         sugov:0-559   (  559) [002] .... 24570.857333: clk_set_rate: cpu3_pwrcl_clk 652800000
19244         sugov:0-559   (  559) [002] .... 24570.857352: clk_set_rate: cpu2_pwrcl_clk 652800000
19245         sugov:0-559   (  559) [002] .... 24570.857363: clk_set_rate: cpu1_pwrcl_clk 652800000
19246         sugov:0-559   (  559) [002] .... 24570.857375: clk_set_rate: cpu0_pwrcl_clk 748800000
19247         sugov:0-559   (  559) [002] .... 24570.857391: cpu_frequency: state=748800 cpu_id=0
19248     kworker/1:1-13091 (13091) [001] d..3 24570.857407: sched_waking: comm=kworker/1:0 pid=13068 prio=120 target_cpu=001
19249     kworker/1:1-13091 (13091) [001] d..3 24570.857450: sched_wakeup: comm=kworker/1:0 pid=13068 prio=120 target_cpu=001
19250     kworker/1:1-13091 (13091) [001] d..2 24570.857466: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=D ==> next_comm=kworker/1:0 next_pid=13068 next_prio=120
19251         sugov:0-559   (  559) [002] .... 24570.857497: cpu_frequency: state=748800 cpu_id=1
19252         sugov:0-559   (  559) [002] .... 24570.857501: cpu_frequency: state=748800 cpu_id=2
19253         sugov:0-559   (  559) [002] .... 24570.857506: cpu_frequency: state=748800 cpu_id=3
19254<...>-13068 ( 13068) [001] d..2 24570.857534: sched_switch: prev_comm=kworker/1:0 prev_pid=13068 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
19255          <idle>-0     (-----) [006] dnh2 24570.857608: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
19256          <idle>-0     (-----) [006] .n.1 24570.857629: cpu_idle: state=4294967295 cpu_id=6
19257          <idle>-0     (-----) [006] d..2 24570.857705: 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
19258         sugov:0-559   (  559) [002] d..2 24570.857717: 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
19259  kworker/u16:10-23868 (23868) [001] d.H3 24570.857729: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
19260         sugov:4-560   (  560) [006] d..2 24570.857754: 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
19261          <idle>-0     (-----) [006] d..1 24570.857783: cpu_idle: state=2 cpu_id=6
19262          <idle>-0     (-----) [002] d..1 24570.857818: cpu_idle: state=2 cpu_id=2
19263  kworker/u16:10-23868 (23868) [001] d..2 24570.858212: 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
19264          <idle>-0     (-----) [001] d..1 24570.858240: cpu_idle: state=2 cpu_id=1
19265          <idle>-0     (-----) [000] d.h3 24570.858439: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
19266          <idle>-0     (-----) [000] dnh4 24570.858480: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
19267          <idle>-0     (-----) [000] .n.1 24570.858516: cpu_idle: state=4294967295 cpu_id=0
19268          <idle>-0     (-----) [000] d..2 24570.858547: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
19269     kworker/0:1-13012 (13012) [000] d..2 24570.858577: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
19270     kworker/0:1-13012 (13012) [000] d..3 24570.858600: sched_blocked_reason: pid=13091 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
19271     kworker/0:1-13012 (13012) [000] d..3 24570.858617: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
19272     kworker/0:1-13012 (13012) [000] d..2 24570.858661: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19273          <idle>-0     (-----) [000] d..1 24570.858680: cpu_idle: state=2 cpu_id=0
19274          <idle>-0     (-----) [001] .n.1 24570.858925: cpu_idle: state=4294967295 cpu_id=1
19275          <idle>-0     (-----) [001] d..2 24570.858952: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
19276     kworker/1:1-13091 (13091) [001] d..2 24570.859135: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
19277          <idle>-0     (-----) [001] d..1 24570.859153: cpu_idle: state=2 cpu_id=1
19278          <idle>-0     (-----) [006] dnh2 24570.859186: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
19279          <idle>-0     (-----) [006] .n.1 24570.859199: cpu_idle: state=4294967295 cpu_id=6
19280          <idle>-0     (-----) [006] d..2 24570.859212: 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
19281         sugov:4-560   (  560) [006] d..2 24570.859236: 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
19282          <idle>-0     (-----) [006] d..1 24570.859247: cpu_idle: state=2 cpu_id=6
19283          <idle>-0     (-----) [000] d..2 24571.024795: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19284          <idle>-0     (-----) [003] d.h3 24571.025211: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
19285          <idle>-0     (-----) [000] dn.3 24571.025224: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19286          <idle>-0     (-----) [000] .n.1 24571.025268: cpu_idle: state=4294967295 cpu_id=0
19287          <idle>-0     (-----) [003] d.h3 24571.025304: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
19288          <idle>-0     (-----) [003] d.h4 24571.025369: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
19289          <idle>-0     (-----) [003] ...1 24571.025387: cpu_idle: state=4294967295 cpu_id=3
19290          <idle>-0     (-----) [000] d..2 24571.025410: 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
19291          <idle>-0     (-----) [003] d..1 24571.025439: cpu_idle: state=2 cpu_id=3
19292     ksoftirqd/0-3     (    3) [000] d.s2 24571.025498: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
19293     ksoftirqd/0-3     (    3) [000] d.s3 24571.025712: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
19294     ksoftirqd/0-3     (    3) [000] d.s2 24571.025753: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
19295     ksoftirqd/0-3     (    3) [000] d.s3 24571.025782: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
19296          <idle>-0     (-----) [002] .n.1 24571.025783: cpu_idle: state=4294967295 cpu_id=2
19297     ksoftirqd/0-3     (    3) [000] d..2 24571.025836: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
19298          <idle>-0     (-----) [002] d..2 24571.025842: 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
19299         sugov:0-559   (  559) [002] .... 24571.025993: clk_set_rate: pwrcl_clk 652800000
19300     kworker/0:1-13012 (13012) [000] d..2 24571.026053: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
19301         sugov:0-559   (  559) [002] .... 24571.026091: clk_set_rate: cpu3_pwrcl_clk 748800000
19302         sugov:0-559   (  559) [002] .... 24571.026111: clk_set_rate: cpu2_pwrcl_clk 748800000
19303         sugov:0-559   (  559) [002] .... 24571.026122: clk_set_rate: cpu1_pwrcl_clk 748800000
19304         sugov:0-559   (  559) [002] .... 24571.026133: clk_set_rate: cpu0_pwrcl_clk 652800000
19305         sugov:0-559   (  559) [002] .... 24571.026257: cpu_frequency: state=652800 cpu_id=0
19306         sugov:0-559   (  559) [002] .... 24571.026344: cpu_frequency: state=652800 cpu_id=1
19307         sugov:0-559   (  559) [002] .... 24571.026351: cpu_frequency: state=652800 cpu_id=2
19308         sugov:0-559   (  559) [002] .... 24571.026356: cpu_frequency: state=652800 cpu_id=3
19309          <idle>-0     (-----) [006] dnh2 24571.026447: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
19310          <idle>-0     (-----) [006] .n.1 24571.026468: cpu_idle: state=4294967295 cpu_id=6
19311          <idle>-0     (-----) [006] d..2 24571.026494: 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
19312         sugov:0-559   (  559) [002] d..2 24571.026542: 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
19313         sugov:4-560   (  560) [006] d..2 24571.026545: 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
19314          <idle>-0     (-----) [006] d..1 24571.026570: cpu_idle: state=2 cpu_id=6
19315          <idle>-0     (-----) [002] d..1 24571.026600: cpu_idle: state=2 cpu_id=2
19316          <idle>-0     (-----) [002] ...1 24571.027230: cpu_idle: state=4294967295 cpu_id=2
19317          <idle>-0     (-----) [002] d..1 24571.027242: cpu_idle: state=2 cpu_id=2
19318  kworker/u16:10-23868 (23868) [000] d..2 24571.027490: 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
19319          <idle>-0     (-----) [000] d..1 24571.027521: cpu_idle: state=2 cpu_id=0
19320          <idle>-0     (-----) [000] ...1 24571.149322: cpu_idle: state=4294967295 cpu_id=0
19321          <idle>-0     (-----) [000] d..1 24571.149423: cpu_idle: state=2 cpu_id=0
19322          <idle>-0     (-----) [002] d.H3 24571.149643: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
19323          <idle>-0     (-----) [002] d.H3 24571.149772: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
19324          <idle>-0     (-----) [002] dnH4 24571.149859: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
19325          <idle>-0     (-----) [002] dns3 24571.149931: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
19326          <idle>-0     (-----) [002] dns4 24571.150032: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
19327          <idle>-0     (-----) [002] dns3 24571.150074: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
19328          <idle>-0     (-----) [002] dns4 24571.150303: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
19329          <idle>-0     (-----) [002] .n.1 24571.150479: cpu_idle: state=4294967295 cpu_id=2
19330          <idle>-0     (-----) [002] d..2 24571.150561: 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
19331         sugov:0-559   (  559) [002] d..2 24571.150653: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
19332          <idle>-0     (-----) [006] dnh2 24571.150906: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
19333     kworker/2:0-12895 (12895) [002] d..2 24571.150908: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
19334          <idle>-0     (-----) [006] .n.1 24571.150928: cpu_idle: state=4294967295 cpu_id=6
19335          <idle>-0     (-----) [006] d..2 24571.150957: 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
19336         sugov:4-560   (  560) [006] d..2 24571.151043: 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
19337          <idle>-0     (-----) [006] d..1 24571.151069: cpu_idle: state=2 cpu_id=6
19338  kworker/u16:10-23868 (23868) [002] d..2 24571.151725: 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
19339          <idle>-0     (-----) [002] d..1 24571.151760: cpu_idle: state=2 cpu_id=2
19340          <idle>-0     (-----) [001] d.h2 24571.519532: sched_waking: comm=CCodecWatchdog pid=24367 prio=120 target_cpu=001
19341          <idle>-0     (-----) [000] d..2 24571.519671: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19342          <idle>-0     (-----) [000] dn.3 24571.519802: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19343          <idle>-0     (-----) [003] d.h2 24571.519847: sched_waking: comm=CCodecWatchdog pid=25015 prio=120 target_cpu=003
19344          <idle>-0     (-----) [001] d.h3 24571.519852: sched_wakeup: comm=CCodecWatchdog pid=24367 prio=120 target_cpu=000
19345          <idle>-0     (-----) [000] .n.1 24571.519856: cpu_idle: state=4294967295 cpu_id=0
19346          <idle>-0     (-----) [003] dnh3 24571.519953: sched_wakeup: comm=CCodecWatchdog pid=25015 prio=120 target_cpu=003
19347          <idle>-0     (-----) [003] .n.1 24571.520194: cpu_idle: state=4294967295 cpu_id=3
19348          <idle>-0     (-----) [000] d..2 24571.520230: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=24367 next_prio=120
19349          <idle>-0     (-----) [003] d..2 24571.520236: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=25015 next_prio=120
19350          <idle>-0     (-----) [001] d.h3 24571.520348: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
19351          <idle>-0     (-----) [001] d.h3 24571.520422: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
19352          <idle>-0     (-----) [001] d.h4 24571.520477: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
19353          <idle>-0     (-----) [001] ...1 24571.520494: cpu_idle: state=4294967295 cpu_id=1
19354          <idle>-0     (-----) [001] d..1 24571.520551: cpu_idle: state=2 cpu_id=1
19355  CCodecWatchdog-24367 (24151) [000] d..2 24571.520696: sched_switch: prev_comm=CCodecWatchdog prev_pid=24367 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
19356     ksoftirqd/0-3     (    3) [000] d.s2 24571.520777: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
19357  CCodecWatchdog-25015 (24655) [003] d..2 24571.520821: sched_switch: prev_comm=CCodecWatchdog prev_pid=25015 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
19358          <idle>-0     (-----) [003] d..2 24571.520834: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
19359          <idle>-0     (-----) [003] dn.3 24571.520862: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
19360          <idle>-0     (-----) [003] d..2 24571.520880: 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
19361          <idle>-0     (-----) [002] .n.1 24571.520882: cpu_idle: state=4294967295 cpu_id=2
19362     ksoftirqd/0-3     (    3) [000] d.s3 24571.520920: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19363          <idle>-0     (-----) [002] d..2 24571.520938: 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
19364     ksoftirqd/0-3     (    3) [000] d.s2 24571.520968: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
19365     ksoftirqd/0-3     (    3) [000] d.s3 24571.521000: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
19366         sugov:0-559   (  559) [002] d..2 24571.521091: 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
19367     ksoftirqd/3-34    (   34) [003] d..2 24571.521096: 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
19368          <idle>-0     (-----) [002] d..1 24571.521122: cpu_idle: state=2 cpu_id=2
19369     ksoftirqd/0-3     (    3) [000] d..2 24571.521138: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
19370     kworker/0:1-13012 (13012) [000] d..2 24571.521447: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19371          <idle>-0     (-----) [000] d..1 24571.521475: cpu_idle: state=2 cpu_id=0
19372          <idle>-0     (-----) [006] dnh2 24571.521557: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
19373          <idle>-0     (-----) [006] .n.1 24571.521578: cpu_idle: state=4294967295 cpu_id=6
19374          <idle>-0     (-----) [006] d..2 24571.521600: 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
19375         sugov:4-560   (  560) [006] d..2 24571.521645: 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
19376          <idle>-0     (-----) [006] d..1 24571.521665: cpu_idle: state=2 cpu_id=6
19377  kworker/u16:10-23868 (23868) [003] d..2 24571.521783: 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
19378          <idle>-0     (-----) [003] d..1 24571.521817: cpu_idle: state=2 cpu_id=3
19379          <idle>-0     (-----) [001] d.h2 24571.537942: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=001
19380          <idle>-0     (-----) [000] d..2 24571.538090: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19381          <idle>-0     (-----) [001] dnh3 24571.538188: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=001
19382          <idle>-0     (-----) [000] dn.3 24571.538210: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19383          <idle>-0     (-----) [000] .n.1 24571.538245: cpu_idle: state=4294967295 cpu_id=0
19384          <idle>-0     (-----) [001] dnh3 24571.538591: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
19385          <idle>-0     (-----) [000] d..2 24571.538616: 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
19386          <idle>-0     (-----) [001] dnh3 24571.538635: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
19387          <idle>-0     (-----) [001] dnh4 24571.538674: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
19388          <idle>-0     (-----) [001] .n.1 24571.538691: cpu_idle: state=4294967295 cpu_id=1
19389     ksoftirqd/0-3     (    3) [000] d.s2 24571.538717: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19390          <idle>-0     (-----) [001] d..2 24571.538737: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=bluetooth@1.0-s next_pid=24508 next_prio=98
19391     ksoftirqd/0-3     (    3) [000] d.s3 24571.538926: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
19392          <idle>-0     (-----) [002] .n.1 24571.539072: cpu_idle: state=4294967295 cpu_id=2
19393     ksoftirqd/0-3     (    3) [000] d..2 24571.539118: 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
19394          <idle>-0     (-----) [002] d..2 24571.539128: 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
19395         sugov:0-559   (  559) [002] d..2 24571.539192: 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
19396          <idle>-0     (-----) [000] d..1 24571.539207: cpu_idle: state=2 cpu_id=0
19397 bluetooth@1.0-s-24508 (  759) [001] d..2 24571.539227: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
19398          <idle>-0     (-----) [001] d..1 24571.539260: cpu_idle: state=2 cpu_id=1
19399  kworker/u16:10-23868 (23868) [002] d..2 24571.539722: 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
19400          <idle>-0     (-----) [002] d..1 24571.539750: cpu_idle: state=2 cpu_id=2
19401          <idle>-0     (-----) [006] dnh2 24571.539809: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
19402          <idle>-0     (-----) [006] .n.1 24571.539830: cpu_idle: state=4294967295 cpu_id=6
19403          <idle>-0     (-----) [006] d..2 24571.539854: 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
19404         sugov:4-560   (  560) [006] d..2 24571.539904: 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
19405          <idle>-0     (-----) [006] d..1 24571.539927: cpu_idle: state=2 cpu_id=6
19406          <idle>-0     (-----) [001] d.h3 24571.869240: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
19407          <idle>-0     (-----) [000] ...1 24571.869265: cpu_idle: state=4294967295 cpu_id=0
19408          <idle>-0     (-----) [000] d..1 24571.869347: cpu_idle: state=2 cpu_id=0
19409          <idle>-0     (-----) [001] dnh4 24571.869561: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
19410          <idle>-0     (-----) [001] dnH3 24571.869967: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
19411          <idle>-0     (-----) [001] dnH3 24571.870063: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
19412          <idle>-0     (-----) [001] dnH4 24571.870122: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
19413          <idle>-0     (-----) [001] dns3 24571.870168: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
19414          <idle>-0     (-----) [001] dns4 24571.870202: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
19415          <idle>-0     (-----) [001] .n.1 24571.870385: cpu_idle: state=4294967295 cpu_id=1
19416          <idle>-0     (-----) [001] d..2 24571.870481: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
19417          <idle>-0     (-----) [002] .n.1 24571.870513: cpu_idle: state=4294967295 cpu_id=2
19418          <idle>-0     (-----) [002] d..2 24571.870581: 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
19419         sugov:0-559   (  559) [002] d..2 24571.870777: 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
19420     kworker/1:1-13091 (13091) [001] d..3 24571.870793: sched_waking: comm=kworker/1:0 pid=13068 prio=120 target_cpu=001
19421          <idle>-0     (-----) [002] d..1 24571.870815: cpu_idle: state=2 cpu_id=2
19422     kworker/1:1-13091 (13091) [001] d..3 24571.870839: sched_wakeup: comm=kworker/1:0 pid=13068 prio=120 target_cpu=001
19423     kworker/1:1-13091 (13091) [001] d..2 24571.870854: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=D ==> next_comm=kworker/1:0 next_pid=13068 next_prio=120
19424<...>-13068 ( 13068) [001] d..2 24571.871142: sched_switch: prev_comm=kworker/1:0 prev_pid=13068 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
19425  kworker/u16:10-23868 (23868) [001] d..2 24571.871161: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
19426          <idle>-0     (-----) [007] dnh2 24571.871207: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
19427  kworker/u16:10-23868 (23868) [001] d..3 24571.871212: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
19428          <idle>-0     (-----) [007] .n.1 24571.871228: cpu_idle: state=4294967295 cpu_id=7
19429  kworker/u16:10-23868 (23868) [001] d..3 24571.871242: sched_waking: comm=kworker/1:0 pid=13068 prio=120 target_cpu=001
19430          <idle>-0     (-----) [007] d..2 24571.871251: 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
19431  kworker/u16:10-23868 (23868) [001] dn.4 24571.871253: sched_wakeup: comm=kworker/1:0 pid=13068 prio=120 target_cpu=001
19432  kworker/u16:10-23868 (23868) [001] d..2 24571.871265: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:0 next_pid=13068 next_prio=120
19433<...>-13068 ( 13068) [001] d..3 24571.871287: sched_waking: comm=msm_irqbalance pid=805 prio=120 target_cpu=000
19434         sugov:4-560   (  560) [007] d..2 24571.871299: 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
19435          <idle>-0     (-----) [007] d..1 24571.871322: cpu_idle: state=2 cpu_id=7
19436<...>-13068 ( 13068) [001] d..4 24571.871386: sched_wakeup: comm=msm_irqbalance pid=805 prio=120 target_cpu=001
19437<...>-13068 ( 13068) [001] d..2 24571.871451: sched_switch: prev_comm=kworker/1:0 prev_pid=13068 prev_prio=120 prev_state=S ==> next_comm=msm_irqbalance next_pid=805 next_prio=120
19438          <idle>-0     (-----) [000] d.h3 24571.871964: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
19439          <idle>-0     (-----) [000] dnh4 24571.872005: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
19440          <idle>-0     (-----) [000] .n.1 24571.872043: cpu_idle: state=4294967295 cpu_id=0
19441          <idle>-0     (-----) [000] d..2 24571.872077: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
19442     kworker/0:1-13012 (13012) [000] d..2 24571.872104: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
19443     kworker/0:1-13012 (13012) [000] d..3 24571.872139: sched_blocked_reason: pid=13091 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
19444     kworker/0:1-13012 (13012) [000] d..3 24571.872155: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
19445     kworker/0:1-13012 (13012) [000] d..2 24571.872235: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
19446  kworker/u16:15-18488 (18488) [000] d..2 24571.872960: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
19447  kworker/u16:10-23868 (23868) [000] d..2 24571.872995: 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
19448          <idle>-0     (-----) [000] d..1 24571.873017: cpu_idle: state=2 cpu_id=0
19449  msm_irqbalance-805   (  805) [001] dnH3 24571.877700: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
19450  msm_irqbalance-805   (  805) [001] dnH3 24571.877727: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
19451  msm_irqbalance-805   (  805) [001] dnH4 24571.877750: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
19452  msm_irqbalance-805   (  805) [001] d..2 24571.877776: sched_switch: prev_comm=msm_irqbalance prev_pid=805 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
19453     kworker/1:1-13091 (13091) [001] d..2 24571.877951: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=msm_irqbalance next_pid=805 next_prio=120
19454          <idle>-0     (-----) [002] .n.1 24571.878063: cpu_idle: state=4294967295 cpu_id=2
19455          <idle>-0     (-----) [002] d..2 24571.878099: 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
19456         sugov:0-559   (  559) [002] d..2 24571.878161: 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
19457          <idle>-0     (-----) [002] d..1 24571.878180: cpu_idle: state=2 cpu_id=2
19458          <idle>-0     (-----) [007] dnh2 24571.878803: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
19459          <idle>-0     (-----) [007] .n.1 24571.878812: cpu_idle: state=4294967295 cpu_id=7
19460          <idle>-0     (-----) [007] d..2 24571.878824: 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
19461         sugov:4-560   (  560) [007] d..2 24571.878845: 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
19462          <idle>-0     (-----) [007] d..1 24571.878855: cpu_idle: state=2 cpu_id=7
19463  msm_irqbalance-805   (  805) [001] d.s3 24571.880958: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
19464  msm_irqbalance-805   (  805) [001] d.s4 24571.881000: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
19465          <idle>-0     (-----) [000] .n.1 24571.881315: cpu_idle: state=4294967295 cpu_id=0
19466          <idle>-0     (-----) [000] d..2 24571.881350: 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
19467  kworker/u16:10-23868 (23868) [000] .... 24571.881456: clk_set_rate: l3_cluster0_vote_clk 480000000
19468  kworker/u16:10-23868 (23868) [000] .... 24571.881479: clk_set_rate: l3_clk 480000000
19469  kworker/u16:10-23868 (23868) [000] d..2 24571.881824: 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
19470          <idle>-0     (-----) [000] d..1 24571.881842: cpu_idle: state=2 cpu_id=0
19471  msm_irqbalance-805   (  805) [001] d..2 24571.887135: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
19472  msm_irqbalance-805   (  805) [001] dn.3 24571.887220: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
19473  msm_irqbalance-805   (  805) [001] d..2 24571.887246: 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
19474         rcuop/0-10    (   10) [001] d..2 24571.887282: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
19475         rcuop/0-10    (   10) [001] d..3 24571.887352: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
19476         rcuop/0-10    (   10) [001] d..2 24571.887377: 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
19477          <idle>-0     (-----) [003] .n.1 24571.887741: cpu_idle: state=4294967295 cpu_id=3
19478          <idle>-0     (-----) [003] d..2 24571.887797: 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
19479     rcu_preempt-7     (    7) [003] d..2 24571.887889: 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
19480          <idle>-0     (-----) [003] d..1 24571.887913: cpu_idle: state=2 cpu_id=3
19481  msm_irqbalance-805   (  805) [001] d..2 24571.888083: 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
19482          <idle>-0     (-----) [001] d..1 24571.888115: cpu_idle: state=2 cpu_id=1
19483          <idle>-0     (-----) [003] d.s2 24571.894663: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
19484          <idle>-0     (-----) [003] dns3 24571.894694: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
19485          <idle>-0     (-----) [003] dns3 24571.894705: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
19486          <idle>-0     (-----) [003] dns4 24571.894754: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19487          <idle>-0     (-----) [003] .n.1 24571.894797: cpu_idle: state=4294967295 cpu_id=3
19488          <idle>-0     (-----) [003] d..2 24571.894816: 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
19489     rcu_preempt-7     (    7) [003] d..2 24571.894864: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
19490     rcu_preempt-7     (    7) [003] d..3 24571.894910: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
19491     rcu_preempt-7     (    7) [003] d..2 24571.894932: 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
19492         rcuop/0-10    (   10) [003] d..2 24571.894942: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
19493         rcuop/0-10    (   10) [003] d..3 24571.894978: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
19494         rcuop/0-10    (   10) [003] d..2 24571.894988: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
19495         rcuop/0-10    (   10) [003] d..3 24571.895008: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
19496         rcuop/0-10    (   10) [003] d..2 24571.895019: 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
19497         rcuop/1-21    (   21) [003] d..2 24571.895067: 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
19498     rcu_preempt-7     (    7) [003] d..2 24571.895087: 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
19499  kworker/u16:10-23868 (23868) [003] .... 24571.895167: clk_set_rate: l3_cluster0_vote_clk 403200000
19500  kworker/u16:10-23868 (23868) [003] .... 24571.895178: clk_set_rate: l3_clk 403200000
19501  kworker/u16:10-23868 (23868) [003] d..2 24571.895249: 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
19502          <idle>-0     (-----) [003] d..1 24571.895272: cpu_idle: state=0 cpu_id=3
19503          <idle>-0     (-----) [003] d.H3 24571.900995: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
19504          <idle>-0     (-----) [003] d.H3 24571.901017: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
19505          <idle>-0     (-----) [003] d.H4 24571.901034: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
19506          <idle>-0     (-----) [003] d.s2 24571.901045: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
19507          <idle>-0     (-----) [003] dns3 24571.901066: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
19508          <idle>-0     (-----) [003] .n.1 24571.901080: cpu_idle: state=4294967295 cpu_id=3
19509          <idle>-0     (-----) [003] d..2 24571.901097: 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
19510     rcu_preempt-7     (    7) [003] d..2 24571.901108: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
19511     rcu_preempt-7     (    7) [003] d..3 24571.901154: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
19512     rcu_preempt-7     (    7) [003] d..2 24571.901189: 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
19513          <idle>-0     (-----) [003] d..1 24571.901206: cpu_idle: state=2 cpu_id=3
19514          <idle>-0     (-----) [002] .n.1 24571.901347: cpu_idle: state=4294967295 cpu_id=2
19515          <idle>-0     (-----) [002] d..2 24571.901378: 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
19516         sugov:0-559   (  559) [002] d..2 24571.901401: 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
19517         rcuop/0-10    (   10) [002] d..2 24571.901408: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
19518         rcuop/0-10    (   10) [002] d..3 24571.901466: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
19519         rcuop/0-10    (   10) [002] d..2 24571.901481: 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
19520         rcuop/1-21    (   21) [002] d..2 24571.901518: 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
19521          <idle>-0     (-----) [002] d..1 24571.901536: cpu_idle: state=2 cpu_id=2
19522          <idle>-0     (-----) [007] dnh2 24571.902051: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
19523          <idle>-0     (-----) [007] .n.1 24571.902060: cpu_idle: state=4294967295 cpu_id=7
19524          <idle>-0     (-----) [007] d..2 24571.902072: 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
19525         sugov:4-560   (  560) [007] d..2 24571.902091: 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
19526          <idle>-0     (-----) [007] d..1 24571.902100: cpu_idle: state=2 cpu_id=7
19527          <idle>-0     (-----) [003] d..2 24572.024738: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
19528          <idle>-0     (-----) [000] ...1 24572.024786: cpu_idle: state=4294967295 cpu_id=0
19529          <idle>-0     (-----) [000] d..1 24572.024869: cpu_idle: state=2 cpu_id=0
19530          <idle>-0     (-----) [003] dn.3 24572.024921: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
19531          <idle>-0     (-----) [003] dnH3 24572.025288: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
19532          <idle>-0     (-----) [003] dnH3 24572.025386: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
19533          <idle>-0     (-----) [003] dnH4 24572.025464: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
19534          <idle>-0     (-----) [003] dns3 24572.025536: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19535          <idle>-0     (-----) [003] dns4 24572.025634: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19536          <idle>-0     (-----) [003] dns3 24572.025678: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
19537          <idle>-0     (-----) [003] dns4 24572.025706: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
19538          <idle>-0     (-----) [003] .n.1 24572.025733: cpu_idle: state=4294967295 cpu_id=3
19539          <idle>-0     (-----) [003] d..2 24572.025851: 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
19540          <idle>-0     (-----) [002] .n.1 24572.025853: cpu_idle: state=4294967295 cpu_id=2
19541          <idle>-0     (-----) [002] d..2 24572.025914: 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
19542     ksoftirqd/3-34    (   34) [003] d..2 24572.025917: 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
19543         sugov:0-559   (  559) [002] d..2 24572.026127: 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
19544     kworker/3:1-12662 (12662) [003] d..2 24572.026148: 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
19545          <idle>-0     (-----) [002] d..1 24572.026165: cpu_idle: state=2 cpu_id=2
19546  kworker/u16:10-23868 (23868) [003] .... 24572.026375: clk_set_rate: l3_cluster0_vote_clk 300000000
19547  kworker/u16:10-23868 (23868) [003] .... 24572.026404: clk_set_rate: l3_clk 300000000
19548          <idle>-0     (-----) [007] dnh2 24572.026532: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
19549          <idle>-0     (-----) [007] .n.1 24572.026554: cpu_idle: state=4294967295 cpu_id=7
19550          <idle>-0     (-----) [007] d..2 24572.026580: 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
19551         sugov:4-560   (  560) [007] d..2 24572.026629: 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
19552          <idle>-0     (-----) [007] d..1 24572.026680: cpu_idle: state=2 cpu_id=7
19553  kworker/u16:10-23868 (23868) [003] d..2 24572.027874: 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
19554          <idle>-0     (-----) [003] d..1 24572.027906: cpu_idle: state=2 cpu_id=3
19555          <idle>-0     (-----) [002] d.h3 24572.132313: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
19556          <idle>-0     (-----) [000] d..2 24572.132481: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19557          <idle>-0     (-----) [000] dn.3 24572.132619: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19558          <idle>-0     (-----) [002] dnh4 24572.132619: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
19559          <idle>-0     (-----) [000] .n.1 24572.132663: cpu_idle: state=4294967295 cpu_id=0
19560          <idle>-0     (-----) [002] dnh3 24572.133004: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
19561          <idle>-0     (-----) [000] d..2 24572.133036: 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
19562          <idle>-0     (-----) [002] dnh3 24572.133079: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
19563     ksoftirqd/0-3     (    3) [000] d.s2 24572.133125: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19564          <idle>-0     (-----) [002] dnh4 24572.133177: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
19565          <idle>-0     (-----) [002] .n.1 24572.133196: cpu_idle: state=4294967295 cpu_id=2
19566          <idle>-0     (-----) [002] d..2 24572.133245: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
19567     ksoftirqd/0-3     (    3) [000] d.s3 24572.133278: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
19568     ksoftirqd/0-3     (    3) [000] d.s2 24572.133320: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
19569     ksoftirqd/0-3     (    3) [000] d.s3 24572.133350: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
19570     ksoftirqd/0-3     (    3) [000] d..2 24572.133396: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
19571   kworker/u17:2-23076 (23076) [002] d..2 24572.133412: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
19572   kworker/u17:2-23076 (23076) [002] d..3 24572.133452: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
19573   kworker/u17:2-23076 (23076) [002] d..2 24572.133523: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
19574     kworker/0:1-13012 (13012) [000] d..2 24572.133573: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
19575          <idle>-0     (-----) [003] .n.1 24572.133580: cpu_idle: state=4294967295 cpu_id=3
19576          <idle>-0     (-----) [003] d..2 24572.133630: 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
19577     kworker/2:0-12895 (12895) [002] d..2 24572.133642: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
19578     kworker/2:0-12895 (12895) [002] d..3 24572.133723: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
19579         sugov:0-559   (  559) [003] d..2 24572.133790: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
19580     kworker/2:0-12895 (12895) [002] d..2 24572.133870: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
19581          <idle>-0     (-----) [002] d..1 24572.133944: cpu_idle: state=2 cpu_id=2
19582          <idle>-0     (-----) [007] dnh2 24572.134225: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
19583          <idle>-0     (-----) [007] .n.1 24572.134244: cpu_idle: state=4294967295 cpu_id=7
19584          <idle>-0     (-----) [007] d..2 24572.134269: 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
19585         sugov:4-560   (  560) [007] d..2 24572.134336: 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
19586          <idle>-0     (-----) [007] d..1 24572.134356: cpu_idle: state=2 cpu_id=7
19587            adbd-23484 ( 1007) [003] d..2 24572.134639: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
19588          <idle>-0     (-----) [003] d..1 24572.134668: cpu_idle: state=2 cpu_id=3
19589          <idle>-0     (-----) [002] d.h3 24572.134929: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
19590          <idle>-0     (-----) [002] dnh4 24572.134965: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
19591          <idle>-0     (-----) [002] .n.1 24572.134980: cpu_idle: state=4294967295 cpu_id=2
19592          <idle>-0     (-----) [002] d..2 24572.135002: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
19593  kworker/u16:10-23868 (23868) [000] d..2 24572.135018: 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
19594   kworker/u17:2-23076 (23076) [002] d..2 24572.135031: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
19595   kworker/u17:2-23076 (23076) [002] d..3 24572.135051: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
19596          <idle>-0     (-----) [000] d..1 24572.135052: cpu_idle: state=2 cpu_id=0
19597   kworker/u17:2-23076 (23076) [002] d..2 24572.135087: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
19598     kworker/2:0-12895 (12895) [002] d..2 24572.135157: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
19599     kworker/2:0-12895 (12895) [002] d..3 24572.135214: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
19600     kworker/2:0-12895 (12895) [002] d..2 24572.135248: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
19601          <idle>-0     (-----) [003] d.s3 24572.135403: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
19602            adbd-23484 ( 1007) [002] d..2 24572.135444: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
19603          <idle>-0     (-----) [003] d.s4 24572.135476: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
19604            adbd-23484 ( 1007) [002] d..3 24572.135482: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
19605          <idle>-0     (-----) [003] dns4 24572.135495: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19606          <idle>-0     (-----) [003] .n.1 24572.135512: cpu_idle: state=4294967295 cpu_id=3
19607          <idle>-0     (-----) [003] d..2 24572.135534: 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
19608            adbd-23484 ( 1007) [002] d..2 24572.135635: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
19609  kworker/u16:10-23868 (23868) [003] d..2 24572.135641: 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
19610          <idle>-0     (-----) [003] d..1 24572.135661: cpu_idle: state=2 cpu_id=3
19611            adbd-1007  ( 1007) [002] d.H3 24572.137703: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
19612            adbd-1007  ( 1007) [002] d.H3 24572.137730: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
19613            adbd-1007  ( 1007) [002] d.H4 24572.137754: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
19614          <idle>-0     (-----) [003] .n.1 24572.138062: cpu_idle: state=4294967295 cpu_id=3
19615          <idle>-0     (-----) [003] d..2 24572.138094: 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
19616         sugov:0-559   (  559) [003] .... 24572.138204: clk_set_rate: pwrcl_clk 748800000
19617         sugov:0-559   (  559) [003] .... 24572.138298: clk_set_rate: cpu3_pwrcl_clk 652800000
19618         sugov:0-559   (  559) [003] .... 24572.138317: clk_set_rate: cpu2_pwrcl_clk 652800000
19619         sugov:0-559   (  559) [003] .... 24572.138327: clk_set_rate: cpu1_pwrcl_clk 652800000
19620         sugov:0-559   (  559) [003] .... 24572.138339: clk_set_rate: cpu0_pwrcl_clk 748800000
19621         sugov:0-559   (  559) [003] .... 24572.138357: cpu_frequency: state=748800 cpu_id=0
19622         sugov:0-559   (  559) [003] .... 24572.138443: cpu_frequency: state=748800 cpu_id=1
19623         sugov:0-559   (  559) [003] .... 24572.138449: cpu_frequency: state=748800 cpu_id=2
19624         sugov:0-559   (  559) [003] .... 24572.138455: cpu_frequency: state=748800 cpu_id=3
19625         sugov:0-559   (  559) [003] d..2 24572.138505: 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
19626          <idle>-0     (-----) [003] d..1 24572.138524: cpu_idle: state=2 cpu_id=3
19627          <idle>-0     (-----) [007] dnh2 24572.138782: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
19628          <idle>-0     (-----) [007] .n.1 24572.138792: cpu_idle: state=4294967295 cpu_id=7
19629          <idle>-0     (-----) [007] d..2 24572.138803: 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
19630         sugov:4-560   (  560) [007] d..2 24572.138824: 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
19631          <idle>-0     (-----) [007] d..1 24572.138834: cpu_idle: state=2 cpu_id=7
19632            adbd-1007  ( 1007) [002] d..2 24572.140161: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=13120 next_prio=120
19633              sh-13120 (13120) [002] d.s2 24572.140933: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19634              sh-13120 (13120) [002] d.s3 24572.140985: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19635          <idle>-0     (-----) [003] .n.1 24572.141288: cpu_idle: state=4294967295 cpu_id=3
19636          <idle>-0     (-----) [003] d..2 24572.141325: 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
19637  kworker/u16:10-23868 (23868) [003] .... 24572.141403: clk_set_rate: l3_cluster0_vote_clk 480000000
19638  kworker/u16:10-23868 (23868) [003] .... 24572.141420: clk_set_rate: l3_clk 480000000
19639              sh-13120 (13120) [002] d..2 24572.141472: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
19640              sh-13120 (13120) [002] dn.3 24572.141500: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
19641              sh-13120 (13120) [002] d..2 24572.141520: sched_switch: prev_comm=adbd prev_pid=13120 prev_prio=120 prev_state=R+ ==> next_comm=migration/2 next_pid=25 next_prio=0
19642     migration/2-25    (   25) [002] d..2 24572.141646: 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
19643          <idle>-0     (-----) [002] d..1 24572.141665: cpu_idle: state=2 cpu_id=2
19644  kworker/u16:10-23868 (23868) [003] d..2 24572.141825: 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
19645          <idle>-0     (-----) [003] d..1 24572.141845: cpu_idle: state=2 cpu_id=3
19646          <idle>-0     (-----) [000] .n.1 24572.141940: cpu_idle: state=4294967295 cpu_id=0
19647          <idle>-0     (-----) [000] d..2 24572.141965: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=13120 next_prio=120
19648          <idle>-0     (-----) [003] d.s3 24572.142664: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19649          <idle>-0     (-----) [003] d.s4 24572.142678: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
19650          <idle>-0     (-----) [003] dns4 24572.142685: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19651          <idle>-0     (-----) [003] .n.1 24572.142696: cpu_idle: state=4294967295 cpu_id=3
19652          <idle>-0     (-----) [003] d..2 24572.142712: 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
19653  kworker/u16:10-23868 (23868) [003] d..2 24572.142757: 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
19654          <idle>-0     (-----) [003] d..1 24572.142785: cpu_idle: state=0 cpu_id=3
19655              sh-13120 (13120) [000] d..2 24572.143513: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
19656              sh-13120 (13120) [000] d..3 24572.143586: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
19657          <idle>-0     (-----) [003] .n.1 24572.143594: cpu_idle: state=4294967295 cpu_id=3
19658              sh-13120 (13120) [000] d..2 24572.143607: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
19659          <idle>-0     (-----) [003] d..2 24572.143610: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
19660              sh-13120 (13120) [000] d..3 24572.143661: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
19661            adbd-1007  ( 1007) [003] d..2 24572.143869: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
19662            adbd-1007  ( 1007) [003] d..3 24572.143912: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
19663            adbd-1007  ( 1007) [003] d..1 24572.144274: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
19664            adbd-1007  ( 1007) [003] d..2 24572.144333: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
19665              sh-13120 (13120) [000] d..2 24572.144349: sched_switch: prev_comm=sh prev_pid=13120 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
19666            adbd-23485 ( 1007) [000] d..2 24572.144507: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13120 next_prio=120
19667            adbd-1007  ( 1007) [003] d..2 24572.144515: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
19668         rcuop/0-10    (   10) [003] d..2 24572.144536: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
19669         rcuop/0-10    (   10) [003] d..3 24572.144580: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
19670         rcuop/0-10    (   10) [003] d..2 24572.144594: 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
19671         rcuop/2-29    (   29) [003] d..2 24572.144612: 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
19672     rcu_preempt-7     (    7) [003] d..2 24572.144638: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=13121 next_prio=120
19673          <idle>-0     (-----) [002] d.h3 24572.144770: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
19674 shell svc 13120-13121 ( 1007) [003] d..2 24572.144779: sched_switch: prev_comm=shell svc 13120 prev_pid=13121 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
19675          <idle>-0     (-----) [003] d..1 24572.144801: cpu_idle: state=0 cpu_id=3
19676          <idle>-0     (-----) [002] dnh4 24572.144804: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
19677          <idle>-0     (-----) [002] .n.1 24572.144818: cpu_idle: state=4294967295 cpu_id=2
19678          <idle>-0     (-----) [002] d..2 24572.144840: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
19679   kworker/u17:2-23076 (23076) [002] d..2 24572.144868: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
19680   kworker/u17:2-23076 (23076) [002] d..3 24572.144885: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
19681   kworker/u17:2-23076 (23076) [002] d..2 24572.144920: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
19682     kworker/2:0-12895 (12895) [002] d..2 24572.144940: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
19683     kworker/2:0-12895 (12895) [002] d..3 24572.144985: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
19684     kworker/2:0-12895 (12895) [002] d..2 24572.145007: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
19685            adbd-23485 ( 1007) [002] d..2 24572.145089: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
19686          <idle>-0     (-----) [002] d..1 24572.145109: cpu_idle: state=2 cpu_id=2
19687          <idle>-0     (-----) [002] d.h3 24572.145497: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
19688          <idle>-0     (-----) [002] dnh4 24572.145516: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
19689          <idle>-0     (-----) [002] .n.1 24572.145527: cpu_idle: state=4294967295 cpu_id=2
19690          <idle>-0     (-----) [002] d..2 24572.145544: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
19691   kworker/u17:2-23076 (23076) [002] d..2 24572.145565: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
19692   kworker/u17:2-23076 (23076) [002] d..3 24572.145578: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
19693   kworker/u17:2-23076 (23076) [002] d..2 24572.145608: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
19694     kworker/2:0-12895 (12895) [002] d..2 24572.145625: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
19695     kworker/2:0-12895 (12895) [002] d..3 24572.145649: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
19696     kworker/2:0-12895 (12895) [002] d..2 24572.145669: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
19697            adbd-23484 ( 1007) [002] d..2 24572.145795: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
19698          <idle>-0     (-----) [002] d.h4 24572.145822: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
19699          <idle>-0     (-----) [002] dnh5 24572.145835: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
19700          <idle>-0     (-----) [002] d..2 24572.145851: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
19701   kworker/u17:2-23076 (23076) [002] d..2 24572.145866: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
19702   kworker/u17:2-23076 (23076) [002] d..3 24572.145876: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
19703   kworker/u17:2-23076 (23076) [002] d..2 24572.145906: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
19704     kworker/2:0-12895 (12895) [002] d..2 24572.145918: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
19705     kworker/2:0-12895 (12895) [002] d..3 24572.145936: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
19706     kworker/2:0-12895 (12895) [002] d..2 24572.145953: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
19707            adbd-23484 ( 1007) [002] d..2 24572.145988: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
19708            adbd-23484 ( 1007) [002] d..3 24572.146011: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
19709            adbd-23484 ( 1007) [002] d..2 24572.146096: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
19710            adbd-1007  ( 1007) [002] d..2 24572.146215: sched_waking: comm=shell svc 13120 pid=13121 prio=120 target_cpu=003
19711            adbd-1007  ( 1007) [002] d..3 24572.146240: sched_wakeup: comm=shell svc 13120 pid=13121 prio=120 target_cpu=002
19712            adbd-1007  ( 1007) [002] d..1 24572.146264: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
19713            adbd-1007  ( 1007) [002] d..2 24572.146313: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
19714          <idle>-0     (-----) [003] .n.1 24572.146321: cpu_idle: state=4294967295 cpu_id=3
19715          <idle>-0     (-----) [003] d..2 24572.146336: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
19716            adbd-1007  ( 1007) [002] d..2 24572.146393: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=shell svc 13120 next_pid=13121 next_prio=120
19717            adbd-23485 ( 1007) [003] d..2 24572.146442: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
19718 shell svc 13120-13121 ( 1007) [002] d.h2 24572.146455: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
19719          <idle>-0     (-----) [003] d..1 24572.146457: cpu_idle: state=0 cpu_id=3
19720 shell svc 13120-13121 ( 1007) [002] dnh3 24572.146478: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
19721 shell svc 13120-13121 ( 1007) [002] d..2 24572.146493: sched_switch: prev_comm=shell svc 13120 prev_pid=13121 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
19722   kworker/u17:2-23076 (23076) [002] d..2 24572.146514: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
19723   kworker/u17:2-23076 (23076) [002] d..3 24572.146526: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
19724   kworker/u17:2-23076 (23076) [002] d..2 24572.146556: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
19725     kworker/2:0-12895 (12895) [002] d..2 24572.146571: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
19726     kworker/2:0-12895 (12895) [002] d..3 24572.146608: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
19727          <idle>-0     (-----) [003] .n.1 24572.146614: cpu_idle: state=4294967295 cpu_id=3
19728     kworker/2:0-12895 (12895) [002] d..2 24572.146631: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=shell svc 13120 next_pid=13121 next_prio=120
19729          <idle>-0     (-----) [003] d..2 24572.146632: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
19730            adbd-23485 ( 1007) [003] d..2 24572.146665: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
19731          <idle>-0     (-----) [003] d..1 24572.146676: cpu_idle: state=0 cpu_id=3
19732 shell svc 13120-13121 ( 1007) [002] d..2 24572.146709: sched_switch: prev_comm=shell svc 13120 prev_pid=13121 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
19733          <idle>-0     (-----) [002] d..1 24572.146731: cpu_idle: state=2 cpu_id=2
19734              sh-13120 (13120) [000] d.s2 24572.147595: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
19735              sh-13120 (13120) [000] dns3 24572.147615: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
19736              sh-13120 (13120) [000] d..2 24572.147634: sched_switch: prev_comm=sh prev_pid=13120 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
19737     kworker/0:1-13012 (13012) [000] d..2 24572.147679: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13120 next_prio=120
19738          <idle>-0     (-----) [003] d.s2 24572.150916: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
19739              sh-13120 (13120) [000] d.s3 24572.150931: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19740          <idle>-0     (-----) [003] dns3 24572.150937: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
19741              sh-13120 (13120) [000] d.s4 24572.150966: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19742          <idle>-0     (-----) [003] .n.1 24572.150974: cpu_idle: state=4294967295 cpu_id=3
19743          <idle>-0     (-----) [003] d..2 24572.150988: 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
19744     rcu_preempt-7     (    7) [003] d..2 24572.151015: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
19745     rcu_preempt-7     (    7) [003] d..3 24572.151033: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
19746     rcu_preempt-7     (    7) [003] d..2 24572.151036: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
19747     rcu_preempt-7     (    7) [003] d..3 24572.151050: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
19748     rcu_preempt-7     (    7) [003] d..2 24572.151065: 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
19749         rcuop/2-29    (   29) [003] d..2 24572.151073: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
19750         rcuop/2-29    (   29) [003] d..3 24572.151099: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
19751         rcuop/2-29    (   29) [003] d..2 24572.151111: 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
19752         rcuop/0-10    (   10) [003] d..2 24572.151128: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
19753         rcuop/0-10    (   10) [003] d..3 24572.151143: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
19754         rcuop/0-10    (   10) [003] d..2 24572.151153: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
19755         rcuop/3-37    (   37) [003] d..2 24572.151180: 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
19756     rcu_preempt-7     (    7) [003] d..2 24572.151195: 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
19757  kworker/u16:10-23868 (23868) [003] .... 24572.151346: clk_set_rate: l3_cluster0_vote_clk 576000000
19758  kworker/u16:10-23868 (23868) [003] .... 24572.151356: clk_set_rate: l3_clk 576000000
19759  kworker/u16:10-23868 (23868) [003] d..2 24572.151411: 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
19760          <idle>-0     (-----) [003] d..1 24572.151430: cpu_idle: state=0 cpu_id=3
19761          <idle>-0     (-----) [003] d.s2 24572.157582: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
19762              sh-13120 (13120) [000] d.H2 24572.157654: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
19763          <idle>-0     (-----) [003] dns3 24572.157654: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
19764          <idle>-0     (-----) [003] .n.1 24572.157666: cpu_idle: state=4294967295 cpu_id=3
19765              sh-13120 (13120) [000] d.H2 24572.157674: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
19766          <idle>-0     (-----) [003] d..2 24572.157679: 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
19767              sh-13120 (13120) [000] d.H3 24572.157712: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
19768              sh-13120 (13120) [000] d.s2 24572.157722: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
19769     rcu_preempt-7     (    7) [003] d..2 24572.157730: 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
19770          <idle>-0     (-----) [003] d..1 24572.157744: cpu_idle: state=2 cpu_id=3
19771              sh-13120 (13120) [000] d.s3 24572.157749: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
19772          <idle>-0     (-----) [003] .n.1 24572.157772: cpu_idle: state=4294967295 cpu_id=3
19773          <idle>-0     (-----) [003] d..2 24572.157785: 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
19774     rcu_preempt-7     (    7) [003] d..2 24572.157790: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
19775     rcu_preempt-7     (    7) [003] d..3 24572.157810: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
19776     rcu_preempt-7     (    7) [003] d..2 24572.157822: 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
19777         rcuop/0-10    (   10) [003] d..2 24572.157854: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
19778          <idle>-0     (-----) [003] d..1 24572.157869: cpu_idle: state=0 cpu_id=3
19779          <idle>-0     (-----) [002] .n.1 24572.157977: cpu_idle: state=4294967295 cpu_id=2
19780          <idle>-0     (-----) [002] d..2 24572.158001: 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
19781         sugov:0-559   (  559) [002] .... 24572.158037: clk_set_rate: pwrcl_clk 1324800000
19782         sugov:0-559   (  559) [002] .... 24572.158048: clk_set_rate: cpu3_pwrcl_clk 748800000
19783         sugov:0-559   (  559) [002] .... 24572.158060: clk_set_rate: cpu2_pwrcl_clk 748800000
19784         sugov:0-559   (  559) [002] .... 24572.158071: clk_set_rate: cpu1_pwrcl_clk 748800000
19785         sugov:0-559   (  559) [002] .... 24572.158080: clk_set_rate: cpu0_pwrcl_clk 1324800000
19786         sugov:0-559   (  559) [002] .... 24572.158092: cpu_frequency: state=1324800 cpu_id=0
19787         sugov:0-559   (  559) [002] .... 24572.158120: cpu_frequency: state=1324800 cpu_id=1
19788         sugov:0-559   (  559) [002] .... 24572.158125: cpu_frequency: state=1324800 cpu_id=2
19789         sugov:0-559   (  559) [002] .... 24572.158130: cpu_frequency: state=1324800 cpu_id=3
19790         sugov:0-559   (  559) [002] d..2 24572.158165: 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
19791          <idle>-0     (-----) [002] d..1 24572.158182: cpu_idle: state=0 cpu_id=2
19792          <idle>-0     (-----) [007] dnh2 24572.158621: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
19793          <idle>-0     (-----) [007] .n.1 24572.158629: cpu_idle: state=4294967295 cpu_id=7
19794          <idle>-0     (-----) [007] d..2 24572.158640: 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
19795         sugov:4-560   (  560) [007] d..2 24572.158659: 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
19796          <idle>-0     (-----) [007] d..1 24572.158667: cpu_idle: state=2 cpu_id=7
19797              sh-13120 (13120) [000] d..2 24572.160541: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
19798              sh-13120 (13120) [000] d..3 24572.160581: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
19799          <idle>-0     (-----) [002] .n.1 24572.160588: cpu_idle: state=4294967295 cpu_id=2
19800          <idle>-0     (-----) [002] d..2 24572.160597: 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
19801         rcuop/0-10    (   10) [002] d..2 24572.160603: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
19802         rcuop/0-10    (   10) [002] d..3 24572.160637: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
19803         rcuop/0-10    (   10) [002] d..2 24572.160646: 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
19804     rcu_preempt-7     (    7) [002] d..2 24572.160665: 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
19805          <idle>-0     (-----) [002] d..1 24572.160673: cpu_idle: state=0 cpu_id=2
19806              sh-13120 (13120) [000] d.s2 24572.160910: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19807              sh-13120 (13120) [000] d.s3 24572.160947: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
19808          <idle>-0     (-----) [002] .n.1 24572.160952: cpu_idle: state=4294967295 cpu_id=2
19809          <idle>-0     (-----) [002] d..2 24572.160962: 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
19810  kworker/u16:10-23868 (23868) [002] .... 24572.161009: clk_set_rate: l3_cluster0_vote_clk 748800000
19811  kworker/u16:10-23868 (23868) [002] .... 24572.161013: clk_set_rate: l3_clk 748800000
19812  kworker/u16:10-23868 (23868) [002] d..2 24572.161247: 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
19813          <idle>-0     (-----) [002] d..1 24572.161254: cpu_idle: state=0 cpu_id=2
19814          <idle>-0     (-----) [003] d.s3 24572.161282: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
19815          <idle>-0     (-----) [003] d.s4 24572.161290: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
19816          <idle>-0     (-----) [003] d.s4 24572.161298: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
19817          <idle>-0     (-----) [002] .n.1 24572.161303: cpu_idle: state=4294967295 cpu_id=2
19818          <idle>-0     (-----) [003] ...1 24572.161306: cpu_idle: state=4294967295 cpu_id=3
19819          <idle>-0     (-----) [003] d..1 24572.161310: cpu_idle: state=0 cpu_id=3
19820          <idle>-0     (-----) [002] d..2 24572.161311: 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
19821  kworker/u16:10-23868 (23868) [002] d..2 24572.161331: 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
19822          <idle>-0     (-----) [002] d..1 24572.161336: cpu_idle: state=0 cpu_id=2
19823          <idle>-0     (-----) [002] d.s2 24572.164238: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
19824          <idle>-0     (-----) [002] dns3 24572.164252: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
19825          <idle>-0     (-----) [002] .n.1 24572.164267: cpu_idle: state=4294967295 cpu_id=2
19826          <idle>-0     (-----) [002] d..2 24572.164274: 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
19827     rcu_preempt-7     (    7) [002] d..2 24572.164282: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
19828     rcu_preempt-7     (    7) [002] d..3 24572.164293: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
19829     rcu_preempt-7     (    7) [002] d..2 24572.164301: 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
19830         rcuop/0-10    (   10) [002] d..2 24572.164311: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
19831         rcuop/0-10    (   10) [002] d..3 24572.164321: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
19832         rcuop/0-10    (   10) [002] d..2 24572.164329: 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
19833     rcu_preempt-7     (    7) [002] d..2 24572.164347: 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
19834          <idle>-0     (-----) [002] d..1 24572.164357: cpu_idle: state=2 cpu_id=2
19835          <idle>-0     (-----) [003] .n.1 24572.164984: cpu_idle: state=4294967295 cpu_id=3
19836          <idle>-0     (-----) [003] d..2 24572.164996: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=13122 next_prio=120
19837              sh-13120 (13120) [000] d..2 24572.165129: sched_switch: prev_comm=sh prev_pid=13120 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19838          <idle>-0     (-----) [000] d..1 24572.165148: cpu_idle: state=2 cpu_id=0
19839 Shutdown thread-13122 (13122) [003] d..2 24572.165922: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
19840 Shutdown thread-13122 (13122) [003] dn.3 24572.165946: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
19841 Shutdown thread-13122 (13122) [003] d..2 24572.165957: sched_switch: prev_comm=am prev_pid=13122 prev_prio=120 prev_state=R+ ==> next_comm=rcuop/2 next_pid=29 next_prio=120
19842         rcuop/2-29    (   29) [003] d..2 24572.165969: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=am next_pid=13122 next_prio=120
19843 Shutdown thread-13122 (13122) [003] d.s2 24572.170907: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
19844 Shutdown thread-13122 (13122) [003] d.s3 24572.170936: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
19845          <idle>-0     (-----) [002] dns2 24572.171316: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
19846          <idle>-0     (-----) [002] dns3 24572.171335: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
19847          <idle>-0     (-----) [002] .n.1 24572.171345: cpu_idle: state=4294967295 cpu_id=2
19848          <idle>-0     (-----) [002] d..2 24572.171356: 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
19849     rcu_preempt-7     (    7) [002] d..2 24572.171364: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
19850     rcu_preempt-7     (    7) [002] d..3 24572.171374: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
19851     rcu_preempt-7     (    7) [002] d..2 24572.171385: 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
19852         rcuop/0-10    (   10) [002] d..2 24572.171410: 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
19853  kworker/u16:10-23868 (23868) [002] d..2 24572.171652: 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
19854          <idle>-0     (-----) [002] d..1 24572.171663: cpu_idle: state=0 cpu_id=2
19855 Shutdown thread-13122 (13122) [003] d.s2 24572.172235: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
19856 Shutdown thread-13122 (13122) [003] d.s3 24572.172247: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
19857 Shutdown thread-13122 (13122) [003] d.s3 24572.172256: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
19858          <idle>-0     (-----) [002] .n.1 24572.172262: cpu_idle: state=4294967295 cpu_id=2
19859          <idle>-0     (-----) [002] d..2 24572.172271: 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
19860  kworker/u16:10-23868 (23868) [002] .... 24572.172342: clk_set_rate: l3_cluster0_vote_clk 652800000
19861  kworker/u16:10-23868 (23868) [002] .... 24572.172348: clk_set_rate: l3_clk 652800000
19862  kworker/u16:10-23868 (23868) [002] d..2 24572.172382: 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
19863          <idle>-0     (-----) [002] d..1 24572.172392: cpu_idle: state=0 cpu_id=2
19864 Shutdown thread-13122 (13122) [003] d..2 24572.177125: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
19865 Shutdown thread-13122 (13122) [003] dn.3 24572.177143: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
19866 Shutdown thread-13122 (13122) [003] d..2 24572.177156: sched_switch: prev_comm=am prev_pid=13122 prev_prio=120 prev_state=R+ ==> next_comm=migration/3 next_pid=33 next_prio=0
19867          <idle>-0     (-----) [002] .n.1 24572.177197: cpu_idle: state=4294967295 cpu_id=2
19868          <idle>-0     (-----) [002] d..2 24572.177209: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=am next_pid=13122 next_prio=120
19869<...>-33 ( 33) [003] d..2 24572.177219: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
19870          <idle>-0     (-----) [003] d..1 24572.177237: cpu_idle: state=0 cpu_id=3
19871 Shutdown thread-13122 (13122) [002] d.H3 24572.177660: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
19872 Shutdown thread-13122 (13122) [002] d.H3 24572.177683: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
19873 Shutdown thread-13122 (13122) [002] d.H4 24572.177708: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
19874 Shutdown thread-13122 (13122) [002] d.s2 24572.177713: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
19875          <idle>-0     (-----) [003] .n.1 24572.177714: cpu_idle: state=4294967295 cpu_id=3
19876          <idle>-0     (-----) [003] d..2 24572.177724: 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
19877 Shutdown thread-13122 (13122) [002] d.s3 24572.177743: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
19878         sugov:0-559   (  559) [003] .... 24572.177758: clk_set_rate: pwrcl_clk 1228800000
19879         sugov:0-559   (  559) [003] .... 24572.177766: clk_set_rate: cpu3_pwrcl_clk 1324800000
19880         sugov:0-559   (  559) [003] .... 24572.177776: clk_set_rate: cpu2_pwrcl_clk 1324800000
19881         sugov:0-559   (  559) [003] .... 24572.177785: clk_set_rate: cpu1_pwrcl_clk 1324800000
19882         sugov:0-559   (  559) [003] .... 24572.177794: clk_set_rate: cpu0_pwrcl_clk 1228800000
19883         sugov:0-559   (  559) [003] .... 24572.177911: cpu_frequency: state=1228800 cpu_id=0
19884         sugov:0-559   (  559) [003] .... 24572.177935: cpu_frequency: state=1228800 cpu_id=1
19885         sugov:0-559   (  559) [003] .... 24572.177938: cpu_frequency: state=1228800 cpu_id=2
19886         sugov:0-559   (  559) [003] .... 24572.177941: cpu_frequency: state=1228800 cpu_id=3
19887         sugov:0-559   (  559) [003] d..2 24572.177959: 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
19888     rcu_preempt-7     (    7) [003] d..2 24572.177986: 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
19889          <idle>-0     (-----) [003] d..1 24572.177995: cpu_idle: state=0 cpu_id=3
19890          <idle>-0     (-----) [007] dnh2 24572.178718: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
19891          <idle>-0     (-----) [007] .n.1 24572.178727: cpu_idle: state=4294967295 cpu_id=7
19892          <idle>-0     (-----) [007] d..2 24572.178740: 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
19893         sugov:4-560   (  560) [007] d..2 24572.178763: 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
19894          <idle>-0     (-----) [007] d..1 24572.178774: cpu_idle: state=2 cpu_id=7
19895 Shutdown thread-13122 (13122) [002] d.s3 24572.180910: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
19896 Shutdown thread-13122 (13122) [002] dns4 24572.180929: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
19897 Shutdown thread-13122 (13122) [002] d..2 24572.180945: sched_switch: prev_comm=app_process prev_pid=13122 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
19898  kworker/u16:10-23868 (23868) [002] d..2 24572.181017: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=app_process next_pid=13122 next_prio=120
19899 Shutdown thread-13122 (13122) [002] d.s2 24572.184240: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
19900          <idle>-0     (-----) [003] d.s2 24572.184242: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
19901 Shutdown thread-13122 (13122) [002] dns3 24572.184257: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
19902          <idle>-0     (-----) [003] dns3 24572.184258: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
19903 Shutdown thread-13122 (13122) [002] d..2 24572.184269: sched_switch: prev_comm=app_process prev_pid=13122 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
19904          <idle>-0     (-----) [003] .n.1 24572.184275: cpu_idle: state=4294967295 cpu_id=3
19905          <idle>-0     (-----) [003] d..2 24572.184284: 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
19906     rcu_preempt-7     (    7) [003] d..2 24572.184289: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
19907     rcu_preempt-7     (    7) [003] d..3 24572.184302: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
19908     rcu_preempt-7     (    7) [003] d..2 24572.184312: 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
19909         rcuop/2-29    (   29) [003] d..2 24572.184317: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
19910         rcuop/2-29    (   29) [003] d..3 24572.184332: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
19911         rcuop/2-29    (   29) [003] d..2 24572.184340: 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
19912         rcuop/3-37    (   37) [003] d..2 24572.184381: 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
19913          <idle>-0     (-----) [003] d..1 24572.184390: cpu_idle: state=0 cpu_id=3
19914  kworker/u16:10-23868 (23868) [002] d..2 24572.184476: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=app_process next_pid=13122 next_prio=120
19915          <idle>-0     (-----) [003] d.s3 24572.184513: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
19916          <idle>-0     (-----) [003] d.s4 24572.184530: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
19917          <idle>-0     (-----) [003] dns4 24572.184535: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19918          <idle>-0     (-----) [003] .n.1 24572.184542: cpu_idle: state=4294967295 cpu_id=3
19919          <idle>-0     (-----) [003] d..2 24572.184550: 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
19920  kworker/u16:10-23868 (23868) [003] d..2 24572.184628: 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
19921          <idle>-0     (-----) [003] d..1 24572.184637: cpu_idle: state=2 cpu_id=3
19922 Shutdown thread-13122 (13122) [002] d.s2 24572.190907: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19923 Shutdown thread-13122 (13122) [002] d.s3 24572.190939: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19924          <idle>-0     (-----) [003] dns2 24572.191233: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
19925          <idle>-0     (-----) [003] dns3 24572.191249: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
19926          <idle>-0     (-----) [003] .n.1 24572.191261: cpu_idle: state=4294967295 cpu_id=3
19927          <idle>-0     (-----) [003] d..2 24572.191272: 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
19928     rcu_preempt-7     (    7) [003] d..2 24572.191287: 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
19929  kworker/u16:10-23868 (23868) [003] d..2 24572.191481: 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
19930          <idle>-0     (-----) [003] d.s4 24572.191520: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19931          <idle>-0     (-----) [003] d.s5 24572.191527: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
19932          <idle>-0     (-----) [003] dns5 24572.191531: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19933          <idle>-0     (-----) [003] d..2 24572.191542: 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
19934  kworker/u16:10-23868 (23868) [003] .... 24572.191615: clk_set_rate: l3_cluster0_vote_clk 940800000
19935  kworker/u16:10-23868 (23868) [003] .... 24572.191621: clk_set_rate: l3_clk 940800000
19936  kworker/u16:10-23868 (23868) [003] d..2 24572.191653: 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
19937          <idle>-0     (-----) [003] d..1 24572.191665: cpu_idle: state=0 cpu_id=3
19938 Shutdown thread-13122 (13122) [002] d.s2 24572.194242: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
19939 Shutdown thread-13122 (13122) [002] dns3 24572.194277: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
19940 Shutdown thread-13122 (13122) [002] d..2 24572.194289: sched_switch: prev_comm=app_process prev_pid=13122 prev_prio=120 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
19941     rcu_preempt-7     (    7) [002] d..2 24572.194295: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
19942     rcu_preempt-7     (    7) [002] d..3 24572.194310: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
19943     rcu_preempt-7     (    7) [002] d..2 24572.194323: 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
19944         rcuop/0-10    (   10) [002] d..2 24572.194345: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=app_process next_pid=13122 next_prio=120
19945          <idle>-0     (-----) [003] d.H3 24572.197679: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
19946          <idle>-0     (-----) [003] d.H3 24572.197703: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
19947          <idle>-0     (-----) [003] dnH4 24572.197717: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
19948          <idle>-0     (-----) [003] .n.1 24572.197736: cpu_idle: state=4294967295 cpu_id=3
19949          <idle>-0     (-----) [003] d..2 24572.197745: 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
19950         sugov:0-559   (  559) [003] .... 24572.197782: clk_set_rate: pwrcl_clk 1056000000
19951         sugov:0-559   (  559) [003] .... 24572.197791: clk_set_rate: cpu3_pwrcl_clk 1228800000
19952         sugov:0-559   (  559) [003] .... 24572.197800: clk_set_rate: cpu2_pwrcl_clk 1228800000
19953         sugov:0-559   (  559) [003] .... 24572.197809: clk_set_rate: cpu1_pwrcl_clk 1228800000
19954         sugov:0-559   (  559) [003] .... 24572.197818: clk_set_rate: cpu0_pwrcl_clk 1056000000
19955         sugov:0-559   (  559) [003] .... 24572.197935: cpu_frequency: state=1056000 cpu_id=0
19956         sugov:0-559   (  559) [003] .... 24572.197965: cpu_frequency: state=1056000 cpu_id=1
19957         sugov:0-559   (  559) [003] .... 24572.197969: cpu_frequency: state=1056000 cpu_id=2
19958         sugov:0-559   (  559) [003] .... 24572.197973: cpu_frequency: state=1056000 cpu_id=3
19959         sugov:0-559   (  559) [003] d..2 24572.198002: 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
19960          <idle>-0     (-----) [003] d..1 24572.198014: cpu_idle: state=2 cpu_id=3
19961          <idle>-0     (-----) [007] dnh2 24572.198786: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
19962          <idle>-0     (-----) [007] .n.1 24572.198796: cpu_idle: state=4294967295 cpu_id=7
19963          <idle>-0     (-----) [007] d..2 24572.198808: 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
19964         sugov:4-560   (  560) [007] d..2 24572.198832: 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
19965          <idle>-0     (-----) [007] d..1 24572.198845: cpu_idle: state=2 cpu_id=7
19966 Shutdown thread-13122 (13122) [002] d.s2 24572.200918: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
19967 Shutdown thread-13122 (13122) [002] d.s3 24572.200948: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
19968 Shutdown thread-13122 (13122) [002] d.s3 24572.200952: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19969 Shutdown thread-13122 (13122) [002] d.s4 24572.200984: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
19970          <idle>-0     (-----) [000] .n.1 24572.201281: cpu_idle: state=4294967295 cpu_id=0
19971          <idle>-0     (-----) [000] d..2 24572.201315: 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
19972     rcu_preempt-7     (    7) [000] d..2 24572.201337: 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
19973  kworker/u16:10-23868 (23868) [000] d..2 24572.201486: 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
19974          <idle>-0     (-----) [000] d..1 24572.201501: cpu_idle: state=2 cpu_id=0
19975          <idle>-0     (-----) [000] d.s2 24572.207863: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
19976          <idle>-0     (-----) [000] dns3 24572.207881: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
19977          <idle>-0     (-----) [000] .n.1 24572.207901: cpu_idle: state=4294967295 cpu_id=0
19978          <idle>-0     (-----) [000] d..2 24572.207913: 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
19979     rcu_preempt-7     (    7) [000] d..2 24572.207919: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
19980     rcu_preempt-7     (    7) [000] d..3 24572.207954: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
19981     rcu_preempt-7     (    7) [000] d..2 24572.207964: 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
19982         rcuop/2-29    (   29) [000] d..2 24572.207972: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
19983         rcuop/2-29    (   29) [000] d..3 24572.208008: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
19984         rcuop/2-29    (   29) [000] d..2 24572.208020: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
19985         rcuop/2-29    (   29) [000] d..3 24572.208049: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
19986         rcuop/2-29    (   29) [000] d..2 24572.208082: 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
19987         rcuop/0-10    (   10) [000] d..2 24572.208088: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
19988         rcuop/0-10    (   10) [000] d..3 24572.208099: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
19989         rcuop/0-10    (   10) [000] d..2 24572.208107: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
19990         rcuop/3-37    (   37) [000] d..2 24572.208139: 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
19991     rcu_preempt-7     (    7) [000] d..2 24572.208163: 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
19992          <idle>-0     (-----) [000] d..1 24572.208175: cpu_idle: state=2 cpu_id=0
19993 Shutdown thread-13122 (13122) [002] d.s2 24572.210908: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
19994 Shutdown thread-13122 (13122) [002] d.s3 24572.210927: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
19995          <idle>-0     (-----) [000] .n.1 24572.211190: cpu_idle: state=4294967295 cpu_id=0
19996          <idle>-0     (-----) [000] d..2 24572.211208: 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
19997  kworker/u16:10-23868 (23868) [000] .... 24572.211319: clk_set_rate: l3_cluster0_vote_clk 844800000
19998  kworker/u16:10-23868 (23868) [000] .... 24572.211326: clk_set_rate: l3_clk 844800000
19999  kworker/u16:10-23868 (23868) [000] d..2 24572.211372: 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
20000          <idle>-0     (-----) [000] d..1 24572.211382: cpu_idle: state=0 cpu_id=0
20001          <idle>-0     (-----) [000] d.s2 24572.214271: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20002          <idle>-0     (-----) [000] dns3 24572.214286: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20003          <idle>-0     (-----) [000] .n.1 24572.214296: cpu_idle: state=4294967295 cpu_id=0
20004          <idle>-0     (-----) [000] d..2 24572.214304: 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
20005     rcu_preempt-7     (    7) [000] d..2 24572.214312: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
20006     rcu_preempt-7     (    7) [000] d..3 24572.214324: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
20007     rcu_preempt-7     (    7) [000] d..2 24572.214334: 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
20008         rcuop/0-10    (   10) [000] d..2 24572.214361: 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
20009          <idle>-0     (-----) [000] d..1 24572.214377: cpu_idle: state=0 cpu_id=0
20010 Shutdown thread-13122 (13122) [002] d.H2 24572.217702: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
20011 Shutdown thread-13122 (13122) [002] d.H2 24572.217736: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
20012 Shutdown thread-13122 (13122) [002] d.H3 24572.217757: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
20013          <idle>-0     (-----) [003] .n.1 24572.218088: cpu_idle: state=4294967295 cpu_id=3
20014          <idle>-0     (-----) [003] d..2 24572.218107: 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
20015         sugov:0-559   (  559) [003] .... 24572.218155: clk_set_rate: pwrcl_clk 1766400000
20016         sugov:0-559   (  559) [003] d..2 24572.218310: 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
20017          <idle>-0     (-----) [003] d..1 24572.218326: cpu_idle: state=2 cpu_id=3
20018          <idle>-0     (-----) [007] dnh2 24572.218836: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
20019          <idle>-0     (-----) [007] .n.1 24572.218846: cpu_idle: state=4294967295 cpu_id=7
20020          <idle>-0     (-----) [003] d.s3 24572.218857: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
20021          <idle>-0     (-----) [007] d..2 24572.218860: 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
20022         sugov:4-560   (  560) [007] d..2 24572.218886: 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
20023          <idle>-0     (-----) [003] d.s4 24572.218887: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
20024          <idle>-0     (-----) [000] .n.1 24572.218892: cpu_idle: state=4294967295 cpu_id=0
20025          <idle>-0     (-----) [003] ...1 24572.218898: cpu_idle: state=4294967295 cpu_id=3
20026          <idle>-0     (-----) [007] d..1 24572.218898: cpu_idle: state=2 cpu_id=7
20027          <idle>-0     (-----) [000] d..2 24572.218902: 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
20028          <idle>-0     (-----) [003] d..1 24572.218907: cpu_idle: state=0 cpu_id=3
20029         sugov:0-559   (  559) [000] .... 24572.218925: clk_set_rate: cpu3_pwrcl_clk 1056000000
20030         sugov:0-559   (  559) [000] .... 24572.218937: clk_set_rate: cpu2_pwrcl_clk 1056000000
20031         sugov:0-559   (  559) [000] .... 24572.218947: clk_set_rate: cpu1_pwrcl_clk 1056000000
20032         sugov:0-559   (  559) [000] .... 24572.218957: clk_set_rate: cpu0_pwrcl_clk 1766400000
20033         sugov:0-559   (  559) [000] .... 24572.218969: cpu_frequency: state=1766400 cpu_id=0
20034         sugov:0-559   (  559) [000] d..2 24572.219231: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
20035          <idle>-0     (-----) [000] d..1 24572.219239: cpu_idle: state=0 cpu_id=0
20036          <idle>-0     (-----) [003] d.s3 24572.219821: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
20037          <idle>-0     (-----) [003] d.s4 24572.219830: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
20038          <idle>-0     (-----) [000] .n.1 24572.219836: cpu_idle: state=4294967295 cpu_id=0
20039          <idle>-0     (-----) [003] ...1 24572.219837: cpu_idle: state=4294967295 cpu_id=3
20040          <idle>-0     (-----) [003] d..1 24572.219839: cpu_idle: state=0 cpu_id=3
20041          <idle>-0     (-----) [000] d..2 24572.219842: 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
20042         sugov:0-559   (  559) [000] .... 24572.219850: cpu_frequency: state=1766400 cpu_id=1
20043         sugov:0-559   (  559) [000] .... 24572.219853: cpu_frequency: state=1766400 cpu_id=2
20044         sugov:0-559   (  559) [000] .... 24572.219855: cpu_frequency: state=1766400 cpu_id=3
20045         sugov:0-559   (  559) [000] d..2 24572.219869: 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
20046          <idle>-0     (-----) [000] d..1 24572.219875: cpu_idle: state=0 cpu_id=0
20047 Shutdown thread-13122 (13122) [002] d.s2 24572.220905: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20048 Shutdown thread-13122 (13122) [002] d.s3 24572.220938: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20049          <idle>-0     (-----) [000] .n.1 24572.220943: cpu_idle: state=4294967295 cpu_id=0
20050          <idle>-0     (-----) [000] d..2 24572.220951: 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
20051  kworker/u16:10-23868 (23868) [000] .... 24572.221000: clk_set_rate: l3_cluster0_vote_clk 940800000
20052  kworker/u16:10-23868 (23868) [000] .... 24572.221004: clk_set_rate: l3_clk 940800000
20053  kworker/u16:10-23868 (23868) [000] d..2 24572.221196: 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
20054          <idle>-0     (-----) [000] d..1 24572.221204: cpu_idle: state=0 cpu_id=0
20055          <idle>-0     (-----) [003] d.s3 24572.221851: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20056          <idle>-0     (-----) [003] d.s4 24572.221860: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
20057          <idle>-0     (-----) [003] d.s4 24572.221867: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20058          <idle>-0     (-----) [003] ...1 24572.221872: cpu_idle: state=4294967295 cpu_id=3
20059          <idle>-0     (-----) [000] .n.1 24572.221873: cpu_idle: state=4294967295 cpu_id=0
20060          <idle>-0     (-----) [003] d..1 24572.221876: cpu_idle: state=0 cpu_id=3
20061          <idle>-0     (-----) [000] d..2 24572.221879: 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
20062  kworker/u16:10-23868 (23868) [000] d..2 24572.221897: 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
20063          <idle>-0     (-----) [000] d..1 24572.221903: cpu_idle: state=2 cpu_id=0
20064          <idle>-0     (-----) [003] ...1 24572.227877: cpu_idle: state=4294967295 cpu_id=3
20065          <idle>-0     (-----) [003] d..1 24572.227879: cpu_idle: state=2 cpu_id=3
20066 Shutdown thread-13122 (13122) [002] d.s2 24572.230897: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20067 Shutdown thread-13122 (13122) [002] d.s3 24572.230923: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20068 Shutdown thread-13122 (13122) [002] d.s2 24572.230931: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
20069 Shutdown thread-13122 (13122) [002] dns3 24572.230946: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
20070 Shutdown thread-13122 (13122) [002] d..2 24572.230956: sched_switch: prev_comm=app_process prev_pid=13122 prev_prio=120 prev_state=R ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
20071     kworker/2:0-12895 (12895) [002] d..2 24572.231026: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=app_process next_pid=13122 next_prio=120
20072          <idle>-0     (-----) [000] .n.1 24572.231106: cpu_idle: state=4294967295 cpu_id=0
20073          <idle>-0     (-----) [000] d..2 24572.231121: 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
20074  kworker/u16:10-23868 (23868) [000] d..2 24572.231280: 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
20075          <idle>-0     (-----) [000] d..1 24572.231288: cpu_idle: state=2 cpu_id=0
20076          <idle>-0     (-----) [003] d.s3 24572.231458: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20077          <idle>-0     (-----) [003] d.s4 24572.231466: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
20078          <idle>-0     (-----) [003] d.s4 24572.231473: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20079          <idle>-0     (-----) [003] ...1 24572.231480: cpu_idle: state=4294967295 cpu_id=3
20080          <idle>-0     (-----) [003] d..1 24572.231486: cpu_idle: state=0 cpu_id=3
20081          <idle>-0     (-----) [000] .n.1 24572.231627: cpu_idle: state=4294967295 cpu_id=0
20082          <idle>-0     (-----) [000] d..2 24572.231642: 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
20083  kworker/u16:10-23868 (23868) [000] .... 24572.231703: clk_set_rate: l3_cluster0_vote_clk 1401600000
20084  kworker/u16:10-23868 (23868) [000] .... 24572.231707: clk_set_rate: l3_clk 1401600000
20085  kworker/u16:10-23868 (23868) [000] d..2 24572.231737: 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
20086          <idle>-0     (-----) [000] d..1 24572.231749: cpu_idle: state=0 cpu_id=0
20087          <idle>-0     (-----) [000] ...1 24572.233424: cpu_idle: state=4294967295 cpu_id=0
20088          <idle>-0     (-----) [000] d..1 24572.233427: cpu_idle: state=2 cpu_id=0
20089 Shutdown thread-13122 (13122) [002] d.s2 24572.234234: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20090 Shutdown thread-13122 (13122) [002] d.s3 24572.234263: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
20091          <idle>-0     (-----) [003] .n.1 24572.234268: cpu_idle: state=4294967295 cpu_id=3
20092          <idle>-0     (-----) [003] d..2 24572.234278: 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
20093  kworker/u16:10-23868 (23868) [003] d..2 24572.234402: 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
20094          <idle>-0     (-----) [003] d..1 24572.234409: cpu_idle: state=0 cpu_id=3
20095 Shutdown thread-13122 (13122) [002] d.h2 24572.237581: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
20096 Shutdown thread-13122 (13122) [002] dnh3 24572.237593: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
20097 Shutdown thread-13122 (13122) [002] dnH2 24572.237671: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
20098 Shutdown thread-13122 (13122) [002] dnH2 24572.237682: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
20099 Shutdown thread-13122 (13122) [002] dnH3 24572.237693: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
20100 Shutdown thread-13122 (13122) [002] d..2 24572.237702: sched_switch: prev_comm=app_process prev_pid=13122 prev_prio=120 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
20101          <idle>-0     (-----) [000] .n.1 24572.237778: cpu_idle: state=4294967295 cpu_id=0
20102          <idle>-0     (-----) [000] d..2 24572.237787: 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
20103     migration/2-25    (   25) [002] d..2 24572.237792: 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
20104          <idle>-0     (-----) [002] d..1 24572.237810: cpu_idle: state=2 cpu_id=2
20105         sugov:0-559   (  559) [000] .... 24572.237810: clk_set_rate: pwrcl_clk 1324800000
20106         sugov:0-559   (  559) [000] .... 24572.237867: clk_set_rate: cpu3_pwrcl_clk 1766400000
20107         sugov:0-559   (  559) [000] .... 24572.237876: clk_set_rate: cpu2_pwrcl_clk 1766400000
20108         sugov:0-559   (  559) [000] .... 24572.237883: clk_set_rate: cpu1_pwrcl_clk 1766400000
20109         sugov:0-559   (  559) [000] .... 24572.237891: clk_set_rate: cpu0_pwrcl_clk 1324800000
20110          <idle>-0     (-----) [003] ...1 24572.237895: cpu_idle: state=4294967295 cpu_id=3
20111          <idle>-0     (-----) [003] d..1 24572.237898: cpu_idle: state=0 cpu_id=3
20112         sugov:0-559   (  559) [000] .... 24572.238008: cpu_frequency: state=1324800 cpu_id=0
20113         sugov:0-559   (  559) [000] d..2 24572.238161: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
20114          <idle>-0     (-----) [000] d..1 24572.238172: cpu_idle: state=0 cpu_id=0
20115          <idle>-0     (-----) [003] d.s3 24572.238190: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
20116          <idle>-0     (-----) [003] d.s4 24572.238202: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
20117          <idle>-0     (-----) [000] .n.1 24572.238208: cpu_idle: state=4294967295 cpu_id=0
20118          <idle>-0     (-----) [003] ...1 24572.238209: cpu_idle: state=4294967295 cpu_id=3
20119          <idle>-0     (-----) [003] d..1 24572.238212: cpu_idle: state=2 cpu_id=3
20120          <idle>-0     (-----) [000] d..2 24572.238215: 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
20121         sugov:0-559   (  559) [000] .... 24572.238221: cpu_frequency: state=1324800 cpu_id=1
20122         sugov:0-559   (  559) [000] .... 24572.238225: cpu_frequency: state=1324800 cpu_id=2
20123         sugov:0-559   (  559) [000] .... 24572.238227: cpu_frequency: state=1324800 cpu_id=3
20124         sugov:0-559   (  559) [000] d..2 24572.238243: 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
20125          <idle>-0     (-----) [000] d..1 24572.238251: cpu_idle: state=0 cpu_id=0
20126          <idle>-0     (-----) [007] dnh2 24572.238722: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
20127          <idle>-0     (-----) [007] .n.1 24572.238732: cpu_idle: state=4294967295 cpu_id=7
20128          <idle>-0     (-----) [007] d..2 24572.238745: 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
20129         sugov:4-560   (  560) [007] d..2 24572.238771: 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
20130          <idle>-0     (-----) [007] d..1 24572.238784: cpu_idle: state=2 cpu_id=7
20131          <idle>-0     (-----) [004] .n.1 24572.238820: cpu_idle: state=4294967295 cpu_id=4
20132          <idle>-0     (-----) [004] d..2 24572.238849: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=app_process next_pid=13122 next_prio=120
20133 Shutdown thread-13122 (13122) [004] d.s2 24572.240924: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
20134          <idle>-0     (-----) [000] dnh2 24572.240964: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20135          <idle>-0     (-----) [000] .n.1 24572.240969: cpu_idle: state=4294967295 cpu_id=0
20136          <idle>-0     (-----) [000] d..2 24572.240978: 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
20137  kworker/u16:10-23868 (23868) [000] .... 24572.240994: clk_set_rate: l3_cluster0_vote_clk 940800000
20138  kworker/u16:10-23868 (23868) [000] .... 24572.240999: clk_set_rate: l3_clk 940800000
20139  kworker/u16:10-23868 (23868) [000] d..2 24572.241148: 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
20140          <idle>-0     (-----) [000] d..1 24572.241158: cpu_idle: state=0 cpu_id=0
20141          <idle>-0     (-----) [000] ...1 24572.247163: cpu_idle: state=4294967295 cpu_id=0
20142          <idle>-0     (-----) [000] d..1 24572.247166: cpu_idle: state=2 cpu_id=0
20143 Shutdown thread-13122 (13122) [004] d.s2 24572.250895: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20144          <idle>-0     (-----) [000] dnh2 24572.251238: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20145          <idle>-0     (-----) [000] .n.1 24572.251245: cpu_idle: state=4294967295 cpu_id=0
20146          <idle>-0     (-----) [000] d..2 24572.251257: 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
20147  kworker/u16:10-23868 (23868) [000] .... 24572.251333: clk_set_rate: l3_cluster1_vote_clk 576000000
20148  kworker/u16:10-23868 (23868) [000] .... 24572.251385: clk_set_rate: l3_cluster0_vote_clk 300000000
20149  kworker/u16:10-23868 (23868) [000] .... 24572.251388: clk_set_rate: l3_clk 576000000
20150  kworker/u16:10-23868 (23868) [000] d..2 24572.251440: 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
20151          <idle>-0     (-----) [000] d..1 24572.251455: cpu_idle: state=0 cpu_id=0
20152          <idle>-0     (-----) [000] ...1 24572.257460: cpu_idle: state=4294967295 cpu_id=0
20153          <idle>-0     (-----) [000] d..1 24572.257463: cpu_idle: state=2 cpu_id=0
20154 Shutdown thread-13122 (13122) [004] d.H2 24572.257629: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
20155 Shutdown thread-13122 (13122) [004] d.H3 24572.257644: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
20156          <idle>-0     (-----) [007] .n.1 24572.258193: cpu_idle: state=4294967295 cpu_id=7
20157          <idle>-0     (-----) [007] d..2 24572.258211: 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
20158         sugov:4-560   (  560) [007] .... 24572.258257: clk_set_rate: perfcl_clk 2803200000
20159         sugov:4-560   (  560) [007] .... 24572.258261: clk_set_rate: cpu7_perfcl_clk 825600000
20160         sugov:4-560   (  560) [007] .... 24572.258270: clk_set_rate: cpu6_perfcl_clk 825600000
20161         sugov:4-560   (  560) [007] .... 24572.258278: clk_set_rate: cpu5_perfcl_clk 825600000
20162         sugov:4-560   (  560) [007] .... 24572.258285: clk_set_rate: cpu4_perfcl_clk 2803200000
20163         sugov:4-560   (  560) [007] .... 24572.258296: cpu_frequency: state=2803200 cpu_id=4
20164         sugov:4-560   (  560) [007] d..2 24572.258498: 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
20165          <idle>-0     (-----) [007] d..1 24572.258504: cpu_idle: state=2 cpu_id=7
20166          <idle>-0     (-----) [003] d.s3 24572.260399: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
20167          <idle>-0     (-----) [003] ...1 24572.260419: cpu_idle: state=4294967295 cpu_id=3
20168          <idle>-0     (-----) [003] d..1 24572.260425: cpu_idle: state=2 cpu_id=3
20169          <idle>-0     (-----) [007] dnh2 24572.260580: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
20170          <idle>-0     (-----) [007] .n.1 24572.260584: cpu_idle: state=4294967295 cpu_id=7
20171          <idle>-0     (-----) [007] d..2 24572.260589: 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
20172         sugov:4-560   (  560) [007] .... 24572.260594: cpu_frequency: state=2803200 cpu_id=5
20173         sugov:4-560   (  560) [007] .... 24572.260597: cpu_frequency: state=2803200 cpu_id=6
20174         sugov:4-560   (  560) [007] .... 24572.260598: cpu_frequency: state=2803200 cpu_id=7
20175         sugov:4-560   (  560) [007] d..2 24572.260608: 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
20176          <idle>-0     (-----) [007] d..1 24572.260612: cpu_idle: state=2 cpu_id=7
20177 Shutdown thread-13122 (13122) [004] d.s2 24572.260891: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20178          <idle>-0     (-----) [000] dnh2 24572.261087: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20179          <idle>-0     (-----) [000] .n.1 24572.261094: cpu_idle: state=4294967295 cpu_id=0
20180          <idle>-0     (-----) [000] d..2 24572.261107: 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
20181  kworker/u16:10-23868 (23868) [000] .... 24572.261185: clk_set_rate: l3_cluster1_vote_clk 940800000
20182  kworker/u16:10-23868 (23868) [000] .... 24572.261189: clk_set_rate: l3_clk 940800000
20183  kworker/u16:10-23868 (23868) [000] d..2 24572.261239: 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
20184          <idle>-0     (-----) [000] d..1 24572.261252: cpu_idle: state=2 cpu_id=0
20185          <idle>-0     (-----) [000] d.h2 24572.267754: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
20186          <idle>-0     (-----) [000] dnh3 24572.267765: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
20187          <idle>-0     (-----) [000] .n.1 24572.267773: cpu_idle: state=4294967295 cpu_id=0
20188          <idle>-0     (-----) [000] d..2 24572.267784: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
20189 irq/79-1436400.-24613 (24613) [000] d..2 24572.267925: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
20190          <idle>-0     (-----) [000] d..1 24572.267935: cpu_idle: state=2 cpu_id=0
20191          <idle>-0     (-----) [003] d.s3 24572.268041: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
20192          <idle>-0     (-----) [003] d.s4 24572.268051: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
20193          <idle>-0     (-----) [003] ...1 24572.268059: cpu_idle: state=4294967295 cpu_id=3
20194          <idle>-0     (-----) [003] d..1 24572.268064: cpu_idle: state=2 cpu_id=3
20195          <idle>-0     (-----) [000] .n.1 24572.268169: cpu_idle: state=4294967295 cpu_id=0
20196          <idle>-0     (-----) [000] d..2 24572.268179: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
20197 irq/79-1436400.-24613 (24613) [000] d..2 24572.268211: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20198          <idle>-0     (-----) [000] d..1 24572.268221: cpu_idle: state=0 cpu_id=0
20199 Shutdown thread-13122 (13122) [004] d.s2 24572.270889: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20200 Shutdown thread-13122 (13122) [004] d.s2 24572.270901: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
20201 Shutdown thread-13122 (13122) [004] dns3 24572.270907: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
20202          <idle>-0     (-----) [000] dnh2 24572.270911: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20203 Shutdown thread-13122 (13122) [004] d..2 24572.270912: sched_switch: prev_comm=app_process prev_pid=13122 prev_prio=120 prev_state=R ==> next_comm=kworker/4:0 next_pid=24269 next_prio=120
20204          <idle>-0     (-----) [000] .n.1 24572.270916: cpu_idle: state=4294967295 cpu_id=0
20205     kworker/4:0-24269 (24269) [004] d..2 24572.270923: sched_switch: prev_comm=kworker/4:0 prev_pid=24269 prev_prio=120 prev_state=S ==> next_comm=app_process next_pid=13122 next_prio=120
20206          <idle>-0     (-----) [000] d..2 24572.270925: 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
20207  kworker/u16:10-23868 (23868) [000] .... 24572.270971: clk_set_rate: l3_cluster1_vote_clk 1478400000
20208  kworker/u16:10-23868 (23868) [000] .... 24572.270975: clk_set_rate: l3_clk 1478400000
20209  kworker/u16:10-23868 (23868) [000] d..2 24572.271045: 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
20210          <idle>-0     (-----) [000] d..1 24572.271054: cpu_idle: state=0 cpu_id=0
20211          <idle>-0     (-----) [003] d.s3 24572.271168: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20212          <idle>-0     (-----) [003] d.s4 24572.271179: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
20213          <idle>-0     (-----) [003] d.s4 24572.271187: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20214          <idle>-0     (-----) [000] .n.1 24572.271192: cpu_idle: state=4294967295 cpu_id=0
20215          <idle>-0     (-----) [003] ...1 24572.271195: cpu_idle: state=4294967295 cpu_id=3
20216          <idle>-0     (-----) [000] d..2 24572.271200: 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
20217          <idle>-0     (-----) [003] d..1 24572.271203: cpu_idle: state=0 cpu_id=3
20218  kworker/u16:10-23868 (23868) [000] d..2 24572.271269: 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
20219          <idle>-0     (-----) [000] d..1 24572.271278: cpu_idle: state=0 cpu_id=0
20220          <idle>-0     (-----) [003] ...1 24572.277204: cpu_idle: state=4294967295 cpu_id=3
20221          <idle>-0     (-----) [003] d..1 24572.277207: cpu_idle: state=2 cpu_id=3
20222          <idle>-0     (-----) [000] ...1 24572.277279: cpu_idle: state=4294967295 cpu_id=0
20223          <idle>-0     (-----) [000] d..1 24572.277281: cpu_idle: state=2 cpu_id=0
20224 Shutdown thread-13122 (13122) [004] d.H2 24572.277588: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
20225 Shutdown thread-13122 (13122) [004] d.H3 24572.277595: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
20226 Shutdown thread-13122 (13122) [004] d.H2 24572.277596: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
20227          <idle>-0     (-----) [007] .n.1 24572.277755: cpu_idle: state=4294967295 cpu_id=7
20228          <idle>-0     (-----) [007] d..2 24572.277762: 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
20229         sugov:4-560   (  560) [007] d..2 24572.277774: 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
20230          <idle>-0     (-----) [007] d..1 24572.277778: cpu_idle: state=2 cpu_id=7
20231          <idle>-0     (-----) [000] dnh2 24572.277784: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
20232          <idle>-0     (-----) [000] .n.1 24572.277790: cpu_idle: state=4294967295 cpu_id=0
20233          <idle>-0     (-----) [000] d..2 24572.277800: 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
20234         sugov:0-559   (  559) [000] .... 24572.277821: clk_set_rate: pwrcl_clk 652800000
20235         sugov:0-559   (  559) [000] .... 24572.277827: clk_set_rate: cpu3_pwrcl_clk 1324800000
20236         sugov:0-559   (  559) [000] .... 24572.277835: clk_set_rate: cpu2_pwrcl_clk 1324800000
20237         sugov:0-559   (  559) [000] .... 24572.277841: clk_set_rate: cpu1_pwrcl_clk 1324800000
20238         sugov:0-559   (  559) [000] .... 24572.277848: clk_set_rate: cpu0_pwrcl_clk 652800000
20239         sugov:0-559   (  559) [000] .... 24572.277960: cpu_frequency: state=652800 cpu_id=0
20240         sugov:0-559   (  559) [000] .... 24572.277980: cpu_frequency: state=652800 cpu_id=1
20241         sugov:0-559   (  559) [000] .... 24572.277986: cpu_frequency: state=652800 cpu_id=2
20242         sugov:0-559   (  559) [000] .... 24572.277991: cpu_frequency: state=652800 cpu_id=3
20243         sugov:0-559   (  559) [000] d..2 24572.278023: 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
20244          <idle>-0     (-----) [000] d..1 24572.278041: cpu_idle: state=0 cpu_id=0
20245 Shutdown thread-13122 (13122) [004] d.s2 24572.280888: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20246          <idle>-0     (-----) [000] dnh2 24572.280912: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20247          <idle>-0     (-----) [000] .n.1 24572.280920: cpu_idle: state=4294967295 cpu_id=0
20248          <idle>-0     (-----) [000] d..2 24572.280933: 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
20249  kworker/u16:10-23868 (23868) [000] d..2 24572.281071: 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
20250          <idle>-0     (-----) [000] d..1 24572.281087: cpu_idle: state=0 cpu_id=0
20251 Shutdown thread-13122 (13122) [004] d.s2 24572.284221: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20252          <idle>-0     (-----) [000] dnh2 24572.284242: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20253          <idle>-0     (-----) [000] .n.1 24572.284250: cpu_idle: state=4294967295 cpu_id=0
20254          <idle>-0     (-----) [000] d..2 24572.284269: 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
20255  kworker/u16:10-23868 (23868) [000] d..2 24572.284339: 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
20256          <idle>-0     (-----) [000] d..1 24572.284352: cpu_idle: state=2 cpu_id=0
20257 Shutdown thread-13122 (13122) [004] d.s2 24572.290886: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20258          <idle>-0     (-----) [000] dnh2 24572.291112: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20259          <idle>-0     (-----) [000] .n.1 24572.291122: cpu_idle: state=4294967295 cpu_id=0
20260          <idle>-0     (-----) [000] d..2 24572.291141: 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
20261  kworker/u16:10-23868 (23868) [000] d..2 24572.291292: 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
20262          <idle>-0     (-----) [000] d..1 24572.291309: cpu_idle: state=2 cpu_id=0
20263 Shutdown thread-13122 (13122) [004] d.H2 24572.297591: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
20264 Shutdown thread-13122 (13122) [004] d.H3 24572.297600: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
20265 Shutdown thread-13122 (13122) [004] d.H2 24572.297601: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
20266          <idle>-0     (-----) [007] .n.1 24572.297777: cpu_idle: state=4294967295 cpu_id=7
20267          <idle>-0     (-----) [007] d..2 24572.297784: 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
20268         sugov:4-560   (  560) [007] d..2 24572.297797: 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
20269          <idle>-0     (-----) [007] d..1 24572.297801: cpu_idle: state=2 cpu_id=7
20270          <idle>-0     (-----) [000] dnh2 24572.297828: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
20271          <idle>-0     (-----) [000] .n.1 24572.297838: cpu_idle: state=4294967295 cpu_id=0
20272          <idle>-0     (-----) [000] d..2 24572.297854: 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
20273         sugov:0-559   (  559) [000] d..2 24572.297885: 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
20274          <idle>-0     (-----) [000] d..1 24572.297898: cpu_idle: state=0 cpu_id=0
20275 Shutdown thread-13122 (13122) [004] d.s2 24572.300889: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20276          <idle>-0     (-----) [000] dnh2 24572.300913: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20277          <idle>-0     (-----) [000] .n.1 24572.300920: cpu_idle: state=4294967295 cpu_id=0
20278          <idle>-0     (-----) [000] d..2 24572.300934: 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
20279  kworker/u16:10-23868 (23868) [000] d..2 24572.301080: 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
20280          <idle>-0     (-----) [000] d..1 24572.301093: cpu_idle: state=0 cpu_id=0
20281          <idle>-0     (-----) [000] d.h2 24572.301473: sched_waking: comm=CCodecWatchdog pid=23520 prio=120 target_cpu=000
20282          <idle>-0     (-----) [000] dnh3 24572.301495: sched_wakeup: comm=CCodecWatchdog pid=23520 prio=120 target_cpu=000
20283          <idle>-0     (-----) [000] .n.1 24572.301547: cpu_idle: state=4294967295 cpu_id=0
20284          <idle>-0     (-----) [000] d..2 24572.301560: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=23520 next_prio=120
20285          <idle>-0     (-----) [001] d.h2 24572.301669: sched_waking: comm=CCodecWatchdog pid=24186 prio=120 target_cpu=001
20286  CCodecWatchdog-23520 (  884) [000] d..2 24572.301671: sched_switch: prev_comm=CCodecWatchdog prev_pid=23520 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20287          <idle>-0     (-----) [000] d..1 24572.301686: cpu_idle: state=2 cpu_id=0
20288          <idle>-0     (-----) [001] d.h3 24572.301710: sched_wakeup: comm=CCodecWatchdog pid=24186 prio=120 target_cpu=000
20289          <idle>-0     (-----) [001] ...1 24572.301728: cpu_idle: state=4294967295 cpu_id=1
20290          <idle>-0     (-----) [001] d..1 24572.301738: cpu_idle: state=2 cpu_id=1
20291          <idle>-0     (-----) [000] .n.1 24572.301890: cpu_idle: state=4294967295 cpu_id=0
20292          <idle>-0     (-----) [000] d..2 24572.301909: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=24186 next_prio=120
20293  CCodecWatchdog-24186 (23968) [000] d..2 24572.302035: sched_switch: prev_comm=CCodecWatchdog prev_pid=24186 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20294          <idle>-0     (-----) [000] d..1 24572.302054: cpu_idle: state=0 cpu_id=0
20295          <idle>-0     (-----) [000] ...1 24572.308062: cpu_idle: state=4294967295 cpu_id=0
20296          <idle>-0     (-----) [000] d..1 24572.308068: cpu_idle: state=2 cpu_id=0
20297 Shutdown thread-13122 (13122) [004] d.s2 24572.310886: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20298          <idle>-0     (-----) [000] dnh2 24572.311095: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20299          <idle>-0     (-----) [000] .n.1 24572.311105: cpu_idle: state=4294967295 cpu_id=0
20300          <idle>-0     (-----) [000] d..2 24572.311122: 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
20301  kworker/u16:10-23868 (23868) [000] d..2 24572.311273: 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
20302          <idle>-0     (-----) [000] d..1 24572.311292: cpu_idle: state=0 cpu_id=0
20303          <idle>-0     (-----) [000] ...1 24572.317299: cpu_idle: state=4294967295 cpu_id=0
20304          <idle>-0     (-----) [000] d..1 24572.317305: cpu_idle: state=2 cpu_id=0
20305 Shutdown thread-13122 (13122) [004] d.H2 24572.317587: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
20306 Shutdown thread-13122 (13122) [004] d.H3 24572.317594: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
20307 Shutdown thread-13122 (13122) [004] d.H2 24572.317595: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
20308 Shutdown thread-13122 (13122) [004] d.s2 24572.317601: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20309          <idle>-0     (-----) [007] .n.1 24572.317756: cpu_idle: state=4294967295 cpu_id=7
20310          <idle>-0     (-----) [007] d..2 24572.317763: 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
20311         sugov:4-560   (  560) [007] d..2 24572.317773: 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
20312          <idle>-0     (-----) [007] d..1 24572.317778: cpu_idle: state=2 cpu_id=7
20313          <idle>-0     (-----) [000] dnh2 24572.317811: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20314          <idle>-0     (-----) [000] dnh2 24572.317818: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
20315          <idle>-0     (-----) [000] .n.1 24572.317827: cpu_idle: state=4294967295 cpu_id=0
20316          <idle>-0     (-----) [000] d..2 24572.317841: 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
20317         sugov:0-559   (  559) [000] d..2 24572.317860: 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
20318  kworker/u16:10-23868 (23868) [000] d..2 24572.318115: 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
20319          <idle>-0     (-----) [000] d..1 24572.318133: cpu_idle: state=0 cpu_id=0
20320          <idle>-0     (-----) [003] d.s3 24572.318282: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20321          <idle>-0     (-----) [003] d.s4 24572.318340: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
20322          <idle>-0     (-----) [003] dns4 24572.318349: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
20323          <idle>-0     (-----) [003] .n.1 24572.318360: cpu_idle: state=4294967295 cpu_id=3
20324          <idle>-0     (-----) [003] d..2 24572.318381: 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
20325  kworker/u16:10-23868 (23868) [003] d..2 24572.318431: 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
20326          <idle>-0     (-----) [003] d..1 24572.318453: cpu_idle: state=0 cpu_id=3
20327 Shutdown thread-13122 (13122) [004] d.s2 24572.320889: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
20328          <idle>-0     (-----) [000] dnh2 24572.320919: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20329          <idle>-0     (-----) [000] .n.1 24572.320928: cpu_idle: state=4294967295 cpu_id=0
20330          <idle>-0     (-----) [000] d..2 24572.320942: 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
20331  kworker/u16:10-23868 (23868) [000] d..2 24572.321084: 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
20332          <idle>-0     (-----) [000] d..1 24572.321100: cpu_idle: state=0 cpu_id=0
20333          <idle>-0     (-----) [003] ...1 24572.324460: cpu_idle: state=4294967295 cpu_id=3
20334          <idle>-0     (-----) [003] d..1 24572.324468: cpu_idle: state=2 cpu_id=3
20335          <idle>-0     (-----) [000] ...1 24572.327108: cpu_idle: state=4294967295 cpu_id=0
20336          <idle>-0     (-----) [000] d..1 24572.327114: cpu_idle: state=2 cpu_id=0
20337 Shutdown thread-13122 (13122) [004] d.s2 24572.330887: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20338 Shutdown thread-13122 (13122) [004] d.s2 24572.330896: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
20339 Shutdown thread-13122 (13122) [004] dns3 24572.330902: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
20340 Shutdown thread-13122 (13122) [004] d..2 24572.330906: sched_switch: prev_comm=app_process prev_pid=13122 prev_prio=120 prev_state=R+ ==> next_comm=kworker/4:0 next_pid=24269 next_prio=120
20341     kworker/4:0-24269 (24269) [004] d..2 24572.330936: sched_switch: prev_comm=kworker/4:0 prev_pid=24269 prev_prio=120 prev_state=S ==> next_comm=app_process next_pid=13122 next_prio=120
20342          <idle>-0     (-----) [000] dnh2 24572.331102: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20343          <idle>-0     (-----) [000] .n.1 24572.331112: cpu_idle: state=4294967295 cpu_id=0
20344          <idle>-0     (-----) [000] d..2 24572.331130: 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
20345  kworker/u16:10-23868 (23868) [000] d..2 24572.331277: 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
20346          <idle>-0     (-----) [000] d..1 24572.331296: cpu_idle: state=0 cpu_id=0
20347 Shutdown thread-13122 (13122) [004] d.s2 24572.334225: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20348          <idle>-0     (-----) [000] dnh2 24572.334248: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20349          <idle>-0     (-----) [000] .n.1 24572.334256: cpu_idle: state=4294967295 cpu_id=0
20350          <idle>-0     (-----) [000] d..2 24572.334270: 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
20351  kworker/u16:10-23868 (23868) [000] d..2 24572.334340: 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
20352          <idle>-0     (-----) [000] d..1 24572.334353: cpu_idle: state=2 cpu_id=0
20353 Shutdown thread-13122 (13122) [004] d.H2 24572.337590: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
20354 Shutdown thread-13122 (13122) [004] d.H3 24572.337598: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
20355 Shutdown thread-13122 (13122) [004] d.H2 24572.337598: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
20356          <idle>-0     (-----) [007] .n.1 24572.337758: cpu_idle: state=4294967295 cpu_id=7
20357          <idle>-0     (-----) [007] d..2 24572.337765: 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
20358         sugov:4-560   (  560) [007] d..2 24572.337776: 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
20359          <idle>-0     (-----) [007] d..1 24572.337779: cpu_idle: state=2 cpu_id=7
20360          <idle>-0     (-----) [000] dnh2 24572.337811: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
20361          <idle>-0     (-----) [000] .n.1 24572.337821: cpu_idle: state=4294967295 cpu_id=0
20362          <idle>-0     (-----) [000] d..2 24572.337836: 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
20363         sugov:0-559   (  559) [000] d..2 24572.337867: 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
20364          <idle>-0     (-----) [000] d..1 24572.337883: cpu_idle: state=0 cpu_id=0
20365 Shutdown thread-13122 (13122) [004] d.s2 24572.340888: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20366          <idle>-0     (-----) [000] dnh2 24572.340912: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20367          <idle>-0     (-----) [000] .n.1 24572.340919: cpu_idle: state=4294967295 cpu_id=0
20368          <idle>-0     (-----) [000] d..2 24572.340933: 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
20369  kworker/u16:10-23868 (23868) [000] d..2 24572.341070: 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
20370          <idle>-0     (-----) [000] d..1 24572.341086: cpu_idle: state=0 cpu_id=0
20371 Shutdown thread-13122 (13122) [004] d.s2 24572.344222: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
20372 Shutdown thread-13122 (13122) [004] dns3 24572.344227: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
20373 Shutdown thread-13122 (13122) [004] d..2 24572.344231: sched_switch: prev_comm=app_process prev_pid=13122 prev_prio=120 prev_state=R ==> next_comm=kworker/4:0 next_pid=24269 next_prio=120
20374     kworker/4:0-24269 (24269) [004] d..2 24572.344236: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
20375     kworker/4:0-24269 (24269) [004] d..2 24572.344244: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
20376     kworker/4:0-24269 (24269) [004] d..2 24572.344251: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
20377          <idle>-0     (-----) [000] dnh2 24572.344258: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
20378     kworker/4:0-24269 (24269) [004] d..2 24572.344264: sched_switch: prev_comm=kworker/4:0 prev_pid=24269 prev_prio=120 prev_state=S ==> next_comm=app_process next_pid=13122 next_prio=120
20379          <idle>-0     (-----) [000] .n.1 24572.344267: cpu_idle: state=4294967295 cpu_id=0
20380          <idle>-0     (-----) [000] d..2 24572.344280: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
20381     kworker/0:1-13012 (13012) [000] d..2 24572.344320: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20382          <idle>-0     (-----) [000] d..1 24572.344334: cpu_idle: state=0 cpu_id=0
20383          <idle>-0     (-----) [002] dnh2 24572.344405: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
20384          <idle>-0     (-----) [002] .n.1 24572.344417: cpu_idle: state=4294967295 cpu_id=2
20385          <idle>-0     (-----) [003] dnh2 24572.344435: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
20386          <idle>-0     (-----) [002] d..2 24572.344438: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
20387          <idle>-0     (-----) [003] .n.1 24572.344445: cpu_idle: state=4294967295 cpu_id=3
20388          <idle>-0     (-----) [003] d..2 24572.344462: 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
20389     kworker/2:0-12895 (12895) [002] d..2 24572.344485: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20390     kworker/3:1-12662 (12662) [003] d..2 24572.344506: 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
20391          <idle>-0     (-----) [002] d..1 24572.344509: cpu_idle: state=2 cpu_id=2
20392          <idle>-0     (-----) [003] d..1 24572.344526: cpu_idle: state=0 cpu_id=3
20393 Shutdown thread-13122 (13122) [004] d..2 24572.347727: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
20394          <idle>-0     (-----) [000] dnh2 24572.347761: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
20395          <idle>-0     (-----) [000] .n.1 24572.347769: cpu_idle: state=4294967295 cpu_id=0
20396          <idle>-0     (-----) [000] d..2 24572.347783: 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
20397         rcuop/4-45    (   45) [000] d..2 24572.347793: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20398         rcuop/4-45    (   45) [000] d..3 24572.347817: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20399         rcuop/4-45    (   45) [000] d..2 24572.347830: 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
20400     rcu_preempt-7     (    7) [000] d..2 24572.347864: 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
20401          <idle>-0     (-----) [000] d..1 24572.347877: cpu_idle: state=0 cpu_id=0
20402          <idle>-0     (-----) [003] ...1 24572.350557: cpu_idle: state=4294967295 cpu_id=3
20403          <idle>-0     (-----) [003] d..1 24572.350571: cpu_idle: state=2 cpu_id=3
20404 Shutdown thread-13122 (13122) [004] d.s2 24572.350895: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20405          <idle>-0     (-----) [000] dnh2 24572.350930: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20406          <idle>-0     (-----) [000] .n.1 24572.350940: cpu_idle: state=4294967295 cpu_id=0
20407          <idle>-0     (-----) [000] d..2 24572.350962: 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
20408  kworker/u16:10-23868 (23868) [000] d..2 24572.351131: 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
20409          <idle>-0     (-----) [000] d..1 24572.351144: cpu_idle: state=0 cpu_id=0
20410 Shutdown thread-13122 (13122) [004] d..2 24572.351964: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
20411          <idle>-0     (-----) [000] dnh2 24572.352000: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
20412          <idle>-0     (-----) [000] .n.1 24572.352008: cpu_idle: state=4294967295 cpu_id=0
20413          <idle>-0     (-----) [000] d..2 24572.352018: 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
20414 Shutdown thread-13122 (13122) [004] d..1 24572.352338: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
20415     logd.writer-563   (  555) [000] d..2 24572.352377: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
20416          <idle>-0     (-----) [000] d..3 24572.352394: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
20417 Shutdown thread-13122 (13122) [004] d..2 24572.352405: sched_switch: prev_comm=app_process prev_pid=13122 prev_prio=120 prev_state=D|K ==> next_comm=swapper/4 next_pid=0 next_prio=120
20418          <idle>-0     (-----) [004] d..1 24572.352417: cpu_idle: state=2 cpu_id=4
20419          <idle>-0     (-----) [000] dn.4 24572.352420: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
20420          <idle>-0     (-----) [000] dnh2 24572.352438: sched_blocked_reason: pid=563 iowait=0 caller=proc_pid_cmdline_read+0x63c/0x668
20421          <idle>-0     (-----) [000] dnh2 24572.352444: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
20422          <idle>-0     (-----) [000] d..2 24572.352459: 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
20423         rcuop/0-10    (   10) [000] d..2 24572.352474: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
20424     logd.writer-563   (  555) [000] d..1 24572.352478: sched_waking: comm=app_process pid=13122 prio=120 target_cpu=004
20425     logd.writer-563   (  555) [000] d..2 24572.352513: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
20426          <idle>-0     (-----) [000] d..1 24572.352524: cpu_idle: state=0 cpu_id=0
20427          <idle>-0     (-----) [004] d.h2 24572.353221: sched_blocked_reason: pid=13122 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
20428          <idle>-0     (-----) [004] dnh2 24572.353223: sched_wakeup: comm=app_process pid=13122 prio=120 target_cpu=004
20429          <idle>-0     (-----) [004] .n.1 24572.353226: cpu_idle: state=4294967295 cpu_id=4
20430          <idle>-0     (-----) [004] d..2 24572.353232: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=app_process next_pid=13122 next_prio=120
20431 Shutdown thread-13122 (13122) [004] d..1 24572.353239: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
20432 Shutdown thread-13122 (13122) [004] d..2 24572.353253: sched_switch: prev_comm=app_process prev_pid=13122 prev_prio=120 prev_state=D|K ==> next_comm=swapper/4 next_pid=0 next_prio=120
20433          <idle>-0     (-----) [004] d..1 24572.353257: cpu_idle: state=2 cpu_id=4
20434          <idle>-0     (-----) [000] d.h2 24572.353257: sched_blocked_reason: pid=563 iowait=0 caller=__access_remote_vm+0x2a8/0x2b8
20435          <idle>-0     (-----) [000] dnh2 24572.353262: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
20436          <idle>-0     (-----) [000] .n.1 24572.353269: cpu_idle: state=4294967295 cpu_id=0
20437          <idle>-0     (-----) [000] d..2 24572.353278: 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
20438     logd.writer-563   (  555) [000] d..1 24572.353287: sched_waking: comm=app_process pid=13122 prio=120 target_cpu=004
20439     logd.writer-563   (  555) [000] d..2 24572.353315: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
20440          <idle>-0     (-----) [000] d..1 24572.353325: cpu_idle: state=0 cpu_id=0
20441          <idle>-0     (-----) [004] d.h2 24572.353998: sched_blocked_reason: pid=13122 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
20442          <idle>-0     (-----) [004] dnh2 24572.354000: sched_wakeup: comm=app_process pid=13122 prio=120 target_cpu=004
20443          <idle>-0     (-----) [004] .n.1 24572.354002: cpu_idle: state=4294967295 cpu_id=4
20444          <idle>-0     (-----) [004] d..2 24572.354007: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=app_process next_pid=13122 next_prio=120
20445 Shutdown thread-13122 (13122) [004] d..1 24572.354014: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
20446          <idle>-0     (-----) [000] d.h2 24572.354032: sched_blocked_reason: pid=563 iowait=0 caller=__access_remote_vm+0x2a8/0x2b8
20447 Shutdown thread-13122 (13122) [004] d..2 24572.354033: sched_switch: prev_comm=app_process prev_pid=13122 prev_prio=120 prev_state=D|K ==> next_comm=swapper/4 next_pid=0 next_prio=120
20448          <idle>-0     (-----) [004] d..1 24572.354037: cpu_idle: state=2 cpu_id=4
20449          <idle>-0     (-----) [000] dnh2 24572.354037: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
20450          <idle>-0     (-----) [000] .n.1 24572.354044: cpu_idle: state=4294967295 cpu_id=0
20451          <idle>-0     (-----) [000] d..2 24572.354053: 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
20452     logd.writer-563   (  555) [000] d..1 24572.354059: sched_waking: comm=app_process pid=13122 prio=120 target_cpu=004
20453     logd.writer-563   (  555) [000] d..2 24572.354211: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
20454          <idle>-0     (-----) [000] d.s3 24572.354252: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20455          <idle>-0     (-----) [000] dns4 24572.354271: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20456          <idle>-0     (-----) [000] d..2 24572.354307: 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
20457     rcu_preempt-7     (    7) [000] d..2 24572.354327: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
20458     rcu_preempt-7     (    7) [000] d..3 24572.354345: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
20459     rcu_preempt-7     (    7) [000] d..2 24572.354365: 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
20460         rcuop/4-45    (   45) [000] d..2 24572.354403: 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
20461          <idle>-0     (-----) [000] d..1 24572.354421: cpu_idle: state=2 cpu_id=0
20462          <idle>-0     (-----) [004] d.h2 24572.354777: sched_blocked_reason: pid=13122 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
20463          <idle>-0     (-----) [004] dnh2 24572.354779: sched_wakeup: comm=app_process pid=13122 prio=120 target_cpu=004
20464          <idle>-0     (-----) [004] .n.1 24572.354782: cpu_idle: state=4294967295 cpu_id=4
20465          <idle>-0     (-----) [004] d..2 24572.354786: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=app_process next_pid=13122 next_prio=120
20466 Shutdown thread-13122 (13122) [004] d..1 24572.354791: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
20467 Shutdown thread-13122 (13122) [004] d..2 24572.354803: sched_switch: prev_comm=app_process prev_pid=13122 prev_prio=120 prev_state=D|K ==> next_comm=swapper/4 next_pid=0 next_prio=120
20468          <idle>-0     (-----) [004] d..1 24572.354807: cpu_idle: state=2 cpu_id=4
20469          <idle>-0     (-----) [000] d.h2 24572.355019: sched_blocked_reason: pid=563 iowait=0 caller=proc_pid_cmdline_read+0x63c/0x668
20470          <idle>-0     (-----) [000] dnh2 24572.355026: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
20471          <idle>-0     (-----) [000] .n.1 24572.355035: cpu_idle: state=4294967295 cpu_id=0
20472          <idle>-0     (-----) [000] d..2 24572.355051: 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
20473     logd.writer-563   (  555) [000] d..1 24572.355055: sched_waking: comm=app_process pid=13122 prio=120 target_cpu=004
20474     logd.writer-563   (  555) [000] d..2 24572.355097: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
20475          <idle>-0     (-----) [000] d..1 24572.355110: cpu_idle: state=0 cpu_id=0
20476          <idle>-0     (-----) [004] d.h2 24572.355712: sched_blocked_reason: pid=13122 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
20477          <idle>-0     (-----) [004] dnh2 24572.355715: sched_wakeup: comm=app_process pid=13122 prio=120 target_cpu=004
20478          <idle>-0     (-----) [004] .n.1 24572.355719: cpu_idle: state=4294967295 cpu_id=4
20479          <idle>-0     (-----) [004] d..2 24572.355726: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=app_process next_pid=13122 next_prio=120
20480 Shutdown thread-13122 (13122) [004] d..1 24572.355732: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
20481          <idle>-0     (-----) [000] d.h2 24572.355750: sched_blocked_reason: pid=563 iowait=0 caller=__access_remote_vm+0x2a8/0x2b8
20482          <idle>-0     (-----) [000] dnh2 24572.355755: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
20483          <idle>-0     (-----) [000] .n.1 24572.355762: cpu_idle: state=4294967295 cpu_id=0
20484 Shutdown thread-13122 (13122) [004] d..2 24572.355772: sched_switch: prev_comm=app_process prev_pid=13122 prev_prio=120 prev_state=D|K ==> next_comm=swapper/4 next_pid=0 next_prio=120
20485          <idle>-0     (-----) [000] d..2 24572.355775: 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
20486          <idle>-0     (-----) [004] d..1 24572.355779: cpu_idle: state=0 cpu_id=4
20487     logd.writer-563   (  555) [000] d..1 24572.355783: sched_waking: comm=app_process pid=13122 prio=120 target_cpu=004
20488          <idle>-0     (-----) [004] d.h2 24572.355799: sched_blocked_reason: pid=13122 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
20489          <idle>-0     (-----) [004] dnh2 24572.355800: sched_wakeup: comm=app_process pid=13122 prio=120 target_cpu=004
20490          <idle>-0     (-----) [004] .n.1 24572.355802: cpu_idle: state=4294967295 cpu_id=4
20491          <idle>-0     (-----) [004] d..2 24572.355805: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=app_process next_pid=13122 next_prio=120
20492 Shutdown thread-13122 (13122) [004] d..1 24572.355809: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
20493     logd.writer-563   (  555) [000] d..2 24572.355814: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
20494 Shutdown thread-13122 (13122) [004] d..2 24572.355825: sched_switch: prev_comm=app_process prev_pid=13122 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
20495          <idle>-0     (-----) [000] d..1 24572.355827: cpu_idle: state=0 cpu_id=0
20496          <idle>-0     (-----) [004] d..1 24572.355829: cpu_idle: state=0 cpu_id=4
20497          <idle>-0     (-----) [000] d.h2 24572.355839: sched_blocked_reason: pid=563 iowait=0 caller=__access_remote_vm+0x2a8/0x2b8
20498          <idle>-0     (-----) [000] dnh2 24572.355844: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
20499          <idle>-0     (-----) [000] .n.1 24572.355851: cpu_idle: state=4294967295 cpu_id=0
20500          <idle>-0     (-----) [000] d..2 24572.355864: 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
20501     logd.writer-563   (  555) [000] d..1 24572.355871: sched_waking: comm=app_process pid=13122 prio=120 target_cpu=004
20502          <idle>-0     (-----) [004] d.h2 24572.355884: sched_blocked_reason: pid=13122 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
20503          <idle>-0     (-----) [004] dnh2 24572.355885: sched_wakeup: comm=app_process pid=13122 prio=120 target_cpu=004
20504          <idle>-0     (-----) [004] .n.1 24572.355887: cpu_idle: state=4294967295 cpu_id=4
20505          <idle>-0     (-----) [004] d..2 24572.355890: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=app_process next_pid=13122 next_prio=120
20506     logd.writer-563   (  555) [000] d..2 24572.355956: 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
20507          <idle>-0     (-----) [000] d..1 24572.355970: cpu_idle: state=0 cpu_id=0
20508 Shutdown thread-13122 (13122) [004] d.H3 24572.357600: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
20509 Shutdown thread-13122 (13122) [004] d.H4 24572.357612: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
20510 Shutdown thread-13122 (13122) [004] d.H3 24572.357613: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
20511          <idle>-0     (-----) [000] dnh2 24572.357633: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
20512          <idle>-0     (-----) [000] .n.1 24572.357641: cpu_idle: state=4294967295 cpu_id=0
20513          <idle>-0     (-----) [000] d..2 24572.357653: 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
20514         sugov:0-559   (  559) [000] d..2 24572.357690: 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
20515          <idle>-0     (-----) [000] d..1 24572.357699: cpu_idle: state=0 cpu_id=0
20516          <idle>-0     (-----) [007] .n.1 24572.357770: cpu_idle: state=4294967295 cpu_id=7
20517          <idle>-0     (-----) [007] d..2 24572.357778: 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
20518         sugov:4-560   (  560) [007] d..2 24572.357792: 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
20519          <idle>-0     (-----) [007] d..1 24572.357797: cpu_idle: state=2 cpu_id=7
20520          <idle>-0     (-----) [000] d.h2 24572.359470: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
20521          <idle>-0     (-----) [000] dnh3 24572.359481: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
20522          <idle>-0     (-----) [000] .n.1 24572.359493: cpu_idle: state=4294967295 cpu_id=0
20523          <idle>-0     (-----) [000] d..2 24572.359501: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
20524 irq/79-1436400.-24613 (24613) [000] d..2 24572.359720: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
20525          <idle>-0     (-----) [000] d..1 24572.359731: cpu_idle: state=0 cpu_id=0
20526          <idle>-0     (-----) [003] d.s3 24572.359880: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
20527          <idle>-0     (-----) [003] d.s4 24572.359897: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
20528          <idle>-0     (-----) [000] .n.1 24572.359903: cpu_idle: state=4294967295 cpu_id=0
20529          <idle>-0     (-----) [003] ...1 24572.359910: cpu_idle: state=4294967295 cpu_id=3
20530          <idle>-0     (-----) [000] d..2 24572.359912: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
20531          <idle>-0     (-----) [003] d..1 24572.359923: cpu_idle: state=0 cpu_id=3
20532 irq/79-1436400.-24613 (24613) [000] d..2 24572.359953: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20533          <idle>-0     (-----) [000] d..1 24572.359962: cpu_idle: state=0 cpu_id=0
20534 Shutdown thread-13122 (13122) [004] d.s2 24572.360893: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20535          <idle>-0     (-----) [000] dnH2 24572.360967: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20536          <idle>-0     (-----) [000] dns2 24572.360975: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20537          <idle>-0     (-----) [000] dns3 24572.360994: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20538          <idle>-0     (-----) [000] .n.1 24572.361006: cpu_idle: state=4294967295 cpu_id=0
20539          <idle>-0     (-----) [000] d..2 24572.361016: 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
20540     rcu_preempt-7     (    7) [000] d..2 24572.361029: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
20541     rcu_preempt-7     (    7) [000] d..3 24572.361048: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
20542     rcu_preempt-7     (    7) [000] d..2 24572.361066: 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
20543         rcuop/0-10    (   10) [000] d..2 24572.361098: 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
20544  kworker/u16:10-23868 (23868) [000] d..2 24572.361379: 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
20545          <idle>-0     (-----) [000] d..1 24572.361397: cpu_idle: state=2 cpu_id=0
20546          <idle>-0     (-----) [003] d.s3 24572.361401: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20547          <idle>-0     (-----) [003] d.s4 24572.361413: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
20548          <idle>-0     (-----) [003] d.s4 24572.361423: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20549          <idle>-0     (-----) [003] ...1 24572.361436: cpu_idle: state=4294967295 cpu_id=3
20550          <idle>-0     (-----) [003] d..1 24572.361442: cpu_idle: state=0 cpu_id=3
20551          <idle>-0     (-----) [000] .n.1 24572.361646: cpu_idle: state=4294967295 cpu_id=0
20552          <idle>-0     (-----) [000] d..2 24572.361674: 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
20553  kworker/u16:10-23868 (23868) [000] .... 24572.361737: clk_set_rate: l3_cluster1_vote_clk 1305600000
20554  kworker/u16:10-23868 (23868) [000] .... 24572.361746: clk_set_rate: l3_clk 1305600000
20555          <idle>-0     (-----) [003] ...1 24572.362013: cpu_idle: state=4294967295 cpu_id=3
20556          <idle>-0     (-----) [003] d..1 24572.362025: cpu_idle: state=2 cpu_id=3
20557  kworker/u16:10-23868 (23868) [000] d..2 24572.362043: 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
20558          <idle>-0     (-----) [000] d..1 24572.362061: cpu_idle: state=0 cpu_id=0
20559          <idle>-0     (-----) [000] d.s2 24572.367606: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20560          <idle>-0     (-----) [000] dns3 24572.367630: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20561          <idle>-0     (-----) [000] .n.1 24572.367651: cpu_idle: state=4294967295 cpu_id=0
20562          <idle>-0     (-----) [000] d..2 24572.367666: 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
20563     rcu_preempt-7     (    7) [000] d..2 24572.367679: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
20564     rcu_preempt-7     (    7) [000] d..3 24572.367701: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
20565     rcu_preempt-7     (    7) [000] d..2 24572.367720: 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
20566         rcuop/4-45    (   45) [000] d..2 24572.367792: 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
20567          <idle>-0     (-----) [000] d..1 24572.367810: cpu_idle: state=0 cpu_id=0
20568 Shutdown thread-13122 (13122) [004] d.s3 24572.370895: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20569          <idle>-0     (-----) [000] dnh2 24572.370924: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20570          <idle>-0     (-----) [000] .n.1 24572.370931: cpu_idle: state=4294967295 cpu_id=0
20571          <idle>-0     (-----) [000] d..2 24572.370946: 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
20572  kworker/u16:10-23868 (23868) [000] .... 24572.371022: clk_set_rate: l3_cluster1_vote_clk 1478400000
20573  kworker/u16:10-23868 (23868) [000] .... 24572.371030: clk_set_rate: l3_clk 1478400000
20574  kworker/u16:10-23868 (23868) [000] d..2 24572.371135: 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
20575          <idle>-0     (-----) [000] d..1 24572.371149: cpu_idle: state=0 cpu_id=0
20576          <idle>-0     (-----) [003] d.s3 24572.371384: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20577          <idle>-0     (-----) [003] d.s4 24572.371402: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
20578          <idle>-0     (-----) [003] d.s4 24572.371413: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20579          <idle>-0     (-----) [000] .n.1 24572.371419: cpu_idle: state=4294967295 cpu_id=0
20580          <idle>-0     (-----) [003] ...1 24572.371428: cpu_idle: state=4294967295 cpu_id=3
20581          <idle>-0     (-----) [000] d..2 24572.371430: 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
20582          <idle>-0     (-----) [003] d..1 24572.371440: cpu_idle: state=2 cpu_id=3
20583  kworker/u16:10-23868 (23868) [000] d..2 24572.371682: 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
20584          <idle>-0     (-----) [000] d..1 24572.371694: cpu_idle: state=0 cpu_id=0
20585          <idle>-0     (-----) [003] d.s3 24572.371857: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20586          <idle>-0     (-----) [003] d.s4 24572.371871: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
20587          <idle>-0     (-----) [003] d.s4 24572.371882: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20588          <idle>-0     (-----) [000] .n.1 24572.371888: cpu_idle: state=4294967295 cpu_id=0
20589          <idle>-0     (-----) [003] ...1 24572.371895: cpu_idle: state=4294967295 cpu_id=3
20590          <idle>-0     (-----) [000] d..2 24572.371899: 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
20591          <idle>-0     (-----) [003] d..1 24572.371910: cpu_idle: state=0 cpu_id=3
20592  kworker/u16:10-23868 (23868) [000] d..2 24572.371962: 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
20593          <idle>-0     (-----) [000] d..1 24572.371972: cpu_idle: state=0 cpu_id=0
20594          <idle>-0     (-----) [001] d.h2 24572.373706: sched_waking: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
20595          <idle>-0     (-----) [001] dnh3 24572.373730: sched_wakeup: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
20596          <idle>-0     (-----) [001] .n.1 24572.373743: cpu_idle: state=4294967295 cpu_id=1
20597          <idle>-0     (-----) [001] d..2 24572.373764: 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
20598          <idle>-0     (-----) [000] d.h2 24572.373789: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
20599          <idle>-0     (-----) [000] dnh3 24572.373801: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
20600          <idle>-0     (-----) [000] .n.1 24572.373810: cpu_idle: state=4294967295 cpu_id=0
20601          <idle>-0     (-----) [000] d..2 24572.373818: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
20602 irq/79-1436400.-24613 (24613) [000] d..2 24572.373882: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
20603          <idle>-0     (-----) [000] d..1 24572.373891: cpu_idle: state=0 cpu_id=0
20604<...>-24617 ( 24617) [001] d..2 24572.373970: 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
20605          <idle>-0     (-----) [003] d.s3 24572.373975: sched_waking: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
20606          <idle>-0     (-----) [003] d.s4 24572.373989: sched_wakeup: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
20607          <idle>-0     (-----) [003] ...1 24572.374001: cpu_idle: state=4294967295 cpu_id=3
20608          <idle>-0     (-----) [001] d..2 24572.374001: 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
20609          <idle>-0     (-----) [003] d..1 24572.374008: cpu_idle: state=0 cpu_id=3
20610<...>-24617 ( 24617) [001] d..1 24572.374014: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
20611<...>-24617 ( 24617) [001] d..2 24572.374029: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
20612          <idle>-0     (-----) [000] .n.1 24572.374035: cpu_idle: state=4294967295 cpu_id=0
20613          <idle>-0     (-----) [000] d..2 24572.374044: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
20614<...>-24617 ( 24617) [001] d..2 24572.374066: 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
20615          <idle>-0     (-----) [001] d..1 24572.374079: cpu_idle: state=2 cpu_id=1
20616 irq/79-1436400.-24613 (24613) [000] d..2 24572.374175: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
20617          <idle>-0     (-----) [000] d..1 24572.374185: cpu_idle: state=0 cpu_id=0
20618          <idle>-0     (-----) [003] d.s3 24572.374218: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
20619          <idle>-0     (-----) [003] d.s4 24572.374231: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
20620          <idle>-0     (-----) [003] ...1 24572.374245: cpu_idle: state=4294967295 cpu_id=3
20621          <idle>-0     (-----) [003] d..1 24572.374255: cpu_idle: state=0 cpu_id=3
20622          <idle>-0     (-----) [000] dns2 24572.374255: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20623          <idle>-0     (-----) [000] dns3 24572.374281: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20624          <idle>-0     (-----) [000] .n.1 24572.374297: cpu_idle: state=4294967295 cpu_id=0
20625          <idle>-0     (-----) [000] d..2 24572.374305: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
20626 irq/79-1436400.-24613 (24613) [000] d..2 24572.374334: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
20627     rcu_preempt-7     (    7) [000] d..2 24572.374349: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
20628     rcu_preempt-7     (    7) [000] d..3 24572.374372: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
20629     rcu_preempt-7     (    7) [000] d..2 24572.374391: 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
20630         rcuop/0-10    (   10) [000] d..2 24572.374429: 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
20631          <idle>-0     (-----) [000] d..1 24572.374445: cpu_idle: state=0 cpu_id=0
20632 Shutdown thread-13122 (13122) [004] d.H2 24572.377609: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
20633 Shutdown thread-13122 (13122) [004] d.H3 24572.377622: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
20634 Shutdown thread-13122 (13122) [004] d.H2 24572.377624: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
20635          <idle>-0     (-----) [000] dnh2 24572.377645: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
20636          <idle>-0     (-----) [000] .n.1 24572.377652: cpu_idle: state=4294967295 cpu_id=0
20637          <idle>-0     (-----) [000] d..2 24572.377665: 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
20638         sugov:0-559   (  559) [000] .... 24572.377705: clk_set_rate: pwrcl_clk 748800000
20639         sugov:0-559   (  559) [000] .... 24572.377725: clk_set_rate: cpu3_pwrcl_clk 652800000
20640         sugov:0-559   (  559) [000] .... 24572.377734: clk_set_rate: cpu2_pwrcl_clk 652800000
20641         sugov:0-559   (  559) [000] .... 24572.377742: clk_set_rate: cpu1_pwrcl_clk 652800000
20642         sugov:0-559   (  559) [000] .... 24572.377750: clk_set_rate: cpu0_pwrcl_clk 748800000
20643         sugov:0-559   (  559) [000] .... 24572.377759: cpu_frequency: state=748800 cpu_id=0
20644         sugov:0-559   (  559) [000] .... 24572.377783: cpu_frequency: state=748800 cpu_id=1
20645         sugov:0-559   (  559) [000] .... 24572.377789: cpu_frequency: state=748800 cpu_id=2
20646         sugov:0-559   (  559) [000] .... 24572.377794: cpu_frequency: state=748800 cpu_id=3
20647          <idle>-0     (-----) [007] .n.1 24572.377798: cpu_idle: state=4294967295 cpu_id=7
20648          <idle>-0     (-----) [007] d..2 24572.377807: 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
20649         sugov:4-560   (  560) [007] d..2 24572.377822: 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
20650         sugov:0-559   (  559) [000] d..2 24572.377825: 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
20651          <idle>-0     (-----) [007] d..1 24572.377827: cpu_idle: state=2 cpu_id=7
20652          <idle>-0     (-----) [000] d..1 24572.377835: cpu_idle: state=0 cpu_id=0
20653          <idle>-0     (-----) [003] ...1 24572.380259: cpu_idle: state=4294967295 cpu_id=3
20654          <idle>-0     (-----) [003] d..1 24572.380265: cpu_idle: state=2 cpu_id=3
20655 Shutdown thread-13122 (13122) [004] d.s2 24572.380892: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20656          <idle>-0     (-----) [000] dnH2 24572.380917: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20657          <idle>-0     (-----) [000] dns2 24572.380922: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20658          <idle>-0     (-----) [000] dns3 24572.380939: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20659          <idle>-0     (-----) [000] .n.1 24572.380958: cpu_idle: state=4294967295 cpu_id=0
20660          <idle>-0     (-----) [000] d..2 24572.380967: 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
20661     rcu_preempt-7     (    7) [000] d..2 24572.380977: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
20662     rcu_preempt-7     (    7) [000] d..3 24572.380996: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
20663     rcu_preempt-7     (    7) [000] d..2 24572.381009: 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
20664         rcuop/4-45    (   45) [000] d..2 24572.381307: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20665         rcuop/4-45    (   45) [000] d..3 24572.381323: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20666         rcuop/4-45    (   45) [000] d..2 24572.381335: 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
20667     rcu_preempt-7     (    7) [000] d..2 24572.381348: 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
20668  kworker/u16:10-23868 (23868) [000] d..2 24572.381588: 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
20669          <idle>-0     (-----) [000] d..1 24572.381602: cpu_idle: state=0 cpu_id=0
20670          <idle>-0     (-----) [003] d.s3 24572.381759: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20671          <idle>-0     (-----) [003] d.s4 24572.381775: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
20672          <idle>-0     (-----) [003] d.s4 24572.381799: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20673          <idle>-0     (-----) [000] .n.1 24572.381805: cpu_idle: state=4294967295 cpu_id=0
20674          <idle>-0     (-----) [003] ...1 24572.381812: cpu_idle: state=4294967295 cpu_id=3
20675          <idle>-0     (-----) [000] d..2 24572.381818: 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
20676          <idle>-0     (-----) [003] d..1 24572.381824: cpu_idle: state=0 cpu_id=3
20677  kworker/u16:10-23868 (23868) [000] d..2 24572.381910: 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
20678          <idle>-0     (-----) [000] d..1 24572.381922: cpu_idle: state=0 cpu_id=0
20679          <idle>-0     (-----) [000] d.s2 24572.387571: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20680          <idle>-0     (-----) [000] dns3 24572.387590: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20681          <idle>-0     (-----) [000] .n.1 24572.387601: cpu_idle: state=4294967295 cpu_id=0
20682          <idle>-0     (-----) [000] d..2 24572.387612: 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
20683     rcu_preempt-7     (    7) [000] d..2 24572.387621: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
20684     rcu_preempt-7     (    7) [000] d..3 24572.387637: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
20685     rcu_preempt-7     (    7) [000] d..2 24572.387647: 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
20686         rcuop/4-45    (   45) [000] d..2 24572.387710: 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
20687          <idle>-0     (-----) [000] d..1 24572.387724: cpu_idle: state=2 cpu_id=0
20688          <idle>-0     (-----) [003] ...1 24572.387827: cpu_idle: state=4294967295 cpu_id=3
20689          <idle>-0     (-----) [003] d..1 24572.387832: cpu_idle: state=2 cpu_id=3
20690 Shutdown thread-13122 (13122) [004] d.s2 24572.390891: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20691          <idle>-0     (-----) [000] dnh2 24572.391127: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20692          <idle>-0     (-----) [000] .n.1 24572.391136: cpu_idle: state=4294967295 cpu_id=0
20693          <idle>-0     (-----) [000] d..2 24572.391156: 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
20694  kworker/u16:10-23868 (23868) [000] d..2 24572.391418: 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
20695          <idle>-0     (-----) [000] d..1 24572.391441: cpu_idle: state=0 cpu_id=0
20696          <idle>-0     (-----) [003] d.s3 24572.391568: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20697          <idle>-0     (-----) [003] d.s4 24572.391582: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
20698          <idle>-0     (-----) [003] d.s4 24572.391592: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20699          <idle>-0     (-----) [000] .n.1 24572.391599: cpu_idle: state=4294967295 cpu_id=0
20700          <idle>-0     (-----) [003] ...1 24572.391604: cpu_idle: state=4294967295 cpu_id=3
20701          <idle>-0     (-----) [000] d..2 24572.391611: 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
20702          <idle>-0     (-----) [003] d..1 24572.391616: cpu_idle: state=0 cpu_id=3
20703  kworker/u16:10-23868 (23868) [000] d..2 24572.391661: 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
20704          <idle>-0     (-----) [000] d..1 24572.391675: cpu_idle: state=0 cpu_id=0
20705 Shutdown thread-13122 (13122) [004] d.s2 24572.394226: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
20706 Shutdown thread-13122 (13122) [004] dns3 24572.394233: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
20707 Shutdown thread-13122 (13122) [004] d..2 24572.394238: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=R+ ==> next_comm=kworker/4:0 next_pid=24269 next_prio=120
20708     kworker/4:0-24269 (24269) [004] d..2 24572.394250: sched_switch: prev_comm=kworker/4:0 prev_pid=24269 prev_prio=120 prev_state=S ==> next_comm=main next_pid=13122 next_prio=120
20709 Shutdown thread-13122 (13122) [004] d..2 24572.394358: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
20710          <idle>-0     (-----) [000] dnh2 24572.394381: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
20711          <idle>-0     (-----) [000] .n.1 24572.394388: cpu_idle: state=4294967295 cpu_id=0
20712          <idle>-0     (-----) [000] d..2 24572.394400: 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
20713         rcuop/4-45    (   45) [000] d..2 24572.394407: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20714         rcuop/4-45    (   45) [000] d..3 24572.394426: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20715         rcuop/4-45    (   45) [000] d..2 24572.394437: 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
20716     rcu_preempt-7     (    7) [000] d..2 24572.394464: 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
20717          <idle>-0     (-----) [000] d..1 24572.394476: cpu_idle: state=0 cpu_id=0
20718 Shutdown thread-13122 (13122) [004] d.H2 24572.397603: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
20719 Shutdown thread-13122 (13122) [004] d.H3 24572.397615: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
20720 Shutdown thread-13122 (13122) [004] d.H2 24572.397616: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
20721          <idle>-0     (-----) [003] ...1 24572.397621: cpu_idle: state=4294967295 cpu_id=3
20722          <idle>-0     (-----) [003] d..1 24572.397626: cpu_idle: state=2 cpu_id=3
20723          <idle>-0     (-----) [000] dnh2 24572.397642: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
20724          <idle>-0     (-----) [000] .n.1 24572.397653: cpu_idle: state=4294967295 cpu_id=0
20725          <idle>-0     (-----) [000] d..2 24572.397669: 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
20726         sugov:0-559   (  559) [000] .... 24572.397704: clk_set_rate: pwrcl_clk 652800000
20727         sugov:0-559   (  559) [000] .... 24572.397724: clk_set_rate: cpu3_pwrcl_clk 748800000
20728         sugov:0-559   (  559) [000] .... 24572.397733: clk_set_rate: cpu2_pwrcl_clk 748800000
20729         sugov:0-559   (  559) [000] .... 24572.397741: clk_set_rate: cpu1_pwrcl_clk 748800000
20730         sugov:0-559   (  559) [000] .... 24572.397748: clk_set_rate: cpu0_pwrcl_clk 652800000
20731          <idle>-0     (-----) [007] .n.1 24572.397791: cpu_idle: state=4294967295 cpu_id=7
20732          <idle>-0     (-----) [007] d..2 24572.397800: 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
20733         sugov:4-560   (  560) [007] d..2 24572.397817: 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
20734          <idle>-0     (-----) [007] d..1 24572.397823: cpu_idle: state=2 cpu_id=7
20735         sugov:0-559   (  559) [000] .... 24572.397862: cpu_frequency: state=652800 cpu_id=0
20736         sugov:0-559   (  559) [000] .... 24572.397887: cpu_frequency: state=652800 cpu_id=1
20737         sugov:0-559   (  559) [000] .... 24572.397893: cpu_frequency: state=652800 cpu_id=2
20738         sugov:0-559   (  559) [000] .... 24572.397898: cpu_frequency: state=652800 cpu_id=3
20739         sugov:0-559   (  559) [000] d..2 24572.397927: 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
20740          <idle>-0     (-----) [000] d..1 24572.397938: cpu_idle: state=0 cpu_id=0
20741 Shutdown thread-13122 (13122) [004] d.s2 24572.400896: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20742          <idle>-0     (-----) [000] d.s2 24572.400910: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20743          <idle>-0     (-----) [000] dns3 24572.400933: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20744          <idle>-0     (-----) [000] dnH3 24572.400946: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20745          <idle>-0     (-----) [000] .n.1 24572.400973: cpu_idle: state=4294967295 cpu_id=0
20746          <idle>-0     (-----) [000] d..2 24572.400984: 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
20747     rcu_preempt-7     (    7) [000] d..2 24572.400998: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
20748     rcu_preempt-7     (    7) [000] d..3 24572.401018: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
20749     rcu_preempt-7     (    7) [000] d..2 24572.401032: 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
20750         rcuop/4-45    (   45) [000] d..2 24572.401042: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20751         rcuop/4-45    (   45) [000] d..3 24572.401057: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20752         rcuop/4-45    (   45) [000] d..2 24572.401068: 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
20753     rcu_preempt-7     (    7) [000] d..2 24572.401083: 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
20754  kworker/u16:10-23868 (23868) [000] d..2 24572.401376: 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
20755          <idle>-0     (-----) [000] d..1 24572.401397: cpu_idle: state=0 cpu_id=0
20756          <idle>-0     (-----) [003] d.s3 24572.401571: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20757          <idle>-0     (-----) [003] d.s4 24572.401588: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
20758          <idle>-0     (-----) [003] d.s4 24572.401599: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20759          <idle>-0     (-----) [000] .n.1 24572.401605: cpu_idle: state=4294967295 cpu_id=0
20760          <idle>-0     (-----) [003] ...1 24572.401612: cpu_idle: state=4294967295 cpu_id=3
20761          <idle>-0     (-----) [000] d..2 24572.401619: 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
20762          <idle>-0     (-----) [003] d..1 24572.401623: cpu_idle: state=2 cpu_id=3
20763  kworker/u16:10-23868 (23868) [000] d..2 24572.401718: 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
20764          <idle>-0     (-----) [000] d..1 24572.401730: cpu_idle: state=0 cpu_id=0
20765          <idle>-0     (-----) [000] .n.1 24572.404716: cpu_idle: state=4294967295 cpu_id=0
20766 Shutdown thread-13122 (13122) [004] d..2 24572.404728: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
20767          <idle>-0     (-----) [000] d..2 24572.404733: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13123 next_prio=120
20768          <idle>-0     (-----) [004] d..1 24572.404740: cpu_idle: state=0 cpu_id=4
20769 Jit thread pool-13123 (13122) [000] d..2 24572.405153: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
20770 Jit thread pool-13123 (13122) [000] d..3 24572.405203: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
20771 Jit thread pool-13123 (13122) [000] d..1 24572.405365: sched_waking: comm=main pid=13122 prio=120 target_cpu=004
20772          <idle>-0     (-----) [004] dnh2 24572.405391: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=004
20773          <idle>-0     (-----) [004] .n.1 24572.405393: cpu_idle: state=4294967295 cpu_id=4
20774          <idle>-0     (-----) [004] d..2 24572.405398: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13122 next_prio=120
20775          <idle>-0     (-----) [001] .n.1 24572.405400: cpu_idle: state=4294967295 cpu_id=1
20776 Shutdown thread-13122 (13122) [004] d..1 24572.405409: sched_waking: comm=Jit thread pool pid=13123 prio=129 target_cpu=000
20777 Jit thread pool-13123 (13122) [000] d..2 24572.405419: sched_switch: prev_comm=Jit thread pool prev_pid=13123 prev_prio=129 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20778          <idle>-0     (-----) [001] d..2 24572.405423: 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
20779          <idle>-0     (-----) [000] dnh2 24572.405444: sched_wakeup: comm=Jit thread pool pid=13123 prio=129 target_cpu=000
20780         rcuop/0-10    (   10) [001] d..2 24572.405459: 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
20781          <idle>-0     (-----) [000] d..2 24572.405459: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=13123 next_prio=129
20782          <idle>-0     (-----) [001] d..1 24572.405476: cpu_idle: state=2 cpu_id=1
20783 Jit thread pool-13123 (13122) [000] d..2 24572.405488: sched_switch: prev_comm=Jit thread pool prev_pid=13123 prev_prio=129 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20784          <idle>-0     (-----) [000] d..1 24572.405500: cpu_idle: state=0 cpu_id=0
20785          <idle>-0     (-----) [000] .n.1 24572.406697: cpu_idle: state=4294967295 cpu_id=0
20786 Shutdown thread-13122 (13122) [004] d..2 24572.406697: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
20787          <idle>-0     (-----) [004] d..1 24572.406705: cpu_idle: state=2 cpu_id=4
20788          <idle>-0     (-----) [000] d..2 24572.406707: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13124 next_prio=120
20789  Signal Catcher-13124 (13122) [000] d..1 24572.406993: sched_waking: comm=main pid=13122 prio=120 target_cpu=004
20790  Signal Catcher-13124 (13122) [000] d..2 24572.407051: sched_switch: prev_comm=Signal Catcher prev_pid=13124 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20791          <idle>-0     (-----) [000] d..1 24572.407068: cpu_idle: state=0 cpu_id=0
20792          <idle>-0     (-----) [000] d.s2 24572.407584: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20793          <idle>-0     (-----) [000] dns3 24572.407604: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20794          <idle>-0     (-----) [000] .n.1 24572.407617: cpu_idle: state=4294967295 cpu_id=0
20795          <idle>-0     (-----) [000] d..2 24572.407627: 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
20796     rcu_preempt-7     (    7) [000] d..2 24572.407642: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
20797          <idle>-0     (-----) [004] dnh2 24572.407655: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=004
20798          <idle>-0     (-----) [004] .n.1 24572.407660: cpu_idle: state=4294967295 cpu_id=4
20799          <idle>-0     (-----) [004] d..2 24572.407667: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13122 next_prio=120
20800     rcu_preempt-7     (    7) [000] d..3 24572.407672: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
20801     rcu_preempt-7     (    7) [000] d..2 24572.407711: 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
20802          <idle>-0     (-----) [000] d..1 24572.407728: cpu_idle: state=2 cpu_id=0
20803          <idle>-0     (-----) [001] .n.1 24572.407805: cpu_idle: state=4294967295 cpu_id=1
20804          <idle>-0     (-----) [001] d..2 24572.407827: 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
20805         rcuop/4-45    (   45) [001] d..2 24572.407863: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
20806          <idle>-0     (-----) [001] d..1 24572.407877: cpu_idle: state=2 cpu_id=1
20807          <idle>-0     (-----) [002] .n.1 24572.407940: cpu_idle: state=4294967295 cpu_id=2
20808          <idle>-0     (-----) [000] .n.1 24572.407963: cpu_idle: state=4294967295 cpu_id=0
20809          <idle>-0     (-----) [002] d..2 24572.407965: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13126 next_prio=120
20810 Shutdown thread-13122 (13122) [004] d..1 24572.407977: sched_waking: comm=main pid=13126 prio=120 target_cpu=002
20811          <idle>-0     (-----) [000] d..2 24572.407983: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13125 next_prio=120
20812          <idle>-0     (-----) [003] .n.1 24572.407997: cpu_idle: state=4294967295 cpu_id=3
20813 FinalizerDaemon-13126 (13122) [002] d..2 24572.408006: sched_switch: prev_comm=main prev_pid=13126 prev_prio=120 prev_state=D|K ==> next_comm=swapper/2 next_pid=0 next_prio=120
20814          <idle>-0     (-----) [003] d..2 24572.408020: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13127 next_prio=120
20815 Shutdown thread-13122 (13122) [004] d..2 24572.408023: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
20816          <idle>-0     (-----) [002] d..1 24572.408025: cpu_idle: state=2 cpu_id=2
20817          <idle>-0     (-----) [004] d..1 24572.408030: cpu_idle: state=2 cpu_id=4
20818 ReferenceQueueD-13125 (13122) [000] d..2 24572.408086: sched_switch: prev_comm=main prev_pid=13125 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
20819          <idle>-0     (-----) [001] .n.1 24572.408101: cpu_idle: state=4294967295 cpu_id=1
20820          <idle>-0     (-----) [000] d..1 24572.408104: cpu_idle: state=0 cpu_id=0
20821 FinalizerWatchd-13127 (13122) [003] d..2 24572.408110: sched_switch: prev_comm=main prev_pid=13127 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20822          <idle>-0     (-----) [001] d..2 24572.408120: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13128 next_prio=120
20823          <idle>-0     (-----) [003] d..1 24572.408130: cpu_idle: state=2 cpu_id=3
20824  HeapTaskDaemon-13128 (13122) [001] d..2 24572.408198: sched_switch: prev_comm=main prev_pid=13128 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
20825          <idle>-0     (-----) [001] d..1 24572.408217: cpu_idle: state=0 cpu_id=1
20826          <idle>-0     (-----) [002] d.h2 24572.408266: sched_blocked_reason: pid=13126 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
20827          <idle>-0     (-----) [002] dnh2 24572.408273: sched_wakeup: comm=main pid=13126 prio=120 target_cpu=002
20828          <idle>-0     (-----) [002] .n.1 24572.408282: cpu_idle: state=4294967295 cpu_id=2
20829          <idle>-0     (-----) [002] d..2 24572.408297: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13126 next_prio=120
20830 FinalizerDaemon-13126 (13122) [002] d..1 24572.408318: sched_waking: comm=main pid=13122 prio=120 target_cpu=004
20831 FinalizerDaemon-13126 (13122) [002] d..1 24572.408338: sched_waking: comm=main pid=13125 prio=120 target_cpu=000
20832 FinalizerDaemon-13126 (13122) [002] d..2 24572.408353: sched_blocked_reason: pid=13125 iowait=0 caller=SyS_madvise+0xc84/0xcbc
20833 FinalizerDaemon-13126 (13122) [002] d..2 24572.408362: sched_wakeup: comm=main pid=13125 prio=120 target_cpu=000
20834          <idle>-0     (-----) [000] .n.1 24572.408369: cpu_idle: state=4294967295 cpu_id=0
20835          <idle>-0     (-----) [000] d..2 24572.408382: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13125 next_prio=120
20836 FinalizerDaemon-13126 (13122) [002] d..2 24572.408392: sched_switch: prev_comm=main prev_pid=13126 prev_prio=120 prev_state=D|K ==> next_comm=swapper/2 next_pid=0 next_prio=120
20837          <idle>-0     (-----) [002] d..1 24572.408411: cpu_idle: state=0 cpu_id=2
20838 ReferenceQueueD-13125 (13122) [000] d..2 24572.408432: sched_switch: prev_comm=main prev_pid=13125 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
20839          <idle>-0     (-----) [000] d..1 24572.408449: cpu_idle: state=0 cpu_id=0
20840          <idle>-0     (-----) [004] d.h2 24572.408967: sched_blocked_reason: pid=13122 iowait=0 caller=do_page_fault+0x4e0/0x594
20841          <idle>-0     (-----) [004] dnh2 24572.408969: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=004
20842          <idle>-0     (-----) [004] .n.1 24572.408972: cpu_idle: state=4294967295 cpu_id=4
20843          <idle>-0     (-----) [004] d..2 24572.408977: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13122 next_prio=120
20844 Shutdown thread-13122 (13122) [004] d..1 24572.408979: sched_waking: comm=main pid=13126 prio=120 target_cpu=002
20845 Shutdown thread-13122 (13122) [004] d..2 24572.408992: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
20846          <idle>-0     (-----) [004] d..1 24572.408995: cpu_idle: state=2 cpu_id=4
20847          <idle>-0     (-----) [002] d.h2 24572.408997: sched_blocked_reason: pid=13126 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
20848          <idle>-0     (-----) [002] dnh2 24572.409002: sched_wakeup: comm=main pid=13126 prio=120 target_cpu=002
20849          <idle>-0     (-----) [002] .n.1 24572.409010: cpu_idle: state=4294967295 cpu_id=2
20850          <idle>-0     (-----) [002] d..2 24572.409023: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13126 next_prio=120
20851 FinalizerDaemon-13126 (13122) [002] d..1 24572.409038: sched_waking: comm=main pid=13125 prio=120 target_cpu=000
20852 FinalizerDaemon-13126 (13122) [002] d..2 24572.409047: sched_blocked_reason: pid=13125 iowait=0 caller=do_page_fault+0x4e0/0x594
20853 FinalizerDaemon-13126 (13122) [002] d..2 24572.409056: sched_wakeup: comm=main pid=13125 prio=120 target_cpu=000
20854 FinalizerDaemon-13126 (13122) [002] d..1 24572.409059: sched_waking: comm=main pid=13122 prio=120 target_cpu=004
20855          <idle>-0     (-----) [000] .n.1 24572.409062: cpu_idle: state=4294967295 cpu_id=0
20856          <idle>-0     (-----) [000] d..2 24572.409075: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13125 next_prio=120
20857 FinalizerDaemon-13126 (13122) [002] d..2 24572.409093: sched_switch: prev_comm=main prev_pid=13126 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20858          <idle>-0     (-----) [002] d..1 24572.409109: cpu_idle: state=0 cpu_id=2
20859 ReferenceQueueD-13125 (13122) [000] d..2 24572.409124: sched_switch: prev_comm=main prev_pid=13125 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
20860          <idle>-0     (-----) [000] d..1 24572.409141: cpu_idle: state=0 cpu_id=0
20861          <idle>-0     (-----) [004] d.h2 24572.409726: sched_blocked_reason: pid=13122 iowait=0 caller=do_page_fault+0x4e0/0x594
20862          <idle>-0     (-----) [004] dnh2 24572.409728: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=004
20863          <idle>-0     (-----) [004] .n.1 24572.409730: cpu_idle: state=4294967295 cpu_id=4
20864          <idle>-0     (-----) [004] d..2 24572.409734: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13122 next_prio=120
20865 Shutdown thread-13122 (13122) [004] d..1 24572.409740: sched_waking: comm=main pid=13126 prio=120 target_cpu=002
20866          <idle>-0     (-----) [002] d.h2 24572.409757: sched_blocked_reason: pid=13126 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
20867          <idle>-0     (-----) [002] dnh2 24572.409762: sched_wakeup: comm=main pid=13126 prio=120 target_cpu=002
20868          <idle>-0     (-----) [002] .n.1 24572.409770: cpu_idle: state=4294967295 cpu_id=2
20869 Shutdown thread-13122 (13122) [004] d..2 24572.409770: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
20870          <idle>-0     (-----) [004] d..1 24572.409775: cpu_idle: state=0 cpu_id=4
20871          <idle>-0     (-----) [002] d..2 24572.409782: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13126 next_prio=120
20872 FinalizerDaemon-13126 (13122) [002] d..1 24572.409789: sched_waking: comm=main pid=13125 prio=120 target_cpu=000
20873 FinalizerDaemon-13126 (13122) [002] d..2 24572.409798: sched_blocked_reason: pid=13125 iowait=0 caller=do_page_fault+0x4e0/0x594
20874 FinalizerDaemon-13126 (13122) [002] d..2 24572.409807: sched_wakeup: comm=main pid=13125 prio=120 target_cpu=000
20875 FinalizerDaemon-13126 (13122) [002] d..1 24572.409810: sched_waking: comm=main pid=13122 prio=120 target_cpu=004
20876          <idle>-0     (-----) [000] .n.1 24572.409813: cpu_idle: state=4294967295 cpu_id=0
20877          <idle>-0     (-----) [004] d.h2 24572.409824: sched_blocked_reason: pid=13122 iowait=0 caller=do_page_fault+0x4e0/0x594
20878          <idle>-0     (-----) [004] dnh2 24572.409825: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=004
20879          <idle>-0     (-----) [000] d..2 24572.409826: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13125 next_prio=120
20880          <idle>-0     (-----) [004] .n.1 24572.409827: cpu_idle: state=4294967295 cpu_id=4
20881          <idle>-0     (-----) [004] d..2 24572.409830: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13122 next_prio=120
20882 ReferenceQueueD-13125 (13122) [000] d..1 24572.409838: sched_waking: comm=main pid=13126 prio=120 target_cpu=002
20883 FinalizerDaemon-13126 (13122) [002] d..2 24572.409842: sched_switch: prev_comm=main prev_pid=13126 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20884 ReferenceQueueD-13125 (13122) [000] d..2 24572.409855: sched_blocked_reason: pid=13126 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
20885          <idle>-0     (-----) [002] d..1 24572.409858: cpu_idle: state=0 cpu_id=2
20886          <idle>-0     (-----) [002] .n.1 24572.409863: cpu_idle: state=4294967295 cpu_id=2
20887 ReferenceQueueD-13125 (13122) [000] d..2 24572.409864: sched_wakeup: comm=main pid=13126 prio=120 target_cpu=002
20888 Shutdown thread-13122 (13122) [004] d..2 24572.409871: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
20889          <idle>-0     (-----) [004] d..1 24572.409873: cpu_idle: state=0 cpu_id=4
20890          <idle>-0     (-----) [002] d..2 24572.409879: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13126 next_prio=120
20891 FinalizerDaemon-13126 (13122) [002] d..1 24572.409885: sched_waking: comm=main pid=13122 prio=120 target_cpu=004
20892 ReferenceQueueD-13125 (13122) [000] d..2 24572.409892: sched_switch: prev_comm=main prev_pid=13125 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
20893 FinalizerDaemon-13126 (13122) [002] d..1 24572.409895: sched_waking: comm=main pid=13125 prio=120 target_cpu=000
20894          <idle>-0     (-----) [004] d.h2 24572.409898: sched_blocked_reason: pid=13122 iowait=0 caller=do_page_fault+0x4e0/0x594
20895          <idle>-0     (-----) [004] dnh2 24572.409900: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=004
20896          <idle>-0     (-----) [004] .n.1 24572.409902: cpu_idle: state=4294967295 cpu_id=4
20897 FinalizerDaemon-13126 (13122) [002] d..2 24572.409904: sched_blocked_reason: pid=13125 iowait=0 caller=do_page_fault+0x4e0/0x594
20898          <idle>-0     (-----) [004] d..2 24572.409904: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13122 next_prio=120
20899          <idle>-0     (-----) [000] d..1 24572.409905: cpu_idle: state=0 cpu_id=0
20900 FinalizerDaemon-13126 (13122) [002] d..2 24572.409913: sched_wakeup: comm=main pid=13125 prio=120 target_cpu=000
20901          <idle>-0     (-----) [000] .n.1 24572.409919: cpu_idle: state=4294967295 cpu_id=0
20902          <idle>-0     (-----) [000] d..2 24572.409932: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13125 next_prio=120
20903 Shutdown thread-13122 (13122) [004] d..2 24572.409934: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=D|K ==> next_comm=swapper/4 next_pid=0 next_prio=120
20904          <idle>-0     (-----) [004] d..1 24572.409937: cpu_idle: state=0 cpu_id=4
20905 ReferenceQueueD-13125 (13122) [000] d..1 24572.409942: sched_waking: comm=main pid=13122 prio=120 target_cpu=004
20906 FinalizerDaemon-13126 (13122) [002] d..2 24572.409944: sched_switch: prev_comm=main prev_pid=13126 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20907          <idle>-0     (-----) [004] d.h2 24572.409957: sched_blocked_reason: pid=13122 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
20908          <idle>-0     (-----) [004] dnh2 24572.409957: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=004
20909          <idle>-0     (-----) [002] d..1 24572.409959: cpu_idle: state=0 cpu_id=2
20910          <idle>-0     (-----) [004] .n.1 24572.409960: cpu_idle: state=4294967295 cpu_id=4
20911          <idle>-0     (-----) [004] d..2 24572.409963: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13122 next_prio=120
20912 ReferenceQueueD-13125 (13122) [000] d..1 24572.409966: sched_waking: comm=main pid=13127 prio=120 target_cpu=003
20913 ReferenceQueueD-13125 (13122) [000] d..2 24572.410016: sched_wakeup: comm=main pid=13127 prio=120 target_cpu=001
20914          <idle>-0     (-----) [001] .n.1 24572.410025: cpu_idle: state=4294967295 cpu_id=1
20915          <idle>-0     (-----) [001] d..2 24572.410038: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13127 next_prio=120
20916 ReferenceQueueD-13125 (13122) [000] d..1 24572.410049: sched_waking: comm=main pid=13127 prio=120 target_cpu=001
20917 FinalizerWatchd-13127 (13122) [001] d..2 24572.410069: sched_switch: prev_comm=main prev_pid=13127 prev_prio=120 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
20918 ReferenceQueueD-13125 (13122) [000] d..2 24572.410081: sched_blocked_reason: pid=13127 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
20919          <idle>-0     (-----) [001] d..1 24572.410085: cpu_idle: state=0 cpu_id=1
20920 ReferenceQueueD-13125 (13122) [000] d..2 24572.410090: sched_wakeup: comm=main pid=13127 prio=120 target_cpu=001
20921          <idle>-0     (-----) [001] .n.1 24572.410094: cpu_idle: state=4294967295 cpu_id=1
20922 Shutdown thread-13122 (13122) [004] d..2 24572.410097: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
20923          <idle>-0     (-----) [004] d..1 24572.410100: cpu_idle: state=2 cpu_id=4
20924          <idle>-0     (-----) [001] d..2 24572.410106: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13127 next_prio=120
20925 ReferenceQueueD-13125 (13122) [000] d..2 24572.410116: sched_switch: prev_comm=ReferenceQueueD prev_pid=13125 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
20926 FinalizerWatchd-13127 (13122) [001] d..1 24572.410120: sched_waking: comm=main pid=13122 prio=120 target_cpu=004
20927          <idle>-0     (-----) [000] d..1 24572.410130: cpu_idle: state=0 cpu_id=0
20928 FinalizerWatchd-13127 (13122) [001] d..1 24572.410133: sched_waking: comm=ReferenceQueueD pid=13125 prio=120 target_cpu=000
20929 FinalizerWatchd-13127 (13122) [001] d..2 24572.410143: sched_blocked_reason: pid=13125 iowait=0 caller=do_page_fault+0x4e0/0x594
20930 FinalizerWatchd-13127 (13122) [001] d..2 24572.410153: sched_wakeup: comm=ReferenceQueueD pid=13125 prio=120 target_cpu=000
20931          <idle>-0     (-----) [000] .n.1 24572.410159: cpu_idle: state=4294967295 cpu_id=0
20932          <idle>-0     (-----) [000] d..2 24572.410172: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=13125 next_prio=120
20933 FinalizerWatchd-13127 (13122) [001] d..1 24572.410218: sched_waking: comm=main pid=13128 prio=120 target_cpu=001
20934 FinalizerWatchd-13127 (13122) [001] d..2 24572.410241: sched_wakeup: comm=main pid=13128 prio=120 target_cpu=001
20935 ReferenceQueueD-13125 (13122) [000] d..2 24572.410291: sched_switch: prev_comm=ReferenceQueueD prev_pid=13125 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20936          <idle>-0     (-----) [000] d..1 24572.410306: cpu_idle: state=0 cpu_id=0
20937 FinalizerWatchd-13127 (13122) [001] d..2 24572.410363: sched_switch: prev_comm=FinalizerWatchd prev_pid=13127 prev_prio=120 prev_state=S ==> next_comm=main next_pid=13128 next_prio=120
20938  HeapTaskDaemon-13128 (13122) [001] d..2 24572.410393: sched_switch: prev_comm=main prev_pid=13128 prev_prio=120 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
20939          <idle>-0     (-----) [001] d..1 24572.410411: cpu_idle: state=0 cpu_id=1
20940          <idle>-0     (-----) [004] d.h2 24572.410833: sched_blocked_reason: pid=13122 iowait=0 caller=do_page_fault+0x4e0/0x594
20941          <idle>-0     (-----) [004] dnh2 24572.410836: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=004
20942          <idle>-0     (-----) [004] .n.1 24572.410838: cpu_idle: state=4294967295 cpu_id=4
20943          <idle>-0     (-----) [004] d..2 24572.410842: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13122 next_prio=120
20944 Shutdown thread-13122 (13122) [004] d..1 24572.410847: sched_waking: comm=main pid=13128 prio=120 target_cpu=001
20945 Shutdown thread-13122 (13122) [004] d..2 24572.410872: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
20946          <idle>-0     (-----) [000] d.h2 24572.410872: sched_blocked_reason: pid=13128 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
20947          <idle>-0     (-----) [004] d..1 24572.410875: cpu_idle: state=2 cpu_id=4
20948          <idle>-0     (-----) [000] dnh2 24572.410878: sched_wakeup: comm=main pid=13128 prio=120 target_cpu=000
20949          <idle>-0     (-----) [000] .n.1 24572.410885: cpu_idle: state=4294967295 cpu_id=0
20950          <idle>-0     (-----) [000] d..2 24572.410905: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13128 next_prio=120
20951  HeapTaskDaemon-13128 (13122) [000] d..1 24572.410919: sched_waking: comm=main pid=13122 prio=120 target_cpu=004
20952  HeapTaskDaemon-13128 (13122) [000] d..1 24572.410990: sched_waking: comm=main pid=13126 prio=120 target_cpu=002
20953  HeapTaskDaemon-13128 (13122) [000] d..2 24572.411034: sched_wakeup: comm=main pid=13126 prio=120 target_cpu=001
20954          <idle>-0     (-----) [001] .n.1 24572.411041: cpu_idle: state=4294967295 cpu_id=1
20955          <idle>-0     (-----) [001] d..2 24572.411056: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13126 next_prio=120
20956 FinalizerDaemon-13126 (13122) [001] d..2 24572.411093: sched_switch: prev_comm=main prev_pid=13126 prev_prio=120 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
20957          <idle>-0     (-----) [001] d..2 24572.411097: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
20958  HeapTaskDaemon-13128 (13122) [000] d..2 24572.411100: sched_switch: prev_comm=HeapTaskDaemon prev_pid=13128 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
20959          <idle>-0     (-----) [001] dn.3 24572.411112: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
20960          <idle>-0     (-----) [000] d..1 24572.411117: cpu_idle: state=0 cpu_id=0
20961          <idle>-0     (-----) [001] d..2 24572.411124: 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
20962     ksoftirqd/1-18    (   18) [001] d.s2 24572.411142: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20963     ksoftirqd/1-18    (   18) [001] d.s3 24572.411165: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20964          <idle>-0     (-----) [000] .n.1 24572.411171: cpu_idle: state=4294967295 cpu_id=0
20965          <idle>-0     (-----) [000] d..2 24572.411183: 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
20966     ksoftirqd/1-18    (   18) [001] d..2 24572.411193: 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
20967          <idle>-0     (-----) [001] d..1 24572.411209: cpu_idle: state=0 cpu_id=1
20968          <idle>-0     (-----) [001] ...1 24572.411232: cpu_idle: state=4294967295 cpu_id=1
20969          <idle>-0     (-----) [001] d..1 24572.411237: cpu_idle: state=0 cpu_id=1
20970  kworker/u16:10-23868 (23868) [000] .... 24572.411274: clk_set_rate: l3_cluster1_vote_clk 1209600000
20971  kworker/u16:10-23868 (23868) [000] .... 24572.411284: clk_set_rate: l3_clk 1209600000
20972          <idle>-0     (-----) [002] ...1 24572.411338: cpu_idle: state=4294967295 cpu_id=2
20973          <idle>-0     (-----) [002] d..1 24572.411345: cpu_idle: state=2 cpu_id=2
20974          <idle>-0     (-----) [004] d.h2 24572.411643: sched_blocked_reason: pid=13122 iowait=0 caller=do_page_fault+0x4e0/0x594
20975          <idle>-0     (-----) [004] dnh2 24572.411645: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=004
20976          <idle>-0     (-----) [004] .n.1 24572.411648: cpu_idle: state=4294967295 cpu_id=4
20977          <idle>-0     (-----) [004] d..2 24572.411653: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13122 next_prio=120
20978 Shutdown thread-13122 (13122) [004] d..1 24572.411656: sched_waking: comm=main pid=13126 prio=120 target_cpu=001
20979 Shutdown thread-13122 (13122) [004] d..2 24572.411669: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
20980          <idle>-0     (-----) [003] ...1 24572.411672: cpu_idle: state=4294967295 cpu_id=3
20981          <idle>-0     (-----) [004] d..1 24572.411673: cpu_idle: state=2 cpu_id=4
20982          <idle>-0     (-----) [001] d.h2 24572.411674: sched_blocked_reason: pid=13126 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
20983          <idle>-0     (-----) [001] dnh2 24572.411679: sched_wakeup: comm=main pid=13126 prio=120 target_cpu=001
20984          <idle>-0     (-----) [001] .n.1 24572.411685: cpu_idle: state=4294967295 cpu_id=1
20985          <idle>-0     (-----) [003] d..1 24572.411686: cpu_idle: state=0 cpu_id=3
20986          <idle>-0     (-----) [001] d..2 24572.411697: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13126 next_prio=120
20987  kworker/u16:10-23868 (23868) [000] d..2 24572.411704: 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
20988 FinalizerDaemon-13126 (13122) [001] d..1 24572.411713: sched_waking: comm=HeapTaskDaemon pid=13128 prio=120 target_cpu=000
20989          <idle>-0     (-----) [000] d..1 24572.411717: cpu_idle: state=0 cpu_id=0
20990 FinalizerDaemon-13126 (13122) [001] d..2 24572.411723: sched_blocked_reason: pid=13128 iowait=0 caller=do_page_fault+0x4e0/0x594
20991 FinalizerDaemon-13126 (13122) [001] d..2 24572.411731: sched_wakeup: comm=HeapTaskDaemon pid=13128 prio=120 target_cpu=000
20992          <idle>-0     (-----) [003] d.s3 24572.411733: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20993 FinalizerDaemon-13126 (13122) [001] d..1 24572.411734: sched_waking: comm=main pid=13122 prio=120 target_cpu=004
20994          <idle>-0     (-----) [000] .n.1 24572.411737: cpu_idle: state=4294967295 cpu_id=0
20995          <idle>-0     (-----) [000] d..2 24572.411748: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=13128 next_prio=120
20996          <idle>-0     (-----) [003] d.s4 24572.411777: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
20997          <idle>-0     (-----) [003] dns4 24572.411784: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
20998          <idle>-0     (-----) [003] .n.1 24572.411794: cpu_idle: state=4294967295 cpu_id=3
20999  HeapTaskDaemon-13128 (13122) [000] d..2 24572.411801: sched_switch: prev_comm=HeapTaskDaemon prev_pid=13128 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21000          <idle>-0     (-----) [003] d..2 24572.411809: 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
21001          <idle>-0     (-----) [000] d..1 24572.411811: cpu_idle: state=0 cpu_id=0
21002 FinalizerDaemon-13126 (13122) [001] d..2 24572.411913: sched_switch: prev_comm=FinalizerDaemon prev_pid=13126 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
21003  kworker/u16:10-23868 (23868) [003] d..2 24572.411914: 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
21004          <idle>-0     (-----) [001] d..1 24572.411932: cpu_idle: state=0 cpu_id=1
21005          <idle>-0     (-----) [003] d..1 24572.411933: cpu_idle: state=0 cpu_id=3
21006          <idle>-0     (-----) [004] d.h2 24572.412407: sched_blocked_reason: pid=13122 iowait=0 caller=do_page_fault+0x4e0/0x594
21007          <idle>-0     (-----) [004] dnh2 24572.412409: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=004
21008          <idle>-0     (-----) [004] .n.1 24572.412412: cpu_idle: state=4294967295 cpu_id=4
21009          <idle>-0     (-----) [004] d..2 24572.412417: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13122 next_prio=120
21010 Shutdown thread-13122 (13122) [004] d..2 24572.412846: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
21011          <idle>-0     (-----) [000] dnh2 24572.412872: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
21012          <idle>-0     (-----) [000] .n.1 24572.412880: cpu_idle: state=4294967295 cpu_id=0
21013          <idle>-0     (-----) [000] d..2 24572.412890: 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
21014          <idle>-0     (-----) [001] ...1 24572.413214: cpu_idle: state=4294967295 cpu_id=1
21015          <idle>-0     (-----) [001] d..1 24572.413220: cpu_idle: state=2 cpu_id=1
21016     logd.writer-563   (  555) [000] d..2 24572.413951: 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
21017          <idle>-0     (-----) [000] d..1 24572.413965: cpu_idle: state=0 cpu_id=0
21018          <idle>-0     (-----) [000] d.s2 24572.414278: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
21019          <idle>-0     (-----) [000] dns3 24572.414299: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
21020          <idle>-0     (-----) [000] .n.1 24572.414320: cpu_idle: state=4294967295 cpu_id=0
21021          <idle>-0     (-----) [000] d..2 24572.414330: 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
21022     rcu_preempt-7     (    7) [000] d..2 24572.414369: 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
21023          <idle>-0     (-----) [000] d..1 24572.414383: cpu_idle: state=0 cpu_id=0
21024 Shutdown thread-13122 (13122) [004] d.H2 24572.417605: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
21025 Shutdown thread-13122 (13122) [004] d.H3 24572.417619: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
21026 Shutdown thread-13122 (13122) [004] d.H2 24572.417621: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
21027 Shutdown thread-13122 (13122) [004] d.s2 24572.417629: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
21028          <idle>-0     (-----) [000] dnh2 24572.417642: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
21029          <idle>-0     (-----) [000] dnh2 24572.417649: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
21030          <idle>-0     (-----) [000] .n.1 24572.417656: cpu_idle: state=4294967295 cpu_id=0
21031          <idle>-0     (-----) [000] d..2 24572.417670: 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
21032         sugov:0-559   (  559) [000] .... 24572.417708: clk_set_rate: pwrcl_clk 825600000
21033         sugov:0-559   (  559) [000] .... 24572.417723: clk_set_rate: cpu3_pwrcl_clk 652800000
21034         sugov:0-559   (  559) [000] .... 24572.417732: clk_set_rate: cpu2_pwrcl_clk 652800000
21035         sugov:0-559   (  559) [000] .... 24572.417740: clk_set_rate: cpu1_pwrcl_clk 652800000
21036         sugov:0-559   (  559) [000] .... 24572.417748: clk_set_rate: cpu0_pwrcl_clk 825600000
21037         sugov:0-559   (  559) [000] .... 24572.417758: cpu_frequency: state=825600 cpu_id=0
21038         sugov:0-559   (  559) [000] .... 24572.417786: cpu_frequency: state=825600 cpu_id=1
21039         sugov:0-559   (  559) [000] .... 24572.417791: cpu_frequency: state=825600 cpu_id=2
21040          <idle>-0     (-----) [007] .n.1 24572.417793: cpu_idle: state=4294967295 cpu_id=7
21041         sugov:0-559   (  559) [000] .... 24572.417795: cpu_frequency: state=825600 cpu_id=3
21042          <idle>-0     (-----) [007] d..2 24572.417802: 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
21043         sugov:0-559   (  559) [000] d..2 24572.417814: 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
21044         sugov:4-560   (  560) [007] .... 24572.417818: clk_set_rate: perfcl_clk 2553600000
21045         sugov:4-560   (  560) [007] .... 24572.417819: clk_set_rate: cpu7_perfcl_clk 2803200000
21046     rcu_preempt-7     (    7) [000] d..2 24572.417820: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
21047         sugov:4-560   (  560) [007] .... 24572.417824: clk_set_rate: cpu6_perfcl_clk 2803200000
21048         sugov:4-560   (  560) [007] .... 24572.417828: clk_set_rate: cpu5_perfcl_clk 2803200000
21049         sugov:4-560   (  560) [007] .... 24572.417832: clk_set_rate: cpu4_perfcl_clk 2553600000
21050         sugov:4-560   (  560) [007] .... 24572.417836: cpu_frequency: state=2553600 cpu_id=4
21051         sugov:4-560   (  560) [007] .... 24572.417843: cpu_frequency: state=2553600 cpu_id=5
21052         sugov:4-560   (  560) [007] .... 24572.417844: cpu_frequency: state=2553600 cpu_id=6
21053         sugov:4-560   (  560) [007] .... 24572.417845: cpu_frequency: state=2553600 cpu_id=7
21054         sugov:4-560   (  560) [007] d..2 24572.417859: 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
21055     rcu_preempt-7     (    7) [000] d..3 24572.417862: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
21056          <idle>-0     (-----) [007] d..1 24572.417864: cpu_idle: state=2 cpu_id=7
21057     rcu_preempt-7     (    7) [000] d..2 24572.417877: 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
21058         rcuop/0-10    (   10) [000] d..2 24572.417901: 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
21059          <idle>-0     (-----) [000] d..1 24572.417914: cpu_idle: state=0 cpu_id=0
21060          <idle>-0     (-----) [003] ...1 24572.417937: cpu_idle: state=4294967295 cpu_id=3
21061          <idle>-0     (-----) [003] d..1 24572.417942: cpu_idle: state=2 cpu_id=3
21062 Shutdown thread-13122 (13122) [004] d.s2 24572.420892: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21063          <idle>-0     (-----) [000] dnh2 24572.420918: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
21064          <idle>-0     (-----) [000] .n.1 24572.420925: cpu_idle: state=4294967295 cpu_id=0
21065          <idle>-0     (-----) [000] d..2 24572.420936: 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
21066  kworker/u16:10-23868 (23868) [000] d..2 24572.421181: 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
21067          <idle>-0     (-----) [000] d..1 24572.421190: cpu_idle: state=0 cpu_id=0
21068          <idle>-0     (-----) [003] d.s3 24572.421341: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
21069          <idle>-0     (-----) [003] d.s4 24572.421355: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
21070          <idle>-0     (-----) [003] d.s4 24572.421365: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
21071          <idle>-0     (-----) [000] .n.1 24572.421371: cpu_idle: state=4294967295 cpu_id=0
21072          <idle>-0     (-----) [003] ...1 24572.421376: cpu_idle: state=4294967295 cpu_id=3
21073          <idle>-0     (-----) [000] d..2 24572.421380: 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
21074          <idle>-0     (-----) [003] d..1 24572.421383: cpu_idle: state=0 cpu_id=3
21075  kworker/u16:10-23868 (23868) [000] .... 24572.421431: clk_set_rate: l3_cluster1_vote_clk 1401600000
21076  kworker/u16:10-23868 (23868) [000] .... 24572.421437: clk_set_rate: l3_clk 1401600000
21077  kworker/u16:10-23868 (23868) [000] d..2 24572.421626: 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
21078          <idle>-0     (-----) [000] d..1 24572.421635: cpu_idle: state=0 cpu_id=0
21079          <idle>-0     (-----) [003] d.s3 24572.421648: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
21080          <idle>-0     (-----) [003] d.s4 24572.421656: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
21081          <idle>-0     (-----) [003] d.s4 24572.421663: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
21082          <idle>-0     (-----) [000] .n.1 24572.421669: cpu_idle: state=4294967295 cpu_id=0
21083          <idle>-0     (-----) [003] ...1 24572.421672: cpu_idle: state=4294967295 cpu_id=3
21084          <idle>-0     (-----) [003] d..1 24572.421677: cpu_idle: state=0 cpu_id=3
21085          <idle>-0     (-----) [000] d..2 24572.421678: 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
21086  kworker/u16:10-23868 (23868) [000] d..2 24572.421705: 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
21087          <idle>-0     (-----) [000] d..1 24572.421713: cpu_idle: state=0 cpu_id=0
21088 Shutdown thread-13122 (13122) [004] d.s2 24572.424222: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
21089          <idle>-0     (-----) [003] d.s4 24572.424246: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
21090          <idle>-0     (-----) [000] dnH2 24572.424248: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
21091          <idle>-0     (-----) [000] dns2 24572.424254: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
21092          <idle>-0     (-----) [003] dns5 24572.424260: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
21093          <idle>-0     (-----) [003] .n.1 24572.424283: cpu_idle: state=4294967295 cpu_id=3
21094          <idle>-0     (-----) [000] dns3 24572.424291: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
21095          <idle>-0     (-----) [003] d..2 24572.424300: 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
21096          <idle>-0     (-----) [000] .n.1 24572.424313: cpu_idle: state=4294967295 cpu_id=0
21097          <idle>-0     (-----) [000] d..2 24572.424322: 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
21098     kworker/3:1-12662 (12662) [003] d..3 24572.424356: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
21099          <idle>-0     (-----) [007] ...1 24572.424398: cpu_idle: state=4294967295 cpu_id=7
21100     kworker/3:1-12662 (12662) [003] d..4 24572.424400: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
21101          <idle>-0     (-----) [007] d..1 24572.424401: cpu_idle: state=2 cpu_id=7
21102     kworker/3:1-12662 (12662) [003] d..3 24572.424411: sched_waking: comm=kworker/3:1H pid=697 prio=100 target_cpu=003
21103     kworker/3:1-12662 (12662) [003] dn.4 24572.424424: sched_wakeup: comm=kworker/3:1H pid=697 prio=100 target_cpu=003
21104     kworker/3:1-12662 (12662) [003] d..2 24572.424433: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=R+ ==> next_comm=kworker/3:1H next_pid=697 next_prio=100
21105<...>-697 ( 697) [003] d..2 24572.424455: 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
21106     kworker/3:1-12662 (12662) [003] d..2 24572.424465: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
21107  kworker/u16:10-23868 (23868) [000] d..2 24572.424494: 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
21108  kworker/u16:15-18488 (18488) [003] d.s4 24572.424496: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
21109  kworker/u16:15-18488 (18488) [003] d.s5 24572.424510: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
21110  kworker/u16:15-18488 (18488) [003] d.s5 24572.424517: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
21111     rcu_preempt-7     (    7) [000] d..2 24572.424525: 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
21112  kworker/u16:10-23868 (23868) [000] d..2 24572.424549: 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
21113          <idle>-0     (-----) [000] d..1 24572.424563: cpu_idle: state=2 cpu_id=0
21114  kworker/u16:15-18488 (18488) [003] d..2 24572.424752: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
21115          <idle>-0     (-----) [003] d..1 24572.424763: cpu_idle: state=0 cpu_id=3
21116          <idle>-0     (-----) [003] d.s3 24572.424818: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
21117          <idle>-0     (-----) [003] d.s4 24572.424831: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
21118          <idle>-0     (-----) [003] dns4 24572.424836: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
21119          <idle>-0     (-----) [003] .n.1 24572.424843: cpu_idle: state=4294967295 cpu_id=3
21120          <idle>-0     (-----) [003] d..2 24572.424851: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
21121  kworker/u16:15-18488 (18488) [003] d..2 24572.424957: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
21122          <idle>-0     (-----) [003] d.s4 24572.424988: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
21123          <idle>-0     (-----) [003] d.s5 24572.424995: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
21124          <idle>-0     (-----) [003] dns5 24572.424999: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
21125          <idle>-0     (-----) [003] d..2 24572.425011: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
21126  kworker/u16:15-18488 (18488) [003] d..1 24572.425033: clk_enable: gcc_ufs_phy_axi_clk_src
21127  kworker/u16:15-18488 (18488) [003] d..1 24572.425051: clk_enable: gcc_ufs_phy_axi_clk
21128  kworker/u16:15-18488 (18488) [003] d..1 24572.425060: clk_enable: gcc_ufs_phy_axi_hw_ctl_clk
21129  kworker/u16:15-18488 (18488) [003] d..1 24572.425069: clk_enable: gcc_aggre_ufs_phy_axi_clk
21130  kworker/u16:15-18488 (18488) [003] d..1 24572.425077: clk_enable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
21131  kworker/u16:15-18488 (18488) [003] d..1 24572.425086: clk_enable: gcc_ufs_phy_ahb_clk
21132  kworker/u16:15-18488 (18488) [003] d..1 24572.425096: clk_enable: gcc_ufs_phy_unipro_core_clk_src
21133  kworker/u16:15-18488 (18488) [003] d..1 24572.425103: clk_enable: gcc_ufs_phy_unipro_core_clk
21134  kworker/u16:15-18488 (18488) [003] d..1 24572.425109: clk_enable: gcc_ufs_phy_unipro_core_hw_ctl_clk
21135  kworker/u16:15-18488 (18488) [003] d..1 24572.425118: clk_enable: gcc_ufs_phy_ice_core_clk_src
21136  kworker/u16:15-18488 (18488) [003] d..1 24572.425124: clk_enable: gcc_ufs_phy_ice_core_clk
21137  kworker/u16:15-18488 (18488) [003] d..1 24572.425130: clk_enable: gcc_ufs_phy_ice_core_hw_ctl_clk
21138  kworker/u16:15-18488 (18488) [003] d..1 24572.425145: clk_enable: gcc_ufs_mem_clkref_clk
21139  kworker/u16:15-18488 (18488) [003] d..1 24572.425154: clk_enable: gcc_ufs_phy_phy_aux_clk_src
21140  kworker/u16:15-18488 (18488) [003] d..1 24572.425160: clk_enable: gcc_ufs_phy_phy_aux_clk
21141  kworker/u16:15-18488 (18488) [003] d..1 24572.425166: clk_enable: gcc_ufs_phy_phy_aux_hw_ctl_clk
21142  kworker/u16:15-18488 (18488) [003] d..3 24572.425207: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
21143  kworker/u16:15-18488 (18488) [003] d..4 24572.425221: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
21144  kworker/u16:15-18488 (18488) [003] d..2 24572.425309: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21145          <idle>-0     (-----) [003] d..1 24572.425318: cpu_idle: state=0 cpu_id=3
21146          <idle>-0     (-----) [000] .n.1 24572.425331: cpu_idle: state=4294967295 cpu_id=0
21147          <idle>-0     (-----) [000] d..2 24572.425350: 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
21148  kworker/u16:10-23868 (23868) [000] d..2 24572.425379: 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
21149          <idle>-0     (-----) [000] d..1 24572.425392: cpu_idle: state=0 cpu_id=0
21150          <idle>-0     (-----) [001] ...1 24572.425410: cpu_idle: state=4294967295 cpu_id=1
21151          <idle>-0     (-----) [001] d..1 24572.425422: cpu_idle: state=0 cpu_id=1
21152          <idle>-0     (-----) [002] ...1 24572.425442: cpu_idle: state=4294967295 cpu_id=2
21153          <idle>-0     (-----) [002] d..1 24572.425454: cpu_idle: state=0 cpu_id=2
21154          <idle>-0     (-----) [001] d.h4 24572.426053: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
21155          <idle>-0     (-----) [001] d.h5 24572.426072: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
21156          <idle>-0     (-----) [000] .n.1 24572.426077: cpu_idle: state=4294967295 cpu_id=0
21157          <idle>-0     (-----) [000] d..2 24572.426089: 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
21158          <idle>-0     (-----) [001] d.s4 24572.426102: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
21159          <idle>-0     (-----) [001] d.s5 24572.426110: sched_blocked_reason: pid=12662 iowait=1 caller=blk_execute_rq+0xc0/0x118
21160  kworker/u16:10-23868 (23868) [000] d..2 24572.426113: 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
21161          <idle>-0     (-----) [001] d.s5 24572.426118: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
21162          <idle>-0     (-----) [000] d..1 24572.426122: cpu_idle: state=0 cpu_id=0
21163          <idle>-0     (-----) [003] .n.1 24572.426124: cpu_idle: state=4294967295 cpu_id=3
21164          <idle>-0     (-----) [003] d..2 24572.426135: 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
21165          <idle>-0     (-----) [001] ...1 24572.426137: cpu_idle: state=4294967295 cpu_id=1
21166          <idle>-0     (-----) [001] d..1 24572.426142: cpu_idle: state=0 cpu_id=1
21167     kworker/3:1-12662 (12662) [003] d..2 24572.426205: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
21168          <idle>-0     (-----) [001] d.h4 24572.426211: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
21169          <idle>-0     (-----) [003] d..1 24572.426213: cpu_idle: state=0 cpu_id=3
21170          <idle>-0     (-----) [001] d.h5 24572.426218: sched_blocked_reason: pid=12662 iowait=0 caller=ufshcd_exec_dev_cmd+0x3a4/0x74c
21171          <idle>-0     (-----) [001] d.h5 24572.426226: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
21172          <idle>-0     (-----) [003] .n.1 24572.426231: cpu_idle: state=4294967295 cpu_id=3
21173          <idle>-0     (-----) [001] ...1 24572.426237: cpu_idle: state=4294967295 cpu_id=1
21174          <idle>-0     (-----) [003] d..2 24572.426240: 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
21175          <idle>-0     (-----) [001] d..1 24572.426245: cpu_idle: state=0 cpu_id=1
21176     kworker/3:1-12662 (12662) [003] d..3 24572.426267: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
21177     kworker/3:1-12662 (12662) [003] d..4 24572.426305: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21178     kworker/3:1-12662 (12662) [003] d..2 24572.426323: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
21179  kworker/u16:10-23868 (23868) [003] d..2 24572.426345: 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
21180          <idle>-0     (-----) [003] d..1 24572.426353: cpu_idle: state=0 cpu_id=3
21181          <idle>-0     (-----) [001] d.h4 24572.426363: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21182          <idle>-0     (-----) [001] d.h5 24572.426377: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21183          <idle>-0     (-----) [003] .n.1 24572.426383: cpu_idle: state=4294967295 cpu_id=3
21184          <idle>-0     (-----) [001] d.s4 24572.426391: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
21185          <idle>-0     (-----) [003] d..2 24572.426392: 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
21186          <idle>-0     (-----) [001] d.s5 24572.426400: sched_blocked_reason: pid=12662 iowait=1 caller=blk_execute_rq+0xc0/0x118
21187          <idle>-0     (-----) [001] d.s5 24572.426405: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
21188  kworker/u16:10-23868 (23868) [003] d..2 24572.426415: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
21189          <idle>-0     (-----) [001] ...1 24572.426431: cpu_idle: state=4294967295 cpu_id=1
21190          <idle>-0     (-----) [001] d..1 24572.426436: cpu_idle: state=0 cpu_id=1
21191     kworker/3:1-12662 (12662) [003] d..2 24572.426454: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
21192          <idle>-0     (-----) [003] d..1 24572.426461: cpu_idle: state=0 cpu_id=3
21193          <idle>-0     (-----) [001] d.h4 24572.426462: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
21194          <idle>-0     (-----) [001] d.h5 24572.426469: sched_blocked_reason: pid=12662 iowait=0 caller=ufshcd_uic_pwr_ctrl+0x3dc/0x758
21195          <idle>-0     (-----) [001] d.h5 24572.426476: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
21196          <idle>-0     (-----) [003] .n.1 24572.426481: cpu_idle: state=4294967295 cpu_id=3
21197          <idle>-0     (-----) [001] ...1 24572.426488: cpu_idle: state=4294967295 cpu_id=1
21198          <idle>-0     (-----) [003] d..2 24572.426489: 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
21199          <idle>-0     (-----) [001] d..1 24572.426494: cpu_idle: state=0 cpu_id=1
21200     kworker/3:1-12662 (12662) [003] d..2 24572.426520: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
21201          <idle>-0     (-----) [003] d..1 24572.426527: cpu_idle: state=0 cpu_id=3
21202          <idle>-0     (-----) [002] ...1 24572.426831: cpu_idle: state=4294967295 cpu_id=2
21203          <idle>-0     (-----) [002] d..1 24572.426836: cpu_idle: state=0 cpu_id=2
21204          <idle>-0     (-----) [003] d.s3 24572.427570: sched_waking: comm=kworker/3:1H pid=697 prio=100 target_cpu=003
21205          <idle>-0     (-----) [003] dns4 24572.427579: sched_wakeup: comm=kworker/3:1H pid=697 prio=100 target_cpu=003
21206          <idle>-0     (-----) [003] dns3 24572.427584: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
21207          <idle>-0     (-----) [003] dns4 24572.427615: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
21208          <idle>-0     (-----) [003] .n.1 24572.427624: cpu_idle: state=4294967295 cpu_id=3
21209          <idle>-0     (-----) [003] d..2 24572.427632: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1H next_pid=697 next_prio=100
21210<...>-697 ( 697) [003] d..2 24572.427645: sched_switch: prev_comm=kworker/3:1H prev_pid=697 prev_prio=100 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
21211     rcu_preempt-7     (    7) [003] d..2 24572.427652: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
21212     rcu_preempt-7     (    7) [003] d..3 24572.427686: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
21213          <idle>-0     (-----) [001] ...1 24572.427698: cpu_idle: state=4294967295 cpu_id=1
21214     rcu_preempt-7     (    7) [003] d..2 24572.427699: 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
21215          <idle>-0     (-----) [001] d..1 24572.427702: cpu_idle: state=0 cpu_id=1
21216         rcuop/4-45    (   45) [003] d..2 24572.427766: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21217          <idle>-0     (-----) [003] d..1 24572.427777: cpu_idle: state=0 cpu_id=3
21218          <idle>-0     (-----) [003] d.h2 24572.428615: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
21219          <idle>-0     (-----) [003] d.h3 24572.428622: sched_blocked_reason: pid=12662 iowait=0 caller=ufshcd_vreg_set_lpm+0x64/0x248
21220          <idle>-0     (-----) [003] dnh3 24572.428626: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
21221          <idle>-0     (-----) [003] .n.1 24572.428634: cpu_idle: state=4294967295 cpu_id=3
21222          <idle>-0     (-----) [003] d..2 24572.428644: 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
21223     kworker/3:1-12662 (12662) [003] d..1 24572.428874: clk_disable: gcc_ufs_phy_phy_aux_hw_ctl_clk
21224     kworker/3:1-12662 (12662) [003] d..1 24572.428882: clk_disable: gcc_ufs_phy_phy_aux_clk
21225     kworker/3:1-12662 (12662) [003] d..1 24572.428890: clk_disable: gcc_ufs_phy_phy_aux_clk_src
21226     kworker/3:1-12662 (12662) [003] d..1 24572.428898: clk_disable: gcc_ufs_mem_clkref_clk
21227     kworker/3:1-12662 (12662) [003] d..1 24572.428930: clk_disable: gcc_ufs_phy_axi_hw_ctl_clk
21228     kworker/3:1-12662 (12662) [003] d..1 24572.428934: clk_disable: gcc_ufs_phy_axi_clk
21229     kworker/3:1-12662 (12662) [003] d..1 24572.428942: clk_disable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
21230     kworker/3:1-12662 (12662) [003] d..1 24572.428946: clk_disable: gcc_aggre_ufs_phy_axi_clk
21231     kworker/3:1-12662 (12662) [003] d..1 24572.428952: clk_disable: gcc_ufs_phy_axi_clk_src
21232     kworker/3:1-12662 (12662) [003] d..1 24572.428957: clk_disable: gcc_ufs_phy_ahb_clk
21233     kworker/3:1-12662 (12662) [003] d..1 24572.428965: clk_disable: gcc_ufs_phy_unipro_core_hw_ctl_clk
21234     kworker/3:1-12662 (12662) [003] d..1 24572.428969: clk_disable: gcc_ufs_phy_unipro_core_clk
21235     kworker/3:1-12662 (12662) [003] d..1 24572.428975: clk_disable: gcc_ufs_phy_unipro_core_clk_src
21236     kworker/3:1-12662 (12662) [003] d..1 24572.428980: clk_disable: gcc_ufs_phy_ice_core_hw_ctl_clk
21237     kworker/3:1-12662 (12662) [003] d..1 24572.428984: clk_disable: gcc_ufs_phy_ice_core_clk
21238     kworker/3:1-12662 (12662) [003] d..1 24572.428991: clk_disable: gcc_ufs_phy_ice_core_clk_src
21239     kworker/3:1-12662 (12662) [003] d..1 24572.429078: clk_disable: gcc_ufs_phy_tx_symbol_0_clk
21240     kworker/3:1-12662 (12662) [003] d..1 24572.429586: clk_disable: gcc_ufs_phy_rx_symbol_0_clk
21241     kworker/3:1-12662 (12662) [003] d..1 24572.430091: clk_disable: gcc_ufs_phy_rx_symbol_1_clk
21242     kworker/3:1-12662 (12662) [003] d..2 24572.430780: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
21243          <idle>-0     (-----) [003] d.s4 24572.430822: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
21244          <idle>-0     (-----) [003] d.s5 24572.430829: sched_blocked_reason: pid=12662 iowait=0 caller=wait_for_tx_done+0x34/0x120
21245          <idle>-0     (-----) [003] dns5 24572.430834: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
21246          <idle>-0     (-----) [003] d..2 24572.430846: 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
21247 Shutdown thread-13122 (13122) [004] d.s4 24572.430892: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21248 Shutdown thread-13122 (13122) [004] d.s4 24572.430907: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
21249     kworker/3:1-12662 (12662) [003] d.H2 24572.430912: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21250 Shutdown thread-13122 (13122) [004] dns5 24572.430912: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
21251 Shutdown thread-13122 (13122) [004] d..2 24572.430918: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=R+ ==> next_comm=kworker/4:0 next_pid=24269 next_prio=120
21252     kworker/3:1-12662 (12662) [003] d..2 24572.430935: 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
21253     kworker/4:0-24269 (24269) [004] d..2 24572.430947: sched_switch: prev_comm=kworker/4:0 prev_pid=24269 prev_prio=120 prev_state=S ==> next_comm=main next_pid=13122 next_prio=120
21254          <idle>-0     (-----) [000] ...1 24572.430953: cpu_idle: state=4294967295 cpu_id=0
21255          <idle>-0     (-----) [000] d..1 24572.430963: cpu_idle: state=0 cpu_id=0
21256  kworker/u16:10-23868 (23868) [003] d..2 24572.431090: 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
21257          <idle>-0     (-----) [003] d.s4 24572.431125: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21258          <idle>-0     (-----) [003] d.s5 24572.431139: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
21259          <idle>-0     (-----) [003] dns5 24572.431143: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21260          <idle>-0     (-----) [003] d..2 24572.431155: 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
21261  kworker/u16:10-23868 (23868) [003] .... 24572.431209: clk_set_rate: l3_cluster1_vote_clk 1478400000
21262  kworker/u16:10-23868 (23868) [003] .... 24572.431214: clk_set_rate: l3_clk 1478400000
21263  kworker/u16:10-23868 (23868) [003] d..2 24572.431284: 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
21264          <idle>-0     (-----) [003] d.s4 24572.431313: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21265          <idle>-0     (-----) [003] d.s5 24572.431321: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
21266          <idle>-0     (-----) [003] dns5 24572.431326: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21267          <idle>-0     (-----) [003] d..2 24572.431337: 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
21268  kworker/u16:10-23868 (23868) [003] .... 24572.431412: clk_set_rate: l3_cluster0_vote_clk 403200000
21269  kworker/u16:10-23868 (23868) [003] d..2 24572.431434: 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
21270          <idle>-0     (-----) [003] d..1 24572.431445: cpu_idle: state=0 cpu_id=3
21271          <idle>-0     (-----) [003] d.s2 24572.434237: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
21272          <idle>-0     (-----) [003] dns3 24572.434253: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
21273          <idle>-0     (-----) [003] dns3 24572.434257: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
21274          <idle>-0     (-----) [003] dns4 24572.434264: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
21275          <idle>-0     (-----) [003] .n.1 24572.434277: cpu_idle: state=4294967295 cpu_id=3
21276          <idle>-0     (-----) [003] d..2 24572.434286: 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
21277     rcu_preempt-7     (    7) [003] d..2 24572.434298: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
21278     rcu_preempt-7     (    7) [003] d..3 24572.434337: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
21279     rcu_preempt-7     (    7) [003] d..2 24572.434353: 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
21280         rcuop/0-10    (   10) [003] d..2 24572.434369: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
21281          <idle>-0     (-----) [000] ...1 24572.434393: cpu_idle: state=4294967295 cpu_id=0
21282          <idle>-0     (-----) [001] ...1 24572.434395: cpu_idle: state=4294967295 cpu_id=1
21283          <idle>-0     (-----) [002] ...1 24572.434397: cpu_idle: state=4294967295 cpu_id=2
21284          <idle>-0     (-----) [000] d..1 24572.434400: cpu_idle: state=0 cpu_id=0
21285          <idle>-0     (-----) [001] d..1 24572.434401: cpu_idle: state=0 cpu_id=1
21286          <idle>-0     (-----) [002] d..1 24572.434403: cpu_idle: state=2 cpu_id=2
21287     kworker/3:1-12662 (12662) [003] d..2 24572.434414: 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
21288          <idle>-0     (-----) [003] d..1 24572.434427: cpu_idle: state=0 cpu_id=3
21289          <idle>-0     (-----) [000] .n.1 24572.435058: cpu_idle: state=4294967295 cpu_id=0
21290          <idle>-0     (-----) [000] d..2 24572.435069: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13129 next_prio=120
21291 Shutdown thread-13122 (13122) [004] d..2 24572.435087: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
21292          <idle>-0     (-----) [001] dnh2 24572.435111: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
21293          <idle>-0     (-----) [001] .n.1 24572.435117: cpu_idle: state=4294967295 cpu_id=1
21294          <idle>-0     (-----) [001] d..2 24572.435130: 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
21295  Binder:13122_1-13129 (13122) [000] d..2 24572.435194: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
21296  Binder:13122_1-13129 (13122) [000] d..3 24572.435212: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
21297          <idle>-0     (-----) [003] .n.1 24572.435218: cpu_idle: state=4294967295 cpu_id=3
21298          <idle>-0     (-----) [003] d..2 24572.435229: 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
21299         rcuop/0-10    (   10) [003] d..2 24572.435248: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21300          <idle>-0     (-----) [003] d..1 24572.435257: cpu_idle: state=0 cpu_id=3
21301     logd.writer-563   (  555) [001] d..2 24572.435274: 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
21302          <idle>-0     (-----) [001] d..1 24572.435289: cpu_idle: state=0 cpu_id=1
21303 Shutdown thread-13122 (13122) [004] .... 24572.435458: binder_transaction: transaction=1668740 dest_node=3 dest_proc=587 dest_thread=0 reply=0 flags=0x10 code=0x5f504e47
21304 Shutdown thread-13122 (13122) [004] d..4 24572.435466: sched_waking: comm=servicemanager pid=587 prio=120 target_cpu=000
21305 Shutdown thread-13122 (13122) [004] d..2 24572.435492: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
21306          <idle>-0     (-----) [001] dnh2 24572.435492: sched_wakeup: comm=servicemanager pid=587 prio=120 target_cpu=001
21307          <idle>-0     (-----) [001] .n.1 24572.435499: cpu_idle: state=4294967295 cpu_id=1
21308          <idle>-0     (-----) [004] d..1 24572.435503: cpu_idle: state=0 cpu_id=4
21309          <idle>-0     (-----) [001] d..2 24572.435510: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=servicemanager next_pid=587 next_prio=120
21310<...>-587 ( 587) [001] .... 24572.435525: binder_transaction_received: transaction=1668740
21311  Binder:13122_1-13129 (13122) [000] .... 24572.435571: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13129 comm=main
21312<...>-587 ( 587) [001] .... 24572.435575: binder_transaction: transaction=1668741 dest_node=0 dest_proc=13122 dest_thread=13122 reply=1 flags=0x0 code=0x0
21313<...>-587 ( 587) [001] d..2 24572.435592: sched_waking: comm=main pid=13122 prio=120 target_cpu=004
21314          <idle>-0     (-----) [004] dnh2 24572.435616: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=004
21315          <idle>-0     (-----) [004] .n.1 24572.435619: cpu_idle: state=4294967295 cpu_id=4
21316          <idle>-0     (-----) [004] d..2 24572.435623: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13122 next_prio=120
21317 Shutdown thread-13122 (13122) [004] .... 24572.435625: binder_transaction_received: transaction=1668741
21318<...>-587 ( 587) [001] d..2 24572.435644: sched_switch: prev_comm=servicemanager prev_pid=587 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
21319          <idle>-0     (-----) [001] d..1 24572.435658: cpu_idle: state=0 cpu_id=1
21320 Shutdown thread-13122 (13122) [004] d..2 24572.435714: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
21321  Binder:13122_1-13129 (13122) [000] d..1 24572.435718: sched_waking: comm=main pid=13122 prio=120 target_cpu=004
21322          <idle>-0     (-----) [004] d..1 24572.435719: cpu_idle: state=0 cpu_id=4
21323          <idle>-0     (-----) [004] d.h2 24572.435736: sched_blocked_reason: pid=13122 iowait=0 caller=do_page_fault+0x4e0/0x594
21324          <idle>-0     (-----) [004] dnh2 24572.435737: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=004
21325          <idle>-0     (-----) [004] .n.1 24572.435739: cpu_idle: state=4294967295 cpu_id=4
21326          <idle>-0     (-----) [004] d..2 24572.435743: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13122 next_prio=120
21327 Shutdown thread-13122 (13122) [004] .... 24572.435806: binder_transaction: transaction=1668743 dest_node=3 dest_proc=587 dest_thread=0 reply=0 flags=0x10 code=0x1
21328 Shutdown thread-13122 (13122) [004] d..4 24572.435809: sched_waking: comm=servicemanager pid=587 prio=120 target_cpu=001
21329 Shutdown thread-13122 (13122) [004] d..2 24572.435821: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
21330          <idle>-0     (-----) [004] d..1 24572.435826: cpu_idle: state=0 cpu_id=4
21331          <idle>-0     (-----) [001] dnh2 24572.435829: sched_wakeup: comm=servicemanager pid=587 prio=120 target_cpu=001
21332          <idle>-0     (-----) [001] .n.1 24572.435836: cpu_idle: state=4294967295 cpu_id=1
21333          <idle>-0     (-----) [001] d..2 24572.435845: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=servicemanager next_pid=587 next_prio=120
21334<...>-587 ( 587) [001] .... 24572.435850: binder_transaction_received: transaction=1668743
21335<...>-587 ( 587) [001] .... 24572.436153: binder_transaction: transaction=1668744 dest_node=0 dest_proc=13122 dest_thread=13122 reply=1 flags=0x0 code=0x0
21336  Binder:13122_1-13129 (13122) [000] d..2 24572.436171: sched_switch: prev_comm=Binder:13122_1 prev_pid=13129 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21337<...>-587 ( 587) [001] d..2 24572.436174: sched_waking: comm=main pid=13122 prio=120 target_cpu=004
21338          <idle>-0     (-----) [004] dnh2 24572.436190: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=004
21339          <idle>-0     (-----) [004] .n.1 24572.436193: cpu_idle: state=4294967295 cpu_id=4
21340          <idle>-0     (-----) [000] d..1 24572.436193: cpu_idle: state=0 cpu_id=0
21341          <idle>-0     (-----) [004] d..2 24572.436196: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13122 next_prio=120
21342 Shutdown thread-13122 (13122) [004] .... 24572.436198: binder_transaction_received: transaction=1668744
21343<...>-587 ( 587) [001] d..2 24572.436218: sched_switch: prev_comm=servicemanager prev_pid=587 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
21344          <idle>-0     (-----) [001] d..1 24572.436232: cpu_idle: state=0 cpu_id=1
21345 Shutdown thread-13122 (13122) [004] .... 24572.436270: binder_transaction: transaction=1668746 dest_node=3 dest_proc=587 dest_thread=0 reply=0 flags=0x10 code=0x1
21346 Shutdown thread-13122 (13122) [004] d..4 24572.436273: sched_waking: comm=servicemanager pid=587 prio=120 target_cpu=001
21347 Shutdown thread-13122 (13122) [004] d..2 24572.436285: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
21348          <idle>-0     (-----) [004] d..1 24572.436289: cpu_idle: state=2 cpu_id=4
21349          <idle>-0     (-----) [001] dnh2 24572.436292: sched_wakeup: comm=servicemanager pid=587 prio=120 target_cpu=001
21350          <idle>-0     (-----) [001] .n.1 24572.436299: cpu_idle: state=4294967295 cpu_id=1
21351          <idle>-0     (-----) [001] d..2 24572.436309: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=servicemanager next_pid=587 next_prio=120
21352<...>-587 ( 587) [001] .... 24572.436314: binder_transaction_received: transaction=1668746
21353          <idle>-0     (-----) [002] .n.1 24572.436348: cpu_idle: state=4294967295 cpu_id=2
21354          <idle>-0     (-----) [002] d..2 24572.436367: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13122_1 next_pid=13130 next_prio=120
21355<...>-587 ( 587) [001] .... 24572.436409: binder_transaction: transaction=1668747 dest_node=0 dest_proc=13122 dest_thread=13122 reply=1 flags=0x0 code=0x0
21356<...>-587 ( 587) [001] d..2 24572.436421: sched_waking: comm=main pid=13122 prio=120 target_cpu=004
21357           <...>-13130 (-----) [002] .... 24572.436431: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13130 comm=Binder:13122_1
21358<...>-587 ( 587) [001] d..2 24572.436463: sched_switch: prev_comm=servicemanager prev_pid=587 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
21359          <idle>-0     (-----) [001] d..1 24572.436477: cpu_idle: state=0 cpu_id=1
21360           <...>-13130 (-----) [002] d..2 24572.436512: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
21361           <...>-13130 (-----) [002] d..3 24572.436543: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
21362          <idle>-0     (-----) [000] .n.1 24572.436550: cpu_idle: state=4294967295 cpu_id=0
21363          <idle>-0     (-----) [000] d..2 24572.436562: 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
21364         rcuop/2-29    (   29) [000] d..2 24572.436585: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21365          <idle>-0     (-----) [000] d..1 24572.436596: cpu_idle: state=2 cpu_id=0
21366           <...>-13130 (-----) [002] d..2 24572.436841: sched_switch: prev_comm=Binder:13122_2 prev_pid=13130 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21367          <idle>-0     (-----) [002] d..1 24572.436864: cpu_idle: state=0 cpu_id=2
21368          <idle>-0     (-----) [004] dnh2 24572.437072: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=004
21369          <idle>-0     (-----) [004] .n.1 24572.437075: cpu_idle: state=4294967295 cpu_id=4
21370          <idle>-0     (-----) [004] d..2 24572.437080: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13122 next_prio=120
21371 Shutdown thread-13122 (13122) [004] .... 24572.437083: binder_transaction_received: transaction=1668747
21372 Shutdown thread-13122 (13122) [004] .... 24572.437266: binder_transaction: transaction=1668749 dest_node=3 dest_proc=587 dest_thread=0 reply=0 flags=0x10 code=0x1
21373 Shutdown thread-13122 (13122) [004] d..4 24572.437269: sched_waking: comm=servicemanager pid=587 prio=120 target_cpu=001
21374 Shutdown thread-13122 (13122) [004] d..2 24572.437283: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
21375          <idle>-0     (-----) [004] d..1 24572.437288: cpu_idle: state=2 cpu_id=4
21376          <idle>-0     (-----) [001] dnh2 24572.437289: sched_wakeup: comm=servicemanager pid=587 prio=120 target_cpu=001
21377          <idle>-0     (-----) [001] .n.1 24572.437296: cpu_idle: state=4294967295 cpu_id=1
21378          <idle>-0     (-----) [001] d..2 24572.437305: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=servicemanager next_pid=587 next_prio=120
21379<...>-587 ( 587) [001] .... 24572.437310: binder_transaction_received: transaction=1668749
21380<...>-587 ( 587) [001] .... 24572.437410: binder_transaction: transaction=1668750 dest_node=0 dest_proc=13122 dest_thread=13122 reply=1 flags=0x0 code=0x0
21381<...>-587 ( 587) [001] d..2 24572.437422: sched_waking: comm=main pid=13122 prio=120 target_cpu=004
21382<...>-587 ( 587) [001] d..2 24572.437463: sched_switch: prev_comm=servicemanager prev_pid=587 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
21383          <idle>-0     (-----) [001] d..1 24572.437477: cpu_idle: state=0 cpu_id=1
21384          <idle>-0     (-----) [004] dnh2 24572.438069: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=004
21385          <idle>-0     (-----) [004] .n.1 24572.438076: cpu_idle: state=4294967295 cpu_id=4
21386          <idle>-0     (-----) [004] dnh3 24572.438121: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
21387          <idle>-0     (-----) [004] dnh4 24572.438133: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
21388          <idle>-0     (-----) [004] dnh3 24572.438135: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
21389          <idle>-0     (-----) [004] d..2 24572.438147: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13122 next_prio=120
21390 Shutdown thread-13122 (13122) [004] .... 24572.438150: binder_transaction_received: transaction=1668750
21391          <idle>-0     (-----) [000] dnh2 24572.438264: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
21392          <idle>-0     (-----) [000] .n.1 24572.438272: cpu_idle: state=4294967295 cpu_id=0
21393          <idle>-0     (-----) [000] d..2 24572.438284: 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
21394          <idle>-0     (-----) [007] .n.1 24572.438287: cpu_idle: state=4294967295 cpu_id=7
21395          <idle>-0     (-----) [007] d..2 24572.438295: 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
21396         sugov:4-560   (  560) [007] .... 24572.438312: clk_set_rate: perfcl_clk 2803200000
21397         sugov:4-560   (  560) [007] .... 24572.438313: clk_set_rate: cpu7_perfcl_clk 2553600000
21398         sugov:4-560   (  560) [007] .... 24572.438318: clk_set_rate: cpu6_perfcl_clk 2553600000
21399         sugov:4-560   (  560) [007] .... 24572.438322: clk_set_rate: cpu5_perfcl_clk 2553600000
21400         sugov:4-560   (  560) [007] .... 24572.438326: clk_set_rate: cpu4_perfcl_clk 2803200000
21401         sugov:4-560   (  560) [007] .... 24572.438331: cpu_frequency: state=2803200 cpu_id=4
21402         sugov:4-560   (  560) [007] .... 24572.438341: cpu_frequency: state=2803200 cpu_id=5
21403         sugov:4-560   (  560) [007] .... 24572.438342: cpu_frequency: state=2803200 cpu_id=6
21404         sugov:4-560   (  560) [007] .... 24572.438343: cpu_frequency: state=2803200 cpu_id=7
21405         sugov:0-559   (  559) [000] .... 24572.438345: clk_set_rate: pwrcl_clk 748800000
21406         sugov:4-560   (  560) [007] d..2 24572.438356: 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
21407         sugov:0-559   (  559) [000] .... 24572.438357: clk_set_rate: cpu3_pwrcl_clk 825600000
21408          <idle>-0     (-----) [007] d..2 24572.438357: sched_waking: comm=ksoftirqd/7 pid=66 prio=120 target_cpu=007
21409          <idle>-0     (-----) [007] dn.3 24572.438362: sched_wakeup: comm=ksoftirqd/7 pid=66 prio=120 target_cpu=007
21410         sugov:0-559   (  559) [000] .... 24572.438365: clk_set_rate: cpu2_pwrcl_clk 825600000
21411          <idle>-0     (-----) [007] d..2 24572.438365: 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
21412         sugov:0-559   (  559) [000] .... 24572.438372: clk_set_rate: cpu1_pwrcl_clk 825600000
21413     ksoftirqd/7-66    (   66) [007] d..2 24572.438376: 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
21414         sugov:0-559   (  559) [000] .... 24572.438380: clk_set_rate: cpu0_pwrcl_clk 748800000
21415          <idle>-0     (-----) [007] d..1 24572.438380: cpu_idle: state=2 cpu_id=7
21416         sugov:0-559   (  559) [000] .... 24572.438491: cpu_frequency: state=748800 cpu_id=0
21417         sugov:0-559   (  559) [000] .... 24572.438506: cpu_frequency: state=748800 cpu_id=1
21418         sugov:0-559   (  559) [000] .... 24572.438511: cpu_frequency: state=748800 cpu_id=2
21419         sugov:0-559   (  559) [000] .... 24572.438516: cpu_frequency: state=748800 cpu_id=3
21420 Shutdown thread-13122 (13122) [004] .... 24572.438524: binder_transaction: transaction=1668752 dest_node=3 dest_proc=587 dest_thread=0 reply=0 flags=0x10 code=0x1
21421 Shutdown thread-13122 (13122) [004] d..4 24572.438527: sched_waking: comm=servicemanager pid=587 prio=120 target_cpu=001
21422         sugov:0-559   (  559) [000] d..2 24572.438546: 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
21423 Shutdown thread-13122 (13122) [004] d..2 24572.438556: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
21424          <idle>-0     (-----) [000] dnh3 24572.438560: sched_wakeup: comm=servicemanager pid=587 prio=120 target_cpu=000
21425          <idle>-0     (-----) [004] d..1 24572.438562: cpu_idle: state=2 cpu_id=4
21426          <idle>-0     (-----) [000] d..2 24572.438572: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=servicemanager next_pid=587 next_prio=120
21427<...>-587 ( 587) [000] .... 24572.438581: binder_transaction_received: transaction=1668752
21428<...>-587 ( 587) [000] .... 24572.438702: binder_transaction: transaction=1668753 dest_node=0 dest_proc=13122 dest_thread=13122 reply=1 flags=0x0 code=0x0
21429<...>-587 ( 587) [000] d..2 24572.438714: sched_waking: comm=main pid=13122 prio=120 target_cpu=004
21430<...>-587 ( 587) [000] d..2 24572.438768: sched_switch: prev_comm=servicemanager prev_pid=587 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21431          <idle>-0     (-----) [000] d..1 24572.438787: cpu_idle: state=0 cpu_id=0
21432          <idle>-0     (-----) [001] ...1 24572.438875: cpu_idle: state=4294967295 cpu_id=1
21433          <idle>-0     (-----) [001] d..1 24572.438882: cpu_idle: state=2 cpu_id=1
21434          <idle>-0     (-----) [004] dnh2 24572.439366: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=004
21435          <idle>-0     (-----) [004] .n.1 24572.439369: cpu_idle: state=4294967295 cpu_id=4
21436          <idle>-0     (-----) [004] d..2 24572.439373: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13122 next_prio=120
21437 Shutdown thread-13122 (13122) [004] .... 24572.439376: binder_transaction_received: transaction=1668753
21438 Shutdown thread-13122 (13122) [004] .... 24572.439426: binder_transaction: transaction=1668754 dest_node=3 dest_proc=587 dest_thread=0 reply=0 flags=0x10 code=0x1
21439 Shutdown thread-13122 (13122) [004] d..4 24572.439429: sched_waking: comm=servicemanager pid=587 prio=120 target_cpu=000
21440 Shutdown thread-13122 (13122) [004] d..2 24572.439442: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
21441          <idle>-0     (-----) [004] d..1 24572.439446: cpu_idle: state=0 cpu_id=4
21442          <idle>-0     (-----) [000] dnh2 24572.439450: sched_wakeup: comm=servicemanager pid=587 prio=120 target_cpu=000
21443          <idle>-0     (-----) [000] .n.1 24572.439458: cpu_idle: state=4294967295 cpu_id=0
21444          <idle>-0     (-----) [000] d..2 24572.439469: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=servicemanager next_pid=587 next_prio=120
21445<...>-587 ( 587) [000] .... 24572.439475: binder_transaction_received: transaction=1668754
21446<...>-587 ( 587) [000] .... 24572.439571: binder_transaction: transaction=1668755 dest_node=0 dest_proc=13122 dest_thread=13122 reply=1 flags=0x0 code=0x0
21447<...>-587 ( 587) [000] d..2 24572.439588: sched_waking: comm=main pid=13122 prio=120 target_cpu=004
21448          <idle>-0     (-----) [004] dnh2 24572.439605: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=004
21449          <idle>-0     (-----) [004] .n.1 24572.439607: cpu_idle: state=4294967295 cpu_id=4
21450          <idle>-0     (-----) [004] d..2 24572.439610: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13122 next_prio=120
21451 Shutdown thread-13122 (13122) [004] .... 24572.439613: binder_transaction_received: transaction=1668755
21452<...>-587 ( 587) [000] d..2 24572.439633: sched_switch: prev_comm=servicemanager prev_pid=587 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21453          <idle>-0     (-----) [000] d..1 24572.439649: cpu_idle: state=0 cpu_id=0
21454 Shutdown thread-13122 (13122) [004] .... 24572.439687: binder_transaction: transaction=1668757 dest_node=3 dest_proc=587 dest_thread=0 reply=0 flags=0x10 code=0x1
21455 Shutdown thread-13122 (13122) [004] d..4 24572.439690: sched_waking: comm=servicemanager pid=587 prio=120 target_cpu=000
21456 Shutdown thread-13122 (13122) [004] d..2 24572.439702: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
21457          <idle>-0     (-----) [004] d..1 24572.439707: cpu_idle: state=0 cpu_id=4
21458          <idle>-0     (-----) [000] dnh2 24572.439709: sched_wakeup: comm=servicemanager pid=587 prio=120 target_cpu=000
21459          <idle>-0     (-----) [000] .n.1 24572.439717: cpu_idle: state=4294967295 cpu_id=0
21460          <idle>-0     (-----) [000] d..2 24572.439728: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=servicemanager next_pid=587 next_prio=120
21461<...>-587 ( 587) [000] .... 24572.439734: binder_transaction_received: transaction=1668757
21462<...>-587 ( 587) [000] .... 24572.439827: binder_transaction: transaction=1668758 dest_node=0 dest_proc=13122 dest_thread=13122 reply=1 flags=0x0 code=0x0
21463<...>-587 ( 587) [000] d..2 24572.439838: sched_waking: comm=main pid=13122 prio=120 target_cpu=004
21464          <idle>-0     (-----) [004] dnh2 24572.439856: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=004
21465          <idle>-0     (-----) [004] .n.1 24572.439859: cpu_idle: state=4294967295 cpu_id=4
21466          <idle>-0     (-----) [004] d..2 24572.439862: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13122 next_prio=120
21467 Shutdown thread-13122 (13122) [004] .... 24572.439864: binder_transaction_received: transaction=1668758
21468<...>-587 ( 587) [000] d..2 24572.439884: sched_switch: prev_comm=servicemanager prev_pid=587 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21469          <idle>-0     (-----) [000] d..1 24572.439900: cpu_idle: state=0 cpu_id=0
21470 Shutdown thread-13122 (13122) [004] .... 24572.440090: binder_transaction: transaction=1668759 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x1f
21471 Shutdown thread-13122 (13122) [004] d..4 24572.440114: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
21472 Shutdown thread-13122 (13122) [004] d..2 24572.440128: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
21473          <idle>-0     (-----) [004] d..1 24572.440133: cpu_idle: state=0 cpu_id=4
21474          <idle>-0     (-----) [000] dnh2 24572.440137: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
21475          <idle>-0     (-----) [000] .n.1 24572.440145: cpu_idle: state=4294967295 cpu_id=0
21476          <idle>-0     (-----) [000] d..2 24572.440157: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
21477  Binder:23968_C-25014 (23968) [000] .... 24572.440171: binder_transaction_received: transaction=1668759
21478          <idle>-0     (-----) [003] d.s2 24572.440906: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
21479  Binder:23968_C-25014 (23968) [000] d.s2 24572.440916: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21480          <idle>-0     (-----) [003] dns3 24572.440929: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
21481  Binder:23968_C-25014 (23968) [000] d.s3 24572.440941: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21482          <idle>-0     (-----) [003] .n.1 24572.440948: cpu_idle: state=4294967295 cpu_id=3
21483          <idle>-0     (-----) [003] d..2 24572.440959: 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
21484     rcu_preempt-7     (    7) [003] d..2 24572.440977: 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
21485  kworker/u16:10-23868 (23868) [003] .... 24572.441034: clk_set_rate: l3_cluster0_vote_clk 300000000
21486          <idle>-0     (-----) [004] ...1 24572.441141: cpu_idle: state=4294967295 cpu_id=4
21487          <idle>-0     (-----) [004] d..1 24572.441142: cpu_idle: state=2 cpu_id=4
21488  kworker/u16:10-23868 (23868) [003] d..2 24572.441223: 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
21489          <idle>-0     (-----) [003] d.s4 24572.441266: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21490          <idle>-0     (-----) [003] d.s5 24572.441275: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
21491          <idle>-0     (-----) [003] dns5 24572.441280: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21492          <idle>-0     (-----) [003] d..2 24572.441293: 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
21493  kworker/u16:10-23868 (23868) [003] .... 24572.441324: clk_set_rate: l3_cluster1_vote_clk 1209600000
21494  kworker/u16:10-23868 (23868) [003] .... 24572.441330: clk_set_rate: l3_clk 1209600000
21495  Binder:23968_C-25014 (23968) [000] d..2 24572.441362: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
21496  Binder:23968_C-25014 (23968) [000] d..3 24572.441391: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
21497  kworker/u16:10-23868 (23868) [003] d..2 24572.441729: 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
21498     logd.writer-563   (  555) [003] d.s4 24572.441766: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21499     logd.writer-563   (  555) [003] d.s5 24572.441785: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
21500     logd.writer-563   (  555) [003] dns5 24572.441790: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21501     logd.writer-563   (  555) [003] d..2 24572.441802: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
21502  kworker/u16:10-23868 (23868) [003] d..2 24572.441821: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
21503     logd.writer-563   (  555) [003] d..2 24572.441927: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21504          <idle>-0     (-----) [003] d..1 24572.441942: cpu_idle: state=0 cpu_id=3
21505  Binder:23968_C-25014 (23968) [000] d..3 24572.442102: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=000
21506  Binder:23968_C-25014 (23968) [000] d..4 24572.442134: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=001
21507  Binder:23968_C-25014 (23968) [000] d..3 24572.442159: sched_waking: comm=android.bg pid=23992 prio=130 target_cpu=000
21508  Binder:23968_C-25014 (23968) [000] d..4 24572.442201: sched_wakeup: comm=android.bg pid=23992 prio=130 target_cpu=001
21509          <idle>-0     (-----) [001] .n.1 24572.442259: cpu_idle: state=4294967295 cpu_id=1
21510          <idle>-0     (-----) [001] d..2 24572.442279: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
21511  Binder:23968_C-25014 (23968) [000] d..2 24572.442339: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
21512  Binder:23968_C-25014 (23968) [000] d..3 24572.442360: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
21513<...>-23993 ( 23968) [001] d..2 24572.442375: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=android.bg next_pid=23992 next_prio=130
21514  Binder:23968_C-25014 (23968) [000] d..2 24572.442456: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=000
21515  Binder:23968_C-25014 (23968) [000] d..3 24572.442502: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=001
21516<...>-23992 ( 23968) [001] d..2 24572.442533: sched_switch: prev_comm=android.bg prev_pid=23992 prev_prio=130 prev_state=S ==> next_comm=statsd.writer next_pid=1044 next_prio=120
21517  Binder:23968_C-25014 (23968) [000] d..3 24572.442747: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=000
21518<...>-1044 ( 887) [001] d..2 24572.442785: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
21519  Binder:23968_C-25014 (23968) [000] d..4 24572.442791: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=002
21520          <idle>-0     (-----) [002] .n.1 24572.442798: cpu_idle: state=4294967295 cpu_id=2
21521          <idle>-0     (-----) [002] d..2 24572.442813: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
21522  Binder:23968_C-25014 (23968) [000] d..2 24572.442850: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=001
21523  Binder:23968_C-25014 (23968) [000] d..3 24572.442871: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=000
21524     logd.writer-563   (  555) [001] d..2 24572.442902: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=statsd.writer next_pid=1044 next_prio=120
21525<...>-23994 ( 23968) [002] d..2 24572.442905: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21526          <idle>-0     (-----) [002] d..1 24572.442923: cpu_idle: state=0 cpu_id=2
21527<...>-1044 ( 887) [001] d..2 24572.442999: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
21528          <idle>-0     (-----) [001] d..1 24572.443018: cpu_idle: state=0 cpu_id=1
21529  Binder:23968_C-25014 (23968) [000] d..3 24572.443304: sched_waking: comm=ActivityManager pid=23995 prio=118 target_cpu=001
21530  Binder:23968_C-25014 (23968) [000] d..4 24572.443332: sched_wakeup: comm=ActivityManager pid=23995 prio=118 target_cpu=001
21531          <idle>-0     (-----) [001] .n.1 24572.443340: cpu_idle: state=4294967295 cpu_id=1
21532  Binder:23968_C-25014 (23968) [000] d..1 24572.443351: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=001
21533          <idle>-0     (-----) [001] d..2 24572.443354: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23995 next_prio=118
21534  Binder:23968_C-25014 (23968) [000] d..2 24572.443382: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=002
21535          <idle>-0     (-----) [002] .n.1 24572.443390: cpu_idle: state=4294967295 cpu_id=2
21536          <idle>-0     (-----) [002] d..2 24572.443403: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
21537<...>-23993 ( 23968) [002] d..2 24572.443442: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21538          <idle>-0     (-----) [002] d..1 24572.443456: cpu_idle: state=0 cpu_id=2
21539<...>-23995 ( 23968) [001] d..1 24572.443568: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=002
21540  Binder:23968_C-25014 (23968) [000] .... 24572.443583: binder_transaction: transaction=1668764 dest_node=0 dest_proc=13122 dest_thread=13122 reply=1 flags=0x0 code=0x0
21541  Binder:23968_C-25014 (23968) [000] d..2 24572.443591: sched_waking: comm=main pid=13122 prio=120 target_cpu=004
21542<...>-23995 ( 23968) [001] d..2 24572.443593: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=002
21543          <idle>-0     (-----) [002] .n.1 24572.443598: cpu_idle: state=4294967295 cpu_id=2
21544          <idle>-0     (-----) [002] d..2 24572.443610: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
21545<...>-23994 ( 23968) [002] d..1 24572.443654: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=002
21546  Binder:23968_C-25014 (23968) [000] d..2 24572.443669: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21547<...>-23994 ( 23968) [002] d..2 24572.443681: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=003
21548          <idle>-0     (-----) [003] .n.1 24572.443688: cpu_idle: state=4294967295 cpu_id=3
21549          <idle>-0     (-----) [000] d..1 24572.443688: cpu_idle: state=0 cpu_id=0
21550          <idle>-0     (-----) [003] d..2 24572.443701: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
21551<...>-23994 ( 23968) [002] d..3 24572.443748: sched_waking: comm=android.bg pid=23992 prio=130 target_cpu=001
21552<...>-23994 ( 23968) [002] d..4 24572.443768: sched_wakeup: comm=android.bg pid=23992 prio=130 target_cpu=001
21553<...>-23994 ( 23968) [002] d..3 24572.443800: sched_waking: comm=android.fg pid=24001 prio=120 target_cpu=001
21554<...>-23994 ( 23968) [002] d..4 24572.443829: sched_wakeup: comm=android.fg pid=24001 prio=120 target_cpu=000
21555          <idle>-0     (-----) [000] .n.1 24572.443837: cpu_idle: state=4294967295 cpu_id=0
21556          <idle>-0     (-----) [000] d..2 24572.443850: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.fg next_pid=24001 next_prio=120
21557<...>-23995 ( 23968) [001] d..2 24572.443874: sched_waking: comm=main pid=23897 prio=120 target_cpu=001
21558<...>-23995 ( 23968) [001] d..3 24572.443928: sched_wakeup: comm=main pid=23897 prio=120 target_cpu=003
21559<...>-23993 ( 23968) [003] d..2 24572.443938: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=116 prev_state=R+ ==> next_comm=main next_pid=23897 next_prio=120
21560      android.fg-24001 (23968) [000] d..2 24572.443961: sched_switch: prev_comm=android.fg prev_pid=24001 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21561<...>-23994 ( 23968) [002] d..3 24572.443964: sched_waking: comm=tworkPolicy.uid pid=24082 prio=118 target_cpu=001
21562          <idle>-0     (-----) [000] d..1 24572.443977: cpu_idle: state=0 cpu_id=0
21563<...>-23994 ( 23968) [002] d..4 24572.443995: sched_wakeup: comm=tworkPolicy.uid pid=24082 prio=118 target_cpu=000
21564          <idle>-0     (-----) [000] .n.1 24572.444001: cpu_idle: state=4294967295 cpu_id=0
21565          <idle>-0     (-----) [000] d..2 24572.444014: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=tworkPolicy.uid next_pid=24082 next_prio=118
21566<...>-23995 ( 23968) [001] d..2 24572.444079: sched_switch: prev_comm=ActivityManager prev_pid=23995 prev_prio=118 prev_state=S ==> next_comm=android.bg next_pid=23992 next_prio=130
21567 tworkPolicy.uid-24082 (23968) [000] d..2 24572.444097: sched_switch: prev_comm=tworkPolicy.uid prev_pid=24082 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21568<...>-23994 ( 23968) [002] .... 24572.444109: binder_transaction: transaction=1668765 dest_node=1288677 dest_proc=24119 dest_thread=0 reply=0 flags=0x11 code=0x4
21569          <idle>-0     (-----) [000] d..1 24572.444112: cpu_idle: state=0 cpu_id=0
21570<...>-23994 ( 23968) [002] d..4 24572.444121: sched_waking: comm=Binder:24119_4 pid=24523 prio=120 target_cpu=002
21571<...>-23994 ( 23968) [002] d..5 24572.444145: sched_wakeup: comm=Binder:24119_4 pid=24523 prio=120 target_cpu=002
21572<...>-23992 ( 23968) [001] d..2 24572.444234: sched_switch: prev_comm=android.bg prev_pid=23992 prev_prio=130 prev_state=S ==> next_comm=ActivityManager next_pid=23993 next_prio=116
21573          <idle>-0     (-----) [004] dnh2 24572.444244: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=004
21574          <idle>-0     (-----) [004] .n.1 24572.444247: cpu_idle: state=4294967295 cpu_id=4
21575          <idle>-0     (-----) [004] d..2 24572.444253: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13122 next_prio=120
21576 Shutdown thread-13122 (13122) [004] .... 24572.444257: binder_transaction_received: transaction=1668764
21577<...>-23994 ( 23968) [002] .... 24572.444279: binder_transaction: transaction=1668766 dest_node=1279661 dest_proc=24119 dest_thread=0 reply=0 flags=0x11 code=0x4
21578<...>-23994 ( 23968) [002] d..4 24572.444289: sched_waking: comm=Binder:24119_3 pid=24159 prio=120 target_cpu=003
21579<...>-23994 ( 23968) [002] d..5 24572.444336: sched_wakeup: comm=Binder:24119_3 pid=24159 prio=120 target_cpu=001
21580 Shutdown thread-13122 (13122) [004] .... 24572.444351: binder_transaction: transaction=1668767 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x5f504e47
21581 Shutdown thread-13122 (13122) [004] d..4 24572.444354: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
21582 Shutdown thread-13122 (13122) [004] d..2 24572.444372: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
21583          <idle>-0     (-----) [000] dnh2 24572.444375: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
21584          <idle>-0     (-----) [004] d..1 24572.444377: cpu_idle: state=2 cpu_id=4
21585          <idle>-0     (-----) [000] .n.1 24572.444383: cpu_idle: state=4294967295 cpu_id=0
21586<...>-23994 ( 23968) [002] d..3 24572.444383: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=001
21587          <idle>-0     (-----) [000] d..2 24572.444396: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
21588  Binder:23968_C-25014 (23968) [000] .... 24572.444402: binder_transaction_received: transaction=1668767
21589  Binder:23968_C-25014 (23968) [000] .... 24572.444433: binder_transaction: transaction=1668768 dest_node=0 dest_proc=13122 dest_thread=13122 reply=1 flags=0x0 code=0x0
21590  Binder:23968_C-25014 (23968) [000] d..2 24572.444440: sched_waking: comm=main pid=13122 prio=120 target_cpu=004
21591<...>-23994 ( 23968) [002] d.h3 24572.444470: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
21592<...>-23993 ( 23968) [001] d..2 24572.444472: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=116 prev_state=R+ ==> next_comm=Binder:24119_3 next_pid=24159 next_prio=120
21593<...>-23994 ( 23968) [002] d.h3 24572.444485: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
21594  Binder:24119_3-24159 (24119) [001] .... 24572.444485: binder_transaction_received: transaction=1668766
21595            main-23897 (23897) [003] d..1 24572.444490: sched_waking: comm=HeapTaskDaemon pid=12977 prio=124 target_cpu=003
21596<...>-23994 ( 23968) [002] d.h4 24572.444508: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
21597  Binder:23968_C-25014 (23968) [000] d..2 24572.444520: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21598  Binder:24119_3-24159 (24119) [001] d..2 24572.444523: sched_switch: prev_comm=Binder:24119_3 prev_pid=24159 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
21599          <idle>-0     (-----) [000] dn.1 24572.444535: cpu_idle: state=0 cpu_id=0
21600            main-23897 (23897) [003] d..2 24572.444540: sched_wakeup: comm=HeapTaskDaemon pid=12977 prio=124 target_cpu=000
21601         sugov:0-559   (  559) [001] d..2 24572.444543: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:24119_3 next_pid=24159 next_prio=120
21602          <idle>-0     (-----) [000] .n.1 24572.444544: cpu_idle: state=4294967295 cpu_id=0
21603          <idle>-0     (-----) [000] d..2 24572.444557: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=12977 next_prio=124
21604          <idle>-0     (-----) [006] dnh2 24572.444610: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=006
21605            main-23897 (23897) [003] d..2 24572.444610: sched_switch: prev_comm=main prev_pid=23897 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21606          <idle>-0     (-----) [006] .n.1 24572.444614: cpu_idle: state=4294967295 cpu_id=6
21607<...>-23994 ( 23968) [002] .... 24572.444617: binder_transaction: transaction=1668769 dest_node=1274736 dest_proc=862 dest_thread=0 reply=0 flags=0x11 code=0x3
21608          <idle>-0     (-----) [006] d..2 24572.444622: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
21609          <idle>-0     (-----) [003] d..1 24572.444624: cpu_idle: state=0 cpu_id=3
21610          <idle>-0     (-----) [004] dnh2 24572.444628: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=004
21611<...>-23994 ( 23968) [002] d..4 24572.444630: sched_waking: comm=Binder:862_4 pid=5596 prio=120 target_cpu=002
21612          <idle>-0     (-----) [004] .n.1 24572.444632: cpu_idle: state=4294967295 cpu_id=4
21613          <idle>-0     (-----) [004] d..2 24572.444636: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13122 next_prio=120
21614           <...>-12977 (-----) [000] d..1 24572.444637: sched_waking: comm=main pid=23897 prio=120 target_cpu=003
21615 Shutdown thread-13122 (13122) [004] .... 24572.444639: binder_transaction_received: transaction=1668768
21616          <idle>-0     (-----) [007] dnh2 24572.444657: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
21617          <idle>-0     (-----) [007] .n.1 24572.444661: cpu_idle: state=4294967295 cpu_id=7
21618<...>-23994 ( 23968) [002] d..5 24572.444662: sched_wakeup: comm=Binder:862_4 pid=5596 prio=120 target_cpu=003
21619 Shutdown thread-13122 (13122) [004] d..2 24572.444663: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
21620<...>-23968 ( 23968) [006] d..2 24572.444665: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
21621          <idle>-0     (-----) [007] d..2 24572.444666: 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
21622          <idle>-0     (-----) [004] d..1 24572.444667: cpu_idle: state=2 cpu_id=4
21623          <idle>-0     (-----) [003] .n.1 24572.444668: cpu_idle: state=4294967295 cpu_id=3
21624          <idle>-0     (-----) [006] d..1 24572.444670: cpu_idle: state=2 cpu_id=6
21625         sugov:4-560   (  560) [007] d..2 24572.444674: 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
21626          <idle>-0     (-----) [007] d..1 24572.444678: cpu_idle: state=2 cpu_id=7
21627          <idle>-0     (-----) [003] d..2 24572.444683: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:862_4 next_pid=5596 next_prio=120
21628           <...>-12977 (-----) [000] d..2 24572.444684: sched_wakeup: comm=main pid=23897 prio=120 target_cpu=001
21629<...>-23994 ( 23968) [002] d..3 24572.444693: sched_waking: comm=android.bg pid=23992 prio=130 target_cpu=001
21630    Binder:862_4-5596  (  862) [003] .... 24572.444694: binder_transaction_received: transaction=1668769
21631<...>-23994 ( 23968) [002] d..4 24572.444711: sched_wakeup: comm=android.bg pid=23992 prio=130 target_cpu=001
21632<...>-23994 ( 23968) [002] d..2 24572.444746: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=Binder:24119_4 next_pid=24523 next_prio=120
21633  Binder:24119_4-24523 (24119) [002] .... 24572.444757: binder_transaction_received: transaction=1668765
21634  Binder:24119_3-24159 (24119) [001] d..2 24572.444798: sched_switch: prev_comm=Binder:24119_3 prev_pid=24159 prev_prio=120 prev_state=S ==> next_comm=ActivityManager next_pid=23993 next_prio=116
21635    Binder:862_4-5596  (  862) [003] d..2 24572.444829: sched_switch: prev_comm=Binder:862_4 prev_pid=5596 prev_prio=120 prev_state=S ==> next_comm=main next_pid=23897 next_prio=120
21636            main-23897 (23897) [003] d..1 24572.444856: sched_waking: comm=ReferenceQueueD pid=12974 prio=124 target_cpu=000
21637  Binder:24119_4-24523 (24119) [002] d..3 24572.444876: sched_waking: comm=droid.bluetooth pid=24119 prio=120 target_cpu=003
21638            main-23897 (23897) [003] d..2 24572.444897: sched_wakeup: comm=ReferenceQueueD pid=12974 prio=124 target_cpu=002
21639  Binder:24119_4-24523 (24119) [002] d..4 24572.444926: sched_wakeup: comm=droid.bluetooth pid=24119 prio=120 target_cpu=002
21640            main-23897 (23897) [003] d..2 24572.444944: sched_switch: prev_comm=main prev_pid=23897 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21641          <idle>-0     (-----) [003] d..1 24572.444955: cpu_idle: state=0 cpu_id=3
21642  Binder:24119_4-24523 (24119) [002] d..2 24572.444987: sched_switch: prev_comm=Binder:24119_4 prev_pid=24523 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=12974 next_prio=124
21643           <...>-12977 (-----) [000] d..2 24572.445045: sched_switch: prev_comm=HeapTaskDaemon prev_pid=12977 prev_prio=124 prev_state=x ==> next_comm=swapper/0 next_pid=0 next_prio=120
21644<...>-23993 ( 23968) [001] d..1 24572.445054: sched_waking: comm=tworkPolicy.uid pid=24082 prio=118 target_cpu=000
21645<...>-23993 ( 23968) [001] d..2 24572.445075: sched_wakeup: comm=tworkPolicy.uid pid=24082 prio=118 target_cpu=000
21646          <idle>-0     (-----) [000] d..2 24572.445088: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=tworkPolicy.uid next_pid=24082 next_prio=118
21647<...>-23993 ( 23968) [001] d..2 24572.445135: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=android.bg next_pid=23992 next_prio=130
21648 tworkPolicy.uid-24082 (23968) [000] d..1 24572.445147: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=006
21649 tworkPolicy.uid-24082 (23968) [000] d..2 24572.445180: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=003
21650          <idle>-0     (-----) [003] .n.1 24572.445185: cpu_idle: state=4294967295 cpu_id=3
21651<...>-23992 ( 23968) [001] d..2 24572.445226: sched_switch: prev_comm=android.bg prev_pid=23992 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
21652 tworkPolicy.uid-24082 (23968) [000] d.h3 24572.445227: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
21653          <idle>-0     (-----) [003] d..2 24572.445228: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
21654 tworkPolicy.uid-24082 (23968) [000] d.h3 24572.445239: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
21655          <idle>-0     (-----) [001] d..1 24572.445246: cpu_idle: state=0 cpu_id=1
21656 tworkPolicy.uid-24082 (23968) [000] d.h4 24572.445253: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
21657          <idle>-0     (-----) [001] .n.1 24572.445261: cpu_idle: state=4294967295 cpu_id=1
21658<...>-23968 ( 23968) [003] d..2 24572.445263: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21659 tworkPolicy.uid-24082 (23968) [000] d..1 24572.445263: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=003
21660          <idle>-0     (-----) [001] d..2 24572.445273: 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
21661          <idle>-0     (-----) [003] d..1 24572.445274: cpu_idle: state=0 cpu_id=3
21662          <idle>-0     (-----) [003] .n.1 24572.445277: cpu_idle: state=4294967295 cpu_id=3
21663 tworkPolicy.uid-24082 (23968) [000] d..2 24572.445280: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=003
21664          <idle>-0     (-----) [003] d..2 24572.445290: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
21665         sugov:0-559   (  559) [001] d..2 24572.445298: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
21666           <...>-12974 (-----) [002] d..1 24572.445301: sched_waking: comm=main pid=23897 prio=120 target_cpu=003
21667          <idle>-0     (-----) [001] d..1 24572.445310: cpu_idle: state=0 cpu_id=1
21668<...>-23968 ( 23968) [003] d..1 24572.445336: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=002
21669           <...>-12974 (-----) [002] d..2 24572.445352: sched_wakeup: comm=main pid=23897 prio=120 target_cpu=000
21670 tworkPolicy.uid-24082 (23968) [000] d..2 24572.445363: sched_switch: prev_comm=tworkPolicy.uid prev_pid=24082 prev_prio=118 prev_state=S ==> next_comm=main next_pid=23897 next_prio=120
21671<...>-23968 ( 23968) [003] d..2 24572.445366: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=001
21672          <idle>-0     (-----) [001] .n.1 24572.445371: cpu_idle: state=4294967295 cpu_id=1
21673          <idle>-0     (-----) [001] d..2 24572.445383: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
21674            main-23897 (23897) [000] d..1 24572.445388: sched_waking: comm=FinalizerDaemon pid=12975 prio=124 target_cpu=003
21675            main-23897 (23897) [000] d..2 24572.445431: sched_wakeup: comm=FinalizerDaemon pid=12975 prio=124 target_cpu=001
21676            main-23897 (23897) [000] d..1 24572.445440: sched_waking: comm=ReferenceQueueD pid=12974 prio=124 target_cpu=002
21677           <...>-12974 (-----) [002] d..2 24572.445451: sched_switch: prev_comm=ReferenceQueueD prev_pid=12974 prev_prio=124 prev_state=S ==> next_comm=droid.bluetooth next_pid=24119 next_prio=120
21678<...>-23994 ( 23968) [001] d..2 24572.445464: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=FinalizerDaemon next_pid=12975 next_prio=124
21679            main-23897 (23897) [000] d..2 24572.445472: sched_wakeup: comm=ReferenceQueueD pid=12974 prio=124 target_cpu=002
21680            main-23897 (23897) [000] d..2 24572.445512: sched_switch: prev_comm=main prev_pid=23897 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21681<...>-23968 ( 23968) [003] d..2 24572.445517: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21682          <idle>-0     (-----) [000] d..1 24572.445529: cpu_idle: state=0 cpu_id=0
21683          <idle>-0     (-----) [003] d..1 24572.445530: cpu_idle: state=0 cpu_id=3
21684 droid.bluetooth-24119 (24119) [002] d..2 24572.445563: sched_switch: prev_comm=droid.bluetooth prev_pid=24119 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=12974 next_prio=124
21685           <...>-12975 (-----) [001] d..1 24572.445739: sched_waking: comm=main pid=23897 prio=120 target_cpu=000
21686           <...>-12975 (-----) [001] d..2 24572.445762: sched_wakeup: comm=main pid=23897 prio=120 target_cpu=000
21687          <idle>-0     (-----) [000] .n.1 24572.445769: cpu_idle: state=4294967295 cpu_id=0
21688          <idle>-0     (-----) [000] d..2 24572.445781: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=23897 next_prio=120
21689           <...>-12974 (-----) [002] d..2 24572.445799: sched_switch: prev_comm=ReferenceQueueD prev_pid=12974 prev_prio=124 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21690           <...>-12975 (-----) [001] d..1 24572.445803: sched_waking: comm=ReferenceQueueD pid=12974 prio=124 target_cpu=002
21691            main-23897 (23897) [000] d..1 24572.445812: sched_waking: comm=FinalizerWatchd pid=12976 prio=124 target_cpu=000
21692           <...>-12975 (-----) [001] d..2 24572.445820: sched_blocked_reason: pid=12974 iowait=0 caller=do_exit+0x908/0x11bc
21693          <idle>-0     (-----) [002] dn.1 24572.445824: cpu_idle: state=0 cpu_id=2
21694           <...>-12975 (-----) [001] d..2 24572.445828: sched_wakeup: comm=ReferenceQueueD pid=12974 prio=124 target_cpu=002
21695          <idle>-0     (-----) [002] .n.1 24572.445835: cpu_idle: state=4294967295 cpu_id=2
21696          <idle>-0     (-----) [002] d..2 24572.445848: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=12974 next_prio=124
21697          <idle>-0     (-----) [007] dnh2 24572.445871: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
21698            main-23897 (23897) [000] d..2 24572.445872: sched_wakeup: comm=FinalizerWatchd pid=12976 prio=124 target_cpu=002
21699          <idle>-0     (-----) [007] .n.1 24572.445875: cpu_idle: state=4294967295 cpu_id=7
21700          <idle>-0     (-----) [007] d..2 24572.445879: 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
21701            main-23897 (23897) [000] d..1 24572.445880: sched_waking: comm=FinalizerDaemon pid=12975 prio=124 target_cpu=001
21702           <...>-12975 (-----) [001] d..2 24572.445884: sched_switch: prev_comm=FinalizerDaemon prev_pid=12975 prev_prio=124 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
21703         sugov:4-560   (  560) [007] d..2 24572.445887: 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
21704          <idle>-0     (-----) [007] d..1 24572.445890: cpu_idle: state=2 cpu_id=7
21705            main-23897 (23897) [000] d..2 24572.445903: sched_wakeup: comm=FinalizerDaemon pid=12975 prio=124 target_cpu=001
21706           <...>-12974 (-----) [002] d..2 24572.445913: sched_switch: prev_comm=ReferenceQueueD prev_pid=12974 prev_prio=124 prev_state=x ==> next_comm=FinalizerWatchd next_pid=12976 next_prio=124
21707          <idle>-0     (-----) [001] d..2 24572.445916: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerDaemon next_pid=12975 next_prio=124
21708            main-23897 (23897) [000] d..2 24572.445938: sched_switch: prev_comm=main prev_pid=23897 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21709          <idle>-0     (-----) [000] d..1 24572.445954: cpu_idle: state=0 cpu_id=0
21710           <...>-12976 (-----) [002] d..1 24572.445960: sched_waking: comm=FinalizerDaemon pid=12975 prio=124 target_cpu=001
21711           <...>-12975 (-----) [001] d..2 24572.445978: sched_switch: prev_comm=FinalizerDaemon prev_pid=12975 prev_prio=124 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
21712          <idle>-0     (-----) [001] d..1 24572.445990: cpu_idle: state=0 cpu_id=1
21713           <...>-12976 (-----) [002] d..2 24572.445990: sched_blocked_reason: pid=12975 iowait=0 caller=SyS_madvise+0xc84/0xcbc
21714           <...>-12976 (-----) [002] d..2 24572.446000: sched_wakeup: comm=FinalizerDaemon pid=12975 prio=124 target_cpu=001
21715          <idle>-0     (-----) [001] .n.1 24572.446007: cpu_idle: state=4294967295 cpu_id=1
21716          <idle>-0     (-----) [001] d..2 24572.446018: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerDaemon next_pid=12975 next_prio=124
21717           <...>-12975 (-----) [001] d..1 24572.446106: sched_waking: comm=FinalizerWatchd pid=12976 prio=124 target_cpu=002
21718           <...>-12976 (-----) [002] d..2 24572.446126: sched_switch: prev_comm=FinalizerWatchd prev_pid=12976 prev_prio=124 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21719           <...>-12975 (-----) [001] d..2 24572.446144: sched_blocked_reason: pid=12976 iowait=0 caller=do_page_fault+0x4e0/0x594
21720          <idle>-0     (-----) [002] dn.1 24572.446149: cpu_idle: state=0 cpu_id=2
21721           <...>-12975 (-----) [001] d..2 24572.446153: sched_wakeup: comm=FinalizerWatchd pid=12976 prio=124 target_cpu=002
21722          <idle>-0     (-----) [002] .n.1 24572.446158: cpu_idle: state=4294967295 cpu_id=2
21723          <idle>-0     (-----) [002] d..2 24572.446171: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerWatchd next_pid=12976 next_prio=124
21724           <...>-12975 (-----) [001] d..2 24572.446178: sched_switch: prev_comm=FinalizerDaemon prev_pid=12975 prev_prio=124 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
21725           <...>-12976 (-----) [002] d..1 24572.446181: sched_waking: comm=FinalizerDaemon pid=12975 prio=124 target_cpu=001
21726           <...>-12976 (-----) [002] d..2 24572.446191: sched_blocked_reason: pid=12975 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
21727          <idle>-0     (-----) [001] d..1 24572.446192: cpu_idle: state=0 cpu_id=1
21728           <...>-12976 (-----) [002] d..2 24572.446200: sched_wakeup: comm=FinalizerDaemon pid=12975 prio=124 target_cpu=001
21729          <idle>-0     (-----) [001] .n.1 24572.446206: cpu_idle: state=4294967295 cpu_id=1
21730          <idle>-0     (-----) [001] d..2 24572.446218: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerDaemon next_pid=12975 next_prio=124
21731           <...>-12975 (-----) [001] d..2 24572.446252: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=000
21732           <...>-12976 (-----) [002] d..1 24572.446280: sched_waking: comm=main pid=23897 prio=120 target_cpu=000
21733           <...>-12976 (-----) [002] d..2 24572.446301: sched_wakeup: comm=main pid=23897 prio=120 target_cpu=000
21734           <...>-12975 (-----) [001] d..3 24572.446301: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=002
21735          <idle>-0     (-----) [000] .n.1 24572.446307: cpu_idle: state=4294967295 cpu_id=0
21736          <idle>-0     (-----) [000] d..2 24572.446319: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=23897 next_prio=120
21737           <...>-12976 (-----) [002] d..1 24572.446337: sched_waking: comm=FinalizerDaemon pid=12975 prio=124 target_cpu=001
21738           <...>-12975 (-----) [001] d..2 24572.446344: sched_switch: prev_comm=FinalizerDaemon prev_pid=12975 prev_prio=124 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
21739           <...>-12976 (-----) [002] d..2 24572.446354: sched_blocked_reason: pid=12975 iowait=0 caller=do_exit+0x908/0x11bc
21740          <idle>-0     (-----) [001] dn.1 24572.446358: cpu_idle: state=0 cpu_id=1
21741           <...>-12976 (-----) [002] d..2 24572.446362: sched_wakeup: comm=FinalizerDaemon pid=12975 prio=124 target_cpu=001
21742          <idle>-0     (-----) [001] .n.1 24572.446367: cpu_idle: state=4294967295 cpu_id=1
21743          <idle>-0     (-----) [001] d..2 24572.446379: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerDaemon next_pid=12975 next_prio=124
21744           <...>-12975 (-----) [001] d..2 24572.446446: sched_switch: prev_comm=FinalizerDaemon prev_pid=12975 prev_prio=124 prev_state=x ==> next_comm=swapper/1 next_pid=0 next_prio=120
21745          <idle>-0     (-----) [001] d..1 24572.446464: cpu_idle: state=0 cpu_id=1
21746           <...>-12976 (-----) [002] d..1 24572.446503: sched_waking: comm=main pid=23897 prio=120 target_cpu=000
21747            main-23897 (23897) [000] d..2 24572.446520: sched_switch: prev_comm=main prev_pid=23897 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
21748           <...>-12976 (-----) [002] d..2 24572.446532: sched_blocked_reason: pid=23897 iowait=0 caller=do_page_fault+0x4e0/0x594
21749          <idle>-0     (-----) [000] d..1 24572.446537: cpu_idle: state=0 cpu_id=0
21750           <...>-12976 (-----) [002] d..2 24572.446541: sched_wakeup: comm=main pid=23897 prio=120 target_cpu=000
21751          <idle>-0     (-----) [000] .n.1 24572.446545: cpu_idle: state=4294967295 cpu_id=0
21752           <...>-12976 (-----) [002] d..2 24572.446558: sched_switch: prev_comm=FinalizerWatchd prev_pid=12976 prev_prio=124 prev_state=D|K ==> next_comm=rcuos/0 next_pid=11 next_prio=120
21753          <idle>-0     (-----) [000] d..2 24572.446559: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=23897 next_prio=120
21754<...>-11 ( 11) [002] d..2 24572.446567: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
21755            main-23897 (23897) [000] d..1 24572.446568: sched_waking: comm=FinalizerWatchd pid=12976 prio=124 target_cpu=002
21756            main-23897 (23897) [000] d..2 24572.446585: sched_blocked_reason: pid=12976 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
21757            main-23897 (23897) [000] d..2 24572.446591: sched_wakeup: comm=FinalizerWatchd pid=12976 prio=124 target_cpu=002
21758            main-23897 (23897) [000] d..2 24572.446613: sched_switch: prev_comm=main prev_pid=23897 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
21759<...>-11 ( 11) [002] d..3 24572.446619: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
21760          <idle>-0     (-----) [001] .n.1 24572.446625: cpu_idle: state=4294967295 cpu_id=1
21761          <idle>-0     (-----) [000] d..1 24572.446626: cpu_idle: state=0 cpu_id=0
21762<...>-11 ( 11) [002] d..2 24572.446632: sched_switch: prev_comm=rcuos/0 prev_pid=11 prev_prio=120 prev_state=S ==> next_comm=FinalizerWatchd next_pid=12976 next_prio=124
21763          <idle>-0     (-----) [001] d..2 24572.446637: 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
21764           <...>-12976 (-----) [002] d..2 24572.446661: sched_waking: comm=rcuos/2 pid=30 prio=120 target_cpu=002
21765       rcu_sched-8     (    8) [001] d..2 24572.446669: 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
21766          <idle>-0     (-----) [001] d..1 24572.446679: cpu_idle: state=0 cpu_id=1
21767           <...>-12976 (-----) [002] d..3 24572.446693: sched_wakeup: comm=rcuos/2 pid=30 prio=120 target_cpu=001
21768          <idle>-0     (-----) [001] .n.1 24572.446698: cpu_idle: state=4294967295 cpu_id=1
21769           <...>-12976 (-----) [002] d..1 24572.446703: sched_waking: comm=main pid=23897 prio=120 target_cpu=000
21770          <idle>-0     (-----) [001] d..2 24572.446710: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuos/2 next_pid=30 next_prio=120
21771<...>-30 ( 30) [001] d..2 24572.446737: sched_switch: prev_comm=rcuos/2 prev_pid=30 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
21772           <...>-12976 (-----) [002] d..2 24572.446743: sched_blocked_reason: pid=23897 iowait=0 caller=do_page_fault+0x4e0/0x594
21773           <...>-12976 (-----) [002] d..2 24572.446751: sched_wakeup: comm=main pid=23897 prio=120 target_cpu=001
21774          <idle>-0     (-----) [001] d..2 24572.446761: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=23897 next_prio=120
21775           <...>-12976 (-----) [002] d..2 24572.446846: sched_switch: prev_comm=FinalizerWatchd prev_pid=12976 prev_prio=124 prev_state=x ==> next_comm=swapper/2 next_pid=0 next_prio=120
21776          <idle>-0     (-----) [002] d..1 24572.446871: cpu_idle: state=0 cpu_id=2
21777          <idle>-0     (-----) [003] d.s2 24572.447576: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
21778          <idle>-0     (-----) [003] dns3 24572.447595: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
21779          <idle>-0     (-----) [003] .n.1 24572.447614: cpu_idle: state=4294967295 cpu_id=3
21780          <idle>-0     (-----) [003] d..2 24572.447624: 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
21781     rcu_preempt-7     (    7) [003] d..2 24572.447634: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
21782     rcu_preempt-7     (    7) [003] d..3 24572.447655: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
21783     rcu_preempt-7     (    7) [003] d..2 24572.447670: 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
21784         rcuop/4-45    (   45) [003] d..2 24572.447706: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21785          <idle>-0     (-----) [003] d..1 24572.447720: cpu_idle: state=2 cpu_id=3
21786          <idle>-0     (-----) [000] ...1 24572.447808: cpu_idle: state=4294967295 cpu_id=0
21787          <idle>-0     (-----) [000] d..1 24572.447813: cpu_idle: state=2 cpu_id=0
21788          <idle>-0     (-----) [002] ...1 24572.448036: cpu_idle: state=4294967295 cpu_id=2
21789          <idle>-0     (-----) [002] d..1 24572.448042: cpu_idle: state=2 cpu_id=2
21790            main-23897 (23897) [001] d.s1 24572.450913: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
21791            main-23897 (23897) [001] d.s2 24572.450945: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
21792            main-23897 (23897) [001] d.s2 24572.450953: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21793            main-23897 (23897) [001] d.s3 24572.450989: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
21794          <idle>-0     (-----) [000] .n.1 24572.451088: cpu_idle: state=4294967295 cpu_id=0
21795          <idle>-0     (-----) [000] d..2 24572.451111: 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
21796       rcu_sched-8     (    8) [000] d..2 24572.451136: 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
21797  kworker/u16:10-23868 (23868) [000] d..2 24572.451380: 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
21798          <idle>-0     (-----) [000] d..1 24572.451397: cpu_idle: state=0 cpu_id=0
21799          <idle>-0     (-----) [003] d.s3 24572.451540: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
21800          <idle>-0     (-----) [003] d.s4 24572.451554: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
21801          <idle>-0     (-----) [003] d.s4 24572.451564: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
21802          <idle>-0     (-----) [000] .n.1 24572.451570: cpu_idle: state=4294967295 cpu_id=0
21803          <idle>-0     (-----) [003] ...1 24572.451576: cpu_idle: state=4294967295 cpu_id=3
21804          <idle>-0     (-----) [000] d..2 24572.451583: 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
21805          <idle>-0     (-----) [003] d..1 24572.451584: cpu_idle: state=0 cpu_id=3
21806  kworker/u16:10-23868 (23868) [000] .... 24572.451628: clk_set_rate: l3_cluster1_vote_clk 300000000
21807  kworker/u16:10-23868 (23868) [000] .... 24572.451635: clk_set_rate: l3_clk 300000000
21808  kworker/u16:10-23868 (23868) [000] d..2 24572.451859: 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
21809          <idle>-0     (-----) [000] d..1 24572.451878: cpu_idle: state=0 cpu_id=0
21810          <idle>-0     (-----) [003] d.s3 24572.451886: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
21811          <idle>-0     (-----) [003] d.s4 24572.451897: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
21812          <idle>-0     (-----) [003] d.s4 24572.451907: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
21813          <idle>-0     (-----) [000] .n.1 24572.451913: cpu_idle: state=4294967295 cpu_id=0
21814          <idle>-0     (-----) [003] ...1 24572.451916: cpu_idle: state=4294967295 cpu_id=3
21815          <idle>-0     (-----) [003] d..1 24572.451922: cpu_idle: state=0 cpu_id=3
21816          <idle>-0     (-----) [000] d..2 24572.451928: 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
21817  kworker/u16:10-23868 (23868) [000] .... 24572.452001: clk_set_rate: l3_cluster0_vote_clk 480000000
21818  kworker/u16:10-23868 (23868) [000] .... 24572.452007: clk_set_rate: l3_clk 480000000
21819  kworker/u16:10-23868 (23868) [000] d..2 24572.452056: 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
21820          <idle>-0     (-----) [000] d..1 24572.452072: cpu_idle: state=0 cpu_id=0
21821            main-23897 (23897) [001] d.h1 24572.454122: sched_waking: comm=ActivityManager pid=23995 prio=118 target_cpu=001
21822            main-23897 (23897) [001] d.h2 24572.454161: sched_wakeup: comm=ActivityManager pid=23995 prio=118 target_cpu=000
21823          <idle>-0     (-----) [000] .n.1 24572.454166: cpu_idle: state=4294967295 cpu_id=0
21824          <idle>-0     (-----) [000] d..2 24572.454180: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23995 next_prio=118
21825          <idle>-0     (-----) [003] d.s2 24572.454278: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
21826          <idle>-0     (-----) [003] dns3 24572.454300: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
21827          <idle>-0     (-----) [003] .n.1 24572.454312: cpu_idle: state=4294967295 cpu_id=3
21828          <idle>-0     (-----) [003] d..2 24572.454327: 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
21829     rcu_preempt-7     (    7) [003] d..2 24572.454371: 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
21830          <idle>-0     (-----) [003] d..1 24572.454387: cpu_idle: state=0 cpu_id=3
21831<...>-23995 ( 23968) [000] d..2 24572.454403: sched_switch: prev_comm=ActivityManager prev_pid=23995 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21832          <idle>-0     (-----) [000] d..1 24572.454420: cpu_idle: state=0 cpu_id=0
21833          <idle>-0     (-----) [000] d.H3 24572.457673: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
21834          <idle>-0     (-----) [000] dnH4 24572.457703: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
21835          <idle>-0     (-----) [000] dns2 24572.457712: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
21836          <idle>-0     (-----) [000] dns3 24572.457734: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
21837          <idle>-0     (-----) [000] dns3 24572.457750: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
21838          <idle>-0     (-----) [000] dns4 24572.457787: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
21839          <idle>-0     (-----) [000] .n.1 24572.457798: cpu_idle: state=4294967295 cpu_id=0
21840          <idle>-0     (-----) [000] d..2 24572.457807: 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
21841         sugov:0-559   (  559) [000] .... 24572.457843: clk_set_rate: pwrcl_clk 902400000
21842         sugov:0-559   (  559) [000] .... 24572.457854: clk_set_rate: cpu3_pwrcl_clk 748800000
21843         sugov:0-559   (  559) [000] .... 24572.457865: clk_set_rate: cpu2_pwrcl_clk 748800000
21844         sugov:0-559   (  559) [000] .... 24572.457872: clk_set_rate: cpu1_pwrcl_clk 748800000
21845         sugov:0-559   (  559) [000] .... 24572.457880: clk_set_rate: cpu0_pwrcl_clk 902400000
21846         sugov:0-559   (  559) [000] .... 24572.457890: cpu_frequency: state=902400 cpu_id=0
21847         sugov:0-559   (  559) [000] .... 24572.457920: cpu_frequency: state=902400 cpu_id=1
21848         sugov:0-559   (  559) [000] .... 24572.457924: cpu_frequency: state=902400 cpu_id=2
21849         sugov:0-559   (  559) [000] .... 24572.457928: cpu_frequency: state=902400 cpu_id=3
21850         sugov:0-559   (  559) [000] d..2 24572.457947: 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
21851       rcu_sched-8     (    8) [000] d..2 24572.457955: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=002
21852       rcu_sched-8     (    8) [000] d..3 24572.457992: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=000
21853       rcu_sched-8     (    8) [000] d..2 24572.458010: 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
21854     rcu_preempt-7     (    7) [000] d..2 24572.458017: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
21855     rcu_preempt-7     (    7) [000] d..3 24572.458034: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
21856     rcu_preempt-7     (    7) [000] d..2 24572.458037: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
21857     rcu_preempt-7     (    7) [000] d..3 24572.458069: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
21858     rcu_preempt-7     (    7) [000] d..2 24572.458081: 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
21859         rcuop/0-10    (   10) [000] d..2 24572.458103: 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
21860         rcuop/2-29    (   29) [000] d..2 24572.458120: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuos/0 next_pid=11 next_prio=120
21861<...>-11 ( 11) [000] d..2 24572.458125: sched_waking: comm=rcuos/1 pid=22 prio=120 target_cpu=002
21862<...>-11 ( 11) [000] d..3 24572.458159: sched_wakeup: comm=rcuos/1 pid=22 prio=120 target_cpu=000
21863<...>-11 ( 11) [000] d..2 24572.458169: sched_switch: prev_comm=rcuos/0 prev_pid=11 prev_prio=120 prev_state=S ==> next_comm=rcuos/1 next_pid=22 next_prio=120
21864<...>-22 ( 22) [000] d..2 24572.458200: sched_switch: prev_comm=rcuos/1 prev_pid=22 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21865          <idle>-0     (-----) [000] d..1 24572.458217: cpu_idle: state=2 cpu_id=0
21866          <idle>-0     (-----) [003] .n.1 24572.460553: cpu_idle: state=4294967295 cpu_id=3
21867          <idle>-0     (-----) [003] d..2 24572.460567: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13131 next_prio=120
21868            main-23897 (23897) [001] d.s4 24572.460925: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
21869            main-23897 (23897) [001] dns5 24572.460972: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
21870            main-23897 (23897) [001] d..2 24572.460992: sched_switch: prev_comm=main prev_pid=23897 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
21871  kworker/u16:10-23868 (23868) [001] .... 24572.461053: clk_set_rate: l3_cluster0_vote_clk 652800000
21872  kworker/u16:10-23868 (23868) [001] .... 24572.461058: clk_set_rate: l3_clk 652800000
21873  kworker/u16:10-23868 (23868) [001] d..2 24572.461292: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=main next_pid=23897 next_prio=120
21874           <...>-13131 (-----) [003] d.s3 24572.461333: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
21875           <...>-13131 (-----) [003] d.s4 24572.461357: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
21876           <...>-13131 (-----) [003] d.s4 24572.461367: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
21877            main-23897 (23897) [001] d..2 24572.461378: sched_switch: prev_comm=main prev_pid=23897 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
21878  kworker/u16:10-23868 (23868) [001] d..2 24572.461402: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=main next_pid=23897 next_prio=120
21879          <idle>-0     (-----) [000] .n.1 24572.462322: cpu_idle: state=4294967295 cpu_id=0
21880          <idle>-0     (-----) [000] d..2 24572.462342: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13133 next_prio=120
21881            main-23897 (23897) [001] d..1 24572.462363: sched_waking: comm=main pid=13133 prio=120 target_cpu=000
21882<...>-13133 ( 23897) [000] d..2 24572.462391: sched_switch: prev_comm=main prev_pid=13133 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
21883          <idle>-0     (-----) [000] d..1 24572.462401: cpu_idle: state=0 cpu_id=0
21884            main-23897 (23897) [001] d..2 24572.462412: sched_blocked_reason: pid=13133 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
21885            main-23897 (23897) [001] d..2 24572.462422: sched_wakeup: comm=main pid=13133 prio=120 target_cpu=000
21886          <idle>-0     (-----) [000] .n.1 24572.462428: cpu_idle: state=4294967295 cpu_id=0
21887          <idle>-0     (-----) [000] d..2 24572.462437: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13133 next_prio=120
21888            main-23897 (23897) [001] d..1 24572.462441: sched_waking: comm=main pid=13133 prio=120 target_cpu=000
21889<...>-13133 ( 23897) [000] d..2 24572.462458: sched_switch: prev_comm=main prev_pid=13133 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
21890          <idle>-0     (-----) [000] d..1 24572.462465: cpu_idle: state=0 cpu_id=0
21891            main-23897 (23897) [001] d..2 24572.462467: sched_blocked_reason: pid=13133 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
21892            main-23897 (23897) [001] d..2 24572.462474: sched_wakeup: comm=main pid=13133 prio=120 target_cpu=000
21893          <idle>-0     (-----) [000] .n.1 24572.462479: cpu_idle: state=4294967295 cpu_id=0
21894          <idle>-0     (-----) [000] d..2 24572.462489: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13133 next_prio=120
21895            main-23897 (23897) [001] d..2 24572.462583: sched_switch: prev_comm=main prev_pid=23897 prev_prio=120 prev_state=S ==> next_comm=main next_pid=13132 next_prio=120
21896<...>-13132 ( 23897) [001] d..1 24572.462601: sched_waking: comm=main pid=13133 prio=120 target_cpu=000
21897<...>-13133 ( 23897) [000] d..2 24572.462616: sched_switch: prev_comm=main prev_pid=13133 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
21898          <idle>-0     (-----) [000] d..1 24572.462627: cpu_idle: state=0 cpu_id=0
21899<...>-13132 ( 23897) [001] d..2 24572.462628: sched_blocked_reason: pid=13133 iowait=0 caller=do_page_fault+0x4e0/0x594
21900<...>-13132 ( 23897) [001] d..2 24572.462636: sched_wakeup: comm=main pid=13133 prio=120 target_cpu=000
21901          <idle>-0     (-----) [000] .n.1 24572.462642: cpu_idle: state=4294967295 cpu_id=0
21902          <idle>-0     (-----) [000] d..2 24572.462651: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13133 next_prio=120
21903<...>-13133 ( 23897) [000] d..1 24572.462662: sched_waking: comm=main pid=13132 prio=120 target_cpu=001
21904<...>-13132 ( 23897) [001] d..2 24572.462663: sched_switch: prev_comm=main prev_pid=13132 prev_prio=120 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
21905          <idle>-0     (-----) [002] .n.1 24572.462672: cpu_idle: state=4294967295 cpu_id=2
21906<...>-13133 ( 23897) [000] d..2 24572.462682: sched_blocked_reason: pid=13132 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
21907          <idle>-0     (-----) [001] d..1 24572.462685: cpu_idle: state=0 cpu_id=1
21908          <idle>-0     (-----) [001] .n.1 24572.462691: cpu_idle: state=4294967295 cpu_id=1
21909<...>-13133 ( 23897) [000] d..2 24572.462692: sched_wakeup: comm=main pid=13132 prio=120 target_cpu=001
21910          <idle>-0     (-----) [002] d..2 24572.462695: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13134 next_prio=120
21911          <idle>-0     (-----) [001] d..2 24572.462707: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13132 next_prio=120
21912<...>-13133 ( 23897) [000] d..2 24572.462715: sched_switch: prev_comm=main prev_pid=13133 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
21913<...>-13134 ( 23897) [002] d..1 24572.462719: sched_waking: comm=main pid=13132 prio=120 target_cpu=001
21914          <idle>-0     (-----) [000] d..1 24572.462723: cpu_idle: state=0 cpu_id=0
21915<...>-13132 ( 23897) [001] d..2 24572.462725: sched_switch: prev_comm=main prev_pid=13132 prev_prio=120 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
21916          <idle>-0     (-----) [001] d..1 24572.462736: cpu_idle: state=0 cpu_id=1
21917<...>-13134 ( 23897) [002] d..2 24572.462738: sched_blocked_reason: pid=13132 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
21918<...>-13134 ( 23897) [002] d..2 24572.462747: sched_wakeup: comm=main pid=13132 prio=120 target_cpu=001
21919          <idle>-0     (-----) [001] .n.1 24572.462753: cpu_idle: state=4294967295 cpu_id=1
21920          <idle>-0     (-----) [001] d..2 24572.462762: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13132 next_prio=120
21921<...>-13134 ( 23897) [002] d..1 24572.462777: sched_waking: comm=main pid=13133 prio=120 target_cpu=000
21922<...>-13134 ( 23897) [002] d..2 24572.462785: sched_blocked_reason: pid=13133 iowait=0 caller=do_page_fault+0x4e0/0x594
21923<...>-13134 ( 23897) [002] d..2 24572.462793: sched_wakeup: comm=main pid=13133 prio=120 target_cpu=000
21924<...>-13132 ( 23897) [001] d..2 24572.462795: sched_switch: prev_comm=main prev_pid=13132 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
21925          <idle>-0     (-----) [000] .n.1 24572.462800: cpu_idle: state=4294967295 cpu_id=0
21926          <idle>-0     (-----) [001] d..1 24572.462806: cpu_idle: state=0 cpu_id=1
21927          <idle>-0     (-----) [000] d..2 24572.462809: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13133 next_prio=120
21928<...>-13133 ( 23897) [000] d..1 24572.462824: sched_waking: comm=main pid=13132 prio=120 target_cpu=001
21929<...>-13134 ( 23897) [002] d..2 24572.462829: sched_switch: prev_comm=main prev_pid=13134 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21930<...>-13133 ( 23897) [000] d..2 24572.462832: sched_blocked_reason: pid=13132 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
21931<...>-13133 ( 23897) [000] d..2 24572.462840: sched_wakeup: comm=main pid=13132 prio=120 target_cpu=001
21932          <idle>-0     (-----) [001] .n.1 24572.462846: cpu_idle: state=4294967295 cpu_id=1
21933          <idle>-0     (-----) [002] d..1 24572.462846: cpu_idle: state=0 cpu_id=2
21934          <idle>-0     (-----) [001] d..2 24572.462856: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13132 next_prio=120
21935<...>-13132 ( 23897) [001] d..1 24572.462861: sched_waking: comm=main pid=13133 prio=120 target_cpu=000
21936<...>-13133 ( 23897) [000] d..2 24572.462862: sched_switch: prev_comm=main prev_pid=13133 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
21937          <idle>-0     (-----) [000] d..1 24572.462870: cpu_idle: state=0 cpu_id=0
21938<...>-13132 ( 23897) [001] d..2 24572.462871: sched_blocked_reason: pid=13133 iowait=0 caller=do_page_fault+0x4e0/0x594
21939<...>-13132 ( 23897) [001] d..2 24572.462879: sched_wakeup: comm=main pid=13133 prio=120 target_cpu=000
21940          <idle>-0     (-----) [000] .n.1 24572.462885: cpu_idle: state=4294967295 cpu_id=0
21941          <idle>-0     (-----) [000] d..2 24572.462893: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13133 next_prio=120
21942<...>-13132 ( 23897) [001] d..2 24572.462899: sched_switch: prev_comm=main prev_pid=13132 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
21943<...>-13133 ( 23897) [000] d..1 24572.462906: sched_waking: comm=main pid=13132 prio=120 target_cpu=001
21944          <idle>-0     (-----) [001] d..1 24572.462910: cpu_idle: state=0 cpu_id=1
21945<...>-13133 ( 23897) [000] d..2 24572.462914: sched_blocked_reason: pid=13132 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
21946<...>-13133 ( 23897) [000] d..2 24572.462922: sched_wakeup: comm=main pid=13132 prio=120 target_cpu=001
21947          <idle>-0     (-----) [001] .n.1 24572.462928: cpu_idle: state=4294967295 cpu_id=1
21948          <idle>-0     (-----) [001] d..2 24572.462938: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13132 next_prio=120
21949<...>-13132 ( 23897) [001] d..1 24572.462942: sched_waking: comm=main pid=13133 prio=120 target_cpu=000
21950<...>-13133 ( 23897) [000] d..2 24572.462943: sched_switch: prev_comm=main prev_pid=13133 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
21951          <idle>-0     (-----) [000] d..1 24572.462950: cpu_idle: state=0 cpu_id=0
21952<...>-13132 ( 23897) [001] d..2 24572.462952: sched_blocked_reason: pid=13133 iowait=0 caller=do_page_fault+0x4e0/0x594
21953<...>-13132 ( 23897) [001] d..2 24572.462959: sched_wakeup: comm=main pid=13133 prio=120 target_cpu=000
21954          <idle>-0     (-----) [000] .n.1 24572.462965: cpu_idle: state=4294967295 cpu_id=0
21955          <idle>-0     (-----) [000] d..2 24572.462973: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13133 next_prio=120
21956<...>-13132 ( 23897) [001] d..2 24572.462984: sched_switch: prev_comm=main prev_pid=13132 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
21957          <idle>-0     (-----) [001] d..1 24572.462994: cpu_idle: state=0 cpu_id=1
21958<...>-13133 ( 23897) [000] d..1 24572.463026: sched_waking: comm=main pid=23897 prio=120 target_cpu=001
21959<...>-13133 ( 23897) [000] d..2 24572.463060: sched_wakeup: comm=main pid=23897 prio=120 target_cpu=001
21960          <idle>-0     (-----) [001] .n.1 24572.463065: cpu_idle: state=4294967295 cpu_id=1
21961          <idle>-0     (-----) [001] d..2 24572.463076: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=23897 next_prio=120
21962            main-23897 (23897) [001] d..1 24572.463084: sched_waking: comm=main pid=13134 prio=120 target_cpu=002
21963            main-23897 (23897) [001] d..2 24572.463118: sched_wakeup: comm=main pid=13134 prio=120 target_cpu=002
21964          <idle>-0     (-----) [002] .n.1 24572.463125: cpu_idle: state=4294967295 cpu_id=2
21965          <idle>-0     (-----) [002] d..2 24572.463138: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13134 next_prio=120
21966<...>-13134 ( 23897) [002] d..1 24572.463197: sched_waking: comm=main pid=23897 prio=120 target_cpu=001
21967<...>-13133 ( 23897) [000] d..2 24572.463207: sched_switch: prev_comm=FinalizerDaemon prev_pid=13133 prev_prio=124 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21968            main-23897 (23897) [001] d..2 24572.463213: sched_switch: prev_comm=main prev_pid=23897 prev_prio=120 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
21969          <idle>-0     (-----) [000] d..1 24572.463218: cpu_idle: state=0 cpu_id=0
21970<...>-13134 ( 23897) [002] d..2 24572.463225: sched_blocked_reason: pid=23897 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
21971          <idle>-0     (-----) [001] dn.1 24572.463230: cpu_idle: state=0 cpu_id=1
21972<...>-13134 ( 23897) [002] d..2 24572.463234: sched_wakeup: comm=main pid=23897 prio=120 target_cpu=001
21973          <idle>-0     (-----) [001] .n.1 24572.463239: cpu_idle: state=4294967295 cpu_id=1
21974<...>-13134 ( 23897) [002] d..1 24572.463247: sched_waking: comm=main pid=13132 prio=120 target_cpu=001
21975          <idle>-0     (-----) [001] d..2 24572.463250: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=23897 next_prio=120
21976<...>-13134 ( 23897) [002] d..2 24572.463268: sched_wakeup: comm=main pid=13132 prio=120 target_cpu=001
21977<...>-13134 ( 23897) [002] d..1 24572.463299: sched_waking: comm=main pid=23897 prio=120 target_cpu=001
21978            main-23897 (23897) [001] d..2 24572.463308: sched_switch: prev_comm=main prev_pid=23897 prev_prio=120 prev_state=D|K ==> next_comm=main next_pid=13132 next_prio=120
21979<...>-13134 ( 23897) [002] d..2 24572.463345: sched_blocked_reason: pid=23897 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
21980<...>-13134 ( 23897) [002] d..2 24572.463353: sched_wakeup: comm=main pid=23897 prio=120 target_cpu=000
21981          <idle>-0     (-----) [000] .n.1 24572.463359: cpu_idle: state=4294967295 cpu_id=0
21982          <idle>-0     (-----) [000] d..2 24572.463369: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=23897 next_prio=120
21983<...>-13132 ( 23897) [001] d..2 24572.463376: sched_switch: prev_comm=main prev_pid=13132 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
21984<...>-13134 ( 23897) [002] d..2 24572.463379: sched_switch: prev_comm=FinalizerWatchd prev_pid=13134 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21985            main-23897 (23897) [000] d..1 24572.463383: sched_waking: comm=main pid=13132 prio=120 target_cpu=001
21986          <idle>-0     (-----) [001] d..1 24572.463390: cpu_idle: state=0 cpu_id=1
21987            main-23897 (23897) [000] d..2 24572.463393: sched_blocked_reason: pid=13132 iowait=0 caller=SyS_madvise+0xc84/0xcbc
21988          <idle>-0     (-----) [002] d..1 24572.463397: cpu_idle: state=0 cpu_id=2
21989            main-23897 (23897) [000] d..2 24572.463402: sched_wakeup: comm=main pid=13132 prio=120 target_cpu=001
21990            main-23897 (23897) [000] d..1 24572.463404: sched_waking: comm=FinalizerWatchd pid=13134 prio=120 target_cpu=002
21991          <idle>-0     (-----) [001] .n.1 24572.463408: cpu_idle: state=4294967295 cpu_id=1
21992           <...>-13131 (-----) [003] .... 24572.463411: cgroup_mkdir: root=1 id=139 level=2 path=/uid_10150/pid_13131
21993            main-23897 (23897) [000] d..2 24572.463412: sched_blocked_reason: pid=13134 iowait=0 caller=do_page_fault+0x4e0/0x594
21994            main-23897 (23897) [000] d..2 24572.463418: sched_wakeup: comm=FinalizerWatchd pid=13134 prio=120 target_cpu=002
21995          <idle>-0     (-----) [001] d..2 24572.463419: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13132 next_prio=120
21996          <idle>-0     (-----) [002] .n.1 24572.463426: cpu_idle: state=4294967295 cpu_id=2
21997          <idle>-0     (-----) [002] d..2 24572.463437: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerWatchd next_pid=13134 next_prio=120
21998            main-23897 (23897) [000] d..2 24572.463441: sched_switch: prev_comm=main prev_pid=23897 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
21999          <idle>-0     (-----) [000] d..1 24572.463450: cpu_idle: state=0 cpu_id=0
22000<...>-13134 ( 23897) [002] d..1 24572.463452: sched_waking: comm=main pid=23897 prio=120 target_cpu=000
22001<...>-13134 ( 23897) [002] d..2 24572.463460: sched_blocked_reason: pid=23897 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22002<...>-13132 ( 23897) [001] d..2 24572.463463: sched_switch: prev_comm=main prev_pid=13132 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22003<...>-13134 ( 23897) [002] d..2 24572.463468: sched_wakeup: comm=main pid=23897 prio=120 target_cpu=000
22004          <idle>-0     (-----) [000] .n.1 24572.463474: cpu_idle: state=4294967295 cpu_id=0
22005          <idle>-0     (-----) [001] d..1 24572.463475: cpu_idle: state=0 cpu_id=1
22006          <idle>-0     (-----) [000] d..2 24572.463482: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=23897 next_prio=120
22007            main-23897 (23897) [000] d..1 24572.463493: sched_waking: comm=main pid=13132 prio=120 target_cpu=001
22008<...>-13134 ( 23897) [002] d..2 24572.463494: sched_switch: prev_comm=FinalizerWatchd prev_pid=13134 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
22009            main-23897 (23897) [000] d..2 24572.463501: sched_blocked_reason: pid=13132 iowait=0 caller=do_page_fault+0x4e0/0x594
22010          <idle>-0     (-----) [002] d..1 24572.463507: cpu_idle: state=0 cpu_id=2
22011            main-23897 (23897) [000] d..2 24572.463509: sched_wakeup: comm=main pid=13132 prio=120 target_cpu=001
22012            main-23897 (23897) [000] d..1 24572.463511: sched_waking: comm=FinalizerWatchd pid=13134 prio=120 target_cpu=002
22013          <idle>-0     (-----) [001] .n.1 24572.463515: cpu_idle: state=4294967295 cpu_id=1
22014            main-23897 (23897) [000] d..2 24572.463518: sched_blocked_reason: pid=13134 iowait=0 caller=do_page_fault+0x4e0/0x594
22015            main-23897 (23897) [000] d..2 24572.463524: sched_wakeup: comm=FinalizerWatchd pid=13134 prio=120 target_cpu=002
22016          <idle>-0     (-----) [001] d..2 24572.463525: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13132 next_prio=120
22017          <idle>-0     (-----) [002] .n.1 24572.463531: cpu_idle: state=4294967295 cpu_id=2
22018          <idle>-0     (-----) [002] d..2 24572.463542: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerWatchd next_pid=13134 next_prio=120
22019            main-23897 (23897) [000] d..2 24572.463543: sched_switch: prev_comm=main prev_pid=23897 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
22020<...>-13134 ( 23897) [002] d..1 24572.463547: sched_waking: comm=main pid=23897 prio=120 target_cpu=000
22021          <idle>-0     (-----) [000] d..1 24572.463551: cpu_idle: state=0 cpu_id=0
22022<...>-13132 ( 23897) [001] d..2 24572.463555: sched_switch: prev_comm=main prev_pid=13132 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22023<...>-13134 ( 23897) [002] d..2 24572.463555: sched_blocked_reason: pid=23897 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22024<...>-13134 ( 23897) [002] d..2 24572.463562: sched_wakeup: comm=main pid=23897 prio=120 target_cpu=000
22025          <idle>-0     (-----) [001] d..1 24572.463565: cpu_idle: state=0 cpu_id=1
22026          <idle>-0     (-----) [000] .n.1 24572.463568: cpu_idle: state=4294967295 cpu_id=0
22027          <idle>-0     (-----) [000] d..2 24572.463576: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=23897 next_prio=120
22028            main-23897 (23897) [000] d..1 24572.463581: sched_waking: comm=main pid=13132 prio=120 target_cpu=001
22029            main-23897 (23897) [000] d..2 24572.463589: sched_blocked_reason: pid=13132 iowait=0 caller=do_page_fault+0x4e0/0x594
22030            main-23897 (23897) [000] d..2 24572.463595: sched_wakeup: comm=main pid=13132 prio=120 target_cpu=001
22031          <idle>-0     (-----) [001] .n.1 24572.463601: cpu_idle: state=4294967295 cpu_id=1
22032          <idle>-0     (-----) [001] d..2 24572.463611: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13132 next_prio=120
22033           <...>-13131 (-----) [003] .... 24572.463613: cgroup_attach_task: dst_root=1 dst_id=139 dst_level=2 dst_path=/uid_10150/pid_13131 pid=13131 comm=main
22034<...>-13132 ( 23897) [001] d..1 24572.463626: sched_waking: comm=main pid=23897 prio=120 target_cpu=000
22035            main-23897 (23897) [000] d..2 24572.463630: sched_switch: prev_comm=main prev_pid=23897 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
22036<...>-13134 ( 23897) [002] d..2 24572.463636: sched_switch: prev_comm=FinalizerWatchd prev_pid=13134 prev_prio=124 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
22037<...>-13132 ( 23897) [001] d..2 24572.463641: sched_blocked_reason: pid=23897 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22038          <idle>-0     (-----) [000] d..1 24572.463642: cpu_idle: state=0 cpu_id=0
22039<...>-13132 ( 23897) [001] d..2 24572.463650: sched_wakeup: comm=main pid=23897 prio=120 target_cpu=000
22040          <idle>-0     (-----) [002] d..1 24572.463650: cpu_idle: state=0 cpu_id=2
22041          <idle>-0     (-----) [000] .n.1 24572.463655: cpu_idle: state=4294967295 cpu_id=0
22042          <idle>-0     (-----) [000] d..2 24572.463664: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=23897 next_prio=120
22043<...>-13132 ( 23897) [001] d..2 24572.463672: sched_switch: prev_comm=main prev_pid=13132 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22044            main-23897 (23897) [000] d..1 24572.463676: sched_waking: comm=FinalizerWatchd pid=13134 prio=124 target_cpu=002
22045          <idle>-0     (-----) [001] d..1 24572.463684: cpu_idle: state=0 cpu_id=1
22046            main-23897 (23897) [000] d..2 24572.463685: sched_blocked_reason: pid=13134 iowait=0 caller=do_page_fault+0x4e0/0x594
22047            main-23897 (23897) [000] d..2 24572.463693: sched_wakeup: comm=FinalizerWatchd pid=13134 prio=124 target_cpu=002
22048            main-23897 (23897) [000] d..1 24572.463695: sched_waking: comm=main pid=13132 prio=120 target_cpu=001
22049          <idle>-0     (-----) [002] .n.1 24572.463700: cpu_idle: state=4294967295 cpu_id=2
22050            main-23897 (23897) [000] d..2 24572.463703: sched_blocked_reason: pid=13132 iowait=0 caller=do_page_fault+0x4e0/0x594
22051            main-23897 (23897) [000] d..2 24572.463709: sched_wakeup: comm=main pid=13132 prio=120 target_cpu=001
22052          <idle>-0     (-----) [002] d..2 24572.463711: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerWatchd next_pid=13134 next_prio=124
22053          <idle>-0     (-----) [001] .n.1 24572.463716: cpu_idle: state=4294967295 cpu_id=1
22054          <idle>-0     (-----) [001] d..2 24572.463727: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13132 next_prio=120
22055            main-23897 (23897) [000] d..2 24572.463729: sched_switch: prev_comm=main prev_pid=23897 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
22056          <idle>-0     (-----) [000] d..1 24572.463738: cpu_idle: state=0 cpu_id=0
22057<...>-13132 ( 23897) [001] d..1 24572.463743: sched_waking: comm=main pid=23897 prio=120 target_cpu=000
22058<...>-13134 ( 23897) [002] d..2 24572.463743: sched_switch: prev_comm=FinalizerWatchd prev_pid=13134 prev_prio=124 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22059<...>-13132 ( 23897) [001] d..2 24572.463752: sched_blocked_reason: pid=23897 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22060          <idle>-0     (-----) [002] d..1 24572.463756: cpu_idle: state=0 cpu_id=2
22061<...>-13132 ( 23897) [001] d..2 24572.463760: sched_wakeup: comm=main pid=23897 prio=120 target_cpu=000
22062          <idle>-0     (-----) [000] .n.1 24572.463766: cpu_idle: state=4294967295 cpu_id=0
22063          <idle>-0     (-----) [000] d..2 24572.463774: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=23897 next_prio=120
22064            main-23897 (23897) [000] d..1 24572.463779: sched_waking: comm=main pid=13132 prio=120 target_cpu=001
22065<...>-13132 ( 23897) [001] d..2 24572.463783: sched_switch: prev_comm=main prev_pid=13132 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22066            main-23897 (23897) [000] d..2 24572.463792: sched_blocked_reason: pid=13132 iowait=0 caller=do_page_fault+0x4e0/0x594
22067          <idle>-0     (-----) [001] d..1 24572.463795: cpu_idle: state=0 cpu_id=1
22068            main-23897 (23897) [000] d..2 24572.463799: sched_wakeup: comm=main pid=13132 prio=120 target_cpu=001
22069          <idle>-0     (-----) [001] .n.1 24572.463799: cpu_idle: state=4294967295 cpu_id=1
22070          <idle>-0     (-----) [001] d..2 24572.463813: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13132 next_prio=120
22071            main-23897 (23897) [000] d..2 24572.463818: sched_switch: prev_comm=main prev_pid=23897 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
22072          <idle>-0     (-----) [000] d..1 24572.463825: cpu_idle: state=0 cpu_id=0
22073<...>-13132 ( 23897) [001] d..1 24572.463826: sched_waking: comm=main pid=23897 prio=120 target_cpu=000
22074<...>-13132 ( 23897) [001] d..2 24572.463834: sched_blocked_reason: pid=23897 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22075<...>-13132 ( 23897) [001] d..2 24572.463842: sched_wakeup: comm=main pid=23897 prio=120 target_cpu=000
22076          <idle>-0     (-----) [000] .n.1 24572.463847: cpu_idle: state=4294967295 cpu_id=0
22077          <idle>-0     (-----) [000] d..2 24572.463855: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=23897 next_prio=120
22078          <idle>-0     (-----) [002] .n.1 24572.463938: cpu_idle: state=4294967295 cpu_id=2
22079          <idle>-0     (-----) [002] d..2 24572.463949: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13135 next_prio=120
22080<...>-13132 ( 23897) [001] d..2 24572.463958: sched_switch: prev_comm=ReferenceQueueD prev_pid=13132 prev_prio=124 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
22081            main-23897 (23897) [000] d..1 24572.463961: sched_waking: comm=main pid=13135 prio=120 target_cpu=002
22082<...>-13135 ( 23897) [002] d..2 24572.463973: sched_switch: prev_comm=main prev_pid=13135 prev_prio=120 prev_state=D|K ==> next_comm=swapper/2 next_pid=0 next_prio=120
22083          <idle>-0     (-----) [001] d..1 24572.463973: cpu_idle: state=0 cpu_id=1
22084          <idle>-0     (-----) [002] d..1 24572.463985: cpu_idle: state=0 cpu_id=2
22085            main-23897 (23897) [000] d..2 24572.463986: sched_blocked_reason: pid=13135 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22086            main-23897 (23897) [000] d..2 24572.463994: sched_wakeup: comm=main pid=13135 prio=120 target_cpu=002
22087          <idle>-0     (-----) [002] .n.1 24572.464000: cpu_idle: state=4294967295 cpu_id=2
22088          <idle>-0     (-----) [002] d..2 24572.464010: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13135 next_prio=120
22089            main-23897 (23897) [000] d..2 24572.464123: sched_waking: comm=ActivityManager pid=23995 prio=118 target_cpu=000
22090            main-23897 (23897) [000] d..3 24572.464138: sched_wakeup: comm=ActivityManager pid=23995 prio=118 target_cpu=000
22091<...>-13135 ( 23897) [002] d..2 24572.464188: sched_switch: prev_comm=HeapTaskDaemon prev_pid=13135 prev_prio=124 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22092          <idle>-0     (-----) [002] d..1 24572.464208: cpu_idle: state=0 cpu_id=2
22093            main-23897 (23897) [000] d.s4 24572.464276: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
22094            main-23897 (23897) [000] d.s5 24572.464294: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
22095            main-23897 (23897) [000] d.s4 24572.464297: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
22096            main-23897 (23897) [000] d.s5 24572.464309: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
22097            main-23897 (23897) [000] d..2 24572.464459: sched_switch: prev_comm=main prev_pid=23897 prev_prio=120 prev_state=S ==> next_comm=ActivityManager next_pid=23995 next_prio=118
22098<...>-23995 ( 23968) [000] d..2 24572.464761: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=001
22099<...>-23995 ( 23968) [000] d..3 24572.464807: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=000
22100<...>-23995 ( 23968) [000] d..2 24572.464952: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
22101<...>-23995 ( 23968) [000] d..3 24572.464993: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
22102          <idle>-0     (-----) [001] ...1 24572.465091: cpu_idle: state=4294967295 cpu_id=1
22103          <idle>-0     (-----) [001] d..1 24572.465096: cpu_idle: state=2 cpu_id=1
22104<...>-23995 ( 23968) [000] d..3 24572.465185: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=001
22105<...>-23995 ( 23968) [000] d..4 24572.465210: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=001
22106<...>-23995 ( 23968) [000] d..2 24572.465293: sched_switch: prev_comm=ActivityManager prev_pid=23995 prev_prio=118 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
22107     rcu_preempt-7     (    7) [000] d..2 24572.465308: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
22108          <idle>-0     (-----) [002] ...1 24572.465325: cpu_idle: state=4294967295 cpu_id=2
22109          <idle>-0     (-----) [002] d..1 24572.465331: cpu_idle: state=2 cpu_id=2
22110     rcu_preempt-7     (    7) [000] d..3 24572.465350: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
22111          <idle>-0     (-----) [001] .n.1 24572.465355: cpu_idle: state=4294967295 cpu_id=1
22112     rcu_preempt-7     (    7) [000] d..2 24572.465368: 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
22113          <idle>-0     (-----) [001] d..2 24572.465378: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
22114       rcu_sched-8     (    8) [000] d..2 24572.465384: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=statsd.writer next_pid=1044 next_prio=120
22115<...>-23993 ( 23968) [001] d..2 24572.465454: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
22116         rcuop/4-45    (   45) [001] d..2 24572.465492: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
22117          <idle>-0     (-----) [001] d..1 24572.465507: cpu_idle: state=0 cpu_id=1
22118<...>-1044 ( 887) [000] d..2 24572.465619: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
22119     logd.writer-563   (  555) [000] d..2 24572.465793: 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
22120          <idle>-0     (-----) [000] d..1 24572.465818: cpu_idle: state=0 cpu_id=0
22121          <idle>-0     (-----) [001] ...1 24572.466624: cpu_idle: state=4294967295 cpu_id=1
22122          <idle>-0     (-----) [001] d..1 24572.466629: cpu_idle: state=2 cpu_id=1
22123          <idle>-0     (-----) [000] d.s2 24572.470911: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
22124           <...>-13131 (-----) [003] d.s2 24572.470917: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
22125          <idle>-0     (-----) [000] dns3 24572.470929: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
22126          <idle>-0     (-----) [000] dns2 24572.470932: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
22127          <idle>-0     (-----) [000] dns3 24572.470943: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
22128          <idle>-0     (-----) [000] .n.1 24572.470960: cpu_idle: state=4294967295 cpu_id=0
22129           <...>-13131 (-----) [003] d.s3 24572.470965: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
22130          <idle>-0     (-----) [000] d..2 24572.470974: 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
22131           <...>-13131 (-----) [003] d.s2 24572.470981: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
22132           <...>-13131 (-----) [003] d.s3 24572.471020: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
22133  kworker/u16:10-23868 (23868) [000] d..2 24572.471323: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
22134  kworker/u16:15-18488 (18488) [000] d..2 24572.471336: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
22135       rcu_sched-8     (    8) [000] d..2 24572.471345: sched_waking: comm=rcuos/2 pid=30 prio=120 target_cpu=001
22136           <...>-13131 (-----) [003] d.s2 24572.471356: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
22137           <...>-13131 (-----) [003] d.s3 24572.471385: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
22138           <...>-13131 (-----) [003] d.s3 24572.471392: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
22139       rcu_sched-8     (    8) [000] d..3 24572.471402: sched_wakeup: comm=rcuos/2 pid=30 prio=120 target_cpu=000
22140       rcu_sched-8     (    8) [000] d..2 24572.471414: 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
22141<...>-30 ( 30) [000] d..2 24572.471431: 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
22142     rcu_preempt-7     (    7) [000] d..2 24572.471440: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
22143     rcu_preempt-7     (    7) [000] d..3 24572.471455: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
22144     rcu_preempt-7     (    7) [000] d..2 24572.471458: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
22145     rcu_preempt-7     (    7) [000] d..3 24572.471472: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
22146     rcu_preempt-7     (    7) [000] d..2 24572.471481: 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
22147         rcuop/2-29    (   29) [000] d..2 24572.471526: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
22148         rcuop/2-29    (   29) [000] d..3 24572.471540: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
22149         rcuop/2-29    (   29) [000] d..2 24572.471549: 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
22150         rcuop/0-10    (   10) [000] d..2 24572.471555: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
22151         rcuop/0-10    (   10) [000] d..3 24572.471589: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
22152         rcuop/0-10    (   10) [000] d..2 24572.471642: 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
22153         rcuop/1-21    (   21) [000] d..2 24572.471695: 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
22154     rcu_preempt-7     (    7) [000] d..2 24572.471707: 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
22155  kworker/u16:10-23868 (23868) [000] d..2 24572.471741: 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
22156          <idle>-0     (-----) [000] d..1 24572.471755: cpu_idle: state=0 cpu_id=0
22157          <idle>-0     (-----) [000] .n.1 24572.472167: cpu_idle: state=4294967295 cpu_id=0
22158          <idle>-0     (-----) [000] d..2 24572.472181: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13136 next_prio=120
22159           <...>-13131 (-----) [003] d..2 24572.472202: sched_switch: prev_comm=id.nn.benchmar prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
22160          <idle>-0     (-----) [003] d..1 24572.472232: cpu_idle: state=0 cpu_id=3
22161           <...>-13136 (-----) [000] d..1 24572.472991: sched_waking: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=003
22162           <...>-13136 (-----) [000] d..2 24572.473021: sched_wakeup: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=003
22163          <idle>-0     (-----) [003] .n.1 24572.473028: cpu_idle: state=4294967295 cpu_id=3
22164          <idle>-0     (-----) [003] d..2 24572.473041: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13131 next_prio=120
22165           <...>-13136 (-----) [000] d..2 24572.473059: sched_switch: prev_comm=Jit thread pool prev_pid=13136 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22166           <...>-13131 (-----) [003] d..1 24572.473075: sched_waking: comm=Jit thread pool pid=13136 prio=129 target_cpu=000
22167          <idle>-0     (-----) [000] d..1 24572.473080: cpu_idle: state=0 cpu_id=0
22168           <...>-13131 (-----) [003] d..2 24572.473096: sched_wakeup: comm=Jit thread pool pid=13136 prio=129 target_cpu=000
22169          <idle>-0     (-----) [000] .n.1 24572.473103: cpu_idle: state=4294967295 cpu_id=0
22170          <idle>-0     (-----) [000] d..2 24572.473115: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=13136 next_prio=129
22171           <...>-13136 (-----) [000] d..2 24572.473143: sched_switch: prev_comm=Jit thread pool prev_pid=13136 prev_prio=129 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22172          <idle>-0     (-----) [000] d..1 24572.473153: cpu_idle: state=0 cpu_id=0
22173          <idle>-0     (-----) [000] .n.1 24572.473228: cpu_idle: state=4294967295 cpu_id=0
22174          <idle>-0     (-----) [000] d..2 24572.473238: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13137 next_prio=120
22175           <...>-13131 (-----) [003] d..2 24572.473253: sched_switch: prev_comm=id.nn.benchmar prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
22176          <idle>-0     (-----) [003] d..1 24572.473274: cpu_idle: state=0 cpu_id=3
22177           <...>-13137 (-----) [000] d..1 24572.473538: sched_waking: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=003
22178           <...>-13137 (-----) [000] d..2 24572.473559: sched_wakeup: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=003
22179          <idle>-0     (-----) [003] .n.1 24572.473565: cpu_idle: state=4294967295 cpu_id=3
22180          <idle>-0     (-----) [003] d..2 24572.473577: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13131 next_prio=120
22181           <...>-13137 (-----) [000] d..2 24572.473605: sched_switch: prev_comm=Signal Catcher prev_pid=13137 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22182          <idle>-0     (-----) [000] d..1 24572.473625: cpu_idle: state=0 cpu_id=0
22183          <idle>-0     (-----) [000] .n.1 24572.473991: cpu_idle: state=4294967295 cpu_id=0
22184          <idle>-0     (-----) [000] d..2 24572.474003: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13138 next_prio=120
22185           <...>-13131 (-----) [003] d..1 24572.474017: sched_waking: comm=id.nn.benchmar pid=13138 prio=120 target_cpu=000
22186 ADB-JDWP Connec-13138 (13131) [000] d..2 24572.474030: sched_switch: prev_comm=id.nn.benchmar prev_pid=13138 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
22187          <idle>-0     (-----) [000] d..1 24572.474040: cpu_idle: state=0 cpu_id=0
22188           <...>-13131 (-----) [003] d..2 24572.474046: sched_blocked_reason: pid=13138 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22189           <...>-13131 (-----) [003] d..2 24572.474054: sched_wakeup: comm=id.nn.benchmar pid=13138 prio=120 target_cpu=000
22190          <idle>-0     (-----) [000] .n.1 24572.474059: cpu_idle: state=4294967295 cpu_id=0
22191          <idle>-0     (-----) [000] d..2 24572.474070: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13138 next_prio=120
22192           <...>-13131 (-----) [003] d..2 24572.474082: sched_switch: prev_comm=id.nn.benchmar prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
22193 ADB-JDWP Connec-13138 (13131) [000] d..1 24572.474087: sched_waking: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=003
22194 ADB-JDWP Connec-13138 (13131) [000] d..2 24572.474097: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22195          <idle>-0     (-----) [003] dn.1 24572.474102: cpu_idle: state=2 cpu_id=3
22196 ADB-JDWP Connec-13138 (13131) [000] d..2 24572.474105: sched_wakeup: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=003
22197          <idle>-0     (-----) [003] .n.1 24572.474127: cpu_idle: state=4294967295 cpu_id=3
22198 ADB-JDWP Connec-13138 (13131) [000] d..2 24572.474128: sched_switch: prev_comm=id.nn.benchmar prev_pid=13138 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
22199          <idle>-0     (-----) [000] d..1 24572.474139: cpu_idle: state=0 cpu_id=0
22200          <idle>-0     (-----) [003] d..2 24572.474141: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13131 next_prio=120
22201           <...>-13131 (-----) [003] d..1 24572.474150: sched_waking: comm=id.nn.benchmar pid=13138 prio=120 target_cpu=000
22202           <...>-13131 (-----) [003] d..2 24572.474159: sched_blocked_reason: pid=13138 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22203           <...>-13131 (-----) [003] d..2 24572.474168: sched_wakeup: comm=id.nn.benchmar pid=13138 prio=120 target_cpu=000
22204          <idle>-0     (-----) [000] .n.1 24572.474174: cpu_idle: state=4294967295 cpu_id=0
22205          <idle>-0     (-----) [000] d..2 24572.474185: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13138 next_prio=120
22206           <...>-13131 (-----) [003] d..2 24572.474191: sched_switch: prev_comm=id.nn.benchmar prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
22207 ADB-JDWP Connec-13138 (13131) [000] d..1 24572.474197: sched_waking: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=003
22208          <idle>-0     (-----) [003] d..1 24572.474205: cpu_idle: state=0 cpu_id=3
22209 ADB-JDWP Connec-13138 (13131) [000] d..2 24572.474205: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22210 ADB-JDWP Connec-13138 (13131) [000] d..2 24572.474213: sched_wakeup: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=003
22211          <idle>-0     (-----) [003] .n.1 24572.474219: cpu_idle: state=4294967295 cpu_id=3
22212          <idle>-0     (-----) [003] d..2 24572.474232: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13131 next_prio=120
22213 ADB-JDWP Connec-13138 (13131) [000] d.s3 24572.474246: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
22214 ADB-JDWP Connec-13138 (13131) [000] d.s4 24572.474287: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
22215           <...>-13131 (-----) [003] d..1 24572.474309: sched_waking: comm=id.nn.benchmar pid=13138 prio=120 target_cpu=000
22216 ADB-JDWP Connec-13138 (13131) [000] d..2 24572.474325: sched_switch: prev_comm=id.nn.benchmar prev_pid=13138 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
22217          <idle>-0     (-----) [000] d..1 24572.474335: cpu_idle: state=0 cpu_id=0
22218           <...>-13131 (-----) [003] d..2 24572.474336: sched_blocked_reason: pid=13138 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22219           <...>-13131 (-----) [003] d..2 24572.474345: sched_wakeup: comm=id.nn.benchmar pid=13138 prio=120 target_cpu=000
22220          <idle>-0     (-----) [000] .n.1 24572.474350: cpu_idle: state=4294967295 cpu_id=0
22221          <idle>-0     (-----) [000] d..2 24572.474359: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13138 next_prio=120
22222 ADB-JDWP Connec-13138 (13131) [000] d..1 24572.474365: sched_waking: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=003
22223           <...>-13131 (-----) [003] d..2 24572.474372: sched_switch: prev_comm=id.nn.benchmar prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
22224 ADB-JDWP Connec-13138 (13131) [000] d..2 24572.474382: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22225 ADB-JDWP Connec-13138 (13131) [000] d..2 24572.474390: sched_wakeup: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=003
22226          <idle>-0     (-----) [003] d..2 24572.474402: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13131 next_prio=120
22227           <...>-13131 (-----) [003] d..1 24572.474410: sched_waking: comm=id.nn.benchmar pid=13138 prio=120 target_cpu=000
22228 ADB-JDWP Connec-13138 (13131) [000] d..2 24572.474414: sched_switch: prev_comm=id.nn.benchmar prev_pid=13138 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
22229          <idle>-0     (-----) [000] d..1 24572.474421: cpu_idle: state=0 cpu_id=0
22230           <...>-13131 (-----) [003] d..2 24572.474423: sched_blocked_reason: pid=13138 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22231           <...>-13131 (-----) [003] d..2 24572.474430: sched_wakeup: comm=id.nn.benchmar pid=13138 prio=120 target_cpu=000
22232          <idle>-0     (-----) [000] .n.1 24572.474436: cpu_idle: state=4294967295 cpu_id=0
22233          <idle>-0     (-----) [000] d..2 24572.474444: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13138 next_prio=120
22234 ADB-JDWP Connec-13138 (13131) [000] d..1 24572.474449: sched_waking: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=003
22235          <idle>-0     (-----) [001] .n.1 24572.474449: cpu_idle: state=4294967295 cpu_id=1
22236           <...>-13131 (-----) [003] d..2 24572.474455: sched_switch: prev_comm=id.nn.benchmar prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
22237 ADB-JDWP Connec-13138 (13131) [000] d..2 24572.474464: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22238          <idle>-0     (-----) [003] d..1 24572.474465: cpu_idle: state=0 cpu_id=3
22239          <idle>-0     (-----) [001] d..2 24572.474470: 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
22240 ADB-JDWP Connec-13138 (13131) [000] d..2 24572.474471: sched_wakeup: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=003
22241          <idle>-0     (-----) [003] .n.1 24572.474478: cpu_idle: state=4294967295 cpu_id=3
22242          <idle>-0     (-----) [003] d..2 24572.474489: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13131 next_prio=120
22243           <...>-13131 (-----) [003] d..1 24572.474533: sched_waking: comm=id.nn.benchmar pid=13138 prio=120 target_cpu=000
22244 ADB-JDWP Connec-13138 (13131) [000] d..2 24572.474549: sched_switch: prev_comm=id.nn.benchmar prev_pid=13138 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
22245          <idle>-0     (-----) [000] d..1 24572.474558: cpu_idle: state=0 cpu_id=0
22246           <...>-13131 (-----) [003] d..2 24572.474560: sched_blocked_reason: pid=13138 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22247           <...>-13131 (-----) [003] d..2 24572.474568: sched_wakeup: comm=id.nn.benchmar pid=13138 prio=120 target_cpu=000
22248          <idle>-0     (-----) [000] .n.1 24572.474573: cpu_idle: state=4294967295 cpu_id=0
22249          <idle>-0     (-----) [000] d..2 24572.474582: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13138 next_prio=120
22250           <...>-13131 (-----) [003] d..2 24572.474592: sched_switch: prev_comm=id.nn.benchmar prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
22251 ADB-JDWP Connec-13138 (13131) [000] d..1 24572.474595: sched_waking: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=003
22252 ADB-JDWP Connec-13138 (13131) [000] d..2 24572.474604: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22253          <idle>-0     (-----) [003] d..1 24572.474604: cpu_idle: state=0 cpu_id=3
22254 ADB-JDWP Connec-13138 (13131) [000] d..2 24572.474613: sched_wakeup: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=003
22255          <idle>-0     (-----) [003] .n.1 24572.474618: cpu_idle: state=4294967295 cpu_id=3
22256          <idle>-0     (-----) [003] d..2 24572.474629: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13131 next_prio=120
22257  kworker/u16:10-23868 (23868) [001] d..2 24572.474651: 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
22258           <...>-13131 (-----) [003] d.s2 24572.474667: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
22259          <idle>-0     (-----) [001] d..1 24572.474667: cpu_idle: state=0 cpu_id=1
22260           <...>-13131 (-----) [003] d.s3 24572.474695: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
22261 ADB-JDWP Connec-13138 (13131) [000] d..2 24572.474702: sched_switch: prev_comm=id.nn.benchmar prev_pid=13138 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
22262           <...>-13131 (-----) [003] d.s3 24572.474703: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
22263          <idle>-0     (-----) [001] .n.1 24572.474709: cpu_idle: state=4294967295 cpu_id=1
22264          <idle>-0     (-----) [000] d..1 24572.474715: cpu_idle: state=0 cpu_id=0
22265           <...>-13131 (-----) [003] d..1 24572.474716: sched_waking: comm=id.nn.benchmar pid=13138 prio=120 target_cpu=000
22266          <idle>-0     (-----) [001] d..2 24572.474720: 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
22267           <...>-13131 (-----) [003] d..2 24572.474725: sched_blocked_reason: pid=13138 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22268           <...>-13131 (-----) [003] d..2 24572.474732: sched_wakeup: comm=id.nn.benchmar pid=13138 prio=120 target_cpu=000
22269          <idle>-0     (-----) [000] .n.1 24572.474738: cpu_idle: state=4294967295 cpu_id=0
22270  kworker/u16:10-23868 (23868) [001] d..2 24572.474747: 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
22271          <idle>-0     (-----) [000] d..2 24572.474748: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13138 next_prio=120
22272           <...>-13131 (-----) [003] d..2 24572.474758: sched_switch: prev_comm=id.nn.benchmar prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
22273          <idle>-0     (-----) [001] d..1 24572.474758: cpu_idle: state=0 cpu_id=1
22274          <idle>-0     (-----) [003] d..1 24572.474771: cpu_idle: state=0 cpu_id=3
22275 ADB-JDWP Connec-13138 (13131) [000] d..1 24572.474782: sched_waking: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=003
22276 ADB-JDWP Connec-13138 (13131) [000] d..2 24572.474793: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22277 ADB-JDWP Connec-13138 (13131) [000] d..2 24572.474802: sched_wakeup: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=003
22278          <idle>-0     (-----) [003] .n.1 24572.474808: cpu_idle: state=4294967295 cpu_id=3
22279          <idle>-0     (-----) [003] d..2 24572.474819: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13131 next_prio=120
22280 ADB-JDWP Connec-13138 (13131) [000] d..2 24572.475106: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
22281 ADB-JDWP Connec-13138 (13131) [000] dn.3 24572.475133: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
22282 ADB-JDWP Connec-13138 (13131) [000] d..2 24572.475144: sched_switch: prev_comm=ADB-JDWP Connec prev_pid=13138 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=1007 next_prio=120
22283          <idle>-0     (-----) [001] .n.1 24572.475356: cpu_idle: state=4294967295 cpu_id=1
22284          <idle>-0     (-----) [001] d..2 24572.475367: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13139 next_prio=120
22285            adbd-1007  ( 1007) [000] d..2 24572.475427: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=ADB-JDWP Connec next_pid=13138 next_prio=120
22286 ReferenceQueueD-13139 (13131) [001] d..1 24572.475456: sched_waking: comm=ADB-JDWP Connec pid=13138 prio=120 target_cpu=000
22287 ADB-JDWP Connec-13138 (13131) [000] d..2 24572.475459: sched_switch: prev_comm=ADB-JDWP Connec prev_pid=13138 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
22288          <idle>-0     (-----) [000] d..1 24572.475471: cpu_idle: state=0 cpu_id=0
22289 ReferenceQueueD-13139 (13131) [001] d..2 24572.475473: sched_blocked_reason: pid=13138 iowait=0 caller=do_page_fault+0x4e0/0x594
22290 ReferenceQueueD-13139 (13131) [001] d..2 24572.475482: sched_wakeup: comm=ADB-JDWP Connec pid=13138 prio=120 target_cpu=000
22291          <idle>-0     (-----) [000] .n.1 24572.475487: cpu_idle: state=4294967295 cpu_id=0
22292           <...>-13131 (-----) [003] d..2 24572.475490: sched_switch: prev_comm=id.nn.benchmar prev_pid=13131 prev_prio=120 prev_state=D|K ==> next_comm=swapper/3 next_pid=0 next_prio=120
22293          <idle>-0     (-----) [000] d..2 24572.475496: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ADB-JDWP Connec next_pid=13138 next_prio=120
22294 ADB-JDWP Connec-13138 (13131) [000] d..1 24572.475510: sched_waking: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=003
22295 ReferenceQueueD-13139 (13131) [001] d..2 24572.475510: sched_switch: prev_comm=id.nn.benchmar prev_pid=13139 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22296          <idle>-0     (-----) [003] d..1 24572.475512: cpu_idle: state=0 cpu_id=3
22297          <idle>-0     (-----) [001] d..1 24572.475526: cpu_idle: state=0 cpu_id=1
22298 ADB-JDWP Connec-13138 (13131) [000] d..2 24572.475543: sched_blocked_reason: pid=13131 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22299 ADB-JDWP Connec-13138 (13131) [000] d..2 24572.475553: sched_wakeup: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22300          <idle>-0     (-----) [001] .n.1 24572.475560: cpu_idle: state=4294967295 cpu_id=1
22301          <idle>-0     (-----) [001] d..2 24572.475572: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13131 next_prio=120
22302 ADB-JDWP Connec-13138 (13131) [000] d..2 24572.475581: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
22303           <...>-13131 (-----) [001] d..1 24572.475583: sched_waking: comm=id.nn.benchmar pid=13139 prio=120 target_cpu=001
22304 ADB-JDWP Connec-13138 (13131) [000] dn.3 24572.475592: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
22305           <...>-13131 (-----) [001] d..2 24572.475599: sched_blocked_reason: pid=13139 iowait=0 caller=SyS_madvise+0xc84/0xcbc
22306 ADB-JDWP Connec-13138 (13131) [000] d..2 24572.475600: sched_switch: prev_comm=ADB-JDWP Connec prev_pid=13138 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=1007 next_prio=120
22307           <...>-13131 (-----) [001] d..2 24572.475604: sched_wakeup: comm=id.nn.benchmar pid=13139 prio=120 target_cpu=001
22308           <...>-13131 (-----) [001] d..2 24572.475618: sched_switch: prev_comm=id.nn.benchmar prev_pid=13131 prev_prio=120 prev_state=D|K ==> next_comm=id.nn.benchmar next_pid=13139 next_prio=120
22309 ReferenceQueueD-13139 (13131) [001] d..1 24572.475631: sched_waking: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22310 ReferenceQueueD-13139 (13131) [001] d..2 24572.475642: sched_blocked_reason: pid=13131 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22311 ReferenceQueueD-13139 (13131) [001] d..2 24572.475646: sched_wakeup: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22312 ReferenceQueueD-13139 (13131) [001] d..2 24572.475670: sched_switch: prev_comm=id.nn.benchmar prev_pid=13139 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmar next_pid=13131 next_prio=120
22313           <...>-13131 (-----) [001] d..1 24572.475680: sched_waking: comm=id.nn.benchmar pid=13139 prio=120 target_cpu=001
22314           <...>-13131 (-----) [001] d..2 24572.475691: sched_blocked_reason: pid=13139 iowait=0 caller=do_page_fault+0x4e0/0x594
22315           <...>-13131 (-----) [001] d..2 24572.475695: sched_wakeup: comm=id.nn.benchmar pid=13139 prio=120 target_cpu=001
22316           <...>-13131 (-----) [001] d..2 24572.475709: sched_switch: prev_comm=id.nn.benchmar prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmar next_pid=13139 next_prio=120
22317 ReferenceQueueD-13139 (13131) [001] d..1 24572.475720: sched_waking: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22318 ReferenceQueueD-13139 (13131) [001] d..2 24572.475731: sched_blocked_reason: pid=13131 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22319 ReferenceQueueD-13139 (13131) [001] d..2 24572.475734: sched_wakeup: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22320 ReferenceQueueD-13139 (13131) [001] d..2 24572.475748: sched_switch: prev_comm=id.nn.benchmar prev_pid=13139 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmar next_pid=13131 next_prio=120
22321           <...>-13131 (-----) [001] d..1 24572.475751: sched_waking: comm=id.nn.benchmar pid=13139 prio=120 target_cpu=001
22322           <...>-13131 (-----) [001] d..2 24572.475760: sched_blocked_reason: pid=13139 iowait=0 caller=do_page_fault+0x4e0/0x594
22323           <...>-13131 (-----) [001] d..2 24572.475764: sched_wakeup: comm=id.nn.benchmar pid=13139 prio=120 target_cpu=001
22324           <...>-13131 (-----) [001] d..2 24572.475786: sched_switch: prev_comm=id.nn.benchmar prev_pid=13131 prev_prio=120 prev_state=D|K ==> next_comm=id.nn.benchmar next_pid=13139 next_prio=120
22325 ReferenceQueueD-13139 (13131) [001] d..1 24572.475793: sched_waking: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22326            adbd-1007  ( 1007) [000] d..2 24572.475801: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=ADB-JDWP Connec next_pid=13138 next_prio=120
22327 ReferenceQueueD-13139 (13131) [001] d..2 24572.475803: sched_blocked_reason: pid=13131 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22328 ReferenceQueueD-13139 (13131) [001] d..2 24572.475807: sched_wakeup: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22329 ReferenceQueueD-13139 (13131) [001] d..2 24572.475819: sched_switch: prev_comm=id.nn.benchmar prev_pid=13139 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmar next_pid=13131 next_prio=120
22330           <...>-13131 (-----) [001] d..1 24572.475833: sched_waking: comm=id.nn.benchmar pid=13139 prio=120 target_cpu=001
22331 ADB-JDWP Connec-13138 (13131) [000] d..2 24572.475835: sched_switch: prev_comm=ADB-JDWP Connec prev_pid=13138 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22332          <idle>-0     (-----) [000] d..1 24572.475846: cpu_idle: state=0 cpu_id=0
22333           <...>-13131 (-----) [001] d..2 24572.475849: sched_blocked_reason: pid=13139 iowait=0 caller=do_page_fault+0x4e0/0x594
22334           <...>-13131 (-----) [001] d..2 24572.475857: sched_wakeup: comm=id.nn.benchmar pid=13139 prio=120 target_cpu=000
22335          <idle>-0     (-----) [000] .n.1 24572.475864: cpu_idle: state=4294967295 cpu_id=0
22336          <idle>-0     (-----) [000] d..2 24572.475873: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13139 next_prio=120
22337           <...>-13131 (-----) [001] d..2 24572.475880: sched_switch: prev_comm=id.nn.benchmar prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22338 ReferenceQueueD-13139 (13131) [000] d..1 24572.475881: sched_waking: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22339 ReferenceQueueD-13139 (13131) [000] d..2 24572.475892: sched_blocked_reason: pid=13131 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22340          <idle>-0     (-----) [001] dn.1 24572.475896: cpu_idle: state=0 cpu_id=1
22341 ReferenceQueueD-13139 (13131) [000] d..2 24572.475900: sched_wakeup: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22342          <idle>-0     (-----) [001] .n.1 24572.475905: cpu_idle: state=4294967295 cpu_id=1
22343          <idle>-0     (-----) [001] d..2 24572.475916: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13131 next_prio=120
22344          <idle>-0     (-----) [003] .n.1 24572.475998: cpu_idle: state=4294967295 cpu_id=3
22345          <idle>-0     (-----) [003] d..2 24572.476010: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13140 next_prio=120
22346           <...>-13131 (-----) [001] d..1 24572.476022: sched_waking: comm=id.nn.benchmar pid=13140 prio=120 target_cpu=003
22347 FinalizerDaemon-13140 (13131) [003] d..2 24572.476036: sched_switch: prev_comm=id.nn.benchmar prev_pid=13140 prev_prio=120 prev_state=D|K ==> next_comm=swapper/3 next_pid=0 next_prio=120
22348 ReferenceQueueD-13139 (13131) [000] d..2 24572.476039: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
22349          <idle>-0     (-----) [003] d..1 24572.476048: cpu_idle: state=0 cpu_id=3
22350          <idle>-0     (-----) [000] d..1 24572.476051: cpu_idle: state=0 cpu_id=0
22351           <...>-13131 (-----) [001] d..2 24572.476066: sched_blocked_reason: pid=13140 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22352           <...>-13131 (-----) [001] d..2 24572.476074: sched_wakeup: comm=id.nn.benchmar pid=13140 prio=120 target_cpu=000
22353          <idle>-0     (-----) [000] .n.1 24572.476080: cpu_idle: state=4294967295 cpu_id=0
22354          <idle>-0     (-----) [000] d..2 24572.476090: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13140 next_prio=120
22355           <...>-13131 (-----) [001] d..2 24572.476098: sched_switch: prev_comm=id.nn.benchmar prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22356 FinalizerDaemon-13140 (13131) [000] d..1 24572.476108: sched_waking: comm=ReferenceQueueD pid=13139 prio=124 target_cpu=000
22357          <idle>-0     (-----) [001] d..1 24572.476113: cpu_idle: state=0 cpu_id=1
22358 FinalizerDaemon-13140 (13131) [000] d..2 24572.476131: sched_blocked_reason: pid=13139 iowait=0 caller=do_page_fault+0x4e0/0x594
22359 FinalizerDaemon-13140 (13131) [000] d..2 24572.476140: sched_wakeup: comm=ReferenceQueueD pid=13139 prio=124 target_cpu=001
22360 FinalizerDaemon-13140 (13131) [000] d..1 24572.476142: sched_waking: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22361          <idle>-0     (-----) [001] .n.1 24572.476146: cpu_idle: state=4294967295 cpu_id=1
22362 FinalizerDaemon-13140 (13131) [000] d..2 24572.476152: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22363 FinalizerDaemon-13140 (13131) [000] d..2 24572.476157: sched_wakeup: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22364          <idle>-0     (-----) [001] d..2 24572.476166: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
22365 ReferenceQueueD-13139 (13131) [001] d..2 24572.476191: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=D ==> next_comm=id.nn.benchmar next_pid=13131 next_prio=120
22366           <...>-13131 (-----) [001] d..1 24572.476195: sched_waking: comm=id.nn.benchmar pid=13140 prio=120 target_cpu=000
22367 FinalizerDaemon-13140 (13131) [000] d..2 24572.476196: sched_switch: prev_comm=id.nn.benchmar prev_pid=13140 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
22368          <idle>-0     (-----) [000] d..1 24572.476205: cpu_idle: state=0 cpu_id=0
22369           <...>-13131 (-----) [001] d..2 24572.476205: sched_blocked_reason: pid=13140 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22370           <...>-13131 (-----) [001] d..2 24572.476213: sched_wakeup: comm=id.nn.benchmar pid=13140 prio=120 target_cpu=000
22371          <idle>-0     (-----) [000] .n.1 24572.476219: cpu_idle: state=4294967295 cpu_id=0
22372          <idle>-0     (-----) [000] d..2 24572.476227: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13140 next_prio=120
22373           <...>-13131 (-----) [001] d..2 24572.476235: sched_switch: prev_comm=id.nn.benchmar prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22374 FinalizerDaemon-13140 (13131) [000] d..1 24572.476239: sched_waking: comm=ReferenceQueueD pid=13139 prio=124 target_cpu=001
22375          <idle>-0     (-----) [001] d..1 24572.476246: cpu_idle: state=0 cpu_id=1
22376 FinalizerDaemon-13140 (13131) [000] d..2 24572.476252: sched_blocked_reason: pid=13139 iowait=0 caller=do_page_fault+0x4e0/0x594
22377 FinalizerDaemon-13140 (13131) [000] d..2 24572.476260: sched_wakeup: comm=ReferenceQueueD pid=13139 prio=124 target_cpu=001
22378 FinalizerDaemon-13140 (13131) [000] d..1 24572.476262: sched_waking: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22379          <idle>-0     (-----) [001] .n.1 24572.476266: cpu_idle: state=4294967295 cpu_id=1
22380 FinalizerDaemon-13140 (13131) [000] d..2 24572.476271: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22381 FinalizerDaemon-13140 (13131) [000] d..2 24572.476275: sched_wakeup: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22382          <idle>-0     (-----) [001] d..2 24572.476283: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13131 next_prio=120
22383           <...>-13131 (-----) [001] d..2 24572.476303: sched_switch: prev_comm=id.nn.benchmar prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
22384 ReferenceQueueD-13139 (13131) [001] d..1 24572.476308: sched_waking: comm=id.nn.benchmar pid=13140 prio=120 target_cpu=000
22385 FinalizerDaemon-13140 (13131) [000] d..2 24572.476310: sched_switch: prev_comm=id.nn.benchmar prev_pid=13140 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
22386          <idle>-0     (-----) [000] d..1 24572.476318: cpu_idle: state=0 cpu_id=0
22387 ReferenceQueueD-13139 (13131) [001] d..2 24572.476319: sched_blocked_reason: pid=13140 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22388 ReferenceQueueD-13139 (13131) [001] d..2 24572.476327: sched_wakeup: comm=id.nn.benchmar pid=13140 prio=120 target_cpu=000
22389          <idle>-0     (-----) [000] .n.1 24572.476333: cpu_idle: state=4294967295 cpu_id=0
22390          <idle>-0     (-----) [000] d..2 24572.476342: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13140 next_prio=120
22391 FinalizerDaemon-13140 (13131) [000] d..1 24572.476347: sched_waking: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22392 ReferenceQueueD-13139 (13131) [001] d..2 24572.476348: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22393 FinalizerDaemon-13140 (13131) [000] d..2 24572.476358: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22394          <idle>-0     (-----) [001] d..1 24572.476361: cpu_idle: state=0 cpu_id=1
22395          <idle>-0     (-----) [001] .n.1 24572.476364: cpu_idle: state=4294967295 cpu_id=1
22396 FinalizerDaemon-13140 (13131) [000] d..2 24572.476365: sched_wakeup: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22397 FinalizerDaemon-13140 (13131) [000] d..1 24572.476368: sched_waking: comm=ReferenceQueueD pid=13139 prio=124 target_cpu=001
22398          <idle>-0     (-----) [001] d..2 24572.476378: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13131 next_prio=120
22399 FinalizerDaemon-13140 (13131) [000] d..2 24572.476383: sched_blocked_reason: pid=13139 iowait=0 caller=do_page_fault+0x4e0/0x594
22400 FinalizerDaemon-13140 (13131) [000] d..2 24572.476387: sched_wakeup: comm=ReferenceQueueD pid=13139 prio=124 target_cpu=001
22401           <...>-13131 (-----) [001] d..2 24572.476406: sched_switch: prev_comm=id.nn.benchmar prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
22402 FinalizerDaemon-13140 (13131) [000] d..2 24572.476409: sched_switch: prev_comm=id.nn.benchmar prev_pid=13140 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
22403 ReferenceQueueD-13139 (13131) [001] d..1 24572.476411: sched_waking: comm=id.nn.benchmar pid=13140 prio=120 target_cpu=000
22404          <idle>-0     (-----) [000] d..1 24572.476417: cpu_idle: state=0 cpu_id=0
22405 ReferenceQueueD-13139 (13131) [001] d..2 24572.476419: sched_blocked_reason: pid=13140 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22406 ReferenceQueueD-13139 (13131) [001] d..2 24572.476427: sched_wakeup: comm=id.nn.benchmar pid=13140 prio=120 target_cpu=000
22407          <idle>-0     (-----) [000] .n.1 24572.476433: cpu_idle: state=4294967295 cpu_id=0
22408          <idle>-0     (-----) [000] d..2 24572.476441: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13140 next_prio=120
22409 FinalizerDaemon-13140 (13131) [000] d..1 24572.476447: sched_waking: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22410 ReferenceQueueD-13139 (13131) [001] d..2 24572.476449: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22411 FinalizerDaemon-13140 (13131) [000] d..2 24572.476459: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22412          <idle>-0     (-----) [001] d..1 24572.476462: cpu_idle: state=0 cpu_id=1
22413          <idle>-0     (-----) [001] .n.1 24572.476466: cpu_idle: state=4294967295 cpu_id=1
22414 FinalizerDaemon-13140 (13131) [000] d..2 24572.476467: sched_wakeup: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22415 FinalizerDaemon-13140 (13131) [000] d..1 24572.476469: sched_waking: comm=ReferenceQueueD pid=13139 prio=124 target_cpu=001
22416          <idle>-0     (-----) [001] d..2 24572.476480: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13131 next_prio=120
22417 FinalizerDaemon-13140 (13131) [000] d..2 24572.476485: sched_blocked_reason: pid=13139 iowait=0 caller=do_page_fault+0x4e0/0x594
22418 FinalizerDaemon-13140 (13131) [000] d..2 24572.476489: sched_wakeup: comm=ReferenceQueueD pid=13139 prio=124 target_cpu=001
22419           <...>-13131 (-----) [001] d..2 24572.476510: sched_switch: prev_comm=id.nn.benchmar prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
22420 FinalizerDaemon-13140 (13131) [000] d..2 24572.476516: sched_switch: prev_comm=id.nn.benchmar prev_pid=13140 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
22421 ReferenceQueueD-13139 (13131) [001] d..1 24572.476518: sched_waking: comm=id.nn.benchmar pid=13140 prio=120 target_cpu=000
22422          <idle>-0     (-----) [000] d..1 24572.476523: cpu_idle: state=0 cpu_id=0
22423 ReferenceQueueD-13139 (13131) [001] d..2 24572.476527: sched_blocked_reason: pid=13140 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22424 ReferenceQueueD-13139 (13131) [001] d..2 24572.476534: sched_wakeup: comm=id.nn.benchmar pid=13140 prio=120 target_cpu=000
22425          <idle>-0     (-----) [000] .n.1 24572.476539: cpu_idle: state=4294967295 cpu_id=0
22426          <idle>-0     (-----) [000] d..2 24572.476548: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13140 next_prio=120
22427 ReferenceQueueD-13139 (13131) [001] d..2 24572.476558: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22428 FinalizerDaemon-13140 (13131) [000] d..1 24572.476560: sched_waking: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22429 FinalizerDaemon-13140 (13131) [000] d..2 24572.476568: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22430          <idle>-0     (-----) [001] d..1 24572.476570: cpu_idle: state=0 cpu_id=1
22431 FinalizerDaemon-13140 (13131) [000] d..2 24572.476576: sched_wakeup: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22432 FinalizerDaemon-13140 (13131) [000] d..1 24572.476578: sched_waking: comm=ReferenceQueueD pid=13139 prio=124 target_cpu=001
22433          <idle>-0     (-----) [001] .n.1 24572.476582: cpu_idle: state=4294967295 cpu_id=1
22434          <idle>-0     (-----) [001] d..2 24572.476592: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13131 next_prio=120
22435 FinalizerDaemon-13140 (13131) [000] d..2 24572.476597: sched_blocked_reason: pid=13139 iowait=0 caller=do_page_fault+0x4e0/0x594
22436 FinalizerDaemon-13140 (13131) [000] d..2 24572.476601: sched_wakeup: comm=ReferenceQueueD pid=13139 prio=124 target_cpu=001
22437           <...>-13131 (-----) [001] d..2 24572.476640: sched_switch: prev_comm=id.nn.benchmar prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
22438 FinalizerDaemon-13140 (13131) [000] d..1 24572.476663: sched_waking: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22439 FinalizerDaemon-13140 (13131) [000] d..2 24572.476682: sched_wakeup: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22440 ReferenceQueueD-13139 (13131) [001] d..2 24572.476782: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=S ==> next_comm=id.nn.benchmar next_pid=13131 next_prio=120
22441 FinalizerDaemon-13140 (13131) [000] d..2 24572.476808: sched_switch: prev_comm=FinalizerDaemon prev_pid=13140 prev_prio=124 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22442          <idle>-0     (-----) [000] d..1 24572.476823: cpu_idle: state=0 cpu_id=0
22443          <idle>-0     (-----) [000] .n.1 24572.477051: cpu_idle: state=4294967295 cpu_id=0
22444           <...>-13131 (-----) [001] d..1 24572.477054: sched_waking: comm=FinalizerDaemon pid=13140 prio=124 target_cpu=000
22445          <idle>-0     (-----) [000] d..2 24572.477061: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13141 next_prio=120
22446           <...>-13131 (-----) [001] d..2 24572.477101: sched_wakeup: comm=FinalizerDaemon pid=13140 prio=124 target_cpu=003
22447          <idle>-0     (-----) [003] .n.1 24572.477107: cpu_idle: state=4294967295 cpu_id=3
22448          <idle>-0     (-----) [003] d..2 24572.477118: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerDaemon next_pid=13140 next_prio=124
22449 FinalizerDaemon-13140 (13131) [003] d..2 24572.477174: sched_switch: prev_comm=FinalizerDaemon prev_pid=13140 prev_prio=124 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
22450          <idle>-0     (-----) [003] d..1 24572.477186: cpu_idle: state=0 cpu_id=3
22451 FinalizerWatchd-13141 (13131) [000] d..2 24572.477270: sched_switch: prev_comm=FinalizerWatchd prev_pid=13141 prev_prio=124 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22452          <idle>-0     (-----) [000] d..1 24572.477287: cpu_idle: state=0 cpu_id=0
22453          <idle>-0     (-----) [000] .n.1 24572.477435: cpu_idle: state=4294967295 cpu_id=0
22454          <idle>-0     (-----) [000] d..2 24572.477444: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13142 next_prio=120
22455  HeapTaskDaemon-13142 (13131) [000] d..1 24572.477467: sched_waking: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22456           <...>-13131 (-----) [001] d..2 24572.477476: sched_switch: prev_comm=id.nn.benchmar prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22457  HeapTaskDaemon-13142 (13131) [000] d..2 24572.477491: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22458          <idle>-0     (-----) [001] d..1 24572.477494: cpu_idle: state=0 cpu_id=1
22459          <idle>-0     (-----) [001] .n.1 24572.477499: cpu_idle: state=4294967295 cpu_id=1
22460  HeapTaskDaemon-13142 (13131) [000] d..2 24572.477500: sched_wakeup: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22461          <idle>-0     (-----) [001] d..2 24572.477516: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13131 next_prio=120
22462  HeapTaskDaemon-13142 (13131) [000] d..2 24572.477523: sched_switch: prev_comm=id.nn.benchmar prev_pid=13142 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
22463           <...>-13131 (-----) [001] d..1 24572.477529: sched_waking: comm=id.nn.benchmar pid=13142 prio=120 target_cpu=000
22464          <idle>-0     (-----) [000] d..1 24572.477532: cpu_idle: state=0 cpu_id=0
22465           <...>-13131 (-----) [001] d..2 24572.477544: sched_blocked_reason: pid=13142 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22466           <...>-13131 (-----) [001] d..2 24572.477553: sched_wakeup: comm=id.nn.benchmar pid=13142 prio=120 target_cpu=000
22467           <...>-13131 (-----) [001] d..2 24572.477678: sched_switch: prev_comm=id.nn.benchmar prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22468          <idle>-0     (-----) [000] dnH3 24572.477686: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
22469          <idle>-0     (-----) [001] d..1 24572.477691: cpu_idle: state=0 cpu_id=1
22470          <idle>-0     (-----) [000] dnH3 24572.477711: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
22471          <idle>-0     (-----) [000] dnH4 24572.477739: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
22472          <idle>-0     (-----) [003] .n.1 24572.477746: cpu_idle: state=4294967295 cpu_id=3
22473          <idle>-0     (-----) [000] dns2 24572.477748: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
22474          <idle>-0     (-----) [003] d..2 24572.477757: 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
22475          <idle>-0     (-----) [000] dns3 24572.477784: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
22476          <idle>-0     (-----) [000] .n.1 24572.477796: cpu_idle: state=4294967295 cpu_id=0
22477         sugov:0-559   (  559) [003] .... 24572.477797: clk_set_rate: pwrcl_clk 1056000000
22478          <idle>-0     (-----) [000] d..2 24572.477808: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13142 next_prio=120
22479         sugov:0-559   (  559) [003] .... 24572.477816: clk_set_rate: cpu3_pwrcl_clk 902400000
22480  HeapTaskDaemon-13142 (13131) [000] d..1 24572.477819: sched_waking: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22481         sugov:0-559   (  559) [003] .... 24572.477826: clk_set_rate: cpu2_pwrcl_clk 902400000
22482         sugov:0-559   (  559) [003] .... 24572.477833: clk_set_rate: cpu1_pwrcl_clk 902400000
22483         sugov:0-559   (  559) [003] .... 24572.477841: clk_set_rate: cpu0_pwrcl_clk 1056000000
22484  HeapTaskDaemon-13142 (13131) [000] d..2 24572.477843: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22485         sugov:0-559   (  559) [003] .... 24572.477850: cpu_frequency: state=1056000 cpu_id=0
22486  HeapTaskDaemon-13142 (13131) [000] d..2 24572.477850: sched_wakeup: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22487          <idle>-0     (-----) [001] .n.1 24572.477858: cpu_idle: state=4294967295 cpu_id=1
22488          <idle>-0     (-----) [001] d..2 24572.477869: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13131 next_prio=120
22489         sugov:0-559   (  559) [003] .... 24572.477878: cpu_frequency: state=1056000 cpu_id=1
22490           <...>-13131 (-----) [001] d..1 24572.477878: sched_waking: comm=id.nn.benchmar pid=13142 prio=120 target_cpu=000
22491  HeapTaskDaemon-13142 (13131) [000] d..2 24572.477878: sched_switch: prev_comm=id.nn.benchmar prev_pid=13142 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
22492         sugov:0-559   (  559) [003] .... 24572.477884: cpu_frequency: state=1056000 cpu_id=2
22493         sugov:0-559   (  559) [003] .... 24572.477890: cpu_frequency: state=1056000 cpu_id=3
22494           <...>-13131 (-----) [001] d..2 24572.477894: sched_blocked_reason: pid=13142 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22495           <...>-13131 (-----) [001] d..2 24572.477901: sched_wakeup: comm=id.nn.benchmar pid=13142 prio=120 target_cpu=000
22496          <idle>-0     (-----) [000] d..2 24572.477908: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13142 next_prio=120
22497         sugov:0-559   (  559) [003] d..2 24572.477912: 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
22498  HeapTaskDaemon-13142 (13131) [000] d..1 24572.477917: sched_waking: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22499           <...>-13131 (-----) [001] d..2 24572.477929: sched_switch: prev_comm=id.nn.benchmar prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22500  HeapTaskDaemon-13142 (13131) [000] d..2 24572.477937: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22501     rcu_preempt-7     (    7) [003] d..2 24572.477939: 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
22502          <idle>-0     (-----) [001] d..1 24572.477939: cpu_idle: state=0 cpu_id=1
22503          <idle>-0     (-----) [001] .n.1 24572.477943: cpu_idle: state=4294967295 cpu_id=1
22504  HeapTaskDaemon-13142 (13131) [000] d..2 24572.477944: sched_wakeup: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22505          <idle>-0     (-----) [003] d..1 24572.477949: cpu_idle: state=0 cpu_id=3
22506          <idle>-0     (-----) [001] d..2 24572.477955: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13131 next_prio=120
22507           <...>-13131 (-----) [001] d..1 24572.477962: sched_waking: comm=id.nn.benchmar pid=13142 prio=120 target_cpu=000
22508  HeapTaskDaemon-13142 (13131) [000] d..2 24572.477963: sched_switch: prev_comm=id.nn.benchmar prev_pid=13142 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
22509           <...>-13131 (-----) [001] d..2 24572.477973: sched_blocked_reason: pid=13142 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22510          <idle>-0     (-----) [000] d..1 24572.477973: cpu_idle: state=0 cpu_id=0
22511           <...>-13131 (-----) [001] d..2 24572.477980: sched_wakeup: comm=id.nn.benchmar pid=13142 prio=120 target_cpu=000
22512          <idle>-0     (-----) [000] .n.1 24572.477986: cpu_idle: state=4294967295 cpu_id=0
22513          <idle>-0     (-----) [000] d..2 24572.477995: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13142 next_prio=120
22514           <...>-13131 (-----) [001] d..2 24572.477999: sched_switch: prev_comm=id.nn.benchmar prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22515  HeapTaskDaemon-13142 (13131) [000] d..1 24572.478000: sched_waking: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22516  HeapTaskDaemon-13142 (13131) [000] d..2 24572.478007: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22517          <idle>-0     (-----) [001] d..1 24572.478009: cpu_idle: state=0 cpu_id=1
22518  HeapTaskDaemon-13142 (13131) [000] d..2 24572.478014: sched_wakeup: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22519          <idle>-0     (-----) [001] .n.1 24572.478020: cpu_idle: state=4294967295 cpu_id=1
22520          <idle>-0     (-----) [001] d..2 24572.478029: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13131 next_prio=120
22521  HeapTaskDaemon-13142 (13131) [000] d..2 24572.478037: sched_switch: prev_comm=id.nn.benchmar prev_pid=13142 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
22522           <...>-13131 (-----) [001] d..1 24572.478037: sched_waking: comm=id.nn.benchmar pid=13142 prio=120 target_cpu=000
22523           <...>-13131 (-----) [001] d..2 24572.478045: sched_blocked_reason: pid=13142 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22524          <idle>-0     (-----) [000] d..1 24572.478047: cpu_idle: state=0 cpu_id=0
22525           <...>-13131 (-----) [001] d..2 24572.478052: sched_wakeup: comm=id.nn.benchmar pid=13142 prio=120 target_cpu=000
22526          <idle>-0     (-----) [000] .n.1 24572.478058: cpu_idle: state=4294967295 cpu_id=0
22527          <idle>-0     (-----) [000] d..2 24572.478067: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13142 next_prio=120
22528           <...>-13131 (-----) [001] d..2 24572.478070: sched_switch: prev_comm=id.nn.benchmar prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22529  HeapTaskDaemon-13142 (13131) [000] d..1 24572.478078: sched_waking: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22530          <idle>-0     (-----) [001] d..1 24572.478079: cpu_idle: state=0 cpu_id=1
22531  HeapTaskDaemon-13142 (13131) [000] d..2 24572.478086: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22532  HeapTaskDaemon-13142 (13131) [000] d..2 24572.478093: sched_wakeup: comm=id.nn.benchmar pid=13131 prio=120 target_cpu=001
22533          <idle>-0     (-----) [001] .n.1 24572.478099: cpu_idle: state=4294967295 cpu_id=1
22534          <idle>-0     (-----) [001] d..2 24572.478108: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=13131 next_prio=120
22535  HeapTaskDaemon-13142 (13131) [000] d..2 24572.478233: sched_switch: prev_comm=HeapTaskDaemon prev_pid=13142 prev_prio=124 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22536          <idle>-0     (-----) [000] d..1 24572.478250: cpu_idle: state=0 cpu_id=0
22537          <idle>-0     (-----) [007] dnh2 24572.478384: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
22538          <idle>-0     (-----) [007] .n.1 24572.478389: cpu_idle: state=4294967295 cpu_id=7
22539          <idle>-0     (-----) [007] d..2 24572.478395: 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
22540         sugov:4-560   (  560) [007] .... 24572.478412: clk_set_rate: perfcl_clk 825600000
22541         sugov:4-560   (  560) [007] .... 24572.478413: clk_set_rate: cpu7_perfcl_clk 2803200000
22542         sugov:4-560   (  560) [007] .... 24572.478419: clk_set_rate: cpu6_perfcl_clk 2803200000
22543         sugov:4-560   (  560) [007] .... 24572.478423: clk_set_rate: cpu5_perfcl_clk 2803200000
22544         sugov:4-560   (  560) [007] .... 24572.478428: clk_set_rate: cpu4_perfcl_clk 825600000
22545         sugov:4-560   (  560) [007] .... 24572.478432: cpu_frequency: state=825600 cpu_id=4
22546         sugov:4-560   (  560) [007] d..2 24572.478586: 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
22547          <idle>-0     (-----) [007] d..1 24572.478599: cpu_idle: state=2 cpu_id=7
22548          <idle>-0     (-----) [003] d.s3 24572.478621: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
22549          <idle>-0     (-----) [003] ...1 24572.478642: cpu_idle: state=4294967295 cpu_id=3
22550          <idle>-0     (-----) [003] d..1 24572.478646: cpu_idle: state=0 cpu_id=3
22551          <idle>-0     (-----) [000] ...1 24572.479367: cpu_idle: state=4294967295 cpu_id=0
22552          <idle>-0     (-----) [000] d..1 24572.479372: cpu_idle: state=2 cpu_id=0
22553          <idle>-0     (-----) [007] dnh2 24572.479605: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
22554          <idle>-0     (-----) [007] .n.1 24572.479612: cpu_idle: state=4294967295 cpu_id=7
22555          <idle>-0     (-----) [007] d..2 24572.479621: 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
22556         sugov:4-560   (  560) [007] .... 24572.479631: cpu_frequency: state=825600 cpu_id=5
22557         sugov:4-560   (  560) [007] .... 24572.479636: cpu_frequency: state=825600 cpu_id=6
22558         sugov:4-560   (  560) [007] .... 24572.479639: cpu_frequency: state=825600 cpu_id=7
22559         sugov:4-560   (  560) [007] d..2 24572.479658: 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
22560          <idle>-0     (-----) [007] d..1 24572.479667: cpu_idle: state=2 cpu_id=7
22561          <idle>-0     (-----) [003] .n.1 24572.479920: cpu_idle: state=4294967295 cpu_id=3
22562          <idle>-0     (-----) [003] d..2 24572.479931: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13143 next_prio=120
22563           <...>-13131 (-----) [001] d..1 24572.479951: sched_waking: comm=id.nn.benchmark pid=13143 prio=120 target_cpu=003
22564           <...>-13143 (-----) [003] d..2 24572.479958: sched_switch: prev_comm=id.nn.benchmark prev_pid=13143 prev_prio=120 prev_state=D|K ==> next_comm=swapper/3 next_pid=0 next_prio=120
22565          <idle>-0     (-----) [003] d..1 24572.479967: cpu_idle: state=0 cpu_id=3
22566           <...>-13131 (-----) [001] d..2 24572.479973: sched_blocked_reason: pid=13143 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22567           <...>-13131 (-----) [001] d..2 24572.479982: sched_wakeup: comm=id.nn.benchmark pid=13143 prio=120 target_cpu=003
22568          <idle>-0     (-----) [003] .n.1 24572.479986: cpu_idle: state=4294967295 cpu_id=3
22569          <idle>-0     (-----) [003] d..2 24572.479996: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13143 next_prio=120
22570           <...>-13131 (-----) [001] d..2 24572.480008: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22571           <...>-13143 (-----) [003] d..1 24572.480011: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
22572          <idle>-0     (-----) [001] d..1 24572.480024: cpu_idle: state=0 cpu_id=1
22573           <...>-13143 (-----) [003] d..2 24572.480026: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22574           <...>-13143 (-----) [003] d..2 24572.480034: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
22575          <idle>-0     (-----) [001] .n.1 24572.480041: cpu_idle: state=4294967295 cpu_id=1
22576          <idle>-0     (-----) [001] d..2 24572.480052: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
22577           <...>-13143 (-----) [003] d..2 24572.480054: sched_switch: prev_comm=id.nn.benchmark prev_pid=13143 prev_prio=120 prev_state=D|K ==> next_comm=swapper/3 next_pid=0 next_prio=120
22578           <...>-13131 (-----) [001] d..1 24572.480060: sched_waking: comm=id.nn.benchmark pid=13143 prio=120 target_cpu=003
22579          <idle>-0     (-----) [003] d..1 24572.480064: cpu_idle: state=0 cpu_id=3
22580           <...>-13131 (-----) [001] d..2 24572.480068: sched_blocked_reason: pid=13143 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22581           <...>-13131 (-----) [001] d..2 24572.480075: sched_wakeup: comm=id.nn.benchmark pid=13143 prio=120 target_cpu=003
22582          <idle>-0     (-----) [003] .n.1 24572.480081: cpu_idle: state=4294967295 cpu_id=3
22583          <idle>-0     (-----) [003] d..2 24572.480091: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13143 next_prio=120
22584           <...>-13143 (-----) [003] d..1 24572.480100: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
22585           <...>-13131 (-----) [001] d..2 24572.480103: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22586          <idle>-0     (-----) [001] d..1 24572.480114: cpu_idle: state=0 cpu_id=1
22587           <...>-13143 (-----) [003] d..2 24572.480114: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22588           <...>-13143 (-----) [003] d..2 24572.480121: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
22589          <idle>-0     (-----) [001] .n.1 24572.480127: cpu_idle: state=4294967295 cpu_id=1
22590          <idle>-0     (-----) [001] d..2 24572.480137: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
22591           <...>-13143 (-----) [003] d..2 24572.480143: sched_switch: prev_comm=id.nn.benchmark prev_pid=13143 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
22592          <idle>-0     (-----) [003] d..1 24572.480152: cpu_idle: state=0 cpu_id=3
22593           <...>-13131 (-----) [001] d..1 24572.480157: sched_waking: comm=id.nn.benchmark pid=13143 prio=120 target_cpu=003
22594           <...>-13131 (-----) [001] d..2 24572.480165: sched_blocked_reason: pid=13143 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22595           <...>-13131 (-----) [001] d..2 24572.480173: sched_wakeup: comm=id.nn.benchmark pid=13143 prio=120 target_cpu=003
22596          <idle>-0     (-----) [003] .n.1 24572.480178: cpu_idle: state=4294967295 cpu_id=3
22597          <idle>-0     (-----) [003] d..2 24572.480188: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13143 next_prio=120
22598           <...>-13131 (-----) [001] d..2 24572.480192: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22599           <...>-13143 (-----) [003] d..1 24572.480192: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
22600           <...>-13143 (-----) [003] d..2 24572.480200: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22601          <idle>-0     (-----) [001] d..1 24572.480202: cpu_idle: state=0 cpu_id=1
22602           <...>-13143 (-----) [003] d..2 24572.480208: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
22603          <idle>-0     (-----) [001] .n.1 24572.480214: cpu_idle: state=4294967295 cpu_id=1
22604          <idle>-0     (-----) [001] d..2 24572.480223: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
22605           <...>-13143 (-----) [003] d..2 24572.480227: sched_switch: prev_comm=id.nn.benchmark prev_pid=13143 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
22606           <...>-13131 (-----) [001] d..1 24572.480230: sched_waking: comm=id.nn.benchmark pid=13143 prio=120 target_cpu=003
22607          <idle>-0     (-----) [003] d..1 24572.480236: cpu_idle: state=0 cpu_id=3
22608           <...>-13131 (-----) [001] d..2 24572.480237: sched_blocked_reason: pid=13143 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22609           <...>-13131 (-----) [001] d..2 24572.480245: sched_wakeup: comm=id.nn.benchmark pid=13143 prio=120 target_cpu=003
22610          <idle>-0     (-----) [003] .n.1 24572.480250: cpu_idle: state=4294967295 cpu_id=3
22611          <idle>-0     (-----) [003] d..2 24572.480260: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13143 next_prio=120
22612           <...>-13143 (-----) [003] d..1 24572.480264: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
22613           <...>-13131 (-----) [001] d..2 24572.480265: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22614           <...>-13143 (-----) [003] d..2 24572.480274: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22615          <idle>-0     (-----) [001] d..1 24572.480275: cpu_idle: state=0 cpu_id=1
22616           <...>-13143 (-----) [003] d..2 24572.480281: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
22617          <idle>-0     (-----) [001] .n.1 24572.480287: cpu_idle: state=4294967295 cpu_id=1
22618          <idle>-0     (-----) [001] d..2 24572.480296: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
22619           <...>-13143 (-----) [003] d..1 24572.480462: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
22620           <...>-13131 (-----) [001] d..2 24572.480475: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22621          <idle>-0     (-----) [001] d..1 24572.480488: cpu_idle: state=0 cpu_id=1
22622           <...>-13143 (-----) [003] d..2 24572.480488: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22623           <...>-13143 (-----) [003] d..2 24572.480497: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
22624          <idle>-0     (-----) [001] .n.1 24572.480503: cpu_idle: state=4294967295 cpu_id=1
22625          <idle>-0     (-----) [001] d..2 24572.480513: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
22626           <...>-13131 (-----) [001] d..1 24572.480550: sched_waking: comm=Binder:13131_1 pid=13143 prio=120 target_cpu=003
22627           <...>-13143 (-----) [003] d..2 24572.480573: sched_switch: prev_comm=Binder:13131_1 prev_pid=13143 prev_prio=120 prev_state=D|K ==> next_comm=swapper/3 next_pid=0 next_prio=120
22628           <...>-13131 (-----) [001] d..2 24572.480585: sched_blocked_reason: pid=13143 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22629           <...>-13131 (-----) [001] d..2 24572.480593: sched_wakeup: comm=Binder:13131_1 pid=13143 prio=120 target_cpu=003
22630          <idle>-0     (-----) [003] d..2 24572.480604: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_1 next_pid=13143 next_prio=120
22631           <...>-13131 (-----) [001] d..2 24572.480613: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22632          <idle>-0     (-----) [001] d..1 24572.480623: cpu_idle: state=0 cpu_id=1
22633           <...>-13143 (-----) [003] d..1 24572.480635: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
22634           <...>-13143 (-----) [003] d..2 24572.480646: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22635           <...>-13143 (-----) [003] d..2 24572.480655: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
22636          <idle>-0     (-----) [001] .n.1 24572.480661: cpu_idle: state=4294967295 cpu_id=1
22637          <idle>-0     (-----) [001] d..2 24572.480670: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
22638           <...>-13143 (-----) [003] d.s2 24572.480913: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
22639           <...>-13143 (-----) [003] d.s3 24572.480936: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
22640           <...>-13131 (-----) [001] d..2 24572.480947: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
22641  kworker/u16:10-23868 (23868) [001] .... 24572.481021: clk_set_rate: l3_cluster0_vote_clk 480000000
22642  kworker/u16:10-23868 (23868) [001] .... 24572.481029: clk_set_rate: l3_clk 480000000
22643           <...>-13143 (-----) [003] d..2 24572.481185: sched_switch: prev_comm=Binder:13131_1 prev_pid=13143 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
22644          <idle>-0     (-----) [003] d..1 24572.481200: cpu_idle: state=0 cpu_id=3
22645  kworker/u16:10-23868 (23868) [001] d..2 24572.481297: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
22646          <idle>-0     (-----) [000] .n.1 24572.481314: cpu_idle: state=4294967295 cpu_id=0
22647          <idle>-0     (-----) [000] d..2 24572.481336: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_1 next_pid=13144 next_prio=120
22648          <idle>-0     (-----) [003] d.s3 24572.481338: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
22649          <idle>-0     (-----) [003] d.s4 24572.481359: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
22650          <idle>-0     (-----) [003] dns4 24572.481364: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
22651  Binder:13131_2-13144 (13131) [000] d..1 24572.481365: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
22652          <idle>-0     (-----) [003] .n.1 24572.481372: cpu_idle: state=4294967295 cpu_id=3
22653          <idle>-0     (-----) [003] d..2 24572.481381: 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
22654           <...>-13131 (-----) [001] d..2 24572.481384: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22655  Binder:13131_2-13144 (13131) [000] d..2 24572.481398: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22656          <idle>-0     (-----) [001] d..1 24572.481403: cpu_idle: state=0 cpu_id=1
22657  Binder:13131_2-13144 (13131) [000] d..2 24572.481407: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
22658          <idle>-0     (-----) [001] .n.1 24572.481412: cpu_idle: state=4294967295 cpu_id=1
22659  kworker/u16:10-23868 (23868) [003] d..2 24572.481416: 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
22660          <idle>-0     (-----) [001] d..2 24572.481422: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
22661          <idle>-0     (-----) [003] d..1 24572.481425: cpu_idle: state=0 cpu_id=3
22662           <...>-13131 (-----) [001] d..1 24572.481430: sched_waking: comm=Binder:13131_1 pid=13144 prio=120 target_cpu=000
22663  Binder:13131_2-13144 (13131) [000] d..2 24572.481437: sched_switch: prev_comm=Binder:13131_1 prev_pid=13144 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
22664          <idle>-0     (-----) [000] d..1 24572.481454: cpu_idle: state=0 cpu_id=0
22665           <...>-13131 (-----) [001] d..2 24572.481454: sched_blocked_reason: pid=13144 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22666           <...>-13131 (-----) [001] d..2 24572.481463: sched_wakeup: comm=Binder:13131_1 pid=13144 prio=120 target_cpu=000
22667          <idle>-0     (-----) [000] .n.1 24572.481469: cpu_idle: state=4294967295 cpu_id=0
22668          <idle>-0     (-----) [000] d..2 24572.481480: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_1 next_pid=13144 next_prio=120
22669           <...>-13131 (-----) [001] d..2 24572.481484: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22670  Binder:13131_2-13144 (13131) [000] d..1 24572.481492: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
22671          <idle>-0     (-----) [001] d..1 24572.481495: cpu_idle: state=0 cpu_id=1
22672  Binder:13131_2-13144 (13131) [000] d..2 24572.481500: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22673  Binder:13131_2-13144 (13131) [000] d..2 24572.481508: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
22674          <idle>-0     (-----) [001] .n.1 24572.481516: cpu_idle: state=4294967295 cpu_id=1
22675          <idle>-0     (-----) [001] d..2 24572.481526: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
22676  Binder:13131_2-13144 (13131) [000] d..2 24572.481533: sched_switch: prev_comm=Binder:13131_1 prev_pid=13144 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
22677           <...>-13131 (-----) [001] d..1 24572.481534: sched_waking: comm=Binder:13131_1 pid=13144 prio=120 target_cpu=000
22678           <...>-13131 (-----) [001] d..2 24572.481543: sched_blocked_reason: pid=13144 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22679          <idle>-0     (-----) [000] d..1 24572.481544: cpu_idle: state=0 cpu_id=0
22680           <...>-13131 (-----) [001] d..2 24572.481550: sched_wakeup: comm=Binder:13131_1 pid=13144 prio=120 target_cpu=000
22681          <idle>-0     (-----) [000] .n.1 24572.481556: cpu_idle: state=4294967295 cpu_id=0
22682          <idle>-0     (-----) [000] d..2 24572.481565: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_1 next_pid=13144 next_prio=120
22683  Binder:13131_2-13144 (13131) [000] d..2 24572.481998: sched_switch: prev_comm=Binder:13131_2 prev_pid=13144 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22684          <idle>-0     (-----) [000] d..1 24572.482019: cpu_idle: state=0 cpu_id=0
22685          <idle>-0     (-----) [000] ...1 24572.483137: cpu_idle: state=4294967295 cpu_id=0
22686          <idle>-0     (-----) [000] d..1 24572.483141: cpu_idle: state=2 cpu_id=0
22687          <idle>-0     (-----) [003] d.s2 24572.484244: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
22688          <idle>-0     (-----) [003] dns3 24572.484259: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
22689          <idle>-0     (-----) [003] .n.1 24572.484277: cpu_idle: state=4294967295 cpu_id=3
22690          <idle>-0     (-----) [003] d..2 24572.484285: 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
22691     rcu_preempt-7     (    7) [003] d..2 24572.484293: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
22692     rcu_preempt-7     (    7) [003] d..3 24572.484328: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
22693     rcu_preempt-7     (    7) [003] d..2 24572.484331: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
22694     rcu_preempt-7     (    7) [003] d..3 24572.484361: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
22695     rcu_preempt-7     (    7) [003] d..2 24572.484372: 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
22696         rcuop/0-10    (   10) [003] d..2 24572.484379: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
22697         rcuop/0-10    (   10) [003] d..3 24572.484409: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
22698         rcuop/0-10    (   10) [003] d..2 24572.484414: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
22699         rcuop/0-10    (   10) [003] d..3 24572.484424: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
22700         rcuop/0-10    (   10) [003] d..2 24572.484433: 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
22701         rcuop/2-29    (   29) [003] d..2 24572.484440: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
22702         rcuop/2-29    (   29) [003] d..3 24572.484474: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
22703         rcuop/2-29    (   29) [003] d..2 24572.484484: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
22704         rcuop/1-21    (   21) [003] d..2 24572.484503: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
22705         rcuop/3-37    (   37) [003] d..2 24572.485011: 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
22706     rcu_preempt-7     (    7) [003] d..2 24572.485039: 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
22707          <idle>-0     (-----) [003] d..1 24572.485053: cpu_idle: state=0 cpu_id=3
22708           <...>-13131 (-----) [001] .... 24572.486202: binder_transaction: transaction=1668770 dest_node=3 dest_proc=587 dest_thread=0 reply=0 flags=0x10 code=0x5f504e47
22709           <...>-13131 (-----) [001] d..4 24572.486237: sched_waking: comm=servicemanager pid=587 prio=120 target_cpu=000
22710           <...>-13131 (-----) [001] dn.5 24572.486269: sched_wakeup: comm=servicemanager pid=587 prio=120 target_cpu=001
22711           <...>-13131 (-----) [001] d..2 24572.486283: sched_switch: prev_comm=re-initialized> prev_pid=13131 prev_prio=120 prev_state=R+ ==> next_comm=servicemanager next_pid=587 next_prio=120
22712<...>-587 ( 587) [001] .... 24572.486307: binder_transaction_received: transaction=1668770
22713<...>-587 ( 587) [001] .... 24572.486367: binder_transaction: transaction=1668771 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
22714<...>-587 ( 587) [001] d..2 24572.486430: sched_switch: prev_comm=servicemanager prev_pid=587 prev_prio=120 prev_state=S ==> next_comm=re-initialized> next_pid=13131 next_prio=120
22715           <...>-13131 (-----) [001] .... 24572.486440: binder_transaction_received: transaction=1668771
22716           <...>-13131 (-----) [001] .... 24572.487039: binder_transaction: transaction=1668773 dest_node=3 dest_proc=587 dest_thread=0 reply=0 flags=0x10 code=0x1
22717           <...>-13131 (-----) [001] d..4 24572.487049: sched_waking: comm=servicemanager pid=587 prio=120 target_cpu=001
22718           <...>-13131 (-----) [001] dn.5 24572.487063: sched_wakeup: comm=servicemanager pid=587 prio=120 target_cpu=001
22719           <...>-13131 (-----) [001] d..2 24572.487073: sched_switch: prev_comm=re-initialized> prev_pid=13131 prev_prio=120 prev_state=R+ ==> next_comm=servicemanager next_pid=587 next_prio=120
22720<...>-587 ( 587) [001] .... 24572.487080: binder_transaction_received: transaction=1668773
22721<...>-587 ( 587) [001] .... 24572.487591: binder_transaction: transaction=1668774 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
22722<...>-587 ( 587) [001] d..2 24572.487691: sched_switch: prev_comm=servicemanager prev_pid=587 prev_prio=120 prev_state=S ==> next_comm=re-initialized> next_pid=13131 next_prio=120
22723           <...>-13131 (-----) [001] .... 24572.487700: binder_transaction_received: transaction=1668774
22724           <...>-13131 (-----) [001] .... 24572.488296: binder_transaction: transaction=1668776 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xe
22725           <...>-13131 (-----) [001] d..4 24572.488376: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
22726           <...>-13131 (-----) [001] dn.5 24572.488408: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=001
22727           <...>-13131 (-----) [001] d..2 24572.488418: sched_switch: prev_comm=re-initialized> prev_pid=13131 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
22728  Binder:23968_C-25014 (23968) [001] .... 24572.488436: binder_transaction_received: transaction=1668776
22729  Binder:23968_C-25014 (23968) [001] d..2 24572.489531: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
22730  Binder:23968_C-25014 (23968) [001] d..3 24572.489584: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
22731          <idle>-0     (-----) [003] .n.1 24572.489590: cpu_idle: state=4294967295 cpu_id=3
22732          <idle>-0     (-----) [003] d..2 24572.489604: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=563 next_prio=130
22733     logd.writer-563   (  555) [003] d..2 24572.489835: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
22734          <idle>-0     (-----) [003] d..1 24572.489847: cpu_idle: state=0 cpu_id=3
22735          <idle>-0     (-----) [003] d.s2 24572.490909: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
22736          <idle>-0     (-----) [003] dns3 24572.490926: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
22737  Binder:23968_C-25014 (23968) [001] d.s2 24572.490929: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
22738          <idle>-0     (-----) [003] .n.1 24572.490936: cpu_idle: state=4294967295 cpu_id=3
22739          <idle>-0     (-----) [003] d..2 24572.490945: 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
22740  Binder:23968_C-25014 (23968) [001] d.s3 24572.490956: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
22741  Binder:23968_C-25014 (23968) [001] d.s2 24572.490964: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
22742     rcu_preempt-7     (    7) [003] d..2 24572.490967: 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
22743  Binder:23968_C-25014 (23968) [001] d.s3 24572.490983: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
22744  kworker/u16:10-23868 (23868) [003] d..2 24572.491191: 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
22745     rcu_preempt-7     (    7) [003] d..2 24572.491197: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
22746     rcu_preempt-7     (    7) [003] d..3 24572.491215: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
22747     rcu_preempt-7     (    7) [003] d..2 24572.491217: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
22748     rcu_preempt-7     (    7) [003] d..3 24572.491229: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
22749     rcu_preempt-7     (    7) [003] d..2 24572.491238: 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
22750         rcuop/2-29    (   29) [003] d..2 24572.491243: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
22751         rcuop/2-29    (   29) [003] d..3 24572.491253: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
22752         rcuop/2-29    (   29) [003] d..2 24572.491257: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
22753         rcuop/2-29    (   29) [003] d..3 24572.491267: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
22754         rcuop/2-29    (   29) [003] d..2 24572.491274: 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
22755         rcuop/0-10    (   10) [003] d..2 24572.491279: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
22756         rcuop/0-10    (   10) [003] d..3 24572.491291: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
22757         rcuop/0-10    (   10) [003] d..2 24572.491305: 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
22758         rcuop/1-21    (   21) [003] d..2 24572.491318: 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
22759     rcu_preempt-7     (    7) [003] d..2 24572.491329: 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
22760         rcuop/3-37    (   37) [003] d..2 24572.491380: 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
22761          <idle>-0     (-----) [003] d..1 24572.491396: cpu_idle: state=2 cpu_id=3
22762          <idle>-0     (-----) [003] d.s3 24572.491941: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
22763          <idle>-0     (-----) [003] d.s4 24572.491959: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
22764          <idle>-0     (-----) [003] dns4 24572.491965: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
22765          <idle>-0     (-----) [003] .n.1 24572.491976: cpu_idle: state=4294967295 cpu_id=3
22766          <idle>-0     (-----) [003] d..2 24572.491989: 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
22767  kworker/u16:10-23868 (23868) [003] .... 24572.492100: clk_set_rate: l3_cluster0_vote_clk 844800000
22768  kworker/u16:10-23868 (23868) [003] .... 24572.492107: clk_set_rate: l3_clk 844800000
22769  kworker/u16:10-23868 (23868) [003] d..2 24572.492160: 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
22770          <idle>-0     (-----) [003] d..1 24572.492178: cpu_idle: state=0 cpu_id=3
22771  Binder:23968_C-25014 (23968) [001] .... 24572.492878: binder_transaction: transaction=1668779 dest_node=1668777 dest_proc=13131 dest_thread=0 reply=0 flags=0x11 code=0x4
22772  Binder:23968_C-25014 (23968) [001] d..4 24572.493039: sched_waking: comm=Binder:13131_2 pid=13144 prio=120 target_cpu=000
22773  Binder:23968_C-25014 (23968) [001] d..5 24572.493082: sched_wakeup: comm=Binder:13131_2 pid=13144 prio=120 target_cpu=003
22774          <idle>-0     (-----) [003] .n.1 24572.493087: cpu_idle: state=4294967295 cpu_id=3
22775          <idle>-0     (-----) [003] d..2 24572.493097: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_2 next_pid=13144 next_prio=120
22776  Binder:13131_2-13144 (13131) [003] .... 24572.493106: binder_transaction_received: transaction=1668779
22777  Binder:23968_C-25014 (23968) [001] d..3 24572.493959: sched_waking: comm=lmkd pid=808 prio=98 target_cpu=002
22778  Binder:23968_C-25014 (23968) [001] d..4 24572.493985: sched_wakeup: comm=lmkd pid=808 prio=98 target_cpu=002
22779  Binder:23968_C-25014 (23968) [001] .... 24572.494056: binder_transaction: transaction=1668801 dest_node=1668777 dest_proc=13131 dest_thread=0 reply=0 flags=0x11 code=0x27
22780          <idle>-0     (-----) [002] .n.1 24572.494177: cpu_idle: state=4294967295 cpu_id=2
22781          <idle>-0     (-----) [002] d..2 24572.494198: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=808 next_prio=98
22782  Binder:23968_C-25014 (23968) [001] d..2 24572.494256: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
22783  Binder:23968_C-25014 (23968) [001] d..3 24572.494292: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
22784  Binder:23968_C-25014 (23968) [001] d..3 24572.494352: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=001
22785  Binder:23968_C-25014 (23968) [001] d..4 24572.494381: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=000
22786  Binder:23968_C-25014 (23968) [001] d..2 24572.494464: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=000
22787  Binder:23968_C-25014 (23968) [001] d..3 24572.494482: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=000
22788          <idle>-0     (-----) [000] .n.1 24572.494550: cpu_idle: state=4294967295 cpu_id=0
22789          <idle>-0     (-----) [000] d..2 24572.494570: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
22790  Binder:23968_C-25014 (23968) [001] d..1 24572.494626: sched_waking: comm=batterystats-wo pid=23998 prio=120 target_cpu=000
22791<...>-23994 ( 23968) [000] d..2 24572.494666: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=statsd.writer next_pid=1044 next_prio=120
22792  Binder:23968_C-25014 (23968) [001] d.h3 24572.494728: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
22793  Binder:23968_C-25014 (23968) [001] d.h3 24572.494740: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
22794  Binder:23968_C-25014 (23968) [001] d.h4 24572.494761: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
22795<...>-1044 ( 887) [000] d..2 24572.494773: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
22796         sugov:0-559   (  559) [000] d..2 24572.494797: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=statsd.writer next_pid=1044 next_prio=120
22797  Binder:23968_C-25014 (23968) [001] d..1 24572.494847: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=000
22798  Binder:23968_C-25014 (23968) [001] d..2 24572.494889: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=000
22799<...>-1044 ( 887) [000] d..2 24572.494947: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=23994 next_prio=118
22800<...>-23994 ( 23968) [000] d..3 24572.495035: sched_waking: comm=android.bg pid=23992 prio=130 target_cpu=001
22801  Binder:23968_C-25014 (23968) [001] .... 24572.495060: binder_transaction: transaction=1668802 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
22802<...>-23994 ( 23968) [000] d..4 24572.495074: sched_wakeup: comm=android.bg pid=23992 prio=130 target_cpu=000
22803  Binder:23968_C-25014 (23968) [001] d..2 24572.495106: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=re-initialized> next_pid=13131 next_prio=120
22804<...>-23994 ( 23968) [000] d..3 24572.495109: sched_waking: comm=android.fg pid=24001 prio=120 target_cpu=000
22805           <...>-13131 (-----) [001] .... 24572.495120: binder_transaction_received: transaction=1668802
22806<...>-23994 ( 23968) [000] d..4 24572.495145: sched_wakeup: comm=android.fg pid=24001 prio=120 target_cpu=000
22807            lmkd-808   (  808) [002] d..2 24572.495299: sched_switch: prev_comm=lmkd prev_pid=808 prev_prio=98 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
22808<...>-23994 ( 23968) [000] d..3 24572.495310: sched_waking: comm=tworkPolicy.uid pid=24082 prio=118 target_cpu=000
22809           <...>-13131 (-----) [001] d..2 24572.495315: sched_switch: prev_comm=re-initialized> prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
22810          <idle>-0     (-----) [001] d..1 24572.495334: cpu_idle: state=0 cpu_id=1
22811<...>-23994 ( 23968) [000] d..4 24572.495341: sched_wakeup: comm=tworkPolicy.uid pid=24082 prio=118 target_cpu=001
22812          <idle>-0     (-----) [001] .n.1 24572.495348: cpu_idle: state=4294967295 cpu_id=1
22813          <idle>-0     (-----) [001] d..2 24572.495360: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=tworkPolicy.uid next_pid=24082 next_prio=118
22814     logd.writer-563   (  555) [002] d..2 24572.495411: 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
22815<...>-23994 ( 23968) [000] .... 24572.495416: binder_transaction: transaction=1668803 dest_node=1288677 dest_proc=24119 dest_thread=0 reply=0 flags=0x11 code=0x4
22816<...>-23994 ( 23968) [000] d..4 24572.495429: sched_waking: comm=Binder:24119_4 pid=24523 prio=120 target_cpu=002
22817          <idle>-0     (-----) [002] d..1 24572.495434: cpu_idle: state=0 cpu_id=2
22818          <idle>-0     (-----) [006] dnh2 24572.495467: sched_wakeup: comm=batterystats-wo pid=23998 prio=120 target_cpu=006
22819<...>-23994 ( 23968) [000] d..5 24572.495470: sched_wakeup: comm=Binder:24119_4 pid=24523 prio=120 target_cpu=001
22820          <idle>-0     (-----) [006] .n.1 24572.495477: cpu_idle: state=4294967295 cpu_id=6
22821          <idle>-0     (-----) [006] d..2 24572.495492: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=batterystats-wo next_pid=23998 next_prio=120
22822          <idle>-0     (-----) [007] dnh2 24572.495511: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
22823          <idle>-0     (-----) [007] .n.1 24572.495520: cpu_idle: state=4294967295 cpu_id=7
22824          <idle>-0     (-----) [007] d..2 24572.495531: 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
22825<...>-23994 ( 23968) [000] .... 24572.495534: binder_transaction: transaction=1668804 dest_node=1279661 dest_proc=24119 dest_thread=0 reply=0 flags=0x11 code=0x4
22826<...>-23994 ( 23968) [000] d..4 24572.495543: sched_waking: comm=Binder:24119_3 pid=24159 prio=120 target_cpu=001
22827         sugov:4-560   (  560) [007] d..2 24572.495554: 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
22828          <idle>-0     (-----) [007] d..1 24572.495565: cpu_idle: state=2 cpu_id=7
22829<...>-23994 ( 23968) [000] d..5 24572.495565: sched_wakeup: comm=Binder:24119_3 pid=24159 prio=120 target_cpu=001
22830 batterystats-wo-23998 (23968) [006] d..2 24572.495605: sched_switch: prev_comm=batterystats-wo prev_pid=23998 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
22831<...>-23994 ( 23968) [000] d..3 24572.495608: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=003
22832          <idle>-0     (-----) [006] d..1 24572.495617: cpu_idle: state=2 cpu_id=6
22833<...>-23994 ( 23968) [000] d..4 24572.495635: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=002
22834          <idle>-0     (-----) [002] .n.1 24572.495643: cpu_idle: state=4294967295 cpu_id=2
22835          <idle>-0     (-----) [002] d..2 24572.495657: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
22836<...>-23994 ( 23968) [000] .... 24572.495700: binder_transaction: transaction=1668805 dest_node=1274736 dest_proc=862 dest_thread=0 reply=0 flags=0x11 code=0x2
22837<...>-23994 ( 23968) [000] d..4 24572.495713: sched_waking: comm=Binder:862_4 pid=5596 prio=120 target_cpu=003
22838<...>-23994 ( 23968) [000] d.h5 24572.495787: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
22839<...>-23994 ( 23968) [000] d.h5 24572.495798: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
22840<...>-23994 ( 23968) [000] d.h6 24572.495814: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
22841<...>-23968 ( 23968) [002] d..2 24572.495827: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
22842         sugov:0-559   (  559) [002] d..2 24572.495846: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
22843<...>-23994 ( 23968) [000] d..1 24572.495890: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=002
22844<...>-23968 ( 23968) [002] d..2 24572.495903: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22845          <idle>-0     (-----) [002] d..1 24572.495918: cpu_idle: state=0 cpu_id=2
22846<...>-23994 ( 23968) [000] d..2 24572.495922: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=002
22847          <idle>-0     (-----) [002] .n.1 24572.495923: cpu_idle: state=4294967295 cpu_id=2
22848          <idle>-0     (-----) [002] d..2 24572.495936: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
22849<...>-23994 ( 23968) [000] d..2 24572.495974: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=android.bg next_pid=23992 next_prio=130
22850<...>-23968 ( 23968) [002] d..2 24572.496010: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22851          <idle>-0     (-----) [002] d..1 24572.496022: cpu_idle: state=0 cpu_id=2
22852<...>-23992 ( 23968) [000] d..2 24572.496130: sched_switch: prev_comm=android.bg prev_pid=23992 prev_prio=130 prev_state=S ==> next_comm=android.fg next_pid=24001 next_prio=120
22853          <idle>-0     (-----) [004] dnh2 24572.496179: sched_wakeup: comm=Binder:862_4 pid=5596 prio=120 target_cpu=004
22854          <idle>-0     (-----) [004] .n.1 24572.496188: cpu_idle: state=4294967295 cpu_id=4
22855          <idle>-0     (-----) [004] d..2 24572.496205: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:862_4 next_pid=5596 next_prio=120
22856          <idle>-0     (-----) [007] dnh2 24572.496206: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
22857          <idle>-0     (-----) [007] .n.1 24572.496213: cpu_idle: state=4294967295 cpu_id=7
22858    Binder:862_4-5596  (  862) [004] .... 24572.496217: binder_transaction_received: transaction=1668805
22859          <idle>-0     (-----) [007] d..2 24572.496223: 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
22860         sugov:4-560   (  560) [007] d..2 24572.496242: 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
22861          <idle>-0     (-----) [007] d..1 24572.496251: cpu_idle: state=2 cpu_id=7
22862      android.fg-24001 (23968) [000] d..2 24572.496327: sched_switch: prev_comm=android.fg prev_pid=24001 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22863          <idle>-0     (-----) [000] d..1 24572.496346: cpu_idle: state=0 cpu_id=0
22864 tworkPolicy.uid-24082 (23968) [001] d..2 24572.496361: sched_waking: comm=netd pid=23915 prio=120 target_cpu=006
22865    Binder:862_4-5596  (  862) [004] d..2 24572.496363: sched_switch: prev_comm=Binder:862_4 prev_pid=5596 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
22866          <idle>-0     (-----) [004] d..1 24572.496378: cpu_idle: state=2 cpu_id=4
22867 tworkPolicy.uid-24082 (23968) [001] d..3 24572.496423: sched_wakeup: comm=netd pid=23915 prio=120 target_cpu=001
22868 tworkPolicy.uid-24082 (23968) [001] d.h3 24572.496465: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
22869 tworkPolicy.uid-24082 (23968) [001] d.h3 24572.496476: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
22870 tworkPolicy.uid-24082 (23968) [001] d.h4 24572.496487: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
22871          <idle>-0     (-----) [002] .n.1 24572.496493: cpu_idle: state=4294967295 cpu_id=2
22872          <idle>-0     (-----) [002] d..2 24572.496502: 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
22873 tworkPolicy.uid-24082 (23968) [001] d..2 24572.496535: sched_switch: prev_comm=tworkPolicy.uid prev_pid=24082 prev_prio=118 prev_state=S ==> next_comm=Binder:24119_4 next_pid=24523 next_prio=120
22874  Binder:24119_4-24523 (24119) [001] .... 24572.496549: binder_transaction_received: transaction=1668803
22875         sugov:0-559   (  559) [002] d..2 24572.496560: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=netd next_pid=23915 next_prio=120
22876            netd-23915 (23895) [002] d..2 24572.496702: sched_waking: comm=tworkPolicy.uid pid=24082 prio=118 target_cpu=001
22877            netd-23915 (23895) [002] d..3 24572.496723: sched_wakeup: comm=tworkPolicy.uid pid=24082 prio=118 target_cpu=002
22878  Binder:24119_4-24523 (24119) [001] d..3 24572.496764: sched_waking: comm=droid.bluetooth pid=24119 prio=120 target_cpu=002
22879  Binder:24119_4-24523 (24119) [001] d..4 24572.496791: sched_wakeup: comm=droid.bluetooth pid=24119 prio=120 target_cpu=002
22880          <idle>-0     (-----) [007] dnh2 24572.496812: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
22881          <idle>-0     (-----) [007] .n.1 24572.496819: cpu_idle: state=4294967295 cpu_id=7
22882          <idle>-0     (-----) [007] d..2 24572.496828: 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
22883         sugov:4-560   (  560) [007] d..2 24572.496845: 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
22884          <idle>-0     (-----) [007] d..1 24572.496855: cpu_idle: state=0 cpu_id=7
22885  Binder:24119_4-24523 (24119) [001] d..2 24572.496867: sched_switch: prev_comm=Binder:24119_4 prev_pid=24523 prev_prio=120 prev_state=S ==> next_comm=Binder:24119_3 next_pid=24159 next_prio=120
22886  Binder:24119_3-24159 (24119) [001] .... 24572.496876: binder_transaction_received: transaction=1668804
22887            netd-23915 (23895) [002] d..2 24572.496895: sched_switch: prev_comm=netd prev_pid=23915 prev_prio=120 prev_state=S ==> next_comm=droid.bluetooth next_pid=24119 next_prio=120
22888 droid.bluetooth-24119 (24119) [002] d..2 24572.496982: sched_switch: prev_comm=droid.bluetooth prev_pid=24119 prev_prio=120 prev_state=S ==> next_comm=tworkPolicy.uid next_pid=24082 next_prio=118
22889  Binder:24119_3-24159 (24119) [001] d..2 24572.497089: sched_switch: prev_comm=Binder:24119_3 prev_pid=24159 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
22890          <idle>-0     (-----) [001] d..1 24572.497105: cpu_idle: state=0 cpu_id=1
22891 tworkPolicy.uid-24082 (23968) [002] d..2 24572.497107: sched_switch: prev_comm=tworkPolicy.uid prev_pid=24082 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22892          <idle>-0     (-----) [002] d..1 24572.497122: cpu_idle: state=0 cpu_id=2
22893  Binder:13131_2-13144 (13131) [003] d.H2 24572.497703: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
22894  Binder:13131_2-13144 (13131) [003] d.H2 24572.497719: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
22895          <idle>-0     (-----) [007] dnh2 24572.497726: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
22896          <idle>-0     (-----) [007] .n.1 24572.497730: cpu_idle: state=4294967295 cpu_id=7
22897  Binder:13131_2-13144 (13131) [003] d.H3 24572.497733: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
22898          <idle>-0     (-----) [007] d..2 24572.497737: 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
22899  Binder:13131_2-13144 (13131) [003] d.s1 24572.497739: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
22900          <idle>-0     (-----) [002] .n.1 24572.497740: cpu_idle: state=4294967295 cpu_id=2
22901         sugov:4-560   (  560) [007] d..2 24572.497751: 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
22902          <idle>-0     (-----) [002] d..2 24572.497752: 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
22903          <idle>-0     (-----) [007] d..1 24572.497758: cpu_idle: state=0 cpu_id=7
22904  Binder:13131_2-13144 (13131) [003] d.s2 24572.497773: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
22905         sugov:0-559   (  559) [002] .... 24572.497794: clk_set_rate: pwrcl_clk 1324800000
22906         sugov:0-559   (  559) [002] .... 24572.497814: clk_set_rate: cpu3_pwrcl_clk 1056000000
22907         sugov:0-559   (  559) [002] .... 24572.497826: clk_set_rate: cpu2_pwrcl_clk 1056000000
22908         sugov:0-559   (  559) [002] .... 24572.497834: clk_set_rate: cpu1_pwrcl_clk 1056000000
22909         sugov:0-559   (  559) [002] .... 24572.497842: clk_set_rate: cpu0_pwrcl_clk 1324800000
22910         sugov:0-559   (  559) [002] .... 24572.497854: cpu_frequency: state=1324800 cpu_id=0
22911         sugov:0-559   (  559) [002] .... 24572.497891: cpu_frequency: state=1324800 cpu_id=1
22912         sugov:0-559   (  559) [002] .... 24572.497896: cpu_frequency: state=1324800 cpu_id=2
22913         sugov:0-559   (  559) [002] .... 24572.497898: cpu_frequency: state=1324800 cpu_id=3
22914         sugov:0-559   (  559) [002] d..2 24572.497913: 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
22915     rcu_preempt-7     (    7) [002] d..2 24572.497945: 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
22916          <idle>-0     (-----) [002] d..1 24572.497954: cpu_idle: state=0 cpu_id=2
22917          <idle>-0     (-----) [001] ...1 24572.498223: cpu_idle: state=4294967295 cpu_id=1
22918          <idle>-0     (-----) [001] d..1 24572.498227: cpu_idle: state=2 cpu_id=1
22919          <idle>-0     (-----) [007] ...1 24572.498771: cpu_idle: state=4294967295 cpu_id=7
22920          <idle>-0     (-----) [007] d..1 24572.498775: cpu_idle: state=2 cpu_id=7
22921  Binder:13131_2-13144 (13131) [003] d..3 24572.499610: sched_waking: comm=re-initialized> pid=13131 prio=120 target_cpu=001
22922  Binder:13131_2-13144 (13131) [003] d..4 24572.499646: sched_wakeup: comm=re-initialized> pid=13131 prio=120 target_cpu=000
22923          <idle>-0     (-----) [000] .n.1 24572.499653: cpu_idle: state=4294967295 cpu_id=0
22924          <idle>-0     (-----) [000] d..2 24572.499663: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=re-initialized> next_pid=13131 next_prio=120
22925  Binder:13131_2-13144 (13131) [003] d..4 24572.499968: sched_waking: comm=Binder:13131_1 pid=13143 prio=120 target_cpu=003
22926  Binder:13131_2-13144 (13131) [003] dn.5 24572.499992: sched_wakeup: comm=Binder:13131_1 pid=13143 prio=120 target_cpu=003
22927  Binder:13131_2-13144 (13131) [003] d..2 24572.500000: sched_switch: prev_comm=Binder:13131_2 prev_pid=13144 prev_prio=120 prev_state=R+ ==> next_comm=Binder:13131_1 next_pid=13143 next_prio=120
22928           <...>-13143 (-----) [003] .... 24572.500008: binder_transaction_received: transaction=1668801
22929           <...>-13131 (-----) [000] d..2 24572.500081: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
22930           <...>-13143 (-----) [003] d..1 24572.500089: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
22931          <idle>-0     (-----) [000] d..1 24572.500095: cpu_idle: state=0 cpu_id=0
22932           <...>-13143 (-----) [003] d..2 24572.500098: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22933           <...>-13143 (-----) [003] d..2 24572.500105: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
22934          <idle>-0     (-----) [000] .n.1 24572.500112: cpu_idle: state=4294967295 cpu_id=0
22935           <...>-13143 (-----) [003] d..2 24572.500119: sched_switch: prev_comm=Binder:13131_1 prev_pid=13143 prev_prio=120 prev_state=D|K ==> next_comm=Binder:13131_2 next_pid=13144 next_prio=120
22936          <idle>-0     (-----) [000] d..2 24572.500121: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
22937           <...>-13131 (-----) [000] d..1 24572.500127: sched_waking: comm=Binder:13131_1 pid=13143 prio=120 target_cpu=003
22938           <...>-13131 (-----) [000] d..2 24572.500141: sched_blocked_reason: pid=13143 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22939           <...>-13131 (-----) [000] d..2 24572.500149: sched_wakeup: comm=Binder:13131_1 pid=13143 prio=120 target_cpu=003
22940  Binder:13131_2-13144 (13131) [003] d..2 24572.500155: sched_switch: prev_comm=Binder:13131_2 prev_pid=13144 prev_prio=120 prev_state=S ==> next_comm=Binder:13131_1 next_pid=13143 next_prio=120
22941           <...>-13143 (-----) [003] d..1 24572.500180: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
22942           <...>-13131 (-----) [000] d..2 24572.500184: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
22943           <...>-13143 (-----) [003] d..2 24572.500192: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22944          <idle>-0     (-----) [000] d..1 24572.500193: cpu_idle: state=2 cpu_id=0
22945           <...>-13143 (-----) [003] d..2 24572.500198: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
22946          <idle>-0     (-----) [000] .n.1 24572.500210: cpu_idle: state=4294967295 cpu_id=0
22947           <...>-13143 (-----) [003] d..2 24572.500214: sched_switch: prev_comm=Binder:13131_1 prev_pid=13143 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
22948          <idle>-0     (-----) [000] d..2 24572.500219: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
22949           <...>-13131 (-----) [000] d..1 24572.500226: sched_waking: comm=Binder:13131_1 pid=13143 prio=120 target_cpu=003
22950           <...>-13131 (-----) [000] d..2 24572.500235: sched_blocked_reason: pid=13143 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22951          <idle>-0     (-----) [003] dn.1 24572.500238: cpu_idle: state=0 cpu_id=3
22952           <...>-13131 (-----) [000] d..2 24572.500242: sched_wakeup: comm=Binder:13131_1 pid=13143 prio=120 target_cpu=003
22953          <idle>-0     (-----) [003] .n.1 24572.500246: cpu_idle: state=4294967295 cpu_id=3
22954          <idle>-0     (-----) [003] d..2 24572.500255: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_1 next_pid=13143 next_prio=120
22955           <...>-13143 (-----) [003] d..1 24572.500259: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
22956           <...>-13131 (-----) [000] d..2 24572.500263: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
22957           <...>-13143 (-----) [003] d..2 24572.500270: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22958          <idle>-0     (-----) [000] dn.1 24572.500273: cpu_idle: state=0 cpu_id=0
22959          <idle>-0     (-----) [000] .n.1 24572.500276: cpu_idle: state=4294967295 cpu_id=0
22960           <...>-13143 (-----) [003] d..2 24572.500276: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
22961          <idle>-0     (-----) [000] d..2 24572.500286: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
22962           <...>-13131 (-----) [000] d..2 24572.500309: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
22963           <...>-13143 (-----) [003] d..1 24572.500310: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
22964           <...>-13143 (-----) [003] d..2 24572.500316: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22965          <idle>-0     (-----) [000] d..1 24572.500318: cpu_idle: state=0 cpu_id=0
22966           <...>-13143 (-----) [003] d..2 24572.500323: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
22967          <idle>-0     (-----) [000] .n.1 24572.500328: cpu_idle: state=4294967295 cpu_id=0
22968          <idle>-0     (-----) [000] d..2 24572.500335: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
22969           <...>-13143 (-----) [003] d..2 24572.500340: sched_switch: prev_comm=Binder:13131_1 prev_pid=13143 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
22970           <...>-13131 (-----) [000] d..1 24572.500341: sched_waking: comm=Binder:13131_1 pid=13143 prio=120 target_cpu=003
22971           <...>-13131 (-----) [000] d..2 24572.500348: sched_blocked_reason: pid=13143 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22972          <idle>-0     (-----) [003] d..1 24572.500350: cpu_idle: state=0 cpu_id=3
22973          <idle>-0     (-----) [003] .n.1 24572.500353: cpu_idle: state=4294967295 cpu_id=3
22974           <...>-13131 (-----) [000] d..2 24572.500354: sched_wakeup: comm=Binder:13131_1 pid=13143 prio=120 target_cpu=003
22975          <idle>-0     (-----) [003] d..2 24572.500365: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_1 next_pid=13143 next_prio=120
22976           <...>-13143 (-----) [003] d..1 24572.500369: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
22977           <...>-13131 (-----) [000] d..2 24572.500371: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
22978           <...>-13143 (-----) [003] d..2 24572.500378: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22979          <idle>-0     (-----) [000] d..1 24572.500379: cpu_idle: state=0 cpu_id=0
22980           <...>-13143 (-----) [003] d..2 24572.500384: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
22981          <idle>-0     (-----) [000] .n.1 24572.500390: cpu_idle: state=4294967295 cpu_id=0
22982          <idle>-0     (-----) [000] d..2 24572.500397: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
22983           <...>-13143 (-----) [003] d..2 24572.500400: sched_switch: prev_comm=Binder:13131_1 prev_pid=13143 prev_prio=120 prev_state=D|K ==> next_comm=swapper/3 next_pid=0 next_prio=120
22984           <...>-13131 (-----) [000] d..1 24572.500404: sched_waking: comm=Binder:13131_1 pid=13143 prio=120 target_cpu=003
22985          <idle>-0     (-----) [003] d..1 24572.500409: cpu_idle: state=0 cpu_id=3
22986           <...>-13131 (-----) [000] d..2 24572.500410: sched_blocked_reason: pid=13143 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22987           <...>-13131 (-----) [000] d..2 24572.500416: sched_wakeup: comm=Binder:13131_1 pid=13143 prio=120 target_cpu=003
22988          <idle>-0     (-----) [003] .n.1 24572.500421: cpu_idle: state=4294967295 cpu_id=3
22989          <idle>-0     (-----) [003] d..2 24572.500429: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_1 next_pid=13143 next_prio=120
22990           <...>-13131 (-----) [000] d..2 24572.500436: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
22991           <...>-13143 (-----) [003] d..1 24572.500442: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
22992          <idle>-0     (-----) [000] d..1 24572.500444: cpu_idle: state=0 cpu_id=0
22993           <...>-13143 (-----) [003] d..2 24572.500448: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
22994           <...>-13143 (-----) [003] d..2 24572.500454: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
22995          <idle>-0     (-----) [000] .n.1 24572.500459: cpu_idle: state=4294967295 cpu_id=0
22996          <idle>-0     (-----) [000] d..2 24572.500467: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
22997           <...>-13143 (-----) [003] d..2 24572.500472: sched_switch: prev_comm=Binder:13131_1 prev_pid=13143 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
22998           <...>-13131 (-----) [000] d..1 24572.500473: sched_waking: comm=Binder:13131_1 pid=13143 prio=120 target_cpu=003
22999           <...>-13131 (-----) [000] d..2 24572.500479: sched_blocked_reason: pid=13143 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
23000          <idle>-0     (-----) [003] d..1 24572.500481: cpu_idle: state=0 cpu_id=3
23001           <...>-13131 (-----) [000] d..2 24572.500486: sched_wakeup: comm=Binder:13131_1 pid=13143 prio=120 target_cpu=003
23002          <idle>-0     (-----) [003] .n.1 24572.500491: cpu_idle: state=4294967295 cpu_id=3
23003          <idle>-0     (-----) [003] d..2 24572.500499: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_1 next_pid=13143 next_prio=120
23004           <...>-13143 (-----) [003] d..1 24572.500503: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
23005           <...>-13131 (-----) [000] d..2 24572.500512: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
23006           <...>-13143 (-----) [003] d..2 24572.500520: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
23007          <idle>-0     (-----) [000] d..1 24572.500521: cpu_idle: state=0 cpu_id=0
23008           <...>-13143 (-----) [003] d..2 24572.500526: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
23009          <idle>-0     (-----) [000] .n.1 24572.500532: cpu_idle: state=4294967295 cpu_id=0
23010          <idle>-0     (-----) [000] d..2 24572.500540: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23011          <idle>-0     (-----) [002] .n.1 24572.500622: cpu_idle: state=4294967295 cpu_id=2
23012          <idle>-0     (-----) [002] d..2 24572.500631: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_1 next_pid=13145 next_prio=120
23013           <...>-13131 (-----) [000] d..1 24572.500668: sched_waking: comm=Binder:13131_1 pid=13145 prio=120 target_cpu=002
23014           <...>-13145 (-----) [002] d..2 24572.500675: sched_switch: prev_comm=Binder:13131_1 prev_pid=13145 prev_prio=120 prev_state=D|K ==> next_comm=swapper/2 next_pid=0 next_prio=120
23015           <...>-13143 (-----) [003] d..2 24572.500680: sched_switch: prev_comm=Binder:13131_1 prev_pid=13143 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23016          <idle>-0     (-----) [002] d..1 24572.500684: cpu_idle: state=0 cpu_id=2
23017          <idle>-0     (-----) [003] d..1 24572.500695: cpu_idle: state=0 cpu_id=3
23018           <...>-13131 (-----) [000] d..2 24572.500702: sched_blocked_reason: pid=13145 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
23019           <...>-13131 (-----) [000] d..2 24572.500709: sched_wakeup: comm=Binder:13131_1 pid=13145 prio=120 target_cpu=003
23020          <idle>-0     (-----) [003] .n.1 24572.500714: cpu_idle: state=4294967295 cpu_id=3
23021          <idle>-0     (-----) [003] d..2 24572.500723: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_1 next_pid=13145 next_prio=120
23022           <...>-13145 (-----) [003] d..1 24572.500733: sched_waking: comm=Binder:13131_1 pid=13143 prio=120 target_cpu=003
23023           <...>-13131 (-----) [000] d..2 24572.500733: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
23024          <idle>-0     (-----) [000] d..1 24572.500744: cpu_idle: state=0 cpu_id=0
23025           <...>-13145 (-----) [003] d..2 24572.500750: sched_blocked_reason: pid=13143 iowait=0 caller=do_page_fault+0x4e0/0x594
23026           <...>-13145 (-----) [003] d..2 24572.500757: sched_wakeup: comm=Binder:13131_1 pid=13143 prio=120 target_cpu=000
23027           <...>-13145 (-----) [003] d..1 24572.500759: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
23028          <idle>-0     (-----) [000] .n.1 24572.500763: cpu_idle: state=4294967295 cpu_id=0
23029           <...>-13145 (-----) [003] d..2 24572.500766: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
23030           <...>-13145 (-----) [003] d..2 24572.500769: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
23031          <idle>-0     (-----) [000] d..2 24572.500776: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_1 next_pid=13143 next_prio=120
23032           <...>-13145 (-----) [003] d..2 24572.500802: sched_switch: prev_comm=Binder:13131_1 prev_pid=13145 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23033          <idle>-0     (-----) [003] d..1 24572.500811: cpu_idle: state=0 cpu_id=3
23034           <...>-13143 (-----) [000] d.s2 24572.500918: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
23035           <...>-13143 (-----) [000] d.s3 24572.500952: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23036          <idle>-0     (-----) [002] .n.1 24572.500957: cpu_idle: state=4294967295 cpu_id=2
23037          <idle>-0     (-----) [002] d..2 24572.500967: 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
23038           <...>-13143 (-----) [000] d..2 24572.501055: sched_switch: prev_comm=Binder:13131_1 prev_pid=13143 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23039           <...>-13131 (-----) [000] d..1 24572.501063: sched_waking: comm=Binder:13131_1 pid=13145 prio=120 target_cpu=003
23040           <...>-13131 (-----) [000] d..2 24572.501071: sched_blocked_reason: pid=13145 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
23041           <...>-13131 (-----) [000] d..2 24572.501077: sched_wakeup: comm=Binder:13131_1 pid=13145 prio=120 target_cpu=003
23042          <idle>-0     (-----) [003] .n.1 24572.501083: cpu_idle: state=4294967295 cpu_id=3
23043          <idle>-0     (-----) [003] d..2 24572.501093: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_1 next_pid=13145 next_prio=120
23044           <...>-13145 (-----) [003] d..1 24572.501097: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
23045           <...>-13131 (-----) [000] d..2 24572.501106: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
23046           <...>-13145 (-----) [003] d..2 24572.501114: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
23047           <...>-13145 (-----) [003] d..2 24572.501120: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
23048           <...>-13145 (-----) [003] d..2 24572.501140: sched_switch: prev_comm=Binder:13131_1 prev_pid=13145 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23049          <idle>-0     (-----) [000] d..2 24572.501145: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23050          <idle>-0     (-----) [003] d..1 24572.501148: cpu_idle: state=0 cpu_id=3
23051           <...>-13131 (-----) [000] d..1 24572.501150: sched_waking: comm=Binder:13131_1 pid=13145 prio=120 target_cpu=003
23052           <...>-13131 (-----) [000] d..2 24572.501158: sched_blocked_reason: pid=13145 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
23053           <...>-13131 (-----) [000] d..2 24572.501164: sched_wakeup: comm=Binder:13131_1 pid=13145 prio=120 target_cpu=003
23054          <idle>-0     (-----) [003] .n.1 24572.501171: cpu_idle: state=4294967295 cpu_id=3
23055          <idle>-0     (-----) [003] d..2 24572.501179: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_1 next_pid=13145 next_prio=120
23056  kworker/u16:10-23868 (23868) [002] d..2 24572.501181: 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
23057           <...>-13145 (-----) [003] d..1 24572.501182: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
23058           <...>-13131 (-----) [000] d..2 24572.501186: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
23059          <idle>-0     (-----) [002] d..1 24572.501187: cpu_idle: state=0 cpu_id=2
23060           <...>-13145 (-----) [003] d..2 24572.501193: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
23061           <...>-13145 (-----) [003] d..2 24572.501199: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
23062          <idle>-0     (-----) [000] d..2 24572.501205: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23063           <...>-13131 (-----) [000] .... 24572.501423: binder_transaction: transaction=1668806 dest_node=1270642 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x1
23064           <...>-13131 (-----) [000] d..4 24572.501433: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=001
23065           <...>-13131 (-----) [000] d..5 24572.501451: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
23066           <...>-13131 (-----) [000] d..2 24572.501464: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
23067  Binder:23968_C-25014 (23968) [000] .... 24572.501472: binder_transaction_received: transaction=1668806
23068  Binder:23968_C-25014 (23968) [000] .... 24572.501768: binder_transaction: transaction=1668807 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
23069  Binder:23968_C-25014 (23968) [000] d..2 24572.501775: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
23070           <...>-13145 (-----) [003] d..2 24572.501787: sched_switch: prev_comm=Binder:13131_3 prev_pid=13145 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
23071  Binder:23968_C-25014 (23968) [000] d..3 24572.501787: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
23072          <idle>-0     (-----) [003] d..1 24572.501802: cpu_idle: state=0 cpu_id=3
23073  Binder:23968_C-25014 (23968) [000] d..2 24572.501819: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23074           <...>-13131 (-----) [000] .... 24572.501825: binder_transaction_received: transaction=1668807
23075           <...>-13131 (-----) [000] .... 24572.502142: binder_transaction: transaction=1668808 dest_node=1270642 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x3
23076           <...>-13131 (-----) [000] d..4 24572.502189: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
23077           <...>-13131 (-----) [000] d..5 24572.502200: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
23078           <...>-13131 (-----) [000] d..2 24572.502210: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
23079  Binder:23968_C-25014 (23968) [000] .... 24572.502215: binder_transaction_received: transaction=1668808
23080  Binder:23968_C-25014 (23968) [000] .... 24572.502548: binder_transaction: transaction=1668811 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
23081  Binder:23968_C-25014 (23968) [000] d..2 24572.502554: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
23082  Binder:23968_C-25014 (23968) [000] d..3 24572.502567: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
23083  Binder:23968_C-25014 (23968) [000] d..2 24572.502596: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23084           <...>-13131 (-----) [000] .... 24572.502606: binder_transaction_received: transaction=1668811
23085           <...>-13131 (-----) [000] .... 24572.502705: binder_transaction: transaction=1668812 dest_node=1270642 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x1
23086           <...>-13131 (-----) [000] d..4 24572.502710: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
23087           <...>-13131 (-----) [000] d..5 24572.502721: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
23088           <...>-13131 (-----) [000] d..2 24572.502732: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
23089  Binder:23968_C-25014 (23968) [000] .... 24572.502738: binder_transaction_received: transaction=1668812
23090          <idle>-0     (-----) [003] ...1 24572.502916: cpu_idle: state=4294967295 cpu_id=3
23091          <idle>-0     (-----) [003] d..1 24572.502919: cpu_idle: state=2 cpu_id=3
23092  Binder:23968_C-25014 (23968) [000] .... 24572.502935: binder_transaction: transaction=1668813 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
23093  Binder:23968_C-25014 (23968) [000] d..2 24572.502940: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
23094  Binder:23968_C-25014 (23968) [000] d..3 24572.502951: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
23095  Binder:23968_C-25014 (23968) [000] d..2 24572.502978: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23096           <...>-13131 (-----) [000] .... 24572.502983: binder_transaction_received: transaction=1668813
23097          <idle>-0     (-----) [002] d.s2 24572.504237: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23098          <idle>-0     (-----) [002] dns3 24572.504252: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23099          <idle>-0     (-----) [002] .n.1 24572.504266: cpu_idle: state=4294967295 cpu_id=2
23100          <idle>-0     (-----) [002] d..2 24572.504273: 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
23101     rcu_preempt-7     (    7) [002] d..2 24572.504281: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
23102     rcu_preempt-7     (    7) [002] d..3 24572.504310: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
23103     rcu_preempt-7     (    7) [002] d..2 24572.504312: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
23104     rcu_preempt-7     (    7) [002] d..3 24572.504338: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
23105     rcu_preempt-7     (    7) [002] d..2 24572.504348: 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
23106         rcuop/0-10    (   10) [002] d..2 24572.504354: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
23107         rcuop/0-10    (   10) [002] d..3 24572.504382: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
23108         rcuop/0-10    (   10) [002] d..2 24572.504388: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23109         rcuop/0-10    (   10) [002] d..3 24572.504395: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23110         rcuop/0-10    (   10) [002] d..2 24572.504402: 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
23111         rcuop/2-29    (   29) [002] d..2 24572.504408: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
23112         rcuop/2-29    (   29) [002] d..3 24572.504435: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
23113         rcuop/2-29    (   29) [002] d..2 24572.504442: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
23114         rcuop/1-21    (   21) [002] d..2 24572.504455: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
23115         rcuop/3-37    (   37) [002] d..2 24572.504476: 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
23116     rcu_preempt-7     (    7) [002] d..2 24572.504497: 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
23117          <idle>-0     (-----) [002] d..1 24572.504508: cpu_idle: state=2 cpu_id=2
23118           <...>-13131 (-----) [000] d.s2 24572.510907: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23119           <...>-13131 (-----) [000] d.s3 24572.510935: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23120          <idle>-0     (-----) [002] dns2 24572.511142: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23121          <idle>-0     (-----) [002] dns3 24572.511158: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23122          <idle>-0     (-----) [002] .n.1 24572.511167: cpu_idle: state=4294967295 cpu_id=2
23123          <idle>-0     (-----) [002] d..2 24572.511177: 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
23124     rcu_preempt-7     (    7) [002] d..2 24572.511188: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
23125     rcu_preempt-7     (    7) [002] d..3 24572.511200: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
23126     rcu_preempt-7     (    7) [002] d..2 24572.511203: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
23127     rcu_preempt-7     (    7) [002] d..3 24572.511212: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
23128     rcu_preempt-7     (    7) [002] d..2 24572.511220: 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
23129         rcuop/2-29    (   29) [002] d..2 24572.511223: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
23130         rcuop/2-29    (   29) [002] d..3 24572.511233: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
23131         rcuop/2-29    (   29) [002] d..2 24572.511248: 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
23132         rcuop/3-37    (   37) [002] d..2 24572.511258: 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
23133         rcuop/0-10    (   10) [002] d..2 24572.511262: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
23134         rcuop/0-10    (   10) [002] d..3 24572.511273: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
23135         rcuop/0-10    (   10) [002] d..2 24572.511280: 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
23136         rcuop/1-21    (   21) [002] d..2 24572.511305: 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
23137           <...>-13131 (-----) [000] .... 24572.511443: binder_transaction: transaction=1668814 dest_node=1271635 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x33
23138           <...>-13131 (-----) [000] d..4 24572.511449: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
23139           <...>-13131 (-----) [000] dn.5 24572.511462: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
23140           <...>-13131 (-----) [000] d..2 24572.511471: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
23141  Binder:23968_C-25014 (23968) [000] .... 24572.511477: binder_transaction_received: transaction=1668814
23142  kworker/u16:10-23868 (23868) [002] d..2 24572.511592: 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
23143          <idle>-0     (-----) [002] d..1 24572.511604: cpu_idle: state=2 cpu_id=2
23144  Binder:23968_C-25014 (23968) [000] .... 24572.511667: binder_transaction: transaction=1668815 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
23145  Binder:23968_C-25014 (23968) [000] d..2 24572.511701: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23146           <...>-13131 (-----) [000] .... 24572.511709: binder_transaction_received: transaction=1668815
23147           <...>-13131 (-----) [000] d..2 24572.511993: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
23148           <...>-13131 (-----) [000] d..3 24572.512019: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
23149          <idle>-0     (-----) [003] d.s3 24572.512083: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23150          <idle>-0     (-----) [003] d.s4 24572.512106: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
23151          <idle>-0     (-----) [003] dns4 24572.512111: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
23152          <idle>-0     (-----) [003] .n.1 24572.512119: cpu_idle: state=4294967295 cpu_id=3
23153          <idle>-0     (-----) [003] d..2 24572.512129: 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
23154           <...>-13131 (-----) [000] .... 24572.512175: binder_transaction: transaction=1668816 dest_node=1271803 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x26
23155          <idle>-0     (-----) [002] .n.1 24572.512179: cpu_idle: state=4294967295 cpu_id=2
23156           <...>-13131 (-----) [000] d..4 24572.512181: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
23157           <...>-13131 (-----) [000] dn.5 24572.512192: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
23158          <idle>-0     (-----) [002] d..2 24572.512195: 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
23159         rcuop/0-10    (   10) [002] d..2 24572.512201: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23160           <...>-13131 (-----) [000] d..2 24572.512207: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
23161         rcuop/0-10    (   10) [002] d..3 24572.512216: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23162  Binder:23968_C-25014 (23968) [000] .... 24572.512217: binder_transaction_received: transaction=1668816
23163         rcuop/0-10    (   10) [002] d..2 24572.512224: 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
23164     rcu_preempt-7     (    7) [002] d..2 24572.512252: 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
23165          <idle>-0     (-----) [002] d..1 24572.512276: cpu_idle: state=0 cpu_id=2
23166  kworker/u16:10-23868 (23868) [003] .... 24572.512283: clk_set_rate: l3_cluster0_vote_clk 1036800000
23167  kworker/u16:10-23868 (23868) [003] .... 24572.512293: clk_set_rate: l3_clk 1036800000
23168  kworker/u16:10-23868 (23868) [003] d..2 24572.512353: 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
23169          <idle>-0     (-----) [003] d..1 24572.512372: cpu_idle: state=0 cpu_id=3
23170  Binder:23968_C-25014 (23968) [000] .... 24572.512393: binder_transaction: transaction=1668817 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
23171  Binder:23968_C-25014 (23968) [000] d..2 24572.512424: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23172           <...>-13131 (-----) [000] .... 24572.512431: binder_transaction_received: transaction=1668817
23173           <...>-13131 (-----) [000] .... 24572.513228: binder_transaction: transaction=1668818 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x3a
23174           <...>-13131 (-----) [000] d..4 24572.513234: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
23175           <...>-13131 (-----) [000] dn.5 24572.513244: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
23176           <...>-13131 (-----) [000] d..2 24572.513251: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
23177  Binder:23968_C-25014 (23968) [000] .... 24572.513256: binder_transaction_received: transaction=1668818
23178          <idle>-0     (-----) [003] ...1 24572.513484: cpu_idle: state=4294967295 cpu_id=3
23179          <idle>-0     (-----) [003] d..1 24572.513487: cpu_idle: state=2 cpu_id=3
23180  Binder:23968_C-25014 (23968) [000] .... 24572.513624: binder_transaction: transaction=1668819 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
23181  Binder:23968_C-25014 (23968) [000] d..2 24572.513656: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23182           <...>-13131 (-----) [000] .... 24572.513664: binder_transaction_received: transaction=1668819
23183           <...>-13131 (-----) [000] d.s2 24572.517578: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
23184           <...>-13131 (-----) [000] dns3 24572.517638: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
23185           <...>-13131 (-----) [000] d..2 24572.517649: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
23186          <idle>-0     (-----) [002] d.H3 24572.517657: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
23187          <idle>-0     (-----) [002] d.H3 24572.517675: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
23188     kworker/0:1-13012 (13012) [000] d..2 24572.517679: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23189          <idle>-0     (-----) [002] dnH4 24572.517688: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
23190          <idle>-0     (-----) [002] dns2 24572.517694: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23191          <idle>-0     (-----) [002] dns3 24572.517705: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23192          <idle>-0     (-----) [002] .n.1 24572.517721: cpu_idle: state=4294967295 cpu_id=2
23193          <idle>-0     (-----) [002] d..2 24572.517728: 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
23194         sugov:0-559   (  559) [002] .... 24572.517766: clk_set_rate: pwrcl_clk 1766400000
23195         sugov:0-559   (  559) [002] d..2 24572.517863: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
23196     rcu_preempt-7     (    7) [002] d..2 24572.517872: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
23197     rcu_preempt-7     (    7) [002] d..3 24572.517884: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
23198     rcu_preempt-7     (    7) [002] d..2 24572.517892: 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
23199         rcuop/0-10    (   10) [002] d..2 24572.517900: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23200         rcuop/0-10    (   10) [002] d..3 24572.517908: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23201         rcuop/0-10    (   10) [002] d..2 24572.517914: 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
23202     rcu_preempt-7     (    7) [002] d..2 24572.517935: 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
23203          <idle>-0     (-----) [002] d..1 24572.517946: cpu_idle: state=0 cpu_id=2
23204          <idle>-0     (-----) [003] d.s3 24572.518181: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
23205          <idle>-0     (-----) [003] d.s4 24572.518196: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
23206          <idle>-0     (-----) [002] .n.1 24572.518201: cpu_idle: state=4294967295 cpu_id=2
23207          <idle>-0     (-----) [003] ...1 24572.518207: cpu_idle: state=4294967295 cpu_id=3
23208          <idle>-0     (-----) [002] d..2 24572.518208: 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
23209          <idle>-0     (-----) [003] d..1 24572.518213: cpu_idle: state=2 cpu_id=3
23210         sugov:0-559   (  559) [002] .... 24572.518221: clk_set_rate: cpu3_pwrcl_clk 1324800000
23211         sugov:0-559   (  559) [002] .... 24572.518230: clk_set_rate: cpu2_pwrcl_clk 1324800000
23212         sugov:0-559   (  559) [002] .... 24572.518238: clk_set_rate: cpu1_pwrcl_clk 1324800000
23213         sugov:0-559   (  559) [002] .... 24572.518245: clk_set_rate: cpu0_pwrcl_clk 1766400000
23214         sugov:0-559   (  559) [002] .... 24572.518255: cpu_frequency: state=1766400 cpu_id=0
23215         sugov:0-559   (  559) [002] d..2 24572.518414: 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
23216          <idle>-0     (-----) [002] d..1 24572.518421: cpu_idle: state=0 cpu_id=2
23217          <idle>-0     (-----) [007] dnh2 24572.518501: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
23218          <idle>-0     (-----) [007] .n.1 24572.518510: cpu_idle: state=4294967295 cpu_id=7
23219          <idle>-0     (-----) [007] d..2 24572.518521: 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
23220         sugov:4-560   (  560) [007] d..2 24572.518544: 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
23221          <idle>-0     (-----) [007] d..1 24572.518555: cpu_idle: state=2 cpu_id=7
23222          <idle>-0     (-----) [003] d.s3 24572.518604: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
23223          <idle>-0     (-----) [003] d.s4 24572.518618: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
23224          <idle>-0     (-----) [002] .n.1 24572.518622: cpu_idle: state=4294967295 cpu_id=2
23225          <idle>-0     (-----) [003] ...1 24572.518625: cpu_idle: state=4294967295 cpu_id=3
23226          <idle>-0     (-----) [002] d..2 24572.518629: 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
23227          <idle>-0     (-----) [003] d..1 24572.518630: cpu_idle: state=0 cpu_id=3
23228         sugov:0-559   (  559) [002] .... 24572.518636: cpu_frequency: state=1766400 cpu_id=1
23229         sugov:0-559   (  559) [002] .... 24572.518640: cpu_frequency: state=1766400 cpu_id=2
23230         sugov:0-559   (  559) [002] .... 24572.518643: cpu_frequency: state=1766400 cpu_id=3
23231         sugov:0-559   (  559) [002] d..2 24572.518657: 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
23232          <idle>-0     (-----) [002] d..1 24572.518663: cpu_idle: state=0 cpu_id=2
23233           <...>-13131 (-----) [000] d.s2 24572.520901: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
23234           <...>-13131 (-----) [000] d.s3 24572.520935: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23235          <idle>-0     (-----) [002] .n.1 24572.520939: cpu_idle: state=4294967295 cpu_id=2
23236          <idle>-0     (-----) [002] d..2 24572.520948: 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
23237  kworker/u16:10-23868 (23868) [002] .... 24572.520993: clk_set_rate: l3_cluster0_vote_clk 1209600000
23238  kworker/u16:10-23868 (23868) [002] .... 24572.520997: clk_set_rate: l3_clk 1209600000
23239  kworker/u16:10-23868 (23868) [002] d..2 24572.521191: 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
23240          <idle>-0     (-----) [002] d..1 24572.521196: cpu_idle: state=0 cpu_id=2
23241          <idle>-0     (-----) [003] d.s3 24572.521220: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23242          <idle>-0     (-----) [003] d.s4 24572.521228: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
23243          <idle>-0     (-----) [003] d.s4 24572.521234: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23244          <idle>-0     (-----) [002] .n.1 24572.521240: cpu_idle: state=4294967295 cpu_id=2
23245          <idle>-0     (-----) [003] ...1 24572.521241: cpu_idle: state=4294967295 cpu_id=3
23246          <idle>-0     (-----) [003] d..1 24572.521243: cpu_idle: state=0 cpu_id=3
23247          <idle>-0     (-----) [002] d..2 24572.521245: 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
23248  kworker/u16:10-23868 (23868) [002] d..2 24572.521383: 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
23249          <idle>-0     (-----) [002] d..1 24572.521388: cpu_idle: state=0 cpu_id=2
23250          <idle>-0     (-----) [003] d.s3 24572.521407: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23251          <idle>-0     (-----) [003] d.s4 24572.521412: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
23252          <idle>-0     (-----) [003] d.s4 24572.521417: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23253          <idle>-0     (-----) [002] .n.1 24572.521422: cpu_idle: state=4294967295 cpu_id=2
23254          <idle>-0     (-----) [003] ...1 24572.521423: cpu_idle: state=4294967295 cpu_id=3
23255          <idle>-0     (-----) [003] d..1 24572.521427: cpu_idle: state=0 cpu_id=3
23256          <idle>-0     (-----) [002] d..2 24572.521428: 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
23257  kworker/u16:10-23868 (23868) [002] d..2 24572.521443: 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
23258          <idle>-0     (-----) [002] d..1 24572.521448: cpu_idle: state=0 cpu_id=2
23259          <idle>-0     (-----) [002] d.s2 24572.524230: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23260           <...>-13131 (-----) [000] d.s2 24572.524234: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23261          <idle>-0     (-----) [002] dns3 24572.524241: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23262           <...>-13131 (-----) [000] d.s3 24572.524247: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23263          <idle>-0     (-----) [002] .n.1 24572.524256: cpu_idle: state=4294967295 cpu_id=2
23264          <idle>-0     (-----) [002] d..2 24572.524261: 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
23265     rcu_preempt-7     (    7) [002] d..2 24572.524268: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
23266     rcu_preempt-7     (    7) [002] d..3 24572.524277: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
23267     rcu_preempt-7     (    7) [002] d..2 24572.524284: 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
23268         rcuop/0-10    (   10) [002] d..2 24572.524317: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23269         rcuop/0-10    (   10) [002] d..3 24572.524325: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23270         rcuop/0-10    (   10) [002] d..2 24572.524330: 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
23271     rcu_preempt-7     (    7) [002] d..2 24572.524337: 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
23272  kworker/u16:10-23868 (23868) [002] d..2 24572.524487: 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
23273          <idle>-0     (-----) [002] d..1 24572.524495: cpu_idle: state=2 cpu_id=2
23274          <idle>-0     (-----) [003] d.s3 24572.524504: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23275          <idle>-0     (-----) [003] d.s4 24572.524510: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
23276          <idle>-0     (-----) [003] d.s4 24572.524515: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23277          <idle>-0     (-----) [003] ...1 24572.524521: cpu_idle: state=4294967295 cpu_id=3
23278          <idle>-0     (-----) [003] d..1 24572.524523: cpu_idle: state=0 cpu_id=3
23279          <idle>-0     (-----) [002] .n.1 24572.524830: cpu_idle: state=4294967295 cpu_id=2
23280          <idle>-0     (-----) [002] d..2 24572.524842: 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
23281  kworker/u16:10-23868 (23868) [002] d..2 24572.524863: 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     (-----) [002] d..1 24572.524871: cpu_idle: state=0 cpu_id=2
23283           <...>-13131 (-----) [000] d.s2 24572.530900: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23284           <...>-13131 (-----) [000] d.s3 24572.530927: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23285          <idle>-0     (-----) [002] dns2 24572.530935: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23286           <...>-13131 (-----) [000] d.s2 24572.530936: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
23287           <...>-13131 (-----) [000] dns3 24572.530944: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
23288          <idle>-0     (-----) [002] dns3 24572.530945: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23289           <...>-13131 (-----) [000] d..2 24572.530953: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
23290          <idle>-0     (-----) [002] .n.1 24572.530957: cpu_idle: state=4294967295 cpu_id=2
23291          <idle>-0     (-----) [002] d..2 24572.530965: 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
23292     rcu_preempt-7     (    7) [002] d..2 24572.530973: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
23293     rcu_preempt-7     (    7) [002] d..3 24572.530982: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
23294     rcu_preempt-7     (    7) [002] d..2 24572.530989: 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
23295         rcuop/0-10    (   10) [002] d..2 24572.531005: 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
23296     kworker/0:1-13012 (13012) [000] d..2 24572.531045: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23297  kworker/u16:10-23868 (23868) [002] .... 24572.531116: clk_set_rate: l3_cluster0_vote_clk 1401600000
23298  kworker/u16:10-23868 (23868) [002] .... 24572.531121: clk_set_rate: l3_clk 1401600000
23299  kworker/u16:10-23868 (23868) [002] d..2 24572.531156: 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
23300          <idle>-0     (-----) [002] d..1 24572.531165: cpu_idle: state=0 cpu_id=2
23301          <idle>-0     (-----) [002] ...1 24572.537168: cpu_idle: state=4294967295 cpu_id=2
23302          <idle>-0     (-----) [002] d..1 24572.537170: cpu_idle: state=2 cpu_id=2
23303           <...>-13131 (-----) [000] d.h2 24572.537582: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
23304           <...>-13131 (-----) [000] dnh3 24572.537594: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
23305           <...>-13131 (-----) [000] dnH2 24572.537664: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
23306           <...>-13131 (-----) [000] dnH2 24572.537678: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
23307           <...>-13131 (-----) [000] dnH3 24572.537688: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
23308           <...>-13131 (-----) [000] d..2 24572.537697: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
23309     migration/0-13    (   13) [000] d..2 24572.537785: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23310          <idle>-0     (-----) [000] d..1 24572.537804: cpu_idle: state=2 cpu_id=0
23311          <idle>-0     (-----) [001] ...1 24572.537881: cpu_idle: state=4294967295 cpu_id=1
23312          <idle>-0     (-----) [001] d..1 24572.537888: cpu_idle: state=0 cpu_id=1
23313          <idle>-0     (-----) [002] .n.1 24572.537938: cpu_idle: state=4294967295 cpu_id=2
23314          <idle>-0     (-----) [002] d..2 24572.537948: 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
23315         sugov:0-559   (  559) [002] d..2 24572.537970: 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
23316          <idle>-0     (-----) [002] d..1 24572.537978: cpu_idle: state=0 cpu_id=2
23317          <idle>-0     (-----) [006] .n.1 24572.538664: cpu_idle: state=4294967295 cpu_id=6
23318          <idle>-0     (-----) [006] d..2 24572.538685: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23319          <idle>-0     (-----) [007] dnh2 24572.538727: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
23320          <idle>-0     (-----) [007] .n.1 24572.538736: cpu_idle: state=4294967295 cpu_id=7
23321          <idle>-0     (-----) [007] d..2 24572.538746: 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
23322         sugov:4-560   (  560) [007] d..2 24572.538769: 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
23323          <idle>-0     (-----) [007] d..1 24572.538781: cpu_idle: state=2 cpu_id=7
23324          <idle>-0     (-----) [001] d.h2 24572.539120: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=001
23325          <idle>-0     (-----) [001] dnh3 24572.539136: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=001
23326          <idle>-0     (-----) [001] .n.1 24572.539171: cpu_idle: state=4294967295 cpu_id=1
23327          <idle>-0     (-----) [001] d..2 24572.539187: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=bluetooth@1.0-s next_pid=24508 next_prio=98
23328 bluetooth@1.0-s-24508 (  759) [001] d..2 24572.539308: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
23329          <idle>-0     (-----) [001] d..1 24572.539317: cpu_idle: state=2 cpu_id=1
23330           <...>-13131 (-----) [006] d..2 24572.539723: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
23331          <idle>-0     (-----) [002] dnh2 24572.539751: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
23332          <idle>-0     (-----) [002] .n.1 24572.539756: cpu_idle: state=4294967295 cpu_id=2
23333          <idle>-0     (-----) [002] d..2 24572.539763: 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
23334         rcuop/6-61    (   61) [002] d..2 24572.539771: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23335         rcuop/6-61    (   61) [002] d..3 24572.539784: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23336         rcuop/6-61    (   61) [002] d..2 24572.539791: 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
23337     rcu_preempt-7     (    7) [002] d..2 24572.539804: 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
23338          <idle>-0     (-----) [002] d..1 24572.539809: cpu_idle: state=0 cpu_id=2
23339           <...>-13131 (-----) [006] d.s2 24572.540912: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23340          <idle>-0     (-----) [002] dnh2 24572.540935: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23341          <idle>-0     (-----) [002] .n.1 24572.540939: cpu_idle: state=4294967295 cpu_id=2
23342          <idle>-0     (-----) [002] d..2 24572.540946: 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
23343  kworker/u16:10-23868 (23868) [002] .... 24572.540967: clk_set_rate: l3_cluster0_vote_clk 300000000
23344  kworker/u16:10-23868 (23868) [002] .... 24572.540971: clk_set_rate: l3_clk 300000000
23345  kworker/u16:10-23868 (23868) [002] d..2 24572.541131: 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
23346          <idle>-0     (-----) [002] d..1 24572.541140: cpu_idle: state=0 cpu_id=2
23347          <idle>-0     (-----) [002] d.s2 24572.544244: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23348          <idle>-0     (-----) [002] dns3 24572.544259: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23349          <idle>-0     (-----) [002] .n.1 24572.544276: cpu_idle: state=4294967295 cpu_id=2
23350          <idle>-0     (-----) [002] d..2 24572.544284: 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
23351     rcu_preempt-7     (    7) [002] d..2 24572.544294: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
23352     rcu_preempt-7     (    7) [002] d..3 24572.544305: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
23353     rcu_preempt-7     (    7) [002] d..2 24572.544312: 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
23354         rcuop/6-61    (   61) [002] d..2 24572.544320: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23355         rcuop/6-61    (   61) [002] d..3 24572.544328: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23356         rcuop/6-61    (   61) [002] d..2 24572.544334: 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
23357     rcu_preempt-7     (    7) [002] d..2 24572.544353: 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
23358          <idle>-0     (-----) [002] d..1 24572.544364: cpu_idle: state=2 cpu_id=2
23359           <...>-13131 (-----) [006] d.s2 24572.550918: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23360          <idle>-0     (-----) [003] dnh2 24572.550975: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
23361          <idle>-0     (-----) [003] .n.1 24572.550980: cpu_idle: state=4294967295 cpu_id=3
23362          <idle>-0     (-----) [003] d..2 24572.550998: 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
23363  kworker/u16:10-23868 (23868) [003] .... 24572.551092: clk_set_rate: l3_cluster1_vote_clk 576000000
23364  kworker/u16:10-23868 (23868) [003] .... 24572.551098: clk_set_rate: l3_clk 576000000
23365          <idle>-0     (-----) [002] d.s2 24572.551304: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23366          <idle>-0     (-----) [002] dns3 24572.551325: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23367          <idle>-0     (-----) [002] .n.1 24572.551336: cpu_idle: state=4294967295 cpu_id=2
23368          <idle>-0     (-----) [002] d..2 24572.551348: 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
23369     rcu_preempt-7     (    7) [002] d..2 24572.551380: 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
23370  kworker/u16:10-23868 (23868) [003] d..2 24572.551384: 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
23371          <idle>-0     (-----) [002] d..1 24572.551394: cpu_idle: state=2 cpu_id=2
23372          <idle>-0     (-----) [003] d..1 24572.551403: cpu_idle: state=0 cpu_id=3
23373          <idle>-0     (-----) [003] d.s3 24572.552001: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
23374          <idle>-0     (-----) [003] d.s4 24572.552008: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
23375          <idle>-0     (-----) [003] dns4 24572.552011: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
23376          <idle>-0     (-----) [003] .n.1 24572.552017: cpu_idle: state=4294967295 cpu_id=3
23377          <idle>-0     (-----) [003] d..2 24572.552025: 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
23378  kworker/u16:10-23868 (23868) [003] d..2 24572.552064: 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
23379          <idle>-0     (-----) [003] d..1 24572.552073: cpu_idle: state=2 cpu_id=3
23380          <idle>-0     (-----) [000] .n.1 24572.555205: cpu_idle: state=4294967295 cpu_id=0
23381          <idle>-0     (-----) [000] d..2 24572.555228: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13146 next_prio=129
23382   Profile Saver-13146 (13131) [000] d..1 24572.555261: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=006
23383           <...>-13131 (-----) [006] d..2 24572.555273: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
23384          <idle>-0     (-----) [006] d..1 24572.555295: cpu_idle: state=2 cpu_id=6
23385   Profile Saver-13146 (13131) [000] d..2 24572.555323: sched_switch: prev_comm=id.nn.benchmark prev_pid=13146 prev_prio=129 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
23386          <idle>-0     (-----) [000] d..1 24572.555340: cpu_idle: state=0 cpu_id=0
23387          <idle>-0     (-----) [006] d.h2 24572.556357: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
23388          <idle>-0     (-----) [006] dnh2 24572.556363: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=006
23389          <idle>-0     (-----) [006] .n.1 24572.556370: cpu_idle: state=4294967295 cpu_id=6
23390          <idle>-0     (-----) [006] d..2 24572.556382: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23391           <...>-13131 (-----) [006] d..1 24572.556390: sched_waking: comm=id.nn.benchmark pid=13146 prio=129 target_cpu=000
23392          <idle>-0     (-----) [000] d.h2 24572.556418: sched_blocked_reason: pid=13146 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
23393          <idle>-0     (-----) [000] dnh2 24572.556422: sched_wakeup: comm=id.nn.benchmark pid=13146 prio=129 target_cpu=000
23394          <idle>-0     (-----) [000] .n.1 24572.556428: cpu_idle: state=4294967295 cpu_id=0
23395          <idle>-0     (-----) [000] d..2 24572.556435: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13146 next_prio=129
23396           <...>-13131 (-----) [006] d..1 24572.556563: sched_waking: comm=id.nn.benchmark pid=13146 prio=129 target_cpu=000
23397   Profile Saver-13146 (13131) [000] d..2 24572.556578: sched_switch: prev_comm=id.nn.benchmark prev_pid=13146 prev_prio=129 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
23398          <idle>-0     (-----) [000] d..1 24572.556593: cpu_idle: state=0 cpu_id=0
23399          <idle>-0     (-----) [000] d.h2 24572.556602: sched_blocked_reason: pid=13146 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
23400          <idle>-0     (-----) [000] dnh2 24572.556605: sched_wakeup: comm=id.nn.benchmark pid=13146 prio=129 target_cpu=000
23401          <idle>-0     (-----) [000] .n.1 24572.556610: cpu_idle: state=4294967295 cpu_id=0
23402          <idle>-0     (-----) [000] d..2 24572.556617: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13146 next_prio=129
23403   Profile Saver-13146 (13131) [000] d..1 24572.556626: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=006
23404           <...>-13131 (-----) [006] d..2 24572.556639: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
23405          <idle>-0     (-----) [006] d..1 24572.556651: cpu_idle: state=2 cpu_id=6
23406   Profile Saver-13146 (13131) [000] d..2 24572.556745: sched_switch: prev_comm=id.nn.benchmark prev_pid=13146 prev_prio=129 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
23407          <idle>-0     (-----) [000] d..1 24572.556758: cpu_idle: state=0 cpu_id=0
23408          <idle>-0     (-----) [006] d.h2 24572.557674: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
23409          <idle>-0     (-----) [006] dnh2 24572.557679: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=006
23410          <idle>-0     (-----) [006] dnh3 24572.557762: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
23411          <idle>-0     (-----) [006] dnh4 24572.557782: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
23412          <idle>-0     (-----) [006] dnh3 24572.557785: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
23413          <idle>-0     (-----) [002] d.s2 24572.557785: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23414          <idle>-0     (-----) [006] .n.1 24572.557798: cpu_idle: state=4294967295 cpu_id=6
23415          <idle>-0     (-----) [002] dns3 24572.557806: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23416          <idle>-0     (-----) [006] d..2 24572.557810: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23417          <idle>-0     (-----) [002] dnH3 24572.557817: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
23418           <...>-13131 (-----) [006] d..1 24572.557820: sched_waking: comm=id.nn.benchmark pid=13146 prio=129 target_cpu=000
23419          <idle>-0     (-----) [002] .n.1 24572.557833: cpu_idle: state=4294967295 cpu_id=2
23420          <idle>-0     (-----) [000] d.h2 24572.557838: sched_blocked_reason: pid=13146 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
23421          <idle>-0     (-----) [000] dnh2 24572.557841: sched_wakeup: comm=id.nn.benchmark pid=13146 prio=129 target_cpu=000
23422          <idle>-0     (-----) [002] d..2 24572.557843: 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
23423          <idle>-0     (-----) [000] .n.1 24572.557847: cpu_idle: state=4294967295 cpu_id=0
23424          <idle>-0     (-----) [000] d..2 24572.557855: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13146 next_prio=129
23425         sugov:0-559   (  559) [002] .... 24572.557883: clk_set_rate: pwrcl_clk 652800000
23426   Profile Saver-13146 (13131) [000] d..2 24572.557907: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
23427   Profile Saver-13146 (13131) [000] d..3 24572.557926: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
23428         sugov:0-559   (  559) [002] .... 24572.557968: clk_set_rate: cpu3_pwrcl_clk 1766400000
23429         sugov:0-559   (  559) [002] .... 24572.557978: clk_set_rate: cpu2_pwrcl_clk 1766400000
23430         sugov:0-559   (  559) [002] .... 24572.557985: clk_set_rate: cpu1_pwrcl_clk 1766400000
23431         sugov:0-559   (  559) [002] .... 24572.557992: clk_set_rate: cpu0_pwrcl_clk 652800000
23432           <...>-13131 (-----) [006] d..1 24572.558003: sched_waking: comm=id.nn.benchmark pid=13146 prio=129 target_cpu=000
23433   Profile Saver-13146 (13131) [000] d..2 24572.558012: sched_switch: prev_comm=id.nn.benchmark prev_pid=13146 prev_prio=129 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
23434          <idle>-0     (-----) [000] d..1 24572.558034: cpu_idle: state=2 cpu_id=0
23435          <idle>-0     (-----) [007] .n.1 24572.558101: cpu_idle: state=4294967295 cpu_id=7
23436          <idle>-0     (-----) [007] d..2 24572.558117: 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
23437         sugov:0-559   (  559) [002] .... 24572.558162: cpu_frequency: state=652800 cpu_id=0
23438         sugov:4-560   (  560) [007] .... 24572.558179: clk_set_rate: perfcl_clk 2803200000
23439         sugov:4-560   (  560) [007] .... 24572.558182: clk_set_rate: cpu7_perfcl_clk 825600000
23440         sugov:4-560   (  560) [007] .... 24572.558189: clk_set_rate: cpu6_perfcl_clk 825600000
23441           <...>-13131 (-----) [006] d..2 24572.558191: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=D|K ==> next_comm=swapper/6 next_pid=0 next_prio=120
23442         sugov:4-560   (  560) [007] .... 24572.558195: clk_set_rate: cpu5_perfcl_clk 825600000
23443         sugov:4-560   (  560) [007] .... 24572.558201: clk_set_rate: cpu4_perfcl_clk 2803200000
23444          <idle>-0     (-----) [006] d..1 24572.558204: cpu_idle: state=2 cpu_id=6
23445         sugov:4-560   (  560) [007] .... 24572.558210: cpu_frequency: state=2803200 cpu_id=4
23446          <idle>-0     (-----) [003] ...1 24572.558231: cpu_idle: state=4294967295 cpu_id=3
23447          <idle>-0     (-----) [003] d..1 24572.558245: cpu_idle: state=2 cpu_id=3
23448          <idle>-0     (-----) [000] d.h2 24572.558379: sched_blocked_reason: pid=13146 iowait=0 caller=do_page_fault+0x4e0/0x594
23449         sugov:0-559   (  559) [002] d..2 24572.558387: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
23450          <idle>-0     (-----) [000] dnh2 24572.558389: sched_wakeup: comm=id.nn.benchmark pid=13146 prio=129 target_cpu=000
23451          <idle>-0     (-----) [000] .n.1 24572.558399: cpu_idle: state=4294967295 cpu_id=0
23452     rcu_preempt-7     (    7) [002] d..2 24572.558401: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
23453         sugov:4-560   (  560) [007] d..2 24572.558402: 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
23454          <idle>-0     (-----) [007] d..1 24572.558408: cpu_idle: state=2 cpu_id=7
23455          <idle>-0     (-----) [000] d..2 24572.558417: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13146 next_prio=129
23456   Profile Saver-13146 (13131) [000] d..1 24572.558428: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=006
23457     rcu_preempt-7     (    7) [002] d..3 24572.558429: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
23458     rcu_preempt-7     (    7) [002] d..2 24572.558444: 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
23459         rcuop/6-61    (   61) [002] d..2 24572.558470: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23460         rcuop/6-61    (   61) [002] d..3 24572.558487: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23461         rcuop/6-61    (   61) [002] d..2 24572.558499: 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
23462   Profile Saver-13146 (13131) [000] d..2 24572.558500: sched_blocked_reason: pid=13131 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
23463   Profile Saver-13146 (13131) [000] d..2 24572.558510: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
23464     rcu_preempt-7     (    7) [002] d..2 24572.558515: 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
23465         rcuop/0-10    (   10) [002] d..2 24572.558585: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23466          <idle>-0     (-----) [002] d..1 24572.558603: cpu_idle: state=0 cpu_id=2
23467   Profile Saver-13146 (13131) [000] d..2 24572.558603: sched_switch: prev_comm=id.nn.benchmark prev_pid=13146 prev_prio=129 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
23468          <idle>-0     (-----) [000] d..1 24572.558629: cpu_idle: state=0 cpu_id=0
23469          <idle>-0     (-----) [003] d.s3 24572.558706: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
23470          <idle>-0     (-----) [003] d.s4 24572.558731: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
23471          <idle>-0     (-----) [001] .n.1 24572.558733: cpu_idle: state=4294967295 cpu_id=1
23472          <idle>-0     (-----) [002] .n.1 24572.558738: cpu_idle: state=4294967295 cpu_id=2
23473          <idle>-0     (-----) [003] ...1 24572.558748: cpu_idle: state=4294967295 cpu_id=3
23474          <idle>-0     (-----) [002] d..2 24572.558751: 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
23475          <idle>-0     (-----) [003] d..1 24572.558761: cpu_idle: state=0 cpu_id=3
23476          <idle>-0     (-----) [001] d..2 24572.558765: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23477         sugov:0-559   (  559) [002] d..1 24572.558767: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
23478         sugov:0-559   (  559) [002] .... 24572.558787: cpu_frequency: state=652800 cpu_id=1
23479         sugov:0-559   (  559) [002] .... 24572.558797: cpu_frequency: state=652800 cpu_id=2
23480         sugov:0-559   (  559) [002] .... 24572.558802: cpu_frequency: state=652800 cpu_id=3
23481           <...>-13131 (-----) [001] d..1 24572.558808: sched_waking: comm=id.nn.benchmark pid=13146 prio=129 target_cpu=000
23482           <...>-13131 (-----) [001] d..2 24572.558834: sched_blocked_reason: pid=13146 iowait=0 caller=do_page_fault+0x4e0/0x594
23483         sugov:0-559   (  559) [002] d..2 24572.558841: 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
23484           <...>-13131 (-----) [001] d..2 24572.558846: sched_wakeup: comm=id.nn.benchmark pid=13146 prio=129 target_cpu=000
23485          <idle>-0     (-----) [000] .n.1 24572.558853: cpu_idle: state=4294967295 cpu_id=0
23486          <idle>-0     (-----) [002] d..1 24572.558855: cpu_idle: state=0 cpu_id=2
23487          <idle>-0     (-----) [000] d..2 24572.558867: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13146 next_prio=129
23488   Profile Saver-13146 (13131) [000] d..2 24572.559139: sched_switch: prev_comm=Profile Saver prev_pid=13146 prev_prio=129 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23489          <idle>-0     (-----) [000] d..1 24572.559158: cpu_idle: state=0 cpu_id=0
23490          <idle>-0     (-----) [007] dnh2 24572.559551: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
23491          <idle>-0     (-----) [007] .n.1 24572.559556: cpu_idle: state=4294967295 cpu_id=7
23492          <idle>-0     (-----) [007] d..2 24572.559561: 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
23493         sugov:4-560   (  560) [007] d..2 24572.559668: 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
23494          <idle>-0     (-----) [007] d..1 24572.559672: cpu_idle: state=2 cpu_id=7
23495          <idle>-0     (-----) [000] ...1 24572.560714: cpu_idle: state=4294967295 cpu_id=0
23496          <idle>-0     (-----) [000] d..1 24572.560721: cpu_idle: state=2 cpu_id=0
23497           <...>-13131 (-----) [001] d.s2 24572.560932: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
23498           <...>-13131 (-----) [001] d.s3 24572.560989: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23499          <idle>-0     (-----) [002] .n.1 24572.560995: cpu_idle: state=4294967295 cpu_id=2
23500          <idle>-0     (-----) [002] d..2 24572.561012: 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
23501  kworker/u16:10-23868 (23868) [002] d..2 24572.561130: 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
23502          <idle>-0     (-----) [002] d..1 24572.561141: cpu_idle: state=0 cpu_id=2
23503          <idle>-0     (-----) [003] d.s3 24572.561392: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
23504          <idle>-0     (-----) [003] ...1 24572.561420: cpu_idle: state=4294967295 cpu_id=3
23505          <idle>-0     (-----) [003] d..1 24572.561427: cpu_idle: state=0 cpu_id=3
23506          <idle>-0     (-----) [007] dnh2 24572.562054: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
23507          <idle>-0     (-----) [007] .n.1 24572.562058: cpu_idle: state=4294967295 cpu_id=7
23508          <idle>-0     (-----) [007] d..2 24572.562064: 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
23509         sugov:4-560   (  560) [007] d..1 24572.562070: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23510         sugov:4-560   (  560) [007] .... 24572.562079: cpu_frequency: state=2803200 cpu_id=5
23511         sugov:4-560   (  560) [007] .... 24572.562082: cpu_frequency: state=2803200 cpu_id=6
23512         sugov:4-560   (  560) [007] .... 24572.562083: cpu_frequency: state=2803200 cpu_id=7
23513          <idle>-0     (-----) [002] d.h2 24572.562090: sched_blocked_reason: pid=23868 iowait=0 caller=update_request_adhoc+0x384/0x480
23514         sugov:4-560   (  560) [007] d..2 24572.562092: 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
23515          <idle>-0     (-----) [002] dnh2 24572.562096: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23516          <idle>-0     (-----) [007] d..1 24572.562096: cpu_idle: state=2 cpu_id=7
23517          <idle>-0     (-----) [002] .n.1 24572.562104: cpu_idle: state=4294967295 cpu_id=2
23518          <idle>-0     (-----) [002] d..2 24572.562114: 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
23519           <...>-13131 (-----) [001] .... 24572.562175: binder_transaction: transaction=1668820 dest_node=1270642 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x1
23520           <...>-13131 (-----) [001] d..4 24572.562195: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
23521           <...>-13131 (-----) [001] dn.5 24572.562225: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=001
23522           <...>-13131 (-----) [001] d..2 24572.562240: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
23523  Binder:23968_C-25014 (23968) [001] .... 24572.562259: binder_transaction_received: transaction=1668820
23524  kworker/u16:10-23868 (23868) [002] d..2 24572.562305: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23525          <idle>-0     (-----) [003] d.s3 24572.562315: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23526           <...>-13131 (-----) [002] d..2 24572.562345: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23527          <idle>-0     (-----) [003] d.s4 24572.562346: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
23528          <idle>-0     (-----) [003] dns4 24572.562353: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
23529          <idle>-0     (-----) [002] d..1 24572.562357: cpu_idle: state=0 cpu_id=2
23530          <idle>-0     (-----) [003] .n.1 24572.562362: cpu_idle: state=4294967295 cpu_id=3
23531          <idle>-0     (-----) [003] d..2 24572.562379: 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
23532  kworker/u16:10-23868 (23868) [003] d..2 24572.562510: 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
23533          <idle>-0     (-----) [003] d..1 24572.562530: cpu_idle: state=0 cpu_id=3
23534  Binder:23968_C-25014 (23968) [001] .... 24572.562923: binder_transaction: transaction=1668821 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
23535  Binder:23968_C-25014 (23968) [001] d..2 24572.562938: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=002
23536  Binder:23968_C-25014 (23968) [001] d..3 24572.562969: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
23537  Binder:23968_C-25014 (23968) [001] d..2 24572.563028: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23538           <...>-13131 (-----) [001] .... 24572.563040: binder_transaction_received: transaction=1668821
23539          <idle>-0     (-----) [002] d.s2 24572.564246: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23540          <idle>-0     (-----) [002] dns3 24572.564268: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23541          <idle>-0     (-----) [002] .n.1 24572.564292: cpu_idle: state=4294967295 cpu_id=2
23542          <idle>-0     (-----) [002] d..2 24572.564303: 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
23543     rcu_preempt-7     (    7) [002] d..2 24572.564316: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
23544     rcu_preempt-7     (    7) [002] d..3 24572.564333: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
23545     rcu_preempt-7     (    7) [002] d..2 24572.564350: 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
23546         rcuop/6-61    (   61) [002] d..2 24572.564419: 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
23547          <idle>-0     (-----) [002] d..1 24572.564438: cpu_idle: state=2 cpu_id=2
23548           <...>-13131 (-----) [001] .... 24572.565425: binder_transaction: transaction=1668822 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x22
23549           <...>-13131 (-----) [001] d..4 24572.565437: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=001
23550           <...>-13131 (-----) [001] dn.5 24572.565456: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=001
23551           <...>-13131 (-----) [001] d..2 24572.565469: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
23552  Binder:23968_C-25014 (23968) [001] .... 24572.565480: binder_transaction_received: transaction=1668822
23553  Binder:23968_C-25014 (23968) [001] .... 24572.565872: binder_transaction: transaction=1668823 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
23554  Binder:23968_C-25014 (23968) [001] d..2 24572.565938: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23555           <...>-13131 (-----) [001] .... 24572.565951: binder_transaction_received: transaction=1668823
23556           <...>-13131 (-----) [001] .... 24572.566741: binder_transaction: transaction=1668824 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xd
23557           <...>-13131 (-----) [001] d..4 24572.566752: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=001
23558           <...>-13131 (-----) [001] dn.5 24572.566771: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=001
23559           <...>-13131 (-----) [001] d..2 24572.566783: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
23560  Binder:23968_C-25014 (23968) [001] .... 24572.566794: binder_transaction_received: transaction=1668824
23561  Binder:23968_C-25014 (23968) [001] .... 24572.567674: binder_transaction: transaction=1668825 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
23562  Binder:23968_C-25014 (23968) [001] d..2 24572.567737: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23563           <...>-13131 (-----) [001] .... 24572.567750: binder_transaction_received: transaction=1668825
23564          <idle>-0     (-----) [000] ...1 24572.567817: cpu_idle: state=4294967295 cpu_id=0
23565          <idle>-0     (-----) [000] d..1 24572.567832: cpu_idle: state=0 cpu_id=0
23566          <idle>-0     (-----) [003] ...1 24572.568542: cpu_idle: state=4294967295 cpu_id=3
23567          <idle>-0     (-----) [003] d..1 24572.568549: cpu_idle: state=2 cpu_id=3
23568          <idle>-0     (-----) [000] ...1 24572.569252: cpu_idle: state=4294967295 cpu_id=0
23569          <idle>-0     (-----) [000] d..1 24572.569258: cpu_idle: state=2 cpu_id=0
23570           <...>-13131 (-----) [001] d.s2 24572.570927: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
23571           <...>-13131 (-----) [001] d.s3 24572.570975: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
23572          <idle>-0     (-----) [002] d.s2 24572.571082: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23573          <idle>-0     (-----) [002] dns3 24572.571110: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23574          <idle>-0     (-----) [003] .n.1 24572.571130: cpu_idle: state=4294967295 cpu_id=3
23575          <idle>-0     (-----) [002] .n.1 24572.571136: cpu_idle: state=4294967295 cpu_id=2
23576          <idle>-0     (-----) [002] d..2 24572.571157: 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
23577          <idle>-0     (-----) [003] d..2 24572.571160: 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
23578     rcu_preempt-7     (    7) [002] d..2 24572.571202: 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
23579          <idle>-0     (-----) [002] d..1 24572.571221: cpu_idle: state=2 cpu_id=2
23580          <idle>-0     (-----) [002] ...1 24572.571470: cpu_idle: state=4294967295 cpu_id=2
23581          <idle>-0     (-----) [002] d..1 24572.571482: cpu_idle: state=0 cpu_id=2
23582  kworker/u16:10-23868 (23868) [003] d..2 24572.571651: 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
23583          <idle>-0     (-----) [003] d.s4 24572.571699: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
23584          <idle>-0     (-----) [003] d.s5 24572.571711: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
23585          <idle>-0     (-----) [003] dns5 24572.571717: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
23586          <idle>-0     (-----) [003] d..2 24572.571732: 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
23587  kworker/u16:10-23868 (23868) [003] .... 24572.571771: clk_set_rate: l3_cluster1_vote_clk 300000000
23588  kworker/u16:10-23868 (23868) [003] .... 24572.571780: clk_set_rate: l3_clk 300000000
23589  kworker/u16:10-23868 (23868) [003] d..2 24572.572009: 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
23590          <idle>-0     (-----) [003] d.s4 24572.572062: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
23591          <idle>-0     (-----) [003] d.s5 24572.572073: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
23592          <idle>-0     (-----) [003] dns5 24572.572080: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
23593          <idle>-0     (-----) [003] d..2 24572.572096: 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
23594  kworker/u16:10-23868 (23868) [003] .... 24572.572177: clk_set_rate: l3_cluster0_vote_clk 480000000
23595  kworker/u16:10-23868 (23868) [003] .... 24572.572184: clk_set_rate: l3_clk 480000000
23596  kworker/u16:10-23868 (23868) [003] d..2 24572.572285: 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
23597          <idle>-0     (-----) [003] d..1 24572.572312: cpu_idle: state=0 cpu_id=3
23598           <...>-13131 (-----) [001] d.s2 24572.574268: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
23599           <...>-13131 (-----) [001] d.s3 24572.574332: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23600          <idle>-0     (-----) [002] .n.1 24572.574336: cpu_idle: state=4294967295 cpu_id=2
23601          <idle>-0     (-----) [002] d..2 24572.574362: 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
23602  kworker/u16:10-23868 (23868) [002] d..2 24572.574583: 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
23603          <idle>-0     (-----) [003] d.s3 24572.574589: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23604          <idle>-0     (-----) [002] d..1 24572.574596: cpu_idle: state=0 cpu_id=2
23605          <idle>-0     (-----) [003] d.s4 24572.574601: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
23606          <idle>-0     (-----) [003] d.s4 24572.574613: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23607          <idle>-0     (-----) [002] .n.1 24572.574620: cpu_idle: state=4294967295 cpu_id=2
23608          <idle>-0     (-----) [003] ...1 24572.574628: cpu_idle: state=4294967295 cpu_id=3
23609          <idle>-0     (-----) [002] d..2 24572.574632: 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
23610          <idle>-0     (-----) [003] d..1 24572.574635: cpu_idle: state=0 cpu_id=3
23611  kworker/u16:10-23868 (23868) [002] d..2 24572.574669: 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
23612          <idle>-0     (-----) [002] d..1 24572.574679: cpu_idle: state=0 cpu_id=2
23613          <idle>-0     (-----) [002] d.H3 24572.577700: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
23614          <idle>-0     (-----) [002] dnH4 24572.577722: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
23615          <idle>-0     (-----) [002] dns2 24572.577731: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23616          <idle>-0     (-----) [002] dns3 24572.577754: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23617          <idle>-0     (-----) [002] .n.1 24572.577764: cpu_idle: state=4294967295 cpu_id=2
23618          <idle>-0     (-----) [002] d..2 24572.577773: 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
23619         sugov:0-559   (  559) [002] .... 24572.577807: clk_set_rate: pwrcl_clk 1516800000
23620         sugov:0-559   (  559) [002] .... 24572.577820: clk_set_rate: cpu3_pwrcl_clk 652800000
23621         sugov:0-559   (  559) [002] .... 24572.577829: clk_set_rate: cpu2_pwrcl_clk 652800000
23622         sugov:0-559   (  559) [002] .... 24572.577837: clk_set_rate: cpu1_pwrcl_clk 652800000
23623         sugov:0-559   (  559) [002] .... 24572.577846: clk_set_rate: cpu0_pwrcl_clk 1516800000
23624         sugov:0-559   (  559) [002] .... 24572.577856: cpu_frequency: state=1516800 cpu_id=0
23625         sugov:0-559   (  559) [002] .... 24572.577878: cpu_frequency: state=1516800 cpu_id=1
23626         sugov:0-559   (  559) [002] .... 24572.577884: cpu_frequency: state=1516800 cpu_id=2
23627         sugov:0-559   (  559) [002] .... 24572.577889: cpu_frequency: state=1516800 cpu_id=3
23628         sugov:0-559   (  559) [002] d..2 24572.577913: 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
23629     rcu_preempt-7     (    7) [002] d..2 24572.577924: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
23630     rcu_preempt-7     (    7) [002] d..3 24572.577938: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
23631     rcu_preempt-7     (    7) [002] d..2 24572.577945: 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
23632         rcuop/0-10    (   10) [002] d..2 24572.577953: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23633         rcuop/0-10    (   10) [002] d..3 24572.577962: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23634         rcuop/0-10    (   10) [002] d..2 24572.577968: 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
23635     rcu_preempt-7     (    7) [002] d..2 24572.577988: 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
23636          <idle>-0     (-----) [002] d..1 24572.577999: cpu_idle: state=0 cpu_id=2
23637           <...>-13131 (-----) [001] d.s2 24572.580912: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23638           <...>-13131 (-----) [001] d.s3 24572.580936: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23639          <idle>-0     (-----) [002] .n.1 24572.580941: cpu_idle: state=4294967295 cpu_id=2
23640          <idle>-0     (-----) [002] d..2 24572.580950: 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
23641  kworker/u16:10-23868 (23868) [002] .... 24572.580996: clk_set_rate: l3_cluster0_vote_clk 748800000
23642  kworker/u16:10-23868 (23868) [002] .... 24572.580999: clk_set_rate: l3_clk 748800000
23643  kworker/u16:10-23868 (23868) [002] d..2 24572.581172: 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
23644          <idle>-0     (-----) [002] d..1 24572.581179: cpu_idle: state=0 cpu_id=2
23645          <idle>-0     (-----) [003] d.s3 24572.581197: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23646          <idle>-0     (-----) [003] d.s4 24572.581203: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
23647          <idle>-0     (-----) [003] d.s4 24572.581208: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23648          <idle>-0     (-----) [002] .n.1 24572.581214: cpu_idle: state=4294967295 cpu_id=2
23649          <idle>-0     (-----) [003] ...1 24572.581214: cpu_idle: state=4294967295 cpu_id=3
23650          <idle>-0     (-----) [003] d..1 24572.581218: cpu_idle: state=2 cpu_id=3
23651          <idle>-0     (-----) [002] d..2 24572.581220: 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
23652  kworker/u16:10-23868 (23868) [002] d..2 24572.581237: 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
23653          <idle>-0     (-----) [002] d..1 24572.581241: cpu_idle: state=0 cpu_id=2
23654           <...>-13131 (-----) [001] .... 24572.582206: binder_transaction: transaction=1668826 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x3
23655           <...>-13131 (-----) [001] d..4 24572.582213: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=001
23656           <...>-13131 (-----) [001] dn.5 24572.582226: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=001
23657           <...>-13131 (-----) [001] d..2 24572.582233: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
23658  Binder:23968_C-25014 (23968) [001] .... 24572.582239: binder_transaction_received: transaction=1668826
23659  Binder:23968_C-25014 (23968) [001] .... 24572.582701: binder_transaction: transaction=1668827 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
23660  Binder:23968_C-25014 (23968) [001] d..2 24572.582736: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23661           <...>-13131 (-----) [001] .... 24572.582744: binder_transaction_received: transaction=1668827
23662           <...>-13131 (-----) [001] .... 24572.583689: binder_transaction: transaction=1668828 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x3a
23663           <...>-13131 (-----) [001] d..4 24572.583695: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=001
23664           <...>-13131 (-----) [001] dn.5 24572.583705: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=001
23665           <...>-13131 (-----) [001] d..2 24572.583712: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
23666  Binder:23968_C-25014 (23968) [001] .... 24572.583718: binder_transaction_received: transaction=1668828
23667  Binder:23968_C-25014 (23968) [001] .... 24572.583994: binder_transaction: transaction=1668829 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
23668  Binder:23968_C-25014 (23968) [001] d..2 24572.584026: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23669           <...>-13131 (-----) [001] .... 24572.584033: binder_transaction_received: transaction=1668829
23670          <idle>-0     (-----) [002] d.s2 24572.584232: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23671          <idle>-0     (-----) [002] dns3 24572.584243: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23672          <idle>-0     (-----) [002] .n.1 24572.584255: cpu_idle: state=4294967295 cpu_id=2
23673          <idle>-0     (-----) [002] d..2 24572.584261: 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
23674     rcu_preempt-7     (    7) [002] d..2 24572.584268: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
23675     rcu_preempt-7     (    7) [002] d..3 24572.584277: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
23676     rcu_preempt-7     (    7) [002] d..2 24572.584284: 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
23677         rcuop/0-10    (   10) [002] d..2 24572.584287: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
23678         rcuop/0-10    (   10) [002] d..3 24572.584299: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
23679         rcuop/0-10    (   10) [002] d..2 24572.584305: 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
23680         rcuop/1-21    (   21) [002] d..2 24572.584330: 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
23681          <idle>-0     (-----) [002] d..1 24572.584338: cpu_idle: state=2 cpu_id=2
23682           <...>-13131 (-----) [001] .... 24572.585256: binder_transaction: transaction=1668830 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x43
23683           <...>-13131 (-----) [001] d..4 24572.585262: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=001
23684           <...>-13131 (-----) [001] dn.5 24572.585272: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=001
23685           <...>-13131 (-----) [001] d..2 24572.585279: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
23686  Binder:23968_C-25014 (23968) [001] .... 24572.585284: binder_transaction_received: transaction=1668830
23687  Binder:23968_C-25014 (23968) [001] .... 24572.585652: binder_transaction: transaction=1668831 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
23688  Binder:23968_C-25014 (23968) [001] d..2 24572.585684: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23689           <...>-13131 (-----) [001] .... 24572.585691: binder_transaction_received: transaction=1668831
23690           <...>-13131 (-----) [001] d..2 24572.586062: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
23691           <...>-13131 (-----) [001] d..3 24572.586090: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
23692          <idle>-0     (-----) [002] .n.1 24572.586216: cpu_idle: state=4294967295 cpu_id=2
23693          <idle>-0     (-----) [002] d..2 24572.586230: 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
23694         rcuop/0-10    (   10) [002] d..2 24572.586235: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23695         rcuop/0-10    (   10) [002] d..3 24572.586249: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23696         rcuop/0-10    (   10) [002] d..2 24572.586256: 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
23697     rcu_preempt-7     (    7) [002] d..2 24572.586272: 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
23698          <idle>-0     (-----) [002] d..1 24572.586280: cpu_idle: state=0 cpu_id=2
23699           <...>-13131 (-----) [001] d..2 24572.586744: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
23700           <...>-13131 (-----) [001] d..3 24572.586769: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
23701          <idle>-0     (-----) [002] .n.1 24572.588325: cpu_idle: state=4294967295 cpu_id=2
23702          <idle>-0     (-----) [002] d..2 24572.588335: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13147 next_prio=120
23703           <...>-13131 (-----) [001] d..1 24572.588379: sched_waking: comm=id.nn.benchmark pid=13147 prio=120 target_cpu=002
23704           <...>-13147 (-----) [002] d..2 24572.588403: sched_switch: prev_comm=id.nn.benchmark prev_pid=13147 prev_prio=120 prev_state=D|K ==> next_comm=logd.writer next_pid=563 next_prio=130
23705           <...>-13131 (-----) [001] d..2 24572.588421: sched_blocked_reason: pid=13147 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
23706           <...>-13131 (-----) [001] d..2 24572.588425: sched_wakeup: comm=id.nn.benchmark pid=13147 prio=120 target_cpu=002
23707           <...>-13131 (-----) [001] d..2 24572.588510: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
23708          <idle>-0     (-----) [001] d..1 24572.588527: cpu_idle: state=2 cpu_id=1
23709     logd.writer-563   (  555) [002] d..2 24572.588588: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13147 next_prio=120
23710           <...>-13147 (-----) [002] d..1 24572.588600: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
23711           <...>-13147 (-----) [002] d..2 24572.588616: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
23712           <...>-13147 (-----) [002] d..2 24572.588623: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
23713           <...>-13147 (-----) [002] d..1 24572.588625: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
23714           <...>-13147 (-----) [002] d..2 24572.588632: sched_blocked_reason: pid=563 iowait=0 caller=proc_pid_cmdline_read+0x63c/0x668
23715           <...>-13147 (-----) [002] d..2 24572.588635: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
23716          <idle>-0     (-----) [001] .n.1 24572.588740: cpu_idle: state=4294967295 cpu_id=1
23717          <idle>-0     (-----) [001] d..2 24572.588754: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23718           <...>-13147 (-----) [002] d..2 24572.588816: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=R+ ==> next_comm=logd.writer next_pid=563 next_prio=130
23719     logd.writer-563   (  555) [002] d..2 24572.588842: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
23720     logd.writer-563   (  555) [002] dn.3 24572.588858: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
23721     logd.writer-563   (  555) [002] d..2 24572.588865: 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
23722         rcuop/2-29    (   29) [002] d..2 24572.588875: 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
23723     logd.writer-563   (  555) [002] d..2 24572.589027: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
23724           <...>-13147 (-----) [002] d..1 24572.589068: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
23725           <...>-13131 (-----) [001] d..2 24572.589088: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
23726           <...>-13147 (-----) [002] d..2 24572.589098: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
23727          <idle>-0     (-----) [001] dn.1 24572.589102: cpu_idle: state=0 cpu_id=1
23728          <idle>-0     (-----) [001] .n.1 24572.589105: cpu_idle: state=4294967295 cpu_id=1
23729           <...>-13147 (-----) [002] d..2 24572.589105: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
23730          <idle>-0     (-----) [001] d..2 24572.589117: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23731           <...>-13147 (-----) [002] d..2 24572.589331: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23732          <idle>-0     (-----) [002] d..1 24572.589344: cpu_idle: state=0 cpu_id=2
23733          <idle>-0     (-----) [002] d.s2 24572.590901: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23734           <...>-13131 (-----) [001] d.s2 24572.590912: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23735          <idle>-0     (-----) [002] dns3 24572.590914: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23736          <idle>-0     (-----) [002] .n.1 24572.590926: cpu_idle: state=4294967295 cpu_id=2
23737           <...>-13131 (-----) [001] d.s3 24572.590931: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23738          <idle>-0     (-----) [002] d..2 24572.590937: 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
23739           <...>-13131 (-----) [001] d.s2 24572.590945: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23740     rcu_preempt-7     (    7) [002] d..2 24572.590953: 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
23741           <...>-13131 (-----) [001] d.s3 24572.590964: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23742  kworker/u16:10-23868 (23868) [002] d..2 24572.591112: 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
23743     rcu_preempt-7     (    7) [002] d..2 24572.591117: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
23744     rcu_preempt-7     (    7) [002] d..3 24572.591127: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
23745     rcu_preempt-7     (    7) [002] d..2 24572.591136: 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
23746         rcuop/0-10    (   10) [002] d..2 24572.591138: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
23747         rcuop/0-10    (   10) [002] d..3 24572.591148: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
23748         rcuop/0-10    (   10) [002] d..2 24572.591154: 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
23749         rcuop/1-21    (   21) [002] d..2 24572.591180: 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
23750          <idle>-0     (-----) [002] d..1 24572.591190: cpu_idle: state=0 cpu_id=2
23751          <idle>-0     (-----) [003] d.s3 24572.591277: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23752          <idle>-0     (-----) [003] d.s4 24572.591308: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
23753          <idle>-0     (-----) [003] dns4 24572.591312: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
23754          <idle>-0     (-----) [003] .n.1 24572.591319: cpu_idle: state=4294967295 cpu_id=3
23755          <idle>-0     (-----) [003] d..2 24572.591332: 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
23756  kworker/u16:10-23868 (23868) [003] .... 24572.591410: clk_set_rate: l3_cluster0_vote_clk 1209600000
23757  kworker/u16:10-23868 (23868) [003] .... 24572.591414: clk_set_rate: l3_clk 1209600000
23758  kworker/u16:10-23868 (23868) [003] d..2 24572.591453: 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
23759          <idle>-0     (-----) [003] d..1 24572.591466: cpu_idle: state=2 cpu_id=3
23760           <...>-13131 (-----) [001] .... 24572.591783: binder_transaction: transaction=1668832 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xd
23761           <...>-13131 (-----) [001] d..4 24572.591790: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=001
23762           <...>-13131 (-----) [001] dn.5 24572.591800: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=001
23763           <...>-13131 (-----) [001] d..2 24572.591806: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
23764  Binder:23968_C-25014 (23968) [001] .... 24572.591813: binder_transaction_received: transaction=1668832
23765  Binder:23968_C-25014 (23968) [001] .... 24572.592206: binder_transaction: transaction=1668833 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
23766  Binder:23968_C-25014 (23968) [001] d..2 24572.592237: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23767           <...>-13131 (-----) [001] .... 24572.592244: binder_transaction_received: transaction=1668833
23768           <...>-13131 (-----) [001] d..2 24572.592842: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
23769           <...>-13131 (-----) [001] d..3 24572.592857: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
23770           <...>-13131 (-----) [001] d..1 24572.592888: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=002
23771           <...>-13131 (-----) [001] d..2 24572.592903: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=002
23772          <idle>-0     (-----) [002] .n.1 24572.592907: cpu_idle: state=4294967295 cpu_id=2
23773          <idle>-0     (-----) [002] d..2 24572.592915: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
23774           <...>-13131 (-----) [001] d..2 24572.592956: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
23775           <...>-13147 (-----) [002] d..1 24572.592963: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
23776           <...>-13147 (-----) [002] d..2 24572.592985: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
23777     logd.writer-563   (  555) [001] d..2 24572.593009: 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
23778          <idle>-0     (-----) [001] d..1 24572.593021: cpu_idle: state=0 cpu_id=1
23779          <idle>-0     (-----) [000] .n.1 24572.593103: cpu_idle: state=4294967295 cpu_id=0
23780          <idle>-0     (-----) [000] d..2 24572.593121: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23781           <...>-13131 (-----) [000] d..2 24572.593223: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23782          <idle>-0     (-----) [000] d..1 24572.593237: cpu_idle: state=0 cpu_id=0
23783           <...>-13147 (-----) [002] d..3 24572.593241: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
23784           <...>-13147 (-----) [002] d..4 24572.593257: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
23785          <idle>-0     (-----) [000] .n.1 24572.593263: cpu_idle: state=4294967295 cpu_id=0
23786          <idle>-0     (-----) [000] d..2 24572.593270: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
23787           <...>-13147 (-----) [002] d..2 24572.593288: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23788          <idle>-0     (-----) [002] d..1 24572.593297: cpu_idle: state=0 cpu_id=2
23789           <...>-13131 (-----) [000] d..1 24572.593318: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=002
23790           <...>-13131 (-----) [000] d..2 24572.593332: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=002
23791          <idle>-0     (-----) [002] .n.1 24572.593337: cpu_idle: state=4294967295 cpu_id=2
23792          <idle>-0     (-----) [002] d..2 24572.593345: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
23793           <...>-13131 (-----) [000] d..2 24572.593359: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23794          <idle>-0     (-----) [000] d..1 24572.593368: cpu_idle: state=0 cpu_id=0
23795           <...>-13147 (-----) [002] d..2 24572.593569: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
23796           <...>-13147 (-----) [002] d..3 24572.593584: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
23797          <idle>-0     (-----) [000] .n.1 24572.594300: cpu_idle: state=4294967295 cpu_id=0
23798          <idle>-0     (-----) [000] d..2 24572.594309: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13148 next_prio=112
23799           <...>-13148 (-----) [000] d..1 24572.594342: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=002
23800           <...>-13147 (-----) [002] d..2 24572.594347: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=D ==> next_comm=logd.writer next_pid=563 next_prio=130
23801           <...>-13148 (-----) [000] d..2 24572.594361: sched_blocked_reason: pid=13147 iowait=0 caller=do_page_fault+0x4e0/0x594
23802           <...>-13148 (-----) [000] d..2 24572.594365: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=002
23803           <...>-13148 (-----) [000] d..2 24572.594467: sched_switch: prev_comm=Instrumentation prev_pid=13148 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
23804     logd.writer-563   (  555) [002] d..2 24572.594474: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
23805          <idle>-0     (-----) [000] d..1 24572.594478: cpu_idle: state=2 cpu_id=0
23806           <...>-13147 (-----) [002] d..1 24572.594482: sched_waking: comm=Instrumentation pid=13148 prio=120 target_cpu=000
23807           <...>-13147 (-----) [002] d..2 24572.594503: sched_blocked_reason: pid=13148 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
23808           <...>-13147 (-----) [002] d..2 24572.594509: sched_wakeup: comm=Instrumentation pid=13148 prio=120 target_cpu=001
23809          <idle>-0     (-----) [001] .n.1 24572.594516: cpu_idle: state=4294967295 cpu_id=1
23810          <idle>-0     (-----) [001] d..2 24572.594525: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Instrumentation next_pid=13148 next_prio=120
23811           <...>-13147 (-----) [002] d..2 24572.594530: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
23812           <...>-13148 (-----) [001] d..1 24572.594532: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=002
23813           <...>-13148 (-----) [001] d..2 24572.594539: sched_blocked_reason: pid=13147 iowait=0 caller=do_page_fault+0x4e0/0x594
23814          <idle>-0     (-----) [002] d..1 24572.594540: cpu_idle: state=0 cpu_id=2
23815           <...>-13148 (-----) [001] d..2 24572.594545: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=002
23816          <idle>-0     (-----) [002] .n.1 24572.594550: cpu_idle: state=4294967295 cpu_id=2
23817          <idle>-0     (-----) [002] d..2 24572.594557: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
23818           <...>-13148 (-----) [001] d..2 24572.594672: sched_switch: prev_comm=Instrumentation prev_pid=13148 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
23819          <idle>-0     (-----) [001] d..1 24572.594682: cpu_idle: state=0 cpu_id=1
23820           <...>-13147 (-----) [002] .... 24572.595175: binder_transaction: transaction=1668834 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xb
23821           <...>-13147 (-----) [002] ...2 24572.595262: binder_set_priority: proc=23968 thread=25014 old=120 => new=112 desired=112
23822           <...>-13147 (-----) [002] d..4 24572.595265: sched_waking: comm=Binder:23968_C pid=25014 prio=112 target_cpu=001
23823           <...>-13147 (-----) [002] dn.5 24572.595281: sched_wakeup: comm=Binder:23968_C pid=25014 prio=112 target_cpu=002
23824           <...>-13147 (-----) [002] d..2 24572.595289: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=R+ ==> next_comm=Binder:23968_C next_pid=25014 next_prio=112
23825  Binder:23968_C-25014 (23968) [002] .... 24572.595294: binder_transaction_received: transaction=1668834
23826  Binder:23968_C-25014 (23968) [002] .... 24572.595715: binder_transaction: transaction=1668837 dest_node=0 dest_proc=13131 dest_thread=13147 reply=1 flags=0x0 code=0x0
23827  Binder:23968_C-25014 (23968) [002] .... 24572.595720: binder_set_priority: proc=23968 thread=25014 old=112 => new=120 desired=120
23828  Binder:23968_C-25014 (23968) [002] d..2 24572.595760: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
23829           <...>-13147 (-----) [002] .... 24572.595769: binder_transaction_received: transaction=1668837
23830           <...>-13147 (-----) [002] .... 24572.596107: binder_transaction: transaction=1668838 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x9
23831           <...>-13147 (-----) [002] ...2 24572.596136: binder_set_priority: proc=23968 thread=25014 old=120 => new=112 desired=112
23832           <...>-13147 (-----) [002] d..4 24572.596138: sched_waking: comm=Binder:23968_C pid=25014 prio=112 target_cpu=002
23833           <...>-13147 (-----) [002] dn.5 24572.596148: sched_wakeup: comm=Binder:23968_C pid=25014 prio=112 target_cpu=002
23834           <...>-13147 (-----) [002] d..2 24572.596154: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=R+ ==> next_comm=Binder:23968_C next_pid=25014 next_prio=112
23835  Binder:23968_C-25014 (23968) [002] .... 24572.596159: binder_transaction_received: transaction=1668838
23836  Binder:23968_C-25014 (23968) [002] .... 24572.596488: binder_transaction: transaction=1668841 dest_node=0 dest_proc=13131 dest_thread=13147 reply=1 flags=0x0 code=0x0
23837  Binder:23968_C-25014 (23968) [002] .... 24572.596493: binder_set_priority: proc=23968 thread=25014 old=112 => new=120 desired=120
23838  Binder:23968_C-25014 (23968) [002] d..2 24572.596526: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
23839           <...>-13147 (-----) [002] .... 24572.596534: binder_transaction_received: transaction=1668841
23840           <...>-13147 (-----) [002] d.H2 24572.597639: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
23841           <...>-13147 (-----) [002] d.H2 24572.597655: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
23842           <...>-13147 (-----) [002] d.H3 24572.597674: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
23843           <...>-13147 (-----) [002] d.s1 24572.597678: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
23844          <idle>-0     (-----) [001] .n.1 24572.597681: cpu_idle: state=4294967295 cpu_id=1
23845          <idle>-0     (-----) [001] d..2 24572.597689: 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
23846           <...>-13147 (-----) [002] d.s2 24572.597701: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
23847         sugov:0-559   (  559) [001] .... 24572.597716: clk_set_rate: pwrcl_clk 1766400000
23848         sugov:0-559   (  559) [001] d..2 24572.597786: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
23849     rcu_preempt-7     (    7) [001] d..2 24572.597806: 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
23850          <idle>-0     (-----) [001] d..1 24572.597814: cpu_idle: state=0 cpu_id=1
23851          <idle>-0     (-----) [003] d.s3 24572.597921: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
23852          <idle>-0     (-----) [003] d.s4 24572.597935: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
23853          <idle>-0     (-----) [001] .n.1 24572.597940: cpu_idle: state=4294967295 cpu_id=1
23854          <idle>-0     (-----) [003] ...1 24572.597943: cpu_idle: state=4294967295 cpu_id=3
23855          <idle>-0     (-----) [001] d..2 24572.597948: 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
23856          <idle>-0     (-----) [003] d..1 24572.597950: cpu_idle: state=2 cpu_id=3
23857         sugov:0-559   (  559) [001] .... 24572.597957: clk_set_rate: cpu3_pwrcl_clk 1516800000
23858         sugov:0-559   (  559) [001] .... 24572.597965: clk_set_rate: cpu2_pwrcl_clk 1516800000
23859         sugov:0-559   (  559) [001] .... 24572.597972: clk_set_rate: cpu1_pwrcl_clk 1516800000
23860         sugov:0-559   (  559) [001] .... 24572.597978: clk_set_rate: cpu0_pwrcl_clk 1766400000
23861         sugov:0-559   (  559) [001] .... 24572.597986: cpu_frequency: state=1766400 cpu_id=0
23862         sugov:0-559   (  559) [001] .... 24572.598003: cpu_frequency: state=1766400 cpu_id=1
23863         sugov:0-559   (  559) [001] .... 24572.598005: cpu_frequency: state=1766400 cpu_id=2
23864           <...>-13147 (-----) [002] .... 24572.598005: binder_transaction: transaction=1668842 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x27
23865         sugov:0-559   (  559) [001] .... 24572.598007: cpu_frequency: state=1766400 cpu_id=3
23866           <...>-13147 (-----) [002] ...2 24572.598010: binder_set_priority: proc=23968 thread=25014 old=120 => new=112 desired=112
23867           <...>-13147 (-----) [002] d..4 24572.598012: sched_waking: comm=Binder:23968_C pid=25014 prio=112 target_cpu=002
23868           <...>-13147 (-----) [002] dn.5 24572.598022: sched_wakeup: comm=Binder:23968_C pid=25014 prio=112 target_cpu=002
23869         sugov:0-559   (  559) [001] d..2 24572.598023: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
23870           <...>-13147 (-----) [002] d..2 24572.598030: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=R+ ==> next_comm=Binder:23968_C next_pid=25014 next_prio=112
23871          <idle>-0     (-----) [001] d..1 24572.598030: cpu_idle: state=0 cpu_id=1
23872  Binder:23968_C-25014 (23968) [002] .... 24572.598037: binder_transaction_received: transaction=1668842
23873  Binder:23968_C-25014 (23968) [002] .... 24572.598181: binder_transaction: transaction=1668843 dest_node=0 dest_proc=13131 dest_thread=13147 reply=1 flags=0x0 code=0x0
23874  Binder:23968_C-25014 (23968) [002] .... 24572.598186: binder_set_priority: proc=23968 thread=25014 old=112 => new=120 desired=120
23875  Binder:23968_C-25014 (23968) [002] d..2 24572.598215: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
23876           <...>-13147 (-----) [002] .... 24572.598220: binder_transaction_received: transaction=1668843
23877           <...>-13147 (-----) [002] d..2 24572.598280: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
23878           <...>-13147 (-----) [002] d..3 24572.598289: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
23879          <idle>-0     (-----) [007] dnh2 24572.598303: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
23880          <idle>-0     (-----) [007] .n.1 24572.598308: cpu_idle: state=4294967295 cpu_id=7
23881          <idle>-0     (-----) [007] d..2 24572.598313: 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
23882         sugov:4-560   (  560) [007] .... 24572.598327: clk_set_rate: perfcl_clk 825600000
23883         sugov:4-560   (  560) [007] .... 24572.598328: clk_set_rate: cpu7_perfcl_clk 2803200000
23884         sugov:4-560   (  560) [007] .... 24572.598333: clk_set_rate: cpu6_perfcl_clk 2803200000
23885         sugov:4-560   (  560) [007] .... 24572.598337: clk_set_rate: cpu5_perfcl_clk 2803200000
23886         sugov:4-560   (  560) [007] .... 24572.598341: clk_set_rate: cpu4_perfcl_clk 825600000
23887         sugov:4-560   (  560) [007] .... 24572.598345: cpu_frequency: state=825600 cpu_id=4
23888         sugov:4-560   (  560) [007] d..2 24572.598492: 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
23889          <idle>-0     (-----) [007] d..1 24572.598505: cpu_idle: state=2 cpu_id=7
23890          <idle>-0     (-----) [003] d.s3 24572.598620: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
23891          <idle>-0     (-----) [003] ...1 24572.598636: cpu_idle: state=4294967295 cpu_id=3
23892          <idle>-0     (-----) [003] d..1 24572.598641: cpu_idle: state=0 cpu_id=3
23893          <idle>-0     (-----) [007] dnh2 24572.599474: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
23894          <idle>-0     (-----) [007] .n.1 24572.599481: cpu_idle: state=4294967295 cpu_id=7
23895          <idle>-0     (-----) [007] d..2 24572.599490: 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
23896         sugov:4-560   (  560) [007] .... 24572.599499: cpu_frequency: state=825600 cpu_id=5
23897         sugov:4-560   (  560) [007] .... 24572.599503: cpu_frequency: state=825600 cpu_id=6
23898         sugov:4-560   (  560) [007] .... 24572.599506: cpu_frequency: state=825600 cpu_id=7
23899         sugov:4-560   (  560) [007] d..2 24572.599523: 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
23900          <idle>-0     (-----) [007] d..1 24572.599532: cpu_idle: state=2 cpu_id=7
23901           <...>-13147 (-----) [002] d.s2 24572.600906: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
23902           <...>-13147 (-----) [002] d.s3 24572.600936: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
23903          <idle>-0     (-----) [001] .n.1 24572.600940: cpu_idle: state=4294967295 cpu_id=1
23904          <idle>-0     (-----) [001] d..2 24572.600948: 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
23905  kworker/u16:10-23868 (23868) [001] .... 24572.600993: clk_set_rate: l3_cluster0_vote_clk 1132800000
23906  kworker/u16:10-23868 (23868) [001] .... 24572.600997: clk_set_rate: l3_clk 1132800000
23907  kworker/u16:10-23868 (23868) [001] d..2 24572.601201: 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
23908          <idle>-0     (-----) [003] d.s3 24572.601213: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
23909          <idle>-0     (-----) [003] d.s4 24572.601229: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
23910          <idle>-0     (-----) [003] dns4 24572.601232: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
23911          <idle>-0     (-----) [003] .n.1 24572.601237: cpu_idle: state=4294967295 cpu_id=3
23912          <idle>-0     (-----) [003] d..2 24572.601245: 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
23913  kworker/u16:10-23868 (23868) [003] d..2 24572.601271: 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
23914          <idle>-0     (-----) [003] d..1 24572.601278: cpu_idle: state=0 cpu_id=3
23915     logd.writer-563   (  555) [001] d..2 24572.601288: 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
23916          <idle>-0     (-----) [001] d..1 24572.601295: cpu_idle: state=0 cpu_id=1
23917          <idle>-0     (-----) [001] d.s2 24572.604233: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
23918          <idle>-0     (-----) [001] dns3 24572.604245: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
23919          <idle>-0     (-----) [001] .n.1 24572.604260: cpu_idle: state=4294967295 cpu_id=1
23920          <idle>-0     (-----) [001] d..2 24572.604266: 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
23921     rcu_preempt-7     (    7) [001] d..2 24572.604273: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
23922     rcu_preempt-7     (    7) [001] d..3 24572.604300: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
23923     rcu_preempt-7     (    7) [001] d..2 24572.604311: 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
23924         rcuop/2-29    (   29) [001] d..2 24572.604336: 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
23925          <idle>-0     (-----) [001] d..1 24572.604343: cpu_idle: state=2 cpu_id=1
23926          <idle>-0     (-----) [003] ...1 24572.607280: cpu_idle: state=4294967295 cpu_id=3
23927          <idle>-0     (-----) [003] d..1 24572.607282: cpu_idle: state=2 cpu_id=3
23928           <...>-13147 (-----) [002] d.s2 24572.610899: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
23929           <...>-13147 (-----) [002] dns3 24572.610924: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23930           <...>-13147 (-----) [002] d..2 24572.610935: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
23931  kworker/u16:10-23868 (23868) [002] d..2 24572.611063: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
23932          <idle>-0     (-----) [001] d.s2 24572.611092: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
23933          <idle>-0     (-----) [001] dns3 24572.611105: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
23934          <idle>-0     (-----) [001] .n.1 24572.611112: cpu_idle: state=4294967295 cpu_id=1
23935          <idle>-0     (-----) [001] d..2 24572.611121: 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
23936     rcu_preempt-7     (    7) [001] d..2 24572.611129: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
23937     rcu_preempt-7     (    7) [001] d..3 24572.611154: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
23938     rcu_preempt-7     (    7) [001] d..2 24572.611164: 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
23939         rcuop/0-10    (   10) [001] d..2 24572.611169: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
23940         rcuop/0-10    (   10) [001] d..3 24572.611190: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
23941         rcuop/0-10    (   10) [001] d..2 24572.611196: 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
23942         rcuop/1-21    (   21) [001] d..2 24572.611234: 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
23943          <idle>-0     (-----) [001] d..1 24572.611242: cpu_idle: state=2 cpu_id=1
23944          <idle>-0     (-----) [003] d.s3 24572.611249: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23945          <idle>-0     (-----) [003] d.s4 24572.611266: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
23946          <idle>-0     (-----) [003] dns4 24572.611270: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
23947          <idle>-0     (-----) [003] .n.1 24572.611275: cpu_idle: state=4294967295 cpu_id=3
23948          <idle>-0     (-----) [003] d..2 24572.611284: 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
23949  kworker/u16:10-23868 (23868) [003] .... 24572.611356: clk_set_rate: l3_cluster0_vote_clk 1401600000
23950  kworker/u16:10-23868 (23868) [003] .... 24572.611360: clk_set_rate: l3_clk 1401600000
23951  kworker/u16:10-23868 (23868) [003] d..2 24572.611390: 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
23952          <idle>-0     (-----) [003] d..1 24572.611399: cpu_idle: state=0 cpu_id=3
23953           <...>-13147 (-----) [002] d..1 24572.611420: sched_waking: comm=Jit thread pool pid=13136 prio=129 target_cpu=000
23954           <...>-13147 (-----) [002] d..2 24572.611456: sched_wakeup: comm=Jit thread pool pid=13136 prio=129 target_cpu=003
23955          <idle>-0     (-----) [003] .n.1 24572.611460: cpu_idle: state=4294967295 cpu_id=3
23956          <idle>-0     (-----) [003] d..2 24572.611468: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=13136 next_prio=129
23957           <...>-13147 (-----) [002] d..2 24572.611685: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
23958           <...>-13136 (-----) [003] d..1 24572.611700: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=002
23959          <idle>-0     (-----) [002] d..1 24572.611702: cpu_idle: state=2 cpu_id=2
23960           <...>-13136 (-----) [003] d..2 24572.611718: sched_blocked_reason: pid=13147 iowait=0 caller=do_page_fault+0x4e0/0x594
23961           <...>-13136 (-----) [003] d..2 24572.611724: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=002
23962           <...>-13136 (-----) [003] d..2 24572.611919: sched_switch: prev_comm=Jit thread pool prev_pid=13136 prev_prio=129 prev_state=D|K ==> next_comm=swapper/3 next_pid=0 next_prio=120
23963          <idle>-0     (-----) [003] d..1 24572.611929: cpu_idle: state=0 cpu_id=3
23964          <idle>-0     (-----) [002] .n.1 24572.612052: cpu_idle: state=4294967295 cpu_id=2
23965          <idle>-0     (-----) [002] d..2 24572.612067: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
23966           <...>-13147 (-----) [002] d..1 24572.612075: sched_waking: comm=Jit thread pool pid=13136 prio=129 target_cpu=003
23967           <...>-13147 (-----) [002] d..2 24572.612082: sched_blocked_reason: pid=13136 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
23968           <...>-13147 (-----) [002] d..2 24572.612088: sched_wakeup: comm=Jit thread pool pid=13136 prio=129 target_cpu=003
23969          <idle>-0     (-----) [003] .n.1 24572.612094: cpu_idle: state=4294967295 cpu_id=3
23970          <idle>-0     (-----) [003] d..2 24572.612103: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=13136 next_prio=129
23971           <...>-13147 (-----) [002] d..1 24572.613470: sched_waking: comm=Jit thread pool pid=13136 prio=129 target_cpu=003
23972           <...>-13136 (-----) [003] d..2 24572.613482: sched_switch: prev_comm=Jit thread pool prev_pid=13136 prev_prio=129 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23973          <idle>-0     (-----) [003] d..1 24572.613495: cpu_idle: state=0 cpu_id=3
23974           <...>-13147 (-----) [002] d..2 24572.613495: sched_blocked_reason: pid=13136 iowait=0 caller=do_page_fault+0x4e0/0x594
23975           <...>-13147 (-----) [002] d..2 24572.613502: sched_wakeup: comm=Jit thread pool pid=13136 prio=129 target_cpu=003
23976          <idle>-0     (-----) [003] .n.1 24572.613507: cpu_idle: state=4294967295 cpu_id=3
23977          <idle>-0     (-----) [003] d..2 24572.613515: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=13136 next_prio=129
23978           <...>-13147 (-----) [002] d..2 24572.613649: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23979           <...>-13136 (-----) [003] d..1 24572.613659: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=002
23980          <idle>-0     (-----) [002] d..1 24572.613663: cpu_idle: state=0 cpu_id=2
23981           <...>-13136 (-----) [003] d..2 24572.613671: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=002
23982          <idle>-0     (-----) [002] .n.1 24572.613677: cpu_idle: state=4294967295 cpu_id=2
23983          <idle>-0     (-----) [002] d..2 24572.613684: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
23984           <...>-13136 (-----) [003] d..1 24572.615256: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=002
23985           <...>-13147 (-----) [002] d..2 24572.615273: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=D|K ==> next_comm=swapper/2 next_pid=0 next_prio=120
23986           <...>-13136 (-----) [003] d..2 24572.615286: sched_blocked_reason: pid=13147 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
23987          <idle>-0     (-----) [002] d..1 24572.615287: cpu_idle: state=0 cpu_id=2
23988           <...>-13136 (-----) [003] d..2 24572.615292: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=002
23989          <idle>-0     (-----) [002] .n.1 24572.615297: cpu_idle: state=4294967295 cpu_id=2
23990          <idle>-0     (-----) [002] d..2 24572.615305: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
23991           <...>-13136 (-----) [003] d..2 24572.615312: sched_switch: prev_comm=Jit thread pool prev_pid=13136 prev_prio=129 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23992          <idle>-0     (-----) [003] d..1 24572.615324: cpu_idle: state=2 cpu_id=3
23993           <...>-13147 (-----) [002] d..1 24572.615333: sched_waking: comm=Jit thread pool pid=13136 prio=129 target_cpu=003
23994           <...>-13147 (-----) [002] d..2 24572.615339: sched_blocked_reason: pid=13136 iowait=0 caller=do_page_fault+0x4e0/0x594
23995           <...>-13147 (-----) [002] d..2 24572.615345: sched_wakeup: comm=Jit thread pool pid=13136 prio=129 target_cpu=003
23996          <idle>-0     (-----) [003] .n.1 24572.615669: cpu_idle: state=4294967295 cpu_id=3
23997          <idle>-0     (-----) [003] d..2 24572.615679: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=13136 next_prio=129
23998           <...>-13147 (-----) [002] d..2 24572.617186: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
23999           <...>-13136 (-----) [003] d..1 24572.617197: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=002
24000          <idle>-0     (-----) [002] d..1 24572.617200: cpu_idle: state=0 cpu_id=2
24001           <...>-13136 (-----) [003] d..2 24572.617208: sched_blocked_reason: pid=13147 iowait=0 caller=do_page_fault+0x4e0/0x594
24002           <...>-13136 (-----) [003] d..2 24572.617214: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=002
24003          <idle>-0     (-----) [002] .n.1 24572.617219: cpu_idle: state=4294967295 cpu_id=2
24004          <idle>-0     (-----) [002] d..2 24572.617227: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
24005           <...>-13136 (-----) [003] d..2 24572.617489: sched_switch: prev_comm=Jit thread pool prev_pid=13136 prev_prio=129 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24006          <idle>-0     (-----) [003] d..1 24572.617499: cpu_idle: state=0 cpu_id=3
24007           <...>-13147 (-----) [002] d.h2 24572.617595: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
24008           <...>-13147 (-----) [002] dnh3 24572.617608: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
24009           <...>-13147 (-----) [002] dnH2 24572.617704: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
24010           <...>-13147 (-----) [002] dnH2 24572.617722: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
24011           <...>-13147 (-----) [002] dnH3 24572.617737: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
24012           <...>-13147 (-----) [002] d..2 24572.617751: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
24013     migration/2-25    (   25) [002] d..2 24572.617834: 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
24014          <idle>-0     (-----) [002] d..1 24572.617848: cpu_idle: state=0 cpu_id=2
24015          <idle>-0     (-----) [001] dns2 24572.617860: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
24016          <idle>-0     (-----) [001] dns3 24572.617877: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
24017          <idle>-0     (-----) [001] .n.1 24572.617885: cpu_idle: state=4294967295 cpu_id=1
24018          <idle>-0     (-----) [001] d..2 24572.617894: 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
24019          <idle>-0     (-----) [000] ...1 24572.617921: cpu_idle: state=4294967295 cpu_id=0
24020          <idle>-0     (-----) [000] d..1 24572.617931: cpu_idle: state=2 cpu_id=0
24021         sugov:0-559   (  559) [001] .... 24572.617932: clk_set_rate: pwrcl_clk 1516800000
24022         sugov:0-559   (  559) [001] .... 24572.618018: clk_set_rate: cpu3_pwrcl_clk 1766400000
24023         sugov:0-559   (  559) [001] .... 24572.618032: clk_set_rate: cpu2_pwrcl_clk 1766400000
24024         sugov:0-559   (  559) [001] .... 24572.618041: clk_set_rate: cpu1_pwrcl_clk 1766400000
24025         sugov:0-559   (  559) [001] .... 24572.618048: clk_set_rate: cpu0_pwrcl_clk 1516800000
24026          <idle>-0     (-----) [003] ...1 24572.618053: cpu_idle: state=4294967295 cpu_id=3
24027          <idle>-0     (-----) [003] d..1 24572.618056: cpu_idle: state=0 cpu_id=3
24028         sugov:0-559   (  559) [001] .... 24572.618168: cpu_frequency: state=1516800 cpu_id=0
24029         sugov:0-559   (  559) [001] d..2 24572.618349: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
24030     rcu_preempt-7     (    7) [001] d..2 24572.618374: 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
24031          <idle>-0     (-----) [003] d.s3 24572.618377: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
24032          <idle>-0     (-----) [001] d..1 24572.618383: cpu_idle: state=0 cpu_id=1
24033          <idle>-0     (-----) [003] d.s4 24572.618389: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
24034          <idle>-0     (-----) [001] .n.1 24572.618394: cpu_idle: state=4294967295 cpu_id=1
24035          <idle>-0     (-----) [003] ...1 24572.618395: cpu_idle: state=4294967295 cpu_id=3
24036          <idle>-0     (-----) [003] d..1 24572.618399: cpu_idle: state=0 cpu_id=3
24037          <idle>-0     (-----) [001] d..2 24572.618401: 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
24038         sugov:0-559   (  559) [001] .... 24572.618410: cpu_frequency: state=1516800 cpu_id=1
24039         sugov:0-559   (  559) [001] .... 24572.618414: cpu_frequency: state=1516800 cpu_id=2
24040         sugov:0-559   (  559) [001] .... 24572.618417: cpu_frequency: state=1516800 cpu_id=3
24041         sugov:0-559   (  559) [001] d..2 24572.618433: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24042          <idle>-0     (-----) [001] d..1 24572.618439: cpu_idle: state=0 cpu_id=1
24043          <idle>-0     (-----) [006] .n.1 24572.618764: cpu_idle: state=4294967295 cpu_id=6
24044          <idle>-0     (-----) [006] d..2 24572.618794: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
24045          <idle>-0     (-----) [007] dnh2 24572.618829: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
24046          <idle>-0     (-----) [007] .n.1 24572.618839: cpu_idle: state=4294967295 cpu_id=7
24047          <idle>-0     (-----) [007] d..2 24572.618854: 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
24048         sugov:4-560   (  560) [007] d..2 24572.618879: 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
24049          <idle>-0     (-----) [007] d..1 24572.618893: cpu_idle: state=2 cpu_id=7
24050          <idle>-0     (-----) [002] ...1 24572.618961: cpu_idle: state=4294967295 cpu_id=2
24051          <idle>-0     (-----) [002] d..1 24572.618965: cpu_idle: state=2 cpu_id=2
24052          <idle>-0     (-----) [003] ...1 24572.619672: cpu_idle: state=4294967295 cpu_id=3
24053          <idle>-0     (-----) [003] d..1 24572.619675: cpu_idle: state=2 cpu_id=3
24054           <...>-13147 (-----) [006] d.s2 24572.620932: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
24055          <idle>-0     (-----) [001] dnh2 24572.620982: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
24056          <idle>-0     (-----) [001] .n.1 24572.620987: cpu_idle: state=4294967295 cpu_id=1
24057          <idle>-0     (-----) [001] d..2 24572.620995: 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
24058  kworker/u16:10-23868 (23868) [001] .... 24572.621051: clk_set_rate: l3_cluster0_vote_clk 844800000
24059  kworker/u16:10-23868 (23868) [001] .... 24572.621057: clk_set_rate: l3_clk 844800000
24060  kworker/u16:10-23868 (23868) [001] d..2 24572.621384: 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
24061          <idle>-0     (-----) [001] d..1 24572.621391: cpu_idle: state=0 cpu_id=1
24062          <idle>-0     (-----) [003] d.s3 24572.622227: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
24063          <idle>-0     (-----) [003] d.s4 24572.622238: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
24064          <idle>-0     (-----) [003] d.s4 24572.622245: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
24065          <idle>-0     (-----) [001] .n.1 24572.622251: cpu_idle: state=4294967295 cpu_id=1
24066          <idle>-0     (-----) [003] ...1 24572.622255: cpu_idle: state=4294967295 cpu_id=3
24067          <idle>-0     (-----) [001] d..2 24572.622258: 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
24068          <idle>-0     (-----) [003] d..1 24572.622261: cpu_idle: state=0 cpu_id=3
24069  kworker/u16:10-23868 (23868) [001] d..2 24572.622417: 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
24070          <idle>-0     (-----) [001] d..1 24572.622422: cpu_idle: state=0 cpu_id=1
24071          <idle>-0     (-----) [003] d.s3 24572.622442: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
24072          <idle>-0     (-----) [003] d.s4 24572.622448: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
24073          <idle>-0     (-----) [003] d.s4 24572.622454: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
24074          <idle>-0     (-----) [001] .n.1 24572.622459: cpu_idle: state=4294967295 cpu_id=1
24075          <idle>-0     (-----) [003] ...1 24572.622462: cpu_idle: state=4294967295 cpu_id=3
24076          <idle>-0     (-----) [003] d..1 24572.622465: cpu_idle: state=0 cpu_id=3
24077          <idle>-0     (-----) [001] d..2 24572.622465: 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
24078  kworker/u16:10-23868 (23868) [001] d..2 24572.622482: 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
24079          <idle>-0     (-----) [001] d..1 24572.622487: cpu_idle: state=0 cpu_id=1
24080          <idle>-0     (-----) [001] d.s2 24572.624236: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
24081           <...>-13147 (-----) [006] d.s2 24572.624241: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
24082          <idle>-0     (-----) [001] dns3 24572.624250: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
24083          <idle>-0     (-----) [001] dnH2 24572.624263: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
24084          <idle>-0     (-----) [001] .n.1 24572.624272: cpu_idle: state=4294967295 cpu_id=1
24085          <idle>-0     (-----) [001] d..2 24572.624277: 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
24086     rcu_preempt-7     (    7) [001] d..2 24572.624284: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
24087     rcu_preempt-7     (    7) [001] d..3 24572.624300: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
24088     rcu_preempt-7     (    7) [001] d..2 24572.624310: 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
24089         rcuop/2-29    (   29) [001] d..2 24572.624328: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
24090         rcuop/2-29    (   29) [001] d..3 24572.624337: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
24091         rcuop/2-29    (   29) [001] d..2 24572.624343: 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
24092     rcu_preempt-7     (    7) [001] d..2 24572.624352: 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
24093  kworker/u16:10-23868 (23868) [001] d..2 24572.624420: 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
24094          <idle>-0     (-----) [001] d..1 24572.624429: cpu_idle: state=2 cpu_id=1
24095           <...>-13147 (-----) [006] d..1 24572.625139: sched_waking: comm=Jit thread pool pid=13136 prio=129 target_cpu=003
24096          <idle>-0     (-----) [003] dnh2 24572.625162: sched_wakeup: comm=Jit thread pool pid=13136 prio=129 target_cpu=003
24097          <idle>-0     (-----) [003] .n.1 24572.625166: cpu_idle: state=4294967295 cpu_id=3
24098          <idle>-0     (-----) [003] d..2 24572.625175: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=13136 next_prio=129
24099           <...>-13136 (-----) [003] d..2 24572.628154: sched_switch: prev_comm=Jit thread pool prev_pid=13136 prev_prio=129 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24100          <idle>-0     (-----) [003] d..1 24572.628171: cpu_idle: state=0 cpu_id=3
24101           <...>-13147 (-----) [006] d.s2 24572.630902: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
24102           <...>-13147 (-----) [006] d.s2 24572.630937: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
24103          <idle>-0     (-----) [003] dnh2 24572.630945: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
24104          <idle>-0     (-----) [003] .n.1 24572.630950: cpu_idle: state=4294967295 cpu_id=3
24105           <...>-13147 (-----) [006] dns3 24572.630951: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
24106          <idle>-0     (-----) [003] d..2 24572.630960: 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
24107           <...>-13147 (-----) [006] d..2 24572.630961: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=R ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
24108     kworker/6:0-21469 (21469) [006] d..2 24572.631017: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=S ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
24109  kworker/u16:10-23868 (23868) [003] d..2 24572.631107: 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
24110          <idle>-0     (-----) [001] d.s2 24572.631123: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
24111          <idle>-0     (-----) [001] dns3 24572.631140: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
24112          <idle>-0     (-----) [003] d.s4 24572.631142: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
24113          <idle>-0     (-----) [003] d.s5 24572.631149: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
24114          <idle>-0     (-----) [001] .n.1 24572.631149: cpu_idle: state=4294967295 cpu_id=1
24115          <idle>-0     (-----) [003] dns5 24572.631151: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
24116          <idle>-0     (-----) [001] d..2 24572.631158: 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
24117          <idle>-0     (-----) [003] d..2 24572.631160: 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
24118     rcu_preempt-7     (    7) [001] d..2 24572.631182: 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
24119          <idle>-0     (-----) [001] d..1 24572.631191: cpu_idle: state=2 cpu_id=1
24120  kworker/u16:10-23868 (23868) [003] .... 24572.631216: clk_set_rate: l3_cluster1_vote_clk 576000000
24121  kworker/u16:10-23868 (23868) [003] .... 24572.631266: clk_set_rate: l3_cluster0_vote_clk 480000000
24122  kworker/u16:10-23868 (23868) [003] .... 24572.631270: clk_set_rate: l3_clk 576000000
24123  kworker/u16:10-23868 (23868) [003] d..2 24572.631312: 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
24124          <idle>-0     (-----) [003] d..1 24572.631328: cpu_idle: state=0 cpu_id=3
24125          <idle>-0     (-----) [003] ...1 24572.637334: cpu_idle: state=4294967295 cpu_id=3
24126          <idle>-0     (-----) [003] d..1 24572.637338: cpu_idle: state=2 cpu_id=3
24127           <...>-13147 (-----) [006] d.H2 24572.637637: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
24128           <...>-13147 (-----) [006] d.H3 24572.637657: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
24129          <idle>-0     (-----) [001] d.s2 24572.637908: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
24130          <idle>-0     (-----) [001] dns3 24572.637931: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
24131          <idle>-0     (-----) [001] .n.1 24572.637947: cpu_idle: state=4294967295 cpu_id=1
24132          <idle>-0     (-----) [001] d..2 24572.637958: 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
24133     rcu_preempt-7     (    7) [001] d..2 24572.637966: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
24134     rcu_preempt-7     (    7) [001] d..3 24572.637981: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
24135     rcu_preempt-7     (    7) [001] d..2 24572.637990: 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
24136         rcuop/2-29    (   29) [001] d..2 24572.637996: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
24137         rcuop/2-29    (   29) [001] d..3 24572.638029: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
24138         rcuop/2-29    (   29) [001] d..2 24572.638042: 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
24139         rcuop/3-37    (   37) [001] d..2 24572.638072: 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
24140          <idle>-0     (-----) [001] d..1 24572.638082: cpu_idle: state=2 cpu_id=1
24141          <idle>-0     (-----) [007] .n.1 24572.638145: cpu_idle: state=4294967295 cpu_id=7
24142          <idle>-0     (-----) [007] d..2 24572.638162: 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
24143         sugov:4-560   (  560) [007] .... 24572.638199: clk_set_rate: perfcl_clk 2803200000
24144         sugov:4-560   (  560) [007] .... 24572.638201: clk_set_rate: cpu7_perfcl_clk 825600000
24145         sugov:4-560   (  560) [007] .... 24572.638209: clk_set_rate: cpu6_perfcl_clk 825600000
24146         sugov:4-560   (  560) [007] .... 24572.638216: clk_set_rate: cpu5_perfcl_clk 825600000
24147         sugov:4-560   (  560) [007] .... 24572.638223: clk_set_rate: cpu4_perfcl_clk 2803200000
24148         sugov:4-560   (  560) [007] .... 24572.638232: cpu_frequency: state=2803200 cpu_id=4
24149         sugov:4-560   (  560) [007] d..2 24572.638419: 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
24150          <idle>-0     (-----) [007] d..1 24572.638425: cpu_idle: state=2 cpu_id=7
24151          <idle>-0     (-----) [003] d.s3 24572.640309: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
24152          <idle>-0     (-----) [003] ...1 24572.640329: cpu_idle: state=4294967295 cpu_id=3
24153          <idle>-0     (-----) [003] d..1 24572.640336: cpu_idle: state=0 cpu_id=3
24154          <idle>-0     (-----) [007] dnh2 24572.640500: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
24155          <idle>-0     (-----) [007] .n.1 24572.640506: cpu_idle: state=4294967295 cpu_id=7
24156          <idle>-0     (-----) [007] d..2 24572.640513: 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
24157         sugov:4-560   (  560) [007] .... 24572.640520: cpu_frequency: state=2803200 cpu_id=5
24158         sugov:4-560   (  560) [007] .... 24572.640523: cpu_frequency: state=2803200 cpu_id=6
24159         sugov:4-560   (  560) [007] .... 24572.640524: cpu_frequency: state=2803200 cpu_id=7
24160         sugov:4-560   (  560) [007] d..2 24572.640534: 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
24161          <idle>-0     (-----) [007] d..1 24572.640539: cpu_idle: state=2 cpu_id=7
24162           <...>-13147 (-----) [006] d.s2 24572.640898: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
24163           <...>-13147 (-----) [006] d.s2 24572.640910: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
24164           <...>-13147 (-----) [006] dns3 24572.640915: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
24165           <...>-13147 (-----) [006] d..2 24572.640920: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=R ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
24166          <idle>-0     (-----) [003] dnh2 24572.640922: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
24167          <idle>-0     (-----) [003] .n.1 24572.640926: cpu_idle: state=4294967295 cpu_id=3
24168     kworker/6:0-21469 (21469) [006] d..2 24572.640931: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=S ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
24169          <idle>-0     (-----) [003] d..2 24572.640937: 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
24170  kworker/u16:10-23868 (23868) [003] .... 24572.640960: clk_set_rate: l3_cluster0_vote_clk 300000000
24171  kworker/u16:10-23868 (23868) [003] .... 24572.641030: clk_set_rate: l3_cluster1_vote_clk 940800000
24172  kworker/u16:10-23868 (23868) [003] .... 24572.641032: clk_set_rate: l3_clk 940800000
24173           <...>-13147 (-----) [006] d..2 24572.641040: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
24174  kworker/u16:10-23868 (23868) [003] d.h1 24572.641068: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
24175  kworker/u16:10-23868 (23868) [003] d..2 24572.641173: 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
24176     logd.writer-563   (  555) [003] d.s2 24572.641202: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
24177     logd.writer-563   (  555) [003] d.s3 24572.641214: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
24178     logd.writer-563   (  555) [003] dns3 24572.641218: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
24179     logd.writer-563   (  555) [003] d..2 24572.641224: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
24180  kworker/u16:10-23868 (23868) [003] d..2 24572.641236: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
24181     logd.writer-563   (  555) [003] d..2 24572.641369: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24182          <idle>-0     (-----) [003] d..1 24572.641380: cpu_idle: state=2 cpu_id=3
24183           <...>-13147 (-----) [006] d..2 24572.643392: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
24184          <idle>-0     (-----) [003] dnh2 24572.643585: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
24185          <idle>-0     (-----) [003] .n.1 24572.643591: cpu_idle: state=4294967295 cpu_id=3
24186          <idle>-0     (-----) [003] d..2 24572.643600: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=563 next_prio=130
24187     logd.writer-563   (  555) [003] d..2 24572.643667: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24188          <idle>-0     (-----) [003] d..1 24572.643678: cpu_idle: state=0 cpu_id=3
24189           <...>-13147 (-----) [006] d..2 24572.643953: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
24190          <idle>-0     (-----) [003] dnh2 24572.643971: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
24191          <idle>-0     (-----) [003] .n.1 24572.643976: cpu_idle: state=4294967295 cpu_id=3
24192          <idle>-0     (-----) [003] d..2 24572.643983: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=563 next_prio=130
24193     logd.writer-563   (  555) [003] d..2 24572.644018: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24194          <idle>-0     (-----) [003] d..1 24572.644026: cpu_idle: state=0 cpu_id=3
24195           <...>-13147 (-----) [006] .... 24572.644233: binder_transaction: transaction=1668844 dest_node=1668760 dest_proc=13122 dest_thread=0 reply=0 flags=0x10 code=0x1
24196           <...>-13147 (-----) [006] ...2 24572.644245: binder_set_priority: proc=13122 thread=13130 old=120 => new=112 desired=112
24197           <...>-13147 (-----) [006] d..4 24572.644248: sched_waking: comm=Binder:13122_2 pid=13130 prio=112 target_cpu=002
24198           <...>-13147 (-----) [006] dn.5 24572.644261: sched_wakeup: comm=Binder:13122_2 pid=13130 prio=112 target_cpu=006
24199           <...>-13147 (-----) [006] dnh5 24572.644287: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
24200           <...>-13147 (-----) [006] dnh6 24572.644294: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
24201           <...>-13147 (-----) [006] dnh5 24572.644295: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
24202           <...>-13147 (-----) [006] d..2 24572.644305: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=R+ ==> next_comm=Binder:13122_2 next_pid=13130 next_prio=112
24203           <...>-13130 (-----) [006] .... 24572.644314: binder_transaction_received: transaction=1668844
24204          <idle>-0     (-----) [001] dnh2 24572.644418: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
24205          <idle>-0     (-----) [001] .n.1 24572.644425: cpu_idle: state=4294967295 cpu_id=1
24206          <idle>-0     (-----) [001] d..2 24572.644436: 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
24207          <idle>-0     (-----) [007] .n.1 24572.644453: cpu_idle: state=4294967295 cpu_id=7
24208         sugov:0-559   (  559) [001] .... 24572.644458: clk_set_rate: pwrcl_clk 652800000
24209          <idle>-0     (-----) [007] d..2 24572.644461: 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
24210         sugov:0-559   (  559) [001] .... 24572.644466: clk_set_rate: cpu3_pwrcl_clk 1516800000
24211         sugov:0-559   (  559) [001] .... 24572.644474: clk_set_rate: cpu2_pwrcl_clk 1516800000
24212         sugov:4-560   (  560) [007] d..2 24572.644477: 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
24213         sugov:0-559   (  559) [001] .... 24572.644480: clk_set_rate: cpu1_pwrcl_clk 1516800000
24214          <idle>-0     (-----) [007] d..1 24572.644482: cpu_idle: state=2 cpu_id=7
24215         sugov:0-559   (  559) [001] .... 24572.644486: clk_set_rate: cpu0_pwrcl_clk 652800000
24216         sugov:0-559   (  559) [001] .... 24572.644598: cpu_frequency: state=652800 cpu_id=0
24217         sugov:0-559   (  559) [001] .... 24572.644617: cpu_frequency: state=652800 cpu_id=1
24218         sugov:0-559   (  559) [001] .... 24572.644622: cpu_frequency: state=652800 cpu_id=2
24219         sugov:0-559   (  559) [001] .... 24572.644627: cpu_frequency: state=652800 cpu_id=3
24220         sugov:0-559   (  559) [001] d..2 24572.644662: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24221          <idle>-0     (-----) [001] d..1 24572.644679: cpu_idle: state=2 cpu_id=1
24222           <...>-13130 (-----) [006] d..2 24572.645089: sched_waking: comm=shell svc 13120 pid=13121 prio=120 target_cpu=002
24223           <...>-13130 (-----) [006] d..1 24572.645117: sched_waking: comm=main pid=13122 prio=120 target_cpu=004
24224          <idle>-0     (-----) [003] dnh2 24572.645121: sched_wakeup: comm=shell svc 13120 pid=13121 prio=120 target_cpu=003
24225           <...>-13130 (-----) [006] d..2 24572.645127: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=004
24226          <idle>-0     (-----) [003] .n.1 24572.645130: cpu_idle: state=4294967295 cpu_id=3
24227          <idle>-0     (-----) [003] d..2 24572.645143: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=shell svc 13120 next_pid=13121 next_prio=120
24228 shell svc 13120-13121 ( 1007) [003] d..2 24572.645211: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
24229           <...>-13130 (-----) [006] .... 24572.645232: binder_transaction: transaction=1668845 dest_node=0 dest_proc=13131 dest_thread=13147 reply=1 flags=0x0 code=0x0
24230           <...>-13130 (-----) [006] .... 24572.645238: binder_set_priority: proc=13122 thread=13130 old=112 => new=120 desired=120
24231 shell svc 13120-13121 ( 1007) [003] d..3 24572.645240: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
24232           <...>-13130 (-----) [006] d..2 24572.645263: sched_switch: prev_comm=Binder:13122_2 prev_pid=13130 prev_prio=120 prev_state=S ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
24233           <...>-13147 (-----) [006] .... 24572.645266: binder_transaction_received: transaction=1668845
24234 shell svc 13120-13121 ( 1007) [003] d..2 24572.645267: sched_switch: prev_comm=shell svc 13120 prev_pid=13121 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
24235          <idle>-0     (-----) [004] .n.1 24572.645292: cpu_idle: state=4294967295 cpu_id=4
24236          <idle>-0     (-----) [004] d..2 24572.645301: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13122 next_prio=120
24237           <...>-13147 (-----) [006] d..3 24572.645319: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
24238 Shutdown thread-13122 (13122) [004] .... 24572.645345: binder_transaction: transaction=1668846 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x5f504e47
24239           <...>-13147 (-----) [006] d..2 24572.645347: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
24240 Shutdown thread-13122 (13122) [004] d..4 24572.645350: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=002
24241          <idle>-0     (-----) [006] d..3 24572.645355: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
24242          <idle>-0     (-----) [006] d..1 24572.645368: cpu_idle: state=2 cpu_id=6
24243 Shutdown thread-13122 (13122) [004] d..2 24572.645373: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
24244          <idle>-0     (-----) [004] d..1 24572.645380: cpu_idle: state=2 cpu_id=4
24245            adbd-1007  ( 1007) [003] d..1 24572.645463: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
24246          <idle>-0     (-----) [000] dnh2 24572.645488: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
24247          <idle>-0     (-----) [000] .n.1 24572.645499: cpu_idle: state=4294967295 cpu_id=0
24248          <idle>-0     (-----) [000] d..2 24572.645519: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
24249            adbd-1007  ( 1007) [003] d..2 24572.645522: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
24250          <idle>-0     (-----) [002] dnh2 24572.645538: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
24251          <idle>-0     (-----) [001] dnh2 24572.645551: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=001
24252          <idle>-0     (-----) [002] .n.1 24572.645552: cpu_idle: state=4294967295 cpu_id=2
24253          <idle>-0     (-----) [001] .n.1 24572.645561: cpu_idle: state=4294967295 cpu_id=1
24254          <idle>-0     (-----) [002] d..2 24572.645573: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
24255          <idle>-0     (-----) [001] d..2 24572.645579: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
24256  Binder:23968_C-25014 (23968) [001] .... 24572.645593: binder_transaction_received: transaction=1668846
24257            adbd-1007  ( 1007) [003] d..2 24572.645622: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24258          <idle>-0     (-----) [003] d..1 24572.645644: cpu_idle: state=0 cpu_id=3
24259  Binder:23968_C-25014 (23968) [001] .... 24572.645653: binder_transaction: transaction=1668847 dest_node=0 dest_proc=13122 dest_thread=13122 reply=1 flags=0x0 code=0x0
24260  Binder:23968_C-25014 (23968) [001] d..2 24572.645663: sched_waking: comm=main pid=13122 prio=120 target_cpu=004
24261            adbd-23485 ( 1007) [002] d..2 24572.645715: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
24262  Binder:23968_C-25014 (23968) [001] d..2 24572.645740: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24263         rcuop/6-61    (   61) [002] d.h4 24572.645745: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
24264          <idle>-0     (-----) [001] d..1 24572.645765: cpu_idle: state=0 cpu_id=1
24265         rcuop/6-61    (   61) [002] d.h5 24572.645784: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
24266          <idle>-0     (-----) [001] .n.1 24572.645792: cpu_idle: state=4294967295 cpu_id=1
24267         rcuop/6-61    (   61) [002] d..2 24572.645798: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
24268          <idle>-0     (-----) [001] d..2 24572.645807: 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
24269   kworker/u17:2-23076 (23076) [001] d..2 24572.645839: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
24270         rcuop/6-61    (   61) [002] d..3 24572.645861: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
24271   kworker/u17:2-23076 (23076) [001] d..3 24572.645865: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
24272         rcuop/6-61    (   61) [002] d..2 24572.645875: 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
24273   kworker/u17:2-23076 (23076) [001] d..2 24572.645898: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
24274     rcu_preempt-7     (    7) [002] d..2 24572.645910: 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
24275     kworker/1:1-13091 (13091) [001] d..2 24572.645914: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
24276          <idle>-0     (-----) [002] d..1 24572.645929: cpu_idle: state=0 cpu_id=2
24277     kworker/1:1-13091 (13091) [001] d..3 24572.645939: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
24278          <idle>-0     (-----) [002] .n.1 24572.645945: cpu_idle: state=4294967295 cpu_id=2
24279          <idle>-0     (-----) [002] d..2 24572.645959: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
24280     kworker/1:1-13091 (13091) [001] d..2 24572.645972: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24281          <idle>-0     (-----) [001] d..1 24572.645989: cpu_idle: state=0 cpu_id=1
24282            adbd-23485 ( 1007) [002] d..2 24572.646050: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24283          <idle>-0     (-----) [002] d.h4 24572.646075: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
24284          <idle>-0     (-----) [002] dnh5 24572.646113: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
24285          <idle>-0     (-----) [002] d..2 24572.646128: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
24286   kworker/u17:2-23076 (23076) [002] d..2 24572.646146: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
24287   kworker/u17:2-23076 (23076) [002] d..3 24572.646162: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
24288   kworker/u17:2-23076 (23076) [002] d..2 24572.646191: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
24289           <...>-13131 (-----) [000] d..2 24572.646201: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
24290     kworker/2:0-12895 (12895) [002] d..2 24572.646204: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
24291     kworker/2:0-12895 (12895) [002] d..3 24572.646224: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
24292           <...>-13131 (-----) [000] d..3 24572.646230: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
24293     kworker/2:0-12895 (12895) [002] d..2 24572.646243: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
24294           <...>-13131 (-----) [000] d..1 24572.646286: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=006
24295            adbd-23485 ( 1007) [002] d.h2 24572.646290: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
24296            adbd-23485 ( 1007) [002] dnh3 24572.646308: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
24297          <idle>-0     (-----) [004] dnh2 24572.646308: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=004
24298          <idle>-0     (-----) [004] .n.1 24572.646312: cpu_idle: state=4294967295 cpu_id=4
24299          <idle>-0     (-----) [004] d..2 24572.646317: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=13122 next_prio=120
24300 Shutdown thread-13122 (13122) [004] .... 24572.646320: binder_transaction_received: transaction=1668847
24301            adbd-23485 ( 1007) [002] d..2 24572.646321: 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
24302   kworker/u17:2-23076 (23076) [002] d..2 24572.646335: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
24303 Shutdown thread-13122 (13122) [004] d..2 24572.646342: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
24304          <idle>-0     (-----) [004] d..1 24572.646346: cpu_idle: state=2 cpu_id=4
24305   kworker/u17:2-23076 (23076) [002] d..3 24572.646346: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
24306           <...>-13131 (-----) [000] d..2 24572.646361: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=001
24307          <idle>-0     (-----) [001] .n.1 24572.646368: cpu_idle: state=4294967295 cpu_id=1
24308   kworker/u17:2-23076 (23076) [002] d..2 24572.646372: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
24309     kworker/2:0-12895 (12895) [002] d..2 24572.646391: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
24310           <...>-13131 (-----) [000] d.h3 24572.646420: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
24311          <idle>-0     (-----) [001] d..2 24572.646421: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
24312     kworker/2:0-12895 (12895) [002] d..3 24572.646434: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
24313           <...>-13131 (-----) [000] d.h3 24572.646435: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
24314     kworker/2:0-12895 (12895) [002] d..2 24572.646455: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
24315           <...>-13131 (-----) [000] d.h4 24572.646463: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
24316          <idle>-0     (-----) [003] .n.1 24572.646471: cpu_idle: state=4294967295 cpu_id=3
24317           <...>-13147 (-----) [001] d..2 24572.646472: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24318          <idle>-0     (-----) [003] d..2 24572.646483: 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
24319           <...>-13131 (-----) [000] d..1 24572.646483: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=001
24320            adbd-23484 ( 1007) [002] d..2 24572.646489: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
24321          <idle>-0     (-----) [001] d..1 24572.646489: cpu_idle: state=0 cpu_id=1
24322           <...>-13131 (-----) [000] d..2 24572.646500: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=001
24323          <idle>-0     (-----) [001] .n.1 24572.646507: cpu_idle: state=4294967295 cpu_id=1
24324            adbd-23484 ( 1007) [002] d..3 24572.646515: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
24325          <idle>-0     (-----) [001] d..2 24572.646520: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
24326         sugov:0-559   (  559) [003] d..2 24572.646525: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
24327            adbd-23484 ( 1007) [002] d..2 24572.646564: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
24328            adbd-23485 ( 1007) [002] d..1 24572.646577: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
24329            adbd-23485 ( 1007) [002] d..2 24572.646593: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
24330           <...>-13131 (-----) [000] d..2 24572.646606: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
24331            adbd-23485 ( 1007) [002] d..2 24572.646611: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
24332            adbd-1007  ( 1007) [003] d..2 24572.646665: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24333          <idle>-0     (-----) [003] d..1 24572.646684: cpu_idle: state=0 cpu_id=3
24334            adbd-23484 ( 1007) [002] d..2 24572.646711: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24335     logd.writer-563   (  555) [000] d..2 24572.646716: 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
24336          <idle>-0     (-----) [002] d..1 24572.646731: cpu_idle: state=0 cpu_id=2
24337          <idle>-0     (-----) [000] d..1 24572.646740: cpu_idle: state=2 cpu_id=0
24338          <idle>-0     (-----) [007] dnh2 24572.647088: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
24339           <...>-13147 (-----) [001] .... 24572.647090: binder_transaction: transaction=1668848 dest_node=1271174 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x32
24340          <idle>-0     (-----) [007] .n.1 24572.647092: cpu_idle: state=4294967295 cpu_id=7
24341          <idle>-0     (-----) [007] d..2 24572.647097: 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
24342           <...>-13147 (-----) [001] ...2 24572.647102: binder_set_priority: proc=23968 thread=25014 old=120 => new=112 desired=112
24343         sugov:4-560   (  560) [007] d..2 24572.647105: 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
24344           <...>-13147 (-----) [001] d..4 24572.647107: sched_waking: comm=Binder:23968_C pid=25014 prio=112 target_cpu=001
24345          <idle>-0     (-----) [007] d..1 24572.647109: cpu_idle: state=2 cpu_id=7
24346           <...>-13147 (-----) [001] dn.5 24572.647125: sched_wakeup: comm=Binder:23968_C pid=25014 prio=112 target_cpu=001
24347           <...>-13147 (-----) [001] d..2 24572.647138: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=R+ ==> next_comm=Binder:23968_C next_pid=25014 next_prio=112
24348  Binder:23968_C-25014 (23968) [001] .... 24572.647148: binder_transaction_received: transaction=1668848
24349  Binder:23968_C-25014 (23968) [001] .... 24572.647607: binder_transaction: transaction=1668849 dest_node=0 dest_proc=13131 dest_thread=13147 reply=1 flags=0x0 code=0x0
24350  Binder:23968_C-25014 (23968) [001] .... 24572.647618: binder_set_priority: proc=23968 thread=25014 old=112 => new=120 desired=120
24351  Binder:23968_C-25014 (23968) [001] d..2 24572.647681: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
24352           <...>-13147 (-----) [001] .... 24572.647694: binder_transaction_received: transaction=1668849
24353          <idle>-0     (-----) [003] ...1 24572.648392: cpu_idle: state=4294967295 cpu_id=3
24354          <idle>-0     (-----) [003] d..1 24572.648398: cpu_idle: state=2 cpu_id=3
24355           <...>-13147 (-----) [001] d..2 24572.648490: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
24356          <idle>-0     (-----) [000] d.h2 24572.648491: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
24357          <idle>-0     (-----) [000] dnh3 24572.648508: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
24358          <idle>-0     (-----) [000] .n.1 24572.648519: cpu_idle: state=4294967295 cpu_id=0
24359          <idle>-0     (-----) [000] d..2 24572.648535: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
24360           <...>-13147 (-----) [001] d..3 24572.648556: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
24361 irq/79-1436400.-24613 (24613) [000] d..2 24572.648716: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=rcuop/0 next_pid=10 next_prio=120
24362          <idle>-0     (-----) [002] .n.1 24572.648754: cpu_idle: state=4294967295 cpu_id=2
24363         rcuop/0-10    (   10) [000] d..2 24572.648769: 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
24364          <idle>-0     (-----) [002] d..2 24572.648771: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13149 next_prio=112
24365          <idle>-0     (-----) [000] d..1 24572.648789: cpu_idle: state=0 cpu_id=0
24366           <...>-13149 (-----) [002] d..1 24572.648805: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=001
24367           <...>-13147 (-----) [001] d..2 24572.648817: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
24368           <...>-13149 (-----) [002] d..2 24572.648840: sched_blocked_reason: pid=13147 iowait=0 caller=do_page_fault+0x4e0/0x594
24369          <idle>-0     (-----) [001] d..1 24572.648842: cpu_idle: state=0 cpu_id=1
24370           <...>-13149 (-----) [002] d..2 24572.648850: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=001
24371          <idle>-0     (-----) [001] .n.1 24572.648858: cpu_idle: state=4294967295 cpu_id=1
24372          <idle>-0     (-----) [001] d..2 24572.648874: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
24373          <idle>-0     (-----) [003] d.s3 24572.648877: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
24374           <...>-13149 (-----) [002] d..2 24572.648883: sched_switch: prev_comm=roidJUnitRunner prev_pid=13149 prev_prio=112 prev_state=D|K ==> next_comm=swapper/2 next_pid=0 next_prio=120
24375           <...>-13147 (-----) [001] d..1 24572.648884: sched_waking: comm=roidJUnitRunner pid=13149 prio=112 target_cpu=002
24376          <idle>-0     (-----) [002] d..1 24572.648894: cpu_idle: state=0 cpu_id=2
24377          <idle>-0     (-----) [003] d.s4 24572.648895: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
24378          <idle>-0     (-----) [000] .n.1 24572.648902: cpu_idle: state=4294967295 cpu_id=0
24379           <...>-13147 (-----) [001] d..2 24572.648903: sched_blocked_reason: pid=13149 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
24380          <idle>-0     (-----) [003] ...1 24572.648909: cpu_idle: state=4294967295 cpu_id=3
24381           <...>-13147 (-----) [001] d..2 24572.648913: sched_wakeup: comm=roidJUnitRunner pid=13149 prio=112 target_cpu=002
24382          <idle>-0     (-----) [000] d..2 24572.648914: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
24383          <idle>-0     (-----) [002] .n.1 24572.648919: cpu_idle: state=4294967295 cpu_id=2
24384          <idle>-0     (-----) [003] d..1 24572.648921: cpu_idle: state=0 cpu_id=3
24385          <idle>-0     (-----) [002] d..2 24572.648930: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13149 next_prio=112
24386           <...>-13149 (-----) [002] d..1 24572.648943: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=001
24387           <...>-13147 (-----) [001] d..2 24572.648949: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
24388 irq/79-1436400.-24613 (24613) [000] d..2 24572.648960: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24389           <...>-13149 (-----) [002] d..2 24572.648961: sched_blocked_reason: pid=13147 iowait=0 caller=do_page_fault+0x4e0/0x594
24390          <idle>-0     (-----) [001] dn.1 24572.648965: cpu_idle: state=0 cpu_id=1
24391           <...>-13149 (-----) [002] d..2 24572.648970: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=001
24392          <idle>-0     (-----) [001] .n.1 24572.648975: cpu_idle: state=4294967295 cpu_id=1
24393          <idle>-0     (-----) [000] d..1 24572.648976: cpu_idle: state=0 cpu_id=0
24394          <idle>-0     (-----) [001] d..2 24572.648988: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
24395           <...>-13147 (-----) [001] d..1 24572.648999: sched_waking: comm=roidJUnitRunner pid=13149 prio=112 target_cpu=002
24396           <...>-13149 (-----) [002] d..2 24572.649004: sched_switch: prev_comm=roidJUnitRunner prev_pid=13149 prev_prio=112 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
24397          <idle>-0     (-----) [002] d..1 24572.649015: cpu_idle: state=0 cpu_id=2
24398           <...>-13147 (-----) [001] d..2 24572.649016: sched_blocked_reason: pid=13149 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
24399           <...>-13147 (-----) [001] d..2 24572.649025: sched_wakeup: comm=roidJUnitRunner pid=13149 prio=112 target_cpu=002
24400          <idle>-0     (-----) [002] .n.1 24572.649031: cpu_idle: state=4294967295 cpu_id=2
24401          <idle>-0     (-----) [002] d..2 24572.649042: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13149 next_prio=112
24402           <...>-13149 (-----) [002] d..1 24572.649048: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=001
24403           <...>-13147 (-----) [001] d..2 24572.649066: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
24404           <...>-13149 (-----) [002] d..2 24572.649077: sched_blocked_reason: pid=13147 iowait=0 caller=do_page_fault+0x4e0/0x594
24405          <idle>-0     (-----) [001] dn.1 24572.649082: cpu_idle: state=0 cpu_id=1
24406           <...>-13149 (-----) [002] d..2 24572.649086: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=001
24407          <idle>-0     (-----) [001] .n.1 24572.649091: cpu_idle: state=4294967295 cpu_id=1
24408          <idle>-0     (-----) [001] d..2 24572.649105: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
24409           <...>-13149 (-----) [002] d..2 24572.649112: sched_switch: prev_comm=roidJUnitRunner prev_pid=13149 prev_prio=112 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
24410          <idle>-0     (-----) [002] d..1 24572.649123: cpu_idle: state=0 cpu_id=2
24411           <...>-13147 (-----) [001] d..1 24572.649125: sched_waking: comm=roidJUnitRunner pid=13149 prio=112 target_cpu=002
24412           <...>-13147 (-----) [001] d..2 24572.649136: sched_blocked_reason: pid=13149 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
24413           <...>-13147 (-----) [001] d..2 24572.649145: sched_wakeup: comm=roidJUnitRunner pid=13149 prio=112 target_cpu=002
24414          <idle>-0     (-----) [002] .n.1 24572.649151: cpu_idle: state=4294967295 cpu_id=2
24415          <idle>-0     (-----) [002] d..2 24572.649161: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13149 next_prio=112
24416           <...>-13147 (-----) [001] d..2 24572.649194: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24417          <idle>-0     (-----) [001] d..1 24572.649210: cpu_idle: state=0 cpu_id=1
24418           <...>-13149 (-----) [002] .... 24572.649689: binder_transaction: transaction=1668850 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xe
24419           <...>-13149 (-----) [002] d..4 24572.649700: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=001
24420           <...>-13149 (-----) [002] dn.5 24572.649724: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=002
24421           <...>-13149 (-----) [002] d..2 24572.649737: sched_switch: prev_comm=MonitoringInstr prev_pid=13149 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
24422  Binder:23968_C-25014 (23968) [002] .... 24572.649747: binder_transaction_received: transaction=1668850
24423          <idle>-0     (-----) [001] ...1 24572.650331: cpu_idle: state=4294967295 cpu_id=1
24424          <idle>-0     (-----) [001] d..1 24572.650337: cpu_idle: state=2 cpu_id=1
24425  Binder:23968_C-25014 (23968) [002] .... 24572.650700: binder_transaction: transaction=1668851 dest_node=0 dest_proc=13131 dest_thread=13149 reply=1 flags=0x0 code=0x0
24426  Binder:23968_C-25014 (23968) [002] d..2 24572.650758: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=MonitoringInstr next_pid=13149 next_prio=120
24427           <...>-13149 (-----) [002] .... 24572.650770: binder_transaction_received: transaction=1668851
24428           <...>-13149 (-----) [002] d.s1 24572.650922: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
24429           <...>-13149 (-----) [002] d.s2 24572.650958: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
24430          <idle>-0     (-----) [000] .n.1 24572.650965: cpu_idle: state=4294967295 cpu_id=0
24431           <...>-13149 (-----) [002] d.s2 24572.650967: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
24432          <idle>-0     (-----) [000] d..2 24572.650980: 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
24433           <...>-13149 (-----) [002] d.s3 24572.651014: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24434     rcu_preempt-7     (    7) [000] d..2 24572.651024: 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
24435           <...>-13149 (-----) [002] d.s2 24572.651031: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
24436           <...>-13149 (-----) [002] d.s3 24572.651053: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
24437  kworker/u16:10-23868 (23868) [000] d..2 24572.651300: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
24438  kworker/u16:15-18488 (18488) [000] d..2 24572.651332: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24439          <idle>-0     (-----) [003] d.s3 24572.651340: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24440          <idle>-0     (-----) [000] d..1 24572.651349: cpu_idle: state=0 cpu_id=0
24441          <idle>-0     (-----) [003] d.s4 24572.651353: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
24442          <idle>-0     (-----) [003] d.s4 24572.651363: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24443          <idle>-0     (-----) [000] .n.1 24572.651369: cpu_idle: state=4294967295 cpu_id=0
24444          <idle>-0     (-----) [003] ...1 24572.651376: cpu_idle: state=4294967295 cpu_id=3
24445          <idle>-0     (-----) [000] d..2 24572.651383: 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
24446          <idle>-0     (-----) [003] d..1 24572.651383: cpu_idle: state=0 cpu_id=3
24447  kworker/u16:10-23868 (23868) [000] d..2 24572.651474: 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
24448          <idle>-0     (-----) [000] d..1 24572.651490: cpu_idle: state=0 cpu_id=0
24449           <...>-13149 (-----) [002] .... 24572.652078: binder_transaction: transaction=1668852 dest_node=3 dest_proc=587 dest_thread=0 reply=0 flags=0x10 code=0x1
24450           <...>-13149 (-----) [002] d..4 24572.652092: sched_waking: comm=servicemanager pid=587 prio=120 target_cpu=001
24451           <...>-13149 (-----) [002] dn.5 24572.652123: sched_wakeup: comm=servicemanager pid=587 prio=120 target_cpu=002
24452           <...>-13149 (-----) [002] d..2 24572.652137: sched_switch: prev_comm=MonitoringInstr prev_pid=13149 prev_prio=120 prev_state=R+ ==> next_comm=servicemanager next_pid=587 next_prio=120
24453<...>-587 ( 587) [002] .... 24572.652150: binder_transaction_received: transaction=1668852
24454<...>-587 ( 587) [002] d..2 24572.652395: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
24455<...>-587 ( 587) [002] d..3 24572.652448: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
24456          <idle>-0     (-----) [000] .n.1 24572.652453: cpu_idle: state=4294967295 cpu_id=0
24457          <idle>-0     (-----) [000] d..2 24572.652467: 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
24458         rcuop/2-29    (   29) [000] d..2 24572.652495: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24459          <idle>-0     (-----) [000] d..1 24572.652506: cpu_idle: state=0 cpu_id=0
24460<...>-587 ( 587) [002] .... 24572.652507: binder_transaction: transaction=1668853 dest_node=0 dest_proc=13131 dest_thread=13149 reply=1 flags=0x0 code=0x0
24461<...>-587 ( 587) [002] d..2 24572.652569: sched_switch: prev_comm=servicemanager prev_pid=587 prev_prio=120 prev_state=S ==> next_comm=MonitoringInstr next_pid=13149 next_prio=120
24462           <...>-13149 (-----) [002] .... 24572.652579: binder_transaction_received: transaction=1668853
24463          <idle>-0     (-----) [000] d.H3 24572.657662: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
24464           <...>-13149 (-----) [002] .... 24572.657668: binder_transaction: transaction=1668855 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x1
24465          <idle>-0     (-----) [000] d.H4 24572.657682: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
24466          <idle>-0     (-----) [003] .n.1 24572.657687: cpu_idle: state=4294967295 cpu_id=3
24467           <...>-13149 (-----) [002] d..4 24572.657688: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=002
24468          <idle>-0     (-----) [000] d.s2 24572.657691: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
24469          <idle>-0     (-----) [003] d..2 24572.657703: 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
24470           <...>-13149 (-----) [002] dn.5 24572.657707: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=002
24471          <idle>-0     (-----) [000] dns3 24572.657712: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
24472           <...>-13149 (-----) [002] d..2 24572.657719: sched_switch: prev_comm=MonitoringInstr prev_pid=13149 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
24473  Binder:23968_C-25014 (23968) [002] .... 24572.657730: binder_transaction_received: transaction=1668855
24474          <idle>-0     (-----) [000] .n.1 24572.657735: cpu_idle: state=4294967295 cpu_id=0
24475         sugov:0-559   (  559) [003] .... 24572.657737: clk_set_rate: pwrcl_clk 1766400000
24476          <idle>-0     (-----) [000] d..2 24572.657751: 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
24477     rcu_preempt-7     (    7) [000] d..2 24572.657761: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
24478     rcu_preempt-7     (    7) [000] d..3 24572.657806: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=003
24479         sugov:0-559   (  559) [003] d..2 24572.657827: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=rcuop/6 next_pid=61 next_prio=120
24480     rcu_preempt-7     (    7) [000] d..2 24572.657848: 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
24481         rcuop/6-61    (   61) [003] d.s4 24572.657857: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
24482          <idle>-0     (-----) [000] d..1 24572.657864: cpu_idle: state=2 cpu_id=0
24483         rcuop/6-61    (   61) [003] d.s5 24572.657883: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
24484         rcuop/6-61    (   61) [003] d..2 24572.657929: 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
24485          <idle>-0     (-----) [003] d..1 24572.657948: cpu_idle: state=0 cpu_id=3
24486          <idle>-0     (-----) [001] .n.1 24572.658032: cpu_idle: state=4294967295 cpu_id=1
24487          <idle>-0     (-----) [001] d..2 24572.658054: 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
24488         sugov:0-559   (  559) [001] .... 24572.658076: clk_set_rate: cpu3_pwrcl_clk 652800000
24489         sugov:0-559   (  559) [001] .... 24572.658087: clk_set_rate: cpu2_pwrcl_clk 652800000
24490         sugov:0-559   (  559) [001] .... 24572.658095: clk_set_rate: cpu1_pwrcl_clk 652800000
24491         sugov:0-559   (  559) [001] .... 24572.658103: clk_set_rate: cpu0_pwrcl_clk 1766400000
24492         sugov:0-559   (  559) [001] .... 24572.658114: cpu_frequency: state=1766400 cpu_id=0
24493         sugov:0-559   (  559) [001] .... 24572.658137: cpu_frequency: state=1766400 cpu_id=1
24494         sugov:0-559   (  559) [001] .... 24572.658142: cpu_frequency: state=1766400 cpu_id=2
24495         sugov:0-559   (  559) [001] .... 24572.658148: cpu_frequency: state=1766400 cpu_id=3
24496         sugov:0-559   (  559) [001] d..2 24572.658187: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24497          <idle>-0     (-----) [001] d..1 24572.658197: cpu_idle: state=0 cpu_id=1
24498  Binder:23968_C-25014 (23968) [002] d..2 24572.658428: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
24499  Binder:23968_C-25014 (23968) [002] d..3 24572.658457: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
24500          <idle>-0     (-----) [001] .n.1 24572.658461: cpu_idle: state=4294967295 cpu_id=1
24501          <idle>-0     (-----) [001] d..2 24572.658468: 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
24502     logd.writer-563   (  555) [001] d..2 24572.658537: 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
24503          <idle>-0     (-----) [001] d..1 24572.658546: cpu_idle: state=0 cpu_id=1
24504  Binder:23968_C-25014 (23968) [002] d..2 24572.659117: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
24505  Binder:23968_C-25014 (23968) [002] d..3 24572.659130: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
24506          <idle>-0     (-----) [001] .n.1 24572.659134: cpu_idle: state=4294967295 cpu_id=1
24507          <idle>-0     (-----) [001] d..2 24572.659141: 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
24508     logd.writer-563   (  555) [001] d..2 24572.659187: 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
24509  Binder:23968_C-25014 (23968) [002] d..3 24572.659192: sched_waking: comm=android.anim pid=24041 prio=116 target_cpu=000
24510          <idle>-0     (-----) [001] d..1 24572.659194: cpu_idle: state=0 cpu_id=1
24511  Binder:23968_C-25014 (23968) [002] d..4 24572.659210: sched_wakeup: comm=android.anim pid=24041 prio=116 target_cpu=000
24512          <idle>-0     (-----) [000] .n.1 24572.659313: cpu_idle: state=4294967295 cpu_id=0
24513          <idle>-0     (-----) [000] d..2 24572.659325: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=116
24514  Binder:23968_C-25014 (23968) [002] .... 24572.659341: binder_transaction: transaction=1668856 dest_node=1271185 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x1
24515  Binder:23968_C-25014 (23968) [002] ...2 24572.659398: binder_set_priority: proc=23896 thread=25989 old=120 => new=116 desired=116
24516  Binder:23968_C-25014 (23968) [002] d..4 24572.659401: sched_waking: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=000
24517  Binder:23968_C-25014 (23968) [002] d..5 24572.659422: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=001
24518          <idle>-0     (-----) [001] .n.1 24572.659426: cpu_idle: state=4294967295 cpu_id=1
24519  Binder:23968_C-25014 (23968) [002] d..2 24572.659432: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=116 prev_state=S ==> next_comm=MonitoringInstr next_pid=13149 next_prio=120
24520          <idle>-0     (-----) [001] d..2 24572.659434: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
24521  Binder:23896_5-25989 (23896) [001] .... 24572.659442: binder_transaction_received: transaction=1668856
24522           <...>-13149 (-----) [002] d..2 24572.659448: sched_switch: prev_comm=MonitoringInstr prev_pid=13149 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24523<...>-24041 ( 23968) [000] .... 24572.659450: binder_transaction: transaction=1668857 dest_node=1271137 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
24524<...>-24041 ( 23968) [000] d..4 24572.659457: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
24525          <idle>-0     (-----) [002] d..1 24572.659463: cpu_idle: state=0 cpu_id=2
24526<...>-24041 ( 23968) [000] d..5 24572.659480: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=002
24527          <idle>-0     (-----) [002] .n.1 24572.659485: cpu_idle: state=4294967295 cpu_id=2
24528          <idle>-0     (-----) [002] d..2 24572.659493: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
24529<...>-23903 ( 23896) [002] .... 24572.659500: binder_transaction_received: transaction=1668857
24530  Binder:23896_5-25989 (23896) [001] d..3 24572.659511: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
24531  Binder:23896_5-25989 (23896) [001] d..4 24572.659531: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
24532<...>-24041 ( 23968) [000] d..2 24572.659532: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24533          <idle>-0     (-----) [003] .n.1 24572.659536: cpu_idle: state=4294967295 cpu_id=3
24534          <idle>-0     (-----) [000] d..1 24572.659540: cpu_idle: state=0 cpu_id=0
24535          <idle>-0     (-----) [003] d..2 24572.659543: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
24536<...>-23903 ( 23896) [002] ...1 24572.659549: tracing_mark_write: B|23896|HIDL::IComposerClient::getActiveConfig::client
24537  Binder:23896_5-25989 (23896) [001] d..2 24572.659551: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=116 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24538<...>-23903 ( 23896) [002] ...1 24572.659555: tracing_mark_write: E|23896
24539          <idle>-0     (-----) [001] d..1 24572.659560: cpu_idle: state=0 cpu_id=1
24540<...>-23903 ( 23896) [002] .... 24572.659630: binder_transaction: transaction=1668858 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x7
24541<...>-23903 ( 23896) [002] ...2 24572.659648: binder_set_priority: proc=598 thread=629 old=97 => new=120 desired=120
24542<...>-23903 ( 23896) [002] d..4 24572.659660: sched_waking: comm=HwBinder:598_1 pid=629 prio=120 target_cpu=003
24543<...>-23903 ( 23896) [002] d..5 24572.659675: sched_wakeup: comm=HwBinder:598_1 pid=629 prio=120 target_cpu=002
24544<...>-23903 ( 23896) [002] d..2 24572.659684: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=HwBinder:598_1 next_pid=629 next_prio=120
24545  surfaceflinger-23896 (23896) [003] ...1 24572.659689: tracing_mark_write: B|23896|HIDL::IComposerClient::getActiveConfig::client
24546  surfaceflinger-23896 (23896) [003] ...1 24572.659693: tracing_mark_write: E|23896
24547<...>-629 ( 598) [002] .... 24572.659693: binder_transaction_received: transaction=1668858
24548  surfaceflinger-23896 (23896) [003] .... 24572.659718: binder_transaction: transaction=1668859 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x7
24549  surfaceflinger-23896 (23896) [003] ...2 24572.659723: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
24550  surfaceflinger-23896 (23896) [003] d..4 24572.659728: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
24551<...>-629 ( 598) [002] ...1 24572.659738: tracing_mark_write: B|598|HIDL::IComposerClient::getActiveConfig::server
24552  surfaceflinger-23896 (23896) [003] d..5 24572.659749: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
24553          <idle>-0     (-----) [000] .n.1 24572.659754: cpu_idle: state=4294967295 cpu_id=0
24554          <idle>-0     (-----) [000] d..2 24572.659761: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
24555  surfaceflinger-23896 (23896) [003] d..2 24572.659767: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24556  HwBinder:598_3-633   (  598) [000] .... 24572.659768: binder_transaction_received: transaction=1668859
24557<...>-629 ( 598) [002] ...1 24572.659769: tracing_mark_write: E|598
24558          <idle>-0     (-----) [003] d..1 24572.659777: cpu_idle: state=0 cpu_id=3
24559<...>-629 ( 598) [002] .... 24572.659779: binder_transaction: transaction=1668860 dest_node=0 dest_proc=23896 dest_thread=23903 reply=1 flags=0x0 code=0x0
24560<...>-629 ( 598) [002] d..2 24572.659782: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=002
24561  HwBinder:598_3-633   (  598) [000] ...1 24572.659790: tracing_mark_write: B|598|HIDL::IComposerClient::getActiveConfig::server
24562<...>-629 ( 598) [002] dn.3 24572.659791: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=002
24563<...>-629 ( 598) [002] d..2 24572.659796: sched_switch: prev_comm=HwBinder:598_1 prev_pid=629 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
24564<...>-23903 ( 23896) [002] .... 24572.659800: binder_transaction_received: transaction=1668860
24565  HwBinder:598_3-633   (  598) [000] ...1 24572.659803: tracing_mark_write: E|598
24566  HwBinder:598_3-633   (  598) [000] .... 24572.659811: binder_transaction: transaction=1668861 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
24567  HwBinder:598_3-633   (  598) [000] d..2 24572.659816: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
24568<...>-23903 ( 23896) [002] d..1 24572.659827: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
24569  HwBinder:598_3-633   (  598) [000] d..3 24572.659829: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
24570  HwBinder:598_3-633   (  598) [000] .... 24572.659831: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
24571          <idle>-0     (-----) [003] .n.1 24572.659834: cpu_idle: state=4294967295 cpu_id=3
24572          <idle>-0     (-----) [003] d..2 24572.659840: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
24573  surfaceflinger-23896 (23896) [003] .... 24572.659844: binder_transaction_received: transaction=1668861
24574<...>-23903 ( 23896) [002] d..2 24572.659850: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
24575<...>-23903 ( 23896) [002] d..1 24572.659855: sched_waking: comm=surfaceflinger pid=23930 prio=112 target_cpu=002
24576          <idle>-0     (-----) [001] .n.1 24572.659855: cpu_idle: state=4294967295 cpu_id=1
24577          <idle>-0     (-----) [001] d..2 24572.659861: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
24578  HwBinder:598_3-633   (  598) [000] d..2 24572.659871: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24579          <idle>-0     (-----) [000] dn.1 24572.659879: cpu_idle: state=0 cpu_id=0
24580          <idle>-0     (-----) [000] .n.1 24572.659881: cpu_idle: state=4294967295 cpu_id=0
24581<...>-23903 ( 23896) [002] d..2 24572.659882: sched_wakeup: comm=surfaceflinger pid=23930 prio=112 target_cpu=000
24582        DispSync-23904 (23896) [001] d..2 24572.659885: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24583<...>-23903 ( 23896) [002] d..1 24572.659887: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
24584          <idle>-0     (-----) [001] d..1 24572.659891: cpu_idle: state=0 cpu_id=1
24585          <idle>-0     (-----) [000] d..2 24572.659892: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23930 next_prio=112
24586<...>-23903 ( 23896) [002] d..2 24572.659902: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
24587          <idle>-0     (-----) [001] .n.1 24572.659907: cpu_idle: state=4294967295 cpu_id=1
24588  surfaceflinger-23930 (23896) [000] ...1 24572.659912: tracing_mark_write: B|23896|HIDL::IComposerClient::setVsyncEnabled::client
24589          <idle>-0     (-----) [001] d..2 24572.659913: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
24590  surfaceflinger-23930 (23896) [000] ...1 24572.659916: tracing_mark_write: E|23896
24591  surfaceflinger-23930 (23896) [000] .... 24572.659931: binder_transaction: transaction=1668862 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x14
24592   sfEventThread-23906 (23896) [001] d..1 24572.659931: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
24593  surfaceflinger-23930 (23896) [000] ...2 24572.659936: binder_set_priority: proc=598 thread=633 old=97 => new=112 desired=112
24594<...>-23903 ( 23896) [002] d..2 24572.659937: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=HwBinder:598_1 next_pid=629 next_prio=120
24595<...>-629 ( 598) [002] .... 24572.659940: binder_set_priority: proc=598 thread=629 old=120 => new=97 desired=97
24596  surfaceflinger-23930 (23896) [000] d..4 24572.659943: sched_waking: comm=HwBinder:598_3 pid=633 prio=112 target_cpu=000
24597   sfEventThread-23906 (23896) [001] d..2 24572.659947: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
24598  surfaceflinger-23896 (23896) [003] d..2 24572.659965: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24599          <idle>-0     (-----) [003] d..1 24572.659973: cpu_idle: state=0 cpu_id=3
24600   sfEventThread-23906 (23896) [001] d..2 24572.659976: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24601          <idle>-0     (-----) [001] d..1 24572.659984: cpu_idle: state=0 cpu_id=1
24602  surfaceflinger-23930 (23896) [000] dnh5 24572.660010: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
24603  surfaceflinger-23930 (23896) [000] dnh6 24572.660020: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
24604          <idle>-0     (-----) [001] .n.1 24572.660025: cpu_idle: state=4294967295 cpu_id=1
24605  surfaceflinger-23930 (23896) [000] d..2 24572.660028: sched_switch: prev_comm=surfaceflinger prev_pid=23930 prev_prio=112 prev_state=R+ ==> next_comm=DispSync next_pid=23904 next_prio=97
24606          <idle>-0     (-----) [001] d..2 24572.660030: 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
24607         sugov:0-559   (  559) [001] d..2 24572.660042: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24608        DispSync-23904 (23896) [000] d..2 24572.660044: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=surfaceflinger next_pid=23930 next_prio=112
24609          <idle>-0     (-----) [001] d..1 24572.660048: cpu_idle: state=0 cpu_id=1
24610<...>-629 ( 598) [002] d..2 24572.660051: sched_switch: prev_comm=HwBinder:598_1 prev_pid=629 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24611  surfaceflinger-23930 (23896) [000] d..2 24572.660058: sched_switch: prev_comm=surfaceflinger prev_pid=23930 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24612          <idle>-0     (-----) [002] d..1 24572.660061: cpu_idle: state=0 cpu_id=2
24613          <idle>-0     (-----) [000] d..1 24572.660066: cpu_idle: state=0 cpu_id=0
24614          <idle>-0     (-----) [004] dnh2 24572.660618: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=112 target_cpu=004
24615          <idle>-0     (-----) [004] .n.1 24572.660622: cpu_idle: state=4294967295 cpu_id=4
24616          <idle>-0     (-----) [004] d..2 24572.660628: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=112
24617  HwBinder:598_3-633   (  598) [004] .... 24572.660631: binder_transaction_received: transaction=1668862
24618  HwBinder:598_3-633   (  598) [004] ...1 24572.660644: tracing_mark_write: B|598|HIDL::IComposerClient::setVsyncEnabled::server
24619  HwBinder:598_3-633   (  598) [004] ...1 24572.660651: tracing_mark_write: C|598|SetVsyncState |1
24620  HwBinder:598_3-633   (  598) [004] d..4 24572.660674: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
24621  HwBinder:598_3-633   (  598) [004] ...1 24572.660691: tracing_mark_write: E|598
24622          <idle>-0     (-----) [001] dnh2 24572.660691: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
24623          <idle>-0     (-----) [001] .n.1 24572.660695: cpu_idle: state=4294967295 cpu_id=1
24624  HwBinder:598_3-633   (  598) [004] .... 24572.660695: binder_transaction: transaction=1668863 dest_node=0 dest_proc=23896 dest_thread=23930 reply=1 flags=0x0 code=0x0
24625  HwBinder:598_3-633   (  598) [004] d..2 24572.660697: sched_waking: comm=surfaceflinger pid=23930 prio=112 target_cpu=000
24626          <idle>-0     (-----) [001] d..2 24572.660701: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
24627  HwBinder:598_3-633   (  598) [004] .... 24572.660704: binder_set_priority: proc=598 thread=633 old=112 => new=97 desired=97
24628          <idle>-0     (-----) [000] dnh2 24572.660712: sched_wakeup: comm=surfaceflinger pid=23930 prio=112 target_cpu=000
24629          <idle>-0     (-----) [000] .n.1 24572.660716: cpu_idle: state=4294967295 cpu_id=0
24630  HwBinder:598_3-633   (  598) [004] d..2 24572.660720: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
24631          <idle>-0     (-----) [000] d..2 24572.660722: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23930 next_prio=112
24632          <idle>-0     (-----) [004] d..1 24572.660725: cpu_idle: state=2 cpu_id=4
24633  surfaceflinger-23930 (23896) [000] .... 24572.660727: binder_transaction_received: transaction=1668863
24634  surfaceflinger-23930 (23896) [000] d..1 24572.660742: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
24635  surfaceflinger-23930 (23896) [000] d..2 24572.660752: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
24636          <idle>-0     (-----) [003] .n.1 24572.660758: cpu_idle: state=4294967295 cpu_id=3
24637          <idle>-0     (-----) [003] d..2 24572.660763: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
24638  surfaceflinger-23930 (23896) [000] d..2 24572.660766: sched_switch: prev_comm=surfaceflinger prev_pid=23930 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24639          <idle>-0     (-----) [000] d..1 24572.660773: cpu_idle: state=0 cpu_id=0
24640  surfaceflinger-23896 (23896) [003] d..1 24572.660798: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
24641  surfaceflinger-23896 (23896) [003] d..2 24572.660814: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
24642  surfaceflinger-23896 (23896) [003] d..1 24572.660818: sched_waking: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=001
24643          <idle>-0     (-----) [000] .n.1 24572.660818: cpu_idle: state=4294967295 cpu_id=0
24644          <idle>-0     (-----) [000] d..2 24572.660824: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
24645  surfaceflinger-23896 (23896) [003] d..2 24572.660833: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=002
24646          <idle>-0     (-----) [002] .n.1 24572.660839: cpu_idle: state=4294967295 cpu_id=2
24647 crtc_commit:111-253   (  253) [001] d..2 24572.660843: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
24648          <idle>-0     (-----) [002] d..2 24572.660846: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
24649   sfEventThread-23906 (23896) [000] d..2 24572.660848: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24650          <idle>-0     (-----) [001] d..1 24572.660850: cpu_idle: state=0 cpu_id=1
24651          <idle>-0     (-----) [000] d..1 24572.660853: cpu_idle: state=0 cpu_id=0
24652  surfaceflinger-23896 (23896) [003] d..2 24572.660854: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24653          <idle>-0     (-----) [003] d..1 24572.660862: cpu_idle: state=2 cpu_id=3
24654  Binder:23896_5-25989 (23896) [002] .... 24572.660871: binder_transaction: transaction=1668864 dest_node=0 dest_proc=23968 dest_thread=25014 reply=1 flags=0x0 code=0x0
24655  Binder:23896_5-25989 (23896) [002] d.s2 24572.660900: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24656  Binder:23896_5-25989 (23896) [002] d.s3 24572.660924: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
24657  Binder:23896_5-25989 (23896) [002] d..2 24572.661070: sched_waking: comm=Binder:23968_C pid=25014 prio=116 target_cpu=002
24658  Binder:23896_5-25989 (23896) [002] d..3 24572.661085: sched_wakeup: comm=Binder:23968_C pid=25014 prio=116 target_cpu=000
24659  Binder:23896_5-25989 (23896) [002] .... 24572.661087: binder_set_priority: proc=23896 thread=25989 old=116 => new=120 desired=120
24660          <idle>-0     (-----) [000] .n.1 24572.661089: cpu_idle: state=4294967295 cpu_id=0
24661          <idle>-0     (-----) [000] d..2 24572.661097: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_C next_pid=25014 next_prio=116
24662  Binder:23968_C-25014 (23968) [000] .... 24572.661103: binder_transaction_received: transaction=1668864
24663  Binder:23896_5-25989 (23896) [002] d..2 24572.661128: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
24664          <idle>-0     (-----) [003] d.s3 24572.661131: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
24665          <idle>-0     (-----) [003] d.s4 24572.661144: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
24666          <idle>-0     (-----) [001] .n.1 24572.661150: cpu_idle: state=4294967295 cpu_id=1
24667          <idle>-0     (-----) [003] ...1 24572.661152: cpu_idle: state=4294967295 cpu_id=3
24668          <idle>-0     (-----) [001] d..2 24572.661156: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
24669          <idle>-0     (-----) [003] d..1 24572.661157: cpu_idle: state=0 cpu_id=3
24670  Binder:23968_C-25014 (23968) [000] .... 24572.661159: binder_transaction: transaction=1668869 dest_node=1668867 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
24671  Binder:23968_C-25014 (23968) [000] ...2 24572.661165: binder_set_priority: proc=23896 thread=25989 old=120 => new=116 desired=116
24672  Binder:23968_C-25014 (23968) [000] d..4 24572.661167: sched_waking: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=002
24673  Binder:23968_C-25014 (23968) [000] dn.5 24572.661181: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=000
24674  Binder:23968_C-25014 (23968) [000] d..2 24572.661187: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=116 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
24675  kworker/u16:10-23868 (23868) [002] .... 24572.661188: clk_set_rate: l3_cluster0_vote_clk 652800000
24676  Binder:23896_5-25989 (23896) [000] .... 24572.661191: binder_transaction_received: transaction=1668869
24677  Binder:23896_5-25989 (23896) [000] .... 24572.661208: binder_transaction: transaction=1668870 dest_node=0 dest_proc=23968 dest_thread=25014 reply=1 flags=0x8 code=0x0
24678  Binder:23896_5-25989 (23896) [000] .... 24572.661212: binder_set_priority: proc=23896 thread=25989 old=116 => new=120 desired=120
24679  kworker/u16:10-23868 (23868) [002] d..2 24572.661225: 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
24680          <idle>-0     (-----) [002] d..1 24572.661234: cpu_idle: state=0 cpu_id=2
24681  Binder:23896_5-25989 (23896) [000] d..2 24572.661236: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=116
24682  Binder:23968_C-25014 (23968) [000] .... 24572.661241: binder_transaction_received: transaction=1668870
24683 crtc_commit:111-253   (  253) [001] d..2 24572.661281: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
24684          <idle>-0     (-----) [001] d..1 24572.661289: cpu_idle: state=0 cpu_id=1
24685          <idle>-0     (-----) [003] d.s3 24572.661301: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
24686          <idle>-0     (-----) [003] d.s4 24572.661310: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
24687          <idle>-0     (-----) [001] .n.1 24572.661316: cpu_idle: state=4294967295 cpu_id=1
24688          <idle>-0     (-----) [003] ...1 24572.661316: cpu_idle: state=4294967295 cpu_id=3
24689          <idle>-0     (-----) [003] d..1 24572.661319: cpu_idle: state=0 cpu_id=3
24690          <idle>-0     (-----) [001] d..2 24572.661321: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
24691 crtc_commit:111-253   (  253) [001] d..1 24572.661328: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
24692 crtc_commit:111-253   (  253) [001] d..2 24572.661334: sched_blocked_reason: pid=23868 iowait=0 caller=update_request_adhoc+0x384/0x480
24693 crtc_commit:111-253   (  253) [001] d..2 24572.661340: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
24694          <idle>-0     (-----) [002] .n.1 24572.661346: cpu_idle: state=4294967295 cpu_id=2
24695          <idle>-0     (-----) [002] d..2 24572.661353: 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
24696 crtc_commit:111-253   (  253) [001] d..1 24572.661371: clk_enable: disp_cc_mdss_vsync_clk_src
24697 crtc_commit:111-253   (  253) [001] d..1 24572.661373: clk_enable: disp_cc_mdss_rscc_vsync_clk
24698 crtc_commit:111-253   (  253) [001] d..1 24572.661393: clk_enable: disp_cc_mdss_rscc_ahb_clk
24699 crtc_commit:111-253   (  253) [001] d..2 24572.661441: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
24700          <idle>-0     (-----) [001] d..1 24572.661446: cpu_idle: state=0 cpu_id=1
24701  kworker/u16:10-23868 (23868) [002] d..2 24572.661452: 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
24702          <idle>-0     (-----) [002] d..1 24572.661459: cpu_idle: state=0 cpu_id=2
24703          <idle>-0     (-----) [003] d.s3 24572.661478: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
24704          <idle>-0     (-----) [003] d.s4 24572.661485: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
24705          <idle>-0     (-----) [003] d.s4 24572.661491: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
24706          <idle>-0     (-----) [002] .n.1 24572.661496: cpu_idle: state=4294967295 cpu_id=2
24707          <idle>-0     (-----) [003] ...1 24572.661496: cpu_idle: state=4294967295 cpu_id=3
24708          <idle>-0     (-----) [003] d..1 24572.661499: cpu_idle: state=0 cpu_id=3
24709          <idle>-0     (-----) [002] d..2 24572.661502: 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
24710  kworker/u16:10-23868 (23868) [002] .... 24572.661520: clk_set_rate: l3_cluster1_vote_clk 300000000
24711  kworker/u16:10-23868 (23868) [002] .... 24572.661524: clk_set_rate: l3_clk 652800000
24712          <idle>-0     (-----) [001] d.h2 24572.661537: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
24713          <idle>-0     (-----) [001] dnh3 24572.661546: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
24714          <idle>-0     (-----) [001] .n.1 24572.661552: cpu_idle: state=4294967295 cpu_id=1
24715          <idle>-0     (-----) [001] d..2 24572.661558: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
24716  Binder:23968_C-25014 (23968) [000] .... 24572.661558: binder_transaction: transaction=1668871 dest_node=1271185 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x1
24717  Binder:23968_C-25014 (23968) [000] ...2 24572.661570: binder_set_priority: proc=23896 thread=25989 old=120 => new=116 desired=116
24718  Binder:23968_C-25014 (23968) [000] d..4 24572.661573: sched_waking: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=000
24719  Binder:23968_C-25014 (23968) [000] dn.5 24572.661583: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=000
24720  Binder:23968_C-25014 (23968) [000] d..2 24572.661590: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=116 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
24721  Binder:23896_5-25989 (23896) [000] .... 24572.661595: binder_transaction_received: transaction=1668871
24722 crtc_commit:111-253   (  253) [001] d..1 24572.661600: clk_enable: gcc_disp_axi_clk
24723 crtc_commit:111-253   (  253) [001] d..1 24572.661612: clk_enable: disp_cc_mdss_ahb_clk
24724 crtc_commit:111-253   (  253) [001] d..1 24572.661621: clk_enable: disp_cc_mdss_axi_clk
24725  Binder:23896_5-25989 (23896) [000] d..3 24572.661621: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
24726  Binder:23896_5-25989 (23896) [000] d..4 24572.661634: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
24727 crtc_commit:111-253   (  253) [001] d..1 24572.661637: clk_enable: gcc_disp_gpll0_clk_src
24728          <idle>-0     (-----) [003] .n.1 24572.661639: cpu_idle: state=4294967295 cpu_id=3
24729  Binder:23896_5-25989 (23896) [000] d..2 24572.661646: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=116 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=116
24730          <idle>-0     (-----) [003] d..2 24572.661647: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
24731  Binder:23968_C-25014 (23968) [000] d..2 24572.661663: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=116 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24732          <idle>-0     (-----) [000] d..1 24572.661670: cpu_idle: state=0 cpu_id=0
24733  kworker/u16:10-23868 (23868) [002] d..2 24572.661696: 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
24734          <idle>-0     (-----) [002] d..1 24572.661706: cpu_idle: state=0 cpu_id=2
24735  surfaceflinger-23896 (23896) [003] d.s1 24572.661716: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
24736  surfaceflinger-23896 (23896) [003] d.s2 24572.661730: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
24737  surfaceflinger-23896 (23896) [003] ...1 24572.661780: tracing_mark_write: B|23896|HIDL::IComposerClient::getActiveConfig::client
24738  surfaceflinger-23896 (23896) [003] ...1 24572.661784: tracing_mark_write: E|23896
24739  surfaceflinger-23896 (23896) [003] .... 24572.661798: binder_transaction: transaction=1668872 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x7
24740  surfaceflinger-23896 (23896) [003] ...2 24572.661804: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
24741  surfaceflinger-23896 (23896) [003] d..4 24572.661807: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
24742  surfaceflinger-23896 (23896) [003] d..5 24572.661828: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
24743          <idle>-0     (-----) [000] .n.1 24572.661833: cpu_idle: state=4294967295 cpu_id=0
24744          <idle>-0     (-----) [000] d..2 24572.661862: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
24745  surfaceflinger-23896 (23896) [003] d.H5 24572.661863: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
24746  surfaceflinger-23896 (23896) [003] d.H6 24572.661876: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
24747          <idle>-0     (-----) [002] .n.1 24572.661881: cpu_idle: state=4294967295 cpu_id=2
24748  HwBinder:598_3-633   (  598) [000] .... 24572.661882: binder_transaction_received: transaction=1668872
24749          <idle>-0     (-----) [002] d..2 24572.661888: 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
24750  surfaceflinger-23896 (23896) [003] d..2 24572.661891: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
24751  HwBinder:598_3-633   (  598) [000] ...1 24572.661900: tracing_mark_write: B|598|HIDL::IComposerClient::getActiveConfig::server
24752     ksoftirqd/3-34    (   34) [003] d.s2 24572.661902: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
24753         sugov:0-559   (  559) [002] d..2 24572.661903: 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
24754          <idle>-0     (-----) [002] d..1 24572.661909: cpu_idle: state=0 cpu_id=2
24755     ksoftirqd/3-34    (   34) [003] d.s3 24572.661910: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
24756  HwBinder:598_3-633   (  598) [000] ...1 24572.661910: tracing_mark_write: E|598
24757     ksoftirqd/3-34    (   34) [003] d.s3 24572.661916: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
24758  HwBinder:598_3-633   (  598) [000] .... 24572.661918: binder_transaction: transaction=1668873 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
24759          <idle>-0     (-----) [002] .n.1 24572.661921: cpu_idle: state=4294967295 cpu_id=2
24760  HwBinder:598_3-633   (  598) [000] d..2 24572.661922: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
24761          <idle>-0     (-----) [002] d..2 24572.661928: 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
24762     ksoftirqd/3-34    (   34) [003] d..2 24572.661932: 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
24763  HwBinder:598_3-633   (  598) [000] d..3 24572.661940: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
24764  HwBinder:598_3-633   (  598) [000] .... 24572.661942: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
24765  kworker/u16:10-23868 (23868) [002] d..2 24572.661945: 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
24766          <idle>-0     (-----) [003] d..2 24572.661946: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
24767          <idle>-0     (-----) [002] d..1 24572.661952: cpu_idle: state=0 cpu_id=2
24768  surfaceflinger-23896 (23896) [003] .... 24572.661952: binder_transaction_received: transaction=1668873
24769  surfaceflinger-23896 (23896) [003] d..1 24572.661978: sched_waking: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=000
24770  HwBinder:598_3-633   (  598) [000] d..2 24572.661979: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24771          <idle>-0     (-----) [000] d..1 24572.661987: cpu_idle: state=0 cpu_id=0
24772  surfaceflinger-23896 (23896) [003] d..2 24572.661994: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=000
24773          <idle>-0     (-----) [000] .n.1 24572.661998: cpu_idle: state=4294967295 cpu_id=0
24774          <idle>-0     (-----) [000] d..2 24572.662005: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
24775  surfaceflinger-23896 (23896) [003] d..2 24572.662015: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24776          <idle>-0     (-----) [003] d..1 24572.662025: cpu_idle: state=0 cpu_id=3
24777  Binder:23896_5-25989 (23896) [000] .... 24572.662029: binder_transaction: transaction=1668874 dest_node=0 dest_proc=23968 dest_thread=25014 reply=1 flags=0x0 code=0x0
24778  Binder:23896_5-25989 (23896) [000] d..2 24572.662080: sched_waking: comm=Binder:23968_C pid=25014 prio=116 target_cpu=000
24779  Binder:23896_5-25989 (23896) [000] d..3 24572.662090: sched_wakeup: comm=Binder:23968_C pid=25014 prio=116 target_cpu=000
24780  Binder:23896_5-25989 (23896) [000] .... 24572.662093: binder_set_priority: proc=23896 thread=25989 old=116 => new=120 desired=120
24781  Binder:23896_5-25989 (23896) [000] d..2 24572.662128: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=116
24782  Binder:23968_C-25014 (23968) [000] .... 24572.662134: binder_transaction_received: transaction=1668874
24783 crtc_commit:111-253   (  253) [001] d..1 24572.662145: clk_enable: disp_cc_mdss_mdp_clk_src
24784 crtc_commit:111-253   (  253) [001] d..1 24572.662173: clk_enable: disp_cc_mdss_mdp_clk
24785 crtc_commit:111-253   (  253) [001] d..1 24572.662184: clk_enable: disp_cc_mdss_vsync_clk
24786 crtc_commit:111-253   (  253) [001] d..2 24572.662388: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24787          <idle>-0     (-----) [001] d..1 24572.662397: cpu_idle: state=0 cpu_id=1
24788  Binder:23968_C-25014 (23968) [000] d..3 24572.663095: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
24789  Binder:23968_C-25014 (23968) [000] d..4 24572.663122: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
24790          <idle>-0     (-----) [001] .n.1 24572.663127: cpu_idle: state=4294967295 cpu_id=1
24791          <idle>-0     (-----) [001] d..2 24572.663135: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
24792          <idle>-0     (-----) [002] ...1 24572.663180: cpu_idle: state=4294967295 cpu_id=2
24793          <idle>-0     (-----) [002] d..1 24572.663183: cpu_idle: state=2 cpu_id=2
24794<...>-24073 ( 23968) [001] d..2 24572.663185: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24795          <idle>-0     (-----) [001] d..1 24572.663193: cpu_idle: state=0 cpu_id=1
24796  Binder:23968_C-25014 (23968) [000] d..3 24572.663262: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=001
24797  Binder:23968_C-25014 (23968) [000] d..4 24572.663281: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=001
24798          <idle>-0     (-----) [001] .n.1 24572.663286: cpu_idle: state=4294967295 cpu_id=1
24799          <idle>-0     (-----) [001] d..2 24572.663293: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
24800          <idle>-0     (-----) [003] ...1 24572.663317: cpu_idle: state=4294967295 cpu_id=3
24801          <idle>-0     (-----) [003] d..1 24572.663320: cpu_idle: state=2 cpu_id=3
24802<...>-23993 ( 23968) [001] d..2 24572.663349: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24803          <idle>-0     (-----) [001] d..1 24572.663357: cpu_idle: state=0 cpu_id=1
24804  Binder:23968_C-25014 (23968) [000] d..2 24572.663416: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
24805  Binder:23968_C-25014 (23968) [000] d..3 24572.663430: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
24806  Binder:23968_C-25014 (23968) [000] .... 24572.663564: binder_transaction: transaction=1668877 dest_node=1271185 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x1
24807  Binder:23968_C-25014 (23968) [000] ...2 24572.663572: binder_set_priority: proc=23896 thread=25989 old=120 => new=116 desired=116
24808  Binder:23968_C-25014 (23968) [000] d..4 24572.663574: sched_waking: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=000
24809  Binder:23968_C-25014 (23968) [000] d..5 24572.663594: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=001
24810          <idle>-0     (-----) [001] .n.1 24572.663599: cpu_idle: state=4294967295 cpu_id=1
24811  Binder:23968_C-25014 (23968) [000] d..2 24572.663604: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=116 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
24812          <idle>-0     (-----) [001] d..2 24572.663606: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
24813  Binder:23896_5-25989 (23896) [001] .... 24572.663612: binder_transaction_received: transaction=1668877
24814  Binder:23896_5-25989 (23896) [001] d..3 24572.663636: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
24815  Binder:23896_5-25989 (23896) [001] d..4 24572.663649: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
24816  Binder:23896_5-25989 (23896) [001] d..2 24572.663666: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=116 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24817          <idle>-0     (-----) [001] d..1 24572.663675: cpu_idle: state=0 cpu_id=1
24818     logd.writer-563   (  555) [000] d..2 24572.663681: 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
24819          <idle>-0     (-----) [000] d..1 24572.663692: cpu_idle: state=0 cpu_id=0
24820          <idle>-0     (-----) [003] .n.1 24572.663764: cpu_idle: state=4294967295 cpu_id=3
24821          <idle>-0     (-----) [003] d..2 24572.663776: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
24822  surfaceflinger-23896 (23896) [003] ...1 24572.663865: tracing_mark_write: B|23896|HIDL::IComposerClient::getActiveConfig::client
24823  surfaceflinger-23896 (23896) [003] ...1 24572.663868: tracing_mark_write: E|23896
24824  surfaceflinger-23896 (23896) [003] .... 24572.663883: binder_transaction: transaction=1668878 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x7
24825  surfaceflinger-23896 (23896) [003] ...2 24572.663890: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
24826  surfaceflinger-23896 (23896) [003] d..4 24572.663894: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
24827  surfaceflinger-23896 (23896) [003] d..5 24572.663910: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
24828          <idle>-0     (-----) [000] .n.1 24572.663915: cpu_idle: state=4294967295 cpu_id=0
24829          <idle>-0     (-----) [000] d..2 24572.663921: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
24830  HwBinder:598_3-633   (  598) [000] .... 24572.663927: binder_transaction_received: transaction=1668878
24831  surfaceflinger-23896 (23896) [003] d..2 24572.663930: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24832          <idle>-0     (-----) [003] d..1 24572.663941: cpu_idle: state=0 cpu_id=3
24833  HwBinder:598_3-633   (  598) [000] ...1 24572.663946: tracing_mark_write: B|598|HIDL::IComposerClient::getActiveConfig::server
24834  HwBinder:598_3-633   (  598) [000] ...1 24572.663956: tracing_mark_write: E|598
24835  HwBinder:598_3-633   (  598) [000] .... 24572.663966: binder_transaction: transaction=1668879 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
24836  HwBinder:598_3-633   (  598) [000] d..2 24572.663972: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
24837  HwBinder:598_3-633   (  598) [000] d..3 24572.663987: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
24838  HwBinder:598_3-633   (  598) [000] .... 24572.663989: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
24839          <idle>-0     (-----) [003] .n.1 24572.663992: cpu_idle: state=4294967295 cpu_id=3
24840          <idle>-0     (-----) [003] d..2 24572.663999: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
24841  surfaceflinger-23896 (23896) [003] .... 24572.664004: binder_transaction_received: transaction=1668879
24842  HwBinder:598_3-633   (  598) [000] d..2 24572.664026: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24843          <idle>-0     (-----) [000] d..1 24572.664033: cpu_idle: state=0 cpu_id=0
24844  surfaceflinger-23896 (23896) [003] d..1 24572.664108: sched_waking: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=001
24845  surfaceflinger-23896 (23896) [003] d..2 24572.664128: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=000
24846          <idle>-0     (-----) [000] .n.1 24572.664133: cpu_idle: state=4294967295 cpu_id=0
24847          <idle>-0     (-----) [000] d..2 24572.664140: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
24848  surfaceflinger-23896 (23896) [003] d..2 24572.664151: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24849          <idle>-0     (-----) [003] d..1 24572.664161: cpu_idle: state=0 cpu_id=3
24850  Binder:23896_5-25989 (23896) [000] .... 24572.664170: binder_transaction: transaction=1668880 dest_node=0 dest_proc=23968 dest_thread=25014 reply=1 flags=0x0 code=0x0
24851  Binder:23896_5-25989 (23896) [000] d.s2 24572.664264: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
24852  Binder:23896_5-25989 (23896) [000] d.s3 24572.664279: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
24853  Binder:23896_5-25989 (23896) [000] d..2 24572.664317: sched_waking: comm=Binder:23968_C pid=25014 prio=116 target_cpu=000
24854  Binder:23896_5-25989 (23896) [000] d..3 24572.664335: sched_wakeup: comm=Binder:23968_C pid=25014 prio=116 target_cpu=001
24855  Binder:23896_5-25989 (23896) [000] .... 24572.664337: binder_set_priority: proc=23896 thread=25989 old=116 => new=120 desired=120
24856          <idle>-0     (-----) [001] .n.1 24572.664341: cpu_idle: state=4294967295 cpu_id=1
24857  Binder:23896_5-25989 (23896) [000] d..2 24572.664349: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
24858          <idle>-0     (-----) [001] d..2 24572.664350: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_C next_pid=25014 next_prio=116
24859  Binder:23968_C-25014 (23968) [001] .... 24572.664356: binder_transaction_received: transaction=1668880
24860     rcu_preempt-7     (    7) [000] d..2 24572.664363: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
24861  Binder:23968_C-25014 (23968) [001] .... 24572.664398: binder_transaction: transaction=1668885 dest_node=1668883 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
24862  Binder:23968_C-25014 (23968) [001] ...2 24572.664404: binder_set_priority: proc=23896 thread=25989 old=120 => new=116 desired=116
24863  Binder:23896_5-25989 (23896) [000] d..2 24572.664408: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24864  Binder:23968_C-25014 (23968) [001] d..4 24572.664411: sched_waking: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=000
24865          <idle>-0     (-----) [000] d..1 24572.664418: cpu_idle: state=0 cpu_id=0
24866  Binder:23968_C-25014 (23968) [001] dn.5 24572.664426: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=001
24867  Binder:23968_C-25014 (23968) [001] d..2 24572.664432: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=116 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
24868  Binder:23896_5-25989 (23896) [001] .... 24572.664437: binder_transaction_received: transaction=1668885
24869  Binder:23896_5-25989 (23896) [001] .... 24572.664455: binder_transaction: transaction=1668886 dest_node=0 dest_proc=23968 dest_thread=25014 reply=1 flags=0x8 code=0x0
24870  Binder:23896_5-25989 (23896) [001] .... 24572.664459: binder_set_priority: proc=23896 thread=25989 old=116 => new=120 desired=120
24871  Binder:23896_5-25989 (23896) [001] d..2 24572.664486: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=116
24872  Binder:23968_C-25014 (23968) [001] .... 24572.664491: binder_transaction_received: transaction=1668886
24873  Binder:23968_C-25014 (23968) [001] .... 24572.664673: binder_transaction: transaction=1668887 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
24874  Binder:23968_C-25014 (23968) [001] ...2 24572.664678: binder_set_priority: proc=23896 thread=25989 old=120 => new=116 desired=116
24875  Binder:23968_C-25014 (23968) [001] d..4 24572.664681: sched_waking: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=001
24876  Binder:23968_C-25014 (23968) [001] dn.5 24572.664691: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=001
24877  Binder:23968_C-25014 (23968) [001] d..2 24572.664697: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=116 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
24878  Binder:23896_5-25989 (23896) [001] .... 24572.664703: binder_transaction_received: transaction=1668887
24879  Binder:23896_5-25989 (23896) [001] .... 24572.664736: binder_transaction: transaction=1668888 dest_node=0 dest_proc=23968 dest_thread=25014 reply=1 flags=0x0 code=0x0
24880  Binder:23896_5-25989 (23896) [001] .... 24572.664740: binder_set_priority: proc=23896 thread=25989 old=116 => new=120 desired=120
24881  Binder:23896_5-25989 (23896) [001] d..2 24572.664766: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=116
24882  Binder:23968_C-25014 (23968) [001] .... 24572.664770: binder_transaction_received: transaction=1668888
24883  Binder:23968_C-25014 (23968) [001] d..2 24572.664851: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
24884  Binder:23968_C-25014 (23968) [001] d..3 24572.664866: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
24885  Binder:23968_C-25014 (23968) [001] d..1 24572.665030: sched_waking: comm=LazyTaskWriterT pid=24117 prio=130 target_cpu=001
24886  Binder:23968_C-25014 (23968) [001] d..2 24572.665050: sched_wakeup: comm=LazyTaskWriterT pid=24117 prio=130 target_cpu=001
24887  Binder:23968_C-25014 (23968) [001] d..2 24572.665107: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=116 prev_state=R+ ==> next_comm=LazyTaskWriterT next_pid=24117 next_prio=130
24888<...>-24117 ( 23968) [001] d..2 24572.665153: sched_switch: prev_comm=LazyTaskWriterT prev_pid=24117 prev_prio=130 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=116
24889          <idle>-0     (-----) [003] ...1 24572.665282: cpu_idle: state=4294967295 cpu_id=3
24890          <idle>-0     (-----) [003] d..1 24572.665285: cpu_idle: state=2 cpu_id=3
24891  Binder:23968_C-25014 (23968) [001] d..3 24572.665675: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
24892  Binder:23968_C-25014 (23968) [001] d..4 24572.665696: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
24893          <idle>-0     (-----) [000] .n.1 24572.665701: cpu_idle: state=4294967295 cpu_id=0
24894          <idle>-0     (-----) [000] d..2 24572.665709: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
24895<...>-24073 ( 23968) [000] d..2 24572.665760: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
24896     logd.writer-563   (  555) [000] d..2 24572.665837: 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
24897          <idle>-0     (-----) [000] d..1 24572.665847: cpu_idle: state=0 cpu_id=0
24898  Binder:23968_C-25014 (23968) [001] d..2 24572.665870: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
24899  Binder:23968_C-25014 (23968) [001] d..3 24572.665888: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
24900  Binder:23968_C-25014 (23968) [001] ...1 24572.666010: tracing_mark_write: B|23968|HIDL::IPower::powerHintAsync::client
24901  Binder:23968_C-25014 (23968) [001] ...1 24572.666015: tracing_mark_write: E|23968
24902  Binder:23968_C-25014 (23968) [001] .... 24572.666077: binder_transaction: transaction=1668889 dest_node=1000 dest_proc=774 dest_thread=0 reply=0 flags=0x11 code=0x6
24903  Binder:23968_C-25014 (23968) [001] d..4 24572.666085: sched_waking: comm=power@1.2-servi pid=774 prio=120 target_cpu=000
24904  Binder:23968_C-25014 (23968) [001] dn.5 24572.666120: sched_wakeup: comm=power@1.2-servi pid=774 prio=120 target_cpu=001
24905  Binder:23968_C-25014 (23968) [001] d..2 24572.666128: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=118 prev_state=R+ ==> next_comm=power@1.2-servi next_pid=774 next_prio=120
24906<...>-774 ( 774) [001] .... 24572.666138: binder_transaction_received: transaction=1668889
24907<...>-774 ( 774) [001] ...1 24572.666180: tracing_mark_write: B|774|HIDL::IPower::powerHintAsync::server
24908<...>-774 ( 774) [001] ...1 24572.666381: tracing_mark_write: B|774|launch
24909<...>-774 ( 774) [001] ...1 24572.666385: tracing_mark_write: C|774|launch_lock|1
24910<...>-774 ( 774) [001] d..1 24572.666426: sched_waking: comm=NodeLooperThrea pid=2085 prio=100 target_cpu=005
24911<...>-774 ( 774) [001] d..2 24572.666455: sched_wakeup: comm=NodeLooperThrea pid=2085 prio=100 target_cpu=000
24912          <idle>-0     (-----) [000] .n.1 24572.666460: cpu_idle: state=4294967295 cpu_id=0
24913<...>-774 ( 774) [001] d.h3 24572.666489: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
24914          <idle>-0     (-----) [000] d..2 24572.666490: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NodeLooperThrea next_pid=2085 next_prio=100
24915<...>-774 ( 774) [001] d.h3 24572.666499: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
24916<...>-774 ( 774) [001] d.h4 24572.666508: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
24917<...>-774 ( 774) [001] d..1 24572.666513: sched_waking: comm=NodeLooperThrea pid=2085 prio=100 target_cpu=000
24918<...>-2085 ( 774) [000] d..2 24572.666523: sched_switch: prev_comm=NodeLooperThrea prev_pid=2085 prev_prio=100 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24919          <idle>-0     (-----) [000] d..1 24572.666530: cpu_idle: state=0 cpu_id=0
24920          <idle>-0     (-----) [000] .n.1 24572.666532: cpu_idle: state=4294967295 cpu_id=0
24921<...>-774 ( 774) [001] d..2 24572.666533: sched_wakeup: comm=NodeLooperThrea pid=2085 prio=100 target_cpu=000
24922          <idle>-0     (-----) [000] d..2 24572.666542: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NodeLooperThrea next_pid=2085 next_prio=100
24923<...>-774 ( 774) [001] ...1 24572.666620: tracing_mark_write: E|774
24924          <idle>-0     (-----) [002] .n.1 24572.666621: cpu_idle: state=4294967295 cpu_id=2
24925<...>-2085 ( 774) [000] .... 24572.666622: cpu_frequency_limits: min=1766400 max=1766400 cpu_id=0
24926<...>-774 ( 774) [001] ...1 24572.666624: tracing_mark_write: E|774
24927          <idle>-0     (-----) [002] d..2 24572.666633: 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
24928         sugov:0-559   (  559) [002] d..2 24572.666653: 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
24929          <idle>-0     (-----) [002] d..1 24572.666662: cpu_idle: state=0 cpu_id=2
24930<...>-774 ( 774) [001] d..2 24572.666667: sched_switch: prev_comm=power@1.2-servi prev_pid=774 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=118
24931<...>-2085 ( 774) [000] .... 24572.666668: cpu_frequency_limits: min=2803200 max=2803200 cpu_id=4
24932<...>-2085 ( 774) [000] d..2 24572.667077: sched_switch: prev_comm=NodeLooperThrea prev_pid=2085 prev_prio=100 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
24933          <idle>-0     (-----) [000] d..1 24572.667089: cpu_idle: state=0 cpu_id=0
24934          <idle>-0     (-----) [007] dnh2 24572.667154: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
24935          <idle>-0     (-----) [007] .n.1 24572.667159: cpu_idle: state=4294967295 cpu_id=7
24936          <idle>-0     (-----) [007] d..2 24572.667165: 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
24937         sugov:4-560   (  560) [007] d..2 24572.667177: 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
24938          <idle>-0     (-----) [007] d..1 24572.667182: cpu_idle: state=2 cpu_id=7
24939          <idle>-0     (-----) [003] d.s3 24572.667225: sched_waking: comm=NodeLooperThrea pid=2085 prio=100 target_cpu=000
24940          <idle>-0     (-----) [003] d.s4 24572.667234: sched_blocked_reason: pid=2085 iowait=0 caller=wait_for_tx_done+0x34/0x120
24941          <idle>-0     (-----) [003] d.s4 24572.667241: sched_wakeup: comm=NodeLooperThrea pid=2085 prio=100 target_cpu=000
24942          <idle>-0     (-----) [000] .n.1 24572.667246: cpu_idle: state=4294967295 cpu_id=0
24943          <idle>-0     (-----) [003] ...1 24572.667249: cpu_idle: state=4294967295 cpu_id=3
24944          <idle>-0     (-----) [000] d..2 24572.667255: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NodeLooperThrea next_pid=2085 next_prio=100
24945          <idle>-0     (-----) [003] d..1 24572.667255: cpu_idle: state=0 cpu_id=3
24946  Binder:23968_C-25014 (23968) [001] d..3 24572.667284: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
24947  Binder:23968_C-25014 (23968) [001] d..4 24572.667309: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=002
24948          <idle>-0     (-----) [002] .n.1 24572.667313: cpu_idle: state=4294967295 cpu_id=2
24949          <idle>-0     (-----) [002] d..2 24572.667321: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
24950<...>-24073 ( 23968) [002] d..2 24572.667360: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24951          <idle>-0     (-----) [002] d..1 24572.667368: cpu_idle: state=0 cpu_id=2
24952<...>-2085 ( 774) [000] d..2 24572.667439: sched_switch: prev_comm=NodeLooperThrea prev_pid=2085 prev_prio=100 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
24953          <idle>-0     (-----) [000] d..1 24572.667448: cpu_idle: state=0 cpu_id=0
24954          <idle>-0     (-----) [003] d.s3 24572.667452: sched_waking: comm=NodeLooperThrea pid=2085 prio=100 target_cpu=000
24955          <idle>-0     (-----) [003] d.s4 24572.667458: sched_blocked_reason: pid=2085 iowait=0 caller=wait_for_tx_done+0x34/0x120
24956          <idle>-0     (-----) [003] d.s4 24572.667463: sched_wakeup: comm=NodeLooperThrea pid=2085 prio=100 target_cpu=000
24957          <idle>-0     (-----) [000] .n.1 24572.667469: cpu_idle: state=4294967295 cpu_id=0
24958          <idle>-0     (-----) [003] ...1 24572.667469: cpu_idle: state=4294967295 cpu_id=3
24959          <idle>-0     (-----) [003] d..1 24572.667472: cpu_idle: state=0 cpu_id=3
24960          <idle>-0     (-----) [000] d..2 24572.667477: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NodeLooperThrea next_pid=2085 next_prio=100
24961  Binder:23968_C-25014 (23968) [001] .... 24572.667583: binder_transaction: transaction=1668890 dest_node=1271185 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x1
24962  Binder:23968_C-25014 (23968) [001] ...2 24572.667595: binder_set_priority: proc=23896 thread=25989 old=120 => new=116 desired=116
24963  Binder:23968_C-25014 (23968) [001] d..4 24572.667597: sched_waking: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=001
24964<...>-2085 ( 774) [000] .... 24572.667602: clk_set_rate: l3_cluster0_vote_clk 1478400000
24965<...>-2085 ( 774) [000] .... 24572.667606: clk_set_rate: l3_clk 1478400000
24966  Binder:23968_C-25014 (23968) [001] d..5 24572.667616: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=002
24967          <idle>-0     (-----) [002] .n.1 24572.667621: cpu_idle: state=4294967295 cpu_id=2
24968  Binder:23968_C-25014 (23968) [001] d..2 24572.667627: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=116 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
24969          <idle>-0     (-----) [002] d..2 24572.667630: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
24970  Binder:23896_5-25989 (23896) [002] .... 24572.667637: binder_transaction_received: transaction=1668890
24971  Binder:23896_5-25989 (23896) [002] d..3 24572.667666: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
24972  Binder:23896_5-25989 (23896) [002] d..4 24572.667678: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
24973<...>-2085 ( 774) [000] .... 24572.667681: clk_set_rate: l3_cluster1_vote_clk 1478400000
24974          <idle>-0     (-----) [003] .n.1 24572.667682: cpu_idle: state=4294967295 cpu_id=3
24975          <idle>-0     (-----) [003] d..2 24572.667689: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
24976  Binder:23896_5-25989 (23896) [002] d..2 24572.667694: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=116 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24977          <idle>-0     (-----) [002] d..1 24572.667702: cpu_idle: state=0 cpu_id=2
24978     logd.writer-563   (  555) [001] d..2 24572.667735: 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
24979          <idle>-0     (-----) [001] d..1 24572.667745: cpu_idle: state=0 cpu_id=1
24980          <idle>-0     (-----) [001] ...1 24572.667751: cpu_idle: state=4294967295 cpu_id=1
24981          <idle>-0     (-----) [002] ...1 24572.667754: cpu_idle: state=4294967295 cpu_id=2
24982          <idle>-0     (-----) [001] d..1 24572.667754: cpu_idle: state=0 cpu_id=1
24983  surfaceflinger-23896 (23896) [003] ...1 24572.667754: tracing_mark_write: B|23896|HIDL::IComposerClient::getActiveConfig::client
24984          <idle>-0     (-----) [002] d..1 24572.667757: cpu_idle: state=0 cpu_id=2
24985  surfaceflinger-23896 (23896) [003] ...1 24572.667758: tracing_mark_write: E|23896
24986  surfaceflinger-23896 (23896) [003] .... 24572.667769: binder_transaction: transaction=1668891 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x7
24987  surfaceflinger-23896 (23896) [003] ...2 24572.667773: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
24988  surfaceflinger-23896 (23896) [003] d..4 24572.667776: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
24989  surfaceflinger-23896 (23896) [003] d..5 24572.667792: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
24990          <idle>-0     (-----) [001] .n.1 24572.667797: cpu_idle: state=4294967295 cpu_id=1
24991          <idle>-0     (-----) [001] d..2 24572.667803: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
24992  HwBinder:598_3-633   (  598) [001] .... 24572.667808: binder_transaction_received: transaction=1668891
24993  surfaceflinger-23896 (23896) [003] d..2 24572.667808: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24994          <idle>-0     (-----) [003] d..1 24572.667817: cpu_idle: state=0 cpu_id=3
24995  HwBinder:598_3-633   (  598) [001] ...1 24572.667823: tracing_mark_write: B|598|HIDL::IComposerClient::getActiveConfig::server
24996  HwBinder:598_3-633   (  598) [001] ...1 24572.667833: tracing_mark_write: E|598
24997  HwBinder:598_3-633   (  598) [001] .... 24572.667840: binder_transaction: transaction=1668892 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
24998<...>-2085 ( 774) [000] d..2 24572.667844: sched_switch: prev_comm=NodeLooperThrea prev_pid=2085 prev_prio=100 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24999  HwBinder:598_3-633   (  598) [001] d..2 24572.667844: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
25000          <idle>-0     (-----) [000] d..1 24572.667851: cpu_idle: state=0 cpu_id=0
25001  HwBinder:598_3-633   (  598) [001] d..3 24572.667856: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
25002  HwBinder:598_3-633   (  598) [001] .... 24572.667858: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
25003          <idle>-0     (-----) [003] .n.1 24572.667861: cpu_idle: state=4294967295 cpu_id=3
25004          <idle>-0     (-----) [003] d..2 24572.667866: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
25005  surfaceflinger-23896 (23896) [003] .... 24572.667870: binder_transaction_received: transaction=1668892
25006  HwBinder:598_3-633   (  598) [001] d..2 24572.667888: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25007          <idle>-0     (-----) [001] d..1 24572.667896: cpu_idle: state=0 cpu_id=1
25008  surfaceflinger-23896 (23896) [003] d..1 24572.667948: sched_waking: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=002
25009  surfaceflinger-23896 (23896) [003] d..2 24572.668010: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
25010          <idle>-0     (-----) [003] d..1 24572.668019: cpu_idle: state=0 cpu_id=3
25011          <idle>-0     (-----) [005] ...1 24572.668400: cpu_idle: state=4294967295 cpu_id=5
25012          <idle>-0     (-----) [005] d..1 24572.668404: cpu_idle: state=0 cpu_id=5
25013          <idle>-0     (-----) [004] dnh2 24572.668426: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=004
25014          <idle>-0     (-----) [004] .n.1 24572.668429: cpu_idle: state=4294967295 cpu_id=4
25015          <idle>-0     (-----) [004] d..2 24572.668435: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
25016  Binder:23896_5-25989 (23896) [004] .... 24572.668449: binder_transaction: transaction=1668893 dest_node=0 dest_proc=23968 dest_thread=25014 reply=1 flags=0x0 code=0x0
25017          <idle>-0     (-----) [006] ...1 24572.668450: cpu_idle: state=4294967295 cpu_id=6
25018          <idle>-0     (-----) [006] d..1 24572.668454: cpu_idle: state=0 cpu_id=6
25019          <idle>-0     (-----) [007] ...1 24572.668471: cpu_idle: state=4294967295 cpu_id=7
25020          <idle>-0     (-----) [007] d..1 24572.668473: cpu_idle: state=0 cpu_id=7
25021  Binder:23896_5-25989 (23896) [004] d..2 24572.668482: sched_waking: comm=Binder:23968_C pid=25014 prio=116 target_cpu=001
25022  Binder:23896_5-25989 (23896) [004] d..3 24572.668496: sched_wakeup: comm=Binder:23968_C pid=25014 prio=116 target_cpu=006
25023          <idle>-0     (-----) [006] .n.1 24572.668500: cpu_idle: state=4294967295 cpu_id=6
25024  Binder:23896_5-25989 (23896) [004] .... 24572.668514: binder_set_priority: proc=23896 thread=25989 old=116 => new=120 desired=120
25025          <idle>-0     (-----) [006] d..2 24572.668520: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_C next_pid=25014 next_prio=116
25026  Binder:23968_C-25014 (23968) [006] .... 24572.668524: binder_transaction_received: transaction=1668893
25027  Binder:23896_5-25989 (23896) [004] d..2 24572.668535: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
25028          <idle>-0     (-----) [004] d..1 24572.668540: cpu_idle: state=0 cpu_id=4
25029  Binder:23968_C-25014 (23968) [006] .... 24572.668544: binder_transaction: transaction=1668898 dest_node=1668896 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
25030  Binder:23968_C-25014 (23968) [006] ...2 24572.668547: binder_set_priority: proc=23896 thread=25989 old=120 => new=116 desired=116
25031  Binder:23968_C-25014 (23968) [006] d..4 24572.668548: sched_waking: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=004
25032  Binder:23968_C-25014 (23968) [006] dn.5 24572.668557: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=006
25033  Binder:23968_C-25014 (23968) [006] d..2 24572.668560: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=116 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
25034  Binder:23896_5-25989 (23896) [006] .... 24572.668562: binder_transaction_received: transaction=1668898
25035  Binder:23896_5-25989 (23896) [006] .... 24572.668571: binder_transaction: transaction=1668899 dest_node=0 dest_proc=23968 dest_thread=25014 reply=1 flags=0x8 code=0x0
25036  Binder:23896_5-25989 (23896) [006] .... 24572.668572: binder_set_priority: proc=23896 thread=25989 old=116 => new=120 desired=120
25037  Binder:23896_5-25989 (23896) [006] d..2 24572.668583: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=116
25038  Binder:23968_C-25014 (23968) [006] .... 24572.668584: binder_transaction_received: transaction=1668899
25039  Binder:23968_C-25014 (23968) [006] d..1 24572.668688: sched_waking: comm=LazyTaskWriterT pid=24117 prio=130 target_cpu=001
25040  Binder:23968_C-25014 (23968) [006] d..2 24572.668702: sched_wakeup: comm=LazyTaskWriterT pid=24117 prio=130 target_cpu=007
25041          <idle>-0     (-----) [007] .n.1 24572.668707: cpu_idle: state=4294967295 cpu_id=7
25042          <idle>-0     (-----) [007] d..2 24572.668723: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=LazyTaskWriterT next_pid=24117 next_prio=130
25043<...>-24117 ( 23968) [007] d..2 24572.668744: sched_switch: prev_comm=LazyTaskWriterT prev_pid=24117 prev_prio=130 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
25044          <idle>-0     (-----) [007] d..1 24572.668747: cpu_idle: state=0 cpu_id=7
25045  Binder:23968_C-25014 (23968) [006] d..3 24572.668798: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=002
25046  Binder:23968_C-25014 (23968) [006] d..4 24572.668815: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=007
25047          <idle>-0     (-----) [007] .n.1 24572.668819: cpu_idle: state=4294967295 cpu_id=7
25048          <idle>-0     (-----) [007] d..2 24572.668832: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
25049  Binder:23968_C-25014 (23968) [006] d..3 24572.668842: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=002
25050  Binder:23968_C-25014 (23968) [006] d..4 24572.668856: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=004
25051          <idle>-0     (-----) [004] .n.1 24572.668860: cpu_idle: state=4294967295 cpu_id=4
25052          <idle>-0     (-----) [004] d..2 24572.668873: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
25053<...>-24003 ( 23968) [004] d..2 24572.668900: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
25054          <idle>-0     (-----) [004] d..1 24572.668904: cpu_idle: state=0 cpu_id=4
25055<...>-23968 ( 23968) [007] .... 24572.668912: binder_transaction: transaction=1668900 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x16
25056<...>-23968 ( 23968) [007] d..4 24572.668917: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=007
25057  Binder:23968_C-25014 (23968) [006] d..3 24572.668923: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=000
25058<...>-23968 ( 23968) [007] d..5 24572.668924: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=007
25059  Binder:23968_C-25014 (23968) [006] d..4 24572.668935: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=004
25060          <idle>-0     (-----) [004] .n.1 24572.668939: cpu_idle: state=4294967295 cpu_id=4
25061          <idle>-0     (-----) [004] d..2 24572.668953: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
25062<...>-23968 ( 23968) [007] d..2 24572.668954: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
25063<...>-24177 ( 24151) [007] .... 24572.668958: binder_transaction_received: transaction=1668900
25064          <idle>-0     (-----) [002] ...1 24572.669003: cpu_idle: state=4294967295 cpu_id=2
25065          <idle>-0     (-----) [002] d..1 24572.669005: cpu_idle: state=0 cpu_id=2
25066  Binder:23968_C-25014 (23968) [006] d..2 24572.669028: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
25067          <idle>-0     (-----) [000] dnh2 24572.669047: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
25068          <idle>-0     (-----) [000] .n.1 24572.669050: cpu_idle: state=4294967295 cpu_id=0
25069          <idle>-0     (-----) [000] d..2 24572.669055: 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
25070<...>-24177 ( 24151) [007] d..3 24572.669058: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
25071  Binder:23968_C-25014 (23968) [006] d..2 24572.669063: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=000
25072<...>-24177 ( 24151) [007] d..4 24572.669073: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
25073  Binder:23968_C-25014 (23968) [006] d..3 24572.669084: sched_waking: comm=android.bg pid=23992 prio=130 target_cpu=000
25074          <idle>-0     (-----) [001] dnh2 24572.669096: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=001
25075     logd.writer-563   (  555) [000] d..2 24572.669109: 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
25076          <idle>-0     (-----) [000] d..1 24572.669114: cpu_idle: state=0 cpu_id=0
25077          <idle>-0     (-----) [001] dnh2 24572.669116: sched_wakeup: comm=android.bg pid=23992 prio=130 target_cpu=001
25078          <idle>-0     (-----) [001] .n.1 24572.669119: cpu_idle: state=4294967295 cpu_id=1
25079          <idle>-0     (-----) [001] d..2 24572.669125: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=statsd.writer next_pid=1044 next_prio=120
25080<...>-24177 ( 24151) [007] d..2 24572.669133: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
25081          <idle>-0     (-----) [007] d..1 24572.669138: cpu_idle: state=0 cpu_id=7
25082          <idle>-0     (-----) [003] ...1 24572.669144: cpu_idle: state=4294967295 cpu_id=3
25083          <idle>-0     (-----) [003] d..1 24572.669147: cpu_idle: state=0 cpu_id=3
25084  Binder:23968_C-25014 (23968) [006] .... 24572.669180: binder_transaction: transaction=1668901 dest_node=1303079 dest_proc=24827 dest_thread=0 reply=0 flags=0x11 code=0x33
25085  Binder:23968_C-25014 (23968) [006] d..4 24572.669189: sched_waking: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=002
25086  Binder:23968_C-25014 (23968) [006] d..5 24572.669204: sched_wakeup: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=005
25087          <idle>-0     (-----) [005] .n.1 24572.669209: cpu_idle: state=4294967295 cpu_id=5
25088          <idle>-0     (-----) [005] d..2 24572.669225: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24827_4 next_pid=25554 next_prio=120
25089<...>-25554 ( 24827) [005] .... 24572.669232: binder_transaction_received: transaction=1668901
25090  Binder:23968_C-25014 (23968) [006] d..3 24572.669281: sched_waking: comm=PowerManagerSer pid=24006 prio=116 target_cpu=000
25091<...>-1044 ( 887) [001] d..2 24572.669293: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=android.bg next_pid=23992 next_prio=130
25092  Binder:23968_C-25014 (23968) [006] d..4 24572.669296: sched_wakeup: comm=PowerManagerSer pid=24006 prio=116 target_cpu=007
25093          <idle>-0     (-----) [007] .n.1 24572.669300: cpu_idle: state=4294967295 cpu_id=7
25094          <idle>-0     (-----) [007] d..2 24572.669314: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=24006 next_prio=116
25095 PowerManagerSer-24006 (23968) [007] d..2 24572.669338: sched_switch: prev_comm=PowerManagerSer prev_pid=24006 prev_prio=116 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
25096          <idle>-0     (-----) [007] d..1 24572.669341: cpu_idle: state=0 cpu_id=7
25097<...>-25554 ( 24827) [005] d..3 24572.669372: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=007
25098<...>-25554 ( 24827) [005] d..4 24572.669382: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=007
25099  Binder:23968_C-25014 (23968) [006] d..2 24572.669383: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=001
25100          <idle>-0     (-----) [007] .n.1 24572.669386: cpu_idle: state=4294967295 cpu_id=7
25101          <idle>-0     (-----) [007] d..2 24572.669390: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
25102  Binder:23968_C-25014 (23968) [006] d..1 24572.669399: sched_waking: comm=PowerManagerSer pid=24006 prio=116 target_cpu=007
25103          <idle>-0     (-----) [000] dnh2 24572.669403: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=000
25104  Binder:23968_C-25014 (23968) [006] d..2 24572.669404: sched_wakeup: comm=PowerManagerSer pid=24006 prio=116 target_cpu=007
25105<...>-23992 ( 23968) [001] d..2 24572.669405: sched_switch: prev_comm=android.bg prev_pid=23992 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25106          <idle>-0     (-----) [000] .n.1 24572.669406: cpu_idle: state=4294967295 cpu_id=0
25107          <idle>-0     (-----) [000] d..2 24572.669411: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=statsd.writer next_pid=1044 next_prio=120
25108          <idle>-0     (-----) [001] d..1 24572.669413: cpu_idle: state=0 cpu_id=1
25109<...>-25554 ( 24827) [005] d..2 24572.669416: sched_switch: prev_comm=Binder:24827_4 prev_pid=25554 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
25110          <idle>-0     (-----) [005] d..1 24572.669421: cpu_idle: state=0 cpu_id=5
25111  Binder:23968_C-25014 (23968) [006] d..2 24572.669423: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=110 prev_state=R+ ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
25112<...>-1044 ( 887) [000] d..2 24572.669485: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25113          <idle>-0     (-----) [000] d..1 24572.669491: cpu_idle: state=0 cpu_id=0
25114<...>-24151 ( 24151) [006] d..2 24572.669522: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=110
25115 s.nexuslauncher-24827 (24827) [007] .... 24572.669563: binder_transaction: transaction=1668902 dest_node=1271174 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x45
25116 s.nexuslauncher-24827 (24827) [007] ...2 24572.669566: binder_set_priority: proc=23968 thread=24233 old=120 => new=110 desired=110
25117 s.nexuslauncher-24827 (24827) [007] d..4 24572.669568: sched_waking: comm=Binder:23968_5 pid=24233 prio=110 target_cpu=000
25118 s.nexuslauncher-24827 (24827) [007] d..5 24572.669583: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=110 target_cpu=006
25119  Binder:23968_C-25014 (23968) [006] d..2 24572.669603: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=110 prev_state=R ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=110
25120 s.nexuslauncher-24827 (24827) [007] d..2 24572.669605: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=PowerManagerSer next_pid=24006 next_prio=116
25121  Binder:23968_5-24233 (23968) [006] .... 24572.669607: binder_transaction_received: transaction=1668902
25122 PowerManagerSer-24006 (23968) [007] d..2 24572.669632: sched_switch: prev_comm=PowerManagerSer prev_pid=24006 prev_prio=116 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
25123          <idle>-0     (-----) [007] d..1 24572.669637: cpu_idle: state=0 cpu_id=7
25124  Binder:23968_5-24233 (23968) [006] d..2 24572.669676: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=110 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=110
25125  Binder:23968_C-25014 (23968) [006] d..3 24572.669790: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=002
25126  Binder:23968_C-25014 (23968) [006] d..4 24572.669803: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=007
25127          <idle>-0     (-----) [007] .n.1 24572.669808: cpu_idle: state=4294967295 cpu_id=7
25128          <idle>-0     (-----) [007] d..2 24572.669823: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
25129  Binder:23968_C-25014 (23968) [006] d..1 24572.669824: sched_waking: comm=Binder:23968_5 pid=24233 prio=110 target_cpu=006
25130  Binder:23968_C-25014 (23968) [006] d..2 24572.669830: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=110 target_cpu=007
25131<...>-24073 ( 23968) [007] d..2 24572.669834: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=110
25132  Binder:23968_C-25014 (23968) [006] d..2 24572.669854: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
25133          <idle>-0     (-----) [006] d..1 24572.669861: cpu_idle: state=0 cpu_id=6
25134  Binder:23968_5-24233 (23968) [007] .... 24572.669869: binder_transaction: transaction=1668903 dest_node=1284532 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x4
25135  Binder:23968_5-24233 (23968) [007] d..4 24572.669872: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=007
25136  Binder:23968_5-24233 (23968) [007] d..5 24572.669883: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=006
25137          <idle>-0     (-----) [006] .n.1 24572.669887: cpu_idle: state=4294967295 cpu_id=6
25138          <idle>-0     (-----) [006] d..2 24572.669891: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
25139<...>-24177 ( 24151) [006] .... 24572.669893: binder_transaction_received: transaction=1668903
25140  Binder:23968_5-24233 (23968) [007] .... 24572.669947: binder_transaction: transaction=1668904 dest_node=1284532 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x2
25141  Binder:23968_5-24233 (23968) [007] d..1 24572.669956: sched_waking: comm=Binder:23968_C pid=25014 prio=118 target_cpu=006
25142  Binder:23968_5-24233 (23968) [007] d..2 24572.669961: sched_wakeup: comm=Binder:23968_C pid=25014 prio=118 target_cpu=006
25143<...>-24177 ( 24151) [006] d..3 24572.669966: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
25144<...>-24177 ( 24151) [006] d..4 24572.669972: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
25145<...>-24177 ( 24151) [006] d..4 24572.669987: sched_waking: comm=Binder:24151_5 pid=24406 prio=120 target_cpu=001
25146  Binder:23968_5-24233 (23968) [007] .... 24572.669999: binder_transaction: transaction=1668905 dest_node=0 dest_proc=24827 dest_thread=24827 reply=1 flags=0x0 code=0x0
25147<...>-24177 ( 24151) [006] d..5 24572.669999: sched_wakeup: comm=Binder:24151_5 pid=24406 prio=120 target_cpu=006
25148  Binder:23968_5-24233 (23968) [007] d..2 24572.670001: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=007
25149  Binder:23968_5-24233 (23968) [007] d..3 24572.670018: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=007
25150<...>-24177 ( 24151) [006] .... 24572.670019: binder_transaction_received: transaction=1668904
25151  Binder:23968_5-24233 (23968) [007] .... 24572.670019: binder_set_priority: proc=23968 thread=24233 old=110 => new=120 desired=120
25152  Binder:23968_5-24233 (23968) [007] d..2 24572.670031: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
25153 s.nexuslauncher-24827 (24827) [007] .... 24572.670033: binder_transaction_received: transaction=1668905
25154<...>-24177 ( 24151) [006] d..2 24572.670073: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=Binder:24151_5 next_pid=24406 next_prio=120
25155<...>-24406 ( 24151) [006] d..2 24572.670078: sched_switch: prev_comm=Binder:24151_5 prev_pid=24406 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
25156<...>-24151 ( 24151) [006] .... 24572.670159: binder_transaction: transaction=1668906 dest_node=1270642 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x1
25157<...>-24151 ( 24151) [006] d..4 24572.670161: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
25158<...>-24151 ( 24151) [006] d..5 24572.670167: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
25159<...>-24151 ( 24151) [006] d..2 24572.670171: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=118
25160 s.nexuslauncher-24827 (24827) [007] d..2 24572.670276: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
25161          <idle>-0     (-----) [000] dnh2 24572.670292: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
25162          <idle>-0     (-----) [000] .n.1 24572.670295: cpu_idle: state=4294967295 cpu_id=0
25163          <idle>-0     (-----) [000] d..2 24572.670300: 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
25164 s.nexuslauncher-24827 (24827) [007] .... 24572.670334: binder_transaction: transaction=1668907 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x12
25165 s.nexuslauncher-24827 (24827) [007] ...2 24572.670338: binder_set_priority: proc=23968 thread=23981 old=120 => new=110 desired=110
25166 s.nexuslauncher-24827 (24827) [007] d..4 24572.670339: sched_waking: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=000
25167     logd.writer-563   (  555) [000] d.h1 24572.670340: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
25168  Binder:23968_C-25014 (23968) [006] d..3 24572.670344: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=004
25169     logd.writer-563   (  555) [000] dnh2 24572.670355: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
25170  Binder:23968_C-25014 (23968) [006] dn.4 24572.670355: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=005
25171 s.nexuslauncher-24827 (24827) [007] d..5 24572.670356: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=006
25172  Binder:23968_C-25014 (23968) [006] d..2 24572.670359: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=110
25173          <idle>-0     (-----) [005] .n.1 24572.670360: cpu_idle: state=4294967295 cpu_id=5
25174     logd.writer-563   (  555) [000] d..2 24572.670363: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
25175          <idle>-0     (-----) [005] d..2 24572.670365: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
25176  Binder:23968_1-23981 (23968) [006] .... 24572.670382: binder_transaction_received: transaction=1668907
25177 s.nexuslauncher-24827 (24827) [007] d..2 24572.670385: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
25178<...>-24003 ( 23968) [005] d..2 24572.670387: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
25179  Binder:23968_5-24233 (23968) [007] .... 24572.670387: binder_transaction_received: transaction=1668906
25180          <idle>-0     (-----) [005] d..1 24572.670390: cpu_idle: state=0 cpu_id=5
25181  Binder:23968_1-23981 (23968) [006] d..1 24572.670413: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
25182  Binder:23968_5-24233 (23968) [007] d..2 24572.670416: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
25183  Binder:23968_1-23981 (23968) [006] d..2 24572.670423: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
25184          <idle>-0     (-----) [007] d..2 24572.670426: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
25185  Binder:23968_1-23981 (23968) [006] d..2 24572.670473: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=110 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=110
25186  Binder:23968_C-25014 (23968) [006] d..1 24572.670477: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=005
25187  Binder:23968_C-25014 (23968) [006] d..2 24572.670483: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=005
25188 irq/79-1436400.-24613 (24613) [000] d..2 24572.670486: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=logd.writer next_pid=563 next_prio=130
25189          <idle>-0     (-----) [005] .n.1 24572.670487: cpu_idle: state=4294967295 cpu_id=5
25190          <idle>-0     (-----) [005] d..2 24572.670490: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
25191<...>-24003 ( 23968) [005] d..2 24572.670503: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
25192          <idle>-0     (-----) [005] d..1 24572.670505: cpu_idle: state=0 cpu_id=5
25193  Binder:23968_5-24233 (23968) [007] .... 24572.670507: binder_transaction: transaction=1668908 dest_node=0 dest_proc=24151 dest_thread=24151 reply=1 flags=0x0 code=0x0
25194          <idle>-0     (-----) [003] d.s3 24572.670509: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
25195  Binder:23968_5-24233 (23968) [007] d..2 24572.670510: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
25196          <idle>-0     (-----) [003] d.s4 24572.670517: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
25197  Binder:23968_5-24233 (23968) [007] d..3 24572.670517: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
25198          <idle>-0     (-----) [003] ...1 24572.670523: cpu_idle: state=4294967295 cpu_id=3
25199     logd.writer-563   (  555) [000] d..2 24572.670525: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
25200          <idle>-0     (-----) [003] d..1 24572.670526: cpu_idle: state=0 cpu_id=3
25201  Binder:23968_5-24233 (23968) [007] d..2 24572.670527: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
25202<...>-24151 ( 24151) [007] .... 24572.670529: binder_transaction_received: transaction=1668908
25203 irq/79-1436400.-24613 (24613) [000] d..2 24572.670544: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
25204<...>-24041 ( 23968) [004] d..2 24572.670555: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
25205     logd.writer-563   (  555) [000] d..2 24572.670556: 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
25206          <idle>-0     (-----) [000] d..1 24572.670561: cpu_idle: state=0 cpu_id=0
25207          <idle>-0     (-----) [004] d..1 24572.670564: cpu_idle: state=0 cpu_id=4
25208  Binder:23968_C-25014 (23968) [006] .... 24572.670589: binder_transaction: transaction=1668909 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
25209  Binder:23968_C-25014 (23968) [006] d..4 24572.670591: sched_waking: comm=Binder:24151_5 pid=24406 prio=120 target_cpu=006
25210  Binder:23968_C-25014 (23968) [006] dn.5 24572.670598: sched_wakeup: comm=Binder:24151_5 pid=24406 prio=120 target_cpu=006
25211  Binder:23968_C-25014 (23968) [006] d..2 24572.670601: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=110 prev_state=R+ ==> next_comm=Binder:24151_5 next_pid=24406 next_prio=120
25212<...>-24151 ( 24151) [007] .... 24572.670602: binder_transaction: transaction=1668910 dest_node=1270642 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x1
25213<...>-24406 ( 24151) [006] .... 24572.670604: binder_transaction_received: transaction=1668909
25214<...>-24151 ( 24151) [007] d..4 24572.670604: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
25215<...>-24151 ( 24151) [007] d..5 24572.670608: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
25216<...>-24151 ( 24151) [007] d..2 24572.670612: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
25217  Binder:23968_5-24233 (23968) [007] .... 24572.670613: binder_transaction_received: transaction=1668910
25218  Binder:23968_5-24233 (23968) [007] .... 24572.670685: binder_transaction: transaction=1668911 dest_node=0 dest_proc=24151 dest_thread=24151 reply=1 flags=0x0 code=0x0
25219  Binder:23968_5-24233 (23968) [007] d..2 24572.670688: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
25220  Binder:23968_5-24233 (23968) [007] d..3 24572.670692: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
25221  Binder:23968_5-24233 (23968) [007] d..2 24572.670702: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
25222<...>-24151 ( 24151) [007] .... 24572.670704: binder_transaction_received: transaction=1668911
25223<...>-24406 ( 24151) [006] d..2 24572.670704: sched_switch: prev_comm=Binder:24151_5 prev_pid=24406 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=110
25224  Binder:23968_C-25014 (23968) [006] d..3 24572.670765: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=000
25225  Binder:23968_C-25014 (23968) [006] dn.4 24572.670779: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=006
25226  Binder:23968_C-25014 (23968) [006] d..2 24572.670798: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=110 prev_state=R+ ==> next_comm=android.ui next_pid=23994 next_prio=118
25227<...>-24151 ( 24151) [007] d..3 24572.670804: sched_waking: comm=recents.fg pid=24369 prio=120 target_cpu=007
25228<...>-23994 ( 23968) [006] d..2 24572.670812: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=110
25229  Binder:23968_C-25014 (23968) [006] d..1 24572.670814: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=006
25230<...>-24151 ( 24151) [007] d..4 24572.670822: sched_wakeup: comm=recents.fg pid=24369 prio=120 target_cpu=006
25231  Binder:23968_C-25014 (23968) [006] dn.2 24572.670824: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=006
25232  Binder:23968_C-25014 (23968) [006] d..2 24572.670829: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=110 prev_state=R+ ==> next_comm=recents.fg next_pid=24369 next_prio=120
25233<...>-24151 ( 24151) [007] .... 24572.670860: binder_transaction: transaction=1668912 dest_node=1284535 dest_proc=23968 dest_thread=0 reply=0 flags=0x11 code=0x2
25234<...>-24151 ( 24151) [007] d..4 24572.670862: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
25235<...>-24151 ( 24151) [007] d..5 24572.670867: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
25236<...>-24369 ( 24151) [006] d.s2 24572.670896: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=003
25237          <idle>-0     (-----) [000] d.s2 24572.670902: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
25238<...>-24369 ( 24151) [006] d.s3 24572.670910: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=004
25239          <idle>-0     (-----) [004] .n.1 24572.670914: cpu_idle: state=4294967295 cpu_id=4
25240          <idle>-0     (-----) [004] d..2 24572.670919: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
25241          <idle>-0     (-----) [005] dnh2 24572.670936: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
25242<...>-24151 ( 24151) [007] d..2 24572.670937: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
25243          <idle>-0     (-----) [005] .n.1 24572.670939: cpu_idle: state=4294967295 cpu_id=5
25244  Binder:23968_5-24233 (23968) [007] .... 24572.670939: binder_transaction_received: transaction=1668912
25245          <idle>-0     (-----) [005] d..2 24572.670965: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
25246         rcuop/6-61    (   61) [004] d..2 24572.670966: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
25247          <idle>-0     (-----) [004] d..1 24572.670968: cpu_idle: state=0 cpu_id=4
25248          <idle>-0     (-----) [000] d.s3 24572.670970: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
25249     rcu_preempt-7     (    7) [005] d..2 24572.670971: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
25250  Binder:23968_5-24233 (23968) [007] d..2 24572.670981: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
25251<...>-24369 ( 24151) [006] .... 24572.670984: binder_transaction: transaction=1668913 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x5c
25252          <idle>-0     (-----) [007] d..1 24572.670986: cpu_idle: state=0 cpu_id=7
25253<...>-24369 ( 24151) [006] d..4 24572.670987: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=006
25254     rcu_preempt-7     (    7) [005] d..3 24572.670990: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=004
25255     rcu_preempt-7     (    7) [005] d..2 24572.670992: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
25256          <idle>-0     (-----) [004] dnh2 24572.670993: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
25257          <idle>-0     (-----) [004] .n.1 24572.670998: cpu_idle: state=4294967295 cpu_id=4
25258<...>-24369 ( 24151) [006] d..5 24572.671001: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
25259          <idle>-0     (-----) [007] .n.1 24572.671006: cpu_idle: state=4294967295 cpu_id=7
25260          <idle>-0     (-----) [004] d..2 24572.671022: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
25261          <idle>-0     (-----) [007] d..2 24572.671023: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
25262<...>-24369 ( 24151) [006] d..2 24572.671025: sched_switch: prev_comm=recents.fg prev_pid=24369 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=23994 next_prio=118
25263<...>-12589 ( 23968) [007] .... 24572.671027: binder_transaction_received: transaction=1668913
25264     rcu_preempt-7     (    7) [005] d..3 24572.671031: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=007
25265<...>-23994 ( 23968) [006] d..2 24572.671031: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=110
25266  Binder:23968_C-25014 (23968) [006] d..1 24572.671033: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
25267         rcuop/2-29    (   29) [004] d..2 24572.671052: 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
25268  Binder:23968_C-25014 (23968) [006] d..2 24572.671054: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=006
25269          <idle>-0     (-----) [000] ...1 24572.671055: cpu_idle: state=4294967295 cpu_id=0
25270     rcu_preempt-7     (    7) [005] d..2 24572.671058: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
25271          <idle>-0     (-----) [000] d..1 24572.671058: cpu_idle: state=0 cpu_id=0
25272          <idle>-0     (-----) [005] d..1 24572.671060: cpu_idle: state=0 cpu_id=5
25273<...>-12589 ( 23968) [007] d..2 24572.671138: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
25274         rcuop/0-10    (   10) [007] d..2 24572.671144: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
25275         rcuop/0-10    (   10) [007] d..3 24572.671159: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=005
25276          <idle>-0     (-----) [005] .n.1 24572.671164: cpu_idle: state=4294967295 cpu_id=5
25277          <idle>-0     (-----) [005] d..2 24572.671178: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
25278         rcuop/1-21    (   21) [005] d..2 24572.671186: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
25279         rcuop/0-10    (   10) [007] d..2 24572.671188: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
25280          <idle>-0     (-----) [005] d..1 24572.671189: cpu_idle: state=0 cpu_id=5
25281          <idle>-0     (-----) [007] d..1 24572.671192: cpu_idle: state=0 cpu_id=7
25282  kworker/u16:10-23868 (23868) [004] d..2 24572.671262: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
25283          <idle>-0     (-----) [004] d..1 24572.671265: cpu_idle: state=0 cpu_id=4
25284  Binder:23968_C-25014 (23968) [006] .... 24572.671284: binder_transaction: transaction=1668914 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
25285          <idle>-0     (-----) [003] d.s3 24572.671295: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
25286  Binder:23968_C-25014 (23968) [006] ...2 24572.671295: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
25287  Binder:23968_C-25014 (23968) [006] d..4 24572.671297: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=006
25288          <idle>-0     (-----) [003] ...1 24572.671306: cpu_idle: state=4294967295 cpu_id=3
25289          <idle>-0     (-----) [004] d.h2 24572.671307: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
25290          <idle>-0     (-----) [004] dnh2 24572.671308: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
25291          <idle>-0     (-----) [003] d..1 24572.671308: cpu_idle: state=0 cpu_id=3
25292  Binder:23968_C-25014 (23968) [006] d..5 24572.671308: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
25293          <idle>-0     (-----) [004] .n.1 24572.671310: cpu_idle: state=4294967295 cpu_id=4
25294          <idle>-0     (-----) [005] .n.1 24572.671313: cpu_idle: state=4294967295 cpu_id=5
25295          <idle>-0     (-----) [004] d..2 24572.671313: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
25296  Binder:23968_C-25014 (23968) [006] d..2 24572.671314: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=110 prev_state=S ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
25297          <idle>-0     (-----) [005] d..2 24572.671315: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
25298  Binder:23896_5-25989 (23896) [005] .... 24572.671318: binder_transaction_received: transaction=1668914
25299  Binder:23968_5-24233 (23968) [006] d..1 24572.671319: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=006
25300  Binder:23968_5-24233 (23968) [006] d..2 24572.671327: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=007
25301          <idle>-0     (-----) [007] .n.1 24572.671332: cpu_idle: state=4294967295 cpu_id=7
25302          <idle>-0     (-----) [007] d..2 24572.671335: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
25303  Binder:23968_5-24233 (23968) [006] d..2 24572.671357: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
25304  kworker/u16:10-23868 (23868) [004] d..2 24572.671357: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
25305          <idle>-0     (-----) [004] d..1 24572.671360: cpu_idle: state=0 cpu_id=4
25306          <idle>-0     (-----) [006] d..1 24572.671363: cpu_idle: state=0 cpu_id=6
25307<...>-23994 ( 23968) [007] d..3 24572.671365: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=007
25308<...>-23994 ( 23968) [007] d..4 24572.671375: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=006
25309          <idle>-0     (-----) [006] .n.1 24572.671380: cpu_idle: state=4294967295 cpu_id=6
25310          <idle>-0     (-----) [006] d..2 24572.671384: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
25311  Binder:23896_5-25989 (23896) [005] .... 24572.671390: binder_transaction: transaction=1668915 dest_node=0 dest_proc=23968 dest_thread=25014 reply=1 flags=0x0 code=0x0
25312  Binder:23896_5-25989 (23896) [005] d..2 24572.671392: sched_waking: comm=Binder:23968_C pid=25014 prio=110 target_cpu=006
25313<...>-23994 ( 23968) [007] d..2 24572.671396: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
25314          <idle>-0     (-----) [007] d..1 24572.671400: cpu_idle: state=0 cpu_id=7
25315  Binder:23896_5-25989 (23896) [005] d..3 24572.671403: sched_wakeup: comm=Binder:23968_C pid=25014 prio=110 target_cpu=007
25316  Binder:23896_5-25989 (23896) [005] .... 24572.671404: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
25317          <idle>-0     (-----) [007] .n.1 24572.671408: cpu_idle: state=4294967295 cpu_id=7
25318          <idle>-0     (-----) [007] d..2 24572.671411: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_C next_pid=25014 next_prio=110
25319  Binder:23968_C-25014 (23968) [007] .... 24572.671414: binder_transaction_received: transaction=1668915
25320<...>-23968 ( 23968) [006] .... 24572.671417: binder_transaction: transaction=1668916 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
25321<...>-23968 ( 23968) [006] d..4 24572.671420: sched_waking: comm=Binder:24151_5 pid=24406 prio=120 target_cpu=006
25322  Binder:23896_5-25989 (23896) [005] d..2 24572.671423: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
25323<...>-23968 ( 23968) [006] d..5 24572.671425: sched_wakeup: comm=Binder:24151_5 pid=24406 prio=120 target_cpu=006
25324          <idle>-0     (-----) [005] d..1 24572.671427: cpu_idle: state=0 cpu_id=5
25325<...>-23968 ( 23968) [006] d..2 24572.671442: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=Binder:24151_5 next_pid=24406 next_prio=120
25326<...>-24406 ( 24151) [006] .... 24572.671444: binder_transaction_received: transaction=1668916
25327<...>-24406 ( 24151) [006] d..3 24572.671474: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
25328<...>-24406 ( 24151) [006] d..4 24572.671482: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
25329<...>-24406 ( 24151) [006] d..2 24572.671498: sched_switch: prev_comm=Binder:24151_5 prev_pid=24406 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
25330<...>-24151 ( 24151) [006] d..2 24572.671537: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
25331          <idle>-0     (-----) [006] d..1 24572.671542: cpu_idle: state=0 cpu_id=6
25332          <idle>-0     (-----) [000] d.h2 24572.671604: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
25333  Binder:23968_C-25014 (23968) [007] d..3 24572.671623: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=007
25334          <idle>-0     (-----) [004] dnh2 24572.671628: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=004
25335          <idle>-0     (-----) [004] .n.1 24572.671630: cpu_idle: state=4294967295 cpu_id=4
25336          <idle>-0     (-----) [004] d..2 24572.671652: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
25337  Binder:23968_C-25014 (23968) [007] d..4 24572.671655: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
25338          <idle>-0     (-----) [000] ...1 24572.671655: cpu_idle: state=4294967295 cpu_id=0
25339          <idle>-0     (-----) [000] d..1 24572.671659: cpu_idle: state=0 cpu_id=0
25340          <idle>-0     (-----) [006] .n.1 24572.671659: cpu_idle: state=4294967295 cpu_id=6
25341          <idle>-0     (-----) [006] d..2 24572.671663: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
25342        DispSync-23904 (23896) [004] d..1 24572.671665: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
25343<...>-24073 ( 23968) [006] d..2 24572.671678: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
25344          <idle>-0     (-----) [000] dnh2 24572.671679: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
25345        DispSync-23904 (23896) [004] d..2 24572.671680: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
25346          <idle>-0     (-----) [006] d..1 24572.671681: cpu_idle: state=0 cpu_id=6
25347          <idle>-0     (-----) [004] d..1 24572.671683: cpu_idle: state=0 cpu_id=4
25348          <idle>-0     (-----) [000] .n.1 24572.671683: cpu_idle: state=4294967295 cpu_id=0
25349          <idle>-0     (-----) [000] d..2 24572.671688: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
25350  Binder:23968_C-25014 (23968) [007] d..1 24572.671693: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=005
25351  Binder:23968_C-25014 (23968) [007] d..2 24572.671703: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=004
25352          <idle>-0     (-----) [004] .n.1 24572.671707: cpu_idle: state=4294967295 cpu_id=4
25353          <idle>-0     (-----) [004] d..2 24572.671710: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
25354  Binder:23968_C-25014 (23968) [007] d..1 24572.671729: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=001
25355<...>-24003 ( 23968) [004] d..1 24572.671742: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=004
25356  Binder:23968_C-25014 (23968) [007] d..2 24572.671743: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=006
25357          <idle>-0     (-----) [006] .n.1 24572.671747: cpu_idle: state=4294967295 cpu_id=6
25358          <idle>-0     (-----) [006] d..2 24572.671762: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
25359<...>-24003 ( 23968) [004] d..2 24572.671767: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=005
25360          <idle>-0     (-----) [005] .n.1 24572.671771: cpu_idle: state=4294967295 cpu_id=5
25361          <idle>-0     (-----) [005] d..2 24572.671775: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
25362   sfEventThread-23906 (23896) [000] d..3 24572.671781: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
25363   sfEventThread-23906 (23896) [000] d..4 24572.671791: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
25364          <idle>-0     (-----) [003] .n.1 24572.671795: cpu_idle: state=4294967295 cpu_id=3
25365          <idle>-0     (-----) [003] d..2 24572.671801: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
25366<...>-24003 ( 23968) [004] d..2 24572.671805: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
25367          <idle>-0     (-----) [004] d..1 24572.671809: cpu_idle: state=0 cpu_id=4
25368   sfEventThread-23906 (23896) [000] d..2 24572.671811: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25369  Binder:23968_C-25014 (23968) [007] .... 24572.671812: binder_transaction: transaction=1668917 dest_node=0 dest_proc=13131 dest_thread=13149 reply=1 flags=0x0 code=0x0
25370  Binder:23968_C-25014 (23968) [007] d..2 24572.671815: sched_waking: comm=MonitoringInstr pid=13149 prio=120 target_cpu=002
25371<...>-23993 ( 23968) [006] .... 24572.671817: binder_transaction: transaction=1668918 dest_node=1307515 dest_proc=24827 dest_thread=0 reply=0 flags=0x11 code=0xa
25372          <idle>-0     (-----) [000] d..1 24572.671820: cpu_idle: state=0 cpu_id=0
25373<...>-23993 ( 23968) [006] d..4 24572.671821: sched_waking: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=005
25374  Binder:23968_C-25014 (23968) [007] d..3 24572.671826: sched_wakeup: comm=MonitoringInstr pid=13149 prio=120 target_cpu=007
25375<...>-23993 ( 23968) [006] d..5 24572.671832: sched_wakeup: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=004
25376          <idle>-0     (-----) [004] .n.1 24572.671836: cpu_idle: state=4294967295 cpu_id=4
25377          <idle>-0     (-----) [004] d..2 24572.671848: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24827_4 next_pid=25554 next_prio=120
25378<...>-25554 ( 24827) [004] .... 24572.671851: binder_transaction_received: transaction=1668918
25379  Binder:23968_C-25014 (23968) [007] d..2 24572.671859: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=MonitoringInstr next_pid=13149 next_prio=120
25380           <...>-13149 (-----) [007] .... 24572.671862: binder_transaction_received: transaction=1668917
25381<...>-23993 ( 23968) [006] .... 24572.671870: binder_transaction: transaction=1668919 dest_node=1276465 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
25382<...>-23993 ( 23968) [006] d..4 24572.671872: sched_waking: comm=Binder:24151_5 pid=24406 prio=120 target_cpu=006
25383<...>-23993 ( 23968) [006] d..5 24572.671876: sched_wakeup: comm=Binder:24151_5 pid=24406 prio=120 target_cpu=006
25384<...>-23993 ( 23968) [006] d..1 24572.671882: sched_waking: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=006
25385<...>-23993 ( 23968) [006] d..2 24572.671886: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=006
25386<...>-23993 ( 23968) [006] d..2 24572.671903: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=110
25387           <...>-13149 (-----) [007] d..2 24572.671934: sched_switch: prev_comm=MonitoringInstr prev_pid=13149 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
25388          <idle>-0     (-----) [007] d..1 24572.671938: cpu_idle: state=0 cpu_id=7
25389<...>-25554 ( 24827) [004] d..2 24572.671940: sched_switch: prev_comm=Binder:24827_4 prev_pid=25554 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
25390          <idle>-0     (-----) [004] d..1 24572.671945: cpu_idle: state=0 cpu_id=4
25391  Binder:23968_1-23981 (23968) [006] d..2 24572.671984: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=110 prev_state=D ==> next_comm=Binder:24151_5 next_pid=24406 next_prio=120
25392<...>-24406 ( 24151) [006] .... 24572.671986: binder_transaction_received: transaction=1668919
25393<...>-24041 ( 23968) [005] d..1 24572.671996: sched_waking: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=006
25394<...>-24041 ( 23968) [005] d..2 24572.672004: sched_blocked_reason: pid=23981 iowait=0 caller=do_page_fault+0x4e0/0x594
25395<...>-24041 ( 23968) [005] d..2 24572.672008: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=007
25396          <idle>-0     (-----) [007] .n.1 24572.672013: cpu_idle: state=4294967295 cpu_id=7
25397          <idle>-0     (-----) [007] d..2 24572.672017: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=110
25398<...>-24406 ( 24151) [006] d..3 24572.672030: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
25399<...>-24406 ( 24151) [006] d..4 24572.672036: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
25400<...>-24406 ( 24151) [006] d..2 24572.672053: sched_switch: prev_comm=Binder:24151_5 prev_pid=24406 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
25401  Binder:23968_1-23981 (23968) [007] d..3 24572.672069: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=006
25402  Binder:23968_1-23981 (23968) [007] d..4 24572.672075: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=006
25403  surfaceflinger-23896 (23896) [003] d..1 24572.672079: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
25404  Binder:23968_1-23981 (23968) [007] d..3 24572.672081: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=004
25405  Binder:23968_1-23981 (23968) [007] d..4 24572.672087: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=004
25406  surfaceflinger-23896 (23896) [003] d..2 24572.672090: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
25407          <idle>-0     (-----) [004] .n.1 24572.672092: cpu_idle: state=4294967295 cpu_id=4
25408          <idle>-0     (-----) [004] d..2 24572.672095: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
25409          <idle>-0     (-----) [000] .n.1 24572.672096: cpu_idle: state=4294967295 cpu_id=0
25410          <idle>-0     (-----) [000] d..2 24572.672101: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
25411<...>-24003 ( 23968) [004] d..2 24572.672111: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
25412          <idle>-0     (-----) [004] d..1 24572.672114: cpu_idle: state=0 cpu_id=4
25413<...>-24151 ( 24151) [006] .... 24572.672116: binder_transaction: transaction=1668920 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x1e
25414<...>-24151 ( 24151) [006] d..4 24572.672119: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=007
25415  Binder:23968_1-23981 (23968) [007] d..3 24572.672121: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=006
25416   sfEventThread-23906 (23896) [000] d..2 24572.672123: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25417  Binder:23968_1-23981 (23968) [007] d..4 24572.672128: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=006
25418          <idle>-0     (-----) [000] d..1 24572.672129: cpu_idle: state=0 cpu_id=0
25419<...>-24151 ( 24151) [006] d..5 24572.672130: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=006
25420<...>-24151 ( 24151) [006] d..2 24572.672134: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=ActivityManager next_pid=23993 next_prio=118
25421<...>-23993 ( 23968) [006] d..2 24572.672152: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
25422<...>-23968 ( 23968) [006] .... 24572.672177: binder_transaction: transaction=1668921 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x16
25423<...>-23968 ( 23968) [006] d..4 24572.672179: sched_waking: comm=Binder:24151_5 pid=24406 prio=120 target_cpu=006
25424<...>-23968 ( 23968) [006] d..5 24572.672184: sched_wakeup: comm=Binder:24151_5 pid=24406 prio=120 target_cpu=006
25425  Binder:23968_1-23981 (23968) [007] d..3 24572.672185: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=006
25426  Binder:23968_1-23981 (23968) [007] d..4 24572.672190: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=006
25427<...>-23968 ( 23968) [006] d..2 24572.672200: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=ActivityManager next_pid=23993 next_prio=118
25428<...>-23993 ( 23968) [006] d..2 24572.672212: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=Binder:24151_5 next_pid=24406 next_prio=120
25429<...>-24406 ( 24151) [006] .... 24572.672214: binder_transaction_received: transaction=1668921
25430<...>-24406 ( 24151) [006] d..2 24572.672254: sched_switch: prev_comm=Binder:24151_5 prev_pid=24406 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
25431  Binder:23968_C-25014 (23968) [006] .... 24572.672256: binder_transaction_received: transaction=1668920
25432  Binder:23968_C-25014 (23968) [006] d..2 24572.672303: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
25433          <idle>-0     (-----) [006] d..1 24572.672308: cpu_idle: state=0 cpu_id=6
25434          <idle>-0     (-----) [004] ...1 24572.672319: cpu_idle: state=4294967295 cpu_id=4
25435          <idle>-0     (-----) [004] d..1 24572.672320: cpu_idle: state=0 cpu_id=4
25436  Binder:23968_1-23981 (23968) [007] .... 24572.672489: binder_transaction: transaction=1668922 dest_node=1668777 dest_proc=13131 dest_thread=0 reply=0 flags=0x11 code=0x33
25437          <idle>-0     (-----) [006] ...1 24572.672499: cpu_idle: state=4294967295 cpu_id=6
25438          <idle>-0     (-----) [006] d..1 24572.672500: cpu_idle: state=0 cpu_id=6
25439  Binder:23968_1-23981 (23968) [007] d..4 24572.672503: sched_waking: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=003
25440  Binder:23968_1-23981 (23968) [007] d..5 24572.672519: sched_wakeup: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=006
25441          <idle>-0     (-----) [006] .n.1 24572.672523: cpu_idle: state=4294967295 cpu_id=6
25442          <idle>-0     (-----) [006] d..2 24572.672538: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_3 next_pid=13145 next_prio=120
25443           <...>-13145 (-----) [006] .... 24572.672541: binder_transaction_received: transaction=1668922
25444  surfaceflinger-23896 (23896) [003] ...1 24572.672624: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
25445  surfaceflinger-23896 (23896) [003] ...1 24572.672629: tracing_mark_write: E|23896
25446  surfaceflinger-23896 (23896) [003] .... 24572.672666: binder_transaction: transaction=1668925 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
25447  surfaceflinger-23896 (23896) [003] ...2 24572.672713: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
25448  surfaceflinger-23896 (23896) [003] d..4 24572.672720: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
25449           <...>-13145 (-----) [006] d..3 24572.672736: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
25450          <idle>-0     (-----) [004] dnh2 24572.672764: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
25451          <idle>-0     (-----) [004] .n.1 24572.672767: cpu_idle: state=4294967295 cpu_id=4
25452          <idle>-0     (-----) [004] d..2 24572.672770: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
25453           <...>-13145 (-----) [006] d..4 24572.672771: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=006
25454  HwBinder:598_3-633   (  598) [004] .... 24572.672774: binder_transaction_received: transaction=1668925
25455  surfaceflinger-23896 (23896) [003] d..2 24572.672793: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
25456  HwBinder:598_3-633   (  598) [004] ...1 24572.672800: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
25457          <idle>-0     (-----) [003] d..1 24572.672802: cpu_idle: state=0 cpu_id=3
25458           <...>-13145 (-----) [006] d..2 24572.672827: sched_switch: prev_comm=Binder:13131_3 prev_pid=13145 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
25459  HwBinder:598_3-633   (  598) [004] ...1 24572.672863: tracing_mark_write: B|598|HWCSession::PresentDisplay::
25460  Binder:23968_1-23981 (23968) [007] .... 24572.672879: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=13131 comm=id.nn.benchmark
25461  Binder:23968_1-23981 (23968) [007] .... 24572.672895: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13131 comm=id.nn.benchmark
25462  Binder:23968_1-23981 (23968) [007] .... 24572.672899: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13131 comm=id.nn.benchmark
25463           <...>-13131 (-----) [006] d..2 24572.672906: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
25464          <idle>-0     (-----) [000] d.h7 24572.672911: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
25465          <idle>-0     (-----) [000] dnh8 24572.672920: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
25466          <idle>-0     (-----) [000] dnh9 24572.672934: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
25467  Binder:23968_1-23981 (23968) [007] .... 24572.672940: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=13136 comm=Jit thread pool
25468  Binder:23968_1-23981 (23968) [007] .... 24572.672944: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13136 comm=Jit thread pool
25469  Binder:23968_1-23981 (23968) [007] .... 24572.672946: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13136 comm=Jit thread pool
25470          <idle>-0     (-----) [000] dnh7 24572.672954: sched_waking: comm=SDM_EventThread pid=624 prio=111 target_cpu=001
25471<...>-24041 ( 23968) [005] dnh1 24572.672956: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
25472<...>-24041 ( 23968) [005] d..2 24572.672961: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
25473  Binder:23968_1-23981 (23968) [007] .... 24572.672967: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=13137 comm=Signal Catcher
25474  Binder:23968_1-23981 (23968) [007] .... 24572.672970: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13137 comm=Signal Catcher
25475  Binder:23968_1-23981 (23968) [007] .... 24572.672972: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13137 comm=Signal Catcher
25476           <...>-13131 (-----) [006] d..2 24572.672974: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
25477  HwBinder:598_3-633   (  598) [004] d.h1 24572.672976: sched_wakeup: comm=SDM_EventThread pid=624 prio=111 target_cpu=004
25478          <idle>-0     (-----) [006] d..1 24572.672979: cpu_idle: state=0 cpu_id=6
25479          <idle>-0     (-----) [000] dnh2 24572.672986: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
25480 crtc_commit:111-253   (  253) [005] d..1 24572.673005: clk_disable: disp_cc_mdss_vsync_clk
25481  Binder:23968_1-23981 (23968) [007] .... 24572.673014: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=13138 comm=ADB-JDWP Connec
25482          <idle>-0     (-----) [000] .n.1 24572.673017: cpu_idle: state=4294967295 cpu_id=0
25483  Binder:23968_1-23981 (23968) [007] .... 24572.673017: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13138 comm=ADB-JDWP Connec
25484  Binder:23968_1-23981 (23968) [007] .... 24572.673019: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13138 comm=ADB-JDWP Connec
25485 crtc_commit:111-253   (  253) [005] d..1 24572.673021: clk_disable: disp_cc_mdss_mdp_clk
25486          <idle>-0     (-----) [000] d..2 24572.673024: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
25487 crtc_commit:111-253   (  253) [005] d..1 24572.673029: clk_disable: disp_cc_mdss_mdp_clk_src
25488  Binder:23968_1-23981 (23968) [007] .... 24572.673032: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=13139 comm=ReferenceQueueD
25489  Binder:23968_1-23981 (23968) [007] .... 24572.673034: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13139 comm=ReferenceQueueD
25490  Binder:23968_1-23981 (23968) [007] .... 24572.673036: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13139 comm=ReferenceQueueD
25491     kworker/0:1-13012 (13012) [000] d..2 24572.673038: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
25492  Binder:23968_1-23981 (23968) [007] .... 24572.673048: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=13140 comm=FinalizerDaemon
25493  Binder:23968_1-23981 (23968) [007] .... 24572.673051: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13140 comm=FinalizerDaemon
25494 crtc_commit:111-253   (  253) [005] d..1 24572.673053: clk_disable: gcc_disp_gpll0_clk_src
25495  Binder:23968_1-23981 (23968) [007] .... 24572.673053: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13140 comm=FinalizerDaemon
25496  Binder:23968_1-23981 (23968) [007] .... 24572.673065: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=13141 comm=FinalizerWatchd
25497  Binder:23968_1-23981 (23968) [007] .... 24572.673067: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13141 comm=FinalizerWatchd
25498  Binder:23968_1-23981 (23968) [007] .... 24572.673069: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13141 comm=FinalizerWatchd
25499  Binder:23968_1-23981 (23968) [007] .... 24572.673080: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=13142 comm=HeapTaskDaemon
25500  Binder:23968_1-23981 (23968) [007] .... 24572.673083: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13142 comm=HeapTaskDaemon
25501  Binder:23968_1-23981 (23968) [007] .... 24572.673084: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13142 comm=HeapTaskDaemon
25502  Binder:23968_1-23981 (23968) [007] .... 24572.673095: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=13143 comm=Binder:13131_1
25503  HwBinder:598_3-633   (  598) [004] ...1 24572.673095: tracing_mark_write: B|598|HWDeviceDRM::Validate::
25504  Binder:23968_1-23981 (23968) [007] .... 24572.673098: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13143 comm=Binder:13131_1
25505  Binder:23968_1-23981 (23968) [007] .... 24572.673100: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13143 comm=Binder:13131_1
25506  Binder:23968_1-23981 (23968) [007] .... 24572.673110: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=13144 comm=Binder:13131_2
25507  Binder:23968_1-23981 (23968) [007] .... 24572.673112: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13144 comm=Binder:13131_2
25508  Binder:23968_1-23981 (23968) [007] .... 24572.673114: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13144 comm=Binder:13131_2
25509     logd.writer-563   (  555) [000] d..2 24572.673117: 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
25510  Binder:23968_1-23981 (23968) [007] .... 24572.673124: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=13145 comm=Binder:13131_3
25511          <idle>-0     (-----) [000] d..1 24572.673125: cpu_idle: state=0 cpu_id=0
25512  Binder:23968_1-23981 (23968) [007] .... 24572.673126: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13145 comm=Binder:13131_3
25513  Binder:23968_1-23981 (23968) [007] .... 24572.673128: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13145 comm=Binder:13131_3
25514  Binder:23968_1-23981 (23968) [007] .... 24572.673138: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=13146 comm=Profile Saver
25515  Binder:23968_1-23981 (23968) [007] .... 24572.673140: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13146 comm=Profile Saver
25516  Binder:23968_1-23981 (23968) [007] .... 24572.673142: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13146 comm=Profile Saver
25517  Binder:23968_1-23981 (23968) [007] .... 24572.673154: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=13147 comm=roidJUnitRunner
25518  Binder:23968_1-23981 (23968) [007] .... 24572.673157: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13147 comm=roidJUnitRunner
25519  Binder:23968_1-23981 (23968) [007] .... 24572.673159: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13147 comm=roidJUnitRunner
25520          <idle>-0     (-----) [006] ...1 24572.673170: cpu_idle: state=4294967295 cpu_id=6
25521  Binder:23968_1-23981 (23968) [007] .... 24572.673171: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=13148 comm=Instrumentation
25522          <idle>-0     (-----) [006] d..1 24572.673171: cpu_idle: state=0 cpu_id=6
25523  Binder:23968_1-23981 (23968) [007] .... 24572.673174: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13148 comm=Instrumentation
25524  Binder:23968_1-23981 (23968) [007] .... 24572.673176: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13148 comm=Instrumentation
25525  Binder:23968_1-23981 (23968) [007] .... 24572.673189: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=13149 comm=MonitoringInstr
25526  Binder:23968_1-23981 (23968) [007] .... 24572.673191: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13149 comm=MonitoringInstr
25527  Binder:23968_1-23981 (23968) [007] .... 24572.673193: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=13149 comm=MonitoringInstr
25528  Binder:23968_1-23981 (23968) [007] .... 24572.673232: binder_transaction: transaction=1668926 dest_node=1668777 dest_proc=13131 dest_thread=0 reply=0 flags=0x11 code=0x27
25529  Binder:23968_1-23981 (23968) [007] d..4 24572.673234: sched_waking: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=006
25530  Binder:23968_1-23981 (23968) [007] d..5 24572.673243: sched_wakeup: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=006
25531          <idle>-0     (-----) [006] .n.1 24572.673247: cpu_idle: state=4294967295 cpu_id=6
25532          <idle>-0     (-----) [006] d..2 24572.673250: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_3 next_pid=13145 next_prio=120
25533           <...>-13145 (-----) [006] .... 24572.673252: binder_transaction_received: transaction=1668926
25534  Binder:23968_1-23981 (23968) [007] d..3 24572.673257: sched_waking: comm=android.bg pid=23992 prio=130 target_cpu=001
25535  Binder:23968_1-23981 (23968) [007] d..3 24572.673275: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=007
25536          <idle>-0     (-----) [000] dnh2 24572.673275: sched_wakeup: comm=android.bg pid=23992 prio=130 target_cpu=000
25537          <idle>-0     (-----) [000] .n.1 24572.673279: cpu_idle: state=4294967295 cpu_id=0
25538  Binder:23968_1-23981 (23968) [007] d..4 24572.673283: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=006
25539          <idle>-0     (-----) [000] d..2 24572.673284: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.bg next_pid=23992 next_prio=130
25540  HwBinder:598_3-633   (  598) [004] ...1 24572.673304: tracing_mark_write: E|598
25541           <...>-13145 (-----) [006] d..2 24572.673311: sched_switch: prev_comm=Binder:13131_3 prev_pid=13145 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=23994 next_prio=118
25542  Binder:23968_1-23981 (23968) [007] d..3 24572.673318: sched_waking: comm=lmkd pid=808 prio=98 target_cpu=002
25543          <idle>-0     (-----) [002] dnh2 24572.673333: sched_wakeup: comm=lmkd pid=808 prio=98 target_cpu=002
25544<...>-23994 ( 23968) [006] d..2 24572.673334: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
25545          <idle>-0     (-----) [002] .n.1 24572.673336: cpu_idle: state=4294967295 cpu_id=2
25546          <idle>-0     (-----) [006] d..1 24572.673338: cpu_idle: state=0 cpu_id=6
25547          <idle>-0     (-----) [002] d..2 24572.673342: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=808 next_prio=98
25548  HwBinder:598_3-633   (  598) [004] ...1 24572.673344: tracing_mark_write: B|598|HWDeviceDRM::Commit::
25549  HwBinder:598_3-633   (  598) [004] ...1 24572.673347: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
25550<...>-23992 ( 23968) [000] d..2 24572.673367: sched_switch: prev_comm=android.bg prev_pid=23992 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25551          <idle>-0     (-----) [000] d..1 24572.673375: cpu_idle: state=0 cpu_id=0
25552  Binder:23968_1-23981 (23968) [007] .... 24572.673423: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=24827 comm=s.nexuslauncher
25553  Binder:23968_1-23981 (23968) [007] .... 24572.673433: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24827 comm=s.nexuslauncher
25554  Binder:23968_1-23981 (23968) [007] .... 24572.673436: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24827 comm=s.nexuslauncher
25555  Binder:23968_1-23981 (23968) [007] .... 24572.673458: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=24838 comm=Jit thread pool
25556  Binder:23968_1-23981 (23968) [007] .... 24572.673461: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24838 comm=Jit thread pool
25557  Binder:23968_1-23981 (23968) [007] .... 24572.673463: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24838 comm=Jit thread pool
25558  HwBinder:598_3-633   (  598) [004] ...1 24572.673472: tracing_mark_write: E|598
25559  HwBinder:598_3-633   (  598) [004] ...1 24572.673473: tracing_mark_write: E|598
25560  Binder:23968_1-23981 (23968) [007] .... 24572.673477: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=24841 comm=Signal Catcher
25561  Binder:23968_1-23981 (23968) [007] .... 24572.673479: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24841 comm=Signal Catcher
25562  Binder:23968_1-23981 (23968) [007] .... 24572.673482: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24841 comm=Signal Catcher
25563  HwBinder:598_3-633   (  598) [004] ...1 24572.673489: tracing_mark_write: E|598
25564  Binder:23968_1-23981 (23968) [007] .... 24572.673493: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=24845 comm=ADB-JDWP Connec
25565  Binder:23968_1-23981 (23968) [007] .... 24572.673496: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24845 comm=ADB-JDWP Connec
25566  Binder:23968_1-23981 (23968) [007] .... 24572.673498: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24845 comm=ADB-JDWP Connec
25567  Binder:23968_1-23981 (23968) [007] .... 24572.673508: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=24846 comm=ReferenceQueueD
25568  HwBinder:598_3-633   (  598) [004] ...1 24572.673510: tracing_mark_write: E|598
25569  Binder:23968_1-23981 (23968) [007] .... 24572.673511: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24846 comm=ReferenceQueueD
25570  Binder:23968_1-23981 (23968) [007] .... 24572.673513: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24846 comm=ReferenceQueueD
25571  HwBinder:598_3-633   (  598) [004] .... 24572.673517: binder_transaction: transaction=1668927 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
25572  Binder:23968_1-23981 (23968) [007] .... 24572.673523: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=24847 comm=FinalizerDaemon
25573  HwBinder:598_3-633   (  598) [004] d..2 24572.673525: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
25574  Binder:23968_1-23981 (23968) [007] .... 24572.673526: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24847 comm=FinalizerDaemon
25575  Binder:23968_1-23981 (23968) [007] .... 24572.673528: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24847 comm=FinalizerDaemon
25576  HwBinder:598_3-633   (  598) [004] .... 24572.673532: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
25577  Binder:23968_1-23981 (23968) [007] .... 24572.673539: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=24848 comm=FinalizerWatchd
25578          <idle>-0     (-----) [003] dnh2 24572.673539: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
25579  Binder:23968_1-23981 (23968) [007] .... 24572.673541: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24848 comm=FinalizerWatchd
25580          <idle>-0     (-----) [003] .n.1 24572.673543: cpu_idle: state=4294967295 cpu_id=3
25581  Binder:23968_1-23981 (23968) [007] .... 24572.673543: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24848 comm=FinalizerWatchd
25582          <idle>-0     (-----) [003] d..2 24572.673548: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
25583  surfaceflinger-23896 (23896) [003] .... 24572.673552: binder_transaction_received: transaction=1668927
25584  Binder:23968_1-23981 (23968) [007] .... 24572.673553: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=24849 comm=HeapTaskDaemon
25585  Binder:23968_1-23981 (23968) [007] .... 24572.673556: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24849 comm=HeapTaskDaemon
25586  HwBinder:598_3-633   (  598) [004] d..2 24572.673557: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=SDM_EventThread next_pid=624 next_prio=111
25587  Binder:23968_1-23981 (23968) [007] .... 24572.673558: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24849 comm=HeapTaskDaemon
25588  Binder:23968_1-23981 (23968) [007] .... 24572.673569: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=24850 comm=Binder:24827_1
25589 crtc_commit:111-253   (  253) [005] d..1 24572.673571: clk_disable: disp_cc_mdss_axi_clk
25590  Binder:23968_1-23981 (23968) [007] .... 24572.673571: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24850 comm=Binder:24827_1
25591  Binder:23968_1-23981 (23968) [007] .... 24572.673573: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24850 comm=Binder:24827_1
25592 SDM_EventThread-624   (  598) [004] ...1 24572.673575: tracing_mark_write: B|598|HWCCallbacks::Vsync::
25593          <idle>-0     (-----) [006] ...1 24572.673575: cpu_idle: state=4294967295 cpu_id=6
25594          <idle>-0     (-----) [006] d..1 24572.673577: cpu_idle: state=0 cpu_id=6
25595 crtc_commit:111-253   (  253) [005] d..1 24572.673580: clk_disable: disp_cc_mdss_ahb_clk
25596 SDM_EventThread-624   (  598) [004] ...1 24572.673580: tracing_mark_write: B|598|HIDL::IComposerCallback::onVsync::client
25597 SDM_EventThread-624   (  598) [004] ...1 24572.673581: tracing_mark_write: E|598
25598  Binder:23968_1-23981 (23968) [007] .... 24572.673584: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=24857 comm=Binder:24827_2
25599  Binder:23968_1-23981 (23968) [007] .... 24572.673586: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24857 comm=Binder:24827_2
25600 crtc_commit:111-253   (  253) [005] d..1 24572.673587: clk_disable: gcc_disp_axi_clk
25601  Binder:23968_1-23981 (23968) [007] .... 24572.673588: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24857 comm=Binder:24827_2
25602  Binder:23968_1-23981 (23968) [007] .... 24572.673598: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=24863 comm=Binder:24827_3
25603  Binder:23968_1-23981 (23968) [007] .... 24572.673601: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24863 comm=Binder:24827_3
25604  Binder:23968_1-23981 (23968) [007] .... 24572.673603: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24863 comm=Binder:24827_3
25605 SDM_EventThread-624   (  598) [004] .... 24572.673613: binder_transaction: transaction=1668928 dest_node=1270370 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
25606  Binder:23968_1-23981 (23968) [007] .... 24572.673614: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=24890 comm=Profile Saver
25607 SDM_EventThread-624   (  598) [004] d..4 24572.673616: sched_waking: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=001
25608  Binder:23968_1-23981 (23968) [007] .... 24572.673617: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24890 comm=Profile Saver
25609  Binder:23968_1-23981 (23968) [007] .... 24572.673619: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24890 comm=Profile Saver
25610  Binder:23968_1-23981 (23968) [007] .... 24572.673629: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=24943 comm=launcher-loader
25611 SDM_EventThread-624   (  598) [004] ...1 24572.673631: tracing_mark_write: E|598
25612  Binder:23968_1-23981 (23968) [007] .... 24572.673632: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24943 comm=launcher-loader
25613 crtc_commit:111-253   (  253) [005] d..2 24572.673634: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=android.anim next_pid=24041 next_prio=110
25614          <idle>-0     (-----) [000] dnh2 24572.673635: sched_wakeup: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=000
25615  Binder:23968_1-23981 (23968) [007] .... 24572.673636: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=24985 comm=GAC_Executor[0]
25616  Binder:23968_1-23981 (23968) [007] .... 24572.673639: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24985 comm=GAC_Executor[0]
25617          <idle>-0     (-----) [000] .n.1 24572.673639: cpu_idle: state=4294967295 cpu_id=0
25618  Binder:23968_1-23981 (23968) [007] .... 24572.673641: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24985 comm=GAC_Executor[0]
25619          <idle>-0     (-----) [000] d..2 24572.673645: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:23896_ next_pid=23923 next_prio=120
25620 SDM_EventThread-624   (  598) [004] d..2 24572.673647: sched_switch: prev_comm=SDM_EventThread prev_pid=624 prev_prio=111 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
25621  Binder:23968_1-23981 (23968) [007] .... 24572.673651: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=24986 comm=GoogleApiHandle
25622 HwBinder:23896_-23923 (23896) [000] .... 24572.673651: binder_transaction_received: transaction=1668928
25623          <idle>-0     (-----) [004] d..3 24572.673652: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
25624  Binder:23968_1-23981 (23968) [007] .... 24572.673654: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24986 comm=GoogleApiHandle
25625  Binder:23968_1-23981 (23968) [007] .... 24572.673656: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24986 comm=GoogleApiHandle
25626          <idle>-0     (-----) [004] dn.4 24572.673663: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=004
25627  Binder:23968_1-23981 (23968) [007] .... 24572.673666: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=25108 comm=UiThreadHelper
25628  Binder:23968_1-23981 (23968) [007] .... 24572.673669: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25108 comm=UiThreadHelper
25629  Binder:23968_1-23981 (23968) [007] .... 24572.673671: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25108 comm=UiThreadHelper
25630 HwBinder:23896_-23923 (23896) [000] ...1 24572.673679: tracing_mark_write: B|23896|HIDL::IComposerCallback::onVsync::server
25631  Binder:23968_1-23981 (23968) [007] .... 24572.673684: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=25109 comm=pool-1-thread-1
25632  Binder:23968_1-23981 (23968) [007] .... 24572.673687: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25109 comm=pool-1-thread-1
25633          <idle>-0     (-----) [004] d..2 24572.673688: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/4 next_pid=45 next_prio=120
25634  Binder:23968_1-23981 (23968) [007] .... 24572.673689: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25109 comm=pool-1-thread-1
25635 HwBinder:23896_-23923 (23896) [000] d..1 24572.673692: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=004
25636         rcuop/4-45    (   45) [004] d..2 24572.673698: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
25637  Binder:23968_1-23981 (23968) [007] .... 24572.673698: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=25113 comm=Recents-HighRes
25638          <idle>-0     (-----) [004] d..1 24572.673700: cpu_idle: state=0 cpu_id=4
25639  Binder:23968_1-23981 (23968) [007] .... 24572.673701: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25113 comm=Recents-HighRes
25640  Binder:23968_1-23981 (23968) [007] .... 24572.673705: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=25114 comm=Recents-TaskRes
25641 HwBinder:23896_-23923 (23896) [000] ...1 24572.673707: tracing_mark_write: E|23896
25642          <idle>-0     (-----) [004] dnh2 24572.673708: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=004
25643  Binder:23968_1-23981 (23968) [007] .... 24572.673708: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25114 comm=Recents-TaskRes
25644          <idle>-0     (-----) [004] .n.1 24572.673710: cpu_idle: state=4294967295 cpu_id=4
25645  Binder:23968_1-23981 (23968) [007] .... 24572.673712: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=25116 comm=pool-3-thread-1
25646          <idle>-0     (-----) [004] d..2 24572.673712: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
25647  Binder:23968_1-23981 (23968) [007] .... 24572.673715: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25116 comm=pool-3-thread-1
25648  Binder:23968_1-23981 (23968) [007] .... 24572.673717: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25116 comm=pool-3-thread-1
25649        DispSync-23904 (23896) [004] d..2 24572.673725: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
25650  Binder:23968_1-23981 (23968) [007] .... 24572.673727: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=25147 comm=qsb-experiments
25651          <idle>-0     (-----) [004] d..1 24572.673728: cpu_idle: state=0 cpu_id=4
25652  Binder:23968_1-23981 (23968) [007] .... 24572.673730: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25147 comm=qsb-experiments
25653  Binder:23968_1-23981 (23968) [007] .... 24572.673732: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25147 comm=qsb-experiments
25654<...>-24041 ( 23968) [005] d.h1 24572.673733: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
25655 HwBinder:23896_-23923 (23896) [000] d..2 24572.673734: sched_switch: prev_comm=HwBinder:23896_ prev_pid=23923 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25656  Binder:23968_1-23981 (23968) [007] .... 24572.673741: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=25154 comm=magnifier pixel
25657          <idle>-0     (-----) [000] d..1 24572.673742: cpu_idle: state=0 cpu_id=0
25658  Binder:23968_1-23981 (23968) [007] .... 24572.673744: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25154 comm=magnifier pixel
25659<...>-24041 ( 23968) [005] d.h2 24572.673745: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
25660  Binder:23968_1-23981 (23968) [007] .... 24572.673746: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25154 comm=magnifier pixel
25661          <idle>-0     (-----) [004] .n.1 24572.673749: cpu_idle: state=4294967295 cpu_id=4
25662          <idle>-0     (-----) [004] d..2 24572.673752: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
25663  Binder:23968_1-23981 (23968) [007] .... 24572.673755: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=25155 comm=search-thread
25664  Binder:23968_1-23981 (23968) [007] .... 24572.673758: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25155 comm=search-thread
25665          <idle>-0     (-----) [001] d.h2 24572.673758: sched_waking: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
25666  Binder:23968_1-23981 (23968) [007] .... 24572.673760: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25155 comm=search-thread
25667 crtc_commit:111-253   (  253) [004] d..1 24572.673765: clk_disable: disp_cc_mdss_rscc_ahb_clk
25668          <idle>-0     (-----) [001] dnh3 24572.673766: sched_wakeup: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
25669  Binder:23968_1-23981 (23968) [007] .... 24572.673769: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=25168 comm=smartspace-load
25670          <idle>-0     (-----) [001] .n.1 24572.673771: cpu_idle: state=4294967295 cpu_id=1
25671  Binder:23968_1-23981 (23968) [007] .... 24572.673772: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25168 comm=smartspace-load
25672  Binder:23968_1-23981 (23968) [007] .... 24572.673774: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25168 comm=smartspace-load
25673 crtc_commit:111-253   (  253) [004] d..1 24572.673775: clk_disable: disp_cc_mdss_rscc_vsync_clk
25674          <idle>-0     (-----) [001] d..2 24572.673779: 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
25675 crtc_commit:111-253   (  253) [004] d..1 24572.673782: clk_disable: disp_cc_mdss_vsync_clk_src
25676  Binder:23968_1-23981 (23968) [007] .... 24572.673784: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=25194 comm=RenderThread
25677  Binder:23968_1-23981 (23968) [007] .... 24572.673787: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25194 comm=RenderThread
25678  Binder:23968_1-23981 (23968) [007] .... 24572.673788: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25194 comm=RenderThread
25679  Binder:23968_1-23981 (23968) [007] .... 24572.673798: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=25198 comm=remote-ui
25680  Binder:23968_1-23981 (23968) [007] .... 24572.673801: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25198 comm=remote-ui
25681            lmkd-808   (  808) [002] d..2 24572.673801: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=004
25682  Binder:23968_1-23981 (23968) [007] .... 24572.673803: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25198 comm=remote-ui
25683  Binder:23968_1-23981 (23968) [007] .... 24572.673812: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=25201 comm=reflection-thre
25684  Binder:23968_1-23981 (23968) [007] .... 24572.673815: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25201 comm=reflection-thre
25685<...>-24617 ( 24617) [001] d..3 24572.673817: sched_pi_setprio: comm=crtc_commit:111 pid=253 oldprio=83 newprio=49
25686  Binder:23968_1-23981 (23968) [007] .... 24572.673817: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25201 comm=reflection-thre
25687          <idle>-0     (-----) [006] dnh2 24572.673824: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=006
25688          <idle>-0     (-----) [006] .n.1 24572.673826: cpu_idle: state=4294967295 cpu_id=6
25689  Binder:23968_1-23981 (23968) [007] .... 24572.673826: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=25202 comm=reflection-plac
25690  Binder:23968_1-23981 (23968) [007] .... 24572.673829: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25202 comm=reflection-plac
25691          <idle>-0     (-----) [006] d..2 24572.673830: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
25692  Binder:23968_1-23981 (23968) [007] .... 24572.673831: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25202 comm=reflection-plac
25693<...>-24617 ( 24617) [001] d..2 24572.673834: 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
25694         rcuop/2-29    (   29) [006] d..2 24572.673837: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
25695          <idle>-0     (-----) [006] d..1 24572.673839: cpu_idle: state=0 cpu_id=6
25696            lmkd-808   (  808) [002] d..2 24572.673840: sched_switch: prev_comm=lmkd prev_pid=808 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25697  Binder:23968_1-23981 (23968) [007] .... 24572.673841: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=25203 comm=queued-work-loo
25698          <idle>-0     (-----) [001] d..1 24572.673841: cpu_idle: state=0 cpu_id=1
25699  Binder:23968_1-23981 (23968) [007] .... 24572.673843: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25203 comm=queued-work-loo
25700  Binder:23968_1-23981 (23968) [007] .... 24572.673845: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25203 comm=queued-work-loo
25701          <idle>-0     (-----) [002] d..1 24572.673849: cpu_idle: state=0 cpu_id=2
25702  Binder:23968_1-23981 (23968) [007] .... 24572.673855: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=25216 comm=GAC_Executor[1]
25703  Binder:23968_1-23981 (23968) [007] .... 24572.673858: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25216 comm=GAC_Executor[1]
25704  Binder:23968_1-23981 (23968) [007] .... 24572.673860: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25216 comm=GAC_Executor[1]
25705  surfaceflinger-23896 (23896) [003] d..2 24572.673866: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
25706  Binder:23968_1-23981 (23968) [007] .... 24572.673871: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=25243 comm=GrallocUploadTh
25707  Binder:23968_1-23981 (23968) [007] .... 24572.673873: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25243 comm=GrallocUploadTh
25708  Binder:23968_1-23981 (23968) [007] .... 24572.673875: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25243 comm=GrallocUploadTh
25709          <idle>-0     (-----) [003] d..1 24572.673875: cpu_idle: state=0 cpu_id=3
25710 crtc_commit:111-253   (  253) [004] d..2 24572.673876: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=49 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
25711          <idle>-0     (-----) [004] d..1 24572.673879: cpu_idle: state=0 cpu_id=4
25712  Binder:23968_1-23981 (23968) [007] .... 24572.673885: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=25554 comm=Binder:24827_4
25713  Binder:23968_1-23981 (23968) [007] .... 24572.673887: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25554 comm=Binder:24827_4
25714  Binder:23968_1-23981 (23968) [007] .... 24572.673889: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=25554 comm=Binder:24827_4
25715  Binder:23968_1-23981 (23968) [007] .... 24572.673899: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=27853 comm=hwuiTask1
25716  Binder:23968_1-23981 (23968) [007] .... 24572.673901: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27853 comm=hwuiTask1
25717  Binder:23968_1-23981 (23968) [007] .... 24572.673903: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27853 comm=hwuiTask1
25718          <idle>-0     (-----) [003] d.s3 24572.673912: sched_waking: comm=crtc_commit:111 pid=253 prio=49 target_cpu=004
25719  Binder:23968_1-23981 (23968) [007] .... 24572.673913: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=5558 comm=Binder:24827_5
25720  Binder:23968_1-23981 (23968) [007] .... 24572.673915: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=5558 comm=Binder:24827_5
25721  Binder:23968_1-23981 (23968) [007] .... 24572.673917: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=5558 comm=Binder:24827_5
25722          <idle>-0     (-----) [004] dnh2 24572.673926: sched_wakeup: comm=crtc_commit:111 pid=253 prio=49 target_cpu=004
25723  Binder:23968_1-23981 (23968) [007] .... 24572.673927: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=9968 comm=pool-3-thread-2
25724          <idle>-0     (-----) [003] ...1 24572.673927: cpu_idle: state=4294967295 cpu_id=3
25725          <idle>-0     (-----) [004] .n.1 24572.673928: cpu_idle: state=4294967295 cpu_id=4
25726  Binder:23968_1-23981 (23968) [007] .... 24572.673929: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=9968 comm=pool-3-thread-2
25727          <idle>-0     (-----) [003] d..1 24572.673930: cpu_idle: state=0 cpu_id=3
25728          <idle>-0     (-----) [004] d..2 24572.673931: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=49
25729  Binder:23968_1-23981 (23968) [007] .... 24572.673931: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=9968 comm=pool-3-thread-2
25730 crtc_commit:111-253   (  253) [004] d..1 24572.673934: sched_waking: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
25731 crtc_commit:111-253   (  253) [004] d..2 24572.673939: sched_pi_setprio: comm=crtc_commit:111 pid=253 oldprio=49 newprio=83
25732  Binder:23968_1-23981 (23968) [007] .... 24572.673943: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=12577 comm=Binder:24827_6
25733  Binder:23968_1-23981 (23968) [007] .... 24572.673946: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=12577 comm=Binder:24827_6
25734 crtc_commit:111-253   (  253) [004] d..2 24572.673947: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
25735          <idle>-0     (-----) [001] dnh2 24572.673947: sched_wakeup: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
25736  Binder:23968_1-23981 (23968) [007] .... 24572.673948: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=12577 comm=Binder:24827_6
25737          <idle>-0     (-----) [004] d..1 24572.673949: cpu_idle: state=0 cpu_id=4
25738          <idle>-0     (-----) [001] .n.1 24572.673951: cpu_idle: state=4294967295 cpu_id=1
25739          <idle>-0     (-----) [001] d..2 24572.673955: 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
25740  Binder:23968_1-23981 (23968) [007] d..2 24572.674031: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=000
25741<...>-24617 ( 24617) [001] d..2 24572.674045: 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
25742          <idle>-0     (-----) [000] dnh2 24572.674049: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=000
25743          <idle>-0     (-----) [001] d..1 24572.674051: cpu_idle: state=0 cpu_id=1
25744          <idle>-0     (-----) [000] .n.1 24572.674053: cpu_idle: state=4294967295 cpu_id=0
25745          <idle>-0     (-----) [000] d..2 24572.674059: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=statsd.writer next_pid=1044 next_prio=120
25746          <idle>-0     (-----) [003] d.s3 24572.674065: sched_waking: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
25747          <idle>-0     (-----) [003] d.s4 24572.674073: sched_wakeup: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
25748          <idle>-0     (-----) [001] .n.1 24572.674078: cpu_idle: state=4294967295 cpu_id=1
25749          <idle>-0     (-----) [003] ...1 24572.674078: cpu_idle: state=4294967295 cpu_id=3
25750          <idle>-0     (-----) [003] d..1 24572.674082: cpu_idle: state=0 cpu_id=3
25751          <idle>-0     (-----) [001] d..2 24572.674083: 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
25752<...>-24617 ( 24617) [001] d..1 24572.674088: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
25753          <idle>-0     (-----) [004] dnh2 24572.674101: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
25754          <idle>-0     (-----) [004] .n.1 24572.674104: cpu_idle: state=4294967295 cpu_id=4
25755  Binder:23968_1-23981 (23968) [007] d..2 24572.674105: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
25756          <idle>-0     (-----) [006] ...1 24572.674105: cpu_idle: state=4294967295 cpu_id=6
25757          <idle>-0     (-----) [004] d..2 24572.674106: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
25758          <idle>-0     (-----) [006] d..1 24572.674106: cpu_idle: state=0 cpu_id=6
25759<...>-24617 ( 24617) [001] d..2 24572.674115: 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
25760          <idle>-0     (-----) [001] d..1 24572.674121: cpu_idle: state=0 cpu_id=1
25761          <idle>-0     (-----) [002] dnh2 24572.674124: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
25762          <idle>-0     (-----) [002] .n.1 24572.674128: cpu_idle: state=4294967295 cpu_id=2
25763          <idle>-0     (-----) [002] d..2 24572.674135: 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
25764<...>-1044 ( 887) [000] d..2 24572.674183: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25765 crtc_commit:111-253   (  253) [004] d..2 24572.674185: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
25766          <idle>-0     (-----) [004] d..1 24572.674188: cpu_idle: state=0 cpu_id=4
25767          <idle>-0     (-----) [000] d..1 24572.674191: cpu_idle: state=0 cpu_id=0
25768     logd.writer-563   (  555) [002] d..2 24572.674202: 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
25769          <idle>-0     (-----) [002] d..1 24572.674210: cpu_idle: state=0 cpu_id=2
25770          <idle>-0     (-----) [003] d.s3 24572.674225: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
25771          <idle>-0     (-----) [003] ...1 24572.674237: cpu_idle: state=4294967295 cpu_id=3
25772          <idle>-0     (-----) [004] dnh2 24572.674237: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
25773          <idle>-0     (-----) [003] d..1 24572.674240: cpu_idle: state=0 cpu_id=3
25774          <idle>-0     (-----) [004] .n.1 24572.674240: cpu_idle: state=4294967295 cpu_id=4
25775          <idle>-0     (-----) [004] d..2 24572.674242: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
25776 crtc_commit:111-253   (  253) [004] d..3 24572.674248: sched_waking: comm=SDM_EventThread pid=624 prio=111 target_cpu=004
25777 crtc_commit:111-253   (  253) [004] d..4 24572.674258: sched_wakeup: comm=SDM_EventThread pid=624 prio=111 target_cpu=006
25778          <idle>-0     (-----) [006] .n.1 24572.674262: cpu_idle: state=4294967295 cpu_id=6
25779          <idle>-0     (-----) [006] d..2 24572.674266: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=624 next_prio=111
25780 SDM_EventThread-624   (  598) [006] d..2 24572.674287: sched_switch: prev_comm=SDM_EventThread prev_pid=624 prev_prio=111 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
25781          <idle>-0     (-----) [006] d..1 24572.674290: cpu_idle: state=0 cpu_id=6
25782 crtc_commit:111-253   (  253) [004] d..2 24572.674334: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
25783          <idle>-0     (-----) [004] d..1 24572.674337: cpu_idle: state=0 cpu_id=4
25784  Binder:23968_1-23981 (23968) [007] .... 24572.674377: binder_transaction: transaction=1668929 dest_node=1668777 dest_proc=13131 dest_thread=0 reply=0 flags=0x11 code=0x33
25785  Binder:23968_1-23981 (23968) [007] d..4 24572.674387: sched_waking: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=006
25786  Binder:23968_1-23981 (23968) [007] d..5 24572.674394: sched_wakeup: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=006
25787          <idle>-0     (-----) [006] .n.1 24572.674398: cpu_idle: state=4294967295 cpu_id=6
25788          <idle>-0     (-----) [006] d..2 24572.674401: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_3 next_pid=13145 next_prio=120
25789           <...>-13145 (-----) [006] .... 24572.674403: binder_transaction_received: transaction=1668929
25790          <idle>-0     (-----) [000] d.h2 24572.674411: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
25791          <idle>-0     (-----) [000] dnh3 24572.674416: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
25792          <idle>-0     (-----) [000] .n.1 24572.674421: cpu_idle: state=4294967295 cpu_id=0
25793          <idle>-0     (-----) [000] d..2 24572.674427: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
25794 irq/79-1436400.-24613 (24613) [000] d..3 24572.674455: sched_pi_setprio: comm=crtc_commit:111 pid=253 oldprio=83 newprio=49
25795  Binder:23968_1-23981 (23968) [007] d..3 24572.674465: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
25796 irq/79-1436400.-24613 (24613) [000] d..2 24572.674469: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
25797  Binder:23968_1-23981 (23968) [007] d..4 24572.674474: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
25798          <idle>-0     (-----) [000] d..1 24572.674475: cpu_idle: state=0 cpu_id=0
25799           <...>-13145 (-----) [006] d..2 24572.674482: sched_switch: prev_comm=Binder:13131_3 prev_pid=13145 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
25800<...>-24073 ( 23968) [006] d..2 24572.674502: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=Binder:13131_3 next_pid=13145 next_prio=120
25801          <idle>-0     (-----) [003] d.s3 24572.674522: sched_waking: comm=crtc_commit:111 pid=253 prio=49 target_cpu=004
25802          <idle>-0     (-----) [004] ...1 24572.674528: cpu_idle: state=4294967295 cpu_id=4
25803          <idle>-0     (-----) [004] d..1 24572.674529: cpu_idle: state=0 cpu_id=4
25804          <idle>-0     (-----) [003] ...1 24572.674534: cpu_idle: state=4294967295 cpu_id=3
25805          <idle>-0     (-----) [004] dnh2 24572.674535: sched_wakeup: comm=crtc_commit:111 pid=253 prio=49 target_cpu=004
25806          <idle>-0     (-----) [004] .n.1 24572.674537: cpu_idle: state=4294967295 cpu_id=4
25807          <idle>-0     (-----) [003] d..1 24572.674537: cpu_idle: state=0 cpu_id=3
25808          <idle>-0     (-----) [004] d..2 24572.674539: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=49
25809  Binder:23968_1-23981 (23968) [007] d..3 24572.674540: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=004
25810 crtc_commit:111-253   (  253) [004] d..1 24572.674541: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
25811  Binder:23968_1-23981 (23968) [007] d..4 24572.674546: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=004
25812 crtc_commit:111-253   (  253) [004] d..2 24572.674546: sched_pi_setprio: comm=crtc_commit:111 pid=253 oldprio=49 newprio=83
25813 crtc_commit:111-253   (  253) [004] d..2 24572.674551: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=android.display next_pid=24003 next_prio=117
25814          <idle>-0     (-----) [000] dnh2 24572.674553: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
25815          <idle>-0     (-----) [000] .n.1 24572.674557: cpu_idle: state=4294967295 cpu_id=0
25816          <idle>-0     (-----) [000] d..2 24572.674562: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
25817<...>-24003 ( 23968) [004] d..2 24572.674577: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
25818          <idle>-0     (-----) [004] d..1 24572.674581: cpu_idle: state=0 cpu_id=4
25819 irq/79-1436400.-24613 (24613) [000] d..2 24572.674642: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
25820          <idle>-0     (-----) [000] d..1 24572.674648: cpu_idle: state=0 cpu_id=0
25821          <idle>-0     (-----) [003] d.s3 24572.674658: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
25822          <idle>-0     (-----) [003] d.s4 24572.674665: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
25823          <idle>-0     (-----) [003] ...1 24572.674670: cpu_idle: state=4294967295 cpu_id=3
25824          <idle>-0     (-----) [000] .n.1 24572.674671: cpu_idle: state=4294967295 cpu_id=0
25825          <idle>-0     (-----) [003] d..1 24572.674672: cpu_idle: state=0 cpu_id=3
25826          <idle>-0     (-----) [000] d..2 24572.674676: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
25827 irq/79-1436400.-24613 (24613) [000] d..1 24572.674680: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
25828          <idle>-0     (-----) [004] dnh2 24572.674694: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
25829          <idle>-0     (-----) [004] .n.1 24572.674696: cpu_idle: state=4294967295 cpu_id=4
25830          <idle>-0     (-----) [004] d..2 24572.674699: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
25831 irq/79-1436400.-24613 (24613) [000] d..2 24572.674705: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25832          <idle>-0     (-----) [000] d..1 24572.674710: cpu_idle: state=0 cpu_id=0
25833           <...>-13145 (-----) [006] d..3 24572.674721: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
25834           <...>-13145 (-----) [006] d..4 24572.674731: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
25835 crtc_commit:111-253   (  253) [004] d..2 24572.674765: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
25836           <...>-13145 (-----) [006] d..2 24572.674767: sched_switch: prev_comm=Binder:13131_3 prev_pid=13145 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
25837          <idle>-0     (-----) [006] d..1 24572.674772: cpu_idle: state=0 cpu_id=6
25838  Binder:23968_1-23981 (23968) [007] d..3 24572.674792: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
25839          <idle>-0     (-----) [003] d.s3 24572.674793: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
25840  Binder:23968_1-23981 (23968) [007] d..4 24572.674800: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
25841          <idle>-0     (-----) [006] .n.1 24572.674805: cpu_idle: state=4294967295 cpu_id=6
25842          <idle>-0     (-----) [006] dn.2 24572.674807: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
25843          <idle>-0     (-----) [006] d..2 24572.674810: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
25844          <idle>-0     (-----) [003] ...1 24572.674815: cpu_idle: state=4294967295 cpu_id=3
25845          <idle>-0     (-----) [003] d..1 24572.674818: cpu_idle: state=0 cpu_id=3
25846 crtc_commit:111-253   (  253) [006] d..1 24572.674823: clk_enable: disp_cc_mdss_vsync_clk_src
25847 crtc_commit:111-253   (  253) [006] d..1 24572.674824: clk_enable: disp_cc_mdss_rscc_vsync_clk
25848  Binder:23968_1-23981 (23968) [007] d..1 24572.674826: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=004
25849 crtc_commit:111-253   (  253) [006] d..1 24572.674834: clk_enable: disp_cc_mdss_rscc_ahb_clk
25850  Binder:23968_1-23981 (23968) [007] d..2 24572.674835: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=005
25851 crtc_commit:111-253   (  253) [006] d..2 24572.674868: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
25852  Binder:23968_1-23981 (23968) [007] d..2 24572.674869: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
25853<...>-24073 ( 23968) [006] d..2 24572.674883: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
25854          <idle>-0     (-----) [002] dnh2 24572.674884: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
25855          <idle>-0     (-----) [006] d..1 24572.674885: cpu_idle: state=0 cpu_id=6
25856          <idle>-0     (-----) [002] .n.1 24572.674888: cpu_idle: state=4294967295 cpu_id=2
25857          <idle>-0     (-----) [002] d..2 24572.674894: 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
25858  Binder:23968_1-23981 (23968) [007] d..1 24572.674907: sched_waking: comm=LazyTaskWriterT pid=24117 prio=130 target_cpu=007
25859  Binder:23968_1-23981 (23968) [007] d..2 24572.674920: sched_wakeup: comm=LazyTaskWriterT pid=24117 prio=130 target_cpu=006
25860          <idle>-0     (-----) [006] .n.1 24572.674924: cpu_idle: state=4294967295 cpu_id=6
25861          <idle>-0     (-----) [006] d..2 24572.674927: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=LazyTaskWriterT next_pid=24117 next_prio=130
25862     logd.writer-563   (  555) [002] d..2 24572.674939: 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
25863  Binder:23968_1-23981 (23968) [007] d..1 24572.674941: sched_waking: comm=TaskSnapshotPer pid=24113 prio=130 target_cpu=006
25864           <...>-13131 (-----) [004] .... 24572.674945: binder_transaction: transaction=1668930 dest_node=1270642 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x1
25865          <idle>-0     (-----) [002] d..1 24572.674946: cpu_idle: state=0 cpu_id=2
25866  Binder:23968_1-23981 (23968) [007] d..2 24572.674947: sched_wakeup: comm=TaskSnapshotPer pid=24113 prio=130 target_cpu=006
25867           <...>-13131 (-----) [004] ...2 24572.674950: binder_set_priority: proc=23968 thread=24233 old=120 => new=110 desired=110
25868<...>-24117 ( 23968) [006] d..2 24572.674952: sched_switch: prev_comm=LazyTaskWriterT prev_pid=24117 prev_prio=130 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=24113 next_prio=130
25869           <...>-13131 (-----) [004] d..4 24572.674954: sched_waking: comm=Binder:23968_5 pid=24233 prio=110 target_cpu=006
25870  Binder:23968_1-23981 (23968) [007] d..1 24572.674958: sched_waking: comm=LazyTaskWriterT pid=24117 prio=130 target_cpu=006
25871           <...>-13131 (-----) [004] d..5 24572.674969: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=110 target_cpu=007
25872<...>-24113 ( 23968) [006] d.h1 24572.674970: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
25873  Binder:23968_1-23981 (23968) [007] d..2 24572.674971: sched_wakeup: comm=LazyTaskWriterT pid=24117 prio=130 target_cpu=007
25874           <...>-13131 (-----) [004] d..2 24572.674979: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
25875<...>-24113 ( 23968) [006] d.h2 24572.674979: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
25876          <idle>-0     (-----) [004] d..1 24572.674985: cpu_idle: state=0 cpu_id=4
25877<...>-24041 ( 23968) [005] d..2 24572.674988: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
25878 crtc_commit:111-253   (  253) [005] d..1 24572.675014: clk_enable: gcc_disp_axi_clk
25879 crtc_commit:111-253   (  253) [005] d..1 24572.675021: clk_enable: disp_cc_mdss_ahb_clk
25880 crtc_commit:111-253   (  253) [005] d..1 24572.675028: clk_enable: disp_cc_mdss_axi_clk
25881 crtc_commit:111-253   (  253) [005] d..1 24572.675038: clk_enable: gcc_disp_gpll0_clk_src
25882  Binder:23968_1-23981 (23968) [007] d..2 24572.675057: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=000
25883  Binder:23968_1-23981 (23968) [007] d..3 24572.675070: sched_waking: comm=android.bg pid=23992 prio=130 target_cpu=000
25884          <idle>-0     (-----) [000] dnh2 24572.675070: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=000
25885          <idle>-0     (-----) [000] .n.1 24572.675076: cpu_idle: state=4294967295 cpu_id=0
25886          <idle>-0     (-----) [000] d..2 24572.675081: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=statsd.writer next_pid=1044 next_prio=120
25887          <idle>-0     (-----) [001] dnh2 24572.675088: sched_wakeup: comm=android.bg pid=23992 prio=130 target_cpu=001
25888          <idle>-0     (-----) [001] .n.1 24572.675092: cpu_idle: state=4294967295 cpu_id=1
25889          <idle>-0     (-----) [001] d..2 24572.675099: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.bg next_pid=23992 next_prio=130
25890<...>-1044 ( 887) [000] d..2 24572.675181: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25891          <idle>-0     (-----) [000] d..1 24572.675188: cpu_idle: state=0 cpu_id=0
25892<...>-23992 ( 23968) [001] d..2 24572.675192: sched_switch: prev_comm=android.bg prev_pid=23992 prev_prio=130 prev_state=S ==> next_comm=android.display next_pid=24003 next_prio=117
25893          <idle>-0     (-----) [004] ...1 24572.675198: cpu_idle: state=4294967295 cpu_id=4
25894          <idle>-0     (-----) [004] d..1 24572.675199: cpu_idle: state=0 cpu_id=4
25895  Binder:23968_1-23981 (23968) [007] d..2 24572.675255: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=110 prev_state=S ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=110
25896  Binder:23968_5-24233 (23968) [007] .... 24572.675260: binder_transaction_received: transaction=1668930
25897<...>-24113 ( 23968) [006] d..2 24572.675261: sched_switch: prev_comm=TaskSnapshotPer prev_pid=24113 prev_prio=130 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
25898          <idle>-0     (-----) [006] d..1 24572.675265: cpu_idle: state=0 cpu_id=6
25899<...>-24003 ( 23968) [001] d..1 24572.675269: sched_waking: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=007
25900          <idle>-0     (-----) [006] dnh2 24572.675289: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=006
25901          <idle>-0     (-----) [006] .n.1 24572.675291: cpu_idle: state=4294967295 cpu_id=6
25902          <idle>-0     (-----) [006] d..2 24572.675294: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=110
25903<...>-24003 ( 23968) [001] .... 24572.675345: binder_transaction: transaction=1668931 dest_node=1309266 dest_proc=24827 dest_thread=0 reply=0 flags=0x11 code=0x6
25904<...>-24003 ( 23968) [001] d..4 24572.675353: sched_waking: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=004
25905  Binder:23968_5-24233 (23968) [007] d.h1 24572.675373: sched_wakeup: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=007
25906  Binder:23968_5-24233 (23968) [007] .... 24572.675378: binder_transaction: transaction=1668932 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
25907  Binder:23968_5-24233 (23968) [007] d..2 24572.675380: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
25908  Binder:23968_5-24233 (23968) [007] d..3 24572.675387: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
25909  Binder:23968_5-24233 (23968) [007] .... 24572.675388: binder_set_priority: proc=23968 thread=24233 old=110 => new=120 desired=120
25910          <idle>-0     (-----) [004] .n.1 24572.675392: cpu_idle: state=4294967295 cpu_id=4
25911  Binder:23968_5-24233 (23968) [007] d..2 24572.675393: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=R+ ==> next_comm=Binder:24827_4 next_pid=25554 next_prio=120
25912          <idle>-0     (-----) [004] d..2 24572.675395: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
25913<...>-25554 ( 24827) [007] .... 24572.675396: binder_transaction_received: transaction=1668931
25914           <...>-13131 (-----) [004] .... 24572.675397: binder_transaction_received: transaction=1668932
25915<...>-24003 ( 23968) [001] d..2 24572.675410: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25916          <idle>-0     (-----) [001] d..1 24572.675420: cpu_idle: state=0 cpu_id=1
25917  Binder:23968_1-23981 (23968) [006] d..3 24572.675473: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
25918  Binder:23968_1-23981 (23968) [006] d..4 24572.675484: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=007
25919<...>-25554 ( 24827) [007] d..2 24572.675489: sched_switch: prev_comm=Binder:24827_4 prev_pid=25554 prev_prio=120 prev_state=R+ ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
25920<...>-24073 ( 23968) [007] d..2 24572.675506: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=Binder:24827_4 next_pid=25554 next_prio=120
25921<...>-25554 ( 24827) [007] d..2 24572.675510: sched_switch: prev_comm=Binder:24827_4 prev_pid=25554 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
25922  Binder:23968_5-24233 (23968) [007] d..2 24572.675520: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=LazyTaskWriterT next_pid=24117 next_prio=130
25923<...>-24117 ( 23968) [007] d..2 24572.675534: sched_switch: prev_comm=LazyTaskWriterT prev_pid=24117 prev_prio=130 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
25924          <idle>-0     (-----) [007] d..1 24572.675541: cpu_idle: state=0 cpu_id=7
25925 crtc_commit:111-253   (  253) [005] d..1 24572.675542: clk_enable: disp_cc_mdss_mdp_clk_src
25926 crtc_commit:111-253   (  253) [005] d..1 24572.675566: clk_enable: disp_cc_mdss_mdp_clk
25927 crtc_commit:111-253   (  253) [005] d..1 24572.675573: clk_enable: disp_cc_mdss_vsync_clk
25928  Binder:23968_1-23981 (23968) [006] .... 24572.675672: binder_transaction: transaction=1668933 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
25929  Binder:23968_1-23981 (23968) [006] d..4 24572.675677: sched_waking: comm=Binder:24151_5 pid=24406 prio=120 target_cpu=006
25930  Binder:23968_1-23981 (23968) [006] d..5 24572.675689: sched_wakeup: comm=Binder:24151_5 pid=24406 prio=120 target_cpu=007
25931          <idle>-0     (-----) [007] .n.1 24572.675694: cpu_idle: state=4294967295 cpu_id=7
25932          <idle>-0     (-----) [007] d..2 24572.675698: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_5 next_pid=24406 next_prio=120
25933<...>-24406 ( 24151) [007] .... 24572.675701: binder_transaction_received: transaction=1668933
25934 crtc_commit:111-253   (  253) [005] d..2 24572.675778: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=android.anim next_pid=24041 next_prio=110
25935<...>-24406 ( 24151) [007] d..2 24572.675783: sched_switch: prev_comm=Binder:24151_5 prev_pid=24406 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
25936          <idle>-0     (-----) [007] d..1 24572.675788: cpu_idle: state=0 cpu_id=7
25937          <idle>-0     (-----) [003] d.s3 24572.675828: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
25938          <idle>-0     (-----) [003] ...1 24572.675844: cpu_idle: state=4294967295 cpu_id=3
25939          <idle>-0     (-----) [007] dnh2 24572.675846: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
25940          <idle>-0     (-----) [003] d..1 24572.675847: cpu_idle: state=0 cpu_id=3
25941          <idle>-0     (-----) [007] .n.1 24572.675849: cpu_idle: state=4294967295 cpu_id=7
25942          <idle>-0     (-----) [007] d..2 24572.675852: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
25943  Binder:23968_1-23981 (23968) [006] .... 24572.675861: binder_transaction: transaction=1668934 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
25944  Binder:23968_1-23981 (23968) [006] ...2 24572.675865: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
25945  Binder:23968_1-23981 (23968) [006] d..4 24572.675867: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
25946  Binder:23968_1-23981 (23968) [006] d..5 24572.675876: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=006
25947  Binder:23968_1-23981 (23968) [006] d..2 24572.675880: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
25948  Binder:23896_5-25989 (23896) [006] .... 24572.675884: binder_transaction_received: transaction=1668934
25949  Binder:23896_5-25989 (23896) [006] .... 24572.675914: binder_transaction: transaction=1668935 dest_node=0 dest_proc=23968 dest_thread=23981 reply=1 flags=0x0 code=0x0
25950  Binder:23896_5-25989 (23896) [006] d..2 24572.675915: sched_waking: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=006
25951  Binder:23896_5-25989 (23896) [006] d..3 24572.675919: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=006
25952  Binder:23896_5-25989 (23896) [006] .... 24572.675920: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
25953  Binder:23896_5-25989 (23896) [006] d..2 24572.675923: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=110
25954  Binder:23968_1-23981 (23968) [006] .... 24572.675925: binder_transaction_received: transaction=1668935
25955  Binder:23968_1-23981 (23968) [006] d..3 24572.676094: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=007
25956  Binder:23968_1-23981 (23968) [006] d..4 24572.676099: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=007
25957  Binder:23968_1-23981 (23968) [006] d..3 24572.676109: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=001
25958  Binder:23968_1-23981 (23968) [006] d..4 24572.676120: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=005
25959  Binder:23968_1-23981 (23968) [006] d..1 24572.676167: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
25960  Binder:23968_1-23981 (23968) [006] d..2 24572.676173: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
25961  Binder:23968_1-23981 (23968) [006] .... 24572.676210: binder_transaction: transaction=1668936 dest_node=0 dest_proc=24827 dest_thread=24827 reply=1 flags=0x0 code=0x0
25962  Binder:23968_1-23981 (23968) [006] d..2 24572.676213: sched_waking: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=007
25963  Binder:23968_1-23981 (23968) [006] d..3 24572.676219: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=007
25964  Binder:23968_1-23981 (23968) [006] .... 24572.676220: binder_set_priority: proc=23968 thread=23981 old=110 => new=120 desired=120
25965  Binder:23968_1-23981 (23968) [006] d..2 24572.676237: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
25966  Binder:23896_5-25989 (23896) [006] d..2 24572.676252: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
25967          <idle>-0     (-----) [006] d..1 24572.676257: cpu_idle: state=0 cpu_id=6
25968          <idle>-0     (-----) [002] ...1 24572.676263: cpu_idle: state=4294967295 cpu_id=2
25969          <idle>-0     (-----) [002] d..1 24572.676266: cpu_idle: state=0 cpu_id=2
25970          <idle>-0     (-----) [000] ...1 24572.676386: cpu_idle: state=4294967295 cpu_id=0
25971          <idle>-0     (-----) [000] d..1 24572.676389: cpu_idle: state=0 cpu_id=0
25972           <...>-13131 (-----) [004] .... 24572.676411: binder_transaction: transaction=1668937 dest_node=1270642 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x1
25973           <...>-13131 (-----) [004] ...2 24572.676414: binder_set_priority: proc=23968 thread=23981 old=120 => new=110 desired=110
25974           <...>-13131 (-----) [004] d..4 24572.676415: sched_waking: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=006
25975           <...>-13131 (-----) [004] d..5 24572.676423: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=006
25976          <idle>-0     (-----) [006] .n.1 24572.676428: cpu_idle: state=4294967295 cpu_id=6
25977           <...>-13131 (-----) [004] d..2 24572.676431: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
25978          <idle>-0     (-----) [006] d..2 24572.676432: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=110
25979  Binder:23968_1-23981 (23968) [006] .... 24572.676434: binder_transaction_received: transaction=1668937
25980          <idle>-0     (-----) [004] d..1 24572.676437: cpu_idle: state=0 cpu_id=4
25981  Binder:23968_1-23981 (23968) [006] .... 24572.676510: binder_transaction: transaction=1668938 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
25982  Binder:23968_1-23981 (23968) [006] d..2 24572.676513: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
25983  Binder:23968_1-23981 (23968) [006] d..3 24572.676521: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
25984  Binder:23968_1-23981 (23968) [006] .... 24572.676522: binder_set_priority: proc=23968 thread=23981 old=110 => new=120 desired=120
25985  Binder:23968_1-23981 (23968) [006] d..2 24572.676535: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
25986           <...>-13131 (-----) [006] .... 24572.676537: binder_transaction_received: transaction=1668938
25987          <idle>-0     (-----) [004] ...1 24572.676665: cpu_idle: state=4294967295 cpu_id=4
25988          <idle>-0     (-----) [004] d..1 24572.676666: cpu_idle: state=0 cpu_id=4
25989          <idle>-0     (-----) [001] ...1 24572.676709: cpu_idle: state=4294967295 cpu_id=1
25990          <idle>-0     (-----) [001] d..1 24572.676712: cpu_idle: state=0 cpu_id=1
25991 crtc_commit:111-253   (  253) [007] d..1 24572.676885: clk_enable: disp_cc_mdss_esc0_clk_src
25992 crtc_commit:111-253   (  253) [007] d..1 24572.676886: clk_enable: disp_cc_mdss_esc0_clk
25993          <idle>-0     (-----) [004] .n.1 24572.677187: cpu_idle: state=4294967295 cpu_id=4
25994          <idle>-0     (-----) [004] d..2 24572.677191: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13150 next_prio=110
25995 crtc_commit:111-253   (  253) [007] d..1 24572.677212: clk_enable: dsi0pll_vco_clk
25996 crtc_commit:111-253   (  253) [007] d..1 24572.677214: clk_enable: dsi0pll_pll_out_div
25997 crtc_commit:111-253   (  253) [007] d..1 24572.677214: clk_enable: dsi0pll_bitclk_src
25998 crtc_commit:111-253   (  253) [007] d..1 24572.677214: clk_enable: dsi0pll_byteclk_src
25999 crtc_commit:111-253   (  253) [007] d..1 24572.677214: clk_enable: dsi0_phy_pll_out_byteclk
26000 crtc_commit:111-253   (  253) [007] d..1 24572.677215: clk_enable: disp_cc_mdss_byte0_clk_src
26001 crtc_commit:111-253   (  253) [007] d..1 24572.677215: clk_enable: disp_cc_mdss_byte0_clk
26002 crtc_commit:111-253   (  253) [007] d..1 24572.677219: clk_enable: dsi0pll_post_bit_div
26003 crtc_commit:111-253   (  253) [007] d..1 24572.677219: clk_enable: dsi0pll_pclk_src_mux
26004 crtc_commit:111-253   (  253) [007] d..1 24572.677220: clk_enable: dsi0pll_pclk_src
26005 crtc_commit:111-253   (  253) [007] d..1 24572.677220: clk_enable: dsi0_phy_pll_out_dsiclk
26006 crtc_commit:111-253   (  253) [007] d..1 24572.677220: clk_enable: disp_cc_mdss_pclk0_clk_src
26007 crtc_commit:111-253   (  253) [007] d..1 24572.677221: clk_enable: disp_cc_mdss_pclk0_clk
26008 crtc_commit:111-253   (  253) [007] d..1 24572.677224: clk_enable: disp_cc_mdss_byte0_div_clk_src
26009 crtc_commit:111-253   (  253) [007] d..1 24572.677224: clk_enable: disp_cc_mdss_byte0_intf_clk
26010           <...>-13131 (-----) [006] .... 24572.677228: binder_transaction: transaction=1668939 dest_node=1271174 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x31
26011           <...>-13131 (-----) [006] ...2 24572.677230: binder_set_priority: proc=23968 thread=23981 old=120 => new=110 desired=110
26012           <...>-13131 (-----) [006] d..4 24572.677231: sched_waking: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=006
26013           <...>-13131 (-----) [006] dn.5 24572.677235: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=006
26014           <...>-13131 (-----) [006] d..2 24572.677238: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=110
26015  Binder:23968_1-23981 (23968) [006] .... 24572.677240: binder_transaction_received: transaction=1668939
26016  Binder:23968_1-23981 (23968) [006] .... 24572.677312: binder_transaction: transaction=1668940 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
26017  Binder:23968_1-23981 (23968) [006] .... 24572.677315: binder_set_priority: proc=23968 thread=23981 old=110 => new=120 desired=120
26018  Binder:23968_1-23981 (23968) [006] d..2 24572.677328: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
26019           <...>-13131 (-----) [006] .... 24572.677330: binder_transaction_received: transaction=1668940
26020           <...>-13131 (-----) [006] .... 24572.677400: binder_transaction: transaction=1668941 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x2c
26021           <...>-13131 (-----) [006] ...2 24572.677405: binder_set_priority: proc=23968 thread=23981 old=120 => new=110 desired=110
26022           <...>-13131 (-----) [006] d..4 24572.677405: sched_waking: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=006
26023           <...>-13131 (-----) [006] dn.5 24572.677410: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=006
26024           <...>-13131 (-----) [006] d..2 24572.677412: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=110
26025  Binder:23968_1-23981 (23968) [006] .... 24572.677414: binder_transaction_received: transaction=1668941
26026  Binder:23968_1-23981 (23968) [006] d..1 24572.677466: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=006
26027  Binder:23968_1-23981 (23968) [006] d..2 24572.677477: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=007
26028  Binder:23968_1-23981 (23968) [006] .... 24572.677499: binder_transaction: transaction=1668942 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
26029  Binder:23968_1-23981 (23968) [006] .... 24572.677501: binder_set_priority: proc=23968 thread=23981 old=110 => new=120 desired=120
26030 crtc_commit:111-253   (  253) [007] d..2 24572.677510: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
26031  Binder:23968_1-23981 (23968) [006] d..2 24572.677517: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
26032           <...>-13131 (-----) [006] .... 24572.677519: binder_transaction_received: transaction=1668942
26033<...>-24073 ( 23968) [007] d..2 24572.677527: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
26034 s.nexuslauncher-24827 (24827) [007] .... 24572.677532: binder_transaction_received: transaction=1668936
26035           <...>-13150 (-----) [004] d..2 24572.677533: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
26036          <idle>-0     (-----) [003] d.s3 24572.677536: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
26037          <idle>-0     (-----) [000] dnh2 24572.677560: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
26038          <idle>-0     (-----) [000] .n.1 24572.677593: cpu_idle: state=4294967295 cpu_id=0
26039<...>-24041 ( 23968) [005] dnH1 24572.677595: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
26040<...>-24041 ( 23968) [005] dns1 24572.677599: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
26041          <idle>-0     (-----) [000] d..2 24572.677601: 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
26042 s.nexuslauncher-24827 (24827) [007] d..1 24572.677609: sched_waking: comm=Jit thread pool pid=24838 prio=129 target_cpu=002
26043          <idle>-0     (-----) [003] ...1 24572.677610: cpu_idle: state=4294967295 cpu_id=3
26044<...>-24041 ( 23968) [005] dns2 24572.677611: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
26045          <idle>-0     (-----) [003] d..1 24572.677613: cpu_idle: state=0 cpu_id=3
26046           <...>-13150 (-----) [004] d..2 24572.677615: sched_switch: prev_comm=EGL Init prev_pid=13150 prev_prio=120 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
26047<...>-24041 ( 23968) [005] d..2 24572.677620: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
26048 s.nexuslauncher-24827 (24827) [007] d..2 24572.677624: sched_wakeup: comm=Jit thread pool pid=24838 prio=129 target_cpu=006
26049     rcu_preempt-7     (    7) [004] d..2 24572.677627: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=EGL Init next_pid=13150 next_prio=120
26050 crtc_commit:111-253   (  253) [005] d..2 24572.677647: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=android.display next_pid=24003 next_prio=117
26051<...>-24003 ( 23968) [005] d..2 24572.677681: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
26052     logd.writer-563   (  555) [000] d..2 24572.677793: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=Jit thread pool next_pid=24838 next_prio=129
26053<...>-24838 ( 24827) [000] d..2 24572.677878: sched_switch: prev_comm=Jit thread pool prev_pid=24838 prev_prio=129 prev_state=S ==> next_comm=ActivityManager next_pid=23993 next_prio=118
26054<...>-23993 ( 23968) [000] d..1 24572.677944: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=006
26055           <...>-13131 (-----) [006] d.h1 24572.677962: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=006
26056           <...>-13150 (-----) [004] d..2 24572.678036: sched_switch: prev_comm=EGL Init prev_pid=13150 prev_prio=120 prev_state=x ==> next_comm=swapper/4 next_pid=0 next_prio=120
26057          <idle>-0     (-----) [004] d..1 24572.678048: cpu_idle: state=0 cpu_id=4
26058           <...>-13131 (-----) [006] .... 24572.678119: binder_transaction: transaction=1668943 dest_node=1270642 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x1
26059           <...>-13131 (-----) [006] ...2 24572.678122: binder_set_priority: proc=23968 thread=23981 old=120 => new=110 desired=110
26060           <...>-13131 (-----) [006] d..4 24572.678123: sched_waking: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=006
26061           <...>-13131 (-----) [006] d..5 24572.678133: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=007
26062           <...>-13131 (-----) [006] d..2 24572.678138: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
26063  Binder:23968_C-25014 (23968) [006] d..2 24572.678155: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
26064          <idle>-0     (-----) [006] d..1 24572.678162: cpu_idle: state=0 cpu_id=6
26065 s.nexuslauncher-24827 (24827) [007] d..3 24572.678185: sched_waking: comm=UiThreadHelper pid=25108 prio=118 target_cpu=003
26066 s.nexuslauncher-24827 (24827) [007] d..4 24572.678202: sched_wakeup: comm=UiThreadHelper pid=25108 prio=118 target_cpu=006
26067          <idle>-0     (-----) [006] .n.1 24572.678208: cpu_idle: state=4294967295 cpu_id=6
26068<...>-23993 ( 23968) [000] d..1 24572.678212: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=006
26069          <idle>-0     (-----) [006] d..2 24572.678221: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=UiThreadHelper next_pid=25108 next_prio=118
26070<...>-25108 ( 24827) [006] d.h1 24572.678239: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=006
26071 s.nexuslauncher-24827 (24827) [007] d..2 24572.678241: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
26072<...>-12589 ( 23968) [007] d..1 24572.678254: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=000
26073<...>-23993 ( 23968) [000] d..2 24572.678270: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26074          <idle>-0     (-----) [000] d..1 24572.678280: cpu_idle: state=0 cpu_id=0
26075<...>-12589 ( 23968) [007] d..2 24572.678282: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=006
26076<...>-12589 ( 23968) [007] d..1 24572.678302: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=006
26077<...>-12589 ( 23968) [007] d..2 24572.678305: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=006
26078<...>-12589 ( 23968) [007] .... 24572.678355: binder_transaction: transaction=1668945 dest_node=0 dest_proc=24151 dest_thread=24369 reply=1 flags=0x0 code=0x0
26079<...>-12589 ( 23968) [007] d..2 24572.678359: sched_waking: comm=recents.fg pid=24369 prio=120 target_cpu=006
26080<...>-12589 ( 23968) [007] d..3 24572.678367: sched_wakeup: comm=recents.fg pid=24369 prio=120 target_cpu=006
26081<...>-25108 ( 24827) [006] .... 24572.678377: binder_transaction: transaction=1668944 dest_node=1309457 dest_proc=24151 dest_thread=0 reply=0 flags=0x10 code=0x9
26082<...>-25108 ( 24827) [006] ...2 24572.678381: binder_set_priority: proc=24151 thread=24406 old=120 => new=118 desired=118
26083<...>-12589 ( 23968) [007] d..2 24572.678381: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=110
26084<...>-25108 ( 24827) [006] d..4 24572.678382: sched_waking: comm=Binder:24151_5 pid=24406 prio=118 target_cpu=007
26085  Binder:23968_1-23981 (23968) [007] .... 24572.678383: binder_transaction_received: transaction=1668943
26086<...>-25108 ( 24827) [006] d..5 24572.678389: sched_wakeup: comm=Binder:24151_5 pid=24406 prio=118 target_cpu=007
26087<...>-25108 ( 24827) [006] d..2 24572.678395: sched_switch: prev_comm=UiThreadHelper prev_pid=25108 prev_prio=118 prev_state=S ==> next_comm=android.ui next_pid=23994 next_prio=118
26088  Binder:23968_1-23981 (23968) [007] .... 24572.678466: binder_transaction: transaction=1668947 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
26089  Binder:23968_1-23981 (23968) [007] d..2 24572.678468: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
26090          <idle>-0     (-----) [000] d.h2 24572.678470: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
26091<...>-23994 ( 23968) [006] .... 24572.678471: binder_transaction: transaction=1668946 dest_node=1303001 dest_proc=24655 dest_thread=0 reply=0 flags=0x11 code=0x1
26092<...>-23994 ( 23968) [006] d..4 24572.678475: sched_waking: comm=Binder:24655_1 pid=24669 prio=120 target_cpu=002
26093          <idle>-0     (-----) [000] dnh3 24572.678478: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
26094  Binder:23968_1-23981 (23968) [007] d..3 24572.678479: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
26095  Binder:23968_1-23981 (23968) [007] .... 24572.678480: binder_set_priority: proc=23968 thread=23981 old=110 => new=120 desired=120
26096          <idle>-0     (-----) [004] .n.1 24572.678484: cpu_idle: state=4294967295 cpu_id=4
26097          <idle>-0     (-----) [000] .n.1 24572.678484: cpu_idle: state=4294967295 cpu_id=0
26098          <idle>-0     (-----) [004] d..2 24572.678488: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
26099          <idle>-0     (-----) [000] d..2 24572.678490: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
26100<...>-23994 ( 23968) [006] d..5 24572.678490: sched_wakeup: comm=Binder:24655_1 pid=24669 prio=120 target_cpu=007
26101           <...>-13131 (-----) [004] .... 24572.678491: binder_transaction_received: transaction=1668947
26102  Binder:23968_1-23981 (23968) [007] d..2 24572.678493: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=R+ ==> next_comm=Binder:24655_1 next_pid=24669 next_prio=120
26103  Binder:24655_1-24669 (24655) [007] .... 24572.678514: binder_transaction_received: transaction=1668946
26104           <...>-13131 (-----) [004] .... 24572.678545: binder_transaction: transaction=1668948 dest_node=1270642 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x1
26105           <...>-13131 (-----) [004] ...2 24572.678549: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
26106           <...>-13131 (-----) [004] d..4 24572.678550: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=007
26107           <...>-13131 (-----) [004] d..5 24572.678556: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=007
26108<...>-23994 ( 23968) [006] d..3 24572.678560: sched_waking: comm=android.fg pid=24001 prio=120 target_cpu=000
26109           <...>-13131 (-----) [004] d..2 24572.678563: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
26110          <idle>-0     (-----) [004] d..1 24572.678567: cpu_idle: state=0 cpu_id=4
26111<...>-23994 ( 23968) [006] d..4 24572.678574: sched_wakeup: comm=android.fg pid=24001 prio=120 target_cpu=006
26112<...>-23994 ( 23968) [006] d..3 24572.678601: sched_waking: comm=android.bg pid=23992 prio=130 target_cpu=001
26113          <idle>-0     (-----) [001] dnh2 24572.678616: sched_wakeup: comm=android.bg pid=23992 prio=130 target_cpu=001
26114<...>-23994 ( 23968) [006] d..3 24572.678616: sched_waking: comm=tworkPolicy.uid pid=24082 prio=118 target_cpu=002
26115          <idle>-0     (-----) [001] .n.1 24572.678621: cpu_idle: state=4294967295 cpu_id=1
26116<...>-23994 ( 23968) [006] d..4 24572.678626: sched_wakeup: comm=tworkPolicy.uid pid=24082 prio=118 target_cpu=006
26117          <idle>-0     (-----) [001] d..2 24572.678630: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.bg next_pid=23992 next_prio=130
26118          <idle>-0     (-----) [003] d.s3 24572.678668: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
26119<...>-23994 ( 23968) [006] d..3 24572.678673: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=006
26120 irq/79-1436400.-24613 (24613) [000] d..2 24572.678676: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
26121<...>-23994 ( 23968) [006] d..4 24572.678682: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=007
26122          <idle>-0     (-----) [003] d.s4 24572.678685: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
26123<...>-23994 ( 23968) [006] d..3 24572.678688: sched_waking: comm=android.bg pid=23992 prio=130 target_cpu=001
26124          <idle>-0     (-----) [003] ...1 24572.678690: cpu_idle: state=4294967295 cpu_id=3
26125          <idle>-0     (-----) [003] d..1 24572.678693: cpu_idle: state=0 cpu_id=3
26126  Binder:24655_1-24669 (24655) [007] d..2 24572.678693: sched_switch: prev_comm=Binder:24655_1 prev_pid=24669 prev_prio=120 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
26127<...>-23992 ( 23968) [001] d..2 24572.678711: sched_switch: prev_comm=android.bg prev_pid=23992 prev_prio=130 prev_state=S ==> next_comm=Binder:24151_5 next_pid=24406 next_prio=118
26128<...>-24406 ( 24151) [001] .... 24572.678719: binder_transaction_received: transaction=1668944
26129<...>-24406 ( 24151) [001] d.h1 24572.678727: sched_wakeup: comm=android.bg pid=23992 prio=130 target_cpu=001
26130<...>-23994 ( 23968) [006] d..2 24572.678729: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=android.fg next_pid=24001 next_prio=120
26131<...>-23968 ( 23968) [007] d..1 24572.678731: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=006
26132<...>-23968 ( 23968) [007] d..2 24572.678740: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=007
26133<...>-12589 ( 23968) [000] dnh6 24572.678741: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
26134      android.fg-24001 (23968) [006] d..2 24572.678752: sched_switch: prev_comm=android.fg prev_pid=24001 prev_prio=120 prev_state=S ==> next_comm=tworkPolicy.uid next_pid=24082 next_prio=118
26135<...>-23968 ( 23968) [007] d..2 24572.678760: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=android.ui next_pid=23994 next_prio=118
26136          <idle>-0     (-----) [004] dnh2 24572.678763: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
26137          <idle>-0     (-----) [004] .n.1 24572.678765: cpu_idle: state=4294967295 cpu_id=4
26138 tworkPolicy.uid-24082 (23968) [006] d..1 24572.678785: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=007
26139          <idle>-0     (-----) [004] d..2 24572.678788: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
26140<...>-23994 ( 23968) [007] d..2 24572.678790: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
26141<...>-12589 ( 23968) [000] d..2 24572.678795: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
26142 tworkPolicy.uid-24082 (23968) [006] d..2 24572.678796: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=007
26143  Binder:23968_1-23981 (23968) [007] d..2 24572.678803: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=23994 next_prio=118
26144 tworkPolicy.uid-24082 (23968) [006] d..2 24572.678809: sched_switch: prev_comm=tworkPolicy.uid prev_pid=24082 prev_prio=118 prev_state=S ==> next_comm=recents.fg next_pid=24369 next_prio=120
26145<...>-24369 ( 24151) [006] .... 24572.678813: binder_transaction_received: transaction=1668945
26146 irq/79-1436400.-24613 (24613) [000] d..2 24572.678814: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
26147<...>-12589 ( 23968) [000] .... 24572.678818: binder_transaction_received: transaction=1668948
26148 crtc_commit:111-253   (  253) [004] d..2 24572.678830: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
26149          <idle>-0     (-----) [004] d..1 24572.678832: cpu_idle: state=0 cpu_id=4
26150<...>-23994 ( 23968) [007] d..3 24572.678845: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=007
26151<...>-23994 ( 23968) [007] d..4 24572.678850: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=007
26152<...>-24369 ( 24151) [006] d..2 24572.678858: sched_switch: prev_comm=recents.fg prev_pid=24369 prev_prio=120 prev_state=S ==> next_comm=ActivityManager next_pid=23993 next_prio=118
26153<...>-23994 ( 23968) [007] d..2 24572.678868: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
26154<...>-23968 ( 23968) [007] .... 24572.678898: binder_transaction: transaction=1668949 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
26155<...>-23968 ( 23968) [007] d..4 24572.678901: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=006
26156<...>-23968 ( 23968) [007] d..5 24572.678911: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=007
26157<...>-23968 ( 23968) [007] .... 24572.678933: binder_transaction: transaction=1668950 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
26158<...>-23968 ( 23968) [007] d..2 24572.678947: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
26159<...>-24177 ( 24151) [007] .... 24572.678950: binder_transaction_received: transaction=1668949
26160<...>-23993 ( 23968) [006] d..2 24572.678968: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
26161<...>-24406 ( 24151) [001] .... 24572.678983: binder_transaction: transaction=1668951 dest_node=0 dest_proc=24827 dest_thread=25108 reply=1 flags=0x0 code=0x0
26162          <idle>-0     (-----) [002] dnh2 24572.678986: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
26163<...>-12589 ( 23968) [000] .... 24572.678987: binder_transaction: transaction=1668952 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
26164<...>-24406 ( 24151) [001] d..2 24572.678988: sched_waking: comm=UiThreadHelper pid=25108 prio=118 target_cpu=006
26165          <idle>-0     (-----) [002] .n.1 24572.678990: cpu_idle: state=4294967295 cpu_id=2
26166<...>-12589 ( 23968) [000] d..2 24572.678992: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
26167          <idle>-0     (-----) [002] d..2 24572.678996: 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
26168<...>-24177 ( 24151) [007] d..4 24572.679001: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=003
26169<...>-24406 ( 24151) [001] .... 24572.679005: binder_set_priority: proc=24151 thread=24406 old=118 => new=120 desired=120
26170<...>-12589 ( 23968) [000] d..3 24572.679009: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
26171<...>-24177 ( 24151) [007] d..5 24572.679012: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
26172<...>-24177 ( 24151) [007] d.h4 24572.679037: sched_wakeup: comm=UiThreadHelper pid=25108 prio=118 target_cpu=007
26173<...>-12589 ( 23968) [000] .... 24572.679038: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
26174<...>-24177 ( 24151) [007] .... 24572.679040: binder_transaction_received: transaction=1668950
26175<...>-23993 ( 23968) [006] d..2 24572.679058: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
26176<...>-24406 ( 24151) [001] d..2 24572.679059: sched_switch: prev_comm=Binder:24151_5 prev_pid=24406 prev_prio=120 prev_state=S ==> next_comm=android.bg next_pid=23992 next_prio=130
26177<...>-12589 ( 23968) [000] d..2 24572.679067: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
26178<...>-24177 ( 24151) [007] d..2 24572.679069: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
26179           <...>-13131 (-----) [000] .... 24572.679073: binder_transaction_received: transaction=1668952
26180<...>-24376 ( 24151) [007] d..2 24572.679073: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=UiThreadHelper next_pid=25108 next_prio=118
26181     logd.writer-563   (  555) [002] d..2 24572.679074: 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
26182<...>-25108 ( 24827) [007] .... 24572.679076: binder_transaction_received: transaction=1668951
26183          <idle>-0     (-----) [002] d..1 24572.679081: cpu_idle: state=0 cpu_id=2
26184<...>-25108 ( 24827) [007] d..2 24572.679110: sched_switch: prev_comm=UiThreadHelper prev_pid=25108 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
26185          <idle>-0     (-----) [007] d..1 24572.679118: cpu_idle: state=0 cpu_id=7
26186  Binder:23968_C-25014 (23968) [006] .... 24572.679214: binder_transaction: transaction=1668953 dest_node=0 dest_proc=24151 dest_thread=24151 reply=1 flags=0x0 code=0x0
26187  Binder:23968_C-25014 (23968) [006] d..2 24572.679218: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
26188  Binder:23968_C-25014 (23968) [006] d..3 24572.679224: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
26189  Binder:23968_C-25014 (23968) [006] d..2 24572.679235: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
26190<...>-24151 ( 24151) [006] .... 24572.679238: binder_transaction_received: transaction=1668953
26191<...>-24041 ( 23968) [005] d..3 24572.679300: sched_waking: comm=RenderThread pid=27905 prio=116 target_cpu=001
26192          <idle>-0     (-----) [007] ...1 24572.679315: cpu_idle: state=4294967295 cpu_id=7
26193<...>-24041 ( 23968) [005] d..4 24572.679319: sched_wakeup: comm=RenderThread pid=27905 prio=116 target_cpu=007
26194          <idle>-0     (-----) [007] d..2 24572.679323: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27905 next_prio=116
26195<...>-27905 ( 23968) [007] d..2 24572.679347: sched_switch: prev_comm=RenderThread prev_pid=27905 prev_prio=116 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
26196          <idle>-0     (-----) [007] d..1 24572.679350: cpu_idle: state=0 cpu_id=7
26197          <idle>-0     (-----) [007] ...1 24572.679549: cpu_idle: state=4294967295 cpu_id=7
26198          <idle>-0     (-----) [007] d..1 24572.679550: cpu_idle: state=0 cpu_id=7
26199<...>-24151 ( 24151) [006] .... 24572.679618: binder_transaction: transaction=1668954 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
26200<...>-24151 ( 24151) [006] d..4 24572.679623: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=006
26201<...>-24151 ( 24151) [006] d..5 24572.679637: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
26202          <idle>-0     (-----) [004] .n.1 24572.679642: cpu_idle: state=4294967295 cpu_id=4
26203          <idle>-0     (-----) [004] d..2 24572.679645: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
26204  Binder:23896_5-25989 (23896) [004] .... 24572.679649: binder_transaction_received: transaction=1668954
26205<...>-24151 ( 24151) [006] d..3 24572.679651: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
26206<...>-24151 ( 24151) [006] d..4 24572.679662: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
26207          <idle>-0     (-----) [007] .n.1 24572.679666: cpu_idle: state=4294967295 cpu_id=7
26208          <idle>-0     (-----) [007] d..2 24572.679670: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
26209  Binder:23896_5-25989 (23896) [004] d..1 24572.679677: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
26210    RenderThread-24437 (24151) [007] d..2 24572.679687: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
26211          <idle>-0     (-----) [007] d..1 24572.679689: cpu_idle: state=0 cpu_id=7
26212          <idle>-0     (-----) [003] dnh2 24572.679697: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
26213          <idle>-0     (-----) [003] .n.1 24572.679700: cpu_idle: state=4294967295 cpu_id=3
26214  Binder:23896_5-25989 (23896) [004] d..2 24572.679702: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
26215          <idle>-0     (-----) [003] d..2 24572.679707: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
26216          <idle>-0     (-----) [004] d..1 24572.679707: cpu_idle: state=0 cpu_id=4
26217  appEventThread-23905 (23896) [003] d..1 24572.679737: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=004
26218          <idle>-0     (-----) [004] dnh2 24572.679754: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=004
26219          <idle>-0     (-----) [004] .n.1 24572.679756: cpu_idle: state=4294967295 cpu_id=4
26220          <idle>-0     (-----) [004] d..2 24572.679759: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
26221        DispSync-23904 (23896) [004] d..2 24572.679771: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
26222          <idle>-0     (-----) [004] d..1 24572.679774: cpu_idle: state=0 cpu_id=4
26223  appEventThread-23905 (23896) [003] d..2 24572.679774: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
26224<...>-24151 ( 24151) [006] d..2 24572.679780: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
26225          <idle>-0     (-----) [003] d..1 24572.679781: cpu_idle: state=0 cpu_id=3
26226          <idle>-0     (-----) [006] d..1 24572.679789: cpu_idle: state=0 cpu_id=6
26227          <idle>-0     (-----) [007] ...1 24572.679879: cpu_idle: state=4294967295 cpu_id=7
26228          <idle>-0     (-----) [007] d..1 24572.679880: cpu_idle: state=0 cpu_id=7
26229          <idle>-0     (-----) [006] ...1 24572.679981: cpu_idle: state=4294967295 cpu_id=6
26230          <idle>-0     (-----) [006] d..1 24572.679982: cpu_idle: state=0 cpu_id=6
26231<...>-24041 ( 23968) [005] .... 24572.680081: binder_transaction: transaction=1668955 dest_node=1344517 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
26232<...>-24041 ( 23968) [005] d..4 24572.680085: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
26233<...>-24041 ( 23968) [005] d..5 24572.680094: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
26234          <idle>-0     (-----) [004] .n.1 24572.680098: cpu_idle: state=4294967295 cpu_id=4
26235          <idle>-0     (-----) [004] d..2 24572.680101: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
26236  Binder:23896_5-25989 (23896) [004] .... 24572.680102: binder_transaction_received: transaction=1668955
26237  Binder:23896_5-25989 (23896) [004] d..1 24572.680107: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
26238  Binder:23896_5-25989 (23896) [004] d..2 24572.680119: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
26239          <idle>-0     (-----) [003] dnh2 24572.680121: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
26240          <idle>-0     (-----) [004] d..1 24572.680121: cpu_idle: state=0 cpu_id=4
26241          <idle>-0     (-----) [003] .n.1 24572.680125: cpu_idle: state=4294967295 cpu_id=3
26242          <idle>-0     (-----) [003] d..2 24572.680129: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
26243  appEventThread-23905 (23896) [003] d..2 24572.680148: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
26244          <idle>-0     (-----) [003] d..1 24572.680154: cpu_idle: state=0 cpu_id=3
26245           <...>-13131 (-----) [000] .... 24572.680244: binder_transaction: transaction=1668956 dest_node=1270642 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x1
26246           <...>-13131 (-----) [000] ...2 24572.680250: binder_set_priority: proc=23968 thread=25014 old=120 => new=110 desired=110
26247           <...>-13131 (-----) [000] d..4 24572.680253: sched_waking: comm=Binder:23968_C pid=25014 prio=110 target_cpu=006
26248           <...>-13131 (-----) [000] d..5 24572.680270: sched_wakeup: comm=Binder:23968_C pid=25014 prio=110 target_cpu=000
26249           <...>-13131 (-----) [000] d..2 24572.680309: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=110
26250  Binder:23968_C-25014 (23968) [000] .... 24572.680314: binder_transaction_received: transaction=1668956
26251<...>-23992 ( 23968) [001] d..2 24572.680353: sched_switch: prev_comm=android.bg prev_pid=23992 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
26252          <idle>-0     (-----) [001] d..1 24572.680367: cpu_idle: state=0 cpu_id=1
26253<...>-24041 ( 23968) [005] d..3 24572.680413: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=007
26254<...>-24041 ( 23968) [005] d..4 24572.680427: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
26255          <idle>-0     (-----) [006] .n.1 24572.680431: cpu_idle: state=4294967295 cpu_id=6
26256          <idle>-0     (-----) [006] d..2 24572.680435: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
26257<...>-24073 ( 23968) [006] d..2 24572.680455: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
26258          <idle>-0     (-----) [006] d..1 24572.680458: cpu_idle: state=0 cpu_id=6
26259  Binder:23968_C-25014 (23968) [000] .... 24572.680503: binder_transaction: transaction=1668957 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
26260  Binder:23968_C-25014 (23968) [000] d..2 24572.680507: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
26261<...>-24041 ( 23968) [005] .... 24572.680512: binder_transaction: transaction=1668958 dest_node=1344550 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x1
26262  Binder:23968_C-25014 (23968) [000] dn.3 24572.680516: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
26263<...>-24041 ( 23968) [005] ...2 24572.680521: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
26264  Binder:23968_C-25014 (23968) [000] d..2 24572.680521: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
26265<...>-24041 ( 23968) [005] d..4 24572.680522: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
26266           <...>-13131 (-----) [000] .... 24572.680526: binder_transaction_received: transaction=1668957
26267<...>-24041 ( 23968) [005] dn.5 24572.680530: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
26268<...>-24041 ( 23968) [005] d..2 24572.680534: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
26269  Binder:23896_5-25989 (23896) [005] .... 24572.680536: binder_transaction_received: transaction=1668958
26270  Binder:23896_5-25989 (23896) [005] d..3 24572.680563: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
26271  Binder:23896_5-25989 (23896) [005] d..2 24572.680575: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
26272          <idle>-0     (-----) [003] dnh2 24572.680577: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
26273          <idle>-0     (-----) [003] .n.1 24572.680581: cpu_idle: state=4294967295 cpu_id=3
26274<...>-24041 ( 23968) [005] d..3 24572.680584: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
26275          <idle>-0     (-----) [003] d..2 24572.680585: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
26276<...>-24041 ( 23968) [005] d..2 24572.680591: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
26277           <...>-13131 (-----) [000] dnh1 24572.680597: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
26278          <idle>-0     (-----) [005] d..1 24572.680599: cpu_idle: state=0 cpu_id=5
26279           <...>-13131 (-----) [000] d..2 24572.680605: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
26280          <idle>-0     (-----) [005] .n.1 24572.680634: cpu_idle: state=4294967295 cpu_id=5
26281          <idle>-0     (-----) [005] d..2 24572.680655: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
26282          <idle>-0     (-----) [006] ...1 24572.680657: cpu_idle: state=4294967295 cpu_id=6
26283          <idle>-0     (-----) [006] d..1 24572.680657: cpu_idle: state=0 cpu_id=6
26284     migration/0-13    (   13) [000] d..2 24572.680660: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=110
26285  Binder:23968_C-25014 (23968) [000] .... 24572.680663: binder_set_priority: proc=23968 thread=25014 old=110 => new=120 desired=120
26286  Binder:23968_C-25014 (23968) [000] d..2 24572.680698: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26287          <idle>-0     (-----) [000] d..1 24572.680713: cpu_idle: state=0 cpu_id=0
26288  surfaceflinger-23896 (23896) [003] ...1 24572.680724: tracing_mark_write: B|23896|HIDL::IComposerClient::getActiveConfig::client
26289  surfaceflinger-23896 (23896) [003] ...1 24572.680729: tracing_mark_write: E|23896
26290  surfaceflinger-23896 (23896) [003] .... 24572.680761: binder_transaction: transaction=1668959 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x7
26291  surfaceflinger-23896 (23896) [003] ...2 24572.680768: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
26292  surfaceflinger-23896 (23896) [003] d..4 24572.680776: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
26293          <idle>-0     (-----) [004] dnh2 24572.680791: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
26294          <idle>-0     (-----) [004] .n.1 24572.680793: cpu_idle: state=4294967295 cpu_id=4
26295          <idle>-0     (-----) [004] d..2 24572.680796: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
26296  surfaceflinger-23896 (23896) [003] d..2 24572.680800: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
26297  HwBinder:598_3-633   (  598) [004] .... 24572.680801: binder_transaction_received: transaction=1668959
26298          <idle>-0     (-----) [003] d..1 24572.680811: cpu_idle: state=0 cpu_id=3
26299  HwBinder:598_3-633   (  598) [004] ...1 24572.680828: tracing_mark_write: B|598|HIDL::IComposerClient::getActiveConfig::server
26300  HwBinder:598_3-633   (  598) [004] ...1 24572.680847: tracing_mark_write: E|598
26301  HwBinder:598_3-633   (  598) [004] .... 24572.680853: binder_transaction: transaction=1668960 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
26302  HwBinder:598_3-633   (  598) [004] d..2 24572.680855: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
26303  HwBinder:598_3-633   (  598) [004] .... 24572.680862: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
26304          <idle>-0     (-----) [003] dnh2 24572.680869: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
26305          <idle>-0     (-----) [003] .n.1 24572.680873: cpu_idle: state=4294967295 cpu_id=3
26306          <idle>-0     (-----) [003] d..2 24572.680878: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
26307  HwBinder:598_3-633   (  598) [004] d..2 24572.680878: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
26308           <...>-13131 (-----) [005] d.s2 24572.680899: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
26309          <idle>-0     (-----) [004] d..1 24572.680905: cpu_idle: state=0 cpu_id=4
26310  surfaceflinger-23896 (23896) [003] .... 24572.680906: binder_transaction_received: transaction=1668960
26311           <...>-13131 (-----) [005] d.s3 24572.680914: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
26312          <idle>-0     (-----) [004] .n.1 24572.680918: cpu_idle: state=4294967295 cpu_id=4
26313          <idle>-0     (-----) [004] d..2 24572.680932: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
26314           <...>-13131 (-----) [005] d.s2 24572.680934: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
26315           <...>-13131 (-----) [005] d.s3 24572.680945: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=006
26316          <idle>-0     (-----) [006] .n.1 24572.680950: cpu_idle: state=4294967295 cpu_id=6
26317  crtc_event:111-254   (  254) [004] d..2 24572.680950: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
26318          <idle>-0     (-----) [004] d..1 24572.680952: cpu_idle: state=0 cpu_id=4
26319          <idle>-0     (-----) [006] d..2 24572.680953: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26320  surfaceflinger-23896 (23896) [003] d..1 24572.681055: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
26321          <idle>-0     (-----) [004] dnh2 24572.681075: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
26322          <idle>-0     (-----) [004] .n.1 24572.681077: cpu_idle: state=4294967295 cpu_id=4
26323          <idle>-0     (-----) [004] d..2 24572.681079: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
26324  surfaceflinger-23896 (23896) [003] d..2 24572.681089: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
26325  Binder:23896_5-25989 (23896) [004] .... 24572.681092: binder_transaction: transaction=1668961 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
26326          <idle>-0     (-----) [003] d..1 24572.681097: cpu_idle: state=0 cpu_id=3
26327  kworker/u16:10-23868 (23868) [006] d..2 24572.681128: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
26328          <idle>-0     (-----) [006] d..1 24572.681131: cpu_idle: state=0 cpu_id=6
26329          <idle>-0     (-----) [003] d.s3 24572.681169: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=006
26330           <...>-13131 (-----) [005] .... 24572.681177: binder_transaction: transaction=1668964 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x13
26331          <idle>-0     (-----) [003] ...1 24572.681183: cpu_idle: state=4294967295 cpu_id=3
26332          <idle>-0     (-----) [006] d.h2 24572.681184: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
26333          <idle>-0     (-----) [003] d..1 24572.681185: cpu_idle: state=0 cpu_id=3
26334          <idle>-0     (-----) [006] dnh2 24572.681185: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=006
26335          <idle>-0     (-----) [006] .n.1 24572.681188: cpu_idle: state=4294967295 cpu_id=6
26336           <...>-13131 (-----) [005] ...2 24572.681188: binder_set_priority: proc=23968 thread=25014 old=120 => new=110 desired=110
26337           <...>-13131 (-----) [005] d..4 24572.681189: sched_waking: comm=Binder:23968_C pid=25014 prio=110 target_cpu=000
26338          <idle>-0     (-----) [006] d..2 24572.681190: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26339           <...>-13131 (-----) [005] d..5 24572.681203: sched_wakeup: comm=Binder:23968_C pid=25014 prio=110 target_cpu=007
26340          <idle>-0     (-----) [007] .n.1 24572.681207: cpu_idle: state=4294967295 cpu_id=7
26341          <idle>-0     (-----) [007] d..2 24572.681222: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_C next_pid=25014 next_prio=110
26342  Binder:23896_5-25989 (23896) [004] d..2 24572.681223: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=005
26343  Binder:23968_C-25014 (23968) [007] .... 24572.681225: binder_transaction_received: transaction=1668964
26344  Binder:23896_5-25989 (23896) [004] d..3 24572.681232: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=004
26345  Binder:23896_5-25989 (23896) [004] .... 24572.681234: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
26346           <...>-13131 (-----) [005] d..2 24572.681237: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
26347          <idle>-0     (-----) [005] d..1 24572.681247: cpu_idle: state=0 cpu_id=5
26348  Binder:23896_5-25989 (23896) [004] d..2 24572.681251: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
26349<...>-24041 ( 23968) [004] .... 24572.681253: binder_transaction_received: transaction=1668961
26350          <idle>-0     (-----) [005] ...1 24572.681255: cpu_idle: state=4294967295 cpu_id=5
26351          <idle>-0     (-----) [005] d..1 24572.681257: cpu_idle: state=0 cpu_id=5
26352<...>-24041 ( 23968) [004] .... 24572.681279: binder_transaction: transaction=1668967 dest_node=1668965 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
26353<...>-24041 ( 23968) [004] ...2 24572.681281: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
26354<...>-24041 ( 23968) [004] d..4 24572.681281: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
26355<...>-24041 ( 23968) [004] d..5 24572.681284: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
26356<...>-24041 ( 23968) [004] d..2 24572.681288: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
26357  Binder:23896_5-25989 (23896) [004] .... 24572.681289: binder_transaction_received: transaction=1668967
26358  Binder:23896_5-25989 (23896) [004] .... 24572.681295: binder_transaction: transaction=1668968 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x8 code=0x0
26359  Binder:23896_5-25989 (23896) [004] d..2 24572.681296: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=004
26360  Binder:23896_5-25989 (23896) [004] d..3 24572.681299: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=004
26361  Binder:23896_5-25989 (23896) [004] .... 24572.681300: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
26362  Binder:23896_5-25989 (23896) [004] d..2 24572.681308: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
26363<...>-24041 ( 23968) [004] .... 24572.681309: binder_transaction_received: transaction=1668968
26364  kworker/u16:10-23868 (23868) [006] d..2 24572.681348: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
26365          <idle>-0     (-----) [006] d..1 24572.681350: cpu_idle: state=0 cpu_id=6
26366          <idle>-0     (-----) [003] d.s3 24572.681383: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=006
26367          <idle>-0     (-----) [003] ...1 24572.681393: cpu_idle: state=4294967295 cpu_id=3
26368          <idle>-0     (-----) [006] d.h2 24572.681394: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
26369          <idle>-0     (-----) [006] dnh2 24572.681394: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=006
26370          <idle>-0     (-----) [003] d..1 24572.681396: cpu_idle: state=0 cpu_id=3
26371          <idle>-0     (-----) [006] .n.1 24572.681396: cpu_idle: state=4294967295 cpu_id=6
26372          <idle>-0     (-----) [006] d..2 24572.681399: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26373  kworker/u16:10-23868 (23868) [006] d..2 24572.681405: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
26374          <idle>-0     (-----) [006] d..1 24572.681407: cpu_idle: state=0 cpu_id=6
26375  Binder:23968_C-25014 (23968) [007] d..3 24572.681427: sched_waking: comm=android.bg pid=23992 prio=130 target_cpu=001
26376          <idle>-0     (-----) [000] dnh2 24572.681446: sched_wakeup: comm=android.bg pid=23992 prio=130 target_cpu=000
26377          <idle>-0     (-----) [005] ...1 24572.681447: cpu_idle: state=4294967295 cpu_id=5
26378          <idle>-0     (-----) [005] d..1 24572.681448: cpu_idle: state=0 cpu_id=5
26379          <idle>-0     (-----) [000] .n.1 24572.681450: cpu_idle: state=4294967295 cpu_id=0
26380          <idle>-0     (-----) [000] d..2 24572.681457: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.bg next_pid=23992 next_prio=130
26381<...>-23992 ( 23968) [000] d..2 24572.681521: sched_switch: prev_comm=android.bg prev_pid=23992 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26382          <idle>-0     (-----) [000] d..1 24572.681529: cpu_idle: state=0 cpu_id=0
26383  Binder:23968_C-25014 (23968) [007] .... 24572.681561: binder_transaction: transaction=1668969 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
26384  Binder:23968_C-25014 (23968) [007] d..2 24572.681576: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
26385  Binder:23968_C-25014 (23968) [007] dn.3 24572.681584: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
26386  Binder:23968_C-25014 (23968) [007] d..2 24572.681587: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
26387           <...>-13131 (-----) [007] .... 24572.681590: binder_transaction_received: transaction=1668969
26388<...>-24041 ( 23968) [004] d..3 24572.681685: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
26389<...>-24041 ( 23968) [004] d..4 24572.681693: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
26390          <idle>-0     (-----) [006] .n.1 24572.681697: cpu_idle: state=4294967295 cpu_id=6
26391          <idle>-0     (-----) [006] d..2 24572.681700: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
26392<...>-24073 ( 23968) [006] d..2 24572.681709: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
26393          <idle>-0     (-----) [006] d..1 24572.681711: cpu_idle: state=0 cpu_id=6
26394           <...>-13131 (-----) [007] .... 24572.681790: binder_transaction: transaction=1668973 dest_node=1273782 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x15
26395           <...>-13131 (-----) [007] ...2 24572.681793: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
26396           <...>-13131 (-----) [007] d..4 24572.681795: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=000
26397           <...>-13131 (-----) [007] d..5 24572.681809: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
26398          <idle>-0     (-----) [006] .n.1 24572.681814: cpu_idle: state=4294967295 cpu_id=6
26399          <idle>-0     (-----) [006] d..2 24572.681829: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
26400           <...>-13131 (-----) [007] d..2 24572.681831: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=110
26401<...>-12589 ( 23968) [006] .... 24572.681832: binder_transaction_received: transaction=1668973
26402  Binder:23968_C-25014 (23968) [007] .... 24572.681832: binder_set_priority: proc=23968 thread=25014 old=110 => new=120 desired=120
26403  Binder:23968_C-25014 (23968) [007] d..2 24572.681853: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
26404          <idle>-0     (-----) [007] d..1 24572.681858: cpu_idle: state=0 cpu_id=7
26405<...>-24041 ( 23968) [004] .... 24572.681885: binder_transaction: transaction=1668974 dest_node=1271137 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
26406<...>-24041 ( 23968) [004] d..4 24572.681887: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
26407<...>-24041 ( 23968) [004] d..5 24572.681898: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
26408          <idle>-0     (-----) [005] .n.1 24572.681902: cpu_idle: state=4294967295 cpu_id=5
26409          <idle>-0     (-----) [005] d..2 24572.681906: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
26410  Binder:23896_5-25989 (23896) [005] .... 24572.681908: binder_transaction_received: transaction=1668974
26411  Binder:23896_5-25989 (23896) [005] d..1 24572.681918: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
26412          <idle>-0     (-----) [000] dnh2 24572.681934: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
26413  Binder:23896_5-25989 (23896) [005] d..2 24572.681936: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
26414          <idle>-0     (-----) [000] .n.1 24572.681938: cpu_idle: state=4294967295 cpu_id=0
26415          <idle>-0     (-----) [005] d..1 24572.681939: cpu_idle: state=0 cpu_id=5
26416          <idle>-0     (-----) [000] d..2 24572.681943: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
26417   sfEventThread-23906 (23896) [000] d..2 24572.681979: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26418          <idle>-0     (-----) [000] d..1 24572.681986: cpu_idle: state=0 cpu_id=0
26419<...>-24041 ( 23968) [004] .... 24572.682070: binder_transaction: transaction=1668975 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
26420<...>-24041 ( 23968) [004] ...2 24572.682077: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
26421<...>-24041 ( 23968) [004] d..4 24572.682078: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
26422<...>-24041 ( 23968) [004] dn.5 24572.682087: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
26423<...>-24041 ( 23968) [004] d..2 24572.682090: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
26424  Binder:23896_5-25989 (23896) [004] .... 24572.682092: binder_transaction_received: transaction=1668975
26425<...>-12589 ( 23968) [006] .... 24572.682097: binder_transaction: transaction=1668976 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
26426<...>-12589 ( 23968) [006] d..2 24572.682131: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
26427<...>-12589 ( 23968) [006] d..3 24572.682139: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
26428  Binder:23896_5-25989 (23896) [004] .... 24572.682139: binder_transaction: transaction=1668977 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
26429<...>-12589 ( 23968) [006] .... 24572.682140: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
26430  Binder:23896_5-25989 (23896) [004] .... 24572.682141: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
26431  Binder:23896_5-25989 (23896) [004] d..2 24572.682155: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
26432<...>-24041 ( 23968) [004] .... 24572.682157: binder_transaction_received: transaction=1668977
26433<...>-12589 ( 23968) [006] d..2 24572.682158: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
26434           <...>-13131 (-----) [006] .... 24572.682160: binder_transaction_received: transaction=1668976
26435<...>-24041 ( 23968) [004] d..2 24572.682215: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
26436          <idle>-0     (-----) [004] d..1 24572.682219: cpu_idle: state=0 cpu_id=4
26437           <...>-13131 (-----) [006] .... 24572.682372: binder_transaction: transaction=1668978 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x6a
26438           <...>-13131 (-----) [006] ...2 24572.682374: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
26439           <...>-13131 (-----) [006] d..4 24572.682375: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
26440           <...>-13131 (-----) [006] dn.5 24572.682380: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
26441           <...>-13131 (-----) [006] d..2 24572.682383: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
26442<...>-12589 ( 23968) [006] .... 24572.682384: binder_transaction_received: transaction=1668978
26443<...>-12589 ( 23968) [006] .... 24572.682440: binder_transaction: transaction=1668979 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
26444<...>-12589 ( 23968) [006] .... 24572.682442: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
26445<...>-12589 ( 23968) [006] d..2 24572.682455: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
26446           <...>-13131 (-----) [006] .... 24572.682457: binder_transaction_received: transaction=1668979
26447          <idle>-0     (-----) [003] ...1 24572.682607: cpu_idle: state=4294967295 cpu_id=3
26448          <idle>-0     (-----) [003] d..1 24572.682610: cpu_idle: state=0 cpu_id=3
26449           <...>-13131 (-----) [006] d..2 24572.682614: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
26450          <idle>-0     (-----) [000] dnh2 24572.682633: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
26451          <idle>-0     (-----) [000] .n.1 24572.682636: cpu_idle: state=4294967295 cpu_id=0
26452          <idle>-0     (-----) [000] d..2 24572.682642: 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
26453     logd.writer-563   (  555) [000] d..2 24572.682712: 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
26454          <idle>-0     (-----) [000] d..1 24572.682720: cpu_idle: state=0 cpu_id=0
26455           <...>-13131 (-----) [006] .... 24572.682881: binder_transaction: transaction=1668980 dest_node=1270642 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x1
26456           <...>-13131 (-----) [006] ...2 24572.682883: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
26457           <...>-13131 (-----) [006] d..4 24572.682884: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
26458           <...>-13131 (-----) [006] dn.5 24572.682889: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
26459           <...>-13131 (-----) [006] d..2 24572.682892: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
26460<...>-12589 ( 23968) [006] .... 24572.682893: binder_transaction_received: transaction=1668980
26461<...>-12589 ( 23968) [006] .... 24572.682968: binder_transaction: transaction=1668981 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
26462<...>-12589 ( 23968) [006] .... 24572.682970: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
26463<...>-12589 ( 23968) [006] d..2 24572.682983: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
26464           <...>-13131 (-----) [006] .... 24572.682985: binder_transaction_received: transaction=1668981
26465           <...>-13131 (-----) [006] .... 24572.683046: binder_transaction: transaction=1668982 dest_node=1271174 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x47
26466           <...>-13131 (-----) [006] ...2 24572.683047: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
26467           <...>-13131 (-----) [006] d..4 24572.683048: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
26468           <...>-13131 (-----) [006] dn.5 24572.683052: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
26469           <...>-13131 (-----) [006] d..2 24572.683055: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
26470<...>-12589 ( 23968) [006] .... 24572.683057: binder_transaction_received: transaction=1668982
26471<...>-12589 ( 23968) [006] .... 24572.683107: binder_transaction: transaction=1668983 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
26472<...>-12589 ( 23968) [006] .... 24572.683109: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
26473<...>-12589 ( 23968) [006] d..2 24572.683123: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
26474           <...>-13131 (-----) [006] .... 24572.683125: binder_transaction_received: transaction=1668983
26475           <...>-13131 (-----) [006] .... 24572.683464: binder_transaction: transaction=1668984 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x3e
26476           <...>-13131 (-----) [006] ...2 24572.683467: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
26477           <...>-13131 (-----) [006] d..4 24572.683468: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
26478           <...>-13131 (-----) [006] dn.5 24572.683473: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
26479           <...>-13131 (-----) [006] d..2 24572.683476: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
26480<...>-12589 ( 23968) [006] .... 24572.683478: binder_transaction_received: transaction=1668984
26481<...>-12589 ( 23968) [006] d..3 24572.683580: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=006
26482<...>-12589 ( 23968) [006] d..4 24572.683593: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=007
26483          <idle>-0     (-----) [007] .n.1 24572.683598: cpu_idle: state=4294967295 cpu_id=7
26484          <idle>-0     (-----) [007] d..2 24572.683602: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
26485<...>-12589 ( 23968) [006] .... 24572.683616: binder_transaction: transaction=1668985 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
26486<...>-12589 ( 23968) [006] .... 24572.683618: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
26487<...>-12589 ( 23968) [006] d..2 24572.683633: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
26488           <...>-13131 (-----) [006] .... 24572.683635: binder_transaction_received: transaction=1668985
26489<...>-23993 ( 23968) [007] .... 24572.683658: binder_transaction: transaction=1668986 dest_node=1307515 dest_proc=24827 dest_thread=0 reply=0 flags=0x11 code=0xd
26490<...>-23993 ( 23968) [007] d..4 24572.683664: sched_waking: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=007
26491<...>-23993 ( 23968) [007] d..5 24572.683672: sched_wakeup: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=007
26492<...>-23993 ( 23968) [007] .... 24572.683691: binder_transaction: transaction=1668987 dest_node=1276465 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xd
26493<...>-23993 ( 23968) [007] d..4 24572.683695: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
26494<...>-23993 ( 23968) [007] d..5 24572.683700: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
26495<...>-23993 ( 23968) [007] d..2 24572.683719: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
26496<...>-24376 ( 24151) [007] .... 24572.683723: binder_transaction_received: transaction=1668987
26497           <...>-13131 (-----) [006] .... 24572.683731: binder_transaction: transaction=1668988 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x27
26498           <...>-13131 (-----) [006] ...2 24572.683733: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
26499           <...>-13131 (-----) [006] d..4 24572.683734: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
26500           <...>-13131 (-----) [006] dn.5 24572.683738: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
26501           <...>-13131 (-----) [006] d..2 24572.683741: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
26502<...>-12589 ( 23968) [006] .... 24572.683743: binder_transaction_received: transaction=1668988
26503<...>-24376 ( 24151) [007] d..2 24572.683795: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=Binder:24827_4 next_pid=25554 next_prio=120
26504<...>-25554 ( 24827) [007] .... 24572.683799: binder_transaction_received: transaction=1668986
26505<...>-12589 ( 23968) [006] .... 24572.683811: binder_transaction: transaction=1668989 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
26506<...>-12589 ( 23968) [006] .... 24572.683813: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
26507<...>-12589 ( 23968) [006] d..2 24572.683826: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
26508           <...>-13131 (-----) [006] .... 24572.683829: binder_transaction_received: transaction=1668989
26509           <...>-13131 (-----) [006] .... 24572.683850: binder_transaction: transaction=1668990 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x27
26510           <...>-13131 (-----) [006] ...2 24572.683852: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
26511           <...>-13131 (-----) [006] d..4 24572.683852: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
26512           <...>-13131 (-----) [006] dn.5 24572.683856: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
26513           <...>-13131 (-----) [006] d..2 24572.683859: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
26514<...>-12589 ( 23968) [006] .... 24572.683860: binder_transaction_received: transaction=1668990
26515<...>-25554 ( 24827) [007] d..2 24572.683883: sched_switch: prev_comm=Binder:24827_4 prev_pid=25554 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
26516          <idle>-0     (-----) [007] d..1 24572.683887: cpu_idle: state=0 cpu_id=7
26517<...>-12589 ( 23968) [006] .... 24572.683912: binder_transaction: transaction=1668991 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
26518<...>-12589 ( 23968) [006] .... 24572.683914: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
26519<...>-12589 ( 23968) [006] d..2 24572.683927: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
26520           <...>-13131 (-----) [006] .... 24572.683929: binder_transaction_received: transaction=1668991
26521           <...>-13131 (-----) [006] .... 24572.683986: binder_transaction: transaction=1668992 dest_node=1271390 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x3
26522           <...>-13131 (-----) [006] ...2 24572.684034: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
26523           <...>-13131 (-----) [006] d..4 24572.684035: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
26524           <...>-13131 (-----) [006] dn.5 24572.684040: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
26525           <...>-13131 (-----) [006] d..2 24572.684043: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
26526<...>-12589 ( 23968) [006] .... 24572.684044: binder_transaction_received: transaction=1668992
26527<...>-12589 ( 23968) [006] .... 24572.684158: binder_transaction: transaction=1668995 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
26528<...>-12589 ( 23968) [006] .... 24572.684160: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
26529<...>-12589 ( 23968) [006] d..2 24572.684174: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
26530           <...>-13131 (-----) [006] .... 24572.684177: binder_transaction_received: transaction=1668995
26531          <idle>-0     (-----) [000] ...1 24572.684210: cpu_idle: state=4294967295 cpu_id=0
26532          <idle>-0     (-----) [000] d..1 24572.684213: cpu_idle: state=0 cpu_id=0
26533          <idle>-0     (-----) [004] d.s2 24572.684225: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
26534          <idle>-0     (-----) [004] dns3 24572.684231: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
26535          <idle>-0     (-----) [004] .n.1 24572.684236: cpu_idle: state=4294967295 cpu_id=4
26536          <idle>-0     (-----) [004] d..2 24572.684239: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
26537     rcu_preempt-7     (    7) [004] d..2 24572.684245: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=004
26538     rcu_preempt-7     (    7) [004] d..3 24572.684255: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=005
26539          <idle>-0     (-----) [005] .n.1 24572.684260: cpu_idle: state=4294967295 cpu_id=5
26540          <idle>-0     (-----) [005] d..2 24572.684265: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
26541     rcu_preempt-7     (    7) [004] d..2 24572.684266: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
26542          <idle>-0     (-----) [004] d..1 24572.684268: cpu_idle: state=0 cpu_id=4
26543         rcuop/6-61    (   61) [005] d..2 24572.684283: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
26544          <idle>-0     (-----) [005] d..1 24572.684285: cpu_idle: state=0 cpu_id=5
26545          <idle>-0     (-----) [000] d.h5 24572.689381: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
26546          <idle>-0     (-----) [004] dnh2 24572.689397: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
26547          <idle>-0     (-----) [004] .n.1 24572.689400: cpu_idle: state=4294967295 cpu_id=4
26548          <idle>-0     (-----) [000] d.h7 24572.689402: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
26549          <idle>-0     (-----) [004] d..2 24572.689403: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
26550          <idle>-0     (-----) [000] dnh8 24572.689411: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
26551  crtc_event:111-254   (  254) [004] d..2 24572.689416: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
26552          <idle>-0     (-----) [004] d..1 24572.689418: cpu_idle: state=0 cpu_id=4
26553          <idle>-0     (-----) [000] dnh9 24572.689424: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
26554          <idle>-0     (-----) [000] dnh7 24572.689436: sched_waking: comm=SDM_EventThread pid=624 prio=111 target_cpu=006
26555          <idle>-0     (-----) [004] dnh2 24572.689437: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
26556          <idle>-0     (-----) [004] .n.1 24572.689439: cpu_idle: state=4294967295 cpu_id=4
26557          <idle>-0     (-----) [004] d..2 24572.689441: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
26558          <idle>-0     (-----) [005] dnh2 24572.689460: sched_wakeup: comm=SDM_EventThread pid=624 prio=111 target_cpu=005
26559          <idle>-0     (-----) [005] .n.1 24572.689462: cpu_idle: state=4294967295 cpu_id=5
26560 crtc_commit:111-253   (  253) [004] d..2 24572.689464: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
26561          <idle>-0     (-----) [000] .n.1 24572.689465: cpu_idle: state=4294967295 cpu_id=0
26562          <idle>-0     (-----) [005] d..2 24572.689465: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=624 next_prio=111
26563          <idle>-0     (-----) [004] d..1 24572.689466: cpu_idle: state=0 cpu_id=4
26564          <idle>-0     (-----) [000] d..2 24572.689474: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
26565     kworker/0:1-13012 (13012) [000] d..2 24572.689495: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26566 SDM_EventThread-624   (  598) [005] ...1 24572.689497: tracing_mark_write: B|598|HWCCallbacks::Vsync::
26567          <idle>-0     (-----) [000] d..1 24572.689501: cpu_idle: state=0 cpu_id=0
26568 SDM_EventThread-624   (  598) [005] ...1 24572.689504: tracing_mark_write: B|598|HIDL::IComposerCallback::onVsync::client
26569 SDM_EventThread-624   (  598) [005] ...1 24572.689505: tracing_mark_write: E|598
26570 SDM_EventThread-624   (  598) [005] .... 24572.689523: binder_transaction: transaction=1668996 dest_node=1270370 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
26571 SDM_EventThread-624   (  598) [005] d..4 24572.689527: sched_waking: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=000
26572          <idle>-0     (-----) [000] dnh2 24572.689544: sched_wakeup: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=000
26573 SDM_EventThread-624   (  598) [005] ...1 24572.689547: tracing_mark_write: E|598
26574          <idle>-0     (-----) [000] .n.1 24572.689548: cpu_idle: state=4294967295 cpu_id=0
26575          <idle>-0     (-----) [000] d..2 24572.689553: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:23896_ next_pid=23923 next_prio=120
26576 SDM_EventThread-624   (  598) [005] d..4 24572.689554: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
26577 HwBinder:23896_-23923 (23896) [000] .... 24572.689560: binder_transaction_received: transaction=1668996
26578 SDM_EventThread-624   (  598) [005] d..5 24572.689561: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
26579          <idle>-0     (-----) [004] .n.1 24572.689565: cpu_idle: state=4294967295 cpu_id=4
26580          <idle>-0     (-----) [004] d..2 24572.689567: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
26581 crtc_commit:111-253   (  253) [004] d..2 24572.689573: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
26582 SDM_EventThread-624   (  598) [005] d..2 24572.689574: sched_switch: prev_comm=SDM_EventThread prev_pid=624 prev_prio=111 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
26583          <idle>-0     (-----) [004] d..1 24572.689574: cpu_idle: state=0 cpu_id=4
26584          <idle>-0     (-----) [005] d..1 24572.689578: cpu_idle: state=0 cpu_id=5
26585 HwBinder:23896_-23923 (23896) [000] ...1 24572.689598: tracing_mark_write: B|23896|HIDL::IComposerCallback::onVsync::server
26586 HwBinder:23896_-23923 (23896) [000] ...1 24572.689615: tracing_mark_write: E|23896
26587 HwBinder:23896_-23923 (23896) [000] d..2 24572.689648: sched_switch: prev_comm=HwBinder:23896_ prev_pid=23923 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26588          <idle>-0     (-----) [000] d..1 24572.689656: cpu_idle: state=0 cpu_id=0
26589          <idle>-0     (-----) [004] d.s2 24572.690890: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
26590          <idle>-0     (-----) [004] dns3 24572.690893: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
26591           <...>-13131 (-----) [006] d.s2 24572.690895: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=006
26592          <idle>-0     (-----) [004] .n.1 24572.690896: cpu_idle: state=4294967295 cpu_id=4
26593          <idle>-0     (-----) [004] d..2 24572.690899: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
26594     rcu_preempt-7     (    7) [004] d..2 24572.690907: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
26595           <...>-13131 (-----) [006] d.s3 24572.690909: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=005
26596          <idle>-0     (-----) [004] d..1 24572.690909: cpu_idle: state=0 cpu_id=4
26597           <...>-13131 (-----) [006] d.s2 24572.690911: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
26598          <idle>-0     (-----) [005] .n.1 24572.690913: cpu_idle: state=4294967295 cpu_id=5
26599           <...>-13131 (-----) [006] d.s3 24572.690917: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
26600          <idle>-0     (-----) [005] d..2 24572.690918: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26601          <idle>-0     (-----) [004] .n.1 24572.690921: cpu_idle: state=4294967295 cpu_id=4
26602          <idle>-0     (-----) [004] d..2 24572.690923: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
26603     rcu_preempt-7     (    7) [004] d..2 24572.690925: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=006
26604     rcu_preempt-7     (    7) [004] d..3 24572.690935: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=007
26605     rcu_preempt-7     (    7) [004] d..2 24572.690936: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=004
26606          <idle>-0     (-----) [007] .n.1 24572.690940: cpu_idle: state=4294967295 cpu_id=7
26607     rcu_preempt-7     (    7) [004] d..3 24572.690943: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=007
26608          <idle>-0     (-----) [007] d..2 24572.690946: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/4 next_pid=45 next_prio=120
26609     rcu_preempt-7     (    7) [004] d..2 24572.690948: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=007
26610     rcu_preempt-7     (    7) [004] d..3 24572.690952: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=007
26611     rcu_preempt-7     (    7) [004] d..2 24572.690957: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
26612          <idle>-0     (-----) [004] d..1 24572.690959: cpu_idle: state=0 cpu_id=4
26613         rcuop/4-45    (   45) [007] d..2 24572.690964: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
26614         rcuop/0-10    (   10) [007] d..2 24572.690967: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=005
26615         rcuop/0-10    (   10) [007] d..3 24572.690980: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
26616          <idle>-0     (-----) [004] .n.1 24572.690984: cpu_idle: state=4294967295 cpu_id=4
26617          <idle>-0     (-----) [004] d..2 24572.690987: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
26618         rcuop/1-21    (   21) [004] d..2 24572.690994: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
26619          <idle>-0     (-----) [004] d..1 24572.690995: cpu_idle: state=0 cpu_id=4
26620         rcuop/0-10    (   10) [007] d..2 24572.690998: 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
26621         rcuop/2-29    (   29) [007] d..2 24572.691006: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
26622          <idle>-0     (-----) [007] d..1 24572.691008: cpu_idle: state=0 cpu_id=7
26623  kworker/u16:10-23868 (23868) [005] d..2 24572.691029: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
26624          <idle>-0     (-----) [005] d..1 24572.691032: cpu_idle: state=0 cpu_id=5
26625          <idle>-0     (-----) [003] d.s3 24572.691060: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=005
26626          <idle>-0     (-----) [003] ...1 24572.691077: cpu_idle: state=4294967295 cpu_id=3
26627          <idle>-0     (-----) [004] d.h2 24572.691078: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
26628          <idle>-0     (-----) [004] dnh2 24572.691080: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
26629          <idle>-0     (-----) [003] d..1 24572.691081: cpu_idle: state=0 cpu_id=3
26630          <idle>-0     (-----) [004] .n.1 24572.691082: cpu_idle: state=4294967295 cpu_id=4
26631          <idle>-0     (-----) [004] d..2 24572.691084: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26632          <idle>-0     (-----) [000] ...1 24572.691116: cpu_idle: state=4294967295 cpu_id=0
26633          <idle>-0     (-----) [000] d..1 24572.691119: cpu_idle: state=0 cpu_id=0
26634  kworker/u16:10-23868 (23868) [004] d..2 24572.691161: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
26635          <idle>-0     (-----) [004] d..1 24572.691163: cpu_idle: state=0 cpu_id=4
26636          <idle>-0     (-----) [004] d.h2 24572.691510: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=004
26637          <idle>-0     (-----) [004] dnh3 24572.691514: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=004
26638          <idle>-0     (-----) [004] .n.1 24572.691517: cpu_idle: state=4294967295 cpu_id=4
26639          <idle>-0     (-----) [004] d..2 24572.691519: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
26640        DispSync-23904 (23896) [004] d..1 24572.691533: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
26641          <idle>-0     (-----) [003] dnh2 24572.691548: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
26642        DispSync-23904 (23896) [004] d..2 24572.691552: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
26643          <idle>-0     (-----) [003] .n.1 24572.691552: cpu_idle: state=4294967295 cpu_id=3
26644          <idle>-0     (-----) [004] d..1 24572.691555: cpu_idle: state=0 cpu_id=4
26645          <idle>-0     (-----) [003] d..2 24572.691558: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
26646  appEventThread-23905 (23896) [003] d..3 24572.691609: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=004
26647          <idle>-0     (-----) [004] dnh2 24572.691623: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=004
26648          <idle>-0     (-----) [004] .n.1 24572.691625: cpu_idle: state=4294967295 cpu_id=4
26649          <idle>-0     (-----) [004] d..2 24572.691628: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
26650  appEventThread-23905 (23896) [003] d..3 24572.691629: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
26651          <idle>-0     (-----) [007] dnh2 24572.691648: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
26652          <idle>-0     (-----) [007] .n.1 24572.691650: cpu_idle: state=4294967295 cpu_id=7
26653          <idle>-0     (-----) [007] d..2 24572.691653: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
26654  appEventThread-23905 (23896) [003] d..2 24572.691663: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
26655          <idle>-0     (-----) [003] d..1 24572.691671: cpu_idle: state=0 cpu_id=3
26656           <...>-13131 (-----) [006] d..2 24572.691729: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
26657          <idle>-0     (-----) [000] dnh2 24572.691745: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
26658          <idle>-0     (-----) [000] .n.1 24572.691749: cpu_idle: state=4294967295 cpu_id=0
26659          <idle>-0     (-----) [000] d..2 24572.691755: 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
26660<...>-24151 ( 24151) [007] .... 24572.691811: binder_transaction: transaction=1668997 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
26661     logd.writer-563   (  555) [000] d..2 24572.691815: 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
26662<...>-24151 ( 24151) [007] d..4 24572.691817: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
26663          <idle>-0     (-----) [000] d..1 24572.691821: cpu_idle: state=0 cpu_id=0
26664<...>-24151 ( 24151) [007] d..5 24572.691829: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
26665           <...>-13131 (-----) [006] .... 24572.691832: binder_transaction: transaction=1668998 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x3f
26666          <idle>-0     (-----) [005] .n.1 24572.691833: cpu_idle: state=4294967295 cpu_id=5
26667          <idle>-0     (-----) [005] d..2 24572.691836: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
26668  Binder:23896_5-25989 (23896) [005] .... 24572.691840: binder_transaction_received: transaction=1668997
26669           <...>-13131 (-----) [006] ...2 24572.691840: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
26670           <...>-13131 (-----) [006] d..4 24572.691842: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
26671           <...>-13131 (-----) [006] dn.5 24572.691848: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
26672           <...>-13131 (-----) [006] d..2 24572.691852: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
26673<...>-12589 ( 23968) [006] .... 24572.691855: binder_transaction_received: transaction=1668998
26674  Binder:23896_5-25989 (23896) [005] d..1 24572.691856: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
26675          <idle>-0     (-----) [003] dnh2 24572.691870: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
26676          <idle>-0     (-----) [003] .n.1 24572.691874: cpu_idle: state=4294967295 cpu_id=3
26677  Binder:23896_5-25989 (23896) [005] d..2 24572.691877: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
26678          <idle>-0     (-----) [003] d..2 24572.691878: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
26679          <idle>-0     (-----) [005] d..1 24572.691880: cpu_idle: state=0 cpu_id=5
26680  appEventThread-23905 (23896) [003] d..2 24572.691902: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
26681          <idle>-0     (-----) [003] d..1 24572.691908: cpu_idle: state=0 cpu_id=3
26682<...>-12589 ( 23968) [006] .... 24572.691987: binder_transaction: transaction=1668999 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
26683<...>-12589 ( 23968) [006] .... 24572.691990: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
26684<...>-12589 ( 23968) [006] d..2 24572.692011: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
26685           <...>-13131 (-----) [006] .... 24572.692013: binder_transaction_received: transaction=1668999
26686<...>-24151 ( 24151) [007] d..3 24572.692025: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
26687<...>-24151 ( 24151) [007] d..4 24572.692032: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
26688<...>-24151 ( 24151) [007] d..2 24572.692039: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
26689           <...>-13131 (-----) [006] d..2 24572.692080: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
26690          <idle>-0     (-----) [000] dnh2 24572.692094: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
26691          <idle>-0     (-----) [000] .n.1 24572.692098: cpu_idle: state=4294967295 cpu_id=0
26692          <idle>-0     (-----) [000] d..2 24572.692103: 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
26693     logd.writer-563   (  555) [000] d..2 24572.692158: 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
26694          <idle>-0     (-----) [000] d..1 24572.692164: cpu_idle: state=0 cpu_id=0
26695    RenderThread-24437 (24151) [007] d..2 24572.692209: clk_enable: gcc_gpu_memnoc_gfx_clk
26696    RenderThread-24437 (24151) [007] d..2 24572.692231: clk_disable: gcc_gpu_memnoc_gfx_clk
26697           <...>-13131 (-----) [006] .... 24572.692269: binder_transaction: transaction=1669000 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x6a
26698           <...>-13131 (-----) [006] ...2 24572.692274: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
26699           <...>-13131 (-----) [006] d..4 24572.692275: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
26700           <...>-13131 (-----) [006] dn.5 24572.692279: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
26701           <...>-13131 (-----) [006] d..2 24572.692282: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
26702<...>-12589 ( 23968) [006] .... 24572.692284: binder_transaction_received: transaction=1669000
26703<...>-24041 ( 23968) [004] d..3 24572.692291: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=005
26704<...>-24041 ( 23968) [004] d..4 24572.692301: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=005
26705          <idle>-0     (-----) [005] .n.1 24572.692305: cpu_idle: state=4294967295 cpu_id=5
26706          <idle>-0     (-----) [005] d..2 24572.692308: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
26707<...>-24003 ( 23968) [005] d..2 24572.692338: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
26708          <idle>-0     (-----) [005] d..1 24572.692343: cpu_idle: state=0 cpu_id=5
26709<...>-12589 ( 23968) [006] .... 24572.692364: binder_transaction: transaction=1669001 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
26710<...>-12589 ( 23968) [006] .... 24572.692366: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
26711<...>-12589 ( 23968) [006] d..2 24572.692382: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
26712           <...>-13131 (-----) [006] .... 24572.692384: binder_transaction_received: transaction=1669001
26713<...>-24041 ( 23968) [004] .... 24572.692416: binder_transaction: transaction=1669002 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
26714<...>-24041 ( 23968) [004] d..4 24572.692420: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
26715<...>-24041 ( 23968) [004] d..5 24572.692427: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
26716           <...>-13131 (-----) [006] .... 24572.692466: binder_transaction: transaction=1669003 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x3f
26717           <...>-13131 (-----) [006] ...2 24572.692470: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
26718           <...>-13131 (-----) [006] d..4 24572.692471: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
26719           <...>-13131 (-----) [006] dn.5 24572.692476: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
26720           <...>-13131 (-----) [006] d..2 24572.692479: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
26721<...>-12589 ( 23968) [006] .... 24572.692481: binder_transaction_received: transaction=1669003
26722<...>-24041 ( 23968) [004] d..3 24572.692496: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=007
26723<...>-24041 ( 23968) [004] d..4 24572.692502: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=007
26724    RenderThread-24437 (24151) [007] d..2 24572.692513: clk_enable: gcc_gpu_memnoc_gfx_clk
26725    RenderThread-24437 (24151) [007] d..2 24572.692524: clk_disable: gcc_gpu_memnoc_gfx_clk
26726<...>-12589 ( 23968) [006] .... 24572.692546: binder_transaction: transaction=1669004 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
26727<...>-12589 ( 23968) [006] .... 24572.692548: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
26728<...>-12589 ( 23968) [006] d..2 24572.692562: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
26729           <...>-13131 (-----) [006] .... 24572.692565: binder_transaction_received: transaction=1669004
26730<...>-24041 ( 23968) [004] .... 24572.692641: binder_transaction: transaction=1669005 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
26731           <...>-13131 (-----) [006] d..2 24572.692642: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
26732<...>-24041 ( 23968) [004] ...2 24572.692644: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
26733<...>-24041 ( 23968) [004] d..4 24572.692645: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
26734<...>-24041 ( 23968) [004] dn.5 24572.692653: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
26735<...>-24041 ( 23968) [004] d..2 24572.692656: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
26736          <idle>-0     (-----) [000] dnh2 24572.692657: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
26737  Binder:23896_5-25989 (23896) [004] .... 24572.692659: binder_transaction_received: transaction=1669005
26738          <idle>-0     (-----) [000] .n.1 24572.692660: cpu_idle: state=4294967295 cpu_id=0
26739          <idle>-0     (-----) [000] d..2 24572.692666: 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
26740  Binder:23896_5-25989 (23896) [004] .... 24572.692683: binder_transaction: transaction=1669006 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
26741  Binder:23896_5-25989 (23896) [004] .... 24572.692690: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
26742           <...>-13131 (-----) [006] d..2 24572.692696: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
26743     logd.writer-563   (  555) [000] d..2 24572.692700: 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
26744  Binder:23896_5-25989 (23896) [004] d..2 24572.692702: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
26745<...>-24041 ( 23968) [004] .... 24572.692703: binder_transaction_received: transaction=1669006
26746          <idle>-0     (-----) [000] d..1 24572.692706: cpu_idle: state=0 cpu_id=0
26747          <idle>-0     (-----) [000] dnh2 24572.692713: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
26748          <idle>-0     (-----) [000] .n.1 24572.692717: cpu_idle: state=4294967295 cpu_id=0
26749          <idle>-0     (-----) [000] d..2 24572.692722: 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
26750    RenderThread-24437 (24151) [007] d..2 24572.692774: clk_enable: gcc_gpu_memnoc_gfx_clk
26751     logd.writer-563   (  555) [000] d..2 24572.692775: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=android.ui next_pid=23994 next_prio=118
26752    RenderThread-24437 (24151) [007] d..2 24572.692786: clk_disable: gcc_gpu_memnoc_gfx_clk
26753<...>-23994 ( 23968) [000] d.h4 24572.692822: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
26754<...>-23994 ( 23968) [000] d.h4 24572.692839: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
26755          <idle>-0     (-----) [005] dnh2 24572.692843: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
26756          <idle>-0     (-----) [005] .n.1 24572.692846: cpu_idle: state=4294967295 cpu_id=5
26757          <idle>-0     (-----) [005] d..2 24572.692849: 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
26758<...>-23994 ( 23968) [000] d.h5 24572.692849: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
26759          <idle>-0     (-----) [002] .n.1 24572.692854: cpu_idle: state=4294967295 cpu_id=2
26760         sugov:4-560   (  560) [005] d..2 24572.692857: 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
26761          <idle>-0     (-----) [005] d..1 24572.692859: cpu_idle: state=0 cpu_id=5
26762          <idle>-0     (-----) [002] d..2 24572.692861: 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
26763         sugov:0-559   (  559) [002] d..2 24572.692878: 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
26764          <idle>-0     (-----) [002] d..1 24572.692883: cpu_idle: state=0 cpu_id=2
26765<...>-23994 ( 23968) [000] d..3 24572.692911: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=007
26766    RenderThread-24437 (24151) [007] d.h2 24572.692929: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=007
26767    RenderThread-24437 (24151) [007] d..2 24572.692937: clk_enable: gcc_gpu_memnoc_gfx_clk
26768    RenderThread-24437 (24151) [007] d..2 24572.692948: clk_disable: gcc_gpu_memnoc_gfx_clk
26769<...>-24041 ( 23968) [004] d..3 24572.692953: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
26770<...>-23994 ( 23968) [000] d..2 24572.692971: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
26771<...>-24041 ( 23968) [004] d..4 24572.692973: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=007
26772    RenderThread-24437 (24151) [007] d..2 24572.692997: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
26773<...>-24073 ( 23968) [007] d..2 24572.693015: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
26774<...>-24376 ( 24151) [007] .... 24572.693018: binder_transaction_received: transaction=1669002
26775<...>-23968 ( 23968) [000] .... 24572.693052: binder_transaction: transaction=1669007 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
26776<...>-24376 ( 24151) [007] d..4 24572.693074: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=007
26777<...>-24376 ( 24151) [007] d..5 24572.693081: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=007
26778<...>-24376 ( 24151) [007] .... 24572.693084: binder_transaction_received: transaction=1669007
26779<...>-24041 ( 23968) [004] .... 24572.693097: binder_transaction: transaction=1669008 dest_node=1344550 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x1
26780<...>-24041 ( 23968) [004] ...2 24572.693102: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
26781<...>-24041 ( 23968) [004] d..4 24572.693103: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
26782<...>-24041 ( 23968) [004] dn.5 24572.693107: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
26783<...>-23968 ( 23968) [000] d..2 24572.693109: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
26784<...>-24041 ( 23968) [004] d..2 24572.693110: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
26785  Binder:23896_5-25989 (23896) [004] .... 24572.693112: binder_transaction_received: transaction=1669008
26786  Binder:23896_5-25989 (23896) [004] d..3 24572.693134: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
26787<...>-24376 ( 24151) [007] d..2 24572.693138: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
26788          <idle>-0     (-----) [003] ...1 24572.693141: cpu_idle: state=4294967295 cpu_id=3
26789  Binder:23896_5-25989 (23896) [004] d..2 24572.693146: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
26790          <idle>-0     (-----) [003] dnh3 24572.693147: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
26791<...>-24177 ( 24151) [000] d..2 24572.693148: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26792<...>-24041 ( 23968) [004] d..2 24572.693153: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
26793          <idle>-0     (-----) [003] d..2 24572.693154: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
26794          <idle>-0     (-----) [000] d..1 24572.693157: cpu_idle: state=0 cpu_id=0
26795          <idle>-0     (-----) [004] d..1 24572.693160: cpu_idle: state=0 cpu_id=4
26796    RenderThread-24437 (24151) [007] d..2 24572.693169: clk_enable: gcc_gpu_memnoc_gfx_clk
26797    RenderThread-24437 (24151) [007] d..2 24572.693182: clk_disable: gcc_gpu_memnoc_gfx_clk
26798  surfaceflinger-23896 (23896) [003] ...1 24572.693276: tracing_mark_write: B|23896|HIDL::IComposerClient::getActiveConfig::client
26799  surfaceflinger-23896 (23896) [003] ...1 24572.693280: tracing_mark_write: E|23896
26800  surfaceflinger-23896 (23896) [003] .... 24572.693303: binder_transaction: transaction=1669009 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x7
26801  surfaceflinger-23896 (23896) [003] ...2 24572.693310: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
26802  surfaceflinger-23896 (23896) [003] d..4 24572.693318: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
26803    RenderThread-24437 (24151) [007] d..2 24572.693328: clk_enable: gcc_gpu_memnoc_gfx_clk
26804          <idle>-0     (-----) [004] dnh2 24572.693334: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
26805          <idle>-0     (-----) [004] .n.1 24572.693336: cpu_idle: state=4294967295 cpu_id=4
26806    RenderThread-24437 (24151) [007] d..2 24572.693339: clk_disable: gcc_gpu_memnoc_gfx_clk
26807          <idle>-0     (-----) [004] d..2 24572.693340: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
26808  surfaceflinger-23896 (23896) [003] d..2 24572.693342: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
26809  HwBinder:598_3-633   (  598) [004] .... 24572.693344: binder_transaction_received: transaction=1669009
26810          <idle>-0     (-----) [003] d..1 24572.693349: cpu_idle: state=0 cpu_id=3
26811  HwBinder:598_3-633   (  598) [004] ...1 24572.693368: tracing_mark_write: B|598|HIDL::IComposerClient::getActiveConfig::server
26812           <...>-13131 (-----) [006] .... 24572.693383: binder_transaction: transaction=1669010 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x44
26813  HwBinder:598_3-633   (  598) [004] ...1 24572.693386: tracing_mark_write: E|598
26814           <...>-13131 (-----) [006] ...2 24572.693387: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
26815           <...>-13131 (-----) [006] d..4 24572.693388: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
26816  HwBinder:598_3-633   (  598) [004] .... 24572.693391: binder_transaction: transaction=1669011 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
26817           <...>-13131 (-----) [006] dn.5 24572.693393: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
26818  HwBinder:598_3-633   (  598) [004] d..2 24572.693393: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
26819           <...>-13131 (-----) [006] d..2 24572.693396: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
26820<...>-12589 ( 23968) [006] .... 24572.693398: binder_transaction_received: transaction=1669010
26821  HwBinder:598_3-633   (  598) [004] .... 24572.693400: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
26822          <idle>-0     (-----) [003] dnh2 24572.693407: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
26823          <idle>-0     (-----) [003] .n.1 24572.693411: cpu_idle: state=4294967295 cpu_id=3
26824          <idle>-0     (-----) [003] d..2 24572.693415: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
26825  HwBinder:598_3-633   (  598) [004] d..2 24572.693416: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
26826  surfaceflinger-23896 (23896) [003] .... 24572.693419: binder_transaction_received: transaction=1669011
26827          <idle>-0     (-----) [004] d..1 24572.693420: cpu_idle: state=0 cpu_id=4
26828<...>-12589 ( 23968) [006] .... 24572.693472: binder_transaction: transaction=1669012 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
26829<...>-12589 ( 23968) [006] .... 24572.693474: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
26830    RenderThread-24437 (24151) [007] d..2 24572.693485: clk_enable: gcc_gpu_memnoc_gfx_clk
26831<...>-12589 ( 23968) [006] d..2 24572.693489: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
26832           <...>-13131 (-----) [006] .... 24572.693491: binder_transaction_received: transaction=1669012
26833    RenderThread-24437 (24151) [007] d..2 24572.693496: clk_disable: gcc_gpu_memnoc_gfx_clk
26834  surfaceflinger-23896 (23896) [003] d..1 24572.693529: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
26835          <idle>-0     (-----) [004] dnh2 24572.693543: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
26836          <idle>-0     (-----) [004] .n.1 24572.693545: cpu_idle: state=4294967295 cpu_id=4
26837          <idle>-0     (-----) [004] d..2 24572.693548: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
26838  surfaceflinger-23896 (23896) [003] d..2 24572.693555: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
26839  Binder:23896_5-25989 (23896) [004] .... 24572.693561: binder_transaction: transaction=1669013 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
26840          <idle>-0     (-----) [003] d..1 24572.693563: cpu_idle: state=0 cpu_id=3
26841           <...>-13131 (-----) [006] d..2 24572.693565: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
26842          <idle>-0     (-----) [000] dnh2 24572.693579: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
26843          <idle>-0     (-----) [000] .n.1 24572.693583: cpu_idle: state=4294967295 cpu_id=0
26844          <idle>-0     (-----) [000] d..2 24572.693589: 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
26845     logd.writer-563   (  555) [000] d..2 24572.693653: 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
26846    RenderThread-24437 (24151) [007] d..2 24572.693655: clk_enable: gcc_gpu_memnoc_gfx_clk
26847          <idle>-0     (-----) [000] d..1 24572.693661: cpu_idle: state=0 cpu_id=0
26848    RenderThread-24437 (24151) [007] d..2 24572.693665: clk_disable: gcc_gpu_memnoc_gfx_clk
26849  Binder:23896_5-25989 (23896) [004] d..2 24572.693674: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=004
26850  Binder:23896_5-25989 (23896) [004] d..3 24572.693678: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=004
26851  Binder:23896_5-25989 (23896) [004] .... 24572.693678: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
26852  Binder:23896_5-25989 (23896) [004] d..2 24572.693694: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
26853<...>-24041 ( 23968) [004] .... 24572.693696: binder_transaction_received: transaction=1669013
26854<...>-24041 ( 23968) [004] .... 24572.693719: binder_transaction: transaction=1669018 dest_node=1669016 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
26855<...>-24041 ( 23968) [004] ...2 24572.693721: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
26856<...>-24041 ( 23968) [004] d..4 24572.693721: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
26857<...>-24041 ( 23968) [004] dn.5 24572.693725: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
26858<...>-24041 ( 23968) [004] d..2 24572.693728: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
26859  Binder:23896_5-25989 (23896) [004] .... 24572.693729: binder_transaction_received: transaction=1669018
26860  Binder:23896_5-25989 (23896) [004] .... 24572.693734: binder_transaction: transaction=1669019 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x8 code=0x0
26861  Binder:23896_5-25989 (23896) [004] .... 24572.693735: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
26862  Binder:23896_5-25989 (23896) [004] d..2 24572.693743: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
26863<...>-24041 ( 23968) [004] .... 24572.693745: binder_transaction_received: transaction=1669019
26864           <...>-13131 (-----) [006] .... 24572.693770: binder_transaction: transaction=1669020 dest_node=1271174 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x4
26865           <...>-13131 (-----) [006] ...2 24572.693821: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
26866           <...>-13131 (-----) [006] d..4 24572.693822: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
26867           <...>-13131 (-----) [006] dn.5 24572.693826: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
26868           <...>-13131 (-----) [006] d..2 24572.693829: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
26869<...>-12589 ( 23968) [006] .... 24572.693831: binder_transaction_received: transaction=1669020
26870    RenderThread-24437 (24151) [007] d..1 24572.693881: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
26871    RenderThread-24437 (24151) [007] d..2 24572.693888: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
26872    RenderThread-24437 (24151) [007] .... 24572.693917: binder_transaction: transaction=1669027 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
26873    RenderThread-24437 (24151) [007] d..4 24572.693919: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
26874    RenderThread-24437 (24151) [007] d..5 24572.693929: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
26875<...>-12589 ( 23968) [006] d..2 24572.693929: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
26876          <idle>-0     (-----) [005] .n.1 24572.693934: cpu_idle: state=4294967295 cpu_id=5
26877    RenderThread-24437 (24151) [007] d..2 24572.693934: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
26878          <idle>-0     (-----) [005] d..2 24572.693937: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
26879           <...>-13131 (-----) [006] d..2 24572.693939: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
26880  Binder:23896_5-25989 (23896) [005] .... 24572.693939: binder_transaction_received: transaction=1669027
26881          <idle>-0     (-----) [006] d..1 24572.693948: cpu_idle: state=0 cpu_id=6
26882  Binder:23896_5-25989 (23896) [005] .... 24572.693970: binder_transaction: transaction=1669028 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
26883  Binder:23896_5-25989 (23896) [005] d..2 24572.693993: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
26884  Binder:23896_5-25989 (23896) [005] d..3 24572.694004: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
26885<...>-24151 ( 24151) [007] d..2 24572.694009: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
26886          <idle>-0     (-----) [006] .n.1 24572.694009: cpu_idle: state=4294967295 cpu_id=6
26887          <idle>-0     (-----) [006] d..2 24572.694013: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
26888  Binder:23896_5-25989 (23896) [005] d..2 24572.694016: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
26889          <idle>-0     (-----) [007] d..1 24572.694016: cpu_idle: state=0 cpu_id=7
26890    RenderThread-24437 (24151) [006] .... 24572.694016: binder_transaction_received: transaction=1669028
26891          <idle>-0     (-----) [005] d..1 24572.694019: cpu_idle: state=0 cpu_id=5
26892<...>-24041 ( 23968) [004] d..3 24572.694086: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=007
26893<...>-24041 ( 23968) [004] d..4 24572.694095: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=007
26894<...>-24041 ( 23968) [004] d..1 24572.694099: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=005
26895          <idle>-0     (-----) [007] .n.1 24572.694100: cpu_idle: state=4294967295 cpu_id=7
26896          <idle>-0     (-----) [007] d..2 24572.694104: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
26897<...>-24041 ( 23968) [004] d..2 24572.694105: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=005
26898          <idle>-0     (-----) [005] .n.1 24572.694109: cpu_idle: state=4294967295 cpu_id=5
26899          <idle>-0     (-----) [005] d..2 24572.694112: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
26900<...>-24073 ( 23968) [007] d..2 24572.694118: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
26901          <idle>-0     (-----) [007] d..1 24572.694121: cpu_idle: state=0 cpu_id=7
26902<...>-24003 ( 23968) [005] d..1 24572.694151: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
26903<...>-24003 ( 23968) [005] d..2 24572.694161: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=007
26904          <idle>-0     (-----) [007] .n.1 24572.694165: cpu_idle: state=4294967295 cpu_id=7
26905          <idle>-0     (-----) [007] d..2 24572.694168: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
26906<...>-24003 ( 23968) [005] d..2 24572.694199: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
26907          <idle>-0     (-----) [005] d..1 24572.694203: cpu_idle: state=0 cpu_id=5
26908<...>-12589 ( 23968) [007] .... 24572.694322: binder_transaction: transaction=1669029 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
26909<...>-12589 ( 23968) [007] d..2 24572.694331: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
26910<...>-12589 ( 23968) [007] d..3 24572.694339: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
26911<...>-12589 ( 23968) [007] .... 24572.694340: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
26912<...>-12589 ( 23968) [007] d..2 24572.694356: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
26913           <...>-13131 (-----) [007] .... 24572.694358: binder_transaction_received: transaction=1669029
26914<...>-24041 ( 23968) [004] .... 24572.694374: binder_transaction: transaction=1669032 dest_node=1344517 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
26915<...>-24041 ( 23968) [004] d..4 24572.694376: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
26916<...>-24041 ( 23968) [004] d..5 24572.694383: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
26917          <idle>-0     (-----) [005] .n.1 24572.694388: cpu_idle: state=4294967295 cpu_id=5
26918          <idle>-0     (-----) [005] d..2 24572.694392: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
26919  Binder:23896_5-25989 (23896) [005] .... 24572.694394: binder_transaction_received: transaction=1669032
26920  Binder:23896_5-25989 (23896) [005] d..1 24572.694403: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
26921<...>-24041 ( 23968) [004] d..2 24572.694410: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
26922          <idle>-0     (-----) [004] d..1 24572.694414: cpu_idle: state=0 cpu_id=4
26923          <idle>-0     (-----) [003] dnh2 24572.694417: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
26924  Binder:23896_5-25989 (23896) [005] d..2 24572.694418: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
26925          <idle>-0     (-----) [003] .n.1 24572.694421: cpu_idle: state=4294967295 cpu_id=3
26926          <idle>-0     (-----) [005] d..1 24572.694421: cpu_idle: state=0 cpu_id=5
26927          <idle>-0     (-----) [003] d..2 24572.694426: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
26928  appEventThread-23905 (23896) [003] d..2 24572.694456: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
26929          <idle>-0     (-----) [003] d..1 24572.694462: cpu_idle: state=0 cpu_id=3
26930           <...>-13131 (-----) [007] .... 24572.694558: binder_transaction: transaction=1669033 dest_node=3 dest_proc=587 dest_thread=0 reply=0 flags=0x10 code=0x2
26931           <...>-13131 (-----) [007] ...2 24572.694562: binder_set_priority: proc=587 thread=587 old=120 => new=110 desired=110
26932           <...>-13131 (-----) [007] d..4 24572.694564: sched_waking: comm=servicemanager pid=587 prio=110 target_cpu=002
26933           <...>-13131 (-----) [007] d..2 24572.694585: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
26934          <idle>-0     (-----) [000] dnh2 24572.694585: sched_wakeup: comm=servicemanager pid=587 prio=110 target_cpu=000
26935          <idle>-0     (-----) [000] .n.1 24572.694590: cpu_idle: state=4294967295 cpu_id=0
26936    RenderThread-24437 (24151) [006] d..2 24572.694590: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
26937          <idle>-0     (-----) [007] d..1 24572.694590: cpu_idle: state=0 cpu_id=7
26938          <idle>-0     (-----) [000] d..2 24572.694596: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=servicemanager next_pid=587 next_prio=110
26939<...>-587 ( 587) [000] .... 24572.694604: binder_transaction_received: transaction=1669033
26940    RenderThread-24437 (24151) [006] d..3 24572.694606: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
26941          <idle>-0     (-----) [005] .n.1 24572.694610: cpu_idle: state=4294967295 cpu_id=5
26942          <idle>-0     (-----) [005] d..2 24572.694629: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
26943    RenderThread-24437 (24151) [006] d.h3 24572.694629: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
26944    RenderThread-24437 (24151) [006] d.h4 24572.694638: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
26945    RenderThread-24437 (24151) [006] d.h3 24572.694639: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
26946          <idle>-0     (-----) [004] .n.1 24572.694643: cpu_idle: state=4294967295 cpu_id=4
26947          <idle>-0     (-----) [004] d..2 24572.694646: 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
26948          <idle>-0     (-----) [002] dnh2 24572.694652: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
26949         sugov:4-560   (  560) [004] d..2 24572.694652: 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
26950          <idle>-0     (-----) [004] d..1 24572.694654: cpu_idle: state=0 cpu_id=4
26951          <idle>-0     (-----) [002] .n.1 24572.694655: cpu_idle: state=4294967295 cpu_id=2
26952 kgsl_worker_thr-246   (  246) [005] d..2 24572.694655: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
26953          <idle>-0     (-----) [005] d..1 24572.694657: cpu_idle: state=0 cpu_id=5
26954          <idle>-0     (-----) [002] d..2 24572.694660: 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
26955         sugov:0-559   (  559) [002] d..2 24572.694671: 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
26956          <idle>-0     (-----) [002] d..1 24572.694676: cpu_idle: state=0 cpu_id=2
26957    RenderThread-24437 (24151) [006] d..2 24572.694703: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
26958    RenderThread-24437 (24151) [006] d..3 24572.694710: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
26959          <idle>-0     (-----) [005] .n.1 24572.694714: cpu_idle: state=4294967295 cpu_id=5
26960          <idle>-0     (-----) [005] d..2 24572.694717: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
26961 kgsl_worker_thr-246   (  246) [005] d..1 24572.694766: clk_enable: gpll0_out_even
26962 kgsl_worker_thr-246   (  246) [005] d..1 24572.694767: clk_enable: gcc_gpu_gpll0_div_clk_src
26963<...>-587 ( 587) [000] .... 24572.694768: binder_transaction: transaction=1669034 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
26964<...>-587 ( 587) [000] d..2 24572.694779: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
26965<...>-587 ( 587) [000] d..3 24572.694796: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
26966<...>-587 ( 587) [000] .... 24572.694822: binder_set_priority: proc=587 thread=587 old=110 => new=120 desired=120
26967<...>-587 ( 587) [000] d..2 24572.694841: sched_switch: prev_comm=servicemanager prev_pid=587 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
26968           <...>-13131 (-----) [000] .... 24572.694846: binder_transaction_received: transaction=1669034
26969    RenderThread-24437 (24151) [006] .... 24572.694851: binder_transaction: transaction=1669036 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
26970    RenderThread-24437 (24151) [006] d..4 24572.694855: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
26971    RenderThread-24437 (24151) [006] d..5 24572.694863: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=006
26972    RenderThread-24437 (24151) [006] d..2 24572.694867: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
26973  Binder:23896_5-25989 (23896) [006] .... 24572.694869: binder_transaction_received: transaction=1669036
26974  Binder:23896_5-25989 (23896) [006] .... 24572.694929: binder_transaction: transaction=1669038 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
26975  Binder:23896_5-25989 (23896) [006] d..2 24572.694930: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
26976  Binder:23896_5-25989 (23896) [006] d..3 24572.694935: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
26977           <...>-13131 (-----) [000] .... 24572.694939: binder_transaction: transaction=1669037 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x4
26978  Binder:23896_5-25989 (23896) [006] d..2 24572.694943: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
26979           <...>-13131 (-----) [000] ...2 24572.694944: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
26980    RenderThread-24437 (24151) [006] .... 24572.694944: binder_transaction_received: transaction=1669038
26981           <...>-13131 (-----) [000] d..4 24572.694946: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=006
26982           <...>-13131 (-----) [000] dn.5 24572.694962: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
26983           <...>-13131 (-----) [000] d..2 24572.694989: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
26984    RenderThread-24437 (24151) [006] d..2 24572.694990: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
26985  Binder:23896_5-25989 (23896) [000] .... 24572.694993: binder_transaction_received: transaction=1669037
26986          <idle>-0     (-----) [006] d..1 24572.694997: cpu_idle: state=0 cpu_id=6
26987  Binder:23896_5-25989 (23896) [000] d..1 24572.695112: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
26988  Binder:23896_5-25989 (23896) [000] d..2 24572.695124: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
26989          <idle>-0     (-----) [003] .n.1 24572.695128: cpu_idle: state=4294967295 cpu_id=3
26990          <idle>-0     (-----) [003] d..2 24572.695133: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
26991  Binder:23896_5-25989 (23896) [000] .... 24572.695137: binder_transaction: transaction=1669039 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
26992  appEventThread-23905 (23896) [003] d..2 24572.695155: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
26993          <idle>-0     (-----) [003] d..1 24572.695161: cpu_idle: state=0 cpu_id=3
26994  Binder:23896_5-25989 (23896) [000] .... 24572.695190: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
26995          <idle>-0     (-----) [006] ...1 24572.695209: cpu_idle: state=4294967295 cpu_id=6
26996          <idle>-0     (-----) [006] d..1 24572.695211: cpu_idle: state=0 cpu_id=6
26997  Binder:23896_5-25989 (23896) [000] d..2 24572.695221: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
26998           <...>-13131 (-----) [000] .... 24572.695226: binder_transaction_received: transaction=1669039
26999           <...>-13131 (-----) [000] .... 24572.695259: binder_transaction: transaction=1669042 dest_node=1669040 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x1
27000           <...>-13131 (-----) [000] ...2 24572.695263: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
27001           <...>-13131 (-----) [000] d..4 24572.695265: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
27002           <...>-13131 (-----) [000] dn.5 24572.695272: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
27003 kgsl_worker_thr-246   (  246) [005] d..1 24572.695272: clk_enable: gpu_cc_gmu_clk_src
27004           <...>-13131 (-----) [000] d..2 24572.695277: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
27005  Binder:23896_5-25989 (23896) [000] .... 24572.695280: binder_transaction_received: transaction=1669042
27006 kgsl_worker_thr-246   (  246) [005] d..1 24572.695293: clk_enable: gpu_cc_cx_gmu_clk
27007 kgsl_worker_thr-246   (  246) [005] d..1 24572.695302: clk_enable: gpu_cc_cxo_clk
27008  Binder:23896_5-25989 (23896) [000] .... 24572.695302: binder_transaction: transaction=1669043 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
27009 kgsl_worker_thr-246   (  246) [005] d..1 24572.695308: clk_enable: gcc_ddrss_gpu_axi_clk
27010 kgsl_worker_thr-246   (  246) [005] d..1 24572.695314: clk_enable: gcc_gpu_memnoc_gfx_clk
27011 kgsl_worker_thr-246   (  246) [005] d..2 24572.695349: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
27012          <idle>-0     (-----) [005] d..1 24572.695351: cpu_idle: state=0 cpu_id=5
27013  Binder:23896_5-25989 (23896) [000] .... 24572.695386: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
27014  Binder:23896_5-25989 (23896) [000] d..2 24572.695412: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
27015           <...>-13131 (-----) [000] .... 24572.695417: binder_transaction_received: transaction=1669043
27016           <...>-13131 (-----) [000] .... 24572.695447: binder_transaction: transaction=1669044 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x4
27017          <idle>-0     (-----) [005] d.h2 24572.695450: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
27018           <...>-13131 (-----) [000] ...2 24572.695450: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
27019           <...>-13131 (-----) [000] d..4 24572.695452: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
27020          <idle>-0     (-----) [005] dnh3 24572.695453: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
27021          <idle>-0     (-----) [005] .n.1 24572.695456: cpu_idle: state=4294967295 cpu_id=5
27022          <idle>-0     (-----) [005] d..2 24572.695459: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
27023           <...>-13131 (-----) [000] dn.5 24572.695459: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
27024           <...>-13131 (-----) [000] d..2 24572.695464: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
27025 kgsl_worker_thr-246   (  246) [005] d..2 24572.695465: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
27026  Binder:23896_5-25989 (23896) [000] .... 24572.695467: binder_transaction_received: transaction=1669044
27027          <idle>-0     (-----) [005] d..1 24572.695467: cpu_idle: state=0 cpu_id=5
27028  Binder:23896_5-25989 (23896) [000] d..1 24572.695506: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
27029  Binder:23896_5-25989 (23896) [000] d..2 24572.695518: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
27030          <idle>-0     (-----) [003] .n.1 24572.695522: cpu_idle: state=4294967295 cpu_id=3
27031          <idle>-0     (-----) [004] d.h2 24572.695525: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=004
27032  Binder:23896_5-25989 (23896) [000] .... 24572.695527: binder_transaction: transaction=1669045 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
27033          <idle>-0     (-----) [003] d..2 24572.695527: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
27034          <idle>-0     (-----) [004] dnh3 24572.695530: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=004
27035          <idle>-0     (-----) [004] .n.1 24572.695533: cpu_idle: state=4294967295 cpu_id=4
27036          <idle>-0     (-----) [004] d..2 24572.695535: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
27037  Binder:23896_5-25989 (23896) [000] .... 24572.695535: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
27038        DispSync-23904 (23896) [004] d..1 24572.695546: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
27039  appEventThread-23905 (23896) [003] d..2 24572.695547: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
27040          <idle>-0     (-----) [003] d..1 24572.695552: cpu_idle: state=0 cpu_id=3
27041          <idle>-0     (-----) [003] dnh2 24572.695563: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
27042  Binder:23896_5-25989 (23896) [000] d..2 24572.695563: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
27043        DispSync-23904 (23896) [004] d..2 24572.695565: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
27044          <idle>-0     (-----) [005] d.h2 24572.695566: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
27045          <idle>-0     (-----) [003] .n.1 24572.695567: cpu_idle: state=4294967295 cpu_id=3
27046           <...>-13131 (-----) [000] .... 24572.695567: binder_transaction_received: transaction=1669045
27047          <idle>-0     (-----) [004] d..1 24572.695568: cpu_idle: state=0 cpu_id=4
27048          <idle>-0     (-----) [005] dnh3 24572.695569: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
27049          <idle>-0     (-----) [003] d..2 24572.695571: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
27050          <idle>-0     (-----) [005] .n.1 24572.695572: cpu_idle: state=4294967295 cpu_id=5
27051          <idle>-0     (-----) [005] d..2 24572.695574: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
27052 kgsl_worker_thr-246   (  246) [005] d..2 24572.695580: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
27053          <idle>-0     (-----) [005] d..1 24572.695582: cpu_idle: state=0 cpu_id=5
27054           <...>-13131 (-----) [000] .... 24572.695588: binder_transaction: transaction=1669048 dest_node=1669046 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x1
27055           <...>-13131 (-----) [000] ...2 24572.695591: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
27056           <...>-13131 (-----) [000] d..4 24572.695593: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
27057           <...>-13131 (-----) [000] dn.5 24572.695600: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
27058   sfEventThread-23906 (23896) [003] d..3 24572.695603: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=004
27059           <...>-13131 (-----) [000] d..2 24572.695605: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
27060  Binder:23896_5-25989 (23896) [000] .... 24572.695608: binder_transaction_received: transaction=1669048
27061          <idle>-0     (-----) [004] dnh2 24572.695617: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=004
27062          <idle>-0     (-----) [004] .n.1 24572.695619: cpu_idle: state=4294967295 cpu_id=4
27063   sfEventThread-23906 (23896) [003] d..3 24572.695621: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
27064          <idle>-0     (-----) [004] d..2 24572.695622: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
27065  Binder:23896_5-25989 (23896) [000] .... 24572.695626: binder_transaction: transaction=1669049 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
27066  Binder:23896_5-25989 (23896) [000] .... 24572.695631: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
27067   sfEventThread-23906 (23896) [003] d..4 24572.695635: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
27068          <idle>-0     (-----) [002] .n.1 24572.695639: cpu_idle: state=4294967295 cpu_id=2
27069          <idle>-0     (-----) [002] d..2 24572.695644: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
27070   sfEventThread-23906 (23896) [003] d..2 24572.695660: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
27071  Binder:23896_5-25989 (23896) [000] d..2 24572.695667: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27072           <...>-13131 (-----) [003] .... 24572.695667: binder_transaction_received: transaction=1669049
27073          <idle>-0     (-----) [000] d..1 24572.695676: cpu_idle: state=0 cpu_id=0
27074<...>-24041 ( 23968) [004] .... 24572.695678: binder_transaction: transaction=1669050 dest_node=1271137 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
27075<...>-24041 ( 23968) [004] d..4 24572.695681: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
27076          <idle>-0     (-----) [005] d.h2 24572.695681: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
27077          <idle>-0     (-----) [005] dnh3 24572.695683: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
27078          <idle>-0     (-----) [005] .n.1 24572.695685: cpu_idle: state=4294967295 cpu_id=5
27079          <idle>-0     (-----) [005] d..2 24572.695689: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
27080<...>-24041 ( 23968) [004] d..5 24572.695694: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=006
27081          <idle>-0     (-----) [006] .n.1 24572.695698: cpu_idle: state=4294967295 cpu_id=6
27082<...>-24041 ( 23968) [004] d.h5 24572.695715: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
27083          <idle>-0     (-----) [006] d..2 24572.695715: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
27084<...>-24041 ( 23968) [004] d.h6 24572.695723: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
27085<...>-24041 ( 23968) [004] d.h5 24572.695724: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
27086          <idle>-0     (-----) [007] .n.1 24572.695728: cpu_idle: state=4294967295 cpu_id=7
27087          <idle>-0     (-----) [007] d..2 24572.695731: 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
27088  Binder:23896_5-25989 (23896) [006] .... 24572.695733: binder_transaction_received: transaction=1669050
27089 kgsl_worker_thr-246   (  246) [005] d..2 24572.695737: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
27090         sugov:4-560   (  560) [007] d..2 24572.695738: 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
27091          <idle>-0     (-----) [005] d..1 24572.695739: cpu_idle: state=0 cpu_id=5
27092          <idle>-0     (-----) [007] d..1 24572.695740: cpu_idle: state=0 cpu_id=7
27093  Binder:23896_5-25989 (23896) [006] d..1 24572.695741: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
27094          <idle>-0     (-----) [001] dnh2 24572.695742: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
27095          <idle>-0     (-----) [001] .n.1 24572.695746: cpu_idle: state=4294967295 cpu_id=1
27096           <...>-13131 (-----) [003] .... 24572.695748: binder_transaction: transaction=1669051 dest_node=1270642 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x1
27097           <...>-13131 (-----) [003] ...2 24572.695752: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
27098          <idle>-0     (-----) [001] d..2 24572.695753: 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
27099           <...>-13131 (-----) [003] d..4 24572.695753: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=007
27100          <idle>-0     (-----) [000] dnh2 24572.695759: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
27101  Binder:23896_5-25989 (23896) [006] d..2 24572.695761: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
27102          <idle>-0     (-----) [000] .n.1 24572.695764: cpu_idle: state=4294967295 cpu_id=0
27103          <idle>-0     (-----) [006] d..1 24572.695764: cpu_idle: state=0 cpu_id=6
27104         sugov:0-559   (  559) [001] d..2 24572.695766: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27105          <idle>-0     (-----) [000] d..2 24572.695769: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
27106           <...>-13131 (-----) [003] dn.5 24572.695770: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=003
27107          <idle>-0     (-----) [001] d..1 24572.695771: cpu_idle: state=0 cpu_id=1
27108           <...>-13131 (-----) [003] d..2 24572.695799: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
27109<...>-12589 ( 23968) [003] .... 24572.695804: binder_transaction_received: transaction=1669051
27110   sfEventThread-23906 (23896) [000] d..2 24572.695809: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27111          <idle>-0     (-----) [000] d..1 24572.695815: cpu_idle: state=0 cpu_id=0
27112          <idle>-0     (-----) [005] d.h2 24572.695838: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
27113          <idle>-0     (-----) [005] dnh3 24572.695840: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
27114          <idle>-0     (-----) [005] .n.1 24572.695842: cpu_idle: state=4294967295 cpu_id=5
27115          <idle>-0     (-----) [005] d..2 24572.695845: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
27116 kgsl_worker_thr-246   (  246) [005] d..2 24572.695860: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
27117          <idle>-0     (-----) [005] d..1 24572.695862: cpu_idle: state=0 cpu_id=5
27118  surfaceflinger-23896 (23896) [002] d..1 24572.695893: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
27119  surfaceflinger-23896 (23896) [002] d..2 24572.695905: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
27120<...>-24041 ( 23968) [004] .... 24572.695906: binder_transaction: transaction=1669052 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
27121          <idle>-0     (-----) [000] .n.1 24572.695910: cpu_idle: state=4294967295 cpu_id=0
27122<...>-24041 ( 23968) [004] ...2 24572.695914: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
27123          <idle>-0     (-----) [000] d..2 24572.695914: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
27124<...>-24041 ( 23968) [004] d..4 24572.695915: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=006
27125<...>-24041 ( 23968) [004] d..5 24572.695923: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
27126<...>-24041 ( 23968) [004] d..2 24572.695927: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
27127  Binder:23896_5-25989 (23896) [004] .... 24572.695929: binder_transaction_received: transaction=1669052
27128   sfEventThread-23906 (23896) [000] d..2 24572.695932: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27129          <idle>-0     (-----) [000] d..1 24572.695937: cpu_idle: state=0 cpu_id=0
27130          <idle>-0     (-----) [005] d.h2 24572.695961: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
27131          <idle>-0     (-----) [005] dnh3 24572.695964: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
27132          <idle>-0     (-----) [005] .n.1 24572.695966: cpu_idle: state=4294967295 cpu_id=5
27133  Binder:23896_5-25989 (23896) [004] .... 24572.695966: binder_transaction: transaction=1669053 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
27134  Binder:23896_5-25989 (23896) [004] d..2 24572.695968: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=004
27135          <idle>-0     (-----) [005] d..2 24572.695968: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
27136  Binder:23896_5-25989 (23896) [004] d..3 24572.695971: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=004
27137  Binder:23896_5-25989 (23896) [004] .... 24572.695971: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
27138 kgsl_worker_thr-246   (  246) [005] d..2 24572.695976: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
27139          <idle>-0     (-----) [005] d..1 24572.695977: cpu_idle: state=0 cpu_id=5
27140<...>-12589 ( 23968) [003] .... 24572.695981: binder_transaction: transaction=1669054 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
27141  Binder:23896_5-25989 (23896) [004] d..2 24572.695984: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
27142<...>-12589 ( 23968) [003] .... 24572.695985: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
27143<...>-24041 ( 23968) [004] .... 24572.695986: binder_transaction_received: transaction=1669053
27144          <idle>-0     (-----) [006] ...1 24572.695991: cpu_idle: state=4294967295 cpu_id=6
27145          <idle>-0     (-----) [006] d..1 24572.695992: cpu_idle: state=0 cpu_id=6
27146<...>-12589 ( 23968) [003] d..2 24572.696014: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
27147           <...>-13131 (-----) [003] .... 24572.696019: binder_transaction_received: transaction=1669054
27148<...>-24041 ( 23968) [004] d..2 24572.696025: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
27149          <idle>-0     (-----) [004] d..1 24572.696030: cpu_idle: state=0 cpu_id=4
27150          <idle>-0     (-----) [005] d.h2 24572.696076: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
27151          <idle>-0     (-----) [005] dnh3 24572.696078: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
27152          <idle>-0     (-----) [005] .n.1 24572.696088: cpu_idle: state=4294967295 cpu_id=5
27153          <idle>-0     (-----) [005] d..2 24572.696090: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
27154 kgsl_worker_thr-246   (  246) [005] d..2 24572.696096: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
27155          <idle>-0     (-----) [005] d..1 24572.696098: cpu_idle: state=0 cpu_id=5
27156          <idle>-0     (-----) [005] d.h2 24572.696198: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
27157          <idle>-0     (-----) [005] dnh3 24572.696200: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
27158          <idle>-0     (-----) [005] .n.1 24572.696202: cpu_idle: state=4294967295 cpu_id=5
27159          <idle>-0     (-----) [005] d..2 24572.696204: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
27160 kgsl_worker_thr-246   (  246) [005] d..2 24572.696210: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
27161          <idle>-0     (-----) [005] d..1 24572.696211: cpu_idle: state=0 cpu_id=5
27162           <...>-13131 (-----) [003] .... 24572.696256: binder_transaction: transaction=1669055 dest_node=1270642 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x1
27163           <...>-13131 (-----) [003] ...2 24572.696260: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
27164           <...>-13131 (-----) [003] d..4 24572.696261: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=003
27165           <...>-13131 (-----) [003] dn.5 24572.696269: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=003
27166           <...>-13131 (-----) [003] d..2 24572.696274: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
27167          <idle>-0     (-----) [004] ...1 24572.696275: cpu_idle: state=4294967295 cpu_id=4
27168          <idle>-0     (-----) [004] d..1 24572.696277: cpu_idle: state=0 cpu_id=4
27169<...>-12589 ( 23968) [003] .... 24572.696278: binder_transaction_received: transaction=1669055
27170          <idle>-0     (-----) [005] d.h2 24572.696312: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
27171          <idle>-0     (-----) [005] dnh3 24572.696314: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
27172          <idle>-0     (-----) [005] .n.1 24572.696316: cpu_idle: state=4294967295 cpu_id=5
27173          <idle>-0     (-----) [005] d..2 24572.696318: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
27174 kgsl_worker_thr-246   (  246) [005] d..2 24572.696324: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
27175          <idle>-0     (-----) [005] d..1 24572.696325: cpu_idle: state=0 cpu_id=5
27176<...>-12589 ( 23968) [003] .... 24572.696416: binder_transaction: transaction=1669056 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
27177<...>-12589 ( 23968) [003] .... 24572.696420: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
27178          <idle>-0     (-----) [005] d.h2 24572.696426: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
27179          <idle>-0     (-----) [005] dnh3 24572.696428: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
27180          <idle>-0     (-----) [005] .n.1 24572.696430: cpu_idle: state=4294967295 cpu_id=5
27181          <idle>-0     (-----) [005] d..2 24572.696432: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
27182 kgsl_worker_thr-246   (  246) [005] d..2 24572.696438: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
27183          <idle>-0     (-----) [005] d..1 24572.696439: cpu_idle: state=0 cpu_id=5
27184<...>-12589 ( 23968) [003] d..2 24572.696448: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
27185           <...>-13131 (-----) [003] .... 24572.696453: binder_transaction_received: transaction=1669056
27186  surfaceflinger-23896 (23896) [002] ...1 24572.696495: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
27187  surfaceflinger-23896 (23896) [002] ...1 24572.696499: tracing_mark_write: E|23896
27188  surfaceflinger-23896 (23896) [002] .... 24572.696532: binder_transaction: transaction=1669057 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
27189          <idle>-0     (-----) [005] d.h2 24572.696539: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
27190          <idle>-0     (-----) [005] dnh3 24572.696541: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
27191          <idle>-0     (-----) [005] .n.1 24572.696543: cpu_idle: state=4294967295 cpu_id=5
27192          <idle>-0     (-----) [005] d..2 24572.696546: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
27193 kgsl_worker_thr-246   (  246) [005] d..2 24572.696551: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
27194  surfaceflinger-23896 (23896) [002] ...2 24572.696551: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
27195          <idle>-0     (-----) [005] d..1 24572.696552: cpu_idle: state=0 cpu_id=5
27196  surfaceflinger-23896 (23896) [002] d..4 24572.696557: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
27197          <idle>-0     (-----) [004] dnh2 24572.696572: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
27198          <idle>-0     (-----) [004] .n.1 24572.696574: cpu_idle: state=4294967295 cpu_id=4
27199          <idle>-0     (-----) [004] d..2 24572.696576: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
27200  HwBinder:598_3-633   (  598) [004] .... 24572.696580: binder_transaction_received: transaction=1669057
27201  surfaceflinger-23896 (23896) [002] d..2 24572.696581: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27202          <idle>-0     (-----) [002] d..1 24572.696590: cpu_idle: state=0 cpu_id=2
27203  HwBinder:598_3-633   (  598) [004] ...1 24572.696604: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
27204          <idle>-0     (-----) [005] d.h2 24572.696653: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
27205          <idle>-0     (-----) [005] dnh3 24572.696655: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
27206          <idle>-0     (-----) [005] .n.1 24572.696657: cpu_idle: state=4294967295 cpu_id=5
27207          <idle>-0     (-----) [005] d..2 24572.696659: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
27208 kgsl_worker_thr-246   (  246) [005] d..2 24572.696665: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
27209          <idle>-0     (-----) [005] d..1 24572.696666: cpu_idle: state=0 cpu_id=5
27210  HwBinder:598_3-633   (  598) [004] ...1 24572.696667: tracing_mark_write: B|598|HWCSession::PresentDisplay::
27211          <idle>-0     (-----) [005] d.h2 24572.696766: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
27212          <idle>-0     (-----) [005] dnh3 24572.696768: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
27213          <idle>-0     (-----) [005] .n.1 24572.696770: cpu_idle: state=4294967295 cpu_id=5
27214          <idle>-0     (-----) [005] d..2 24572.696773: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
27215 kgsl_worker_thr-246   (  246) [005] d..2 24572.696787: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
27216          <idle>-0     (-----) [005] d..1 24572.696788: cpu_idle: state=0 cpu_id=5
27217          <idle>-0     (-----) [005] .n.1 24572.696880: cpu_idle: state=4294967295 cpu_id=5
27218          <idle>-0     (-----) [005] d..2 24572.696883: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13151 next_prio=110
27219           <...>-13151 (-----) [005] d.h1 24572.696888: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
27220           <...>-13151 (-----) [005] d.h2 24572.696896: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=006
27221  HwBinder:598_3-633   (  598) [004] ...1 24572.696899: tracing_mark_write: B|598|HWDeviceDRM::Validate::
27222          <idle>-0     (-----) [006] .n.1 24572.696901: cpu_idle: state=4294967295 cpu_id=6
27223          <idle>-0     (-----) [006] d..2 24572.696904: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
27224           <...>-13151 (-----) [005] d..2 24572.696905: sched_switch: prev_comm=id.nn.benchmark prev_pid=13151 prev_prio=110 prev_state=D|K ==> next_comm=swapper/5 next_pid=0 next_prio=120
27225           <...>-13131 (-----) [003] d..1 24572.696905: sched_waking: comm=id.nn.benchmark pid=13151 prio=110 target_cpu=005
27226          <idle>-0     (-----) [005] d..1 24572.696908: cpu_idle: state=0 cpu_id=5
27227 kgsl_worker_thr-246   (  246) [006] d..2 24572.696919: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
27228          <idle>-0     (-----) [005] d.h2 24572.696920: sched_blocked_reason: pid=13151 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
27229          <idle>-0     (-----) [005] dnh2 24572.696921: sched_wakeup: comm=id.nn.benchmark pid=13151 prio=110 target_cpu=005
27230          <idle>-0     (-----) [006] d..1 24572.696921: cpu_idle: state=0 cpu_id=6
27231          <idle>-0     (-----) [005] .n.1 24572.696923: cpu_idle: state=4294967295 cpu_id=5
27232          <idle>-0     (-----) [005] d..2 24572.696926: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13151 next_prio=110
27233           <...>-13131 (-----) [003] d..2 24572.696929: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
27234          <idle>-0     (-----) [003] d..1 24572.696940: cpu_idle: state=0 cpu_id=3
27235          <idle>-0     (-----) [001] d.s4 24572.696953: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=006
27236          <idle>-0     (-----) [001] ...1 24572.696967: cpu_idle: state=4294967295 cpu_id=1
27237          <idle>-0     (-----) [006] dnh2 24572.696967: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=006
27238          <idle>-0     (-----) [006] .n.1 24572.696969: cpu_idle: state=4294967295 cpu_id=6
27239          <idle>-0     (-----) [001] d..1 24572.696969: cpu_idle: state=0 cpu_id=1
27240          <idle>-0     (-----) [006] d..2 24572.696971: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
27241 kgsl_worker_thr-246   (  246) [006] d..2 24572.696979: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
27242          <idle>-0     (-----) [006] d..1 24572.696981: cpu_idle: state=0 cpu_id=6
27243          <idle>-0     (-----) [001] d.s4 24572.696997: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=006
27244          <idle>-0     (-----) [001] ...1 24572.697008: cpu_idle: state=4294967295 cpu_id=1
27245          <idle>-0     (-----) [006] dnh2 24572.697009: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=006
27246          <idle>-0     (-----) [001] d..1 24572.697011: cpu_idle: state=0 cpu_id=1
27247          <idle>-0     (-----) [006] .n.1 24572.697011: cpu_idle: state=4294967295 cpu_id=6
27248          <idle>-0     (-----) [006] d..2 24572.697013: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
27249 kgsl_worker_thr-246   (  246) [006] d..2 24572.697020: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
27250          <idle>-0     (-----) [006] d..1 24572.697022: cpu_idle: state=0 cpu_id=6
27251          <idle>-0     (-----) [001] d.s4 24572.697053: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=006
27252          <idle>-0     (-----) [001] ...1 24572.697063: cpu_idle: state=4294967295 cpu_id=1
27253          <idle>-0     (-----) [006] dnh2 24572.697064: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=006
27254          <idle>-0     (-----) [001] d..1 24572.697065: cpu_idle: state=0 cpu_id=1
27255          <idle>-0     (-----) [006] .n.1 24572.697066: cpu_idle: state=4294967295 cpu_id=6
27256          <idle>-0     (-----) [006] d..2 24572.697068: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
27257 kgsl_worker_thr-246   (  246) [006] d..2 24572.697076: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
27258          <idle>-0     (-----) [006] d..1 24572.697077: cpu_idle: state=0 cpu_id=6
27259  HwBinder:598_3-633   (  598) [004] ...1 24572.697108: tracing_mark_write: E|598
27260  HwBinder:598_3-633   (  598) [004] ...1 24572.697152: tracing_mark_write: B|598|HWDeviceDRM::Commit::
27261  HwBinder:598_3-633   (  598) [004] ...1 24572.697155: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
27262          <idle>-0     (-----) [001] d.s4 24572.697160: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=006
27263          <idle>-0     (-----) [001] ...1 24572.697170: cpu_idle: state=4294967295 cpu_id=1
27264          <idle>-0     (-----) [006] dnh2 24572.697171: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=006
27265          <idle>-0     (-----) [006] .n.1 24572.697172: cpu_idle: state=4294967295 cpu_id=6
27266          <idle>-0     (-----) [001] d..1 24572.697173: cpu_idle: state=0 cpu_id=1
27267          <idle>-0     (-----) [006] d..2 24572.697174: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
27268 kgsl_worker_thr-246   (  246) [006] d..2 24572.697181: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
27269          <idle>-0     (-----) [006] d..1 24572.697183: cpu_idle: state=0 cpu_id=6
27270          <idle>-0     (-----) [001] d.s4 24572.697199: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=006
27271          <idle>-0     (-----) [001] ...1 24572.697210: cpu_idle: state=4294967295 cpu_id=1
27272          <idle>-0     (-----) [006] dnh2 24572.697211: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=006
27273          <idle>-0     (-----) [001] d..1 24572.697212: cpu_idle: state=0 cpu_id=1
27274          <idle>-0     (-----) [006] .n.1 24572.697213: cpu_idle: state=4294967295 cpu_id=6
27275          <idle>-0     (-----) [006] d..2 24572.697215: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
27276 kgsl_worker_thr-246   (  246) [006] d..2 24572.697230: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
27277          <idle>-0     (-----) [006] d..1 24572.697232: cpu_idle: state=0 cpu_id=6
27278          <idle>-0     (-----) [000] ...1 24572.697245: cpu_idle: state=4294967295 cpu_id=0
27279          <idle>-0     (-----) [000] d..1 24572.697248: cpu_idle: state=0 cpu_id=0
27280  HwBinder:598_3-633   (  598) [004] d..2 24572.697259: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
27281  HwBinder:598_3-633   (  598) [004] d..3 24572.697272: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
27282          <idle>-0     (-----) [006] .n.1 24572.697276: cpu_idle: state=4294967295 cpu_id=6
27283          <idle>-0     (-----) [006] d..2 24572.697278: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
27284  HwBinder:598_3-633   (  598) [004] ...1 24572.697302: tracing_mark_write: E|598
27285  HwBinder:598_3-633   (  598) [004] ...1 24572.697303: tracing_mark_write: E|598
27286           <...>-13151 (-----) [005] .... 24572.697304: binder_transaction: transaction=1669058 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x7
27287           <...>-13151 (-----) [005] ...2 24572.697307: binder_set_priority: proc=23896 thread=25989 old=120 => new=116 desired=116
27288           <...>-13151 (-----) [005] d..4 24572.697308: sched_waking: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=004
27289           <...>-13151 (-----) [005] dn.5 24572.697315: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=005
27290           <...>-13151 (-----) [005] d..2 24572.697319: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=116 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
27291  Binder:23896_5-25989 (23896) [005] .... 24572.697321: binder_transaction_received: transaction=1669058
27292  HwBinder:598_3-633   (  598) [004] ...1 24572.697321: tracing_mark_write: E|598
27293 crtc_commit:111-253   (  253) [006] d.h1 24572.697331: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=006
27294  Binder:23896_5-25989 (23896) [005] .... 24572.697332: binder_transaction: transaction=1669059 dest_node=0 dest_proc=13131 dest_thread=13151 reply=1 flags=0x0 code=0x0
27295  Binder:23896_5-25989 (23896) [005] .... 24572.697337: binder_set_priority: proc=23896 thread=25989 old=116 => new=120 desired=120
27296 crtc_commit:111-253   (  253) [006] d.h2 24572.697339: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
27297  HwBinder:598_3-633   (  598) [004] ...1 24572.697343: tracing_mark_write: E|598
27298          <idle>-0     (-----) [007] .n.1 24572.697343: cpu_idle: state=4294967295 cpu_id=7
27299          <idle>-0     (-----) [007] d..2 24572.697346: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
27300  Binder:23896_5-25989 (23896) [005] d..2 24572.697348: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=116
27301  HwBinder:598_3-633   (  598) [004] .... 24572.697349: binder_transaction: transaction=1669061 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
27302           <...>-13151 (-----) [005] .... 24572.697349: binder_transaction_received: transaction=1669059
27303  HwBinder:598_3-633   (  598) [004] d..2 24572.697355: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
27304  HwBinder:598_3-633   (  598) [004] .... 24572.697362: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
27305           <...>-13151 (-----) [005] .... 24572.697368: binder_transaction: transaction=1669062 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0xb
27306          <idle>-0     (-----) [002] dnh2 24572.697370: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
27307           <...>-13151 (-----) [005] ...2 24572.697371: binder_set_priority: proc=23896 thread=25989 old=120 => new=116 desired=116
27308           <...>-13151 (-----) [005] d..4 24572.697371: sched_waking: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=005
27309          <idle>-0     (-----) [002] .n.1 24572.697373: cpu_idle: state=4294967295 cpu_id=2
27310           <...>-13151 (-----) [005] dn.5 24572.697375: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=005
27311           <...>-13151 (-----) [005] d..2 24572.697378: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=116 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
27312          <idle>-0     (-----) [002] d..2 24572.697379: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
27313  Binder:23896_5-25989 (23896) [005] .... 24572.697379: binder_transaction_received: transaction=1669062
27314  surfaceflinger-23896 (23896) [002] .... 24572.697382: binder_transaction_received: transaction=1669061
27315  HwBinder:598_3-633   (  598) [004] d..2 24572.697388: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
27316          <idle>-0     (-----) [004] d..1 24572.697392: cpu_idle: state=0 cpu_id=4
27317  Binder:23896_5-25989 (23896) [005] .... 24572.697400: binder_transaction: transaction=1669063 dest_node=0 dest_proc=13131 dest_thread=13151 reply=1 flags=0x0 code=0x0
27318  Binder:23896_5-25989 (23896) [005] .... 24572.697401: binder_set_priority: proc=23896 thread=25989 old=116 => new=120 desired=120
27319  Binder:23896_5-25989 (23896) [005] d..2 24572.697412: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=116
27320           <...>-13151 (-----) [005] .... 24572.697413: binder_transaction_received: transaction=1669063
27321           <...>-13151 (-----) [005] .... 24572.697422: binder_transaction: transaction=1669064 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0xc
27322           <...>-13151 (-----) [005] ...2 24572.697423: binder_set_priority: proc=23896 thread=25989 old=120 => new=116 desired=116
27323           <...>-13151 (-----) [005] d..4 24572.697424: sched_waking: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=005
27324           <...>-13151 (-----) [005] dn.5 24572.697427: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=005
27325           <...>-13151 (-----) [005] d..2 24572.697429: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=116 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
27326  Binder:23896_5-25989 (23896) [005] .... 24572.697430: binder_transaction_received: transaction=1669064
27327  Binder:23896_5-25989 (23896) [005] .... 24572.697435: binder_transaction: transaction=1669065 dest_node=0 dest_proc=13131 dest_thread=13151 reply=1 flags=0x0 code=0x0
27328  Binder:23896_5-25989 (23896) [005] .... 24572.697436: binder_set_priority: proc=23896 thread=25989 old=116 => new=120 desired=120
27329  Binder:23896_5-25989 (23896) [005] d..2 24572.697445: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=116
27330           <...>-13151 (-----) [005] .... 24572.697446: binder_transaction_received: transaction=1669065
27331 kgsl_worker_thr-246   (  246) [007] d..2 24572.697454: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
27332          <idle>-0     (-----) [007] d..1 24572.697456: cpu_idle: state=0 cpu_id=7
27333           <...>-13151 (-----) [005] .... 24572.697457: binder_transaction: transaction=1669066 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x4
27334           <...>-13151 (-----) [005] ...2 24572.697459: binder_set_priority: proc=23896 thread=25989 old=120 => new=116 desired=116
27335           <...>-13151 (-----) [005] d..4 24572.697459: sched_waking: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=005
27336           <...>-13151 (-----) [005] dn.5 24572.697463: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=005
27337           <...>-13151 (-----) [005] d..2 24572.697465: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=116 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
27338  Binder:23896_5-25989 (23896) [005] .... 24572.697467: binder_transaction_received: transaction=1669066
27339  Binder:23896_5-25989 (23896) [005] d..1 24572.697491: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
27340          <idle>-0     (-----) [003] d.s3 24572.697497: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
27341  Binder:23896_5-25989 (23896) [005] .... 24572.697503: binder_transaction: transaction=1669067 dest_node=0 dest_proc=13131 dest_thread=13151 reply=1 flags=0x0 code=0x0
27342          <idle>-0     (-----) [001] dnh2 24572.697506: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
27343  Binder:23896_5-25989 (23896) [005] .... 24572.697507: binder_set_priority: proc=23896 thread=25989 old=116 => new=120 desired=120
27344          <idle>-0     (-----) [001] .n.1 24572.697510: cpu_idle: state=4294967295 cpu_id=1
27345          <idle>-0     (-----) [007] dnh2 24572.697511: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
27346          <idle>-0     (-----) [003] ...1 24572.697511: cpu_idle: state=4294967295 cpu_id=3
27347          <idle>-0     (-----) [007] .n.1 24572.697513: cpu_idle: state=4294967295 cpu_id=7
27348          <idle>-0     (-----) [003] d..1 24572.697513: cpu_idle: state=0 cpu_id=3
27349          <idle>-0     (-----) [001] d..2 24572.697515: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
27350          <idle>-0     (-----) [007] d..2 24572.697515: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
27351  Binder:23896_5-25989 (23896) [005] d..2 24572.697519: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=116
27352           <...>-13151 (-----) [005] .... 24572.697520: binder_transaction_received: transaction=1669067
27353           <...>-13151 (-----) [005] .... 24572.697530: binder_transaction: transaction=1669070 dest_node=1669068 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x1
27354           <...>-13151 (-----) [005] ...2 24572.697531: binder_set_priority: proc=23896 thread=25989 old=120 => new=116 desired=116
27355           <...>-13151 (-----) [005] d..4 24572.697532: sched_waking: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=005
27356           <...>-13151 (-----) [005] dn.5 24572.697535: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=005
27357           <...>-13151 (-----) [005] d..2 24572.697537: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=116 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
27358  Binder:23896_5-25989 (23896) [005] .... 24572.697538: binder_transaction_received: transaction=1669070
27359  appEventThread-23905 (23896) [001] d..2 24572.697554: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27360          <idle>-0     (-----) [004] d.s2 24572.697561: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
27361  Binder:23896_5-25989 (23896) [005] .... 24572.697563: binder_transaction: transaction=1669071 dest_node=0 dest_proc=13131 dest_thread=13151 reply=1 flags=0x0 code=0x0
27362  Binder:23896_5-25989 (23896) [005] .... 24572.697565: binder_set_priority: proc=23896 thread=25989 old=116 => new=120 desired=120
27363          <idle>-0     (-----) [004] dns3 24572.697568: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
27364 kgsl_worker_thr-246   (  246) [007] d..2 24572.697571: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
27365          <idle>-0     (-----) [007] d..1 24572.697573: cpu_idle: state=0 cpu_id=7
27366          <idle>-0     (-----) [004] .n.1 24572.697573: cpu_idle: state=4294967295 cpu_id=4
27367          <idle>-0     (-----) [004] d..2 24572.697576: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
27368  Binder:23896_5-25989 (23896) [005] d..2 24572.697577: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=116
27369           <...>-13151 (-----) [005] .... 24572.697578: binder_transaction_received: transaction=1669071
27370     rcu_preempt-7     (    7) [004] d..2 24572.697609: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
27371          <idle>-0     (-----) [004] d..1 24572.697612: cpu_idle: state=0 cpu_id=4
27372          <idle>-0     (-----) [001] d.H4 24572.697620: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
27373          <idle>-0     (-----) [001] d.H4 24572.697628: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
27374          <idle>-0     (-----) [007] dnh2 24572.697633: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
27375          <idle>-0     (-----) [001] dnH5 24572.697634: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
27376          <idle>-0     (-----) [007] .n.1 24572.697635: cpu_idle: state=4294967295 cpu_id=7
27377          <idle>-0     (-----) [007] d..2 24572.697637: 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
27378         sugov:4-560   (  560) [007] d..2 24572.697643: 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
27379          <idle>-0     (-----) [007] d..1 24572.697644: cpu_idle: state=0 cpu_id=7
27380          <idle>-0     (-----) [001] d..2 24572.697649: 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
27381  surfaceflinger-23896 (23896) [002] d..2 24572.697653: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27382         sugov:0-559   (  559) [001] d..2 24572.697660: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27383          <idle>-0     (-----) [002] d..1 24572.697661: cpu_idle: state=0 cpu_id=2
27384          <idle>-0     (-----) [007] d.h2 24572.697667: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
27385          <idle>-0     (-----) [001] d..1 24572.697667: cpu_idle: state=0 cpu_id=1
27386          <idle>-0     (-----) [007] dnh3 24572.697670: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
27387          <idle>-0     (-----) [007] .n.1 24572.697673: cpu_idle: state=4294967295 cpu_id=7
27388          <idle>-0     (-----) [007] d..2 24572.697675: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
27389           <...>-13151 (-----) [005] d..2 24572.697736: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
27390          <idle>-0     (-----) [000] dnh2 24572.697752: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
27391          <idle>-0     (-----) [000] .n.1 24572.697756: cpu_idle: state=4294967295 cpu_id=0
27392          <idle>-0     (-----) [000] d..2 24572.697761: 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
27393           <...>-13151 (-----) [005] d..1 24572.697774: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=003
27394           <...>-13151 (-----) [005] d..2 24572.697786: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
27395          <idle>-0     (-----) [004] .n.1 24572.697791: cpu_idle: state=4294967295 cpu_id=4
27396          <idle>-0     (-----) [004] d..2 24572.697803: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
27397           <...>-13151 (-----) [005] d..2 24572.697812: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=116 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
27398          <idle>-0     (-----) [005] d..1 24572.697817: cpu_idle: state=0 cpu_id=5
27399           <...>-13131 (-----) [004] d..3 24572.697821: sched_waking: comm=RenderThread pid=13151 prio=116 target_cpu=005
27400           <...>-13131 (-----) [004] d..4 24572.697828: sched_wakeup: comm=RenderThread pid=13151 prio=116 target_cpu=005
27401          <idle>-0     (-----) [005] .n.1 24572.697833: cpu_idle: state=4294967295 cpu_id=5
27402          <idle>-0     (-----) [005] d..2 24572.697836: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=116
27403           <...>-13131 (-----) [004] d..2 24572.697838: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
27404          <idle>-0     (-----) [004] d..1 24572.697841: cpu_idle: state=0 cpu_id=4
27405           <...>-13151 (-----) [005] d..1 24572.697843: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
27406           <...>-13151 (-----) [005] d..2 24572.697848: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
27407          <idle>-0     (-----) [004] .n.1 24572.697852: cpu_idle: state=4294967295 cpu_id=4
27408           <...>-13151 (-----) [005] d..2 24572.697853: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=116 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
27409          <idle>-0     (-----) [004] d..2 24572.697856: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
27410          <idle>-0     (-----) [005] d..1 24572.697856: cpu_idle: state=0 cpu_id=5
27411 crtc_commit:111-253   (  253) [006] d..2 24572.697884: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
27412          <idle>-0     (-----) [006] d..1 24572.697887: cpu_idle: state=0 cpu_id=6
27413     logd.writer-563   (  555) [000] d..2 24572.697915: 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
27414          <idle>-0     (-----) [000] d..1 24572.697924: cpu_idle: state=0 cpu_id=0
27415           <...>-13131 (-----) [004] .... 24572.697946: binder_transaction: transaction=1669072 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xc4
27416           <...>-13131 (-----) [004] ...2 24572.697948: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
27417           <...>-13131 (-----) [004] d..4 24572.697949: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=003
27418           <...>-13131 (-----) [004] d..5 24572.697964: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
27419          <idle>-0     (-----) [006] .n.1 24572.697968: cpu_idle: state=4294967295 cpu_id=6
27420          <idle>-0     (-----) [006] d..2 24572.697981: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
27421<...>-12589 ( 23968) [006] .... 24572.697984: binder_transaction_received: transaction=1669072
27422           <...>-13131 (-----) [004] d..2 24572.697985: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
27423          <idle>-0     (-----) [004] d..1 24572.697990: cpu_idle: state=0 cpu_id=4
27424          <idle>-0     (-----) [005] ...1 24572.698047: cpu_idle: state=4294967295 cpu_id=5
27425          <idle>-0     (-----) [005] d..1 24572.698048: cpu_idle: state=0 cpu_id=5
27426<...>-12589 ( 23968) [006] .... 24572.698155: binder_transaction: transaction=1669073 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
27427<...>-12589 ( 23968) [006] d..2 24572.698158: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
27428<...>-12589 ( 23968) [006] d..3 24572.698166: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
27429<...>-12589 ( 23968) [006] .... 24572.698167: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
27430<...>-12589 ( 23968) [006] d..2 24572.698181: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
27431           <...>-13131 (-----) [006] .... 24572.698183: binder_transaction_received: transaction=1669073
27432          <idle>-0     (-----) [004] ...1 24572.698192: cpu_idle: state=4294967295 cpu_id=4
27433          <idle>-0     (-----) [004] d..1 24572.698193: cpu_idle: state=0 cpu_id=4
27434           <...>-13131 (-----) [006] .... 24572.698242: binder_transaction: transaction=1669074 dest_node=1272377 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x1
27435           <...>-13131 (-----) [006] ...2 24572.698330: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
27436           <...>-13131 (-----) [006] d..4 24572.698331: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
27437           <...>-13131 (-----) [006] dn.5 24572.698335: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
27438           <...>-13131 (-----) [006] d..2 24572.698338: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
27439<...>-12589 ( 23968) [006] .... 24572.698340: binder_transaction_received: transaction=1669074
27440 kgsl_worker_thr-246   (  246) [007] d..2 24572.698346: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
27441 kgsl_worker_thr-246   (  246) [007] d..3 24572.698356: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
27442          <idle>-0     (-----) [004] .n.1 24572.698360: cpu_idle: state=4294967295 cpu_id=4
27443          <idle>-0     (-----) [004] d..2 24572.698363: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27444  kworker/u16:10-23868 (23868) [004] d..2 24572.698369: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
27445  kworker/u16:10-23868 (23868) [004] d..3 24572.698383: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=005
27446          <idle>-0     (-----) [005] .n.1 24572.698386: cpu_idle: state=4294967295 cpu_id=5
27447          <idle>-0     (-----) [005] d..2 24572.698401: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
27448  kworker/u16:10-23868 (23868) [004] d.h2 24572.698402: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
27449 kgsl_worker_thr-246   (  246) [007] d..2 24572.698406: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
27450  kworker/u16:10-23868 (23868) [004] d.h3 24572.698410: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
27451  kworker/u16:15-18488 (18488) [005] d..2 24572.698411: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
27452          <idle>-0     (-----) [007] d..2 24572.698412: 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
27453  kworker/u16:10-23868 (23868) [004] d.h2 24572.698413: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
27454          <idle>-0     (-----) [005] d..1 24572.698414: cpu_idle: state=0 cpu_id=5
27455         sugov:4-560   (  560) [007] d..2 24572.698420: 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
27456          <idle>-0     (-----) [007] d..1 24572.698422: cpu_idle: state=0 cpu_id=7
27457  kworker/u16:10-23868 (23868) [004] d..2 24572.698425: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
27458          <idle>-0     (-----) [001] dnh2 24572.698426: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
27459          <idle>-0     (-----) [004] d..1 24572.698427: cpu_idle: state=0 cpu_id=4
27460          <idle>-0     (-----) [001] .n.1 24572.698430: cpu_idle: state=4294967295 cpu_id=1
27461          <idle>-0     (-----) [001] d..2 24572.698436: 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
27462          <idle>-0     (-----) [000] ...1 24572.698437: cpu_idle: state=4294967295 cpu_id=0
27463          <idle>-0     (-----) [000] d..1 24572.698439: cpu_idle: state=0 cpu_id=0
27464         sugov:0-559   (  559) [001] d..2 24572.698447: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27465          <idle>-0     (-----) [001] d..1 24572.698452: cpu_idle: state=0 cpu_id=1
27466          <idle>-0     (-----) [007] d.h2 24572.698504: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
27467          <idle>-0     (-----) [007] dnh3 24572.698507: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
27468          <idle>-0     (-----) [007] .n.1 24572.698509: cpu_idle: state=4294967295 cpu_id=7
27469          <idle>-0     (-----) [007] d..2 24572.698512: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
27470 kgsl_worker_thr-246   (  246) [007] d..2 24572.698538: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
27471          <idle>-0     (-----) [007] d..1 24572.698540: cpu_idle: state=0 cpu_id=7
27472          <idle>-0     (-----) [005] ...1 24572.698604: cpu_idle: state=4294967295 cpu_id=5
27473          <idle>-0     (-----) [005] d..1 24572.698605: cpu_idle: state=0 cpu_id=5
27474          <idle>-0     (-----) [000] ...1 24572.698628: cpu_idle: state=4294967295 cpu_id=0
27475          <idle>-0     (-----) [000] d..1 24572.698631: cpu_idle: state=0 cpu_id=0
27476          <idle>-0     (-----) [007] d.h2 24572.698638: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
27477          <idle>-0     (-----) [007] dnh3 24572.698641: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
27478          <idle>-0     (-----) [007] .n.1 24572.698643: cpu_idle: state=4294967295 cpu_id=7
27479          <idle>-0     (-----) [007] d..2 24572.698645: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
27480 kgsl_worker_thr-246   (  246) [007] d..2 24572.698673: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
27481          <idle>-0     (-----) [007] d..1 24572.698676: cpu_idle: state=0 cpu_id=7
27482<...>-12589 ( 23968) [006] .... 24572.698774: binder_transaction: transaction=1669077 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
27483<...>-12589 ( 23968) [006] .... 24572.698779: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
27484<...>-12589 ( 23968) [006] d..2 24572.698797: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
27485           <...>-13131 (-----) [006] .... 24572.698800: binder_transaction_received: transaction=1669077
27486           <...>-13131 (-----) [006] d..3 24572.698834: sched_waking: comm=RenderThread pid=13151 prio=110 target_cpu=005
27487           <...>-13131 (-----) [006] d..4 24572.698841: sched_wakeup: comm=RenderThread pid=13151 prio=110 target_cpu=005
27488          <idle>-0     (-----) [005] .n.1 24572.698845: cpu_idle: state=4294967295 cpu_id=5
27489          <idle>-0     (-----) [005] d..2 24572.698848: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=110
27490           <...>-13131 (-----) [006] d..2 24572.698862: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
27491          <idle>-0     (-----) [007] ...1 24572.698865: cpu_idle: state=4294967295 cpu_id=7
27492          <idle>-0     (-----) [007] d..1 24572.698866: cpu_idle: state=0 cpu_id=7
27493          <idle>-0     (-----) [006] d..1 24572.698868: cpu_idle: state=0 cpu_id=6
27494           <...>-13151 (-----) [005] d..1 24572.698882: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
27495           <...>-13151 (-----) [005] d..2 24572.698888: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
27496          <idle>-0     (-----) [006] .n.1 24572.698893: cpu_idle: state=4294967295 cpu_id=6
27497           <...>-13151 (-----) [005] d..2 24572.698894: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
27498          <idle>-0     (-----) [005] d..1 24572.698896: cpu_idle: state=0 cpu_id=5
27499          <idle>-0     (-----) [006] d..2 24572.698897: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
27500           <...>-13131 (-----) [006] d..3 24572.698905: sched_waking: comm=RenderThread pid=13151 prio=110 target_cpu=005
27501           <...>-13131 (-----) [006] d..4 24572.698911: sched_wakeup: comm=RenderThread pid=13151 prio=110 target_cpu=005
27502          <idle>-0     (-----) [005] .n.1 24572.698916: cpu_idle: state=4294967295 cpu_id=5
27503          <idle>-0     (-----) [005] d..2 24572.698919: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=110
27504           <...>-13151 (-----) [005] d..2 24572.698925: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
27505          <idle>-0     (-----) [005] d..1 24572.698927: cpu_idle: state=0 cpu_id=5
27506           <...>-13131 (-----) [006] .... 24572.698942: binder_transaction: transaction=1669078 dest_node=1669040 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
27507           <...>-13131 (-----) [006] d..4 24572.698944: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
27508           <...>-13131 (-----) [006] d..5 24572.698955: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
27509          <idle>-0     (-----) [004] .n.1 24572.698959: cpu_idle: state=4294967295 cpu_id=4
27510          <idle>-0     (-----) [004] d..2 24572.698962: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
27511           <...>-13131 (-----) [006] d..3 24572.698963: sched_waking: comm=RenderThread pid=13151 prio=110 target_cpu=005
27512  Binder:23896_5-25989 (23896) [004] .... 24572.698964: binder_transaction_received: transaction=1669078
27513           <...>-13131 (-----) [006] d..4 24572.698969: sched_wakeup: comm=RenderThread pid=13151 prio=110 target_cpu=005
27514          <idle>-0     (-----) [005] .n.1 24572.698973: cpu_idle: state=4294967295 cpu_id=5
27515  Binder:23896_5-25989 (23896) [004] d..1 24572.698975: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
27516          <idle>-0     (-----) [005] d..2 24572.698975: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=110
27517           <...>-13151 (-----) [005] d..2 24572.698982: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
27518          <idle>-0     (-----) [005] d..1 24572.698984: cpu_idle: state=0 cpu_id=5
27519          <idle>-0     (-----) [001] dnh2 24572.698987: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
27520  Binder:23896_5-25989 (23896) [004] d..2 24572.698989: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
27521          <idle>-0     (-----) [001] .n.1 24572.698991: cpu_idle: state=4294967295 cpu_id=1
27522          <idle>-0     (-----) [004] d..1 24572.698992: cpu_idle: state=0 cpu_id=4
27523          <idle>-0     (-----) [001] d..2 24572.698996: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
27524  appEventThread-23905 (23896) [001] d..2 24572.699019: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27525          <idle>-0     (-----) [001] d..1 24572.699025: cpu_idle: state=0 cpu_id=1
27526           <...>-13131 (-----) [006] .... 24572.699052: binder_transaction: transaction=1669079 dest_node=1669030 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x2
27527           <...>-13131 (-----) [006] ...2 24572.699100: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
27528           <...>-13131 (-----) [006] d..4 24572.699101: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
27529           <...>-13131 (-----) [006] dn.5 24572.699106: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
27530           <...>-13131 (-----) [006] d..2 24572.699109: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
27531<...>-12589 ( 23968) [006] .... 24572.699111: binder_transaction_received: transaction=1669079
27532<...>-12589 ( 23968) [006] d..3 24572.699447: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=007
27533<...>-12589 ( 23968) [006] d..4 24572.699457: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=007
27534          <idle>-0     (-----) [007] .n.1 24572.699461: cpu_idle: state=4294967295 cpu_id=7
27535          <idle>-0     (-----) [007] d..2 24572.699464: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
27536<...>-12589 ( 23968) [006] .... 24572.699479: binder_transaction: transaction=1669082 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
27537<...>-12589 ( 23968) [006] ...2 24572.699482: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
27538<...>-12589 ( 23968) [006] d..4 24572.699483: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
27539<...>-24073 ( 23968) [007] d..2 24572.699486: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
27540<...>-12589 ( 23968) [006] d..5 24572.699489: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
27541          <idle>-0     (-----) [007] d..1 24572.699489: cpu_idle: state=0 cpu_id=7
27542          <idle>-0     (-----) [004] .n.1 24572.699493: cpu_idle: state=4294967295 cpu_id=4
27543<...>-12589 ( 23968) [006] d..2 24572.699494: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
27544          <idle>-0     (-----) [004] d..2 24572.699496: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
27545  Binder:23896_5-25989 (23896) [004] .... 24572.699498: binder_transaction_received: transaction=1669082
27546           <...>-13131 (-----) [006] d..2 24572.699501: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
27547          <idle>-0     (-----) [006] d..1 24572.699506: cpu_idle: state=0 cpu_id=6
27548  Binder:23896_5-25989 (23896) [004] .... 24572.699510: binder_transaction: transaction=1669083 dest_node=0 dest_proc=23968 dest_thread=12589 reply=1 flags=0x0 code=0x0
27549  Binder:23896_5-25989 (23896) [004] d..2 24572.699546: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
27550  Binder:23896_5-25989 (23896) [004] d..3 24572.699553: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
27551  Binder:23896_5-25989 (23896) [004] .... 24572.699554: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
27552          <idle>-0     (-----) [006] .n.1 24572.699558: cpu_idle: state=4294967295 cpu_id=6
27553          <idle>-0     (-----) [006] d..2 24572.699561: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
27554<...>-12589 ( 23968) [006] .... 24572.699563: binder_transaction_received: transaction=1669083
27555  Binder:23896_5-25989 (23896) [004] d..2 24572.699568: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
27556          <idle>-0     (-----) [004] d..1 24572.699571: cpu_idle: state=0 cpu_id=4
27557<...>-12589 ( 23968) [006] .... 24572.699662: binder_transaction: transaction=1669086 dest_node=1669084 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x1
27558<...>-12589 ( 23968) [006] ...2 24572.699666: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
27559<...>-12589 ( 23968) [006] d..4 24572.699667: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
27560<...>-12589 ( 23968) [006] d..5 24572.699675: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=006
27561          <idle>-0     (-----) [007] ...1 24572.699679: cpu_idle: state=4294967295 cpu_id=7
27562<...>-12589 ( 23968) [006] d..2 24572.699679: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
27563          <idle>-0     (-----) [007] d..1 24572.699680: cpu_idle: state=0 cpu_id=7
27564  Binder:23896_5-25989 (23896) [006] .... 24572.699682: binder_transaction_received: transaction=1669086
27565  Binder:23896_5-25989 (23896) [006] d..3 24572.699699: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
27566  Binder:23896_5-25989 (23896) [006] d..2 24572.699712: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
27567          <idle>-0     (-----) [002] dnh2 24572.699713: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
27568          <idle>-0     (-----) [006] d..1 24572.699717: cpu_idle: state=0 cpu_id=6
27569          <idle>-0     (-----) [002] .n.1 24572.699717: cpu_idle: state=4294967295 cpu_id=2
27570          <idle>-0     (-----) [002] d..2 24572.699722: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
27571  surfaceflinger-23896 (23896) [002] ...1 24572.699828: tracing_mark_write: B|23896|HIDL::IComposerClient::getActiveConfig::client
27572  surfaceflinger-23896 (23896) [002] ...1 24572.699832: tracing_mark_write: E|23896
27573          <idle>-0     (-----) [000] ...1 24572.699846: cpu_idle: state=4294967295 cpu_id=0
27574          <idle>-0     (-----) [000] d..1 24572.699848: cpu_idle: state=0 cpu_id=0
27575  surfaceflinger-23896 (23896) [002] .... 24572.699852: binder_transaction: transaction=1669087 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x7
27576  surfaceflinger-23896 (23896) [002] ...2 24572.699858: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
27577  surfaceflinger-23896 (23896) [002] d..4 24572.699862: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
27578          <idle>-0     (-----) [004] dnh2 24572.699878: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
27579          <idle>-0     (-----) [004] .n.1 24572.699880: cpu_idle: state=4294967295 cpu_id=4
27580          <idle>-0     (-----) [004] d..2 24572.699883: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
27581  HwBinder:598_3-633   (  598) [004] .... 24572.699885: binder_transaction_received: transaction=1669087
27582  surfaceflinger-23896 (23896) [002] d..2 24572.699887: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27583          <idle>-0     (-----) [002] d..1 24572.699896: cpu_idle: state=0 cpu_id=2
27584  HwBinder:598_3-633   (  598) [004] ...1 24572.699902: tracing_mark_write: B|598|HIDL::IComposerClient::getActiveConfig::server
27585          <idle>-0     (-----) [006] ...1 24572.699907: cpu_idle: state=4294967295 cpu_id=6
27586          <idle>-0     (-----) [006] d..1 24572.699909: cpu_idle: state=0 cpu_id=6
27587  HwBinder:598_3-633   (  598) [004] ...1 24572.699913: tracing_mark_write: E|598
27588  HwBinder:598_3-633   (  598) [004] .... 24572.699917: binder_transaction: transaction=1669088 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
27589  HwBinder:598_3-633   (  598) [004] d..2 24572.699919: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
27590  HwBinder:598_3-633   (  598) [004] .... 24572.699925: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
27591          <idle>-0     (-----) [002] dnh2 24572.699933: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
27592          <idle>-0     (-----) [002] .n.1 24572.699936: cpu_idle: state=4294967295 cpu_id=2
27593  HwBinder:598_3-633   (  598) [004] d..2 24572.699941: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
27594          <idle>-0     (-----) [002] d..2 24572.699942: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
27595          <idle>-0     (-----) [004] d..1 24572.699945: cpu_idle: state=0 cpu_id=4
27596  surfaceflinger-23896 (23896) [002] .... 24572.699945: binder_transaction_received: transaction=1669088
27597  surfaceflinger-23896 (23896) [002] d..1 24572.700053: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=006
27598          <idle>-0     (-----) [006] dnh2 24572.700067: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=006
27599          <idle>-0     (-----) [006] .n.1 24572.700069: cpu_idle: state=4294967295 cpu_id=6
27600          <idle>-0     (-----) [006] d..2 24572.700072: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
27601  surfaceflinger-23896 (23896) [002] d..2 24572.700078: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27602  Binder:23896_5-25989 (23896) [006] .... 24572.700081: binder_transaction: transaction=1669089 dest_node=0 dest_proc=23968 dest_thread=12589 reply=1 flags=0x0 code=0x0
27603          <idle>-0     (-----) [002] d..1 24572.700085: cpu_idle: state=0 cpu_id=2
27604  Binder:23896_5-25989 (23896) [006] d..2 24572.700121: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
27605  Binder:23896_5-25989 (23896) [006] dn.3 24572.700125: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
27606  Binder:23896_5-25989 (23896) [006] d..2 24572.700127: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
27607<...>-12589 ( 23968) [006] .... 24572.700129: binder_transaction_received: transaction=1669089
27608<...>-12589 ( 23968) [006] .... 24572.700147: binder_transaction: transaction=1669094 dest_node=1669092 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
27609<...>-12589 ( 23968) [006] ...2 24572.700149: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
27610<...>-12589 ( 23968) [006] d..4 24572.700151: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=002
27611<...>-12589 ( 23968) [006] d..5 24572.700165: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=004
27612          <idle>-0     (-----) [004] .n.1 24572.700169: cpu_idle: state=4294967295 cpu_id=4
27613          <idle>-0     (-----) [004] d..2 24572.700186: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
27614<...>-12589 ( 23968) [006] d.h5 24572.700186: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
27615<...>-12589 ( 23968) [006] d.h6 24572.700192: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
27616<...>-12589 ( 23968) [006] d.h5 24572.700193: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
27617          <idle>-0     (-----) [007] .n.1 24572.700196: cpu_idle: state=4294967295 cpu_id=7
27618          <idle>-0     (-----) [007] d..2 24572.700199: 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
27619<...>-23903 ( 23896) [004] .... 24572.700200: binder_transaction_received: transaction=1669094
27620<...>-12589 ( 23968) [006] d..2 24572.700202: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
27621  Binder:23896_5-25989 (23896) [006] .... 24572.700203: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
27622         sugov:4-560   (  560) [007] d..2 24572.700204: 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
27623          <idle>-0     (-----) [001] dnh2 24572.700204: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
27624          <idle>-0     (-----) [007] d..1 24572.700206: cpu_idle: state=0 cpu_id=7
27625          <idle>-0     (-----) [001] .n.1 24572.700209: cpu_idle: state=4294967295 cpu_id=1
27626<...>-23903 ( 23896) [004] .... 24572.700210: binder_transaction: transaction=1669095 dest_node=0 dest_proc=23968 dest_thread=12589 reply=1 flags=0x8 code=0x0
27627<...>-23903 ( 23896) [004] d..2 24572.700212: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
27628          <idle>-0     (-----) [001] d..2 24572.700213: 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
27629<...>-23903 ( 23896) [004] d..3 24572.700222: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=007
27630<...>-23903 ( 23896) [004] .... 24572.700223: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
27631  Binder:23896_5-25989 (23896) [006] d..2 24572.700223: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
27632         sugov:0-559   (  559) [001] d..2 24572.700225: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27633          <idle>-0     (-----) [007] .n.1 24572.700227: cpu_idle: state=4294967295 cpu_id=7
27634          <idle>-0     (-----) [006] d..1 24572.700228: cpu_idle: state=0 cpu_id=6
27635          <idle>-0     (-----) [007] d..2 24572.700229: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
27636          <idle>-0     (-----) [001] d..1 24572.700230: cpu_idle: state=0 cpu_id=1
27637<...>-12589 ( 23968) [007] .... 24572.700232: binder_transaction_received: transaction=1669095
27638<...>-23903 ( 23896) [004] d..2 24572.700236: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
27639          <idle>-0     (-----) [004] d..1 24572.700240: cpu_idle: state=0 cpu_id=4
27640          <idle>-0     (-----) [006] ...1 24572.700419: cpu_idle: state=4294967295 cpu_id=6
27641          <idle>-0     (-----) [006] d..1 24572.700420: cpu_idle: state=0 cpu_id=6
27642<...>-12589 ( 23968) [007] d..3 24572.700622: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=007
27643<...>-12589 ( 23968) [007] d..4 24572.700634: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
27644          <idle>-0     (-----) [006] .n.1 24572.700638: cpu_idle: state=4294967295 cpu_id=6
27645          <idle>-0     (-----) [006] d..2 24572.700641: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
27646<...>-24073 ( 23968) [006] d..2 24572.700654: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
27647          <idle>-0     (-----) [006] d..1 24572.700657: cpu_idle: state=0 cpu_id=6
27648          <idle>-0     (-----) [004] ...1 24572.700691: cpu_idle: state=4294967295 cpu_id=4
27649          <idle>-0     (-----) [004] d..1 24572.700692: cpu_idle: state=0 cpu_id=4
27650<...>-12589 ( 23968) [007] .... 24572.700694: binder_transaction: transaction=1669096 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
27651<...>-12589 ( 23968) [007] d..2 24572.700725: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
27652<...>-12589 ( 23968) [007] d..3 24572.700734: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
27653<...>-12589 ( 23968) [007] .... 24572.700735: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
27654<...>-12589 ( 23968) [007] d..2 24572.700753: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
27655           <...>-13131 (-----) [007] .... 24572.700755: binder_transaction_received: transaction=1669096
27656           <...>-13131 (-----) [007] d.s2 24572.700896: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
27657           <...>-13131 (-----) [007] d.s3 24572.700904: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
27658          <idle>-0     (-----) [004] .n.1 24572.700907: cpu_idle: state=4294967295 cpu_id=4
27659          <idle>-0     (-----) [004] d..2 24572.700911: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27660           <...>-13131 (-----) [007] .... 24572.701014: binder_transaction: transaction=1669097 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x11
27661           <...>-13131 (-----) [007] ...2 24572.701017: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
27662           <...>-13131 (-----) [007] d..4 24572.701018: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=007
27663           <...>-13131 (-----) [007] dn.5 24572.701022: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=007
27664           <...>-13131 (-----) [007] d..2 24572.701025: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
27665<...>-12589 ( 23968) [007] .... 24572.701027: binder_transaction_received: transaction=1669097
27666  kworker/u16:10-23868 (23868) [004] d..2 24572.701078: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
27667          <idle>-0     (-----) [004] d..1 24572.701080: cpu_idle: state=0 cpu_id=4
27668<...>-12589 ( 23968) [007] .... 24572.701109: binder_transaction: transaction=1669098 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
27669          <idle>-0     (-----) [003] d.s3 24572.701110: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
27670<...>-12589 ( 23968) [007] .... 24572.701111: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
27671          <idle>-0     (-----) [003] ...1 24572.701121: cpu_idle: state=4294967295 cpu_id=3
27672          <idle>-0     (-----) [004] d.h2 24572.701122: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
27673          <idle>-0     (-----) [004] dnh2 24572.701124: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
27674          <idle>-0     (-----) [003] d..1 24572.701125: cpu_idle: state=0 cpu_id=3
27675<...>-12589 ( 23968) [007] d..2 24572.701125: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
27676          <idle>-0     (-----) [004] .n.1 24572.701126: cpu_idle: state=4294967295 cpu_id=4
27677           <...>-13131 (-----) [007] .... 24572.701127: binder_transaction_received: transaction=1669098
27678          <idle>-0     (-----) [004] d..2 24572.701129: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27679  kworker/u16:10-23868 (23868) [004] d..2 24572.701136: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
27680          <idle>-0     (-----) [004] d..1 24572.701138: cpu_idle: state=0 cpu_id=4
27681           <...>-13131 (-----) [007] d..3 24572.701165: sched_waking: comm=RenderThread pid=13151 prio=110 target_cpu=005
27682           <...>-13131 (-----) [007] d..4 24572.701177: sched_wakeup: comm=RenderThread pid=13151 prio=110 target_cpu=004
27683          <idle>-0     (-----) [004] .n.1 24572.701181: cpu_idle: state=4294967295 cpu_id=4
27684          <idle>-0     (-----) [004] d..2 24572.701183: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=110
27685           <...>-13131 (-----) [007] d..2 24572.701186: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
27686          <idle>-0     (-----) [007] d..1 24572.701190: cpu_idle: state=0 cpu_id=7
27687           <...>-13151 (-----) [004] d..1 24572.701201: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
27688           <...>-13151 (-----) [004] d..2 24572.701212: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
27689          <idle>-0     (-----) [005] .n.1 24572.701216: cpu_idle: state=4294967295 cpu_id=5
27690          <idle>-0     (-----) [005] d..2 24572.701220: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
27691           <...>-13151 (-----) [004] d..2 24572.701221: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
27692          <idle>-0     (-----) [004] d..1 24572.701224: cpu_idle: state=0 cpu_id=4
27693           <...>-13131 (-----) [005] d..2 24572.701246: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
27694          <idle>-0     (-----) [005] d..1 24572.701250: cpu_idle: state=0 cpu_id=5
27695          <idle>-0     (-----) [001] ...1 24572.701790: cpu_idle: state=4294967295 cpu_id=1
27696          <idle>-0     (-----) [001] d..1 24572.701793: cpu_idle: state=0 cpu_id=1
27697          <idle>-0     (-----) [003] ...1 24572.702519: cpu_idle: state=4294967295 cpu_id=3
27698          <idle>-0     (-----) [003] d..1 24572.702522: cpu_idle: state=0 cpu_id=3
27699          <idle>-0     (-----) [000] d.h5 24572.703207: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
27700          <idle>-0     (-----) [000] d.h5 24572.703221: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
27701          <idle>-0     (-----) [004] dnh2 24572.703223: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
27702          <idle>-0     (-----) [004] .n.1 24572.703225: cpu_idle: state=4294967295 cpu_id=4
27703          <idle>-0     (-----) [004] d..2 24572.703228: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
27704          <idle>-0     (-----) [006] dnh2 24572.703233: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
27705          <idle>-0     (-----) [006] .n.1 24572.703235: cpu_idle: state=4294967295 cpu_id=6
27706          <idle>-0     (-----) [000] ...1 24572.703237: cpu_idle: state=4294967295 cpu_id=0
27707          <idle>-0     (-----) [006] d..2 24572.703238: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
27708          <idle>-0     (-----) [000] d..1 24572.703240: cpu_idle: state=0 cpu_id=0
27709  crtc_event:111-254   (  254) [004] d..2 24572.703241: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
27710          <idle>-0     (-----) [004] d..1 24572.703243: cpu_idle: state=0 cpu_id=4
27711 crtc_commit:111-253   (  253) [006] d..2 24572.703341: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
27712          <idle>-0     (-----) [006] d..1 24572.703343: cpu_idle: state=0 cpu_id=6
27713          <idle>-0     (-----) [006] d.s3 24572.704223: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
27714          <idle>-0     (-----) [004] d.s2 24572.704225: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
27715          <idle>-0     (-----) [006] d.s4 24572.704231: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
27716          <idle>-0     (-----) [004] dns3 24572.704238: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
27717          <idle>-0     (-----) [006] ...1 24572.704240: cpu_idle: state=4294967295 cpu_id=6
27718          <idle>-0     (-----) [006] d..1 24572.704241: cpu_idle: state=0 cpu_id=6
27719          <idle>-0     (-----) [005] .n.1 24572.704242: cpu_idle: state=4294967295 cpu_id=5
27720          <idle>-0     (-----) [004] .n.1 24572.704243: cpu_idle: state=4294967295 cpu_id=4
27721          <idle>-0     (-----) [004] d..2 24572.704245: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
27722          <idle>-0     (-----) [005] d..2 24572.704247: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
27723     rcu_preempt-7     (    7) [005] d..2 24572.704252: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=005
27724  crtc_event:111-254   (  254) [004] d..2 24572.704256: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
27725          <idle>-0     (-----) [004] d..1 24572.704258: cpu_idle: state=0 cpu_id=4
27726     rcu_preempt-7     (    7) [005] d..3 24572.704264: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=004
27727          <idle>-0     (-----) [004] .n.1 24572.704269: cpu_idle: state=4294967295 cpu_id=4
27728          <idle>-0     (-----) [004] d..2 24572.704272: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
27729     rcu_preempt-7     (    7) [005] d..2 24572.704273: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
27730         rcuop/6-61    (   61) [004] d..2 24572.704275: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=002
27731          <idle>-0     (-----) [005] d..1 24572.704275: cpu_idle: state=0 cpu_id=5
27732         rcuop/6-61    (   61) [004] d..3 24572.704289: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=005
27733          <idle>-0     (-----) [005] .n.1 24572.704293: cpu_idle: state=4294967295 cpu_id=5
27734         rcuop/6-61    (   61) [004] d.h3 24572.704309: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
27735          <idle>-0     (-----) [005] d..2 24572.704309: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/7 next_pid=69 next_prio=120
27736         rcuop/6-61    (   61) [004] d.h4 24572.704314: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
27737         rcuop/6-61    (   61) [004] d.h3 24572.704315: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
27738          <idle>-0     (-----) [007] .n.1 24572.704318: cpu_idle: state=4294967295 cpu_id=7
27739          <idle>-0     (-----) [007] d..2 24572.704322: 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
27740          <idle>-0     (-----) [001] dnh2 24572.704326: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
27741         sugov:4-560   (  560) [007] d..2 24572.704330: 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
27742          <idle>-0     (-----) [001] .n.1 24572.704330: cpu_idle: state=4294967295 cpu_id=1
27743          <idle>-0     (-----) [007] d..1 24572.704332: cpu_idle: state=0 cpu_id=7
27744          <idle>-0     (-----) [001] d..2 24572.704335: 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
27745         rcuop/6-61    (   61) [004] d..2 24572.704335: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
27746          <idle>-0     (-----) [004] d..1 24572.704338: cpu_idle: state=0 cpu_id=4
27747         sugov:0-559   (  559) [001] d..2 24572.704346: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27748         rcuop/7-69    (   69) [005] d..2 24572.704348: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
27749          <idle>-0     (-----) [005] d..1 24572.704350: cpu_idle: state=0 cpu_id=5
27750          <idle>-0     (-----) [001] d..1 24572.704352: cpu_idle: state=0 cpu_id=1
27751          <idle>-0     (-----) [000] d.h5 24572.705530: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
27752          <idle>-0     (-----) [006] dnh2 24572.705542: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
27753          <idle>-0     (-----) [006] .n.1 24572.705544: cpu_idle: state=4294967295 cpu_id=6
27754          <idle>-0     (-----) [000] ...1 24572.705544: cpu_idle: state=4294967295 cpu_id=0
27755          <idle>-0     (-----) [006] d..2 24572.705546: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
27756          <idle>-0     (-----) [000] d..1 24572.705547: cpu_idle: state=0 cpu_id=0
27757 crtc_commit:111-253   (  253) [006] d..2 24572.705573: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
27758          <idle>-0     (-----) [006] d..1 24572.705575: cpu_idle: state=0 cpu_id=6
27759          <idle>-0     (-----) [000] d.h5 24572.705839: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
27760          <idle>-0     (-----) [004] dnh2 24572.705851: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
27761          <idle>-0     (-----) [000] d.h7 24572.705852: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
27762          <idle>-0     (-----) [004] .n.1 24572.705853: cpu_idle: state=4294967295 cpu_id=4
27763          <idle>-0     (-----) [004] d..2 24572.705856: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
27764          <idle>-0     (-----) [000] dnh8 24572.705861: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
27765  crtc_event:111-254   (  254) [004] d..2 24572.705864: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
27766          <idle>-0     (-----) [004] d..1 24572.705866: cpu_idle: state=0 cpu_id=4
27767          <idle>-0     (-----) [000] dnh9 24572.705872: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
27768          <idle>-0     (-----) [000] dnh7 24572.705882: sched_waking: comm=SDM_EventThread pid=624 prio=111 target_cpu=005
27769          <idle>-0     (-----) [006] dnh2 24572.705884: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
27770          <idle>-0     (-----) [006] .n.1 24572.705886: cpu_idle: state=4294967295 cpu_id=6
27771          <idle>-0     (-----) [006] d..2 24572.705889: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
27772          <idle>-0     (-----) [004] dnh2 24572.705903: sched_wakeup: comm=SDM_EventThread pid=624 prio=111 target_cpu=004
27773 crtc_commit:111-253   (  253) [006] d..2 24572.705903: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
27774          <idle>-0     (-----) [006] d..1 24572.705905: cpu_idle: state=0 cpu_id=6
27775          <idle>-0     (-----) [004] .n.1 24572.705905: cpu_idle: state=4294967295 cpu_id=4
27776          <idle>-0     (-----) [000] .n.1 24572.705906: cpu_idle: state=4294967295 cpu_id=0
27777          <idle>-0     (-----) [004] d..2 24572.705908: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=624 next_prio=111
27778          <idle>-0     (-----) [000] d..2 24572.705914: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
27779 SDM_EventThread-624   (  598) [004] ...1 24572.705931: tracing_mark_write: B|598|HWCCallbacks::Vsync::
27780     kworker/0:1-13012 (13012) [000] d..2 24572.705932: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27781 SDM_EventThread-624   (  598) [004] ...1 24572.705935: tracing_mark_write: B|598|HIDL::IComposerCallback::onVsync::client
27782 SDM_EventThread-624   (  598) [004] ...1 24572.705936: tracing_mark_write: E|598
27783          <idle>-0     (-----) [000] d..1 24572.705937: cpu_idle: state=0 cpu_id=0
27784 SDM_EventThread-624   (  598) [004] .... 24572.705949: binder_transaction: transaction=1669099 dest_node=1270370 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
27785 SDM_EventThread-624   (  598) [004] d..4 24572.705952: sched_waking: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=000
27786 SDM_EventThread-624   (  598) [004] ...1 24572.705966: tracing_mark_write: E|598
27787          <idle>-0     (-----) [000] dnh2 24572.705967: sched_wakeup: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=000
27788          <idle>-0     (-----) [000] .n.1 24572.705971: cpu_idle: state=4294967295 cpu_id=0
27789 SDM_EventThread-624   (  598) [004] d..4 24572.705971: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
27790          <idle>-0     (-----) [000] d..2 24572.705976: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:23896_ next_pid=23923 next_prio=120
27791 SDM_EventThread-624   (  598) [004] d..5 24572.705977: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
27792          <idle>-0     (-----) [006] .n.1 24572.705981: cpu_idle: state=4294967295 cpu_id=6
27793 HwBinder:23896_-23923 (23896) [000] .... 24572.705981: binder_transaction_received: transaction=1669099
27794          <idle>-0     (-----) [006] d..2 24572.705984: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
27795 SDM_EventThread-624   (  598) [004] d..2 24572.705987: sched_switch: prev_comm=SDM_EventThread prev_pid=624 prev_prio=111 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
27796 crtc_commit:111-253   (  253) [006] d..2 24572.705989: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
27797          <idle>-0     (-----) [004] d..1 24572.705990: cpu_idle: state=0 cpu_id=4
27798          <idle>-0     (-----) [006] d..1 24572.705991: cpu_idle: state=0 cpu_id=6
27799 HwBinder:23896_-23923 (23896) [000] ...1 24572.706010: tracing_mark_write: B|23896|HIDL::IComposerCallback::onVsync::server
27800 HwBinder:23896_-23923 (23896) [000] ...1 24572.706024: tracing_mark_write: E|23896
27801          <idle>-0     (-----) [001] ...1 24572.706045: cpu_idle: state=4294967295 cpu_id=1
27802          <idle>-0     (-----) [001] d..1 24572.706047: cpu_idle: state=0 cpu_id=1
27803 HwBinder:23896_-23923 (23896) [000] d..2 24572.706052: sched_switch: prev_comm=HwBinder:23896_ prev_pid=23923 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27804          <idle>-0     (-----) [000] d..1 24572.706059: cpu_idle: state=0 cpu_id=0
27805          <idle>-0     (-----) [004] d.h2 24572.708194: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=004
27806          <idle>-0     (-----) [004] dnh3 24572.708200: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=004
27807          <idle>-0     (-----) [004] .n.1 24572.708202: cpu_idle: state=4294967295 cpu_id=4
27808          <idle>-0     (-----) [004] d..2 24572.708205: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
27809        DispSync-23904 (23896) [004] d..1 24572.708215: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
27810          <idle>-0     (-----) [001] dnh2 24572.708228: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
27811          <idle>-0     (-----) [001] .n.1 24572.708231: cpu_idle: state=4294967295 cpu_id=1
27812        DispSync-23904 (23896) [004] d..2 24572.708233: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
27813          <idle>-0     (-----) [004] d..2 24572.708234: sched_waking: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
27814          <idle>-0     (-----) [001] d..2 24572.708237: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
27815          <idle>-0     (-----) [004] dn.3 24572.708239: sched_wakeup: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
27816          <idle>-0     (-----) [004] d..2 24572.708242: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/4 next_pid=42 next_prio=120
27817     ksoftirqd/4-42    (   42) [004] d..2 24572.708251: sched_switch: prev_comm=ksoftirqd/4 prev_pid=42 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
27818          <idle>-0     (-----) [004] d..1 24572.708254: cpu_idle: state=0 cpu_id=4
27819  appEventThread-23905 (23896) [001] d..3 24572.708265: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=004
27820          <idle>-0     (-----) [004] dnh2 24572.708283: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=004
27821          <idle>-0     (-----) [004] .n.1 24572.708285: cpu_idle: state=4294967295 cpu_id=4
27822          <idle>-0     (-----) [004] d..2 24572.708288: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
27823  appEventThread-23905 (23896) [001] d..3 24572.708288: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
27824          <idle>-0     (-----) [006] dnh2 24572.708306: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
27825          <idle>-0     (-----) [006] .n.1 24572.708308: cpu_idle: state=4294967295 cpu_id=6
27826  appEventThread-23905 (23896) [001] d..3 24572.708309: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
27827          <idle>-0     (-----) [006] d..2 24572.708311: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
27828          <idle>-0     (-----) [005] dnh2 24572.708321: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
27829          <idle>-0     (-----) [005] .n.1 24572.708324: cpu_idle: state=4294967295 cpu_id=5
27830          <idle>-0     (-----) [005] d..2 24572.708326: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
27831  appEventThread-23905 (23896) [001] d..2 24572.708336: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27832          <idle>-0     (-----) [001] d..1 24572.708342: cpu_idle: state=0 cpu_id=1
27833<...>-24041 ( 23968) [004] .... 24572.708428: binder_transaction: transaction=1669100 dest_node=1669016 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x9
27834<...>-24041 ( 23968) [004] ...2 24572.708433: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
27835<...>-24041 ( 23968) [004] d..4 24572.708434: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=004
27836<...>-24041 ( 23968) [004] dn.5 24572.708439: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=004
27837<...>-24041 ( 23968) [004] d..2 24572.708442: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
27838<...>-23903 ( 23896) [004] .... 24572.708445: binder_transaction_received: transaction=1669100
27839<...>-24151 ( 24151) [006] .... 24572.708445: binder_transaction: transaction=1669101 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
27840<...>-24151 ( 24151) [006] d..4 24572.708448: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=006
27841<...>-24151 ( 24151) [006] d..5 24572.708459: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
27842          <idle>-0     (-----) [007] .n.1 24572.708464: cpu_idle: state=4294967295 cpu_id=7
27843          <idle>-0     (-----) [007] d..2 24572.708467: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
27844<...>-23903 ( 23896) [004] .... 24572.708469: binder_transaction: transaction=1669102 dest_node=1334653 dest_proc=23968 dest_thread=24041 reply=0 flags=0x10 code=0x2
27845  Binder:23896_5-25989 (23896) [007] .... 24572.708469: binder_transaction_received: transaction=1669101
27846<...>-24151 ( 24151) [006] d..3 24572.708472: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
27847<...>-23903 ( 23896) [004] d..2 24572.708475: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=110 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
27848<...>-24041 ( 23968) [004] .... 24572.708477: binder_transaction_received: transaction=1669102
27849<...>-24151 ( 24151) [006] d..4 24572.708478: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
27850  Binder:23896_5-25989 (23896) [007] d..1 24572.708479: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
27851<...>-24041 ( 23968) [004] .... 24572.708484: binder_transaction: transaction=1669103 dest_node=0 dest_proc=23896 dest_thread=23903 reply=1 flags=0x0 code=0x0
27852<...>-24041 ( 23968) [004] d..2 24572.708485: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=004
27853<...>-24041 ( 23968) [004] dn.3 24572.708488: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=004
27854<...>-24041 ( 23968) [004] d..2 24572.708490: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
27855<...>-23903 ( 23896) [004] .... 24572.708491: binder_transaction_received: transaction=1669103
27856          <idle>-0     (-----) [001] dnh2 24572.708493: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
27857  Binder:23896_5-25989 (23896) [007] d..2 24572.708494: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
27858          <idle>-0     (-----) [001] .n.1 24572.708496: cpu_idle: state=4294967295 cpu_id=1
27859          <idle>-0     (-----) [007] d..1 24572.708496: cpu_idle: state=0 cpu_id=7
27860          <idle>-0     (-----) [001] d..2 24572.708501: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
27861<...>-23903 ( 23896) [004] .... 24572.708507: binder_transaction: transaction=1669104 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
27862<...>-23903 ( 23896) [004] .... 24572.708508: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
27863<...>-23903 ( 23896) [004] d..2 24572.708517: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
27864<...>-24041 ( 23968) [004] .... 24572.708518: binder_transaction_received: transaction=1669104
27865  appEventThread-23905 (23896) [001] d..2 24572.708520: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27866          <idle>-0     (-----) [001] d..1 24572.708526: cpu_idle: state=0 cpu_id=1
27867<...>-24041 ( 23968) [004] .... 24572.708529: binder_transaction: transaction=1669105 dest_node=1669016 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
27868<...>-24041 ( 23968) [004] ...2 24572.708530: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
27869<...>-24041 ( 23968) [004] d..4 24572.708531: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=004
27870<...>-24041 ( 23968) [004] dn.5 24572.708534: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=004
27871<...>-24041 ( 23968) [004] d..2 24572.708536: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
27872<...>-23903 ( 23896) [004] .... 24572.708537: binder_transaction_received: transaction=1669105
27873<...>-24151 ( 24151) [006] d..2 24572.708545: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
27874<...>-23903 ( 23896) [004] ...1 24572.708555: tracing_mark_write: B|23896|HIDL::IMapper::createDescriptor_2_1::passthrough
27875<...>-23903 ( 23896) [004] ...1 24572.708560: tracing_mark_write: E|23896
27876<...>-23903 ( 23896) [004] ...1 24572.708568: tracing_mark_write: B|23896|HIDL::IAllocator::allocate::client
27877<...>-23903 ( 23896) [004] ...1 24572.708569: tracing_mark_write: E|23896
27878    RenderThread-24437 (24151) [006] d..1 24572.708598: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
27879<...>-23903 ( 23896) [004] .... 24572.708601: binder_transaction: transaction=1669106 dest_node=959 dest_proc=786 dest_thread=0 reply=0 flags=0x10 code=0x2
27880    RenderThread-24437 (24151) [006] d..2 24572.708608: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
27881          <idle>-0     (-----) [007] .n.1 24572.708612: cpu_idle: state=4294967295 cpu_id=7
27882<...>-23903 ( 23896) [004] ...2 24572.708614: binder_set_priority: proc=786 thread=816 old=120 => new=110 desired=110
27883<...>-23903 ( 23896) [004] d..4 24572.708615: sched_waking: comm=HwBinder:786_2 pid=816 prio=110 target_cpu=001
27884          <idle>-0     (-----) [007] d..2 24572.708615: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
27885<...>-23903 ( 23896) [004] d..5 24572.708630: sched_wakeup: comm=HwBinder:786_2 pid=816 prio=110 target_cpu=007
27886<...>-24151 ( 24151) [007] d..2 24572.708634: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R+ ==> next_comm=HwBinder:786_2 next_pid=816 next_prio=110
27887    RenderThread-24437 (24151) [006] .... 24572.708636: binder_transaction: transaction=1669107 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
27888    RenderThread-24437 (24151) [006] d..4 24572.708638: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
27889<...>-23903 ( 23896) [004] d.h5 24572.708654: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
27890    RenderThread-24437 (24151) [006] d..5 24572.708658: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=006
27891<...>-23903 ( 23896) [004] d.h6 24572.708662: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
27892    RenderThread-24437 (24151) [006] d..2 24572.708662: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
27893<...>-23903 ( 23896) [004] d.h5 24572.708663: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
27894  Binder:23896_5-25989 (23896) [006] .... 24572.708665: binder_transaction_received: transaction=1669107
27895<...>-816 ( 786) [007] d..2 24572.708671: sched_switch: prev_comm=HwBinder:786_2 prev_pid=816 prev_prio=110 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
27896<...>-23903 ( 23896) [004] d..2 24572.708672: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=110 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
27897          <idle>-0     (-----) [001] dnh2 24572.708675: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
27898         sugov:4-560   (  560) [007] d..2 24572.708675: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=HwBinder:786_2 next_pid=816 next_prio=110
27899          <idle>-0     (-----) [001] .n.1 24572.708678: cpu_idle: state=4294967295 cpu_id=1
27900<...>-24041 ( 23968) [004] d..2 24572.708678: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
27901<...>-816 ( 786) [007] d.h1 24572.708680: sched_waking: comm=PowerManagerSer pid=24006 prio=116 target_cpu=007
27902          <idle>-0     (-----) [001] d..2 24572.708683: 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
27903          <idle>-0     (-----) [004] d..1 24572.708683: cpu_idle: state=0 cpu_id=4
27904  Binder:23896_5-25989 (23896) [006] .... 24572.708684: binder_transaction: transaction=1669108 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
27905<...>-816 ( 786) [007] d.h2 24572.708687: sched_wakeup: comm=PowerManagerSer pid=24006 prio=116 target_cpu=007
27906<...>-816 ( 786) [007] .... 24572.708690: binder_transaction_received: transaction=1669106
27907         sugov:0-559   (  559) [001] d..2 24572.708695: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27908          <idle>-0     (-----) [001] d..1 24572.708700: cpu_idle: state=0 cpu_id=1
27909<...>-816 ( 786) [007] ...1 24572.708714: tracing_mark_write: B|786|HIDL::IAllocator::allocate::server
27910  Binder:23896_5-25989 (23896) [006] d..2 24572.708714: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
27911  Binder:23896_5-25989 (23896) [006] d..3 24572.708718: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
27912  Binder:23896_5-25989 (23896) [006] d..2 24572.708726: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
27913    RenderThread-24437 (24151) [006] .... 24572.708727: binder_transaction_received: transaction=1669108
27914<...>-816 ( 786) [007] ...1 24572.708742: tracing_mark_write: B|786|AllocBuffer
27915<...>-816 ( 786) [007] ...1 24572.708747: tracing_mark_write: B|786|ION_IOC_ALLOC size: 9400320
27916<...>-816 ( 786) [007] ...1 24572.708826: tracing_mark_write: E|786
27917<...>-816 ( 786) [007] ...1 24572.708828: tracing_mark_write: B|786|ION_IOC_MAP
27918<...>-816 ( 786) [007] ...1 24572.708836: tracing_mark_write: E|786
27919<...>-816 ( 786) [007] ...1 24572.708838: tracing_mark_write: E|786
27920<...>-816 ( 786) [007] ...1 24572.708839: tracing_mark_write: B|786|AllocBuffer
27921<...>-816 ( 786) [007] ...1 24572.708840: tracing_mark_write: B|786|ION_IOC_ALLOC size: 20480
27922<...>-816 ( 786) [007] ...1 24572.708844: tracing_mark_write: E|786
27923<...>-816 ( 786) [007] ...1 24572.708845: tracing_mark_write: B|786|ION_IOC_MAP
27924<...>-816 ( 786) [007] ...1 24572.708847: tracing_mark_write: E|786
27925<...>-816 ( 786) [007] ...1 24572.708848: tracing_mark_write: E|786
27926<...>-816 ( 786) [007] ...1 24572.708878: tracing_mark_write: E|786
27927<...>-816 ( 786) [007] .... 24572.708889: binder_transaction: transaction=1669109 dest_node=0 dest_proc=23896 dest_thread=23903 reply=1 flags=0x0 code=0x0
27928<...>-816 ( 786) [007] d..2 24572.708912: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=004
27929<...>-816 ( 786) [007] d..3 24572.708920: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=004
27930<...>-816 ( 786) [007] .... 24572.708921: binder_set_priority: proc=786 thread=816 old=110 => new=120 desired=120
27931          <idle>-0     (-----) [004] .n.1 24572.708925: cpu_idle: state=4294967295 cpu_id=4
27932<...>-816 ( 786) [007] d..2 24572.708925: sched_switch: prev_comm=HwBinder:786_2 prev_pid=816 prev_prio=120 prev_state=R+ ==> next_comm=PowerManagerSer next_pid=24006 next_prio=116
27933          <idle>-0     (-----) [004] d..2 24572.708928: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
27934<...>-23903 ( 23896) [004] .... 24572.708930: binder_transaction_received: transaction=1669109
27935<...>-23903 ( 23896) [004] ...1 24572.708939: tracing_mark_write: B|23896|HIDL::IMapper::importBuffer::passthrough
27936 PowerManagerSer-24006 (23968) [007] d..2 24572.708962: sched_switch: prev_comm=PowerManagerSer prev_pid=24006 prev_prio=116 prev_state=S ==> next_comm=HwBinder:786_2 next_pid=816 next_prio=120
27937<...>-23903 ( 23896) [004] ...1 24572.708970: tracing_mark_write: E|23896
27938<...>-816 ( 786) [007] ...1 24572.708972: tracing_mark_write: B|786|FreeBuffer
27939<...>-816 ( 786) [007] ...1 24572.708977: tracing_mark_write: E|786
27940<...>-816 ( 786) [007] ...1 24572.708978: tracing_mark_write: B|786|FreeBuffer
27941<...>-816 ( 786) [007] ...1 24572.708979: tracing_mark_write: B|786|UnmapBuffer
27942<...>-23903 ( 23896) [004] ...1 24572.708985: tracing_mark_write: B|23896|HIDL::IMapper::getTransportSize::passthrough
27943<...>-23903 ( 23896) [004] ...1 24572.708988: tracing_mark_write: E|23896
27944<...>-816 ( 786) [007] ...1 24572.708992: tracing_mark_write: E|786
27945<...>-816 ( 786) [007] ...1 24572.708994: tracing_mark_write: E|786
27946<...>-23903 ( 23896) [004] .... 24572.709003: binder_transaction: transaction=1669110 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
27947<...>-23903 ( 23896) [004] d..2 24572.709004: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=004
27948<...>-816 ( 786) [007] d..2 24572.709006: sched_switch: prev_comm=HwBinder:786_2 prev_pid=816 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
27949<...>-23903 ( 23896) [004] d..3 24572.709009: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=004
27950<...>-23903 ( 23896) [004] .... 24572.709010: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
27951<...>-23903 ( 23896) [004] d..2 24572.709021: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
27952<...>-24041 ( 23968) [004] .... 24572.709023: binder_transaction_received: transaction=1669110
27953<...>-24151 ( 24151) [007] d..2 24572.709024: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
27954          <idle>-0     (-----) [007] d..1 24572.709029: cpu_idle: state=0 cpu_id=7
27955<...>-24041 ( 23968) [004] .... 24572.709034: binder_transaction: transaction=1669111 dest_node=1669016 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x1
27956<...>-24041 ( 23968) [004] ...2 24572.709036: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
27957<...>-24041 ( 23968) [004] d..4 24572.709037: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=004
27958<...>-24041 ( 23968) [004] dn.5 24572.709040: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=004
27959<...>-24041 ( 23968) [004] d..2 24572.709043: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
27960<...>-23903 ( 23896) [004] .... 24572.709044: binder_transaction_received: transaction=1669111
27961<...>-23903 ( 23896) [004] .... 24572.709057: binder_transaction: transaction=1669112 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
27962<...>-23903 ( 23896) [004] .... 24572.709070: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
27963<...>-23903 ( 23896) [004] d..2 24572.709081: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
27964<...>-24041 ( 23968) [004] .... 24572.709083: binder_transaction_received: transaction=1669112
27965<...>-24041 ( 23968) [004] ...1 24572.709098: tracing_mark_write: B|23968|HIDL::IMapper::importBuffer::passthrough
27966<...>-24041 ( 23968) [004] ...1 24572.709120: tracing_mark_write: E|23968
27967<...>-24041 ( 23968) [004] ...1 24572.709125: tracing_mark_write: B|23968|HIDL::IMapper::validateBufferSize::passthrough
27968<...>-24041 ( 23968) [004] ...1 24572.709132: tracing_mark_write: E|23968
27969<...>-24041 ( 23968) [004] ...1 24572.709135: tracing_mark_write: B|23968|HIDL::IMapper::getTransportSize::passthrough
27970<...>-24041 ( 23968) [004] ...1 24572.709136: tracing_mark_write: E|23968
27971<...>-24041 ( 23968) [004] ...1 24572.709151: tracing_mark_write: B|23968|HIDL::IMapper::lock::passthrough
27972<...>-24041 ( 23968) [004] ...1 24572.709155: tracing_mark_write: B|23968|MapBuffer
27973<...>-24041 ( 23968) [004] ...1 24572.709181: tracing_mark_write: E|23968
27974<...>-24041 ( 23968) [004] ...1 24572.709182: tracing_mark_write: B|23968|CleanBuffer
27975<...>-24041 ( 23968) [004] ...1 24572.709184: tracing_mark_write: C|23968|operation id|2
27976    RenderThread-24437 (24151) [006] d..2 24572.709492: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
27977          <idle>-0     (-----) [006] d..1 24572.709497: cpu_idle: state=0 cpu_id=6
27978          <idle>-0     (-----) [006] d.h2 24572.709589: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
27979          <idle>-0     (-----) [006] d.h3 24572.709593: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
27980          <idle>-0     (-----) [006] dnh3 24572.709594: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
27981          <idle>-0     (-----) [006] .n.1 24572.709597: cpu_idle: state=4294967295 cpu_id=6
27982          <idle>-0     (-----) [006] d..2 24572.709601: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
27983<...>-24041 ( 23968) [004] ...1 24572.709670: tracing_mark_write: E|23968
27984<...>-24041 ( 23968) [004] ...1 24572.709672: tracing_mark_write: E|23968
27985    RenderThread-24437 (24151) [006] .... 24572.709687: binder_transaction: transaction=1669113 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
27986    RenderThread-24437 (24151) [006] d..4 24572.709690: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
27987    RenderThread-24437 (24151) [006] dn.5 24572.709697: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
27988    RenderThread-24437 (24151) [006] d..2 24572.709700: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
27989<...>-23903 ( 23896) [006] .... 24572.709702: binder_transaction_received: transaction=1669113
27990          <idle>-0     (-----) [000] d.h3 24572.709706: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
27991          <idle>-0     (-----) [007] dnh2 24572.709721: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
27992          <idle>-0     (-----) [000] ...1 24572.709723: cpu_idle: state=4294967295 cpu_id=0
27993          <idle>-0     (-----) [007] .n.1 24572.709724: cpu_idle: state=4294967295 cpu_id=7
27994          <idle>-0     (-----) [000] d..1 24572.709726: cpu_idle: state=0 cpu_id=0
27995          <idle>-0     (-----) [007] d..2 24572.709727: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
27996 kgsl_worker_thr-246   (  246) [007] d..2 24572.709750: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
27997 kgsl_worker_thr-246   (  246) [007] d..3 24572.709758: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
27998<...>-23903 ( 23896) [006] .... 24572.709762: binder_transaction: transaction=1669114 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
27999 kgsl_worker_thr-246   (  246) [007] d..2 24572.709764: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28000<...>-23903 ( 23896) [006] d..2 24572.709772: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
28001    RenderThread-24437 (24151) [006] .... 24572.709774: binder_transaction_received: transaction=1669114
28002  kworker/u16:10-23868 (23868) [007] d..2 24572.709785: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
28003          <idle>-0     (-----) [007] d..1 24572.709788: cpu_idle: state=0 cpu_id=7
28004    RenderThread-24437 (24151) [006] d..2 24572.709803: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
28005          <idle>-0     (-----) [006] d..1 24572.709808: cpu_idle: state=0 cpu_id=6
28006           <...>-13131 (-----) [005] d..3 24572.709854: sched_waking: comm=RenderThread pid=13151 prio=110 target_cpu=004
28007           <...>-13131 (-----) [005] d..4 24572.709867: sched_wakeup: comm=RenderThread pid=13151 prio=110 target_cpu=006
28008          <idle>-0     (-----) [006] .n.1 24572.709872: cpu_idle: state=4294967295 cpu_id=6
28009          <idle>-0     (-----) [006] d..2 24572.709876: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=110
28010           <...>-13131 (-----) [005] d..2 24572.709878: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
28011          <idle>-0     (-----) [005] d..1 24572.709882: cpu_idle: state=0 cpu_id=5
28012           <...>-13151 (-----) [006] d..1 24572.709886: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
28013           <...>-13151 (-----) [006] d..2 24572.709893: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
28014          <idle>-0     (-----) [005] .n.1 24572.709898: cpu_idle: state=4294967295 cpu_id=5
28015           <...>-13151 (-----) [006] d..2 24572.709900: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
28016          <idle>-0     (-----) [005] d..2 24572.709901: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
28017          <idle>-0     (-----) [006] d..1 24572.709904: cpu_idle: state=0 cpu_id=6
28018           <...>-13131 (-----) [005] .... 24572.709966: binder_transaction: transaction=1669115 dest_node=1669030 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x6
28019           <...>-13131 (-----) [005] ...2 24572.709973: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
28020           <...>-13131 (-----) [005] d..4 24572.709974: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=007
28021           <...>-13131 (-----) [005] d..5 24572.709986: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
28022          <idle>-0     (-----) [006] .n.1 24572.709990: cpu_idle: state=4294967295 cpu_id=6
28023           <...>-13131 (-----) [005] d..2 24572.709992: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
28024          <idle>-0     (-----) [006] d..2 24572.709993: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
28025          <idle>-0     (-----) [005] d..1 24572.709995: cpu_idle: state=0 cpu_id=5
28026<...>-12589 ( 23968) [006] .... 24572.709996: binder_transaction_received: transaction=1669115
28027<...>-12589 ( 23968) [006] d..3 24572.710329: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=005
28028<...>-12589 ( 23968) [006] d..4 24572.710341: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=005
28029          <idle>-0     (-----) [005] .n.1 24572.710345: cpu_idle: state=4294967295 cpu_id=5
28030          <idle>-0     (-----) [005] d..2 24572.710347: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
28031<...>-24003 ( 23968) [005] d..2 24572.710379: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
28032          <idle>-0     (-----) [005] d..1 24572.710382: cpu_idle: state=0 cpu_id=5
28033<...>-12589 ( 23968) [006] .... 24572.710466: binder_transaction: transaction=1669116 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
28034<...>-12589 ( 23968) [006] d..4 24572.710470: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=000
28035<...>-12589 ( 23968) [006] d..5 24572.710486: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=007
28036          <idle>-0     (-----) [007] .n.1 24572.710490: cpu_idle: state=4294967295 cpu_id=7
28037          <idle>-0     (-----) [007] d..2 24572.710508: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
28038<...>-12589 ( 23968) [006] d.h5 24572.710508: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
28039<...>-12589 ( 23968) [006] d.h6 24572.710518: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
28040<...>-12589 ( 23968) [006] d.h5 24572.710519: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
28041          <idle>-0     (-----) [005] .n.1 24572.710522: cpu_idle: state=4294967295 cpu_id=5
28042          <idle>-0     (-----) [005] d..2 24572.710525: 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
28043<...>-24177 ( 24151) [007] .... 24572.710526: binder_transaction_received: transaction=1669116
28044          <idle>-0     (-----) [001] dnh2 24572.710530: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
28045         sugov:4-560   (  560) [005] d..2 24572.710531: 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
28046          <idle>-0     (-----) [005] d..1 24572.710532: cpu_idle: state=0 cpu_id=5
28047          <idle>-0     (-----) [001] .n.1 24572.710534: cpu_idle: state=4294967295 cpu_id=1
28048          <idle>-0     (-----) [001] d..2 24572.710538: 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
28049         sugov:0-559   (  559) [001] d..2 24572.710549: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
28050          <idle>-0     (-----) [001] d..1 24572.710554: cpu_idle: state=0 cpu_id=1
28051<...>-24177 ( 24151) [007] d..3 24572.710583: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
28052<...>-12589 ( 23968) [006] d..3 24572.710586: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=000
28053<...>-24177 ( 24151) [007] d..4 24572.710588: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
28054<...>-12589 ( 23968) [006] d..4 24572.710600: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=007
28055<...>-24177 ( 24151) [007] d..2 24572.710618: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=23994 next_prio=118
28056<...>-23994 ( 23968) [007] d..3 24572.710662: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=000
28057<...>-23994 ( 23968) [007] d..4 24572.710676: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=007
28058<...>-23994 ( 23968) [007] d..2 24572.710706: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
28059<...>-23968 ( 23968) [007] .... 24572.710744: binder_transaction: transaction=1669117 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
28060<...>-23968 ( 23968) [007] d..4 24572.710747: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=007
28061<...>-23968 ( 23968) [007] d..5 24572.710752: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=007
28062<...>-23968 ( 23968) [007] d..2 24572.710770: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
28063<...>-24177 ( 24151) [007] .... 24572.710772: binder_transaction_received: transaction=1669117
28064<...>-24177 ( 24151) [007] d..2 24572.710813: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
28065<...>-12589 ( 23968) [006] .... 24572.710831: binder_transaction: transaction=1669118 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
28066<...>-12589 ( 23968) [006] ...2 24572.710841: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
28067<...>-12589 ( 23968) [006] d..4 24572.710843: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=006
28068<...>-12589 ( 23968) [006] dn.5 24572.710848: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=006
28069<...>-12589 ( 23968) [006] d..2 24572.710851: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
28070<...>-23903 ( 23896) [006] .... 24572.710853: binder_transaction_received: transaction=1669118
28071<...>-24151 ( 24151) [007] d..2 24572.710877: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
28072          <idle>-0     (-----) [007] d..1 24572.710888: cpu_idle: state=0 cpu_id=7
28073          <idle>-0     (-----) [005] d.s2 24572.710892: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
28074<...>-23903 ( 23896) [006] d.s2 24572.710893: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
28075          <idle>-0     (-----) [005] dns3 24572.710897: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
28076<...>-23903 ( 23896) [006] d.s3 24572.710901: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
28077          <idle>-0     (-----) [005] .n.1 24572.710903: cpu_idle: state=4294967295 cpu_id=5
28078          <idle>-0     (-----) [007] .n.1 24572.710906: cpu_idle: state=4294967295 cpu_id=7
28079          <idle>-0     (-----) [005] d..2 24572.710906: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
28080          <idle>-0     (-----) [007] d..2 24572.710910: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28081     rcu_preempt-7     (    7) [005] d..2 24572.710918: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
28082          <idle>-0     (-----) [005] d..1 24572.710921: cpu_idle: state=0 cpu_id=5
28083<...>-23903 ( 23896) [006] .... 24572.710925: binder_transaction: transaction=1669119 dest_node=0 dest_proc=23968 dest_thread=12589 reply=1 flags=0x0 code=0x0
28084<...>-23903 ( 23896) [006] .... 24572.710927: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
28085<...>-23903 ( 23896) [006] d..2 24572.710943: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
28086<...>-12589 ( 23968) [006] .... 24572.710945: binder_transaction_received: transaction=1669119
28087  kworker/u16:10-23868 (23868) [007] d..2 24572.711033: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
28088          <idle>-0     (-----) [007] d..1 24572.711036: cpu_idle: state=0 cpu_id=7
28089          <idle>-0     (-----) [003] d.s3 24572.711066: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
28090          <idle>-0     (-----) [003] ...1 24572.711077: cpu_idle: state=4294967295 cpu_id=3
28091          <idle>-0     (-----) [007] d.h2 24572.711079: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
28092          <idle>-0     (-----) [003] d..1 24572.711079: cpu_idle: state=0 cpu_id=3
28093          <idle>-0     (-----) [007] dnh2 24572.711081: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
28094          <idle>-0     (-----) [007] .n.1 24572.711083: cpu_idle: state=4294967295 cpu_id=7
28095          <idle>-0     (-----) [007] d..2 24572.711086: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28096  kworker/u16:10-23868 (23868) [007] d..2 24572.711253: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
28097          <idle>-0     (-----) [007] d..1 24572.711256: cpu_idle: state=0 cpu_id=7
28098          <idle>-0     (-----) [003] d.s3 24572.711288: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
28099          <idle>-0     (-----) [003] ...1 24572.711298: cpu_idle: state=4294967295 cpu_id=3
28100          <idle>-0     (-----) [007] d.h2 24572.711298: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
28101          <idle>-0     (-----) [007] dnh2 24572.711299: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
28102          <idle>-0     (-----) [003] d..1 24572.711300: cpu_idle: state=0 cpu_id=3
28103          <idle>-0     (-----) [007] .n.1 24572.711301: cpu_idle: state=4294967295 cpu_id=7
28104          <idle>-0     (-----) [007] d..2 24572.711304: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28105<...>-12589 ( 23968) [006] d..3 24572.711314: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
28106  kworker/u16:10-23868 (23868) [007] d..2 24572.711317: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
28107          <idle>-0     (-----) [007] d..1 24572.711319: cpu_idle: state=0 cpu_id=7
28108<...>-12589 ( 23968) [006] d..4 24572.711326: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=007
28109          <idle>-0     (-----) [007] .n.1 24572.711330: cpu_idle: state=4294967295 cpu_id=7
28110          <idle>-0     (-----) [007] d..2 24572.711333: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
28111<...>-24073 ( 23968) [007] d..2 24572.711351: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
28112          <idle>-0     (-----) [007] d..1 24572.711354: cpu_idle: state=0 cpu_id=7
28113<...>-12589 ( 23968) [006] .... 24572.711448: binder_transaction: transaction=1669120 dest_node=1669084 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x1
28114<...>-12589 ( 23968) [006] ...2 24572.711451: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
28115<...>-12589 ( 23968) [006] d..4 24572.711452: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=006
28116<...>-12589 ( 23968) [006] dn.5 24572.711457: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=006
28117<...>-12589 ( 23968) [006] d..2 24572.711460: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
28118<...>-23903 ( 23896) [006] .... 24572.711462: binder_transaction_received: transaction=1669120
28119<...>-23903 ( 23896) [006] d..3 24572.711479: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
28120<...>-23903 ( 23896) [006] d..2 24572.711490: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=110 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
28121          <idle>-0     (-----) [002] dnh2 24572.711494: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
28122<...>-12589 ( 23968) [006] d..2 24572.711497: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
28123          <idle>-0     (-----) [002] .n.1 24572.711498: cpu_idle: state=4294967295 cpu_id=2
28124          <idle>-0     (-----) [006] d..1 24572.711503: cpu_idle: state=0 cpu_id=6
28125          <idle>-0     (-----) [002] d..2 24572.711505: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
28126          <idle>-0     (-----) [007] ...1 24572.711544: cpu_idle: state=4294967295 cpu_id=7
28127          <idle>-0     (-----) [007] d..1 24572.711545: cpu_idle: state=0 cpu_id=7
28128<...>-24041 ( 23968) [004] ...1 24572.711561: tracing_mark_write: B|23968|HIDL::IMapper::unlock::passthrough
28129<...>-24041 ( 23968) [004] ...1 24572.711569: tracing_mark_write: B|23968|CleanBuffer
28130<...>-24041 ( 23968) [004] ...1 24572.711571: tracing_mark_write: C|23968|operation id|1
28131  surfaceflinger-23896 (23896) [002] ...1 24572.711611: tracing_mark_write: B|23896|HIDL::IComposerClient::getActiveConfig::client
28132  surfaceflinger-23896 (23896) [002] ...1 24572.711614: tracing_mark_write: E|23896
28133  surfaceflinger-23896 (23896) [002] .... 24572.711634: binder_transaction: transaction=1669121 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x7
28134  surfaceflinger-23896 (23896) [002] ...2 24572.711641: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
28135  surfaceflinger-23896 (23896) [002] d..4 24572.711649: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
28136          <idle>-0     (-----) [007] dnh2 24572.711670: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
28137          <idle>-0     (-----) [007] .n.1 24572.711672: cpu_idle: state=4294967295 cpu_id=7
28138          <idle>-0     (-----) [007] d..2 24572.711675: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
28139  HwBinder:598_3-633   (  598) [007] .... 24572.711680: binder_transaction_received: transaction=1669121
28140  surfaceflinger-23896 (23896) [002] d..2 24572.711681: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28141          <idle>-0     (-----) [002] d..1 24572.711689: cpu_idle: state=0 cpu_id=2
28142          <idle>-0     (-----) [006] ...1 24572.711694: cpu_idle: state=4294967295 cpu_id=6
28143          <idle>-0     (-----) [006] d..1 24572.711695: cpu_idle: state=0 cpu_id=6
28144  HwBinder:598_3-633   (  598) [007] ...1 24572.711705: tracing_mark_write: B|598|HIDL::IComposerClient::getActiveConfig::server
28145  HwBinder:598_3-633   (  598) [007] ...1 24572.711723: tracing_mark_write: E|598
28146  HwBinder:598_3-633   (  598) [007] .... 24572.711729: binder_transaction: transaction=1669122 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
28147  HwBinder:598_3-633   (  598) [007] d..2 24572.711731: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
28148  HwBinder:598_3-633   (  598) [007] .... 24572.711738: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
28149          <idle>-0     (-----) [002] dnh2 24572.711746: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
28150          <idle>-0     (-----) [002] .n.1 24572.711750: cpu_idle: state=4294967295 cpu_id=2
28151          <idle>-0     (-----) [002] d..2 24572.711755: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
28152  HwBinder:598_3-633   (  598) [007] d..2 24572.711755: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
28153  surfaceflinger-23896 (23896) [002] .... 24572.711758: binder_transaction_received: transaction=1669122
28154          <idle>-0     (-----) [007] d..1 24572.711759: cpu_idle: state=0 cpu_id=7
28155  surfaceflinger-23896 (23896) [002] d..1 24572.711852: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=006
28156          <idle>-0     (-----) [005] dnh2 24572.711871: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
28157          <idle>-0     (-----) [005] .n.1 24572.711874: cpu_idle: state=4294967295 cpu_id=5
28158          <idle>-0     (-----) [005] d..2 24572.711877: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
28159  surfaceflinger-23896 (23896) [002] d..2 24572.711884: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28160          <idle>-0     (-----) [002] d..1 24572.711891: cpu_idle: state=0 cpu_id=2
28161<...>-23903 ( 23896) [005] .... 24572.711891: binder_transaction: transaction=1669123 dest_node=0 dest_proc=23968 dest_thread=12589 reply=1 flags=0x0 code=0x0
28162          <idle>-0     (-----) [007] ...1 24572.711950: cpu_idle: state=4294967295 cpu_id=7
28163          <idle>-0     (-----) [007] d..1 24572.711951: cpu_idle: state=0 cpu_id=7
28164<...>-23903 ( 23896) [005] d..2 24572.712008: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
28165<...>-23903 ( 23896) [005] d..3 24572.712016: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
28166<...>-23903 ( 23896) [005] .... 24572.712018: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
28167          <idle>-0     (-----) [006] .n.1 24572.712021: cpu_idle: state=4294967295 cpu_id=6
28168          <idle>-0     (-----) [006] d..2 24572.712024: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
28169<...>-12589 ( 23968) [006] .... 24572.712026: binder_transaction_received: transaction=1669123
28170<...>-23903 ( 23896) [005] d..2 24572.712041: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
28171          <idle>-0     (-----) [005] d..1 24572.712045: cpu_idle: state=0 cpu_id=5
28172<...>-12589 ( 23968) [006] .... 24572.712048: binder_transaction: transaction=1669128 dest_node=1669126 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
28173<...>-12589 ( 23968) [006] ...2 24572.712050: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
28174<...>-12589 ( 23968) [006] d..4 24572.712051: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
28175<...>-24041 ( 23968) [004] ...1 24572.712053: tracing_mark_write: E|23968
28176<...>-24041 ( 23968) [004] ...1 24572.712055: tracing_mark_write: E|23968
28177<...>-12589 ( 23968) [006] dn.5 24572.712058: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=006
28178<...>-12589 ( 23968) [006] d..2 24572.712061: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
28179<...>-23903 ( 23896) [006] .... 24572.712062: binder_transaction_received: transaction=1669128
28180<...>-23903 ( 23896) [006] .... 24572.712069: binder_transaction: transaction=1669129 dest_node=0 dest_proc=23968 dest_thread=12589 reply=1 flags=0x8 code=0x0
28181<...>-23903 ( 23896) [006] .... 24572.712071: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
28182<...>-24041 ( 23968) [004] .... 24572.712075: binder_transaction: transaction=1669130 dest_node=1669016 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
28183<...>-24041 ( 23968) [004] ...2 24572.712078: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
28184<...>-24041 ( 23968) [004] d..4 24572.712079: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=006
28185<...>-24041 ( 23968) [004] dn.5 24572.712088: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
28186<...>-24041 ( 23968) [004] d..2 24572.712092: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
28187<...>-23903 ( 23896) [006] d..2 24572.712093: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
28188<...>-12589 ( 23968) [006] .... 24572.712095: binder_transaction_received: transaction=1669129
28189  Binder:23896_5-25989 (23896) [004] .... 24572.712095: binder_transaction_received: transaction=1669130
28190  Binder:23896_5-25989 (23896) [004] .... 24572.712151: binder_transaction: transaction=1669131 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
28191  Binder:23896_5-25989 (23896) [004] .... 24572.712153: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
28192  Binder:23896_5-25989 (23896) [004] d..2 24572.712166: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
28193<...>-24041 ( 23968) [004] .... 24572.712168: binder_transaction_received: transaction=1669131
28194<...>-24041 ( 23968) [004] d.h1 24572.712189: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=004
28195<...>-24041 ( 23968) [004] d.h2 24572.712200: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=007
28196          <idle>-0     (-----) [007] .n.1 24572.712204: cpu_idle: state=4294967295 cpu_id=7
28197          <idle>-0     (-----) [007] d..2 24572.712207: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
28198<...>-24041 ( 23968) [004] d..2 24572.712216: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
28199        DispSync-23904 (23896) [007] d..1 24572.712218: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
28200          <idle>-0     (-----) [004] d..1 24572.712224: cpu_idle: state=0 cpu_id=4
28201          <idle>-0     (-----) [000] dnh2 24572.712232: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
28202          <idle>-0     (-----) [000] .n.1 24572.712236: cpu_idle: state=4294967295 cpu_id=0
28203        DispSync-23904 (23896) [007] d..2 24572.712236: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
28204          <idle>-0     (-----) [007] d..1 24572.712239: cpu_idle: state=0 cpu_id=7
28205          <idle>-0     (-----) [000] d..2 24572.712243: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
28206<...>-12589 ( 23968) [006] d..3 24572.712258: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=007
28207<...>-12589 ( 23968) [006] d..4 24572.712265: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=007
28208          <idle>-0     (-----) [007] .n.1 24572.712270: cpu_idle: state=4294967295 cpu_id=7
28209          <idle>-0     (-----) [007] d..2 24572.712273: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
28210   sfEventThread-23906 (23896) [000] d..3 24572.712288: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
28211<...>-23994 ( 23968) [007] d..3 24572.712298: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=007
28212   sfEventThread-23906 (23896) [000] d..4 24572.712298: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
28213          <idle>-0     (-----) [002] .n.1 24572.712302: cpu_idle: state=4294967295 cpu_id=2
28214<...>-23994 ( 23968) [007] d..4 24572.712303: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=007
28215          <idle>-0     (-----) [002] d..2 24572.712308: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
28216   sfEventThread-23906 (23896) [000] d..2 24572.712316: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28217          <idle>-0     (-----) [000] d..1 24572.712322: cpu_idle: state=0 cpu_id=0
28218<...>-23994 ( 23968) [007] d..2 24572.712324: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
28219<...>-23968 ( 23968) [007] .... 24572.712373: binder_transaction: transaction=1669132 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x9
28220<...>-23968 ( 23968) [007] d..4 24572.712375: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=007
28221<...>-23968 ( 23968) [007] d..5 24572.712380: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=007
28222<...>-23968 ( 23968) [007] .... 24572.712403: binder_transaction: transaction=1669133 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
28223<...>-23968 ( 23968) [007] d..2 24572.712417: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
28224<...>-24177 ( 24151) [007] .... 24572.712419: binder_transaction_received: transaction=1669132
28225<...>-24177 ( 24151) [007] d..3 24572.712486: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
28226<...>-24177 ( 24151) [007] d..4 24572.712491: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
28227<...>-24177 ( 24151) [007] d..4 24572.712508: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
28228<...>-24177 ( 24151) [007] d..5 24572.712514: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
28229<...>-24177 ( 24151) [007] .... 24572.712516: binder_transaction_received: transaction=1669133
28230<...>-12589 ( 23968) [006] d..3 24572.712520: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=007
28231<...>-12589 ( 23968) [006] d..4 24572.712526: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=007
28232<...>-12589 ( 23968) [006] d..1 24572.712531: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=005
28233<...>-12589 ( 23968) [006] d..2 24572.712541: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=004
28234<...>-24177 ( 24151) [007] d..2 24572.712543: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
28235          <idle>-0     (-----) [004] .n.1 24572.712545: cpu_idle: state=4294967295 cpu_id=4
28236          <idle>-0     (-----) [004] d..2 24572.712550: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
28237<...>-24073 ( 23968) [007] d..2 24572.712555: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
28238<...>-24376 ( 24151) [007] d..2 24572.712560: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
28239          <idle>-0     (-----) [000] d.h2 24572.712581: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
28240<...>-24003 ( 23968) [004] d..1 24572.712584: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=004
28241          <idle>-0     (-----) [000] dnh3 24572.712588: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
28242          <idle>-0     (-----) [000] .n.1 24572.712592: cpu_idle: state=4294967295 cpu_id=0
28243<...>-24003 ( 23968) [004] d..2 24572.712594: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=005
28244          <idle>-0     (-----) [000] d..2 24572.712598: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
28245          <idle>-0     (-----) [005] .n.1 24572.712599: cpu_idle: state=4294967295 cpu_id=5
28246          <idle>-0     (-----) [005] d..2 24572.712602: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
28247<...>-24151 ( 24151) [007] .... 24572.712621: binder_transaction: transaction=1669134 dest_node=1271174 dest_proc=23968 dest_thread=0 reply=0 flags=0x11 code=0x42
28248<...>-24151 ( 24151) [007] d..4 24572.712625: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=007
28249<...>-24151 ( 24151) [007] d..5 24572.712632: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=007
28250<...>-12589 ( 23968) [006] .... 24572.712665: binder_transaction: transaction=1669136 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
28251<...>-24003 ( 23968) [004] .... 24572.712666: binder_transaction: transaction=1669135 dest_node=1669080 dest_proc=13131 dest_thread=0 reply=0 flags=0x11 code=0x6
28252<...>-24003 ( 23968) [004] d..4 24572.712670: sched_waking: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=006
28253<...>-24003 ( 23968) [004] d..5 24572.712680: sched_wakeup: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=004
28254<...>-12589 ( 23968) [006] d..2 24572.712681: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
28255<...>-12589 ( 23968) [006] d..3 24572.712689: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
28256<...>-12589 ( 23968) [006] .... 24572.712690: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
28257<...>-24041 ( 23968) [005] .... 24572.712695: binder_transaction: transaction=1669138 dest_node=1344517 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
28258<...>-24041 ( 23968) [005] d..4 24572.712697: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
28259<...>-24041 ( 23968) [005] d..5 24572.712706: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
28260<...>-12589 ( 23968) [006] d..2 24572.712707: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
28261           <...>-13131 (-----) [006] .... 24572.712710: binder_transaction_received: transaction=1669136
28262<...>-24003 ( 23968) [004] d..2 24572.712718: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=Binder:13131_3 next_pid=13145 next_prio=120
28263           <...>-13145 (-----) [004] .... 24572.712722: binder_transaction_received: transaction=1669135
28264  surfaceflinger-23896 (23896) [002] d..1 24572.712729: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
28265          <idle>-0     (-----) [003] d.s3 24572.712731: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
28266 irq/79-1436400.-24613 (24613) [000] d..2 24572.712744: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
28267  surfaceflinger-23896 (23896) [002] d..2 24572.712746: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
28268          <idle>-0     (-----) [001] .n.1 24572.712750: cpu_idle: state=4294967295 cpu_id=1
28269          <idle>-0     (-----) [003] d.s4 24572.712754: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
28270<...>-24151 ( 24151) [007] d..2 24572.712755: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
28271          <idle>-0     (-----) [001] d..2 24572.712756: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
28272          <idle>-0     (-----) [007] d..1 24572.712760: cpu_idle: state=0 cpu_id=7
28273          <idle>-0     (-----) [003] ...1 24572.712787: cpu_idle: state=4294967295 cpu_id=3
28274  Binder:23968_C-25014 (23968) [000] dnh4 24572.712788: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
28275          <idle>-0     (-----) [003] d..1 24572.712789: cpu_idle: state=0 cpu_id=3
28276   sfEventThread-23906 (23896) [001] d..2 24572.712795: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
28277          <idle>-0     (-----) [001] d..1 24572.712800: cpu_idle: state=0 cpu_id=1
28278  Binder:23968_C-25014 (23968) [000] dnh4 24572.712801: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
28279          <idle>-0     (-----) [007] dnh2 24572.712806: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
28280          <idle>-0     (-----) [007] .n.1 24572.712808: cpu_idle: state=4294967295 cpu_id=7
28281  Binder:23968_C-25014 (23968) [000] dnh5 24572.712810: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
28282          <idle>-0     (-----) [007] d..2 24572.712811: 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
28283          <idle>-0     (-----) [001] .n.1 24572.712814: cpu_idle: state=4294967295 cpu_id=1
28284         sugov:4-560   (  560) [007] d..2 24572.712817: 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
28285  Binder:23968_C-25014 (23968) [000] d..2 24572.712817: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
28286          <idle>-0     (-----) [007] d..1 24572.712819: cpu_idle: state=0 cpu_id=7
28287          <idle>-0     (-----) [001] d..2 24572.712819: 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
28288<...>-24041 ( 23968) [005] d..3 24572.712819: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=004
28289<...>-24041 ( 23968) [005] d..4 24572.712831: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=007
28290          <idle>-0     (-----) [007] .n.1 24572.712835: cpu_idle: state=4294967295 cpu_id=7
28291 irq/79-1436400.-24613 (24613) [000] d..2 24572.712835: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
28292          <idle>-0     (-----) [007] d..2 24572.712838: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
28293  Binder:23968_C-25014 (23968) [000] .... 24572.712838: binder_transaction_received: transaction=1669134
28294         sugov:0-559   (  559) [001] d..2 24572.712850: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
28295           <...>-13145 (-----) [004] d..2 24572.712851: sched_switch: prev_comm=Binder:13131_3 prev_pid=13145 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
28296<...>-24003 ( 23968) [007] d..2 24572.712856: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
28297          <idle>-0     (-----) [004] d..1 24572.712857: cpu_idle: state=0 cpu_id=4
28298          <idle>-0     (-----) [007] d..1 24572.712859: cpu_idle: state=0 cpu_id=7
28299  Binder:23896_5-25989 (23896) [001] .... 24572.712877: binder_transaction_received: transaction=1669138
28300  Binder:23896_5-25989 (23896) [001] d..1 24572.712893: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
28301  Binder:23896_5-25989 (23896) [001] d..2 24572.712908: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
28302          <idle>-0     (-----) [003] .n.1 24572.712913: cpu_idle: state=4294967295 cpu_id=3
28303<...>-24041 ( 23968) [005] .... 24572.712919: binder_transaction: transaction=1669139 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
28304          <idle>-0     (-----) [003] d..2 24572.712920: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
28305<...>-24041 ( 23968) [005] d..4 24572.712922: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
28306           <...>-13131 (-----) [006] .... 24572.712925: binder_transaction: transaction=1669140 dest_node=1669126 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
28307           <...>-13131 (-----) [006] ...2 24572.712927: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
28308<...>-24041 ( 23968) [005] d..5 24572.712929: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
28309  Binder:23896_5-25989 (23896) [001] d..2 24572.712929: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
28310           <...>-13131 (-----) [006] d..4 24572.712931: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
28311          <idle>-0     (-----) [007] .n.1 24572.712933: cpu_idle: state=4294967295 cpu_id=7
28312          <idle>-0     (-----) [007] d..2 24572.712937: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
28313          <idle>-0     (-----) [001] d..1 24572.712937: cpu_idle: state=0 cpu_id=1
28314<...>-24376 ( 24151) [007] .... 24572.712939: binder_transaction_received: transaction=1669139
28315           <...>-13131 (-----) [006] dn.5 24572.712943: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=006
28316<...>-24041 ( 23968) [005] d..3 24572.712961: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=007
28317           <...>-13131 (-----) [006] d..2 24572.712962: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
28318  appEventThread-23905 (23896) [003] d..2 24572.712962: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
28319  Binder:23896_5-25989 (23896) [006] .... 24572.712964: binder_transaction_received: transaction=1669140
28320<...>-24041 ( 23968) [005] d..4 24572.712967: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=007
28321          <idle>-0     (-----) [003] d..1 24572.712968: cpu_idle: state=0 cpu_id=3
28322  Binder:23896_5-25989 (23896) [006] .... 24572.712972: binder_transaction: transaction=1669141 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x8 code=0x0
28323<...>-24376 ( 24151) [007] d..3 24572.712973: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
28324  Binder:23896_5-25989 (23896) [006] .... 24572.712974: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
28325<...>-24376 ( 24151) [007] d..4 24572.712978: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
28326  Binder:23896_5-25989 (23896) [006] d..2 24572.712984: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
28327  Binder:23968_C-25014 (23968) [000] d..2 24572.712985: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28328           <...>-13131 (-----) [006] .... 24572.712986: binder_transaction_received: transaction=1669141
28329          <idle>-0     (-----) [000] d..1 24572.712994: cpu_idle: state=0 cpu_id=0
28330<...>-24376 ( 24151) [007] d..2 24572.712994: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=23994 next_prio=118
28331<...>-23994 ( 23968) [007] d..3 24572.713016: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=007
28332<...>-23994 ( 23968) [007] d..4 24572.713021: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=007
28333<...>-23994 ( 23968) [007] d..2 24572.713033: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
28334<...>-23968 ( 23968) [007] .... 24572.713054: binder_transaction: transaction=1669142 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
28335<...>-23968 ( 23968) [007] d..4 24572.713056: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
28336<...>-23968 ( 23968) [007] d..5 24572.713061: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
28337<...>-23968 ( 23968) [007] d..2 24572.713075: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
28338<...>-24376 ( 24151) [007] .... 24572.713077: binder_transaction_received: transaction=1669142
28339           <...>-13131 (-----) [006] d..3 24572.713095: sched_waking: comm=RenderThread pid=13151 prio=110 target_cpu=006
28340           <...>-13131 (-----) [006] d..4 24572.713106: sched_wakeup: comm=RenderThread pid=13151 prio=110 target_cpu=004
28341          <idle>-0     (-----) [004] .n.1 24572.713110: cpu_idle: state=4294967295 cpu_id=4
28342<...>-24376 ( 24151) [007] d..2 24572.713111: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
28343          <idle>-0     (-----) [004] d..2 24572.713114: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=110
28344           <...>-13131 (-----) [006] .... 24572.713118: binder_transaction: transaction=1669143 dest_node=1669126 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0xc
28345           <...>-13131 (-----) [006] ...2 24572.713120: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
28346           <...>-13131 (-----) [006] d..4 24572.713121: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=006
28347           <...>-13131 (-----) [006] dn.5 24572.713124: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=006
28348           <...>-13131 (-----) [006] d..2 24572.713127: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
28349  Binder:23896_5-25989 (23896) [006] .... 24572.713129: binder_transaction_received: transaction=1669143
28350<...>-24041 ( 23968) [005] .... 24572.713135: binder_transaction: transaction=1669144 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
28351<...>-24041 ( 23968) [005] ...2 24572.713141: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
28352<...>-24151 ( 24151) [007] d..2 24572.713141: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
28353<...>-24041 ( 23968) [005] d..4 24572.713142: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=006
28354          <idle>-0     (-----) [007] d..1 24572.713146: cpu_idle: state=0 cpu_id=7
28355  Binder:23896_5-25989 (23896) [006] ...1 24572.713148: tracing_mark_write: B|23896|HIDL::IMapper::createDescriptor_2_1::passthrough
28356<...>-24041 ( 23968) [005] dn.5 24572.713150: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
28357<...>-24041 ( 23968) [005] d..2 24572.713153: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
28358  Binder:23896_5-25989 (23896) [006] ...1 24572.713153: tracing_mark_write: E|23896
28359<...>-23903 ( 23896) [005] .... 24572.713155: binder_transaction_received: transaction=1669144
28360  Binder:23896_5-25989 (23896) [006] ...1 24572.713160: tracing_mark_write: B|23896|HIDL::IAllocator::allocate::client
28361  Binder:23896_5-25989 (23896) [006] ...1 24572.713161: tracing_mark_write: E|23896
28362  Binder:23896_5-25989 (23896) [006] .... 24572.713174: binder_transaction: transaction=1669145 dest_node=959 dest_proc=786 dest_thread=0 reply=0 flags=0x10 code=0x2
28363  Binder:23896_5-25989 (23896) [006] ...2 24572.713177: binder_set_priority: proc=786 thread=816 old=120 => new=110 desired=110
28364  Binder:23896_5-25989 (23896) [006] d..4 24572.713179: sched_waking: comm=HwBinder:786_2 pid=816 prio=110 target_cpu=007
28365           <...>-13151 (-----) [004] d..2 24572.713181: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
28366<...>-23903 ( 23896) [005] .... 24572.713187: binder_transaction: transaction=1669146 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
28367  Binder:23896_5-25989 (23896) [006] d..5 24572.713187: sched_wakeup: comm=HwBinder:786_2 pid=816 prio=110 target_cpu=007
28368<...>-23903 ( 23896) [005] .... 24572.713188: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
28369  Binder:23896_5-25989 (23896) [006] d..2 24572.713192: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
28370          <idle>-0     (-----) [007] .n.1 24572.713192: cpu_idle: state=4294967295 cpu_id=7
28371          <idle>-0     (-----) [007] d..2 24572.713196: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:786_2 next_pid=816 next_prio=110
28372           <...>-13131 (-----) [006] d..2 24572.713198: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
28373          <idle>-0     (-----) [000] dnh2 24572.713199: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
28374<...>-816 ( 786) [007] .... 24572.713199: binder_transaction_received: transaction=1669145
28375<...>-23903 ( 23896) [005] d..2 24572.713202: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
28376          <idle>-0     (-----) [006] d..1 24572.713203: cpu_idle: state=0 cpu_id=6
28377<...>-24041 ( 23968) [005] .... 24572.713203: binder_transaction_received: transaction=1669146
28378          <idle>-0     (-----) [000] .n.1 24572.713203: cpu_idle: state=4294967295 cpu_id=0
28379          <idle>-0     (-----) [000] d..2 24572.713209: 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
28380<...>-816 ( 786) [007] ...1 24572.713218: tracing_mark_write: B|786|HIDL::IAllocator::allocate::server
28381<...>-816 ( 786) [007] ...1 24572.713243: tracing_mark_write: B|786|AllocBuffer
28382<...>-816 ( 786) [007] ...1 24572.713248: tracing_mark_write: B|786|ION_IOC_ALLOC size: 9400320
28383     logd.writer-563   (  555) [000] d..2 24572.713314: 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
28384<...>-816 ( 786) [007] ...1 24572.713315: tracing_mark_write: E|786
28385<...>-816 ( 786) [007] ...1 24572.713316: tracing_mark_write: B|786|ION_IOC_MAP
28386  surfaceflinger-23896 (23896) [002] ...1 24572.713321: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
28387          <idle>-0     (-----) [000] d..1 24572.713322: cpu_idle: state=0 cpu_id=0
28388<...>-816 ( 786) [007] ...1 24572.713323: tracing_mark_write: E|786
28389  surfaceflinger-23896 (23896) [002] ...1 24572.713324: tracing_mark_write: E|23896
28390<...>-816 ( 786) [007] ...1 24572.713325: tracing_mark_write: E|786
28391<...>-816 ( 786) [007] ...1 24572.713326: tracing_mark_write: B|786|AllocBuffer
28392<...>-816 ( 786) [007] ...1 24572.713327: tracing_mark_write: B|786|ION_IOC_ALLOC size: 20480
28393<...>-816 ( 786) [007] ...1 24572.713332: tracing_mark_write: E|786
28394<...>-816 ( 786) [007] ...1 24572.713333: tracing_mark_write: B|786|ION_IOC_MAP
28395<...>-816 ( 786) [007] ...1 24572.713336: tracing_mark_write: E|786
28396<...>-816 ( 786) [007] ...1 24572.713337: tracing_mark_write: E|786
28397  surfaceflinger-23896 (23896) [002] .... 24572.713348: binder_transaction: transaction=1669147 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
28398<...>-816 ( 786) [007] ...1 24572.713367: tracing_mark_write: E|786
28399  surfaceflinger-23896 (23896) [002] ...2 24572.713368: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
28400<...>-816 ( 786) [007] .... 24572.713371: binder_transaction: transaction=1669148 dest_node=0 dest_proc=23896 dest_thread=25989 reply=1 flags=0x0 code=0x0
28401  surfaceflinger-23896 (23896) [002] d..4 24572.713372: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
28402<...>-816 ( 786) [007] d..2 24572.713375: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=006
28403<...>-816 ( 786) [007] d..3 24572.713384: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=007
28404<...>-816 ( 786) [007] .... 24572.713389: binder_set_priority: proc=786 thread=816 old=110 => new=120 desired=120
28405<...>-816 ( 786) [007] ...1 24572.713398: tracing_mark_write: B|786|FreeBuffer
28406          <idle>-0     (-----) [006] dnh2 24572.713399: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=006
28407          <idle>-0     (-----) [006] .n.1 24572.713402: cpu_idle: state=4294967295 cpu_id=6
28408<...>-816 ( 786) [007] ...1 24572.713403: tracing_mark_write: E|786
28409<...>-816 ( 786) [007] ...1 24572.713404: tracing_mark_write: B|786|FreeBuffer
28410          <idle>-0     (-----) [006] d..2 24572.713405: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
28411<...>-816 ( 786) [007] ...1 24572.713405: tracing_mark_write: B|786|UnmapBuffer
28412  HwBinder:598_3-633   (  598) [006] .... 24572.713408: binder_transaction_received: transaction=1669147
28413  surfaceflinger-23896 (23896) [002] d..2 24572.713410: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28414<...>-816 ( 786) [007] ...1 24572.713412: tracing_mark_write: E|786
28415<...>-816 ( 786) [007] ...1 24572.713414: tracing_mark_write: E|786
28416          <idle>-0     (-----) [002] d..1 24572.713420: cpu_idle: state=0 cpu_id=2
28417<...>-816 ( 786) [007] d..2 24572.713425: sched_switch: prev_comm=HwBinder:786_2 prev_pid=816 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
28418  HwBinder:598_3-633   (  598) [006] ...1 24572.713425: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
28419  Binder:23896_5-25989 (23896) [007] .... 24572.713427: binder_transaction_received: transaction=1669148
28420  Binder:23896_5-25989 (23896) [007] ...1 24572.713440: tracing_mark_write: B|23896|HIDL::IMapper::importBuffer::passthrough
28421  Binder:23896_5-25989 (23896) [007] ...1 24572.713457: tracing_mark_write: E|23896
28422  Binder:23896_5-25989 (23896) [007] ...1 24572.713475: tracing_mark_write: B|23896|HIDL::IMapper::getTransportSize::passthrough
28423  Binder:23896_5-25989 (23896) [007] ...1 24572.713477: tracing_mark_write: E|23896
28424  Binder:23896_5-25989 (23896) [007] ...1 24572.713482: tracing_mark_write: B|23896|HIDL::IMapper::createDescriptor_2_1::passthrough
28425  Binder:23896_5-25989 (23896) [007] ...1 24572.713484: tracing_mark_write: E|23896
28426  Binder:23896_5-25989 (23896) [007] ...1 24572.713487: tracing_mark_write: B|23896|HIDL::IAllocator::allocate::client
28427  HwBinder:598_3-633   (  598) [006] ...1 24572.713487: tracing_mark_write: B|598|HWCSession::PresentDisplay::
28428  Binder:23896_5-25989 (23896) [007] ...1 24572.713488: tracing_mark_write: E|23896
28429  Binder:23896_5-25989 (23896) [007] .... 24572.713492: binder_transaction: transaction=1669149 dest_node=959 dest_proc=786 dest_thread=0 reply=0 flags=0x10 code=0x2
28430  Binder:23896_5-25989 (23896) [007] ...2 24572.713494: binder_set_priority: proc=786 thread=816 old=120 => new=110 desired=110
28431  Binder:23896_5-25989 (23896) [007] d..4 24572.713495: sched_waking: comm=HwBinder:786_2 pid=816 prio=110 target_cpu=007
28432  Binder:23896_5-25989 (23896) [007] dn.5 24572.713500: sched_wakeup: comm=HwBinder:786_2 pid=816 prio=110 target_cpu=007
28433  Binder:23896_5-25989 (23896) [007] d..2 24572.713503: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:786_2 next_pid=816 next_prio=110
28434<...>-816 ( 786) [007] .... 24572.713504: binder_transaction_received: transaction=1669149
28435<...>-816 ( 786) [007] ...1 24572.713510: tracing_mark_write: B|786|HIDL::IAllocator::allocate::server
28436<...>-816 ( 786) [007] ...1 24572.713517: tracing_mark_write: B|786|AllocBuffer
28437<...>-816 ( 786) [007] ...1 24572.713519: tracing_mark_write: B|786|ION_IOC_ALLOC size: 9400320
28438  HwBinder:598_3-633   (  598) [006] ...1 24572.713555: tracing_mark_write: B|598|HWDeviceDRM::Commit::
28439  HwBinder:598_3-633   (  598) [006] ...1 24572.713560: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
28440<...>-816 ( 786) [007] ...1 24572.713572: tracing_mark_write: E|786
28441<...>-816 ( 786) [007] ...1 24572.713573: tracing_mark_write: B|786|ION_IOC_MAP
28442<...>-816 ( 786) [007] ...1 24572.713577: tracing_mark_write: E|786
28443<...>-816 ( 786) [007] ...1 24572.713578: tracing_mark_write: E|786
28444<...>-816 ( 786) [007] ...1 24572.713579: tracing_mark_write: B|786|AllocBuffer
28445<...>-816 ( 786) [007] ...1 24572.713580: tracing_mark_write: B|786|ION_IOC_ALLOC size: 20480
28446<...>-816 ( 786) [007] ...1 24572.713584: tracing_mark_write: E|786
28447<...>-24041 ( 23968) [005] .... 24572.713585: binder_transaction: transaction=1669150 dest_node=1271185 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x1
28448<...>-816 ( 786) [007] ...1 24572.713585: tracing_mark_write: B|786|ION_IOC_MAP
28449<...>-816 ( 786) [007] ...1 24572.713587: tracing_mark_write: E|786
28450<...>-816 ( 786) [007] ...1 24572.713588: tracing_mark_write: E|786
28451<...>-24041 ( 23968) [005] ...2 24572.713588: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
28452<...>-24041 ( 23968) [005] d..4 24572.713589: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
28453<...>-24041 ( 23968) [005] dn.5 24572.713595: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
28454<...>-24041 ( 23968) [005] d..2 24572.713598: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
28455<...>-23903 ( 23896) [005] .... 24572.713600: binder_transaction_received: transaction=1669150
28456<...>-816 ( 786) [007] ...1 24572.713601: tracing_mark_write: E|786
28457<...>-816 ( 786) [007] .... 24572.713604: binder_transaction: transaction=1669151 dest_node=0 dest_proc=23896 dest_thread=25989 reply=1 flags=0x0 code=0x0
28458<...>-816 ( 786) [007] .... 24572.713608: binder_set_priority: proc=786 thread=816 old=110 => new=120 desired=120
28459<...>-816 ( 786) [007] ...1 24572.713616: tracing_mark_write: B|786|FreeBuffer
28460<...>-23903 ( 23896) [005] d..2 24572.713617: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=110 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
28461<...>-816 ( 786) [007] ...1 24572.713619: tracing_mark_write: E|786
28462<...>-816 ( 786) [007] ...1 24572.713620: tracing_mark_write: B|786|FreeBuffer
28463<...>-816 ( 786) [007] ...1 24572.713621: tracing_mark_write: B|786|UnmapBuffer
28464<...>-816 ( 786) [007] ...1 24572.713625: tracing_mark_write: E|786
28465<...>-24041 ( 23968) [005] d..2 24572.713626: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
28466<...>-816 ( 786) [007] ...1 24572.713627: tracing_mark_write: E|786
28467          <idle>-0     (-----) [005] d..1 24572.713632: cpu_idle: state=0 cpu_id=5
28468<...>-816 ( 786) [007] d..2 24572.713635: sched_switch: prev_comm=HwBinder:786_2 prev_pid=816 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
28469  Binder:23896_5-25989 (23896) [007] .... 24572.713638: binder_transaction_received: transaction=1669151
28470  Binder:23896_5-25989 (23896) [007] ...1 24572.713644: tracing_mark_write: B|23896|HIDL::IMapper::importBuffer::passthrough
28471  Binder:23896_5-25989 (23896) [007] ...1 24572.713653: tracing_mark_write: E|23896
28472  Binder:23896_5-25989 (23896) [007] ...1 24572.713661: tracing_mark_write: B|23896|HIDL::IMapper::getTransportSize::passthrough
28473  Binder:23896_5-25989 (23896) [007] ...1 24572.713662: tracing_mark_write: E|23896
28474  Binder:23896_5-25989 (23896) [007] ...1 24572.713665: tracing_mark_write: B|23896|HIDL::IMapper::createDescriptor_2_1::passthrough
28475  Binder:23896_5-25989 (23896) [007] ...1 24572.713667: tracing_mark_write: E|23896
28476  Binder:23896_5-25989 (23896) [007] ...1 24572.713669: tracing_mark_write: B|23896|HIDL::IAllocator::allocate::client
28477  Binder:23896_5-25989 (23896) [007] ...1 24572.713669: tracing_mark_write: E|23896
28478  Binder:23896_5-25989 (23896) [007] .... 24572.713673: binder_transaction: transaction=1669152 dest_node=959 dest_proc=786 dest_thread=0 reply=0 flags=0x10 code=0x2
28479  Binder:23896_5-25989 (23896) [007] ...2 24572.713675: binder_set_priority: proc=786 thread=816 old=120 => new=110 desired=110
28480  Binder:23896_5-25989 (23896) [007] d..4 24572.713676: sched_waking: comm=HwBinder:786_2 pid=816 prio=110 target_cpu=007
28481  Binder:23896_5-25989 (23896) [007] dn.5 24572.713680: sched_wakeup: comm=HwBinder:786_2 pid=816 prio=110 target_cpu=007
28482  Binder:23896_5-25989 (23896) [007] d..2 24572.713683: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:786_2 next_pid=816 next_prio=110
28483<...>-816 ( 786) [007] .... 24572.713685: binder_transaction_received: transaction=1669152
28484<...>-816 ( 786) [007] ...1 24572.713690: tracing_mark_write: B|786|HIDL::IAllocator::allocate::server
28485<...>-816 ( 786) [007] ...1 24572.713695: tracing_mark_write: B|786|AllocBuffer
28486<...>-816 ( 786) [007] ...1 24572.713697: tracing_mark_write: B|786|ION_IOC_ALLOC size: 9400320
28487<...>-816 ( 786) [007] ...1 24572.713745: tracing_mark_write: E|786
28488<...>-816 ( 786) [007] ...1 24572.713746: tracing_mark_write: B|786|ION_IOC_MAP
28489<...>-816 ( 786) [007] ...1 24572.713749: tracing_mark_write: E|786
28490<...>-816 ( 786) [007] ...1 24572.713750: tracing_mark_write: E|786
28491<...>-816 ( 786) [007] ...1 24572.713751: tracing_mark_write: B|786|AllocBuffer
28492<...>-816 ( 786) [007] ...1 24572.713753: tracing_mark_write: B|786|ION_IOC_ALLOC size: 20480
28493<...>-816 ( 786) [007] ...1 24572.713756: tracing_mark_write: E|786
28494<...>-816 ( 786) [007] ...1 24572.713757: tracing_mark_write: B|786|ION_IOC_MAP
28495<...>-816 ( 786) [007] ...1 24572.713759: tracing_mark_write: E|786
28496<...>-816 ( 786) [007] ...1 24572.713760: tracing_mark_write: E|786
28497<...>-816 ( 786) [007] ...1 24572.713771: tracing_mark_write: E|786
28498<...>-816 ( 786) [007] .... 24572.713773: binder_transaction: transaction=1669153 dest_node=0 dest_proc=23896 dest_thread=25989 reply=1 flags=0x0 code=0x0
28499<...>-816 ( 786) [007] .... 24572.713776: binder_set_priority: proc=786 thread=816 old=110 => new=120 desired=120
28500  HwBinder:598_3-633   (  598) [006] d..2 24572.713778: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
28501          <idle>-0     (-----) [001] d.h2 24572.713780: sched_waking: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
28502<...>-816 ( 786) [007] ...1 24572.713783: tracing_mark_write: B|786|FreeBuffer
28503<...>-816 ( 786) [007] ...1 24572.713786: tracing_mark_write: E|786
28504          <idle>-0     (-----) [001] dnh3 24572.713787: sched_wakeup: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
28505<...>-816 ( 786) [007] ...1 24572.713787: tracing_mark_write: B|786|FreeBuffer
28506<...>-816 ( 786) [007] ...1 24572.713788: tracing_mark_write: B|786|UnmapBuffer
28507  HwBinder:598_3-633   (  598) [006] d..3 24572.713791: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
28508          <idle>-0     (-----) [001] .n.1 24572.713792: cpu_idle: state=4294967295 cpu_id=1
28509<...>-816 ( 786) [007] ...1 24572.713792: tracing_mark_write: E|786
28510<...>-816 ( 786) [007] ...1 24572.713794: tracing_mark_write: E|786
28511          <idle>-0     (-----) [005] .n.1 24572.713796: cpu_idle: state=4294967295 cpu_id=5
28512          <idle>-0     (-----) [001] d..2 24572.713798: 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
28513          <idle>-0     (-----) [005] d..2 24572.713799: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
28514<...>-816 ( 786) [007] d..2 24572.713801: sched_switch: prev_comm=HwBinder:786_2 prev_pid=816 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
28515  Binder:23896_5-25989 (23896) [007] .... 24572.713803: binder_transaction_received: transaction=1669153
28516  Binder:23896_5-25989 (23896) [007] ...1 24572.713809: tracing_mark_write: B|23896|HIDL::IMapper::importBuffer::passthrough
28517  Binder:23896_5-25989 (23896) [007] ...1 24572.713816: tracing_mark_write: E|23896
28518  Binder:23896_5-25989 (23896) [007] ...1 24572.713824: tracing_mark_write: B|23896|HIDL::IMapper::getTransportSize::passthrough
28519  Binder:23896_5-25989 (23896) [007] ...1 24572.713825: tracing_mark_write: E|23896
28520  HwBinder:598_3-633   (  598) [006] ...1 24572.713827: tracing_mark_write: E|598
28521  HwBinder:598_3-633   (  598) [006] ...1 24572.713828: tracing_mark_write: E|598
28522  Binder:23896_5-25989 (23896) [007] .... 24572.713841: binder_transaction: transaction=1669154 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
28523  Binder:23896_5-25989 (23896) [007] d..2 24572.713843: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
28524  Binder:23896_5-25989 (23896) [007] d..3 24572.713850: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
28525  Binder:23896_5-25989 (23896) [007] .... 24572.713851: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
28526  HwBinder:598_3-633   (  598) [006] ...1 24572.713853: tracing_mark_write: E|598
28527  Binder:23896_5-25989 (23896) [007] d..2 24572.713863: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
28528           <...>-13131 (-----) [007] .... 24572.713865: binder_transaction_received: transaction=1669154
28529  HwBinder:598_3-633   (  598) [006] ...1 24572.713871: tracing_mark_write: E|598
28530  HwBinder:598_3-633   (  598) [006] .... 24572.713876: binder_transaction: transaction=1669155 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
28531  HwBinder:598_3-633   (  598) [006] d..2 24572.713881: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
28532  HwBinder:598_3-633   (  598) [006] .... 24572.713888: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
28533          <idle>-0     (-----) [002] dnh2 24572.713897: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
28534          <idle>-0     (-----) [002] .n.1 24572.713901: cpu_idle: state=4294967295 cpu_id=2
28535          <idle>-0     (-----) [002] d..2 24572.713906: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
28536  surfaceflinger-23896 (23896) [002] .... 24572.713910: binder_transaction_received: transaction=1669155
28537  HwBinder:598_3-633   (  598) [006] d..2 24572.713910: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
28538          <idle>-0     (-----) [006] d..1 24572.713916: cpu_idle: state=0 cpu_id=6
28539           <...>-13131 (-----) [007] .... 24572.713917: binder_transaction: transaction=1669156 dest_node=1270642 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x1
28540           <...>-13131 (-----) [007] ...2 24572.713920: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
28541<...>-24617 ( 24617) [001] d..2 24572.713920: 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
28542           <...>-13131 (-----) [007] d..4 24572.713921: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
28543          <idle>-0     (-----) [001] d..1 24572.713926: cpu_idle: state=0 cpu_id=1
28544           <...>-13131 (-----) [007] dn.5 24572.713929: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=007
28545           <...>-13131 (-----) [007] d..2 24572.713932: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
28546<...>-12589 ( 23968) [007] .... 24572.713934: binder_transaction_received: transaction=1669156
28547          <idle>-0     (-----) [003] d.s3 24572.713942: sched_waking: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
28548          <idle>-0     (-----) [003] d.s4 24572.713951: sched_wakeup: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
28549          <idle>-0     (-----) [001] .n.1 24572.713956: cpu_idle: state=4294967295 cpu_id=1
28550          <idle>-0     (-----) [003] ...1 24572.713957: cpu_idle: state=4294967295 cpu_id=3
28551          <idle>-0     (-----) [003] d..1 24572.713959: cpu_idle: state=0 cpu_id=3
28552          <idle>-0     (-----) [001] d..2 24572.713961: 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
28553<...>-24617 ( 24617) [001] d..2 24572.713981: 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
28554          <idle>-0     (-----) [001] d..1 24572.713986: cpu_idle: state=0 cpu_id=1
28555<...>-12589 ( 23968) [007] .... 24572.714044: binder_transaction: transaction=1669157 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
28556<...>-12589 ( 23968) [007] .... 24572.714046: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
28557<...>-12589 ( 23968) [007] d..2 24572.714059: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
28558           <...>-13131 (-----) [007] .... 24572.714061: binder_transaction_received: transaction=1669157
28559          <idle>-0     (-----) [006] ...1 24572.714131: cpu_idle: state=4294967295 cpu_id=6
28560          <idle>-0     (-----) [006] d..1 24572.714132: cpu_idle: state=0 cpu_id=6
28561           <...>-13151 (-----) [004] d..1 24572.714211: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
28562           <...>-13131 (-----) [007] d..2 24572.714216: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
28563           <...>-13151 (-----) [004] d..2 24572.714230: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
28564           <...>-13151 (-----) [004] d..2 24572.714235: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
28565          <idle>-0     (-----) [006] .n.1 24572.714239: cpu_idle: state=4294967295 cpu_id=6
28566          <idle>-0     (-----) [006] d..2 24572.714243: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
28567          <idle>-0     (-----) [007] d..1 24572.714245: cpu_idle: state=0 cpu_id=7
28568  surfaceflinger-23896 (23896) [002] ...1 24572.714261: tracing_mark_write: B|23896|HIDL::IComposerClient::getActiveConfig::client
28569  surfaceflinger-23896 (23896) [002] ...1 24572.714264: tracing_mark_write: E|23896
28570  surfaceflinger-23896 (23896) [002] .... 24572.714280: binder_transaction: transaction=1669158 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x7
28571  surfaceflinger-23896 (23896) [002] ...2 24572.714284: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
28572  surfaceflinger-23896 (23896) [002] d..4 24572.714287: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=006
28573          <idle>-0     (-----) [007] dnh2 24572.714308: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
28574           <...>-13151 (-----) [004] d..1 24572.714310: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
28575          <idle>-0     (-----) [007] .n.1 24572.714311: cpu_idle: state=4294967295 cpu_id=7
28576          <idle>-0     (-----) [007] d..2 24572.714314: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
28577           <...>-13131 (-----) [006] d..2 24572.714316: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
28578  HwBinder:598_3-633   (  598) [007] .... 24572.714317: binder_transaction_received: transaction=1669158
28579  surfaceflinger-23896 (23896) [002] d..2 24572.714318: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28580           <...>-13151 (-----) [004] d..2 24572.714319: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
28581          <idle>-0     (-----) [006] d..1 24572.714319: cpu_idle: state=0 cpu_id=6
28582           <...>-13151 (-----) [004] d..2 24572.714322: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
28583          <idle>-0     (-----) [006] .n.1 24572.714327: cpu_idle: state=4294967295 cpu_id=6
28584  HwBinder:598_3-633   (  598) [007] ...1 24572.714328: tracing_mark_write: B|598|HIDL::IComposerClient::getActiveConfig::server
28585          <idle>-0     (-----) [006] d..2 24572.714330: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
28586          <idle>-0     (-----) [002] d..1 24572.714330: cpu_idle: state=0 cpu_id=2
28587           <...>-13151 (-----) [004] d..2 24572.714331: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=D|K ==> next_comm=swapper/4 next_pid=0 next_prio=120
28588           <...>-13131 (-----) [006] d..1 24572.714332: sched_waking: comm=RenderThread pid=13151 prio=110 target_cpu=004
28589           <...>-13131 (-----) [006] d..2 24572.714336: sched_blocked_reason: pid=13151 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
28590  HwBinder:598_3-633   (  598) [007] ...1 24572.714336: tracing_mark_write: E|598
28591  HwBinder:598_3-633   (  598) [007] .... 24572.714340: binder_transaction: transaction=1669159 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
28592           <...>-13131 (-----) [006] d..2 24572.714340: sched_wakeup: comm=RenderThread pid=13151 prio=110 target_cpu=004
28593  HwBinder:598_3-633   (  598) [007] d..2 24572.714342: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
28594          <idle>-0     (-----) [004] d..2 24572.714343: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=110
28595  HwBinder:598_3-633   (  598) [007] .... 24572.714349: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
28596          <idle>-0     (-----) [002] dnh2 24572.714356: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
28597          <idle>-0     (-----) [002] .n.1 24572.714361: cpu_idle: state=4294967295 cpu_id=2
28598  HwBinder:598_3-633   (  598) [007] d..2 24572.714362: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
28599          <idle>-0     (-----) [002] d..2 24572.714366: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
28600          <idle>-0     (-----) [007] d..1 24572.714366: cpu_idle: state=0 cpu_id=7
28601  surfaceflinger-23896 (23896) [002] .... 24572.714369: binder_transaction_received: transaction=1669159
28602 crtc_commit:111-253   (  253) [005] d..2 24572.714396: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
28603          <idle>-0     (-----) [005] d..1 24572.714399: cpu_idle: state=0 cpu_id=5
28604  surfaceflinger-23896 (23896) [002] d..1 24572.714464: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
28605          <idle>-0     (-----) [005] dnh2 24572.714480: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
28606           <...>-13131 (-----) [006] .... 24572.714480: binder_transaction: transaction=1669160 dest_node=1669040 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
28607          <idle>-0     (-----) [005] .n.1 24572.714482: cpu_idle: state=4294967295 cpu_id=5
28608           <...>-13131 (-----) [006] d..4 24572.714482: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
28609          <idle>-0     (-----) [005] d..2 24572.714484: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
28610           <...>-13131 (-----) [006] d..5 24572.714491: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
28611  surfaceflinger-23896 (23896) [002] d..2 24572.714494: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28612          <idle>-0     (-----) [007] .n.1 24572.714496: cpu_idle: state=4294967295 cpu_id=7
28613<...>-23903 ( 23896) [005] .... 24572.714496: binder_transaction: transaction=1669161 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
28614          <idle>-0     (-----) [007] d..2 24572.714499: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
28615  Binder:23896_5-25989 (23896) [007] .... 24572.714501: binder_transaction_received: transaction=1669160
28616          <idle>-0     (-----) [002] d..1 24572.714503: cpu_idle: state=0 cpu_id=2
28617  Binder:23896_5-25989 (23896) [007] d..1 24572.714510: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
28618          <idle>-0     (-----) [003] dnh2 24572.714524: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
28619          <idle>-0     (-----) [003] .n.1 24572.714527: cpu_idle: state=4294967295 cpu_id=3
28620  Binder:23896_5-25989 (23896) [007] d..2 24572.714527: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
28621          <idle>-0     (-----) [007] d..1 24572.714531: cpu_idle: state=0 cpu_id=7
28622          <idle>-0     (-----) [003] d..2 24572.714533: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
28623  appEventThread-23905 (23896) [003] d..2 24572.714557: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
28624          <idle>-0     (-----) [003] d..1 24572.714563: cpu_idle: state=0 cpu_id=3
28625<...>-23903 ( 23896) [005] d..2 24572.714598: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=005
28626<...>-23903 ( 23896) [005] d..3 24572.714603: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=005
28627<...>-23903 ( 23896) [005] .... 24572.714604: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
28628<...>-23903 ( 23896) [005] d..2 24572.714622: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
28629<...>-24041 ( 23968) [005] .... 24572.714624: binder_transaction_received: transaction=1669161
28630<...>-24041 ( 23968) [005] .... 24572.714647: binder_transaction: transaction=1669166 dest_node=1669164 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
28631<...>-24041 ( 23968) [005] ...2 24572.714649: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
28632<...>-24041 ( 23968) [005] d..4 24572.714649: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
28633<...>-24041 ( 23968) [005] dn.5 24572.714652: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
28634<...>-24041 ( 23968) [005] d..2 24572.714655: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
28635<...>-23903 ( 23896) [005] .... 24572.714656: binder_transaction_received: transaction=1669166
28636<...>-23903 ( 23896) [005] .... 24572.714662: binder_transaction: transaction=1669167 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x8 code=0x0
28637<...>-23903 ( 23896) [005] .... 24572.714663: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
28638<...>-23903 ( 23896) [005] d..2 24572.714673: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
28639<...>-24041 ( 23968) [005] .... 24572.714674: binder_transaction_received: transaction=1669167
28640          <idle>-0     (-----) [007] ...1 24572.714722: cpu_idle: state=4294967295 cpu_id=7
28641          <idle>-0     (-----) [007] d..1 24572.714723: cpu_idle: state=0 cpu_id=7
28642           <...>-13151 (-----) [004] d..2 24572.714768: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
28643          <idle>-0     (-----) [000] dnh2 24572.714783: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
28644          <idle>-0     (-----) [000] .n.1 24572.714787: cpu_idle: state=4294967295 cpu_id=0
28645          <idle>-0     (-----) [000] d..2 24572.714794: 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
28646     logd.writer-563   (  555) [000] d..2 24572.714843: 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
28647          <idle>-0     (-----) [000] d..1 24572.714849: cpu_idle: state=0 cpu_id=0
28648           <...>-13151 (-----) [004] d..2 24572.715031: sched_waking: comm=kauditd pid=565 prio=120 target_cpu=000
28649           <...>-13151 (-----) [004] d..3 24572.715049: sched_wakeup: comm=kauditd pid=565 prio=120 target_cpu=007
28650          <idle>-0     (-----) [007] .n.1 24572.715052: cpu_idle: state=4294967295 cpu_id=7
28651          <idle>-0     (-----) [007] d..2 24572.715073: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kauditd next_pid=565 next_prio=120
28652           <...>-13151 (-----) [004] d.h3 24572.715074: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
28653           <...>-13151 (-----) [004] d.h4 24572.715081: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
28654           <...>-13151 (-----) [004] d.h3 24572.715081: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
28655<...>-565 ( 565) [007] d..2 24572.715087: sched_switch: prev_comm=kauditd prev_pid=565 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
28656         sugov:4-560   (  560) [007] d..2 24572.715093: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=kauditd next_pid=565 next_prio=120
28657          <idle>-0     (-----) [001] dnh2 24572.715094: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
28658<...>-565 ( 565) [007] d..2 24572.715095: sched_waking: comm=logd.auditd pid=574 prio=130 target_cpu=000
28659          <idle>-0     (-----) [001] .n.1 24572.715098: cpu_idle: state=4294967295 cpu_id=1
28660          <idle>-0     (-----) [001] d..2 24572.715104: 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
28661<...>-565 ( 565) [007] d..2 24572.715108: sched_switch: prev_comm=kauditd prev_pid=565 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
28662          <idle>-0     (-----) [007] d..1 24572.715111: cpu_idle: state=0 cpu_id=7
28663          <idle>-0     (-----) [000] dnh2 24572.715112: sched_wakeup: comm=logd.auditd pid=574 prio=130 target_cpu=000
28664           <...>-13151 (-----) [004] d..2 24572.715112: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
28665         sugov:0-559   (  559) [001] d..2 24572.715116: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
28666          <idle>-0     (-----) [000] .n.1 24572.715118: cpu_idle: state=4294967295 cpu_id=0
28667<...>-24041 ( 23968) [005] d..3 24572.715122: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=007
28668          <idle>-0     (-----) [001] d..1 24572.715122: cpu_idle: state=0 cpu_id=1
28669          <idle>-0     (-----) [000] d..2 24572.715124: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.auditd next_pid=574 next_prio=130
28670          <idle>-0     (-----) [002] dnh2 24572.715131: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
28671<...>-24041 ( 23968) [005] d..4 24572.715132: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=007
28672          <idle>-0     (-----) [002] .n.1 24572.715135: cpu_idle: state=4294967295 cpu_id=2
28673          <idle>-0     (-----) [007] .n.1 24572.715136: cpu_idle: state=4294967295 cpu_id=7
28674          <idle>-0     (-----) [007] d..2 24572.715139: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
28675          <idle>-0     (-----) [002] d..2 24572.715141: 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
28676<...>-24073 ( 23968) [007] d..2 24572.715159: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
28677          <idle>-0     (-----) [007] d..1 24572.715162: cpu_idle: state=0 cpu_id=7
28678     logd.writer-563   (  555) [002] d..2 24572.715202: 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
28679          <idle>-0     (-----) [002] d..1 24572.715209: cpu_idle: state=0 cpu_id=2
28680<...>-574 ( 555) [000] d..1 24572.715250: sched_waking: comm=logd.daemon pid=561 prio=130 target_cpu=002
28681<...>-574 ( 555) [000] d..2 24572.715271: sched_wakeup: comm=logd.daemon pid=561 prio=130 target_cpu=001
28682          <idle>-0     (-----) [001] .n.1 24572.715276: cpu_idle: state=4294967295 cpu_id=1
28683          <idle>-0     (-----) [001] d..2 24572.715282: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.daemon next_pid=561 next_prio=130
28684<...>-574 ( 555) [000] d..2 24572.715285: sched_switch: prev_comm=logd.auditd prev_pid=574 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28685          <idle>-0     (-----) [000] d..1 24572.715290: cpu_idle: state=0 cpu_id=0
28686           <...>-13131 (-----) [006] .... 24572.715320: binder_transaction: transaction=1669168 dest_node=1271178 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x13
28687          <idle>-0     (-----) [007] ...1 24572.715353: cpu_idle: state=4294967295 cpu_id=7
28688          <idle>-0     (-----) [007] d..1 24572.715354: cpu_idle: state=0 cpu_id=7
28689           <...>-13131 (-----) [006] ...2 24572.715367: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
28690           <...>-13131 (-----) [006] d..4 24572.715369: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=007
28691           <...>-13131 (-----) [006] dn.5 24572.715377: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
28692           <...>-13131 (-----) [006] d..2 24572.715381: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
28693<...>-12589 ( 23968) [006] .... 24572.715383: binder_transaction_received: transaction=1669168
28694           <...>-13151 (-----) [004] d..2 24572.715478: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
28695          <idle>-0     (-----) [000] dnh2 24572.715496: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
28696          <idle>-0     (-----) [000] .n.1 24572.715500: cpu_idle: state=4294967295 cpu_id=0
28697          <idle>-0     (-----) [000] d..2 24572.715504: 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
28698<...>-12589 ( 23968) [006] .... 24572.715514: binder_transaction: transaction=1669171 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
28699<...>-12589 ( 23968) [006] .... 24572.715516: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
28700<...>-12589 ( 23968) [006] d..2 24572.715531: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
28701           <...>-13131 (-----) [006] .... 24572.715534: binder_transaction_received: transaction=1669171
28702     logd.writer-563   (  555) [000] d..2 24572.715537: 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
28703          <idle>-0     (-----) [000] d..1 24572.715541: cpu_idle: state=0 cpu_id=0
28704           <...>-13131 (-----) [006] .... 24572.715559: binder_transaction: transaction=1669172 dest_node=1271178 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x2
28705           <...>-13131 (-----) [006] ...2 24572.715560: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
28706           <...>-13131 (-----) [006] d..4 24572.715561: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
28707           <...>-13131 (-----) [006] dn.5 24572.715565: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
28708           <...>-13131 (-----) [006] d..2 24572.715567: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
28709<...>-12589 ( 23968) [006] .... 24572.715569: binder_transaction_received: transaction=1669172
28710<...>-24041 ( 23968) [005] .... 24572.715596: binder_transaction: transaction=1669173 dest_node=1271185 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x1
28711<...>-24041 ( 23968) [005] ...2 24572.715600: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
28712<...>-24041 ( 23968) [005] d..4 24572.715601: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
28713<...>-24041 ( 23968) [005] dn.5 24572.715606: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
28714<...>-24041 ( 23968) [005] d..2 24572.715609: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
28715<...>-23903 ( 23896) [005] .... 24572.715611: binder_transaction_received: transaction=1669173
28716<...>-12589 ( 23968) [006] .... 24572.715621: binder_transaction: transaction=1669174 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
28717<...>-12589 ( 23968) [006] .... 24572.715623: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
28718<...>-23903 ( 23896) [005] d..3 24572.715628: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
28719<...>-12589 ( 23968) [006] d..2 24572.715638: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
28720<...>-23903 ( 23896) [005] d..2 24572.715639: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=110 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
28721           <...>-13131 (-----) [006] .... 24572.715640: binder_transaction_received: transaction=1669174
28722          <idle>-0     (-----) [002] dnh2 24572.715642: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
28723<...>-24041 ( 23968) [005] d..2 24572.715646: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
28724          <idle>-0     (-----) [002] .n.1 24572.715647: cpu_idle: state=4294967295 cpu_id=2
28725          <idle>-0     (-----) [005] d..1 24572.715651: cpu_idle: state=0 cpu_id=5
28726          <idle>-0     (-----) [002] d..2 24572.715652: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
28727           <...>-13131 (-----) [006] .... 24572.715686: binder_transaction: transaction=1669175 dest_node=1271178 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x1
28728           <...>-13131 (-----) [006] ...2 24572.715688: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
28729           <...>-13131 (-----) [006] d..4 24572.715689: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
28730           <...>-13131 (-----) [006] dn.5 24572.715693: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
28731           <...>-13131 (-----) [006] d..2 24572.715696: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
28732<...>-12589 ( 23968) [006] .... 24572.715697: binder_transaction_received: transaction=1669175
28733  surfaceflinger-23896 (23896) [002] ...1 24572.715736: tracing_mark_write: B|23896|HIDL::IComposerClient::getActiveConfig::client
28734  surfaceflinger-23896 (23896) [002] ...1 24572.715740: tracing_mark_write: E|23896
28735           <...>-13151 (-----) [004] d..2 24572.715751: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
28736  surfaceflinger-23896 (23896) [002] .... 24572.715753: binder_transaction: transaction=1669176 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x7
28737  surfaceflinger-23896 (23896) [002] ...2 24572.715757: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
28738  surfaceflinger-23896 (23896) [002] d..4 24572.715761: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
28739          <idle>-0     (-----) [000] dnh2 24572.715764: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
28740          <idle>-0     (-----) [000] .n.1 24572.715767: cpu_idle: state=4294967295 cpu_id=0
28741          <idle>-0     (-----) [000] d..2 24572.715772: 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
28742          <idle>-0     (-----) [007] dnh2 24572.715775: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
28743          <idle>-0     (-----) [007] .n.1 24572.715777: cpu_idle: state=4294967295 cpu_id=7
28744          <idle>-0     (-----) [007] d..2 24572.715780: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
28745  HwBinder:598_3-633   (  598) [007] .... 24572.715782: binder_transaction_received: transaction=1669176
28746  surfaceflinger-23896 (23896) [002] d..2 24572.715784: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28747  HwBinder:598_3-633   (  598) [007] ...1 24572.715793: tracing_mark_write: B|598|HIDL::IComposerClient::getActiveConfig::server
28748          <idle>-0     (-----) [002] d..1 24572.715794: cpu_idle: state=0 cpu_id=2
28749  HwBinder:598_3-633   (  598) [007] ...1 24572.715800: tracing_mark_write: E|598
28750  HwBinder:598_3-633   (  598) [007] .... 24572.715803: binder_transaction: transaction=1669177 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
28751  HwBinder:598_3-633   (  598) [007] d..2 24572.715805: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
28752  HwBinder:598_3-633   (  598) [007] .... 24572.715811: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
28753     logd.writer-563   (  555) [000] d..2 24572.715812: 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
28754          <idle>-0     (-----) [000] d..1 24572.715816: cpu_idle: state=0 cpu_id=0
28755          <idle>-0     (-----) [002] dnh2 24572.715819: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
28756           <...>-13151 (-----) [004] d..2 24572.715822: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
28757          <idle>-0     (-----) [002] .n.1 24572.715823: cpu_idle: state=4294967295 cpu_id=2
28758          <idle>-0     (-----) [002] d..2 24572.715828: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
28759  HwBinder:598_3-633   (  598) [007] d..2 24572.715828: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
28760          <idle>-0     (-----) [007] d..1 24572.715837: cpu_idle: state=0 cpu_id=7
28761  surfaceflinger-23896 (23896) [002] .... 24572.715860: binder_transaction_received: transaction=1669177
28762          <idle>-0     (-----) [000] dnh2 24572.715863: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
28763          <idle>-0     (-----) [000] .n.1 24572.715866: cpu_idle: state=4294967295 cpu_id=0
28764          <idle>-0     (-----) [000] d..2 24572.715871: 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
28765<...>-561 ( 555) [001] d..1 24572.715901: sched_waking: comm=logd.auditd pid=574 prio=130 target_cpu=000
28766     logd.writer-563   (  555) [000] d..2 24572.715902: 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
28767          <idle>-0     (-----) [000] d..1 24572.715906: cpu_idle: state=0 cpu_id=0
28768<...>-12589 ( 23968) [006] .... 24572.715911: binder_transaction: transaction=1669178 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
28769<...>-561 ( 555) [001] d..2 24572.715913: sched_wakeup: comm=logd.auditd pid=574 prio=130 target_cpu=000
28770<...>-12589 ( 23968) [006] .... 24572.715915: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
28771          <idle>-0     (-----) [000] .n.1 24572.715918: cpu_idle: state=4294967295 cpu_id=0
28772          <idle>-0     (-----) [000] d..2 24572.715923: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.auditd next_pid=574 next_prio=130
28773<...>-561 ( 555) [001] d..2 24572.715929: sched_switch: prev_comm=logd.daemon prev_pid=561 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
28774<...>-12589 ( 23968) [006] d..2 24572.715930: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
28775           <...>-13131 (-----) [006] .... 24572.715933: binder_transaction_received: transaction=1669178
28776          <idle>-0     (-----) [001] d..1 24572.715937: cpu_idle: state=0 cpu_id=1
28777  surfaceflinger-23896 (23896) [002] d..1 24572.715947: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
28778          <idle>-0     (-----) [005] dnh2 24572.715961: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
28779          <idle>-0     (-----) [005] .n.1 24572.715963: cpu_idle: state=4294967295 cpu_id=5
28780          <idle>-0     (-----) [005] d..2 24572.715966: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
28781  surfaceflinger-23896 (23896) [002] d..2 24572.715972: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28782<...>-23903 ( 23896) [005] .... 24572.715974: binder_transaction: transaction=1669179 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
28783          <idle>-0     (-----) [002] d..1 24572.715980: cpu_idle: state=0 cpu_id=2
28784<...>-23903 ( 23896) [005] d..2 24572.716024: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=005
28785<...>-574 ( 555) [000] d..2 24572.716025: sched_switch: prev_comm=logd.auditd prev_pid=574 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28786<...>-23903 ( 23896) [005] d..3 24572.716027: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=005
28787<...>-23903 ( 23896) [005] .... 24572.716028: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
28788          <idle>-0     (-----) [000] d..1 24572.716030: cpu_idle: state=0 cpu_id=0
28789<...>-23903 ( 23896) [005] d..2 24572.716044: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
28790<...>-24041 ( 23968) [005] .... 24572.716045: binder_transaction_received: transaction=1669179
28791<...>-24041 ( 23968) [005] .... 24572.716062: binder_transaction: transaction=1669184 dest_node=1669182 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
28792<...>-24041 ( 23968) [005] ...2 24572.716063: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
28793<...>-24041 ( 23968) [005] d..4 24572.716064: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
28794<...>-24041 ( 23968) [005] dn.5 24572.716067: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
28795<...>-24041 ( 23968) [005] d..2 24572.716069: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
28796           <...>-13151 (-----) [004] d..1 24572.716070: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
28797<...>-23903 ( 23896) [005] .... 24572.716070: binder_transaction_received: transaction=1669184
28798           <...>-13131 (-----) [006] d..2 24572.716074: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
28799<...>-23903 ( 23896) [005] .... 24572.716076: binder_transaction: transaction=1669185 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x8 code=0x0
28800<...>-23903 ( 23896) [005] .... 24572.716078: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
28801           <...>-13151 (-----) [004] d..2 24572.716079: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
28802           <...>-13151 (-----) [004] d..2 24572.716083: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
28803          <idle>-0     (-----) [006] d..2 24572.716086: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
28804<...>-23903 ( 23896) [005] d..2 24572.716088: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
28805<...>-24041 ( 23968) [005] .... 24572.716089: binder_transaction_received: transaction=1669185
28806           <...>-13131 (-----) [006] d..1 24572.716091: sched_waking: comm=RenderThread pid=13151 prio=110 target_cpu=004
28807           <...>-13151 (-----) [004] d..2 24572.716097: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=D|K ==> next_comm=swapper/4 next_pid=0 next_prio=120
28808           <...>-13131 (-----) [006] d..2 24572.716101: sched_blocked_reason: pid=13151 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
28809           <...>-13131 (-----) [006] d..2 24572.716104: sched_wakeup: comm=RenderThread pid=13151 prio=110 target_cpu=004
28810          <idle>-0     (-----) [004] d..2 24572.716107: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=110
28811          <idle>-0     (-----) [003] ...1 24572.716217: cpu_idle: state=4294967295 cpu_id=3
28812          <idle>-0     (-----) [003] d..1 24572.716219: cpu_idle: state=0 cpu_id=3
28813           <...>-13131 (-----) [006] .... 24572.716293: binder_transaction: transaction=1669186 dest_node=1271381 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xc
28814           <...>-13131 (-----) [006] ...2 24572.716299: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
28815           <...>-13131 (-----) [006] d..4 24572.716300: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
28816           <...>-13131 (-----) [006] dn.5 24572.716304: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
28817           <...>-13131 (-----) [006] d..2 24572.716307: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
28818<...>-12589 ( 23968) [006] .... 24572.716309: binder_transaction_received: transaction=1669186
28819<...>-12589 ( 23968) [006] d..2 24572.716415: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
28820           <...>-13131 (-----) [006] d..2 24572.716423: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
28821          <idle>-0     (-----) [006] d..1 24572.716428: cpu_idle: state=0 cpu_id=6
28822<...>-24041 ( 23968) [005] d..3 24572.716430: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=007
28823<...>-24041 ( 23968) [005] d..4 24572.716438: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=007
28824          <idle>-0     (-----) [007] .n.1 24572.716443: cpu_idle: state=4294967295 cpu_id=7
28825          <idle>-0     (-----) [007] d..2 24572.716446: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
28826<...>-24073 ( 23968) [007] d..2 24572.716459: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
28827          <idle>-0     (-----) [007] d..1 24572.716462: cpu_idle: state=0 cpu_id=7
28828<...>-24041 ( 23968) [005] .... 24572.716512: binder_transaction: transaction=1669187 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
28829<...>-24041 ( 23968) [005] ...2 24572.716516: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
28830<...>-24041 ( 23968) [005] d..4 24572.716518: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
28831<...>-24041 ( 23968) [005] dn.5 24572.716522: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
28832<...>-24041 ( 23968) [005] d..2 24572.716525: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
28833<...>-23903 ( 23896) [005] .... 24572.716527: binder_transaction_received: transaction=1669187
28834<...>-23903 ( 23896) [005] .... 24572.716563: binder_transaction: transaction=1669188 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
28835<...>-23903 ( 23896) [005] .... 24572.716564: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
28836<...>-23903 ( 23896) [005] d..2 24572.716577: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
28837<...>-24041 ( 23968) [005] .... 24572.716579: binder_transaction_received: transaction=1669188
28838<...>-24041 ( 23968) [005] d..3 24572.716619: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=007
28839<...>-24041 ( 23968) [005] d..4 24572.716632: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=006
28840          <idle>-0     (-----) [006] .n.1 24572.716637: cpu_idle: state=4294967295 cpu_id=6
28841          <idle>-0     (-----) [006] d..2 24572.716641: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
28842<...>-24041 ( 23968) [005] d..3 24572.716653: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=000
28843<...>-24041 ( 23968) [005] d..4 24572.716668: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=007
28844          <idle>-0     (-----) [007] .n.1 24572.716672: cpu_idle: state=4294967295 cpu_id=7
28845          <idle>-0     (-----) [007] d..2 24572.716692: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
28846<...>-24041 ( 23968) [005] d.h3 24572.716693: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
28847<...>-24041 ( 23968) [005] d.h4 24572.716702: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
28848<...>-23968 ( 23968) [006] d..2 24572.716706: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
28849<...>-24041 ( 23968) [005] d.h3 24572.716708: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
28850         sugov:4-560   (  560) [006] d..2 24572.716716: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
28851<...>-23968 ( 23968) [006] .... 24572.716719: binder_transaction: transaction=1669189 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x18
28852          <idle>-0     (-----) [001] dnh2 24572.716722: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
28853<...>-23968 ( 23968) [006] d..4 24572.716723: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
28854          <idle>-0     (-----) [001] .n.1 24572.716726: cpu_idle: state=4294967295 cpu_id=1
28855          <idle>-0     (-----) [001] d..2 24572.716732: 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
28856<...>-23968 ( 23968) [006] d..5 24572.716732: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
28857<...>-24042 ( 23968) [007] .... 24572.716739: binder_transaction: transaction=1669190 dest_node=1271163 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
28858<...>-24042 ( 23968) [007] d..4 24572.716741: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
28859         sugov:0-559   (  559) [001] d..2 24572.716746: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
28860<...>-24042 ( 23968) [007] d..5 24572.716750: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
28861          <idle>-0     (-----) [001] d..1 24572.716752: cpu_idle: state=0 cpu_id=1
28862<...>-23968 ( 23968) [006] d..2 24572.716755: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
28863<...>-24376 ( 24151) [006] .... 24572.716758: binder_transaction_received: transaction=1669189
28864<...>-24042 ( 23968) [007] d..2 24572.716766: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
28865<...>-23903 ( 23896) [007] .... 24572.716767: binder_transaction_received: transaction=1669190
28866<...>-23903 ( 23896) [007] d..1 24572.716777: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
28867          <idle>-0     (-----) [001] dnh2 24572.716790: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
28868<...>-23903 ( 23896) [007] d..2 24572.716792: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
28869          <idle>-0     (-----) [001] .n.1 24572.716794: cpu_idle: state=4294967295 cpu_id=1
28870          <idle>-0     (-----) [007] d..1 24572.716796: cpu_idle: state=0 cpu_id=7
28871          <idle>-0     (-----) [001] d..2 24572.716799: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
28872   sfEventThread-23906 (23896) [001] d..2 24572.716828: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
28873          <idle>-0     (-----) [001] d..1 24572.716834: cpu_idle: state=0 cpu_id=1
28874<...>-24376 ( 24151) [006] d..3 24572.716867: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
28875<...>-24041 ( 23968) [005] .... 24572.716870: binder_transaction: transaction=1669191 dest_node=1669080 dest_proc=13131 dest_thread=0 reply=0 flags=0x11 code=0x2
28876<...>-24041 ( 23968) [005] d..4 24572.716874: sched_waking: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=004
28877<...>-24376 ( 24151) [006] d..4 24572.716877: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
28878          <idle>-0     (-----) [007] .n.1 24572.716882: cpu_idle: state=4294967295 cpu_id=7
28879<...>-24041 ( 23968) [005] d..5 24572.716885: sched_wakeup: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=006
28880          <idle>-0     (-----) [007] d..2 24572.716886: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
28881<...>-24376 ( 24151) [006] d..2 24572.716907: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=Binder:13131_3 next_pid=13145 next_prio=120
28882           <...>-13145 (-----) [006] .... 24572.716910: binder_transaction_received: transaction=1669191
28883           <...>-13151 (-----) [004] ...1 24572.716960: tracing_mark_write: B|13131|HIDL::IServiceManager::getTransport::client
28884           <...>-13151 (-----) [004] ...1 24572.716963: tracing_mark_write: E|13131
28885<...>-24151 ( 24151) [007] d..1 24572.716981: sched_waking: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=001
28886           <...>-13151 (-----) [004] .... 24572.716991: binder_transaction: transaction=1669193 dest_node=1 dest_proc=568 dest_thread=0 reply=0 flags=0x10 code=0x3
28887<...>-24151 ( 24151) [007] dn.2 24572.716996: sched_wakeup: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=007
28888           <...>-13151 (-----) [004] ...2 24572.716996: binder_set_priority: proc=568 thread=568 old=120 => new=110 desired=110
28889           <...>-13151 (-----) [004] d..4 24572.716998: sched_waking: comm=hwservicemanage pid=568 prio=110 target_cpu=001
28890<...>-24151 ( 24151) [007] d..2 24572.717017: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R+ ==> next_comm=pool-1-thread-1 next_pid=24340 next_prio=120
28891<...>-24340 ( 24151) [007] d..2 24572.717026: sched_switch: prev_comm=pool-1-thread-1 prev_pid=24340 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
28892           <...>-13151 (-----) [004] d..2 24572.717027: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
28893          <idle>-0     (-----) [000] dnh2 24572.717028: sched_wakeup: comm=hwservicemanage pid=568 prio=110 target_cpu=000
28894<...>-24151 ( 24151) [007] d..1 24572.717028: sched_waking: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=007
28895<...>-24151 ( 24151) [007] dn.2 24572.717032: sched_wakeup: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=007
28896          <idle>-0     (-----) [000] .n.1 24572.717032: cpu_idle: state=4294967295 cpu_id=0
28897<...>-24151 ( 24151) [007] d..2 24572.717034: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R+ ==> next_comm=pool-1-thread-1 next_pid=24340 next_prio=120
28898          <idle>-0     (-----) [004] d..1 24572.717035: cpu_idle: state=0 cpu_id=4
28899          <idle>-0     (-----) [000] d..2 24572.717036: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwservicemanage next_pid=568 next_prio=110
28900<...>-24340 ( 24151) [007] d..2 24572.717039: sched_switch: prev_comm=pool-1-thread-1 prev_pid=24340 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
28901<...>-24151 ( 24151) [007] d..1 24572.717040: sched_waking: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=007
28902<...>-24151 ( 24151) [007] dn.2 24572.717043: sched_wakeup: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=007
28903<...>-568 ( 568) [000] .... 24572.717044: binder_transaction_received: transaction=1669193
28904<...>-24151 ( 24151) [007] d..2 24572.717045: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R+ ==> next_comm=pool-1-thread-1 next_pid=24340 next_prio=120
28905<...>-24340 ( 24151) [007] d..2 24572.717050: sched_switch: prev_comm=pool-1-thread-1 prev_pid=24340 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
28906<...>-24151 ( 24151) [007] d..1 24572.717051: sched_waking: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=007
28907<...>-24151 ( 24151) [007] dn.2 24572.717053: sched_wakeup: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=007
28908<...>-24151 ( 24151) [007] d..2 24572.717055: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R+ ==> next_comm=pool-1-thread-1 next_pid=24340 next_prio=120
28909<...>-24340 ( 24151) [007] d..2 24572.717058: sched_switch: prev_comm=pool-1-thread-1 prev_pid=24340 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
28910<...>-24151 ( 24151) [007] d..1 24572.717059: sched_waking: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=007
28911<...>-24151 ( 24151) [007] dn.2 24572.717062: sched_wakeup: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=007
28912<...>-24151 ( 24151) [007] d..2 24572.717063: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R+ ==> next_comm=pool-1-thread-1 next_pid=24340 next_prio=120
28913<...>-568 ( 568) [000] ...1 24572.717081: tracing_mark_write: B|568|HIDL::IServiceManager::getTransport::server
28914<...>-24041 ( 23968) [005] d..3 24572.717087: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=007
28915<...>-24041 ( 23968) [005] d..4 24572.717093: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=007
28916<...>-24340 ( 24151) [007] .... 24572.717148: binder_transaction: transaction=1669194 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x84
28917<...>-24340 ( 24151) [007] d..4 24572.717150: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
28918           <...>-13145 (-----) [006] d..2 24572.717157: sched_switch: prev_comm=Binder:13131_3 prev_pid=13145 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
28919<...>-24340 ( 24151) [007] d..5 24572.717165: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
28920          <idle>-0     (-----) [006] d..2 24572.717168: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
28921<...>-24340 ( 24151) [007] d..2 24572.717173: sched_switch: prev_comm=pool-1-thread-1 prev_pid=24340 prev_prio=120 prev_state=S ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
28922  Binder:23968_1-23981 (23968) [006] .... 24572.717175: binder_transaction_received: transaction=1669194
28923<...>-24073 ( 23968) [007] d..2 24572.717186: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
28924  Binder:23968_1-23981 (23968) [006] .... 24572.717283: binder_transaction: transaction=1669195 dest_node=0 dest_proc=24151 dest_thread=24340 reply=1 flags=0x0 code=0x0
28925  Binder:23968_1-23981 (23968) [006] d..2 24572.717286: sched_waking: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=007
28926  Binder:23968_1-23981 (23968) [006] d..3 24572.717294: sched_wakeup: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=006
28927<...>-24151 ( 24151) [007] d..2 24572.717299: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
28928          <idle>-0     (-----) [002] ...1 24572.717301: cpu_idle: state=4294967295 cpu_id=2
28929          <idle>-0     (-----) [002] d..1 24572.717303: cpu_idle: state=0 cpu_id=2
28930          <idle>-0     (-----) [007] d..1 24572.717304: cpu_idle: state=0 cpu_id=7
28931  Binder:23968_1-23981 (23968) [006] d..2 24572.717305: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=pool-1-thread-1 next_pid=24340 next_prio=120
28932<...>-24340 ( 24151) [006] .... 24572.717306: binder_transaction_received: transaction=1669195
28933<...>-24041 ( 23968) [005] .... 24572.717350: binder_transaction: transaction=1669196 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
28934<...>-24041 ( 23968) [005] d..4 24572.717353: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
28935<...>-24041 ( 23968) [005] d..5 24572.717364: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
28936          <idle>-0     (-----) [007] .n.1 24572.717369: cpu_idle: state=4294967295 cpu_id=7
28937<...>-24340 ( 24151) [006] d..3 24572.717369: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
28938          <idle>-0     (-----) [007] d..2 24572.717374: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
28939<...>-24376 ( 24151) [007] .... 24572.717376: binder_transaction_received: transaction=1669196
28940<...>-24340 ( 24151) [006] d..4 24572.717379: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
28941<...>-24041 ( 23968) [005] d..3 24572.717404: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=007
28942<...>-24041 ( 23968) [005] d..4 24572.717414: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=006
28943<...>-24340 ( 24151) [006] .... 24572.717421: binder_transaction: transaction=1669197 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x37
28944<...>-24340 ( 24151) [006] d..4 24572.717423: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
28945<...>-24376 ( 24151) [007] d..2 24572.717423: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
28946          <idle>-0     (-----) [007] d..1 24572.717427: cpu_idle: state=0 cpu_id=7
28947<...>-24340 ( 24151) [006] d..5 24572.717433: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
28948          <idle>-0     (-----) [007] .n.1 24572.717437: cpu_idle: state=4294967295 cpu_id=7
28949<...>-24340 ( 24151) [006] d..2 24572.717438: sched_switch: prev_comm=pool-1-thread-1 prev_pid=24340 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=23994 next_prio=118
28950          <idle>-0     (-----) [007] d..2 24572.717441: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
28951  Binder:23968_1-23981 (23968) [007] .... 24572.717443: binder_transaction_received: transaction=1669197
28952<...>-23994 ( 23968) [006] d..3 24572.717477: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=006
28953<...>-23994 ( 23968) [006] d..4 24572.717486: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=007
28954<...>-23994 ( 23968) [006] d..2 24572.717500: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
28955  Binder:23968_1-23981 (23968) [007] d..2 24572.717521: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
28956<...>-24151 ( 24151) [006] d..2 24572.717540: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
28957          <idle>-0     (-----) [006] d..1 24572.717546: cpu_idle: state=0 cpu_id=6
28958<...>-568 ( 568) [000] d.h2 24572.717557: sched_waking: comm=logd.klogd pid=573 prio=130 target_cpu=002
28959<...>-24041 ( 23968) [005] d.s1 24572.717566: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
28960<...>-568 ( 568) [000] d.h3 24572.717595: sched_wakeup: comm=logd.klogd pid=573 prio=130 target_cpu=001
28961<...>-24041 ( 23968) [005] d.s2 24572.717596: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
28962<...>-23968 ( 23968) [007] d.H2 24572.717599: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
28963          <idle>-0     (-----) [001] .n.1 24572.717599: cpu_idle: state=4294967295 cpu_id=1
28964          <idle>-0     (-----) [004] .n.1 24572.717601: cpu_idle: state=4294967295 cpu_id=4
28965          <idle>-0     (-----) [004] d..2 24572.717605: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
28966<...>-23968 ( 23968) [007] d.H3 24572.717605: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
28967<...>-23968 ( 23968) [007] d.H2 24572.717606: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
28968          <idle>-0     (-----) [001] d..2 24572.717607: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.klogd next_pid=573 next_prio=130
28969          <idle>-0     (-----) [006] .n.1 24572.717611: cpu_idle: state=4294967295 cpu_id=6
28970     rcu_preempt-7     (    7) [004] d..2 24572.717613: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=007
28971          <idle>-0     (-----) [006] d..2 24572.717615: 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
28972         sugov:4-560   (  560) [006] d..2 24572.717623: 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
28973     rcu_preempt-7     (    7) [004] d..3 24572.717623: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=004
28974     rcu_preempt-7     (    7) [004] d..2 24572.717624: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=007
28975          <idle>-0     (-----) [006] d..1 24572.717625: cpu_idle: state=0 cpu_id=6
28976          <idle>-0     (-----) [003] dnh2 24572.717625: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
28977<...>-23968 ( 23968) [007] .... 24572.717626: binder_transaction: transaction=1669198 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
28978<...>-23968 ( 23968) [007] d..4 24572.717628: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
28979          <idle>-0     (-----) [003] .n.1 24572.717629: cpu_idle: state=4294967295 cpu_id=3
28980     rcu_preempt-7     (    7) [004] d..3 24572.717634: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=006
28981          <idle>-0     (-----) [003] d..2 24572.717634: 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
28982     rcu_preempt-7     (    7) [004] d..2 24572.717637: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=007
28983<...>-23968 ( 23968) [007] d..5 24572.717638: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
28984          <idle>-0     (-----) [006] .n.1 24572.717639: cpu_idle: state=4294967295 cpu_id=6
28985          <idle>-0     (-----) [006] d..2 24572.717643: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
28986     rcu_preempt-7     (    7) [004] d..3 24572.717645: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=004
28987         rcuop/0-10    (   10) [006] d..2 24572.717652: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
28988<...>-568 ( 568) [000] ...1 24572.717654: tracing_mark_write: E|568
28989<...>-23968 ( 23968) [007] d..2 24572.717659: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
28990          <idle>-0     (-----) [007] d..1 24572.717663: cpu_idle: state=0 cpu_id=7
28991<...>-568 ( 568) [000] .... 24572.717664: binder_transaction: transaction=1669199 dest_node=0 dest_proc=13131 dest_thread=13151 reply=1 flags=0x0 code=0x0
28992     rcu_preempt-7     (    7) [004] d..2 24572.717664: 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
28993      logd.klogd-573   (  555) [001] d..2 24572.717665: sched_switch: prev_comm=logd.klogd prev_pid=573 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
28994         sugov:0-559   (  559) [003] d..2 24572.717666: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
28995         rcuop/2-29    (   29) [004] d..2 24572.717667: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
28996          <idle>-0     (-----) [001] d..1 24572.717671: cpu_idle: state=0 cpu_id=1
28997         rcuop/0-10    (   10) [006] d..3 24572.717673: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=007
28998<...>-568 ( 568) [000] d..2 24572.717676: sched_waking: comm=RenderThread pid=13151 prio=110 target_cpu=004
28999          <idle>-0     (-----) [007] .n.1 24572.717677: cpu_idle: state=4294967295 cpu_id=7
29000<...>-24041 ( 23968) [005] .... 24572.717686: binder_transaction: transaction=1669200 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
29001          <idle>-0     (-----) [007] d..2 24572.717695: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
29002         rcuop/0-10    (   10) [006] d..2 24572.717699: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
29003<...>-24376 ( 24151) [006] .... 24572.717700: binder_transaction_received: transaction=1669198
29004<...>-24041 ( 23968) [005] ...2 24572.717702: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
29005<...>-24041 ( 23968) [005] d..4 24572.717705: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=007
29006         rcuop/2-29    (   29) [004] d..3 24572.717706: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=007
29007<...>-568 ( 568) [000] d..3 24572.717707: sched_wakeup: comm=RenderThread pid=13151 prio=110 target_cpu=000
29008<...>-568 ( 568) [000] .... 24572.717709: binder_set_priority: proc=568 thread=568 old=110 => new=120 desired=120
29009         rcuop/1-21    (   21) [007] d..2 24572.717711: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
29010<...>-24041 ( 23968) [005] dn.5 24572.717730: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
29011         rcuop/3-37    (   37) [007] d..2 24572.717732: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
29012<...>-24041 ( 23968) [005] d..2 24572.717734: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
29013          <idle>-0     (-----) [007] d..1 24572.717735: cpu_idle: state=0 cpu_id=7
29014<...>-23903 ( 23896) [005] .... 24572.717736: binder_transaction_received: transaction=1669200
29015<...>-24376 ( 24151) [006] d..3 24572.717737: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
29016         rcuop/2-29    (   29) [004] d..2 24572.717738: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
29017         rcuop/4-45    (   45) [003] d..2 24572.717740: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29018          <idle>-0     (-----) [004] d..1 24572.717740: cpu_idle: state=0 cpu_id=4
29019          <idle>-0     (-----) [003] d..1 24572.717747: cpu_idle: state=0 cpu_id=3
29020<...>-24376 ( 24151) [006] d..4 24572.717748: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
29021          <idle>-0     (-----) [007] .n.1 24572.717752: cpu_idle: state=4294967295 cpu_id=7
29022<...>-568 ( 568) [000] d..2 24572.717753: sched_switch: prev_comm=hwservicemanage prev_pid=568 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
29023          <idle>-0     (-----) [007] d..2 24572.717755: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
29024           <...>-13151 (-----) [000] .... 24572.717757: binder_transaction_received: transaction=1669199
29025<...>-24376 ( 24151) [006] d..2 24572.717766: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29026          <idle>-0     (-----) [006] d..1 24572.717770: cpu_idle: state=0 cpu_id=6
29027<...>-24151 ( 24151) [007] d..2 24572.717788: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
29028          <idle>-0     (-----) [007] d..1 24572.717792: cpu_idle: state=0 cpu_id=7
29029           <...>-13151 (-----) [000] ...1 24572.717796: tracing_mark_write: B|13131|HIDL::IServiceManager::get::client
29030           <...>-13151 (-----) [000] ...1 24572.717800: tracing_mark_write: E|13131
29031           <...>-13151 (-----) [000] .... 24572.717814: binder_transaction: transaction=1669201 dest_node=1 dest_proc=568 dest_thread=0 reply=0 flags=0x10 code=0x1
29032           <...>-13151 (-----) [000] ...2 24572.717818: binder_set_priority: proc=568 thread=568 old=120 => new=110 desired=110
29033           <...>-13151 (-----) [000] d..4 24572.717820: sched_waking: comm=hwservicemanage pid=568 prio=110 target_cpu=000
29034           <...>-13151 (-----) [000] dn.5 24572.717828: sched_wakeup: comm=hwservicemanage pid=568 prio=110 target_cpu=000
29035<...>-23903 ( 23896) [005] .... 24572.717832: binder_transaction: transaction=1669202 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
29036           <...>-13151 (-----) [000] d..2 24572.717833: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=R+ ==> next_comm=hwservicemanage next_pid=568 next_prio=110
29037<...>-23903 ( 23896) [005] .... 24572.717834: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
29038<...>-568 ( 568) [000] .... 24572.717836: binder_transaction_received: transaction=1669201
29039<...>-568 ( 568) [000] ...1 24572.717849: tracing_mark_write: B|568|HIDL::IServiceManager::get::server
29040<...>-23903 ( 23896) [005] d..2 24572.717853: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
29041<...>-24041 ( 23968) [005] .... 24572.717854: binder_transaction_received: transaction=1669202
29042          <idle>-0     (-----) [006] ...1 24572.717962: cpu_idle: state=4294967295 cpu_id=6
29043          <idle>-0     (-----) [006] d..1 24572.717963: cpu_idle: state=0 cpu_id=6
29044          <idle>-0     (-----) [007] ...1 24572.717983: cpu_idle: state=4294967295 cpu_id=7
29045          <idle>-0     (-----) [007] d..1 24572.717984: cpu_idle: state=0 cpu_id=7
29046<...>-568 ( 568) [000] ...1 24572.717998: tracing_mark_write: E|568
29047<...>-568 ( 568) [000] .... 24572.718004: binder_transaction: transaction=1669203 dest_node=0 dest_proc=13131 dest_thread=13151 reply=1 flags=0x0 code=0x0
29048<...>-568 ( 568) [000] .... 24572.718029: binder_set_priority: proc=568 thread=568 old=110 => new=120 desired=120
29049<...>-568 ( 568) [000] d..2 24572.718056: sched_switch: prev_comm=hwservicemanage prev_pid=568 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
29050           <...>-13151 (-----) [000] .... 24572.718061: binder_transaction_received: transaction=1669203
29051<...>-24041 ( 23968) [005] d..3 24572.718068: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=007
29052<...>-24041 ( 23968) [005] d..4 24572.718080: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
29053          <idle>-0     (-----) [006] .n.1 24572.718084: cpu_idle: state=4294967295 cpu_id=6
29054          <idle>-0     (-----) [006] d..2 24572.718087: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
29055<...>-24073 ( 23968) [006] d..2 24572.718101: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29056          <idle>-0     (-----) [006] d..1 24572.718104: cpu_idle: state=0 cpu_id=6
29057           <...>-13151 (-----) [000] ...1 24572.718116: tracing_mark_write: B|13131|HIDL::IBase::interfaceChain::client
29058           <...>-13151 (-----) [000] ...1 24572.718120: tracing_mark_write: E|13131
29059           <...>-13151 (-----) [000] .... 24572.718153: binder_transaction: transaction=1669205 dest_node=56 dest_proc=599 dest_thread=0 reply=0 flags=0x10 code=0xf43484e
29060           <...>-13151 (-----) [000] ...2 24572.718160: binder_set_priority: proc=599 thread=599 old=120 => new=110 desired=110
29061           <...>-13151 (-----) [000] d..4 24572.718163: sched_waking: comm=configstore@1.1 pid=599 prio=110 target_cpu=001
29062           <...>-13151 (-----) [000] dn.5 24572.718177: sched_wakeup: comm=configstore@1.1 pid=599 prio=110 target_cpu=000
29063           <...>-13151 (-----) [000] d..2 24572.718183: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=R+ ==> next_comm=configstore@1.1 next_pid=599 next_prio=110
29064<...>-599 ( 599) [000] .... 24572.718190: binder_transaction_received: transaction=1669205
29065<...>-24041 ( 23968) [005] .... 24572.718222: binder_transaction: transaction=1669206 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
29066<...>-24041 ( 23968) [005] d..4 24572.718225: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
29067<...>-599 ( 599) [000] ...1 24572.718230: tracing_mark_write: B|599|HIDL::IBase::interfaceChain::server
29068<...>-24041 ( 23968) [005] d..5 24572.718233: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
29069          <idle>-0     (-----) [006] .n.1 24572.718237: cpu_idle: state=4294967295 cpu_id=6
29070          <idle>-0     (-----) [006] d..2 24572.718240: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
29071<...>-24376 ( 24151) [006] .... 24572.718242: binder_transaction_received: transaction=1669206
29072<...>-599 ( 599) [000] ...1 24572.718259: tracing_mark_write: E|599
29073<...>-24041 ( 23968) [005] d..3 24572.718261: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=006
29074<...>-24376 ( 24151) [006] d..3 24572.718264: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
29075<...>-24376 ( 24151) [006] d..4 24572.718273: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
29076<...>-24041 ( 23968) [005] d..4 24572.718274: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=007
29077          <idle>-0     (-----) [007] .n.1 24572.718276: cpu_idle: state=4294967295 cpu_id=7
29078          <idle>-0     (-----) [007] d..2 24572.718280: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
29079<...>-599 ( 599) [000] .... 24572.718280: binder_transaction: transaction=1669207 dest_node=0 dest_proc=13131 dest_thread=13151 reply=1 flags=0x0 code=0x0
29080<...>-599 ( 599) [000] .... 24572.718285: binder_set_priority: proc=599 thread=599 old=110 => new=120 desired=120
29081<...>-24376 ( 24151) [006] d..2 24572.718290: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29082          <idle>-0     (-----) [006] d..1 24572.718294: cpu_idle: state=0 cpu_id=6
29083<...>-23994 ( 23968) [007] d..3 24572.718304: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=007
29084<...>-23994 ( 23968) [007] d..4 24572.718314: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=006
29085          <idle>-0     (-----) [006] .n.1 24572.718319: cpu_idle: state=4294967295 cpu_id=6
29086<...>-599 ( 599) [000] d..2 24572.718319: sched_switch: prev_comm=configstore@1.1 prev_pid=599 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
29087          <idle>-0     (-----) [006] d..2 24572.718322: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
29088           <...>-13151 (-----) [000] .... 24572.718324: binder_transaction_received: transaction=1669207
29089<...>-23994 ( 23968) [007] d..2 24572.718327: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
29090<...>-24151 ( 24151) [007] d..2 24572.718347: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
29091<...>-23968 ( 23968) [006] .... 24572.718349: binder_transaction: transaction=1669208 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
29092<...>-23968 ( 23968) [006] d..4 24572.718350: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
29093          <idle>-0     (-----) [007] d..1 24572.718352: cpu_idle: state=0 cpu_id=7
29094<...>-23968 ( 23968) [006] d..5 24572.718361: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
29095          <idle>-0     (-----) [007] .n.1 24572.718366: cpu_idle: state=4294967295 cpu_id=7
29096          <idle>-0     (-----) [007] d..2 24572.718369: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
29097<...>-24376 ( 24151) [007] .... 24572.718371: binder_transaction_received: transaction=1669208
29098<...>-24041 ( 23968) [005] .... 24572.718376: binder_transaction: transaction=1669209 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
29099<...>-23968 ( 23968) [006] d..2 24572.718379: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29100<...>-24041 ( 23968) [005] ...2 24572.718382: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
29101          <idle>-0     (-----) [006] d..1 24572.718383: cpu_idle: state=0 cpu_id=6
29102<...>-24041 ( 23968) [005] d..4 24572.718383: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
29103<...>-24041 ( 23968) [005] dn.5 24572.718387: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
29104           <...>-13151 (-----) [000] ...1 24572.718389: tracing_mark_write: B|13131|HIDL::ISurfaceFlingerConfigs::hasWideColorDisplay::client
29105<...>-24041 ( 23968) [005] d..2 24572.718390: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
29106<...>-23903 ( 23896) [005] .... 24572.718392: binder_transaction_received: transaction=1669209
29107           <...>-13151 (-----) [000] ...1 24572.718392: tracing_mark_write: E|13131
29108<...>-24376 ( 24151) [007] d..3 24572.718396: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
29109           <...>-13151 (-----) [000] .... 24572.718403: binder_transaction: transaction=1669210 dest_node=56 dest_proc=599 dest_thread=0 reply=0 flags=0x10 code=0x4
29110           <...>-13151 (-----) [000] ...2 24572.718406: binder_set_priority: proc=599 thread=599 old=120 => new=110 desired=110
29111<...>-24376 ( 24151) [007] d..4 24572.718407: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
29112           <...>-13151 (-----) [000] d..4 24572.718408: sched_waking: comm=configstore@1.1 pid=599 prio=110 target_cpu=000
29113          <idle>-0     (-----) [006] .n.1 24572.718412: cpu_idle: state=4294967295 cpu_id=6
29114           <...>-13151 (-----) [000] dn.5 24572.718415: sched_wakeup: comm=configstore@1.1 pid=599 prio=110 target_cpu=000
29115          <idle>-0     (-----) [006] d..2 24572.718415: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
29116<...>-23903 ( 23896) [005] .... 24572.718417: binder_transaction: transaction=1669211 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
29117<...>-23903 ( 23896) [005] .... 24572.718418: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
29118           <...>-13151 (-----) [000] d..2 24572.718420: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=R+ ==> next_comm=configstore@1.1 next_pid=599 next_prio=110
29119<...>-599 ( 599) [000] .... 24572.718423: binder_transaction_received: transaction=1669210
29120<...>-24376 ( 24151) [007] d..2 24572.718426: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
29121          <idle>-0     (-----) [007] d..1 24572.718430: cpu_idle: state=0 cpu_id=7
29122<...>-23903 ( 23896) [005] d..2 24572.718431: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
29123<...>-24041 ( 23968) [005] .... 24572.718433: binder_transaction_received: transaction=1669211
29124<...>-599 ( 599) [000] ...1 24572.718438: tracing_mark_write: B|599|HIDL::ISurfaceFlingerConfigs::hasWideColorDisplay::server
29125<...>-24151 ( 24151) [006] d..2 24572.718439: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29126          <idle>-0     (-----) [006] d..1 24572.718443: cpu_idle: state=0 cpu_id=6
29127<...>-599 ( 599) [000] ...1 24572.718448: tracing_mark_write: E|599
29128<...>-599 ( 599) [000] .... 24572.718453: binder_transaction: transaction=1669212 dest_node=0 dest_proc=13131 dest_thread=13151 reply=1 flags=0x0 code=0x0
29129<...>-599 ( 599) [000] .... 24572.718457: binder_set_priority: proc=599 thread=599 old=110 => new=120 desired=120
29130<...>-599 ( 599) [000] d..2 24572.718483: sched_switch: prev_comm=configstore@1.1 prev_pid=599 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
29131           <...>-13151 (-----) [000] .... 24572.718487: binder_transaction_received: transaction=1669212
29132          <idle>-0     (-----) [007] ...1 24572.718621: cpu_idle: state=4294967295 cpu_id=7
29133          <idle>-0     (-----) [007] d..1 24572.718622: cpu_idle: state=0 cpu_id=7
29134           <...>-13151 (-----) [000] d..2 24572.718625: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
29135<...>-24041 ( 23968) [005] d..3 24572.718626: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
29136           <...>-13151 (-----) [000] d..3 24572.718634: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
29137<...>-24041 ( 23968) [005] d..4 24572.718634: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
29138          <idle>-0     (-----) [006] .n.1 24572.718639: cpu_idle: state=4294967295 cpu_id=6
29139          <idle>-0     (-----) [006] d..2 24572.718643: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
29140<...>-24073 ( 23968) [006] d..2 24572.718655: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29141<...>-24041 ( 23968) [005] d..1 24572.718657: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=007
29142          <idle>-0     (-----) [006] d..1 24572.718658: cpu_idle: state=0 cpu_id=6
29143           <...>-13151 (-----) [000] ...1 24572.718667: tracing_mark_write: B|13131|HIDL::ISurfaceFlingerConfigs::hasHDRDisplay::client
29144<...>-24041 ( 23968) [005] d..2 24572.718670: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=004
29145           <...>-13151 (-----) [000] ...1 24572.718671: tracing_mark_write: E|13131
29146          <idle>-0     (-----) [004] .n.1 24572.718674: cpu_idle: state=4294967295 cpu_id=4
29147          <idle>-0     (-----) [004] d..2 24572.718677: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
29148           <...>-13151 (-----) [000] .... 24572.718681: binder_transaction: transaction=1669213 dest_node=56 dest_proc=599 dest_thread=0 reply=0 flags=0x10 code=0x5
29149           <...>-13151 (-----) [000] ...2 24572.718685: binder_set_priority: proc=599 thread=599 old=120 => new=110 desired=110
29150           <...>-13151 (-----) [000] d..4 24572.718686: sched_waking: comm=configstore@1.1 pid=599 prio=110 target_cpu=000
29151<...>-24041 ( 23968) [005] d..2 24572.718702: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
29152          <idle>-0     (-----) [005] d..1 24572.718710: cpu_idle: state=0 cpu_id=5
29153          <idle>-0     (-----) [006] dnh2 24572.718732: sched_wakeup: comm=configstore@1.1 pid=599 prio=110 target_cpu=006
29154          <idle>-0     (-----) [006] .n.1 24572.718734: cpu_idle: state=4294967295 cpu_id=6
29155           <...>-13151 (-----) [000] d.h5 24572.718734: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
29156          <idle>-0     (-----) [006] d..2 24572.718739: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=configstore@1.1 next_pid=599 next_prio=110
29157<...>-24003 ( 23968) [004] d..1 24572.718745: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
29158           <...>-13151 (-----) [000] d.h5 24572.718747: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
29159           <...>-13151 (-----) [000] d.h6 24572.718756: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
29160          <idle>-0     (-----) [007] dnh2 24572.718757: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
29161<...>-24003 ( 23968) [004] d..2 24572.718760: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=007
29162<...>-599 ( 599) [006] .... 24572.718760: binder_transaction_received: transaction=1669213
29163          <idle>-0     (-----) [003] .n.1 24572.718761: cpu_idle: state=4294967295 cpu_id=3
29164          <idle>-0     (-----) [007] .n.1 24572.718762: cpu_idle: state=4294967295 cpu_id=7
29165          <idle>-0     (-----) [007] d..2 24572.718764: 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
29166          <idle>-0     (-----) [003] d..2 24572.718766: 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
29167           <...>-13151 (-----) [000] d..2 24572.718767: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
29168<...>-599 ( 599) [006] ...1 24572.718769: tracing_mark_write: B|599|HIDL::ISurfaceFlingerConfigs::hasHDRDisplay::server
29169         sugov:4-560   (  560) [007] d..2 24572.718769: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
29170<...>-599 ( 599) [006] ...1 24572.718773: tracing_mark_write: E|599
29171<...>-599 ( 599) [006] .... 24572.718776: binder_transaction: transaction=1669214 dest_node=0 dest_proc=13131 dest_thread=13151 reply=1 flags=0x0 code=0x0
29172<...>-599 ( 599) [006] d..2 24572.718778: sched_waking: comm=RenderThread pid=13151 prio=110 target_cpu=000
29173<...>-24003 ( 23968) [004] d..1 24572.718785: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=007
29174  Binder:23968_C-25014 (23968) [007] d..2 24572.718789: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
29175         sugov:0-559   (  559) [003] d..2 24572.718790: 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
29176          <idle>-0     (-----) [007] d..1 24572.718791: cpu_idle: state=0 cpu_id=7
29177<...>-599 ( 599) [006] d..3 24572.718792: sched_wakeup: comm=RenderThread pid=13151 prio=110 target_cpu=006
29178<...>-24003 ( 23968) [004] d..2 24572.718795: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=007
29179          <idle>-0     (-----) [003] d..1 24572.718795: cpu_idle: state=0 cpu_id=3
29180          <idle>-0     (-----) [007] .n.1 24572.718799: cpu_idle: state=4294967295 cpu_id=7
29181<...>-599 ( 599) [006] .... 24572.718808: binder_set_priority: proc=599 thread=599 old=110 => new=120 desired=120
29182          <idle>-0     (-----) [007] d..2 24572.718809: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
29183<...>-599 ( 599) [006] d..2 24572.718820: sched_switch: prev_comm=configstore@1.1 prev_pid=599 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
29184           <...>-13151 (-----) [006] .... 24572.718821: binder_transaction_received: transaction=1669214
29185<...>-24003 ( 23968) [004] d..2 24572.718838: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
29186     logd.writer-563   (  555) [000] d..2 24572.718840: 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
29187          <idle>-0     (-----) [004] d..1 24572.718842: cpu_idle: state=0 cpu_id=4
29188           <...>-13151 (-----) [006] d..2 24572.718848: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
29189          <idle>-0     (-----) [000] d..1 24572.718853: cpu_idle: state=0 cpu_id=0
29190  Binder:23968_C-25014 (23968) [007] d..1 24572.718857: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=006
29191          <idle>-0     (-----) [000] dnh2 24572.718864: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
29192  Binder:23968_C-25014 (23968) [007] d..2 24572.718867: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=007
29193          <idle>-0     (-----) [000] .n.1 24572.718868: cpu_idle: state=4294967295 cpu_id=0
29194          <idle>-0     (-----) [000] d..2 24572.718874: 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
29195     logd.writer-563   (  555) [000] d..2 24572.718903: 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
29196          <idle>-0     (-----) [000] d..1 24572.718909: cpu_idle: state=0 cpu_id=0
29197  Binder:23968_C-25014 (23968) [007] d..2 24572.718913: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
29198<...>-12589 ( 23968) [007] d..1 24572.718927: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
29199<...>-12589 ( 23968) [007] d..2 24572.718938: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
29200           <...>-13151 (-----) [006] d..2 24572.718945: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
29201  Binder:23968_1-23981 (23968) [006] d..1 24572.718968: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=005
29202  Binder:23968_1-23981 (23968) [006] d..2 24572.718979: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=004
29203          <idle>-0     (-----) [004] .n.1 24572.718983: cpu_idle: state=4294967295 cpu_id=4
29204          <idle>-0     (-----) [004] d..2 24572.718988: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
29205<...>-12589 ( 23968) [007] .... 24572.718988: binder_transaction: transaction=1669215 dest_node=1280245 dest_proc=24133 dest_thread=0 reply=0 flags=0x11 code=0x3
29206<...>-12589 ( 23968) [007] d..4 24572.718993: sched_waking: comm=Binder:24133_2 pid=24157 prio=120 target_cpu=001
29207          <idle>-0     (-----) [000] dnh2 24572.719012: sched_wakeup: comm=Binder:24133_2 pid=24157 prio=120 target_cpu=000
29208          <idle>-0     (-----) [000] .n.1 24572.719016: cpu_idle: state=4294967295 cpu_id=0
29209<...>-24041 ( 23968) [004] .... 24572.719017: binder_transaction: transaction=1669216 dest_node=1271137 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
29210<...>-24041 ( 23968) [004] d..4 24572.719020: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
29211          <idle>-0     (-----) [000] d..2 24572.719022: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24133_2 next_pid=24157 next_prio=120
29212  Binder:23968_1-23981 (23968) [006] d..2 24572.719023: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
29213<...>-12589 ( 23968) [007] .... 24572.719024: binder_transaction: transaction=1669217 dest_node=1309202 dest_proc=24827 dest_thread=0 reply=0 flags=0x11 code=0x4
29214<...>-24041 ( 23968) [004] d..5 24572.719027: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
29215<...>-24157 ( 24133) [000] .... 24572.719028: binder_transaction_received: transaction=1669215
29216<...>-12589 ( 23968) [007] d..4 24572.719029: sched_waking: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=007
29217          <idle>-0     (-----) [005] .n.1 24572.719032: cpu_idle: state=4294967295 cpu_id=5
29218<...>-24041 ( 23968) [004] d..1 24572.719033: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
29219          <idle>-0     (-----) [005] d..2 24572.719037: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
29220<...>-23903 ( 23896) [005] .... 24572.719039: binder_transaction_received: transaction=1669216
29221<...>-24041 ( 23968) [004] d..2 24572.719042: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
29222<...>-12589 ( 23968) [007] d..5 24572.719045: sched_wakeup: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=006
29223<...>-23903 ( 23896) [005] d..1 24572.719049: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
29224           <...>-13151 (-----) [006] d..2 24572.719050: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
29225  Binder:23968_1-23981 (23968) [006] d..2 24572.719056: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=Binder:24827_4 next_pid=25554 next_prio=120
29226<...>-25554 ( 24827) [006] .... 24572.719060: binder_transaction_received: transaction=1669217
29227<...>-12589 ( 23968) [007] .... 24572.719060: binder_transaction: transaction=1669218 dest_node=1309202 dest_proc=24827 dest_thread=0 reply=0 flags=0x11 code=0x3
29228          <idle>-0     (-----) [001] dnh2 24572.719064: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
29229<...>-23903 ( 23896) [005] d..2 24572.719066: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
29230          <idle>-0     (-----) [001] .n.1 24572.719068: cpu_idle: state=4294967295 cpu_id=1
29231          <idle>-0     (-----) [005] d..1 24572.719070: cpu_idle: state=0 cpu_id=5
29232          <idle>-0     (-----) [001] d..2 24572.719072: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
29233<...>-12589 ( 23968) [007] d..3 24572.719076: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=006
29234<...>-12589 ( 23968) [007] d..4 24572.719082: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=006
29235<...>-12589 ( 23968) [007] .... 24572.719098: binder_transaction: transaction=1669219 dest_node=1669023 dest_proc=13131 dest_thread=0 reply=0 flags=0x11 code=0x4
29236<...>-12589 ( 23968) [007] d..4 24572.719100: sched_waking: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=006
29237   sfEventThread-23906 (23896) [001] d..2 24572.719108: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
29238<...>-12589 ( 23968) [007] d..5 24572.719113: sched_wakeup: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=005
29239          <idle>-0     (-----) [005] .n.1 24572.719118: cpu_idle: state=4294967295 cpu_id=5
29240          <idle>-0     (-----) [005] d..2 24572.719134: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_3 next_pid=13145 next_prio=120
29241           <...>-13145 (-----) [005] .... 24572.719136: binder_transaction_received: transaction=1669219
29242<...>-24041 ( 23968) [004] .... 24572.719159: binder_transaction: transaction=1669220 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
29243<...>-25554 ( 24827) [006] d..3 24572.719163: sched_waking: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=007
29244<...>-24041 ( 23968) [004] ...2 24572.719166: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
29245<...>-24041 ( 23968) [004] d..4 24572.719167: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
29246<...>-25554 ( 24827) [006] d..4 24572.719175: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=006
29247<...>-24041 ( 23968) [004] dn.5 24572.719176: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=004
29248<...>-24157 ( 24133) [000] d..3 24572.719178: sched_waking: comm=putmethod.latin pid=24133 prio=120 target_cpu=000
29249<...>-24041 ( 23968) [004] d..2 24572.719179: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
29250<...>-23903 ( 23896) [004] .... 24572.719181: binder_transaction_received: transaction=1669220
29251<...>-24157 ( 24133) [000] d..4 24572.719191: sched_wakeup: comm=putmethod.latin pid=24133 prio=120 target_cpu=000
29252<...>-25554 ( 24827) [006] d..4 24572.719197: sched_waking: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=001
29253<...>-25554 ( 24827) [006] d..5 24572.719209: sched_wakeup: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=007
29254<...>-23903 ( 23896) [004] .... 24572.719211: binder_transaction: transaction=1669221 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
29255<...>-23903 ( 23896) [004] .... 24572.719214: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
29256<...>-23968 ( 23968) [001] .... 24572.719218: binder_transaction: transaction=1669222 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xb
29257<...>-25554 ( 24827) [006] d.h5 24572.719229: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
29258<...>-24157 ( 24133) [000] d..2 24572.719234: sched_switch: prev_comm=Binder:24133_2 prev_pid=24157 prev_prio=120 prev_state=S ==> next_comm=putmethod.latin next_pid=24133 next_prio=120
29259           <...>-13145 (-----) [005] d..2 24572.719236: sched_switch: prev_comm=Binder:13131_3 prev_pid=13145 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
29260<...>-25554 ( 24827) [006] .... 24572.719237: binder_transaction_received: transaction=1669218
29261<...>-23903 ( 23896) [004] d..2 24572.719241: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
29262          <idle>-0     (-----) [005] d..1 24572.719241: cpu_idle: state=0 cpu_id=5
29263<...>-24041 ( 23968) [004] .... 24572.719242: binder_transaction_received: transaction=1669221
29264          <idle>-0     (-----) [003] dnh2 24572.719243: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
29265          <idle>-0     (-----) [003] .n.1 24572.719246: cpu_idle: state=4294967295 cpu_id=3
29266<...>-23968 ( 23968) [001] d..4 24572.719249: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
29267          <idle>-0     (-----) [003] d..2 24572.719251: 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
29268<...>-12589 ( 23968) [007] d.h1 24572.719264: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
29269<...>-12589 ( 23968) [007] .... 24572.719272: binder_transaction: transaction=1669224 dest_node=1280245 dest_proc=24133 dest_thread=0 reply=0 flags=0x11 code=0x5
29270<...>-25554 ( 24827) [006] d..2 24572.719275: sched_switch: prev_comm=Binder:24827_4 prev_pid=25554 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
29271         sugov:0-559   (  559) [003] d..2 24572.719276: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
29272<...>-24041 ( 23968) [004] .... 24572.719283: binder_transaction: transaction=1669226 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
29273<...>-24041 ( 23968) [004] ...2 24572.719284: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
29274<...>-24041 ( 23968) [004] d..4 24572.719305: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=004
29275 s.nexuslauncher-24827 (24827) [003] d.h4 24572.719308: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
29276<...>-12589 ( 23968) [007] d..4 24572.719308: sched_waking: comm=Binder:24133_2 pid=24157 prio=120 target_cpu=000
29277<...>-24041 ( 23968) [004] dn.5 24572.719309: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=004
29278<...>-24041 ( 23968) [004] d..2 24572.719312: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
29279<...>-23903 ( 23896) [004] .... 24572.719314: binder_transaction_received: transaction=1669226
29280<...>-23968 ( 23968) [001] d..2 24572.719320: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
29281<...>-23903 ( 23896) [004] .... 24572.719322: binder_transaction: transaction=1669228 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
29282<...>-23903 ( 23896) [004] .... 24572.719323: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
29283 putmethod.latin-24133 (24133) [000] d..2 24572.719324: sched_switch: prev_comm=putmethod.latin prev_pid=24133 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29284          <idle>-0     (-----) [005] dnh2 24572.719327: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
29285          <idle>-0     (-----) [001] dnh3 24572.719329: sched_wakeup: comm=Binder:24133_2 pid=24157 prio=120 target_cpu=001
29286          <idle>-0     (-----) [005] .n.1 24572.719329: cpu_idle: state=4294967295 cpu_id=5
29287          <idle>-0     (-----) [005] d..2 24572.719332: 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
29288<...>-23903 ( 23896) [004] d..2 24572.719334: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
29289<...>-24041 ( 23968) [004] .... 24572.719336: binder_transaction_received: transaction=1669228
29290          <idle>-0     (-----) [000] d..1 24572.719336: cpu_idle: state=0 cpu_id=0
29291          <idle>-0     (-----) [001] d..2 24572.719336: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24133_2 next_pid=24157 next_prio=120
29292         sugov:4-560   (  560) [005] d..2 24572.719339: 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
29293<...>-24157 ( 24133) [001] .... 24572.719342: binder_transaction_received: transaction=1669224
29294          <idle>-0     (-----) [005] d..1 24572.719342: cpu_idle: state=0 cpu_id=5
29295<...>-24041 ( 23968) [004] d..1 24572.719344: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
29296<...>-24041 ( 23968) [004] d..2 24572.719351: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
29297           <...>-13151 (-----) [006] d..2 24572.719355: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
29298<...>-24041 ( 23968) [004] d..2 24572.719377: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
29299<...>-12589 ( 23968) [007] .... 24572.719379: binder_transaction: transaction=1669229 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
29300<...>-12589 ( 23968) [007] d..2 24572.719381: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
29301          <idle>-0     (-----) [004] d..1 24572.719383: cpu_idle: state=0 cpu_id=4
29302<...>-12589 ( 23968) [007] d..3 24572.719394: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
29303<...>-12589 ( 23968) [007] .... 24572.719395: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
29304          <idle>-0     (-----) [004] .n.1 24572.719398: cpu_idle: state=4294967295 cpu_id=4
29305<...>-12589 ( 23968) [007] d..2 24572.719399: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=R+ ==> next_comm=Binder:24827_5 next_pid=5558 next_prio=120
29306          <idle>-0     (-----) [004] d..2 24572.719402: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
29307           <...>-13131 (-----) [004] .... 24572.719405: binder_transaction_received: transaction=1669229
29308<...>-5558 ( 24827) [007] d..2 24572.719405: sched_switch: prev_comm=Binder:24827_5 prev_pid=5558 prev_prio=120 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
29309<...>-24376 ( 24151) [007] .... 24572.719406: binder_transaction_received: transaction=1669222
29310  Binder:23968_1-23981 (23968) [006] d..1 24572.719413: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=004
29311  Binder:23968_1-23981 (23968) [006] d..2 24572.719424: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=005
29312          <idle>-0     (-----) [005] .n.1 24572.719428: cpu_idle: state=4294967295 cpu_id=5
29313          <idle>-0     (-----) [005] d..2 24572.719431: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
29314           <...>-13131 (-----) [004] d..2 24572.719463: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
29315          <idle>-0     (-----) [004] d..1 24572.719467: cpu_idle: state=0 cpu_id=4
29316 s.nexuslauncher-24827 (24827) [003] d..2 24572.719481: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29317          <idle>-0     (-----) [003] d..1 24572.719490: cpu_idle: state=0 cpu_id=3
29318  Binder:23968_1-23981 (23968) [006] .... 24572.719494: binder_transaction: transaction=1669230 dest_node=0 dest_proc=24151 dest_thread=24340 reply=1 flags=0x0 code=0x0
29319  Binder:23968_1-23981 (23968) [006] d..2 24572.719497: sched_waking: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=006
29320<...>-24157 ( 24133) [001] d..3 24572.719504: sched_waking: comm=putmethod.latin pid=24133 prio=120 target_cpu=000
29321  Binder:23968_1-23981 (23968) [006] d..3 24572.719507: sched_wakeup: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=007
29322<...>-24376 ( 24151) [007] d..3 24572.719512: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
29323<...>-24157 ( 24133) [001] d..4 24572.719517: sched_wakeup: comm=putmethod.latin pid=24133 prio=120 target_cpu=000
29324  Binder:23968_1-23981 (23968) [006] d..2 24572.719518: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
29325          <idle>-0     (-----) [000] .n.1 24572.719523: cpu_idle: state=4294967295 cpu_id=0
29326<...>-24376 ( 24151) [007] d..4 24572.719524: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
29327           <...>-13151 (-----) [006] d..2 24572.719526: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=R+ ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
29328          <idle>-0     (-----) [000] d..2 24572.719529: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=putmethod.latin next_pid=24133 next_prio=120
29329<...>-24003 ( 23968) [005] d..2 24572.719544: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
29330<...>-24376 ( 24151) [007] d..2 24572.719548: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=pool-1-thread-1 next_pid=24340 next_prio=120
29331          <idle>-0     (-----) [005] d..1 24572.719548: cpu_idle: state=0 cpu_id=5
29332<...>-24340 ( 24151) [007] .... 24572.719550: binder_transaction_received: transaction=1669230
29333<...>-24157 ( 24133) [001] d..2 24572.719557: sched_switch: prev_comm=Binder:24133_2 prev_pid=24157 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
29334          <idle>-0     (-----) [001] d..1 24572.719566: cpu_idle: state=0 cpu_id=1
29335<...>-24151 ( 24151) [006] d..2 24572.719625: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
29336 putmethod.latin-24133 (24133) [000] d.h4 24572.719683: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
29337 putmethod.latin-24133 (24133) [000] d.h4 24572.719699: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
29338          <idle>-0     (-----) [004] dnh2 24572.719703: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
29339          <idle>-0     (-----) [004] .n.1 24572.719705: cpu_idle: state=4294967295 cpu_id=4
29340          <idle>-0     (-----) [004] d..2 24572.719708: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
29341          <idle>-0     (-----) [005] dnh2 24572.719714: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
29342          <idle>-0     (-----) [005] .n.1 24572.719716: cpu_idle: state=4294967295 cpu_id=5
29343          <idle>-0     (-----) [005] d..2 24572.719719: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
29344  crtc_event:111-254   (  254) [004] d..2 24572.719723: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
29345          <idle>-0     (-----) [004] d..1 24572.719726: cpu_idle: state=0 cpu_id=4
29346<...>-24340 ( 24151) [007] .... 24572.719754: binder_transaction: transaction=1669231 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xd
29347<...>-24340 ( 24151) [007] d..4 24572.719757: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
29348<...>-24340 ( 24151) [007] d..5 24572.719765: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
29349           <...>-13151 (-----) [006] d..2 24572.719768: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
29350<...>-24340 ( 24151) [007] d..2 24572.719774: sched_switch: prev_comm=pool-1-thread-1 prev_pid=24340 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
29351  Binder:23968_1-23981 (23968) [006] .... 24572.719774: binder_transaction_received: transaction=1669231
29352 putmethod.latin-24133 (24133) [000] .... 24572.719792: binder_transaction: transaction=1669232 dest_node=1669225 dest_proc=23968 dest_thread=0 reply=0 flags=0x11 code=0x1
29353<...>-12589 ( 23968) [007] d..2 24572.719792: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
29354          <idle>-0     (-----) [007] d..1 24572.719798: cpu_idle: state=0 cpu_id=7
29355 crtc_commit:111-253   (  253) [005] d..2 24572.719824: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
29356          <idle>-0     (-----) [005] d..1 24572.719827: cpu_idle: state=0 cpu_id=5
29357 putmethod.latin-24133 (24133) [000] d..4 24572.719915: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
29358          <idle>-0     (-----) [007] dnh2 24572.719931: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
29359  Binder:23968_1-23981 (23968) [006] .... 24572.719933: binder_transaction: transaction=1669235 dest_node=0 dest_proc=24151 dest_thread=24340 reply=1 flags=0x0 code=0x0
29360          <idle>-0     (-----) [007] .n.1 24572.719933: cpu_idle: state=4294967295 cpu_id=7
29361  Binder:23968_1-23981 (23968) [006] d..2 24572.719936: sched_waking: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=007
29362          <idle>-0     (-----) [007] d..2 24572.719936: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
29363<...>-12589 ( 23968) [007] .... 24572.719938: binder_transaction_received: transaction=1669232
29364  Binder:23968_1-23981 (23968) [006] d..3 24572.719942: sched_wakeup: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=007
29365  Binder:23968_1-23981 (23968) [006] d..2 24572.719953: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
29366 putmethod.latin-24133 (24133) [000] d..2 24572.719973: sched_switch: prev_comm=putmethod.latin prev_pid=24133 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29367          <idle>-0     (-----) [000] d..1 24572.719982: cpu_idle: state=0 cpu_id=0
29368<...>-12589 ( 23968) [007] .... 24572.720016: binder_transaction: transaction=1669236 dest_node=1280245 dest_proc=24133 dest_thread=0 reply=0 flags=0x11 code=0x2
29369<...>-12589 ( 23968) [007] d..4 24572.720030: sched_waking: comm=Binder:24133_2 pid=24157 prio=120 target_cpu=001
29370          <idle>-0     (-----) [001] dnh2 24572.720046: sched_wakeup: comm=Binder:24133_2 pid=24157 prio=120 target_cpu=001
29371          <idle>-0     (-----) [001] .n.1 24572.720051: cpu_idle: state=4294967295 cpu_id=1
29372          <idle>-0     (-----) [001] d..2 24572.720058: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24133_2 next_pid=24157 next_prio=120
29373<...>-24157 ( 24133) [001] .... 24572.720061: binder_transaction_received: transaction=1669236
29374<...>-12589 ( 23968) [007] .... 24572.720082: binder_transaction: transaction=1669238 dest_node=1280245 dest_proc=24133 dest_thread=0 reply=0 flags=0x11 code=0x6
29375<...>-12589 ( 23968) [007] .... 24572.720102: binder_transaction: transaction=1669239 dest_node=1280245 dest_proc=24133 dest_thread=0 reply=0 flags=0x11 code=0x6
29376<...>-12589 ( 23968) [007] .... 24572.720130: binder_transaction: transaction=1669240 dest_node=1280245 dest_proc=24133 dest_thread=0 reply=0 flags=0x11 code=0x4
29377<...>-24157 ( 24133) [001] d..3 24572.720158: sched_waking: comm=putmethod.latin pid=24133 prio=120 target_cpu=000
29378           <...>-13151 (-----) [006] d..2 24572.720159: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
29379<...>-24157 ( 24133) [001] d..4 24572.720170: sched_wakeup: comm=putmethod.latin pid=24133 prio=120 target_cpu=000
29380<...>-12589 ( 23968) [007] .... 24572.720176: binder_transaction: transaction=1669243 dest_node=1669023 dest_proc=13131 dest_thread=0 reply=0 flags=0x11 code=0x2
29381          <idle>-0     (-----) [000] dnh2 24572.720176: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
29382          <idle>-0     (-----) [000] .n.1 24572.720181: cpu_idle: state=4294967295 cpu_id=0
29383<...>-12589 ( 23968) [007] d..4 24572.720186: sched_waking: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=005
29384          <idle>-0     (-----) [000] d..2 24572.720186: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=putmethod.latin next_pid=24133 next_prio=120
29385<...>-12589 ( 23968) [007] d..5 24572.720197: sched_wakeup: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=004
29386<...>-24157 ( 24133) [001] d..4 24572.720201: sched_waking: comm=Binder:24133_7 pid=12580 prio=120 target_cpu=001
29387          <idle>-0     (-----) [004] .n.1 24572.720201: cpu_idle: state=4294967295 cpu_id=4
29388          <idle>-0     (-----) [004] d..2 24572.720204: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_3 next_pid=13145 next_prio=120
29389           <...>-13145 (-----) [004] .... 24572.720206: binder_transaction_received: transaction=1669243
29390<...>-24157 ( 24133) [001] d..5 24572.720213: sched_wakeup: comm=Binder:24133_7 pid=12580 prio=120 target_cpu=001
29391<...>-24157 ( 24133) [001] .... 24572.720218: binder_transaction_received: transaction=1669238
29392<...>-12589 ( 23968) [007] d..2 24572.720233: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=pool-1-thread-1 next_pid=24340 next_prio=120
29393<...>-24340 ( 24151) [007] .... 24572.720236: binder_transaction_received: transaction=1669235
29394 putmethod.latin-24133 (24133) [000] .... 24572.720248: binder_transaction: transaction=1669245 dest_node=1271381 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x21
29395 putmethod.latin-24133 (24133) [000] d..4 24572.720254: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
29396<...>-24340 ( 24151) [007] d.h1 24572.720269: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
29397 putmethod.latin-24133 (24133) [000] d..2 24572.720271: sched_switch: prev_comm=putmethod.latin prev_pid=24133 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
29398           <...>-13145 (-----) [004] d..3 24572.720292: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
29399<...>-24157 ( 24133) [001] d..4 24572.720301: sched_waking: comm=Binder:24133_4 pid=24431 prio=120 target_cpu=000
29400           <...>-13145 (-----) [004] d..4 24572.720303: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
29401          <idle>-0     (-----) [005] .n.1 24572.720307: cpu_idle: state=4294967295 cpu_id=5
29402          <idle>-0     (-----) [005] d..2 24572.720310: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
29403<...>-24157 ( 24133) [001] d..5 24572.720318: sched_wakeup: comm=Binder:24133_4 pid=24431 prio=120 target_cpu=000
29404     logd.writer-563   (  555) [000] d..2 24572.720324: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=Binder:24133_4 next_pid=24431 next_prio=120
29405<...>-24431 ( 24133) [000] .... 24572.720333: binder_transaction_received: transaction=1669239
29406           <...>-13145 (-----) [004] d..2 24572.720336: sched_switch: prev_comm=Binder:13131_3 prev_pid=13145 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
29407           <...>-13131 (-----) [005] d..2 24572.720337: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
29408<...>-24157 ( 24133) [001] d..2 24572.720338: sched_switch: prev_comm=Binder:24133_2 prev_pid=24157 prev_prio=120 prev_state=S ==> next_comm=Binder:24133_7 next_pid=12580 next_prio=120
29409          <idle>-0     (-----) [005] d..1 24572.720339: cpu_idle: state=0 cpu_id=5
29410<...>-24340 ( 24151) [007] d..2 24572.720340: sched_switch: prev_comm=pool-1-thread-1 prev_pid=24340 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
29411          <idle>-0     (-----) [004] d..1 24572.720341: cpu_idle: state=0 cpu_id=4
29412<...>-12589 ( 23968) [007] .... 24572.720343: binder_transaction_received: transaction=1669245
29413  Binder:24133_7-12580 (24133) [001] d..2 24572.720352: sched_switch: prev_comm=Binder:24133_7 prev_pid=12580 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
29414          <idle>-0     (-----) [001] d..1 24572.720360: cpu_idle: state=0 cpu_id=1
29415<...>-12589 ( 23968) [007] .... 24572.720397: binder_transaction: transaction=1669246 dest_node=1669023 dest_proc=13131 dest_thread=0 reply=0 flags=0x11 code=0x6
29416<...>-12589 ( 23968) [007] d..4 24572.720399: sched_waking: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=004
29417<...>-12589 ( 23968) [007] d..5 24572.720407: sched_wakeup: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=004
29418          <idle>-0     (-----) [004] .n.1 24572.720411: cpu_idle: state=4294967295 cpu_id=4
29419          <idle>-0     (-----) [004] d..2 24572.720415: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_3 next_pid=13145 next_prio=120
29420           <...>-13145 (-----) [004] .... 24572.720416: binder_transaction_received: transaction=1669246
29421<...>-24431 ( 24133) [000] d..4 24572.720429: sched_waking: comm=Binder:24133_7 pid=12580 prio=120 target_cpu=001
29422<...>-24431 ( 24133) [000] d..5 24572.720442: sched_wakeup: comm=Binder:24133_7 pid=12580 prio=120 target_cpu=001
29423<...>-12589 ( 23968) [007] .... 24572.720445: binder_transaction: transaction=1669247 dest_node=0 dest_proc=24133 dest_thread=24133 reply=1 flags=0x0 code=0x0
29424           <...>-13145 (-----) [004] d..3 24572.720445: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
29425<...>-12589 ( 23968) [007] d..2 24572.720446: sched_waking: comm=putmethod.latin pid=24133 prio=120 target_cpu=000
29426          <idle>-0     (-----) [001] .n.1 24572.720447: cpu_idle: state=4294967295 cpu_id=1
29427<...>-24431 ( 24133) [000] .... 24572.720449: binder_transaction_received: transaction=1669240
29428           <...>-13145 (-----) [004] d..4 24572.720453: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
29429          <idle>-0     (-----) [001] d..2 24572.720454: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24133_7 next_pid=12580 next_prio=120
29430          <idle>-0     (-----) [005] .n.1 24572.720457: cpu_idle: state=4294967295 cpu_id=5
29431<...>-24431 ( 24133) [000] d.h1 24572.720459: sched_wakeup: comm=putmethod.latin pid=24133 prio=120 target_cpu=000
29432          <idle>-0     (-----) [005] d..2 24572.720460: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
29433  Binder:24133_7-12580 (24133) [001] d..2 24572.720464: sched_switch: prev_comm=Binder:24133_7 prev_pid=12580 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
29434<...>-12589 ( 23968) [007] d..2 24572.720465: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
29435          <idle>-0     (-----) [001] d..1 24572.720469: cpu_idle: state=0 cpu_id=1
29436          <idle>-0     (-----) [007] d..1 24572.720470: cpu_idle: state=0 cpu_id=7
29437           <...>-13131 (-----) [005] d..2 24572.720472: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
29438          <idle>-0     (-----) [005] d..1 24572.720474: cpu_idle: state=0 cpu_id=5
29439           <...>-13145 (-----) [004] d..2 24572.720477: sched_switch: prev_comm=Binder:13131_3 prev_pid=13145 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
29440          <idle>-0     (-----) [004] d..1 24572.720482: cpu_idle: state=0 cpu_id=4
29441<...>-24431 ( 24133) [000] d..2 24572.720589: sched_switch: prev_comm=Binder:24133_4 prev_pid=24431 prev_prio=120 prev_state=S ==> next_comm=putmethod.latin next_pid=24133 next_prio=120
29442 putmethod.latin-24133 (24133) [000] .... 24572.720593: binder_transaction_received: transaction=1669247
29443          <idle>-0     (-----) [004] ...1 24572.720701: cpu_idle: state=4294967295 cpu_id=4
29444          <idle>-0     (-----) [004] d..1 24572.720702: cpu_idle: state=0 cpu_id=4
29445          <idle>-0     (-----) [005] d.s3 24572.720895: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
29446           <...>-13151 (-----) [006] d.s2 24572.720898: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
29447          <idle>-0     (-----) [005] d.s4 24572.720901: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
29448          <idle>-0     (-----) [004] .n.1 24572.720906: cpu_idle: state=4294967295 cpu_id=4
29449          <idle>-0     (-----) [004] d..2 24572.720910: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
29450          <idle>-0     (-----) [005] ...1 24572.720910: cpu_idle: state=4294967295 cpu_id=5
29451           <...>-13151 (-----) [006] d.s3 24572.720913: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=005
29452          <idle>-0     (-----) [005] d..2 24572.720916: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29453  crtc_event:111-254   (  254) [004] d..2 24572.720922: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
29454          <idle>-0     (-----) [001] ...1 24572.720924: cpu_idle: state=4294967295 cpu_id=1
29455          <idle>-0     (-----) [004] d..1 24572.720924: cpu_idle: state=0 cpu_id=4
29456          <idle>-0     (-----) [001] d..1 24572.720927: cpu_idle: state=0 cpu_id=1
29457 putmethod.latin-24133 (24133) [000] d..3 24572.720949: sched_waking: comm=queued-work-loo pid=24217 prio=118 target_cpu=001
29458 putmethod.latin-24133 (24133) [000] d..4 24572.720963: sched_wakeup: comm=queued-work-loo pid=24217 prio=118 target_cpu=001
29459          <idle>-0     (-----) [001] .n.1 24572.720967: cpu_idle: state=4294967295 cpu_id=1
29460          <idle>-0     (-----) [001] d..2 24572.720974: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=queued-work-loo next_pid=24217 next_prio=118
29461<...>-24217 ( 24133) [001] d..2 24572.721015: sched_switch: prev_comm=queued-work-loo prev_pid=24217 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
29462          <idle>-0     (-----) [001] d..1 24572.721021: cpu_idle: state=0 cpu_id=1
29463  kworker/u16:10-23868 (23868) [005] d..2 24572.721135: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
29464          <idle>-0     (-----) [005] d..1 24572.721137: cpu_idle: state=0 cpu_id=5
29465 putmethod.latin-24133 (24133) [000] d..3 24572.721166: sched_waking: comm=MetricsManager pid=24844 prio=139 target_cpu=000
29466          <idle>-0     (-----) [003] d.s3 24572.721179: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=005
29467 putmethod.latin-24133 (24133) [000] d..4 24572.721186: sched_wakeup: comm=MetricsManager pid=24844 prio=139 target_cpu=001
29468          <idle>-0     (-----) [001] .n.1 24572.721191: cpu_idle: state=4294967295 cpu_id=1
29469          <idle>-0     (-----) [003] ...1 24572.721192: cpu_idle: state=4294967295 cpu_id=3
29470          <idle>-0     (-----) [005] d.h2 24572.721193: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
29471          <idle>-0     (-----) [005] dnh2 24572.721195: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=005
29472          <idle>-0     (-----) [003] d..1 24572.721195: cpu_idle: state=0 cpu_id=3
29473           <...>-13151 (-----) [006] .... 24572.721195: binder_transaction: transaction=1669248 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x7
29474          <idle>-0     (-----) [005] .n.1 24572.721197: cpu_idle: state=4294967295 cpu_id=5
29475          <idle>-0     (-----) [001] d..2 24572.721197: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=MetricsManager next_pid=24844 next_prio=139
29476           <...>-13151 (-----) [006] ...2 24572.721198: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
29477           <...>-13151 (-----) [006] d..4 24572.721200: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=004
29478          <idle>-0     (-----) [005] d..2 24572.721200: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29479           <...>-13151 (-----) [006] dn.5 24572.721208: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=006
29480           <...>-13151 (-----) [006] d..2 24572.721211: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
29481<...>-23903 ( 23896) [006] .... 24572.721216: binder_transaction_received: transaction=1669248
29482<...>-23903 ( 23896) [006] .... 24572.721240: binder_transaction: transaction=1669249 dest_node=0 dest_proc=13131 dest_thread=13151 reply=1 flags=0x0 code=0x0
29483<...>-23903 ( 23896) [006] .... 24572.721246: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
29484<...>-23903 ( 23896) [006] d..2 24572.721258: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
29485           <...>-13151 (-----) [006] .... 24572.721260: binder_transaction_received: transaction=1669249
29486           <...>-13151 (-----) [006] .... 24572.721273: binder_transaction: transaction=1669251 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0xb
29487           <...>-13151 (-----) [006] ...2 24572.721275: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
29488           <...>-13151 (-----) [006] d..4 24572.721276: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=006
29489           <...>-13151 (-----) [006] dn.5 24572.721279: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=006
29490           <...>-13151 (-----) [006] d..2 24572.721282: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
29491<...>-23903 ( 23896) [006] .... 24572.721283: binder_transaction_received: transaction=1669251
29492<...>-23903 ( 23896) [006] .... 24572.721307: binder_transaction: transaction=1669252 dest_node=0 dest_proc=13131 dest_thread=13151 reply=1 flags=0x0 code=0x0
29493<...>-23903 ( 23896) [006] .... 24572.721308: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
29494<...>-24844 ( 24133) [001] d..2 24572.721312: sched_switch: prev_comm=MetricsManager prev_pid=24844 prev_prio=139 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
29495<...>-23903 ( 23896) [006] d..2 24572.721318: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
29496           <...>-13151 (-----) [006] .... 24572.721319: binder_transaction_received: transaction=1669252
29497          <idle>-0     (-----) [001] d..1 24572.721319: cpu_idle: state=0 cpu_id=1
29498           <...>-13151 (-----) [006] .... 24572.721328: binder_transaction: transaction=1669253 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0xc
29499           <...>-13151 (-----) [006] ...2 24572.721330: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
29500           <...>-13151 (-----) [006] d..4 24572.721330: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=006
29501           <...>-13151 (-----) [006] dn.5 24572.721333: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=006
29502           <...>-13151 (-----) [006] d..2 24572.721336: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
29503<...>-23903 ( 23896) [006] .... 24572.721337: binder_transaction_received: transaction=1669253
29504<...>-23903 ( 23896) [006] .... 24572.721342: binder_transaction: transaction=1669254 dest_node=0 dest_proc=13131 dest_thread=13151 reply=1 flags=0x0 code=0x0
29505<...>-23903 ( 23896) [006] .... 24572.721343: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
29506  kworker/u16:10-23868 (23868) [005] d..2 24572.721346: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
29507          <idle>-0     (-----) [005] d..1 24572.721348: cpu_idle: state=0 cpu_id=5
29508<...>-23903 ( 23896) [006] d..2 24572.721352: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
29509           <...>-13151 (-----) [006] .... 24572.721354: binder_transaction_received: transaction=1669254
29510          <idle>-0     (-----) [003] d.s3 24572.721379: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=005
29511          <idle>-0     (-----) [003] ...1 24572.721389: cpu_idle: state=4294967295 cpu_id=3
29512          <idle>-0     (-----) [005] d.h2 24572.721389: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
29513          <idle>-0     (-----) [005] dnh2 24572.721390: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=005
29514          <idle>-0     (-----) [003] d..1 24572.721392: cpu_idle: state=0 cpu_id=3
29515          <idle>-0     (-----) [005] .n.1 24572.721392: cpu_idle: state=4294967295 cpu_id=5
29516          <idle>-0     (-----) [005] d..2 24572.721394: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29517  kworker/u16:10-23868 (23868) [005] d..2 24572.721400: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
29518          <idle>-0     (-----) [005] d..1 24572.721402: cpu_idle: state=0 cpu_id=5
29519 putmethod.latin-24133 (24133) [000] .... 24572.721497: binder_transaction: transaction=1669255 dest_node=1273782 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x15
29520 putmethod.latin-24133 (24133) [000] d..4 24572.721502: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
29521          <idle>-0     (-----) [007] dnh2 24572.721516: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
29522          <idle>-0     (-----) [007] .n.1 24572.721519: cpu_idle: state=4294967295 cpu_id=7
29523 putmethod.latin-24133 (24133) [000] d..2 24572.721519: sched_switch: prev_comm=putmethod.latin prev_pid=24133 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
29524          <idle>-0     (-----) [007] d..2 24572.721523: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
29525<...>-12589 ( 23968) [007] .... 24572.721524: binder_transaction_received: transaction=1669255
29526     logd.writer-563   (  555) [000] d..2 24572.721608: 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
29527          <idle>-0     (-----) [000] d..1 24572.721619: cpu_idle: state=0 cpu_id=0
29528<...>-12589 ( 23968) [007] .... 24572.721690: binder_transaction: transaction=1669256 dest_node=0 dest_proc=24133 dest_thread=24133 reply=1 flags=0x0 code=0x0
29529<...>-12589 ( 23968) [007] d..2 24572.721693: sched_waking: comm=putmethod.latin pid=24133 prio=120 target_cpu=000
29530          <idle>-0     (-----) [000] dnh2 24572.721708: sched_wakeup: comm=putmethod.latin pid=24133 prio=120 target_cpu=000
29531<...>-12589 ( 23968) [007] d..2 24572.721712: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
29532          <idle>-0     (-----) [000] .n.1 24572.721713: cpu_idle: state=4294967295 cpu_id=0
29533          <idle>-0     (-----) [007] d..1 24572.721717: cpu_idle: state=0 cpu_id=7
29534          <idle>-0     (-----) [000] d..2 24572.721718: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=putmethod.latin next_pid=24133 next_prio=120
29535 putmethod.latin-24133 (24133) [000] .... 24572.721723: binder_transaction_received: transaction=1669256
29536 putmethod.latin-24133 (24133) [000] d.h4 24572.722027: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
29537          <idle>-0     (-----) [005] dnh2 24572.722042: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
29538          <idle>-0     (-----) [005] .n.1 24572.722044: cpu_idle: state=4294967295 cpu_id=5
29539          <idle>-0     (-----) [005] d..2 24572.722046: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
29540 crtc_commit:111-253   (  253) [005] d..2 24572.722088: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
29541          <idle>-0     (-----) [005] d..1 24572.722090: cpu_idle: state=0 cpu_id=5
29542 putmethod.latin-24133 (24133) [000] d..3 24572.722108: sched_waking: comm=MetricsManager pid=24844 prio=139 target_cpu=001
29543 putmethod.latin-24133 (24133) [000] d..4 24572.722121: sched_wakeup: comm=MetricsManager pid=24844 prio=139 target_cpu=001
29544          <idle>-0     (-----) [001] .n.1 24572.722126: cpu_idle: state=4294967295 cpu_id=1
29545          <idle>-0     (-----) [001] d..2 24572.722132: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=MetricsManager next_pid=24844 next_prio=139
29546<...>-24844 ( 24133) [001] d..2 24572.722310: sched_switch: prev_comm=MetricsManager prev_pid=24844 prev_prio=139 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
29547 putmethod.latin-24133 (24133) [000] d.h4 24572.722310: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
29548          <idle>-0     (-----) [001] d..1 24572.722318: cpu_idle: state=0 cpu_id=1
29549          <idle>-0     (-----) [004] dnh2 24572.722324: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
29550          <idle>-0     (-----) [004] .n.1 24572.722326: cpu_idle: state=4294967295 cpu_id=4
29551 putmethod.latin-24133 (24133) [000] d.h6 24572.722326: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
29552          <idle>-0     (-----) [004] d..2 24572.722328: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
29553  crtc_event:111-254   (  254) [004] d..2 24572.722336: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
29554 putmethod.latin-24133 (24133) [000] d.h7 24572.722337: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
29555          <idle>-0     (-----) [004] d..1 24572.722338: cpu_idle: state=0 cpu_id=4
29556 putmethod.latin-24133 (24133) [000] d.h8 24572.722349: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
29557 putmethod.latin-24133 (24133) [000] d.h6 24572.722359: sched_waking: comm=SDM_EventThread pid=624 prio=111 target_cpu=004
29558          <idle>-0     (-----) [005] dnh2 24572.722361: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
29559          <idle>-0     (-----) [005] .n.1 24572.722363: cpu_idle: state=4294967295 cpu_id=5
29560          <idle>-0     (-----) [005] d..2 24572.722366: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
29561          <idle>-0     (-----) [004] dnh2 24572.722375: sched_wakeup: comm=SDM_EventThread pid=624 prio=111 target_cpu=004
29562 crtc_commit:111-253   (  253) [005] d..2 24572.722376: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
29563          <idle>-0     (-----) [004] .n.1 24572.722377: cpu_idle: state=4294967295 cpu_id=4
29564          <idle>-0     (-----) [005] d..1 24572.722378: cpu_idle: state=0 cpu_id=5
29565          <idle>-0     (-----) [004] d..2 24572.722380: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=624 next_prio=111
29566 SDM_EventThread-624   (  598) [004] ...1 24572.722412: tracing_mark_write: B|598|HWCCallbacks::Vsync::
29567 SDM_EventThread-624   (  598) [004] ...1 24572.722419: tracing_mark_write: B|598|HIDL::IComposerCallback::onVsync::client
29568 SDM_EventThread-624   (  598) [004] ...1 24572.722420: tracing_mark_write: E|598
29569 SDM_EventThread-624   (  598) [004] .... 24572.722437: binder_transaction: transaction=1669257 dest_node=1270370 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
29570 SDM_EventThread-624   (  598) [004] d..4 24572.722441: sched_waking: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=000
29571          <idle>-0     (-----) [001] dnh2 24572.722462: sched_wakeup: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=001
29572 SDM_EventThread-624   (  598) [004] ...1 24572.722463: tracing_mark_write: E|598
29573          <idle>-0     (-----) [001] .n.1 24572.722466: cpu_idle: state=4294967295 cpu_id=1
29574 SDM_EventThread-624   (  598) [004] d..4 24572.722470: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
29575          <idle>-0     (-----) [001] d..2 24572.722472: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:23896_ next_pid=23923 next_prio=120
29576 putmethod.latin-24133 (24133) [000] d..1 24572.722476: sched_waking: comm=Jit thread pool pid=24140 prio=129 target_cpu=000
29577 SDM_EventThread-624   (  598) [004] d..5 24572.722477: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
29578 HwBinder:23896_-23923 (23896) [001] .... 24572.722478: binder_transaction_received: transaction=1669257
29579          <idle>-0     (-----) [005] .n.1 24572.722481: cpu_idle: state=4294967295 cpu_id=5
29580          <idle>-0     (-----) [005] d..2 24572.722484: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
29581 SDM_EventThread-624   (  598) [004] d..2 24572.722489: sched_switch: prev_comm=SDM_EventThread prev_pid=624 prev_prio=111 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
29582 crtc_commit:111-253   (  253) [005] d..2 24572.722490: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
29583          <idle>-0     (-----) [005] d..1 24572.722492: cpu_idle: state=0 cpu_id=5
29584          <idle>-0     (-----) [004] d..1 24572.722492: cpu_idle: state=0 cpu_id=4
29585 putmethod.latin-24133 (24133) [000] d..2 24572.722494: sched_wakeup: comm=Jit thread pool pid=24140 prio=129 target_cpu=001
29586 HwBinder:23896_-23923 (23896) [001] ...1 24572.722513: tracing_mark_write: B|23896|HIDL::IComposerCallback::onVsync::server
29587 HwBinder:23896_-23923 (23896) [001] ...1 24572.722528: tracing_mark_write: E|23896
29588 HwBinder:23896_-23923 (23896) [001] d..2 24572.722552: sched_switch: prev_comm=HwBinder:23896_ prev_pid=23923 prev_prio=120 prev_state=S ==> next_comm=Jit thread pool next_pid=24140 next_prio=129
29589<...>-24140 ( 24133) [001] d..2 24572.722591: sched_switch: prev_comm=Jit thread pool prev_pid=24140 prev_prio=129 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
29590          <idle>-0     (-----) [001] d..1 24572.722598: cpu_idle: state=0 cpu_id=1
29591 putmethod.latin-24133 (24133) [000] d..3 24572.722691: sched_waking: comm=MetricsManager pid=24844 prio=139 target_cpu=001
29592 putmethod.latin-24133 (24133) [000] d..4 24572.722702: sched_wakeup: comm=MetricsManager pid=24844 prio=139 target_cpu=001
29593          <idle>-0     (-----) [001] .n.1 24572.722707: cpu_idle: state=4294967295 cpu_id=1
29594          <idle>-0     (-----) [005] ...1 24572.722712: cpu_idle: state=4294967295 cpu_id=5
29595          <idle>-0     (-----) [005] d..1 24572.722713: cpu_idle: state=0 cpu_id=5
29596          <idle>-0     (-----) [001] d..2 24572.722713: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=MetricsManager next_pid=24844 next_prio=139
29597 putmethod.latin-24133 (24133) [000] d..2 24572.722762: sched_switch: prev_comm=putmethod.latin prev_pid=24133 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
29598     kworker/0:1-13012 (13012) [000] d..2 24572.722788: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29599          <idle>-0     (-----) [000] d..1 24572.722800: cpu_idle: state=0 cpu_id=0
29600<...>-24844 ( 24133) [001] d..1 24572.722945: sched_waking: comm=Primes-2 pid=25162 prio=120 target_cpu=001
29601<...>-24844 ( 24133) [001] d..2 24572.722966: sched_wakeup: comm=Primes-2 pid=25162 prio=120 target_cpu=000
29602          <idle>-0     (-----) [000] .n.1 24572.722971: cpu_idle: state=4294967295 cpu_id=0
29603          <idle>-0     (-----) [000] d..2 24572.722977: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Primes-2 next_pid=25162 next_prio=120
29604<...>-24844 ( 24133) [001] d..2 24572.723098: sched_switch: prev_comm=MetricsManager prev_pid=24844 prev_prio=139 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
29605          <idle>-0     (-----) [001] d..1 24572.723106: cpu_idle: state=0 cpu_id=1
29606<...>-25162 ( 24133) [000] d..3 24572.723178: sched_waking: comm=putmethod.latin pid=24133 prio=120 target_cpu=000
29607<...>-25162 ( 24133) [000] d..4 24572.723196: sched_wakeup: comm=putmethod.latin pid=24133 prio=120 target_cpu=001
29608          <idle>-0     (-----) [001] .n.1 24572.723201: cpu_idle: state=4294967295 cpu_id=1
29609          <idle>-0     (-----) [001] d..2 24572.723207: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=putmethod.latin next_pid=24133 next_prio=120
29610 putmethod.latin-24133 (24133) [001] d..2 24572.723238: sched_switch: prev_comm=putmethod.latin prev_pid=24133 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
29611          <idle>-0     (-----) [001] d..1 24572.723244: cpu_idle: state=0 cpu_id=1
29612           <...>-13151 (-----) [006] .... 24572.723527: binder_transaction: transaction=1669258 dest_node=1669126 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x9
29613           <...>-13151 (-----) [006] ...2 24572.723534: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
29614           <...>-13151 (-----) [006] d..4 24572.723535: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=006
29615           <...>-13151 (-----) [006] dn.5 24572.723540: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=006
29616           <...>-13151 (-----) [006] d..2 24572.723543: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
29617<...>-23903 ( 23896) [006] .... 24572.723545: binder_transaction_received: transaction=1669258
29618<...>-23903 ( 23896) [006] .... 24572.723578: binder_transaction: transaction=1669261 dest_node=1669259 dest_proc=13131 dest_thread=13151 reply=0 flags=0x10 code=0x2
29619<...>-23903 ( 23896) [006] d..2 24572.723584: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
29620           <...>-13151 (-----) [006] .... 24572.723586: binder_transaction_received: transaction=1669261
29621           <...>-13151 (-----) [006] .... 24572.723594: binder_transaction: transaction=1669262 dest_node=0 dest_proc=23896 dest_thread=23903 reply=1 flags=0x0 code=0x0
29622           <...>-13151 (-----) [006] d..2 24572.723595: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=006
29623           <...>-13151 (-----) [006] dn.3 24572.723598: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=006
29624           <...>-13151 (-----) [006] d..2 24572.723600: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
29625<...>-23903 ( 23896) [006] .... 24572.723601: binder_transaction_received: transaction=1669262
29626<...>-23903 ( 23896) [006] .... 24572.723618: binder_transaction: transaction=1669263 dest_node=0 dest_proc=13131 dest_thread=13151 reply=1 flags=0x0 code=0x0
29627<...>-23903 ( 23896) [006] .... 24572.723619: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
29628<...>-23903 ( 23896) [006] d..2 24572.723628: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
29629           <...>-13151 (-----) [006] .... 24572.723630: binder_transaction_received: transaction=1669263
29630           <...>-13151 (-----) [006] .... 24572.723665: binder_transaction: transaction=1669264 dest_node=1669126 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x11
29631           <...>-13151 (-----) [006] ...2 24572.723666: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
29632           <...>-13151 (-----) [006] d..4 24572.723667: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=006
29633           <...>-13151 (-----) [006] dn.5 24572.723671: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=006
29634           <...>-13151 (-----) [006] d..2 24572.723674: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
29635<...>-23903 ( 23896) [006] .... 24572.723675: binder_transaction_received: transaction=1669264
29636<...>-23903 ( 23896) [006] .... 24572.723682: binder_transaction: transaction=1669265 dest_node=0 dest_proc=13131 dest_thread=13151 reply=1 flags=0x0 code=0x0
29637<...>-23903 ( 23896) [006] .... 24572.723683: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
29638<...>-23903 ( 23896) [006] d..2 24572.723692: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
29639           <...>-13151 (-----) [006] .... 24572.723693: binder_transaction_received: transaction=1669265
29640           <...>-13151 (-----) [006] .... 24572.723722: binder_transaction: transaction=1669266 dest_node=1669126 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
29641           <...>-13151 (-----) [006] ...2 24572.723723: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
29642           <...>-13151 (-----) [006] d..4 24572.723724: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=006
29643           <...>-13151 (-----) [006] dn.5 24572.723728: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=006
29644           <...>-13151 (-----) [006] d..2 24572.723731: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
29645<...>-23903 ( 23896) [006] .... 24572.723732: binder_transaction_received: transaction=1669266
29646<...>-23903 ( 23896) [006] .... 24572.723739: binder_transaction: transaction=1669267 dest_node=0 dest_proc=13131 dest_thread=13151 reply=1 flags=0x0 code=0x0
29647<...>-23903 ( 23896) [006] .... 24572.723740: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
29648<...>-23903 ( 23896) [006] d..2 24572.723749: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
29649           <...>-13151 (-----) [006] .... 24572.723750: binder_transaction_received: transaction=1669267
29650           <...>-13151 (-----) [006] d..2 24572.723829: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
29651          <idle>-0     (-----) [001] dnh2 24572.723849: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
29652          <idle>-0     (-----) [001] .n.1 24572.723853: cpu_idle: state=4294967295 cpu_id=1
29653          <idle>-0     (-----) [001] d..2 24572.723858: 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
29654           <...>-13151 (-----) [006] .... 24572.723859: binder_transaction: transaction=1669268 dest_node=1669126 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
29655           <...>-13151 (-----) [006] ...2 24572.723861: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
29656           <...>-13151 (-----) [006] d..4 24572.723861: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=006
29657           <...>-13151 (-----) [006] dn.5 24572.723865: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=006
29658           <...>-13151 (-----) [006] d..2 24572.723868: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
29659<...>-23903 ( 23896) [006] .... 24572.723870: binder_transaction_received: transaction=1669268
29660<...>-23903 ( 23896) [006] .... 24572.723877: binder_transaction: transaction=1669269 dest_node=0 dest_proc=13131 dest_thread=13151 reply=1 flags=0x0 code=0x0
29661<...>-23903 ( 23896) [006] .... 24572.723878: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
29662<...>-23903 ( 23896) [006] d..2 24572.723888: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
29663           <...>-13151 (-----) [006] .... 24572.723890: binder_transaction_received: transaction=1669269
29664     logd.writer-563   (  555) [001] d..2 24572.723922: 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
29665          <idle>-0     (-----) [001] d..1 24572.723929: cpu_idle: state=0 cpu_id=1
29666           <...>-13151 (-----) [006] d..2 24572.723932: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29667          <idle>-0     (-----) [006] d..1 24572.723941: cpu_idle: state=0 cpu_id=6
29668          <idle>-0     (-----) [006] ...1 24572.724151: cpu_idle: state=4294967295 cpu_id=6
29669          <idle>-0     (-----) [006] d..1 24572.724152: cpu_idle: state=0 cpu_id=6
29670          <idle>-0     (-----) [004] d.s2 24572.724228: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
29671          <idle>-0     (-----) [004] dns3 24572.724233: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
29672          <idle>-0     (-----) [004] .n.1 24572.724240: cpu_idle: state=4294967295 cpu_id=4
29673          <idle>-0     (-----) [004] d..2 24572.724242: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
29674     rcu_preempt-7     (    7) [004] d..2 24572.724255: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
29675          <idle>-0     (-----) [004] d..1 24572.724258: cpu_idle: state=0 cpu_id=4
29676<...>-25162 ( 24133) [000] d..1 24572.724413: sched_waking: comm=GAC_Executor[0] pid=24832 prio=120 target_cpu=001
29677<...>-25162 ( 24133) [000] d..2 24572.724430: sched_wakeup: comm=GAC_Executor[0] pid=24832 prio=120 target_cpu=001
29678          <idle>-0     (-----) [001] .n.1 24572.724435: cpu_idle: state=4294967295 cpu_id=1
29679          <idle>-0     (-----) [001] d..2 24572.724442: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=GAC_Executor[0] next_pid=24832 next_prio=120
29680<...>-24832 ( 24133) [001] .... 24572.724704: binder_transaction: transaction=1669270 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x3
29681<...>-24832 ( 24133) [001] d..4 24572.724709: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
29682<...>-25162 ( 24133) [000] d..3 24572.724720: sched_waking: comm=GoogleApiHandle pid=24732 prio=129 target_cpu=000
29683<...>-24832 ( 24133) [001] d..5 24572.724726: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=001
29684<...>-25162 ( 24133) [000] d..4 24572.724734: sched_wakeup: comm=GoogleApiHandle pid=24732 prio=129 target_cpu=000
29685<...>-24832 ( 24133) [001] d.h5 24572.724768: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
29686<...>-24832 ( 24133) [001] d.h5 24572.724778: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
29687          <idle>-0     (-----) [005] dnh2 24572.724782: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
29688          <idle>-0     (-----) [005] .n.1 24572.724784: cpu_idle: state=4294967295 cpu_id=5
29689          <idle>-0     (-----) [005] d..2 24572.724786: 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
29690<...>-24832 ( 24133) [001] d.h6 24572.724788: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
29691          <idle>-0     (-----) [003] .n.1 24572.724792: cpu_idle: state=4294967295 cpu_id=3
29692         sugov:4-560   (  560) [005] d..2 24572.724795: 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
29693          <idle>-0     (-----) [005] d..1 24572.724797: cpu_idle: state=0 cpu_id=5
29694<...>-24832 ( 24133) [001] d..2 24572.724797: sched_switch: prev_comm=GAC_Executor[0] prev_pid=24832 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
29695          <idle>-0     (-----) [003] d..2 24572.724799: 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
29696<...>-12589 ( 23968) [001] .... 24572.724802: binder_transaction_received: transaction=1669270
29697         sugov:0-559   (  559) [003] d..2 24572.724816: 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
29698          <idle>-0     (-----) [003] d..1 24572.724821: cpu_idle: state=0 cpu_id=3
29699<...>-25162 ( 24133) [000] d..2 24572.724830: sched_switch: prev_comm=Primes-2 prev_pid=25162 prev_prio=120 prev_state=S ==> next_comm=GoogleApiHandle next_pid=24732 next_prio=129
29700          <idle>-0     (-----) [007] d.h2 24572.724860: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=007
29701          <idle>-0     (-----) [007] dnh3 24572.724865: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=007
29702          <idle>-0     (-----) [007] .n.1 24572.724868: cpu_idle: state=4294967295 cpu_id=7
29703          <idle>-0     (-----) [007] d..2 24572.724872: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
29704        DispSync-23904 (23896) [007] d..1 24572.724885: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
29705          <idle>-0     (-----) [003] dnh2 24572.724899: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
29706        DispSync-23904 (23896) [007] d..2 24572.724901: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
29707          <idle>-0     (-----) [003] .n.1 24572.724903: cpu_idle: state=4294967295 cpu_id=3
29708          <idle>-0     (-----) [007] d..1 24572.724904: cpu_idle: state=0 cpu_id=7
29709          <idle>-0     (-----) [003] d..2 24572.724907: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
29710  appEventThread-23905 (23896) [003] d..3 24572.724954: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=004
29711          <idle>-0     (-----) [004] dnh2 24572.724969: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=004
29712          <idle>-0     (-----) [004] .n.1 24572.724971: cpu_idle: state=4294967295 cpu_id=4
29713  appEventThread-23905 (23896) [003] d..3 24572.724974: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
29714          <idle>-0     (-----) [004] d..2 24572.724974: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
29715          <idle>-0     (-----) [006] dnh2 24572.724988: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
29716          <idle>-0     (-----) [006] .n.1 24572.724990: cpu_idle: state=4294967295 cpu_id=6
29717  appEventThread-23905 (23896) [003] d..3 24572.724991: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
29718          <idle>-0     (-----) [006] d..2 24572.724994: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
29719          <idle>-0     (-----) [005] dnh2 24572.725002: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
29720          <idle>-0     (-----) [005] .n.1 24572.725004: cpu_idle: state=4294967295 cpu_id=5
29721          <idle>-0     (-----) [005] d..2 24572.725007: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
29722  appEventThread-23905 (23896) [003] d..2 24572.725017: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29723          <idle>-0     (-----) [003] d..1 24572.725024: cpu_idle: state=0 cpu_id=3
29724<...>-24151 ( 24151) [006] .... 24572.725128: binder_transaction: transaction=1669271 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
29725<...>-24151 ( 24151) [006] d..4 24572.725130: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
29726<...>-24151 ( 24151) [006] d..5 24572.725142: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
29727<...>-24041 ( 23968) [004] .... 24572.725145: binder_transaction: transaction=1669272 dest_node=1669016 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
29728          <idle>-0     (-----) [007] .n.1 24572.725146: cpu_idle: state=4294967295 cpu_id=7
29729<...>-24041 ( 23968) [004] ...2 24572.725148: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
29730          <idle>-0     (-----) [007] d..2 24572.725149: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
29731<...>-24041 ( 23968) [004] d..4 24572.725151: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=007
29732<...>-24151 ( 24151) [006] d..3 24572.725158: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
29733<...>-24041 ( 23968) [004] dn.5 24572.725160: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
29734<...>-23903 ( 23896) [007] .... 24572.725162: binder_transaction_received: transaction=1669271
29735<...>-24041 ( 23968) [004] d..2 24572.725164: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
29736  Binder:23896_5-25989 (23896) [004] .... 24572.725167: binder_transaction_received: transaction=1669272
29737<...>-24151 ( 24151) [006] d..4 24572.725168: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
29738<...>-23903 ( 23896) [007] d..1 24572.725171: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
29739<...>-23903 ( 23896) [007] d..2 24572.725183: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
29740          <idle>-0     (-----) [003] dnh2 24572.725184: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
29741          <idle>-0     (-----) [003] .n.1 24572.725187: cpu_idle: state=4294967295 cpu_id=3
29742          <idle>-0     (-----) [003] d..2 24572.725192: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
29743  Binder:23896_5-25989 (23896) [004] ...1 24572.725200: tracing_mark_write: B|23896|HIDL::IMapper::createDescriptor_2_1::passthrough
29744  Binder:23896_5-25989 (23896) [004] ...1 24572.725206: tracing_mark_write: E|23896
29745    RenderThread-24437 (24151) [007] d..2 24572.725208: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
29746          <idle>-0     (-----) [007] d..1 24572.725211: cpu_idle: state=0 cpu_id=7
29747  Binder:23896_5-25989 (23896) [004] ...1 24572.725214: tracing_mark_write: B|23896|HIDL::IAllocator::allocate::client
29748  appEventThread-23905 (23896) [003] d..2 24572.725215: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29749  Binder:23896_5-25989 (23896) [004] ...1 24572.725215: tracing_mark_write: E|23896
29750          <idle>-0     (-----) [003] d..1 24572.725221: cpu_idle: state=0 cpu_id=3
29751  Binder:23896_5-25989 (23896) [004] .... 24572.725229: binder_transaction: transaction=1669273 dest_node=959 dest_proc=786 dest_thread=0 reply=0 flags=0x10 code=0x2
29752<...>-24151 ( 24151) [006] d..3 24572.725230: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
29753  Binder:23896_5-25989 (23896) [004] ...2 24572.725233: binder_set_priority: proc=786 thread=816 old=120 => new=110 desired=110
29754  Binder:23896_5-25989 (23896) [004] d..4 24572.725234: sched_waking: comm=HwBinder:786_2 pid=816 prio=110 target_cpu=007
29755<...>-24151 ( 24151) [006] d..4 24572.725238: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
29756          <idle>-0     (-----) [007] .n.1 24572.725242: cpu_idle: state=4294967295 cpu_id=7
29757  Binder:23896_5-25989 (23896) [004] d..5 24572.725245: sched_wakeup: comm=HwBinder:786_2 pid=816 prio=110 target_cpu=007
29758          <idle>-0     (-----) [007] d..2 24572.725248: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:786_2 next_pid=816 next_prio=110
29759<...>-24151 ( 24151) [006] d..2 24572.725249: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29760<...>-816 ( 786) [007] .... 24572.725252: binder_transaction_received: transaction=1669273
29761          <idle>-0     (-----) [006] d..1 24572.725254: cpu_idle: state=0 cpu_id=6
29762  Binder:23896_5-25989 (23896) [004] d..2 24572.725255: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
29763<...>-24041 ( 23968) [004] d..2 24572.725261: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
29764          <idle>-0     (-----) [004] d..1 24572.725266: cpu_idle: state=0 cpu_id=4
29765<...>-816 ( 786) [007] ...1 24572.725277: tracing_mark_write: B|786|HIDL::IAllocator::allocate::server
29766<...>-24732 ( 24133) [000] .... 24572.725295: binder_transaction: transaction=1669274 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x19
29767<...>-12589 ( 23968) [001] .... 24572.725300: binder_transaction: transaction=1669275 dest_node=0 dest_proc=24133 dest_thread=24832 reply=1 flags=0x0 code=0x0
29768<...>-816 ( 786) [007] ...1 24572.725304: tracing_mark_write: B|786|AllocBuffer
29769<...>-12589 ( 23968) [001] d..2 24572.725307: sched_waking: comm=GAC_Executor[0] pid=24832 prio=120 target_cpu=001
29770<...>-816 ( 786) [007] ...1 24572.725310: tracing_mark_write: B|786|ION_IOC_ALLOC size: 9400320
29771<...>-12589 ( 23968) [001] d..3 24572.725315: sched_wakeup: comm=GAC_Executor[0] pid=24832 prio=120 target_cpu=001
29772<...>-12589 ( 23968) [001] d..2 24572.725336: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=GAC_Executor[0] next_pid=24832 next_prio=120
29773<...>-24832 ( 24133) [001] .... 24572.725340: binder_transaction_received: transaction=1669275
29774<...>-816 ( 786) [007] ...1 24572.725379: tracing_mark_write: E|786
29775<...>-816 ( 786) [007] ...1 24572.725380: tracing_mark_write: B|786|ION_IOC_MAP
29776<...>-816 ( 786) [007] ...1 24572.725390: tracing_mark_write: E|786
29777<...>-816 ( 786) [007] ...1 24572.725393: tracing_mark_write: E|786
29778<...>-816 ( 786) [007] ...1 24572.725393: tracing_mark_write: B|786|AllocBuffer
29779<...>-816 ( 786) [007] ...1 24572.725395: tracing_mark_write: B|786|ION_IOC_ALLOC size: 20480
29780<...>-816 ( 786) [007] ...1 24572.725399: tracing_mark_write: E|786
29781<...>-816 ( 786) [007] ...1 24572.725400: tracing_mark_write: B|786|ION_IOC_MAP
29782<...>-816 ( 786) [007] ...1 24572.725402: tracing_mark_write: E|786
29783<...>-816 ( 786) [007] ...1 24572.725403: tracing_mark_write: E|786
29784           <...>-13131 (-----) [005] d..3 24572.725423: sched_waking: comm=RenderThread pid=13151 prio=110 target_cpu=006
29785<...>-24732 ( 24133) [000] d..4 24572.725430: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=001
29786<...>-816 ( 786) [007] ...1 24572.725435: tracing_mark_write: E|786
29787           <...>-13131 (-----) [005] d..4 24572.725436: sched_wakeup: comm=RenderThread pid=13151 prio=110 target_cpu=004
29788<...>-816 ( 786) [007] .... 24572.725439: binder_transaction: transaction=1669278 dest_node=0 dest_proc=23896 dest_thread=25989 reply=1 flags=0x0 code=0x0
29789          <idle>-0     (-----) [004] .n.1 24572.725440: cpu_idle: state=4294967295 cpu_id=4
29790<...>-24732 ( 24133) [000] dn.5 24572.725444: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=000
29791          <idle>-0     (-----) [004] d..2 24572.725444: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=110
29792<...>-816 ( 786) [007] d..2 24572.725445: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
29793           <...>-13131 (-----) [005] d..2 24572.725446: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
29794<...>-24732 ( 24133) [000] d..2 24572.725450: sched_switch: prev_comm=GoogleApiHandle prev_pid=24732 prev_prio=129 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
29795          <idle>-0     (-----) [005] d..1 24572.725451: cpu_idle: state=0 cpu_id=5
29796<...>-12589 ( 23968) [000] .... 24572.725454: binder_transaction_received: transaction=1669274
29797           <...>-13151 (-----) [004] d..1 24572.725454: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
29798<...>-816 ( 786) [007] d..3 24572.725457: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
29799<...>-816 ( 786) [007] .... 24572.725460: binder_set_priority: proc=786 thread=816 old=110 => new=120 desired=120
29800          <idle>-0     (-----) [005] .n.1 24572.725461: cpu_idle: state=4294967295 cpu_id=5
29801          <idle>-0     (-----) [006] ...1 24572.725466: cpu_idle: state=4294967295 cpu_id=6
29802          <idle>-0     (-----) [005] d..2 24572.725466: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
29803           <...>-13151 (-----) [004] d..2 24572.725469: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
29804  Binder:23896_5-25989 (23896) [005] .... 24572.725469: binder_transaction_received: transaction=1669278
29805<...>-816 ( 786) [007] ...1 24572.725470: tracing_mark_write: B|786|FreeBuffer
29806          <idle>-0     (-----) [006] d..2 24572.725472: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
29807<...>-816 ( 786) [007] ...1 24572.725475: tracing_mark_write: E|786
29808<...>-816 ( 786) [007] ...1 24572.725476: tracing_mark_write: B|786|FreeBuffer
29809<...>-816 ( 786) [007] ...1 24572.725477: tracing_mark_write: B|786|UnmapBuffer
29810           <...>-13151 (-----) [004] d..2 24572.725480: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
29811          <idle>-0     (-----) [004] d..1 24572.725485: cpu_idle: state=0 cpu_id=4
29812  Binder:23896_5-25989 (23896) [005] ...1 24572.725485: tracing_mark_write: B|23896|HIDL::IMapper::importBuffer::passthrough
29813<...>-816 ( 786) [007] ...1 24572.725487: tracing_mark_write: E|786
29814<...>-816 ( 786) [007] ...1 24572.725490: tracing_mark_write: E|786
29815<...>-24832 ( 24133) [001] .... 24572.725492: binder_transaction: transaction=1669279 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x3
29816<...>-24832 ( 24133) [001] d..4 24572.725497: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
29817<...>-816 ( 786) [007] d..2 24572.725501: sched_switch: prev_comm=HwBinder:786_2 prev_pid=816 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
29818  Binder:23896_5-25989 (23896) [005] ...1 24572.725506: tracing_mark_write: E|23896
29819<...>-24832 ( 24133) [001] d..5 24572.725514: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=001
29820  Binder:23896_5-25989 (23896) [005] ...1 24572.725522: tracing_mark_write: B|23896|HIDL::IMapper::getTransportSize::passthrough
29821  Binder:23896_5-25989 (23896) [005] ...1 24572.725524: tracing_mark_write: E|23896
29822<...>-24832 ( 24133) [001] d.h5 24572.725547: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
29823    RenderThread-24437 (24151) [007] d..1 24572.725559: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
29824<...>-24832 ( 24133) [001] d.h5 24572.725560: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
29825          <idle>-0     (-----) [004] dnh2 24572.725565: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
29826          <idle>-0     (-----) [004] .n.1 24572.725568: cpu_idle: state=4294967295 cpu_id=4
29827    RenderThread-24437 (24151) [007] d..2 24572.725568: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
29828<...>-24832 ( 24133) [001] d.h6 24572.725569: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
29829          <idle>-0     (-----) [004] d..2 24572.725570: 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
29830  Binder:23896_5-25989 (23896) [005] .... 24572.725571: binder_transaction: transaction=1669280 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
29831          <idle>-0     (-----) [003] .n.1 24572.725573: cpu_idle: state=4294967295 cpu_id=3
29832  Binder:23896_5-25989 (23896) [005] d..2 24572.725574: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=004
29833         sugov:4-560   (  560) [004] d..2 24572.725578: 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
29834<...>-24832 ( 24133) [001] d..2 24572.725578: sched_switch: prev_comm=GAC_Executor[0] prev_pid=24832 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
29835          <idle>-0     (-----) [003] d..2 24572.725579: 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
29836          <idle>-0     (-----) [004] d..1 24572.725580: cpu_idle: state=0 cpu_id=4
29837  Binder:23968_1-23981 (23968) [001] .... 24572.725583: binder_transaction_received: transaction=1669279
29838  Binder:23896_5-25989 (23896) [005] d..3 24572.725584: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=005
29839  Binder:23896_5-25989 (23896) [005] .... 24572.725585: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
29840         sugov:0-559   (  559) [003] d..2 24572.725597: 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
29841  Binder:23896_5-25989 (23896) [005] d..2 24572.725597: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
29842    RenderThread-24437 (24151) [007] .... 24572.725599: binder_transaction: transaction=1669281 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
29843<...>-24041 ( 23968) [005] .... 24572.725600: binder_transaction_received: transaction=1669280
29844    RenderThread-24437 (24151) [007] d..4 24572.725601: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
29845          <idle>-0     (-----) [003] d..1 24572.725603: cpu_idle: state=0 cpu_id=3
29846    RenderThread-24437 (24151) [007] d..5 24572.725610: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
29847<...>-24041 ( 23968) [005] .... 24572.725614: binder_transaction: transaction=1669282 dest_node=1669016 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x1
29848          <idle>-0     (-----) [004] .n.1 24572.725614: cpu_idle: state=4294967295 cpu_id=4
29849    RenderThread-24437 (24151) [007] d..2 24572.725615: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
29850<...>-24041 ( 23968) [005] ...2 24572.725615: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
29851<...>-24041 ( 23968) [005] d..4 24572.725616: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=007
29852          <idle>-0     (-----) [004] d..2 24572.725617: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
29853<...>-24041 ( 23968) [005] dn.5 24572.725623: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
29854  Binder:23896_5-25989 (23896) [004] .... 24572.725626: binder_transaction_received: transaction=1669281
29855<...>-24041 ( 23968) [005] d..2 24572.725626: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
29856<...>-23903 ( 23896) [005] .... 24572.725628: binder_transaction_received: transaction=1669282
29857<...>-24151 ( 24151) [007] d..2 24572.725643: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
29858<...>-23903 ( 23896) [005] .... 24572.725644: binder_transaction: transaction=1669283 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
29859  Binder:23896_5-25989 (23896) [004] .... 24572.725645: binder_transaction: transaction=1669284 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
29860          <idle>-0     (-----) [007] d..1 24572.725647: cpu_idle: state=0 cpu_id=7
29861<...>-23903 ( 23896) [005] .... 24572.725649: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
29862  Binder:23896_5-25989 (23896) [004] d..2 24572.725649: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
29863  Binder:23896_5-25989 (23896) [004] d..3 24572.725655: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
29864          <idle>-0     (-----) [007] .n.1 24572.725660: cpu_idle: state=4294967295 cpu_id=7
29865<...>-23903 ( 23896) [005] d..2 24572.725661: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
29866<...>-24041 ( 23968) [005] .... 24572.725663: binder_transaction_received: transaction=1669283
29867          <idle>-0     (-----) [007] d..2 24572.725663: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
29868    RenderThread-24437 (24151) [007] .... 24572.725665: binder_transaction_received: transaction=1669284
29869  Binder:23896_5-25989 (23896) [004] d..2 24572.725667: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
29870          <idle>-0     (-----) [004] d..1 24572.725671: cpu_idle: state=0 cpu_id=4
29871<...>-24041 ( 23968) [005] ...1 24572.725680: tracing_mark_write: B|23968|HIDL::IMapper::importBuffer::passthrough
29872<...>-24041 ( 23968) [005] ...1 24572.725695: tracing_mark_write: E|23968
29873<...>-24041 ( 23968) [005] ...1 24572.725700: tracing_mark_write: B|23968|HIDL::IMapper::validateBufferSize::passthrough
29874<...>-24041 ( 23968) [005] ...1 24572.725706: tracing_mark_write: E|23968
29875<...>-24041 ( 23968) [005] ...1 24572.725710: tracing_mark_write: B|23968|HIDL::IMapper::getTransportSize::passthrough
29876<...>-24041 ( 23968) [005] ...1 24572.725712: tracing_mark_write: E|23968
29877<...>-24041 ( 23968) [005] ...1 24572.725727: tracing_mark_write: B|23968|HIDL::IMapper::lock::passthrough
29878<...>-24041 ( 23968) [005] ...1 24572.725731: tracing_mark_write: B|23968|MapBuffer
29879<...>-12589 ( 23968) [000] d..2 24572.725742: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=118 prev_state=S ==> next_comm=GoogleApiHandle next_pid=24732 next_prio=129
29880<...>-24732 ( 24133) [000] d..2 24572.725758: sched_switch: prev_comm=GoogleApiHandle prev_pid=24732 prev_prio=129 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29881<...>-24041 ( 23968) [005] ...1 24572.725761: tracing_mark_write: E|23968
29882<...>-24041 ( 23968) [005] ...1 24572.725762: tracing_mark_write: B|23968|CleanBuffer
29883<...>-24041 ( 23968) [005] ...1 24572.725764: tracing_mark_write: C|23968|operation id|2
29884          <idle>-0     (-----) [000] d..1 24572.725773: cpu_idle: state=0 cpu_id=0
29885           <...>-13131 (-----) [006] d..3 24572.725817: sched_waking: comm=RenderThread pid=13151 prio=110 target_cpu=004
29886           <...>-13131 (-----) [006] d..4 24572.725825: sched_wakeup: comm=RenderThread pid=13151 prio=110 target_cpu=004
29887          <idle>-0     (-----) [004] .n.1 24572.725829: cpu_idle: state=4294967295 cpu_id=4
29888          <idle>-0     (-----) [004] d..2 24572.725832: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=110
29889           <...>-13131 (-----) [006] d..2 24572.725834: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29890          <idle>-0     (-----) [006] d..1 24572.725838: cpu_idle: state=0 cpu_id=6
29891  Binder:23968_1-23981 (23968) [001] d..1 24572.725891: sched_waking: comm=Binder:23968_16 pid=12589 prio=118 target_cpu=000
29892           <...>-13151 (-----) [004] d..1 24572.725899: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
29893           <...>-13151 (-----) [004] d..2 24572.725914: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
29894          <idle>-0     (-----) [006] dnh2 24572.725936: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=118 target_cpu=006
29895          <idle>-0     (-----) [006] .n.1 24572.725941: cpu_idle: state=4294967295 cpu_id=6
29896          <idle>-0     (-----) [006] d..2 24572.725945: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=118
29897           <...>-13151 (-----) [004] .... 24572.725951: binder_transaction: transaction=1669285 dest_node=1669126 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
29898           <...>-13151 (-----) [004] ...2 24572.725953: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
29899           <...>-13151 (-----) [004] d..4 24572.725954: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
29900           <...>-13151 (-----) [004] dn.5 24572.725958: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
29901           <...>-13151 (-----) [004] d..2 24572.725961: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
29902  Binder:23896_5-25989 (23896) [004] .... 24572.725962: binder_transaction_received: transaction=1669285
29903  Binder:23896_5-25989 (23896) [004] ...1 24572.725975: tracing_mark_write: B|23896|HIDL::IMapper::freeBuffer::passthrough
29904  Binder:23896_5-25989 (23896) [004] ...1 24572.725980: tracing_mark_write: B|23896|FreeBuffer
29905  Binder:23896_5-25989 (23896) [004] d..2 24572.725989: sched_waking: comm=system pid=105 prio=120 target_cpu=000
29906  Binder:23896_5-25989 (23896) [004] d..3 24572.726003: sched_wakeup: comm=system pid=105 prio=120 target_cpu=007
29907  Binder:23896_5-25989 (23896) [004] ...1 24572.726026: tracing_mark_write: E|23896
29908  Binder:23896_5-25989 (23896) [004] ...1 24572.726027: tracing_mark_write: B|23896|FreeBuffer
29909  Binder:23896_5-25989 (23896) [004] ...1 24572.726032: tracing_mark_write: E|23896
29910  Binder:23896_5-25989 (23896) [004] ...1 24572.726034: tracing_mark_write: E|23896
29911  Binder:23896_5-25989 (23896) [004] ...1 24572.726041: tracing_mark_write: B|23896|HIDL::IMapper::createDescriptor_2_1::passthrough
29912  Binder:23896_5-25989 (23896) [004] ...1 24572.726043: tracing_mark_write: E|23896
29913  Binder:23896_5-25989 (23896) [004] ...1 24572.726046: tracing_mark_write: B|23896|HIDL::IAllocator::allocate::client
29914  Binder:23896_5-25989 (23896) [004] ...1 24572.726046: tracing_mark_write: E|23896
29915  Binder:23896_5-25989 (23896) [004] .... 24572.726052: binder_transaction: transaction=1669286 dest_node=959 dest_proc=786 dest_thread=0 reply=0 flags=0x10 code=0x2
29916  Binder:23896_5-25989 (23896) [004] ...2 24572.726055: binder_set_priority: proc=786 thread=816 old=120 => new=110 desired=110
29917  Binder:23896_5-25989 (23896) [004] d..4 24572.726055: sched_waking: comm=HwBinder:786_2 pid=816 prio=110 target_cpu=007
29918  Binder:23896_5-25989 (23896) [004] d..5 24572.726062: sched_wakeup: comm=HwBinder:786_2 pid=816 prio=110 target_cpu=007
29919  Binder:23896_5-25989 (23896) [004] d..2 24572.726066: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
29920    RenderThread-24437 (24151) [007] d..2 24572.726071: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=HwBinder:786_2 next_pid=816 next_prio=110
29921           <...>-13151 (-----) [004] d..2 24572.726074: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
29922<...>-816 ( 786) [007] .... 24572.726075: binder_transaction_received: transaction=1669286
29923          <idle>-0     (-----) [004] d..1 24572.726079: cpu_idle: state=0 cpu_id=4
29924<...>-816 ( 786) [007] ...1 24572.726085: tracing_mark_write: B|786|HIDL::IAllocator::allocate::server
29925<...>-816 ( 786) [007] ...1 24572.726099: tracing_mark_write: B|786|AllocBuffer
29926<...>-816 ( 786) [007] ...1 24572.726102: tracing_mark_write: B|786|ION_IOC_ALLOC size: 9469952
29927<...>-816 ( 786) [007] ...1 24572.726157: tracing_mark_write: E|786
29928<...>-816 ( 786) [007] ...1 24572.726158: tracing_mark_write: B|786|ION_IOC_MAP
29929<...>-816 ( 786) [007] ...1 24572.726163: tracing_mark_write: E|786
29930<...>-816 ( 786) [007] ...1 24572.726165: tracing_mark_write: E|786
29931<...>-816 ( 786) [007] ...1 24572.726166: tracing_mark_write: B|786|AllocBuffer
29932<...>-816 ( 786) [007] ...1 24572.726167: tracing_mark_write: B|786|ION_IOC_ALLOC size: 20480
29933<...>-816 ( 786) [007] ...1 24572.726171: tracing_mark_write: E|786
29934<...>-816 ( 786) [007] ...1 24572.726171: tracing_mark_write: B|786|ION_IOC_MAP
29935<...>-816 ( 786) [007] ...1 24572.726174: tracing_mark_write: E|786
29936<...>-816 ( 786) [007] ...1 24572.726175: tracing_mark_write: E|786
29937<...>-816 ( 786) [007] ...1 24572.726192: tracing_mark_write: E|786
29938<...>-816 ( 786) [007] .... 24572.726196: binder_transaction: transaction=1669287 dest_node=0 dest_proc=23896 dest_thread=25989 reply=1 flags=0x0 code=0x0
29939<...>-816 ( 786) [007] d..2 24572.726200: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
29940<...>-816 ( 786) [007] d..3 24572.726209: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
29941<...>-816 ( 786) [007] .... 24572.726210: binder_set_priority: proc=786 thread=816 old=110 => new=120 desired=120
29942          <idle>-0     (-----) [004] .n.1 24572.726213: cpu_idle: state=4294967295 cpu_id=4
29943<...>-816 ( 786) [007] d..2 24572.726214: sched_switch: prev_comm=HwBinder:786_2 prev_pid=816 prev_prio=120 prev_state=R+ ==> next_comm=system next_pid=105 next_prio=120
29944  Binder:23968_1-23981 (23968) [001] .... 24572.726216: binder_transaction: transaction=1669288 dest_node=0 dest_proc=24133 dest_thread=24832 reply=1 flags=0x0 code=0x0
29945          <idle>-0     (-----) [004] d..2 24572.726217: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
29946  Binder:23896_5-25989 (23896) [004] .... 24572.726218: binder_transaction_received: transaction=1669287
29947  Binder:23968_1-23981 (23968) [001] d..2 24572.726222: sched_waking: comm=GAC_Executor[0] pid=24832 prio=120 target_cpu=001
29948  Binder:23896_5-25989 (23896) [004] ...1 24572.726225: tracing_mark_write: B|23896|HIDL::IMapper::importBuffer::passthrough
29949  Binder:23968_1-23981 (23968) [001] d..3 24572.726230: sched_wakeup: comm=GAC_Executor[0] pid=24832 prio=120 target_cpu=001
29950  Binder:23896_5-25989 (23896) [004] ...1 24572.726235: tracing_mark_write: E|23896
29951  Binder:23896_5-25989 (23896) [004] ...1 24572.726244: tracing_mark_write: B|23896|HIDL::IMapper::getTransportSize::passthrough
29952  Binder:23896_5-25989 (23896) [004] ...1 24572.726246: tracing_mark_write: E|23896
29953  Binder:23968_1-23981 (23968) [001] d..2 24572.726252: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=GAC_Executor[0] next_pid=24832 next_prio=120
29954<...>-24832 ( 24133) [001] .... 24572.726257: binder_transaction_received: transaction=1669288
29955  Binder:23896_5-25989 (23896) [004] .... 24572.726259: binder_transaction: transaction=1669289 dest_node=0 dest_proc=13131 dest_thread=13151 reply=1 flags=0x0 code=0x0
29956  Binder:23896_5-25989 (23896) [004] d..2 24572.726260: sched_waking: comm=RenderThread pid=13151 prio=110 target_cpu=004
29957  Binder:23896_5-25989 (23896) [004] d..3 24572.726264: sched_wakeup: comm=RenderThread pid=13151 prio=110 target_cpu=004
29958  Binder:23896_5-25989 (23896) [004] .... 24572.726265: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
29959  Binder:23896_5-25989 (23896) [004] d..2 24572.726276: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
29960           <...>-13151 (-----) [004] .... 24572.726277: binder_transaction_received: transaction=1669289
29961<...>-24041 ( 23968) [005] ...1 24572.726289: tracing_mark_write: E|23968
29962<...>-24041 ( 23968) [005] ...1 24572.726291: tracing_mark_write: E|23968
29963           <...>-13151 (-----) [004] .... 24572.726295: binder_transaction: transaction=1669290 dest_node=1669126 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x1
29964           <...>-13151 (-----) [004] ...2 24572.726296: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
29965           <...>-13151 (-----) [004] d..4 24572.726297: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
29966           <...>-13151 (-----) [004] dn.5 24572.726300: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
29967           <...>-13151 (-----) [004] d..2 24572.726302: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
29968  Binder:23896_5-25989 (23896) [004] .... 24572.726304: binder_transaction_received: transaction=1669290
29969  Binder:23896_5-25989 (23896) [004] .... 24572.726314: binder_transaction: transaction=1669291 dest_node=0 dest_proc=13131 dest_thread=13151 reply=1 flags=0x0 code=0x0
29970  Binder:23896_5-25989 (23896) [004] .... 24572.726339: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
29971  Binder:23896_5-25989 (23896) [004] d..2 24572.726351: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
29972           <...>-13151 (-----) [004] .... 24572.726353: binder_transaction_received: transaction=1669291
29973           <...>-13151 (-----) [004] ...1 24572.726388: tracing_mark_write: B|13131|HIDL::IServiceManager::getTransport::client
29974           <...>-13151 (-----) [004] ...1 24572.726391: tracing_mark_write: E|13131
29975           <...>-13151 (-----) [004] .... 24572.726414: binder_transaction: transaction=1669292 dest_node=1 dest_proc=568 dest_thread=0 reply=0 flags=0x10 code=0x3
29976           <...>-13151 (-----) [004] ...2 24572.726419: binder_set_priority: proc=568 thread=568 old=120 => new=110 desired=110
29977           <...>-13151 (-----) [004] d..4 24572.726420: sched_waking: comm=hwservicemanage pid=568 prio=110 target_cpu=000
29978           <...>-13151 (-----) [004] d..2 24572.726436: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
29979          <idle>-0     (-----) [000] dnh2 24572.726440: sched_wakeup: comm=hwservicemanage pid=568 prio=110 target_cpu=000
29980          <idle>-0     (-----) [004] d..1 24572.726441: cpu_idle: state=0 cpu_id=4
29981          <idle>-0     (-----) [000] .n.1 24572.726444: cpu_idle: state=4294967295 cpu_id=0
29982          <idle>-0     (-----) [000] d..2 24572.726450: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwservicemanage next_pid=568 next_prio=110
29983<...>-568 ( 568) [000] .... 24572.726458: binder_transaction_received: transaction=1669292
29984<...>-568 ( 568) [000] ...1 24572.726499: tracing_mark_write: B|568|HIDL::IServiceManager::getTransport::server
29985<...>-12589 ( 23968) [006] d..3 24572.726575: sched_waking: comm=lmkd pid=808 prio=98 target_cpu=002
29986          <idle>-0     (-----) [002] dnh2 24572.726593: sched_wakeup: comm=lmkd pid=808 prio=98 target_cpu=002
29987          <idle>-0     (-----) [002] .n.1 24572.726596: cpu_idle: state=4294967295 cpu_id=2
29988          <idle>-0     (-----) [002] d..2 24572.726603: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=808 next_prio=98
29989          <idle>-0     (-----) [004] ...1 24572.726663: cpu_idle: state=4294967295 cpu_id=4
29990          <idle>-0     (-----) [004] d..1 24572.726664: cpu_idle: state=0 cpu_id=4
29991<...>-24832 ( 24133) [001] d..2 24572.726667: sched_switch: prev_comm=GAC_Executor[0] prev_pid=24832 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
29992          <idle>-0     (-----) [001] d..1 24572.726682: cpu_idle: state=0 cpu_id=1
29993<...>-12589 ( 23968) [006] .... 24572.726798: binder_transaction: transaction=1669293 dest_node=1302474 dest_proc=24741 dest_thread=0 reply=0 flags=0x11 code=0x2
29994          <idle>-0     (-----) [003] ...1 24572.726798: cpu_idle: state=4294967295 cpu_id=3
29995          <idle>-0     (-----) [003] d..1 24572.726801: cpu_idle: state=0 cpu_id=3
29996<...>-12589 ( 23968) [006] d..4 24572.726847: sched_waking: comm=Binder:24741_1 pid=24764 prio=120 target_cpu=003
29997<...>-12589 ( 23968) [006] d..5 24572.726871: sched_wakeup: comm=Binder:24741_1 pid=24764 prio=120 target_cpu=007
29998<...>-12589 ( 23968) [006] d.h5 24572.726895: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
29999<...>-105 ( 105) [007] d..2 24572.726896: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=Binder:24741_1 next_pid=24764 next_prio=120
30000<...>-12589 ( 23968) [006] d.h6 24572.726902: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
30001<...>-12589 ( 23968) [006] d.h5 24572.726903: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
30002          <idle>-0     (-----) [004] .n.1 24572.726906: cpu_idle: state=4294967295 cpu_id=4
30003          <idle>-0     (-----) [004] d..2 24572.726909: 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
30004<...>-24764 ( 24741) [007] .... 24572.726911: binder_transaction_received: transaction=1669293
30005          <idle>-0     (-----) [003] dnh2 24572.726915: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
30006         sugov:4-560   (  560) [004] d..2 24572.726918: 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
30007          <idle>-0     (-----) [003] .n.1 24572.726919: cpu_idle: state=4294967295 cpu_id=3
30008          <idle>-0     (-----) [004] d..1 24572.726920: cpu_idle: state=0 cpu_id=4
30009          <idle>-0     (-----) [003] d..2 24572.726923: 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
30010         sugov:0-559   (  559) [003] d..2 24572.726937: 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
30011          <idle>-0     (-----) [003] d..1 24572.726942: cpu_idle: state=0 cpu_id=3
30012<...>-12589 ( 23968) [006] .... 24572.726951: binder_transaction: transaction=1669296 dest_node=1302474 dest_proc=24741 dest_thread=0 reply=0 flags=0x11 code=0xa
30013<...>-568 ( 568) [000] ...1 24572.726980: tracing_mark_write: E|568
30014<...>-568 ( 568) [000] .... 24572.726989: binder_transaction: transaction=1669297 dest_node=0 dest_proc=13131 dest_thread=13151 reply=1 flags=0x0 code=0x0
30015<...>-568 ( 568) [000] d..2 24572.726994: sched_waking: comm=RenderThread pid=13151 prio=110 target_cpu=004
30016<...>-568 ( 568) [000] d..3 24572.727013: sched_wakeup: comm=RenderThread pid=13151 prio=110 target_cpu=000
30017<...>-12589 ( 23968) [006] .... 24572.727035: binder_transaction: transaction=1669298 dest_node=0 dest_proc=24133 dest_thread=24732 reply=1 flags=0x0 code=0x0
30018<...>-12589 ( 23968) [006] d..2 24572.727038: sched_waking: comm=GoogleApiHandle pid=24732 prio=129 target_cpu=000
30019<...>-568 ( 568) [000] .... 24572.727039: binder_set_priority: proc=568 thread=568 old=110 => new=120 desired=120
30020          <idle>-0     (-----) [001] dnh2 24572.727061: sched_wakeup: comm=GoogleApiHandle pid=24732 prio=129 target_cpu=001
30021<...>-12589 ( 23968) [006] d..2 24572.727065: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
30022          <idle>-0     (-----) [001] .n.1 24572.727066: cpu_idle: state=4294967295 cpu_id=1
30023<...>-568 ( 568) [000] d..2 24572.727073: sched_switch: prev_comm=hwservicemanage prev_pid=568 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
30024          <idle>-0     (-----) [001] d..2 24572.727073: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=GoogleApiHandle next_pid=24732 next_prio=129
30025           <...>-13151 (-----) [000] .... 24572.727078: binder_transaction_received: transaction=1669297
30026<...>-24732 ( 24133) [001] .... 24572.727079: binder_transaction_received: transaction=1669298
30027<...>-24764 ( 24741) [007] d..3 24572.727094: sched_waking: comm=.gms.persistent pid=24741 prio=120 target_cpu=000
30028           <...>-13131 (-----) [006] d..2 24572.727094: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30029          <idle>-0     (-----) [006] d..1 24572.727101: cpu_idle: state=0 cpu_id=6
30030<...>-24764 ( 24741) [007] d..4 24572.727111: sched_wakeup: comm=.gms.persistent pid=24741 prio=120 target_cpu=006
30031          <idle>-0     (-----) [006] .n.1 24572.727116: cpu_idle: state=4294967295 cpu_id=6
30032          <idle>-0     (-----) [006] d..2 24572.727130: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=.gms.persistent next_pid=24741 next_prio=120
30033          <idle>-0     (-----) [004] ...1 24572.727131: cpu_idle: state=4294967295 cpu_id=4
30034          <idle>-0     (-----) [004] d..1 24572.727132: cpu_idle: state=0 cpu_id=4
30035<...>-24764 ( 24741) [007] d..4 24572.727154: sched_waking: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=002
30036<...>-24764 ( 24741) [007] d..5 24572.727166: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=006
30037<...>-24764 ( 24741) [007] .... 24572.727183: binder_transaction_received: transaction=1669296
30038<...>-24732 ( 24133) [001] d..1 24572.727191: sched_waking: comm=GAC_Executor[0] pid=24832 prio=120 target_cpu=001
30039<...>-24732 ( 24133) [001] dn.2 24572.727202: sched_wakeup: comm=GAC_Executor[0] pid=24832 prio=120 target_cpu=001
30040<...>-24732 ( 24133) [001] d..2 24572.727207: sched_switch: prev_comm=GoogleApiHandle prev_pid=24732 prev_prio=129 prev_state=R+ ==> next_comm=GAC_Executor[0] next_pid=24832 next_prio=120
30041<...>-24832 ( 24133) [001] d..2 24572.727216: sched_switch: prev_comm=GAC_Executor[0] prev_pid=24832 prev_prio=120 prev_state=S ==> next_comm=GoogleApiHandle next_pid=24732 next_prio=129
30042<...>-24732 ( 24133) [001] d..1 24572.727219: sched_waking: comm=GAC_Executor[0] pid=24832 prio=120 target_cpu=001
30043<...>-24732 ( 24133) [001] dn.2 24572.727225: sched_wakeup: comm=GAC_Executor[0] pid=24832 prio=120 target_cpu=001
30044<...>-24732 ( 24133) [001] d..2 24572.727230: sched_switch: prev_comm=GoogleApiHandle prev_pid=24732 prev_prio=129 prev_state=R+ ==> next_comm=GAC_Executor[0] next_pid=24832 next_prio=120
30045            lmkd-808   (  808) [002] d..2 24572.727230: sched_switch: prev_comm=lmkd prev_pid=808 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30046          <idle>-0     (-----) [002] d..1 24572.727241: cpu_idle: state=0 cpu_id=2
30047<...>-24764 ( 24741) [007] d..2 24572.727248: sched_switch: prev_comm=Binder:24741_1 prev_pid=24764 prev_prio=120 prev_state=S ==> next_comm=HwBinder:786_2 next_pid=816 next_prio=120
30048<...>-816 ( 786) [007] ...1 24572.727262: tracing_mark_write: B|786|FreeBuffer
30049<...>-816 ( 786) [007] ...1 24572.727268: tracing_mark_write: E|786
30050<...>-816 ( 786) [007] ...1 24572.727269: tracing_mark_write: B|786|FreeBuffer
30051<...>-816 ( 786) [007] ...1 24572.727270: tracing_mark_write: B|786|UnmapBuffer
30052<...>-816 ( 786) [007] ...1 24572.727283: tracing_mark_write: E|786
30053<...>-816 ( 786) [007] ...1 24572.727286: tracing_mark_write: E|786
30054<...>-816 ( 786) [007] d..2 24572.727301: sched_switch: prev_comm=HwBinder:786_2 prev_pid=816 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
30055<...>-24832 ( 24133) [001] d..2 24572.727369: sched_switch: prev_comm=GAC_Executor[0] prev_pid=24832 prev_prio=120 prev_state=S ==> next_comm=GoogleApiHandle next_pid=24732 next_prio=129
30056<...>-24732 ( 24133) [001] d..2 24572.727424: sched_switch: prev_comm=GoogleApiHandle prev_pid=24732 prev_prio=129 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
30057          <idle>-0     (-----) [001] d..1 24572.727435: cpu_idle: state=0 cpu_id=1
30058           <...>-13151 (-----) [000] d.h2 24572.727570: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
30059           <...>-13151 (-----) [000] dnh3 24572.727578: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
30060           <...>-13151 (-----) [000] dns2 24572.727587: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
30061<...>-24741 ( 24741) [006] d.h1 24572.727609: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=006
30062           <...>-13151 (-----) [000] d..2 24572.727610: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=R+ ==> next_comm=migration/0 next_pid=13 next_prio=0
30063          <idle>-0     (-----) [004] .n.1 24572.727639: cpu_idle: state=4294967295 cpu_id=4
30064          <idle>-0     (-----) [004] d..2 24572.727664: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=110
30065     migration/0-13    (   13) [000] d.h3 24572.727665: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
30066     migration/0-13    (   13) [000] d.h3 24572.727679: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
30067<...>-24741 ( 24741) [006] dnh1 24572.727684: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
30068<...>-24741 ( 24741) [006] d..2 24572.727688: sched_switch: prev_comm=.gms.persistent prev_pid=24741 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
30069     migration/0-13    (   13) [000] d.h4 24572.727689: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
30070         sugov:4-560   (  560) [006] d..2 24572.727693: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=120
30071          <idle>-0     (-----) [003] .n.1 24572.727694: cpu_idle: state=4294967295 cpu_id=3
30072<...>-25141 ( 24741) [006] d..2 24572.727699: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
30073          <idle>-0     (-----) [003] d..2 24572.727701: 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
30074     rcu_preempt-7     (    7) [006] d..2 24572.727706: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=004
30075         sugov:0-559   (  559) [003] d..2 24572.727714: 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
30076     rcu_preempt-7     (    7) [006] d..3 24572.727719: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
30077          <idle>-0     (-----) [003] d..1 24572.727719: cpu_idle: state=0 cpu_id=3
30078     migration/0-13    (   13) [000] d..2 24572.727721: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
30079     rcu_preempt-7     (    7) [006] d..2 24572.727745: 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
30080         rcuop/6-61    (   61) [006] d..2 24572.727748: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=005
30081         rcuop/6-61    (   61) [006] d..3 24572.727757: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=006
30082         rcuop/6-61    (   61) [006] d..2 24572.727771: 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
30083         rcuop/7-69    (   69) [006] d..2 24572.727785: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=.gms.persistent next_pid=24741 next_prio=120
30084    RenderThread-24437 (24151) [007] d..2 24572.727917: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
30085          <idle>-0     (-----) [007] d..1 24572.727930: cpu_idle: state=0 cpu_id=7
30086          <idle>-0     (-----) [007] d.h2 24572.728009: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
30087          <idle>-0     (-----) [007] d.h3 24572.728015: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
30088          <idle>-0     (-----) [007] dnh3 24572.728017: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
30089          <idle>-0     (-----) [007] .n.1 24572.728020: cpu_idle: state=4294967295 cpu_id=7
30090<...>-24741 ( 24741) [006] .... 24572.728021: binder_transaction: transaction=1669299 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x11 code=0x2f
30091          <idle>-0     (-----) [007] d..2 24572.728025: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
30092<...>-24741 ( 24741) [006] d..4 24572.728035: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=006
30093<...>-24741 ( 24741) [006] d..5 24572.728042: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=006
30094           <...>-13151 (-----) [004] ...1 24572.728070: tracing_mark_write: B|13131|HIDL::IServiceManager::registerPassthroughClient::client
30095           <...>-13151 (-----) [004] ...1 24572.728074: tracing_mark_write: E|13131
30096           <...>-13151 (-----) [004] .... 24572.728100: binder_transaction: transaction=1669300 dest_node=1 dest_proc=568 dest_thread=0 reply=0 flags=0x10 code=0x8
30097           <...>-13151 (-----) [004] ...2 24572.728106: binder_set_priority: proc=568 thread=568 old=120 => new=110 desired=110
30098           <...>-13151 (-----) [004] d..4 24572.728109: sched_waking: comm=hwservicemanage pid=568 prio=110 target_cpu=000
30099           <...>-13151 (-----) [004] d..2 24572.728128: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
30100          <idle>-0     (-----) [001] dnh2 24572.728131: sched_wakeup: comm=hwservicemanage pid=568 prio=110 target_cpu=001
30101<...>-105 ( 105) [000] d.h2 24572.728132: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
30102          <idle>-0     (-----) [004] d..1 24572.728134: cpu_idle: state=0 cpu_id=4
30103          <idle>-0     (-----) [001] .n.1 24572.728135: cpu_idle: state=4294967295 cpu_id=1
30104          <idle>-0     (-----) [001] d..2 24572.728143: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwservicemanage next_pid=568 next_prio=110
30105<...>-568 ( 568) [001] .... 24572.728151: binder_transaction_received: transaction=1669300
30106          <idle>-0     (-----) [004] dnh2 24572.728157: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=004
30107          <idle>-0     (-----) [004] .n.1 24572.728159: cpu_idle: state=4294967295 cpu_id=4
30108          <idle>-0     (-----) [004] d..2 24572.728162: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
30109    RenderThread-24437 (24151) [007] .... 24572.728171: binder_transaction: transaction=1669301 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
30110    RenderThread-24437 (24151) [007] d..4 24572.728180: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
30111    RenderThread-24437 (24151) [007] dn.5 24572.728190: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
30112    RenderThread-24437 (24151) [007] d..2 24572.728194: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
30113<...>-568 ( 568) [001] ...1 24572.728196: tracing_mark_write: B|568|HIDL::IServiceManager::registerPassthroughClient::server
30114  Binder:23896_5-25989 (23896) [007] .... 24572.728199: binder_transaction_received: transaction=1669301
30115 kgsl_worker_thr-246   (  246) [004] d..2 24572.728202: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=005
30116 kgsl_worker_thr-246   (  246) [004] d..3 24572.728213: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
30117 kgsl_worker_thr-246   (  246) [004] d..2 24572.728219: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
30118  kworker/u16:10-23868 (23868) [004] d..2 24572.728252: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
30119          <idle>-0     (-----) [004] d..1 24572.728254: cpu_idle: state=0 cpu_id=4
30120  Binder:23896_5-25989 (23896) [007] .... 24572.728343: binder_transaction: transaction=1669302 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
30121  Binder:23896_5-25989 (23896) [007] d..2 24572.728357: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
30122    RenderThread-24437 (24151) [007] .... 24572.728359: binder_transaction_received: transaction=1669302
30123    RenderThread-24437 (24151) [007] d..2 24572.728412: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
30124          <idle>-0     (-----) [007] d..1 24572.728421: cpu_idle: state=0 cpu_id=7
30125<...>-24741 ( 24741) [006] d..1 24572.728483: sched_waking: comm=Jit thread pool pid=24750 prio=129 target_cpu=002
30126<...>-24741 ( 24741) [006] d..2 24572.728500: sched_wakeup: comm=Jit thread pool pid=24750 prio=129 target_cpu=007
30127          <idle>-0     (-----) [007] .n.1 24572.728505: cpu_idle: state=4294967295 cpu_id=7
30128<...>-568 ( 568) [001] ...1 24572.728510: tracing_mark_write: E|568
30129<...>-24741 ( 24741) [006] d.h3 24572.728522: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
30130          <idle>-0     (-----) [007] d..2 24572.728523: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=24750 next_prio=129
30131<...>-568 ( 568) [001] .... 24572.728523: binder_transaction: transaction=1669303 dest_node=0 dest_proc=13131 dest_thread=13151 reply=1 flags=0x0 code=0x0
30132<...>-24041 ( 23968) [005] ...1 24572.728523: tracing_mark_write: B|23968|HIDL::IMapper::unlock::passthrough
30133          <idle>-0     (-----) [002] ...1 24572.728527: cpu_idle: state=4294967295 cpu_id=2
30134<...>-568 ( 568) [001] d..2 24572.728529: sched_waking: comm=RenderThread pid=13151 prio=110 target_cpu=004
30135          <idle>-0     (-----) [002] d..1 24572.728530: cpu_idle: state=0 cpu_id=2
30136<...>-24741 ( 24741) [006] d.h4 24572.728532: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
30137<...>-24041 ( 23968) [005] ...1 24572.728535: tracing_mark_write: B|23968|CleanBuffer
30138<...>-24741 ( 24741) [006] d.h3 24572.728535: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
30139          <idle>-0     (-----) [004] .n.1 24572.728536: cpu_idle: state=4294967295 cpu_id=4
30140<...>-24750 ( 24741) [007] d..2 24572.728537: sched_switch: prev_comm=Jit thread pool prev_pid=24750 prev_prio=129 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
30141<...>-24041 ( 23968) [005] ...1 24572.728537: tracing_mark_write: C|23968|operation id|1
30142          <idle>-0     (-----) [007] d..1 24572.728539: cpu_idle: state=0 cpu_id=7
30143<...>-24741 ( 24741) [006] d..1 24572.728543: sched_waking: comm=Jit thread pool pid=24750 prio=129 target_cpu=007
30144          <idle>-0     (-----) [004] d..2 24572.728547: 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
30145          <idle>-0     (-----) [003] dnh2 24572.728548: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
30146<...>-24741 ( 24741) [006] d..2 24572.728549: sched_wakeup: comm=Jit thread pool pid=24750 prio=129 target_cpu=007
30147<...>-568 ( 568) [001] d..3 24572.728550: sched_wakeup: comm=RenderThread pid=13151 prio=110 target_cpu=001
30148          <idle>-0     (-----) [003] .n.1 24572.728551: cpu_idle: state=4294967295 cpu_id=3
30149          <idle>-0     (-----) [007] .n.1 24572.728553: cpu_idle: state=4294967295 cpu_id=7
30150         sugov:4-560   (  560) [004] d..2 24572.728553: 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
30151          <idle>-0     (-----) [004] d..1 24572.728556: cpu_idle: state=0 cpu_id=4
30152          <idle>-0     (-----) [003] d..2 24572.728556: 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
30153          <idle>-0     (-----) [007] d..2 24572.728556: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=24750 next_prio=129
30154<...>-568 ( 568) [001] .... 24572.728579: binder_set_priority: proc=568 thread=568 old=110 => new=120 desired=120
30155         sugov:0-559   (  559) [003] d..2 24572.728587: 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
30156          <idle>-0     (-----) [003] d..1 24572.728592: cpu_idle: state=0 cpu_id=3
30157<...>-568 ( 568) [001] d..2 24572.728609: sched_switch: prev_comm=hwservicemanage prev_pid=568 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
30158           <...>-13151 (-----) [001] .... 24572.728615: binder_transaction_received: transaction=1669303
30159<...>-105 ( 105) [000] d.h1 24572.728651: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
30160<...>-105 ( 105) [000] dnh2 24572.728659: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
30161<...>-105 ( 105) [000] d..2 24572.728669: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
30162           <...>-13151 (-----) [001] ...1 24572.728732: tracing_mark_write: B|13131|HIDL::IMapper::interfaceChain::passthrough
30163           <...>-13151 (-----) [001] ...1 24572.728741: tracing_mark_write: E|13131
30164           <...>-13151 (-----) [001] ...1 24572.728757: tracing_mark_write: B|13131|HIDL::IMapper::interfaceChain::passthrough
30165           <...>-13151 (-----) [001] ...1 24572.728761: tracing_mark_write: E|13131
30166<...>-24741 ( 24741) [006] .... 24572.728804: binder_transaction: transaction=1669304 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x1b
30167           <...>-13151 (-----) [001] ...1 24572.728804: tracing_mark_write: B|13131|HIDL::IMapper::importBuffer::passthrough
30168 irq/79-1436400.-24613 (24613) [000] d..2 24572.728827: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=system next_pid=105 next_prio=120
30169          <idle>-0     (-----) [003] d.s3 24572.728855: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
30170           <...>-13151 (-----) [001] ...1 24572.728855: tracing_mark_write: E|13131
30171<...>-24750 ( 24741) [007] d.h1 24572.728861: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=007
30172          <idle>-0     (-----) [003] d.s4 24572.728863: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
30173           <...>-13151 (-----) [001] ...1 24572.728864: tracing_mark_write: B|13131|HIDL::IMapper::validateBufferSize::passthrough
30174          <idle>-0     (-----) [003] ...1 24572.728870: cpu_idle: state=4294967295 cpu_id=3
30175<...>-105 ( 105) [000] d..2 24572.728870: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
30176          <idle>-0     (-----) [003] d..1 24572.728872: cpu_idle: state=0 cpu_id=3
30177<...>-24750 ( 24741) [007] d.h2 24572.728872: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=004
30178          <idle>-0     (-----) [004] .n.1 24572.728877: cpu_idle: state=4294967295 cpu_id=4
30179          <idle>-0     (-----) [004] d..2 24572.728879: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
30180 irq/79-1436400.-24613 (24613) [000] d..2 24572.728889: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
30181        DispSync-23904 (23896) [004] d..1 24572.728894: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
30182          <idle>-0     (-----) [002] dnh2 24572.728913: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
30183        DispSync-23904 (23896) [004] d..2 24572.728916: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
30184          <idle>-0     (-----) [002] .n.1 24572.728917: cpu_idle: state=4294967295 cpu_id=2
30185          <idle>-0     (-----) [004] d..1 24572.728919: cpu_idle: state=0 cpu_id=4
30186          <idle>-0     (-----) [002] d..2 24572.728923: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
30187<...>-24741 ( 24741) [006] d..4 24572.728949: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=001
30188<...>-24741 ( 24741) [006] d..5 24572.728967: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
30189   sfEventThread-23906 (23896) [002] d..3 24572.728973: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=007
30190<...>-24750 ( 24741) [007] d..2 24572.728986: sched_switch: prev_comm=Jit thread pool prev_pid=24750 prev_prio=129 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
30191<...>-24741 ( 24741) [006] d..2 24572.728988: sched_switch: prev_comm=.gms.persistent prev_pid=24741 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
30192  Binder:23968_1-23981 (23968) [007] .... 24572.728991: binder_transaction_received: transaction=1669304
30193<...>-12589 ( 23968) [006] .... 24572.728992: binder_transaction_received: transaction=1669299
30194  Binder:23968_1-23981 (23968) [007] d..1 24572.729007: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=006
30195          <idle>-0     (-----) [004] dnh2 24572.729013: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=004
30196<...>-12589 ( 23968) [006] d..2 24572.729013: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30197          <idle>-0     (-----) [004] .n.1 24572.729015: cpu_idle: state=4294967295 cpu_id=4
30198          <idle>-0     (-----) [004] d..2 24572.729019: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
30199  Binder:23968_1-23981 (23968) [007] d..2 24572.729022: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=006
30200          <idle>-0     (-----) [006] d..2 24572.729026: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
30201   sfEventThread-23906 (23896) [002] d..3 24572.729029: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
30202   sfEventThread-23906 (23896) [002] d..4 24572.729047: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
30203          <idle>-0     (-----) [003] .n.1 24572.729052: cpu_idle: state=4294967295 cpu_id=3
30204          <idle>-0     (-----) [003] d..2 24572.729058: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
30205   sfEventThread-23906 (23896) [002] d..2 24572.729069: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30206          <idle>-0     (-----) [002] d..1 24572.729077: cpu_idle: state=0 cpu_id=2
30207  Binder:23968_1-23981 (23968) [007] d..2 24572.729082: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=Jit thread pool next_pid=24750 next_prio=129
30208<...>-12589 ( 23968) [006] d..1 24572.729096: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
30209<...>-12589 ( 23968) [006] d..2 24572.729103: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
30210<...>-24750 ( 24741) [007] d..2 24572.729110: sched_switch: prev_comm=Jit thread pool prev_pid=24750 prev_prio=129 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
30211<...>-24042 ( 23968) [004] d..2 24572.729119: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=D|K ==> next_comm=swapper/4 next_pid=0 next_prio=120
30212          <idle>-0     (-----) [004] d..1 24572.729123: cpu_idle: state=0 cpu_id=4
30213<...>-24041 ( 23968) [005] d..1 24572.729160: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=004
30214<...>-24041 ( 23968) [005] d..2 24572.729166: sched_blocked_reason: pid=24042 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
30215<...>-24041 ( 23968) [005] d..2 24572.729170: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=004
30216<...>-24041 ( 23968) [005] ...1 24572.729173: tracing_mark_write: E|23968
30217          <idle>-0     (-----) [004] .n.1 24572.729175: cpu_idle: state=4294967295 cpu_id=4
30218<...>-24041 ( 23968) [005] ...1 24572.729176: tracing_mark_write: E|23968
30219          <idle>-0     (-----) [004] d..2 24572.729178: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
30220<...>-24041 ( 23968) [005] .... 24572.729198: binder_transaction: transaction=1669307 dest_node=1669016 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
30221<...>-24041 ( 23968) [005] ...2 24572.729203: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
30222<...>-24041 ( 23968) [005] d..4 24572.729204: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=007
30223<...>-24041 ( 23968) [005] dn.5 24572.729212: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
30224<...>-24041 ( 23968) [005] d..2 24572.729215: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
30225  Binder:23896_5-25989 (23896) [005] .... 24572.729218: binder_transaction_received: transaction=1669307
30226<...>-12589 ( 23968) [006] d..2 24572.729224: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30227          <idle>-0     (-----) [006] d..1 24572.729230: cpu_idle: state=0 cpu_id=6
30228<...>-24042 ( 23968) [004] .... 24572.729240: binder_transaction: transaction=1669308 dest_node=1271163 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
30229<...>-24042 ( 23968) [004] d..4 24572.729244: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
30230  Binder:23896_5-25989 (23896) [005] d..1 24572.729252: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
30231<...>-24042 ( 23968) [004] d..5 24572.729256: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
30232          <idle>-0     (-----) [006] .n.1 24572.729261: cpu_idle: state=4294967295 cpu_id=6
30233          <idle>-0     (-----) [006] d..2 24572.729265: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
30234          <idle>-0     (-----) [002] dnh2 24572.729265: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
30235<...>-23903 ( 23896) [006] .... 24572.729268: binder_transaction_received: transaction=1669308
30236          <idle>-0     (-----) [002] .n.1 24572.729269: cpu_idle: state=4294967295 cpu_id=2
30237  Binder:23896_5-25989 (23896) [005] .... 24572.729272: binder_transaction: transaction=1669309 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
30238          <idle>-0     (-----) [002] d..2 24572.729274: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
30239  Binder:23896_5-25989 (23896) [005] .... 24572.729274: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
30240   sfEventThread-23906 (23896) [002] d..1 24572.729283: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
30241  Binder:23896_5-25989 (23896) [005] d..2 24572.729286: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
30242<...>-23903 ( 23896) [006] d..2 24572.729288: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30243<...>-24041 ( 23968) [005] .... 24572.729289: binder_transaction_received: transaction=1669309
30244          <idle>-0     (-----) [006] d..1 24572.729291: cpu_idle: state=0 cpu_id=6
30245          <idle>-0     (-----) [006] dnh2 24572.729302: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
30246  Binder:23968_1-23981 (23968) [007] .... 24572.729303: binder_transaction: transaction=1669310 dest_node=1669276 dest_proc=24133 dest_thread=0 reply=0 flags=0x11 code=0x1
30247          <idle>-0     (-----) [006] .n.1 24572.729304: cpu_idle: state=4294967295 cpu_id=6
30248          <idle>-0     (-----) [006] d..2 24572.729307: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
30249<...>-23903 ( 23896) [006] d..1 24572.729309: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
30250   sfEventThread-23906 (23896) [002] d..2 24572.729309: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30251          <idle>-0     (-----) [002] d..1 24572.729315: cpu_idle: state=0 cpu_id=2
30252          <idle>-0     (-----) [002] dnh2 24572.729323: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
30253<...>-23903 ( 23896) [006] d..2 24572.729325: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30254          <idle>-0     (-----) [002] .n.1 24572.729326: cpu_idle: state=4294967295 cpu_id=2
30255          <idle>-0     (-----) [006] d..1 24572.729327: cpu_idle: state=0 cpu_id=6
30256          <idle>-0     (-----) [002] d..2 24572.729331: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
30257  Binder:23968_1-23981 (23968) [007] d..4 24572.729335: sched_waking: comm=Binder:24133_4 pid=24431 prio=120 target_cpu=000
30258   sfEventThread-23906 (23896) [002] d..2 24572.729346: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30259<...>-105 ( 105) [000] dnh1 24572.729350: sched_wakeup: comm=Binder:24133_4 pid=24431 prio=120 target_cpu=000
30260          <idle>-0     (-----) [002] d..1 24572.729352: cpu_idle: state=0 cpu_id=2
30261<...>-105 ( 105) [000] d..2 24572.729354: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=Binder:24133_4 next_pid=24431 next_prio=120
30262<...>-24431 ( 24133) [000] .... 24572.729361: binder_transaction_received: transaction=1669310
30263           <...>-13151 (-----) [001] d..2 24572.729397: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
30264           <...>-13151 (-----) [001] d..3 24572.729409: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
30265<...>-24042 ( 23968) [004] .... 24572.729416: binder_transaction: transaction=1669312 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
30266<...>-24042 ( 23968) [004] ...2 24572.729422: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
30267<...>-24042 ( 23968) [004] d..4 24572.729423: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=006
30268<...>-24042 ( 23968) [004] d..5 24572.729431: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=004
30269<...>-24042 ( 23968) [004] d..2 24572.729435: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
30270<...>-23903 ( 23896) [004] .... 24572.729437: binder_transaction_received: transaction=1669312
30271  Binder:23968_1-23981 (23968) [007] d..3 24572.729445: sched_waking: comm=lmkd pid=808 prio=98 target_cpu=002
30272           <...>-13151 (-----) [001] ...1 24572.729456: tracing_mark_write: E|13131
30273          <idle>-0     (-----) [002] dnh2 24572.729458: sched_wakeup: comm=lmkd pid=808 prio=98 target_cpu=002
30274          <idle>-0     (-----) [002] .n.1 24572.729462: cpu_idle: state=4294967295 cpu_id=2
30275          <idle>-0     (-----) [002] d..2 24572.729466: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=808 next_prio=98
30276           <...>-13151 (-----) [001] ...1 24572.729467: tracing_mark_write: B|13131|HIDL::IMapper::getTransportSize::passthrough
30277           <...>-13151 (-----) [001] ...1 24572.729471: tracing_mark_write: E|13131
30278<...>-23903 ( 23896) [004] d..1 24572.729471: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=004
30279<...>-23903 ( 23896) [004] d..2 24572.729480: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=006
30280          <idle>-0     (-----) [006] .n.1 24572.729484: cpu_idle: state=4294967295 cpu_id=6
30281<...>-23903 ( 23896) [004] .... 24572.729487: binder_transaction: transaction=1669313 dest_node=0 dest_proc=23968 dest_thread=24042 reply=1 flags=0x0 code=0x0
30282          <idle>-0     (-----) [006] d..2 24572.729488: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
30283<...>-23903 ( 23896) [004] d..2 24572.729488: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=004
30284<...>-23903 ( 23896) [004] dn.3 24572.729491: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=004
30285<...>-23903 ( 23896) [004] d..2 24572.729493: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=110 prev_state=R+ ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
30286<...>-24042 ( 23968) [004] .... 24572.729495: binder_transaction_received: transaction=1669313
30287        DispSync-23904 (23896) [006] d..2 24572.729496: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30288          <idle>-0     (-----) [006] d..1 24572.729499: cpu_idle: state=0 cpu_id=6
30289  Binder:23968_1-23981 (23968) [007] .... 24572.729501: binder_transaction: transaction=1669314 dest_node=0 dest_proc=24741 dest_thread=24741 reply=1 flags=0x0 code=0x0
30290  Binder:23968_1-23981 (23968) [007] d..2 24572.729505: sched_waking: comm=.gms.persistent pid=24741 prio=120 target_cpu=006
30291  Binder:23968_1-23981 (23968) [007] d..3 24572.729513: sched_wakeup: comm=.gms.persistent pid=24741 prio=120 target_cpu=006
30292          <idle>-0     (-----) [006] .n.1 24572.729517: cpu_idle: state=4294967295 cpu_id=6
30293<...>-24042 ( 23968) [004] d..2 24572.729519: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
30294          <idle>-0     (-----) [006] d..2 24572.729520: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=.gms.persistent next_pid=24741 next_prio=120
30295<...>-23903 ( 23896) [004] .... 24572.729521: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
30296<...>-24741 ( 24741) [006] .... 24572.729524: binder_transaction_received: transaction=1669314
30297  Binder:23968_1-23981 (23968) [007] d..2 24572.729526: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=Jit thread pool next_pid=24750 next_prio=129
30298<...>-23903 ( 23896) [004] d..2 24572.729538: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
30299          <idle>-0     (-----) [004] d..1 24572.729543: cpu_idle: state=0 cpu_id=4
30300<...>-24431 ( 24133) [000] d..3 24572.729549: sched_waking: comm=putmethod.latin pid=24133 prio=120 target_cpu=001
30301<...>-24041 ( 23968) [005] .... 24572.729553: binder_transaction: transaction=1669315 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
30302<...>-24041 ( 23968) [005] d..4 24572.729557: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
30303<...>-24741 ( 24741) [006] d..2 24572.729560: sched_switch: prev_comm=.gms.persistent prev_pid=24741 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30304          <idle>-0     (-----) [006] d..1 24572.729564: cpu_idle: state=0 cpu_id=6
30305<...>-24431 ( 24133) [000] d..4 24572.729568: sched_wakeup: comm=putmethod.latin pid=24133 prio=120 target_cpu=000
30306<...>-24041 ( 23968) [005] d..5 24572.729571: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
30307          <idle>-0     (-----) [006] .n.1 24572.729575: cpu_idle: state=4294967295 cpu_id=6
30308          <idle>-0     (-----) [006] d..2 24572.729579: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
30309<...>-24376 ( 24151) [006] .... 24572.729583: binder_transaction_received: transaction=1669315
30310<...>-24431 ( 24133) [000] d..2 24572.729606: sched_switch: prev_comm=Binder:24133_4 prev_pid=24431 prev_prio=120 prev_state=S ==> next_comm=putmethod.latin next_pid=24133 next_prio=120
30311<...>-24041 ( 23968) [005] d..3 24572.729619: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=007
30312<...>-24041 ( 23968) [005] d..4 24572.729630: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=006
30313<...>-24376 ( 24151) [006] d..3 24572.729649: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
30314<...>-24376 ( 24151) [006] d..4 24572.729659: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
30315<...>-24376 ( 24151) [006] d..2 24572.729683: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=23994 next_prio=118
30316<...>-24041 ( 23968) [005] d..3 24572.729691: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=005
30317<...>-24041 ( 23968) [005] d..4 24572.729703: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=004
30318          <idle>-0     (-----) [004] .n.1 24572.729707: cpu_idle: state=4294967295 cpu_id=4
30319          <idle>-0     (-----) [004] d..2 24572.729711: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
30320<...>-23994 ( 23968) [006] d..3 24572.729727: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=001
30321<...>-23994 ( 23968) [006] d..4 24572.729740: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=006
30322<...>-24003 ( 23968) [004] d..2 24572.729762: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
30323<...>-23994 ( 23968) [006] d.h3 24572.729763: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
30324          <idle>-0     (-----) [004] d..1 24572.729766: cpu_idle: state=0 cpu_id=4
30325          <idle>-0     (-----) [004] .n.1 24572.729767: cpu_idle: state=4294967295 cpu_id=4
30326<...>-23994 ( 23968) [006] d.h4 24572.729769: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
30327          <idle>-0     (-----) [004] d..2 24572.729771: 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
30328<...>-23994 ( 23968) [006] d.h3 24572.729772: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
30329         sugov:4-560   (  560) [004] d..2 24572.729780: 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
30330          <idle>-0     (-----) [004] d..1 24572.729783: cpu_idle: state=0 cpu_id=4
30331 putmethod.latin-24133 (24133) [000] dnh1 24572.729789: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
30332<...>-23994 ( 23968) [006] d..2 24572.729796: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
30333 putmethod.latin-24133 (24133) [000] d..2 24572.729798: sched_switch: prev_comm=putmethod.latin prev_pid=24133 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
30334           <...>-13151 (-----) [001] d.h1 24572.729798: sched_waking: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
30335         sugov:0-559   (  559) [000] d..2 24572.729807: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=putmethod.latin next_pid=24133 next_prio=120
30336           <...>-13151 (-----) [001] dnh2 24572.729808: sched_wakeup: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
30337           <...>-13151 (-----) [001] d..2 24572.729818: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=R+ ==> next_comm=irq/80-114a000. next_pid=24617 next_prio=49
30338 putmethod.latin-24133 (24133) [000] d..3 24572.729822: sched_waking: comm=GoogleApiHandle pid=24732 prio=129 target_cpu=001
30339<...>-23968 ( 23968) [006] .... 24572.729828: binder_transaction: transaction=1669316 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
30340<...>-23968 ( 23968) [006] d..4 24572.729831: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
30341<...>-23968 ( 23968) [006] d..5 24572.729836: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
30342 putmethod.latin-24133 (24133) [000] d..4 24572.729836: sched_wakeup: comm=GoogleApiHandle pid=24732 prio=129 target_cpu=000
30343<...>-24041 ( 23968) [005] .... 24572.729840: binder_transaction: transaction=1669317 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
30344<...>-24041 ( 23968) [005] ...2 24572.729845: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
30345<...>-24041 ( 23968) [005] d..4 24572.729846: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=004
30346<...>-23968 ( 23968) [006] d..2 24572.729853: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
30347<...>-24041 ( 23968) [005] dn.5 24572.729854: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
30348<...>-24376 ( 24151) [006] .... 24572.729855: binder_transaction_received: transaction=1669316
30349<...>-24041 ( 23968) [005] d..2 24572.729857: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
30350<...>-23903 ( 23896) [005] .... 24572.729859: binder_transaction_received: transaction=1669317
30351<...>-23903 ( 23896) [005] .... 24572.729881: binder_transaction: transaction=1669318 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
30352<...>-23903 ( 23896) [005] .... 24572.729882: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
30353<...>-24376 ( 24151) [006] d..2 24572.729894: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
30354<...>-23903 ( 23896) [005] d..2 24572.729896: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
30355<...>-24041 ( 23968) [005] .... 24572.729897: binder_transaction_received: transaction=1669318
30356            lmkd-808   (  808) [002] d..2 24572.729908: sched_switch: prev_comm=lmkd prev_pid=808 prev_prio=98 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
30357<...>-24617 ( 24617) [001] d..2 24572.729941: sched_switch: prev_comm=irq/80-114a000. prev_pid=24617 prev_prio=49 prev_state=D ==> next_comm=RenderThread next_pid=13151 next_prio=110
30358<...>-24151 ( 24151) [006] d..2 24572.729959: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30359  surfaceflinger-23896 (23896) [003] d.s1 24572.729962: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
30360          <idle>-0     (-----) [006] d..1 24572.729964: cpu_idle: state=0 cpu_id=6
30361  surfaceflinger-23896 (23896) [003] d.s2 24572.729973: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
30362          <idle>-0     (-----) [004] ...1 24572.729974: cpu_idle: state=4294967295 cpu_id=4
30363          <idle>-0     (-----) [004] d..1 24572.729975: cpu_idle: state=0 cpu_id=4
30364     logd.writer-563   (  555) [002] d..2 24572.730002: 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
30365          <idle>-0     (-----) [002] d..1 24572.730011: cpu_idle: state=0 cpu_id=2
30366 putmethod.latin-24133 (24133) [000] d..1 24572.730113: sched_waking: comm=GAC_Executor[1] pid=25129 prio=120 target_cpu=001
30367 putmethod.latin-24133 (24133) [000] d..2 24572.730132: sched_wakeup: comm=GAC_Executor[1] pid=25129 prio=120 target_cpu=000
30368          <idle>-0     (-----) [006] ...1 24572.730155: cpu_idle: state=4294967295 cpu_id=6
30369          <idle>-0     (-----) [006] d..1 24572.730157: cpu_idle: state=0 cpu_id=6
30370<...>-24041 ( 23968) [005] d..3 24572.730162: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
30371<...>-24041 ( 23968) [005] d..4 24572.730172: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
30372          <idle>-0     (-----) [006] .n.1 24572.730176: cpu_idle: state=4294967295 cpu_id=6
30373          <idle>-0     (-----) [006] d..2 24572.730180: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
30374<...>-24041 ( 23968) [005] d..3 24572.730182: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=004
30375 putmethod.latin-24133 (24133) [000] d..2 24572.730185: sched_switch: prev_comm=putmethod.latin prev_pid=24133 prev_prio=120 prev_state=S ==> next_comm=GAC_Executor[1] next_pid=25129 next_prio=120
30376<...>-24041 ( 23968) [005] d..4 24572.730188: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=004
30377          <idle>-0     (-----) [004] .n.1 24572.730192: cpu_idle: state=4294967295 cpu_id=4
30378          <idle>-0     (-----) [004] d..2 24572.730195: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
30379<...>-24073 ( 23968) [006] d..2 24572.730200: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30380          <idle>-0     (-----) [006] d..1 24572.730203: cpu_idle: state=0 cpu_id=6
30381<...>-24003 ( 23968) [004] d..2 24572.730219: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
30382          <idle>-0     (-----) [004] d..1 24572.730223: cpu_idle: state=0 cpu_id=4
30383  surfaceflinger-23896 (23896) [003] ...1 24572.730226: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
30384  surfaceflinger-23896 (23896) [003] ...1 24572.730230: tracing_mark_write: E|23896
30385  surfaceflinger-23896 (23896) [003] .... 24572.730266: binder_transaction: transaction=1669319 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
30386  surfaceflinger-23896 (23896) [003] ...2 24572.730287: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
30387  surfaceflinger-23896 (23896) [003] d..4 24572.730295: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
30388<...>-24041 ( 23968) [005] d..3 24572.730314: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=004
30389          <idle>-0     (-----) [004] dnh2 24572.730318: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
30390<...>-24041 ( 23968) [005] d..4 24572.730320: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=004
30391  surfaceflinger-23896 (23896) [003] d..2 24572.730322: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
30392          <idle>-0     (-----) [004] .n.1 24572.730323: cpu_idle: state=4294967295 cpu_id=4
30393          <idle>-0     (-----) [004] d..2 24572.730326: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
30394  HwBinder:598_3-633   (  598) [004] .... 24572.730331: binder_transaction_received: transaction=1669319
30395     ksoftirqd/3-34    (   34) [003] d.s2 24572.730334: sched_waking: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
30396     ksoftirqd/3-34    (   34) [003] d.s3 24572.730342: sched_wakeup: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
30397           <...>-13151 (-----) [001] d..2 24572.730350: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=R ==> next_comm=irq/80-114a000. next_pid=24617 next_prio=49
30398  HwBinder:598_3-633   (  598) [004] ...1 24572.730359: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
30399     ksoftirqd/3-34    (   34) [003] d..2 24572.730362: 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
30400<...>-24617 ( 24617) [001] d..2 24572.730367: sched_switch: prev_comm=irq/80-114a000. prev_pid=24617 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
30401          <idle>-0     (-----) [003] d..1 24572.730372: cpu_idle: state=0 cpu_id=3
30402<...>-24041 ( 23968) [005] .... 24572.730390: binder_transaction: transaction=1669320 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
30403<...>-24041 ( 23968) [005] d..4 24572.730392: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
30404          <idle>-0     (-----) [006] ...1 24572.730393: cpu_idle: state=4294967295 cpu_id=6
30405          <idle>-0     (-----) [006] d..1 24572.730394: cpu_idle: state=0 cpu_id=6
30406<...>-24041 ( 23968) [005] d..5 24572.730400: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
30407          <idle>-0     (-----) [006] .n.1 24572.730404: cpu_idle: state=4294967295 cpu_id=6
30408          <idle>-0     (-----) [006] d..2 24572.730407: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
30409<...>-24376 ( 24151) [006] .... 24572.730408: binder_transaction_received: transaction=1669320
30410  HwBinder:598_3-633   (  598) [004] ...1 24572.730423: tracing_mark_write: B|598|HWCSession::PresentDisplay::
30411<...>-24041 ( 23968) [005] d..3 24572.730424: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=006
30412<...>-24041 ( 23968) [005] d..4 24572.730429: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=006
30413<...>-24376 ( 24151) [006] d..3 24572.730431: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
30414<...>-24376 ( 24151) [006] d..4 24572.730437: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
30415<...>-24376 ( 24151) [006] d..2 24572.730451: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=23994 next_prio=118
30416<...>-23994 ( 23968) [006] d..3 24572.730475: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=006
30417<...>-23994 ( 23968) [006] d..4 24572.730480: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=006
30418  HwBinder:598_3-633   (  598) [004] ...1 24572.730491: tracing_mark_write: B|598|HWDeviceDRM::Commit::
30419<...>-23994 ( 23968) [006] d..2 24572.730492: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
30420  HwBinder:598_3-633   (  598) [004] ...1 24572.730496: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
30421<...>-23968 ( 23968) [006] .... 24572.730514: binder_transaction: transaction=1669321 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
30422<...>-23968 ( 23968) [006] d..4 24572.730516: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
30423<...>-23968 ( 23968) [006] d..5 24572.730521: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
30424<...>-24041 ( 23968) [005] .... 24572.730525: binder_transaction: transaction=1669322 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
30425<...>-24041 ( 23968) [005] ...2 24572.730530: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
30426<...>-24041 ( 23968) [005] d..4 24572.730531: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
30427<...>-24041 ( 23968) [005] dn.5 24572.730536: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
30428<...>-23968 ( 23968) [006] d..2 24572.730536: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
30429<...>-24376 ( 24151) [006] .... 24572.730538: binder_transaction_received: transaction=1669321
30430<...>-24041 ( 23968) [005] d..2 24572.730539: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
30431<...>-23903 ( 23896) [005] .... 24572.730541: binder_transaction_received: transaction=1669322
30432<...>-23903 ( 23896) [005] .... 24572.730562: binder_transaction: transaction=1669324 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
30433<...>-23903 ( 23896) [005] .... 24572.730564: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
30434<...>-24376 ( 24151) [006] d..2 24572.730572: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
30435<...>-25129 ( 24133) [000] .... 24572.730576: binder_transaction: transaction=1669323 dest_node=1669305 dest_proc=24741 dest_thread=0 reply=0 flags=0x10 code=0x2e
30436<...>-23903 ( 23896) [005] d..2 24572.730576: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
30437<...>-24041 ( 23968) [005] .... 24572.730578: binder_transaction_received: transaction=1669324
30438<...>-24151 ( 24151) [006] d..2 24572.730603: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30439          <idle>-0     (-----) [006] d..1 24572.730608: cpu_idle: state=0 cpu_id=6
30440<...>-25129 ( 24133) [000] d..4 24572.730615: sched_waking: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=006
30441          <idle>-0     (-----) [006] dnh2 24572.730633: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=006
30442          <idle>-0     (-----) [006] .n.1 24572.730635: cpu_idle: state=4294967295 cpu_id=6
30443<...>-25129 ( 24133) [000] d..2 24572.730636: sched_switch: prev_comm=GAC_Executor[1] prev_pid=25129 prev_prio=120 prev_state=S ==> next_comm=GoogleApiHandle next_pid=24732 next_prio=129
30444          <idle>-0     (-----) [006] d..2 24572.730639: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=120
30445<...>-25141 ( 24741) [006] .... 24572.730646: binder_transaction_received: transaction=1669323
30446  HwBinder:598_3-633   (  598) [004] d..2 24572.730716: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
30447<...>-24750 ( 24741) [007] d..2 24572.730721: sched_switch: prev_comm=Jit thread pool prev_pid=24750 prev_prio=129 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
30448  HwBinder:598_3-633   (  598) [004] d..3 24572.730731: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
30449          <idle>-0     (-----) [007] d..2 24572.730733: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
30450  HwBinder:598_3-633   (  598) [004] ...1 24572.730768: tracing_mark_write: E|598
30451  HwBinder:598_3-633   (  598) [004] ...1 24572.730770: tracing_mark_write: E|598
30452<...>-24041 ( 23968) [005] d..3 24572.730784: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
30453<...>-24041 ( 23968) [005] d..4 24572.730790: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
30454  HwBinder:598_3-633   (  598) [004] ...1 24572.730793: tracing_mark_write: E|598
30455  HwBinder:598_3-633   (  598) [004] ...1 24572.730816: tracing_mark_write: E|598
30456  HwBinder:598_3-633   (  598) [004] .... 24572.730823: binder_transaction: transaction=1669327 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
30457  HwBinder:598_3-633   (  598) [004] d..2 24572.730830: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
30458  HwBinder:598_3-633   (  598) [004] .... 24572.730836: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
30459          <idle>-0     (-----) [003] dnh2 24572.730844: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
30460          <idle>-0     (-----) [003] .n.1 24572.730849: cpu_idle: state=4294967295 cpu_id=3
30461          <idle>-0     (-----) [003] d..2 24572.730854: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
30462<...>-24041 ( 23968) [005] .... 24572.730854: binder_transaction: transaction=1669328 dest_node=1271137 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
30463<...>-24041 ( 23968) [005] d..4 24572.730857: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
30464  surfaceflinger-23896 (23896) [003] .... 24572.730858: binder_transaction_received: transaction=1669327
30465  HwBinder:598_3-633   (  598) [004] d..2 24572.730860: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=android.display next_pid=24003 next_prio=117
30466<...>-24041 ( 23968) [005] d..5 24572.730867: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
30467<...>-24003 ( 23968) [004] d..2 24572.730883: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
30468<...>-23903 ( 23896) [004] .... 24572.730904: binder_transaction_received: transaction=1669328
30469  surfaceflinger-23896 (23896) [003] d.s2 24572.730906: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
30470<...>-25141 ( 24741) [006] .... 24572.730909: binder_transaction: transaction=1669329 dest_node=1270624 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xa
30471           <...>-13151 (-----) [001] d.h2 24572.730909: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
30472<...>-25141 ( 24741) [006] d..4 24572.730912: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
30473<...>-23903 ( 23896) [004] d..1 24572.730916: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
30474           <...>-13151 (-----) [001] dnh3 24572.730918: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
30475<...>-24732 ( 24133) [000] .... 24572.730920: binder_transaction: transaction=1669330 dest_node=1669305 dest_proc=24741 dest_thread=0 reply=0 flags=0x10 code=0x2e
30476          <idle>-0     (-----) [002] ...1 24572.730921: cpu_idle: state=4294967295 cpu_id=2
30477<...>-25141 ( 24741) [006] d..5 24572.730924: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
30478          <idle>-0     (-----) [002] d..1 24572.730925: cpu_idle: state=0 cpu_id=2
30479<...>-25141 ( 24741) [006] d.h4 24572.730928: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=006
30480  surfaceflinger-23896 (23896) [003] d.s2 24572.730928: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
30481           <...>-13151 (-----) [001] d..2 24572.730930: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
30482<...>-25141 ( 24741) [006] d..2 24572.730932: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
30483          <idle>-0     (-----) [002] dnh2 24572.730933: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
30484  Binder:23968_1-23981 (23968) [006] .... 24572.730935: binder_transaction_received: transaction=1669329
30485<...>-23903 ( 23896) [004] d..2 24572.730936: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
30486          <idle>-0     (-----) [002] .n.1 24572.730937: cpu_idle: state=4294967295 cpu_id=2
30487  surfaceflinger-23896 (23896) [003] d.s3 24572.730938: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
30488<...>-24732 ( 24133) [000] ...2 24572.730939: binder_set_priority: proc=24741 thread=24764 old=120 => new=129 desired=129
30489          <idle>-0     (-----) [004] d..1 24572.730941: cpu_idle: state=0 cpu_id=4
30490<...>-24732 ( 24133) [000] d..4 24572.730942: sched_waking: comm=Binder:24741_1 pid=24764 prio=129 target_cpu=007
30491          <idle>-0     (-----) [002] d..2 24572.730942: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
30492 crtc_commit:111-253   (  253) [007] d.h1 24572.730957: sched_wakeup: comm=Binder:24741_1 pid=24764 prio=129 target_cpu=007
30493          <idle>-0     (-----) [004] .n.1 24572.730957: cpu_idle: state=4294967295 cpu_id=4
30494          <idle>-0     (-----) [004] d..2 24572.730961: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=110
30495<...>-24732 ( 24133) [000] d..2 24572.730961: sched_switch: prev_comm=GoogleApiHandle prev_pid=24732 prev_prio=129 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
30496     migration/1-17    (   17) [001] d.h3 24572.730996: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
30497   sfEventThread-23906 (23896) [002] d..2 24572.731013: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
30498     migration/1-17    (   17) [001] d.h3 24572.731015: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
30499  Binder:23968_1-23981 (23968) [006] dnh1 24572.731018: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
30500<...>-24041 ( 23968) [005] .... 24572.731019: binder_transaction: transaction=1669333 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
30501<...>-24041 ( 23968) [005] ...2 24572.731026: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
30502<...>-24041 ( 23968) [005] d..4 24572.731041: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=004
30503  Binder:23968_1-23981 (23968) [006] d..2 24572.731045: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
30504     migration/1-17    (   17) [001] d.h4 24572.731048: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
30505<...>-24041 ( 23968) [005] dn.5 24572.731049: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
30506         sugov:4-560   (  560) [006] d..2 24572.731050: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
30507<...>-24041 ( 23968) [005] d..2 24572.731052: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
30508<...>-23903 ( 23896) [005] .... 24572.731054: binder_transaction_received: transaction=1669333
30509     migration/1-17    (   17) [001] d..2 24572.731055: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
30510<...>-105 ( 105) [000] d..2 24572.731060: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30511<...>-24073 ( 23968) [006] d..2 24572.731063: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
30512         sugov:0-559   (  559) [001] d..2 24572.731072: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
30513          <idle>-0     (-----) [001] d..1 24572.731086: cpu_idle: state=0 cpu_id=1
30514<...>-23903 ( 23896) [005] .... 24572.731086: binder_transaction: transaction=1669334 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
30515<...>-23903 ( 23896) [005] .... 24572.731088: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
30516          <idle>-0     (-----) [000] d..1 24572.731099: cpu_idle: state=0 cpu_id=0
30517<...>-23903 ( 23896) [005] d..2 24572.731103: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
30518<...>-24041 ( 23968) [005] .... 24572.731104: binder_transaction_received: transaction=1669334
30519  Binder:23968_1-23981 (23968) [006] .... 24572.731108: binder_transaction: transaction=1669335 dest_node=0 dest_proc=24741 dest_thread=25141 reply=1 flags=0x0 code=0x0
30520  Binder:23968_1-23981 (23968) [006] d..2 24572.731111: sched_waking: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=006
30521  Binder:23968_1-23981 (23968) [006] d..3 24572.731115: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=006
30522<...>-24041 ( 23968) [005] d..1 24572.731119: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=004
30523  Binder:23968_1-23981 (23968) [006] d..2 24572.731125: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=120
30524<...>-25141 ( 24741) [006] .... 24572.731127: binder_transaction_received: transaction=1669335
30525<...>-24041 ( 23968) [005] d..2 24572.731131: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=006
30526<...>-24041 ( 23968) [005] d..2 24572.731154: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
30527          <idle>-0     (-----) [005] d..1 24572.731163: cpu_idle: state=0 cpu_id=5
30528<...>-25141 ( 24741) [006] .... 24572.731220: binder_transaction: transaction=1669336 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x3
30529<...>-25141 ( 24741) [006] d..4 24572.731222: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
30530<...>-25141 ( 24741) [006] d..5 24572.731227: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
30531<...>-25141 ( 24741) [006] d..2 24572.731231: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
30532  Binder:23968_1-23981 (23968) [006] .... 24572.731233: binder_transaction_received: transaction=1669336
30533  kworker/u16:10-23868 (23868) [002] d..2 24572.731243: 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
30534          <idle>-0     (-----) [002] d..1 24572.731251: cpu_idle: state=0 cpu_id=2
30535  surfaceflinger-23896 (23896) [003] d.s1 24572.731268: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
30536  surfaceflinger-23896 (23896) [003] d.s2 24572.731276: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
30537  surfaceflinger-23896 (23896) [003] d..2 24572.731290: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
30538     kworker/3:1-12662 (12662) [003] d..2 24572.731330: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
30539     ksoftirqd/3-34    (   34) [003] d.s2 24572.731337: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30540 crtc_commit:111-253   (  253) [007] d..2 24572.731340: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=Binder:24741_1 next_pid=24764 next_prio=129
30541<...>-24764 ( 24741) [007] .... 24572.731344: binder_transaction_received: transaction=1669330
30542          <idle>-0     (-----) [005] d.h2 24572.731379: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
30543          <idle>-0     (-----) [005] dnh2 24572.731380: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=005
30544          <idle>-0     (-----) [005] .n.1 24572.731383: cpu_idle: state=4294967295 cpu_id=5
30545          <idle>-0     (-----) [005] d..2 24572.731387: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
30546     ksoftirqd/3-34    (   34) [003] d..2 24572.731402: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=android.display next_pid=24003 next_prio=117
30547<...>-24764 ( 24741) [007] .... 24572.731498: binder_transaction: transaction=1669337 dest_node=1270624 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xa
30548  Binder:23968_1-23981 (23968) [006] .... 24572.731502: binder_transaction: transaction=1669338 dest_node=0 dest_proc=24741 dest_thread=25141 reply=1 flags=0x0 code=0x0
30549<...>-24764 ( 24741) [007] d..4 24572.731503: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=006
30550<...>-24764 ( 24741) [007] d..5 24572.731512: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
30551  Binder:23968_1-23981 (23968) [006] d..2 24572.731513: sched_waking: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=006
30552<...>-24764 ( 24741) [007] d..2 24572.731517: sched_switch: prev_comm=Binder:24741_1 prev_pid=24764 prev_prio=129 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
30553  Binder:23968_1-23981 (23968) [006] d..3 24572.731518: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=006
30554<...>-12589 ( 23968) [007] .... 24572.731523: binder_transaction_received: transaction=1669337
30555  Binder:23968_1-23981 (23968) [006] d..2 24572.731528: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=120
30556<...>-25141 ( 24741) [006] .... 24572.731530: binder_transaction_received: transaction=1669338
30557<...>-24003 ( 23968) [003] d..2 24572.731561: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
30558          <idle>-0     (-----) [003] d..1 24572.731584: cpu_idle: state=0 cpu_id=3
30559  kworker/u16:10-23868 (23868) [005] d..2 24572.731584: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
30560          <idle>-0     (-----) [005] d..1 24572.731587: cpu_idle: state=0 cpu_id=5
30561<...>-12589 ( 23968) [007] .... 24572.731607: binder_transaction: transaction=1669339 dest_node=0 dest_proc=24741 dest_thread=24764 reply=1 flags=0x0 code=0x0
30562<...>-12589 ( 23968) [007] d..2 24572.731609: sched_waking: comm=Binder:24741_1 pid=24764 prio=129 target_cpu=007
30563<...>-12589 ( 23968) [007] d..3 24572.731614: sched_wakeup: comm=Binder:24741_1 pid=24764 prio=129 target_cpu=007
30564<...>-12589 ( 23968) [007] d..2 24572.731624: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_1 next_pid=24764 next_prio=129
30565<...>-24764 ( 24741) [007] .... 24572.731626: binder_transaction_received: transaction=1669339
30566<...>-24764 ( 24741) [007] .... 24572.731689: binder_transaction: transaction=1669340 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x3
30567<...>-24764 ( 24741) [007] d..4 24572.731691: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
30568<...>-24764 ( 24741) [007] d..5 24572.731695: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
30569<...>-24764 ( 24741) [007] d..2 24572.731699: sched_switch: prev_comm=Binder:24741_1 prev_pid=24764 prev_prio=129 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
30570<...>-12589 ( 23968) [007] .... 24572.731701: binder_transaction_received: transaction=1669340
30571<...>-25141 ( 24741) [006] .... 24572.731722: binder_transaction: transaction=1669341 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x6a
30572<...>-25141 ( 24741) [006] d..4 24572.731725: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
30573<...>-25141 ( 24741) [006] d..5 24572.731729: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
30574<...>-25141 ( 24741) [006] d..2 24572.731733: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
30575  Binder:23968_1-23981 (23968) [006] .... 24572.731735: binder_transaction_received: transaction=1669341
30576  Binder:23968_1-23981 (23968) [006] .... 24572.731792: binder_transaction: transaction=1669342 dest_node=0 dest_proc=24741 dest_thread=25141 reply=1 flags=0x0 code=0x0
30577  Binder:23968_1-23981 (23968) [006] d..2 24572.731794: sched_waking: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=006
30578  Binder:23968_1-23981 (23968) [006] d..3 24572.731799: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=006
30579  Binder:23968_1-23981 (23968) [006] d..2 24572.731808: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=120
30580<...>-25141 ( 24741) [006] .... 24572.731810: binder_transaction_received: transaction=1669342
30581          <idle>-0     (-----) [005] ...1 24572.731818: cpu_idle: state=4294967295 cpu_id=5
30582          <idle>-0     (-----) [005] d..1 24572.731819: cpu_idle: state=0 cpu_id=5
30583<...>-12589 ( 23968) [007] .... 24572.731850: binder_transaction: transaction=1669343 dest_node=0 dest_proc=24741 dest_thread=24764 reply=1 flags=0x0 code=0x0
30584<...>-12589 ( 23968) [007] d..2 24572.731853: sched_waking: comm=Binder:24741_1 pid=24764 prio=129 target_cpu=007
30585<...>-12589 ( 23968) [007] d..3 24572.731857: sched_wakeup: comm=Binder:24741_1 pid=24764 prio=129 target_cpu=007
30586<...>-12589 ( 23968) [007] d..2 24572.731868: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_1 next_pid=24764 next_prio=129
30587<...>-24764 ( 24741) [007] .... 24572.731869: binder_transaction_received: transaction=1669343
30588<...>-24764 ( 24741) [007] .... 24572.731960: binder_transaction: transaction=1669344 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x6a
30589<...>-24764 ( 24741) [007] d..4 24572.731962: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
30590<...>-24764 ( 24741) [007] d..5 24572.731966: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
30591<...>-24764 ( 24741) [007] d..2 24572.731970: sched_switch: prev_comm=Binder:24741_1 prev_pid=24764 prev_prio=129 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
30592<...>-12589 ( 23968) [007] .... 24572.731972: binder_transaction_received: transaction=1669344
30593<...>-12589 ( 23968) [007] .... 24572.732020: binder_transaction: transaction=1669345 dest_node=0 dest_proc=24741 dest_thread=24764 reply=1 flags=0x0 code=0x0
30594<...>-12589 ( 23968) [007] d..2 24572.732022: sched_waking: comm=Binder:24741_1 pid=24764 prio=129 target_cpu=007
30595<...>-12589 ( 23968) [007] d..3 24572.732027: sched_wakeup: comm=Binder:24741_1 pid=24764 prio=129 target_cpu=007
30596<...>-12589 ( 23968) [007] d..2 24572.732036: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_1 next_pid=24764 next_prio=129
30597<...>-24764 ( 24741) [007] .... 24572.732038: binder_transaction_received: transaction=1669345
30598<...>-25141 ( 24741) [006] d..1 24572.732155: sched_waking: comm=lowpool[8] pid=27168 prio=130 target_cpu=000
30599<...>-25141 ( 24741) [006] d..2 24572.732171: sched_wakeup: comm=lowpool[8] pid=27168 prio=130 target_cpu=006
30600<...>-24764 ( 24741) [007] d..1 24572.732189: sched_waking: comm=lowpool[3] pid=25296 prio=130 target_cpu=006
30601<...>-25141 ( 24741) [006] d.h3 24572.732196: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
30602<...>-24764 ( 24741) [007] d..2 24572.732202: sched_wakeup: comm=lowpool[3] pid=25296 prio=130 target_cpu=007
30603<...>-25141 ( 24741) [006] d.h4 24572.732208: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
30604<...>-25141 ( 24741) [006] d.h3 24572.732209: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
30605          <idle>-0     (-----) [005] .n.1 24572.732213: cpu_idle: state=4294967295 cpu_id=5
30606          <idle>-0     (-----) [005] d..2 24572.732216: 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
30607          <idle>-0     (-----) [001] dnh2 24572.732222: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
30608         sugov:4-560   (  560) [005] d..2 24572.732223: 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
30609          <idle>-0     (-----) [005] d..1 24572.732225: cpu_idle: state=0 cpu_id=5
30610          <idle>-0     (-----) [001] .n.1 24572.732226: cpu_idle: state=4294967295 cpu_id=1
30611          <idle>-0     (-----) [001] d..2 24572.732232: 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
30612         sugov:0-559   (  559) [001] d..2 24572.732258: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
30613<...>-24764 ( 24741) [007] .... 24572.732270: binder_transaction: transaction=1669346 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x3
30614<...>-24764 ( 24741) [007] d..4 24572.732272: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
30615<...>-24764 ( 24741) [007] d..5 24572.732291: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=006
30616<...>-25141 ( 24741) [006] .... 24572.732295: binder_transaction: transaction=1669347 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x3
30617<...>-24764 ( 24741) [007] d..2 24572.732296: sched_switch: prev_comm=Binder:24741_1 prev_pid=24764 prev_prio=129 prev_state=S ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
30618<...>-25141 ( 24741) [006] d..4 24572.732298: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
30619<...>-25141 ( 24741) [006] d..5 24572.732306: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
30620<...>-25141 ( 24741) [006] d..2 24572.732311: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
30621<...>-12589 ( 23968) [006] .... 24572.732313: binder_transaction_received: transaction=1669346
30622<...>-25296 ( 24741) [007] d..2 24572.732357: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
30623  Binder:23968_1-23981 (23968) [007] .... 24572.732360: binder_transaction_received: transaction=1669347
30624          <idle>-0     (-----) [000] ...1 24572.732364: cpu_idle: state=4294967295 cpu_id=0
30625          <idle>-0     (-----) [000] d..1 24572.732367: cpu_idle: state=0 cpu_id=0
30626<...>-27168 ( 24741) [001] d..2 24572.732378: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
30627          <idle>-0     (-----) [001] d..1 24572.732388: cpu_idle: state=0 cpu_id=1
30628<...>-12589 ( 23968) [006] .... 24572.732457: binder_transaction: transaction=1669348 dest_node=0 dest_proc=24741 dest_thread=24764 reply=1 flags=0x0 code=0x0
30629<...>-12589 ( 23968) [006] d..2 24572.732460: sched_waking: comm=Binder:24741_1 pid=24764 prio=129 target_cpu=007
30630<...>-12589 ( 23968) [006] d..3 24572.732468: sched_wakeup: comm=Binder:24741_1 pid=24764 prio=129 target_cpu=006
30631<...>-12589 ( 23968) [006] d..2 24572.732478: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_1 next_pid=24764 next_prio=129
30632<...>-24764 ( 24741) [006] .... 24572.732480: binder_transaction_received: transaction=1669348
30633          <idle>-0     (-----) [002] ...1 24572.732496: cpu_idle: state=4294967295 cpu_id=2
30634          <idle>-0     (-----) [002] d..1 24572.732499: cpu_idle: state=0 cpu_id=2
30635  Binder:23968_1-23981 (23968) [007] .... 24572.732508: binder_transaction: transaction=1669349 dest_node=0 dest_proc=24741 dest_thread=25141 reply=1 flags=0x0 code=0x0
30636  Binder:23968_1-23981 (23968) [007] d..2 24572.732511: sched_waking: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=006
30637  Binder:23968_1-23981 (23968) [007] d..3 24572.732519: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=007
30638  Binder:23968_1-23981 (23968) [007] d..2 24572.732530: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=120
30639<...>-25141 ( 24741) [007] .... 24572.732532: binder_transaction_received: transaction=1669349
30640<...>-25141 ( 24741) [007] d..2 24572.732628: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
30641          <idle>-0     (-----) [007] d..1 24572.732636: cpu_idle: state=0 cpu_id=7
30642<...>-24764 ( 24741) [006] d..1 24572.732682: sched_waking: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=007
30643<...>-24764 ( 24741) [006] d..2 24572.732691: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=007
30644          <idle>-0     (-----) [007] .n.1 24572.732696: cpu_idle: state=4294967295 cpu_id=7
30645          <idle>-0     (-----) [007] d..2 24572.732700: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=120
30646<...>-25141 ( 24741) [007] d..2 24572.732759: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
30647          <idle>-0     (-----) [007] d..1 24572.732763: cpu_idle: state=0 cpu_id=7
30648<...>-24764 ( 24741) [006] d..1 24572.732774: sched_waking: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=007
30649<...>-24764 ( 24741) [006] d..2 24572.732781: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=007
30650          <idle>-0     (-----) [007] .n.1 24572.732787: cpu_idle: state=4294967295 cpu_id=7
30651          <idle>-0     (-----) [007] d..2 24572.732790: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=120
30652<...>-25141 ( 24741) [007] d..1 24572.732908: sched_waking: comm=Jit thread pool pid=24750 prio=129 target_cpu=007
30653<...>-24764 ( 24741) [006] d..2 24572.732914: sched_switch: prev_comm=Binder:24741_1 prev_pid=24764 prev_prio=129 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30654<...>-25141 ( 24741) [007] d..2 24572.732923: sched_wakeup: comm=Jit thread pool pid=24750 prio=129 target_cpu=006
30655          <idle>-0     (-----) [006] d..2 24572.732926: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=24750 next_prio=129
30656<...>-25141 ( 24741) [007] d..1 24572.732928: sched_waking: comm=Binder:24741_1 pid=24764 prio=129 target_cpu=006
30657<...>-25141 ( 24741) [007] d..2 24572.732934: sched_wakeup: comm=Binder:24741_1 pid=24764 prio=129 target_cpu=007
30658<...>-24750 ( 24741) [006] d..2 24572.732944: sched_switch: prev_comm=Jit thread pool prev_pid=24750 prev_prio=129 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30659          <idle>-0     (-----) [006] d..1 24572.732945: cpu_idle: state=0 cpu_id=6
30660<...>-25141 ( 24741) [007] d..1 24572.733055: sched_waking: comm=lowpool[8] pid=27168 prio=130 target_cpu=001
30661          <idle>-0     (-----) [001] dnh2 24572.733071: sched_wakeup: comm=lowpool[8] pid=27168 prio=130 target_cpu=001
30662          <idle>-0     (-----) [001] .n.1 24572.733075: cpu_idle: state=4294967295 cpu_id=1
30663          <idle>-0     (-----) [001] d..2 24572.733081: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
30664          <idle>-0     (-----) [003] ...1 24572.733081: cpu_idle: state=4294967295 cpu_id=3
30665          <idle>-0     (-----) [003] d..1 24572.733084: cpu_idle: state=0 cpu_id=3
30666          <idle>-0     (-----) [006] ...1 24572.733113: cpu_idle: state=4294967295 cpu_id=6
30667          <idle>-0     (-----) [006] d..1 24572.733115: cpu_idle: state=0 cpu_id=6
30668<...>-25141 ( 24741) [007] .... 24572.733147: binder_transaction: transaction=1669350 dest_node=1669325 dest_proc=24133 dest_thread=25129 reply=0 flags=0x10 code=0x1
30669<...>-25141 ( 24741) [007] d..4 24572.733180: sched_waking: comm=GAC_Executor[1] pid=25129 prio=120 target_cpu=000
30670<...>-25141 ( 24741) [007] d..2 24572.733192: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_1 next_pid=24764 next_prio=129
30671          <idle>-0     (-----) [000] dnh2 24572.733196: sched_wakeup: comm=GAC_Executor[1] pid=25129 prio=120 target_cpu=000
30672<...>-24764 ( 24741) [007] d..1 24572.733196: sched_waking: comm=Jit thread pool pid=24750 prio=129 target_cpu=006
30673          <idle>-0     (-----) [000] .n.1 24572.733199: cpu_idle: state=4294967295 cpu_id=0
30674<...>-24764 ( 24741) [007] d..2 24572.733202: sched_wakeup: comm=Jit thread pool pid=24750 prio=129 target_cpu=006
30675          <idle>-0     (-----) [000] d..2 24572.733205: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=GAC_Executor[1] next_pid=25129 next_prio=120
30676          <idle>-0     (-----) [006] .n.1 24572.733206: cpu_idle: state=4294967295 cpu_id=6
30677          <idle>-0     (-----) [006] d..2 24572.733208: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=24750 next_prio=129
30678<...>-25129 ( 24133) [000] .... 24572.733213: binder_transaction_received: transaction=1669350
30679<...>-24750 ( 24741) [006] d..2 24572.733215: sched_switch: prev_comm=Jit thread pool prev_pid=24750 prev_prio=129 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30680          <idle>-0     (-----) [006] d..1 24572.733216: cpu_idle: state=0 cpu_id=6
30681<...>-27168 ( 24741) [001] d..2 24572.733238: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
30682          <idle>-0     (-----) [001] d..1 24572.733245: cpu_idle: state=0 cpu_id=1
30683<...>-24764 ( 24741) [007] d..1 24572.733262: sched_waking: comm=lowpool[3] pid=25296 prio=130 target_cpu=007
30684<...>-24764 ( 24741) [007] d..2 24572.733273: sched_wakeup: comm=lowpool[3] pid=25296 prio=130 target_cpu=006
30685          <idle>-0     (-----) [006] .n.1 24572.733277: cpu_idle: state=4294967295 cpu_id=6
30686          <idle>-0     (-----) [006] d..2 24572.733279: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
30687<...>-24764 ( 24741) [007] .... 24572.733320: binder_transaction: transaction=1669353 dest_node=1669331 dest_proc=24133 dest_thread=24732 reply=0 flags=0x10 code=0x1
30688<...>-24764 ( 24741) [007] d..4 24572.733328: sched_waking: comm=GoogleApiHandle pid=24732 prio=129 target_cpu=000
30689<...>-25296 ( 24741) [006] d..2 24572.733337: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30690          <idle>-0     (-----) [006] d..1 24572.733339: cpu_idle: state=0 cpu_id=6
30691<...>-24764 ( 24741) [007] d..2 24572.733346: sched_switch: prev_comm=Binder:24741_1 prev_pid=24764 prev_prio=129 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
30692          <idle>-0     (-----) [001] dnh2 24572.733347: sched_wakeup: comm=GoogleApiHandle pid=24732 prio=129 target_cpu=001
30693          <idle>-0     (-----) [007] d..1 24572.733351: cpu_idle: state=0 cpu_id=7
30694          <idle>-0     (-----) [001] .n.1 24572.733351: cpu_idle: state=4294967295 cpu_id=1
30695          <idle>-0     (-----) [001] d..2 24572.733357: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=GoogleApiHandle next_pid=24732 next_prio=129
30696<...>-24732 ( 24133) [001] .... 24572.733364: binder_transaction_received: transaction=1669353
30697<...>-25129 ( 24133) [000] d..3 24572.733462: sched_waking: comm=putmethod.latin pid=24133 prio=120 target_cpu=000
30698<...>-25129 ( 24133) [000] d..4 24572.733476: sched_wakeup: comm=putmethod.latin pid=24133 prio=120 target_cpu=000
30699          <idle>-0     (-----) [007] ...1 24572.733542: cpu_idle: state=4294967295 cpu_id=7
30700<...>-25129 ( 24133) [000] .... 24572.733543: binder_transaction: transaction=1669356 dest_node=0 dest_proc=24741 dest_thread=25141 reply=1 flags=0x0 code=0x0
30701          <idle>-0     (-----) [007] d..1 24572.733544: cpu_idle: state=0 cpu_id=7
30702<...>-24732 ( 24133) [001] .... 24572.733547: binder_transaction: transaction=1669357 dest_node=0 dest_proc=24741 dest_thread=24764 reply=1 flags=0x0 code=0x0
30703<...>-25129 ( 24133) [000] d..2 24572.733548: sched_waking: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=007
30704<...>-24732 ( 24133) [001] d..2 24572.733551: sched_waking: comm=Binder:24741_1 pid=24764 prio=129 target_cpu=007
30705          <idle>-0     (-----) [007] dnh2 24572.733567: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=007
30706<...>-24732 ( 24133) [001] d..3 24572.733569: sched_wakeup: comm=Binder:24741_1 pid=24764 prio=129 target_cpu=001
30707          <idle>-0     (-----) [007] .n.1 24572.733569: cpu_idle: state=4294967295 cpu_id=7
30708          <idle>-0     (-----) [007] d..2 24572.733573: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=120
30709<...>-25141 ( 24741) [007] .... 24572.733575: binder_transaction_received: transaction=1669356
30710<...>-25129 ( 24133) [000] d..2 24572.733577: sched_switch: prev_comm=GAC_Executor[1] prev_pid=25129 prev_prio=120 prev_state=S ==> next_comm=putmethod.latin next_pid=24133 next_prio=120
30711<...>-24732 ( 24133) [001] d.h3 24572.733609: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
30712<...>-24732 ( 24133) [001] d.h3 24572.733619: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
30713          <idle>-0     (-----) [005] dnh2 24572.733623: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
30714<...>-25141 ( 24741) [007] .... 24572.733623: binder_transaction: transaction=1669358 dest_node=0 dest_proc=24133 dest_thread=25129 reply=1 flags=0x0 code=0x0
30715<...>-25141 ( 24741) [007] d..2 24572.733625: sched_waking: comm=GAC_Executor[1] pid=25129 prio=120 target_cpu=000
30716          <idle>-0     (-----) [005] .n.1 24572.733625: cpu_idle: state=4294967295 cpu_id=5
30717          <idle>-0     (-----) [005] d..2 24572.733628: 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
30718<...>-24732 ( 24133) [001] d.h4 24572.733632: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
30719         sugov:4-560   (  560) [005] d..2 24572.733632: 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
30720          <idle>-0     (-----) [005] d..1 24572.733634: cpu_idle: state=0 cpu_id=5
30721          <idle>-0     (-----) [002] .n.1 24572.733636: cpu_idle: state=4294967295 cpu_id=2
30722 putmethod.latin-24133 (24133) [000] d.h1 24572.733640: sched_wakeup: comm=GAC_Executor[1] pid=25129 prio=120 target_cpu=000
30723          <idle>-0     (-----) [002] d..2 24572.733642: 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
30724<...>-25141 ( 24741) [007] d..2 24572.733644: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
30725          <idle>-0     (-----) [007] d..1 24572.733648: cpu_idle: state=0 cpu_id=7
30726 putmethod.latin-24133 (24133) [000] .... 24572.733654: binder_transaction: transaction=1669359 dest_node=1669351 dest_proc=24741 dest_thread=0 reply=0 flags=0x10 code=0x5f4e5446
30727<...>-24732 ( 24133) [001] d..2 24572.733656: sched_switch: prev_comm=GoogleApiHandle prev_pid=24732 prev_prio=129 prev_state=S ==> next_comm=Binder:24741_1 next_pid=24764 next_prio=129
30728 putmethod.latin-24133 (24133) [000] d..4 24572.733658: sched_waking: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=007
30729         sugov:0-559   (  559) [002] d..2 24572.733659: 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
30730          <idle>-0     (-----) [002] d..1 24572.733665: cpu_idle: state=0 cpu_id=2
30731<...>-24764 ( 24741) [001] .... 24572.733669: binder_transaction_received: transaction=1669357
30732          <idle>-0     (-----) [007] dnh2 24572.733670: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=007
30733          <idle>-0     (-----) [007] .n.1 24572.733673: cpu_idle: state=4294967295 cpu_id=7
30734 putmethod.latin-24133 (24133) [000] d..2 24572.733674: sched_switch: prev_comm=putmethod.latin prev_pid=24133 prev_prio=120 prev_state=S ==> next_comm=GAC_Executor[1] next_pid=25129 next_prio=120
30735          <idle>-0     (-----) [007] d..2 24572.733676: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=120
30736<...>-25129 ( 24133) [000] .... 24572.733677: binder_transaction_received: transaction=1669358
30737<...>-25141 ( 24741) [007] .... 24572.733677: binder_transaction_received: transaction=1669359
30738<...>-25141 ( 24741) [007] .... 24572.733707: binder_transaction: transaction=1669360 dest_node=0 dest_proc=24133 dest_thread=24133 reply=1 flags=0x0 code=0x0
30739<...>-25141 ( 24741) [007] d..2 24572.733709: sched_waking: comm=putmethod.latin pid=24133 prio=120 target_cpu=000
30740<...>-25129 ( 24133) [000] d.h1 24572.733722: sched_wakeup: comm=putmethod.latin pid=24133 prio=120 target_cpu=000
30741<...>-25141 ( 24741) [007] d..2 24572.733727: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
30742          <idle>-0     (-----) [007] d..1 24572.733731: cpu_idle: state=0 cpu_id=7
30743<...>-25129 ( 24133) [000] d..2 24572.733742: sched_switch: prev_comm=GAC_Executor[1] prev_pid=25129 prev_prio=120 prev_state=S ==> next_comm=putmethod.latin next_pid=24133 next_prio=120
30744 putmethod.latin-24133 (24133) [000] .... 24572.733746: binder_transaction_received: transaction=1669360
30745<...>-24764 ( 24741) [001] .... 24572.733750: binder_transaction: transaction=1669361 dest_node=0 dest_proc=24133 dest_thread=24732 reply=1 flags=0x0 code=0x0
30746<...>-24764 ( 24741) [001] d..2 24572.733754: sched_waking: comm=GoogleApiHandle pid=24732 prio=129 target_cpu=001
30747<...>-24764 ( 24741) [001] d..3 24572.733762: sched_wakeup: comm=GoogleApiHandle pid=24732 prio=129 target_cpu=001
30748<...>-24764 ( 24741) [001] .... 24572.733765: binder_set_priority: proc=24741 thread=24764 old=129 => new=120 desired=120
30749<...>-24764 ( 24741) [001] d..2 24572.733774: sched_switch: prev_comm=Binder:24741_1 prev_pid=24764 prev_prio=120 prev_state=R+ ==> next_comm=GoogleApiHandle next_pid=24732 next_prio=129
30750<...>-24732 ( 24133) [001] .... 24572.733778: binder_transaction_received: transaction=1669361
30751<...>-24732 ( 24133) [001] .... 24572.733845: binder_transaction: transaction=1669362 dest_node=1669354 dest_proc=24741 dest_thread=0 reply=0 flags=0x10 code=0x5f4e5446
30752<...>-24732 ( 24133) [001] ...2 24572.733848: binder_set_priority: proc=24741 thread=25141 old=120 => new=129 desired=129
30753<...>-24732 ( 24133) [001] d..4 24572.733850: sched_waking: comm=Binder:24741_4 pid=25141 prio=129 target_cpu=007
30754          <idle>-0     (-----) [007] dnh2 24572.733865: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=129 target_cpu=007
30755<...>-24732 ( 24133) [001] d..2 24572.733867: sched_switch: prev_comm=GoogleApiHandle prev_pid=24732 prev_prio=129 prev_state=S ==> next_comm=Binder:24741_1 next_pid=24764 next_prio=120
30756          <idle>-0     (-----) [007] .n.1 24572.733867: cpu_idle: state=4294967295 cpu_id=7
30757          <idle>-0     (-----) [007] d..2 24572.733870: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=129
30758<...>-25141 ( 24741) [007] .... 24572.733872: binder_transaction_received: transaction=1669362
30759<...>-25141 ( 24741) [007] .... 24572.733894: binder_transaction: transaction=1669363 dest_node=0 dest_proc=24133 dest_thread=24732 reply=1 flags=0x0 code=0x0
30760<...>-25141 ( 24741) [007] d..2 24572.733896: sched_waking: comm=GoogleApiHandle pid=24732 prio=129 target_cpu=001
30761<...>-24764 ( 24741) [001] d..2 24572.733898: sched_switch: prev_comm=Binder:24741_1 prev_pid=24764 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
30762<...>-25141 ( 24741) [007] .... 24572.733905: binder_set_priority: proc=24741 thread=25141 old=129 => new=120 desired=120
30763          <idle>-0     (-----) [001] d..1 24572.733907: cpu_idle: state=0 cpu_id=1
30764 putmethod.latin-24133 (24133) [000] d..1 24572.733914: sched_waking: comm=GAC_Executor[0] pid=24832 prio=120 target_cpu=001
30765          <idle>-0     (-----) [001] dnh2 24572.733915: sched_wakeup: comm=GoogleApiHandle pid=24732 prio=129 target_cpu=001
30766<...>-25141 ( 24741) [007] d..2 24572.733920: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
30767          <idle>-0     (-----) [001] .n.1 24572.733922: cpu_idle: state=4294967295 cpu_id=1
30768          <idle>-0     (-----) [007] d..1 24572.733923: cpu_idle: state=0 cpu_id=7
30769          <idle>-0     (-----) [001] d..2 24572.733932: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=GoogleApiHandle next_pid=24732 next_prio=129
30770 putmethod.latin-24133 (24133) [000] d..2 24572.733932: sched_wakeup: comm=GAC_Executor[0] pid=24832 prio=120 target_cpu=000
30771<...>-24732 ( 24133) [001] .... 24572.733936: binder_transaction_received: transaction=1669363
30772 putmethod.latin-24133 (24133) [000] d..2 24572.734077: sched_switch: prev_comm=putmethod.latin prev_pid=24133 prev_prio=120 prev_state=S ==> next_comm=GAC_Executor[0] next_pid=24832 next_prio=120
30773          <idle>-0     (-----) [007] ...1 24572.734114: cpu_idle: state=4294967295 cpu_id=7
30774          <idle>-0     (-----) [007] d..1 24572.734115: cpu_idle: state=0 cpu_id=7
30775<...>-24832 ( 24133) [000] d..2 24572.734131: sched_switch: prev_comm=GAC_Executor[0] prev_pid=24832 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30776          <idle>-0     (-----) [000] d..1 24572.734142: cpu_idle: state=0 cpu_id=0
30777          <idle>-0     (-----) [006] d.s2 24572.734232: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=006
30778          <idle>-0     (-----) [006] dns3 24572.734238: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=006
30779          <idle>-0     (-----) [006] .n.1 24572.734243: cpu_idle: state=4294967295 cpu_id=6
30780          <idle>-0     (-----) [006] d..2 24572.734245: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
30781     rcu_preempt-7     (    7) [006] d..2 24572.734258: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30782          <idle>-0     (-----) [006] d..1 24572.734261: cpu_idle: state=0 cpu_id=6
30783          <idle>-0     (-----) [000] ...1 24572.734261: cpu_idle: state=4294967295 cpu_id=0
30784          <idle>-0     (-----) [000] d..1 24572.734264: cpu_idle: state=0 cpu_id=0
30785          <idle>-0     (-----) [006] ...1 24572.734496: cpu_idle: state=4294967295 cpu_id=6
30786          <idle>-0     (-----) [006] d..1 24572.734497: cpu_idle: state=0 cpu_id=6
30787<...>-24732 ( 24133) [001] .... 24572.734549: binder_transaction: transaction=1669364 dest_node=1669354 dest_proc=24741 dest_thread=0 reply=0 flags=0x11 code=0x1
30788<...>-24732 ( 24133) [001] d..4 24572.734578: sched_waking: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=007
30789          <idle>-0     (-----) [007] dnh2 24572.734592: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=007
30790          <idle>-0     (-----) [007] .n.1 24572.734594: cpu_idle: state=4294967295 cpu_id=7
30791          <idle>-0     (-----) [007] d..2 24572.734597: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=120
30792<...>-25141 ( 24741) [007] .... 24572.734599: binder_transaction_received: transaction=1669364
30793<...>-24732 ( 24133) [001] d..2 24572.734683: sched_switch: prev_comm=GoogleApiHandle prev_pid=24732 prev_prio=129 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
30794          <idle>-0     (-----) [001] d..1 24572.734692: cpu_idle: state=0 cpu_id=1
30795          <idle>-0     (-----) [002] ...1 24572.734921: cpu_idle: state=4294967295 cpu_id=2
30796          <idle>-0     (-----) [002] d..1 24572.734923: cpu_idle: state=0 cpu_id=2
30797<...>-25141 ( 24741) [007] d..1 24572.734941: sched_waking: comm=lowpool[3] pid=25296 prio=130 target_cpu=006
30798<...>-25141 ( 24741) [007] d..2 24572.734949: sched_wakeup: comm=lowpool[3] pid=25296 prio=130 target_cpu=006
30799          <idle>-0     (-----) [006] .n.1 24572.734954: cpu_idle: state=4294967295 cpu_id=6
30800          <idle>-0     (-----) [006] d..2 24572.734957: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
30801<...>-25141 ( 24741) [007] d..2 24572.734989: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
30802          <idle>-0     (-----) [007] d..1 24572.734994: cpu_idle: state=0 cpu_id=7
30803<...>-25296 ( 24741) [006] .... 24572.735147: binder_transaction: transaction=1669367 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x17
30804<...>-25296 ( 24741) [006] d..4 24572.735155: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
30805<...>-25296 ( 24741) [006] dn.5 24572.735163: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
30806<...>-25296 ( 24741) [006] d..2 24572.735166: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=R+ ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
30807  Binder:23968_1-23981 (23968) [006] .... 24572.735169: binder_transaction_received: transaction=1669367
30808          <idle>-0     (-----) [007] ...1 24572.735191: cpu_idle: state=4294967295 cpu_id=7
30809          <idle>-0     (-----) [007] d..1 24572.735193: cpu_idle: state=0 cpu_id=7
30810  Binder:23968_1-23981 (23968) [006] d..3 24572.735453: sched_waking: comm=lmkd pid=808 prio=98 target_cpu=002
30811          <idle>-0     (-----) [002] dnh2 24572.735470: sched_wakeup: comm=lmkd pid=808 prio=98 target_cpu=002
30812          <idle>-0     (-----) [002] .n.1 24572.735473: cpu_idle: state=4294967295 cpu_id=2
30813          <idle>-0     (-----) [002] d..2 24572.735478: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=808 next_prio=98
30814  Binder:23968_1-23981 (23968) [006] .... 24572.735518: binder_transaction: transaction=1669368 dest_node=1302474 dest_proc=24741 dest_thread=0 reply=0 flags=0x11 code=0x7
30815  Binder:23968_1-23981 (23968) [006] d..4 24572.735525: sched_waking: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=007
30816  Binder:23968_1-23981 (23968) [006] d..5 24572.735533: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=007
30817          <idle>-0     (-----) [007] .n.1 24572.735537: cpu_idle: state=4294967295 cpu_id=7
30818          <idle>-0     (-----) [007] d..2 24572.735541: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=120
30819<...>-25141 ( 24741) [007] .... 24572.735542: binder_transaction_received: transaction=1669368
30820  Binder:23968_1-23981 (23968) [006] .... 24572.735589: binder_transaction: transaction=1669369 dest_node=0 dest_proc=24741 dest_thread=25296 reply=1 flags=0x0 code=0x0
30821  Binder:23968_1-23981 (23968) [006] d..2 24572.735603: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
30822<...>-25141 ( 24741) [007] d..3 24572.735603: sched_waking: comm=.gms.persistent pid=24741 prio=120 target_cpu=006
30823<...>-25296 ( 24741) [006] .... 24572.735605: binder_transaction_received: transaction=1669369
30824<...>-25141 ( 24741) [007] d..4 24572.735613: sched_wakeup: comm=.gms.persistent pid=24741 prio=120 target_cpu=007
30825<...>-25141 ( 24741) [007] d..2 24572.735631: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=S ==> next_comm=.gms.persistent next_pid=24741 next_prio=120
30826<...>-24741 ( 24741) [007] .... 24572.735736: binder_transaction: transaction=1669370 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x11 code=0x2f
30827<...>-24741 ( 24741) [007] d..4 24572.735742: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
30828<...>-24741 ( 24741) [007] d..5 24572.735751: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
30829<...>-24741 ( 24741) [007] d..2 24572.735769: sched_switch: prev_comm=.gms.persistent prev_pid=24741 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
30830  Binder:23968_1-23981 (23968) [007] .... 24572.735771: binder_transaction_received: transaction=1669370
30831  Binder:23968_1-23981 (23968) [007] d..2 24572.735913: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
30832          <idle>-0     (-----) [007] d..1 24572.735918: cpu_idle: state=0 cpu_id=7
30833            lmkd-808   (  808) [002] d..2 24572.736142: sched_switch: prev_comm=lmkd prev_pid=808 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30834          <idle>-0     (-----) [000] d.h5 24572.736151: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
30835          <idle>-0     (-----) [002] d..1 24572.736151: cpu_idle: state=0 cpu_id=2
30836          <idle>-0     (-----) [000] d.h5 24572.736171: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
30837          <idle>-0     (-----) [007] dnh2 24572.736177: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
30838          <idle>-0     (-----) [007] dnh2 24572.736183: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
30839          <idle>-0     (-----) [007] .n.1 24572.736185: cpu_idle: state=4294967295 cpu_id=7
30840          <idle>-0     (-----) [007] d..2 24572.736189: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
30841          <idle>-0     (-----) [000] ...1 24572.736190: cpu_idle: state=4294967295 cpu_id=0
30842          <idle>-0     (-----) [000] d..1 24572.736194: cpu_idle: state=0 cpu_id=0
30843          <idle>-0     (-----) [005] .n.1 24572.736206: cpu_idle: state=4294967295 cpu_id=5
30844          <idle>-0     (-----) [005] d..2 24572.736209: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
30845  crtc_event:111-254   (  254) [007] d..2 24572.736215: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
30846          <idle>-0     (-----) [007] d..1 24572.736217: cpu_idle: state=0 cpu_id=7
30847          <idle>-0     (-----) [001] ...1 24572.736220: cpu_idle: state=4294967295 cpu_id=1
30848          <idle>-0     (-----) [001] d..1 24572.736223: cpu_idle: state=0 cpu_id=1
30849<...>-25296 ( 24741) [006] d..2 24572.736305: sched_waking: comm=rcuos/6 pid=62 prio=120 target_cpu=003
30850 crtc_commit:111-253   (  253) [005] d..2 24572.736314: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
30851          <idle>-0     (-----) [005] d..1 24572.736316: cpu_idle: state=0 cpu_id=5
30852<...>-25296 ( 24741) [006] d..3 24572.736324: sched_wakeup: comm=rcuos/6 pid=62 prio=120 target_cpu=007
30853          <idle>-0     (-----) [007] .n.1 24572.736329: cpu_idle: state=4294967295 cpu_id=7
30854<...>-25296 ( 24741) [006] d.h2 24572.736350: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
30855          <idle>-0     (-----) [007] d..2 24572.736350: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuos/6 next_pid=62 next_prio=120
30856<...>-62 ( 62) [007] d..2 24572.736353: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
30857<...>-25296 ( 24741) [006] d.h3 24572.736356: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
30858<...>-25296 ( 24741) [006] d.h2 24572.736356: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
30859          <idle>-0     (-----) [005] .n.1 24572.736359: cpu_idle: state=4294967295 cpu_id=5
30860          <idle>-0     (-----) [005] d..2 24572.736361: 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
30861<...>-62 ( 62) [007] d..3 24572.736367: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=007
30862         sugov:4-560   (  560) [005] d..2 24572.736367: 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
30863          <idle>-0     (-----) [005] d..1 24572.736369: cpu_idle: state=0 cpu_id=5
30864          <idle>-0     (-----) [002] dnh2 24572.736370: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
30865          <idle>-0     (-----) [002] .n.1 24572.736387: cpu_idle: state=4294967295 cpu_id=2
30866<...>-62 ( 62) [007] d..2 24572.736387: 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
30867          <idle>-0     (-----) [002] d..2 24572.736392: 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
30868       rcu_sched-8     (    8) [007] d..2 24572.736396: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
30869          <idle>-0     (-----) [007] d..1 24572.736398: cpu_idle: state=0 cpu_id=7
30870         sugov:0-559   (  559) [002] d..2 24572.736405: 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
30871          <idle>-0     (-----) [002] d..1 24572.736410: cpu_idle: state=0 cpu_id=2
30872<...>-25296 ( 24741) [006] .... 24572.736986: binder_transaction: transaction=1669371 dest_node=3 dest_proc=587 dest_thread=0 reply=0 flags=0x10 code=0x1
30873<...>-25296 ( 24741) [006] d..4 24572.736992: sched_waking: comm=servicemanager pid=587 prio=120 target_cpu=000
30874          <idle>-0     (-----) [000] dnh2 24572.737009: sched_wakeup: comm=servicemanager pid=587 prio=120 target_cpu=000
30875          <idle>-0     (-----) [000] .n.1 24572.737013: cpu_idle: state=4294967295 cpu_id=0
30876<...>-25296 ( 24741) [006] d..2 24572.737013: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30877          <idle>-0     (-----) [000] d..2 24572.737021: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=servicemanager next_pid=587 next_prio=120
30878          <idle>-0     (-----) [006] d..1 24572.737022: cpu_idle: state=0 cpu_id=6
30879<...>-587 ( 587) [000] .... 24572.737030: binder_transaction_received: transaction=1669371
30880<...>-587 ( 587) [000] .... 24572.737241: binder_transaction: transaction=1669372 dest_node=0 dest_proc=24741 dest_thread=25296 reply=1 flags=0x0 code=0x0
30881<...>-587 ( 587) [000] d..2 24572.737277: sched_waking: comm=lowpool[3] pid=25296 prio=130 target_cpu=006
30882<...>-587 ( 587) [000] d..3 24572.737295: sched_wakeup: comm=lowpool[3] pid=25296 prio=130 target_cpu=000
30883<...>-587 ( 587) [000] d.h3 24572.737326: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
30884<...>-587 ( 587) [000] d.h3 24572.737334: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
30885          <idle>-0     (-----) [005] dnh2 24572.737339: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
30886          <idle>-0     (-----) [005] .n.1 24572.737341: cpu_idle: state=4294967295 cpu_id=5
30887<...>-587 ( 587) [000] d.h4 24572.737343: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
30888          <idle>-0     (-----) [005] d..2 24572.737343: 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
30889         sugov:4-560   (  560) [005] d..2 24572.737347: 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
30890          <idle>-0     (-----) [002] .n.1 24572.737347: cpu_idle: state=4294967295 cpu_id=2
30891          <idle>-0     (-----) [005] d..1 24572.737348: cpu_idle: state=0 cpu_id=5
30892          <idle>-0     (-----) [002] d..2 24572.737352: 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
30893<...>-587 ( 587) [000] d..2 24572.737359: sched_switch: prev_comm=servicemanager prev_pid=587 prev_prio=120 prev_state=S ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
30894         sugov:0-559   (  559) [002] d..2 24572.737363: 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
30895<...>-25296 ( 24741) [000] .... 24572.737364: binder_transaction_received: transaction=1669372
30896          <idle>-0     (-----) [002] d..1 24572.737368: cpu_idle: state=0 cpu_id=2
30897<...>-25296 ( 24741) [000] .... 24572.737492: binder_transaction: transaction=1669373 dest_node=1278627 dest_proc=24290 dest_thread=0 reply=0 flags=0x10 code=0x17
30898<...>-25296 ( 24741) [000] ...2 24572.737500: binder_set_priority: proc=24290 thread=24501 old=120 => new=130 desired=130
30899<...>-25296 ( 24741) [000] d..4 24572.737503: sched_waking: comm=Binder:24290_7 pid=24501 prio=130 target_cpu=003
30900<...>-25296 ( 24741) [000] d..5 24572.737517: sched_wakeup: comm=Binder:24290_7 pid=24501 prio=130 target_cpu=000
30901<...>-25296 ( 24741) [000] d..2 24572.737526: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=S ==> next_comm=Binder:24290_7 next_pid=24501 next_prio=130
30902<...>-24501 ( 24290) [000] .... 24572.737533: binder_transaction_received: transaction=1669373
30903<...>-24501 ( 24290) [000] d.h2 24572.737583: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
30904<...>-24501 ( 24290) [000] dnh3 24572.737590: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
30905          <idle>-0     (-----) [005] d.s3 24572.737591: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
30906<...>-24501 ( 24290) [000] dns2 24572.737597: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=006
30907          <idle>-0     (-----) [005] d.s4 24572.737597: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
30908          <idle>-0     (-----) [007] .n.1 24572.737601: cpu_idle: state=4294967295 cpu_id=7
30909          <idle>-0     (-----) [005] ...1 24572.737602: cpu_idle: state=4294967295 cpu_id=5
30910          <idle>-0     (-----) [005] d..1 24572.737604: cpu_idle: state=0 cpu_id=5
30911          <idle>-0     (-----) [001] ...1 24572.737604: cpu_idle: state=4294967295 cpu_id=1
30912          <idle>-0     (-----) [007] d..2 24572.737605: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
30913          <idle>-0     (-----) [001] d..1 24572.737607: cpu_idle: state=0 cpu_id=1
30914  crtc_event:111-254   (  254) [007] d..2 24572.737616: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
30915          <idle>-0     (-----) [005] dnh2 24572.737616: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
30916<...>-24501 ( 24290) [000] d..2 24572.737618: sched_switch: prev_comm=Binder:24290_7 prev_pid=24501 prev_prio=130 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
30917          <idle>-0     (-----) [007] d..1 24572.737618: cpu_idle: state=0 cpu_id=7
30918          <idle>-0     (-----) [005] .n.1 24572.737618: cpu_idle: state=4294967295 cpu_id=5
30919          <idle>-0     (-----) [005] d..2 24572.737621: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
30920     rcu_preempt-7     (    7) [005] d..2 24572.737625: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=004
30921     rcu_preempt-7     (    7) [005] d..3 24572.737636: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=007
30922     rcu_preempt-7     (    7) [005] d..2 24572.737637: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
30923          <idle>-0     (-----) [007] .n.1 24572.737640: cpu_idle: state=4294967295 cpu_id=7
30924          <idle>-0     (-----) [007] d..2 24572.737643: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
30925          <idle>-0     (-----) [006] .n.1 24572.737643: cpu_idle: state=4294967295 cpu_id=6
30926          <idle>-0     (-----) [006] d..2 24572.737666: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24290_7 next_pid=24501 next_prio=130
30927     rcu_preempt-7     (    7) [005] d..3 24572.737669: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=007
30928     rcu_preempt-7     (    7) [005] d..2 24572.737670: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=006
30929     rcu_preempt-7     (    7) [005] d..3 24572.737677: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=007
30930     migration/0-13    (   13) [000] d..2 24572.737678: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30931          <idle>-0     (-----) [000] d..1 24572.737687: cpu_idle: state=0 cpu_id=0
30932         rcuop/2-29    (   29) [007] d..2 24572.737694: 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
30933         rcuop/0-10    (   10) [007] d..2 24572.737696: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=007
30934     rcu_preempt-7     (    7) [005] d..2 24572.737697: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
30935          <idle>-0     (-----) [005] d..1 24572.737699: cpu_idle: state=0 cpu_id=5
30936         rcuop/0-10    (   10) [007] d..3 24572.737707: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=005
30937          <idle>-0     (-----) [005] .n.1 24572.737711: cpu_idle: state=4294967295 cpu_id=5
30938         rcuop/0-10    (   10) [007] d..2 24572.737712: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
30939          <idle>-0     (-----) [005] d..2 24572.737714: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
30940         rcuop/4-45    (   45) [007] d..2 24572.737714: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
30941         rcuop/4-45    (   45) [007] d..3 24572.737724: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=007
30942         rcuop/1-21    (   21) [005] d..2 24572.737725: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
30943          <idle>-0     (-----) [005] d..1 24572.737727: cpu_idle: state=0 cpu_id=5
30944         rcuop/4-45    (   45) [007] d..2 24572.737769: 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
30945         rcuop/5-53    (   53) [007] d..2 24572.737777: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
30946          <idle>-0     (-----) [007] d..1 24572.737779: cpu_idle: state=0 cpu_id=7
30947<...>-24501 ( 24290) [006] .... 24572.737825: binder_transaction: transaction=1669374 dest_node=0 dest_proc=24741 dest_thread=25296 reply=1 flags=0x0 code=0x0
30948<...>-24501 ( 24290) [006] d..2 24572.737828: sched_waking: comm=lowpool[3] pid=25296 prio=130 target_cpu=000
30949<...>-24501 ( 24290) [006] d..3 24572.737840: sched_wakeup: comm=lowpool[3] pid=25296 prio=130 target_cpu=006
30950<...>-24501 ( 24290) [006] d.h3 24572.737861: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
30951<...>-24501 ( 24290) [006] d.h4 24572.737867: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
30952<...>-24501 ( 24290) [006] d.h3 24572.737868: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
30953          <idle>-0     (-----) [005] .n.1 24572.737872: cpu_idle: state=4294967295 cpu_id=5
30954<...>-24501 ( 24290) [006] .... 24572.737874: binder_set_priority: proc=24290 thread=24501 old=130 => new=120 desired=120
30955          <idle>-0     (-----) [005] d..2 24572.737874: 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
30956         sugov:4-560   (  560) [005] d..2 24572.737879: 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
30957          <idle>-0     (-----) [002] dnh2 24572.737881: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
30958          <idle>-0     (-----) [005] d..1 24572.737882: cpu_idle: state=0 cpu_id=5
30959          <idle>-0     (-----) [002] .n.1 24572.737884: cpu_idle: state=4294967295 cpu_id=2
30960<...>-24501 ( 24290) [006] d..2 24572.737889: sched_switch: prev_comm=Binder:24290_7 prev_pid=24501 prev_prio=120 prev_state=S ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
30961          <idle>-0     (-----) [002] d..2 24572.737890: 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
30962<...>-25296 ( 24741) [006] .... 24572.737890: binder_transaction_received: transaction=1669374
30963         sugov:0-559   (  559) [002] d..2 24572.737901: 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
30964          <idle>-0     (-----) [002] d..1 24572.737906: cpu_idle: state=0 cpu_id=2
30965<...>-25296 ( 24741) [006] .... 24572.737918: binder_transaction: transaction=1669375 dest_node=3 dest_proc=587 dest_thread=0 reply=0 flags=0x10 code=0x1
30966<...>-25296 ( 24741) [006] d..4 24572.737920: sched_waking: comm=servicemanager pid=587 prio=120 target_cpu=000
30967<...>-25296 ( 24741) [006] d..2 24572.737932: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30968          <idle>-0     (-----) [000] dnh2 24572.737934: sched_wakeup: comm=servicemanager pid=587 prio=120 target_cpu=000
30969          <idle>-0     (-----) [006] d..1 24572.737937: cpu_idle: state=0 cpu_id=6
30970          <idle>-0     (-----) [000] .n.1 24572.737938: cpu_idle: state=4294967295 cpu_id=0
30971          <idle>-0     (-----) [000] d..2 24572.737943: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=servicemanager next_pid=587 next_prio=120
30972<...>-587 ( 587) [000] .... 24572.737948: binder_transaction_received: transaction=1669375
30973           <...>-13151 (-----) [004] d..2 24572.737976: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
30974          <idle>-0     (-----) [004] d..1 24572.737987: cpu_idle: state=0 cpu_id=4
30975<...>-587 ( 587) [000] d.h2 24572.737993: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=004
30976          <idle>-0     (-----) [004] dnh2 24572.738011: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=004
30977          <idle>-0     (-----) [004] .n.1 24572.738014: cpu_idle: state=4294967295 cpu_id=4
30978          <idle>-0     (-----) [004] d..2 24572.738017: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
30979 kgsl_worker_thr-246   (  246) [004] d..2 24572.738026: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
30980          <idle>-0     (-----) [004] d..1 24572.738027: cpu_idle: state=0 cpu_id=4
30981<...>-587 ( 587) [000] .... 24572.738064: binder_transaction: transaction=1669376 dest_node=0 dest_proc=24741 dest_thread=25296 reply=1 flags=0x0 code=0x0
30982          <idle>-0     (-----) [004] d.h2 24572.738070: sched_waking: comm=RenderThread pid=13151 prio=110 target_cpu=004
30983<...>-587 ( 587) [000] d..2 24572.738072: sched_waking: comm=lowpool[3] pid=25296 prio=130 target_cpu=006
30984          <idle>-0     (-----) [004] d.h3 24572.738074: sched_blocked_reason: pid=13151 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
30985          <idle>-0     (-----) [004] dnh3 24572.738076: sched_wakeup: comm=RenderThread pid=13151 prio=110 target_cpu=004
30986          <idle>-0     (-----) [005] ...1 24572.738077: cpu_idle: state=4294967295 cpu_id=5
30987          <idle>-0     (-----) [005] d..1 24572.738077: cpu_idle: state=0 cpu_id=5
30988          <idle>-0     (-----) [004] .n.1 24572.738079: cpu_idle: state=4294967295 cpu_id=4
30989          <idle>-0     (-----) [004] d..2 24572.738082: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=110
30990<...>-587 ( 587) [000] d..3 24572.738087: sched_wakeup: comm=lowpool[3] pid=25296 prio=130 target_cpu=000
30991           <...>-13151 (-----) [004] d..1 24572.738093: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=004
30992           <...>-13151 (-----) [004] d..2 24572.738118: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=006
30993<...>-587 ( 587) [000] d..2 24572.738122: sched_switch: prev_comm=servicemanager prev_pid=587 prev_prio=120 prev_state=S ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
30994          <idle>-0     (-----) [006] .n.1 24572.738123: cpu_idle: state=4294967295 cpu_id=6
30995          <idle>-0     (-----) [006] d..2 24572.738126: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
30996<...>-25296 ( 24741) [000] .... 24572.738126: binder_transaction_received: transaction=1669376
30997 kgsl_worker_thr-246   (  246) [006] d..2 24572.738147: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
30998          <idle>-0     (-----) [006] d..1 24572.738149: cpu_idle: state=0 cpu_id=6
30999<...>-25296 ( 24741) [000] .... 24572.738202: binder_transaction: transaction=1669377 dest_node=1278627 dest_proc=24290 dest_thread=0 reply=0 flags=0x10 code=0x1b
31000<...>-25296 ( 24741) [000] ...2 24572.738207: binder_set_priority: proc=24290 thread=24501 old=120 => new=130 desired=130
31001<...>-25296 ( 24741) [000] d..4 24572.738209: sched_waking: comm=Binder:24290_7 pid=24501 prio=130 target_cpu=006
31002<...>-25296 ( 24741) [000] d..5 24572.738224: sched_wakeup: comm=Binder:24290_7 pid=24501 prio=130 target_cpu=000
31003          <idle>-0     (-----) [006] d.h2 24572.738247: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=006
31004          <idle>-0     (-----) [006] dnh3 24572.738251: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=006
31005<...>-25296 ( 24741) [000] d..2 24572.738253: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=S ==> next_comm=Binder:24290_7 next_pid=24501 next_prio=130
31006          <idle>-0     (-----) [006] .n.1 24572.738253: cpu_idle: state=4294967295 cpu_id=6
31007          <idle>-0     (-----) [006] d..2 24572.738255: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
31008<...>-24501 ( 24290) [000] .... 24572.738256: binder_transaction_received: transaction=1669377
31009 kgsl_worker_thr-246   (  246) [006] d..2 24572.738267: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=005
31010 kgsl_worker_thr-246   (  246) [006] d..3 24572.738274: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=005
31011          <idle>-0     (-----) [005] .n.1 24572.738278: cpu_idle: state=4294967295 cpu_id=5
31012 kgsl_worker_thr-246   (  246) [006] d..2 24572.738281: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
31013          <idle>-0     (-----) [005] d..2 24572.738282: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
31014          <idle>-0     (-----) [006] d..1 24572.738283: cpu_idle: state=0 cpu_id=6
31015<...>-24501 ( 24290) [000] .... 24572.738353: binder_transaction: transaction=1669378 dest_node=0 dest_proc=24741 dest_thread=25296 reply=1 flags=0x0 code=0x0
31016<...>-24501 ( 24290) [000] d..2 24572.738357: sched_waking: comm=lowpool[3] pid=25296 prio=130 target_cpu=000
31017<...>-24501 ( 24290) [000] d..3 24572.738364: sched_wakeup: comm=lowpool[3] pid=25296 prio=130 target_cpu=000
31018<...>-24501 ( 24290) [000] .... 24572.738366: binder_set_priority: proc=24290 thread=24501 old=130 => new=120 desired=120
31019           <...>-13151 (-----) [004] .... 24572.738367: binder_transaction: transaction=1669379 dest_node=1669126 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
31020<...>-24501 ( 24290) [000] d..2 24572.738390: sched_switch: prev_comm=Binder:24290_7 prev_pid=24501 prev_prio=120 prev_state=S ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
31021<...>-25296 ( 24741) [000] .... 24572.738394: binder_transaction_received: transaction=1669378
31022           <...>-13151 (-----) [004] ...2 24572.738400: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
31023           <...>-13151 (-----) [004] d..4 24572.738401: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
31024           <...>-13151 (-----) [004] dn.5 24572.738411: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=004
31025  kworker/u16:10-23868 (23868) [005] d..2 24572.738413: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31026           <...>-13151 (-----) [004] d..2 24572.738436: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
31027          <idle>-0     (-----) [005] d..1 24572.738441: cpu_idle: state=0 cpu_id=5
31028<...>-23903 ( 23896) [004] .... 24572.738444: binder_transaction_received: transaction=1669379
31029<...>-25296 ( 24741) [000] d.h4 24572.738499: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
31030          <idle>-0     (-----) [005] dnh2 24572.738516: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
31031          <idle>-0     (-----) [005] .n.1 24572.738518: cpu_idle: state=4294967295 cpu_id=5
31032          <idle>-0     (-----) [005] d..2 24572.738521: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
31033<...>-25296 ( 24741) [000] .... 24572.738549: binder_transaction: transaction=1669380 dest_node=3 dest_proc=587 dest_thread=0 reply=0 flags=0x10 code=0x1
31034<...>-23903 ( 23896) [004] .... 24572.738552: binder_transaction: transaction=1669381 dest_node=0 dest_proc=13131 dest_thread=13151 reply=1 flags=0x0 code=0x0
31035<...>-25296 ( 24741) [000] d..4 24572.738553: sched_waking: comm=servicemanager pid=587 prio=120 target_cpu=000
31036<...>-23903 ( 23896) [004] .... 24572.738554: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
31037<...>-25296 ( 24741) [000] dn.5 24572.738560: sched_wakeup: comm=servicemanager pid=587 prio=120 target_cpu=000
31038 crtc_commit:111-253   (  253) [005] d..2 24572.738564: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31039<...>-25296 ( 24741) [000] d..2 24572.738565: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=R+ ==> next_comm=servicemanager next_pid=587 next_prio=120
31040          <idle>-0     (-----) [005] d..1 24572.738567: cpu_idle: state=0 cpu_id=5
31041<...>-23903 ( 23896) [004] d..2 24572.738567: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
31042<...>-587 ( 587) [000] .... 24572.738569: binder_transaction_received: transaction=1669380
31043           <...>-13151 (-----) [004] .... 24572.738570: binder_transaction_received: transaction=1669381
31044           <...>-13151 (-----) [004] d..1 24572.738620: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
31045<...>-587 ( 587) [000] .... 24572.738632: binder_transaction: transaction=1669382 dest_node=0 dest_proc=24741 dest_thread=25296 reply=1 flags=0x0 code=0x0
31046           <...>-13151 (-----) [004] d..2 24572.738634: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
31047          <idle>-0     (-----) [005] .n.1 24572.738639: cpu_idle: state=4294967295 cpu_id=5
31048           <...>-13151 (-----) [004] d..2 24572.738642: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
31049          <idle>-0     (-----) [005] d..2 24572.738643: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
31050          <idle>-0     (-----) [004] d..1 24572.738649: cpu_idle: state=0 cpu_id=4
31051<...>-587 ( 587) [000] d..2 24572.738650: sched_switch: prev_comm=servicemanager prev_pid=587 prev_prio=120 prev_state=S ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
31052<...>-25296 ( 24741) [000] .... 24572.738654: binder_transaction_received: transaction=1669382
31053<...>-25296 ( 24741) [000] .... 24572.738715: binder_transaction: transaction=1669383 dest_node=1278627 dest_proc=24290 dest_thread=0 reply=0 flags=0x10 code=0x19
31054<...>-25296 ( 24741) [000] ...2 24572.738718: binder_set_priority: proc=24290 thread=24501 old=120 => new=130 desired=130
31055<...>-25296 ( 24741) [000] d..4 24572.738720: sched_waking: comm=Binder:24290_7 pid=24501 prio=130 target_cpu=000
31056<...>-25296 ( 24741) [000] d..5 24572.738727: sched_wakeup: comm=Binder:24290_7 pid=24501 prio=130 target_cpu=000
31057           <...>-13131 (-----) [005] .... 24572.738781: binder_transaction: transaction=1669384 dest_node=1669030 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xc
31058<...>-25296 ( 24741) [000] d.h7 24572.738786: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
31059           <...>-13131 (-----) [005] ...2 24572.738789: binder_set_priority: proc=23968 thread=23981 old=120 => new=110 desired=110
31060           <...>-13131 (-----) [005] d..4 24572.738790: sched_waking: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=007
31061          <idle>-0     (-----) [007] dnh2 24572.738801: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
31062           <...>-13131 (-----) [005] d..5 24572.738802: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=006
31063          <idle>-0     (-----) [007] .n.1 24572.738803: cpu_idle: state=4294967295 cpu_id=7
31064<...>-25296 ( 24741) [000] d.h9 24572.738804: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
31065          <idle>-0     (-----) [007] d..2 24572.738805: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
31066          <idle>-0     (-----) [006] .n.1 24572.738806: cpu_idle: state=4294967295 cpu_id=6
31067           <...>-13131 (-----) [005] d..2 24572.738809: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31068          <idle>-0     (-----) [006] d..2 24572.738810: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=110
31069  crtc_event:111-254   (  254) [007] d..2 24572.738812: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
31070<...>-25296 ( 24741) [000] dnha 24572.738813: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
31071  Binder:23968_1-23981 (23968) [006] .... 24572.738813: binder_transaction_received: transaction=1669384
31072          <idle>-0     (-----) [005] d..1 24572.738814: cpu_idle: state=0 cpu_id=5
31073          <idle>-0     (-----) [007] d..1 24572.738814: cpu_idle: state=0 cpu_id=7
31074<...>-25296 ( 24741) [000] dnhb 24572.738823: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
31075<...>-25296 ( 24741) [000] dnh9 24572.738834: sched_waking: comm=SDM_EventThread pid=624 prio=111 target_cpu=004
31076          <idle>-0     (-----) [005] dnh2 24572.738836: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
31077          <idle>-0     (-----) [005] .n.1 24572.738838: cpu_idle: state=4294967295 cpu_id=5
31078          <idle>-0     (-----) [005] d..2 24572.738841: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
31079          <idle>-0     (-----) [004] ...1 24572.738843: cpu_idle: state=4294967295 cpu_id=4
31080          <idle>-0     (-----) [004] d..1 24572.738844: cpu_idle: state=0 cpu_id=4
31081          <idle>-0     (-----) [004] dnh2 24572.738849: sched_wakeup: comm=SDM_EventThread pid=624 prio=111 target_cpu=004
31082          <idle>-0     (-----) [004] .n.1 24572.738851: cpu_idle: state=4294967295 cpu_id=4
31083 crtc_commit:111-253   (  253) [005] d..2 24572.738852: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31084          <idle>-0     (-----) [004] d..2 24572.738855: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=624 next_prio=111
31085          <idle>-0     (-----) [005] d..1 24572.738855: cpu_idle: state=0 cpu_id=5
31086<...>-25296 ( 24741) [000] d..2 24572.738857: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=R+ ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
31087     kworker/0:1-13012 (13012) [000] d..2 24572.738869: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=Binder:24290_7 next_pid=24501 next_prio=130
31088<...>-24501 ( 24290) [000] .... 24572.738873: binder_transaction_received: transaction=1669383
31089 SDM_EventThread-624   (  598) [004] ...1 24572.738886: tracing_mark_write: B|598|HWCCallbacks::Vsync::
31090 SDM_EventThread-624   (  598) [004] ...1 24572.738893: tracing_mark_write: B|598|HIDL::IComposerCallback::onVsync::client
31091 SDM_EventThread-624   (  598) [004] ...1 24572.738895: tracing_mark_write: E|598
31092 SDM_EventThread-624   (  598) [004] .... 24572.738912: binder_transaction: transaction=1669385 dest_node=1270370 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
31093 SDM_EventThread-624   (  598) [004] d..4 24572.738916: sched_waking: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=001
31094          <idle>-0     (-----) [001] dnh2 24572.738931: sched_wakeup: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=001
31095 SDM_EventThread-624   (  598) [004] ...1 24572.738934: tracing_mark_write: E|598
31096          <idle>-0     (-----) [001] .n.1 24572.738935: cpu_idle: state=4294967295 cpu_id=1
31097 SDM_EventThread-624   (  598) [004] d..4 24572.738941: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
31098          <idle>-0     (-----) [001] d..2 24572.738943: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:23896_ next_pid=23923 next_prio=120
31099  Binder:23968_1-23981 (23968) [006] d..3 24572.738945: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=005
31100 SDM_EventThread-624   (  598) [004] d..5 24572.738948: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
31101 HwBinder:23896_-23923 (23896) [001] .... 24572.738949: binder_transaction_received: transaction=1669385
31102          <idle>-0     (-----) [005] .n.1 24572.738953: cpu_idle: state=4294967295 cpu_id=5
31103          <idle>-0     (-----) [005] d..2 24572.738955: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
31104<...>-24501 ( 24290) [000] .... 24572.738962: binder_transaction: transaction=1669386 dest_node=0 dest_proc=24741 dest_thread=25296 reply=1 flags=0x0 code=0x0
31105 SDM_EventThread-624   (  598) [004] d..2 24572.738963: sched_switch: prev_comm=SDM_EventThread prev_pid=624 prev_prio=111 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
31106  Binder:23968_1-23981 (23968) [006] d..4 24572.738963: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=007
31107 crtc_commit:111-253   (  253) [005] d..2 24572.738964: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31108          <idle>-0     (-----) [005] d..1 24572.738966: cpu_idle: state=0 cpu_id=5
31109<...>-24501 ( 24290) [000] .... 24572.738966: binder_set_priority: proc=24290 thread=24501 old=130 => new=120 desired=120
31110          <idle>-0     (-----) [004] d..1 24572.738967: cpu_idle: state=0 cpu_id=4
31111          <idle>-0     (-----) [007] .n.1 24572.738967: cpu_idle: state=4294967295 cpu_id=7
31112          <idle>-0     (-----) [007] d..2 24572.738970: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
31113 HwBinder:23896_-23923 (23896) [001] ...1 24572.738989: tracing_mark_write: B|23896|HIDL::IComposerCallback::onVsync::server
31114<...>-24501 ( 24290) [000] d..2 24572.738993: sched_switch: prev_comm=Binder:24290_7 prev_pid=24501 prev_prio=120 prev_state=S ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
31115<...>-25296 ( 24741) [000] .... 24572.738997: binder_transaction_received: transaction=1669386
31116  Binder:23968_1-23981 (23968) [006] .... 24572.738999: binder_transaction: transaction=1669387 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
31117  Binder:23968_1-23981 (23968) [006] d..2 24572.739002: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
31118 HwBinder:23896_-23923 (23896) [001] ...1 24572.739004: tracing_mark_write: E|23896
31119  Binder:23968_1-23981 (23968) [006] dn.3 24572.739009: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
31120  Binder:23968_1-23981 (23968) [006] d..2 24572.739012: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
31121           <...>-13131 (-----) [006] .... 24572.739015: binder_transaction_received: transaction=1669387
31122 HwBinder:23896_-23923 (23896) [001] d..2 24572.739037: sched_switch: prev_comm=HwBinder:23896_ prev_pid=23923 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
31123<...>-25296 ( 24741) [000] .... 24572.739045: binder_transaction: transaction=1669388 dest_node=3 dest_proc=587 dest_thread=0 reply=0 flags=0x10 code=0x1
31124          <idle>-0     (-----) [001] d..1 24572.739045: cpu_idle: state=0 cpu_id=1
31125<...>-25296 ( 24741) [000] d..4 24572.739048: sched_waking: comm=servicemanager pid=587 prio=120 target_cpu=000
31126<...>-25296 ( 24741) [000] dn.5 24572.739055: sched_wakeup: comm=servicemanager pid=587 prio=120 target_cpu=000
31127<...>-25296 ( 24741) [000] dnh5 24572.739072: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=006
31128          <idle>-0     (-----) [005] dnh2 24572.739090: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
31129          <idle>-0     (-----) [005] .n.1 24572.739092: cpu_idle: state=4294967295 cpu_id=5
31130           <...>-13131 (-----) [006] .... 24572.739093: binder_transaction: transaction=1669389 dest_node=1669040 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
31131          <idle>-0     (-----) [005] d..2 24572.739094: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
31132           <...>-13131 (-----) [006] d..4 24572.739095: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
31133<...>-25296 ( 24741) [000] d..2 24572.739096: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=R+ ==> next_comm=servicemanager next_pid=587 next_prio=120
31134<...>-587 ( 587) [000] .... 24572.739099: binder_transaction_received: transaction=1669388
31135           <...>-13131 (-----) [006] d..5 24572.739103: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
31136          <idle>-0     (-----) [004] .n.1 24572.739108: cpu_idle: state=4294967295 cpu_id=4
31137          <idle>-0     (-----) [004] d..2 24572.739111: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
31138<...>-23903 ( 23896) [004] .... 24572.739113: binder_transaction_received: transaction=1669389
31139           <...>-13131 (-----) [006] d..3 24572.739113: sched_waking: comm=RenderThread pid=13151 prio=110 target_cpu=004
31140 kgsl_worker_thr-246   (  246) [005] d..2 24572.739118: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31141          <idle>-0     (-----) [005] d..1 24572.739121: cpu_idle: state=0 cpu_id=5
31142<...>-23903 ( 23896) [004] d..1 24572.739125: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
31143           <...>-13131 (-----) [006] d..4 24572.739126: sched_wakeup: comm=RenderThread pid=13151 prio=110 target_cpu=005
31144          <idle>-0     (-----) [005] .n.1 24572.739130: cpu_idle: state=4294967295 cpu_id=5
31145          <idle>-0     (-----) [005] d..2 24572.739133: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=110
31146          <idle>-0     (-----) [003] dnh2 24572.739139: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
31147          <idle>-0     (-----) [003] .n.1 24572.739143: cpu_idle: state=4294967295 cpu_id=3
31148<...>-23903 ( 23896) [004] d..2 24572.739143: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
31149           <...>-13131 (-----) [006] d..2 24572.739144: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=110
31150           <...>-13151 (-----) [005] d..2 24572.739145: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31151  Binder:23968_1-23981 (23968) [006] .... 24572.739146: binder_set_priority: proc=23968 thread=23981 old=110 => new=120 desired=120
31152          <idle>-0     (-----) [004] d..1 24572.739146: cpu_idle: state=0 cpu_id=4
31153          <idle>-0     (-----) [005] d..1 24572.739148: cpu_idle: state=0 cpu_id=5
31154          <idle>-0     (-----) [003] d..2 24572.739150: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
31155<...>-587 ( 587) [000] .... 24572.739155: binder_transaction: transaction=1669390 dest_node=0 dest_proc=24741 dest_thread=25296 reply=1 flags=0x0 code=0x0
31156<...>-24041 ( 23968) [007] d..3 24572.739164: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=003
31157  Binder:23968_1-23981 (23968) [006] d..2 24572.739166: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
31158          <idle>-0     (-----) [006] d..1 24572.739170: cpu_idle: state=0 cpu_id=6
31159<...>-587 ( 587) [000] d..2 24572.739173: sched_switch: prev_comm=servicemanager prev_pid=587 prev_prio=120 prev_state=S ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
31160<...>-25296 ( 24741) [000] .... 24572.739177: binder_transaction_received: transaction=1669390
31161<...>-24041 ( 23968) [007] d..4 24572.739179: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=004
31162          <idle>-0     (-----) [004] .n.1 24572.739183: cpu_idle: state=4294967295 cpu_id=4
31163          <idle>-0     (-----) [004] d..2 24572.739200: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
31164<...>-24041 ( 23968) [007] d.h3 24572.739201: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
31165<...>-24041 ( 23968) [007] d.h4 24572.739207: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
31166<...>-24041 ( 23968) [007] d.h3 24572.739207: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
31167          <idle>-0     (-----) [005] .n.1 24572.739211: cpu_idle: state=4294967295 cpu_id=5
31168  appEventThread-23905 (23896) [003] d..2 24572.739211: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
31169          <idle>-0     (-----) [005] d..2 24572.739213: 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
31170         sugov:4-560   (  560) [005] d..2 24572.739218: 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
31171          <idle>-0     (-----) [003] d..1 24572.739219: cpu_idle: state=0 cpu_id=3
31172          <idle>-0     (-----) [002] dnh2 24572.739219: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
31173          <idle>-0     (-----) [005] d..1 24572.739220: cpu_idle: state=0 cpu_id=5
31174          <idle>-0     (-----) [002] .n.1 24572.739222: cpu_idle: state=4294967295 cpu_id=2
31175          <idle>-0     (-----) [002] d..2 24572.739227: 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
31176<...>-24003 ( 23968) [004] d..2 24572.739229: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
31177          <idle>-0     (-----) [004] d..1 24572.739233: cpu_idle: state=0 cpu_id=4
31178         sugov:0-559   (  559) [002] d..2 24572.739237: 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
31179<...>-25296 ( 24741) [000] .... 24572.739238: binder_transaction: transaction=1669391 dest_node=1278627 dest_proc=24290 dest_thread=0 reply=0 flags=0x10 code=0x14
31180<...>-25296 ( 24741) [000] ...2 24572.739241: binder_set_priority: proc=24290 thread=24501 old=120 => new=130 desired=130
31181          <idle>-0     (-----) [002] d..1 24572.739242: cpu_idle: state=0 cpu_id=2
31182<...>-25296 ( 24741) [000] d..4 24572.739243: sched_waking: comm=Binder:24290_7 pid=24501 prio=130 target_cpu=000
31183<...>-25296 ( 24741) [000] d..5 24572.739250: sched_wakeup: comm=Binder:24290_7 pid=24501 prio=130 target_cpu=000
31184<...>-25296 ( 24741) [000] d..2 24572.739257: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=S ==> next_comm=Binder:24290_7 next_pid=24501 next_prio=130
31185<...>-24501 ( 24290) [000] .... 24572.739261: binder_transaction_received: transaction=1669391
31186<...>-24041 ( 23968) [007] .... 24572.739331: binder_transaction: transaction=1669392 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
31187<...>-24041 ( 23968) [007] d..4 24572.739336: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
31188<...>-24041 ( 23968) [007] d..5 24572.739345: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
31189          <idle>-0     (-----) [006] .n.1 24572.739350: cpu_idle: state=4294967295 cpu_id=6
31190          <idle>-0     (-----) [006] d..2 24572.739353: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
31191<...>-24376 ( 24151) [006] .... 24572.739357: binder_transaction_received: transaction=1669392
31192<...>-24041 ( 23968) [007] d..3 24572.739393: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=006
31193<...>-24501 ( 24290) [000] .... 24572.739394: binder_transaction: transaction=1669393 dest_node=0 dest_proc=24741 dest_thread=25296 reply=1 flags=0x0 code=0x0
31194<...>-24501 ( 24290) [000] d..2 24572.739398: sched_waking: comm=lowpool[3] pid=25296 prio=130 target_cpu=000
31195<...>-24041 ( 23968) [007] d..4 24572.739400: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=006
31196<...>-24501 ( 24290) [000] d..3 24572.739405: sched_wakeup: comm=lowpool[3] pid=25296 prio=130 target_cpu=000
31197<...>-24501 ( 24290) [000] .... 24572.739407: binder_set_priority: proc=24290 thread=24501 old=130 => new=120 desired=120
31198          <idle>-0     (-----) [005] ...1 24572.739411: cpu_idle: state=4294967295 cpu_id=5
31199          <idle>-0     (-----) [005] d..1 24572.739412: cpu_idle: state=0 cpu_id=5
31200          <idle>-0     (-----) [004] ...1 24572.739424: cpu_idle: state=4294967295 cpu_id=4
31201          <idle>-0     (-----) [004] d..1 24572.739425: cpu_idle: state=0 cpu_id=4
31202<...>-24376 ( 24151) [006] d..3 24572.739428: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
31203<...>-24501 ( 24290) [000] d..2 24572.739431: sched_switch: prev_comm=Binder:24290_7 prev_pid=24501 prev_prio=120 prev_state=S ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
31204<...>-24376 ( 24151) [006] d..4 24572.739435: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
31205<...>-25296 ( 24741) [000] .... 24572.739435: binder_transaction_received: transaction=1669393
31206<...>-24376 ( 24151) [006] d..2 24572.739460: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=23994 next_prio=118
31207<...>-23994 ( 23968) [006] d..3 24572.739504: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=006
31208<...>-23994 ( 23968) [006] d..4 24572.739510: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=006
31209<...>-23994 ( 23968) [006] d..2 24572.739524: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
31210<...>-24151 ( 24151) [006] d..2 24572.739574: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
31211<...>-24041 ( 23968) [007] .... 24572.739583: binder_transaction: transaction=1669394 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
31212<...>-24041 ( 23968) [007] ...2 24572.739588: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
31213<...>-24041 ( 23968) [007] d..4 24572.739589: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=004
31214<...>-24041 ( 23968) [007] dn.5 24572.739597: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=007
31215<...>-24041 ( 23968) [007] d..2 24572.739600: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
31216<...>-23903 ( 23896) [007] .... 24572.739602: binder_transaction_received: transaction=1669394
31217<...>-23968 ( 23968) [006] .... 24572.739609: binder_transaction: transaction=1669395 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
31218<...>-23968 ( 23968) [006] d..4 24572.739611: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
31219<...>-23968 ( 23968) [006] d..5 24572.739616: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
31220<...>-23968 ( 23968) [006] d..2 24572.739633: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
31221<...>-24376 ( 24151) [006] .... 24572.739635: binder_transaction_received: transaction=1669395
31222<...>-23903 ( 23896) [007] .... 24572.739635: binder_transaction: transaction=1669396 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
31223<...>-23903 ( 23896) [007] .... 24572.739637: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
31224<...>-23903 ( 23896) [007] d..2 24572.739651: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
31225<...>-24041 ( 23968) [007] .... 24572.739653: binder_transaction_received: transaction=1669396
31226<...>-24376 ( 24151) [006] d..3 24572.739660: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
31227<...>-24376 ( 24151) [006] d..4 24572.739665: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
31228<...>-24376 ( 24151) [006] d..2 24572.739680: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
31229<...>-24151 ( 24151) [006] d..2 24572.739706: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
31230          <idle>-0     (-----) [006] d..1 24572.739710: cpu_idle: state=0 cpu_id=6
31231<...>-24041 ( 23968) [007] d..3 24572.739926: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
31232<...>-24041 ( 23968) [007] d..4 24572.739937: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
31233          <idle>-0     (-----) [006] .n.1 24572.739941: cpu_idle: state=4294967295 cpu_id=6
31234          <idle>-0     (-----) [006] d..2 24572.739945: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
31235<...>-24073 ( 23968) [006] d..2 24572.739964: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
31236          <idle>-0     (-----) [006] d..1 24572.739966: cpu_idle: state=0 cpu_id=6
31237<...>-24041 ( 23968) [007] .... 24572.740084: binder_transaction: transaction=1669397 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
31238<...>-24041 ( 23968) [007] d..4 24572.740086: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
31239<...>-24041 ( 23968) [007] d..5 24572.740094: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
31240          <idle>-0     (-----) [006] .n.1 24572.740098: cpu_idle: state=4294967295 cpu_id=6
31241          <idle>-0     (-----) [006] d..2 24572.740101: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
31242<...>-24376 ( 24151) [006] .... 24572.740102: binder_transaction_received: transaction=1669397
31243<...>-24041 ( 23968) [007] d..3 24572.740119: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=006
31244<...>-24376 ( 24151) [006] d..3 24572.740123: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
31245<...>-24041 ( 23968) [007] d..4 24572.740125: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=006
31246<...>-24376 ( 24151) [006] d..4 24572.740130: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
31247<...>-24376 ( 24151) [006] d..2 24572.740143: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=23994 next_prio=118
31248<...>-23994 ( 23968) [006] d..3 24572.740164: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=006
31249<...>-23994 ( 23968) [006] d..4 24572.740168: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=006
31250<...>-23994 ( 23968) [006] d..2 24572.740180: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
31251<...>-23968 ( 23968) [006] .... 24572.740199: binder_transaction: transaction=1669398 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
31252<...>-23968 ( 23968) [006] d..4 24572.740201: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
31253<...>-23968 ( 23968) [006] d..5 24572.740206: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
31254<...>-23968 ( 23968) [006] d..2 24572.740220: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
31255<...>-24151 ( 24151) [006] d..2 24572.740239: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
31256<...>-24376 ( 24151) [006] .... 24572.740241: binder_transaction_received: transaction=1669398
31257<...>-24376 ( 24151) [006] d..3 24572.740261: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
31258<...>-24041 ( 23968) [007] .... 24572.740261: binder_transaction: transaction=1669399 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
31259<...>-24041 ( 23968) [007] ...2 24572.740265: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
31260<...>-24376 ( 24151) [006] d..4 24572.740265: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
31261<...>-24041 ( 23968) [007] d..4 24572.740266: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=007
31262<...>-24041 ( 23968) [007] dn.5 24572.740270: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=007
31263<...>-24041 ( 23968) [007] d..2 24572.740273: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
31264<...>-23903 ( 23896) [007] .... 24572.740275: binder_transaction_received: transaction=1669399
31265<...>-24376 ( 24151) [006] d..2 24572.740279: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
31266<...>-23903 ( 23896) [007] .... 24572.740294: binder_transaction: transaction=1669400 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
31267<...>-23903 ( 23896) [007] .... 24572.740296: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
31268<...>-24151 ( 24151) [006] d..2 24572.740298: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
31269          <idle>-0     (-----) [006] d..1 24572.740302: cpu_idle: state=0 cpu_id=6
31270<...>-23903 ( 23896) [007] d..2 24572.740308: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
31271<...>-24041 ( 23968) [007] .... 24572.740309: binder_transaction_received: transaction=1669400
31272<...>-25296 ( 24741) [000] .... 24572.740466: binder_transaction: transaction=1669401 dest_node=1271803 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x3
31273<...>-25296 ( 24741) [000] d..4 24572.740470: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
31274<...>-25296 ( 24741) [000] dn.5 24572.740487: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=000
31275<...>-24041 ( 23968) [007] d..3 24572.740503: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
31276<...>-25296 ( 24741) [000] dnh5 24572.740518: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
31277          <idle>-0     (-----) [006] d.h2 24572.740519: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=006
31278<...>-24041 ( 23968) [007] d..4 24572.740522: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
31279<...>-25296 ( 24741) [000] dnh5 24572.740526: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
31280          <idle>-0     (-----) [005] dnh2 24572.740531: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
31281          <idle>-0     (-----) [005] .n.1 24572.740533: cpu_idle: state=4294967295 cpu_id=5
31282          <idle>-0     (-----) [006] dnh3 24572.740533: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=004
31283<...>-25296 ( 24741) [000] dnh6 24572.740535: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
31284          <idle>-0     (-----) [005] d..2 24572.740535: 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
31285          <idle>-0     (-----) [004] .n.1 24572.740538: cpu_idle: state=4294967295 cpu_id=4
31286          <idle>-0     (-----) [006] .n.1 24572.740539: cpu_idle: state=4294967295 cpu_id=6
31287         sugov:4-560   (  560) [005] d..2 24572.740539: 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
31288          <idle>-0     (-----) [002] .n.1 24572.740540: cpu_idle: state=4294967295 cpu_id=2
31289          <idle>-0     (-----) [005] d..1 24572.740541: cpu_idle: state=0 cpu_id=5
31290<...>-25296 ( 24741) [000] d..2 24572.740541: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=R+ ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
31291          <idle>-0     (-----) [004] d..2 24572.740541: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
31292          <idle>-0     (-----) [006] d..2 24572.740543: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
31293          <idle>-0     (-----) [002] d..2 24572.740545: 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
31294  Binder:23968_1-23981 (23968) [000] .... 24572.740546: binder_transaction_received: transaction=1669401
31295        DispSync-23904 (23896) [004] d..1 24572.740551: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
31296<...>-24073 ( 23968) [006] d..2 24572.740555: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
31297         sugov:0-559   (  559) [002] d..2 24572.740558: 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
31298          <idle>-0     (-----) [006] d..1 24572.740558: cpu_idle: state=0 cpu_id=6
31299          <idle>-0     (-----) [002] dnh2 24572.740566: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
31300        DispSync-23904 (23896) [004] d..2 24572.740567: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
31301          <idle>-0     (-----) [004] d..1 24572.740570: cpu_idle: state=0 cpu_id=4
31302          <idle>-0     (-----) [002] d..2 24572.740572: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
31303   sfEventThread-23906 (23896) [002] d..3 24572.740614: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=004
31304          <idle>-0     (-----) [004] dnh2 24572.740632: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=004
31305          <idle>-0     (-----) [004] .n.1 24572.740634: cpu_idle: state=4294967295 cpu_id=4
31306          <idle>-0     (-----) [004] d..2 24572.740636: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
31307   sfEventThread-23906 (23896) [002] d..3 24572.740644: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
31308<...>-24041 ( 23968) [007] .... 24572.740645: binder_transaction: transaction=1669402 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
31309<...>-24041 ( 23968) [007] d..4 24572.740648: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
31310          <idle>-0     (-----) [003] ...1 24572.740653: cpu_idle: state=4294967295 cpu_id=3
31311<...>-24041 ( 23968) [007] d..5 24572.740655: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
31312   sfEventThread-23906 (23896) [002] d..4 24572.740656: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
31313          <idle>-0     (-----) [006] .n.1 24572.740659: cpu_idle: state=4294967295 cpu_id=6
31314          <idle>-0     (-----) [003] d..2 24572.740659: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
31315          <idle>-0     (-----) [006] d..2 24572.740662: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
31316<...>-24376 ( 24151) [006] .... 24572.740664: binder_transaction_received: transaction=1669402
31317   sfEventThread-23906 (23896) [002] d..2 24572.740679: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
31318<...>-24041 ( 23968) [007] d..3 24572.740681: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=006
31319<...>-24376 ( 24151) [006] d..3 24572.740685: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
31320<...>-24041 ( 23968) [007] d..4 24572.740686: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=006
31321          <idle>-0     (-----) [002] d..1 24572.740686: cpu_idle: state=0 cpu_id=2
31322<...>-24376 ( 24151) [006] d..4 24572.740691: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
31323<...>-24376 ( 24151) [006] d..2 24572.740704: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=23994 next_prio=118
31324<...>-23994 ( 23968) [006] d..3 24572.740721: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=006
31325<...>-23994 ( 23968) [006] d..4 24572.740726: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=006
31326          <idle>-0     (-----) [005] ...1 24572.740731: cpu_idle: state=4294967295 cpu_id=5
31327          <idle>-0     (-----) [005] d..1 24572.740732: cpu_idle: state=0 cpu_id=5
31328<...>-23994 ( 23968) [006] d..2 24572.740738: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
31329  Binder:23968_1-23981 (23968) [000] .... 24572.740739: binder_transaction: transaction=1669403 dest_node=0 dest_proc=24741 dest_thread=25296 reply=1 flags=0x0 code=0x0
31330<...>-23968 ( 23968) [006] .... 24572.740758: binder_transaction: transaction=1669404 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
31331<...>-23968 ( 23968) [006] d..4 24572.740760: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
31332  Binder:23968_1-23981 (23968) [000] d..2 24572.740763: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
31333<...>-24041 ( 23968) [007] .... 24572.740763: binder_transaction: transaction=1669405 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
31334<...>-23968 ( 23968) [006] d..5 24572.740764: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
31335<...>-24042 ( 23968) [004] .... 24572.740766: binder_transaction: transaction=1669406 dest_node=1271163 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
31336<...>-24041 ( 23968) [007] ...2 24572.740768: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
31337<...>-24041 ( 23968) [007] d..4 24572.740768: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=007
31338<...>-25296 ( 24741) [000] .... 24572.740769: binder_transaction_received: transaction=1669403
31339<...>-24041 ( 23968) [007] dn.5 24572.740773: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=007
31340<...>-24042 ( 23968) [004] d..4 24572.740775: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
31341<...>-24041 ( 23968) [007] d..2 24572.740776: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
31342<...>-23968 ( 23968) [006] d..2 24572.740780: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
31343<...>-24042 ( 23968) [004] d..5 24572.740785: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
31344<...>-23903 ( 23896) [007] .... 24572.740787: binder_transaction_received: transaction=1669405
31345          <idle>-0     (-----) [005] .n.1 24572.740789: cpu_idle: state=4294967295 cpu_id=5
31346          <idle>-0     (-----) [005] d..2 24572.740792: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
31347  Binder:23896_5-25989 (23896) [005] .... 24572.740795: binder_transaction_received: transaction=1669406
31348<...>-24151 ( 24151) [006] d..2 24572.740799: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
31349<...>-24376 ( 24151) [006] .... 24572.740801: binder_transaction_received: transaction=1669404
31350<...>-23903 ( 23896) [007] d..2 24572.740804: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=110 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
31351  Binder:23896_5-25989 (23896) [005] d..1 24572.740807: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
31352<...>-24041 ( 23968) [007] d..2 24572.740811: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
31353          <idle>-0     (-----) [007] d..1 24572.740815: cpu_idle: state=0 cpu_id=7
31354          <idle>-0     (-----) [002] dnh2 24572.740821: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
31355<...>-24376 ( 24151) [006] d..3 24572.740822: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
31356          <idle>-0     (-----) [002] .n.1 24572.740825: cpu_idle: state=4294967295 cpu_id=2
31357  Binder:23896_5-25989 (23896) [005] d..2 24572.740826: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31358          <idle>-0     (-----) [005] d..1 24572.740829: cpu_idle: state=0 cpu_id=5
31359          <idle>-0     (-----) [002] d..2 24572.740830: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
31360<...>-24042 ( 23968) [004] .... 24572.740832: binder_transaction: transaction=1669407 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
31361<...>-24376 ( 24151) [006] d..4 24572.740833: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
31362          <idle>-0     (-----) [007] .n.1 24572.740838: cpu_idle: state=4294967295 cpu_id=7
31363<...>-24042 ( 23968) [004] ...2 24572.740840: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
31364          <idle>-0     (-----) [007] d..2 24572.740841: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
31365<...>-24042 ( 23968) [004] d..4 24572.740841: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
31366   sfEventThread-23906 (23896) [002] d..2 24572.740847: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
31367<...>-24376 ( 24151) [006] d..2 24572.740849: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
31368<...>-24042 ( 23968) [004] d..5 24572.740849: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
31369          <idle>-0     (-----) [002] d..1 24572.740853: cpu_idle: state=0 cpu_id=2
31370          <idle>-0     (-----) [006] d..1 24572.740853: cpu_idle: state=0 cpu_id=6
31371<...>-24042 ( 23968) [004] d..2 24572.740853: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
31372  Binder:23896_5-25989 (23896) [004] .... 24572.740856: binder_transaction_received: transaction=1669407
31373<...>-24151 ( 24151) [007] d..2 24572.740872: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
31374          <idle>-0     (-----) [007] d..1 24572.740875: cpu_idle: state=0 cpu_id=7
31375  Binder:23896_5-25989 (23896) [004] d..2 24572.740881: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
31376          <idle>-0     (-----) [007] d.s2 24572.740897: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=007
31377<...>-25296 ( 24741) [000] d.h2 24572.740900: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
31378  surfaceflinger-23896 (23896) [003] d.s2 24572.740903: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=005
31379<...>-25296 ( 24741) [000] dnh3 24572.740906: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
31380          <idle>-0     (-----) [007] d.s3 24572.740909: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=004
31381          <idle>-0     (-----) [004] d..2 24572.740912: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
31382<...>-25296 ( 24741) [000] d..2 24572.740917: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
31383          <idle>-0     (-----) [007] ...1 24572.740917: cpu_idle: state=4294967295 cpu_id=7
31384          <idle>-0     (-----) [005] dnh2 24572.740919: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=005
31385          <idle>-0     (-----) [007] d..1 24572.740919: cpu_idle: state=0 cpu_id=7
31386          <idle>-0     (-----) [005] .n.1 24572.740922: cpu_idle: state=4294967295 cpu_id=5
31387          <idle>-0     (-----) [005] d..2 24572.740925: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
31388       rcu_sched-8     (    8) [004] d..2 24572.740935: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
31389          <idle>-0     (-----) [004] d..1 24572.740938: cpu_idle: state=0 cpu_id=4
31390          <idle>-0     (-----) [006] .n.1 24572.740942: cpu_idle: state=4294967295 cpu_id=6
31391          <idle>-0     (-----) [006] d..2 24572.740962: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
31392  surfaceflinger-23896 (23896) [003] d..1 24572.740974: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=007
31393     migration/0-13    (   13) [000] d..2 24572.740976: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
31394          <idle>-0     (-----) [007] dnh2 24572.740985: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=007
31395          <idle>-0     (-----) [007] .n.1 24572.740988: cpu_idle: state=4294967295 cpu_id=7
31396          <idle>-0     (-----) [007] d..2 24572.740991: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
31397<...>-23903 ( 23896) [007] d..1 24572.740999: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
31398          <idle>-0     (-----) [000] d..1 24572.740999: cpu_idle: state=0 cpu_id=0
31399<...>-23903 ( 23896) [007] d..1 24572.741006: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
31400<...>-23903 ( 23896) [007] d..2 24572.741011: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
31401          <idle>-0     (-----) [002] dnh2 24572.741012: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
31402          <idle>-0     (-----) [002] .n.1 24572.741016: cpu_idle: state=4294967295 cpu_id=2
31403          <idle>-0     (-----) [004] .n.1 24572.741016: cpu_idle: state=4294967295 cpu_id=4
31404<...>-23903 ( 23896) [007] .... 24572.741017: binder_transaction: transaction=1669408 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
31405<...>-23903 ( 23896) [007] d..2 24572.741018: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=007
31406          <idle>-0     (-----) [004] d..2 24572.741019: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
31407<...>-23903 ( 23896) [007] d..3 24572.741021: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=007
31408          <idle>-0     (-----) [002] d..2 24572.741021: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
31409<...>-23903 ( 23896) [007] .... 24572.741022: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
31410  Binder:23896_5-25989 (23896) [004] .... 24572.741033: binder_transaction: transaction=1669409 dest_node=0 dest_proc=23968 dest_thread=24042 reply=1 flags=0x0 code=0x0
31411<...>-23903 ( 23896) [007] d..2 24572.741035: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
31412   sfEventThread-23906 (23896) [002] d..2 24572.741037: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
31413  Binder:23896_5-25989 (23896) [004] d..2 24572.741037: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=004
31414<...>-24041 ( 23968) [007] .... 24572.741038: binder_transaction_received: transaction=1669408
31415  Binder:23896_5-25989 (23896) [004] dn.3 24572.741041: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=004
31416          <idle>-0     (-----) [002] d..1 24572.741044: cpu_idle: state=0 cpu_id=2
31417  Binder:23896_5-25989 (23896) [004] d..2 24572.741046: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=R+ ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
31418<...>-24042 ( 23968) [004] .... 24572.741047: binder_transaction_received: transaction=1669409
31419<...>-24042 ( 23968) [004] d..2 24572.741074: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
31420  Binder:23896_5-25989 (23896) [004] .... 24572.741076: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
31421  Binder:23896_5-25989 (23896) [004] d..2 24572.741093: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
31422          <idle>-0     (-----) [004] d..1 24572.741101: cpu_idle: state=0 cpu_id=4
31423          <idle>-0     (-----) [004] ...1 24572.741107: cpu_idle: state=4294967295 cpu_id=4
31424          <idle>-0     (-----) [004] d..1 24572.741108: cpu_idle: state=0 cpu_id=4
31425<...>-24041 ( 23968) [007] d..3 24572.741255: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
31426<...>-24041 ( 23968) [007] d..4 24572.741264: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
31427<...>-25296 ( 24741) [006] d..2 24572.741273: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
31428  kworker/u16:10-23868 (23868) [005] d..2 24572.741273: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
31429          <idle>-0     (-----) [005] d..1 24572.741276: cpu_idle: state=0 cpu_id=5
31430<...>-24041 ( 23968) [007] d..1 24572.741286: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=004
31431<...>-24073 ( 23968) [006] d..2 24572.741287: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
31432<...>-24041 ( 23968) [007] d..2 24572.741294: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=004
31433          <idle>-0     (-----) [004] .n.1 24572.741298: cpu_idle: state=4294967295 cpu_id=4
31434          <idle>-0     (-----) [004] d..2 24572.741301: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
31435  surfaceflinger-23896 (23896) [003] d.s1 24572.741307: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
31436  surfaceflinger-23896 (23896) [003] d.s2 24572.741317: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
31437<...>-24041 ( 23968) [007] .... 24572.741374: binder_transaction: transaction=1669410 dest_node=1271137 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
31438<...>-24041 ( 23968) [007] d..4 24572.741376: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
31439<...>-24041 ( 23968) [007] d..5 24572.741388: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
31440          <idle>-0     (-----) [005] .n.1 24572.741392: cpu_idle: state=4294967295 cpu_id=5
31441<...>-24003 ( 23968) [004] d..2 24572.741393: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
31442<...>-24041 ( 23968) [007] d..1 24572.741394: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=004
31443          <idle>-0     (-----) [005] d..2 24572.741394: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
31444  Binder:23896_5-25989 (23896) [005] .... 24572.741396: binder_transaction_received: transaction=1669410
31445          <idle>-0     (-----) [004] d..1 24572.741396: cpu_idle: state=0 cpu_id=4
31446          <idle>-0     (-----) [004] .n.1 24572.741397: cpu_idle: state=4294967295 cpu_id=4
31447<...>-24041 ( 23968) [007] d..2 24572.741399: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=004
31448          <idle>-0     (-----) [004] d..2 24572.741402: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
31449  Binder:23896_5-25989 (23896) [005] d..1 24572.741402: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
31450<...>-24003 ( 23968) [004] d..2 24572.741412: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
31451          <idle>-0     (-----) [004] d..1 24572.741414: cpu_idle: state=0 cpu_id=4
31452          <idle>-0     (-----) [002] dnh2 24572.741414: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
31453  Binder:23896_5-25989 (23896) [005] d..2 24572.741415: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31454          <idle>-0     (-----) [005] d..1 24572.741417: cpu_idle: state=0 cpu_id=5
31455          <idle>-0     (-----) [002] .n.1 24572.741418: cpu_idle: state=4294967295 cpu_id=2
31456          <idle>-0     (-----) [002] d..2 24572.741423: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
31457   sfEventThread-23906 (23896) [002] d..2 24572.741438: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
31458          <idle>-0     (-----) [002] d..1 24572.741444: cpu_idle: state=0 cpu_id=2
31459<...>-24041 ( 23968) [007] .... 24572.741512: binder_transaction: transaction=1669411 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
31460<...>-24041 ( 23968) [007] ...2 24572.741518: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
31461<...>-24041 ( 23968) [007] d..4 24572.741519: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
31462          <idle>-0     (-----) [004] d.h2 24572.741527: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=004
31463<...>-24041 ( 23968) [007] dn.5 24572.741527: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=007
31464<...>-24041 ( 23968) [007] d..2 24572.741531: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
31465          <idle>-0     (-----) [004] dnh3 24572.741531: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=004
31466  Binder:23896_5-25989 (23896) [007] .... 24572.741533: binder_transaction_received: transaction=1669411
31467          <idle>-0     (-----) [004] .n.1 24572.741534: cpu_idle: state=4294967295 cpu_id=4
31468          <idle>-0     (-----) [004] d..2 24572.741537: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
31469        DispSync-23904 (23896) [004] d..1 24572.741542: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
31470  Binder:23896_5-25989 (23896) [007] .... 24572.741557: binder_transaction: transaction=1669412 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
31471  Binder:23896_5-25989 (23896) [007] .... 24572.741559: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
31472        DispSync-23904 (23896) [004] d..2 24572.741559: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
31473          <idle>-0     (-----) [001] dnh2 24572.741560: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
31474          <idle>-0     (-----) [004] d..1 24572.741562: cpu_idle: state=0 cpu_id=4
31475          <idle>-0     (-----) [001] .n.1 24572.741564: cpu_idle: state=4294967295 cpu_id=1
31476          <idle>-0     (-----) [001] d..2 24572.741570: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
31477  Binder:23896_5-25989 (23896) [007] d..2 24572.741572: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
31478<...>-24041 ( 23968) [007] .... 24572.741574: binder_transaction_received: transaction=1669412
31479  appEventThread-23905 (23896) [001] d..3 24572.741601: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
31480<...>-24041 ( 23968) [007] .... 24572.741612: binder_transaction: transaction=1669413 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
31481<...>-24041 ( 23968) [007] ...2 24572.741613: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
31482<...>-24041 ( 23968) [007] d..4 24572.741614: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=007
31483<...>-24041 ( 23968) [007] dn.5 24572.741618: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=007
31484<...>-25296 ( 24741) [006] dnh1 24572.741621: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
31485<...>-24041 ( 23968) [007] d..2 24572.741621: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
31486  Binder:23896_5-25989 (23896) [007] .... 24572.741623: binder_transaction_received: transaction=1669413
31487  appEventThread-23905 (23896) [001] d..3 24572.741624: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
31488<...>-25296 ( 24741) [006] d..2 24572.741625: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
31489  Binder:23896_5-25989 (23896) [007] .... 24572.741630: binder_transaction: transaction=1669414 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
31490  Binder:23896_5-25989 (23896) [007] .... 24572.741631: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
31491  Binder:23896_5-25989 (23896) [007] d..2 24572.741641: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
31492<...>-24041 ( 23968) [007] .... 24572.741642: binder_transaction_received: transaction=1669414
31493          <idle>-0     (-----) [004] dnh2 24572.741643: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
31494          <idle>-0     (-----) [004] .n.1 24572.741646: cpu_idle: state=4294967295 cpu_id=4
31495          <idle>-0     (-----) [005] ...1 24572.741647: cpu_idle: state=4294967295 cpu_id=5
31496          <idle>-0     (-----) [005] d..1 24572.741649: cpu_idle: state=0 cpu_id=5
31497          <idle>-0     (-----) [004] d..2 24572.741649: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
31498<...>-24041 ( 23968) [007] d..1 24572.741649: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=004
31499  appEventThread-23905 (23896) [001] d..2 24572.741655: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
31500<...>-24041 ( 23968) [007] d..2 24572.741660: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=005
31501          <idle>-0     (-----) [001] d..1 24572.741661: cpu_idle: state=0 cpu_id=1
31502          <idle>-0     (-----) [005] .n.1 24572.741664: cpu_idle: state=4294967295 cpu_id=5
31503          <idle>-0     (-----) [005] d..2 24572.741666: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
31504<...>-24003 ( 23968) [005] d..3 24572.741734: sched_waking: comm=android.bg pid=23992 prio=130 target_cpu=000
31505<...>-24151 ( 24151) [006] .... 24572.741738: binder_transaction: transaction=1669415 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
31506<...>-24151 ( 24151) [006] d..4 24572.741741: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
31507<...>-24151 ( 24151) [006] d..5 24572.741751: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
31508          <idle>-0     (-----) [000] dnh2 24572.741751: sched_wakeup: comm=android.bg pid=23992 prio=130 target_cpu=000
31509          <idle>-0     (-----) [000] .n.1 24572.741755: cpu_idle: state=4294967295 cpu_id=0
31510          <idle>-0     (-----) [000] d..2 24572.741760: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.bg next_pid=23992 next_prio=130
31511<...>-24151 ( 24151) [006] d..3 24572.741768: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
31512<...>-24151 ( 24151) [006] d..4 24572.741777: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
31513           <...>-13131 (-----) [004] d..3 24572.741790: sched_waking: comm=RenderThread pid=13151 prio=110 target_cpu=005
31514<...>-24003 ( 23968) [005] d..2 24572.741796: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
31515           <...>-13131 (-----) [004] d..4 24572.741797: sched_wakeup: comm=RenderThread pid=13151 prio=110 target_cpu=005
31516           <...>-13131 (-----) [004] d..2 24572.741811: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
31517<...>-24041 ( 23968) [007] d..3 24572.741812: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
31518  Binder:23896_5-25989 (23896) [004] .... 24572.741814: binder_transaction_received: transaction=1669415
31519          <idle>-0     (-----) [001] dnh2 24572.741816: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
31520          <idle>-0     (-----) [001] .n.1 24572.741819: cpu_idle: state=4294967295 cpu_id=1
31521<...>-24041 ( 23968) [007] dn.4 24572.741821: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=007
31522  Binder:23896_5-25989 (23896) [004] d..1 24572.741822: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
31523<...>-24041 ( 23968) [007] d..2 24572.741824: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
31524          <idle>-0     (-----) [001] d..2 24572.741825: 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
31525  surfaceflinger-23896 (23896) [003] ...1 24572.741827: tracing_mark_write: B|23896|HIDL::IComposerClient::createLayer::client
31526  surfaceflinger-23896 (23896) [003] ...1 24572.741831: tracing_mark_write: E|23896
31527<...>-24073 ( 23968) [007] d..2 24572.741834: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
31528          <idle>-0     (-----) [002] dnh2 24572.741843: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
31529<...>-24151 ( 24151) [006] d..2 24572.741844: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
31530  Binder:23896_5-25989 (23896) [004] d..2 24572.741846: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
31531          <idle>-0     (-----) [002] .n.1 24572.741848: cpu_idle: state=4294967295 cpu_id=2
31532          <idle>-0     (-----) [004] d..1 24572.741850: cpu_idle: state=0 cpu_id=4
31533          <idle>-0     (-----) [002] d..2 24572.741852: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
31534  surfaceflinger-23896 (23896) [003] .... 24572.741858: binder_transaction: transaction=1669416 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x5
31535<...>-24003 ( 23968) [005] d..2 24572.741864: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
31536  surfaceflinger-23896 (23896) [003] ...2 24572.741865: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
31537  surfaceflinger-23896 (23896) [003] d..4 24572.741873: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
31538           <...>-13151 (-----) [005] d..1 24572.741873: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
31539  appEventThread-23905 (23896) [002] d..2 24572.741875: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
31540          <idle>-0     (-----) [002] d..1 24572.741881: cpu_idle: state=0 cpu_id=2
31541           <...>-13151 (-----) [005] d..2 24572.741882: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
31542          <idle>-0     (-----) [004] dnh2 24572.741889: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
31543           <...>-13151 (-----) [005] d..2 24572.741890: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31544          <idle>-0     (-----) [005] d..1 24572.741894: cpu_idle: state=0 cpu_id=5
31545          <idle>-0     (-----) [004] .n.1 24572.741894: cpu_idle: state=4294967295 cpu_id=4
31546  surfaceflinger-23896 (23896) [003] d..2 24572.741896: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
31547          <idle>-0     (-----) [004] d..2 24572.741897: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
31548  HwBinder:598_3-633   (  598) [004] .... 24572.741901: binder_transaction_received: transaction=1669416
31549    RenderThread-24437 (24151) [006] d..1 24572.741903: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
31550    RenderThread-24437 (24151) [006] d..2 24572.741908: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
31551     ksoftirqd/3-34    (   34) [003] d.s2 24572.741909: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=005
31552          <idle>-0     (-----) [005] d.h2 24572.741922: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
31553          <idle>-0     (-----) [005] dnh2 24572.741923: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=005
31554  HwBinder:598_3-633   (  598) [004] ...1 24572.741924: tracing_mark_write: B|598|HIDL::IComposerClient::createLayer::server
31555          <idle>-0     (-----) [005] .n.1 24572.741926: cpu_idle: state=4294967295 cpu_id=5
31556          <idle>-0     (-----) [005] d..2 24572.741928: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
31557  kworker/u16:10-23868 (23868) [005] d..2 24572.741940: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31558    RenderThread-24437 (24151) [006] .... 24572.741941: binder_transaction: transaction=1669417 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
31559          <idle>-0     (-----) [005] d..1 24572.741942: cpu_idle: state=0 cpu_id=5
31560    RenderThread-24437 (24151) [006] d..4 24572.741943: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
31561     logd.writer-563   (  555) [001] d..2 24572.741945: 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
31562     ksoftirqd/3-34    (   34) [003] d..2 24572.741946: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
31563          <idle>-0     (-----) [001] d..1 24572.741952: cpu_idle: state=0 cpu_id=1
31564    RenderThread-24437 (24151) [006] d..5 24572.741954: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
31565          <idle>-0     (-----) [005] .n.1 24572.741958: cpu_idle: state=4294967295 cpu_id=5
31566  HwBinder:598_3-633   (  598) [004] ...1 24572.741959: tracing_mark_write: E|598
31567  HwBinder:598_3-633   (  598) [004] .... 24572.741964: binder_transaction: transaction=1669418 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
31568  HwBinder:598_3-633   (  598) [004] d..2 24572.741965: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
31569          <idle>-0     (-----) [005] d..2 24572.741981: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
31570  Binder:23896_5-25989 (23896) [005] .... 24572.741984: binder_transaction_received: transaction=1669417
31571    RenderThread-24437 (24151) [006] d..2 24572.741984: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
31572<...>-24151 ( 24151) [003] d.h4 24572.741984: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
31573  HwBinder:598_3-633   (  598) [004] .... 24572.741989: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
31574<...>-24151 ( 24151) [003] d.h4 24572.741993: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
31575  Binder:23896_5-25989 (23896) [005] dnh1 24572.741997: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
31576          <idle>-0     (-----) [002] dnh2 24572.741997: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
31577  Binder:23896_5-25989 (23896) [005] d..2 24572.742001: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
31578<...>-24151 ( 24151) [003] d.h5 24572.742001: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
31579          <idle>-0     (-----) [002] .n.1 24572.742005: cpu_idle: state=4294967295 cpu_id=2
31580         sugov:4-560   (  560) [005] d..2 24572.742006: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
31581  HwBinder:598_3-633   (  598) [004] d..2 24572.742007: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
31582  Binder:23896_5-25989 (23896) [005] .... 24572.742024: binder_transaction: transaction=1669419 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
31583          <idle>-0     (-----) [002] d..2 24572.742025: 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
31584           <...>-13131 (-----) [004] d..3 24572.742027: sched_waking: comm=RenderThread pid=13151 prio=110 target_cpu=005
31585  Binder:23896_5-25989 (23896) [005] d..2 24572.742029: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
31586           <...>-13131 (-----) [004] d..4 24572.742033: sched_wakeup: comm=RenderThread pid=13151 prio=110 target_cpu=005
31587  Binder:23896_5-25989 (23896) [005] d..3 24572.742036: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
31588           <...>-13131 (-----) [004] d..2 24572.742041: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
31589          <idle>-0     (-----) [001] .n.1 24572.742044: cpu_idle: state=4294967295 cpu_id=1
31590<...>-25296 ( 24741) [006] d..2 24572.742044: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=R+ ==> next_comm=RenderThread next_pid=24437 next_prio=120
31591          <idle>-0     (-----) [004] d..1 24572.742046: cpu_idle: state=0 cpu_id=4
31592  Binder:23896_5-25989 (23896) [005] d..2 24572.742046: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
31593    RenderThread-24437 (24151) [006] .... 24572.742047: binder_transaction_received: transaction=1669419
31594         sugov:0-559   (  559) [002] d..2 24572.742049: 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
31595          <idle>-0     (-----) [001] d..2 24572.742051: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
31596<...>-24151 ( 24151) [003] d..2 24572.742054: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
31597          <idle>-0     (-----) [002] d..1 24572.742055: cpu_idle: state=0 cpu_id=2
31598  surfaceflinger-23896 (23896) [001] .... 24572.742055: binder_transaction_received: transaction=1669418
31599          <idle>-0     (-----) [003] d..1 24572.742063: cpu_idle: state=0 cpu_id=3
31600           <...>-13151 (-----) [005] d..1 24572.742075: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
31601           <...>-13151 (-----) [005] d..2 24572.742081: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
31602          <idle>-0     (-----) [004] .n.1 24572.742086: cpu_idle: state=4294967295 cpu_id=4
31603          <idle>-0     (-----) [004] d..2 24572.742089: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
31604           <...>-13131 (-----) [004] d..2 24572.742101: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
31605           <...>-13151 (-----) [005] .... 24572.742104: binder_transaction: transaction=1669420 dest_node=1669126 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
31606          <idle>-0     (-----) [004] d..1 24572.742104: cpu_idle: state=0 cpu_id=4
31607           <...>-13151 (-----) [005] ...2 24572.742106: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
31608           <...>-13151 (-----) [005] d..4 24572.742106: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
31609           <...>-13151 (-----) [005] dn.5 24572.742110: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
31610  surfaceflinger-23896 (23896) [001] ...1 24572.742111: tracing_mark_write: B|23896|HIDL::IComposerClient::createLayer::client
31611           <...>-13151 (-----) [005] d..2 24572.742113: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
31612  surfaceflinger-23896 (23896) [001] ...1 24572.742115: tracing_mark_write: E|23896
31613  Binder:23896_5-25989 (23896) [005] .... 24572.742115: binder_transaction_received: transaction=1669420
31614  surfaceflinger-23896 (23896) [001] .... 24572.742126: binder_transaction: transaction=1669421 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x5
31615  Binder:23896_5-25989 (23896) [005] ...1 24572.742130: tracing_mark_write: B|23896|HIDL::IMapper::freeBuffer::passthrough
31616  surfaceflinger-23896 (23896) [001] ...2 24572.742131: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
31617  surfaceflinger-23896 (23896) [001] d..4 24572.742134: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
31618<...>-24041 ( 23968) [007] .... 24572.742138: binder_transaction: transaction=1669422 dest_node=1344550 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x1
31619  Binder:23896_5-25989 (23896) [005] ...1 24572.742141: tracing_mark_write: B|23896|FreeBuffer
31620<...>-24041 ( 23968) [007] ...2 24572.742143: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
31621<...>-24041 ( 23968) [007] d..4 24572.742144: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=007
31622          <idle>-0     (-----) [004] dnh2 24572.742149: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
31623<...>-24041 ( 23968) [007] dn.5 24572.742149: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=007
31624          <idle>-0     (-----) [004] .n.1 24572.742151: cpu_idle: state=4294967295 cpu_id=4
31625<...>-24041 ( 23968) [007] d..2 24572.742152: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
31626          <idle>-0     (-----) [004] d..2 24572.742154: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
31627  Binder:23896_5-25989 (23896) [005] d..2 24572.742154: sched_waking: comm=system pid=105 prio=120 target_cpu=000
31628<...>-23903 ( 23896) [007] .... 24572.742154: binder_transaction_received: transaction=1669422
31629  HwBinder:598_3-633   (  598) [004] .... 24572.742156: binder_transaction_received: transaction=1669421
31630  surfaceflinger-23896 (23896) [001] d..2 24572.742159: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
31631  HwBinder:598_3-633   (  598) [004] ...1 24572.742163: tracing_mark_write: B|598|HIDL::IComposerClient::createLayer::server
31632          <idle>-0     (-----) [001] d..1 24572.742167: cpu_idle: state=0 cpu_id=1
31633  Binder:23896_5-25989 (23896) [005] d..3 24572.742167: sched_wakeup: comm=system pid=105 prio=120 target_cpu=004
31634  HwBinder:598_3-633   (  598) [004] ...1 24572.742181: tracing_mark_write: E|598
31635  HwBinder:598_3-633   (  598) [004] .... 24572.742184: binder_transaction: transaction=1669423 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
31636<...>-23903 ( 23896) [007] d..2 24572.742185: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=110 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
31637  HwBinder:598_3-633   (  598) [004] d..2 24572.742186: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
31638  Binder:23896_5-25989 (23896) [005] ...1 24572.742189: tracing_mark_write: E|23896
31639  Binder:23896_5-25989 (23896) [005] ...1 24572.742190: tracing_mark_write: B|23896|FreeBuffer
31640<...>-24041 ( 23968) [007] d..2 24572.742193: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
31641  HwBinder:598_3-633   (  598) [004] .... 24572.742193: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
31642  Binder:23896_5-25989 (23896) [005] ...1 24572.742194: tracing_mark_write: E|23896
31643  Binder:23896_5-25989 (23896) [005] ...1 24572.742197: tracing_mark_write: E|23896
31644          <idle>-0     (-----) [007] d..1 24572.742200: cpu_idle: state=0 cpu_id=7
31645          <idle>-0     (-----) [001] dnh2 24572.742200: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
31646          <idle>-0     (-----) [001] .n.1 24572.742204: cpu_idle: state=4294967295 cpu_id=1
31647  HwBinder:598_3-633   (  598) [004] d..2 24572.742205: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
31648  Binder:23896_5-25989 (23896) [005] ...1 24572.742207: tracing_mark_write: B|23896|HIDL::IMapper::createDescriptor_2_1::passthrough
31649          <idle>-0     (-----) [001] d..2 24572.742209: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
31650  Binder:23896_5-25989 (23896) [005] ...1 24572.742210: tracing_mark_write: E|23896
31651  surfaceflinger-23896 (23896) [001] .... 24572.742212: binder_transaction_received: transaction=1669423
31652  Binder:23896_5-25989 (23896) [005] ...1 24572.742216: tracing_mark_write: B|23896|HIDL::IAllocator::allocate::client
31653  Binder:23896_5-25989 (23896) [005] ...1 24572.742217: tracing_mark_write: E|23896
31654  Binder:23896_5-25989 (23896) [005] .... 24572.742228: binder_transaction: transaction=1669424 dest_node=959 dest_proc=786 dest_thread=0 reply=0 flags=0x10 code=0x2
31655  Binder:23896_5-25989 (23896) [005] ...2 24572.742233: binder_set_priority: proc=786 thread=816 old=120 => new=110 desired=110
31656  Binder:23896_5-25989 (23896) [005] d..4 24572.742235: sched_waking: comm=HwBinder:786_2 pid=816 prio=110 target_cpu=007
31657  Binder:23896_5-25989 (23896) [005] d..5 24572.742243: sched_wakeup: comm=HwBinder:786_2 pid=816 prio=110 target_cpu=007
31658  Binder:23896_5-25989 (23896) [005] d..2 24572.742248: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
31659          <idle>-0     (-----) [007] .n.1 24572.742248: cpu_idle: state=4294967295 cpu_id=7
31660          <idle>-0     (-----) [007] d..2 24572.742252: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:786_2 next_pid=816 next_prio=110
31661           <...>-13151 (-----) [005] d..2 24572.742254: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31662<...>-816 ( 786) [007] .... 24572.742256: binder_transaction_received: transaction=1669424
31663          <idle>-0     (-----) [005] d..1 24572.742258: cpu_idle: state=0 cpu_id=5
31664<...>-816 ( 786) [007] ...1 24572.742278: tracing_mark_write: B|786|HIDL::IAllocator::allocate::server
31665<...>-816 ( 786) [007] ...1 24572.742308: tracing_mark_write: B|786|AllocBuffer
31666<...>-816 ( 786) [007] ...1 24572.742314: tracing_mark_write: B|786|ION_IOC_ALLOC size: 9469952
31667  surfaceflinger-23896 (23896) [001] ...1 24572.742391: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
31668<...>-816 ( 786) [007] ...1 24572.742395: tracing_mark_write: E|786
31669  surfaceflinger-23896 (23896) [001] ...1 24572.742395: tracing_mark_write: E|23896
31670<...>-816 ( 786) [007] ...1 24572.742396: tracing_mark_write: B|786|ION_IOC_MAP
31671<...>-816 ( 786) [007] ...1 24572.742406: tracing_mark_write: E|786
31672<...>-816 ( 786) [007] ...1 24572.742409: tracing_mark_write: E|786
31673<...>-816 ( 786) [007] ...1 24572.742410: tracing_mark_write: B|786|AllocBuffer
31674<...>-816 ( 786) [007] ...1 24572.742411: tracing_mark_write: B|786|ION_IOC_ALLOC size: 20480
31675<...>-816 ( 786) [007] ...1 24572.742417: tracing_mark_write: E|786
31676<...>-816 ( 786) [007] ...1 24572.742418: tracing_mark_write: B|786|ION_IOC_MAP
31677<...>-816 ( 786) [007] ...1 24572.742420: tracing_mark_write: E|786
31678<...>-816 ( 786) [007] ...1 24572.742421: tracing_mark_write: E|786
31679  surfaceflinger-23896 (23896) [001] .... 24572.742429: binder_transaction: transaction=1669425 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
31680          <idle>-0     (-----) [005] ...1 24572.742461: cpu_idle: state=4294967295 cpu_id=5
31681          <idle>-0     (-----) [005] d..1 24572.742463: cpu_idle: state=0 cpu_id=5
31682<...>-816 ( 786) [007] ...1 24572.742470: tracing_mark_write: E|786
31683<...>-816 ( 786) [007] .... 24572.742476: binder_transaction: transaction=1669426 dest_node=0 dest_proc=23896 dest_thread=25989 reply=1 flags=0x0 code=0x0
31684<...>-816 ( 786) [007] d..2 24572.742481: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
31685<...>-816 ( 786) [007] d..3 24572.742492: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=007
31686<...>-816 ( 786) [007] .... 24572.742494: binder_set_priority: proc=786 thread=816 old=110 => new=120 desired=120
31687  surfaceflinger-23896 (23896) [001] ...2 24572.742500: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
31688  surfaceflinger-23896 (23896) [001] d..4 24572.742504: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
31689<...>-816 ( 786) [007] ...1 24572.742504: tracing_mark_write: B|786|FreeBuffer
31690<...>-816 ( 786) [007] ...1 24572.742509: tracing_mark_write: E|786
31691<...>-816 ( 786) [007] ...1 24572.742510: tracing_mark_write: B|786|FreeBuffer
31692<...>-816 ( 786) [007] ...1 24572.742511: tracing_mark_write: B|786|UnmapBuffer
31693<...>-816 ( 786) [007] ...1 24572.742519: tracing_mark_write: E|786
31694<...>-816 ( 786) [007] ...1 24572.742522: tracing_mark_write: E|786
31695          <idle>-0     (-----) [005] dnh2 24572.742526: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=005
31696          <idle>-0     (-----) [005] .n.1 24572.742528: cpu_idle: state=4294967295 cpu_id=5
31697          <idle>-0     (-----) [005] d..2 24572.742530: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
31698  HwBinder:598_3-633   (  598) [005] .... 24572.742533: binder_transaction_received: transaction=1669425
31699<...>-816 ( 786) [007] d..2 24572.742534: sched_switch: prev_comm=HwBinder:786_2 prev_pid=816 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
31700  Binder:23896_5-25989 (23896) [007] .... 24572.742536: binder_transaction_received: transaction=1669426
31701  surfaceflinger-23896 (23896) [001] d..2 24572.742538: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
31702          <idle>-0     (-----) [001] d..1 24572.742548: cpu_idle: state=0 cpu_id=1
31703  Binder:23896_5-25989 (23896) [007] ...1 24572.742551: tracing_mark_write: B|23896|HIDL::IMapper::importBuffer::passthrough
31704  HwBinder:598_3-633   (  598) [005] ...1 24572.742552: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
31705  Binder:23896_5-25989 (23896) [007] ...1 24572.742570: tracing_mark_write: E|23896
31706  Binder:23896_5-25989 (23896) [007] ...1 24572.742586: tracing_mark_write: B|23896|HIDL::IMapper::getTransportSize::passthrough
31707  Binder:23896_5-25989 (23896) [007] ...1 24572.742589: tracing_mark_write: E|23896
31708  HwBinder:598_3-633   (  598) [005] ...1 24572.742607: tracing_mark_write: B|598|HIDL::IMapper::importBuffer::passthrough
31709  Binder:23896_5-25989 (23896) [007] .... 24572.742609: binder_transaction: transaction=1669427 dest_node=0 dest_proc=13131 dest_thread=13151 reply=1 flags=0x0 code=0x0
31710  Binder:23896_5-25989 (23896) [007] d..2 24572.742612: sched_waking: comm=RenderThread pid=13151 prio=110 target_cpu=005
31711  Binder:23896_5-25989 (23896) [007] d..3 24572.742621: sched_wakeup: comm=RenderThread pid=13151 prio=110 target_cpu=007
31712  Binder:23896_5-25989 (23896) [007] .... 24572.742622: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
31713  Binder:23896_5-25989 (23896) [007] d..2 24572.742634: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
31714           <...>-13151 (-----) [007] .... 24572.742637: binder_transaction_received: transaction=1669427
31715  HwBinder:598_3-633   (  598) [005] ...1 24572.742637: tracing_mark_write: E|598
31716  HwBinder:598_3-633   (  598) [005] ...1 24572.742656: tracing_mark_write: B|598|HIDL::IMapper::importBuffer::passthrough
31717           <...>-13151 (-----) [007] .... 24572.742657: binder_transaction: transaction=1669428 dest_node=1669126 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x1
31718           <...>-13151 (-----) [007] ...2 24572.742659: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
31719           <...>-13151 (-----) [007] d..4 24572.742660: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=007
31720           <...>-13151 (-----) [007] dn.5 24572.742664: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=007
31721  HwBinder:598_3-633   (  598) [005] ...1 24572.742664: tracing_mark_write: E|598
31722           <...>-13151 (-----) [007] d..2 24572.742667: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
31723  Binder:23896_5-25989 (23896) [007] .... 24572.742668: binder_transaction_received: transaction=1669428
31724  Binder:23896_5-25989 (23896) [007] .... 24572.742683: binder_transaction: transaction=1669429 dest_node=0 dest_proc=13131 dest_thread=13151 reply=1 flags=0x0 code=0x0
31725  Binder:23896_5-25989 (23896) [007] .... 24572.742687: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
31726  HwBinder:598_3-633   (  598) [005] ...1 24572.742696: tracing_mark_write: B|598|HWCSession::PresentDisplay::
31727  Binder:23896_5-25989 (23896) [007] d..2 24572.742699: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
31728           <...>-13151 (-----) [007] .... 24572.742701: binder_transaction_received: transaction=1669429
31729           <...>-13151 (-----) [007] ...1 24572.742722: tracing_mark_write: B|13131|HIDL::IMapper::importBuffer::passthrough
31730           <...>-13151 (-----) [007] ...1 24572.742743: tracing_mark_write: E|13131
31731           <...>-13151 (-----) [007] ...1 24572.742749: tracing_mark_write: B|13131|HIDL::IMapper::validateBufferSize::passthrough
31732           <...>-13151 (-----) [007] ...1 24572.742757: tracing_mark_write: E|13131
31733           <...>-13151 (-----) [007] ...1 24572.742761: tracing_mark_write: B|13131|HIDL::IMapper::getTransportSize::passthrough
31734           <...>-13151 (-----) [007] ...1 24572.742763: tracing_mark_write: E|13131
31735    RenderThread-24437 (24151) [006] d..2 24572.742933: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
31736<...>-23992 ( 23968) [000] d.h2 24572.742959: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
31737<...>-105 ( 105) [004] dnh1 24572.742981: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=004
31738<...>-105 ( 105) [004] d..2 24572.742984: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
31739 kgsl_worker_thr-246   (  246) [004] d..2 24572.742991: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=system next_pid=105 next_prio=120
31740  HwBinder:598_3-633   (  598) [005] ...1 24572.743012: tracing_mark_write: B|598|HWDeviceDRM::Validate::
31741<...>-25296 ( 24741) [006] d.h1 24572.743033: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
31742<...>-25296 ( 24741) [006] d.h2 24572.743040: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
31743<...>-25296 ( 24741) [006] dnh2 24572.743042: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
31744<...>-25296 ( 24741) [006] d..2 24572.743047: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
31745    RenderThread-24437 (24151) [006] d..1 24572.743058: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=004
31746    RenderThread-24437 (24151) [006] d..2 24572.743065: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=004
31747<...>-105 ( 105) [004] d..2 24572.743071: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
31748 kgsl_worker_thr-246   (  246) [004] d..2 24572.743089: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=system next_pid=105 next_prio=120
31749    RenderThread-24437 (24151) [006] .... 24572.743149: binder_transaction: transaction=1669430 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
31750    RenderThread-24437 (24151) [006] d..4 24572.743152: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
31751    RenderThread-24437 (24151) [006] d..5 24572.743161: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
31752    RenderThread-24437 (24151) [006] d..2 24572.743166: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
31753<...>-105 ( 105) [004] d.h1 24572.743190: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=004
31754<...>-105 ( 105) [004] dnh2 24572.743193: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=004
31755<...>-105 ( 105) [004] d..2 24572.743197: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
31756 kgsl_worker_thr-246   (  246) [004] d..2 24572.743227: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
31757          <idle>-0     (-----) [002] ...1 24572.743294: cpu_idle: state=4294967295 cpu_id=2
31758           <...>-13151 (-----) [007] d..2 24572.743294: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
31759          <idle>-0     (-----) [002] d..1 24572.743297: cpu_idle: state=0 cpu_id=2
31760<...>-23992 ( 23968) [000] d.h3 24572.743299: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=004
31761          <idle>-0     (-----) [007] d..1 24572.743302: cpu_idle: state=0 cpu_id=7
31762          <idle>-0     (-----) [007] dnh2 24572.743321: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
31763          <idle>-0     (-----) [007] .n.1 24572.743323: cpu_idle: state=4294967295 cpu_id=7
31764          <idle>-0     (-----) [007] d..2 24572.743326: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
31765 kgsl_worker_thr-246   (  246) [007] d..2 24572.743333: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
31766          <idle>-0     (-----) [007] d..1 24572.743335: cpu_idle: state=0 cpu_id=7
31767          <idle>-0     (-----) [007] d.h2 24572.743390: sched_waking: comm=RenderThread pid=13151 prio=110 target_cpu=007
31768          <idle>-0     (-----) [007] d.h3 24572.743394: sched_blocked_reason: pid=13151 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
31769          <idle>-0     (-----) [007] dnh3 24572.743395: sched_wakeup: comm=RenderThread pid=13151 prio=110 target_cpu=007
31770          <idle>-0     (-----) [007] .n.1 24572.743398: cpu_idle: state=4294967295 cpu_id=7
31771          <idle>-0     (-----) [007] d..2 24572.743400: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=110
31772           <...>-13151 (-----) [007] d..1 24572.743410: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
31773           <...>-13151 (-----) [007] d..2 24572.743418: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=004
31774<...>-105 ( 105) [004] d..2 24572.743425: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
31775 kgsl_worker_thr-246   (  246) [004] d..2 24572.743437: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=system next_pid=105 next_prio=120
31776           <...>-13151 (-----) [007] .... 24572.743474: binder_transaction: transaction=1669431 dest_node=1669126 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
31777           <...>-13151 (-----) [007] ...2 24572.743478: binder_set_priority: proc=23896 thread=23986 old=120 => new=110 desired=110
31778           <...>-13151 (-----) [007] d..4 24572.743480: sched_waking: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=001
31779           <...>-13151 (-----) [007] dn.5 24572.743492: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=007
31780           <...>-13151 (-----) [007] dnh5 24572.743517: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
31781           <...>-13151 (-----) [007] dnh6 24572.743525: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
31782<...>-105 ( 105) [004] d..2 24572.743528: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
31783           <...>-13151 (-----) [007] dnh5 24572.743529: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
31784         sugov:4-560   (  560) [004] d..2 24572.743536: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
31785           <...>-13151 (-----) [007] d..2 24572.743537: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=110
31786<...>-105 ( 105) [004] d.h3 24572.743538: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=004
31787          <idle>-0     (-----) [002] dnh2 24572.743540: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
31788<...>-105 ( 105) [004] dnh4 24572.743541: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=004
31789  Binder:23896_3-23986 (23896) [007] .... 24572.743541: binder_transaction_received: transaction=1669431
31790          <idle>-0     (-----) [002] .n.1 24572.743544: cpu_idle: state=4294967295 cpu_id=2
31791<...>-105 ( 105) [004] d..2 24572.743544: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
31792          <idle>-0     (-----) [002] d..2 24572.743548: 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
31793 kgsl_worker_thr-246   (  246) [004] d..2 24572.743555: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
31794         sugov:0-559   (  559) [002] d..2 24572.743563: 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
31795          <idle>-0     (-----) [002] d..1 24572.743569: cpu_idle: state=0 cpu_id=2
31796<...>-105 ( 105) [004] d..2 24572.743569: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
31797          <idle>-0     (-----) [004] d..1 24572.743575: cpu_idle: state=0 cpu_id=4
31798  Binder:23896_3-23986 (23896) [007] .... 24572.743611: binder_transaction: transaction=1669432 dest_node=0 dest_proc=13131 dest_thread=13151 reply=1 flags=0x0 code=0x0
31799  Binder:23896_3-23986 (23896) [007] .... 24572.743614: binder_set_priority: proc=23896 thread=23986 old=110 => new=120 desired=120
31800  Binder:23896_3-23986 (23896) [007] d..2 24572.743628: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=13151 next_prio=110
31801           <...>-13151 (-----) [007] .... 24572.743630: binder_transaction_received: transaction=1669432
31802           <...>-13151 (-----) [007] d..1 24572.743668: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
31803           <...>-13151 (-----) [007] d..2 24572.743676: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
31804          <idle>-0     (-----) [004] .n.1 24572.743681: cpu_idle: state=4294967295 cpu_id=4
31805           <...>-13151 (-----) [007] d..2 24572.743683: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
31806          <idle>-0     (-----) [004] d..2 24572.743684: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
31807          <idle>-0     (-----) [007] d..1 24572.743688: cpu_idle: state=0 cpu_id=7
31808  HwBinder:598_3-633   (  598) [005] ...1 24572.743692: tracing_mark_write: E|598
31809<...>-23992 ( 23968) [000] d..2 24572.743743: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
31810  HwBinder:598_3-633   (  598) [005] ...1 24572.743750: tracing_mark_write: B|598|HWDeviceDRM::Commit::
31811  HwBinder:598_3-633   (  598) [005] ...1 24572.743753: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
31812<...>-23992 ( 23968) [000] d..3 24572.743762: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
31813           <...>-13131 (-----) [004] .... 24572.743803: binder_transaction: transaction=1669433 dest_node=1669030 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xc
31814           <...>-13131 (-----) [004] ...2 24572.743816: binder_set_priority: proc=23968 thread=23981 old=120 => new=110 desired=110
31815           <...>-13131 (-----) [004] d..4 24572.743817: sched_waking: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=000
31816           <...>-13131 (-----) [004] d..5 24572.743833: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=007
31817          <idle>-0     (-----) [007] .n.1 24572.743837: cpu_idle: state=4294967295 cpu_id=7
31818<...>-23992 ( 23968) [000] d..2 24572.743838: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=000
31819          <idle>-0     (-----) [007] d..2 24572.743852: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=110
31820  Binder:23968_1-23981 (23968) [007] .... 24572.743856: binder_transaction_received: transaction=1669433
31821           <...>-13131 (-----) [004] d..2 24572.743856: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
31822          <idle>-0     (-----) [004] d..1 24572.743862: cpu_idle: state=0 cpu_id=4
31823<...>-23992 ( 23968) [000] d..3 24572.743869: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=001
31824          <idle>-0     (-----) [001] .n.1 24572.743875: cpu_idle: state=4294967295 cpu_id=1
31825          <idle>-0     (-----) [001] d..2 24572.743882: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=statsd.writer next_pid=1044 next_prio=120
31826  HwBinder:598_3-633   (  598) [005] d..2 24572.743977: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
31827  HwBinder:598_3-633   (  598) [005] d..3 24572.743991: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
31828          <idle>-0     (-----) [004] .n.1 24572.743995: cpu_idle: state=4294967295 cpu_id=4
31829  Binder:23968_1-23981 (23968) [007] d..2 24572.743999: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
31830          <idle>-0     (-----) [004] d..2 24572.743999: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
31831          <idle>-0     (-----) [007] d..1 24572.744004: cpu_idle: state=0 cpu_id=7
31832  HwBinder:598_3-633   (  598) [005] ...1 24572.744024: tracing_mark_write: E|598
31833  HwBinder:598_3-633   (  598) [005] ...1 24572.744025: tracing_mark_write: E|598
31834  HwBinder:598_3-633   (  598) [005] ...1 24572.744049: tracing_mark_write: E|598
31835<...>-23992 ( 23968) [000] d..2 24572.744072: sched_switch: prev_comm=android.bg prev_pid=23992 prev_prio=130 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
31836  HwBinder:598_3-633   (  598) [005] ...1 24572.744073: tracing_mark_write: E|598
31837  HwBinder:598_3-633   (  598) [005] .... 24572.744079: binder_transaction: transaction=1669434 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
31838  HwBinder:598_3-633   (  598) [005] d..2 24572.744087: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
31839<...>-25296 ( 24741) [006] .... 24572.744093: binder_transaction: transaction=1669435 dest_node=1669365 dest_proc=24133 dest_thread=0 reply=0 flags=0x11 code=0x1
31840<...>-25296 ( 24741) [006] d..4 24572.744098: sched_waking: comm=Binder:24133_4 pid=24431 prio=120 target_cpu=000
31841  HwBinder:598_3-633   (  598) [005] .... 24572.744100: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
31842          <idle>-0     (-----) [002] dnh2 24572.744106: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
31843<...>-1044 ( 887) [001] d..2 24572.744108: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
31844          <idle>-0     (-----) [002] .n.1 24572.744110: cpu_idle: state=4294967295 cpu_id=2
31845          <idle>-0     (-----) [002] d..2 24572.744115: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
31846          <idle>-0     (-----) [001] d..1 24572.744116: cpu_idle: state=0 cpu_id=1
31847  surfaceflinger-23896 (23896) [002] .... 24572.744119: binder_transaction_received: transaction=1669434
31848          <idle>-0     (-----) [001] dnh2 24572.744125: sched_wakeup: comm=Binder:24133_4 pid=24431 prio=120 target_cpu=001
31849          <idle>-0     (-----) [001] .n.1 24572.744129: cpu_idle: state=4294967295 cpu_id=1
31850  HwBinder:598_3-633   (  598) [005] d..2 24572.744131: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
31851  Binder:23896_5-25989 (23896) [005] .... 24572.744134: binder_transaction_received: transaction=1669430
31852          <idle>-0     (-----) [001] d..2 24572.744135: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24133_4 next_pid=24431 next_prio=120
31853<...>-24431 ( 24133) [001] .... 24572.744142: binder_transaction_received: transaction=1669435
31854     logd.writer-563   (  555) [000] d..2 24572.744166: 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
31855          <idle>-0     (-----) [000] d..1 24572.744184: cpu_idle: state=0 cpu_id=0
31856  Binder:23896_5-25989 (23896) [005] .... 24572.744190: binder_transaction: transaction=1669436 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
31857  Binder:23896_5-25989 (23896) [005] d..2 24572.744193: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
31858          <idle>-0     (-----) [007] ...1 24572.744197: cpu_idle: state=4294967295 cpu_id=7
31859          <idle>-0     (-----) [007] d..1 24572.744199: cpu_idle: state=0 cpu_id=7
31860<...>-25296 ( 24741) [006] d..1 24572.744203: sched_waking: comm=lowpool[8] pid=27168 prio=130 target_cpu=001
31861  Binder:23896_5-25989 (23896) [005] d..3 24572.744205: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
31862          <idle>-0     (-----) [007] .n.1 24572.744209: cpu_idle: state=4294967295 cpu_id=7
31863<...>-25296 ( 24741) [006] d..2 24572.744217: sched_wakeup: comm=lowpool[8] pid=27168 prio=130 target_cpu=007
31864          <idle>-0     (-----) [007] d..2 24572.744220: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
31865    RenderThread-24437 (24151) [007] .... 24572.744223: binder_transaction_received: transaction=1669436
31866  Binder:23896_5-25989 (23896) [005] d..2 24572.744231: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31867<...>-25296 ( 24741) [006] d.H3 24572.744251: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
31868<...>-25296 ( 24741) [006] d.H4 24572.744264: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
31869<...>-25296 ( 24741) [006] d.H3 24572.744267: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
31870    RenderThread-24437 (24151) [007] d..2 24572.744268: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
31871          <idle>-0     (-----) [005] dns3 24572.744270: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
31872          <idle>-0     (-----) [000] ...1 24572.744271: cpu_idle: state=4294967295 cpu_id=0
31873          <idle>-0     (-----) [000] d..1 24572.744274: cpu_idle: state=0 cpu_id=0
31874          <idle>-0     (-----) [005] dns4 24572.744275: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
31875<...>-25296 ( 24741) [006] d..1 24572.744281: sched_waking: comm=lowpool[8] pid=27168 prio=130 target_cpu=007
31876<...>-27168 ( 24741) [007] d..2 24572.744281: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
31877          <idle>-0     (-----) [005] d..2 24572.744282: 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
31878          <idle>-0     (-----) [007] d..1 24572.744285: cpu_idle: state=0 cpu_id=7
31879          <idle>-0     (-----) [003] dnh2 24572.744286: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
31880          <idle>-0     (-----) [007] .n.1 24572.744286: cpu_idle: state=4294967295 cpu_id=7
31881         sugov:4-560   (  560) [005] d..2 24572.744287: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
31882<...>-25296 ( 24741) [006] d..2 24572.744288: sched_wakeup: comm=lowpool[8] pid=27168 prio=130 target_cpu=007
31883          <idle>-0     (-----) [003] .n.1 24572.744290: cpu_idle: state=4294967295 cpu_id=3
31884          <idle>-0     (-----) [007] d..2 24572.744291: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
31885          <idle>-0     (-----) [003] d..2 24572.744296: 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
31886     rcu_preempt-7     (    7) [005] d..2 24572.744299: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31887          <idle>-0     (-----) [005] d..1 24572.744305: cpu_idle: state=0 cpu_id=5
31888         sugov:0-559   (  559) [003] d..2 24572.744309: 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
31889          <idle>-0     (-----) [003] d..1 24572.744315: cpu_idle: state=0 cpu_id=3
31890          <idle>-0     (-----) [000] d.h3 24572.744354: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=004
31891<...>-25296 ( 24741) [006] d..2 24572.744366: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
31892          <idle>-0     (-----) [005] dnh2 24572.744373: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
31893          <idle>-0     (-----) [005] .n.1 24572.744375: cpu_idle: state=4294967295 cpu_id=5
31894          <idle>-0     (-----) [006] d..1 24572.744375: cpu_idle: state=0 cpu_id=6
31895          <idle>-0     (-----) [000] ...1 24572.744376: cpu_idle: state=4294967295 cpu_id=0
31896          <idle>-0     (-----) [005] d..2 24572.744378: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
31897          <idle>-0     (-----) [000] d..1 24572.744379: cpu_idle: state=0 cpu_id=0
31898 kgsl_worker_thr-246   (  246) [005] d..2 24572.744404: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31899          <idle>-0     (-----) [005] d..1 24572.744406: cpu_idle: state=0 cpu_id=5
31900<...>-24431 ( 24133) [001] d..3 24572.744521: sched_waking: comm=putmethod.latin pid=24133 prio=120 target_cpu=000
31901<...>-24431 ( 24133) [001] d..4 24572.744537: sched_wakeup: comm=putmethod.latin pid=24133 prio=120 target_cpu=000
31902<...>-27168 ( 24741) [007] .... 24572.744539: binder_transaction: transaction=1669437 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x24
31903          <idle>-0     (-----) [000] .n.1 24572.744542: cpu_idle: state=4294967295 cpu_id=0
31904<...>-27168 ( 24741) [007] d..4 24572.744547: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=006
31905          <idle>-0     (-----) [000] d..2 24572.744550: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=putmethod.latin next_pid=24133 next_prio=120
31906<...>-27168 ( 24741) [007] dn.5 24572.744557: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
31907<...>-27168 ( 24741) [007] d..2 24572.744560: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
31908<...>-12589 ( 23968) [007] .... 24572.744564: binder_transaction_received: transaction=1669437
31909  surfaceflinger-23896 (23896) [002] ...1 24572.744586: tracing_mark_write: B|23896|HIDL::IComposerClient::getActiveConfig::client
31910  surfaceflinger-23896 (23896) [002] ...1 24572.744590: tracing_mark_write: E|23896
31911          <idle>-0     (-----) [005] ...1 24572.744596: cpu_idle: state=4294967295 cpu_id=5
31912          <idle>-0     (-----) [005] d..1 24572.744597: cpu_idle: state=0 cpu_id=5
31913  surfaceflinger-23896 (23896) [002] .... 24572.744609: binder_transaction: transaction=1669438 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x7
31914  surfaceflinger-23896 (23896) [002] ...2 24572.744614: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
31915  surfaceflinger-23896 (23896) [002] d..4 24572.744617: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=005
31916<...>-24431 ( 24133) [001] d..2 24572.744622: sched_switch: prev_comm=Binder:24133_4 prev_pid=24431 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
31917          <idle>-0     (-----) [006] ...1 24572.744631: cpu_idle: state=4294967295 cpu_id=6
31918          <idle>-0     (-----) [005] dnh2 24572.744631: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=005
31919          <idle>-0     (-----) [001] d..1 24572.744632: cpu_idle: state=0 cpu_id=1
31920          <idle>-0     (-----) [006] d..1 24572.744632: cpu_idle: state=0 cpu_id=6
31921          <idle>-0     (-----) [005] .n.1 24572.744633: cpu_idle: state=4294967295 cpu_id=5
31922          <idle>-0     (-----) [005] d..2 24572.744636: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
31923  HwBinder:598_3-633   (  598) [005] .... 24572.744638: binder_transaction_received: transaction=1669438
31924  surfaceflinger-23896 (23896) [002] d..2 24572.744641: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
31925          <idle>-0     (-----) [002] d..1 24572.744650: cpu_idle: state=0 cpu_id=2
31926  HwBinder:598_3-633   (  598) [005] ...1 24572.744651: tracing_mark_write: B|598|HIDL::IComposerClient::getActiveConfig::server
31927  HwBinder:598_3-633   (  598) [005] ...1 24572.744660: tracing_mark_write: E|598
31928  HwBinder:598_3-633   (  598) [005] .... 24572.744663: binder_transaction: transaction=1669439 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
31929  HwBinder:598_3-633   (  598) [005] d..2 24572.744665: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
31930  HwBinder:598_3-633   (  598) [005] .... 24572.744671: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
31931          <idle>-0     (-----) [002] dnh2 24572.744679: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
31932          <idle>-0     (-----) [002] .n.1 24572.744683: cpu_idle: state=4294967295 cpu_id=2
31933  HwBinder:598_3-633   (  598) [005] d..2 24572.744687: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31934          <idle>-0     (-----) [002] d..2 24572.744688: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
31935          <idle>-0     (-----) [005] d..1 24572.744691: cpu_idle: state=0 cpu_id=5
31936  surfaceflinger-23896 (23896) [002] .... 24572.744691: binder_transaction_received: transaction=1669439
31937 putmethod.latin-24133 (24133) [000] d..2 24572.744700: sched_switch: prev_comm=putmethod.latin prev_pid=24133 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
31938          <idle>-0     (-----) [000] d..1 24572.744709: cpu_idle: state=0 cpu_id=0
31939<...>-12589 ( 23968) [007] .... 24572.744735: binder_transaction: transaction=1669440 dest_node=0 dest_proc=24741 dest_thread=27168 reply=1 flags=0x0 code=0x0
31940<...>-12589 ( 23968) [007] d..2 24572.744751: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
31941<...>-27168 ( 24741) [007] .... 24572.744753: binder_transaction_received: transaction=1669440
31942  surfaceflinger-23896 (23896) [002] d..1 24572.744810: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=007
31943<...>-27168 ( 24741) [007] d..2 24572.744826: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
31944          <idle>-0     (-----) [007] d..1 24572.744831: cpu_idle: state=0 cpu_id=7
31945          <idle>-0     (-----) [005] dnh2 24572.744834: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
31946          <idle>-0     (-----) [005] .n.1 24572.744836: cpu_idle: state=4294967295 cpu_id=5
31947          <idle>-0     (-----) [005] d..2 24572.744839: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
31948  surfaceflinger-23896 (23896) [002] d..2 24572.744848: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
31949<...>-23903 ( 23896) [005] .... 24572.744858: binder_transaction: transaction=1669441 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
31950          <idle>-0     (-----) [002] d..1 24572.744858: cpu_idle: state=0 cpu_id=2
31951<...>-23903 ( 23896) [005] d..2 24572.745004: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=007
31952<...>-23903 ( 23896) [005] d..3 24572.745013: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=005
31953<...>-23903 ( 23896) [005] .... 24572.745014: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
31954          <idle>-0     (-----) [007] ...1 24572.745022: cpu_idle: state=4294967295 cpu_id=7
31955          <idle>-0     (-----) [007] d..1 24572.745023: cpu_idle: state=0 cpu_id=7
31956<...>-23903 ( 23896) [005] d..2 24572.745034: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
31957<...>-24041 ( 23968) [005] .... 24572.745037: binder_transaction_received: transaction=1669441
31958<...>-24041 ( 23968) [005] .... 24572.745071: binder_transaction: transaction=1669446 dest_node=1669444 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
31959<...>-24041 ( 23968) [005] ...2 24572.745072: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
31960<...>-24041 ( 23968) [005] d..4 24572.745073: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
31961<...>-24041 ( 23968) [005] dn.5 24572.745077: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
31962<...>-24041 ( 23968) [005] d..2 24572.745079: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
31963<...>-23903 ( 23896) [005] .... 24572.745081: binder_transaction_received: transaction=1669446
31964<...>-23903 ( 23896) [005] .... 24572.745086: binder_transaction: transaction=1669447 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x8 code=0x0
31965<...>-23903 ( 23896) [005] .... 24572.745088: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
31966<...>-23903 ( 23896) [005] d..2 24572.745096: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
31967<...>-24041 ( 23968) [005] .... 24572.745097: binder_transaction_received: transaction=1669447
31968<...>-24041 ( 23968) [005] .... 24572.745606: binder_transaction: transaction=1669448 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
31969<...>-24041 ( 23968) [005] d..4 24572.745610: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
31970<...>-24041 ( 23968) [005] d..5 24572.745619: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
31971          <idle>-0     (-----) [006] .n.1 24572.745624: cpu_idle: state=4294967295 cpu_id=6
31972          <idle>-0     (-----) [006] d..2 24572.745628: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
31973<...>-24376 ( 24151) [006] .... 24572.745631: binder_transaction_received: transaction=1669448
31974<...>-24041 ( 23968) [005] d..3 24572.745666: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=006
31975<...>-24041 ( 23968) [005] d..4 24572.745678: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=007
31976          <idle>-0     (-----) [007] .n.1 24572.745682: cpu_idle: state=4294967295 cpu_id=7
31977          <idle>-0     (-----) [007] d..2 24572.745686: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
31978<...>-24376 ( 24151) [006] d..3 24572.745695: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
31979<...>-24376 ( 24151) [006] d..4 24572.745708: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
31980<...>-24376 ( 24151) [006] d.h3 24572.745728: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
31981<...>-23994 ( 23968) [007] d..3 24572.745730: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=006
31982<...>-24376 ( 24151) [006] dnh4 24572.745737: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
31983<...>-24376 ( 24151) [006] dnh3 24572.745737: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
31984<...>-23994 ( 23968) [007] d..4 24572.745740: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=006
31985          <idle>-0     (-----) [001] ...1 24572.745743: cpu_idle: state=4294967295 cpu_id=1
31986<...>-24376 ( 24151) [006] d..2 24572.745745: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
31987          <idle>-0     (-----) [001] d..1 24572.745745: cpu_idle: state=0 cpu_id=1
31988          <idle>-0     (-----) [003] dnh2 24572.745749: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
31989         sugov:4-560   (  560) [006] d..2 24572.745749: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
31990          <idle>-0     (-----) [003] .n.1 24572.745752: cpu_idle: state=4294967295 cpu_id=3
31991<...>-23994 ( 23968) [007] d..2 24572.745755: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
31992          <idle>-0     (-----) [003] d..2 24572.745757: 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
31993         sugov:0-559   (  559) [003] d..2 24572.745767: 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
31994<...>-24151 ( 24151) [007] d..2 24572.745772: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
31995          <idle>-0     (-----) [003] d..1 24572.745772: cpu_idle: state=0 cpu_id=3
31996          <idle>-0     (-----) [007] d..1 24572.745776: cpu_idle: state=0 cpu_id=7
31997<...>-23968 ( 23968) [006] .... 24572.745804: binder_transaction: transaction=1669449 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
31998<...>-23968 ( 23968) [006] d..2 24572.745824: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
31999<...>-24376 ( 24151) [006] d..1 24572.745829: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
32000<...>-24376 ( 24151) [006] d..2 24572.745835: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
32001<...>-24041 ( 23968) [005] .... 24572.745836: binder_transaction: transaction=1669450 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
32002          <idle>-0     (-----) [007] .n.1 24572.745840: cpu_idle: state=4294967295 cpu_id=7
32003<...>-24041 ( 23968) [005] ...2 24572.745842: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
32004          <idle>-0     (-----) [007] d..2 24572.745843: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
32005<...>-24041 ( 23968) [005] d..4 24572.745843: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
32006<...>-24041 ( 23968) [005] dn.5 24572.745848: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
32007<...>-24041 ( 23968) [005] d..2 24572.745851: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
32008<...>-23903 ( 23896) [005] .... 24572.745853: binder_transaction_received: transaction=1669450
32009<...>-24376 ( 24151) [006] d..4 24572.745855: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=007
32010<...>-24376 ( 24151) [006] d..5 24572.745864: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=006
32011<...>-24376 ( 24151) [006] .... 24572.745866: binder_transaction_received: transaction=1669449
32012<...>-24151 ( 24151) [007] d..2 24572.745886: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
32013<...>-23903 ( 23896) [005] .... 24572.745889: binder_transaction: transaction=1669451 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
32014          <idle>-0     (-----) [007] d..1 24572.745890: cpu_idle: state=0 cpu_id=7
32015<...>-24376 ( 24151) [006] d..3 24572.745890: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
32016<...>-23903 ( 23896) [005] .... 24572.745891: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
32017<...>-24376 ( 24151) [006] d..4 24572.745897: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
32018          <idle>-0     (-----) [007] .n.1 24572.745901: cpu_idle: state=4294967295 cpu_id=7
32019<...>-23903 ( 23896) [005] d..2 24572.745904: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
32020          <idle>-0     (-----) [007] d..2 24572.745905: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
32021<...>-24041 ( 23968) [005] .... 24572.745906: binder_transaction_received: transaction=1669451
32022<...>-24376 ( 24151) [006] d..2 24572.745909: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
32023<...>-24177 ( 24151) [006] d..2 24572.745916: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32024          <idle>-0     (-----) [006] d..1 24572.745921: cpu_idle: state=0 cpu_id=6
32025<...>-24151 ( 24151) [007] d..2 24572.745928: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
32026          <idle>-0     (-----) [007] d..1 24572.745932: cpu_idle: state=0 cpu_id=7
32027          <idle>-0     (-----) [000] ...1 24572.745969: cpu_idle: state=4294967295 cpu_id=0
32028          <idle>-0     (-----) [000] d..1 24572.745971: cpu_idle: state=0 cpu_id=0
32029          <idle>-0     (-----) [007] ...1 24572.746122: cpu_idle: state=4294967295 cpu_id=7
32030          <idle>-0     (-----) [007] d..1 24572.746124: cpu_idle: state=0 cpu_id=7
32031          <idle>-0     (-----) [002] ...1 24572.746130: cpu_idle: state=4294967295 cpu_id=2
32032          <idle>-0     (-----) [002] d..1 24572.746133: cpu_idle: state=0 cpu_id=2
32033          <idle>-0     (-----) [006] ...1 24572.746157: cpu_idle: state=4294967295 cpu_id=6
32034          <idle>-0     (-----) [006] d..1 24572.746159: cpu_idle: state=0 cpu_id=6
32035<...>-24041 ( 23968) [005] d..3 24572.746182: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=007
32036<...>-24041 ( 23968) [005] d..4 24572.746195: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
32037          <idle>-0     (-----) [006] .n.1 24572.746199: cpu_idle: state=4294967295 cpu_id=6
32038          <idle>-0     (-----) [006] d..2 24572.746202: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
32039<...>-24073 ( 23968) [006] d..2 24572.746223: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32040          <idle>-0     (-----) [006] d..1 24572.746225: cpu_idle: state=0 cpu_id=6
32041<...>-24041 ( 23968) [005] d..1 24572.746237: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=005
32042<...>-24041 ( 23968) [005] d..2 24572.746249: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=006
32043          <idle>-0     (-----) [006] .n.1 24572.746254: cpu_idle: state=4294967295 cpu_id=6
32044          <idle>-0     (-----) [006] d..2 24572.746257: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
32045<...>-24041 ( 23968) [005] d..3 24572.746294: sched_waking: comm=RenderThread pid=27905 prio=116 target_cpu=007
32046<...>-24003 ( 23968) [006] d..1 24572.746294: sched_waking: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=007
32047<...>-24041 ( 23968) [005] d..4 24572.746303: sched_wakeup: comm=RenderThread pid=27905 prio=116 target_cpu=007
32048<...>-24003 ( 23968) [006] d..2 24572.746305: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=007
32049          <idle>-0     (-----) [007] .n.1 24572.746307: cpu_idle: state=4294967295 cpu_id=7
32050          <idle>-0     (-----) [007] d..2 24572.746311: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27905 next_prio=116
32051<...>-24041 ( 23968) [005] d..2 24572.746325: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
32052          <idle>-0     (-----) [005] d..1 24572.746331: cpu_idle: state=0 cpu_id=5
32053<...>-24003 ( 23968) [006] d..2 24572.746375: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=110
32054  Binder:23968_1-23981 (23968) [006] .... 24572.746420: binder_transaction: transaction=1669452 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
32055  Binder:23968_1-23981 (23968) [006] d..2 24572.746422: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
32056  Binder:23968_1-23981 (23968) [006] d..3 24572.746430: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
32057  Binder:23968_1-23981 (23968) [006] .... 24572.746431: binder_set_priority: proc=23968 thread=23981 old=110 => new=120 desired=120
32058  Binder:23968_1-23981 (23968) [006] d..2 24572.746435: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
32059           <...>-13131 (-----) [006] .... 24572.746438: binder_transaction_received: transaction=1669452
32060           <...>-13131 (-----) [006] d..1 24572.746525: sched_waking: comm=MonitoringInstr pid=13149 prio=120 target_cpu=007
32061           <...>-13131 (-----) [006] d..2 24572.746537: sched_wakeup: comm=MonitoringInstr pid=13149 prio=120 target_cpu=005
32062          <idle>-0     (-----) [005] .n.1 24572.746542: cpu_idle: state=4294967295 cpu_id=5
32063          <idle>-0     (-----) [005] d..2 24572.746546: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=MonitoringInstr next_pid=13149 next_prio=120
32064           <...>-13149 (-----) [005] d..1 24572.746587: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=001
32065           <...>-13149 (-----) [005] d..2 24572.746600: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=004
32066           <...>-13149 (-----) [005] d.h3 24572.746621: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
32067           <...>-13149 (-----) [005] dnh4 24572.746627: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
32068           <...>-13149 (-----) [005] dnh3 24572.746628: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
32069           <...>-13149 (-----) [005] d..2 24572.746636: sched_switch: prev_comm=MonitoringInstr prev_pid=13149 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
32070         sugov:4-560   (  560) [005] d..2 24572.746639: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=MonitoringInstr next_pid=13149 next_prio=120
32071          <idle>-0     (-----) [003] dnh2 24572.746640: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
32072          <idle>-0     (-----) [003] .n.1 24572.746643: cpu_idle: state=4294967295 cpu_id=3
32073          <idle>-0     (-----) [003] d..2 24572.746647: 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
32074           <...>-13131 (-----) [006] .... 24572.746649: binder_transaction: transaction=1669453 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x11 code=0x10
32075           <...>-13131 (-----) [006] d..4 24572.746653: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
32076           <...>-13131 (-----) [006] d..5 24572.746659: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
32077         sugov:0-559   (  559) [003] d..2 24572.746672: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
32078           <...>-13131 (-----) [006] d..2 24572.746678: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32079          <idle>-0     (-----) [006] d..1 24572.746683: cpu_idle: state=0 cpu_id=6
32080  Binder:23968_1-23981 (23968) [003] d..2 24572.746733: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
32081          <idle>-0     (-----) [003] d..1 24572.746740: cpu_idle: state=0 cpu_id=3
32082           <...>-13149 (-----) [005] d..2 24572.746855: sched_switch: prev_comm=MonitoringInstr prev_pid=13149 prev_prio=120 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
32083          <idle>-0     (-----) [005] d..1 24572.746864: cpu_idle: state=0 cpu_id=5
32084          <idle>-0     (-----) [006] ...1 24572.746909: cpu_idle: state=4294967295 cpu_id=6
32085          <idle>-0     (-----) [006] d..1 24572.746911: cpu_idle: state=0 cpu_id=6
32086          <idle>-0     (-----) [005] ...1 24572.747144: cpu_idle: state=4294967295 cpu_id=5
32087          <idle>-0     (-----) [005] d..1 24572.747145: cpu_idle: state=0 cpu_id=5
32088 crtc_commit:111-253   (  253) [004] d.s2 24572.747622: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=004
32089 crtc_commit:111-253   (  253) [004] d.s3 24572.747634: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=005
32090          <idle>-0     (-----) [005] .n.1 24572.747637: cpu_idle: state=4294967295 cpu_id=5
32091          <idle>-0     (-----) [005] d..2 24572.747641: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
32092       rcu_sched-8     (    8) [005] d..2 24572.747649: sched_waking: comm=rcuos/6 pid=62 prio=120 target_cpu=007
32093       rcu_sched-8     (    8) [005] d..3 24572.747661: sched_wakeup: comm=rcuos/6 pid=62 prio=120 target_cpu=006
32094          <idle>-0     (-----) [006] .n.1 24572.747665: cpu_idle: state=4294967295 cpu_id=6
32095          <idle>-0     (-----) [006] d..2 24572.747669: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuos/6 next_pid=62 next_prio=120
32096       rcu_sched-8     (    8) [005] d..2 24572.747670: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
32097          <idle>-0     (-----) [005] d..1 24572.747673: cpu_idle: state=0 cpu_id=5
32098<...>-62 ( 62) [006] d..2 24572.747676: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=005
32099<...>-62 ( 62) [006] d..3 24572.747682: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=005
32100          <idle>-0     (-----) [005] .n.1 24572.747687: cpu_idle: state=4294967295 cpu_id=5
32101<...>-62 ( 62) [006] d..2 24572.747688: sched_switch: prev_comm=rcuos/6 prev_pid=62 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32102          <idle>-0     (-----) [005] d..2 24572.747690: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
32103          <idle>-0     (-----) [006] d..1 24572.747691: cpu_idle: state=0 cpu_id=6
32104       rcu_sched-8     (    8) [005] d..2 24572.747699: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
32105          <idle>-0     (-----) [005] d..1 24572.747701: cpu_idle: state=0 cpu_id=5
32106 crtc_commit:111-253   (  253) [004] .... 24572.747768: clk_set_rate: disp_cc_mdss_mdp_clk_src 150000000
32107 crtc_commit:111-253   (  253) [004] .... 24572.747795: clk_set_rate: disp_cc_mdss_mdp_lut_clk 0
32108 crtc_commit:111-253   (  253) [004] .... 24572.747796: clk_set_rate: disp_cc_mdss_mdp_clk 150000000
32109 crtc_commit:111-253   (  253) [004] d..2 24572.747818: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
32110           <...>-13147 (-----) [004] d..3 24572.747866: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
32111           <...>-13147 (-----) [004] d..4 24572.747877: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
32112          <idle>-0     (-----) [005] .n.1 24572.747882: cpu_idle: state=4294967295 cpu_id=5
32113          <idle>-0     (-----) [005] d..2 24572.747884: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
32114           <...>-13147 (-----) [004] d..2 24572.747896: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
32115          <idle>-0     (-----) [004] d..1 24572.747901: cpu_idle: state=0 cpu_id=4
32116           <...>-13131 (-----) [005] d..1 24572.747917: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=004
32117           <...>-13131 (-----) [005] d..2 24572.747924: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=004
32118          <idle>-0     (-----) [004] .n.1 24572.747929: cpu_idle: state=4294967295 cpu_id=4
32119          <idle>-0     (-----) [004] d..2 24572.747933: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
32120           <...>-13131 (-----) [005] d..2 24572.747936: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
32121          <idle>-0     (-----) [005] d..1 24572.747940: cpu_idle: state=0 cpu_id=5
32122          <idle>-0     (-----) [005] ...1 24572.748180: cpu_idle: state=4294967295 cpu_id=5
32123          <idle>-0     (-----) [005] d..1 24572.748181: cpu_idle: state=0 cpu_id=5
32124           <...>-13147 (-----) [004] ...1 24572.748226: tracing_mark_write: B|13131|[NN_LA_PO]HDRNet_QUANT8
32125           <...>-13147 (-----) [004] d..3 24572.748236: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
32126           <...>-13147 (-----) [004] d..4 24572.748244: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
32127          <idle>-0     (-----) [005] .n.1 24572.748248: cpu_idle: state=4294967295 cpu_id=5
32128          <idle>-0     (-----) [005] d..2 24572.748251: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
32129           <...>-13147 (-----) [004] d..2 24572.748257: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
32130          <idle>-0     (-----) [004] d..1 24572.748262: cpu_idle: state=0 cpu_id=4
32131          <idle>-0     (-----) [004] ...1 24572.748453: cpu_idle: state=4294967295 cpu_id=4
32132          <idle>-0     (-----) [004] d..1 24572.748454: cpu_idle: state=0 cpu_id=4
32133           <...>-13131 (-----) [005] d.s2 24572.750895: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
32134<...>-27905 ( 23968) [007] d.s3 24572.750897: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=005
32135           <...>-13131 (-----) [005] d.s3 24572.750912: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
32136<...>-27905 ( 23968) [007] d.s4 24572.750914: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
32137          <idle>-0     (-----) [004] .n.1 24572.750916: cpu_idle: state=4294967295 cpu_id=4
32138          <idle>-0     (-----) [004] d..2 24572.750920: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
32139     rcu_preempt-7     (    7) [004] d..2 24572.750927: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=007
32140     rcu_preempt-7     (    7) [004] d..3 24572.750939: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=006
32141     rcu_preempt-7     (    7) [004] d..2 24572.750940: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
32142          <idle>-0     (-----) [006] .n.1 24572.750944: cpu_idle: state=4294967295 cpu_id=6
32143     rcu_preempt-7     (    7) [004] d..3 24572.750945: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
32144          <idle>-0     (-----) [006] d..2 24572.750948: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
32145         rcuop/2-29    (   29) [006] d..2 24572.750950: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=007
32146     rcu_preempt-7     (    7) [004] d..2 24572.750951: 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
32147         rcuop/2-29    (   29) [006] d..3 24572.750959: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=006
32148         rcuop/2-29    (   29) [006] d..2 24572.750964: 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
32149         rcuop/6-61    (   61) [006] d..2 24572.750966: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=006
32150         rcuop/6-61    (   61) [006] d..3 24572.750971: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=006
32151         rcuop/6-61    (   61) [006] d..2 24572.750986: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
32152         rcuop/3-37    (   37) [006] d..2 24572.750992: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=rcuop/7 next_pid=69 next_prio=120
32153         rcuop/7-69    (   69) [006] d..2 24572.751007: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32154          <idle>-0     (-----) [006] d..1 24572.751009: cpu_idle: state=0 cpu_id=6
32155  kworker/u16:10-23868 (23868) [004] d..2 24572.751069: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
32156          <idle>-0     (-----) [004] d..1 24572.751072: cpu_idle: state=0 cpu_id=4
32157          <idle>-0     (-----) [003] d.s3 24572.751120: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
32158          <idle>-0     (-----) [004] d.h2 24572.751135: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
32159          <idle>-0     (-----) [003] ...1 24572.751136: cpu_idle: state=4294967295 cpu_id=3
32160          <idle>-0     (-----) [004] dnh2 24572.751137: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
32161          <idle>-0     (-----) [003] d..1 24572.751139: cpu_idle: state=0 cpu_id=3
32162          <idle>-0     (-----) [004] .n.1 24572.751140: cpu_idle: state=4294967295 cpu_id=4
32163          <idle>-0     (-----) [004] d..2 24572.751143: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
32164<...>-27905 ( 23968) [007] d..3 24572.751175: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
32165<...>-27905 ( 23968) [007] d..4 24572.751189: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=006
32166          <idle>-0     (-----) [006] .n.1 24572.751192: cpu_idle: state=4294967295 cpu_id=6
32167          <idle>-0     (-----) [006] d..2 24572.751195: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
32168 kgsl_worker_thr-246   (  246) [006] d..2 24572.751204: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32169          <idle>-0     (-----) [006] d..1 24572.751206: cpu_idle: state=0 cpu_id=6
32170  kworker/u16:10-23868 (23868) [004] d..2 24572.751270: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
32171          <idle>-0     (-----) [004] d..1 24572.751273: cpu_idle: state=0 cpu_id=4
32172          <idle>-0     (-----) [004] ...1 24572.751463: cpu_idle: state=4294967295 cpu_id=4
32173          <idle>-0     (-----) [004] d..1 24572.751464: cpu_idle: state=0 cpu_id=4
32174           <...>-13131 (-----) [005] d..1 24572.751756: sched_waking: comm=Jit thread pool pid=13136 prio=129 target_cpu=003
32175           <...>-13131 (-----) [005] d..2 24572.751774: sched_wakeup: comm=Jit thread pool pid=13136 prio=129 target_cpu=004
32176          <idle>-0     (-----) [004] .n.1 24572.751777: cpu_idle: state=4294967295 cpu_id=4
32177          <idle>-0     (-----) [004] d..2 24572.751798: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=13136 next_prio=129
32178           <...>-13131 (-----) [005] d.h3 24572.751799: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
32179           <...>-13131 (-----) [005] d.h4 24572.751808: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
32180           <...>-13131 (-----) [005] d.h3 24572.751809: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
32181           <...>-13136 (-----) [004] d..2 24572.751810: sched_switch: prev_comm=Jit thread pool prev_pid=13136 prev_prio=129 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
32182          <idle>-0     (-----) [004] d..1 24572.751812: cpu_idle: state=0 cpu_id=4
32183          <idle>-0     (-----) [006] .n.1 24572.751812: cpu_idle: state=4294967295 cpu_id=6
32184          <idle>-0     (-----) [006] d..2 24572.751815: 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
32185           <...>-13131 (-----) [005] d..1 24572.751816: sched_waking: comm=Jit thread pool pid=13136 prio=129 target_cpu=004
32186           <...>-13131 (-----) [005] d..2 24572.751821: sched_wakeup: comm=Jit thread pool pid=13136 prio=129 target_cpu=004
32187          <idle>-0     (-----) [003] dnh2 24572.751822: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
32188          <idle>-0     (-----) [004] .n.1 24572.751825: cpu_idle: state=4294967295 cpu_id=4
32189         sugov:4-560   (  560) [006] d..2 24572.751826: 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
32190          <idle>-0     (-----) [003] .n.1 24572.751826: cpu_idle: state=4294967295 cpu_id=3
32191          <idle>-0     (-----) [006] d..1 24572.751827: cpu_idle: state=0 cpu_id=6
32192          <idle>-0     (-----) [004] d..2 24572.751828: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=13136 next_prio=129
32193          <idle>-0     (-----) [003] d..2 24572.751832: 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
32194         sugov:0-559   (  559) [003] d..2 24572.751848: 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
32195          <idle>-0     (-----) [003] d..1 24572.751853: cpu_idle: state=0 cpu_id=3
32196<...>-27905 ( 23968) [007] d..2 24572.752201: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
32197<...>-27905 ( 23968) [007] d..3 24572.752213: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=006
32198          <idle>-0     (-----) [006] .n.1 24572.752217: cpu_idle: state=4294967295 cpu_id=6
32199          <idle>-0     (-----) [006] d..2 24572.752220: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
32200  kworker/u16:10-23868 (23868) [006] d..2 24572.752433: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32201          <idle>-0     (-----) [006] d..1 24572.752436: cpu_idle: state=0 cpu_id=6
32202          <idle>-0     (-----) [000] d.h5 24572.752625: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
32203<...>-27905 ( 23968) [007] d..2 24572.752635: sched_switch: prev_comm=RenderThread prev_pid=27905 prev_prio=116 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
32204<...>-12589 ( 23968) [007] .... 24572.752640: binder_transaction_received: transaction=1669453
32205          <idle>-0     (-----) [000] d.h5 24572.752648: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
32206          <idle>-0     (-----) [006] dnh2 24572.752650: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=006
32207          <idle>-0     (-----) [006] .n.1 24572.752652: cpu_idle: state=4294967295 cpu_id=6
32208          <idle>-0     (-----) [006] d..2 24572.752655: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
32209           <...>-13136 (-----) [004] dnh2 24572.752661: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
32210          <idle>-0     (-----) [000] ...1 24572.752666: cpu_idle: state=4294967295 cpu_id=0
32211           <...>-13136 (-----) [004] d..2 24572.752666: sched_switch: prev_comm=Jit thread pool prev_pid=13136 prev_prio=129 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
32212  crtc_event:111-254   (  254) [006] d..2 24572.752670: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32213          <idle>-0     (-----) [000] d..1 24572.752670: cpu_idle: state=0 cpu_id=0
32214          <idle>-0     (-----) [006] d..1 24572.752672: cpu_idle: state=0 cpu_id=6
32215 crtc_commit:111-253   (  253) [004] d..2 24572.752769: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=Jit thread pool next_pid=13136 next_prio=129
32216<...>-12589 ( 23968) [007] ...1 24572.752942: tracing_mark_write: B|23968|HIDL::IPower::powerHintAsync::client
32217<...>-12589 ( 23968) [007] ...1 24572.752944: tracing_mark_write: E|23968
32218<...>-12589 ( 23968) [007] .... 24572.752992: binder_transaction: transaction=1669454 dest_node=1000 dest_proc=774 dest_thread=0 reply=0 flags=0x11 code=0x6
32219<...>-12589 ( 23968) [007] d..4 24572.752999: sched_waking: comm=power@1.2-servi pid=774 prio=120 target_cpu=001
32220<...>-12589 ( 23968) [007] d..5 24572.753016: sched_wakeup: comm=power@1.2-servi pid=774 prio=120 target_cpu=006
32221          <idle>-0     (-----) [006] .n.1 24572.753020: cpu_idle: state=4294967295 cpu_id=6
32222          <idle>-0     (-----) [006] d..2 24572.753038: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=power@1.2-servi next_pid=774 next_prio=120
32223<...>-12589 ( 23968) [007] d.h5 24572.753038: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
32224<...>-12589 ( 23968) [007] d.h6 24572.753046: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
32225<...>-12589 ( 23968) [007] d.h5 24572.753047: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
32226<...>-774 ( 774) [006] d..2 24572.753056: sched_switch: prev_comm=power@1.2-servi prev_pid=774 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
32227         sugov:4-560   (  560) [006] d..2 24572.753059: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=power@1.2-servi next_pid=774 next_prio=120
32228          <idle>-0     (-----) [003] dnh2 24572.753060: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
32229<...>-774 ( 774) [006] .... 24572.753061: binder_transaction_received: transaction=1669454
32230          <idle>-0     (-----) [003] .n.1 24572.753063: cpu_idle: state=4294967295 cpu_id=3
32231          <idle>-0     (-----) [003] d..2 24572.753068: 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
32232         sugov:0-559   (  559) [003] d..2 24572.753080: 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
32233          <idle>-0     (-----) [003] d..1 24572.753086: cpu_idle: state=0 cpu_id=3
32234<...>-774 ( 774) [006] ...1 24572.753090: tracing_mark_write: B|774|HIDL::IPower::powerHintAsync::server
32235<...>-12589 ( 23968) [007] d..2 24572.753162: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=001
32236<...>-774 ( 774) [006] ...1 24572.753166: tracing_mark_write: B|774|launch
32237<...>-774 ( 774) [006] ...1 24572.753168: tracing_mark_write: C|774|launch_lock|0
32238          <idle>-0     (-----) [000] dnh2 24572.753182: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=000
32239          <idle>-0     (-----) [000] .n.1 24572.753186: cpu_idle: state=4294967295 cpu_id=0
32240<...>-774 ( 774) [006] d..1 24572.753191: sched_waking: comm=NodeLooperThrea pid=2085 prio=100 target_cpu=000
32241          <idle>-0     (-----) [000] d..2 24572.753195: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=statsd.writer next_pid=1044 next_prio=120
32242<...>-12589 ( 23968) [007] d..3 24572.753212: sched_waking: comm=PowerManagerSer pid=24006 prio=116 target_cpu=007
32243<...>-774 ( 774) [006] dn.2 24572.753213: sched_wakeup: comm=NodeLooperThrea pid=2085 prio=100 target_cpu=006
32244<...>-12589 ( 23968) [007] d..4 24572.753234: sched_wakeup: comm=PowerManagerSer pid=24006 prio=116 target_cpu=006
32245<...>-774 ( 774) [006] d..2 24572.753237: sched_switch: prev_comm=power@1.2-servi prev_pid=774 prev_prio=120 prev_state=R+ ==> next_comm=NodeLooperThrea next_pid=2085 next_prio=100
32246<...>-2085 ( 774) [006] d..2 24572.753251: sched_switch: prev_comm=NodeLooperThrea prev_pid=2085 prev_prio=100 prev_state=S ==> next_comm=PowerManagerSer next_pid=24006 next_prio=116
32247 PowerManagerSer-24006 (23968) [006] d..2 24572.753300: sched_switch: prev_comm=PowerManagerSer prev_pid=24006 prev_prio=116 prev_state=S ==> next_comm=power@1.2-servi next_pid=774 next_prio=120
32248<...>-774 ( 774) [006] d..1 24572.753302: sched_waking: comm=NodeLooperThrea pid=2085 prio=100 target_cpu=006
32249<...>-774 ( 774) [006] dn.2 24572.753306: sched_wakeup: comm=NodeLooperThrea pid=2085 prio=100 target_cpu=006
32250<...>-774 ( 774) [006] d..2 24572.753308: sched_switch: prev_comm=power@1.2-servi prev_pid=774 prev_prio=120 prev_state=R+ ==> next_comm=NodeLooperThrea next_pid=2085 next_prio=100
32251<...>-2085 ( 774) [006] .... 24572.753344: cpu_frequency_limits: min=300000 max=1766400 cpu_id=0
32252<...>-2085 ( 774) [006] .... 24572.753361: cpu_frequency_limits: min=825600 max=2803200 cpu_id=4
32253<...>-1044 ( 887) [000] d..2 24572.753386: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
32254          <idle>-0     (-----) [000] d..1 24572.753396: cpu_idle: state=0 cpu_id=0
32255<...>-2085 ( 774) [006] d..2 24572.753577: sched_switch: prev_comm=NodeLooperThrea prev_pid=2085 prev_prio=100 prev_state=D ==> next_comm=power@1.2-servi next_pid=774 next_prio=120
32256<...>-774 ( 774) [006] d..2 24572.753599: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
32257          <idle>-0     (-----) [003] d.s3 24572.753605: sched_waking: comm=NodeLooperThrea pid=2085 prio=100 target_cpu=006
32258          <idle>-0     (-----) [000] dnh2 24572.753617: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
32259<...>-12589 ( 23968) [007] d..2 24572.753619: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
32260<...>-774 ( 774) [006] d.h1 24572.753620: sched_blocked_reason: pid=2085 iowait=0 caller=wait_for_tx_done+0x34/0x120
32261          <idle>-0     (-----) [003] ...1 24572.753620: cpu_idle: state=4294967295 cpu_id=3
32262          <idle>-0     (-----) [000] .n.1 24572.753621: cpu_idle: state=4294967295 cpu_id=0
32263<...>-774 ( 774) [006] dnh1 24572.753621: sched_wakeup: comm=NodeLooperThrea pid=2085 prio=100 target_cpu=006
32264          <idle>-0     (-----) [003] d..1 24572.753623: cpu_idle: state=0 cpu_id=3
32265<...>-774 ( 774) [006] d..2 24572.753625: sched_switch: prev_comm=power@1.2-servi prev_pid=774 prev_prio=120 prev_state=R+ ==> next_comm=NodeLooperThrea next_pid=2085 next_prio=100
32266          <idle>-0     (-----) [000] d..2 24572.753627: 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
32267          <idle>-0     (-----) [007] d..1 24572.753629: cpu_idle: state=0 cpu_id=7
32268<...>-2085 ( 774) [006] .... 24572.753732: clk_set_rate: l3_cluster0_vote_clk 480000000
32269     logd.writer-563   (  555) [000] d..2 24572.753739: 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
32270           <...>-13136 (-----) [004] d..2 24572.753744: sched_switch: prev_comm=Jit thread pool prev_pid=13136 prev_prio=129 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
32271          <idle>-0     (-----) [000] d..1 24572.753747: cpu_idle: state=0 cpu_id=0
32272          <idle>-0     (-----) [004] d..1 24572.753750: cpu_idle: state=0 cpu_id=4
32273          <idle>-0     (-----) [000] ...1 24572.753810: cpu_idle: state=4294967295 cpu_id=0
32274          <idle>-0     (-----) [001] ...1 24572.753813: cpu_idle: state=4294967295 cpu_id=1
32275          <idle>-0     (-----) [000] d..1 24572.753813: cpu_idle: state=0 cpu_id=0
32276          <idle>-0     (-----) [002] ...1 24572.753815: cpu_idle: state=4294967295 cpu_id=2
32277          <idle>-0     (-----) [001] d..1 24572.753816: cpu_idle: state=0 cpu_id=1
32278          <idle>-0     (-----) [003] ...1 24572.753817: cpu_idle: state=4294967295 cpu_id=3
32279          <idle>-0     (-----) [002] d..1 24572.753818: cpu_idle: state=0 cpu_id=2
32280          <idle>-0     (-----) [004] ...1 24572.753819: cpu_idle: state=4294967295 cpu_id=4
32281          <idle>-0     (-----) [003] d..1 24572.753819: cpu_idle: state=0 cpu_id=3
32282          <idle>-0     (-----) [004] d..1 24572.753820: cpu_idle: state=0 cpu_id=4
32283          <idle>-0     (-----) [007] ...1 24572.753822: cpu_idle: state=4294967295 cpu_id=7
32284          <idle>-0     (-----) [007] d..1 24572.753824: cpu_idle: state=0 cpu_id=7
32285          <idle>-0     (-----) [000] ...1 24572.753829: cpu_idle: state=4294967295 cpu_id=0
32286          <idle>-0     (-----) [001] ...1 24572.753830: cpu_idle: state=4294967295 cpu_id=1
32287          <idle>-0     (-----) [000] d..1 24572.753831: cpu_idle: state=0 cpu_id=0
32288          <idle>-0     (-----) [001] d..1 24572.753832: cpu_idle: state=0 cpu_id=1
32289          <idle>-0     (-----) [002] ...1 24572.753833: cpu_idle: state=4294967295 cpu_id=2
32290          <idle>-0     (-----) [003] ...1 24572.753834: cpu_idle: state=4294967295 cpu_id=3
32291          <idle>-0     (-----) [002] d..1 24572.753835: cpu_idle: state=0 cpu_id=2
32292          <idle>-0     (-----) [003] d..1 24572.753836: cpu_idle: state=0 cpu_id=3
32293          <idle>-0     (-----) [004] ...1 24572.753836: cpu_idle: state=4294967295 cpu_id=4
32294          <idle>-0     (-----) [004] d..1 24572.753837: cpu_idle: state=0 cpu_id=4
32295          <idle>-0     (-----) [007] ...1 24572.753838: cpu_idle: state=4294967295 cpu_id=7
32296          <idle>-0     (-----) [007] d..1 24572.753840: cpu_idle: state=0 cpu_id=7
32297          <idle>-0     (-----) [000] ...1 24572.753843: cpu_idle: state=4294967295 cpu_id=0
32298          <idle>-0     (-----) [001] ...1 24572.753845: cpu_idle: state=4294967295 cpu_id=1
32299          <idle>-0     (-----) [000] d..1 24572.753846: cpu_idle: state=0 cpu_id=0
32300          <idle>-0     (-----) [001] d..1 24572.753847: cpu_idle: state=0 cpu_id=1
32301          <idle>-0     (-----) [002] ...1 24572.753848: cpu_idle: state=4294967295 cpu_id=2
32302          <idle>-0     (-----) [003] ...1 24572.753850: cpu_idle: state=4294967295 cpu_id=3
32303          <idle>-0     (-----) [002] d..1 24572.753850: cpu_idle: state=0 cpu_id=2
32304          <idle>-0     (-----) [004] ...1 24572.753851: cpu_idle: state=4294967295 cpu_id=4
32305          <idle>-0     (-----) [003] d..1 24572.753851: cpu_idle: state=0 cpu_id=3
32306          <idle>-0     (-----) [004] d..1 24572.753852: cpu_idle: state=0 cpu_id=4
32307          <idle>-0     (-----) [007] ...1 24572.753854: cpu_idle: state=4294967295 cpu_id=7
32308          <idle>-0     (-----) [007] d..1 24572.753855: cpu_idle: state=0 cpu_id=7
32309<...>-2085 ( 774) [006] d..2 24572.753885: sched_switch: prev_comm=NodeLooperThrea prev_pid=2085 prev_prio=100 prev_state=S ==> next_comm=power@1.2-servi next_pid=774 next_prio=120
32310<...>-774 ( 774) [006] ...1 24572.753890: tracing_mark_write: E|774
32311<...>-774 ( 774) [006] ...1 24572.753892: tracing_mark_write: E|774
32312<...>-774 ( 774) [006] d..2 24572.753912: sched_switch: prev_comm=power@1.2-servi prev_pid=774 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32313          <idle>-0     (-----) [006] d..1 24572.753917: cpu_idle: state=0 cpu_id=6
32314          <idle>-0     (-----) [007] ...1 24572.754047: cpu_idle: state=4294967295 cpu_id=7
32315          <idle>-0     (-----) [007] d..1 24572.754048: cpu_idle: state=0 cpu_id=7
32316          <idle>-0     (-----) [004] d.s3 24572.754228: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=006
32317           <...>-13131 (-----) [005] d.s1 24572.754230: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=005
32318          <idle>-0     (-----) [001] dnh2 24572.754263: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
32319          <idle>-0     (-----) [001] .n.1 24572.754267: cpu_idle: state=4294967295 cpu_id=1
32320          <idle>-0     (-----) [004] ...1 24572.754269: cpu_idle: state=4294967295 cpu_id=4
32321          <idle>-0     (-----) [004] d..1 24572.754271: cpu_idle: state=0 cpu_id=4
32322          <idle>-0     (-----) [001] d..2 24572.754274: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
32323          <idle>-0     (-----) [000] dnh2 24572.754295: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
32324          <idle>-0     (-----) [000] .n.1 24572.754299: cpu_idle: state=4294967295 cpu_id=0
32325          <idle>-0     (-----) [006] ...1 24572.754303: cpu_idle: state=4294967295 cpu_id=6
32326          <idle>-0     (-----) [006] d..1 24572.754304: cpu_idle: state=0 cpu_id=6
32327          <idle>-0     (-----) [000] d..2 24572.754306: 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
32328  crtc_event:111-254   (  254) [001] d..2 24572.754307: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32329          <idle>-0     (-----) [001] d..1 24572.754313: cpu_idle: state=0 cpu_id=1
32330       rcu_sched-8     (    8) [000] d..2 24572.754327: 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
32331          <idle>-0     (-----) [000] d..1 24572.754332: cpu_idle: state=0 cpu_id=0
32332          <idle>-0     (-----) [004] ...1 24572.754462: cpu_idle: state=4294967295 cpu_id=4
32333          <idle>-0     (-----) [004] d..1 24572.754463: cpu_idle: state=0 cpu_id=4
32334          <idle>-0     (-----) [000] d.h5 24572.754957: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
32335          <idle>-0     (-----) [000] dnh6 24572.754974: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
32336          <idle>-0     (-----) [000] .n.1 24572.755008: cpu_idle: state=4294967295 cpu_id=0
32337          <idle>-0     (-----) [002] ...1 24572.755011: cpu_idle: state=4294967295 cpu_id=2
32338          <idle>-0     (-----) [002] d..1 24572.755013: cpu_idle: state=0 cpu_id=2
32339          <idle>-0     (-----) [000] d..2 24572.755014: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
32340 crtc_commit:111-253   (  253) [000] d..2 24572.755097: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
32341          <idle>-0     (-----) [000] d..1 24572.755103: cpu_idle: state=0 cpu_id=0
32342          <idle>-0     (-----) [000] d.h5 24572.755252: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
32343          <idle>-0     (-----) [000] d.h6 24572.755261: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
32344          <idle>-0     (-----) [001] .n.1 24572.755266: cpu_idle: state=4294967295 cpu_id=1
32345          <idle>-0     (-----) [000] d.h7 24572.755268: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
32346          <idle>-0     (-----) [001] d..2 24572.755271: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
32347          <idle>-0     (-----) [000] dnh8 24572.755276: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
32348  crtc_event:111-254   (  254) [001] d..2 24572.755288: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32349          <idle>-0     (-----) [000] dnh9 24572.755288: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
32350          <idle>-0     (-----) [001] d..1 24572.755293: cpu_idle: state=0 cpu_id=1
32351          <idle>-0     (-----) [000] dnha 24572.755300: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
32352          <idle>-0     (-----) [000] dnh7 24572.755304: sched_waking: comm=SDM_EventThread pid=624 prio=111 target_cpu=004
32353          <idle>-0     (-----) [001] .n.1 24572.755305: cpu_idle: state=4294967295 cpu_id=1
32354          <idle>-0     (-----) [001] d..2 24572.755309: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
32355          <idle>-0     (-----) [000] dnh8 24572.755335: sched_wakeup: comm=SDM_EventThread pid=624 prio=111 target_cpu=000
32356 crtc_commit:111-253   (  253) [001] d..2 24572.755350: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32357          <idle>-0     (-----) [001] d..1 24572.755356: cpu_idle: state=0 cpu_id=1
32358          <idle>-0     (-----) [000] .n.1 24572.755374: cpu_idle: state=4294967295 cpu_id=0
32359          <idle>-0     (-----) [000] d..2 24572.755381: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
32360     kworker/0:1-13012 (13012) [000] d..2 24572.755394: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=624 next_prio=111
32361 SDM_EventThread-624   (  598) [000] ...1 24572.755441: tracing_mark_write: B|598|HWCCallbacks::Vsync::
32362 SDM_EventThread-624   (  598) [000] ...1 24572.755450: tracing_mark_write: B|598|HIDL::IComposerCallback::onVsync::client
32363 SDM_EventThread-624   (  598) [000] ...1 24572.755453: tracing_mark_write: E|598
32364 SDM_EventThread-624   (  598) [000] .... 24572.755482: binder_transaction: transaction=1669455 dest_node=1270370 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
32365 SDM_EventThread-624   (  598) [000] d..4 24572.755490: sched_waking: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=001
32366 SDM_EventThread-624   (  598) [000] d..5 24572.755505: sched_wakeup: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=001
32367          <idle>-0     (-----) [001] .n.1 24572.755509: cpu_idle: state=4294967295 cpu_id=1
32368          <idle>-0     (-----) [001] d..2 24572.755516: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:23896_ next_pid=23923 next_prio=120
32369 HwBinder:23896_-23923 (23896) [001] .... 24572.755522: binder_transaction_received: transaction=1669455
32370 SDM_EventThread-624   (  598) [000] ...1 24572.755523: tracing_mark_write: E|598
32371 SDM_EventThread-624   (  598) [000] d..4 24572.755536: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
32372 SDM_EventThread-624   (  598) [000] d..5 24572.755552: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
32373          <idle>-0     (-----) [002] .n.1 24572.755556: cpu_idle: state=4294967295 cpu_id=2
32374 HwBinder:23896_-23923 (23896) [001] ...1 24572.755558: tracing_mark_write: B|23896|HIDL::IComposerCallback::onVsync::server
32375          <idle>-0     (-----) [002] d..2 24572.755562: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
32376 SDM_EventThread-624   (  598) [000] d..2 24572.755575: sched_switch: prev_comm=SDM_EventThread prev_pid=624 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
32377 crtc_commit:111-253   (  253) [002] d..2 24572.755580: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
32378          <idle>-0     (-----) [000] d..1 24572.755582: cpu_idle: state=0 cpu_id=0
32379 HwBinder:23896_-23923 (23896) [001] d..1 24572.755584: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=004
32380          <idle>-0     (-----) [002] d..1 24572.755585: cpu_idle: state=0 cpu_id=2
32381 HwBinder:23896_-23923 (23896) [001] d..2 24572.755605: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
32382          <idle>-0     (-----) [002] .n.1 24572.755610: cpu_idle: state=4294967295 cpu_id=2
32383          <idle>-0     (-----) [002] d..2 24572.755633: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
32384 HwBinder:23896_-23923 (23896) [001] d..1 24572.755642: sched_waking: comm=surfaceflinger pid=23930 prio=112 target_cpu=000
32385 HwBinder:23896_-23923 (23896) [001] d..2 24572.755656: sched_wakeup: comm=surfaceflinger pid=23930 prio=112 target_cpu=000
32386          <idle>-0     (-----) [000] .n.1 24572.755661: cpu_idle: state=4294967295 cpu_id=0
32387        DispSync-23904 (23896) [002] d..2 24572.755661: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
32388 HwBinder:23896_-23923 (23896) [001] ...1 24572.755662: tracing_mark_write: E|23896
32389          <idle>-0     (-----) [002] d..1 24572.755666: cpu_idle: state=0 cpu_id=2
32390          <idle>-0     (-----) [000] d..2 24572.755668: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23930 next_prio=112
32391  surfaceflinger-23930 (23896) [000] ...1 24572.755687: tracing_mark_write: B|23896|HIDL::IComposerClient::setVsyncEnabled::client
32392  surfaceflinger-23930 (23896) [000] ...1 24572.755691: tracing_mark_write: E|23896
32393 HwBinder:23896_-23923 (23896) [001] d..2 24572.755694: sched_switch: prev_comm=HwBinder:23896_ prev_pid=23923 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32394          <idle>-0     (-----) [001] d..1 24572.755702: cpu_idle: state=0 cpu_id=1
32395  surfaceflinger-23930 (23896) [000] .... 24572.755712: binder_transaction: transaction=1669456 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x14
32396  surfaceflinger-23930 (23896) [000] ...2 24572.755720: binder_set_priority: proc=598 thread=633 old=97 => new=112 desired=112
32397  surfaceflinger-23930 (23896) [000] d..4 24572.755730: sched_waking: comm=HwBinder:598_3 pid=633 prio=112 target_cpu=005
32398  surfaceflinger-23930 (23896) [000] d..5 24572.755748: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=112 target_cpu=000
32399  surfaceflinger-23930 (23896) [000] d..2 24572.755783: sched_switch: prev_comm=surfaceflinger prev_pid=23930 prev_prio=112 prev_state=S ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=112
32400  HwBinder:598_3-633   (  598) [000] .... 24572.755789: binder_transaction_received: transaction=1669456
32401  HwBinder:598_3-633   (  598) [000] ...1 24572.755813: tracing_mark_write: B|598|HIDL::IComposerClient::setVsyncEnabled::server
32402  HwBinder:598_3-633   (  598) [000] ...1 24572.755823: tracing_mark_write: C|598|SetVsyncState |0
32403  HwBinder:598_3-633   (  598) [000] ...1 24572.755839: tracing_mark_write: E|598
32404  HwBinder:598_3-633   (  598) [000] .... 24572.755847: binder_transaction: transaction=1669457 dest_node=0 dest_proc=23896 dest_thread=23930 reply=1 flags=0x0 code=0x0
32405  HwBinder:598_3-633   (  598) [000] d..2 24572.755851: sched_waking: comm=surfaceflinger pid=23930 prio=112 target_cpu=000
32406  HwBinder:598_3-633   (  598) [000] dn.3 24572.755858: sched_wakeup: comm=surfaceflinger pid=23930 prio=112 target_cpu=000
32407  HwBinder:598_3-633   (  598) [000] d..2 24572.755863: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=112 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23930 next_prio=112
32408  surfaceflinger-23930 (23896) [000] .... 24572.755867: binder_transaction_received: transaction=1669457
32409  surfaceflinger-23930 (23896) [000] d..2 24572.755888: sched_switch: prev_comm=surfaceflinger prev_pid=23930 prev_prio=112 prev_state=S ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=112
32410  HwBinder:598_3-633   (  598) [000] .... 24572.755890: binder_set_priority: proc=598 thread=633 old=112 => new=97 desired=97
32411  HwBinder:598_3-633   (  598) [000] d..2 24572.755922: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
32412          <idle>-0     (-----) [000] d..1 24572.755930: cpu_idle: state=0 cpu_id=0
32413          <idle>-0     (-----) [002] d.h2 24572.756216: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
32414          <idle>-0     (-----) [002] dnh3 24572.756223: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
32415          <idle>-0     (-----) [002] .n.1 24572.756227: cpu_idle: state=4294967295 cpu_id=2
32416          <idle>-0     (-----) [002] d..2 24572.756232: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
32417        DispSync-23904 (23896) [002] d..1 24572.756243: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
32418        DispSync-23904 (23896) [002] d..2 24572.756257: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
32419          <idle>-0     (-----) [001] .n.1 24572.756262: cpu_idle: state=4294967295 cpu_id=1
32420          <idle>-0     (-----) [001] d..2 24572.756268: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
32421        DispSync-23904 (23896) [002] d..2 24572.756273: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
32422          <idle>-0     (-----) [002] d..1 24572.756277: cpu_idle: state=0 cpu_id=2
32423   sfEventThread-23906 (23896) [001] d..3 24572.756306: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=004
32424   sfEventThread-23906 (23896) [001] d..4 24572.756327: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=000
32425          <idle>-0     (-----) [000] .n.1 24572.756332: cpu_idle: state=4294967295 cpu_id=0
32426          <idle>-0     (-----) [000] d..2 24572.756356: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
32427   sfEventThread-23906 (23896) [001] d..3 24572.756363: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=005
32428          <idle>-0     (-----) [004] dnh2 24572.756382: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=004
32429          <idle>-0     (-----) [004] .n.1 24572.756384: cpu_idle: state=4294967295 cpu_id=4
32430   sfEventThread-23906 (23896) [001] d..3 24572.756386: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
32431          <idle>-0     (-----) [004] d..2 24572.756386: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
32432   sfEventThread-23906 (23896) [001] d..4 24572.756395: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
32433          <idle>-0     (-----) [002] .n.1 24572.756399: cpu_idle: state=4294967295 cpu_id=2
32434          <idle>-0     (-----) [002] d..2 24572.756404: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
32435   sfEventThread-23906 (23896) [001] d..2 24572.756413: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32436          <idle>-0     (-----) [001] d..1 24572.756420: cpu_idle: state=0 cpu_id=1
32437<...>-24041 ( 23968) [004] .... 24572.756480: binder_transaction: transaction=1669458 dest_node=1271137 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
32438<...>-24041 ( 23968) [004] d..4 24572.756485: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
32439          <idle>-0     (-----) [001] dnh2 24572.756520: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=001
32440          <idle>-0     (-----) [001] .n.1 24572.756524: cpu_idle: state=4294967295 cpu_id=1
32441          <idle>-0     (-----) [001] d..2 24572.756529: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
32442<...>-23903 ( 23896) [001] .... 24572.756534: binder_transaction_received: transaction=1669458
32443<...>-23903 ( 23896) [001] d..1 24572.756562: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
32444<...>-24042 ( 23968) [000] .... 24572.756574: binder_transaction: transaction=1669459 dest_node=1271163 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
32445<...>-23903 ( 23896) [001] d..2 24572.756576: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
32446<...>-24042 ( 23968) [000] d..4 24572.756579: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
32447          <idle>-0     (-----) [003] .n.1 24572.756581: cpu_idle: state=4294967295 cpu_id=3
32448          <idle>-0     (-----) [003] d..2 24572.756588: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
32449          <idle>-0     (-----) [006] dnh2 24572.756602: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=006
32450          <idle>-0     (-----) [006] .n.1 24572.756604: cpu_idle: state=4294967295 cpu_id=6
32451          <idle>-0     (-----) [006] d..2 24572.756608: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
32452  Binder:23896_5-25989 (23896) [006] .... 24572.756611: binder_transaction_received: transaction=1669459
32453<...>-23903 ( 23896) [001] d..2 24572.756611: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32454   sfEventThread-23906 (23896) [003] d..2 24572.756618: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
32455          <idle>-0     (-----) [001] d..1 24572.756618: cpu_idle: state=0 cpu_id=1
32456  Binder:23896_5-25989 (23896) [006] d..1 24572.756624: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
32457          <idle>-0     (-----) [003] d..1 24572.756625: cpu_idle: state=0 cpu_id=3
32458          <idle>-0     (-----) [003] dnh2 24572.756637: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
32459  Binder:23896_5-25989 (23896) [006] d..2 24572.756640: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32460          <idle>-0     (-----) [003] .n.1 24572.756642: cpu_idle: state=4294967295 cpu_id=3
32461          <idle>-0     (-----) [006] d..1 24572.756643: cpu_idle: state=0 cpu_id=6
32462          <idle>-0     (-----) [003] d..2 24572.756646: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
32463   sfEventThread-23906 (23896) [003] d..2 24572.756662: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
32464          <idle>-0     (-----) [003] d..1 24572.756668: cpu_idle: state=0 cpu_id=3
32465<...>-24041 ( 23968) [004] .... 24572.756769: binder_transaction: transaction=1669460 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
32466<...>-24041 ( 23968) [004] ...2 24572.756779: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
32467<...>-24041 ( 23968) [004] d..4 24572.756780: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=006
32468<...>-24041 ( 23968) [004] dn.5 24572.756789: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
32469<...>-24041 ( 23968) [004] d..2 24572.756792: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
32470<...>-24042 ( 23968) [000] .... 24572.756792: binder_transaction: transaction=1669461 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
32471  Binder:23896_5-25989 (23896) [004] .... 24572.756794: binder_transaction_received: transaction=1669460
32472<...>-24042 ( 23968) [000] ...2 24572.756810: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
32473<...>-24042 ( 23968) [000] d..4 24572.756812: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=001
32474<...>-24042 ( 23968) [000] d..5 24572.756825: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=000
32475<...>-24042 ( 23968) [000] d..2 24572.756833: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
32476  Binder:23896_5-25989 (23896) [004] .... 24572.756836: binder_transaction: transaction=1669462 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
32477  Binder:23896_5-25989 (23896) [004] .... 24572.756838: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
32478<...>-23903 ( 23896) [000] .... 24572.756838: binder_transaction_received: transaction=1669461
32479  Binder:23896_5-25989 (23896) [004] d..2 24572.756854: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
32480<...>-24041 ( 23968) [004] .... 24572.756856: binder_transaction_received: transaction=1669462
32481<...>-23903 ( 23896) [000] d..1 24572.756886: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
32482<...>-24041 ( 23968) [004] d..2 24572.756895: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
32483<...>-23903 ( 23896) [000] d..2 24572.756897: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
32484          <idle>-0     (-----) [004] d..1 24572.756899: cpu_idle: state=0 cpu_id=4
32485          <idle>-0     (-----) [003] .n.1 24572.756902: cpu_idle: state=4294967295 cpu_id=3
32486          <idle>-0     (-----) [003] d..2 24572.756907: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
32487<...>-23903 ( 23896) [000] .... 24572.756908: binder_transaction: transaction=1669463 dest_node=0 dest_proc=23968 dest_thread=24042 reply=1 flags=0x0 code=0x0
32488<...>-23903 ( 23896) [000] d..2 24572.756911: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=000
32489<...>-23903 ( 23896) [000] dn.3 24572.756918: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=000
32490   sfEventThread-23906 (23896) [003] d..2 24572.756922: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
32491<...>-23903 ( 23896) [000] d..2 24572.756923: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=110 prev_state=R+ ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
32492<...>-24042 ( 23968) [000] .... 24572.756927: binder_transaction_received: transaction=1669463
32493          <idle>-0     (-----) [003] d..1 24572.756927: cpu_idle: state=0 cpu_id=3
32494<...>-24042 ( 23968) [000] d..2 24572.756975: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
32495<...>-23903 ( 23896) [000] .... 24572.756979: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
32496<...>-23903 ( 23896) [000] d..2 24572.757013: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
32497          <idle>-0     (-----) [000] d..1 24572.757021: cpu_idle: state=0 cpu_id=0
32498          <idle>-0     (-----) [004] ...1 24572.757196: cpu_idle: state=4294967295 cpu_id=4
32499          <idle>-0     (-----) [004] d..1 24572.757197: cpu_idle: state=0 cpu_id=4
32500  surfaceflinger-23896 (23896) [002] d.h1 24572.757238: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
32501  surfaceflinger-23896 (23896) [002] d.h2 24572.757255: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
32502          <idle>-0     (-----) [001] .n.1 24572.757260: cpu_idle: state=4294967295 cpu_id=1
32503          <idle>-0     (-----) [001] d..2 24572.757266: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
32504        DispSync-23904 (23896) [001] d..1 24572.757275: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
32505        DispSync-23904 (23896) [001] d..2 24572.757291: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
32506          <idle>-0     (-----) [003] .n.1 24572.757295: cpu_idle: state=4294967295 cpu_id=3
32507          <idle>-0     (-----) [003] d..2 24572.757300: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
32508        DispSync-23904 (23896) [001] d..2 24572.757306: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32509          <idle>-0     (-----) [001] d..1 24572.757312: cpu_idle: state=0 cpu_id=1
32510  appEventThread-23905 (23896) [003] d..3 24572.757339: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
32511  appEventThread-23905 (23896) [003] d..4 24572.757361: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
32512          <idle>-0     (-----) [000] .n.1 24572.757366: cpu_idle: state=4294967295 cpu_id=0
32513          <idle>-0     (-----) [000] d..2 24572.757391: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
32514  appEventThread-23905 (23896) [003] d..2 24572.757405: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
32515          <idle>-0     (-----) [003] d..1 24572.757412: cpu_idle: state=0 cpu_id=3
32516          <idle>-0     (-----) [004] d.s2 24572.757585: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
32517<...>-24151 ( 24151) [000] d.h1 24572.757613: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
32518          <idle>-0     (-----) [004] ...1 24572.757632: cpu_idle: state=4294967295 cpu_id=4
32519          <idle>-0     (-----) [004] d..1 24572.757634: cpu_idle: state=0 cpu_id=4
32520<...>-24151 ( 24151) [000] .... 24572.757695: binder_transaction: transaction=1669464 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
32521<...>-24151 ( 24151) [000] d..4 24572.757699: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
32522<...>-24151 ( 24151) [000] d..5 24572.757719: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=001
32523          <idle>-0     (-----) [001] .n.1 24572.757724: cpu_idle: state=4294967295 cpu_id=1
32524          <idle>-0     (-----) [001] d..2 24572.757732: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
32525<...>-23903 ( 23896) [001] .... 24572.757735: binder_transaction_received: transaction=1669464
32526<...>-24151 ( 24151) [000] d..3 24572.757746: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
32527<...>-23903 ( 23896) [001] d..1 24572.757748: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
32528  surfaceflinger-23896 (23896) [002] ...1 24572.757756: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
32529<...>-23903 ( 23896) [001] d..2 24572.757758: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
32530  surfaceflinger-23896 (23896) [002] ...1 24572.757760: tracing_mark_write: E|23896
32531          <idle>-0     (-----) [003] .n.1 24572.757763: cpu_idle: state=4294967295 cpu_id=3
32532<...>-24151 ( 24151) [000] d..4 24572.757769: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=003
32533          <idle>-0     (-----) [003] d..2 24572.757773: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
32534  surfaceflinger-23896 (23896) [002] .... 24572.757789: binder_transaction: transaction=1669465 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
32535<...>-23903 ( 23896) [001] d..2 24572.757805: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32536  appEventThread-23905 (23896) [003] d..2 24572.757806: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
32537          <idle>-0     (-----) [001] d..1 24572.757812: cpu_idle: state=0 cpu_id=1
32538  surfaceflinger-23896 (23896) [002] ...2 24572.757812: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
32539  surfaceflinger-23896 (23896) [002] d..4 24572.757816: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
32540  surfaceflinger-23896 (23896) [002] d..5 24572.757832: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
32541          <idle>-0     (-----) [001] .n.1 24572.757837: cpu_idle: state=4294967295 cpu_id=1
32542          <idle>-0     (-----) [001] d..2 24572.757842: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
32543    RenderThread-24437 (24151) [003] d..2 24572.757844: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
32544  HwBinder:598_3-633   (  598) [001] .... 24572.757848: binder_transaction_received: transaction=1669465
32545          <idle>-0     (-----) [003] d..1 24572.757851: cpu_idle: state=0 cpu_id=3
32546  surfaceflinger-23896 (23896) [002] d..2 24572.757854: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
32547          <idle>-0     (-----) [002] d..1 24572.757863: cpu_idle: state=0 cpu_id=2
32548  HwBinder:598_3-633   (  598) [001] ...1 24572.757874: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
32549<...>-24151 ( 24151) [000] d..3 24572.757916: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=003
32550<...>-24151 ( 24151) [000] d..4 24572.757927: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=003
32551          <idle>-0     (-----) [003] .n.1 24572.757931: cpu_idle: state=4294967295 cpu_id=3
32552          <idle>-0     (-----) [003] d..2 24572.757938: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
32553<...>-24151 ( 24151) [000] d..2 24572.757939: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
32554  HwBinder:598_3-633   (  598) [001] ...1 24572.757946: tracing_mark_write: B|598|HIDL::IMapper::importBuffer::passthrough
32555     rcu_preempt-7     (    7) [000] d..2 24572.757960: 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
32556          <idle>-0     (-----) [000] d..1 24572.757966: cpu_idle: state=0 cpu_id=0
32557  HwBinder:598_3-633   (  598) [001] ...1 24572.757979: tracing_mark_write: E|598
32558    RenderThread-24437 (24151) [003] d..1 24572.758057: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
32559    RenderThread-24437 (24151) [003] d..2 24572.758068: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
32560  HwBinder:598_3-633   (  598) [001] ...1 24572.758070: tracing_mark_write: B|598|HWCSession::PresentDisplay::
32561          <idle>-0     (-----) [000] .n.1 24572.758073: cpu_idle: state=4294967295 cpu_id=0
32562          <idle>-0     (-----) [000] d..2 24572.758078: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
32563           <...>-13131 (-----) [005] ...1 24572.758108: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksMemory_createFromFd
32564<...>-24151 ( 24151) [000] d..2 24572.758119: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
32565           <...>-13131 (-----) [005] ...1 24572.758120: tracing_mark_write: E|13131
32566    RenderThread-24437 (24151) [003] .... 24572.758120: binder_transaction: transaction=1669466 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
32567          <idle>-0     (-----) [000] d..1 24572.758124: cpu_idle: state=0 cpu_id=0
32568    RenderThread-24437 (24151) [003] d..4 24572.758124: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=001
32569    RenderThread-24437 (24151) [003] d..5 24572.758135: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
32570    RenderThread-24437 (24151) [003] d..2 24572.758143: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
32571<...>-23903 ( 23896) [003] .... 24572.758147: binder_transaction_received: transaction=1669466
32572<...>-23903 ( 23896) [003] .... 24572.758189: binder_transaction: transaction=1669467 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
32573<...>-23903 ( 23896) [003] d..2 24572.758196: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=003
32574<...>-23903 ( 23896) [003] d..3 24572.758203: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=003
32575<...>-23903 ( 23896) [003] d..2 24572.758222: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
32576    RenderThread-24437 (24151) [003] .... 24572.758225: binder_transaction_received: transaction=1669467
32577  HwBinder:598_3-633   (  598) [001] ...1 24572.758592: tracing_mark_write: B|598|HWDeviceDRM::Validate::
32578          <idle>-0     (-----) [002] ...1 24572.759047: cpu_idle: state=4294967295 cpu_id=2
32579          <idle>-0     (-----) [002] d..1 24572.759050: cpu_idle: state=0 cpu_id=2
32580  HwBinder:598_3-633   (  598) [001] ...1 24572.759112: tracing_mark_write: E|598
32581  HwBinder:598_3-633   (  598) [001] ...1 24572.759218: tracing_mark_write: B|598|HWDeviceDRM::Commit::
32582  HwBinder:598_3-633   (  598) [001] ...1 24572.759224: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
32583    RenderThread-24437 (24151) [003] d..2 24572.759499: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
32584          <idle>-0     (-----) [000] d.h3 24572.759503: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=006
32585          <idle>-0     (-----) [003] d..1 24572.759509: cpu_idle: state=0 cpu_id=3
32586          <idle>-0     (-----) [000] dnh4 24572.759522: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
32587          <idle>-0     (-----) [000] .n.1 24572.759560: cpu_idle: state=4294967295 cpu_id=0
32588          <idle>-0     (-----) [000] d..2 24572.759564: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
32589 kgsl_worker_thr-246   (  246) [000] d..2 24572.759580: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
32590          <idle>-0     (-----) [000] d..1 24572.759584: cpu_idle: state=0 cpu_id=0
32591          <idle>-0     (-----) [003] d.h2 24572.759588: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=003
32592          <idle>-0     (-----) [003] d.h3 24572.759595: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
32593          <idle>-0     (-----) [003] dnh3 24572.759599: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=003
32594          <idle>-0     (-----) [003] .n.1 24572.759603: cpu_idle: state=4294967295 cpu_id=3
32595          <idle>-0     (-----) [003] d..2 24572.759610: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
32596    RenderThread-24437 (24151) [003] d..1 24572.759623: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
32597    RenderThread-24437 (24151) [003] d..2 24572.759633: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
32598          <idle>-0     (-----) [000] .n.1 24572.759638: cpu_idle: state=4294967295 cpu_id=0
32599          <idle>-0     (-----) [000] d..2 24572.759642: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
32600  HwBinder:598_3-633   (  598) [001] d..2 24572.759659: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
32601  HwBinder:598_3-633   (  598) [001] d..3 24572.759673: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
32602 kgsl_worker_thr-246   (  246) [000] d..2 24572.759675: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
32603          <idle>-0     (-----) [002] .n.1 24572.759677: cpu_idle: state=4294967295 cpu_id=2
32604          <idle>-0     (-----) [000] d..1 24572.759678: cpu_idle: state=0 cpu_id=0
32605          <idle>-0     (-----) [002] d..2 24572.759683: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
32606          <idle>-0     (-----) [000] ...1 24572.759706: cpu_idle: state=4294967295 cpu_id=0
32607          <idle>-0     (-----) [000] d..1 24572.759708: cpu_idle: state=0 cpu_id=0
32608  HwBinder:598_3-633   (  598) [001] ...1 24572.759735: tracing_mark_write: E|598
32609  HwBinder:598_3-633   (  598) [001] ...1 24572.759738: tracing_mark_write: E|598
32610          <idle>-0     (-----) [000] d.h2 24572.759770: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
32611    RenderThread-24437 (24151) [003] .... 24572.759771: binder_transaction: transaction=1669468 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
32612  HwBinder:598_3-633   (  598) [001] ...1 24572.759776: tracing_mark_write: E|598
32613          <idle>-0     (-----) [000] dnh3 24572.759776: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
32614    RenderThread-24437 (24151) [003] d..4 24572.759779: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
32615          <idle>-0     (-----) [000] .n.1 24572.759780: cpu_idle: state=4294967295 cpu_id=0
32616          <idle>-0     (-----) [000] d..2 24572.759783: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
32617    RenderThread-24437 (24151) [003] d..5 24572.759787: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
32618    RenderThread-24437 (24151) [003] d..2 24572.759796: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
32619 kgsl_worker_thr-246   (  246) [000] d..2 24572.759799: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=006
32620<...>-23903 ( 23896) [003] .... 24572.759800: binder_transaction_received: transaction=1669468
32621  HwBinder:598_3-633   (  598) [001] ...1 24572.759813: tracing_mark_write: E|598
32622  HwBinder:598_3-633   (  598) [001] .... 24572.759823: binder_transaction: transaction=1669469 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
32623 kgsl_worker_thr-246   (  246) [000] d..3 24572.759832: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
32624  HwBinder:598_3-633   (  598) [001] d..2 24572.759839: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
32625  HwBinder:598_3-633   (  598) [001] d..3 24572.759869: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
32626<...>-23903 ( 23896) [003] d..2 24572.759876: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
32627  HwBinder:598_3-633   (  598) [001] .... 24572.759879: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
32628  surfaceflinger-23896 (23896) [003] .... 24572.759883: binder_transaction_received: transaction=1669469
32629 kgsl_worker_thr-246   (  246) [000] d..2 24572.759887: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
32630  HwBinder:598_3-633   (  598) [001] d..2 24572.759941: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32631          <idle>-0     (-----) [001] d..1 24572.759953: cpu_idle: state=0 cpu_id=1
32632  kworker/u16:10-23868 (23868) [000] d..2 24572.760195: 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
32633          <idle>-0     (-----) [000] d..1 24572.760200: cpu_idle: state=0 cpu_id=0
32634  surfaceflinger-23896 (23896) [003] d.s1 24572.760216: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
32635  surfaceflinger-23896 (23896) [003] d.s2 24572.760227: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
32636  surfaceflinger-23896 (23896) [003] d..2 24572.760306: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
32637     ksoftirqd/3-34    (   34) [003] d.s2 24572.760319: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
32638     ksoftirqd/3-34    (   34) [003] d.s3 24572.760325: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
32639     ksoftirqd/3-34    (   34) [003] d.s3 24572.760331: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
32640          <idle>-0     (-----) [000] .n.1 24572.760336: cpu_idle: state=4294967295 cpu_id=0
32641     ksoftirqd/3-34    (   34) [003] d..2 24572.760339: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
32642          <idle>-0     (-----) [000] d..2 24572.760341: 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
32643  kworker/u16:10-23868 (23868) [000] d..2 24572.760358: 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
32644          <idle>-0     (-----) [000] d..1 24572.760362: cpu_idle: state=0 cpu_id=0
32645<...>-23903 ( 23896) [003] .... 24572.760365: binder_transaction: transaction=1669470 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
32646<...>-23903 ( 23896) [003] d..2 24572.760368: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=003
32647<...>-23903 ( 23896) [003] d..3 24572.760375: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=003
32648<...>-23903 ( 23896) [003] d..2 24572.760394: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
32649    RenderThread-24437 (24151) [003] .... 24572.760398: binder_transaction_received: transaction=1669470
32650    RenderThread-24437 (24151) [003] d..2 24572.760465: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
32651          <idle>-0     (-----) [003] d..1 24572.760476: cpu_idle: state=0 cpu_id=3
32652           <...>-13131 (-----) [005] ...1 24572.760587: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_create
32653           <...>-13131 (-----) [005] ...1 24572.760630: tracing_mark_write: E|13131
32654           <...>-13131 (-----) [005] ...1 24572.760642: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32655           <...>-13131 (-----) [005] ...1 24572.760647: tracing_mark_write: E|13131
32656           <...>-13131 (-----) [005] ...1 24572.760649: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32657           <...>-13131 (-----) [005] ...1 24572.760651: tracing_mark_write: E|13131
32658           <...>-13131 (-----) [005] ...1 24572.760653: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32659           <...>-13131 (-----) [005] ...1 24572.760654: tracing_mark_write: E|13131
32660           <...>-13131 (-----) [005] ...1 24572.760662: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
32661           <...>-13131 (-----) [005] d..2 24572.760719: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
32662          <idle>-0     (-----) [000] dnh2 24572.760741: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
32663          <idle>-0     (-----) [000] .n.1 24572.760744: cpu_idle: state=4294967295 cpu_id=0
32664          <idle>-0     (-----) [000] d..2 24572.760749: 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
32665           <...>-13131 (-----) [005] ...1 24572.760778: tracing_mark_write: E|13131
32666           <...>-13131 (-----) [005] ...1 24572.760779: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32667           <...>-13131 (-----) [005] ...1 24572.760781: tracing_mark_write: E|13131
32668           <...>-13131 (-----) [005] ...1 24572.760782: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32669           <...>-13131 (-----) [005] ...1 24572.760785: tracing_mark_write: E|13131
32670           <...>-13131 (-----) [005] ...1 24572.760786: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
32671           <...>-13131 (-----) [005] ...1 24572.760807: tracing_mark_write: E|13131
32672           <...>-13131 (-----) [005] ...1 24572.760809: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32673           <...>-13131 (-----) [005] ...1 24572.760810: tracing_mark_write: E|13131
32674           <...>-13131 (-----) [005] ...1 24572.760811: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
32675           <...>-13131 (-----) [005] ...1 24572.760831: tracing_mark_write: E|13131
32676           <...>-13131 (-----) [005] ...1 24572.760832: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32677           <...>-13131 (-----) [005] ...1 24572.760833: tracing_mark_write: E|13131
32678           <...>-13131 (-----) [005] ...1 24572.760834: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32679           <...>-13131 (-----) [005] ...1 24572.760836: tracing_mark_write: E|13131
32680           <...>-13131 (-----) [005] ...1 24572.760837: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
32681           <...>-13131 (-----) [005] ...1 24572.760855: tracing_mark_write: E|13131
32682           <...>-13131 (-----) [005] ...1 24572.760857: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32683           <...>-13131 (-----) [005] ...1 24572.760859: tracing_mark_write: E|13131
32684           <...>-13131 (-----) [005] ...1 24572.760860: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
32685     logd.writer-563   (  555) [000] d.s1 24572.760900: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
32686           <...>-13131 (-----) [005] d.s2 24572.760900: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
32687           <...>-13131 (-----) [005] ...1 24572.760908: tracing_mark_write: E|13131
32688           <...>-13131 (-----) [005] ...1 24572.760910: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32689           <...>-13131 (-----) [005] ...1 24572.760912: tracing_mark_write: E|13131
32690           <...>-13131 (-----) [005] ...1 24572.760913: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
32691     logd.writer-563   (  555) [000] dns2 24572.760915: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
32692     logd.writer-563   (  555) [000] dnH2 24572.760920: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
32693     logd.writer-563   (  555) [000] d..2 24572.760930: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
32694           <...>-13131 (-----) [005] ...1 24572.760935: tracing_mark_write: E|13131
32695           <...>-13131 (-----) [005] ...1 24572.760936: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32696           <...>-13131 (-----) [005] ...1 24572.760937: tracing_mark_write: E|13131
32697           <...>-13131 (-----) [005] ...1 24572.760938: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32698       rcu_sched-8     (    8) [000] d..2 24572.760939: sched_waking: comm=rcuos/6 pid=62 prio=120 target_cpu=006
32699           <...>-13131 (-----) [005] ...1 24572.760940: tracing_mark_write: E|13131
32700           <...>-13131 (-----) [005] ...1 24572.760941: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
32701           <...>-13131 (-----) [005] ...1 24572.760959: tracing_mark_write: E|13131
32702           <...>-13131 (-----) [005] ...1 24572.760960: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32703           <...>-13131 (-----) [005] ...1 24572.760961: tracing_mark_write: E|13131
32704           <...>-13131 (-----) [005] ...1 24572.760962: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
32705       rcu_sched-8     (    8) [000] d..3 24572.760971: sched_wakeup: comm=rcuos/6 pid=62 prio=120 target_cpu=000
32706           <...>-13131 (-----) [005] ...1 24572.760980: tracing_mark_write: E|13131
32707           <...>-13131 (-----) [005] ...1 24572.760982: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32708           <...>-13131 (-----) [005] ...1 24572.760983: tracing_mark_write: E|13131
32709           <...>-13131 (-----) [005] ...1 24572.760984: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32710           <...>-13131 (-----) [005] ...1 24572.760985: tracing_mark_write: E|13131
32711           <...>-13131 (-----) [005] ...1 24572.760986: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
32712       rcu_sched-8     (    8) [000] d..2 24572.761003: 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
32713           <...>-13131 (-----) [005] ...1 24572.761005: tracing_mark_write: E|13131
32714           <...>-13131 (-----) [005] ...1 24572.761006: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32715           <...>-13131 (-----) [005] ...1 24572.761007: tracing_mark_write: E|13131
32716<...>-62 ( 62) [000] d..2 24572.761008: sched_waking: comm=rcuos/7 pid=70 prio=120 target_cpu=002
32717           <...>-13131 (-----) [005] ...1 24572.761009: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32718           <...>-13131 (-----) [005] ...1 24572.761011: tracing_mark_write: E|13131
32719           <...>-13131 (-----) [005] ...1 24572.761012: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
32720<...>-62 ( 62) [000] d..3 24572.761029: sched_wakeup: comm=rcuos/7 pid=70 prio=120 target_cpu=000
32721           <...>-13131 (-----) [005] ...1 24572.761030: tracing_mark_write: E|13131
32722           <...>-13131 (-----) [005] ...1 24572.761031: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32723           <...>-13131 (-----) [005] ...1 24572.761032: tracing_mark_write: E|13131
32724           <...>-13131 (-----) [005] ...1 24572.761033: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
32725<...>-62 ( 62) [000] d..2 24572.761037: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
32726<...>-62 ( 62) [000] d..3 24572.761043: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
32727<...>-62 ( 62) [000] d..2 24572.761049: sched_switch: prev_comm=rcuos/6 prev_pid=62 prev_prio=120 prev_state=S ==> next_comm=rcuos/7 next_pid=70 next_prio=120
32728           <...>-13131 (-----) [005] ...1 24572.761051: tracing_mark_write: E|13131
32729           <...>-13131 (-----) [005] ...1 24572.761052: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32730           <...>-13131 (-----) [005] ...1 24572.761053: tracing_mark_write: E|13131
32731           <...>-13131 (-----) [005] ...1 24572.761054: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32732           <...>-13131 (-----) [005] ...1 24572.761055: tracing_mark_write: E|13131
32733           <...>-13131 (-----) [005] ...1 24572.761056: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
32734<...>-70 ( 70) [000] d..2 24572.761059: sched_switch: prev_comm=rcuos/7 prev_pid=70 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
32735       rcu_sched-8     (    8) [000] d..2 24572.761067: 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
32736           <...>-13131 (-----) [005] ...1 24572.761073: tracing_mark_write: E|13131
32737           <...>-13131 (-----) [005] ...1 24572.761075: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32738           <...>-13131 (-----) [005] ...1 24572.761076: tracing_mark_write: E|13131
32739           <...>-13131 (-----) [005] ...1 24572.761077: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
32740           <...>-13131 (-----) [005] ...1 24572.761095: tracing_mark_write: E|13131
32741           <...>-13131 (-----) [005] ...1 24572.761096: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32742           <...>-13131 (-----) [005] ...1 24572.761097: tracing_mark_write: E|13131
32743           <...>-13131 (-----) [005] ...1 24572.761098: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32744           <...>-13131 (-----) [005] ...1 24572.761099: tracing_mark_write: E|13131
32745           <...>-13131 (-----) [005] ...1 24572.761100: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
32746           <...>-13131 (-----) [005] ...1 24572.761117: tracing_mark_write: E|13131
32747           <...>-13131 (-----) [005] ...1 24572.761118: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32748           <...>-13131 (-----) [005] ...1 24572.761120: tracing_mark_write: E|13131
32749           <...>-13131 (-----) [005] ...1 24572.761121: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
32750           <...>-13131 (-----) [005] ...1 24572.761139: tracing_mark_write: E|13131
32751           <...>-13131 (-----) [005] ...1 24572.761140: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32752           <...>-13131 (-----) [005] ...1 24572.761141: tracing_mark_write: E|13131
32753           <...>-13131 (-----) [005] ...1 24572.761142: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32754           <...>-13131 (-----) [005] ...1 24572.761143: tracing_mark_write: E|13131
32755           <...>-13131 (-----) [005] ...1 24572.761144: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
32756           <...>-13131 (-----) [005] ...1 24572.761162: tracing_mark_write: E|13131
32757           <...>-13131 (-----) [005] ...1 24572.761163: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32758           <...>-13131 (-----) [005] ...1 24572.761164: tracing_mark_write: E|13131
32759           <...>-13131 (-----) [005] ...1 24572.761165: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
32760           <...>-13131 (-----) [005] ...1 24572.761183: tracing_mark_write: E|13131
32761           <...>-13131 (-----) [005] ...1 24572.761184: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32762           <...>-13131 (-----) [005] ...1 24572.761185: tracing_mark_write: E|13131
32763           <...>-13131 (-----) [005] ...1 24572.761186: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32764           <...>-13131 (-----) [005] ...1 24572.761187: tracing_mark_write: E|13131
32765           <...>-13131 (-----) [005] ...1 24572.761188: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
32766  kworker/u16:10-23868 (23868) [000] .... 24572.761198: clk_set_rate: l3_cluster0_vote_clk 652800000
32767           <...>-13131 (-----) [005] ...1 24572.761206: tracing_mark_write: E|13131
32768           <...>-13131 (-----) [005] ...1 24572.761207: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32769           <...>-13131 (-----) [005] ...1 24572.761209: tracing_mark_write: E|13131
32770           <...>-13131 (-----) [005] ...1 24572.761210: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
32771 crtc_commit:111-253   (  253) [002] d..2 24572.761228: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
32772          <idle>-0     (-----) [002] d..1 24572.761237: cpu_idle: state=0 cpu_id=2
32773           <...>-13131 (-----) [005] ...1 24572.761237: tracing_mark_write: E|13131
32774           <...>-13131 (-----) [005] ...1 24572.761238: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32775           <...>-13131 (-----) [005] ...1 24572.761239: tracing_mark_write: E|13131
32776           <...>-13131 (-----) [005] ...1 24572.761240: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32777           <...>-13131 (-----) [005] ...1 24572.761241: tracing_mark_write: E|13131
32778           <...>-13131 (-----) [005] ...1 24572.761242: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
32779           <...>-13131 (-----) [005] ...1 24572.761260: tracing_mark_write: E|13131
32780           <...>-13131 (-----) [005] ...1 24572.761261: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32781           <...>-13131 (-----) [005] ...1 24572.761264: tracing_mark_write: E|13131
32782           <...>-13131 (-----) [005] ...1 24572.761265: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
32783           <...>-13131 (-----) [005] ...1 24572.761283: tracing_mark_write: E|13131
32784           <...>-13131 (-----) [005] ...1 24572.761284: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32785           <...>-13131 (-----) [005] ...1 24572.761285: tracing_mark_write: E|13131
32786           <...>-13131 (-----) [005] ...1 24572.761286: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32787           <...>-13131 (-----) [005] ...1 24572.761287: tracing_mark_write: E|13131
32788           <...>-13131 (-----) [005] ...1 24572.761288: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
32789          <idle>-0     (-----) [001] ...1 24572.761304: cpu_idle: state=4294967295 cpu_id=1
32790           <...>-13131 (-----) [005] ...1 24572.761305: tracing_mark_write: E|13131
32791           <...>-13131 (-----) [005] ...1 24572.761306: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32792          <idle>-0     (-----) [001] d..1 24572.761307: cpu_idle: state=0 cpu_id=1
32793           <...>-13131 (-----) [005] ...1 24572.761308: tracing_mark_write: E|13131
32794           <...>-13131 (-----) [005] ...1 24572.761309: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
32795           <...>-13131 (-----) [005] ...1 24572.761326: tracing_mark_write: E|13131
32796           <...>-13131 (-----) [005] ...1 24572.761327: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32797           <...>-13131 (-----) [005] ...1 24572.761328: tracing_mark_write: E|13131
32798           <...>-13131 (-----) [005] ...1 24572.761329: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32799           <...>-13131 (-----) [005] ...1 24572.761330: tracing_mark_write: E|13131
32800           <...>-13131 (-----) [005] ...1 24572.761331: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
32801  kworker/u16:10-23868 (23868) [000] d..2 24572.761336: 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
32802           <...>-13131 (-----) [005] ...1 24572.761349: tracing_mark_write: E|13131
32803           <...>-13131 (-----) [005] ...1 24572.761350: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32804           <...>-13131 (-----) [005] ...1 24572.761351: tracing_mark_write: E|13131
32805           <...>-13131 (-----) [005] ...1 24572.761352: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
32806           <...>-13131 (-----) [005] ...1 24572.761369: tracing_mark_write: E|13131
32807           <...>-13131 (-----) [005] ...1 24572.761371: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32808           <...>-13131 (-----) [005] ...1 24572.761372: tracing_mark_write: E|13131
32809          <idle>-0     (-----) [003] d.s3 24572.761373: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
32810           <...>-13131 (-----) [005] ...1 24572.761375: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32811           <...>-13131 (-----) [005] ...1 24572.761376: tracing_mark_write: E|13131
32812          <idle>-0     (-----) [003] d.s4 24572.761386: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
32813          <idle>-0     (-----) [003] dns4 24572.761389: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
32814          <idle>-0     (-----) [003] .n.1 24572.761394: cpu_idle: state=4294967295 cpu_id=3
32815           <...>-13131 (-----) [005] ...1 24572.761396: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32816          <idle>-0     (-----) [003] d..2 24572.761401: 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
32817           <...>-13131 (-----) [005] ...1 24572.761421: tracing_mark_write: E|13131
32818           <...>-13131 (-----) [005] ...1 24572.761422: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32819           <...>-13131 (-----) [005] ...1 24572.761427: tracing_mark_write: E|13131
32820           <...>-13131 (-----) [005] ...1 24572.761429: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32821           <...>-13131 (-----) [005] ...1 24572.761449: tracing_mark_write: E|13131
32822           <...>-13131 (-----) [005] ...1 24572.761451: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32823           <...>-13131 (-----) [005] ...1 24572.761452: tracing_mark_write: E|13131
32824           <...>-13131 (-----) [005] ...1 24572.761453: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32825           <...>-13131 (-----) [005] ...1 24572.761469: tracing_mark_write: E|13131
32826           <...>-13131 (-----) [005] ...1 24572.761470: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32827           <...>-13131 (-----) [005] ...1 24572.761471: tracing_mark_write: E|13131
32828           <...>-13131 (-----) [005] ...1 24572.761472: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32829  kworker/u16:10-23868 (23868) [003] d..2 24572.761486: 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
32830           <...>-13131 (-----) [005] ...1 24572.761489: tracing_mark_write: E|13131
32831          <idle>-0     (-----) [003] d..1 24572.761493: cpu_idle: state=0 cpu_id=3
32832           <...>-13131 (-----) [005] ...1 24572.761497: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperation
32833           <...>-13131 (-----) [005] ...1 24572.761507: tracing_mark_write: E|13131
32834           <...>-13131 (-----) [005] ...1 24572.761509: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32835           <...>-13131 (-----) [005] ...1 24572.761510: tracing_mark_write: E|13131
32836           <...>-13131 (-----) [005] ...1 24572.761512: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32837           <...>-13131 (-----) [005] ...1 24572.761529: tracing_mark_write: E|13131
32838           <...>-13131 (-----) [005] ...1 24572.761531: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32839           <...>-13131 (-----) [005] ...1 24572.761532: tracing_mark_write: E|13131
32840           <...>-13131 (-----) [005] ...1 24572.761533: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32841           <...>-13131 (-----) [005] ...1 24572.761549: tracing_mark_write: E|13131
32842           <...>-13131 (-----) [005] ...1 24572.761550: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32843           <...>-13131 (-----) [005] ...1 24572.761551: tracing_mark_write: E|13131
32844           <...>-13131 (-----) [005] ...1 24572.761552: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32845           <...>-13131 (-----) [005] ...1 24572.761568: tracing_mark_write: E|13131
32846           <...>-13131 (-----) [005] ...1 24572.761569: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32847           <...>-13131 (-----) [005] ...1 24572.761570: tracing_mark_write: E|13131
32848           <...>-13131 (-----) [005] ...1 24572.761571: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32849           <...>-13131 (-----) [005] ...1 24572.761587: tracing_mark_write: E|13131
32850           <...>-13131 (-----) [005] ...1 24572.761588: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperation
32851           <...>-13131 (-----) [005] ...1 24572.761590: tracing_mark_write: E|13131
32852           <...>-13131 (-----) [005] ...1 24572.761592: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32853           <...>-13131 (-----) [005] ...1 24572.761593: tracing_mark_write: E|13131
32854           <...>-13131 (-----) [005] ...1 24572.761594: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32855           <...>-13131 (-----) [005] ...1 24572.761610: tracing_mark_write: E|13131
32856           <...>-13131 (-----) [005] ...1 24572.761612: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32857           <...>-13131 (-----) [005] ...1 24572.761613: tracing_mark_write: E|13131
32858           <...>-13131 (-----) [005] ...1 24572.761614: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32859           <...>-13131 (-----) [005] ...1 24572.761630: tracing_mark_write: E|13131
32860           <...>-13131 (-----) [005] ...1 24572.761631: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32861           <...>-13131 (-----) [005] ...1 24572.761632: tracing_mark_write: E|13131
32862           <...>-13131 (-----) [005] ...1 24572.761633: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32863           <...>-13131 (-----) [005] ...1 24572.761649: tracing_mark_write: E|13131
32864           <...>-13131 (-----) [005] ...1 24572.761650: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32865           <...>-13131 (-----) [005] ...1 24572.761651: tracing_mark_write: E|13131
32866           <...>-13131 (-----) [005] ...1 24572.761652: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32867           <...>-13131 (-----) [005] ...1 24572.761669: tracing_mark_write: E|13131
32868           <...>-13131 (-----) [005] ...1 24572.761670: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperation
32869           <...>-13131 (-----) [005] ...1 24572.761672: tracing_mark_write: E|13131
32870           <...>-13131 (-----) [005] ...1 24572.761673: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32871           <...>-13131 (-----) [005] ...1 24572.761674: tracing_mark_write: E|13131
32872           <...>-13131 (-----) [005] ...1 24572.761675: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32873           <...>-13131 (-----) [005] ...1 24572.761692: tracing_mark_write: E|13131
32874           <...>-13131 (-----) [005] ...1 24572.761693: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32875           <...>-13131 (-----) [005] ...1 24572.761694: tracing_mark_write: E|13131
32876           <...>-13131 (-----) [005] ...1 24572.761696: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32877           <...>-13131 (-----) [005] ...1 24572.761712: tracing_mark_write: E|13131
32878           <...>-13131 (-----) [005] ...1 24572.761714: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32879           <...>-13131 (-----) [005] ...1 24572.761715: tracing_mark_write: E|13131
32880           <...>-13131 (-----) [005] ...1 24572.761716: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32881           <...>-13131 (-----) [005] ...1 24572.761732: tracing_mark_write: E|13131
32882           <...>-13131 (-----) [005] ...1 24572.761733: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32883           <...>-13131 (-----) [005] ...1 24572.761734: tracing_mark_write: E|13131
32884           <...>-13131 (-----) [005] ...1 24572.761736: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32885           <...>-13131 (-----) [005] ...1 24572.761751: tracing_mark_write: E|13131
32886           <...>-13131 (-----) [005] ...1 24572.761752: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperation
32887           <...>-13131 (-----) [005] ...1 24572.761753: tracing_mark_write: E|13131
32888           <...>-13131 (-----) [005] ...1 24572.761755: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32889           <...>-13131 (-----) [005] ...1 24572.761756: tracing_mark_write: E|13131
32890           <...>-13131 (-----) [005] ...1 24572.761757: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32891           <...>-13131 (-----) [005] ...1 24572.761773: tracing_mark_write: E|13131
32892           <...>-13131 (-----) [005] ...1 24572.761774: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32893           <...>-13131 (-----) [005] ...1 24572.761775: tracing_mark_write: E|13131
32894           <...>-13131 (-----) [005] ...1 24572.761776: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32895           <...>-13131 (-----) [005] ...1 24572.761792: tracing_mark_write: E|13131
32896           <...>-13131 (-----) [005] ...1 24572.761793: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32897           <...>-13131 (-----) [005] ...1 24572.761794: tracing_mark_write: E|13131
32898           <...>-13131 (-----) [005] ...1 24572.761795: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32899           <...>-13131 (-----) [005] ...1 24572.761811: tracing_mark_write: E|13131
32900           <...>-13131 (-----) [005] ...1 24572.761812: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32901           <...>-13131 (-----) [005] ...1 24572.761813: tracing_mark_write: E|13131
32902           <...>-13131 (-----) [005] ...1 24572.761814: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32903           <...>-13131 (-----) [005] ...1 24572.761830: tracing_mark_write: E|13131
32904           <...>-13131 (-----) [005] ...1 24572.761831: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperation
32905           <...>-13131 (-----) [005] ...1 24572.761833: tracing_mark_write: E|13131
32906           <...>-13131 (-----) [005] ...1 24572.761834: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32907           <...>-13131 (-----) [005] ...1 24572.761835: tracing_mark_write: E|13131
32908           <...>-13131 (-----) [005] ...1 24572.761836: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32909           <...>-13131 (-----) [005] ...1 24572.761856: tracing_mark_write: E|13131
32910           <...>-13131 (-----) [005] ...1 24572.761857: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32911           <...>-13131 (-----) [005] ...1 24572.761859: tracing_mark_write: E|13131
32912           <...>-13131 (-----) [005] ...1 24572.761860: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32913           <...>-13131 (-----) [005] ...1 24572.761876: tracing_mark_write: E|13131
32914           <...>-13131 (-----) [005] ...1 24572.761877: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32915           <...>-13131 (-----) [005] ...1 24572.761879: tracing_mark_write: E|13131
32916           <...>-13131 (-----) [005] ...1 24572.761880: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32917           <...>-13131 (-----) [005] ...1 24572.761895: tracing_mark_write: E|13131
32918           <...>-13131 (-----) [005] ...1 24572.761896: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32919           <...>-13131 (-----) [005] ...1 24572.761897: tracing_mark_write: E|13131
32920           <...>-13131 (-----) [005] ...1 24572.761898: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32921           <...>-13131 (-----) [005] ...1 24572.761914: tracing_mark_write: E|13131
32922           <...>-13131 (-----) [005] ...1 24572.761915: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperation
32923           <...>-13131 (-----) [005] ...1 24572.761917: tracing_mark_write: E|13131
32924           <...>-13131 (-----) [005] ...1 24572.761918: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32925           <...>-13131 (-----) [005] ...1 24572.761920: tracing_mark_write: E|13131
32926           <...>-13131 (-----) [005] ...1 24572.761921: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32927           <...>-13131 (-----) [005] ...1 24572.761937: tracing_mark_write: E|13131
32928           <...>-13131 (-----) [005] ...1 24572.761938: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperation
32929           <...>-13131 (-----) [005] ...1 24572.761940: tracing_mark_write: E|13131
32930           <...>-13131 (-----) [005] ...1 24572.761941: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32931           <...>-13131 (-----) [005] ...1 24572.761942: tracing_mark_write: E|13131
32932           <...>-13131 (-----) [005] ...1 24572.761943: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32933           <...>-13131 (-----) [005] ...1 24572.761959: tracing_mark_write: E|13131
32934           <...>-13131 (-----) [005] ...1 24572.761960: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32935           <...>-13131 (-----) [005] ...1 24572.761961: tracing_mark_write: E|13131
32936           <...>-13131 (-----) [005] ...1 24572.761962: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32937           <...>-13131 (-----) [005] ...1 24572.761978: tracing_mark_write: E|13131
32938           <...>-13131 (-----) [005] ...1 24572.761979: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32939           <...>-13131 (-----) [005] ...1 24572.761980: tracing_mark_write: E|13131
32940           <...>-13131 (-----) [005] ...1 24572.761981: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32941           <...>-13131 (-----) [005] ...1 24572.761997: tracing_mark_write: E|13131
32942           <...>-13131 (-----) [005] ...1 24572.761998: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32943           <...>-13131 (-----) [005] ...1 24572.761999: tracing_mark_write: E|13131
32944           <...>-13131 (-----) [005] ...1 24572.762000: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32945           <...>-13131 (-----) [005] ...1 24572.762015: tracing_mark_write: E|13131
32946           <...>-13131 (-----) [005] ...1 24572.762017: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperation
32947           <...>-13131 (-----) [005] ...1 24572.762018: tracing_mark_write: E|13131
32948           <...>-13131 (-----) [005] ...1 24572.762020: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32949           <...>-13131 (-----) [005] ...1 24572.762021: tracing_mark_write: E|13131
32950           <...>-13131 (-----) [005] ...1 24572.762022: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32951           <...>-13131 (-----) [005] ...1 24572.762037: tracing_mark_write: E|13131
32952           <...>-13131 (-----) [005] ...1 24572.762038: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32953           <...>-13131 (-----) [005] ...1 24572.762039: tracing_mark_write: E|13131
32954           <...>-13131 (-----) [005] ...1 24572.762041: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32955           <...>-13131 (-----) [005] ...1 24572.762056: tracing_mark_write: E|13131
32956           <...>-13131 (-----) [005] ...1 24572.762057: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32957           <...>-13131 (-----) [005] ...1 24572.762058: tracing_mark_write: E|13131
32958           <...>-13131 (-----) [005] ...1 24572.762059: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32959           <...>-13131 (-----) [005] ...1 24572.762075: tracing_mark_write: E|13131
32960           <...>-13131 (-----) [005] ...1 24572.762076: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32961           <...>-13131 (-----) [005] ...1 24572.762077: tracing_mark_write: E|13131
32962           <...>-13131 (-----) [005] ...1 24572.762078: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32963           <...>-13131 (-----) [005] ...1 24572.762094: tracing_mark_write: E|13131
32964           <...>-13131 (-----) [005] ...1 24572.762095: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperation
32965           <...>-13131 (-----) [005] ...1 24572.762097: tracing_mark_write: E|13131
32966           <...>-13131 (-----) [005] ...1 24572.762098: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32967           <...>-13131 (-----) [005] ...1 24572.762099: tracing_mark_write: E|13131
32968           <...>-13131 (-----) [005] ...1 24572.762100: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32969           <...>-13131 (-----) [005] ...1 24572.762116: tracing_mark_write: E|13131
32970           <...>-13131 (-----) [005] ...1 24572.762118: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperation
32971           <...>-13131 (-----) [005] ...1 24572.762119: tracing_mark_write: E|13131
32972           <...>-13131 (-----) [005] ...1 24572.762120: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32973           <...>-13131 (-----) [005] ...1 24572.762121: tracing_mark_write: E|13131
32974           <...>-13131 (-----) [005] ...1 24572.762122: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32975           <...>-13131 (-----) [005] ...1 24572.762137: tracing_mark_write: E|13131
32976           <...>-13131 (-----) [005] ...1 24572.762139: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperation
32977           <...>-13131 (-----) [005] ...1 24572.762140: tracing_mark_write: E|13131
32978           <...>-13131 (-----) [005] ...1 24572.762141: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperation
32979           <...>-13131 (-----) [005] ...1 24572.762143: tracing_mark_write: E|13131
32980           <...>-13131 (-----) [005] ...1 24572.762145: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32981           <...>-13131 (-----) [005] ...1 24572.762146: tracing_mark_write: E|13131
32982           <...>-13131 (-----) [005] ...1 24572.762147: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32983           <...>-13131 (-----) [005] ...1 24572.762162: tracing_mark_write: E|13131
32984           <...>-13131 (-----) [005] ...1 24572.762163: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperation
32985           <...>-13131 (-----) [005] ...1 24572.762165: tracing_mark_write: E|13131
32986           <...>-13131 (-----) [005] ...1 24572.762166: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32987           <...>-13131 (-----) [005] ...1 24572.762168: tracing_mark_write: E|13131
32988           <...>-13131 (-----) [005] ...1 24572.762170: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32989           <...>-13131 (-----) [005] ...1 24572.762185: tracing_mark_write: E|13131
32990           <...>-13131 (-----) [005] ...1 24572.762186: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32991           <...>-13131 (-----) [005] ...1 24572.762188: tracing_mark_write: E|13131
32992           <...>-13131 (-----) [005] ...1 24572.762189: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32993           <...>-13131 (-----) [005] ...1 24572.762204: tracing_mark_write: E|13131
32994           <...>-13131 (-----) [005] ...1 24572.762205: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32995           <...>-13131 (-----) [005] ...1 24572.762207: tracing_mark_write: E|13131
32996           <...>-13131 (-----) [005] ...1 24572.762207: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32997           <...>-13131 (-----) [005] ...1 24572.762223: tracing_mark_write: E|13131
32998           <...>-13131 (-----) [005] ...1 24572.762224: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperand
32999           <...>-13131 (-----) [005] ...1 24572.762226: tracing_mark_write: E|13131
33000           <...>-13131 (-----) [005] ...1 24572.762227: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
33001           <...>-13131 (-----) [005] ...1 24572.762242: tracing_mark_write: E|13131
33002           <...>-13131 (-----) [005] ...1 24572.762243: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_addOperation
33003           <...>-13131 (-----) [005] ...1 24572.762244: tracing_mark_write: E|13131
33004           <...>-13131 (-----) [005] ...1 24572.762253: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_identifyInputsAndOutputs
33005           <...>-13131 (-----) [005] ...1 24572.762258: tracing_mark_write: E|13131
33006           <...>-13131 (-----) [005] ...1 24572.762263: tracing_mark_write: B|13131|[NN_LR_PP]ANeuralNetworksModel_finish
33007           <...>-13131 (-----) [005] ...1 24572.762290: tracing_mark_write: B|13131|[NN_LU_PU]validateModelVersioned
33008           <...>-13131 (-----) [005] ...1 24572.762383: tracing_mark_write: E|13131
33009           <...>-13131 (-----) [005] ...1 24572.762407: tracing_mark_write: E|13131
33010           <...>-13131 (-----) [005] ...1 24572.762415: tracing_mark_write: B|13131|[NN_LR_PC]ANeuralNetworksCompilation_create
33011           <...>-13131 (-----) [005] ...1 24572.762456: tracing_mark_write: B|13131|HIDL::IServiceManager::listByInterface::client
33012           <...>-13131 (-----) [005] ...1 24572.762457: tracing_mark_write: E|13131
33013           <...>-13131 (-----) [005] .... 24572.762477: binder_transaction: transaction=1669471 dest_node=1 dest_proc=568 dest_thread=0 reply=0 flags=0x10 code=0x5
33014           <...>-13131 (-----) [005] ...2 24572.762482: binder_set_priority: proc=568 thread=568 old=120 => new=110 desired=110
33015           <...>-13131 (-----) [005] d..4 24572.762484: sched_waking: comm=hwservicemanage pid=568 prio=110 target_cpu=001
33016     logd.writer-563   (  555) [000] dnh1 24572.762507: sched_wakeup: comm=hwservicemanage pid=568 prio=110 target_cpu=000
33017           <...>-13131 (-----) [005] d..2 24572.762512: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
33018     logd.writer-563   (  555) [000] d..2 24572.762514: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=hwservicemanage next_pid=568 next_prio=110
33019          <idle>-0     (-----) [005] d..1 24572.762521: cpu_idle: state=0 cpu_id=5
33020<...>-568 ( 568) [000] .... 24572.762521: binder_transaction_received: transaction=1669471
33021<...>-568 ( 568) [000] ...1 24572.762560: tracing_mark_write: B|568|HIDL::IServiceManager::listByInterface::server
33022<...>-568 ( 568) [000] ...1 24572.762838: tracing_mark_write: E|568
33023<...>-568 ( 568) [000] .... 24572.762846: binder_transaction: transaction=1669472 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
33024          <idle>-0     (-----) [003] ...1 24572.762847: cpu_idle: state=4294967295 cpu_id=3
33025          <idle>-0     (-----) [003] d..1 24572.762850: cpu_idle: state=0 cpu_id=3
33026<...>-568 ( 568) [000] d..2 24572.762852: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
33027<...>-568 ( 568) [000] .... 24572.762869: binder_set_priority: proc=568 thread=568 old=110 => new=120 desired=120
33028          <idle>-0     (-----) [004] dnh2 24572.762873: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
33029          <idle>-0     (-----) [004] .n.1 24572.762875: cpu_idle: state=4294967295 cpu_id=4
33030          <idle>-0     (-----) [004] d..2 24572.762879: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
33031           <...>-13131 (-----) [004] .... 24572.762882: binder_transaction_received: transaction=1669472
33032<...>-568 ( 568) [000] d..2 24572.762903: sched_switch: prev_comm=hwservicemanage prev_pid=568 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
33033           <...>-13131 (-----) [004] ...1 24572.762926: tracing_mark_write: B|13131|HIDL::IServiceManager::getTransport::client
33034           <...>-13131 (-----) [004] ...1 24572.762928: tracing_mark_write: E|13131
33035           <...>-13131 (-----) [004] .... 24572.762935: binder_transaction: transaction=1669473 dest_node=1 dest_proc=568 dest_thread=0 reply=0 flags=0x10 code=0x3
33036           <...>-13131 (-----) [004] ...2 24572.762938: binder_set_priority: proc=568 thread=568 old=120 => new=110 desired=110
33037           <...>-13131 (-----) [004] d..4 24572.762939: sched_waking: comm=hwservicemanage pid=568 prio=110 target_cpu=000
33038           <...>-13131 (-----) [004] d..2 24572.762953: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
33039     logd.writer-563   (  555) [000] dnh1 24572.762954: sched_wakeup: comm=hwservicemanage pid=568 prio=110 target_cpu=000
33040          <idle>-0     (-----) [004] d..1 24572.762958: cpu_idle: state=0 cpu_id=4
33041     logd.writer-563   (  555) [000] d..2 24572.762961: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=hwservicemanage next_pid=568 next_prio=110
33042<...>-568 ( 568) [000] .... 24572.762965: binder_transaction_received: transaction=1669473
33043<...>-568 ( 568) [000] ...1 24572.762977: tracing_mark_write: B|568|HIDL::IServiceManager::getTransport::server
33044<...>-568 ( 568) [000] ...1 24572.763176: tracing_mark_write: E|568
33045<...>-568 ( 568) [000] .... 24572.763182: binder_transaction: transaction=1669474 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
33046<...>-568 ( 568) [000] d..2 24572.763186: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
33047<...>-568 ( 568) [000] .... 24572.763194: binder_set_priority: proc=568 thread=568 old=110 => new=120 desired=120
33048          <idle>-0     (-----) [004] dnh2 24572.763199: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
33049          <idle>-0     (-----) [004] .n.1 24572.763201: cpu_idle: state=4294967295 cpu_id=4
33050          <idle>-0     (-----) [004] d..2 24572.763204: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
33051           <...>-13131 (-----) [004] .... 24572.763206: binder_transaction_received: transaction=1669474
33052           <...>-13131 (-----) [004] ...1 24572.763215: tracing_mark_write: B|13131|HIDL::IServiceManager::get::client
33053           <...>-13131 (-----) [004] ...1 24572.763216: tracing_mark_write: E|13131
33054<...>-568 ( 568) [000] d..2 24572.763220: sched_switch: prev_comm=hwservicemanage prev_pid=568 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
33055           <...>-13131 (-----) [004] .... 24572.763221: binder_transaction: transaction=1669475 dest_node=1 dest_proc=568 dest_thread=0 reply=0 flags=0x10 code=0x1
33056           <...>-13131 (-----) [004] ...2 24572.763222: binder_set_priority: proc=568 thread=568 old=120 => new=110 desired=110
33057           <...>-13131 (-----) [004] d..4 24572.763223: sched_waking: comm=hwservicemanage pid=568 prio=110 target_cpu=000
33058           <...>-13131 (-----) [004] d..2 24572.763234: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
33059     logd.writer-563   (  555) [000] dnh1 24572.763236: sched_wakeup: comm=hwservicemanage pid=568 prio=110 target_cpu=000
33060          <idle>-0     (-----) [004] d..1 24572.763236: cpu_idle: state=0 cpu_id=4
33061     logd.writer-563   (  555) [000] d..2 24572.763241: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=hwservicemanage next_pid=568 next_prio=110
33062<...>-568 ( 568) [000] .... 24572.763245: binder_transaction_received: transaction=1669475
33063<...>-568 ( 568) [000] ...1 24572.763256: tracing_mark_write: B|568|HIDL::IServiceManager::get::server
33064<...>-568 ( 568) [000] ...1 24572.763369: tracing_mark_write: E|568
33065<...>-568 ( 568) [000] .... 24572.763376: binder_transaction: transaction=1669476 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
33066<...>-568 ( 568) [000] d..2 24572.763389: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
33067<...>-568 ( 568) [000] .... 24572.763397: binder_set_priority: proc=568 thread=568 old=110 => new=120 desired=120
33068          <idle>-0     (-----) [004] dnh2 24572.763402: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
33069          <idle>-0     (-----) [004] .n.1 24572.763404: cpu_idle: state=4294967295 cpu_id=4
33070          <idle>-0     (-----) [004] d..2 24572.763406: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
33071           <...>-13131 (-----) [004] .... 24572.763408: binder_transaction_received: transaction=1669476
33072<...>-568 ( 568) [000] d..2 24572.763423: sched_switch: prev_comm=hwservicemanage prev_pid=568 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
33073           <...>-13131 (-----) [004] ...1 24572.763435: tracing_mark_write: B|13131|HIDL::IBase::interfaceChain::client
33074           <...>-13131 (-----) [004] ...1 24572.763436: tracing_mark_write: E|13131
33075           <...>-13131 (-----) [004] .... 24572.763465: binder_transaction: transaction=1669478 dest_node=807 dest_proc=771 dest_thread=0 reply=0 flags=0x10 code=0xf43484e
33076           <...>-13131 (-----) [004] ...2 24572.763468: binder_set_priority: proc=771 thread=20182 old=120 => new=110 desired=110
33077           <...>-13131 (-----) [004] d..4 24572.763469: sched_waking: comm=HwBinder:771_4 pid=20182 prio=110 target_cpu=001
33078           <...>-13131 (-----) [004] dn.5 24572.763480: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=110 target_cpu=004
33079           <...>-13131 (-----) [004] d..2 24572.763499: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=110
33080<...>-20182 ( 771) [004] .... 24572.763502: binder_transaction_received: transaction=1669478
33081<...>-20182 ( 771) [004] ...1 24572.763527: tracing_mark_write: B|771|HIDL::IBase::interfaceChain::server
33082     logd.writer-563   (  555) [000] d..2 24572.763538: 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
33083          <idle>-0     (-----) [000] d..1 24572.763545: cpu_idle: state=0 cpu_id=0
33084<...>-20182 ( 771) [004] ...1 24572.763545: tracing_mark_write: E|771
33085<...>-20182 ( 771) [004] .... 24572.763564: binder_transaction: transaction=1669479 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
33086<...>-20182 ( 771) [004] .... 24572.763566: binder_set_priority: proc=771 thread=20182 old=110 => new=120 desired=120
33087<...>-20182 ( 771) [004] d..2 24572.763581: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
33088           <...>-13131 (-----) [004] .... 24572.763583: binder_transaction_received: transaction=1669479
33089           <...>-13131 (-----) [004] ...1 24572.763611: tracing_mark_write: B|13131|HIDL::IBase::interfaceChain::client
33090           <...>-13131 (-----) [004] ...1 24572.763613: tracing_mark_write: E|13131
33091           <...>-13131 (-----) [004] .... 24572.763617: binder_transaction: transaction=1669480 dest_node=807 dest_proc=771 dest_thread=0 reply=0 flags=0x10 code=0xf43484e
33092           <...>-13131 (-----) [004] ...2 24572.763618: binder_set_priority: proc=771 thread=20182 old=120 => new=110 desired=110
33093           <...>-13131 (-----) [004] d..4 24572.763619: sched_waking: comm=HwBinder:771_4 pid=20182 prio=110 target_cpu=004
33094           <...>-13131 (-----) [004] dn.5 24572.763623: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=110 target_cpu=004
33095           <...>-13131 (-----) [004] d..2 24572.763625: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=110
33096<...>-20182 ( 771) [004] .... 24572.763627: binder_transaction_received: transaction=1669480
33097<...>-20182 ( 771) [004] ...1 24572.763631: tracing_mark_write: B|771|HIDL::IBase::interfaceChain::server
33098<...>-20182 ( 771) [004] ...1 24572.763635: tracing_mark_write: E|771
33099<...>-20182 ( 771) [004] .... 24572.763636: binder_transaction: transaction=1669481 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
33100<...>-20182 ( 771) [004] .... 24572.763638: binder_set_priority: proc=771 thread=20182 old=110 => new=120 desired=120
33101<...>-20182 ( 771) [004] d..2 24572.763648: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
33102           <...>-13131 (-----) [004] .... 24572.763650: binder_transaction_received: transaction=1669481
33103           <...>-13131 (-----) [004] ...1 24572.763667: tracing_mark_write: B|13131|[NN_LI_PI]getCapabilities_1_1
33104           <...>-13131 (-----) [004] ...1 24572.763671: tracing_mark_write: B|13131|HIDL::IDevice::getCapabilities_1_1::client
33105           <...>-13131 (-----) [004] ...1 24572.763672: tracing_mark_write: E|13131
33106           <...>-13131 (-----) [004] .... 24572.763677: binder_transaction: transaction=1669482 dest_node=807 dest_proc=771 dest_thread=0 reply=0 flags=0x10 code=0x5
33107           <...>-13131 (-----) [004] ...2 24572.763678: binder_set_priority: proc=771 thread=20182 old=120 => new=110 desired=110
33108           <...>-13131 (-----) [004] d..4 24572.763679: sched_waking: comm=HwBinder:771_4 pid=20182 prio=110 target_cpu=004
33109           <...>-13131 (-----) [004] dn.5 24572.763682: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=110 target_cpu=004
33110           <...>-13131 (-----) [004] d..2 24572.763684: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=110
33111<...>-20182 ( 771) [004] .... 24572.763686: binder_transaction_received: transaction=1669482
33112<...>-20182 ( 771) [004] ...1 24572.763691: tracing_mark_write: B|771|HIDL::IDevice::getCapabilities_1_1::server
33113<...>-20182 ( 771) [004] d..2 24572.763731: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
33114<...>-20182 ( 771) [004] d..2 24572.763749: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
33115          <idle>-0     (-----) [000] dnh2 24572.763755: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
33116           <...>-13131 (-----) [004] d..2 24572.763755: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
33117          <idle>-0     (-----) [000] .n.1 24572.763758: cpu_idle: state=4294967295 cpu_id=0
33118          <idle>-0     (-----) [004] d..1 24572.763760: cpu_idle: state=0 cpu_id=4
33119          <idle>-0     (-----) [000] d..2 24572.763764: 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
33120<...>-88 ( 88) [000] d..2 24572.763799: 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
33121          <idle>-0     (-----) [000] d..1 24572.763803: cpu_idle: state=0 cpu_id=0
33122          <idle>-0     (-----) [004] ...1 24572.764124: cpu_idle: state=4294967295 cpu_id=4
33123          <idle>-0     (-----) [004] d..1 24572.764125: cpu_idle: state=0 cpu_id=4
33124          <idle>-0     (-----) [002] d.h4 24572.764182: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
33125          <idle>-0     (-----) [002] dnh5 24572.764195: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
33126          <idle>-0     (-----) [002] .n.1 24572.764201: cpu_idle: state=4294967295 cpu_id=2
33127          <idle>-0     (-----) [002] d..2 24572.764208: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
33128          <idle>-0     (-----) [000] d.s2 24572.764228: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
33129<...>-87 ( 87) [002] d.s2 24572.764232: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
33130          <idle>-0     (-----) [000] dns3 24572.764237: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
33131<...>-87 ( 87) [002] d.s3 24572.764241: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
33132          <idle>-0     (-----) [000] .n.1 24572.764246: cpu_idle: state=4294967295 cpu_id=0
33133          <idle>-0     (-----) [000] d..2 24572.764251: 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
33134     rcu_preempt-7     (    7) [000] d..2 24572.764258: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=007
33135<...>-87 ( 87) [002] d..2 24572.764264: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
33136     rcu_preempt-7     (    7) [000] d..3 24572.764291: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=002
33137     kworker/2:0-12895 (12895) [002] d..2 24572.764296: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
33138     rcu_preempt-7     (    7) [000] d..2 24572.764323: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=007
33139         rcuop/4-45    (   45) [002] d..2 24572.764332: 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
33140          <idle>-0     (-----) [002] d..1 24572.764339: cpu_idle: state=0 cpu_id=2
33141     rcu_preempt-7     (    7) [000] d..3 24572.764353: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
33142     rcu_preempt-7     (    7) [000] d..2 24572.764388: 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
33143          <idle>-0     (-----) [002] dnh4 24572.764388: sched_waking: comm=HwBinder:771_4 pid=20182 prio=110 target_cpu=004
33144          <idle>-0     (-----) [000] d..1 24572.764393: cpu_idle: state=0 cpu_id=0
33145          <idle>-0     (-----) [002] dnh5 24572.764406: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=110 target_cpu=000
33146          <idle>-0     (-----) [000] .n.1 24572.764411: cpu_idle: state=4294967295 cpu_id=0
33147          <idle>-0     (-----) [000] d..2 24572.764416: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=110
33148<...>-20182 ( 771) [000] ...1 24572.764441: tracing_mark_write: E|771
33149<...>-20182 ( 771) [000] .... 24572.764449: binder_transaction: transaction=1669483 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
33150          <idle>-0     (-----) [002] .n.1 24572.764453: cpu_idle: state=4294967295 cpu_id=2
33151<...>-20182 ( 771) [000] d..2 24572.764453: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
33152          <idle>-0     (-----) [002] d..2 24572.764460: 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
33153<...>-20182 ( 771) [000] .... 24572.764461: binder_set_priority: proc=771 thread=20182 old=110 => new=120 desired=120
33154         rcuop/0-10    (   10) [002] d..2 24572.764464: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=005
33155          <idle>-0     (-----) [004] dnh2 24572.764466: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
33156          <idle>-0     (-----) [004] .n.1 24572.764468: cpu_idle: state=4294967295 cpu_id=4
33157          <idle>-0     (-----) [004] d..2 24572.764471: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
33158           <...>-13131 (-----) [004] .... 24572.764473: binder_transaction_received: transaction=1669483
33159           <...>-13131 (-----) [004] ...1 24572.764480: tracing_mark_write: E|13131
33160         rcuop/0-10    (   10) [002] d..3 24572.764496: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
33161<...>-20182 ( 771) [000] d..2 24572.764497: 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
33162           <...>-13131 (-----) [004] d..2 24572.764500: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
33163          <idle>-0     (-----) [000] d..1 24572.764503: cpu_idle: state=0 cpu_id=0
33164         rcuop/0-10    (   10) [002] d.h1 24572.764535: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
33165         rcuop/0-10    (   10) [002] d..2 24572.764547: 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
33166         rcuop/1-21    (   21) [002] d..2 24572.764558: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
33167           <...>-13131 (-----) [004] ...1 24572.764566: tracing_mark_write: B|13131|HIDL::IServiceManager::getTransport::client
33168           <...>-13131 (-----) [004] ...1 24572.764568: tracing_mark_write: E|13131
33169           <...>-13131 (-----) [004] .... 24572.764574: binder_transaction: transaction=1669484 dest_node=1 dest_proc=568 dest_thread=0 reply=0 flags=0x10 code=0x3
33170           <...>-13131 (-----) [004] ...2 24572.764576: binder_set_priority: proc=568 thread=568 old=120 => new=110 desired=110
33171           <...>-13131 (-----) [004] d..4 24572.764577: sched_waking: comm=hwservicemanage pid=568 prio=110 target_cpu=000
33172           <...>-13131 (-----) [004] d..2 24572.764589: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
33173          <idle>-0     (-----) [000] dnh2 24572.764590: sched_wakeup: comm=hwservicemanage pid=568 prio=110 target_cpu=000
33174          <idle>-0     (-----) [004] d..1 24572.764593: cpu_idle: state=0 cpu_id=4
33175          <idle>-0     (-----) [000] .n.1 24572.764594: cpu_idle: state=4294967295 cpu_id=0
33176          <idle>-0     (-----) [000] d..2 24572.764598: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwservicemanage next_pid=568 next_prio=110
33177<...>-568 ( 568) [000] .... 24572.764602: binder_transaction_received: transaction=1669484
33178<...>-568 ( 568) [000] ...1 24572.764615: tracing_mark_write: B|568|HIDL::IServiceManager::getTransport::server
33179     logd.writer-563   (  555) [002] d..2 24572.764627: 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
33180          <idle>-0     (-----) [002] d..1 24572.764635: cpu_idle: state=0 cpu_id=2
33181<...>-568 ( 568) [000] ...1 24572.764791: tracing_mark_write: E|568
33182<...>-568 ( 568) [000] .... 24572.764797: binder_transaction: transaction=1669485 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
33183<...>-568 ( 568) [000] d..2 24572.764801: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
33184<...>-568 ( 568) [000] .... 24572.764809: binder_set_priority: proc=568 thread=568 old=110 => new=120 desired=120
33185          <idle>-0     (-----) [004] dnh2 24572.764814: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
33186          <idle>-0     (-----) [004] .n.1 24572.764816: cpu_idle: state=4294967295 cpu_id=4
33187          <idle>-0     (-----) [004] d..2 24572.764820: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
33188           <...>-13131 (-----) [004] .... 24572.764821: binder_transaction_received: transaction=1669485
33189           <...>-13131 (-----) [004] ...1 24572.764827: tracing_mark_write: B|13131|HIDL::IServiceManager::get::client
33190           <...>-13131 (-----) [004] ...1 24572.764829: tracing_mark_write: E|13131
33191           <...>-13131 (-----) [004] .... 24572.764833: binder_transaction: transaction=1669486 dest_node=1 dest_proc=568 dest_thread=0 reply=0 flags=0x10 code=0x1
33192           <...>-13131 (-----) [004] ...2 24572.764834: binder_set_priority: proc=568 thread=568 old=120 => new=110 desired=110
33193           <...>-13131 (-----) [004] d..4 24572.764835: sched_waking: comm=hwservicemanage pid=568 prio=110 target_cpu=000
33194<...>-568 ( 568) [000] d..2 24572.764843: sched_switch: prev_comm=hwservicemanage prev_pid=568 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33195          <idle>-0     (-----) [000] d..1 24572.764849: cpu_idle: state=0 cpu_id=0
33196           <...>-13131 (-----) [004] d..2 24572.764854: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
33197          <idle>-0     (-----) [004] d..1 24572.764856: cpu_idle: state=0 cpu_id=4
33198          <idle>-0     (-----) [000] dnh2 24572.764858: sched_wakeup: comm=hwservicemanage pid=568 prio=110 target_cpu=000
33199          <idle>-0     (-----) [000] .n.1 24572.764862: cpu_idle: state=4294967295 cpu_id=0
33200          <idle>-0     (-----) [000] d..2 24572.764866: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwservicemanage next_pid=568 next_prio=110
33201<...>-568 ( 568) [000] .... 24572.764869: binder_transaction_received: transaction=1669486
33202<...>-568 ( 568) [000] ...1 24572.764879: tracing_mark_write: B|568|HIDL::IServiceManager::get::server
33203<...>-568 ( 568) [000] ...1 24572.764987: tracing_mark_write: E|568
33204<...>-568 ( 568) [000] .... 24572.764992: binder_transaction: transaction=1669487 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
33205<...>-568 ( 568) [000] d..2 24572.764999: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
33206<...>-568 ( 568) [000] .... 24572.765009: binder_set_priority: proc=568 thread=568 old=110 => new=120 desired=120
33207          <idle>-0     (-----) [004] dnh2 24572.765014: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
33208          <idle>-0     (-----) [004] .n.1 24572.765016: cpu_idle: state=4294967295 cpu_id=4
33209          <idle>-0     (-----) [004] d..2 24572.765018: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
33210           <...>-13131 (-----) [004] .... 24572.765019: binder_transaction_received: transaction=1669487
33211           <...>-13131 (-----) [004] ...1 24572.765029: tracing_mark_write: B|13131|HIDL::IBase::interfaceChain::client
33212           <...>-13131 (-----) [004] ...1 24572.765030: tracing_mark_write: E|13131
33213<...>-568 ( 568) [000] d..2 24572.765041: sched_switch: prev_comm=hwservicemanage prev_pid=568 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33214           <...>-13131 (-----) [004] .... 24572.765045: binder_transaction: transaction=1669489 dest_node=879 dest_proc=756 dest_thread=0 reply=0 flags=0x10 code=0xf43484e
33215          <idle>-0     (-----) [000] d..1 24572.765047: cpu_idle: state=0 cpu_id=0
33216           <...>-13131 (-----) [004] ...2 24572.765048: binder_set_priority: proc=756 thread=13857 old=120 => new=110 desired=110
33217           <...>-13131 (-----) [004] d..4 24572.765049: sched_waking: comm=HwBinder:756_1 pid=13857 prio=110 target_cpu=000
33218           <...>-13131 (-----) [004] dn.5 24572.765060: sched_wakeup: comm=HwBinder:756_1 pid=13857 prio=110 target_cpu=004
33219           <...>-13131 (-----) [004] d..2 24572.765078: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:756_1 next_pid=13857 next_prio=110
33220<...>-13857 ( 756) [004] .... 24572.765082: binder_transaction_received: transaction=1669489
33221<...>-13857 ( 756) [004] ...1 24572.765103: tracing_mark_write: B|756|HIDL::IBase::interfaceChain::server
33222<...>-13857 ( 756) [004] ...1 24572.765118: tracing_mark_write: E|756
33223<...>-13857 ( 756) [004] .... 24572.765126: binder_transaction: transaction=1669490 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
33224<...>-13857 ( 756) [004] .... 24572.765128: binder_set_priority: proc=756 thread=13857 old=110 => new=120 desired=120
33225<...>-13857 ( 756) [004] d..2 24572.765142: sched_switch: prev_comm=HwBinder:756_1 prev_pid=13857 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
33226           <...>-13131 (-----) [004] .... 24572.765144: binder_transaction_received: transaction=1669490
33227           <...>-13131 (-----) [004] ...1 24572.765157: tracing_mark_write: B|13131|HIDL::IBase::interfaceChain::client
33228           <...>-13131 (-----) [004] ...1 24572.765158: tracing_mark_write: E|13131
33229           <...>-13131 (-----) [004] .... 24572.765162: binder_transaction: transaction=1669491 dest_node=879 dest_proc=756 dest_thread=0 reply=0 flags=0x10 code=0xf43484e
33230           <...>-13131 (-----) [004] ...2 24572.765164: binder_set_priority: proc=756 thread=13857 old=120 => new=110 desired=110
33231           <...>-13131 (-----) [004] d..4 24572.765164: sched_waking: comm=HwBinder:756_1 pid=13857 prio=110 target_cpu=004
33232           <...>-13131 (-----) [004] dn.5 24572.765168: sched_wakeup: comm=HwBinder:756_1 pid=13857 prio=110 target_cpu=004
33233           <...>-13131 (-----) [004] d..2 24572.765170: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:756_1 next_pid=13857 next_prio=110
33234<...>-13857 ( 756) [004] .... 24572.765171: binder_transaction_received: transaction=1669491
33235<...>-13857 ( 756) [004] ...1 24572.765176: tracing_mark_write: B|756|HIDL::IBase::interfaceChain::server
33236<...>-13857 ( 756) [004] ...1 24572.765180: tracing_mark_write: E|756
33237<...>-13857 ( 756) [004] .... 24572.765182: binder_transaction: transaction=1669492 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
33238<...>-13857 ( 756) [004] .... 24572.765183: binder_set_priority: proc=756 thread=13857 old=110 => new=120 desired=120
33239<...>-13857 ( 756) [004] d..2 24572.765194: sched_switch: prev_comm=HwBinder:756_1 prev_pid=13857 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
33240           <...>-13131 (-----) [004] .... 24572.765195: binder_transaction_received: transaction=1669492
33241           <...>-13131 (-----) [004] ...1 24572.765202: tracing_mark_write: B|13131|[NN_LI_PI]getCapabilities
33242           <...>-13131 (-----) [004] ...1 24572.765204: tracing_mark_write: B|13131|HIDL::IDevice::getCapabilities::client
33243           <...>-13131 (-----) [004] ...1 24572.765206: tracing_mark_write: E|13131
33244           <...>-13131 (-----) [004] .... 24572.765210: binder_transaction: transaction=1669493 dest_node=879 dest_proc=756 dest_thread=0 reply=0 flags=0x10 code=0x1
33245           <...>-13131 (-----) [004] ...2 24572.765211: binder_set_priority: proc=756 thread=13857 old=120 => new=110 desired=110
33246           <...>-13131 (-----) [004] d..4 24572.765211: sched_waking: comm=HwBinder:756_1 pid=13857 prio=110 target_cpu=004
33247           <...>-13131 (-----) [004] dn.5 24572.765214: sched_wakeup: comm=HwBinder:756_1 pid=13857 prio=110 target_cpu=004
33248           <...>-13131 (-----) [004] d..2 24572.765217: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:756_1 next_pid=13857 next_prio=110
33249<...>-13857 ( 756) [004] .... 24572.765218: binder_transaction_received: transaction=1669493
33250<...>-13857 ( 756) [004] ...1 24572.765224: tracing_mark_write: B|756|HIDL::IDevice::getCapabilities::server
33251<...>-13857 ( 756) [004] ...1 24572.765228: tracing_mark_write: B|756|getCapabilities
33252<...>-13857 ( 756) [004] d..2 24572.765303: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
33253          <idle>-0     (-----) [002] dnh2 24572.765317: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
33254<...>-13857 ( 756) [004] ...1 24572.765319: tracing_mark_write: E|756
33255          <idle>-0     (-----) [002] .n.1 24572.765321: cpu_idle: state=4294967295 cpu_id=2
33256<...>-13857 ( 756) [004] .... 24572.765322: binder_transaction: transaction=1669494 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
33257<...>-13857 ( 756) [004] .... 24572.765323: binder_set_priority: proc=756 thread=13857 old=110 => new=120 desired=120
33258          <idle>-0     (-----) [002] d..2 24572.765327: 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
33259<...>-13857 ( 756) [004] ...1 24572.765330: tracing_mark_write: E|756
33260<...>-13857 ( 756) [004] d..2 24572.765336: sched_switch: prev_comm=HwBinder:756_1 prev_pid=13857 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
33261           <...>-13131 (-----) [004] .... 24572.765338: binder_transaction_received: transaction=1669494
33262           <...>-13131 (-----) [004] ...1 24572.765363: tracing_mark_write: E|13131
33263     logd.writer-563   (  555) [002] d..2 24572.765364: 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
33264          <idle>-0     (-----) [002] d..1 24572.765370: cpu_idle: state=0 cpu_id=2
33265           <...>-13131 (-----) [004] d..2 24572.765375: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
33266          <idle>-0     (-----) [002] dnh2 24572.765389: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
33267          <idle>-0     (-----) [002] .n.1 24572.765392: cpu_idle: state=4294967295 cpu_id=2
33268          <idle>-0     (-----) [002] d..2 24572.765398: 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
33269           <...>-13131 (-----) [004] ...1 24572.765436: tracing_mark_write: E|13131
33270           <...>-13131 (-----) [004] ...1 24572.765457: tracing_mark_write: B|13131|[NN_LR_PC]ANeuralNetworksCompilation_finish
33271     logd.writer-563   (  555) [002] d..2 24572.765460: 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
33272          <idle>-0     (-----) [002] d..1 24572.765467: cpu_idle: state=0 cpu_id=2
33273           <...>-13131 (-----) [004] d..2 24572.765469: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
33274          <idle>-0     (-----) [002] dnh2 24572.765483: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
33275           <...>-13131 (-----) [004] ...1 24572.765483: tracing_mark_write: E|13131
33276          <idle>-0     (-----) [002] .n.1 24572.765486: cpu_idle: state=4294967295 cpu_id=2
33277           <...>-13131 (-----) [004] ...1 24572.765491: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
33278          <idle>-0     (-----) [002] d..2 24572.765492: 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
33279           <...>-13131 (-----) [004] ...1 24572.765507: tracing_mark_write: E|13131
33280           <...>-13131 (-----) [004] ...1 24572.765516: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
33281           <...>-13131 (-----) [004] ...1 24572.765519: tracing_mark_write: E|13131
33282           <...>-13131 (-----) [004] ...1 24572.765525: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
33283           <...>-13131 (-----) [004] ...1 24572.765528: tracing_mark_write: E|13131
33284           <...>-13131 (-----) [004] ...1 24572.765534: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
33285     logd.writer-563   (  555) [002] d..2 24572.765539: 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
33286          <idle>-0     (-----) [002] d..1 24572.765546: cpu_idle: state=0 cpu_id=2
33287          <idle>-0     (-----) [000] .n.1 24572.765607: cpu_idle: state=4294967295 cpu_id=0
33288           <...>-13131 (-----) [004] ...1 24572.765610: tracing_mark_write: E|13131
33289          <idle>-0     (-----) [000] d..2 24572.765612: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13152 next_prio=110
33290           <...>-13131 (-----) [004] ...1 24572.765617: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
33291           <...>-13131 (-----) [004] d..2 24572.765627: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
33292          <idle>-0     (-----) [004] d..1 24572.765633: cpu_idle: state=0 cpu_id=4
33293           <...>-13152 (-----) [000] d..2 24572.765693: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
33294           <...>-13152 (-----) [000] d..3 24572.765707: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
33295          <idle>-0     (-----) [004] ...1 24572.765932: cpu_idle: state=4294967295 cpu_id=4
33296          <idle>-0     (-----) [004] d..1 24572.765933: cpu_idle: state=0 cpu_id=4
33297          <idle>-0     (-----) [001] .n.1 24572.765997: cpu_idle: state=4294967295 cpu_id=1
33298          <idle>-0     (-----) [001] d..2 24572.766005: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13153 next_prio=110
33299           <...>-13152 (-----) [000] d..2 24572.766023: sched_switch: prev_comm=id.nn.benchmark prev_pid=13152 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
33300           <...>-13153 (-----) [001] ...1 24572.766039: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
33301           <...>-13153 (-----) [001] ...1 24572.766044: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
33302           <...>-13153 (-----) [001] ...1 24572.766205: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
33303           <...>-13153 (-----) [001] ...1 24572.766227: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
33304     logd.writer-563   (  555) [000] d..2 24572.766296: 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
33305          <idle>-0     (-----) [000] d..1 24572.766305: cpu_idle: state=0 cpu_id=0
33306          <idle>-0     (-----) [002] ...1 24572.766732: cpu_idle: state=4294967295 cpu_id=2
33307          <idle>-0     (-----) [002] d..1 24572.766735: cpu_idle: state=0 cpu_id=2
33308          <idle>-0     (-----) [000] d.s2 24572.767563: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
33309          <idle>-0     (-----) [000] dns3 24572.767572: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
33310          <idle>-0     (-----) [000] .n.1 24572.767579: cpu_idle: state=4294967295 cpu_id=0
33311          <idle>-0     (-----) [000] d..2 24572.767584: 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
33312       rcu_sched-8     (    8) [000] d..2 24572.767601: 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
33313          <idle>-0     (-----) [000] d..1 24572.767606: cpu_idle: state=0 cpu_id=0
33314          <idle>-0     (-----) [000] .n.1 24572.768501: cpu_idle: state=4294967295 cpu_id=0
33315          <idle>-0     (-----) [000] d..2 24572.768506: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
33316          <idle>-0     (-----) [002] .n.1 24572.768559: cpu_idle: state=4294967295 cpu_id=2
33317          <idle>-0     (-----) [002] d..2 24572.768566: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
33318          <idle>-0     (-----) [003] .n.1 24572.768612: cpu_idle: state=4294967295 cpu_id=3
33319          <idle>-0     (-----) [003] d..2 24572.768620: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
33320          <idle>-0     (-----) [004] .n.1 24572.768670: cpu_idle: state=4294967295 cpu_id=4
33321          <idle>-0     (-----) [004] d..2 24572.768674: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
33322           <...>-13153 (-----) [001] d..1 24572.768681: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=004
33323           <...>-13157 (-----) [004] d..2 24572.768682: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=D|K ==> next_comm=swapper/4 next_pid=0 next_prio=120
33324          <idle>-0     (-----) [004] d..1 24572.768684: cpu_idle: state=0 cpu_id=4
33325          <idle>-0     (-----) [004] d.h2 24572.768695: sched_blocked_reason: pid=13157 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
33326          <idle>-0     (-----) [004] dnh2 24572.768696: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=004
33327          <idle>-0     (-----) [004] .n.1 24572.768698: cpu_idle: state=4294967295 cpu_id=4
33328          <idle>-0     (-----) [004] d..2 24572.768701: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
33329           <...>-13153 (-----) [001] d..1 24572.768704: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=004
33330           <...>-13157 (-----) [004] d..2 24572.768705: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=D|K ==> next_comm=swapper/4 next_pid=0 next_prio=120
33331          <idle>-0     (-----) [004] d..1 24572.768707: cpu_idle: state=0 cpu_id=4
33332          <idle>-0     (-----) [004] d.h2 24572.768716: sched_blocked_reason: pid=13157 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
33333          <idle>-0     (-----) [004] dnh2 24572.768717: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=004
33334          <idle>-0     (-----) [004] .n.1 24572.768719: cpu_idle: state=4294967295 cpu_id=4
33335          <idle>-0     (-----) [004] d..2 24572.768721: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
33336          <idle>-0     (-----) [005] .n.1 24572.768740: cpu_idle: state=4294967295 cpu_id=5
33337          <idle>-0     (-----) [005] d..2 24572.768745: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
33338           <...>-13153 (-----) [001] d..1 24572.768749: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
33339 id.nn.benchmark-13158 (13131) [005] d..2 24572.768753: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=D|K ==> next_comm=swapper/5 next_pid=0 next_prio=120
33340          <idle>-0     (-----) [005] d..1 24572.768755: cpu_idle: state=0 cpu_id=5
33341          <idle>-0     (-----) [005] d.h2 24572.768766: sched_blocked_reason: pid=13158 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
33342          <idle>-0     (-----) [005] dnh2 24572.768767: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
33343          <idle>-0     (-----) [005] .n.1 24572.768769: cpu_idle: state=4294967295 cpu_id=5
33344          <idle>-0     (-----) [005] d..2 24572.768771: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
33345           <...>-13153 (-----) [001] d..1 24572.768773: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
33346 id.nn.benchmark-13158 (13131) [005] d..2 24572.768776: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=D|K ==> next_comm=swapper/5 next_pid=0 next_prio=120
33347          <idle>-0     (-----) [005] d..1 24572.768778: cpu_idle: state=0 cpu_id=5
33348          <idle>-0     (-----) [005] d.h2 24572.768786: sched_blocked_reason: pid=13158 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
33349          <idle>-0     (-----) [005] dnh2 24572.768787: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
33350          <idle>-0     (-----) [005] .n.1 24572.768788: cpu_idle: state=4294967295 cpu_id=5
33351          <idle>-0     (-----) [005] d..2 24572.768791: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
33352          <idle>-0     (-----) [006] .n.1 24572.768808: cpu_idle: state=4294967295 cpu_id=6
33353          <idle>-0     (-----) [006] d..2 24572.768812: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
33354           <...>-13153 (-----) [001] d..1 24572.768819: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=006
33355 id.nn.benchmark-13159 (13131) [006] d..2 24572.768821: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=D|K ==> next_comm=swapper/6 next_pid=0 next_prio=120
33356          <idle>-0     (-----) [006] d..1 24572.768823: cpu_idle: state=0 cpu_id=6
33357          <idle>-0     (-----) [006] d.h2 24572.768834: sched_blocked_reason: pid=13159 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
33358          <idle>-0     (-----) [006] dnh2 24572.768835: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=006
33359          <idle>-0     (-----) [006] .n.1 24572.768837: cpu_idle: state=4294967295 cpu_id=6
33360          <idle>-0     (-----) [006] d..2 24572.768839: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
33361           <...>-13153 (-----) [001] d..1 24572.768841: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=006
33362 id.nn.benchmark-13159 (13131) [006] d..2 24572.768843: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=D|K ==> next_comm=swapper/6 next_pid=0 next_prio=120
33363          <idle>-0     (-----) [006] d..1 24572.768845: cpu_idle: state=0 cpu_id=6
33364          <idle>-0     (-----) [006] d.h2 24572.768854: sched_blocked_reason: pid=13159 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
33365          <idle>-0     (-----) [006] dnh2 24572.768855: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=006
33366          <idle>-0     (-----) [006] .n.1 24572.768857: cpu_idle: state=4294967295 cpu_id=6
33367          <idle>-0     (-----) [006] d..2 24572.768859: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
33368          <idle>-0     (-----) [007] .n.1 24572.768877: cpu_idle: state=4294967295 cpu_id=7
33369          <idle>-0     (-----) [007] d..2 24572.768883: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
33370           <...>-13153 (-----) [001] d..1 24572.768919: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=004
33371           <...>-13157 (-----) [004] d..2 24572.768919: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
33372 id.nn.benchmark-13158 (13131) [005] d..2 24572.768920: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
33373          <idle>-0     (-----) [004] d..1 24572.768922: cpu_idle: state=0 cpu_id=4
33374          <idle>-0     (-----) [005] d..1 24572.768923: cpu_idle: state=0 cpu_id=5
33375 id.nn.benchmark-13156 (13131) [003] d..1 24572.768925: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=007
33376 id.nn.benchmark-13159 (13131) [006] d..2 24572.768926: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
33377 id.nn.benchmark-13160 (13131) [007] d..2 24572.768927: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
33378          <idle>-0     (-----) [006] d..1 24572.768928: cpu_idle: state=0 cpu_id=6
33379          <idle>-0     (-----) [007] d..1 24572.768930: cpu_idle: state=0 cpu_id=7
33380          <idle>-0     (-----) [004] dnh2 24572.768931: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=004
33381          <idle>-0     (-----) [004] .n.1 24572.768934: cpu_idle: state=4294967295 cpu_id=4
33382          <idle>-0     (-----) [004] d..2 24572.768936: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
33383           <...>-13157 (-----) [004] d..1 24572.768939: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
33384          <idle>-0     (-----) [005] dnh2 24572.768948: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=005
33385           <...>-13157 (-----) [004] d..2 24572.768949: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=006
33386          <idle>-0     (-----) [005] .n.1 24572.768950: cpu_idle: state=4294967295 cpu_id=5
33387          <idle>-0     (-----) [005] d..2 24572.768953: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
33388          <idle>-0     (-----) [006] .n.1 24572.768953: cpu_idle: state=4294967295 cpu_id=6
33389 id.nn.benchmark-13160 (13131) [005] d..1 24572.768956: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=006
33390          <idle>-0     (-----) [006] d..2 24572.768956: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
33391           <...>-13157 (-----) [004] d..1 24572.768964: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=003
33392 id.nn.benchmark-13160 (13131) [005] d..2 24572.768966: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
33393          <idle>-0     (-----) [007] .n.1 24572.768970: cpu_idle: state=4294967295 cpu_id=7
33394          <idle>-0     (-----) [007] d..2 24572.768973: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
33395 id.nn.benchmark-13156 (13131) [003] d..2 24572.768976: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
33396          <idle>-0     (-----) [003] d..1 24572.768985: cpu_idle: state=0 cpu_id=3
33397          <idle>-0     (-----) [003] dnh2 24572.768994: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=003
33398          <idle>-0     (-----) [003] .n.1 24572.768998: cpu_idle: state=4294967295 cpu_id=3
33399          <idle>-0     (-----) [003] d..2 24572.769004: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
33400           <...>-13154 (-----) [000] d.h4 24572.769087: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
33401           <...>-13154 (-----) [000] d.h5 24572.769106: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
33402           <...>-13154 (-----) [000] d.h4 24572.769110: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
33403           <...>-13153 (-----) [001] d..2 24572.769116: sched_switch: prev_comm=id.nn.benchmark prev_pid=13153 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
33404           <...>-13154 (-----) [000] d.h5 24572.769118: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
33405 id.nn.benchmark-13155 (13131) [002] d..2 24572.769130: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
33406  crtc_event:111-254   (  254) [001] d..2 24572.769139: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13153 next_prio=110
33407 crtc_commit:111-253   (  253) [002] d..2 24572.769255: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
33408           <...>-13153 (-----) [001] ...1 24572.769430: tracing_mark_write: E|13131
33409           <...>-13153 (-----) [001] ...1 24572.769435: tracing_mark_write: E|13131
33410           <...>-13153 (-----) [001] ...1 24572.769460: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
33411           <...>-13153 (-----) [001] ...1 24572.769466: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
33412           <...>-13153 (-----) [001] ...1 24572.770182: tracing_mark_write: E|13131
33413           <...>-13153 (-----) [001] ...1 24572.770186: tracing_mark_write: E|13131
33414           <...>-13153 (-----) [001] ...1 24572.770200: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
33415           <...>-13153 (-----) [001] ...1 24572.770205: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
33416           <...>-13153 (-----) [001] ...1 24572.770548: tracing_mark_write: E|13131
33417           <...>-13153 (-----) [001] ...1 24572.770552: tracing_mark_write: E|13131
33418           <...>-13153 (-----) [001] ...1 24572.770568: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
33419           <...>-13153 (-----) [001] ...1 24572.770572: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
33420           <...>-13153 (-----) [001] ...1 24572.770833: tracing_mark_write: E|13131
33421           <...>-13153 (-----) [001] ...1 24572.770837: tracing_mark_write: E|13131
33422           <...>-13153 (-----) [001] ...1 24572.770846: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
33423           <...>-13153 (-----) [001] ...1 24572.770850: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
33424 id.nn.benchmark-13155 (13131) [002] d.s2 24572.770897: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
33425           <...>-13154 (-----) [000] d.s1 24572.770899: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
33426           <...>-13153 (-----) [001] d.s2 24572.770905: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33427 id.nn.benchmark-13155 (13131) [002] d.s3 24572.770910: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
33428           <...>-13154 (-----) [000] dns2 24572.770919: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
33429           <...>-13153 (-----) [001] dns3 24572.770921: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33430           <...>-13154 (-----) [000] d..2 24572.770927: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
33431           <...>-13153 (-----) [001] dns2 24572.770929: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
33432 id.nn.benchmark-13156 (13131) [003] d..2 24572.770930: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33433     rcu_preempt-7     (    7) [000] d..2 24572.770938: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
33434           <...>-13153 (-----) [001] dns3 24572.770946: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
33435           <...>-13153 (-----) [001] d..2 24572.770952: sched_switch: prev_comm=id.nn.benchmark prev_pid=13153 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
33436           <...>-13154 (-----) [000] d..2 24572.770953: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
33437       rcu_sched-8     (    8) [000] d..2 24572.770960: sched_waking: comm=rcuos/6 pid=62 prio=120 target_cpu=000
33438  crtc_event:111-254   (  254) [001] d..2 24572.770967: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13153 next_prio=110
33439       rcu_sched-8     (    8) [000] d..3 24572.770976: sched_wakeup: comm=rcuos/6 pid=62 prio=120 target_cpu=000
33440       rcu_sched-8     (    8) [000] d..2 24572.770985: 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
33441<...>-62 ( 62) [000] d..2 24572.770989: sched_waking: comm=rcuos/7 pid=70 prio=120 target_cpu=000
33442<...>-62 ( 62) [000] d..3 24572.771002: sched_wakeup: comm=rcuos/7 pid=70 prio=120 target_cpu=000
33443<...>-62 ( 62) [000] d..2 24572.771007: sched_switch: prev_comm=rcuos/6 prev_pid=62 prev_prio=120 prev_state=S ==> next_comm=rcuos/7 next_pid=70 next_prio=120
33444<...>-70 ( 70) [000] d..2 24572.771020: sched_switch: prev_comm=rcuos/7 prev_pid=70 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
33445  kworker/u16:10-23868 (23868) [003] d..2 24572.771143: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
33446 id.nn.benchmark-13156 (13131) [003] d.s2 24572.771174: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33447 id.nn.benchmark-13156 (13131) [003] d.s3 24572.771182: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
33448 id.nn.benchmark-13156 (13131) [003] dns3 24572.771186: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33449 id.nn.benchmark-13156 (13131) [003] d..2 24572.771192: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33450  kworker/u16:10-23868 (23868) [003] .... 24572.771292: clk_set_rate: l3_cluster1_vote_clk 748800000
33451  kworker/u16:10-23868 (23868) [003] .... 24572.771296: clk_set_rate: l3_clk 748800000
33452           <...>-13154 (-----) [000] d.h4 24572.771430: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
33453           <...>-13154 (-----) [000] d.h5 24572.771443: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
33454 id.nn.benchmark-13155 (13131) [002] d..2 24572.771454: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
33455 crtc_commit:111-253   (  253) [002] d..2 24572.771530: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
33456  kworker/u16:10-23868 (23868) [003] d..2 24572.771602: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
33457 id.nn.benchmark-13156 (13131) [003] d.s2 24572.771629: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33458 id.nn.benchmark-13156 (13131) [003] d.s3 24572.771638: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
33459 id.nn.benchmark-13156 (13131) [003] dns3 24572.771642: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33460 id.nn.benchmark-13156 (13131) [003] d..2 24572.771648: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33461           <...>-13154 (-----) [000] d.h4 24572.771723: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
33462           <...>-13154 (-----) [000] d.h5 24572.771733: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
33463           <...>-13154 (-----) [000] d.h6 24572.771741: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
33464           <...>-13153 (-----) [001] d..2 24572.771745: sched_switch: prev_comm=id.nn.benchmark prev_pid=13153 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
33465           <...>-13154 (-----) [000] dnh7 24572.771753: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
33466  crtc_event:111-254   (  254) [001] d..2 24572.771761: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13153 next_prio=110
33467           <...>-13154 (-----) [000] dnh8 24572.771765: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
33468           <...>-13154 (-----) [000] dnh9 24572.771775: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
33469           <...>-13154 (-----) [000] dnh6 24572.771780: sched_waking: comm=SDM_EventThread pid=624 prio=111 target_cpu=000
33470 id.nn.benchmark-13155 (13131) [002] d..2 24572.771784: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
33471           <...>-13154 (-----) [000] dnh7 24572.771811: sched_wakeup: comm=SDM_EventThread pid=624 prio=111 target_cpu=001
33472           <...>-13153 (-----) [001] d..2 24572.771820: sched_switch: prev_comm=id.nn.benchmark prev_pid=13153 prev_prio=110 prev_state=R ==> next_comm=SDM_EventThread next_pid=624 next_prio=111
33473 crtc_commit:111-253   (  253) [002] d..2 24572.771823: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
33474           <...>-13154 (-----) [000] d..2 24572.771828: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
33475     kworker/0:1-13012 (13012) [000] d..2 24572.771847: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
33476 SDM_EventThread-624   (  598) [001] d..2 24572.771874: sched_switch: prev_comm=SDM_EventThread prev_pid=624 prev_prio=111 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13153 next_prio=110
33477  kworker/u16:10-23868 (23868) [003] .... 24572.771889: clk_set_rate: l3_cluster0_vote_clk 940800000
33478  kworker/u16:10-23868 (23868) [003] .... 24572.771892: clk_set_rate: l3_clk 940800000
33479  kworker/u16:10-23868 (23868) [003] d..2 24572.771909: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
33480           <...>-13153 (-----) [001] ...1 24572.772163: tracing_mark_write: E|13131
33481           <...>-13153 (-----) [001] ...1 24572.772167: tracing_mark_write: E|13131
33482           <...>-13153 (-----) [001] ...1 24572.772179: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
33483           <...>-13153 (-----) [001] ...1 24572.772184: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
33484           <...>-13153 (-----) [001] ...1 24572.772600: tracing_mark_write: E|13131
33485           <...>-13153 (-----) [001] ...1 24572.772604: tracing_mark_write: E|13131
33486           <...>-13153 (-----) [001] ...1 24572.772622: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
33487           <...>-13153 (-----) [001] ...1 24572.772626: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
33488           <...>-13153 (-----) [001] d.h1 24572.772709: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
33489           <...>-13153 (-----) [001] dnh2 24572.772722: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
33490           <...>-13153 (-----) [001] d..2 24572.772732: sched_switch: prev_comm=id.nn.benchmark prev_pid=13153 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
33491        DispSync-23904 (23896) [001] d..1 24572.772764: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
33492        DispSync-23904 (23896) [001] d..2 24572.772777: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
33493 id.nn.benchmark-13156 (13131) [003] d..2 24572.772788: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
33494        DispSync-23904 (23896) [001] d..2 24572.772795: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13153 next_prio=110
33495 id.nn.benchmark-13155 (13131) [002] d..2 24572.772816: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=000
33496           <...>-13154 (-----) [000] d..2 24572.772832: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
33497   sfEventThread-23906 (23896) [003] d..3 24572.772838: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=000
33498          <idle>-0     (-----) [000] d..1 24572.772845: cpu_idle: state=0 cpu_id=0
33499 id.nn.benchmark-13155 (13131) [002] d..3 24572.772846: sched_blocked_reason: pid=13154 iowait=1 caller=__lock_page_or_retry+0x26c/0x2c4
33500 id.nn.benchmark-13155 (13131) [002] d..3 24572.772852: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=000
33501          <idle>-0     (-----) [000] .n.1 24572.772858: cpu_idle: state=4294967295 cpu_id=0
33502          <idle>-0     (-----) [000] d..2 24572.772866: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
33503   sfEventThread-23906 (23896) [003] d..4 24572.772876: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=000
33504           <...>-13154 (-----) [000] d..2 24572.772884: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R+ ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
33505   sfEventThread-23906 (23896) [003] d..3 24572.772889: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=004
33506           <...>-13157 (-----) [004] dnh1 24572.772904: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=004
33507           <...>-13157 (-----) [004] d..2 24572.772907: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
33508   sfEventThread-23906 (23896) [003] d..3 24572.772909: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
33509   sfEventThread-23906 (23896) [003] d..4 24572.772926: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
33510           <...>-13153 (-----) [001] d..2 24572.772936: sched_switch: prev_comm=id.nn.benchmark prev_pid=13153 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
33511   sfEventThread-23906 (23896) [003] d..2 24572.772941: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
33512<...>-24041 ( 23968) [004] d..2 24572.773042: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
33513<...>-24042 ( 23968) [000] .... 24572.773196: binder_transaction: transaction=1669495 dest_node=1271163 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
33514<...>-24042 ( 23968) [000] d..4 24572.773208: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
33515<...>-24042 ( 23968) [000] d..5 24572.773238: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
33516 id.nn.benchmark-13156 (13131) [003] d..2 24572.773248: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
33517<...>-23903 ( 23896) [003] .... 24572.773255: binder_transaction_received: transaction=1669495
33518<...>-23903 ( 23896) [003] d..1 24572.773285: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
33519<...>-23903 ( 23896) [003] d..2 24572.773300: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
33520 id.nn.benchmark-13155 (13131) [002] d..2 24572.773310: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
33521<...>-23903 ( 23896) [003] d..2 24572.773322: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
33522   sfEventThread-23906 (23896) [002] d..2 24572.773336: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
33523<...>-24042 ( 23968) [000] .... 24572.773392: binder_transaction: transaction=1669496 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
33524<...>-24042 ( 23968) [000] ...2 24572.773416: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
33525<...>-24042 ( 23968) [000] d..4 24572.773419: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=003
33526<...>-24042 ( 23968) [000] d..5 24572.773445: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=003
33527 id.nn.benchmark-13156 (13131) [003] d..2 24572.773454: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
33528<...>-24042 ( 23968) [000] d..2 24572.773456: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
33529<...>-23903 ( 23896) [003] .... 24572.773457: binder_transaction_received: transaction=1669496
33530  surfaceflinger-23896 (23896) [001] d..1 24572.773461: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
33531  surfaceflinger-23896 (23896) [001] d..2 24572.773475: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
33532 id.nn.benchmark-13155 (13131) [002] d..2 24572.773482: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
33533   sfEventThread-23906 (23896) [002] d..2 24572.773494: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
33534<...>-23903 ( 23896) [003] .... 24572.773532: binder_transaction: transaction=1669497 dest_node=0 dest_proc=23968 dest_thread=24042 reply=1 flags=0x0 code=0x0
33535<...>-23903 ( 23896) [003] d..2 24572.773538: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=000
33536<...>-23903 ( 23896) [003] d..3 24572.773564: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=000
33537<...>-23903 ( 23896) [003] .... 24572.773567: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
33538           <...>-13154 (-----) [000] d..2 24572.773574: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
33539<...>-24042 ( 23968) [000] .... 24572.773578: binder_transaction_received: transaction=1669497
33540<...>-23903 ( 23896) [003] d..2 24572.773603: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
33541<...>-24042 ( 23968) [000] d..2 24572.773628: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
33542  surfaceflinger-23896 (23896) [001] d.h1 24572.773722: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
33543  surfaceflinger-23896 (23896) [001] d.h2 24572.773739: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
33544 id.nn.benchmark-13156 (13131) [003] d..2 24572.773747: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
33545        DispSync-23904 (23896) [003] d..1 24572.773759: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
33546        DispSync-23904 (23896) [003] d..2 24572.773776: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
33547 id.nn.benchmark-13155 (13131) [002] d..2 24572.773783: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
33548        DispSync-23904 (23896) [003] d..2 24572.773788: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
33549  appEventThread-23905 (23896) [002] d..3 24572.773825: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
33550  appEventThread-23905 (23896) [002] d..4 24572.773852: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
33551           <...>-13154 (-----) [000] d..2 24572.773861: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
33552  appEventThread-23905 (23896) [002] d..2 24572.773867: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
33553<...>-24151 ( 24151) [000] .... 24572.774085: binder_transaction: transaction=1669498 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
33554<...>-24151 ( 24151) [000] d..4 24572.774091: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
33555<...>-24151 ( 24151) [000] d..5 24572.774120: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
33556 id.nn.benchmark-13156 (13131) [003] d..2 24572.774127: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
33557<...>-23903 ( 23896) [003] .... 24572.774130: binder_transaction_received: transaction=1669498
33558<...>-23903 ( 23896) [003] d..1 24572.774142: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
33559<...>-24151 ( 24151) [000] d..3 24572.774147: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=003
33560<...>-23903 ( 23896) [003] d..2 24572.774151: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
33561 id.nn.benchmark-13155 (13131) [002] d..2 24572.774159: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
33562<...>-23903 ( 23896) [003] d..2 24572.774167: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
33563  appEventThread-23905 (23896) [002] d..2 24572.774174: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
33564<...>-24151 ( 24151) [000] d..4 24572.774175: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=003
33565 id.nn.benchmark-13156 (13131) [003] d..2 24572.774183: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
33566  surfaceflinger-23896 (23896) [001] ...1 24572.774237: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
33567    RenderThread-24437 (24151) [003] d..2 24572.774239: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
33568  surfaceflinger-23896 (23896) [001] ...1 24572.774242: tracing_mark_write: E|23896
33569  surfaceflinger-23896 (23896) [001] .... 24572.774286: binder_transaction: transaction=1669499 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
33570  surfaceflinger-23896 (23896) [001] ...2 24572.774309: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
33571  surfaceflinger-23896 (23896) [001] d..4 24572.774315: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
33572<...>-24151 ( 24151) [000] d..3 24572.774324: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=003
33573  surfaceflinger-23896 (23896) [001] d..5 24572.774337: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
33574 id.nn.benchmark-13156 (13131) [003] d..2 24572.774345: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
33575  surfaceflinger-23896 (23896) [001] d..2 24572.774348: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13153 next_prio=110
33576  HwBinder:598_3-633   (  598) [003] .... 24572.774351: binder_transaction_received: transaction=1669499
33577           <...>-13153 (-----) [001] ...1 24572.774361: tracing_mark_write: E|13131
33578 id.nn.benchmark-13158 (13131) [006] dnh1 24572.774365: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
33579           <...>-13153 (-----) [001] ...1 24572.774366: tracing_mark_write: E|13131
33580           <...>-13153 (-----) [001] ...1 24572.774382: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
33581           <...>-13153 (-----) [001] ...1 24572.774386: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
33582  HwBinder:598_3-633   (  598) [003] ...1 24572.774389: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
33583 id.nn.benchmark-13158 (13131) [006] d..2 24572.774399: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
33584<...>-24151 ( 24151) [000] d.h3 24572.774401: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
33585<...>-24151 ( 24151) [000] d.h3 24572.774417: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
33586 id.nn.benchmark-13159 (13131) [007] dnh1 24572.774421: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
33587 id.nn.benchmark-13159 (13131) [007] d..2 24572.774425: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
33588<...>-24151 ( 24151) [000] d.h4 24572.774432: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
33589           <...>-13153 (-----) [001] d..2 24572.774443: sched_switch: prev_comm=id.nn.benchmark prev_pid=13153 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
33590         sugov:4-560   (  560) [007] .... 24572.774445: clk_set_rate: perfcl_clk 2092800000
33591         sugov:4-560   (  560) [007] .... 24572.774446: clk_set_rate: cpu7_perfcl_clk 2803200000
33592<...>-24151 ( 24151) [000] d..2 24572.774446: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
33593         sugov:4-560   (  560) [007] .... 24572.774451: clk_set_rate: cpu6_perfcl_clk 2803200000
33594         sugov:4-560   (  560) [007] .... 24572.774455: clk_set_rate: cpu5_perfcl_clk 2803200000
33595         sugov:0-559   (  559) [001] d..2 24572.774457: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13153 next_prio=110
33596         sugov:4-560   (  560) [007] .... 24572.774459: clk_set_rate: cpu4_perfcl_clk 2092800000
33597    RenderThread-24437 (24151) [006] d..1 24572.774462: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
33598         sugov:4-560   (  560) [007] .... 24572.774464: cpu_frequency: state=2092800 cpu_id=4
33599           <...>-13154 (-----) [000] dnh1 24572.774483: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
33600           <...>-13154 (-----) [000] d..2 24572.774490: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
33601  HwBinder:598_3-633   (  598) [003] ...1 24572.774508: tracing_mark_write: B|598|HWCSession::PresentDisplay::
33602    RenderThread-24437 (24151) [006] .... 24572.774518: binder_transaction: transaction=1669500 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
33603    RenderThread-24437 (24151) [006] d..4 24572.774522: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
33604<...>-24151 ( 24151) [000] d..2 24572.774532: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
33605  HwBinder:598_3-633   (  598) [003] d.h1 24572.774551: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
33606    RenderThread-24437 (24151) [006] d..2 24572.774552: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
33607         sugov:4-560   (  560) [007] d..2 24572.774573: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
33608  HwBinder:598_3-633   (  598) [003] d.s1 24572.774604: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
33609  HwBinder:598_3-633   (  598) [003] d.s2 24572.774613: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
33610  HwBinder:598_3-633   (  598) [003] ...1 24572.775102: tracing_mark_write: B|598|HWDeviceDRM::Validate::
33611  HwBinder:598_3-633   (  598) [003] ...1 24572.775545: tracing_mark_write: E|598
33612  HwBinder:598_3-633   (  598) [003] ...1 24572.775652: tracing_mark_write: B|598|HWDeviceDRM::Commit::
33613  HwBinder:598_3-633   (  598) [003] ...1 24572.775658: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
33614 id.nn.benchmark-13159 (13131) [007] d.h1 24572.775811: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=007
33615 id.nn.benchmark-13159 (13131) [007] dnh2 24572.775823: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=007
33616 id.nn.benchmark-13159 (13131) [007] d..2 24572.775828: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
33617<...>-23993 ( 23968) [007] .... 24572.775930: binder_transaction: transaction=1669501 dest_node=1307515 dest_proc=24827 dest_thread=0 reply=0 flags=0x11 code=0x1
33618<...>-23993 ( 23968) [007] d..4 24572.775937: sched_waking: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=007
33619<...>-23993 ( 23968) [007] d..5 24572.775949: sched_wakeup: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=007
33620  HwBinder:598_3-633   (  598) [003] d..2 24572.775970: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
33621<...>-23993 ( 23968) [007] .... 24572.775976: binder_transaction: transaction=1669502 dest_node=1276465 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x1
33622<...>-23993 ( 23968) [007] d..4 24572.775980: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=006
33623  HwBinder:598_3-633   (  598) [003] d..3 24572.775985: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
33624<...>-23993 ( 23968) [007] d..5 24572.775990: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=006
33625 id.nn.benchmark-13155 (13131) [002] d..2 24572.775995: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
33626 id.nn.benchmark-13158 (13131) [006] d..2 24572.775997: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
33627<...>-24177 ( 24151) [006] .... 24572.776001: binder_transaction_received: transaction=1669502
33628<...>-23993 ( 23968) [007] d..2 24572.776016: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=Binder:24827_5 next_pid=5558 next_prio=120
33629<...>-5558 ( 24827) [007] .... 24572.776021: binder_transaction_received: transaction=1669501
33630  HwBinder:598_3-633   (  598) [003] ...1 24572.776050: tracing_mark_write: E|598
33631  HwBinder:598_3-633   (  598) [003] ...1 24572.776053: tracing_mark_write: E|598
33632  HwBinder:598_3-633   (  598) [003] ...1 24572.776090: tracing_mark_write: E|598
33633  HwBinder:598_3-633   (  598) [003] ...1 24572.776127: tracing_mark_write: E|598
33634  HwBinder:598_3-633   (  598) [003] .... 24572.776138: binder_transaction: transaction=1669503 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
33635  HwBinder:598_3-633   (  598) [003] d..2 24572.776154: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
33636  HwBinder:598_3-633   (  598) [003] d..3 24572.776166: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
33637  HwBinder:598_3-633   (  598) [003] .... 24572.776169: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
33638           <...>-13153 (-----) [001] d..2 24572.776174: sched_switch: prev_comm=id.nn.benchmark prev_pid=13153 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
33639  surfaceflinger-23896 (23896) [001] .... 24572.776179: binder_transaction_received: transaction=1669503
33640<...>-24177 ( 24151) [006] .... 24572.776200: binder_transaction: transaction=1669504 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x5c
33641<...>-24177 ( 24151) [006] d..4 24572.776204: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
33642<...>-24177 ( 24151) [006] d..5 24572.776214: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
33643<...>-24177 ( 24151) [006] d..2 24572.776220: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
33644  HwBinder:598_3-633   (  598) [003] d..2 24572.776220: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
33645<...>-5558 ( 24827) [007] .... 24572.776231: binder_transaction: transaction=1669505 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x10
33646     ksoftirqd/3-34    (   34) [003] d.s2 24572.776232: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
33647<...>-5558 ( 24827) [007] d..4 24572.776236: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=003
33648 id.nn.benchmark-13160 (13131) [005] dnh1 24572.776253: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
33649     ksoftirqd/3-34    (   34) [003] d..2 24572.776257: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
33650 id.nn.benchmark-13160 (13131) [005] d..2 24572.776257: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
33651         sugov:4-560   (  560) [005] .... 24572.776264: cpu_frequency: state=2092800 cpu_id=5
33652<...>-5558 ( 24827) [007] d..2 24572.776265: sched_switch: prev_comm=Binder:24827_5 prev_pid=5558 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
33653<...>-23903 ( 23896) [003] d.h3 24572.776267: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=003
33654         sugov:4-560   (  560) [005] .... 24572.776268: cpu_frequency: state=2092800 cpu_id=6
33655         sugov:4-560   (  560) [005] .... 24572.776269: cpu_frequency: state=2092800 cpu_id=7
33656<...>-12589 ( 23968) [007] .... 24572.776269: binder_transaction_received: transaction=1669504
33657<...>-23903 ( 23896) [003] .... 24572.776271: binder_transaction_received: transaction=1669500
33658         sugov:4-560   (  560) [005] d..2 24572.776274: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
33659<...>-23903 ( 23896) [003] .... 24572.776325: binder_transaction: transaction=1669506 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
33660<...>-23903 ( 23896) [003] d..2 24572.776333: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
33661 id.nn.benchmark-13158 (13131) [006] dnh1 24572.776350: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
33662 id.nn.benchmark-13158 (13131) [006] d..2 24572.776353: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
33663    RenderThread-24437 (24151) [006] .... 24572.776356: binder_transaction_received: transaction=1669506
33664<...>-23903 ( 23896) [003] d..2 24572.776367: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
33665  Binder:23968_1-23981 (23968) [003] .... 24572.776375: binder_transaction_received: transaction=1669505
33666<...>-12589 ( 23968) [007] .... 24572.776472: binder_transaction: transaction=1669507 dest_node=0 dest_proc=24151 dest_thread=24177 reply=1 flags=0x0 code=0x0
33667<...>-12589 ( 23968) [007] d..2 24572.776475: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=006
33668<...>-12589 ( 23968) [007] d..3 24572.776484: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=006
33669<...>-12589 ( 23968) [007] d..2 24572.776497: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
33670  surfaceflinger-23896 (23896) [001] d..2 24572.776501: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13153 next_prio=110
33671  Binder:23968_1-23981 (23968) [003] .... 24572.776724: binder_transaction: transaction=1669508 dest_node=0 dest_proc=24827 dest_thread=5558 reply=1 flags=0x0 code=0x0
33672  Binder:23968_1-23981 (23968) [003] d..2 24572.776730: sched_waking: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=007
33673 id.nn.benchmark-13159 (13131) [007] dnh1 24572.776750: sched_wakeup: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=007
33674 id.nn.benchmark-13159 (13131) [007] d..2 24572.776754: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=Binder:24827_5 next_pid=5558 next_prio=120
33675<...>-5558 ( 24827) [007] .... 24572.776757: binder_transaction_received: transaction=1669508
33676  Binder:23968_1-23981 (23968) [003] d..2 24572.776771: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
33677           <...>-13153 (-----) [001] ...1 24572.776840: tracing_mark_write: E|13131
33678           <...>-13153 (-----) [001] ...1 24572.776844: tracing_mark_write: E|13131
33679           <...>-13153 (-----) [001] ...1 24572.776871: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
33680           <...>-13153 (-----) [001] ...1 24572.776900: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
33681<...>-5558 ( 24827) [007] .... 24572.777049: binder_transaction: transaction=1669509 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x2e
33682<...>-5558 ( 24827) [007] d..4 24572.777053: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=003
33683<...>-5558 ( 24827) [007] d..2 24572.777073: sched_switch: prev_comm=Binder:24827_5 prev_pid=5558 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
33684 id.nn.benchmark-13156 (13131) [003] dnh1 24572.777076: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=003
33685 id.nn.benchmark-13156 (13131) [003] d..2 24572.777083: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
33686  Binder:23968_1-23981 (23968) [003] .... 24572.777087: binder_transaction_received: transaction=1669509
33687    RenderThread-24437 (24151) [006] d..2 24572.777174: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
33688<...>-24177 ( 24151) [006] .... 24572.777177: binder_transaction_received: transaction=1669507
33689<...>-24177 ( 24151) [006] d..3 24572.777216: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
33690           <...>-13153 (-----) [001] ...1 24572.777236: tracing_mark_write: E|13131
33691           <...>-13154 (-----) [000] dnh1 24572.777240: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
33692           <...>-13153 (-----) [001] ...1 24572.777240: tracing_mark_write: E|13131
33693           <...>-13154 (-----) [000] d..2 24572.777245: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
33694           <...>-13153 (-----) [001] ...1 24572.777257: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
33695           <...>-13153 (-----) [001] ...1 24572.777261: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
33696<...>-24177 ( 24151) [006] d..2 24572.777263: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
33697 id.nn.benchmark-13158 (13131) [006] d.h1 24572.777271: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
33698 id.nn.benchmark-13158 (13131) [006] d.h2 24572.777276: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
33699 id.nn.benchmark-13158 (13131) [006] dnh2 24572.777278: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
33700 id.nn.benchmark-13158 (13131) [006] d..2 24572.777283: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
33701           <...>-13153 (-----) [001] ...1 24572.777316: tracing_mark_write: E|13131
33702           <...>-13153 (-----) [001] ...1 24572.777319: tracing_mark_write: E|13131
33703           <...>-13153 (-----) [001] ...1 24572.777329: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
33704           <...>-13153 (-----) [001] ...1 24572.777332: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
33705           <...>-13153 (-----) [001] ...1 24572.777351: tracing_mark_write: E|13131
33706           <...>-13153 (-----) [001] ...1 24572.777354: tracing_mark_write: E|13131
33707           <...>-13153 (-----) [001] ...1 24572.777368: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
33708           <...>-13153 (-----) [001] ...1 24572.777371: tracing_mark_write: E|13131
33709           <...>-13153 (-----) [001] ...1 24572.777383: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
33710    RenderThread-24437 (24151) [006] .... 24572.777385: binder_transaction: transaction=1669510 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
33711           <...>-13153 (-----) [001] ...1 24572.777388: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
33712<...>-24151 ( 24151) [000] d.h2 24572.777389: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
33713    RenderThread-24437 (24151) [006] d..4 24572.777390: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
33714<...>-24151 ( 24151) [000] d.h3 24572.777410: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
33715    RenderThread-24437 (24151) [006] d..2 24572.777410: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
33716  Binder:23968_1-23981 (23968) [003] d.h1 24572.777414: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
33717           <...>-13153 (-----) [001] d..2 24572.777421: sched_switch: prev_comm=id.nn.benchmark prev_pid=13153 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
33718 kgsl_worker_thr-246   (  246) [001] d..2 24572.777462: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33719<...>-24151 ( 24151) [000] d..1 24572.777466: sched_waking: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=007
33720 kgsl_worker_thr-246   (  246) [001] d..3 24572.777484: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33721  Binder:23968_1-23981 (23968) [003] .... 24572.777492: binder_transaction: transaction=1669511 dest_node=0 dest_proc=24827 dest_thread=5558 reply=1 flags=0x0 code=0x0
33722 id.nn.benchmark-13159 (13131) [007] dnh1 24572.777493: sched_wakeup: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=007
33723 id.nn.benchmark-13159 (13131) [007] d..2 24572.777496: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=pool-1-thread-1 next_pid=24340 next_prio=120
33724  Binder:23968_1-23981 (23968) [003] d..2 24572.777498: sched_waking: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=007
33725 kgsl_worker_thr-246   (  246) [001] d..2 24572.777501: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13153 next_prio=110
33726<...>-24340 ( 24151) [007] d.h1 24572.777520: sched_wakeup: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=007
33727<...>-24151 ( 24151) [000] d..2 24572.777524: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
33728 id.nn.benchmark-13160 (13131) [005] d..2 24572.777540: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
33729  Binder:23968_1-23981 (23968) [003] d..2 24572.777540: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
33730<...>-23903 ( 23896) [003] .... 24572.777546: binder_transaction_received: transaction=1669510
33731          <idle>-0     (-----) [005] d..1 24572.777565: cpu_idle: state=0 cpu_id=5
33732           <...>-13154 (-----) [000] d.s1 24572.777591: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
33733           <...>-13157 (-----) [004] d.h2 24572.777599: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
33734           <...>-13154 (-----) [000] dns2 24572.777605: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
33735           <...>-13157 (-----) [004] d.h3 24572.777607: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
33736           <...>-13157 (-----) [004] d.h2 24572.777608: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
33737<...>-24340 ( 24151) [007] .... 24572.777609: binder_transaction: transaction=1669512 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x37
33738<...>-24340 ( 24151) [007] d..4 24572.777612: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=003
33739           <...>-13154 (-----) [000] d..2 24572.777612: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
33740          <idle>-0     (-----) [005] .n.1 24572.777613: cpu_idle: state=4294967295 cpu_id=5
33741          <idle>-0     (-----) [005] d..2 24572.777618: 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
33742     rcu_preempt-7     (    7) [000] d..2 24572.777621: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=002
33743<...>-24340 ( 24151) [007] d..2 24572.777632: sched_switch: prev_comm=pool-1-thread-1 prev_pid=24340 prev_prio=120 prev_state=S ==> next_comm=Binder:24827_5 next_pid=5558 next_prio=120
33744         sugov:4-560   (  560) [005] .... 24572.777633: clk_set_rate: perfcl_clk 2169600000
33745<...>-23903 ( 23896) [003] d.h1 24572.777634: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=003
33746         sugov:4-560   (  560) [005] .... 24572.777634: clk_set_rate: cpu7_perfcl_clk 2092800000
33747<...>-5558 ( 24827) [007] .... 24572.777635: binder_transaction_received: transaction=1669511
33748     rcu_preempt-7     (    7) [000] d..3 24572.777639: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=002
33749         sugov:4-560   (  560) [005] .... 24572.777639: clk_set_rate: cpu6_perfcl_clk 2092800000
33750         sugov:4-560   (  560) [005] .... 24572.777643: clk_set_rate: cpu5_perfcl_clk 2092800000
33751     rcu_preempt-7     (    7) [000] dnh2 24572.777645: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
33752         sugov:4-560   (  560) [005] .... 24572.777647: clk_set_rate: cpu4_perfcl_clk 2169600000
33753     rcu_preempt-7     (    7) [000] d..2 24572.777651: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
33754         sugov:4-560   (  560) [005] .... 24572.777652: cpu_frequency: state=2169600 cpu_id=4
33755         sugov:4-560   (  560) [005] .... 24572.777657: cpu_frequency: state=2169600 cpu_id=5
33756         sugov:4-560   (  560) [005] .... 24572.777658: cpu_frequency: state=2169600 cpu_id=6
33757         sugov:4-560   (  560) [005] .... 24572.777659: cpu_frequency: state=2169600 cpu_id=7
33758         sugov:0-559   (  559) [000] d..2 24572.777660: 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
33759     rcu_preempt-7     (    7) [000] d..2 24572.777661: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
33760         sugov:4-560   (  560) [005] d..2 24572.777666: 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
33761          <idle>-0     (-----) [005] d..1 24572.777670: cpu_idle: state=0 cpu_id=5
33762     rcu_preempt-7     (    7) [000] d..2 24572.777684: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=006
33763 id.nn.benchmark-13158 (13131) [006] dnh1 24572.777690: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
33764 id.nn.benchmark-13158 (13131) [006] d..2 24572.777693: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
33765<...>-23903 ( 23896) [003] .... 24572.777698: binder_transaction: transaction=1669513 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
33766<...>-23903 ( 23896) [003] d..2 24572.777703: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
33767         rcuop/6-61    (   61) [006] d.h1 24572.777709: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=006
33768         rcuop/6-61    (   61) [006] d..2 24572.777711: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=006
33769     rcu_preempt-7     (    7) [000] d..2 24572.777712: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
33770         rcuop/6-61    (   61) [006] d..3 24572.777725: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=006
33771<...>-5558 ( 24827) [007] d.h1 24572.777734: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
33772         rcuop/6-61    (   61) [006] d..2 24572.777737: 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
33773         rcuop/2-29    (   29) [006] d..2 24572.777740: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=006
33774         rcuop/2-29    (   29) [006] d..3 24572.777750: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=006
33775<...>-23903 ( 23896) [003] d..2 24572.777751: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
33776  Binder:23968_1-23981 (23968) [003] .... 24572.777756: binder_transaction_received: transaction=1669512
33777         rcuop/2-29    (   29) [006] d..2 24572.777756: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/7 next_pid=69 next_prio=120
33778         rcuop/7-69    (   69) [006] d..2 24572.777763: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
33779           <...>-13157 (-----) [004] d..2 24572.777764: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
33780         rcuop/3-37    (   37) [006] d..2 24572.777767: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
33781          <idle>-0     (-----) [004] d..1 24572.777776: cpu_idle: state=0 cpu_id=4
33782          <idle>-0     (-----) [005] ...1 24572.777861: cpu_idle: state=4294967295 cpu_id=5
33783          <idle>-0     (-----) [005] d..1 24572.777862: cpu_idle: state=0 cpu_id=5
33784 crtc_commit:111-253   (  253) [002] d..2 24572.777887: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcuop/4 next_pid=45 next_prio=120
33785         rcuop/4-45    (   45) [002] d..2 24572.777893: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=007
33786<...>-5558 ( 24827) [007] .... 24572.777918: binder_transaction: transaction=1669514 dest_node=1272303 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x8
33787<...>-5558 ( 24827) [007] d.h1 24572.777925: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=007
33788<...>-5558 ( 24827) [007] d..4 24572.777927: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
33789         rcuop/4-45    (   45) [002] d..2 24572.777928: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
33790<...>-5558 ( 24827) [007] d..5 24572.777934: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
33791<...>-5558 ( 24827) [007] d..2 24572.777939: sched_switch: prev_comm=Binder:24827_5 prev_pid=5558 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
33792          <idle>-0     (-----) [004] ...1 24572.777967: cpu_idle: state=4294967295 cpu_id=4
33793          <idle>-0     (-----) [004] d..1 24572.777969: cpu_idle: state=0 cpu_id=4
33794         rcuop/5-53    (   53) [007] d..2 24572.777970: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
33795<...>-12589 ( 23968) [007] .... 24572.777972: binder_transaction_received: transaction=1669514
33796<...>-12589 ( 23968) [007] .... 24572.778120: binder_transaction: transaction=1669515 dest_node=0 dest_proc=24827 dest_thread=5558 reply=1 flags=0x0 code=0x0
33797<...>-12589 ( 23968) [007] d..2 24572.778124: sched_waking: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=007
33798<...>-12589 ( 23968) [007] d..3 24572.778141: sched_wakeup: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=006
33799 id.nn.benchmark-13158 (13131) [006] d..2 24572.778148: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:24827_5 next_pid=5558 next_prio=120
33800  Binder:23968_1-23981 (23968) [003] .... 24572.778149: binder_transaction: transaction=1669516 dest_node=0 dest_proc=24151 dest_thread=24340 reply=1 flags=0x0 code=0x0
33801<...>-5558 ( 24827) [006] .... 24572.778151: binder_transaction_received: transaction=1669515
33802  Binder:23968_1-23981 (23968) [003] d..2 24572.778154: sched_waking: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=007
33803<...>-12589 ( 23968) [007] d..2 24572.778156: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
33804    RenderThread-24437 (24151) [007] .... 24572.778159: binder_transaction_received: transaction=1669513
33805    RenderThread-24437 (24151) [007] d.h1 24572.778175: sched_wakeup: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=007
33806  Binder:23968_1-23981 (23968) [003] d..2 24572.778195: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33807    RenderThread-24437 (24151) [007] d..2 24572.778200: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=pool-1-thread-1 next_pid=24340 next_prio=120
33808  kworker/u16:10-23868 (23868) [003] d..2 24572.778201: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=005
33809<...>-24340 ( 24151) [007] .... 24572.778203: binder_transaction_received: transaction=1669516
33810  kworker/u16:10-23868 (23868) [003] d..3 24572.778237: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
33811 id.nn.benchmark-13155 (13131) [002] d..2 24572.778246: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
33812<...>-24340 ( 24151) [007] d..1 24572.778257: sched_waking: comm=Jit thread pool pid=24160 prio=129 target_cpu=001
33813  kworker/u16:10-23868 (23868) [003] d.h3 24572.778278: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
33814  kworker/u16:10-23868 (23868) [003] d.h3 24572.778287: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
33815          <idle>-0     (-----) [005] dnh2 24572.778291: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
33816          <idle>-0     (-----) [005] .n.1 24572.778293: cpu_idle: state=4294967295 cpu_id=5
33817<...>-24340 ( 24151) [007] d..2 24572.778294: sched_wakeup: comm=Jit thread pool pid=24160 prio=129 target_cpu=007
33818          <idle>-0     (-----) [005] d..2 24572.778296: 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
33819  kworker/u16:10-23868 (23868) [003] d.h4 24572.778296: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
33820           <...>-13154 (-----) [000] d..2 24572.778315: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
33821         sugov:0-559   (  559) [000] d..2 24572.778323: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
33822         sugov:4-560   (  560) [005] d..2 24572.778323: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
33823  kworker/u16:10-23868 (23868) [003] d..2 24572.778327: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
33824<...>-5558 ( 24827) [006] d..3 24572.778363: sched_waking: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=003
33825           <...>-13153 (-----) [001] ...1 24572.778386: tracing_mark_write: E|13131
33826 id.nn.benchmark-13156 (13131) [003] dnh1 24572.778386: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=003
33827           <...>-13153 (-----) [001] ...1 24572.778390: tracing_mark_write: E|13131
33828 id.nn.benchmark-13156 (13131) [003] d..2 24572.778391: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
33829           <...>-13153 (-----) [001] ...1 24572.778404: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
33830           <...>-13153 (-----) [001] ...1 24572.778409: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
33831<...>-5558 ( 24827) [006] d..2 24572.778409: sched_switch: prev_comm=Binder:24827_5 prev_pid=5558 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
33832  kworker/u16:15-18488 (18488) [002] d..2 24572.778413: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
33833           <...>-13153 (-----) [001] d..1 24572.778431: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=004
33834 s.nexuslauncher-24827 (24827) [003] d.s2 24572.778438: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
33835           <...>-13153 (-----) [001] d..1 24572.778446: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=005
33836          <idle>-0     (-----) [004] dnh2 24572.778447: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=004
33837<...>-24340 ( 24151) [007] .... 24572.778448: binder_transaction: transaction=1669517 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xd
33838 s.nexuslauncher-24827 (24827) [003] d.s3 24572.778448: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
33839          <idle>-0     (-----) [004] .n.1 24572.778450: cpu_idle: state=4294967295 cpu_id=4
33840<...>-24340 ( 24151) [007] d..4 24572.778451: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=003
33841 s.nexuslauncher-24827 (24827) [003] d.s3 24572.778455: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
33842          <idle>-0     (-----) [004] d..2 24572.778455: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
33843 id.nn.benchmark-13155 (13131) [002] d..2 24572.778463: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
33844<...>-24340 ( 24151) [007] d..2 24572.778472: sched_switch: prev_comm=pool-1-thread-1 prev_pid=24340 prev_prio=120 prev_state=S ==> next_comm=Jit thread pool next_pid=24160 next_prio=129
33845 s.nexuslauncher-24827 (24827) [003] d.h1 24572.778472: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=003
33846  kworker/u16:15-18488 (18488) [002] d..2 24572.778473: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
33847<...>-24160 ( 24151) [007] d.h3 24572.778478: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=007
33848 s.nexuslauncher-24827 (24827) [003] d..2 24572.778510: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
33849  Binder:23968_1-23981 (23968) [003] .... 24572.778515: binder_transaction_received: transaction=1669517
33850  Binder:23968_1-23981 (23968) [003] .... 24572.778841: binder_transaction: transaction=1669518 dest_node=0 dest_proc=24151 dest_thread=24340 reply=1 flags=0x0 code=0x0
33851  Binder:23968_1-23981 (23968) [003] d..2 24572.778846: sched_waking: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=007
33852 id.nn.benchmark-13158 (13131) [006] dnh1 24572.778876: sched_wakeup: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=006
33853 id.nn.benchmark-13158 (13131) [006] d..2 24572.778879: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=pool-1-thread-1 next_pid=24340 next_prio=120
33854<...>-24340 ( 24151) [006] .... 24572.778882: binder_transaction_received: transaction=1669518
33855  Binder:23968_1-23981 (23968) [003] d..2 24572.778894: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
33856<...>-24340 ( 24151) [006] d..2 24572.778972: sched_switch: prev_comm=pool-1-thread-1 prev_pid=24340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
33857<...>-24160 ( 24151) [007] d..2 24572.780508: sched_switch: prev_comm=Jit thread pool prev_pid=24160 prev_prio=129 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
33858           <...>-13153 (-----) [001] ...1 24572.780551: tracing_mark_write: E|13131
33859           <...>-13153 (-----) [001] ...1 24572.780555: tracing_mark_write: E|13131
33860           <...>-13153 (-----) [001] d..2 24572.780637: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
33861           <...>-13153 (-----) [001] d..3 24572.780654: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
33862           <...>-13153 (-----) [001] ...1 24572.780683: tracing_mark_write: E|13131
33863           <...>-13153 (-----) [001] d..1 24572.780690: sched_waking: comm=id.nn.benchmark pid=13152 prio=110 target_cpu=000
33864           <...>-13153 (-----) [001] d..2 24572.780718: sched_wakeup: comm=id.nn.benchmark pid=13152 prio=110 target_cpu=000
33865           <...>-13154 (-----) [000] d..2 24572.780728: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13152 next_prio=110
33866           <...>-13153 (-----) [001] ...1 24572.780736: tracing_mark_write: E|13131
33867           <...>-13152 (-----) [000] d..2 24572.780749: sched_switch: prev_comm=id.nn.benchmark prev_pid=13152 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
33868           <...>-13153 (-----) [001] d.s2 24572.780905: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
33869           <...>-13153 (-----) [001] d.s3 24572.780924: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
33870 id.nn.benchmark-13155 (13131) [002] d..2 24572.780932: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
33871  kworker/u16:15-18488 (18488) [002] .... 24572.781035: clk_set_rate: l3_cluster0_vote_clk 1401600000
33872  kworker/u16:15-18488 (18488) [002] .... 24572.781040: clk_set_rate: l3_clk 1401600000
33873           <...>-13153 (-----) [001] d..1 24572.781086: sched_waking: comm=id.nn.benchmark pid=13152 prio=110 target_cpu=000
33874           <...>-13153 (-----) [001] d..2 24572.781110: sched_wakeup: comm=id.nn.benchmark pid=13152 prio=110 target_cpu=000
33875           <...>-13154 (-----) [000] d..2 24572.781118: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13152 next_prio=110
33876           <...>-13153 (-----) [001] d..2 24572.781188: sched_switch: prev_comm=id.nn.benchmark prev_pid=13153 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
33877  kworker/u16:15-18488 (18488) [002] .... 24572.781235: clk_set_rate: l3_cluster1_vote_clk 1401600000
33878           <...>-13152 (-----) [000] d..1 24572.781248: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
33879           <...>-13157 (-----) [004] dnh1 24572.781271: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
33880           <...>-13157 (-----) [004] d..2 24572.781275: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
33881           <...>-13131 (-----) [004] d..2 24572.781284: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
33882  kworker/u16:15-18488 (18488) [002] d..2 24572.781334: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
33883           <...>-13152 (-----) [000] d..1 24572.781340: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
33884     logd.writer-563   (  555) [001] d..2 24572.781341: 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
33885          <idle>-0     (-----) [001] d..1 24572.781358: cpu_idle: state=0 cpu_id=1
33886           <...>-13157 (-----) [004] dnh1 24572.781358: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
33887           <...>-13157 (-----) [004] d..2 24572.781361: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
33888           <...>-13131 (-----) [004] ...1 24572.781377: tracing_mark_write: E|13131
33889           <...>-13152 (-----) [000] d..2 24572.781393: sched_switch: prev_comm=id.nn.benchmark prev_pid=13152 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
33890           <...>-13131 (-----) [004] ...1 24572.781437: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
33891           <...>-13131 (-----) [004] ...1 24572.781441: tracing_mark_write: E|13131
33892           <...>-13131 (-----) [004] ...1 24572.781448: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
33893           <...>-13131 (-----) [004] ...1 24572.781450: tracing_mark_write: E|13131
33894           <...>-13131 (-----) [004] ...1 24572.781524: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
33895           <...>-13131 (-----) [004] d..2 24572.781543: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
33896           <...>-13131 (-----) [004] ...1 24572.781564: tracing_mark_write: E|13131
33897          <idle>-0     (-----) [001] dnh2 24572.781564: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
33898           <...>-13131 (-----) [004] ...1 24572.781567: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
33899          <idle>-0     (-----) [001] .n.1 24572.781569: cpu_idle: state=4294967295 cpu_id=1
33900           <...>-13131 (-----) [004] ...1 24572.781571: tracing_mark_write: E|13131
33901           <...>-13131 (-----) [004] ...1 24572.781573: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
33902           <...>-13131 (-----) [004] ...1 24572.781576: tracing_mark_write: E|13131
33903          <idle>-0     (-----) [001] d..2 24572.781576: 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
33904           <...>-13131 (-----) [004] ...1 24572.781578: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
33905     logd.writer-563   (  555) [001] d..2 24572.781609: 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
33906          <idle>-0     (-----) [001] d..1 24572.781616: cpu_idle: state=0 cpu_id=1
33907           <...>-13131 (-----) [004] ...1 24572.781656: tracing_mark_write: E|13131
33908          <idle>-0     (-----) [001] .n.1 24572.781656: cpu_idle: state=4294967295 cpu_id=1
33909           <...>-13131 (-----) [004] ...1 24572.781658: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
33910          <idle>-0     (-----) [001] d..2 24572.781663: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13161 next_prio=110
33911           <...>-13131 (-----) [004] d..2 24572.781663: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
33912           <...>-13161 (-----) [001] d..2 24572.781724: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
33913           <...>-13161 (-----) [001] d..3 24572.781732: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
33914           <...>-13161 (-----) [001] d..2 24572.782047: sched_switch: prev_comm=id.nn.benchmark prev_pid=13161 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
33915     logd.writer-563   (  555) [001] d..2 24572.782259: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13162 next_prio=110
33916           <...>-13162 (-----) [001] ...1 24572.782286: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
33917           <...>-13162 (-----) [001] ...1 24572.782291: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
33918           <...>-13162 (-----) [001] d..2 24572.782352: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
33919           <...>-13162 (-----) [001] d..3 24572.782360: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
33920           <...>-13162 (-----) [001] ...1 24572.782430: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
33921           <...>-13162 (-----) [001] ...1 24572.782436: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
33922 id.nn.benchmark-13159 (13131) [005] d..2 24572.783914: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
33923          <idle>-0     (-----) [005] d..1 24572.783918: cpu_idle: state=0 cpu_id=5
33924 id.nn.benchmark-13158 (13131) [006] d..2 24572.784024: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
33925          <idle>-0     (-----) [006] d..1 24572.784033: cpu_idle: state=0 cpu_id=6
33926           <...>-13162 (-----) [001] d..1 24572.784102: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=006
33927          <idle>-0     (-----) [005] ...1 24572.784109: cpu_idle: state=4294967295 cpu_id=5
33928          <idle>-0     (-----) [005] d..1 24572.784111: cpu_idle: state=0 cpu_id=5
33929           <...>-13162 (-----) [001] d..1 24572.784121: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=005
33930          <idle>-0     (-----) [005] dnh2 24572.784125: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
33931          <idle>-0     (-----) [005] .n.1 24572.784127: cpu_idle: state=4294967295 cpu_id=5
33932          <idle>-0     (-----) [005] d..2 24572.784132: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
33933          <idle>-0     (-----) [006] dnh2 24572.784140: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=006
33934          <idle>-0     (-----) [006] .n.1 24572.784142: cpu_idle: state=4294967295 cpu_id=6
33935          <idle>-0     (-----) [006] d..2 24572.784147: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
33936           <...>-13154 (-----) [000] d.s1 24572.784232: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
33937           <...>-13154 (-----) [000] dns2 24572.784248: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
33938           <...>-13154 (-----) [000] d..2 24572.784256: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
33939     rcu_preempt-7     (    7) [000] d..2 24572.784261: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
33940     rcu_preempt-7     (    7) [000] d..3 24572.784280: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
33941 id.nn.benchmark-13155 (13131) [002] d..2 24572.784289: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
33942     rcu_preempt-7     (    7) [000] d..2 24572.784291: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
33943         rcuop/0-10    (   10) [002] d..2 24572.784294: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
33944         rcuop/0-10    (   10) [002] d..3 24572.784314: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
33945         rcuop/0-10    (   10) [002] d..2 24572.784361: 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
33946         rcuop/1-21    (   21) [002] d..2 24572.784371: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
33947           <...>-13162 (-----) [001] ...1 24572.784543: tracing_mark_write: E|13131
33948           <...>-13162 (-----) [001] ...1 24572.784547: tracing_mark_write: E|13131
33949           <...>-13162 (-----) [001] ...1 24572.784560: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
33950           <...>-13162 (-----) [001] ...1 24572.784564: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
33951           <...>-13162 (-----) [001] ...1 24572.785268: tracing_mark_write: E|13131
33952           <...>-13162 (-----) [001] ...1 24572.785272: tracing_mark_write: E|13131
33953           <...>-13162 (-----) [001] ...1 24572.785287: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
33954           <...>-13162 (-----) [001] ...1 24572.785291: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
33955           <...>-13154 (-----) [000] d.h4 24572.785566: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
33956           <...>-13154 (-----) [000] d.h5 24572.785592: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
33957           <...>-13154 (-----) [000] d.h4 24572.785597: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
33958 id.nn.benchmark-13156 (13131) [003] d..2 24572.785603: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
33959           <...>-13154 (-----) [000] d.h5 24572.785607: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
33960 id.nn.benchmark-13155 (13131) [002] d..2 24572.785617: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
33961  crtc_event:111-254   (  254) [003] d..2 24572.785629: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
33962 crtc_commit:111-253   (  253) [002] d..2 24572.785751: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
33963           <...>-13162 (-----) [001] ...1 24572.785767: tracing_mark_write: E|13131
33964           <...>-13162 (-----) [001] ...1 24572.785771: tracing_mark_write: E|13131
33965           <...>-13162 (-----) [001] ...1 24572.785782: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
33966           <...>-13162 (-----) [001] ...1 24572.785786: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
33967           <...>-13162 (-----) [001] ...1 24572.786037: tracing_mark_write: E|13131
33968           <...>-13162 (-----) [001] ...1 24572.786041: tracing_mark_write: E|13131
33969           <...>-13162 (-----) [001] ...1 24572.786051: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
33970           <...>-13162 (-----) [001] ...1 24572.786055: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
33971           <...>-13162 (-----) [001] ...1 24572.786456: tracing_mark_write: E|13131
33972           <...>-13162 (-----) [001] ...1 24572.786460: tracing_mark_write: E|13131
33973           <...>-13162 (-----) [001] ...1 24572.786471: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
33974           <...>-13162 (-----) [001] ...1 24572.786475: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
33975           <...>-13162 (-----) [001] ...1 24572.786886: tracing_mark_write: E|13131
33976           <...>-13162 (-----) [001] ...1 24572.786890: tracing_mark_write: E|13131
33977           <...>-13162 (-----) [001] ...1 24572.786909: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
33978           <...>-13162 (-----) [001] ...1 24572.786914: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
33979           <...>-13162 (-----) [001] ...1 24572.787115: tracing_mark_write: E|13131
33980           <...>-13162 (-----) [001] ...1 24572.787119: tracing_mark_write: E|13131
33981           <...>-13162 (-----) [001] ...1 24572.787132: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
33982           <...>-13162 (-----) [001] ...1 24572.787136: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
33983           <...>-13162 (-----) [001] ...1 24572.787213: tracing_mark_write: E|13131
33984           <...>-13162 (-----) [001] ...1 24572.787216: tracing_mark_write: E|13131
33985           <...>-13162 (-----) [001] ...1 24572.787229: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
33986           <...>-13162 (-----) [001] ...1 24572.787235: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
33987 id.nn.benchmark-13155 (13131) [002] d.s2 24572.787566: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
33988 id.nn.benchmark-13155 (13131) [002] d.s3 24572.787578: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
33989           <...>-13162 (-----) [001] ...1 24572.787579: tracing_mark_write: E|13131
33990           <...>-13162 (-----) [001] ...1 24572.787583: tracing_mark_write: E|13131
33991 id.nn.benchmark-13156 (13131) [003] d..2 24572.787586: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
33992           <...>-13162 (-----) [001] ...1 24572.787592: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
33993           <...>-13162 (-----) [001] ...1 24572.787596: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
33994  crtc_event:111-254   (  254) [003] d..2 24572.787602: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
33995           <...>-13162 (-----) [001] ...1 24572.787652: tracing_mark_write: E|13131
33996           <...>-13162 (-----) [001] ...1 24572.787655: tracing_mark_write: E|13131
33997           <...>-13162 (-----) [001] ...1 24572.787664: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
33998           <...>-13162 (-----) [001] ...1 24572.787667: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
33999           <...>-13162 (-----) [001] ...1 24572.787688: tracing_mark_write: E|13131
34000           <...>-13162 (-----) [001] ...1 24572.787691: tracing_mark_write: E|13131
34001           <...>-13162 (-----) [001] ...1 24572.787701: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
34002           <...>-13162 (-----) [001] ...1 24572.787705: tracing_mark_write: E|13131
34003           <...>-13162 (-----) [001] ...1 24572.787715: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
34004           <...>-13162 (-----) [001] ...1 24572.787720: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
34005           <...>-13154 (-----) [000] d.h4 24572.787891: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
34006           <...>-13154 (-----) [000] d.h5 24572.787908: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
34007 id.nn.benchmark-13156 (13131) [003] d..2 24572.787915: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
34008 crtc_commit:111-253   (  253) [003] d..2 24572.787986: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
34009           <...>-13154 (-----) [000] d.h4 24572.788193: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
34010           <...>-13154 (-----) [000] d.h5 24572.788202: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
34011 id.nn.benchmark-13156 (13131) [003] d..2 24572.788209: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
34012  crtc_event:111-254   (  254) [003] d..2 24572.788219: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
34013           <...>-13162 (-----) [001] ...1 24572.788573: tracing_mark_write: E|13131
34014           <...>-13162 (-----) [001] ...1 24572.788575: tracing_mark_write: E|13131
34015           <...>-13162 (-----) [001] ...1 24572.788583: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
34016           <...>-13162 (-----) [001] ...1 24572.788587: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
34017           <...>-13162 (-----) [001] ...1 24572.788670: tracing_mark_write: E|13131
34018           <...>-13162 (-----) [001] ...1 24572.788673: tracing_mark_write: E|13131
34019           <...>-13162 (-----) [001] ...1 24572.788724: tracing_mark_write: E|13131
34020           <...>-13162 (-----) [001] d..1 24572.788729: sched_waking: comm=id.nn.benchmark pid=13161 prio=110 target_cpu=001
34021 id.nn.benchmark-13160 (13131) [007] dnh1 24572.788755: sched_wakeup: comm=id.nn.benchmark pid=13161 prio=110 target_cpu=007
34022 id.nn.benchmark-13160 (13131) [007] d..2 24572.788791: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13161 next_prio=110
34023           <...>-13162 (-----) [001] d.h3 24572.788791: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
34024           <...>-13161 (-----) [007] d..2 24572.788799: sched_switch: prev_comm=id.nn.benchmark prev_pid=13161 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
34025           <...>-13162 (-----) [001] d.h3 24572.788805: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
34026 id.nn.benchmark-13159 (13131) [006] dnh1 24572.788809: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
34027 id.nn.benchmark-13159 (13131) [006] d..2 24572.788813: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34028           <...>-13162 (-----) [001] d.h4 24572.788818: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
34029         sugov:4-560   (  560) [006] d..2 24572.788819: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
34030 id.nn.benchmark-13156 (13131) [003] d..2 24572.788826: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
34031           <...>-13162 (-----) [001] ...1 24572.788835: tracing_mark_write: E|13131
34032         sugov:0-559   (  559) [003] d..2 24572.788836: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
34033           <...>-13162 (-----) [001] d..1 24572.789064: sched_waking: comm=id.nn.benchmark pid=13161 prio=110 target_cpu=007
34034 id.nn.benchmark-13160 (13131) [007] dnh1 24572.789078: sched_wakeup: comm=id.nn.benchmark pid=13161 prio=110 target_cpu=007
34035 id.nn.benchmark-13160 (13131) [007] d..2 24572.789081: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13161 next_prio=110
34036           <...>-13162 (-----) [001] d..2 24572.789105: sched_switch: prev_comm=id.nn.benchmark prev_pid=13162 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
34037           <...>-13161 (-----) [007] d..1 24572.789143: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
34038           <...>-13161 (-----) [007] d..2 24572.789156: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
34039           <...>-13157 (-----) [004] d..2 24572.789163: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
34040           <...>-13131 (-----) [004] d..2 24572.789169: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
34041 id.nn.benchmark-13156 (13131) [003] d.h1 24572.789182: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
34042           <...>-13161 (-----) [007] d..1 24572.789187: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
34043           <...>-13161 (-----) [007] d..2 24572.789196: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
34044 id.nn.benchmark-13156 (13131) [003] d.h2 24572.789200: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
34045           <...>-13157 (-----) [004] d..2 24572.789202: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
34046     logd.writer-563   (  555) [001] d..2 24572.789207: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=DispSync next_pid=23904 next_prio=97
34047           <...>-13131 (-----) [004] ...1 24572.789214: tracing_mark_write: E|13131
34048           <...>-13131 (-----) [004] ...1 24572.789216: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
34049           <...>-13131 (-----) [004] ...1 24572.789219: tracing_mark_write: E|13131
34050           <...>-13161 (-----) [007] d..2 24572.789219: sched_switch: prev_comm=id.nn.benchmark prev_pid=13161 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
34051           <...>-13131 (-----) [004] ...1 24572.789220: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
34052           <...>-13131 (-----) [004] ...1 24572.789222: tracing_mark_write: E|13131
34053        DispSync-23904 (23896) [001] d..1 24572.789239: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
34054        DispSync-23904 (23896) [001] d..2 24572.789257: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
34055 id.nn.benchmark-13156 (13131) [003] d..2 24572.789266: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
34056        DispSync-23904 (23896) [001] d..2 24572.789275: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
34057           <...>-13131 (-----) [004] ...1 24572.789291: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
34058   sfEventThread-23906 (23896) [003] d..3 24572.789309: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=000
34059           <...>-13131 (-----) [004] ...1 24572.789315: tracing_mark_write: E|13131
34060           <...>-13131 (-----) [004] ...1 24572.789316: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
34061           <...>-13131 (-----) [004] ...1 24572.789319: tracing_mark_write: E|13131
34062           <...>-13131 (-----) [004] ...1 24572.789321: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
34063           <...>-13131 (-----) [004] ...1 24572.789323: tracing_mark_write: E|13131
34064           <...>-13131 (-----) [004] ...1 24572.789324: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
34065   sfEventThread-23906 (23896) [003] d..4 24572.789339: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=000
34066           <...>-13154 (-----) [000] d..2 24572.789349: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
34067   sfEventThread-23906 (23896) [003] d..3 24572.789354: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
34068   sfEventThread-23906 (23896) [003] d..4 24572.789365: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
34069     logd.writer-563   (  555) [001] d..2 24572.789375: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
34070           <...>-13131 (-----) [004] ...1 24572.789378: tracing_mark_write: E|13131
34071   sfEventThread-23906 (23896) [003] d..2 24572.789379: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
34072           <...>-13131 (-----) [004] ...1 24572.789379: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
34073           <...>-13131 (-----) [004] d..2 24572.789384: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
34074<...>-24042 ( 23968) [000] .... 24572.789654: binder_transaction: transaction=1669519 dest_node=1271163 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
34075<...>-24042 ( 23968) [000] d..4 24572.789666: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
34076<...>-24042 ( 23968) [000] d..5 24572.789697: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
34077 id.nn.benchmark-13156 (13131) [003] d..2 24572.789705: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
34078<...>-23903 ( 23896) [003] .... 24572.789712: binder_transaction_received: transaction=1669519
34079<...>-23903 ( 23896) [003] d..1 24572.789739: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
34080<...>-23903 ( 23896) [003] d..2 24572.789752: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
34081 id.nn.benchmark-13155 (13131) [002] d..2 24572.789762: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
34082<...>-23903 ( 23896) [003] d..2 24572.789775: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
34083   sfEventThread-23906 (23896) [002] d..2 24572.789785: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
34084<...>-24042 ( 23968) [000] .... 24572.789840: binder_transaction: transaction=1669520 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
34085<...>-24042 ( 23968) [000] ...2 24572.789866: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
34086<...>-24042 ( 23968) [000] d..4 24572.789869: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=003
34087  surfaceflinger-23896 (23896) [001] d..1 24572.789890: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
34088<...>-24042 ( 23968) [000] d..5 24572.789894: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=003
34089 id.nn.benchmark-13156 (13131) [003] d..2 24572.789901: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
34090  surfaceflinger-23896 (23896) [001] d..2 24572.789902: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
34091<...>-24042 ( 23968) [000] d..2 24572.789904: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
34092<...>-23903 ( 23896) [003] .... 24572.789905: binder_transaction_received: transaction=1669520
34093 id.nn.benchmark-13155 (13131) [002] d..2 24572.789909: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
34094   sfEventThread-23906 (23896) [002] d..2 24572.789921: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
34095<...>-23903 ( 23896) [003] .... 24572.789979: binder_transaction: transaction=1669521 dest_node=0 dest_proc=23968 dest_thread=24042 reply=1 flags=0x0 code=0x0
34096<...>-23903 ( 23896) [003] d..2 24572.789985: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=000
34097<...>-23903 ( 23896) [003] d..3 24572.790010: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=000
34098<...>-23903 ( 23896) [003] .... 24572.790012: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
34099           <...>-13154 (-----) [000] d..2 24572.790018: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
34100<...>-24042 ( 23968) [000] .... 24572.790022: binder_transaction_received: transaction=1669521
34101<...>-23903 ( 23896) [003] d..2 24572.790046: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
34102<...>-24042 ( 23968) [000] d..2 24572.790072: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
34103  surfaceflinger-23896 (23896) [001] d.h1 24572.790196: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
34104  surfaceflinger-23896 (23896) [001] d.h2 24572.790211: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
34105 id.nn.benchmark-13156 (13131) [003] d..2 24572.790219: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
34106        DispSync-23904 (23896) [003] d..1 24572.790229: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
34107        DispSync-23904 (23896) [003] d..2 24572.790241: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
34108 id.nn.benchmark-13155 (13131) [002] d..2 24572.790248: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
34109        DispSync-23904 (23896) [003] d..2 24572.790252: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
34110  appEventThread-23905 (23896) [002] d..3 24572.790285: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
34111  appEventThread-23905 (23896) [002] d..4 24572.790312: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
34112           <...>-13154 (-----) [000] d..2 24572.790321: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
34113  appEventThread-23905 (23896) [002] d..2 24572.790326: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
34114<...>-24151 ( 24151) [000] .... 24572.790538: binder_transaction: transaction=1669522 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
34115<...>-24151 ( 24151) [000] d..4 24572.790543: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
34116<...>-24151 ( 24151) [000] d..5 24572.790570: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
34117 id.nn.benchmark-13156 (13131) [003] d..2 24572.790578: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
34118<...>-23903 ( 23896) [003] .... 24572.790581: binder_transaction_received: transaction=1669522
34119<...>-23903 ( 23896) [003] d..1 24572.790591: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
34120<...>-24151 ( 24151) [000] d..3 24572.790599: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
34121<...>-23903 ( 23896) [003] d..2 24572.790600: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
34122 id.nn.benchmark-13155 (13131) [002] d..2 24572.790607: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
34123<...>-23903 ( 23896) [003] d..2 24572.790613: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
34124  appEventThread-23905 (23896) [002] d..2 24572.790621: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
34125 id.nn.benchmark-13159 (13131) [006] dnh1 24572.790624: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
34126 id.nn.benchmark-13159 (13131) [006] d..2 24572.790627: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
34127  surfaceflinger-23896 (23896) [001] ...1 24572.790634: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
34128  surfaceflinger-23896 (23896) [001] ...1 24572.790638: tracing_mark_write: E|23896
34129    RenderThread-24437 (24151) [006] d..2 24572.790647: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
34130  surfaceflinger-23896 (23896) [001] .... 24572.790684: binder_transaction: transaction=1669523 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
34131  surfaceflinger-23896 (23896) [001] ...2 24572.790707: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
34132  surfaceflinger-23896 (23896) [001] d..4 24572.790716: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
34133  surfaceflinger-23896 (23896) [001] d..5 24572.790729: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
34134<...>-24151 ( 24151) [000] d..3 24572.790735: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
34135 id.nn.benchmark-13156 (13131) [003] d..2 24572.790737: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
34136  surfaceflinger-23896 (23896) [001] d..2 24572.790741: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
34137  HwBinder:598_3-633   (  598) [003] .... 24572.790745: binder_transaction_received: transaction=1669523
34138 id.nn.benchmark-13159 (13131) [006] dnh1 24572.790749: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
34139 id.nn.benchmark-13159 (13131) [006] d..2 24572.790752: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
34140<...>-24151 ( 24151) [000] d..2 24572.790757: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
34141  HwBinder:598_3-633   (  598) [003] ...1 24572.790788: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
34142     logd.writer-563   (  555) [001] d..2 24572.790802: 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
34143    RenderThread-24437 (24151) [006] d..1 24572.790807: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
34144          <idle>-0     (-----) [001] d..1 24572.790820: cpu_idle: state=0 cpu_id=1
34145          <idle>-0     (-----) [001] dnh2 24572.790832: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
34146          <idle>-0     (-----) [001] .n.1 24572.790836: cpu_idle: state=4294967295 cpu_id=1
34147          <idle>-0     (-----) [001] d..2 24572.790843: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
34148    RenderThread-24437 (24151) [006] .... 24572.790851: binder_transaction: transaction=1669524 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
34149    RenderThread-24437 (24151) [006] d..4 24572.790854: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
34150    RenderThread-24437 (24151) [006] d..2 24572.790872: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
34151  HwBinder:598_3-633   (  598) [003] d.h1 24572.790875: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
34152 id.nn.benchmark-13160 (13131) [007] d.s2 24572.790894: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
34153           <...>-13154 (-----) [000] d.s1 24572.790896: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
34154<...>-24151 ( 24151) [001] d.h1 24572.790917: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
34155           <...>-13154 (-----) [000] d.s2 24572.790922: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
34156<...>-24151 ( 24151) [001] d..2 24572.790930: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
34157  HwBinder:598_3-633   (  598) [003] ...1 24572.790940: tracing_mark_write: B|598|HWCSession::PresentDisplay::
34158  kworker/u16:15-18488 (18488) [001] d..2 24572.791149: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
34159     rcu_preempt-7     (    7) [001] d..2 24572.791154: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=002
34160     rcu_preempt-7     (    7) [001] d..3 24572.791176: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
34161     rcu_preempt-7     (    7) [001] d..2 24572.791178: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=006
34162  HwBinder:598_3-633   (  598) [003] d.s1 24572.791180: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
34163  HwBinder:598_3-633   (  598) [003] d.s2 24572.791190: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
34164     rcu_preempt-7     (    7) [001] d..2 24572.791199: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
34165 id.nn.benchmark-13159 (13131) [006] dnh1 24572.791204: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=006
34166 id.nn.benchmark-13159 (13131) [006] d..2 24572.791207: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
34167         rcuop/2-29    (   29) [006] d.h1 24572.791220: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
34168         rcuop/2-29    (   29) [006] d..2 24572.791222: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=006
34169     rcu_preempt-7     (    7) [001] d..2 24572.791224: 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
34170         rcuop/2-29    (   29) [006] d..3 24572.791232: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=006
34171         rcuop/2-29    (   29) [006] d..2 24572.791237: 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
34172         rcuop/6-61    (   61) [006] d..2 24572.791239: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=006
34173         rcuop/6-61    (   61) [006] d..3 24572.791247: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=006
34174         rcuop/6-61    (   61) [006] d..2 24572.791255: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
34175         rcuop/4-45    (   45) [001] d..2 24572.791258: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
34176         rcuop/3-37    (   37) [006] d..2 24572.791261: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=rcuop/7 next_pid=69 next_prio=120
34177<...>-23903 ( 23896) [001] .... 24572.791264: binder_transaction_received: transaction=1669524
34178         rcuop/7-69    (   69) [006] d..2 24572.791274: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
34179<...>-23903 ( 23896) [001] .... 24572.791310: binder_transaction: transaction=1669525 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
34180<...>-23903 ( 23896) [001] d..2 24572.791319: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
34181<...>-23903 ( 23896) [001] d..3 24572.791335: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=001
34182<...>-23903 ( 23896) [001] d.h3 24572.791370: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
34183<...>-23903 ( 23896) [001] d.h3 24572.791378: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
34184 id.nn.benchmark-13159 (13131) [006] dnh1 24572.791382: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
34185 id.nn.benchmark-13159 (13131) [006] d..2 24572.791385: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34186<...>-23903 ( 23896) [001] dnh4 24572.791388: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
34187<...>-23903 ( 23896) [001] d..2 24572.791393: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
34188         sugov:0-559   (  559) [001] d..2 24572.791401: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
34189         sugov:4-560   (  560) [006] .... 24572.791402: clk_set_rate: perfcl_clk 2323200000
34190         sugov:4-560   (  560) [006] .... 24572.791404: clk_set_rate: cpu7_perfcl_clk 2169600000
34191         sugov:4-560   (  560) [006] .... 24572.791408: clk_set_rate: cpu6_perfcl_clk 2169600000
34192         sugov:4-560   (  560) [006] .... 24572.791412: clk_set_rate: cpu5_perfcl_clk 2169600000
34193         sugov:4-560   (  560) [006] .... 24572.791417: clk_set_rate: cpu4_perfcl_clk 2323200000
34194         sugov:4-560   (  560) [006] .... 24572.791421: cpu_frequency: state=2323200 cpu_id=4
34195<...>-23903 ( 23896) [001] d..2 24572.791424: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
34196    RenderThread-24437 (24151) [001] .... 24572.791428: binder_transaction_received: transaction=1669525
34197         sugov:4-560   (  560) [006] .... 24572.791430: cpu_frequency: state=2323200 cpu_id=5
34198         sugov:4-560   (  560) [006] .... 24572.791432: cpu_frequency: state=2323200 cpu_id=6
34199         sugov:4-560   (  560) [006] .... 24572.791433: cpu_frequency: state=2323200 cpu_id=7
34200         sugov:4-560   (  560) [006] d..2 24572.791437: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
34201  HwBinder:598_3-633   (  598) [003] ...1 24572.791517: tracing_mark_write: B|598|HWDeviceDRM::Validate::
34202  HwBinder:598_3-633   (  598) [003] ...1 24572.791942: tracing_mark_write: E|598
34203  HwBinder:598_3-633   (  598) [003] ...1 24572.792045: tracing_mark_write: B|598|HWDeviceDRM::Commit::
34204  HwBinder:598_3-633   (  598) [003] ...1 24572.792051: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
34205  HwBinder:598_3-633   (  598) [003] d..2 24572.792354: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
34206  HwBinder:598_3-633   (  598) [003] d..3 24572.792372: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
34207    RenderThread-24437 (24151) [001] d..2 24572.792383: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
34208  HwBinder:598_3-633   (  598) [003] ...1 24572.792431: tracing_mark_write: E|598
34209  HwBinder:598_3-633   (  598) [003] ...1 24572.792434: tracing_mark_write: E|598
34210  HwBinder:598_3-633   (  598) [003] ...1 24572.792469: tracing_mark_write: E|598
34211  HwBinder:598_3-633   (  598) [003] ...1 24572.792507: tracing_mark_write: E|598
34212  HwBinder:598_3-633   (  598) [003] .... 24572.792517: binder_transaction: transaction=1669526 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
34213  HwBinder:598_3-633   (  598) [003] d..2 24572.792532: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
34214  HwBinder:598_3-633   (  598) [003] d..3 24572.792547: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
34215  HwBinder:598_3-633   (  598) [003] .... 24572.792550: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
34216 id.nn.benchmark-13155 (13131) [002] d..2 24572.792555: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
34217  surfaceflinger-23896 (23896) [002] .... 24572.792561: binder_transaction_received: transaction=1669526
34218  HwBinder:598_3-633   (  598) [003] d..2 24572.792598: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
34219     ksoftirqd/3-34    (   34) [003] d.s2 24572.792612: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
34220     ksoftirqd/3-34    (   34) [003] d.s3 24572.792627: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
34221     ksoftirqd/3-34    (   34) [003] d.s3 24572.792630: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
34222     ksoftirqd/3-34    (   34) [003] d..2 24572.792639: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
34223  surfaceflinger-23896 (23896) [002] d..2 24572.792737: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=006
34224 id.nn.benchmark-13159 (13131) [006] dnh1 24572.792763: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=006
34225 id.nn.benchmark-13159 (13131) [006] d..2 24572.792766: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
34226         rcuop/2-29    (   29) [006] d..2 24572.792769: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
34227  surfaceflinger-23896 (23896) [002] d..2 24572.792898: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
34228 crtc_commit:111-253   (  253) [001] d..3 24572.793468: sched_pi_setprio: comm=kworker/u16:15 pid=18488 oldprio=120 newprio=83
34229 crtc_commit:111-253   (  253) [001] d..2 24572.793499: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=RenderThread next_pid=24437 next_prio=120
34230 id.nn.benchmark-13156 (13131) [003] d..2 24572.793502: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=83
34231  kworker/u16:15-18488 (18488) [003] d..1 24572.793512: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
34232  kworker/u16:15-18488 (18488) [003] d..2 24572.793522: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
34233  kworker/u16:15-18488 (18488) [003] d..2 24572.793524: sched_pi_setprio: comm=kworker/u16:15 pid=18488 oldprio=83 newprio=120
34234    RenderThread-24437 (24151) [001] d..2 24572.793531: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
34235  kworker/u16:15-18488 (18488) [003] d..2 24572.793865: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
34236 id.nn.benchmark-13158 (13131) [005] d..2 24572.793892: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
34237          <idle>-0     (-----) [005] d..1 24572.793901: cpu_idle: state=0 cpu_id=5
34238 crtc_commit:111-253   (  253) [001] .... 24572.793969: clk_set_rate: disp_cc_mdss_mdp_clk_src 171428571
34239 crtc_commit:111-253   (  253) [001] .... 24572.794000: clk_set_rate: disp_cc_mdss_mdp_lut_clk 0
34240 crtc_commit:111-253   (  253) [001] .... 24572.794002: clk_set_rate: disp_cc_mdss_mdp_clk 171428571
34241 crtc_commit:111-253   (  253) [001] d..2 24572.794032: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=RenderThread next_pid=24437 next_prio=120
34242           <...>-13157 (-----) [004] d..2 24572.794085: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
34243          <idle>-0     (-----) [005] ...1 24572.794091: cpu_idle: state=4294967295 cpu_id=5
34244          <idle>-0     (-----) [005] d..1 24572.794093: cpu_idle: state=0 cpu_id=5
34245          <idle>-0     (-----) [004] d..1 24572.794095: cpu_idle: state=0 cpu_id=4
34246 id.nn.benchmark-13160 (13131) [007] d..2 24572.794097: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13163 next_prio=110
34247           <...>-13163 (-----) [007] d..2 24572.794153: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
34248    RenderThread-24437 (24151) [001] d.h1 24572.794168: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
34249 id.nn.benchmark-13159 (13131) [006] d..2 24572.794192: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
34250          <idle>-0     (-----) [006] d..1 24572.794200: cpu_idle: state=0 cpu_id=6
34251          <idle>-0     (-----) [004] .n.1 24572.794329: cpu_idle: state=4294967295 cpu_id=4
34252          <idle>-0     (-----) [004] d..2 24572.794334: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13164 next_prio=110
34253           <...>-13163 (-----) [007] d..2 24572.794340: sched_switch: prev_comm=id.nn.benchmark prev_pid=13163 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
34254          <idle>-0     (-----) [007] d..1 24572.794349: cpu_idle: state=0 cpu_id=7
34255           <...>-13164 (-----) [004] ...1 24572.794349: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
34256           <...>-13164 (-----) [004] ...1 24572.794351: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
34257    RenderThread-24437 (24151) [001] d..2 24572.794354: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=logd.writer next_pid=563 next_prio=130
34258          <idle>-0     (-----) [006] d.h2 24572.794389: sched_waking: comm=TaskSnapshotPer pid=24113 prio=130 target_cpu=006
34259     logd.writer-563   (  555) [001] d.h2 24572.794414: sched_wakeup: comm=TaskSnapshotPer pid=24113 prio=130 target_cpu=001
34260           <...>-13164 (-----) [004] ...1 24572.794426: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
34261           <...>-13164 (-----) [004] ...1 24572.794429: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
34262          <idle>-0     (-----) [006] d.h3 24572.794438: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
34263          <idle>-0     (-----) [006] dnh4 24572.794441: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
34264          <idle>-0     (-----) [006] dnh3 24572.794442: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
34265          <idle>-0     (-----) [006] .n.1 24572.794451: cpu_idle: state=4294967295 cpu_id=6
34266     logd.writer-563   (  555) [001] d.h3 24572.794452: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=001
34267 id.nn.benchmark-13156 (13131) [003] dnh1 24572.794455: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
34268          <idle>-0     (-----) [006] d..2 24572.794455: 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
34269 id.nn.benchmark-13156 (13131) [003] d..2 24572.794460: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
34270         sugov:4-560   (  560) [006] d..2 24572.794461: 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
34271          <idle>-0     (-----) [006] d..1 24572.794464: cpu_idle: state=0 cpu_id=6
34272         sugov:0-559   (  559) [003] d..2 24572.794470: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
34273          <idle>-0     (-----) [007] d.h2 24572.794497: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
34274          <idle>-0     (-----) [007] dnh2 24572.794498: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
34275          <idle>-0     (-----) [007] .n.1 24572.794501: cpu_idle: state=4294967295 cpu_id=7
34276          <idle>-0     (-----) [007] d..2 24572.794506: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
34277           <...>-13154 (-----) [000] d.h2 24572.794568: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
34278           <...>-13154 (-----) [000] d.h3 24572.794586: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
34279 id.nn.benchmark-13156 (13131) [003] d..2 24572.794593: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
34280    RenderThread-24437 (24151) [007] .... 24572.794606: binder_transaction: transaction=1669527 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
34281    RenderThread-24437 (24151) [007] d..4 24572.794611: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=001
34282    RenderThread-24437 (24151) [007] d..5 24572.794622: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
34283 kgsl_worker_thr-246   (  246) [003] d..2 24572.794630: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
34284    RenderThread-24437 (24151) [007] d..2 24572.794643: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
34285<...>-23903 ( 23896) [007] .... 24572.794645: binder_transaction_received: transaction=1669527
34286 kgsl_worker_thr-246   (  246) [003] d..3 24572.794653: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
34287 kgsl_worker_thr-246   (  246) [003] d..2 24572.794662: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
34288  kworker/u16:15-18488 (18488) [003] d..2 24572.794686: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
34289<...>-23903 ( 23896) [007] .... 24572.794701: binder_transaction: transaction=1669528 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
34290<...>-23903 ( 23896) [007] d..2 24572.794704: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
34291<...>-23903 ( 23896) [007] d..3 24572.794708: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
34292<...>-23903 ( 23896) [007] d..2 24572.794718: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
34293    RenderThread-24437 (24151) [007] .... 24572.794720: binder_transaction_received: transaction=1669528
34294     logd.writer-563   (  555) [001] d..2 24572.794726: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=24113 next_prio=130
34295    RenderThread-24437 (24151) [007] d..2 24572.794756: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
34296          <idle>-0     (-----) [007] d..1 24572.794762: cpu_idle: state=0 cpu_id=7
34297<...>-24113 ( 23968) [001] d..2 24572.794816: sched_switch: prev_comm=TaskSnapshotPer prev_pid=24113 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34298          <idle>-0     (-----) [001] d..1 24572.794825: cpu_idle: state=0 cpu_id=1
34299          <idle>-0     (-----) [007] ...1 24572.794953: cpu_idle: state=4294967295 cpu_id=7
34300          <idle>-0     (-----) [007] d..1 24572.794955: cpu_idle: state=0 cpu_id=7
34301           <...>-13164 (-----) [004] d..1 24572.795061: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=004
34302           <...>-13164 (-----) [004] d..2 24572.795075: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
34303           <...>-13164 (-----) [004] d..1 24572.795076: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
34304          <idle>-0     (-----) [005] .n.1 24572.795079: cpu_idle: state=4294967295 cpu_id=5
34305          <idle>-0     (-----) [005] d..2 24572.795085: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
34306           <...>-13164 (-----) [004] d..2 24572.795085: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=006
34307           <...>-13164 (-----) [004] d..1 24572.795087: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=006
34308          <idle>-0     (-----) [006] .n.1 24572.795089: cpu_idle: state=4294967295 cpu_id=6
34309          <idle>-0     (-----) [006] d..2 24572.795094: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
34310           <...>-13164 (-----) [004] d..2 24572.795095: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
34311           <...>-13164 (-----) [004] d..1 24572.795096: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=007
34312          <idle>-0     (-----) [007] .n.1 24572.795099: cpu_idle: state=4294967295 cpu_id=7
34313          <idle>-0     (-----) [007] d..2 24572.795103: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
34314           <...>-13164 (-----) [004] d..2 24572.795109: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=004
34315           <...>-13154 (-----) [000] d.h2 24572.797581: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
34316          <idle>-0     (-----) [001] d.s2 24572.797584: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
34317           <...>-13154 (-----) [000] dnh3 24572.797588: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
34318           <...>-13157 (-----) [005] d.H2 24572.797589: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
34319          <idle>-0     (-----) [001] dns3 24572.797595: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
34320           <...>-13154 (-----) [000] d..2 24572.797597: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
34321           <...>-13157 (-----) [005] d.H3 24572.797598: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
34322           <...>-13157 (-----) [005] d.H2 24572.797600: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
34323          <idle>-0     (-----) [001] .n.1 24572.797605: cpu_idle: state=4294967295 cpu_id=1
34324           <...>-13164 (-----) [004] d..2 24572.797606: sched_switch: prev_comm=id.nn.benchmark prev_pid=13164 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34325          <idle>-0     (-----) [001] d..2 24572.797611: 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
34326     rcu_preempt-7     (    7) [001] dnh3 24572.797617: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
34327         sugov:4-560   (  560) [004] .... 24572.797619: clk_set_rate: perfcl_clk 2803200000
34328         sugov:4-560   (  560) [004] .... 24572.797620: clk_set_rate: cpu7_perfcl_clk 2323200000
34329     rcu_preempt-7     (    7) [001] d..2 24572.797622: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
34330         sugov:4-560   (  560) [004] .... 24572.797624: clk_set_rate: cpu6_perfcl_clk 2323200000
34331         sugov:4-560   (  560) [004] .... 24572.797629: clk_set_rate: cpu5_perfcl_clk 2323200000
34332         sugov:4-560   (  560) [004] .... 24572.797633: clk_set_rate: cpu4_perfcl_clk 2803200000
34333         sugov:4-560   (  560) [004] .... 24572.797639: cpu_frequency: state=2803200 cpu_id=4
34334         sugov:0-559   (  559) [001] d..2 24572.797648: 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
34335     migration/0-13    (   13) [000] d..2 24572.797659: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34336     rcu_preempt-7     (    7) [001] d..2 24572.797665: 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
34337          <idle>-0     (-----) [001] d..1 24572.797672: cpu_idle: state=0 cpu_id=1
34338          <idle>-0     (-----) [000] d..1 24572.797676: cpu_idle: state=0 cpu_id=0
34339         sugov:4-560   (  560) [004] d..2 24572.797735: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
34340 id.nn.benchmark-13156 (13131) [003] d.s2 24572.797770: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
34341           <...>-13157 (-----) [005] dnh1 24572.797787: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
34342           <...>-13157 (-----) [005] d..2 24572.797790: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34343         sugov:4-560   (  560) [005] .... 24572.797794: cpu_frequency: state=2803200 cpu_id=5
34344         sugov:4-560   (  560) [005] .... 24572.797795: cpu_frequency: state=2803200 cpu_id=6
34345         sugov:4-560   (  560) [005] .... 24572.797796: cpu_frequency: state=2803200 cpu_id=7
34346         sugov:4-560   (  560) [005] d..2 24572.797800: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
34347          <idle>-0     (-----) [000] ...1 24572.799225: cpu_idle: state=4294967295 cpu_id=0
34348          <idle>-0     (-----) [000] d..1 24572.799227: cpu_idle: state=0 cpu_id=0
34349 id.nn.benchmark-13158 (13131) [006] d..2 24572.799963: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
34350 id.nn.benchmark-13159 (13131) [007] d..2 24572.799971: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13164 next_prio=110
34351           <...>-13164 (-----) [007] ...1 24572.799980: tracing_mark_write: E|13131
34352           <...>-13164 (-----) [007] ...1 24572.799982: tracing_mark_write: E|13131
34353           <...>-13164 (-----) [007] ...1 24572.799991: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
34354           <...>-13164 (-----) [007] ...1 24572.799994: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
34355           <...>-13157 (-----) [005] d..3 24572.800015: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
34356           <...>-13157 (-----) [005] d..2 24572.800023: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
34357          <idle>-0     (-----) [005] d..1 24572.800026: cpu_idle: state=0 cpu_id=5
34358 id.nn.benchmark-13155 (13131) [002] dnh1 24572.800027: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
34359 id.nn.benchmark-13155 (13131) [002] d..2 24572.800033: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
34360          <idle>-0     (-----) [005] .n.1 24572.800057: cpu_idle: state=4294967295 cpu_id=5
34361          <idle>-0     (-----) [005] d..2 24572.800080: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
34362     migration/2-25    (   25) [002] d.h3 24572.800081: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
34363     migration/2-25    (   25) [002] d.h3 24572.800093: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
34364           <...>-13164 (-----) [007] dnh1 24572.800097: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
34365           <...>-13164 (-----) [007] d..2 24572.800100: sched_switch: prev_comm=id.nn.benchmark prev_pid=13164 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34366     migration/2-25    (   25) [002] d.h4 24572.800102: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
34367         sugov:4-560   (  560) [007] d..2 24572.800104: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13164 next_prio=110
34368          <idle>-0     (-----) [001] .n.1 24572.800106: cpu_idle: state=4294967295 cpu_id=1
34369          <idle>-0     (-----) [001] d..2 24572.800112: 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
34370     migration/2-25    (   25) [002] d..2 24572.800117: 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
34371         sugov:0-559   (  559) [001] d..2 24572.800123: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34372          <idle>-0     (-----) [001] d..1 24572.800127: cpu_idle: state=0 cpu_id=1
34373          <idle>-0     (-----) [002] d..1 24572.800134: cpu_idle: state=0 cpu_id=2
34374           <...>-13164 (-----) [007] d..1 24572.800158: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
34375           <...>-13164 (-----) [007] d..2 24572.800166: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=007
34376           <...>-13164 (-----) [007] d..1 24572.800168: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=006
34377           <...>-13164 (-----) [007] d..2 24572.800171: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=006
34378           <...>-13164 (-----) [007] d..1 24572.800172: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
34379           <...>-13164 (-----) [007] d..2 24572.800175: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
34380           <...>-13154 (-----) [006] d.s2 24572.800889: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
34381 id.nn.benchmark-13156 (13131) [003] d.h2 24572.800893: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
34382 id.nn.benchmark-13156 (13131) [003] dnh3 24572.800903: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
34383          <idle>-0     (-----) [000] dnH2 24572.800907: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
34384 id.nn.benchmark-13156 (13131) [003] d..2 24572.800913: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
34385          <idle>-0     (-----) [000] .n.1 24572.800927: cpu_idle: state=4294967295 cpu_id=0
34386          <idle>-0     (-----) [000] d..2 24572.800935: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
34387<...>-33 ( 33) [003] d..2 24572.800948: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
34388  kworker/u16:15-18488 (18488) [000] .... 24572.800977: clk_set_rate: l3_cluster0_vote_clk 300000000
34389  kworker/u16:15-18488 (18488) [000] .... 24572.801155: clk_set_rate: l3_cluster1_vote_clk 1478400000
34390  kworker/u16:15-18488 (18488) [000] .... 24572.801159: clk_set_rate: l3_clk 1478400000
34391          <idle>-0     (-----) [002] ...1 24572.801320: cpu_idle: state=4294967295 cpu_id=2
34392  kworker/u16:15-18488 (18488) [000] d..2 24572.801321: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
34393          <idle>-0     (-----) [002] d..1 24572.801323: cpu_idle: state=0 cpu_id=2
34394 id.nn.benchmark-13158 (13131) [000] d.h4 24572.801349: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
34395 id.nn.benchmark-13156 (13131) [003] d.s2 24572.801350: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
34396 id.nn.benchmark-13158 (13131) [000] d.h4 24572.801361: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
34397 id.nn.benchmark-13156 (13131) [003] d.s3 24572.801363: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
34398           <...>-13154 (-----) [006] dnh1 24572.801364: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
34399           <...>-13154 (-----) [006] d..2 24572.801367: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34400 id.nn.benchmark-13156 (13131) [003] d.s3 24572.801368: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
34401         sugov:4-560   (  560) [006] d..2 24572.801371: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
34402          <idle>-0     (-----) [001] .n.1 24572.801373: cpu_idle: state=4294967295 cpu_id=1
34403 id.nn.benchmark-13158 (13131) [000] d.h5 24572.801381: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
34404          <idle>-0     (-----) [001] d..2 24572.801381: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
34405          <idle>-0     (-----) [002] .n.1 24572.801385: cpu_idle: state=4294967295 cpu_id=2
34406          <idle>-0     (-----) [002] d..2 24572.801391: 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
34407  kworker/u16:15-18488 (18488) [001] d..2 24572.801397: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34408          <idle>-0     (-----) [001] d..1 24572.801401: cpu_idle: state=0 cpu_id=1
34409         sugov:0-559   (  559) [002] d..2 24572.801404: 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
34410          <idle>-0     (-----) [002] d..1 24572.801409: cpu_idle: state=0 cpu_id=2
34411 id.nn.benchmark-13158 (13131) [000] d.h4 24572.802030: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
34412 id.nn.benchmark-13158 (13131) [000] d.h5 24572.802048: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
34413 id.nn.benchmark-13158 (13131) [000] d.h4 24572.802052: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
34414          <idle>-0     (-----) [002] .n.1 24572.802052: cpu_idle: state=4294967295 cpu_id=2
34415          <idle>-0     (-----) [002] d..2 24572.802058: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
34416 id.nn.benchmark-13158 (13131) [000] d.h5 24572.802060: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
34417          <idle>-0     (-----) [001] .n.1 24572.802065: cpu_idle: state=4294967295 cpu_id=1
34418          <idle>-0     (-----) [001] d..2 24572.802070: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
34419  crtc_event:111-254   (  254) [002] d..2 24572.802080: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
34420          <idle>-0     (-----) [002] d..1 24572.802085: cpu_idle: state=0 cpu_id=2
34421 crtc_commit:111-253   (  253) [001] d..2 24572.802197: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
34422          <idle>-0     (-----) [001] d..1 24572.802202: cpu_idle: state=0 cpu_id=1
34423           <...>-13154 (-----) [006] d.s2 24572.804223: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
34424           <...>-13164 (-----) [007] d..2 24572.804224: sched_switch: prev_comm=id.nn.benchmark prev_pid=13164 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
34425 id.nn.benchmark-13156 (13131) [003] d.h2 24572.804226: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
34426 id.nn.benchmark-13156 (13131) [003] dnh3 24572.804230: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
34427          <idle>-0     (-----) [001] dnH2 24572.804236: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
34428 id.nn.benchmark-13156 (13131) [003] d..2 24572.804238: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
34429          <idle>-0     (-----) [001] dns3 24572.804240: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
34430          <idle>-0     (-----) [001] dns4 24572.804250: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
34431          <idle>-0     (-----) [002] .n.1 24572.804255: cpu_idle: state=4294967295 cpu_id=2
34432          <idle>-0     (-----) [001] .n.1 24572.804278: cpu_idle: state=4294967295 cpu_id=1
34433<...>-33 ( 33) [003] d.h3 24572.804279: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
34434          <idle>-0     (-----) [002] d..2 24572.804280: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
34435          <idle>-0     (-----) [001] d..2 24572.804284: 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
34436     rcu_preempt-7     (    7) [001] d..2 24572.804288: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
34437<...>-33 ( 33) [003] d.h3 24572.804290: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
34438 id.nn.benchmark-13155 (13131) [005] dnh1 24572.804293: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
34439 id.nn.benchmark-13155 (13131) [005] d..2 24572.804296: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34440         sugov:4-560   (  560) [005] d..2 24572.804299: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
34441<...>-33 ( 33) [003] d.h4 24572.804301: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
34442     rcu_preempt-7     (    7) [001] d..3 24572.804305: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
34443  crtc_event:111-254   (  254) [002] d..2 24572.804319: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
34444     rcu_preempt-7     (    7) [001] d..2 24572.804346: 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
34445         sugov:0-559   (  559) [002] d..2 24572.804351: 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
34446          <idle>-0     (-----) [001] d..1 24572.804352: cpu_idle: state=0 cpu_id=1
34447         rcuop/0-10    (   10) [002] d..2 24572.804356: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
34448<...>-33 ( 33) [003] d..2 24572.804357: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
34449 id.nn.benchmark-13158 (13131) [000] d.h4 24572.804367: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
34450         rcuop/0-10    (   10) [002] d..3 24572.804382: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
34451 id.nn.benchmark-13158 (13131) [000] d.h5 24572.804387: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
34452          <idle>-0     (-----) [001] .n.1 24572.804391: cpu_idle: state=4294967295 cpu_id=1
34453          <idle>-0     (-----) [001] d..2 24572.804397: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
34454         rcuop/0-10    (   10) [002] d..2 24572.804408: 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
34455         rcuop/1-21    (   21) [002] d..2 24572.804428: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13164 next_prio=110
34456 crtc_commit:111-253   (  253) [001] d..2 24572.804451: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34457          <idle>-0     (-----) [001] d..1 24572.804458: cpu_idle: state=0 cpu_id=1
34458 id.nn.benchmark-13158 (13131) [000] d.h4 24572.804663: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
34459 id.nn.benchmark-13158 (13131) [000] d.h5 24572.804676: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
34460          <idle>-0     (-----) [001] .n.1 24572.804681: cpu_idle: state=4294967295 cpu_id=1
34461          <idle>-0     (-----) [001] d..2 24572.804686: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
34462 id.nn.benchmark-13155 (13131) [005] d..2 24572.804689: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
34463 id.nn.benchmark-13160 (13131) [004] d..3 24572.804698: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
34464  crtc_event:111-254   (  254) [001] d..2 24572.804700: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34465          <idle>-0     (-----) [001] d..1 24572.804705: cpu_idle: state=0 cpu_id=1
34466 id.nn.benchmark-13160 (13131) [004] d..2 24572.804705: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
34467 id.nn.benchmark-13158 (13131) [000] dnh1 24572.804707: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
34468          <idle>-0     (-----) [004] d..1 24572.804711: cpu_idle: state=0 cpu_id=4
34469 id.nn.benchmark-13158 (13131) [000] d..2 24572.804713: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
34470           <...>-13154 (-----) [006] d..2 24572.804723: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
34471     migration/0-13    (   13) [000] d..2 24572.804740: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34472          <idle>-0     (-----) [000] d..1 24572.804749: cpu_idle: state=0 cpu_id=0
34473           <...>-13164 (-----) [002] ...1 24572.804776: tracing_mark_write: E|13131
34474           <...>-13164 (-----) [002] ...1 24572.804781: tracing_mark_write: E|13131
34475           <...>-13164 (-----) [002] ...1 24572.804805: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
34476           <...>-13164 (-----) [002] ...1 24572.804811: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
34477          <idle>-0     (-----) [004] ...1 24572.804902: cpu_idle: state=4294967295 cpu_id=4
34478          <idle>-0     (-----) [004] d..1 24572.804903: cpu_idle: state=0 cpu_id=4
34479           <...>-13164 (-----) [002] d..1 24572.804981: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=006
34480           <...>-13164 (-----) [002] d..1 24572.804998: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
34481          <idle>-0     (-----) [004] dnh2 24572.805000: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
34482          <idle>-0     (-----) [004] .n.1 24572.805002: cpu_idle: state=4294967295 cpu_id=4
34483          <idle>-0     (-----) [004] d..2 24572.805009: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
34484           <...>-13154 (-----) [004] d.h1 24572.805014: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=004
34485           <...>-13164 (-----) [002] d..1 24572.805015: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=004
34486           <...>-13154 (-----) [004] d.h1 24572.805026: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=004
34487 id.nn.benchmark-13156 (13131) [003] d.h1 24572.805649: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
34488 id.nn.benchmark-13156 (13131) [003] d.h2 24572.805666: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
34489          <idle>-0     (-----) [000] .n.1 24572.805671: cpu_idle: state=4294967295 cpu_id=0
34490          <idle>-0     (-----) [000] d..2 24572.805676: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
34491        DispSync-23904 (23896) [000] d..1 24572.805696: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
34492        DispSync-23904 (23896) [000] d..2 24572.805711: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
34493          <idle>-0     (-----) [001] .n.1 24572.805716: cpu_idle: state=4294967295 cpu_id=1
34494          <idle>-0     (-----) [001] d..2 24572.805721: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
34495        DispSync-23904 (23896) [000] d..2 24572.805747: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
34496   sfEventThread-23906 (23896) [001] d..3 24572.805758: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=000
34497 id.nn.benchmark-13160 (13131) [000] d.h4 24572.805778: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
34498 id.nn.benchmark-13160 (13131) [000] d.h4 24572.805790: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
34499           <...>-13157 (-----) [005] dnh1 24572.805791: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
34500           <...>-13157 (-----) [005] d..2 24572.805793: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34501         sugov:4-560   (  560) [005] d.h3 24572.805796: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=005
34502 id.nn.benchmark-13160 (13131) [000] d.h5 24572.805798: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
34503         sugov:4-560   (  560) [005] d..2 24572.805800: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
34504           <...>-13164 (-----) [002] d..2 24572.805827: sched_switch: prev_comm=id.nn.benchmark prev_pid=13164 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
34505   sfEventThread-23906 (23896) [001] d..3 24572.805833: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
34506         sugov:0-559   (  559) [002] d..2 24572.805835: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13164 next_prio=110
34507   sfEventThread-23906 (23896) [001] d..4 24572.805846: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
34508           <...>-13164 (-----) [002] d..2 24572.805853: sched_switch: prev_comm=id.nn.benchmark prev_pid=13164 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
34509   sfEventThread-23906 (23896) [001] d..2 24572.805864: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34510          <idle>-0     (-----) [001] d..1 24572.805870: cpu_idle: state=0 cpu_id=1
34511<...>-24042 ( 23968) [005] .... 24572.805986: binder_transaction: transaction=1669529 dest_node=1271163 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
34512<...>-24042 ( 23968) [005] d..4 24572.805991: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
34513          <idle>-0     (-----) [001] dnh2 24572.806023: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=001
34514          <idle>-0     (-----) [001] .n.1 24572.806027: cpu_idle: state=4294967295 cpu_id=1
34515          <idle>-0     (-----) [001] d..2 24572.806032: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
34516<...>-23903 ( 23896) [001] .... 24572.806037: binder_transaction_received: transaction=1669529
34517<...>-23903 ( 23896) [001] d..1 24572.806055: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
34518<...>-23903 ( 23896) [001] dn.2 24572.806061: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
34519<...>-23903 ( 23896) [001] d..2 24572.806066: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
34520   sfEventThread-23906 (23896) [001] d..2 24572.806076: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
34521<...>-23903 ( 23896) [001] d..1 24572.806079: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
34522<...>-23903 ( 23896) [001] dn.2 24572.806083: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
34523<...>-23903 ( 23896) [001] d..2 24572.806087: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
34524<...>-24042 ( 23968) [005] .... 24572.806098: binder_transaction: transaction=1669530 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
34525   sfEventThread-23906 (23896) [001] d..2 24572.806103: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
34526<...>-24042 ( 23968) [005] ...2 24572.806112: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
34527<...>-24042 ( 23968) [005] d..4 24572.806114: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
34528<...>-23903 ( 23896) [001] d.h3 24572.806149: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
34529<...>-24042 ( 23968) [005] d..2 24572.806157: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
34530<...>-23903 ( 23896) [001] d..2 24572.806159: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
34531  Binder:23896_5-25989 (23896) [001] .... 24572.806164: binder_transaction_received: transaction=1669530
34532  Binder:23896_5-25989 (23896) [001] d..1 24572.806226: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
34533  Binder:23896_5-25989 (23896) [001] dn.2 24572.806233: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
34534  Binder:23896_5-25989 (23896) [001] d..2 24572.806238: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
34535   sfEventThread-23906 (23896) [001] d..2 24572.806247: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
34536  Binder:23896_5-25989 (23896) [001] d..1 24572.806250: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
34537  Binder:23896_5-25989 (23896) [001] dn.2 24572.806254: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
34538  Binder:23896_5-25989 (23896) [001] d..2 24572.806258: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
34539   sfEventThread-23906 (23896) [001] d..2 24572.806270: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
34540  Binder:23896_5-25989 (23896) [001] .... 24572.806283: binder_transaction: transaction=1669531 dest_node=0 dest_proc=23968 dest_thread=24042 reply=1 flags=0x0 code=0x0
34541  Binder:23896_5-25989 (23896) [001] d..2 24572.806286: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=005
34542  Binder:23896_5-25989 (23896) [001] d..3 24572.806300: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=001
34543  Binder:23896_5-25989 (23896) [001] d.h3 24572.806328: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
34544  Binder:23896_5-25989 (23896) [001] d.h3 24572.806336: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
34545           <...>-13157 (-----) [005] dnh1 24572.806339: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
34546           <...>-13157 (-----) [005] d..2 24572.806342: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34547  Binder:23896_5-25989 (23896) [001] dnh4 24572.806344: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
34548         sugov:4-560   (  560) [005] d..2 24572.806346: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
34549  Binder:23896_5-25989 (23896) [001] d..2 24572.806350: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
34550         sugov:0-559   (  559) [001] d..2 24572.806356: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
34551  Binder:23896_5-25989 (23896) [001] .... 24572.806358: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
34552  Binder:23896_5-25989 (23896) [001] d..2 24572.806391: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
34553<...>-24042 ( 23968) [001] .... 24572.806395: binder_transaction_received: transaction=1669531
34554<...>-24042 ( 23968) [001] d..2 24572.806466: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34555          <idle>-0     (-----) [001] d..1 24572.806474: cpu_idle: state=0 cpu_id=1
34556 id.nn.benchmark-13160 (13131) [000] d.h1 24572.806658: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
34557 id.nn.benchmark-13160 (13131) [000] d.h2 24572.806671: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
34558          <idle>-0     (-----) [001] .n.1 24572.806676: cpu_idle: state=4294967295 cpu_id=1
34559          <idle>-0     (-----) [001] d..2 24572.806682: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
34560        DispSync-23904 (23896) [001] d..1 24572.806693: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
34561        DispSync-23904 (23896) [001] d..2 24572.806709: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
34562 id.nn.benchmark-13160 (13131) [000] d..2 24572.806718: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
34563        DispSync-23904 (23896) [001] d..2 24572.806725: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34564          <idle>-0     (-----) [001] d..1 24572.806731: cpu_idle: state=0 cpu_id=1
34565  appEventThread-23905 (23896) [000] d..3 24572.806751: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
34566  appEventThread-23905 (23896) [000] d..4 24572.806765: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
34567          <idle>-0     (-----) [001] .n.1 24572.806770: cpu_idle: state=4294967295 cpu_id=1
34568          <idle>-0     (-----) [001] d..2 24572.806776: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
34569  appEventThread-23905 (23896) [000] d..2 24572.806779: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
34570  surfaceflinger-23896 (23896) [002] ...1 24572.806943: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
34571  surfaceflinger-23896 (23896) [002] ...1 24572.806947: tracing_mark_write: E|23896
34572<...>-24151 ( 24151) [001] .... 24572.806980: binder_transaction: transaction=1669532 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
34573<...>-24151 ( 24151) [001] d..4 24572.806985: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
34574  surfaceflinger-23896 (23896) [002] .... 24572.806987: binder_transaction: transaction=1669533 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
34575<...>-24151 ( 24151) [001] d..5 24572.806998: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
34576  surfaceflinger-23896 (23896) [002] ...2 24572.807005: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
34577  surfaceflinger-23896 (23896) [002] d..4 24572.807012: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
34578<...>-24151 ( 24151) [001] d..3 24572.807019: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
34579  surfaceflinger-23896 (23896) [002] d..5 24572.807029: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
34580  surfaceflinger-23896 (23896) [002] d..2 24572.807040: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13164 next_prio=110
34581 id.nn.benchmark-13158 (13131) [006] dnh1 24572.807045: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
34582 id.nn.benchmark-13158 (13131) [006] d..2 24572.807047: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
34583<...>-24151 ( 24151) [001] d..2 24572.807049: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R+ ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
34584  HwBinder:598_3-633   (  598) [001] .... 24572.807056: binder_transaction_received: transaction=1669533
34585    RenderThread-24437 (24151) [006] d..2 24572.807063: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
34586  HwBinder:598_3-633   (  598) [001] ...1 24572.807091: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
34587  HwBinder:598_3-633   (  598) [001] ...1 24572.807210: tracing_mark_write: B|598|HWCSession::PresentDisplay::
34588  HwBinder:598_3-633   (  598) [001] ...1 24572.807722: tracing_mark_write: B|598|HWDeviceDRM::Validate::
34589  HwBinder:598_3-633   (  598) [001] ...1 24572.808107: tracing_mark_write: E|598
34590  HwBinder:598_3-633   (  598) [001] ...1 24572.808208: tracing_mark_write: B|598|HWDeviceDRM::Commit::
34591  HwBinder:598_3-633   (  598) [001] ...1 24572.808214: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
34592  HwBinder:598_3-633   (  598) [001] d..2 24572.808514: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
34593  HwBinder:598_3-633   (  598) [001] d..3 24572.808532: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
34594           <...>-13164 (-----) [002] d..2 24572.808540: sched_switch: prev_comm=id.nn.benchmark prev_pid=13164 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
34595  HwBinder:598_3-633   (  598) [001] ...1 24572.808587: tracing_mark_write: E|598
34596  HwBinder:598_3-633   (  598) [001] ...1 24572.808590: tracing_mark_write: E|598
34597  HwBinder:598_3-633   (  598) [001] ...1 24572.808622: tracing_mark_write: E|598
34598  HwBinder:598_3-633   (  598) [001] ...1 24572.808656: tracing_mark_write: E|598
34599  HwBinder:598_3-633   (  598) [001] .... 24572.808665: binder_transaction: transaction=1669534 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
34600  HwBinder:598_3-633   (  598) [001] d..2 24572.808679: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
34601  HwBinder:598_3-633   (  598) [001] d..3 24572.808694: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
34602  HwBinder:598_3-633   (  598) [001] .... 24572.808696: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
34603 id.nn.benchmark-13160 (13131) [000] d..2 24572.808702: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
34604  surfaceflinger-23896 (23896) [000] .... 24572.808707: binder_transaction_received: transaction=1669534
34605  HwBinder:598_3-633   (  598) [001] d..2 24572.808738: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
34606  Binder:23896_5-25989 (23896) [001] .... 24572.808743: binder_transaction_received: transaction=1669532
34607  Binder:23896_5-25989 (23896) [001] d..1 24572.808761: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
34608  Binder:23896_5-25989 (23896) [001] dn.2 24572.808772: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
34609  Binder:23896_5-25989 (23896) [001] d..2 24572.808777: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
34610  appEventThread-23905 (23896) [001] d..2 24572.808787: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
34611  Binder:23896_5-25989 (23896) [001] d..1 24572.808790: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
34612  Binder:23896_5-25989 (23896) [001] dn.2 24572.808794: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
34613  Binder:23896_5-25989 (23896) [001] d..2 24572.808798: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
34614  appEventThread-23905 (23896) [001] d..2 24572.808817: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
34615  Binder:23896_5-25989 (23896) [001] d..2 24572.808832: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
34616<...>-24151 ( 24151) [001] d..3 24572.808968: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
34617  surfaceflinger-23896 (23896) [000] d..2 24572.808979: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
34618<...>-24151 ( 24151) [001] d..4 24572.808999: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=001
34619<...>-24151 ( 24151) [001] d.h3 24572.809029: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
34620<...>-24151 ( 24151) [001] d.h3 24572.809037: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
34621           <...>-13157 (-----) [005] dnh1 24572.809040: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
34622           <...>-13157 (-----) [005] d..2 24572.809042: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34623<...>-24151 ( 24151) [001] dnh4 24572.809043: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
34624         sugov:4-560   (  560) [005] d..2 24572.809045: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
34625<...>-24151 ( 24151) [001] d..2 24572.809048: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
34626         sugov:0-559   (  559) [001] d..2 24572.809055: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
34627<...>-24151 ( 24151) [001] d..2 24572.809064: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
34628    RenderThread-24437 (24151) [001] d..1 24572.809162: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
34629    RenderThread-24437 (24151) [001] d..2 24572.809171: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
34630    RenderThread-24437 (24151) [001] .... 24572.809215: binder_transaction: transaction=1669535 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
34631    RenderThread-24437 (24151) [001] d..4 24572.809219: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
34632    RenderThread-24437 (24151) [001] d..5 24572.809238: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
34633    RenderThread-24437 (24151) [001] d..2 24572.809246: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
34634  Binder:23896_5-25989 (23896) [001] .... 24572.809250: binder_transaction_received: transaction=1669535
34635  Binder:23896_5-25989 (23896) [001] .... 24572.809291: binder_transaction: transaction=1669536 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
34636  Binder:23896_5-25989 (23896) [001] d..2 24572.809297: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=001
34637  Binder:23896_5-25989 (23896) [001] d..3 24572.809317: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=001
34638  Binder:23896_5-25989 (23896) [001] d..2 24572.809337: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
34639<...>-24151 ( 24151) [001] d..2 24572.809380: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
34640    RenderThread-24437 (24151) [001] .... 24572.809383: binder_transaction_received: transaction=1669536
34641 id.nn.benchmark-13159 (13131) [007] d..2 24572.809485: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
34642           <...>-13154 (-----) [004] d..3 24572.809486: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
34643           <...>-13154 (-----) [004] d..2 24572.809492: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
34644          <idle>-0     (-----) [004] d..1 24572.809496: cpu_idle: state=0 cpu_id=4
34645 id.nn.benchmark-13160 (13131) [000] dnh1 24572.809497: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
34646 id.nn.benchmark-13160 (13131) [000] d..2 24572.809503: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
34647 id.nn.benchmark-13158 (13131) [006] d..2 24572.809514: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
34648 id.nn.benchmark-13160 (13131) [006] d.h3 24572.809532: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
34649     migration/0-13    (   13) [000] d..2 24572.809534: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34650 id.nn.benchmark-13160 (13131) [006] d.h4 24572.809541: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
34651 id.nn.benchmark-13160 (13131) [006] d.h3 24572.809541: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
34652          <idle>-0     (-----) [000] d..1 24572.809545: cpu_idle: state=0 cpu_id=0
34653          <idle>-0     (-----) [004] .n.1 24572.809545: cpu_idle: state=4294967295 cpu_id=4
34654          <idle>-0     (-----) [004] d..2 24572.809548: 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
34655         sugov:4-560   (  560) [004] d..3 24572.809552: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
34656          <idle>-0     (-----) [000] dnh2 24572.809557: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
34657         sugov:4-560   (  560) [004] d..2 24572.809558: 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
34658          <idle>-0     (-----) [004] d..1 24572.809560: cpu_idle: state=0 cpu_id=4
34659 id.nn.benchmark-13156 (13131) [003] dnh1 24572.809561: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
34660          <idle>-0     (-----) [000] .n.1 24572.809562: cpu_idle: state=4294967295 cpu_id=0
34661 id.nn.benchmark-13156 (13131) [003] d..2 24572.809567: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
34662          <idle>-0     (-----) [000] d..2 24572.809568: 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
34663         sugov:0-559   (  559) [000] d..2 24572.809579: 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
34664          <idle>-0     (-----) [000] d..1 24572.809584: cpu_idle: state=0 cpu_id=0
34665          <idle>-0     (-----) [004] .n.1 24572.809588: cpu_idle: state=4294967295 cpu_id=4
34666          <idle>-0     (-----) [004] d..2 24572.809606: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
34667<...>-33 ( 33) [003] d..2 24572.809618: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
34668          <idle>-0     (-----) [003] d..1 24572.809635: cpu_idle: state=0 cpu_id=3
34669           <...>-13157 (-----) [005] d..2 24572.809875: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
34670          <idle>-0     (-----) [005] d..1 24572.809881: cpu_idle: state=0 cpu_id=5
34671 crtc_commit:111-253   (  253) [002] d..2 24572.810038: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13164 next_prio=110
34672           <...>-13164 (-----) [002] ...1 24572.810054: tracing_mark_write: E|13131
34673           <...>-13164 (-----) [002] ...1 24572.810058: tracing_mark_write: E|13131
34674           <...>-13164 (-----) [002] ...1 24572.810078: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
34675           <...>-13164 (-----) [002] ...1 24572.810083: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
34676           <...>-13164 (-----) [002] d..1 24572.810198: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
34677           <...>-13164 (-----) [002] d..1 24572.810218: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
34678          <idle>-0     (-----) [005] dnh2 24572.810219: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
34679          <idle>-0     (-----) [005] .n.1 24572.810224: cpu_idle: state=4294967295 cpu_id=5
34680          <idle>-0     (-----) [005] dn.2 24572.810226: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
34681          <idle>-0     (-----) [005] d..2 24572.810228: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
34682           <...>-13164 (-----) [002] d..1 24572.810230: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=006
34683           <...>-13164 (-----) [002] d..1 24572.810240: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
34684 id.nn.benchmark-13160 (13131) [006] d.h1 24572.810241: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=006
34685 id.nn.benchmark-13155 (13131) [007] d.h1 24572.810250: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
34686    RenderThread-24437 (24151) [001] d..2 24572.810528: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
34687 id.nn.benchmark-13159 (13131) [001] d.h4 24572.810562: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
34688 id.nn.benchmark-13159 (13131) [001] d.h4 24572.810570: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
34689 id.nn.benchmark-13156 (13131) [004] dnh1 24572.810573: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
34690 id.nn.benchmark-13156 (13131) [004] d..2 24572.810576: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34691 id.nn.benchmark-13159 (13131) [001] d.h5 24572.810579: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
34692         sugov:4-560   (  560) [004] d..2 24572.810579: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
34693          <idle>-0     (-----) [000] .n.1 24572.810583: cpu_idle: state=4294967295 cpu_id=0
34694          <idle>-0     (-----) [000] d..2 24572.810588: 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
34695 id.nn.benchmark-13159 (13131) [001] d.h1 24572.810602: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=001
34696         sugov:0-559   (  559) [000] d..2 24572.810613: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
34697 id.nn.benchmark-13159 (13131) [001] d.h2 24572.810615: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
34698 id.nn.benchmark-13159 (13131) [001] d.h2 24572.810621: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=003
34699          <idle>-0     (-----) [003] .n.1 24572.810626: cpu_idle: state=4294967295 cpu_id=3
34700          <idle>-0     (-----) [003] d..2 24572.810644: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
34701           <...>-13157 (-----) [000] d.h2 24572.810717: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
34702           <...>-13157 (-----) [000] d.h3 24572.810729: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
34703    RenderThread-24437 (24151) [003] d..2 24572.810736: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
34704 kgsl_worker_thr-246   (  246) [003] d..2 24572.810775: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
34705 kgsl_worker_thr-246   (  246) [003] d..3 24572.810791: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
34706 kgsl_worker_thr-246   (  246) [003] d..2 24572.810801: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
34707 id.nn.benchmark-13160 (13131) [006] d.s2 24572.810890: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
34708 id.nn.benchmark-13159 (13131) [001] d.s1 24572.810898: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
34709 id.nn.benchmark-13159 (13131) [001] d.s2 24572.810912: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
34710  kworker/u16:15-18488 (18488) [003] d.H2 24572.810936: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
34711  kworker/u16:15-18488 (18488) [003] d..2 24572.811135: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34712  kworker/u16:10-23868 (23868) [003] d..2 24572.811144: 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
34713     rcu_preempt-7     (    7) [003] d.s4 24572.811170: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
34714     rcu_preempt-7     (    7) [003] d.s5 24572.811178: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
34715     rcu_preempt-7     (    7) [003] d.s5 24572.811181: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
34716     rcu_preempt-7     (    7) [003] d..2 24572.811192: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
34717  kworker/u16:15-18488 (18488) [003] .... 24572.811451: clk_set_rate: l3_cluster0_vote_clk 940800000
34718  kworker/u16:15-18488 (18488) [003] d..2 24572.811462: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
34719    RenderThread-24437 (24151) [003] .... 24572.811528: binder_transaction: transaction=1669537 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
34720    RenderThread-24437 (24151) [003] d..4 24572.811535: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
34721    RenderThread-24437 (24151) [003] dn.5 24572.811547: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=003
34722    RenderThread-24437 (24151) [003] d..2 24572.811552: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
34723  Binder:23896_5-25989 (23896) [003] .... 24572.811557: binder_transaction_received: transaction=1669537
34724  Binder:23896_5-25989 (23896) [003] .... 24572.811639: binder_transaction: transaction=1669538 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
34725  Binder:23896_5-25989 (23896) [003] d..2 24572.811662: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
34726    RenderThread-24437 (24151) [003] .... 24572.811666: binder_transaction_received: transaction=1669538
34727    RenderThread-24437 (24151) [003] d..2 24572.811724: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
34728          <idle>-0     (-----) [003] d..1 24572.811732: cpu_idle: state=0 cpu_id=3
34729          <idle>-0     (-----) [003] ...1 24572.814244: cpu_idle: state=4294967295 cpu_id=3
34730          <idle>-0     (-----) [003] d..1 24572.814246: cpu_idle: state=0 cpu_id=3
34731 id.nn.benchmark-13155 (13131) [007] d..2 24572.814708: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
34732 id.nn.benchmark-13156 (13131) [004] d..3 24572.814709: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
34733 id.nn.benchmark-13156 (13131) [004] d..2 24572.814715: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
34734          <idle>-0     (-----) [004] d..1 24572.814718: cpu_idle: state=0 cpu_id=4
34735           <...>-13157 (-----) [000] dnh1 24572.814718: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
34736           <...>-13154 (-----) [005] d..2 24572.814722: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
34737           <...>-13157 (-----) [000] d..2 24572.814724: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
34738          <idle>-0     (-----) [005] d..1 24572.814725: cpu_idle: state=0 cpu_id=5
34739          <idle>-0     (-----) [004] .n.1 24572.814745: cpu_idle: state=4294967295 cpu_id=4
34740           <...>-13164 (-----) [002] ...1 24572.814759: tracing_mark_write: E|13131
34741           <...>-13164 (-----) [002] ...1 24572.814763: tracing_mark_write: E|13131
34742          <idle>-0     (-----) [004] d..2 24572.814767: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
34743     migration/0-13    (   13) [000] d.h3 24572.814768: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
34744 id.nn.benchmark-13160 (13131) [006] d..2 24572.814771: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
34745          <idle>-0     (-----) [006] d..1 24572.814778: cpu_idle: state=0 cpu_id=6
34746           <...>-13164 (-----) [002] ...1 24572.814779: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
34747     migration/0-13    (   13) [000] d.h3 24572.814780: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
34748           <...>-13164 (-----) [002] ...1 24572.814784: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
34749          <idle>-0     (-----) [006] dnh2 24572.814785: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
34750          <idle>-0     (-----) [006] .n.1 24572.814787: cpu_idle: state=4294967295 cpu_id=6
34751          <idle>-0     (-----) [006] d..2 24572.814790: 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
34752     migration/0-13    (   13) [000] d.h4 24572.814793: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
34753         sugov:4-560   (  560) [006] d..2 24572.814796: 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
34754          <idle>-0     (-----) [003] .n.1 24572.814797: cpu_idle: state=4294967295 cpu_id=3
34755          <idle>-0     (-----) [006] d..1 24572.814798: cpu_idle: state=0 cpu_id=6
34756          <idle>-0     (-----) [003] d..2 24572.814804: 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
34757     migration/0-13    (   13) [000] d..2 24572.814806: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34758          <idle>-0     (-----) [000] d..1 24572.814814: cpu_idle: state=0 cpu_id=0
34759         sugov:0-559   (  559) [003] d..2 24572.814817: 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
34760          <idle>-0     (-----) [003] d..1 24572.814820: cpu_idle: state=0 cpu_id=3
34761           <...>-13164 (-----) [002] d..1 24572.814930: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
34762           <...>-13164 (-----) [002] d..1 24572.814942: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=007
34763          <idle>-0     (-----) [005] dnh2 24572.814945: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
34764          <idle>-0     (-----) [005] .n.1 24572.814947: cpu_idle: state=4294967295 cpu_id=5
34765          <idle>-0     (-----) [005] d..2 24572.814950: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
34766           <...>-13164 (-----) [002] d..1 24572.814958: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=004
34767          <idle>-0     (-----) [006] dnh2 24572.814961: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
34768          <idle>-0     (-----) [006] .n.1 24572.814963: cpu_idle: state=4294967295 cpu_id=6
34769          <idle>-0     (-----) [006] d..2 24572.814965: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
34770           <...>-13154 (-----) [005] d.h1 24572.814976: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=005
34771           <...>-13164 (-----) [002] d..1 24572.814976: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=006
34772 id.nn.benchmark-13155 (13131) [006] d.h1 24572.814986: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=006
34773          <idle>-0     (-----) [000] ...1 24572.816305: cpu_idle: state=4294967295 cpu_id=0
34774          <idle>-0     (-----) [000] d..1 24572.816307: cpu_idle: state=0 cpu_id=0
34775          <idle>-0     (-----) [003] d.s2 24572.817579: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
34776 id.nn.benchmark-13158 (13131) [007] d.h2 24572.817590: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
34777          <idle>-0     (-----) [003] dns3 24572.817591: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
34778          <idle>-0     (-----) [003] .n.1 24572.817596: cpu_idle: state=4294967295 cpu_id=3
34779 id.nn.benchmark-13158 (13131) [007] dnh3 24572.817599: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
34780 id.nn.benchmark-13158 (13131) [007] dnh2 24572.817599: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
34781          <idle>-0     (-----) [003] d..2 24572.817601: 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
34782     rcu_preempt-7     (    7) [003] d..2 24572.817605: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=006
34783 id.nn.benchmark-13158 (13131) [007] d..2 24572.817610: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34784         sugov:4-560   (  560) [007] d..2 24572.817632: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
34785          <idle>-0     (-----) [000] .n.1 24572.817635: cpu_idle: state=4294967295 cpu_id=0
34786     rcu_preempt-7     (    7) [003] d..3 24572.817640: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
34787          <idle>-0     (-----) [000] d..2 24572.817642: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
34788     rcu_preempt-7     (    7) [003] dnh2 24572.817645: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
34789     rcu_preempt-7     (    7) [003] d..2 24572.817671: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
34790         sugov:0-559   (  559) [003] d..2 24572.817677: 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
34791         rcuop/2-29    (   29) [003] d..2 24572.817688: 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
34792     rcu_preempt-7     (    7) [003] d..2 24572.817690: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
34793     rcu_preempt-7     (    7) [003] d..3 24572.817706: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=003
34794     rcu_preempt-7     (    7) [003] d..2 24572.817733: 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
34795         rcuop/6-61    (   61) [003] d..2 24572.817737: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=006
34796         rcuop/6-61    (   61) [003] d..3 24572.817755: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=003
34797         rcuop/6-61    (   61) [003] d..2 24572.817780: 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
34798         rcuop/7-69    (   69) [003] d..2 24572.817822: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
34799           <...>-13164 (-----) [002] ...1 24572.818098: tracing_mark_write: E|13131
34800           <...>-13164 (-----) [002] ...1 24572.818102: tracing_mark_write: E|13131
34801           <...>-13164 (-----) [002] ...1 24572.818114: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
34802           <...>-13164 (-----) [002] ...1 24572.818119: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
34803 id.nn.benchmark-13156 (13131) [000] d.h4 24572.818497: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
34804 id.nn.benchmark-13156 (13131) [000] d.h4 24572.818518: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
34805 id.nn.benchmark-13158 (13131) [007] dnh1 24572.818519: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
34806 id.nn.benchmark-13158 (13131) [007] d..2 24572.818521: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
34807  crtc_event:111-254   (  254) [007] d..2 24572.818531: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
34808           <...>-13157 (-----) [004] dnh1 24572.818533: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
34809           <...>-13157 (-----) [004] d..2 24572.818535: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
34810 id.nn.benchmark-13156 (13131) [000] d.h2 24572.818560: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
34811 id.nn.benchmark-13156 (13131) [000] d.h2 24572.818567: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
34812 id.nn.benchmark-13158 (13131) [007] dnh1 24572.818570: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
34813 id.nn.benchmark-13158 (13131) [007] d..2 24572.818572: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34814 id.nn.benchmark-13156 (13131) [000] d.h3 24572.818575: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
34815         sugov:4-560   (  560) [007] d..2 24572.818575: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
34816 id.nn.benchmark-13160 (13131) [003] d..2 24572.818585: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
34817         sugov:0-559   (  559) [003] d..2 24572.818593: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
34818 crtc_commit:111-253   (  253) [004] d..2 24572.818628: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
34819           <...>-13164 (-----) [002] ...1 24572.818683: tracing_mark_write: E|13131
34820           <...>-13164 (-----) [002] ...1 24572.818687: tracing_mark_write: E|13131
34821           <...>-13164 (-----) [002] ...1 24572.818710: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
34822           <...>-13164 (-----) [002] ...1 24572.818715: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
34823           <...>-13164 (-----) [002] ...1 24572.818911: tracing_mark_write: E|13131
34824           <...>-13164 (-----) [002] ...1 24572.818915: tracing_mark_write: E|13131
34825           <...>-13164 (-----) [002] ...1 24572.818931: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
34826           <...>-13164 (-----) [002] ...1 24572.818935: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
34827           <...>-13164 (-----) [002] ...1 24572.819013: tracing_mark_write: E|13131
34828           <...>-13164 (-----) [002] ...1 24572.819016: tracing_mark_write: E|13131
34829           <...>-13164 (-----) [002] ...1 24572.819030: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
34830           <...>-13164 (-----) [002] ...1 24572.819035: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
34831           <...>-13164 (-----) [002] ...1 24572.819371: tracing_mark_write: E|13131
34832           <...>-13164 (-----) [002] ...1 24572.819375: tracing_mark_write: E|13131
34833           <...>-13164 (-----) [002] ...1 24572.819385: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
34834           <...>-13164 (-----) [002] ...1 24572.819389: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
34835           <...>-13164 (-----) [002] ...1 24572.819446: tracing_mark_write: E|13131
34836           <...>-13164 (-----) [002] ...1 24572.819449: tracing_mark_write: E|13131
34837           <...>-13164 (-----) [002] ...1 24572.819458: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
34838           <...>-13164 (-----) [002] ...1 24572.819462: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
34839           <...>-13164 (-----) [002] ...1 24572.819480: tracing_mark_write: E|13131
34840           <...>-13164 (-----) [002] ...1 24572.819483: tracing_mark_write: E|13131
34841           <...>-13164 (-----) [002] ...1 24572.819495: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
34842           <...>-13164 (-----) [002] ...1 24572.819498: tracing_mark_write: E|13131
34843           <...>-13164 (-----) [002] ...1 24572.819509: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
34844           <...>-13164 (-----) [002] ...1 24572.819515: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
34845           <...>-13164 (-----) [002] ...1 24572.820369: tracing_mark_write: E|13131
34846           <...>-13164 (-----) [002] ...1 24572.820372: tracing_mark_write: E|13131
34847           <...>-13164 (-----) [002] ...1 24572.820380: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
34848           <...>-13164 (-----) [002] ...1 24572.820384: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
34849           <...>-13164 (-----) [002] ...1 24572.820469: tracing_mark_write: E|13131
34850           <...>-13164 (-----) [002] ...1 24572.820472: tracing_mark_write: E|13131
34851           <...>-13164 (-----) [002] d..2 24572.820546: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
34852           <...>-13164 (-----) [002] d..3 24572.820562: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
34853           <...>-13164 (-----) [002] ...1 24572.820587: tracing_mark_write: E|13131
34854           <...>-13164 (-----) [002] d..1 24572.820594: sched_waking: comm=id.nn.benchmark pid=13163 prio=110 target_cpu=007
34855 id.nn.benchmark-13158 (13131) [007] dnh1 24572.820611: sched_wakeup: comm=id.nn.benchmark pid=13163 prio=110 target_cpu=007
34856 id.nn.benchmark-13158 (13131) [007] d..2 24572.820613: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13163 next_prio=110
34857           <...>-13164 (-----) [002] ...1 24572.820621: tracing_mark_write: E|13131
34858           <...>-13163 (-----) [007] d..2 24572.820623: sched_switch: prev_comm=id.nn.benchmark prev_pid=13163 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
34859 id.nn.benchmark-13156 (13131) [000] d.h4 24572.820837: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
34860 id.nn.benchmark-13158 (13131) [007] dnh1 24572.820854: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
34861 id.nn.benchmark-13158 (13131) [007] d..2 24572.820856: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
34862 crtc_commit:111-253   (  253) [007] d..2 24572.820881: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
34863           <...>-13157 (-----) [004] d.s2 24572.820888: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
34864           <...>-13157 (-----) [004] d.H3 24572.820920: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
34865           <...>-13164 (-----) [002] dnh3 24572.820921: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
34866           <...>-13157 (-----) [004] d.H4 24572.820925: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
34867           <...>-13157 (-----) [004] d.H3 24572.820926: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
34868           <...>-13164 (-----) [002] d..2 24572.820926: sched_switch: prev_comm=id.nn.benchmark prev_pid=13164 prev_prio=110 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
34869 id.nn.benchmark-13158 (13131) [007] d..2 24572.820931: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34870           <...>-13157 (-----) [004] d.s2 24572.820932: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
34871         sugov:4-560   (  560) [007] d..2 24572.820934: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
34872 id.nn.benchmark-13160 (13131) [003] dnh1 24572.820936: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
34873  crtc_event:111-254   (  254) [002] d..2 24572.820938: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13164 next_prio=110
34874           <...>-13164 (-----) [002] d..1 24572.820939: sched_waking: comm=id.nn.benchmark pid=13163 prio=110 target_cpu=007
34875 id.nn.benchmark-13160 (13131) [003] d..2 24572.820942: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
34876         sugov:0-559   (  559) [003] d..2 24572.820950: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
34877 id.nn.benchmark-13158 (13131) [007] dnh1 24572.820953: sched_wakeup: comm=id.nn.benchmark pid=13163 prio=110 target_cpu=007
34878           <...>-13164 (-----) [002] dnh1 24572.820955: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
34879 id.nn.benchmark-13158 (13131) [007] d..2 24572.820955: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13163 next_prio=110
34880           <...>-13164 (-----) [002] d..2 24572.820960: sched_switch: prev_comm=id.nn.benchmark prev_pid=13164 prev_prio=110 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
34881           <...>-13163 (-----) [007] d..1 24572.821032: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
34882  kworker/u16:15-18488 (18488) [002] .... 24572.821034: clk_set_rate: l3_cluster0_vote_clk 300000000
34883           <...>-13163 (-----) [007] d..2 24572.821042: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
34884           <...>-13157 (-----) [004] d..2 24572.821050: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
34885           <...>-13131 (-----) [004] d..2 24572.821064: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
34886           <...>-13163 (-----) [007] d..1 24572.821076: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
34887           <...>-13163 (-----) [007] d..2 24572.821082: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
34888           <...>-13157 (-----) [004] d..2 24572.821088: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
34889           <...>-13131 (-----) [004] ...1 24572.821105: tracing_mark_write: E|13131
34890           <...>-13131 (-----) [004] ...1 24572.821108: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
34891           <...>-13131 (-----) [004] ...1 24572.821111: tracing_mark_write: E|13131
34892           <...>-13131 (-----) [004] ...1 24572.821112: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
34893           <...>-13131 (-----) [004] ...1 24572.821114: tracing_mark_write: E|13131
34894           <...>-13163 (-----) [007] d..2 24572.821132: sched_switch: prev_comm=id.nn.benchmark prev_pid=13163 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
34895 id.nn.benchmark-13156 (13131) [000] d.h4 24572.821133: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
34896 id.nn.benchmark-13156 (13131) [000] d.h5 24572.821144: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
34897  kworker/u16:15-18488 (18488) [002] d..2 24572.821149: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
34898  crtc_event:111-254   (  254) [002] d..2 24572.821162: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
34899           <...>-13131 (-----) [004] ...1 24572.821187: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
34900           <...>-13131 (-----) [004] ...1 24572.821213: tracing_mark_write: E|13131
34901  kworker/u16:15-18488 (18488) [002] .... 24572.821214: clk_set_rate: l3_cluster1_vote_clk 300000000
34902           <...>-13131 (-----) [004] ...1 24572.821215: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
34903  kworker/u16:15-18488 (18488) [002] .... 24572.821217: clk_set_rate: l3_clk 300000000
34904           <...>-13131 (-----) [004] ...1 24572.821218: tracing_mark_write: E|13131
34905           <...>-13131 (-----) [004] ...1 24572.821220: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
34906           <...>-13131 (-----) [004] ...1 24572.821222: tracing_mark_write: E|13131
34907           <...>-13131 (-----) [004] ...1 24572.821224: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
34908           <...>-13131 (-----) [004] ...1 24572.821345: tracing_mark_write: E|13131
34909           <...>-13131 (-----) [004] ...1 24572.821348: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
34910           <...>-13131 (-----) [004] d..2 24572.821358: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
34911  kworker/u16:15-18488 (18488) [002] d..2 24572.821515: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13164 next_prio=110
34912 id.nn.benchmark-13160 (13131) [003] d.s2 24572.821552: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
34913 id.nn.benchmark-13160 (13131) [003] d.s3 24572.821566: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
34914 id.nn.benchmark-13160 (13131) [003] d.s3 24572.821576: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
34915           <...>-13164 (-----) [002] d..2 24572.821583: sched_switch: prev_comm=id.nn.benchmark prev_pid=13164 prev_prio=110 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
34916  kworker/u16:15-18488 (18488) [002] d..2 24572.821605: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13164 next_prio=110
34917           <...>-13164 (-----) [002] d..2 24572.821612: sched_switch: prev_comm=id.nn.benchmark prev_pid=13164 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
34918     logd.writer-563   (  555) [002] d..2 24572.821836: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13165 next_prio=110
34919           <...>-13165 (-----) [002] d.h4 24572.821881: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
34920           <...>-13165 (-----) [002] d.h4 24572.821892: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
34921 id.nn.benchmark-13158 (13131) [007] dnh1 24572.821896: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
34922 id.nn.benchmark-13158 (13131) [007] d..2 24572.821901: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34923           <...>-13165 (-----) [002] dnh5 24572.821907: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
34924         sugov:4-560   (  560) [007] d..2 24572.821907: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
34925           <...>-13165 (-----) [002] d..2 24572.821916: sched_switch: prev_comm=id.nn.benchmark prev_pid=13165 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
34926         sugov:0-559   (  559) [002] d..2 24572.821927: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13165 next_prio=110
34927           <...>-13165 (-----) [002] d..2 24572.822048: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
34928           <...>-13165 (-----) [002] d..3 24572.822062: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
34929 id.nn.benchmark-13159 (13131) [001] d.h1 24572.822127: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
34930 id.nn.benchmark-13159 (13131) [001] d.h2 24572.822153: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
34931           <...>-13165 (-----) [002] d..2 24572.822168: sched_switch: prev_comm=id.nn.benchmark prev_pid=13165 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
34932        DispSync-23904 (23896) [002] d..1 24572.822200: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
34933        DispSync-23904 (23896) [002] d..2 24572.822220: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
34934 id.nn.benchmark-13159 (13131) [001] d..2 24572.822232: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
34935        DispSync-23904 (23896) [002] d..2 24572.822244: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13165 next_prio=110
34936   sfEventThread-23906 (23896) [001] d..3 24572.822287: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=001
34937 id.nn.benchmark-13158 (13131) [007] dnh1 24572.822323: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=007
34938 id.nn.benchmark-13158 (13131) [007] d..2 24572.822352: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
34939   sfEventThread-23906 (23896) [001] d..3 24572.822365: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
34940   sfEventThread-23906 (23896) [001] d..4 24572.822380: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
34941 id.nn.benchmark-13156 (13131) [000] d..2 24572.822392: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
34942   sfEventThread-23906 (23896) [001] d..2 24572.822404: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
34943<...>-24042 ( 23968) [007] .... 24572.822628: binder_transaction: transaction=1669539 dest_node=1271163 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
34944<...>-24042 ( 23968) [007] d..4 24572.822636: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=003
34945           <...>-13165 (-----) [002] d..2 24572.822639: sched_switch: prev_comm=id.nn.benchmark prev_pid=13165 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
34946<...>-24042 ( 23968) [007] d..5 24572.822664: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
34947           <...>-13157 (-----) [004] d..2 24572.822673: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
34948<...>-24042 ( 23968) [007] d.h5 24572.822700: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
34949<...>-24042 ( 23968) [007] dnh6 24572.822706: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
34950<...>-24042 ( 23968) [007] dnh5 24572.822706: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
34951  Binder:23896_5-25989 (23896) [004] .... 24572.822717: binder_transaction_received: transaction=1669539
34952<...>-24042 ( 23968) [007] d..2 24572.822718: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
34953         sugov:4-560   (  560) [007] d..2 24572.822724: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
34954     logd.writer-563   (  555) [002] dnh1 24572.822726: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
34955     logd.writer-563   (  555) [002] d..2 24572.822741: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
34956  Binder:23896_5-25989 (23896) [004] d..1 24572.822746: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
34957         sugov:0-559   (  559) [002] d..2 24572.822755: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13166 next_prio=110
34958           <...>-13166 (-----) [002] dnh1 24572.822774: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
34959           <...>-13166 (-----) [002] d..2 24572.822782: sched_switch: prev_comm=id.nn.benchmark prev_pid=13166 prev_prio=110 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
34960  Binder:23896_5-25989 (23896) [004] d..2 24572.822788: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
34961   sfEventThread-23906 (23896) [002] d..2 24572.822818: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13166 next_prio=110
34962           <...>-13166 (-----) [002] ...1 24572.822864: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
34963           <...>-13166 (-----) [002] ...1 24572.822871: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
34964<...>-24042 ( 23968) [007] .... 24572.822875: binder_transaction: transaction=1669540 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
34965<...>-24042 ( 23968) [007] ...2 24572.822894: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
34966<...>-24042 ( 23968) [007] d..4 24572.822897: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
34967<...>-24042 ( 23968) [007] d..5 24572.822912: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
34968<...>-24042 ( 23968) [007] d..2 24572.822920: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
34969           <...>-13157 (-----) [004] d..2 24572.822921: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
34970  Binder:23896_5-25989 (23896) [004] .... 24572.822925: binder_transaction_received: transaction=1669540
34971  Binder:23896_5-25989 (23896) [004] d..1 24572.822999: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
34972  Binder:23896_5-25989 (23896) [004] .... 24572.823016: binder_transaction: transaction=1669541 dest_node=0 dest_proc=23968 dest_thread=24042 reply=1 flags=0x0 code=0x0
34973           <...>-13166 (-----) [002] dnh1 24572.823018: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
34974  Binder:23896_5-25989 (23896) [004] d..2 24572.823020: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=007
34975           <...>-13166 (-----) [002] d..2 24572.823033: sched_switch: prev_comm=id.nn.benchmark prev_pid=13166 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
34976  Binder:23896_5-25989 (23896) [004] d..3 24572.823033: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=007
34977  Binder:23896_5-25989 (23896) [004] .... 24572.823036: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
34978 id.nn.benchmark-13158 (13131) [007] d..2 24572.823042: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
34979<...>-24042 ( 23968) [007] .... 24572.823047: binder_transaction_received: transaction=1669541
34980  Binder:23896_5-25989 (23896) [004] d..2 24572.823062: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
34981   sfEventThread-23906 (23896) [002] d..2 24572.823065: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13166 next_prio=110
34982<...>-24042 ( 23968) [007] d..2 24572.823106: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
34983           <...>-13166 (-----) [002] ...1 24572.823120: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
34984           <...>-13166 (-----) [002] ...1 24572.823127: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
34985           <...>-13166 (-----) [002] d.h1 24572.823145: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
34986           <...>-13166 (-----) [002] dnh2 24572.823158: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
34987           <...>-13166 (-----) [002] d..2 24572.823169: sched_switch: prev_comm=id.nn.benchmark prev_pid=13166 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
34988        DispSync-23904 (23896) [002] d..1 24572.823187: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
34989        DispSync-23904 (23896) [002] d..2 24572.823203: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
34990 id.nn.benchmark-13159 (13131) [001] d..2 24572.823215: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
34991        DispSync-23904 (23896) [002] d..2 24572.823220: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13166 next_prio=110
34992  appEventThread-23905 (23896) [001] d..3 24572.823259: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
34993 id.nn.benchmark-13158 (13131) [007] dnh1 24572.823290: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
34994 id.nn.benchmark-13158 (13131) [007] d..2 24572.823324: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
34995  appEventThread-23905 (23896) [001] d.h3 24572.823325: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
34996  appEventThread-23905 (23896) [001] d.h3 24572.823340: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
34997           <...>-13157 (-----) [004] dnh1 24572.823346: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
34998           <...>-13157 (-----) [004] d..2 24572.823351: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34999  appEventThread-23905 (23896) [001] d.h4 24572.823352: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
35000         sugov:4-560   (  560) [004] d..2 24572.823358: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
35001           <...>-13166 (-----) [002] d..2 24572.823364: sched_switch: prev_comm=id.nn.benchmark prev_pid=13166 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
35002  appEventThread-23905 (23896) [001] d..2 24572.823377: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
35003         sugov:0-559   (  559) [002] d..2 24572.823378: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13166 next_prio=110
35004<...>-24151 ( 24151) [007] .... 24572.823524: binder_transaction: transaction=1669542 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
35005<...>-24151 ( 24151) [007] d..4 24572.823530: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
35006<...>-24151 ( 24151) [007] d..5 24572.823548: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
35007           <...>-13157 (-----) [004] d..2 24572.823555: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
35008  Binder:23896_5-25989 (23896) [004] .... 24572.823558: binder_transaction_received: transaction=1669542
35009  Binder:23896_5-25989 (23896) [004] d..1 24572.823567: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
35010<...>-24151 ( 24151) [007] d..3 24572.823575: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=003
35011           <...>-13166 (-----) [002] dnh1 24572.823587: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
35012  Binder:23896_5-25989 (23896) [004] d..2 24572.823588: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
35013<...>-24151 ( 24151) [007] d..4 24572.823595: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
35014           <...>-13166 (-----) [002] d..2 24572.823597: sched_switch: prev_comm=id.nn.benchmark prev_pid=13166 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
35015 id.nn.benchmark-13155 (13131) [006] d..2 24572.823604: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
35016    RenderThread-24437 (24151) [006] d..2 24572.823631: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
35017  appEventThread-23905 (23896) [002] d..2 24572.823642: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13166 next_prio=110
35018<...>-24151 ( 24151) [007] d..3 24572.823728: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
35019<...>-24151 ( 24151) [007] d..4 24572.823742: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
35020 id.nn.benchmark-13155 (13131) [006] d..2 24572.823749: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
35021<...>-24151 ( 24151) [007] d..2 24572.823753: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
35022    RenderThread-24437 (24151) [006] d..1 24572.823813: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
35023    RenderThread-24437 (24151) [006] d..2 24572.823828: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
35024  surfaceflinger-23896 (23896) [000] ...1 24572.823830: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
35025  surfaceflinger-23896 (23896) [000] ...1 24572.823836: tracing_mark_write: E|23896
35026 id.nn.benchmark-13158 (13131) [007] d..2 24572.823836: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
35027    RenderThread-24437 (24151) [006] .... 24572.823871: binder_transaction: transaction=1669543 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
35028<...>-24151 ( 24151) [007] d..2 24572.823871: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
35029    RenderThread-24437 (24151) [006] d..4 24572.823876: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
35030    RenderThread-24437 (24151) [006] d..5 24572.823892: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
35031           <...>-13157 (-----) [004] d..2 24572.823900: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
35032  surfaceflinger-23896 (23896) [000] .... 24572.823901: binder_transaction: transaction=1669544 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
35033    RenderThread-24437 (24151) [006] d..2 24572.823902: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
35034  Binder:23896_5-25989 (23896) [004] .... 24572.823903: binder_transaction_received: transaction=1669543
35035  surfaceflinger-23896 (23896) [000] ...2 24572.823929: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
35036  Binder:23896_5-25989 (23896) [004] .... 24572.823933: binder_transaction: transaction=1669545 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
35037  Binder:23896_5-25989 (23896) [004] d..2 24572.823939: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
35038  surfaceflinger-23896 (23896) [000] d..4 24572.823940: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
35039  Binder:23896_5-25989 (23896) [004] d..3 24572.823959: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
35040 id.nn.benchmark-13158 (13131) [007] d..2 24572.823974: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
35041    RenderThread-24437 (24151) [007] dnh3 24572.823982: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
35042  Binder:23896_5-25989 (23896) [004] d..2 24572.823985: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
35043    RenderThread-24437 (24151) [007] d..2 24572.823987: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
35044  surfaceflinger-23896 (23896) [000] d.h5 24572.824027: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
35045  surfaceflinger-23896 (23896) [000] d.h5 24572.824036: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
35046           <...>-13157 (-----) [004] dnh1 24572.824041: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
35047           <...>-13157 (-----) [004] d..2 24572.824045: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
35048  surfaceflinger-23896 (23896) [000] d.h6 24572.824049: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
35049         sugov:4-560   (  560) [004] d..2 24572.824050: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
35050  HwBinder:598_3-633   (  598) [007] .... 24572.824057: binder_transaction_received: transaction=1669544
35051           <...>-13166 (-----) [002] d..2 24572.824063: sched_switch: prev_comm=id.nn.benchmark prev_pid=13166 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
35052  surfaceflinger-23896 (23896) [000] d..2 24572.824071: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
35053         sugov:0-559   (  559) [002] d..2 24572.824076: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13166 next_prio=110
35054  HwBinder:598_3-633   (  598) [007] ...1 24572.824095: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
35055  HwBinder:598_3-633   (  598) [007] ...1 24572.824189: tracing_mark_write: B|598|HWCSession::PresentDisplay::
35056 id.nn.benchmark-13160 (13131) [003] d.s1 24572.824248: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
35057 id.nn.benchmark-13160 (13131) [003] d.s2 24572.824272: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
35058           <...>-13166 (-----) [002] d..2 24572.824288: sched_switch: prev_comm=id.nn.benchmark prev_pid=13166 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
35059     rcu_preempt-7     (    7) [002] d..2 24572.824307: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13166 next_prio=110
35060  HwBinder:598_3-633   (  598) [007] ...1 24572.824633: tracing_mark_write: B|598|HWDeviceDRM::Validate::
35061           <...>-13154 (-----) [005] d..2 24572.824888: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
35062  HwBinder:598_3-633   (  598) [007] ...1 24572.824908: tracing_mark_write: E|598
35063  HwBinder:598_3-633   (  598) [007] ...1 24572.824985: tracing_mark_write: B|598|HWDeviceDRM::Commit::
35064  HwBinder:598_3-633   (  598) [007] ...1 24572.824989: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
35065 id.nn.benchmark-13155 (13131) [006] d..3 24572.825107: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
35066 id.nn.benchmark-13155 (13131) [006] d..2 24572.825119: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
35067 id.nn.benchmark-13156 (13131) [000] dnh1 24572.825124: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
35068 id.nn.benchmark-13156 (13131) [000] d..2 24572.825132: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
35069          <idle>-0     (-----) [006] d..1 24572.825136: cpu_idle: state=0 cpu_id=6
35070           <...>-13166 (-----) [002] d..1 24572.825142: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
35071          <idle>-0     (-----) [006] .n.1 24572.825169: cpu_idle: state=4294967295 cpu_id=6
35072  HwBinder:598_3-633   (  598) [007] d..2 24572.825171: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
35073          <idle>-0     (-----) [006] dn.2 24572.825203: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=006
35074     migration/0-13    (   13) [000] d.h3 24572.825205: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
35075           <...>-13166 (-----) [002] d..1 24572.825209: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
35076          <idle>-0     (-----) [006] d..2 24572.825211: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
35077     migration/0-13    (   13) [000] d.h3 24572.825223: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
35078 id.nn.benchmark-13158 (13131) [005] dnh1 24572.825228: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
35079 id.nn.benchmark-13158 (13131) [005] d..2 24572.825232: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
35080     migration/0-13    (   13) [000] d.h4 24572.825266: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
35081         sugov:4-560   (  560) [005] d..2 24572.825268: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
35082     migration/0-13    (   13) [000] d.h2 24572.825276: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
35083  HwBinder:598_3-633   (  598) [007] d.h2 24572.825278: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=007
35084     migration/0-13    (   13) [000] d..2 24572.825307: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
35085           <...>-13166 (-----) [002] d..2 24572.825323: sched_switch: prev_comm=id.nn.benchmark prev_pid=13166 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
35086         sugov:0-559   (  559) [002] d..2 24572.825349: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13166 next_prio=110
35087  HwBinder:598_3-633   (  598) [007] ...1 24572.825368: tracing_mark_write: E|598
35088  HwBinder:598_3-633   (  598) [007] ...1 24572.825371: tracing_mark_write: E|598
35089  HwBinder:598_3-633   (  598) [007] ...1 24572.825408: tracing_mark_write: E|598
35090  HwBinder:598_3-633   (  598) [007] ...1 24572.825442: tracing_mark_write: E|598
35091  HwBinder:598_3-633   (  598) [007] .... 24572.825454: binder_transaction: transaction=1669546 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
35092  HwBinder:598_3-633   (  598) [007] d..2 24572.825466: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
35093  HwBinder:598_3-633   (  598) [007] .... 24572.825481: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
35094 id.nn.benchmark-13159 (13131) [001] dnh1 24572.825490: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
35095 id.nn.benchmark-13159 (13131) [001] d..2 24572.825502: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
35096  surfaceflinger-23896 (23896) [001] .... 24572.825514: binder_transaction_received: transaction=1669546
35097  HwBinder:598_3-633   (  598) [007] d..2 24572.825527: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
35098    RenderThread-24437 (24151) [007] .... 24572.825532: binder_transaction_received: transaction=1669545
35099  surfaceflinger-23896 (23896) [001] d..2 24572.825980: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
35100    RenderThread-24437 (24151) [007] d..2 24572.826542: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
35101 id.nn.benchmark-13155 (13131) [007] d.h1 24572.826635: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
35102 id.nn.benchmark-13155 (13131) [007] d.h2 24572.826693: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
35103 id.nn.benchmark-13155 (13131) [007] d.h3 24572.826703: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
35104 id.nn.benchmark-13155 (13131) [007] d.h2 24572.826704: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
35105 id.nn.benchmark-13158 (13131) [005] d..2 24572.826711: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
35106         sugov:4-560   (  560) [005] d..2 24572.826717: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
35107           <...>-13166 (-----) [002] dnh1 24572.826722: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
35108           <...>-13166 (-----) [002] d..2 24572.826732: sched_switch: prev_comm=id.nn.benchmark prev_pid=13166 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
35109 crtc_commit:111-253   (  253) [000] d.h2 24572.826734: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
35110 crtc_commit:111-253   (  253) [000] d.h2 24572.826741: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
35111         sugov:0-559   (  559) [002] d..2 24572.826745: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
35112 crtc_commit:111-253   (  253) [000] d.h3 24572.826767: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
35113     logd.writer-563   (  555) [002] d..2 24572.826769: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
35114 crtc_commit:111-253   (  253) [000] d.h4 24572.826795: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
35115     logd.writer-563   (  555) [002] dn.3 24572.826803: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
35116     logd.writer-563   (  555) [002] d..2 24572.826815: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
35117 kgsl_worker_thr-246   (  246) [002] d..2 24572.826830: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
35118     rcu_preempt-7     (    7) [002] d..2 24572.826838: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
35119     rcu_preempt-7     (    7) [002] d..3 24572.826860: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
35120     rcu_preempt-7     (    7) [002] d..2 24572.826862: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
35121     rcu_preempt-7     (    7) [002] d..3 24572.826880: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
35122     rcu_preempt-7     (    7) [002] d..2 24572.826895: 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
35123         rcuop/0-10    (   10) [002] d..2 24572.826901: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
35124         rcuop/0-10    (   10) [002] d..3 24572.826919: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
35125         rcuop/0-10    (   10) [002] d..2 24572.826927: 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
35126         rcuop/1-21    (   21) [002] d..2 24572.826963: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13166 next_prio=110
35127 crtc_commit:111-253   (  253) [000] d..2 24572.827185: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcuop/2 next_pid=29 next_prio=120
35128         rcuop/2-29    (   29) [000] d..2 24572.827193: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=006
35129         rcuop/2-29    (   29) [000] d..3 24572.827225: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
35130         rcuop/2-29    (   29) [000] d.h3 24572.827268: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
35131         rcuop/2-29    (   29) [000] d.h3 24572.827279: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
35132 id.nn.benchmark-13158 (13131) [005] dnh1 24572.827282: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
35133 id.nn.benchmark-13158 (13131) [005] d..2 24572.827286: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
35134         sugov:4-560   (  560) [005] d..2 24572.827289: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
35135         rcuop/2-29    (   29) [000] dnh4 24572.827291: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
35136         rcuop/2-29    (   29) [000] d..2 24572.827299: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
35137         sugov:0-559   (  559) [000] d..2 24572.827309: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
35138         rcuop/3-37    (   37) [000] d..2 24572.827322: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
35139         rcuop/2-29    (   29) [000] d..2 24572.827332: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
35140    RenderThread-24437 (24151) [000] d..1 24572.827356: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
35141    RenderThread-24437 (24151) [000] dn.2 24572.827371: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
35142    RenderThread-24437 (24151) [000] d..2 24572.827378: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
35143 kgsl_worker_thr-246   (  246) [000] d..2 24572.827428: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
35144 kgsl_worker_thr-246   (  246) [000] d..3 24572.827448: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
35145 kgsl_worker_thr-246   (  246) [000] d..2 24572.827461: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
35146           <...>-13157 (-----) [004] d.s2 24572.827572: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
35147  kworker/u16:15-18488 (18488) [000] d.H1 24572.827685: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
35148  kworker/u16:15-18488 (18488) [000] d..2 24572.827879: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
35149  kworker/u16:10-23868 (23868) [000] d..2 24572.827891: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
35150 id.nn.benchmark-13160 (13131) [003] d.s2 24572.827903: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
35151 id.nn.benchmark-13160 (13131) [003] d.s3 24572.827921: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
35152 id.nn.benchmark-13160 (13131) [003] d.s3 24572.827930: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
35153    RenderThread-24437 (24151) [000] d..2 24572.827942: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
35154  kworker/u16:15-18488 (18488) [000] d..2 24572.828092: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=RenderThread next_pid=24437 next_prio=120
35155 id.nn.benchmark-13160 (13131) [003] d.s2 24572.828114: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
35156 id.nn.benchmark-13160 (13131) [003] d.s3 24572.828124: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
35157 id.nn.benchmark-13160 (13131) [003] d.s3 24572.828130: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
35158    RenderThread-24437 (24151) [000] d..2 24572.828142: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
35159  kworker/u16:15-18488 (18488) [000] d..2 24572.828156: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
35160    RenderThread-24437 (24151) [000] .... 24572.828312: binder_transaction: transaction=1669547 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
35161    RenderThread-24437 (24151) [000] d..4 24572.828327: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
35162    RenderThread-24437 (24151) [000] dn.5 24572.828353: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
35163    RenderThread-24437 (24151) [000] dnh5 24572.828399: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
35164    RenderThread-24437 (24151) [000] dnh5 24572.828410: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
35165 id.nn.benchmark-13158 (13131) [005] dnh1 24572.828413: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
35166 id.nn.benchmark-13158 (13131) [005] d..2 24572.828416: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
35167    RenderThread-24437 (24151) [000] dnh6 24572.828419: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
35168         sugov:4-560   (  560) [005] d..2 24572.828421: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
35169    RenderThread-24437 (24151) [000] d..2 24572.828428: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
35170         sugov:0-559   (  559) [000] d..2 24572.828439: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
35171  Binder:23896_5-25989 (23896) [000] .... 24572.828448: binder_transaction_received: transaction=1669547
35172  Binder:23896_5-25989 (23896) [000] .... 24572.828587: binder_transaction: transaction=1669548 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
35173  Binder:23896_5-25989 (23896) [000] d..2 24572.828630: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
35174    RenderThread-24437 (24151) [000] .... 24572.828638: binder_transaction_received: transaction=1669548
35175    RenderThread-24437 (24151) [000] d..2 24572.828763: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
35176     logd.writer-563   (  555) [000] d..2 24572.829264: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
35177           <...>-13154 (-----) [000] d.h4 24572.829311: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
35178           <...>-13154 (-----) [000] d.h4 24572.829327: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
35179 id.nn.benchmark-13156 (13131) [006] dnh1 24572.829333: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
35180 id.nn.benchmark-13156 (13131) [006] d..2 24572.829338: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
35181           <...>-13154 (-----) [000] d.h5 24572.829344: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
35182         sugov:4-560   (  560) [006] d..2 24572.829346: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
35183           <...>-13166 (-----) [002] d..2 24572.829355: sched_switch: prev_comm=id.nn.benchmark prev_pid=13166 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
35184         sugov:0-559   (  559) [002] d..2 24572.829368: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13166 next_prio=110
35185           <...>-13166 (-----) [002] ...1 24572.829710: tracing_mark_write: E|13131
35186           <...>-13166 (-----) [002] ...1 24572.829717: tracing_mark_write: E|13131
35187           <...>-13166 (-----) [002] ...1 24572.829749: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
35188           <...>-13166 (-----) [002] ...1 24572.829756: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
35189 id.nn.benchmark-13156 (13131) [006] d..3 24572.829885: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
35190 id.nn.benchmark-13156 (13131) [006] d..2 24572.829893: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
35191           <...>-13157 (-----) [004] d..2 24572.829897: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
35192           <...>-13154 (-----) [000] dnh1 24572.829901: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
35193          <idle>-0     (-----) [006] d..1 24572.829902: cpu_idle: state=0 cpu_id=6
35194           <...>-13154 (-----) [000] d..2 24572.829914: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
35195          <idle>-0     (-----) [004] d..1 24572.829918: cpu_idle: state=0 cpu_id=4
35196 id.nn.benchmark-13158 (13131) [005] d..2 24572.829933: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
35197           <...>-13154 (-----) [005] d.h4 24572.829960: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
35198     migration/0-13    (   13) [000] d..2 24572.829963: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
35199           <...>-13154 (-----) [005] d.h5 24572.829968: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
35200           <...>-13154 (-----) [005] d.h4 24572.829969: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
35201          <idle>-0     (-----) [006] .n.1 24572.829974: cpu_idle: state=4294967295 cpu_id=6
35202          <idle>-0     (-----) [006] d..2 24572.829979: 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
35203         sugov:4-560   (  560) [006] d..3 24572.829987: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
35204          <idle>-0     (-----) [000] d..1 24572.829989: cpu_idle: state=0 cpu_id=0
35205         sugov:4-560   (  560) [006] d..2 24572.829995: 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
35206          <idle>-0     (-----) [006] d..1 24572.829998: cpu_idle: state=0 cpu_id=6
35207 id.nn.benchmark-13159 (13131) [001] dnh1 24572.830003: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
35208          <idle>-0     (-----) [000] dnh2 24572.830004: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
35209          <idle>-0     (-----) [000] .n.1 24572.830009: cpu_idle: state=4294967295 cpu_id=0
35210 id.nn.benchmark-13159 (13131) [001] d..2 24572.830012: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
35211          <idle>-0     (-----) [000] d..2 24572.830018: 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
35212         sugov:0-559   (  559) [000] d..2 24572.830038: 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
35213          <idle>-0     (-----) [000] d..1 24572.830046: cpu_idle: state=0 cpu_id=0
35214          <idle>-0     (-----) [006] .n.1 24572.830047: cpu_idle: state=4294967295 cpu_id=6
35215          <idle>-0     (-----) [006] d..2 24572.830080: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
35216     migration/1-17    (   17) [001] d..2 24572.830100: 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
35217          <idle>-0     (-----) [004] ...1 24572.830110: cpu_idle: state=4294967295 cpu_id=4
35218          <idle>-0     (-----) [004] d..1 24572.830112: cpu_idle: state=0 cpu_id=4
35219          <idle>-0     (-----) [001] d..1 24572.830123: cpu_idle: state=0 cpu_id=1
35220           <...>-13166 (-----) [002] d..1 24572.830302: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
35221           <...>-13166 (-----) [002] d..1 24572.830333: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=004
35222          <idle>-0     (-----) [004] dnh2 24572.830334: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=004
35223          <idle>-0     (-----) [004] .n.1 24572.830340: cpu_idle: state=4294967295 cpu_id=4
35224          <idle>-0     (-----) [004] dn.2 24572.830343: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=004
35225          <idle>-0     (-----) [004] d..2 24572.830347: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
35226           <...>-13166 (-----) [002] d..1 24572.830351: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
35227           <...>-13154 (-----) [005] d.h1 24572.830369: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
35228 id.nn.benchmark-13155 (13131) [007] d.s2 24572.830897: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
35229 id.nn.benchmark-13155 (13131) [007] d.s2 24572.830911: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
35230           <...>-13166 (-----) [002] d.s1 24572.830912: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
35231          <idle>-0     (-----) [000] dnH2 24572.830918: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
35232 id.nn.benchmark-13155 (13131) [007] dns3 24572.830919: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
35233 id.nn.benchmark-13155 (13131) [007] d..2 24572.830925: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/7:0 next_pid=12892 next_prio=120
35234           <...>-13166 (-----) [002] d.s2 24572.830947: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
35235     kworker/7:0-12892 (12892) [007] d..2 24572.830961: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
35236          <idle>-0     (-----) [001] .n.1 24572.830963: cpu_idle: state=4294967295 cpu_id=1
35237          <idle>-0     (-----) [000] dnH3 24572.831001: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
35238          <idle>-0     (-----) [001] d..2 24572.831003: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
35239          <idle>-0     (-----) [000] dnH3 24572.831017: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
35240 id.nn.benchmark-13156 (13131) [004] dnh1 24572.831022: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
35241          <idle>-0     (-----) [000] dnH4 24572.831025: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
35242 id.nn.benchmark-13156 (13131) [004] d..2 24572.831026: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
35243         sugov:4-560   (  560) [004] d..2 24572.831033: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
35244          <idle>-0     (-----) [000] .n.1 24572.831039: cpu_idle: state=4294967295 cpu_id=0
35245          <idle>-0     (-----) [000] d..2 24572.831048: 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
35246         sugov:0-559   (  559) [000] d..2 24572.831058: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
35247  kworker/u16:15-18488 (18488) [000] .... 24572.831293: clk_set_rate: l3_cluster1_vote_clk 1478400000
35248  kworker/u16:15-18488 (18488) [000] .... 24572.831301: clk_set_rate: l3_clk 1478400000
35249  kworker/u16:15-18488 (18488) [000] .... 24572.831497: clk_set_rate: l3_cluster0_vote_clk 1401600000
35250  kworker/u16:15-18488 (18488) [000] d..2 24572.831507: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
35251     rcu_preempt-7     (    7) [000] d..2 24572.831523: 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
35252          <idle>-0     (-----) [000] d..1 24572.831530: cpu_idle: state=0 cpu_id=0
35253          <idle>-0     (-----) [000] ...1 24572.834240: cpu_idle: state=4294967295 cpu_id=0
35254          <idle>-0     (-----) [000] d..1 24572.834242: cpu_idle: state=0 cpu_id=0
35255           <...>-13154 (-----) [005] d..2 24572.834846: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
35256 id.nn.benchmark-13155 (13131) [007] d..3 24572.834902: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
35257 id.nn.benchmark-13155 (13131) [007] d..2 24572.834909: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
35258 id.nn.benchmark-13159 (13131) [006] d..2 24572.834912: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
35259           <...>-13157 (-----) [001] dnh1 24572.834912: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
35260          <idle>-0     (-----) [006] d..1 24572.834915: cpu_idle: state=0 cpu_id=6
35261          <idle>-0     (-----) [007] d..1 24572.834916: cpu_idle: state=0 cpu_id=7
35262           <...>-13157 (-----) [001] d..2 24572.834918: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
35263           <...>-13166 (-----) [002] ...1 24572.834930: tracing_mark_write: E|13131
35264 id.nn.benchmark-13156 (13131) [004] d..2 24572.834931: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
35265          <idle>-0     (-----) [004] d..1 24572.834934: cpu_idle: state=0 cpu_id=4
35266           <...>-13166 (-----) [002] ...1 24572.834935: tracing_mark_write: E|13131
35267          <idle>-0     (-----) [007] .n.1 24572.834939: cpu_idle: state=4294967295 cpu_id=7
35268           <...>-13166 (-----) [002] ...1 24572.834958: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
35269          <idle>-0     (-----) [007] d..2 24572.834960: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
35270     migration/1-17    (   17) [001] d.h3 24572.834961: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
35271           <...>-13166 (-----) [002] ...1 24572.834962: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
35272          <idle>-0     (-----) [000] d.h5 24572.834968: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
35273     migration/1-17    (   17) [001] d.h3 24572.834969: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
35274          <idle>-0     (-----) [004] dnh2 24572.834973: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
35275          <idle>-0     (-----) [004] .n.1 24572.834975: cpu_idle: state=4294967295 cpu_id=4
35276     migration/1-17    (   17) [001] d.h4 24572.834977: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
35277          <idle>-0     (-----) [004] d..2 24572.834978: 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
35278          <idle>-0     (-----) [000] dnh6 24572.834984: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
35279     migration/1-17    (   17) [001] d..2 24572.834989: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
35280         sugov:4-560   (  560) [004] d..3 24572.834992: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
35281          <idle>-0     (-----) [000] dnh5 24572.834994: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
35282         sugov:4-560   (  560) [004] d..2 24572.834998: 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
35283          <idle>-0     (-----) [004] d..1 24572.835000: cpu_idle: state=0 cpu_id=4
35284  crtc_event:111-254   (  254) [001] dnh2 24572.835002: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
35285          <idle>-0     (-----) [000] dnh6 24572.835005: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
35286  crtc_event:111-254   (  254) [001] d..2 24572.835007: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=R+ ==> next_comm=migration/1 next_pid=17 next_prio=0
35287     migration/1-17    (   17) [001] d..2 24572.835013: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
35288           <...>-13166 (-----) [002] d..2 24572.835016: sched_switch: prev_comm=id.nn.benchmark prev_pid=13166 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
35289          <idle>-0     (-----) [000] .n.1 24572.835017: cpu_idle: state=4294967295 cpu_id=0
35290          <idle>-0     (-----) [000] d..2 24572.835024: 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
35291  crtc_event:111-254   (  254) [001] d..2 24572.835027: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
35292          <idle>-0     (-----) [001] d..1 24572.835035: cpu_idle: state=0 cpu_id=1
35293         sugov:0-559   (  559) [000] d..2 24572.835035: 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
35294          <idle>-0     (-----) [000] d..1 24572.835040: cpu_idle: state=0 cpu_id=0
35295          <idle>-0     (-----) [006] ...1 24572.835105: cpu_idle: state=4294967295 cpu_id=6
35296          <idle>-0     (-----) [006] d..1 24572.835106: cpu_idle: state=0 cpu_id=6
35297 crtc_commit:111-253   (  253) [002] d..2 24572.835139: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13166 next_prio=110
35298          <idle>-0     (-----) [004] ...1 24572.835190: cpu_idle: state=4294967295 cpu_id=4
35299          <idle>-0     (-----) [004] d..1 24572.835191: cpu_idle: state=0 cpu_id=4
35300           <...>-13166 (-----) [002] d..1 24572.835271: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
35301           <...>-13166 (-----) [002] d..1 24572.835288: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=007
35302          <idle>-0     (-----) [004] dnh2 24572.835290: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
35303          <idle>-0     (-----) [004] .n.1 24572.835292: cpu_idle: state=4294967295 cpu_id=4
35304          <idle>-0     (-----) [004] d..2 24572.835296: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
35305           <...>-13166 (-----) [002] d..1 24572.835303: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=004
35306          <idle>-0     (-----) [006] dnh2 24572.835306: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
35307          <idle>-0     (-----) [006] .n.1 24572.835307: cpu_idle: state=4294967295 cpu_id=6
35308          <idle>-0     (-----) [006] d..2 24572.835310: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
35309           <...>-13166 (-----) [002] d..1 24572.835314: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=006
35310           <...>-13154 (-----) [004] dnh1 24572.835314: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=004
35311           <...>-13154 (-----) [004] d..2 24572.835318: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
35312 id.nn.benchmark-13155 (13131) [006] d.h1 24572.835324: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=006
35313          <idle>-0     (-----) [001] d.h2 24572.836484: sched_waking: comm=queued-work-loo pid=24217 prio=118 target_cpu=001
35314          <idle>-0     (-----) [001] dnh3 24572.836496: sched_wakeup: comm=queued-work-loo pid=24217 prio=118 target_cpu=001
35315          <idle>-0     (-----) [001] .n.1 24572.836501: cpu_idle: state=4294967295 cpu_id=1
35316          <idle>-0     (-----) [001] d..2 24572.836508: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=queued-work-loo next_pid=24217 next_prio=118
35317<...>-24217 ( 24133) [001] d..2 24572.836784: sched_switch: prev_comm=queued-work-loo prev_pid=24217 prev_prio=118 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
35318           <...>-13154 (-----) [001] d.h4 24572.836815: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
35319           <...>-13154 (-----) [001] d.h4 24572.836823: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
35320 id.nn.benchmark-13156 (13131) [004] dnh1 24572.836826: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
35321 id.nn.benchmark-13156 (13131) [004] d..2 24572.836829: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
35322           <...>-13154 (-----) [001] d.h5 24572.836832: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
35323         sugov:4-560   (  560) [004] d..2 24572.836832: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
35324          <idle>-0     (-----) [000] .n.1 24572.836836: cpu_idle: state=4294967295 cpu_id=0
35325          <idle>-0     (-----) [000] d..2 24572.836840: 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
35326         sugov:0-559   (  559) [000] d..2 24572.836865: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
35327           <...>-13166 (-----) [002] ...1 24572.837052: tracing_mark_write: E|13131
35328           <...>-13166 (-----) [002] ...1 24572.837056: tracing_mark_write: E|13131
35329           <...>-13166 (-----) [002] ...1 24572.837070: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
35330           <...>-13166 (-----) [002] ...1 24572.837074: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
35331 id.nn.benchmark-13159 (13131) [000] d.h4 24572.837310: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
35332 id.nn.benchmark-13159 (13131) [000] d.h5 24572.837320: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
35333           <...>-13166 (-----) [002] d..2 24572.837330: sched_switch: prev_comm=id.nn.benchmark prev_pid=13166 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
35334 crtc_commit:111-253   (  253) [002] d..2 24572.837379: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13166 next_prio=110
35335           <...>-13166 (-----) [002] ...1 24572.837406: tracing_mark_write: E|13131
35336           <...>-13166 (-----) [002] ...1 24572.837410: tracing_mark_write: E|13131
35337           <...>-13166 (-----) [002] ...1 24572.837422: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
35338           <...>-13166 (-----) [002] ...1 24572.837426: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
35339           <...>-13166 (-----) [002] d.s2 24572.837578: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
35340           <...>-13157 (-----) [007] d.H2 24572.837584: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
35341           <...>-13157 (-----) [007] d.H3 24572.837590: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
35342           <...>-13157 (-----) [007] d.H2 24572.837591: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
35343           <...>-13166 (-----) [002] dns3 24572.837591: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
35344 id.nn.benchmark-13156 (13131) [004] d..2 24572.837596: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
35345           <...>-13166 (-----) [002] d..2 24572.837598: sched_switch: prev_comm=id.nn.benchmark prev_pid=13166 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
35346         sugov:4-560   (  560) [004] d..2 24572.837599: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
35347  crtc_event:111-254   (  254) [002] d..2 24572.837609: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13166 next_prio=110
35348 id.nn.benchmark-13159 (13131) [000] d.H4 24572.837632: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
35349 id.nn.benchmark-13159 (13131) [000] d.H5 24572.837642: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
35350           <...>-13166 (-----) [002] d..2 24572.837647: sched_switch: prev_comm=id.nn.benchmark prev_pid=13166 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
35351  crtc_event:111-254   (  254) [002] d..2 24572.837660: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13166 next_prio=110
35352 id.nn.benchmark-13159 (13131) [000] dnH1 24572.837664: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
35353 id.nn.benchmark-13159 (13131) [000] dns1 24572.837666: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
35354 id.nn.benchmark-13159 (13131) [000] dns2 24572.837682: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
35355           <...>-13166 (-----) [002] d..2 24572.837690: sched_switch: prev_comm=id.nn.benchmark prev_pid=13166 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
35356 id.nn.benchmark-13159 (13131) [000] d..2 24572.837691: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
35357     rcu_preempt-7     (    7) [002] d..2 24572.837694: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=003
35358         sugov:0-559   (  559) [000] d..2 24572.837698: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
35359     rcu_preempt-7     (    7) [002] d..3 24572.837710: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
35360     rcu_preempt-7     (    7) [002] d..2 24572.837719: 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
35361         rcuop/6-61    (   61) [002] d..2 24572.837723: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=003
35362         rcuop/6-61    (   61) [002] d..3 24572.837738: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=002
35363         rcuop/6-61    (   61) [002] d..2 24572.837744: 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
35364         rcuop/7-69    (   69) [002] d..2 24572.837753: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13166 next_prio=110
35365           <...>-13166 (-----) [002] ...1 24572.837988: tracing_mark_write: E|13131
35366           <...>-13166 (-----) [002] ...1 24572.837992: tracing_mark_write: E|13131
35367           <...>-13166 (-----) [002] ...1 24572.838003: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
35368           <...>-13166 (-----) [002] ...1 24572.838007: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
35369           <...>-13166 (-----) [002] ...1 24572.838403: tracing_mark_write: E|13131
35370           <...>-13166 (-----) [002] ...1 24572.838407: tracing_mark_write: E|13131
35371           <...>-13166 (-----) [002] ...1 24572.838427: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
35372           <...>-13166 (-----) [002] ...1 24572.838431: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
35373           <...>-13166 (-----) [002] d.h1 24572.838604: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
35374           <...>-13166 (-----) [002] dnh2 24572.838613: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
35375           <...>-13166 (-----) [002] d..2 24572.838621: sched_switch: prev_comm=id.nn.benchmark prev_pid=13166 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
35376        DispSync-23904 (23896) [002] d..1 24572.838638: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
35377        DispSync-23904 (23896) [002] d..2 24572.838652: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
35378 id.nn.benchmark-13159 (13131) [000] d..2 24572.838661: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
35379        DispSync-23904 (23896) [002] d..2 24572.838666: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13166 next_prio=110
35380           <...>-13166 (-----) [002] ...1 24572.838689: tracing_mark_write: E|13131
35381           <...>-13166 (-----) [002] ...1 24572.838693: tracing_mark_write: E|13131
35382   sfEventThread-23906 (23896) [000] d..3 24572.838703: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=007
35383           <...>-13166 (-----) [002] ...1 24572.838708: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
35384           <...>-13166 (-----) [002] ...1 24572.838712: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
35385           <...>-13157 (-----) [007] dnh1 24572.838729: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=007
35386           <...>-13157 (-----) [007] d..2 24572.838732: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
35387   sfEventThread-23906 (23896) [000] d..3 24572.838734: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
35388   sfEventThread-23906 (23896) [000] d..4 24572.838749: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
35389           <...>-13166 (-----) [002] d..2 24572.838759: sched_switch: prev_comm=id.nn.benchmark prev_pid=13166 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
35390   sfEventThread-23906 (23896) [000] d..2 24572.838762: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
35391<...>-24042 ( 23968) [007] .... 24572.838920: binder_transaction: transaction=1669549 dest_node=1271163 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
35392<...>-24042 ( 23968) [007] d..4 24572.838924: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
35393<...>-24042 ( 23968) [007] d..5 24572.838939: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
35394<...>-24042 ( 23968) [007] d.h5 24572.838959: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
35395 id.nn.benchmark-13156 (13131) [004] d..2 24572.838959: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
35396<...>-24042 ( 23968) [007] d.h6 24572.838965: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
35397<...>-24042 ( 23968) [007] d.h5 24572.838966: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
35398  Binder:23896_5-25989 (23896) [004] d..2 24572.838974: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
35399 id.nn.benchmark-13159 (13131) [000] dnh1 24572.838976: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
35400         sugov:4-560   (  560) [004] d..2 24572.838977: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
35401  Binder:23896_5-25989 (23896) [004] .... 24572.838978: binder_transaction_received: transaction=1669549
35402 id.nn.benchmark-13159 (13131) [000] d..2 24572.838981: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
35403  Binder:23896_5-25989 (23896) [004] d..1 24572.838987: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
35404         sugov:0-559   (  559) [000] d..2 24572.838988: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
35405 id.nn.benchmark-13159 (13131) [000] dnh1 24572.838999: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
35406  Binder:23896_5-25989 (23896) [004] d..2 24572.839002: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
35407 id.nn.benchmark-13159 (13131) [000] d..2 24572.839003: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
35408   sfEventThread-23906 (23896) [000] d..2 24572.839021: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
35409<...>-24042 ( 23968) [007] .... 24572.839047: binder_transaction: transaction=1669550 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
35410<...>-24042 ( 23968) [007] ...2 24572.839060: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
35411<...>-24042 ( 23968) [007] d..4 24572.839062: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
35412<...>-24042 ( 23968) [007] d..5 24572.839070: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=004
35413<...>-24042 ( 23968) [007] d..2 24572.839075: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
35414 id.nn.benchmark-13156 (13131) [004] d..2 24572.839076: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
35415  Binder:23896_5-25989 (23896) [004] .... 24572.839078: binder_transaction_received: transaction=1669550
35416  Binder:23896_5-25989 (23896) [004] d..1 24572.839107: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
35417  Binder:23896_5-25989 (23896) [004] .... 24572.839117: binder_transaction: transaction=1669551 dest_node=0 dest_proc=23968 dest_thread=24042 reply=1 flags=0x0 code=0x0
35418 id.nn.benchmark-13159 (13131) [000] dnh1 24572.839118: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
35419  Binder:23896_5-25989 (23896) [004] d..2 24572.839119: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=007
35420 id.nn.benchmark-13159 (13131) [000] d..2 24572.839122: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
35421  Binder:23896_5-25989 (23896) [004] d..3 24572.839129: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=007
35422  Binder:23896_5-25989 (23896) [004] .... 24572.839130: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
35423   sfEventThread-23906 (23896) [000] d..2 24572.839133: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
35424           <...>-13157 (-----) [007] d..2 24572.839135: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
35425<...>-24042 ( 23968) [007] .... 24572.839137: binder_transaction_received: transaction=1669551
35426  Binder:23896_5-25989 (23896) [004] d..2 24572.839145: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
35427<...>-24042 ( 23968) [007] d..2 24572.839162: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
35428  surfaceflinger-23896 (23896) [002] d.h1 24572.839601: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
35429 id.nn.benchmark-13156 (13131) [004] dnh1 24572.839623: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=004
35430 id.nn.benchmark-13156 (13131) [004] d..2 24572.839647: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
35431  surfaceflinger-23896 (23896) [002] d.h2 24572.839648: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
35432        DispSync-23904 (23896) [004] d..1 24572.839652: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
35433  surfaceflinger-23896 (23896) [002] d.h2 24572.839659: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
35434           <...>-13157 (-----) [007] dnh1 24572.839663: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
35435           <...>-13157 (-----) [007] d..2 24572.839666: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
35436        DispSync-23904 (23896) [004] d..2 24572.839667: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
35437  surfaceflinger-23896 (23896) [002] d.h3 24572.839668: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
35438         sugov:4-560   (  560) [007] d..2 24572.839670: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
35439 id.nn.benchmark-13159 (13131) [000] dnh1 24572.839671: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
35440 id.nn.benchmark-13159 (13131) [000] d..2 24572.839678: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
35441         sugov:0-559   (  559) [000] d..2 24572.839696: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
35442           <...>-13154 (-----) [001] d..2 24572.839701: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
35443  appEventThread-23905 (23896) [001] d..3 24572.839738: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
35444           <...>-13157 (-----) [007] dnh1 24572.839754: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
35445           <...>-13157 (-----) [007] d..2 24572.839757: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
35446  appEventThread-23905 (23896) [001] d..2 24572.839764: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
35447<...>-24151 ( 24151) [007] .... 24572.839894: binder_transaction: transaction=1669552 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
35448<...>-24151 ( 24151) [007] d..4 24572.839897: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
35449<...>-24151 ( 24151) [007] d..5 24572.839906: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
35450 id.nn.benchmark-13156 (13131) [004] d..2 24572.839912: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
35451  Binder:23896_5-25989 (23896) [004] .... 24572.839913: binder_transaction_received: transaction=1669552
35452  Binder:23896_5-25989 (23896) [004] d..1 24572.839917: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
35453<...>-24151 ( 24151) [007] d..3 24572.839919: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
35454  Binder:23896_5-25989 (23896) [004] d..2 24572.839927: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
35455           <...>-13154 (-----) [001] dnh1 24572.839928: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
35456 id.nn.benchmark-13159 (13131) [000] dnh1 24572.839932: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
35457           <...>-13154 (-----) [001] d..2 24572.839933: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
35458 id.nn.benchmark-13159 (13131) [000] d..2 24572.839937: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
35459  appEventThread-23905 (23896) [001] d..2 24572.839947: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
35460  surfaceflinger-23896 (23896) [002] ...1 24572.839949: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
35461  surfaceflinger-23896 (23896) [002] ...1 24572.839953: tracing_mark_write: E|23896
35462    RenderThread-24437 (24151) [000] d..2 24572.839966: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
35463  surfaceflinger-23896 (23896) [002] .... 24572.839991: binder_transaction: transaction=1669553 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
35464<...>-24151 ( 24151) [007] d..3 24572.839993: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
35465<...>-24151 ( 24151) [007] d..2 24572.840006: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
35466 id.nn.benchmark-13159 (13131) [000] dnh1 24572.840006: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
35467  surfaceflinger-23896 (23896) [002] ...2 24572.840010: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
35468 id.nn.benchmark-13159 (13131) [000] d..2 24572.840011: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
35469  surfaceflinger-23896 (23896) [002] d..4 24572.840017: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
35470 id.nn.benchmark-13156 (13131) [004] dnh1 24572.840036: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
35471 id.nn.benchmark-13156 (13131) [004] d..2 24572.840039: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
35472  surfaceflinger-23896 (23896) [002] d..2 24572.840042: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13166 next_prio=110
35473  HwBinder:598_3-633   (  598) [004] .... 24572.840042: binder_transaction_received: transaction=1669553
35474  HwBinder:598_3-633   (  598) [004] ...1 24572.840065: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
35475           <...>-13166 (-----) [002] ...1 24572.840088: tracing_mark_write: E|13131
35476    RenderThread-24437 (24151) [000] d..1 24572.840092: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
35477           <...>-13166 (-----) [002] ...1 24572.840092: tracing_mark_write: E|13131
35478           <...>-13166 (-----) [002] ...1 24572.840107: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
35479           <...>-13157 (-----) [007] dnh1 24572.840107: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
35480           <...>-13157 (-----) [007] d..2 24572.840110: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
35481           <...>-13166 (-----) [002] ...1 24572.840111: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
35482  HwBinder:598_3-633   (  598) [004] ...1 24572.840125: tracing_mark_write: B|598|HWCSession::PresentDisplay::
35483<...>-24151 ( 24151) [007] d..2 24572.840129: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
35484    RenderThread-24437 (24151) [000] .... 24572.840137: binder_transaction: transaction=1669554 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
35485    RenderThread-24437 (24151) [000] d..4 24572.840141: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
35486  HwBinder:598_3-633   (  598) [004] d.h1 24572.840156: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
35487    RenderThread-24437 (24151) [000] d..2 24572.840159: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
35488  HwBinder:598_3-633   (  598) [004] ...1 24572.840376: tracing_mark_write: B|598|HWDeviceDRM::Validate::
35489           <...>-13166 (-----) [002] ...1 24572.840420: tracing_mark_write: E|13131
35490           <...>-13166 (-----) [002] ...1 24572.840424: tracing_mark_write: E|13131
35491           <...>-13166 (-----) [002] ...1 24572.840435: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
35492           <...>-13166 (-----) [002] ...1 24572.840439: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
35493           <...>-13166 (-----) [002] ...1 24572.840489: tracing_mark_write: E|13131
35494           <...>-13166 (-----) [002] ...1 24572.840492: tracing_mark_write: E|13131
35495           <...>-13166 (-----) [002] ...1 24572.840501: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
35496           <...>-13166 (-----) [002] ...1 24572.840504: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
35497           <...>-13166 (-----) [002] ...1 24572.840521: tracing_mark_write: E|13131
35498           <...>-13166 (-----) [002] ...1 24572.840524: tracing_mark_write: E|13131
35499           <...>-13166 (-----) [002] ...1 24572.840534: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
35500           <...>-13166 (-----) [002] ...1 24572.840537: tracing_mark_write: E|13131
35501           <...>-13166 (-----) [002] ...1 24572.840546: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
35502           <...>-13166 (-----) [002] ...1 24572.840550: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
35503  HwBinder:598_3-633   (  598) [004] ...1 24572.840568: tracing_mark_write: E|598
35504  HwBinder:598_3-633   (  598) [004] ...1 24572.840612: tracing_mark_write: B|598|HWDeviceDRM::Commit::
35505  HwBinder:598_3-633   (  598) [004] ...1 24572.840615: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
35506  HwBinder:598_3-633   (  598) [004] d..2 24572.840737: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
35507           <...>-13166 (-----) [002] dnh1 24572.840752: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
35508           <...>-13166 (-----) [002] d..2 24572.840760: sched_switch: prev_comm=id.nn.benchmark prev_pid=13166 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
35509  HwBinder:598_3-633   (  598) [004] ...1 24572.840771: tracing_mark_write: E|598
35510  HwBinder:598_3-633   (  598) [004] ...1 24572.840773: tracing_mark_write: E|598
35511  HwBinder:598_3-633   (  598) [004] ...1 24572.840789: tracing_mark_write: E|598
35512  HwBinder:598_3-633   (  598) [004] ...1 24572.840809: tracing_mark_write: E|598
35513  HwBinder:598_3-633   (  598) [004] .... 24572.840815: binder_transaction: transaction=1669555 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
35514  HwBinder:598_3-633   (  598) [004] d..2 24572.840822: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
35515  HwBinder:598_3-633   (  598) [004] .... 24572.840831: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
35516 id.nn.benchmark-13159 (13131) [000] dnh1 24572.840837: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
35517 id.nn.benchmark-13159 (13131) [000] d..2 24572.840842: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
35518  surfaceflinger-23896 (23896) [000] .... 24572.840847: binder_transaction_received: transaction=1669555
35519  HwBinder:598_3-633   (  598) [004] d..2 24572.840855: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
35520  Binder:23896_5-25989 (23896) [004] .... 24572.840858: binder_transaction_received: transaction=1669554
35521           <...>-13157 (-----) [007] d.s2 24572.840894: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
35522  Binder:23896_5-25989 (23896) [004] .... 24572.840896: binder_transaction: transaction=1669556 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
35523  Binder:23896_5-25989 (23896) [004] d..2 24572.840900: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
35524           <...>-13157 (-----) [007] d.s3 24572.840906: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
35525  Binder:23896_5-25989 (23896) [004] d..3 24572.840915: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
35526           <...>-13157 (-----) [007] dnH3 24572.840935: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
35527  Binder:23896_5-25989 (23896) [004] d..2 24572.840941: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
35528           <...>-13157 (-----) [007] dnH4 24572.840948: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
35529           <...>-13157 (-----) [007] dnH3 24572.840948: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
35530  kworker/u16:15-18488 (18488) [004] d..2 24572.840956: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
35531           <...>-13157 (-----) [007] d..2 24572.840959: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
35532         sugov:4-560   (  560) [004] d..2 24572.840960: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
35533           <...>-13154 (-----) [001] dnh1 24572.840962: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
35534    RenderThread-24437 (24151) [007] .... 24572.840962: binder_transaction_received: transaction=1669556
35535           <...>-13154 (-----) [001] d..2 24572.840967: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
35536         sugov:0-559   (  559) [001] d..2 24572.840974: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
35537  surfaceflinger-23896 (23896) [000] d..2 24572.841165: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
35538  kworker/u16:15-18488 (18488) [004] d..2 24572.841243: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
35539    RenderThread-24437 (24151) [007] d..2 24572.841648: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
35540           <...>-13157 (-----) [007] d.h1 24572.841747: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
35541           <...>-13157 (-----) [007] d.h2 24572.841752: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
35542           <...>-13157 (-----) [007] dnh2 24572.841753: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
35543           <...>-13157 (-----) [007] d..2 24572.841757: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
35544    RenderThread-24437 (24151) [007] .... 24572.841832: binder_transaction: transaction=1669557 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
35545    RenderThread-24437 (24151) [007] d..4 24572.841836: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
35546    RenderThread-24437 (24151) [007] d..5 24572.841844: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
35547    RenderThread-24437 (24151) [007] d..2 24572.841848: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
35548 id.nn.benchmark-13156 (13131) [004] d..2 24572.841850: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
35549  Binder:23896_5-25989 (23896) [004] .... 24572.841852: binder_transaction_received: transaction=1669557
35550 id.nn.benchmark-13159 (13131) [000] d.h2 24572.841864: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
35551  Binder:23896_5-25989 (23896) [004] dnh1 24572.841888: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=004
35552  Binder:23896_5-25989 (23896) [004] d..2 24572.841891: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
35553 kgsl_worker_thr-246   (  246) [004] d..2 24572.841913: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
35554 id.nn.benchmark-13159 (13131) [000] d.h2 24572.841917: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
35555 kgsl_worker_thr-246   (  246) [004] d..3 24572.841918: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
35556 kgsl_worker_thr-246   (  246) [004] d..2 24572.841928: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
35557 id.nn.benchmark-13159 (13131) [000] d.h2 24572.841929: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
35558           <...>-13157 (-----) [007] dnh1 24572.841932: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
35559           <...>-13157 (-----) [007] d..2 24572.841935: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
35560  Binder:23896_5-25989 (23896) [004] .... 24572.841936: binder_transaction: transaction=1669558 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
35561 id.nn.benchmark-13159 (13131) [000] d.h3 24572.841937: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
35562  Binder:23896_5-25989 (23896) [004] d..2 24572.841938: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
35563         sugov:4-560   (  560) [007] d..2 24572.841939: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
35564           <...>-13154 (-----) [001] d..2 24572.841945: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
35565  Binder:23896_5-25989 (23896) [004] d..3 24572.841946: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
35566         sugov:0-559   (  559) [001] d..2 24572.841951: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
35567           <...>-13157 (-----) [007] d..2 24572.841952: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
35568  Binder:23896_5-25989 (23896) [004] d..2 24572.841954: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
35569    RenderThread-24437 (24151) [007] .... 24572.841954: binder_transaction_received: transaction=1669558
35570  kworker/u16:15-18488 (18488) [004] d..2 24572.841969: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
35571    RenderThread-24437 (24151) [007] d..2 24572.841981: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
35572 crtc_commit:111-253   (  253) [002] d..2 24572.842305: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13166 next_prio=110
35573 id.nn.benchmark-13158 (13131) [005] d..3 24572.842665: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
35574 id.nn.benchmark-13158 (13131) [005] d..2 24572.842673: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
35575 id.nn.benchmark-13159 (13131) [000] dnh1 24572.842676: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
35576 id.nn.benchmark-13159 (13131) [000] d..2 24572.842682: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
35577          <idle>-0     (-----) [005] d..1 24572.842683: cpu_idle: state=0 cpu_id=5
35578          <idle>-0     (-----) [005] .n.1 24572.842709: cpu_idle: state=4294967295 cpu_id=5
35579          <idle>-0     (-----) [005] d..2 24572.842728: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
35580     migration/0-13    (   13) [000] d.h3 24572.842728: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
35581     migration/0-13    (   13) [000] d.h3 24572.842739: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
35582 id.nn.benchmark-13159 (13131) [005] dnh1 24572.842742: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
35583 id.nn.benchmark-13159 (13131) [005] d..2 24572.842745: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
35584     migration/0-13    (   13) [000] d.h4 24572.842748: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
35585         sugov:4-560   (  560) [005] d..2 24572.842748: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
35586     migration/0-13    (   13) [000] d..2 24572.842755: 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
35587         sugov:0-559   (  559) [000] d..2 24572.842770: 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
35588          <idle>-0     (-----) [000] d..1 24572.842781: cpu_idle: state=0 cpu_id=0
35589           <...>-13166 (-----) [002] ...1 24572.842968: tracing_mark_write: E|13131
35590           <...>-13166 (-----) [002] ...1 24572.842972: tracing_mark_write: E|13131
35591           <...>-13166 (-----) [002] ...1 24572.842985: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
35592           <...>-13166 (-----) [002] ...1 24572.842990: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
35593           <...>-13166 (-----) [002] d..1 24572.843011: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
35594 id.nn.benchmark-13159 (13131) [005] d.h1 24572.843026: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
35595           <...>-13166 (-----) [002] d.s1 24572.844228: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
35596          <idle>-0     (-----) [000] ...1 24572.844238: cpu_idle: state=4294967295 cpu_id=0
35597          <idle>-0     (-----) [000] d..1 24572.844241: cpu_idle: state=0 cpu_id=0
35598           <...>-13166 (-----) [002] d.s2 24572.844246: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
35599          <idle>-0     (-----) [000] .n.1 24572.844250: cpu_idle: state=4294967295 cpu_id=0
35600          <idle>-0     (-----) [000] d..2 24572.844258: 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
35601     rcu_preempt-7     (    7) [000] d..2 24572.844288: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
35602 id.nn.benchmark-13158 (13131) [000] d.h4 24572.844315: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
35603 id.nn.benchmark-13158 (13131) [000] d.h4 24572.844322: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
35604 id.nn.benchmark-13159 (13131) [005] dnh1 24572.844325: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
35605 id.nn.benchmark-13159 (13131) [005] d..2 24572.844328: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
35606         sugov:4-560   (  560) [005] d..2 24572.844331: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
35607 id.nn.benchmark-13158 (13131) [000] d.h5 24572.844334: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
35608           <...>-13166 (-----) [002] d..2 24572.844342: sched_switch: prev_comm=id.nn.benchmark prev_pid=13166 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
35609         sugov:0-559   (  559) [002] d..2 24572.844351: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13166 next_prio=110
35610           <...>-13166 (-----) [002] ...1 24572.844409: tracing_mark_write: E|13131
35611           <...>-13166 (-----) [002] ...1 24572.844412: tracing_mark_write: E|13131
35612           <...>-13166 (-----) [002] d..2 24572.844484: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
35613           <...>-13166 (-----) [002] d..3 24572.844497: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
35614           <...>-13166 (-----) [002] ...1 24572.844523: tracing_mark_write: E|13131
35615           <...>-13166 (-----) [002] d..1 24572.844529: sched_waking: comm=id.nn.benchmark pid=13165 prio=110 target_cpu=002
35616 id.nn.benchmark-13159 (13131) [005] dnh1 24572.844553: sched_wakeup: comm=id.nn.benchmark pid=13165 prio=110 target_cpu=005
35617 id.nn.benchmark-13159 (13131) [005] d..2 24572.844574: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13165 next_prio=110
35618           <...>-13165 (-----) [005] d..2 24572.844584: sched_switch: prev_comm=id.nn.benchmark prev_pid=13165 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
35619           <...>-13166 (-----) [002] ...1 24572.844591: tracing_mark_write: E|13131
35620           <...>-13166 (-----) [002] d..1 24572.844850: sched_waking: comm=id.nn.benchmark pid=13165 prio=110 target_cpu=005
35621 id.nn.benchmark-13159 (13131) [005] dnh1 24572.844863: sched_wakeup: comm=id.nn.benchmark pid=13165 prio=110 target_cpu=005
35622 id.nn.benchmark-13159 (13131) [005] d..2 24572.844866: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13165 next_prio=110
35623           <...>-13166 (-----) [002] d..2 24572.844927: sched_switch: prev_comm=id.nn.benchmark prev_pid=13166 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
35624           <...>-13165 (-----) [005] d..1 24572.844941: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
35625           <...>-13165 (-----) [005] d..2 24572.844955: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
35626 id.nn.benchmark-13156 (13131) [004] d..2 24572.844961: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
35627           <...>-13131 (-----) [004] d..2 24572.844969: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
35628           <...>-13165 (-----) [005] d..1 24572.844989: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
35629           <...>-13165 (-----) [005] d..2 24572.844997: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
35630 id.nn.benchmark-13156 (13131) [004] d..2 24572.845002: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
35631           <...>-13165 (-----) [005] d..2 24572.845009: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
35632           <...>-13131 (-----) [004] ...1 24572.845019: tracing_mark_write: E|13131
35633           <...>-13131 (-----) [004] ...1 24572.845022: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
35634           <...>-13131 (-----) [004] ...1 24572.845025: tracing_mark_write: E|13131
35635           <...>-13131 (-----) [004] ...1 24572.845027: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
35636     logd.writer-563   (  555) [002] dnh1 24572.845028: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=002
35637           <...>-13131 (-----) [004] ...1 24572.845029: tracing_mark_write: E|13131
35638           <...>-13165 (-----) [005] d..2 24572.845029: sched_switch: prev_comm=id.nn.benchmark prev_pid=13165 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
35639     logd.writer-563   (  555) [002] d..2 24572.845034: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=rcuop/4 next_pid=45 next_prio=120
35640         rcuop/4-45    (   45) [002] d..2 24572.845044: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
35641     logd.writer-563   (  555) [002] d..2 24572.845079: 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
35642           <...>-13131 (-----) [004] ...1 24572.845095: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
35643          <idle>-0     (-----) [002] d..1 24572.845096: cpu_idle: state=0 cpu_id=2
35644           <...>-13131 (-----) [004] d..2 24572.845113: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
35645           <...>-13131 (-----) [004] ...1 24572.845130: tracing_mark_write: E|13131
35646          <idle>-0     (-----) [002] dnh2 24572.845131: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
35647           <...>-13131 (-----) [004] ...1 24572.845132: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
35648          <idle>-0     (-----) [002] .n.1 24572.845134: cpu_idle: state=4294967295 cpu_id=2
35649           <...>-13131 (-----) [004] ...1 24572.845136: tracing_mark_write: E|13131
35650           <...>-13131 (-----) [004] ...1 24572.845138: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
35651           <...>-13131 (-----) [004] ...1 24572.845140: tracing_mark_write: E|13131
35652          <idle>-0     (-----) [002] d..2 24572.845140: 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
35653           <...>-13131 (-----) [004] ...1 24572.845142: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
35654     logd.writer-563   (  555) [002] d..2 24572.845172: 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
35655          <idle>-0     (-----) [002] d..1 24572.845178: cpu_idle: state=0 cpu_id=2
35656           <...>-13131 (-----) [004] ...1 24572.845219: tracing_mark_write: E|13131
35657          <idle>-0     (-----) [002] .n.1 24572.845220: cpu_idle: state=4294967295 cpu_id=2
35658           <...>-13131 (-----) [004] ...1 24572.845221: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
35659           <...>-13131 (-----) [004] d..2 24572.845226: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
35660          <idle>-0     (-----) [002] d..2 24572.845227: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13167 next_prio=110
35661           <...>-13167 (-----) [002] d..2 24572.845286: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
35662           <...>-13167 (-----) [002] d..3 24572.845294: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
35663           <...>-13167 (-----) [002] d..2 24572.845608: sched_switch: prev_comm=id.nn.benchmark prev_pid=13167 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
35664     logd.writer-563   (  555) [002] d..2 24572.845802: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13168 next_prio=110
35665           <...>-13168 (-----) [002] ...1 24572.845832: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
35666           <...>-13168 (-----) [002] ...1 24572.845837: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
35667           <...>-13168 (-----) [002] d..2 24572.845897: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
35668           <...>-13168 (-----) [002] d..3 24572.845907: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
35669           <...>-13168 (-----) [002] ...1 24572.845975: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
35670           <...>-13168 (-----) [002] ...1 24572.845980: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
35671 id.nn.benchmark-13155 (13131) [006] d..3 24572.847460: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
35672 id.nn.benchmark-13155 (13131) [006] d..2 24572.847468: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
35673           <...>-13154 (-----) [001] dnh1 24572.847471: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
35674          <idle>-0     (-----) [006] d..1 24572.847472: cpu_idle: state=0 cpu_id=6
35675           <...>-13157 (-----) [007] d..2 24572.847475: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
35676           <...>-13154 (-----) [001] d..2 24572.847477: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
35677          <idle>-0     (-----) [007] d..1 24572.847483: cpu_idle: state=0 cpu_id=7
35678          <idle>-0     (-----) [006] .n.1 24572.847501: cpu_idle: state=4294967295 cpu_id=6
35679          <idle>-0     (-----) [006] d..2 24572.847522: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
35680     migration/1-17    (   17) [001] d.h3 24572.847523: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
35681     migration/1-17    (   17) [001] d.h3 24572.847535: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
35682          <idle>-0     (-----) [007] dnh2 24572.847540: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
35683          <idle>-0     (-----) [007] .n.1 24572.847542: cpu_idle: state=4294967295 cpu_id=7
35684     migration/1-17    (   17) [001] d.h4 24572.847544: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
35685          <idle>-0     (-----) [007] d..2 24572.847546: 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
35686         sugov:4-560   (  560) [007] d..3 24572.847553: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
35687 id.nn.benchmark-13160 (13131) [003] d.h2 24572.847558: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
35688     migration/1-17    (   17) [001] d..2 24572.847562: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
35689         sugov:4-560   (  560) [007] d..2 24572.847563: 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
35690          <idle>-0     (-----) [007] d..1 24572.847566: cpu_idle: state=0 cpu_id=7
35691 id.nn.benchmark-13158 (13131) [000] dnH1 24572.847566: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
35692 id.nn.benchmark-13160 (13131) [003] dnh3 24572.847566: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
35693 id.nn.benchmark-13158 (13131) [000] dns2 24572.847570: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
35694 id.nn.benchmark-13160 (13131) [003] d..2 24572.847574: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
35695 id.nn.benchmark-13158 (13131) [000] dns3 24572.847583: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
35696         sugov:0-559   (  559) [001] d..2 24572.847588: 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
35697     rcu_preempt-7     (    7) [001] d..2 24572.847593: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
35698 id.nn.benchmark-13158 (13131) [000] d..2 24572.847594: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
35699          <idle>-0     (-----) [007] .n.1 24572.847598: cpu_idle: state=4294967295 cpu_id=7
35700          <idle>-0     (-----) [007] d..2 24572.847601: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
35701     rcu_preempt-7     (    7) [001] d..3 24572.847630: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
35702     rcu_preempt-7     (    7) [001] d..2 24572.847633: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
35703           <...>-13168 (-----) [002] d..1 24572.847644: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
35704<...>-33 ( 33) [003] d..2 24572.847669: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
35705     rcu_preempt-7     (    7) [001] d..3 24572.847670: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
35706           <...>-13168 (-----) [002] d..1 24572.847676: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=007
35707           <...>-13154 (-----) [006] d.h1 24572.847676: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
35708     migration/0-13    (   13) [000] d..2 24572.847676: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
35709         rcuop/0-10    (   10) [000] d..2 24572.847682: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
35710 id.nn.benchmark-13160 (13131) [007] d.h1 24572.847687: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=007
35711         rcuop/2-29    (   29) [003] d..2 24572.847702: 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
35712         rcuop/0-10    (   10) [000] d..3 24572.847710: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
35713     rcu_preempt-7     (    7) [001] d..2 24572.847715: 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
35714         rcuop/0-10    (   10) [000] d..2 24572.847757: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
35715         rcuop/1-21    (   21) [001] d..2 24572.847772: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
35716     logd.writer-563   (  555) [003] d..2 24572.847834: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
35717          <idle>-0     (-----) [003] d..1 24572.847847: cpu_idle: state=0 cpu_id=3
35718           <...>-13154 (-----) [006] d.s2 24572.850889: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
35719           <...>-13154 (-----) [006] d.s3 24572.850902: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
35720 id.nn.benchmark-13156 (13131) [004] d..2 24572.850908: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
35721          <idle>-0     (-----) [003] ...1 24572.850910: cpu_idle: state=4294967295 cpu_id=3
35722          <idle>-0     (-----) [003] d..1 24572.850913: cpu_idle: state=0 cpu_id=3
35723  kworker/u16:15-18488 (18488) [004] d..2 24572.851166: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
35724           <...>-13157 (-----) [000] d.h4 24572.851446: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
35725           <...>-13157 (-----) [000] d.h5 24572.851465: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
35726          <idle>-0     (-----) [003] .n.1 24572.851469: cpu_idle: state=4294967295 cpu_id=3
35727           <...>-13157 (-----) [000] d.h4 24572.851469: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
35728          <idle>-0     (-----) [003] d..2 24572.851476: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
35729           <...>-13157 (-----) [000] d.h5 24572.851477: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
35730           <...>-13168 (-----) [002] d..2 24572.851486: sched_switch: prev_comm=id.nn.benchmark prev_pid=13168 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
35731  crtc_event:111-254   (  254) [003] d..2 24572.851499: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
35732          <idle>-0     (-----) [003] d..1 24572.851504: cpu_idle: state=0 cpu_id=3
35733 crtc_commit:111-253   (  253) [002] d..2 24572.851606: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13168 next_prio=110
35734           <...>-13154 (-----) [006] d..2 24572.852214: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
35735 id.nn.benchmark-13159 (13131) [005] d..3 24572.852230: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
35736 id.nn.benchmark-13160 (13131) [007] d..2 24572.852237: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
35737 id.nn.benchmark-13159 (13131) [005] d..2 24572.852238: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
35738           <...>-13157 (-----) [000] dnh1 24572.852239: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
35739          <idle>-0     (-----) [007] d..1 24572.852240: cpu_idle: state=0 cpu_id=7
35740          <idle>-0     (-----) [005] d..1 24572.852242: cpu_idle: state=0 cpu_id=5
35741           <...>-13157 (-----) [000] d..2 24572.852245: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
35742          <idle>-0     (-----) [005] .n.1 24572.852266: cpu_idle: state=4294967295 cpu_id=5
35743          <idle>-0     (-----) [005] d..2 24572.852288: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
35744     migration/0-13    (   13) [000] d.h3 24572.852288: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
35745     migration/0-13    (   13) [000] d.h3 24572.852295: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
35746          <idle>-0     (-----) [007] dnh2 24572.852300: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
35747          <idle>-0     (-----) [007] .n.1 24572.852302: cpu_idle: state=4294967295 cpu_id=7
35748          <idle>-0     (-----) [007] d..2 24572.852305: 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
35749     migration/0-13    (   13) [000] d.h4 24572.852307: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
35750         sugov:4-560   (  560) [007] d..2 24572.852310: 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
35751          <idle>-0     (-----) [003] .n.1 24572.852312: cpu_idle: state=4294967295 cpu_id=3
35752          <idle>-0     (-----) [007] d..1 24572.852313: cpu_idle: state=0 cpu_id=7
35753          <idle>-0     (-----) [003] d..2 24572.852317: 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
35754     migration/0-13    (   13) [000] d..2 24572.852320: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
35755          <idle>-0     (-----) [000] d..1 24572.852329: cpu_idle: state=0 cpu_id=0
35756         sugov:0-559   (  559) [003] d..2 24572.852329: 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
35757          <idle>-0     (-----) [003] d..1 24572.852333: cpu_idle: state=0 cpu_id=3
35758           <...>-13168 (-----) [002] ...1 24572.852333: tracing_mark_write: E|13131
35759           <...>-13168 (-----) [002] ...1 24572.852337: tracing_mark_write: E|13131
35760           <...>-13168 (-----) [002] ...1 24572.852351: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
35761           <...>-13168 (-----) [002] ...1 24572.852355: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
35762 id.nn.benchmark-13156 (13131) [004] d..3 24572.852467: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
35763 id.nn.benchmark-13156 (13131) [004] d..2 24572.852475: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
35764 id.nn.benchmark-13155 (13131) [001] dnh1 24572.852477: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
35765 id.nn.benchmark-13155 (13131) [001] d..2 24572.852482: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
35766          <idle>-0     (-----) [004] d..1 24572.852483: cpu_idle: state=0 cpu_id=4
35767          <idle>-0     (-----) [007] ...1 24572.852503: cpu_idle: state=4294967295 cpu_id=7
35768          <idle>-0     (-----) [004] .n.1 24572.852503: cpu_idle: state=4294967295 cpu_id=4
35769          <idle>-0     (-----) [007] d..1 24572.852504: cpu_idle: state=0 cpu_id=7
35770          <idle>-0     (-----) [004] d..2 24572.852523: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
35771     migration/1-17    (   17) [001] d..2 24572.852532: 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
35772          <idle>-0     (-----) [001] d..1 24572.852542: cpu_idle: state=0 cpu_id=1
35773           <...>-13168 (-----) [002] d..1 24572.852833: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=006
35774           <...>-13168 (-----) [002] d..1 24572.852851: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=004
35775          <idle>-0     (-----) [007] dnh2 24572.852853: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=007
35776          <idle>-0     (-----) [007] .n.1 24572.852855: cpu_idle: state=4294967295 cpu_id=7
35777          <idle>-0     (-----) [007] d..2 24572.852857: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
35778           <...>-13168 (-----) [002] d..1 24572.852863: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=005
35779 id.nn.benchmark-13155 (13131) [004] d.h1 24572.852863: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=004
35780           <...>-13168 (-----) [002] d..1 24572.852872: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=007
35781           <...>-13157 (-----) [005] d.h1 24572.852875: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=005
35782           <...>-13154 (-----) [007] d.h1 24572.852883: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=007
35783          <idle>-0     (-----) [000] d.h5 24572.853773: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
35784          <idle>-0     (-----) [000] dnh6 24572.853785: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
35785          <idle>-0     (-----) [000] .n.1 24572.853793: cpu_idle: state=4294967295 cpu_id=0
35786          <idle>-0     (-----) [000] d..2 24572.853799: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
35787 crtc_commit:111-253   (  253) [000] d..2 24572.853870: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
35788 id.nn.benchmark-13156 (13131) [000] d.h4 24572.853899: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
35789 id.nn.benchmark-13156 (13131) [000] d.h4 24572.853911: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
35790 id.nn.benchmark-13155 (13131) [004] dnh1 24572.853914: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
35791 id.nn.benchmark-13155 (13131) [004] d..2 24572.853917: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
35792 id.nn.benchmark-13156 (13131) [000] d.h5 24572.853919: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
35793         sugov:4-560   (  560) [004] d..2 24572.853921: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
35794          <idle>-0     (-----) [003] .n.1 24572.853923: cpu_idle: state=4294967295 cpu_id=3
35795          <idle>-0     (-----) [003] d..2 24572.853928: 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
35796         sugov:0-559   (  559) [003] d..2 24572.853954: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
35797 id.nn.benchmark-13156 (13131) [000] d.h4 24572.854082: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
35798 id.nn.benchmark-13156 (13131) [000] d.h5 24572.854096: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
35799          <idle>-0     (-----) [001] .n.1 24572.854101: cpu_idle: state=4294967295 cpu_id=1
35800          <idle>-0     (-----) [001] d..2 24572.854106: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
35801  crtc_event:111-254   (  254) [001] d..2 24572.854134: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
35802           <...>-13168 (-----) [002] d.s2 24572.854229: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
35803 id.nn.benchmark-13159 (13131) [001] d.s1 24572.854231: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
35804           <...>-13168 (-----) [002] dns3 24572.854246: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
35805 id.nn.benchmark-13159 (13131) [001] d.s2 24572.854251: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
35806           <...>-13168 (-----) [002] d..2 24572.854258: sched_switch: prev_comm=id.nn.benchmark prev_pid=13168 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
35807  crtc_event:111-254   (  254) [002] d..2 24572.854269: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
35808     rcu_preempt-7     (    7) [002] d..2 24572.854278: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13168 next_prio=110
35809           <...>-13168 (-----) [002] ...1 24572.854429: tracing_mark_write: E|13131
35810           <...>-13168 (-----) [002] ...1 24572.854433: tracing_mark_write: E|13131
35811           <...>-13168 (-----) [002] ...1 24572.854451: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
35812           <...>-13168 (-----) [002] ...1 24572.854455: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
35813           <...>-13168 (-----) [002] ...1 24572.854791: tracing_mark_write: E|13131
35814           <...>-13168 (-----) [002] ...1 24572.854795: tracing_mark_write: E|13131
35815           <...>-13168 (-----) [002] ...1 24572.854806: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
35816           <...>-13168 (-----) [002] ...1 24572.854810: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
35817           <...>-13168 (-----) [002] ...1 24572.855049: tracing_mark_write: E|13131
35818           <...>-13168 (-----) [002] ...1 24572.855053: tracing_mark_write: E|13131
35819 id.nn.benchmark-13155 (13131) [004] d.h1 24572.855057: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=004
35820           <...>-13168 (-----) [002] ...1 24572.855063: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
35821           <...>-13168 (-----) [002] ...1 24572.855067: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
35822 id.nn.benchmark-13155 (13131) [004] d.h2 24572.855089: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
35823           <...>-13168 (-----) [002] dnh1 24572.855090: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
35824 id.nn.benchmark-13155 (13131) [004] d.h3 24572.855096: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
35825 id.nn.benchmark-13155 (13131) [004] d.h2 24572.855097: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
35826           <...>-13168 (-----) [002] d..2 24572.855097: sched_switch: prev_comm=id.nn.benchmark prev_pid=13168 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
35827           <...>-13157 (-----) [005] d..2 24572.855102: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
35828         sugov:4-560   (  560) [005] d..2 24572.855107: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
35829 id.nn.benchmark-13160 (13131) [003] dnh1 24572.855108: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
35830 id.nn.benchmark-13160 (13131) [003] d..2 24572.855115: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
35831        DispSync-23904 (23896) [002] d..1 24572.855117: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
35832         sugov:0-559   (  559) [003] d..2 24572.855122: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
35833        DispSync-23904 (23896) [002] d..2 24572.855128: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
35834 id.nn.benchmark-13156 (13131) [000] d..2 24572.855137: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
35835        DispSync-23904 (23896) [002] d..2 24572.855143: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13168 next_prio=110
35836   sfEventThread-23906 (23896) [000] d..3 24572.855172: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=007
35837           <...>-13154 (-----) [007] dnh1 24572.855201: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=007
35838           <...>-13154 (-----) [007] d..2 24572.855204: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
35839   sfEventThread-23906 (23896) [000] d..3 24572.855207: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
35840   sfEventThread-23906 (23896) [000] d..4 24572.855221: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
35841           <...>-13168 (-----) [002] d..2 24572.855231: sched_switch: prev_comm=id.nn.benchmark prev_pid=13168 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
35842   sfEventThread-23906 (23896) [000] d..2 24572.855234: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
35843<...>-24042 ( 23968) [007] .... 24572.855401: binder_transaction: transaction=1669559 dest_node=1271163 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
35844<...>-24042 ( 23968) [007] d..4 24572.855406: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
35845<...>-24042 ( 23968) [007] d..5 24572.855419: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
35846           <...>-13157 (-----) [005] d..2 24572.855425: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
35847  Binder:23896_5-25989 (23896) [005] .... 24572.855428: binder_transaction_received: transaction=1669559
35848  Binder:23896_5-25989 (23896) [005] d..1 24572.855443: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
35849 id.nn.benchmark-13156 (13131) [000] dnh1 24572.855454: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
35850 id.nn.benchmark-13156 (13131) [000] d..2 24572.855460: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
35851  Binder:23896_5-25989 (23896) [005] d..2 24572.855460: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
35852   sfEventThread-23906 (23896) [000] d..2 24572.855476: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
35853<...>-24042 ( 23968) [007] .... 24572.855496: binder_transaction: transaction=1669560 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
35854<...>-24042 ( 23968) [007] ...2 24572.855510: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
35855<...>-24042 ( 23968) [007] d..4 24572.855512: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
35856<...>-24042 ( 23968) [007] d..5 24572.855520: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
35857<...>-24042 ( 23968) [007] d..2 24572.855525: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
35858           <...>-13157 (-----) [005] d..2 24572.855526: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
35859  Binder:23896_5-25989 (23896) [005] .... 24572.855528: binder_transaction_received: transaction=1669560
35860  Binder:23896_5-25989 (23896) [005] d..1 24572.855566: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
35861  Binder:23896_5-25989 (23896) [005] .... 24572.855577: binder_transaction: transaction=1669561 dest_node=0 dest_proc=23968 dest_thread=24042 reply=1 flags=0x0 code=0x0
35862 id.nn.benchmark-13156 (13131) [000] dnh1 24572.855577: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
35863  Binder:23896_5-25989 (23896) [005] d..2 24572.855579: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=007
35864 id.nn.benchmark-13156 (13131) [000] d..2 24572.855581: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
35865  Binder:23896_5-25989 (23896) [005] d..3 24572.855592: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=007
35866   sfEventThread-23906 (23896) [000] d..2 24572.855592: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
35867  Binder:23896_5-25989 (23896) [005] .... 24572.855593: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
35868           <...>-13154 (-----) [007] d..2 24572.855598: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
35869<...>-24042 ( 23968) [007] .... 24572.855600: binder_transaction_received: transaction=1669561
35870  Binder:23896_5-25989 (23896) [005] d..2 24572.855609: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
35871<...>-24042 ( 23968) [007] d..2 24572.855627: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
35872  surfaceflinger-23896 (23896) [002] d.h1 24572.856072: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
35873           <...>-13157 (-----) [005] dnh1 24572.856095: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=005
35874           <...>-13157 (-----) [005] d..2 24572.856121: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
35875  surfaceflinger-23896 (23896) [002] d.h2 24572.856122: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
35876        DispSync-23904 (23896) [005] d..1 24572.856125: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
35877  surfaceflinger-23896 (23896) [002] d.h2 24572.856133: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
35878        DispSync-23904 (23896) [005] d..2 24572.856136: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
35879 id.nn.benchmark-13159 (13131) [001] dnh1 24572.856137: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
35880           <...>-13154 (-----) [007] dnh1 24572.856137: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
35881           <...>-13154 (-----) [007] d..2 24572.856140: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
35882  surfaceflinger-23896 (23896) [002] d.h3 24572.856142: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
35883 id.nn.benchmark-13159 (13131) [001] d..2 24572.856143: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
35884         sugov:4-560   (  560) [007] d..2 24572.856144: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
35885 id.nn.benchmark-13160 (13131) [003] d..2 24572.856149: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
35886         sugov:0-559   (  559) [003] d..2 24572.856155: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
35887  appEventThread-23905 (23896) [001] d..3 24572.856174: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
35888           <...>-13154 (-----) [007] dnh1 24572.856200: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
35889           <...>-13154 (-----) [007] d..2 24572.856202: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
35890  appEventThread-23905 (23896) [001] d..2 24572.856209: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
35891<...>-24151 ( 24151) [007] .... 24572.856336: binder_transaction: transaction=1669562 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
35892<...>-24151 ( 24151) [007] d..4 24572.856339: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
35893<...>-24151 ( 24151) [007] d..5 24572.856348: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
35894           <...>-13157 (-----) [005] d..2 24572.856354: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
35895  Binder:23896_5-25989 (23896) [005] .... 24572.856356: binder_transaction_received: transaction=1669562
35896  Binder:23896_5-25989 (23896) [005] d..1 24572.856360: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
35897<...>-24151 ( 24151) [007] d..3 24572.856364: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
35898  Binder:23896_5-25989 (23896) [005] d..2 24572.856370: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
35899 id.nn.benchmark-13159 (13131) [001] dnh1 24572.856371: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
35900 id.nn.benchmark-13159 (13131) [001] d..2 24572.856376: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
35901  surfaceflinger-23896 (23896) [002] d.h1 24572.856395: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
35902  appEventThread-23905 (23896) [001] d..2 24572.856397: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
35903  surfaceflinger-23896 (23896) [002] ...1 24572.856471: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
35904  surfaceflinger-23896 (23896) [002] ...1 24572.856474: tracing_mark_write: E|23896
35905  surfaceflinger-23896 (23896) [002] .... 24572.856518: binder_transaction: transaction=1669563 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
35906<...>-24151 ( 24151) [007] d..2 24572.856533: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
35907  surfaceflinger-23896 (23896) [002] ...2 24572.856537: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
35908  surfaceflinger-23896 (23896) [002] d..4 24572.856544: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
35909           <...>-13157 (-----) [005] dnh1 24572.856562: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=005
35910           <...>-13157 (-----) [005] d..2 24572.856564: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
35911  HwBinder:598_3-633   (  598) [005] .... 24572.856568: binder_transaction_received: transaction=1669563
35912  surfaceflinger-23896 (23896) [002] d..2 24572.856568: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
35913  HwBinder:598_3-633   (  598) [005] ...1 24572.856592: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
35914  HwBinder:598_3-633   (  598) [005] ...1 24572.856656: tracing_mark_write: B|598|HWCSession::PresentDisplay::
35915    RenderThread-24437 (24151) [002] d..1 24572.856668: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
35916           <...>-13154 (-----) [007] dnh1 24572.856683: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
35917           <...>-13154 (-----) [007] d..2 24572.856686: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
35918<...>-24151 ( 24151) [007] d..2 24572.856705: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
35919    RenderThread-24437 (24151) [002] .... 24572.856717: binder_transaction: transaction=1669564 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
35920    RenderThread-24437 (24151) [002] d..4 24572.856722: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
35921  HwBinder:598_3-633   (  598) [005] d.h1 24572.856743: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
35922    RenderThread-24437 (24151) [002] d..2 24572.856747: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13168 next_prio=110
35923  HwBinder:598_3-633   (  598) [005] ...1 24572.856922: tracing_mark_write: B|598|HWDeviceDRM::Validate::
35924  HwBinder:598_3-633   (  598) [005] ...1 24572.857129: tracing_mark_write: E|598
35925  HwBinder:598_3-633   (  598) [005] ...1 24572.857181: tracing_mark_write: B|598|HWDeviceDRM::Commit::
35926  HwBinder:598_3-633   (  598) [005] ...1 24572.857183: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
35927  HwBinder:598_3-633   (  598) [005] d..2 24572.857320: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
35928           <...>-13168 (-----) [002] dnh1 24572.857337: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
35929           <...>-13168 (-----) [002] d..2 24572.857345: sched_switch: prev_comm=id.nn.benchmark prev_pid=13168 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
35930  HwBinder:598_3-633   (  598) [005] ...1 24572.857358: tracing_mark_write: E|598
35931  HwBinder:598_3-633   (  598) [005] ...1 24572.857359: tracing_mark_write: E|598
35932  HwBinder:598_3-633   (  598) [005] ...1 24572.857378: tracing_mark_write: E|598
35933  HwBinder:598_3-633   (  598) [005] ...1 24572.857399: tracing_mark_write: E|598
35934  HwBinder:598_3-633   (  598) [005] .... 24572.857405: binder_transaction: transaction=1669565 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
35935  HwBinder:598_3-633   (  598) [005] d..2 24572.857411: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
35936  HwBinder:598_3-633   (  598) [005] .... 24572.857419: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
35937 id.nn.benchmark-13156 (13131) [000] dnh1 24572.857425: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
35938 id.nn.benchmark-13156 (13131) [000] d..2 24572.857431: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
35939  surfaceflinger-23896 (23896) [000] .... 24572.857436: binder_transaction_received: transaction=1669565
35940  HwBinder:598_3-633   (  598) [005] d..2 24572.857445: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
35941  Binder:23896_5-25989 (23896) [005] .... 24572.857447: binder_transaction_received: transaction=1669564
35942  Binder:23896_5-25989 (23896) [005] .... 24572.857476: binder_transaction: transaction=1669566 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
35943  Binder:23896_5-25989 (23896) [005] d..2 24572.857479: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
35944 crtc_commit:111-253   (  253) [002] d.h1 24572.857493: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
35945  Binder:23896_5-25989 (23896) [005] d..2 24572.857494: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
35946 id.nn.benchmark-13160 (13131) [003] d.s2 24572.857580: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
35947 id.nn.benchmark-13155 (13131) [004] d.h2 24572.857586: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
35948 id.nn.benchmark-13155 (13131) [004] d.h3 24572.857598: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
35949 id.nn.benchmark-13155 (13131) [004] d.h2 24572.857599: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
35950           <...>-13154 (-----) [007] dnh1 24572.857603: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
35951           <...>-13154 (-----) [007] d..2 24572.857625: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
35952 id.nn.benchmark-13160 (13131) [003] dnH2 24572.857627: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
35953         sugov:4-560   (  560) [007] d..2 24572.857629: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
35954     rcu_preempt-7     (    7) [007] d..2 24572.857632: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=002
35955 id.nn.benchmark-13160 (13131) [003] d..2 24572.857633: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
35956     rcu_preempt-7     (    7) [007] d..2 24572.857639: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
35957         sugov:0-559   (  559) [003] d..2 24572.857641: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
35958 crtc_commit:111-253   (  253) [002] d.h1 24572.857645: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=002
35959 crtc_commit:111-253   (  253) [002] d.h1 24572.857651: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
35960     rcu_preempt-7     (    7) [007] d..2 24572.857651: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
35961  surfaceflinger-23896 (23896) [000] d..2 24572.857753: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
35962 crtc_commit:111-253   (  253) [002] d..2 24572.858933: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcuop/4 next_pid=45 next_prio=120
35963         rcuop/4-45    (   45) [002] d..2 24572.858938: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=007
35964           <...>-13154 (-----) [007] dnh1 24572.858967: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=007
35965           <...>-13154 (-----) [007] d..2 24572.858969: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/5 next_pid=53 next_prio=120
35966         rcuop/4-45    (   45) [002] d..2 24572.858970: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
35967         rcuop/6-61    (   61) [002] d..2 24572.858974: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=002
35968         rcuop/5-53    (   53) [007] d..2 24572.858982: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
35969         rcuop/6-61    (   61) [002] d..3 24572.858985: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=002
35970         rcuop/6-61    (   61) [002] d..2 24572.858992: 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
35971         rcuop/7-69    (   69) [002] d..2 24572.859012: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
35972    RenderThread-24437 (24151) [002] .... 24572.859016: binder_transaction_received: transaction=1669566
35973    RenderThread-24437 (24151) [002] d..2 24572.860191: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13168 next_prio=110
35974           <...>-13168 (-----) [002] ...1 24572.860210: tracing_mark_write: E|13131
35975           <...>-13168 (-----) [002] ...1 24572.860215: tracing_mark_write: E|13131
35976           <...>-13168 (-----) [002] ...1 24572.860237: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
35977           <...>-13168 (-----) [002] ...1 24572.860242: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
35978           <...>-13168 (-----) [002] d.h1 24572.860286: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
35979           <...>-13168 (-----) [002] d.h2 24572.860309: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
35980           <...>-13168 (-----) [002] dnh2 24572.860313: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
35981           <...>-13168 (-----) [002] d..2 24572.860320: sched_switch: prev_comm=id.nn.benchmark prev_pid=13168 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
35982 id.nn.benchmark-13156 (13131) [000] d.h2 24572.860402: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=004
35983 id.nn.benchmark-13156 (13131) [000] d.h3 24572.860422: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
35984    RenderThread-24437 (24151) [002] d..2 24572.860429: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
35985 id.nn.benchmark-13156 (13131) [000] d.h2 24572.860465: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
35986 kgsl_worker_thr-246   (  246) [002] d..2 24572.860469: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
35987 id.nn.benchmark-13156 (13131) [000] d.h2 24572.860472: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
35988           <...>-13154 (-----) [007] dnh1 24572.860475: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
35989           <...>-13154 (-----) [007] d..2 24572.860477: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
35990 id.nn.benchmark-13156 (13131) [000] d.h3 24572.860479: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
35991         sugov:4-560   (  560) [007] d..2 24572.860481: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
35992 id.nn.benchmark-13160 (13131) [003] d..2 24572.860487: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
35993         sugov:0-559   (  559) [003] d..2 24572.860493: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
35994 id.nn.benchmark-13155 (13131) [004] dnh1 24572.860496: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
35995 id.nn.benchmark-13155 (13131) [004] d..2 24572.860499: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
35996 kgsl_worker_thr-246   (  246) [002] d..2 24572.860502: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
35997  kworker/u16:15-18488 (18488) [004] d..2 24572.860518: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
35998    RenderThread-24437 (24151) [002] .... 24572.860540: binder_transaction: transaction=1669567 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
35999    RenderThread-24437 (24151) [002] d..4 24572.860547: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
36000           <...>-13154 (-----) [007] dnh1 24572.860572: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
36001           <...>-13154 (-----) [007] d..2 24572.860574: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
36002  Binder:23896_5-25989 (23896) [007] .... 24572.860577: binder_transaction_received: transaction=1669567
36003    RenderThread-24437 (24151) [002] d..2 24572.860577: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13168 next_prio=110
36004  Binder:23896_5-25989 (23896) [007] .... 24572.860627: binder_transaction: transaction=1669568 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
36005  Binder:23896_5-25989 (23896) [007] d..2 24572.860629: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
36006           <...>-13168 (-----) [002] dnh1 24572.860649: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
36007  Binder:23896_5-25989 (23896) [007] d..2 24572.860651: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
36008           <...>-13168 (-----) [002] d..2 24572.860655: sched_switch: prev_comm=id.nn.benchmark prev_pid=13168 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
36009    RenderThread-24437 (24151) [002] .... 24572.860660: binder_transaction_received: transaction=1669568
36010    RenderThread-24437 (24151) [002] d..2 24572.860713: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13168 next_prio=110
36011 id.nn.benchmark-13158 (13131) [006] d.s2 24572.860889: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
36012 id.nn.benchmark-13158 (13131) [006] d.s3 24572.860900: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
36013 id.nn.benchmark-13155 (13131) [004] d..2 24572.860906: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
36014           <...>-13168 (-----) [002] ...1 24572.861060: tracing_mark_write: E|13131
36015           <...>-13168 (-----) [002] ...1 24572.861064: tracing_mark_write: E|13131
36016           <...>-13168 (-----) [002] ...1 24572.861089: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36017           <...>-13168 (-----) [002] ...1 24572.861094: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36018  kworker/u16:15-18488 (18488) [004] d..2 24572.861206: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
36019           <...>-13168 (-----) [002] ...1 24572.861301: tracing_mark_write: E|13131
36020           <...>-13168 (-----) [002] ...1 24572.861304: tracing_mark_write: E|13131
36021           <...>-13168 (-----) [002] ...1 24572.861320: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36022           <...>-13168 (-----) [002] ...1 24572.861324: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36023           <...>-13168 (-----) [002] ...1 24572.861396: tracing_mark_write: E|13131
36024           <...>-13168 (-----) [002] ...1 24572.861400: tracing_mark_write: E|13131
36025           <...>-13168 (-----) [002] ...1 24572.861412: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
36026           <...>-13168 (-----) [002] ...1 24572.861417: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
36027           <...>-13168 (-----) [002] ...1 24572.861740: tracing_mark_write: E|13131
36028           <...>-13168 (-----) [002] ...1 24572.861744: tracing_mark_write: E|13131
36029           <...>-13168 (-----) [002] ...1 24572.861754: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
36030           <...>-13168 (-----) [002] ...1 24572.861757: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
36031           <...>-13168 (-----) [002] ...1 24572.861815: tracing_mark_write: E|13131
36032           <...>-13168 (-----) [002] ...1 24572.861818: tracing_mark_write: E|13131
36033           <...>-13168 (-----) [002] ...1 24572.861826: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
36034           <...>-13168 (-----) [002] ...1 24572.861830: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
36035           <...>-13168 (-----) [002] ...1 24572.861847: tracing_mark_write: E|13131
36036           <...>-13168 (-----) [002] ...1 24572.861850: tracing_mark_write: E|13131
36037           <...>-13168 (-----) [002] ...1 24572.861861: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
36038           <...>-13168 (-----) [002] ...1 24572.861864: tracing_mark_write: E|13131
36039           <...>-13168 (-----) [002] ...1 24572.861874: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
36040           <...>-13168 (-----) [002] ...1 24572.861879: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
36041           <...>-13168 (-----) [002] ...1 24572.862734: tracing_mark_write: E|13131
36042           <...>-13168 (-----) [002] ...1 24572.862736: tracing_mark_write: E|13131
36043           <...>-13168 (-----) [002] ...1 24572.862744: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36044           <...>-13168 (-----) [002] ...1 24572.862748: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36045           <...>-13168 (-----) [002] ...1 24572.862832: tracing_mark_write: E|13131
36046           <...>-13168 (-----) [002] ...1 24572.862835: tracing_mark_write: E|13131
36047           <...>-13168 (-----) [002] d..2 24572.862899: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
36048           <...>-13168 (-----) [002] d..3 24572.862914: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
36049           <...>-13168 (-----) [002] ...1 24572.862938: tracing_mark_write: E|13131
36050           <...>-13168 (-----) [002] d..1 24572.862944: sched_waking: comm=id.nn.benchmark pid=13167 prio=110 target_cpu=002
36051           <...>-13154 (-----) [007] dnh1 24572.862969: sched_wakeup: comm=id.nn.benchmark pid=13167 prio=110 target_cpu=007
36052           <...>-13154 (-----) [007] d..2 24572.862994: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13167 next_prio=110
36053           <...>-13168 (-----) [002] d.h3 24572.862995: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
36054           <...>-13167 (-----) [007] d..2 24572.863003: sched_switch: prev_comm=id.nn.benchmark prev_pid=13167 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
36055           <...>-13168 (-----) [002] d.h3 24572.863004: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
36056           <...>-13154 (-----) [007] dnh3 24572.863006: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
36057           <...>-13154 (-----) [007] d..2 24572.863009: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
36058         sugov:4-560   (  560) [007] d..2 24572.863013: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
36059           <...>-13168 (-----) [002] dnh4 24572.863014: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
36060           <...>-13168 (-----) [002] d..2 24572.863020: sched_switch: prev_comm=id.nn.benchmark prev_pid=13168 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
36061         sugov:0-559   (  559) [002] d..2 24572.863027: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
36062     logd.writer-563   (  555) [002] d..2 24572.863102: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13168 next_prio=110
36063           <...>-13168 (-----) [002] ...1 24572.863122: tracing_mark_write: E|13131
36064           <...>-13168 (-----) [002] d..1 24572.863354: sched_waking: comm=id.nn.benchmark pid=13167 prio=110 target_cpu=007
36065           <...>-13154 (-----) [007] dnh1 24572.863367: sched_wakeup: comm=id.nn.benchmark pid=13167 prio=110 target_cpu=007
36066           <...>-13154 (-----) [007] d..2 24572.863369: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13167 next_prio=110
36067           <...>-13167 (-----) [007] d..2 24572.863410: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
36068           <...>-13168 (-----) [002] d.h2 24572.863428: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
36069           <...>-13168 (-----) [002] d..2 24572.863435: sched_switch: prev_comm=id.nn.benchmark prev_pid=13168 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
36070           <...>-13167 (-----) [007] d..1 24572.863448: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
36071     logd.writer-563   (  555) [002] dnh1 24572.863479: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
36072     logd.writer-563   (  555) [002] d..2 24572.863485: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
36073           <...>-13131 (-----) [002] d..2 24572.863499: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
36074           <...>-13167 (-----) [007] d..1 24572.863511: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
36075     logd.writer-563   (  555) [002] dnh1 24572.863528: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
36076     logd.writer-563   (  555) [002] d..2 24572.863534: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
36077           <...>-13167 (-----) [007] d..2 24572.863542: sched_switch: prev_comm=id.nn.benchmark prev_pid=13167 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
36078           <...>-13131 (-----) [002] ...1 24572.863556: tracing_mark_write: E|13131
36079           <...>-13131 (-----) [002] ...1 24572.863562: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
36080           <...>-13131 (-----) [002] ...1 24572.863567: tracing_mark_write: E|13131
36081           <...>-13131 (-----) [002] ...1 24572.863571: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
36082           <...>-13131 (-----) [002] ...1 24572.863576: tracing_mark_write: E|13131
36083           <...>-13131 (-----) [002] ...1 24572.863894: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
36084           <...>-13131 (-----) [002] ...1 24572.863934: tracing_mark_write: E|13131
36085           <...>-13131 (-----) [002] ...1 24572.863938: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
36086           <...>-13131 (-----) [002] ...1 24572.863943: tracing_mark_write: E|13131
36087           <...>-13131 (-----) [002] ...1 24572.863948: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
36088           <...>-13131 (-----) [002] ...1 24572.863953: tracing_mark_write: E|13131
36089           <...>-13131 (-----) [002] ...1 24572.863957: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
36090           <...>-13131 (-----) [002] ...1 24572.864095: tracing_mark_write: E|13131
36091           <...>-13131 (-----) [002] ...1 24572.864099: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
36092           <...>-13131 (-----) [002] d..2 24572.864109: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
36093     logd.writer-563   (  555) [002] d..2 24572.864151: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13169 next_prio=110
36094           <...>-13169 (-----) [002] d..2 24572.864202: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
36095           <...>-13169 (-----) [002] d..3 24572.864211: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
36096           <...>-13154 (-----) [007] d.s1 24572.864222: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
36097           <...>-13154 (-----) [007] dns2 24572.864230: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
36098           <...>-13154 (-----) [007] d..2 24572.864236: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
36099     rcu_preempt-7     (    7) [007] d..2 24572.864238: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
36100     rcu_preempt-7     (    7) [007] d..2 24572.864249: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
36101           <...>-13169 (-----) [002] dnh1 24572.864255: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
36102           <...>-13169 (-----) [002] d..2 24572.864264: sched_switch: prev_comm=id.nn.benchmark prev_pid=13169 prev_prio=110 prev_state=R+ ==> next_comm=rcuop/0 next_pid=10 next_prio=120
36103     rcu_preempt-7     (    7) [007] d..2 24572.864270: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
36104         rcuop/0-10    (   10) [002] d.h3 24572.864271: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
36105         rcuop/0-10    (   10) [002] d..2 24572.864275: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
36106         rcuop/0-10    (   10) [002] d..3 24572.864292: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
36107         rcuop/0-10    (   10) [002] d..2 24572.864305: 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
36108         rcuop/2-29    (   29) [002] d..2 24572.864324: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
36109         rcuop/1-21    (   21) [002] d..2 24572.864338: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
36110     logd.writer-563   (  555) [002] d..2 24572.864478: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13169 next_prio=110
36111           <...>-13169 (-----) [002] d..2 24572.864487: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
36112           <...>-13169 (-----) [002] d..3 24572.864493: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
36113           <...>-13169 (-----) [002] d..2 24572.864780: sched_switch: prev_comm=id.nn.benchmark prev_pid=13169 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13170 next_prio=110
36114           <...>-13170 (-----) [002] ...1 24572.864803: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
36115           <...>-13170 (-----) [002] ...1 24572.864807: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
36116           <...>-13170 (-----) [002] ...1 24572.864929: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36117           <...>-13170 (-----) [002] ...1 24572.864934: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36118           <...>-13170 (-----) [002] ...1 24572.866928: tracing_mark_write: E|13131
36119           <...>-13170 (-----) [002] ...1 24572.866932: tracing_mark_write: E|13131
36120           <...>-13170 (-----) [002] ...1 24572.866943: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36121           <...>-13170 (-----) [002] ...1 24572.866947: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36122           <...>-13170 (-----) [002] ...1 24572.867661: tracing_mark_write: E|13131
36123           <...>-13170 (-----) [002] ...1 24572.867665: tracing_mark_write: E|13131
36124           <...>-13170 (-----) [002] ...1 24572.867680: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36125           <...>-13170 (-----) [002] ...1 24572.867684: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36126 id.nn.benchmark-13156 (13131) [000] d.h4 24572.867917: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
36127 id.nn.benchmark-13156 (13131) [000] d.h5 24572.867932: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
36128 id.nn.benchmark-13156 (13131) [000] d.h4 24572.867936: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
36129           <...>-13170 (-----) [002] d..2 24572.867945: sched_switch: prev_comm=id.nn.benchmark prev_pid=13170 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
36130           <...>-13154 (-----) [007] dnh1 24572.867963: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
36131           <...>-13154 (-----) [007] d..2 24572.867966: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
36132  crtc_event:111-254   (  254) [002] d..2 24572.867968: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13170 next_prio=110
36133 id.nn.benchmark-13156 (13131) [000] d.h2 24572.867995: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
36134 id.nn.benchmark-13156 (13131) [000] d.h2 24572.868006: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
36135 id.nn.benchmark-13155 (13131) [004] dnh1 24572.868009: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
36136 id.nn.benchmark-13155 (13131) [004] d..2 24572.868012: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
36137 id.nn.benchmark-13156 (13131) [000] d.h3 24572.868013: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
36138         sugov:4-560   (  560) [004] d..2 24572.868016: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
36139           <...>-13170 (-----) [002] d..2 24572.868021: sched_switch: prev_comm=id.nn.benchmark prev_pid=13170 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
36140         sugov:0-559   (  559) [002] d..2 24572.868029: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13170 next_prio=110
36141 crtc_commit:111-253   (  253) [007] d..2 24572.868064: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
36142           <...>-13170 (-----) [002] ...1 24572.868174: tracing_mark_write: E|13131
36143           <...>-13170 (-----) [002] ...1 24572.868178: tracing_mark_write: E|13131
36144           <...>-13170 (-----) [002] ...1 24572.868189: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36145           <...>-13170 (-----) [002] ...1 24572.868193: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36146           <...>-13170 (-----) [002] ...1 24572.868432: tracing_mark_write: E|13131
36147           <...>-13170 (-----) [002] ...1 24572.868436: tracing_mark_write: E|13131
36148           <...>-13170 (-----) [002] ...1 24572.868446: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36149           <...>-13170 (-----) [002] ...1 24572.868450: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36150           <...>-13170 (-----) [002] ...1 24572.868850: tracing_mark_write: E|13131
36151           <...>-13170 (-----) [002] ...1 24572.868854: tracing_mark_write: E|13131
36152           <...>-13170 (-----) [002] ...1 24572.868864: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36153           <...>-13170 (-----) [002] ...1 24572.868868: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36154           <...>-13170 (-----) [002] ...1 24572.869245: tracing_mark_write: E|13131
36155           <...>-13170 (-----) [002] ...1 24572.869249: tracing_mark_write: E|13131
36156           <...>-13170 (-----) [002] ...1 24572.869264: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36157           <...>-13170 (-----) [002] ...1 24572.869268: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36158           <...>-13170 (-----) [002] ...1 24572.869455: tracing_mark_write: E|13131
36159           <...>-13170 (-----) [002] ...1 24572.869460: tracing_mark_write: E|13131
36160           <...>-13170 (-----) [002] ...1 24572.869472: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36161           <...>-13170 (-----) [002] ...1 24572.869476: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36162           <...>-13170 (-----) [002] ...1 24572.869546: tracing_mark_write: E|13131
36163           <...>-13170 (-----) [002] ...1 24572.869549: tracing_mark_write: E|13131
36164           <...>-13170 (-----) [002] ...1 24572.869558: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
36165           <...>-13170 (-----) [002] ...1 24572.869562: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
36166           <...>-13170 (-----) [002] ...1 24572.869808: tracing_mark_write: E|13131
36167           <...>-13170 (-----) [002] ...1 24572.869812: tracing_mark_write: E|13131
36168           <...>-13170 (-----) [002] ...1 24572.869820: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
36169           <...>-13170 (-----) [002] ...1 24572.869824: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
36170           <...>-13170 (-----) [002] ...1 24572.869864: tracing_mark_write: E|13131
36171           <...>-13170 (-----) [002] ...1 24572.869868: tracing_mark_write: E|13131
36172           <...>-13170 (-----) [002] ...1 24572.869876: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
36173           <...>-13170 (-----) [002] ...1 24572.869880: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
36174           <...>-13170 (-----) [002] ...1 24572.869894: tracing_mark_write: E|13131
36175           <...>-13170 (-----) [002] ...1 24572.869897: tracing_mark_write: E|13131
36176           <...>-13170 (-----) [002] ...1 24572.869906: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
36177           <...>-13170 (-----) [002] ...1 24572.869909: tracing_mark_write: E|13131
36178           <...>-13170 (-----) [002] ...1 24572.869917: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
36179           <...>-13170 (-----) [002] ...1 24572.869921: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
36180 id.nn.benchmark-13156 (13131) [000] d.h4 24572.870259: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
36181 id.nn.benchmark-13156 (13131) [000] d.h5 24572.870277: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
36182           <...>-13170 (-----) [002] d..2 24572.870288: sched_switch: prev_comm=id.nn.benchmark prev_pid=13170 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
36183 id.nn.benchmark-13156 (13131) [000] d.h2 24572.870313: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
36184 id.nn.benchmark-13156 (13131) [000] d.h2 24572.870324: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
36185           <...>-13154 (-----) [007] dnh1 24572.870327: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
36186           <...>-13154 (-----) [007] d..2 24572.870329: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
36187 id.nn.benchmark-13156 (13131) [000] dnh3 24572.870333: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
36188         sugov:4-560   (  560) [007] d..2 24572.870333: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
36189 id.nn.benchmark-13156 (13131) [000] d..2 24572.870339: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
36190         sugov:0-559   (  559) [000] d..2 24572.870346: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
36191 crtc_commit:111-253   (  253) [002] d..2 24572.870351: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
36192     logd.writer-563   (  555) [002] d..2 24572.870559: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13170 next_prio=110
36193 id.nn.benchmark-13156 (13131) [000] d.h4 24572.870562: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
36194 id.nn.benchmark-13156 (13131) [000] d.h5 24572.870571: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
36195           <...>-13170 (-----) [002] d..2 24572.870580: sched_switch: prev_comm=id.nn.benchmark prev_pid=13170 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
36196  crtc_event:111-254   (  254) [002] d..2 24572.870591: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13170 next_prio=110
36197 id.nn.benchmark-13158 (13131) [006] d.s2 24572.870887: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
36198           <...>-13154 (-----) [007] d.s2 24572.870890: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
36199           <...>-13154 (-----) [007] d.s1 24572.870898: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
36200 id.nn.benchmark-13158 (13131) [006] d.s3 24572.870901: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
36201           <...>-13170 (-----) [002] dnh1 24572.870904: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
36202 id.nn.benchmark-13155 (13131) [004] d..2 24572.870907: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
36203           <...>-13154 (-----) [007] dns2 24572.870908: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
36204           <...>-13170 (-----) [002] d..2 24572.870908: sched_switch: prev_comm=id.nn.benchmark prev_pid=13170 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
36205           <...>-13154 (-----) [007] d..2 24572.870911: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
36206     rcu_preempt-7     (    7) [007] d..2 24572.870912: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
36207  crtc_event:111-254   (  254) [002] d..2 24572.870919: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13170 next_prio=110
36208     rcu_preempt-7     (    7) [007] d..2 24572.870923: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
36209           <...>-13170 (-----) [002] dnh3 24572.870926: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
36210           <...>-13170 (-----) [002] d..2 24572.870930: sched_switch: prev_comm=id.nn.benchmark prev_pid=13170 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
36211         rcuop/6-61    (   61) [002] d..2 24572.870934: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=002
36212         rcuop/6-61    (   61) [002] d..3 24572.870945: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=002
36213         rcuop/6-61    (   61) [002] d..2 24572.870952: 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
36214         rcuop/7-69    (   69) [002] d..2 24572.870965: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13170 next_prio=110
36215  kworker/u16:15-18488 (18488) [004] d..2 24572.871093: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
36216 id.nn.benchmark-13160 (13131) [003] d.s2 24572.871135: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
36217 id.nn.benchmark-13155 (13131) [004] d.h1 24572.871160: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
36218 id.nn.benchmark-13155 (13131) [004] dnh1 24572.871161: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
36219 id.nn.benchmark-13155 (13131) [004] d..2 24572.871163: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
36220           <...>-13170 (-----) [002] ...1 24572.871173: tracing_mark_write: E|13131
36221           <...>-13170 (-----) [002] ...1 24572.871177: tracing_mark_write: E|13131
36222           <...>-13170 (-----) [002] ...1 24572.871186: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36223           <...>-13170 (-----) [002] ...1 24572.871190: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36224  kworker/u16:15-18488 (18488) [004] d..2 24572.871361: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
36225           <...>-13170 (-----) [002] ...1 24572.871388: tracing_mark_write: E|13131
36226           <...>-13170 (-----) [002] ...1 24572.871392: tracing_mark_write: E|13131
36227           <...>-13170 (-----) [002] d..2 24572.871423: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
36228           <...>-13170 (-----) [002] d..3 24572.871431: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
36229           <...>-13170 (-----) [002] ...1 24572.871448: tracing_mark_write: E|13131
36230           <...>-13170 (-----) [002] d..1 24572.871452: sched_waking: comm=id.nn.benchmark pid=13169 prio=110 target_cpu=002
36231           <...>-13154 (-----) [007] dnh1 24572.871474: sched_wakeup: comm=id.nn.benchmark pid=13169 prio=110 target_cpu=007
36232           <...>-13154 (-----) [007] d..2 24572.871499: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13169 next_prio=110
36233           <...>-13170 (-----) [002] d.h3 24572.871500: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
36234           <...>-13169 (-----) [007] d..2 24572.871505: sched_switch: prev_comm=id.nn.benchmark prev_pid=13169 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
36235           <...>-13170 (-----) [002] d.h3 24572.871513: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
36236 id.nn.benchmark-13155 (13131) [004] dnh1 24572.871516: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
36237 id.nn.benchmark-13155 (13131) [004] d..2 24572.871519: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
36238         sugov:4-560   (  560) [004] d..2 24572.871522: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
36239           <...>-13170 (-----) [002] dnh4 24572.871523: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
36240           <...>-13157 (-----) [005] d.h1 24572.871524: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=005
36241           <...>-13170 (-----) [002] d..2 24572.871528: sched_switch: prev_comm=id.nn.benchmark prev_pid=13170 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
36242         sugov:0-559   (  559) [002] d..2 24572.871535: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13170 next_prio=110
36243           <...>-13157 (-----) [005] d.h2 24572.871536: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=007
36244           <...>-13154 (-----) [007] d..2 24572.871542: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
36245           <...>-13170 (-----) [002] ...1 24572.871552: tracing_mark_write: E|13131
36246        DispSync-23904 (23896) [007] d..1 24572.871555: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
36247           <...>-13170 (-----) [002] dnh3 24572.871570: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
36248        DispSync-23904 (23896) [007] d..2 24572.871572: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
36249           <...>-13170 (-----) [002] d..2 24572.871577: sched_switch: prev_comm=id.nn.benchmark prev_pid=13170 prev_prio=110 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
36250   sfEventThread-23906 (23896) [002] d..3 24572.871613: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=007
36251           <...>-13154 (-----) [007] dnh1 24572.871630: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=007
36252           <...>-13154 (-----) [007] d..2 24572.871633: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
36253   sfEventThread-23906 (23896) [002] d..3 24572.871636: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
36254   sfEventThread-23906 (23896) [002] d..4 24572.871646: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
36255 id.nn.benchmark-13156 (13131) [000] d..2 24572.871654: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
36256   sfEventThread-23906 (23896) [002] d..2 24572.871659: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13170 next_prio=110
36257           <...>-13170 (-----) [002] d..1 24572.871823: sched_waking: comm=id.nn.benchmark pid=13169 prio=110 target_cpu=007
36258<...>-24042 ( 23968) [007] d.h1 24572.871839: sched_wakeup: comm=id.nn.benchmark pid=13169 prio=110 target_cpu=007
36259<...>-24042 ( 23968) [007] .... 24572.871857: binder_transaction: transaction=1669569 dest_node=1271163 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
36260<...>-24042 ( 23968) [007] d..4 24572.871861: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
36261           <...>-13170 (-----) [002] d..2 24572.871873: sched_switch: prev_comm=id.nn.benchmark prev_pid=13170 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
36262     logd.writer-563   (  555) [002] dnh1 24572.871901: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
36263     logd.writer-563   (  555) [002] d..2 24572.871906: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
36264  Binder:23896_5-25989 (23896) [002] .... 24572.871912: binder_transaction_received: transaction=1669569
36265  Binder:23896_5-25989 (23896) [002] d..1 24572.871934: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
36266  Binder:23896_5-25989 (23896) [002] dn.2 24572.871940: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
36267  Binder:23896_5-25989 (23896) [002] d..2 24572.871945: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
36268   sfEventThread-23906 (23896) [002] d..2 24572.871956: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
36269  Binder:23896_5-25989 (23896) [002] d..1 24572.871959: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
36270  Binder:23896_5-25989 (23896) [002] dn.2 24572.871963: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
36271  Binder:23896_5-25989 (23896) [002] d..2 24572.871967: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
36272<...>-24042 ( 23968) [007] .... 24572.871977: binder_transaction: transaction=1669570 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
36273   sfEventThread-23906 (23896) [002] d..2 24572.871984: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
36274<...>-24042 ( 23968) [007] ...2 24572.871991: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
36275<...>-24042 ( 23968) [007] d..4 24572.871993: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=001
36276<...>-24042 ( 23968) [007] d..5 24572.872008: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=004
36277 id.nn.benchmark-13155 (13131) [004] d..2 24572.872027: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
36278<...>-24042 ( 23968) [007] d.h5 24572.872027: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
36279<...>-24042 ( 23968) [007] d.h6 24572.872037: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
36280<...>-24042 ( 23968) [007] d.h5 24572.872037: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
36281           <...>-13157 (-----) [005] d..2 24572.872044: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
36282<...>-23903 ( 23896) [004] .... 24572.872045: binder_transaction_received: transaction=1669570
36283  Binder:23896_5-25989 (23896) [002] dnh1 24572.872048: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
36284<...>-24042 ( 23968) [007] d..2 24572.872048: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13169 next_prio=110
36285         sugov:4-560   (  560) [005] d..2 24572.872049: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
36286  Binder:23896_5-25989 (23896) [002] d..2 24572.872053: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
36287         sugov:0-559   (  559) [002] d..2 24572.872060: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
36288  Binder:23896_5-25989 (23896) [002] d..2 24572.872072: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
36289<...>-23903 ( 23896) [004] d..1 24572.872092: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
36290     logd.writer-563   (  555) [002] dnh1 24572.872104: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
36291           <...>-13169 (-----) [007] d..1 24572.872105: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
36292<...>-23903 ( 23896) [004] .... 24572.872105: binder_transaction: transaction=1669571 dest_node=0 dest_proc=23968 dest_thread=24042 reply=1 flags=0x0 code=0x0
36293<...>-23903 ( 23896) [004] d..2 24572.872108: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=007
36294     logd.writer-563   (  555) [002] d..2 24572.872112: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
36295   sfEventThread-23906 (23896) [002] d.h3 24572.872117: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
36296<...>-23903 ( 23896) [004] d..3 24572.872121: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=007
36297<...>-23903 ( 23896) [004] .... 24572.872122: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
36298           <...>-13169 (-----) [007] d..2 24572.872129: sched_switch: prev_comm=id.nn.benchmark prev_pid=13169 prev_prio=110 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
36299<...>-24042 ( 23968) [007] .... 24572.872131: binder_transaction_received: transaction=1669571
36300   sfEventThread-23906 (23896) [002] d..2 24572.872131: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
36301<...>-23903 ( 23896) [004] d..2 24572.872141: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
36302           <...>-13131 (-----) [002] d..2 24572.872146: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
36303<...>-24042 ( 23968) [007] d..2 24572.872163: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13169 next_prio=110
36304           <...>-13169 (-----) [007] d..1 24572.872182: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
36305     logd.writer-563   (  555) [002] d..2 24572.872199: 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
36306          <idle>-0     (-----) [002] dnh3 24572.872208: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
36307           <...>-13169 (-----) [007] d..2 24572.872212: sched_switch: prev_comm=id.nn.benchmark prev_pid=13169 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
36308          <idle>-0     (-----) [002] d..2 24572.872215: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
36309           <...>-13131 (-----) [002] ...1 24572.872238: tracing_mark_write: E|13131
36310           <...>-13131 (-----) [002] ...1 24572.872243: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
36311           <...>-13131 (-----) [002] ...1 24572.872248: tracing_mark_write: E|13131
36312           <...>-13131 (-----) [002] ...1 24572.872252: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
36313           <...>-13131 (-----) [002] ...1 24572.872256: tracing_mark_write: E|13131
36314           <...>-13154 (-----) [007] d.h1 24572.872535: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=007
36315           <...>-13154 (-----) [007] d.h2 24572.872565: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
36316           <...>-13131 (-----) [002] dnh1 24572.872566: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
36317           <...>-13154 (-----) [007] dnh3 24572.872571: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
36318           <...>-13154 (-----) [007] dnh2 24572.872571: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
36319           <...>-13131 (-----) [002] d..2 24572.872574: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
36320        DispSync-23904 (23896) [002] d..1 24572.872585: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
36321           <...>-13154 (-----) [007] d..2 24572.872585: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
36322         sugov:4-560   (  560) [007] d..2 24572.872589: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
36323 id.nn.benchmark-13159 (13131) [001] dnh1 24572.872589: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
36324 id.nn.benchmark-13159 (13131) [001] d..2 24572.872600: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
36325         sugov:0-559   (  559) [001] d..2 24572.872612: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
36326        DispSync-23904 (23896) [002] d..2 24572.872612: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
36327 id.nn.benchmark-13160 (13131) [003] d..2 24572.872622: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
36328        DispSync-23904 (23896) [002] d..2 24572.872624: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
36329           <...>-13131 (-----) [002] ...1 24572.872641: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
36330  appEventThread-23905 (23896) [003] d..3 24572.872659: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
36331           <...>-13131 (-----) [002] d..2 24572.872667: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
36332           <...>-13131 (-----) [002] d..3 24572.872675: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
36333           <...>-13154 (-----) [007] dnh1 24572.872677: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
36334           <...>-13154 (-----) [007] d..2 24572.872679: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
36335  appEventThread-23905 (23896) [003] d..2 24572.872688: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
36336           <...>-13131 (-----) [002] ...1 24572.872690: tracing_mark_write: E|13131
36337           <...>-13131 (-----) [002] ...1 24572.872694: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
36338           <...>-13131 (-----) [002] ...1 24572.872699: tracing_mark_write: E|13131
36339           <...>-13131 (-----) [002] ...1 24572.872703: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
36340           <...>-13131 (-----) [002] ...1 24572.872707: tracing_mark_write: E|13131
36341           <...>-13131 (-----) [002] ...1 24572.872710: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
36342<...>-24151 ( 24151) [007] d..2 24572.872786: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
36343           <...>-13131 (-----) [002] ...1 24572.872810: tracing_mark_write: E|13131
36344           <...>-13131 (-----) [002] ...1 24572.872814: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
36345  surfaceflinger-23896 (23896) [000] ...1 24572.872814: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
36346  surfaceflinger-23896 (23896) [000] ...1 24572.872818: tracing_mark_write: E|23896
36347           <...>-13131 (-----) [002] d..2 24572.872823: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
36348     logd.writer-563   (  555) [002] d..2 24572.872858: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13171 next_prio=110
36349  surfaceflinger-23896 (23896) [000] .... 24572.872862: binder_transaction: transaction=1669572 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
36350  surfaceflinger-23896 (23896) [000] ...2 24572.872882: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
36351  surfaceflinger-23896 (23896) [000] d..4 24572.872889: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=005
36352           <...>-13171 (-----) [002] d..2 24572.872906: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
36353  surfaceflinger-23896 (23896) [000] d..5 24572.872910: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
36354           <...>-13171 (-----) [002] dn.3 24572.872940: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
36355  surfaceflinger-23896 (23896) [000] d..2 24572.872947: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
36356           <...>-13171 (-----) [002] d..2 24572.872948: sched_switch: prev_comm=id.nn.benchmark prev_pid=13171 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
36357  HwBinder:598_3-633   (  598) [002] .... 24572.872955: binder_transaction_received: transaction=1669572
36358  HwBinder:598_3-633   (  598) [002] ...1 24572.872995: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
36359  HwBinder:598_3-633   (  598) [002] ...1 24572.873119: tracing_mark_write: B|598|HWCSession::PresentDisplay::
36360  HwBinder:598_3-633   (  598) [002] ...1 24572.873647: tracing_mark_write: B|598|HWDeviceDRM::Validate::
36361  HwBinder:598_3-633   (  598) [002] ...1 24572.874069: tracing_mark_write: E|598
36362  HwBinder:598_3-633   (  598) [002] ...1 24572.874172: tracing_mark_write: B|598|HWDeviceDRM::Commit::
36363  HwBinder:598_3-633   (  598) [002] ...1 24572.874178: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
36364  HwBinder:598_3-633   (  598) [002] d..2 24572.874508: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
36365           <...>-13154 (-----) [007] dnh1 24572.874531: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
36366           <...>-13154 (-----) [007] d..2 24572.874556: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
36367  HwBinder:598_3-633   (  598) [002] d.h3 24572.874557: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
36368  HwBinder:598_3-633   (  598) [002] d.h3 24572.874568: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
36369 id.nn.benchmark-13155 (13131) [004] dnh1 24572.874571: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
36370 id.nn.benchmark-13155 (13131) [004] d..2 24572.874574: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
36371  HwBinder:598_3-633   (  598) [002] d.h4 24572.874577: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
36372         sugov:4-560   (  560) [004] d..2 24572.874578: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
36373 id.nn.benchmark-13159 (13131) [001] d..2 24572.874584: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
36374         sugov:0-559   (  559) [001] d..2 24572.874591: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
36375  HwBinder:598_3-633   (  598) [002] ...1 24572.874636: tracing_mark_write: E|598
36376  HwBinder:598_3-633   (  598) [002] ...1 24572.874639: tracing_mark_write: E|598
36377  HwBinder:598_3-633   (  598) [002] ...1 24572.874673: tracing_mark_write: E|598
36378  HwBinder:598_3-633   (  598) [002] ...1 24572.874709: tracing_mark_write: E|598
36379  HwBinder:598_3-633   (  598) [002] .... 24572.874719: binder_transaction: transaction=1669573 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
36380  HwBinder:598_3-633   (  598) [002] d..2 24572.874733: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
36381  HwBinder:598_3-633   (  598) [002] d..3 24572.874743: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
36382  HwBinder:598_3-633   (  598) [002] .... 24572.874745: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
36383 id.nn.benchmark-13156 (13131) [000] d..2 24572.874751: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
36384  surfaceflinger-23896 (23896) [000] .... 24572.874755: binder_transaction_received: transaction=1669573
36385  HwBinder:598_3-633   (  598) [002] d..2 24572.874789: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
36386     logd.writer-563   (  555) [002] d..2 24572.874908: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13171 next_prio=110
36387           <...>-13171 (-----) [002] d..2 24572.874948: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
36388           <...>-13171 (-----) [002] d..3 24572.874956: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
36389  surfaceflinger-23896 (23896) [000] d..2 24572.875042: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
36390           <...>-13171 (-----) [002] d..2 24572.875255: sched_switch: prev_comm=id.nn.benchmark prev_pid=13171 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13172 next_prio=110
36391           <...>-13172 (-----) [002] ...1 24572.875279: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
36392           <...>-13172 (-----) [002] ...1 24572.875284: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
36393           <...>-13172 (-----) [002] ...1 24572.875405: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36394           <...>-13172 (-----) [002] ...1 24572.875411: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36395 id.nn.benchmark-13158 (13131) [006] d..3 24572.875671: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
36396 id.nn.benchmark-13158 (13131) [006] d..2 24572.875679: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
36397 id.nn.benchmark-13156 (13131) [000] dnh1 24572.875682: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
36398 id.nn.benchmark-13156 (13131) [000] d..2 24572.875688: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
36399          <idle>-0     (-----) [006] d..1 24572.875693: cpu_idle: state=0 cpu_id=6
36400           <...>-13157 (-----) [005] d..2 24572.875709: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
36401          <idle>-0     (-----) [006] .n.1 24572.875717: cpu_idle: state=4294967295 cpu_id=6
36402          <idle>-0     (-----) [005] d..1 24572.875718: cpu_idle: state=0 cpu_id=5
36403          <idle>-0     (-----) [006] d..2 24572.875740: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
36404     migration/0-13    (   13) [000] d.h3 24572.875740: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
36405     migration/0-13    (   13) [000] d.h3 24572.875752: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
36406          <idle>-0     (-----) [005] dnh2 24572.875758: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
36407          <idle>-0     (-----) [005] .n.1 24572.875760: cpu_idle: state=4294967295 cpu_id=5
36408     migration/0-13    (   13) [000] d.h4 24572.875762: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
36409          <idle>-0     (-----) [005] d..2 24572.875763: 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
36410     migration/0-13    (   13) [000] d..2 24572.875769: 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
36411         sugov:4-560   (  560) [005] d..2 24572.875772: 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
36412          <idle>-0     (-----) [005] d..1 24572.875775: cpu_idle: state=0 cpu_id=5
36413         sugov:0-559   (  559) [000] d..2 24572.875784: 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
36414          <idle>-0     (-----) [000] d..1 24572.875799: cpu_idle: state=0 cpu_id=0
36415 crtc_commit:111-253   (  253) [007] d..2 24572.875955: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
36416          <idle>-0     (-----) [005] ...1 24572.875964: cpu_idle: state=4294967295 cpu_id=5
36417          <idle>-0     (-----) [005] d..1 24572.875965: cpu_idle: state=0 cpu_id=5
36418 id.nn.benchmark-13155 (13131) [004] d..3 24572.875975: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
36419 id.nn.benchmark-13155 (13131) [004] d..2 24572.875984: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
36420 id.nn.benchmark-13159 (13131) [001] dnh1 24572.875986: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
36421 id.nn.benchmark-13159 (13131) [001] d..2 24572.875990: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
36422          <idle>-0     (-----) [004] d..1 24572.875990: cpu_idle: state=0 cpu_id=4
36423          <idle>-0     (-----) [004] .n.1 24572.876014: cpu_idle: state=4294967295 cpu_id=4
36424          <idle>-0     (-----) [004] d..2 24572.876033: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
36425     migration/1-17    (   17) [001] d..2 24572.876045: 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
36426          <idle>-0     (-----) [001] d..1 24572.876055: cpu_idle: state=0 cpu_id=1
36427           <...>-13172 (-----) [002] d..1 24572.877073: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=004
36428           <...>-13172 (-----) [002] d..1 24572.877093: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
36429          <idle>-0     (-----) [005] dnh2 24572.877094: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
36430          <idle>-0     (-----) [005] .n.1 24572.877098: cpu_idle: state=4294967295 cpu_id=5
36431          <idle>-0     (-----) [005] dn.2 24572.877099: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
36432          <idle>-0     (-----) [005] d..2 24572.877101: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
36433           <...>-13172 (-----) [002] d..1 24572.877104: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=006
36434 id.nn.benchmark-13156 (13131) [006] d.h1 24572.877115: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=006
36435           <...>-13154 (-----) [007] d.s1 24572.877557: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
36436 id.nn.benchmark-13155 (13131) [005] d.s2 24572.877560: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
36437          <idle>-0     (-----) [001] d.s3 24572.877587: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
36438 id.nn.benchmark-13155 (13131) [005] d.s3 24572.877592: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
36439 id.nn.benchmark-13156 (13131) [006] d.H2 24572.877592: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
36440           <...>-13172 (-----) [002] dnh1 24572.877594: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
36441 id.nn.benchmark-13159 (13131) [004] d..2 24572.877611: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
36442          <idle>-0     (-----) [001] dns4 24572.877613: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
36443           <...>-13172 (-----) [002] d..2 24572.877614: sched_switch: prev_comm=id.nn.benchmark prev_pid=13172 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
36444          <idle>-0     (-----) [001] .n.1 24572.877624: cpu_idle: state=4294967295 cpu_id=1
36445 id.nn.benchmark-13156 (13131) [006] d.H3 24572.877625: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
36446 id.nn.benchmark-13156 (13131) [006] d.H2 24572.877626: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
36447     rcu_preempt-7     (    7) [002] d..2 24572.877627: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13172 next_prio=110
36448  kworker/u16:15-18488 (18488) [004] d..2 24572.877649: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
36449          <idle>-0     (-----) [001] d..2 24572.877651: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
36450         sugov:4-560   (  560) [004] d..2 24572.877653: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
36451          <idle>-0     (-----) [000] .n.1 24572.877659: cpu_idle: state=4294967295 cpu_id=0
36452     kworker/1:1-13091 (13091) [001] dnh1 24572.877664: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
36453          <idle>-0     (-----) [000] d..2 24572.877666: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
36454     kworker/1:1-13091 (13091) [001] d..2 24572.877670: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
36455         sugov:0-559   (  559) [001] d..2 24572.877677: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
36456  kworker/u16:15-18488 (18488) [004] d..2 24572.877722: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
36457 id.nn.benchmark-13160 (13131) [003] d.s2 24572.877754: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
36458     kworker/1:1-13091 (13091) [001] d..2 24572.877765: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
36459 id.nn.benchmark-13159 (13131) [004] d.h1 24572.877786: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
36460 id.nn.benchmark-13159 (13131) [004] dnh1 24572.877788: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
36461 id.nn.benchmark-13159 (13131) [004] d..2 24572.877791: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
36462  kworker/u16:15-18488 (18488) [004] d..2 24572.877884: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
36463 id.nn.benchmark-13160 (13131) [003] d.s2 24572.877905: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
36464 id.nn.benchmark-13159 (13131) [004] d.h1 24572.877926: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
36465 id.nn.benchmark-13159 (13131) [004] dnh1 24572.877927: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
36466 id.nn.benchmark-13159 (13131) [004] d..2 24572.877929: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
36467  kworker/u16:15-18488 (18488) [004] d..2 24572.877933: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
36468           <...>-13172 (-----) [002] ...1 24572.878112: tracing_mark_write: E|13131
36469           <...>-13172 (-----) [002] ...1 24572.878116: tracing_mark_write: E|13131
36470           <...>-13172 (-----) [002] ...1 24572.878131: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36471           <...>-13172 (-----) [002] ...1 24572.878136: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36472           <...>-13157 (-----) [000] d.h2 24572.878483: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
36473           <...>-13157 (-----) [000] dnh3 24572.878493: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
36474           <...>-13157 (-----) [000] d..2 24572.878512: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
36475     kworker/0:1-13012 (13012) [000] d..2 24572.878517: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
36476     kworker/0:1-13012 (13012) [000] d..3 24572.878521: sched_blocked_reason: pid=13091 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
36477     kworker/0:1-13012 (13012) [000] d..3 24572.878527: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
36478     kworker/0:1-13012 (13012) [000] d..2 24572.878533: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
36479 id.nn.benchmark-13158 (13131) [001] d..2 24572.878536: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
36480     kworker/1:1-13091 (13091) [001] d..2 24572.878608: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
36481           <...>-13172 (-----) [002] ...1 24572.878836: tracing_mark_write: E|13131
36482           <...>-13172 (-----) [002] ...1 24572.878840: tracing_mark_write: E|13131
36483           <...>-13172 (-----) [002] ...1 24572.878858: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36484           <...>-13172 (-----) [002] ...1 24572.878863: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36485           <...>-13172 (-----) [002] ...1 24572.879195: tracing_mark_write: E|13131
36486           <...>-13172 (-----) [002] ...1 24572.879199: tracing_mark_write: E|13131
36487           <...>-13172 (-----) [002] ...1 24572.879210: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36488           <...>-13172 (-----) [002] ...1 24572.879214: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36489           <...>-13172 (-----) [002] ...1 24572.879457: tracing_mark_write: E|13131
36490           <...>-13172 (-----) [002] ...1 24572.879461: tracing_mark_write: E|13131
36491           <...>-13172 (-----) [002] ...1 24572.879471: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36492           <...>-13172 (-----) [002] ...1 24572.879475: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36493           <...>-13172 (-----) [002] ...1 24572.879871: tracing_mark_write: E|13131
36494           <...>-13172 (-----) [002] ...1 24572.879875: tracing_mark_write: E|13131
36495           <...>-13172 (-----) [002] ...1 24572.879886: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36496           <...>-13172 (-----) [002] ...1 24572.879891: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36497           <...>-13172 (-----) [002] ...1 24572.880279: tracing_mark_write: E|13131
36498           <...>-13172 (-----) [002] ...1 24572.880282: tracing_mark_write: E|13131
36499           <...>-13172 (-----) [002] ...1 24572.880301: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36500           <...>-13172 (-----) [002] ...1 24572.880304: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36501           <...>-13172 (-----) [002] ...1 24572.880489: tracing_mark_write: E|13131
36502           <...>-13172 (-----) [002] ...1 24572.880493: tracing_mark_write: E|13131
36503           <...>-13172 (-----) [002] ...1 24572.880506: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36504           <...>-13172 (-----) [002] ...1 24572.880510: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36505           <...>-13172 (-----) [002] ...1 24572.880584: tracing_mark_write: E|13131
36506           <...>-13172 (-----) [002] ...1 24572.880588: tracing_mark_write: E|13131
36507           <...>-13172 (-----) [002] ...1 24572.880599: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
36508           <...>-13172 (-----) [002] ...1 24572.880604: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
36509 id.nn.benchmark-13155 (13131) [005] d.s2 24572.880890: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
36510           <...>-13157 (-----) [000] d.s2 24572.880899: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
36511 id.nn.benchmark-13155 (13131) [005] d.s3 24572.880901: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
36512 id.nn.benchmark-13159 (13131) [004] d..2 24572.880907: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
36513           <...>-13157 (-----) [000] d.s3 24572.880911: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
36514           <...>-13172 (-----) [002] d..2 24572.880917: sched_switch: prev_comm=id.nn.benchmark prev_pid=13172 prev_prio=110 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
36515     rcu_preempt-7     (    7) [002] d..2 24572.880925: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
36516     rcu_preempt-7     (    7) [002] d..3 24572.880937: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
36517     rcu_preempt-7     (    7) [002] d..2 24572.880939: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
36518     rcu_preempt-7     (    7) [002] d..3 24572.880948: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
36519     rcu_preempt-7     (    7) [002] d..2 24572.880957: 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
36520         rcuop/2-29    (   29) [002] d..2 24572.880962: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
36521         rcuop/2-29    (   29) [002] d..3 24572.880977: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
36522         rcuop/2-29    (   29) [002] d..2 24572.881012: 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
36523         rcuop/0-10    (   10) [002] d..2 24572.881022: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
36524         rcuop/3-37    (   37) [002] d..2 24572.881032: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
36525  kworker/u16:15-18488 (18488) [004] d..2 24572.881211: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
36526     logd.writer-563   (  555) [002] d..2 24572.881991: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13172 next_prio=110
36527           <...>-13172 (-----) [002] ...1 24572.882019: tracing_mark_write: E|13131
36528           <...>-13172 (-----) [002] ...1 24572.882023: tracing_mark_write: E|13131
36529           <...>-13172 (-----) [002] ...1 24572.882035: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
36530           <...>-13172 (-----) [002] ...1 24572.882039: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
36531           <...>-13172 (-----) [002] ...1 24572.882088: tracing_mark_write: E|13131
36532           <...>-13172 (-----) [002] ...1 24572.882091: tracing_mark_write: E|13131
36533           <...>-13172 (-----) [002] ...1 24572.882099: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
36534           <...>-13172 (-----) [002] ...1 24572.882103: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
36535           <...>-13172 (-----) [002] ...1 24572.882119: tracing_mark_write: E|13131
36536           <...>-13172 (-----) [002] ...1 24572.882122: tracing_mark_write: E|13131
36537           <...>-13172 (-----) [002] ...1 24572.882132: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
36538           <...>-13172 (-----) [002] ...1 24572.882134: tracing_mark_write: E|13131
36539           <...>-13172 (-----) [002] ...1 24572.882143: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
36540           <...>-13172 (-----) [002] ...1 24572.882147: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
36541           <...>-13172 (-----) [002] ...1 24572.882999: tracing_mark_write: E|13131
36542           <...>-13172 (-----) [002] ...1 24572.883002: tracing_mark_write: E|13131
36543           <...>-13172 (-----) [002] ...1 24572.883010: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36544           <...>-13172 (-----) [002] ...1 24572.883013: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36545           <...>-13172 (-----) [002] ...1 24572.883097: tracing_mark_write: E|13131
36546           <...>-13172 (-----) [002] ...1 24572.883100: tracing_mark_write: E|13131
36547           <...>-13172 (-----) [002] d..2 24572.883137: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
36548           <...>-13172 (-----) [002] d..3 24572.883146: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
36549           <...>-13172 (-----) [002] ...1 24572.883163: tracing_mark_write: E|13131
36550           <...>-13172 (-----) [002] d..1 24572.883168: sched_waking: comm=id.nn.benchmark pid=13171 prio=110 target_cpu=002
36551 id.nn.benchmark-13156 (13131) [006] dnh1 24572.883191: sched_wakeup: comm=id.nn.benchmark pid=13171 prio=110 target_cpu=006
36552 id.nn.benchmark-13156 (13131) [006] d..2 24572.883217: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13171 next_prio=110
36553           <...>-13172 (-----) [002] d.h3 24572.883218: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
36554           <...>-13171 (-----) [006] d..2 24572.883225: sched_switch: prev_comm=id.nn.benchmark prev_pid=13171 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
36555           <...>-13172 (-----) [002] d.h3 24572.883227: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
36556 id.nn.benchmark-13159 (13131) [004] dnh1 24572.883230: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
36557 id.nn.benchmark-13159 (13131) [004] d..2 24572.883233: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
36558           <...>-13172 (-----) [002] d.h4 24572.883235: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
36559         sugov:4-560   (  560) [004] d..2 24572.883237: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
36560 id.nn.benchmark-13158 (13131) [001] d..2 24572.883244: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
36561           <...>-13172 (-----) [002] ...1 24572.883251: tracing_mark_write: E|13131
36562         sugov:0-559   (  559) [001] d..2 24572.883253: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
36563           <...>-13172 (-----) [002] d..1 24572.883447: sched_waking: comm=id.nn.benchmark pid=13171 prio=110 target_cpu=006
36564 id.nn.benchmark-13156 (13131) [006] dnh1 24572.883460: sched_wakeup: comm=id.nn.benchmark pid=13171 prio=110 target_cpu=006
36565 id.nn.benchmark-13156 (13131) [006] d..2 24572.883462: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13171 next_prio=110
36566           <...>-13172 (-----) [002] d..2 24572.883505: sched_switch: prev_comm=id.nn.benchmark prev_pid=13172 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
36567           <...>-13171 (-----) [006] d..1 24572.883521: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
36568     logd.writer-563   (  555) [002] dnh1 24572.883543: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
36569     logd.writer-563   (  555) [002] d..2 24572.883549: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
36570           <...>-13171 (-----) [006] d..1 24572.883562: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
36571           <...>-13131 (-----) [002] d..2 24572.883563: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
36572     logd.writer-563   (  555) [002] dnh1 24572.883579: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
36573     logd.writer-563   (  555) [002] d..2 24572.883585: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
36574           <...>-13171 (-----) [006] d..2 24572.883592: sched_switch: prev_comm=id.nn.benchmark prev_pid=13171 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
36575           <...>-13131 (-----) [002] ...1 24572.883606: tracing_mark_write: E|13131
36576           <...>-13131 (-----) [002] ...1 24572.883611: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
36577           <...>-13131 (-----) [002] ...1 24572.883617: tracing_mark_write: E|13131
36578           <...>-13131 (-----) [002] ...1 24572.883621: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
36579           <...>-13131 (-----) [002] ...1 24572.883625: tracing_mark_write: E|13131
36580           <...>-13131 (-----) [002] ...1 24572.883932: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
36581           <...>-13131 (-----) [002] ...1 24572.883972: tracing_mark_write: E|13131
36582           <...>-13131 (-----) [002] ...1 24572.883976: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
36583           <...>-13131 (-----) [002] ...1 24572.883981: tracing_mark_write: E|13131
36584           <...>-13131 (-----) [002] ...1 24572.883985: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
36585           <...>-13131 (-----) [002] ...1 24572.883989: tracing_mark_write: E|13131
36586           <...>-13131 (-----) [002] ...1 24572.883992: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
36587           <...>-13131 (-----) [002] ...1 24572.884095: tracing_mark_write: E|13131
36588           <...>-13131 (-----) [002] ...1 24572.884100: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
36589           <...>-13131 (-----) [002] d..2 24572.884109: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
36590     logd.writer-563   (  555) [002] d..2 24572.884179: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13173 next_prio=110
36591           <...>-13173 (-----) [002] d..2 24572.884249: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
36592           <...>-13173 (-----) [002] d..3 24572.884256: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
36593           <...>-13157 (-----) [000] d.h4 24572.884398: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
36594           <...>-13157 (-----) [000] d.h4 24572.884420: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
36595 id.nn.benchmark-13156 (13131) [006] dnh1 24572.884422: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=006
36596 id.nn.benchmark-13156 (13131) [006] d..2 24572.884425: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
36597 id.nn.benchmark-13159 (13131) [004] dnh1 24572.884435: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
36598  crtc_event:111-254   (  254) [006] d..2 24572.884436: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
36599 id.nn.benchmark-13159 (13131) [004] d..2 24572.884437: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
36600           <...>-13157 (-----) [000] d.h2 24572.884464: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
36601           <...>-13157 (-----) [000] d.h2 24572.884474: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
36602 id.nn.benchmark-13156 (13131) [006] dnh1 24572.884478: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
36603 id.nn.benchmark-13156 (13131) [006] d..2 24572.884480: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
36604           <...>-13157 (-----) [000] d.h3 24572.884482: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
36605         sugov:4-560   (  560) [006] d..2 24572.884483: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
36606 id.nn.benchmark-13158 (13131) [001] d..2 24572.884490: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
36607         sugov:0-559   (  559) [001] d..2 24572.884496: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
36608           <...>-13173 (-----) [002] d..2 24572.884530: sched_switch: prev_comm=id.nn.benchmark prev_pid=13173 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
36609 crtc_commit:111-253   (  253) [004] d..2 24572.884530: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
36610     logd.writer-563   (  555) [002] d..2 24572.884703: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13174 next_prio=110
36611           <...>-13174 (-----) [002] ...1 24572.884752: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
36612           <...>-13174 (-----) [002] ...1 24572.884757: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
36613           <...>-13174 (-----) [002] d..2 24572.884814: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
36614           <...>-13174 (-----) [002] d..3 24572.884822: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
36615           <...>-13174 (-----) [002] ...1 24572.884889: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36616           <...>-13174 (-----) [002] ...1 24572.884894: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36617           <...>-13157 (-----) [000] d.h4 24572.886740: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
36618 id.nn.benchmark-13156 (13131) [006] dnh1 24572.886755: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
36619 id.nn.benchmark-13156 (13131) [006] d..2 24572.886758: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
36620 crtc_commit:111-253   (  253) [006] d..2 24572.886790: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
36621           <...>-13174 (-----) [002] ...1 24572.886956: tracing_mark_write: E|13131
36622           <...>-13174 (-----) [002] ...1 24572.886960: tracing_mark_write: E|13131
36623           <...>-13174 (-----) [002] ...1 24572.886970: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36624           <...>-13174 (-----) [002] ...1 24572.886975: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36625           <...>-13157 (-----) [000] d.h4 24572.887047: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=006
36626 id.nn.benchmark-13156 (13131) [006] dnh1 24572.887058: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=006
36627 id.nn.benchmark-13156 (13131) [006] d..2 24572.887061: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
36628  crtc_event:111-254   (  254) [006] d..2 24572.887064: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
36629 id.nn.benchmark-13159 (13131) [004] d.s2 24572.887554: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=006
36630 id.nn.benchmark-13155 (13131) [005] d.s2 24572.887558: sched_waking: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
36631 id.nn.benchmark-13159 (13131) [004] d.s3 24572.887561: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=006
36632 id.nn.benchmark-13155 (13131) [005] dns3 24572.887563: sched_wakeup: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
36633           <...>-13174 (-----) [002] d.s1 24572.887565: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
36634 id.nn.benchmark-13155 (13131) [005] d..2 24572.887566: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/5:0 next_pid=24254 next_prio=120
36635 id.nn.benchmark-13156 (13131) [006] d..2 24572.887567: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
36636  crtc_event:111-254   (  254) [006] d..2 24572.887574: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
36637     kworker/5:0-24254 (24254) [005] d..2 24572.887579: sched_switch: prev_comm=kworker/5:0 prev_pid=24254 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
36638 id.nn.benchmark-13156 (13131) [006] dnh1 24572.887589: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=006
36639 id.nn.benchmark-13156 (13131) [006] d..2 24572.887614: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
36640           <...>-13174 (-----) [002] d.H3 24572.887615: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
36641           <...>-13174 (-----) [002] d.H3 24572.887623: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
36642     rcu_preempt-7     (    7) [006] dnh1 24572.887626: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
36643     rcu_preempt-7     (    7) [006] d..2 24572.887629: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
36644           <...>-13174 (-----) [002] d.H4 24572.887631: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
36645         sugov:4-560   (  560) [006] d..2 24572.887632: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
36646     rcu_preempt-7     (    7) [006] d..2 24572.887635: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
36647 id.nn.benchmark-13158 (13131) [001] d..2 24572.887640: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
36648     rcu_preempt-7     (    7) [006] d..3 24572.887647: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
36649         sugov:0-559   (  559) [001] d..2 24572.887649: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
36650     rcu_preempt-7     (    7) [006] d..2 24572.887667: 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
36651         rcuop/6-61    (   61) [006] d..2 24572.887669: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=002
36652         rcuop/6-61    (   61) [006] d..3 24572.887679: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=006
36653         rcuop/6-61    (   61) [006] d..2 24572.887695: 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
36654         rcuop/7-69    (   69) [006] d..2 24572.887708: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
36655           <...>-13174 (-----) [002] ...1 24572.887765: tracing_mark_write: E|13131
36656           <...>-13174 (-----) [002] ...1 24572.887768: tracing_mark_write: E|13131
36657           <...>-13174 (-----) [002] ...1 24572.887783: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36658           <...>-13174 (-----) [002] ...1 24572.887787: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36659           <...>-13174 (-----) [002] d.h1 24572.888027: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
36660 id.nn.benchmark-13156 (13131) [006] dnh1 24572.888050: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=006
36661 id.nn.benchmark-13156 (13131) [006] d..2 24572.888052: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
36662        DispSync-23904 (23896) [006] d..1 24572.888069: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
36663           <...>-13174 (-----) [002] dnh1 24572.888084: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
36664        DispSync-23904 (23896) [006] d..2 24572.888086: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
36665           <...>-13174 (-----) [002] d..2 24572.888091: sched_switch: prev_comm=id.nn.benchmark prev_pid=13174 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
36666   sfEventThread-23906 (23896) [002] d..3 24572.888128: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=007
36667 id.nn.benchmark-13156 (13131) [006] dnh1 24572.888150: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=006
36668 id.nn.benchmark-13156 (13131) [006] d..2 24572.888152: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
36669   sfEventThread-23906 (23896) [002] d..3 24572.888155: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
36670   sfEventThread-23906 (23896) [002] d..4 24572.888165: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
36671           <...>-13157 (-----) [000] d..2 24572.888174: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
36672   sfEventThread-23906 (23896) [002] d..2 24572.888179: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
36673     logd.writer-563   (  555) [002] d..2 24572.888299: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13174 next_prio=110
36674<...>-24042 ( 23968) [006] .... 24572.888353: binder_transaction: transaction=1669574 dest_node=1271163 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
36675<...>-24042 ( 23968) [006] d..4 24572.888358: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
36676<...>-24042 ( 23968) [006] d..5 24572.888372: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
36677 id.nn.benchmark-13159 (13131) [004] d..2 24572.888378: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
36678<...>-23903 ( 23896) [004] .... 24572.888382: binder_transaction_received: transaction=1669574
36679           <...>-13174 (-----) [002] ...1 24572.888397: tracing_mark_write: E|13131
36680<...>-23903 ( 23896) [004] d..1 24572.888400: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
36681           <...>-13174 (-----) [002] ...1 24572.888401: tracing_mark_write: E|13131
36682           <...>-13174 (-----) [002] dnh1 24572.888411: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
36683<...>-23903 ( 23896) [004] d..2 24572.888415: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
36684           <...>-13174 (-----) [002] d..2 24572.888418: sched_switch: prev_comm=id.nn.benchmark prev_pid=13174 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
36685   sfEventThread-23906 (23896) [002] d..2 24572.888440: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13174 next_prio=110
36686  surfaceflinger-23896 (23896) [000] d..1 24572.888444: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
36687           <...>-13174 (-----) [002] ...1 24572.888451: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36688<...>-24042 ( 23968) [006] .... 24572.888453: binder_transaction: transaction=1669575 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
36689  surfaceflinger-23896 (23896) [000] d..2 24572.888456: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
36690           <...>-13174 (-----) [002] d..2 24572.888461: sched_switch: prev_comm=id.nn.benchmark prev_pid=13174 prev_prio=110 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
36691<...>-24042 ( 23968) [006] ...2 24572.888466: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
36692<...>-24042 ( 23968) [006] d..4 24572.888468: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=004
36693<...>-24042 ( 23968) [006] d..5 24572.888478: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=004
36694   sfEventThread-23906 (23896) [002] d..2 24572.888478: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13174 next_prio=110
36695           <...>-13174 (-----) [002] ...1 24572.888482: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36696<...>-24042 ( 23968) [006] d..2 24572.888483: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
36697 id.nn.benchmark-13159 (13131) [004] d..2 24572.888484: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
36698<...>-23903 ( 23896) [004] .... 24572.888486: binder_transaction_received: transaction=1669575
36699<...>-23903 ( 23896) [004] .... 24572.888521: binder_transaction: transaction=1669576 dest_node=0 dest_proc=23968 dest_thread=24042 reply=1 flags=0x0 code=0x0
36700<...>-23903 ( 23896) [004] d..2 24572.888523: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=006
36701<...>-23903 ( 23896) [004] d..3 24572.888531: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=006
36702<...>-23903 ( 23896) [004] .... 24572.888532: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
36703 id.nn.benchmark-13156 (13131) [006] d..2 24572.888538: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
36704<...>-24042 ( 23968) [006] .... 24572.888540: binder_transaction_received: transaction=1669576
36705<...>-23903 ( 23896) [004] d..2 24572.888546: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
36706<...>-24042 ( 23968) [006] d..2 24572.888567: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
36707 id.nn.benchmark-13156 (13131) [006] d.h1 24572.889008: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=006
36708 id.nn.benchmark-13156 (13131) [006] d.h2 24572.889039: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
36709           <...>-13174 (-----) [002] dnh1 24572.889040: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
36710 id.nn.benchmark-13156 (13131) [006] dnh3 24572.889043: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
36711 id.nn.benchmark-13156 (13131) [006] dnh2 24572.889043: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
36712           <...>-13174 (-----) [002] d..2 24572.889047: sched_switch: prev_comm=id.nn.benchmark prev_pid=13174 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
36713 id.nn.benchmark-13156 (13131) [006] d..2 24572.889050: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
36714 id.nn.benchmark-13158 (13131) [001] dnh1 24572.889054: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
36715         sugov:4-560   (  560) [006] d..2 24572.889054: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
36716        DispSync-23904 (23896) [002] d..1 24572.889057: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
36717 id.nn.benchmark-13158 (13131) [001] d..2 24572.889060: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
36718         sugov:0-559   (  559) [001] d..2 24572.889067: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
36719        DispSync-23904 (23896) [002] d..2 24572.889069: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
36720 id.nn.benchmark-13160 (13131) [003] d..2 24572.889079: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
36721        DispSync-23904 (23896) [002] d..2 24572.889081: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13174 next_prio=110
36722  appEventThread-23905 (23896) [003] d..1 24572.889103: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
36723  appEventThread-23905 (23896) [003] d..2 24572.889114: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
36724           <...>-13174 (-----) [002] d..2 24572.889122: sched_switch: prev_comm=id.nn.benchmark prev_pid=13174 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
36725  appEventThread-23905 (23896) [003] d..2 24572.889127: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
36726        DispSync-23904 (23896) [002] d..2 24572.889131: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13174 next_prio=110
36727  surfaceflinger-23896 (23896) [000] ...1 24572.889212: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
36728  surfaceflinger-23896 (23896) [000] ...1 24572.889216: tracing_mark_write: E|23896
36729  surfaceflinger-23896 (23896) [000] .... 24572.889258: binder_transaction: transaction=1669577 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
36730  surfaceflinger-23896 (23896) [000] ...2 24572.889280: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
36731  surfaceflinger-23896 (23896) [000] d..4 24572.889286: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
36732  surfaceflinger-23896 (23896) [000] d..5 24572.889300: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
36733           <...>-13174 (-----) [002] d..2 24572.889307: sched_switch: prev_comm=id.nn.benchmark prev_pid=13174 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
36734  surfaceflinger-23896 (23896) [000] d..2 24572.889311: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
36735  HwBinder:598_3-633   (  598) [002] .... 24572.889314: binder_transaction_received: transaction=1669577
36736  HwBinder:598_3-633   (  598) [002] ...1 24572.889351: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
36737  HwBinder:598_3-633   (  598) [002] ...1 24572.889470: tracing_mark_write: B|598|HWCSession::PresentDisplay::
36738  HwBinder:598_3-633   (  598) [002] ...1 24572.889969: tracing_mark_write: B|598|HWDeviceDRM::Validate::
36739  HwBinder:598_3-633   (  598) [002] ...1 24572.890373: tracing_mark_write: E|598
36740  HwBinder:598_3-633   (  598) [002] ...1 24572.890475: tracing_mark_write: B|598|HWDeviceDRM::Commit::
36741  HwBinder:598_3-633   (  598) [002] ...1 24572.890481: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
36742  HwBinder:598_3-633   (  598) [002] d..2 24572.890771: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
36743 id.nn.benchmark-13156 (13131) [006] dnh1 24572.890787: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
36744 id.nn.benchmark-13156 (13131) [006] d..2 24572.890789: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
36745  HwBinder:598_3-633   (  598) [002] ...1 24572.890840: tracing_mark_write: E|598
36746  HwBinder:598_3-633   (  598) [002] ...1 24572.890843: tracing_mark_write: E|598
36747  HwBinder:598_3-633   (  598) [002] ...1 24572.890875: tracing_mark_write: E|598
36748 id.nn.benchmark-13155 (13131) [005] d.s2 24572.890889: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
36749 id.nn.benchmark-13155 (13131) [005] d.s3 24572.890901: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
36750 id.nn.benchmark-13159 (13131) [004] d..2 24572.890908: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
36751  HwBinder:598_3-633   (  598) [002] ...1 24572.890931: tracing_mark_write: E|598
36752  HwBinder:598_3-633   (  598) [002] .... 24572.890942: binder_transaction: transaction=1669578 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
36753  HwBinder:598_3-633   (  598) [002] d..2 24572.890960: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
36754  HwBinder:598_3-633   (  598) [002] d..3 24572.890970: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
36755  HwBinder:598_3-633   (  598) [002] .... 24572.890976: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
36756           <...>-13157 (-----) [000] d..2 24572.890978: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
36757  surfaceflinger-23896 (23896) [000] .... 24572.890983: binder_transaction_received: transaction=1669578
36758  HwBinder:598_3-633   (  598) [002] d..2 24572.891023: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13174 next_prio=110
36759           <...>-13174 (-----) [002] ...1 24572.891036: tracing_mark_write: E|13131
36760           <...>-13174 (-----) [002] ...1 24572.891040: tracing_mark_write: E|13131
36761           <...>-13174 (-----) [002] ...1 24572.891054: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36762           <...>-13174 (-----) [002] ...1 24572.891059: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36763  kworker/u16:15-18488 (18488) [004] d..2 24572.891094: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
36764 id.nn.benchmark-13160 (13131) [003] d.s2 24572.891132: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
36765 id.nn.benchmark-13159 (13131) [004] d.h1 24572.891157: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
36766 id.nn.benchmark-13159 (13131) [004] dnh1 24572.891159: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
36767 id.nn.benchmark-13159 (13131) [004] d..2 24572.891161: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
36768  surfaceflinger-23896 (23896) [000] d..2 24572.891237: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
36769  kworker/u16:15-18488 (18488) [004] d..2 24572.891371: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
36770 crtc_commit:111-253   (  253) [006] d..2 24572.892209: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
36771           <...>-13174 (-----) [002] ...1 24572.892293: tracing_mark_write: E|13131
36772           <...>-13174 (-----) [002] ...1 24572.892297: tracing_mark_write: E|13131
36773           <...>-13174 (-----) [002] ...1 24572.892309: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36774           <...>-13174 (-----) [002] ...1 24572.892314: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36775           <...>-13174 (-----) [002] ...1 24572.892708: tracing_mark_write: E|13131
36776           <...>-13174 (-----) [002] ...1 24572.892712: tracing_mark_write: E|13131
36777           <...>-13174 (-----) [002] ...1 24572.892732: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36778           <...>-13174 (-----) [002] ...1 24572.892736: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36779           <...>-13174 (-----) [002] ...1 24572.892923: tracing_mark_write: E|13131
36780           <...>-13174 (-----) [002] ...1 24572.892926: tracing_mark_write: E|13131
36781           <...>-13174 (-----) [002] ...1 24572.892941: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36782           <...>-13174 (-----) [002] ...1 24572.892945: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36783           <...>-13174 (-----) [002] ...1 24572.893016: tracing_mark_write: E|13131
36784           <...>-13174 (-----) [002] ...1 24572.893020: tracing_mark_write: E|13131
36785           <...>-13174 (-----) [002] ...1 24572.893031: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
36786           <...>-13174 (-----) [002] ...1 24572.893036: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
36787           <...>-13174 (-----) [002] ...1 24572.893339: tracing_mark_write: E|13131
36788           <...>-13174 (-----) [002] ...1 24572.893342: tracing_mark_write: E|13131
36789           <...>-13174 (-----) [002] ...1 24572.893352: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
36790           <...>-13174 (-----) [002] ...1 24572.893356: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
36791           <...>-13174 (-----) [002] ...1 24572.893407: tracing_mark_write: E|13131
36792           <...>-13174 (-----) [002] ...1 24572.893410: tracing_mark_write: E|13131
36793           <...>-13174 (-----) [002] ...1 24572.893419: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
36794           <...>-13174 (-----) [002] ...1 24572.893422: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
36795           <...>-13174 (-----) [002] ...1 24572.893437: tracing_mark_write: E|13131
36796           <...>-13174 (-----) [002] ...1 24572.893440: tracing_mark_write: E|13131
36797           <...>-13174 (-----) [002] ...1 24572.893450: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
36798           <...>-13174 (-----) [002] ...1 24572.893453: tracing_mark_write: E|13131
36799           <...>-13174 (-----) [002] ...1 24572.893462: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
36800           <...>-13174 (-----) [002] ...1 24572.893467: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
36801 id.nn.benchmark-13156 (13131) [006] d.s1 24572.894224: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=006
36802 id.nn.benchmark-13156 (13131) [006] dns2 24572.894234: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=006
36803 id.nn.benchmark-13156 (13131) [006] d..2 24572.894238: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
36804     rcu_preempt-7     (    7) [006] d..2 24572.894240: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
36805     rcu_preempt-7     (    7) [006] d..2 24572.894247: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
36806           <...>-13174 (-----) [002] dnh1 24572.894253: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
36807     rcu_preempt-7     (    7) [006] d..2 24572.894259: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
36808           <...>-13174 (-----) [002] dnh1 24572.894259: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
36809           <...>-13174 (-----) [002] d..2 24572.894265: sched_switch: prev_comm=id.nn.benchmark prev_pid=13174 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
36810         rcuop/0-10    (   10) [002] d..2 24572.894278: 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
36811         rcuop/2-29    (   29) [002] d..2 24572.894301: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13174 next_prio=110
36812           <...>-13174 (-----) [002] ...1 24572.894398: tracing_mark_write: E|13131
36813           <...>-13174 (-----) [002] ...1 24572.894401: tracing_mark_write: E|13131
36814           <...>-13174 (-----) [002] ...1 24572.894411: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36815           <...>-13174 (-----) [002] ...1 24572.894415: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36816           <...>-13174 (-----) [002] ...1 24572.894499: tracing_mark_write: E|13131
36817           <...>-13174 (-----) [002] ...1 24572.894502: tracing_mark_write: E|13131
36818           <...>-13174 (-----) [002] d..2 24572.894557: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
36819           <...>-13174 (-----) [002] d..3 24572.894565: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
36820           <...>-13174 (-----) [002] ...1 24572.894587: tracing_mark_write: E|13131
36821           <...>-13174 (-----) [002] d..1 24572.894592: sched_waking: comm=id.nn.benchmark pid=13173 prio=110 target_cpu=002
36822 id.nn.benchmark-13156 (13131) [006] dnh1 24572.894617: sched_wakeup: comm=id.nn.benchmark pid=13173 prio=110 target_cpu=006
36823 id.nn.benchmark-13156 (13131) [006] d..2 24572.894643: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13173 next_prio=110
36824           <...>-13174 (-----) [002] d.h3 24572.894644: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
36825           <...>-13173 (-----) [006] d..2 24572.894655: sched_switch: prev_comm=id.nn.benchmark prev_pid=13173 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
36826           <...>-13174 (-----) [002] d.h3 24572.894656: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
36827 id.nn.benchmark-13159 (13131) [004] dnh1 24572.894659: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
36828 id.nn.benchmark-13159 (13131) [004] d..2 24572.894662: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
36829           <...>-13174 (-----) [002] d.h4 24572.894664: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
36830         sugov:4-560   (  560) [004] d..2 24572.894666: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
36831 id.nn.benchmark-13158 (13131) [001] d..2 24572.894673: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
36832           <...>-13174 (-----) [002] ...1 24572.894680: tracing_mark_write: E|13131
36833         sugov:0-559   (  559) [001] d..2 24572.894681: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
36834           <...>-13174 (-----) [002] d..1 24572.894899: sched_waking: comm=id.nn.benchmark pid=13173 prio=110 target_cpu=006
36835 id.nn.benchmark-13156 (13131) [006] dnh1 24572.894912: sched_wakeup: comm=id.nn.benchmark pid=13173 prio=110 target_cpu=006
36836 id.nn.benchmark-13156 (13131) [006] d..2 24572.894915: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13173 next_prio=110
36837           <...>-13174 (-----) [002] d..2 24572.894964: sched_switch: prev_comm=id.nn.benchmark prev_pid=13174 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
36838           <...>-13173 (-----) [006] d..1 24572.894978: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
36839     logd.writer-563   (  555) [002] dnh1 24572.894998: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
36840     logd.writer-563   (  555) [002] d..2 24572.895004: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
36841           <...>-13173 (-----) [006] d..1 24572.895019: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
36842           <...>-13131 (-----) [002] d..2 24572.895019: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
36843     logd.writer-563   (  555) [002] dnh1 24572.895036: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
36844     logd.writer-563   (  555) [002] d..2 24572.895041: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
36845           <...>-13173 (-----) [006] d..2 24572.895049: sched_switch: prev_comm=id.nn.benchmark prev_pid=13173 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
36846           <...>-13131 (-----) [002] ...1 24572.895062: tracing_mark_write: E|13131
36847           <...>-13131 (-----) [002] ...1 24572.895067: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
36848           <...>-13131 (-----) [002] ...1 24572.895074: tracing_mark_write: E|13131
36849           <...>-13131 (-----) [002] ...1 24572.895077: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
36850           <...>-13131 (-----) [002] ...1 24572.895082: tracing_mark_write: E|13131
36851           <...>-13131 (-----) [002] ...1 24572.895392: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
36852           <...>-13131 (-----) [002] ...1 24572.895430: tracing_mark_write: E|13131
36853           <...>-13131 (-----) [002] ...1 24572.895435: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
36854           <...>-13131 (-----) [002] ...1 24572.895440: tracing_mark_write: E|13131
36855           <...>-13131 (-----) [002] ...1 24572.895445: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
36856           <...>-13131 (-----) [002] ...1 24572.895449: tracing_mark_write: E|13131
36857           <...>-13131 (-----) [002] ...1 24572.895453: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
36858           <...>-13131 (-----) [002] ...1 24572.895576: tracing_mark_write: E|13131
36859           <...>-13131 (-----) [002] ...1 24572.895580: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
36860           <...>-13131 (-----) [002] d..2 24572.895589: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
36861     logd.writer-563   (  555) [002] d..2 24572.895685: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13175 next_prio=110
36862           <...>-13175 (-----) [002] d..2 24572.895735: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
36863           <...>-13175 (-----) [002] d..3 24572.895743: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
36864           <...>-13175 (-----) [002] d..2 24572.896032: sched_switch: prev_comm=id.nn.benchmark prev_pid=13175 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
36865     logd.writer-563   (  555) [002] d..2 24572.896242: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13176 next_prio=110
36866           <...>-13176 (-----) [002] d.h4 24572.896273: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
36867           <...>-13176 (-----) [002] d.h4 24572.896285: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
36868 id.nn.benchmark-13156 (13131) [006] dnh1 24572.896289: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
36869 id.nn.benchmark-13156 (13131) [006] d..2 24572.896293: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
36870           <...>-13176 (-----) [002] dnh5 24572.896296: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
36871         sugov:4-560   (  560) [006] d..2 24572.896297: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
36872           <...>-13176 (-----) [002] d..2 24572.896301: sched_switch: prev_comm=id.nn.benchmark prev_pid=13176 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
36873         sugov:0-559   (  559) [002] d..2 24572.896308: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13176 next_prio=110
36874           <...>-13176 (-----) [002] ...1 24572.896334: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
36875           <...>-13176 (-----) [002] ...1 24572.896339: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
36876           <...>-13176 (-----) [002] d..2 24572.896397: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
36877           <...>-13176 (-----) [002] d..3 24572.896405: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
36878           <...>-13176 (-----) [002] ...1 24572.896471: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36879           <...>-13176 (-----) [002] ...1 24572.896476: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36880 id.nn.benchmark-13155 (13131) [005] d.h2 24572.897583: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
36881 id.nn.benchmark-13155 (13131) [005] d.h3 24572.897589: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
36882 id.nn.benchmark-13155 (13131) [005] d.h2 24572.897590: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
36883 id.nn.benchmark-13156 (13131) [006] d..2 24572.897595: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
36884         sugov:4-560   (  560) [006] d..2 24572.897598: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
36885           <...>-13176 (-----) [002] dnh1 24572.897601: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
36886           <...>-13176 (-----) [002] d..2 24572.897607: sched_switch: prev_comm=id.nn.benchmark prev_pid=13176 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
36887         sugov:0-559   (  559) [002] d..2 24572.897615: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
36888     logd.writer-563   (  555) [002] d..2 24572.897723: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13176 next_prio=110
36889           <...>-13176 (-----) [002] ...1 24572.898635: tracing_mark_write: E|13131
36890           <...>-13176 (-----) [002] ...1 24572.898639: tracing_mark_write: E|13131
36891           <...>-13176 (-----) [002] ...1 24572.898650: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36892           <...>-13176 (-----) [002] ...1 24572.898654: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36893           <...>-13176 (-----) [002] ...1 24572.899350: tracing_mark_write: E|13131
36894           <...>-13176 (-----) [002] ...1 24572.899354: tracing_mark_write: E|13131
36895           <...>-13176 (-----) [002] ...1 24572.899367: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36896           <...>-13176 (-----) [002] ...1 24572.899371: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36897           <...>-13176 (-----) [002] ...1 24572.899705: tracing_mark_write: E|13131
36898           <...>-13176 (-----) [002] ...1 24572.899709: tracing_mark_write: E|13131
36899           <...>-13176 (-----) [002] ...1 24572.899719: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36900           <...>-13176 (-----) [002] ...1 24572.899723: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36901           <...>-13176 (-----) [002] ...1 24572.899952: tracing_mark_write: E|13131
36902           <...>-13176 (-----) [002] ...1 24572.899956: tracing_mark_write: E|13131
36903           <...>-13176 (-----) [002] ...1 24572.899966: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36904           <...>-13176 (-----) [002] ...1 24572.899970: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36905           <...>-13176 (-----) [002] ...1 24572.900353: tracing_mark_write: E|13131
36906           <...>-13176 (-----) [002] ...1 24572.900357: tracing_mark_write: E|13131
36907           <...>-13176 (-----) [002] ...1 24572.900367: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36908           <...>-13176 (-----) [002] ...1 24572.900371: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36909           <...>-13176 (-----) [002] ...1 24572.900744: tracing_mark_write: E|13131
36910           <...>-13176 (-----) [002] ...1 24572.900747: tracing_mark_write: E|13131
36911           <...>-13176 (-----) [002] ...1 24572.900764: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36912           <...>-13176 (-----) [002] ...1 24572.900768: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36913           <...>-13157 (-----) [000] d.h4 24572.900885: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=006
36914 id.nn.benchmark-13156 (13131) [006] d.s1 24572.900888: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=006
36915 id.nn.benchmark-13155 (13131) [005] d.s2 24572.900890: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
36916           <...>-13157 (-----) [000] d.h5 24572.900916: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
36917           <...>-13176 (-----) [002] dnh1 24572.900922: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
36918           <...>-13176 (-----) [002] dnh1 24572.900925: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
36919 id.nn.benchmark-13155 (13131) [005] d.H3 24572.900943: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
36920           <...>-13157 (-----) [000] d.h4 24572.900944: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
36921           <...>-13176 (-----) [002] d..2 24572.900949: sched_switch: prev_comm=id.nn.benchmark prev_pid=13176 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
36922 id.nn.benchmark-13155 (13131) [005] d.H4 24572.900951: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
36923 id.nn.benchmark-13155 (13131) [005] d.H3 24572.900951: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
36924 id.nn.benchmark-13156 (13131) [006] dnh1 24572.900955: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
36925 id.nn.benchmark-13156 (13131) [006] d..2 24572.900958: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
36926  crtc_event:111-254   (  254) [002] d..2 24572.900970: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
36927         sugov:4-560   (  560) [006] d..2 24572.900970: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
36928 id.nn.benchmark-13159 (13131) [004] d..2 24572.900974: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
36929           <...>-13157 (-----) [000] dnH1 24572.900977: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
36930     rcu_preempt-7     (    7) [002] d..2 24572.900983: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
36931           <...>-13157 (-----) [000] d..2 24572.900984: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
36932         sugov:0-559   (  559) [000] d..2 24572.900992: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
36933 crtc_commit:111-253   (  253) [004] d..2 24572.901064: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
36934  kworker/u16:15-18488 (18488) [002] d..2 24572.901311: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13176 next_prio=110
36935           <...>-13176 (-----) [002] ...1 24572.901390: tracing_mark_write: E|13131
36936           <...>-13176 (-----) [002] ...1 24572.901394: tracing_mark_write: E|13131
36937           <...>-13176 (-----) [002] ...1 24572.901407: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36938           <...>-13176 (-----) [002] ...1 24572.901412: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36939           <...>-13176 (-----) [002] ...1 24572.901481: tracing_mark_write: E|13131
36940           <...>-13176 (-----) [002] ...1 24572.901485: tracing_mark_write: E|13131
36941           <...>-13176 (-----) [002] ...1 24572.901494: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
36942           <...>-13176 (-----) [002] ...1 24572.901498: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
36943           <...>-13176 (-----) [002] ...1 24572.901758: tracing_mark_write: E|13131
36944           <...>-13176 (-----) [002] ...1 24572.901761: tracing_mark_write: E|13131
36945           <...>-13176 (-----) [002] ...1 24572.901770: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
36946           <...>-13176 (-----) [002] ...1 24572.901774: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
36947           <...>-13176 (-----) [002] ...1 24572.901818: tracing_mark_write: E|13131
36948           <...>-13176 (-----) [002] ...1 24572.901821: tracing_mark_write: E|13131
36949           <...>-13176 (-----) [002] ...1 24572.901830: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
36950           <...>-13176 (-----) [002] ...1 24572.901834: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
36951           <...>-13176 (-----) [002] ...1 24572.901850: tracing_mark_write: E|13131
36952           <...>-13176 (-----) [002] ...1 24572.901852: tracing_mark_write: E|13131
36953           <...>-13176 (-----) [002] ...1 24572.901863: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
36954           <...>-13176 (-----) [002] ...1 24572.901866: tracing_mark_write: E|13131
36955           <...>-13176 (-----) [002] ...1 24572.901874: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
36956           <...>-13176 (-----) [002] ...1 24572.901879: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
36957           <...>-13176 (-----) [002] ...1 24572.902731: tracing_mark_write: E|13131
36958           <...>-13176 (-----) [002] ...1 24572.902734: tracing_mark_write: E|13131
36959           <...>-13176 (-----) [002] ...1 24572.902741: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
36960           <...>-13176 (-----) [002] ...1 24572.902745: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
36961           <...>-13176 (-----) [002] ...1 24572.902828: tracing_mark_write: E|13131
36962           <...>-13176 (-----) [002] ...1 24572.902831: tracing_mark_write: E|13131
36963           <...>-13176 (-----) [002] d..2 24572.902866: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
36964           <...>-13176 (-----) [002] d..3 24572.902875: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
36965           <...>-13176 (-----) [002] ...1 24572.902893: tracing_mark_write: E|13131
36966           <...>-13176 (-----) [002] d..1 24572.902897: sched_waking: comm=id.nn.benchmark pid=13175 prio=110 target_cpu=002
36967           <...>-13176 (-----) [002] dn.2 24572.902908: sched_wakeup: comm=id.nn.benchmark pid=13175 prio=110 target_cpu=002
36968           <...>-13176 (-----) [002] d..2 24572.902914: sched_switch: prev_comm=id.nn.benchmark prev_pid=13176 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13175 next_prio=110
36969           <...>-13175 (-----) [002] d..2 24572.902926: sched_switch: prev_comm=id.nn.benchmark prev_pid=13175 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13176 next_prio=110
36970           <...>-13176 (-----) [002] ...1 24572.902941: tracing_mark_write: E|13131
36971           <...>-13176 (-----) [002] d..1 24572.903126: sched_waking: comm=id.nn.benchmark pid=13175 prio=110 target_cpu=002
36972           <...>-13176 (-----) [002] dn.2 24572.903136: sched_wakeup: comm=id.nn.benchmark pid=13175 prio=110 target_cpu=002
36973           <...>-13176 (-----) [002] d..2 24572.903141: sched_switch: prev_comm=id.nn.benchmark prev_pid=13176 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13175 next_prio=110
36974           <...>-13157 (-----) [000] d.h4 24572.903219: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
36975 id.nn.benchmark-13159 (13131) [004] dnh1 24572.903231: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
36976 id.nn.benchmark-13159 (13131) [004] d..2 24572.903234: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
36977           <...>-13175 (-----) [002] d..1 24572.903239: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
36978 crtc_commit:111-253   (  253) [004] d..2 24572.903258: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
36979 id.nn.benchmark-13155 (13131) [005] dnh1 24572.903263: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
36980 id.nn.benchmark-13155 (13131) [005] d..2 24572.903290: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
36981           <...>-13175 (-----) [002] d.h3 24572.903290: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
36982           <...>-13131 (-----) [005] d..2 24572.903296: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
36983           <...>-13175 (-----) [002] d.h3 24572.903298: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
36984 id.nn.benchmark-13156 (13131) [006] dnh1 24572.903302: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
36985 id.nn.benchmark-13156 (13131) [006] d..2 24572.903304: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
36986           <...>-13175 (-----) [002] d.h4 24572.903307: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
36987         sugov:4-560   (  560) [006] d..2 24572.903308: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
36988           <...>-13157 (-----) [000] d..2 24572.903314: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
36989         sugov:0-559   (  559) [000] d..2 24572.903322: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
36990           <...>-13175 (-----) [002] d..1 24572.903358: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
36991           <...>-13175 (-----) [002] dn.2 24572.903375: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
36992           <...>-13175 (-----) [002] d..2 24572.903399: sched_switch: prev_comm=id.nn.benchmark prev_pid=13175 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
36993           <...>-13131 (-----) [002] ...1 24572.903419: tracing_mark_write: E|13131
36994           <...>-13131 (-----) [002] ...1 24572.903424: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
36995           <...>-13131 (-----) [002] ...1 24572.903429: tracing_mark_write: E|13131
36996           <...>-13131 (-----) [002] ...1 24572.903433: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
36997           <...>-13131 (-----) [002] ...1 24572.903439: tracing_mark_write: E|13131
36998           <...>-13157 (-----) [000] d.h4 24572.903526: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
36999           <...>-13157 (-----) [000] d.h5 24572.903535: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
37000           <...>-13131 (-----) [002] d..2 24572.903544: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
37001  crtc_event:111-254   (  254) [002] d..2 24572.903555: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
37002           <...>-13131 (-----) [002] ...1 24572.903767: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
37003           <...>-13131 (-----) [002] ...1 24572.903802: tracing_mark_write: E|13131
37004           <...>-13131 (-----) [002] ...1 24572.903806: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
37005           <...>-13131 (-----) [002] ...1 24572.903811: tracing_mark_write: E|13131
37006           <...>-13131 (-----) [002] ...1 24572.903816: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
37007           <...>-13131 (-----) [002] ...1 24572.903820: tracing_mark_write: E|13131
37008           <...>-13131 (-----) [002] ...1 24572.903825: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
37009           <...>-13131 (-----) [002] ...1 24572.903906: tracing_mark_write: E|13131
37010           <...>-13131 (-----) [002] ...1 24572.903910: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
37011           <...>-13131 (-----) [002] d..2 24572.903919: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13175 next_prio=110
37012           <...>-13175 (-----) [002] d..2 24572.903970: sched_switch: prev_comm=id.nn.benchmark prev_pid=13175 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13176 next_prio=110
37013           <...>-13176 (-----) [002] d..2 24572.903998: sched_switch: prev_comm=id.nn.benchmark prev_pid=13176 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
37014     logd.writer-563   (  555) [002] d..2 24572.904093: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13177 next_prio=110
37015           <...>-13177 (-----) [002] d..2 24572.904142: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
37016           <...>-13177 (-----) [002] d..3 24572.904150: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
37017 id.nn.benchmark-13159 (13131) [004] d.s2 24572.904220: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
37018 id.nn.benchmark-13160 (13131) [003] d.s2 24572.904228: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
37019 id.nn.benchmark-13159 (13131) [004] d.s3 24572.904237: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
37020 id.nn.benchmark-13159 (13131) [004] d.H3 24572.904257: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
37021           <...>-13154 (-----) [007] d..2 24572.904258: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
37022 id.nn.benchmark-13159 (13131) [004] d.H4 24572.904263: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
37023 id.nn.benchmark-13159 (13131) [004] d.H3 24572.904263: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
37024  crtc_event:111-254   (  254) [007] d..2 24572.904266: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
37025 id.nn.benchmark-13156 (13131) [006] d..2 24572.904269: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
37026 id.nn.benchmark-13155 (13131) [005] dnh1 24572.904269: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
37027         sugov:4-560   (  560) [006] d..2 24572.904272: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
37028           <...>-13157 (-----) [000] dnh1 24572.904293: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
37029 id.nn.benchmark-13155 (13131) [005] d..2 24572.904294: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
37030     rcu_preempt-7     (    7) [005] d..2 24572.904296: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
37031           <...>-13157 (-----) [000] d..2 24572.904299: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
37032         sugov:0-559   (  559) [000] d..2 24572.904305: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
37033     rcu_preempt-7     (    7) [005] d..3 24572.904307: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=007
37034     rcu_preempt-7     (    7) [005] d..2 24572.904311: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
37035           <...>-13154 (-----) [007] d..2 24572.904313: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
37036         rcuop/6-61    (   61) [007] d..2 24572.904315: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=006
37037         rcuop/6-61    (   61) [007] d..3 24572.904328: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=006
37038 id.nn.benchmark-13156 (13131) [006] d..2 24572.904335: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=rcuop/7 next_pid=69 next_prio=120
37039         rcuop/6-61    (   61) [007] d..2 24572.904341: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
37040         rcuop/7-69    (   69) [006] d..2 24572.904347: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
37041           <...>-13177 (-----) [002] d..2 24572.904444: sched_switch: prev_comm=id.nn.benchmark prev_pid=13177 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
37042     logd.writer-563   (  555) [002] d.h1 24572.904464: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
37043 id.nn.benchmark-13155 (13131) [005] dnh1 24572.904486: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=005
37044 id.nn.benchmark-13155 (13131) [005] d..2 24572.904489: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
37045        DispSync-23904 (23896) [005] d..1 24572.904500: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
37046     logd.writer-563   (  555) [002] dnh1 24572.904520: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
37047        DispSync-23904 (23896) [005] d..2 24572.904521: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
37048     logd.writer-563   (  555) [002] d..2 24572.904526: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
37049   sfEventThread-23906 (23896) [002] d..3 24572.904563: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=006
37050 id.nn.benchmark-13159 (13131) [004] dnh1 24572.904585: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=004
37051 id.nn.benchmark-13159 (13131) [004] d..2 24572.904587: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
37052   sfEventThread-23906 (23896) [002] d..3 24572.904590: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
37053   sfEventThread-23906 (23896) [002] d..4 24572.904600: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
37054           <...>-13157 (-----) [000] d..2 24572.904607: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
37055   sfEventThread-23906 (23896) [002] d..2 24572.904613: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13178 next_prio=110
37056           <...>-13178 (-----) [002] ...1 24572.904639: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
37057           <...>-13178 (-----) [002] ...1 24572.904644: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
37058           <...>-13178 (-----) [002] ...1 24572.904753: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
37059           <...>-13178 (-----) [002] ...1 24572.904758: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
37060<...>-24042 ( 23968) [004] .... 24572.904777: binder_transaction: transaction=1669579 dest_node=1271163 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
37061<...>-24042 ( 23968) [004] d..4 24572.904782: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
37062<...>-24042 ( 23968) [004] d..5 24572.904796: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
37063 id.nn.benchmark-13155 (13131) [005] d..2 24572.904802: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
37064<...>-23903 ( 23896) [005] .... 24572.904806: binder_transaction_received: transaction=1669579
37065<...>-23903 ( 23896) [005] d..1 24572.904819: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
37066           <...>-13178 (-----) [002] dnh1 24572.904831: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
37067<...>-23903 ( 23896) [005] d..2 24572.904834: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
37068           <...>-13178 (-----) [002] d..2 24572.904838: sched_switch: prev_comm=id.nn.benchmark prev_pid=13178 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
37069   sfEventThread-23906 (23896) [002] d..2 24572.904858: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13178 next_prio=110
37070  surfaceflinger-23896 (23896) [000] d..1 24572.904867: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
37071<...>-24042 ( 23968) [004] .... 24572.904872: binder_transaction: transaction=1669580 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
37072  surfaceflinger-23896 (23896) [000] d..2 24572.904878: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
37073<...>-24042 ( 23968) [004] ...2 24572.904884: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
37074<...>-24042 ( 23968) [004] d..4 24572.904886: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
37075           <...>-13178 (-----) [002] d..2 24572.904886: sched_switch: prev_comm=id.nn.benchmark prev_pid=13178 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
37076<...>-24042 ( 23968) [004] d..5 24572.904894: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
37077   sfEventThread-23906 (23896) [002] d..2 24572.904898: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13178 next_prio=110
37078<...>-24042 ( 23968) [004] d..2 24572.904898: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
37079 id.nn.benchmark-13155 (13131) [005] d..2 24572.904899: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
37080<...>-23903 ( 23896) [005] .... 24572.904901: binder_transaction_received: transaction=1669580
37081<...>-23903 ( 23896) [005] .... 24572.904937: binder_transaction: transaction=1669581 dest_node=0 dest_proc=23968 dest_thread=24042 reply=1 flags=0x0 code=0x0
37082<...>-23903 ( 23896) [005] d..2 24572.904940: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=004
37083<...>-23903 ( 23896) [005] d..3 24572.904948: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=004
37084<...>-23903 ( 23896) [005] .... 24572.904949: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
37085 id.nn.benchmark-13159 (13131) [004] d..2 24572.904955: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
37086<...>-24042 ( 23968) [004] .... 24572.904957: binder_transaction_received: transaction=1669581
37087<...>-23903 ( 23896) [005] d..2 24572.904963: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
37088<...>-24042 ( 23968) [004] d..2 24572.904983: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
37089  surfaceflinger-23896 (23896) [000] ...1 24572.905620: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
37090  surfaceflinger-23896 (23896) [000] ...1 24572.905624: tracing_mark_write: E|23896
37091  surfaceflinger-23896 (23896) [000] .... 24572.905664: binder_transaction: transaction=1669582 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
37092  surfaceflinger-23896 (23896) [000] ...2 24572.905683: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
37093  surfaceflinger-23896 (23896) [000] d..4 24572.905688: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
37094  surfaceflinger-23896 (23896) [000] d..5 24572.905701: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
37095           <...>-13178 (-----) [002] d..2 24572.905710: sched_switch: prev_comm=id.nn.benchmark prev_pid=13178 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
37096  surfaceflinger-23896 (23896) [000] d..2 24572.905712: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
37097  HwBinder:598_3-633   (  598) [002] .... 24572.905717: binder_transaction_received: transaction=1669582
37098  HwBinder:598_3-633   (  598) [002] ...1 24572.905752: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
37099  HwBinder:598_3-633   (  598) [002] ...1 24572.905871: tracing_mark_write: B|598|HWCSession::PresentDisplay::
37100  HwBinder:598_3-633   (  598) [002] ...1 24572.906346: tracing_mark_write: B|598|HWDeviceDRM::Validate::
37101  HwBinder:598_3-633   (  598) [002] ...1 24572.906733: tracing_mark_write: E|598
37102  HwBinder:598_3-633   (  598) [002] ...1 24572.906834: tracing_mark_write: B|598|HWDeviceDRM::Commit::
37103  HwBinder:598_3-633   (  598) [002] ...1 24572.906840: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
37104  HwBinder:598_3-633   (  598) [002] d..2 24572.907129: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
37105 id.nn.benchmark-13159 (13131) [004] dnh1 24572.907145: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
37106 id.nn.benchmark-13159 (13131) [004] d..2 24572.907149: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
37107  HwBinder:598_3-633   (  598) [002] ...1 24572.907197: tracing_mark_write: E|598
37108  HwBinder:598_3-633   (  598) [002] ...1 24572.907200: tracing_mark_write: E|598
37109  HwBinder:598_3-633   (  598) [002] ...1 24572.907232: tracing_mark_write: E|598
37110 id.nn.benchmark-13156 (13131) [006] d..3 24572.907258: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
37111  HwBinder:598_3-633   (  598) [002] ...1 24572.907265: tracing_mark_write: E|598
37112 id.nn.benchmark-13156 (13131) [006] d..2 24572.907266: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
37113 id.nn.benchmark-13160 (13131) [003] dnh1 24572.907270: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
37114  HwBinder:598_3-633   (  598) [002] .... 24572.907275: binder_transaction: transaction=1669583 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
37115 id.nn.benchmark-13160 (13131) [003] d..2 24572.907276: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
37116           <...>-13154 (-----) [007] d..2 24572.907278: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
37117          <idle>-0     (-----) [006] d..1 24572.907281: cpu_idle: state=0 cpu_id=6
37118  HwBinder:598_3-633   (  598) [002] d..2 24572.907289: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
37119  HwBinder:598_3-633   (  598) [002] d..3 24572.907302: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
37120          <idle>-0     (-----) [006] .n.1 24572.907304: cpu_idle: state=4294967295 cpu_id=6
37121  HwBinder:598_3-633   (  598) [002] .... 24572.907326: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
37122          <idle>-0     (-----) [006] d..2 24572.907327: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
37123<...>-33 ( 33) [003] d.h3 24572.907328: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
37124<...>-33 ( 33) [003] d.h3 24572.907336: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
37125 id.nn.benchmark-13160 (13131) [006] dnh1 24572.907339: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
37126 id.nn.benchmark-13160 (13131) [006] d..2 24572.907341: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
37127<...>-33 ( 33) [003] d.h4 24572.907344: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
37128         sugov:4-560   (  560) [006] d..2 24572.907344: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
37129<...>-33 ( 33) [003] d..2 24572.907352: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
37130           <...>-13157 (-----) [000] d..2 24572.907353: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
37131  surfaceflinger-23896 (23896) [003] .... 24572.907357: binder_transaction_received: transaction=1669583
37132         sugov:0-559   (  559) [000] d..2 24572.907361: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
37133  HwBinder:598_3-633   (  598) [002] d..2 24572.907370: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13178 next_prio=110
37134 id.nn.benchmark-13155 (13131) [005] d..3 24572.907442: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
37135 id.nn.benchmark-13155 (13131) [005] d..2 24572.907450: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
37136           <...>-13157 (-----) [000] dnh1 24572.907452: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
37137           <...>-13157 (-----) [000] d..2 24572.907457: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
37138          <idle>-0     (-----) [005] d..1 24572.907459: cpu_idle: state=0 cpu_id=5
37139          <idle>-0     (-----) [005] .n.1 24572.907481: cpu_idle: state=4294967295 cpu_id=5
37140          <idle>-0     (-----) [005] d..2 24572.907501: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
37141     migration/0-13    (   13) [000] d..2 24572.907519: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
37142 id.nn.benchmark-13158 (13131) [001] d.h2 24572.907558: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
37143 id.nn.benchmark-13158 (13131) [001] dnh3 24572.907565: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
37144 id.nn.benchmark-13158 (13131) [001] d..2 24572.907574: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
37145     migration/1-17    (   17) [001] d..2 24572.907624: 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
37146          <idle>-0     (-----) [001] d..1 24572.907637: cpu_idle: state=0 cpu_id=1
37147  surfaceflinger-23896 (23896) [003] d..2 24572.907649: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37148          <idle>-0     (-----) [003] d..1 24572.907664: cpu_idle: state=0 cpu_id=3
37149 id.nn.benchmark-13159 (13131) [007] d..2 24572.907817: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37150     logd.writer-563   (  555) [000] d..2 24572.907822: 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
37151          <idle>-0     (-----) [007] d..1 24572.907825: cpu_idle: state=0 cpu_id=7
37152          <idle>-0     (-----) [000] d..1 24572.907839: cpu_idle: state=0 cpu_id=0
37153          <idle>-0     (-----) [007] ...1 24572.908016: cpu_idle: state=4294967295 cpu_id=7
37154          <idle>-0     (-----) [007] d..1 24572.908017: cpu_idle: state=0 cpu_id=7
37155           <...>-13178 (-----) [002] d..1 24572.908152: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=007
37156           <...>-13178 (-----) [002] d..1 24572.908166: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
37157          <idle>-0     (-----) [007] dnh2 24572.908169: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=007
37158          <idle>-0     (-----) [007] .n.1 24572.908171: cpu_idle: state=4294967295 cpu_id=7
37159          <idle>-0     (-----) [007] d..2 24572.908174: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
37160           <...>-13178 (-----) [002] d..1 24572.908177: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
37161           <...>-13157 (-----) [005] d.h1 24572.908179: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
37162           <...>-13178 (-----) [002] d..1 24572.908188: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
37163 id.nn.benchmark-13160 (13131) [006] d.h1 24572.908188: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
37164           <...>-13154 (-----) [007] d.h1 24572.908199: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
37165 crtc_commit:111-253   (  253) [004] d..2 24572.908564: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
37166 id.nn.benchmark-13160 (13131) [006] d.s2 24572.910889: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
37167          <idle>-0     (-----) [000] dnH2 24572.910909: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
37168          <idle>-0     (-----) [001] .n.1 24572.910939: cpu_idle: state=4294967295 cpu_id=1
37169          <idle>-0     (-----) [001] d..2 24572.910964: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
37170          <idle>-0     (-----) [000] dnH3 24572.910965: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
37171          <idle>-0     (-----) [000] dnH3 24572.910977: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
37172 id.nn.benchmark-13158 (13131) [004] dnh1 24572.910980: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
37173 id.nn.benchmark-13158 (13131) [004] d..2 24572.910983: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
37174         sugov:4-560   (  560) [004] d..2 24572.910987: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
37175          <idle>-0     (-----) [000] dnH4 24572.910989: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
37176          <idle>-0     (-----) [003] .n.1 24572.910995: cpu_idle: state=4294967295 cpu_id=3
37177          <idle>-0     (-----) [003] d..2 24572.911002: 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
37178          <idle>-0     (-----) [000] .n.1 24572.911038: cpu_idle: state=4294967295 cpu_id=0
37179          <idle>-0     (-----) [000] d..2 24572.911047: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
37180         sugov:0-559   (  559) [003] d..2 24572.911048: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
37181  kworker/u16:15-18488 (18488) [000] d..2 24572.911377: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
37182           <...>-13178 (-----) [002] ...1 24572.911709: tracing_mark_write: E|13131
37183           <...>-13178 (-----) [002] ...1 24572.911714: tracing_mark_write: E|13131
37184           <...>-13178 (-----) [002] ...1 24572.911733: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
37185           <...>-13178 (-----) [002] ...1 24572.911738: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
37186           <...>-13178 (-----) [002] ...1 24572.912437: tracing_mark_write: E|13131
37187           <...>-13178 (-----) [002] ...1 24572.912441: tracing_mark_write: E|13131
37188           <...>-13178 (-----) [002] ...1 24572.912462: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
37189           <...>-13178 (-----) [002] ...1 24572.912467: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
37190           <...>-13178 (-----) [002] ...1 24572.912797: tracing_mark_write: E|13131
37191           <...>-13178 (-----) [002] ...1 24572.912801: tracing_mark_write: E|13131
37192           <...>-13178 (-----) [002] ...1 24572.912812: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
37193           <...>-13178 (-----) [002] ...1 24572.912817: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
37194           <...>-13178 (-----) [002] ...1 24572.913051: tracing_mark_write: E|13131
37195           <...>-13178 (-----) [002] ...1 24572.913054: tracing_mark_write: E|13131
37196           <...>-13178 (-----) [002] ...1 24572.913065: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
37197           <...>-13178 (-----) [002] ...1 24572.913069: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
37198           <...>-13178 (-----) [002] ...1 24572.913466: tracing_mark_write: E|13131
37199           <...>-13178 (-----) [002] ...1 24572.913469: tracing_mark_write: E|13131
37200           <...>-13178 (-----) [002] ...1 24572.913480: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
37201           <...>-13178 (-----) [002] ...1 24572.913484: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
37202           <...>-13178 (-----) [002] ...1 24572.913874: tracing_mark_write: E|13131
37203           <...>-13178 (-----) [002] ...1 24572.913878: tracing_mark_write: E|13131
37204           <...>-13178 (-----) [002] ...1 24572.913897: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
37205           <...>-13178 (-----) [002] ...1 24572.913901: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
37206           <...>-13178 (-----) [002] ...1 24572.914092: tracing_mark_write: E|13131
37207           <...>-13178 (-----) [002] ...1 24572.914096: tracing_mark_write: E|13131
37208           <...>-13178 (-----) [002] ...1 24572.914109: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
37209           <...>-13178 (-----) [002] ...1 24572.914113: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
37210           <...>-13178 (-----) [002] ...1 24572.914184: tracing_mark_write: E|13131
37211           <...>-13178 (-----) [002] ...1 24572.914188: tracing_mark_write: E|13131
37212           <...>-13178 (-----) [002] ...1 24572.914199: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
37213           <...>-13178 (-----) [002] ...1 24572.914203: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
37214           <...>-13157 (-----) [005] d.s1 24572.914219: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
37215           <...>-13157 (-----) [005] dns2 24572.914234: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
37216           <...>-13157 (-----) [005] d..2 24572.914237: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
37217     rcu_preempt-7     (    7) [005] d..2 24572.914243: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
37218           <...>-13178 (-----) [002] ...1 24572.914519: tracing_mark_write: E|13131
37219           <...>-13178 (-----) [002] ...1 24572.914523: tracing_mark_write: E|13131
37220           <...>-13178 (-----) [002] ...1 24572.914533: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
37221           <...>-13178 (-----) [002] ...1 24572.914538: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
37222           <...>-13178 (-----) [002] ...1 24572.914593: tracing_mark_write: E|13131
37223           <...>-13178 (-----) [002] ...1 24572.914596: tracing_mark_write: E|13131
37224           <...>-13178 (-----) [002] ...1 24572.914604: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
37225           <...>-13178 (-----) [002] ...1 24572.914608: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
37226           <...>-13178 (-----) [002] ...1 24572.914624: tracing_mark_write: E|13131
37227           <...>-13178 (-----) [002] ...1 24572.914627: tracing_mark_write: E|13131
37228           <...>-13178 (-----) [002] ...1 24572.914638: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
37229           <...>-13178 (-----) [002] ...1 24572.914641: tracing_mark_write: E|13131
37230           <...>-13178 (-----) [002] ...1 24572.914651: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
37231           <...>-13178 (-----) [002] ...1 24572.914655: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
37232           <...>-13178 (-----) [002] ...1 24572.915507: tracing_mark_write: E|13131
37233           <...>-13178 (-----) [002] ...1 24572.915510: tracing_mark_write: E|13131
37234           <...>-13178 (-----) [002] ...1 24572.915518: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
37235           <...>-13178 (-----) [002] ...1 24572.915521: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
37236           <...>-13178 (-----) [002] ...1 24572.915604: tracing_mark_write: E|13131
37237           <...>-13178 (-----) [002] ...1 24572.915607: tracing_mark_write: E|13131
37238           <...>-13178 (-----) [002] d..2 24572.915657: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
37239           <...>-13178 (-----) [002] d..3 24572.915672: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
37240           <...>-13178 (-----) [002] ...1 24572.915692: tracing_mark_write: E|13131
37241           <...>-13178 (-----) [002] d..1 24572.915697: sched_waking: comm=id.nn.benchmark pid=13177 prio=110 target_cpu=002
37242 id.nn.benchmark-13160 (13131) [006] dnh1 24572.915745: sched_wakeup: comm=id.nn.benchmark pid=13177 prio=110 target_cpu=006
37243           <...>-13178 (-----) [002] d.h3 24572.915747: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
37244 id.nn.benchmark-13160 (13131) [006] d..2 24572.915748: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13177 next_prio=110
37245           <...>-13177 (-----) [006] d..2 24572.915757: sched_switch: prev_comm=id.nn.benchmark prev_pid=13177 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
37246           <...>-13178 (-----) [002] d.h3 24572.915759: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
37247 id.nn.benchmark-13160 (13131) [006] dnh1 24572.915762: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
37248 id.nn.benchmark-13160 (13131) [006] d..2 24572.915765: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
37249           <...>-13178 (-----) [002] d.h4 24572.915767: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
37250         sugov:4-560   (  560) [006] d..2 24572.915768: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
37251 id.nn.benchmark-13156 (13131) [003] d..2 24572.915776: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
37252           <...>-13178 (-----) [002] ...1 24572.915784: tracing_mark_write: E|13131
37253         sugov:0-559   (  559) [003] d..2 24572.915785: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
37254           <...>-13178 (-----) [002] d..1 24572.915986: sched_waking: comm=id.nn.benchmark pid=13177 prio=110 target_cpu=006
37255 id.nn.benchmark-13160 (13131) [006] dnh1 24572.916000: sched_wakeup: comm=id.nn.benchmark pid=13177 prio=110 target_cpu=006
37256 id.nn.benchmark-13160 (13131) [006] d..2 24572.916002: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13177 next_prio=110
37257           <...>-13178 (-----) [002] d..2 24572.916052: sched_switch: prev_comm=id.nn.benchmark prev_pid=13178 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
37258           <...>-13177 (-----) [006] d..1 24572.916062: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
37259     logd.writer-563   (  555) [002] dnh1 24572.916082: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
37260     logd.writer-563   (  555) [002] d..2 24572.916088: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
37261           <...>-13131 (-----) [002] d..2 24572.916102: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
37262           <...>-13177 (-----) [006] d..1 24572.916104: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
37263     logd.writer-563   (  555) [002] dnh1 24572.916119: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
37264     logd.writer-563   (  555) [002] d..2 24572.916124: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
37265           <...>-13177 (-----) [006] d..2 24572.916131: sched_switch: prev_comm=id.nn.benchmark prev_pid=13177 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
37266           <...>-13131 (-----) [002] ...1 24572.916145: tracing_mark_write: E|13131
37267           <...>-13131 (-----) [002] ...1 24572.916150: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
37268           <...>-13131 (-----) [002] ...1 24572.916156: tracing_mark_write: E|13131
37269           <...>-13131 (-----) [002] ...1 24572.916160: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
37270           <...>-13131 (-----) [002] ...1 24572.916165: tracing_mark_write: E|13131
37271           <...>-13131 (-----) [002] ...1 24572.916474: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
37272           <...>-13131 (-----) [002] ...1 24572.916513: tracing_mark_write: E|13131
37273           <...>-13131 (-----) [002] ...1 24572.916518: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
37274           <...>-13131 (-----) [002] ...1 24572.916523: tracing_mark_write: E|13131
37275           <...>-13131 (-----) [002] ...1 24572.916528: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
37276           <...>-13131 (-----) [002] ...1 24572.916532: tracing_mark_write: E|13131
37277           <...>-13131 (-----) [002] ...1 24572.916536: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
37278           <...>-13131 (-----) [002] ...1 24572.916661: tracing_mark_write: E|13131
37279           <...>-13131 (-----) [002] ...1 24572.916665: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
37280           <...>-13131 (-----) [002] d..2 24572.916674: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
37281     logd.writer-563   (  555) [002] d..2 24572.916751: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13179 next_prio=110
37282           <...>-13179 (-----) [002] d..2 24572.916801: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
37283           <...>-13179 (-----) [002] d..3 24572.916810: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
37284           <...>-13179 (-----) [002] d..2 24572.917101: sched_switch: prev_comm=id.nn.benchmark prev_pid=13179 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
37285     logd.writer-563   (  555) [002] d..2 24572.917280: 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
37286          <idle>-0     (-----) [002] d..1 24572.917300: cpu_idle: state=0 cpu_id=2
37287 id.nn.benchmark-13155 (13131) [000] d.h4 24572.917363: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
37288 id.nn.benchmark-13155 (13131) [000] d.h5 24572.917385: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
37289 id.nn.benchmark-13155 (13131) [000] d.h4 24572.917389: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
37290          <idle>-0     (-----) [002] .n.1 24572.917392: cpu_idle: state=4294967295 cpu_id=2
37291          <idle>-0     (-----) [002] d..2 24572.917398: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
37292 id.nn.benchmark-13160 (13131) [006] dnh1 24572.917406: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
37293 id.nn.benchmark-13160 (13131) [006] d..2 24572.917409: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
37294 id.nn.benchmark-13155 (13131) [000] d.h2 24572.917437: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
37295  crtc_event:111-254   (  254) [002] d..2 24572.917443: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37296 id.nn.benchmark-13155 (13131) [000] d.h2 24572.917448: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
37297          <idle>-0     (-----) [002] d..1 24572.917449: cpu_idle: state=0 cpu_id=2
37298           <...>-13157 (-----) [005] dnh1 24572.917451: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
37299           <...>-13157 (-----) [005] d..2 24572.917454: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
37300         sugov:4-560   (  560) [005] d..2 24572.917457: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
37301 id.nn.benchmark-13155 (13131) [000] d.h3 24572.917460: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
37302          <idle>-0     (-----) [002] .n.1 24572.917465: cpu_idle: state=4294967295 cpu_id=2
37303          <idle>-0     (-----) [002] d..2 24572.917470: 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
37304         sugov:0-559   (  559) [002] d..2 24572.917481: 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
37305          <idle>-0     (-----) [002] d..1 24572.917487: cpu_idle: state=0 cpu_id=2
37306 crtc_commit:111-253   (  253) [006] d..2 24572.917500: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
37307 id.nn.benchmark-13160 (13131) [006] d.s2 24572.917558: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
37308          <idle>-0     (-----) [002] ...1 24572.917564: cpu_idle: state=4294967295 cpu_id=2
37309          <idle>-0     (-----) [002] d..1 24572.917566: cpu_idle: state=0 cpu_id=2
37310 id.nn.benchmark-13156 (13131) [003] d.s2 24572.917576: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
37311          <idle>-0     (-----) [002] dnh2 24572.917578: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
37312          <idle>-0     (-----) [002] .n.1 24572.917582: cpu_idle: state=4294967295 cpu_id=2
37313          <idle>-0     (-----) [002] d..2 24572.917587: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
37314           <...>-13157 (-----) [005] dnh1 24572.917600: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
37315  crtc_event:111-254   (  254) [002] d..2 24572.917601: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37316           <...>-13157 (-----) [005] d..2 24572.917603: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
37317     rcu_preempt-7     (    7) [005] d..2 24572.917605: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
37318          <idle>-0     (-----) [002] d..1 24572.917607: cpu_idle: state=0 cpu_id=2
37319     rcu_preempt-7     (    7) [005] d..2 24572.917612: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
37320          <idle>-0     (-----) [002] dnh2 24572.917619: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
37321     rcu_preempt-7     (    7) [005] d..2 24572.917619: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
37322          <idle>-0     (-----) [002] dnh2 24572.917622: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
37323          <idle>-0     (-----) [002] .n.1 24572.917626: cpu_idle: state=4294967295 cpu_id=2
37324          <idle>-0     (-----) [002] d..2 24572.917631: 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
37325         rcuop/0-10    (   10) [002] d..2 24572.917643: 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
37326         rcuop/2-29    (   29) [002] d..2 24572.917673: 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
37327          <idle>-0     (-----) [002] d..1 24572.917679: cpu_idle: state=0 cpu_id=2
37328          <idle>-0     (-----) [002] ...1 24572.918790: cpu_idle: state=4294967295 cpu_id=2
37329          <idle>-0     (-----) [002] d..1 24572.918793: cpu_idle: state=0 cpu_id=2
37330 id.nn.benchmark-13155 (13131) [000] d.h4 24572.919690: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
37331 id.nn.benchmark-13155 (13131) [000] d.h5 24572.919707: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
37332          <idle>-0     (-----) [002] .n.1 24572.919711: cpu_idle: state=4294967295 cpu_id=2
37333          <idle>-0     (-----) [002] d..2 24572.919717: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
37334 id.nn.benchmark-13155 (13131) [000] d.h2 24572.919741: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
37335 id.nn.benchmark-13155 (13131) [000] d.h2 24572.919749: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
37336           <...>-13157 (-----) [005] dnh1 24572.919752: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
37337           <...>-13157 (-----) [005] d..2 24572.919755: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
37338         sugov:4-560   (  560) [005] d..2 24572.919758: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
37339 id.nn.benchmark-13155 (13131) [000] dnh3 24572.919758: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
37340 id.nn.benchmark-13155 (13131) [000] d..2 24572.919764: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
37341 crtc_commit:111-253   (  253) [002] d..2 24572.919782: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
37342         sugov:0-559   (  559) [000] d..2 24572.919787: 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
37343          <idle>-0     (-----) [000] d..1 24572.919798: cpu_idle: state=0 cpu_id=0
37344           <...>-13154 (-----) [007] d..3 24572.919987: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
37345           <...>-13154 (-----) [007] d..2 24572.919994: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37346 id.nn.benchmark-13159 (13131) [001] dnh1 24572.919997: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
37347          <idle>-0     (-----) [007] d..1 24572.919998: cpu_idle: state=0 cpu_id=7
37348 id.nn.benchmark-13159 (13131) [001] d..2 24572.920003: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
37349          <idle>-0     (-----) [000] d.h5 24572.920008: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
37350          <idle>-0     (-----) [000] dnh6 24572.920018: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
37351 id.nn.benchmark-13158 (13131) [004] d..2 24572.920020: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
37352          <idle>-0     (-----) [007] .n.1 24572.920026: cpu_idle: state=4294967295 cpu_id=7
37353          <idle>-0     (-----) [004] d..1 24572.920027: cpu_idle: state=0 cpu_id=4
37354          <idle>-0     (-----) [007] d..2 24572.920045: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
37355          <idle>-0     (-----) [000] .n.1 24572.920045: cpu_idle: state=4294967295 cpu_id=0
37356           <...>-13157 (-----) [005] d..3 24572.920047: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
37357          <idle>-0     (-----) [000] d..2 24572.920052: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
37358           <...>-13157 (-----) [005] d..2 24572.920054: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
37359     migration/1-17    (   17) [001] d..2 24572.920055: 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
37360 id.nn.benchmark-13155 (13131) [002] dnh1 24572.920058: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
37361          <idle>-0     (-----) [005] d..1 24572.920059: cpu_idle: state=0 cpu_id=5
37362 id.nn.benchmark-13155 (13131) [002] d..2 24572.920063: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
37363          <idle>-0     (-----) [001] d..1 24572.920064: cpu_idle: state=0 cpu_id=1
37364  crtc_event:111-254   (  254) [000] d..2 24572.920078: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
37365     migration/2-25    (   25) [002] d..2 24572.920083: 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
37366          <idle>-0     (-----) [002] d..1 24572.920091: cpu_idle: state=0 cpu_id=2
37367 id.nn.benchmark-13160 (13131) [006] d..2 24572.920296: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13180 next_prio=110
37368           <...>-13180 (-----) [006] ...1 24572.920312: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
37369           <...>-13180 (-----) [006] ...1 24572.920314: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
37370           <...>-13180 (-----) [006] d..2 24572.920346: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
37371          <idle>-0     (-----) [002] dnh2 24572.920364: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
37372          <idle>-0     (-----) [002] .n.1 24572.920368: cpu_idle: state=4294967295 cpu_id=2
37373          <idle>-0     (-----) [002] d..2 24572.920374: 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
37374           <...>-13180 (-----) [006] ...1 24572.920385: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
37375           <...>-13180 (-----) [006] ...1 24572.920387: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
37376     logd.writer-563   (  555) [002] d..2 24572.920483: 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
37377          <idle>-0     (-----) [002] d..1 24572.920491: cpu_idle: state=0 cpu_id=2
37378 id.nn.benchmark-13156 (13131) [003] d.h2 24572.920890: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
37379           <...>-13180 (-----) [006] d.s2 24572.920891: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
37380 id.nn.benchmark-13155 (13131) [000] d.h2 24572.920892: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
37381 id.nn.benchmark-13156 (13131) [003] dnh3 24572.920895: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
37382 id.nn.benchmark-13155 (13131) [000] dnh3 24572.920901: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
37383 id.nn.benchmark-13156 (13131) [003] d..2 24572.920903: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
37384          <idle>-0     (-----) [001] dnh2 24572.920911: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
37385 id.nn.benchmark-13155 (13131) [000] d..2 24572.920912: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
37386          <idle>-0     (-----) [001] .n.1 24572.920915: cpu_idle: state=4294967295 cpu_id=1
37387          <idle>-0     (-----) [001] d..2 24572.920922: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
37388          <idle>-0     (-----) [004] .n.1 24572.920925: cpu_idle: state=4294967295 cpu_id=4
37389          <idle>-0     (-----) [005] .n.1 24572.920931: cpu_idle: state=4294967295 cpu_id=5
37390           <...>-13180 (-----) [006] d..1 24572.920947: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=007
37391          <idle>-0     (-----) [005] d..2 24572.920951: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
37392<...>-33 ( 33) [003] d.h3 24572.920952: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
37393          <idle>-0     (-----) [004] d..2 24572.920952: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
37394           <...>-13180 (-----) [006] d..2 24572.920953: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=007
37395 id.nn.benchmark-13155 (13131) [005] d.h1 24572.920954: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=005
37396           <...>-13180 (-----) [006] d..1 24572.920955: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
37397<...>-33 ( 33) [003] d.h3 24572.920966: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
37398           <...>-13180 (-----) [006] d..2 24572.920972: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=006
37399           <...>-13180 (-----) [006] dnh2 24572.920975: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
37400           <...>-13180 (-----) [006] d..2 24572.920978: sched_switch: prev_comm=id.nn.benchmark prev_pid=13180 prev_prio=110 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
37401<...>-33 ( 33) [003] d.h4 24572.920979: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
37402         sugov:4-560   (  560) [006] d..2 24572.920982: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
37403     migration/0-13    (   13) [000] d..2 24572.920984: 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
37404           <...>-13157 (-----) [006] d..2 24572.921000: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13180 next_prio=110
37405           <...>-13180 (-----) [006] d..1 24572.921002: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=006
37406         sugov:0-559   (  559) [000] d.h3 24572.921002: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
37407           <...>-13180 (-----) [006] d..2 24572.921005: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=006
37408           <...>-13180 (-----) [006] d..1 24572.921006: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
37409           <...>-13180 (-----) [006] d..2 24572.921009: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
37410           <...>-13180 (-----) [006] d..1 24572.921014: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=006
37411           <...>-13180 (-----) [006] dn.2 24572.921016: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=006
37412           <...>-13180 (-----) [006] d..2 24572.921019: sched_switch: prev_comm=id.nn.benchmark prev_pid=13180 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
37413 id.nn.benchmark-13160 (13131) [006] d..2 24572.921023: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
37414         sugov:0-559   (  559) [000] d..2 24572.921025: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
37415<...>-33 ( 33) [003] d..2 24572.921029: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=DispSync next_pid=23904 next_prio=97
37416        DispSync-23904 (23896) [003] d..1 24572.921080: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
37417  kworker/u16:15-18488 (18488) [001] .... 24572.921083: clk_set_rate: l3_cluster0_vote_clk 940800000
37418        DispSync-23904 (23896) [003] d..2 24572.921091: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
37419          <idle>-0     (-----) [002] .n.1 24572.921098: cpu_idle: state=4294967295 cpu_id=2
37420          <idle>-0     (-----) [002] d..2 24572.921104: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
37421        DispSync-23904 (23896) [003] d..2 24572.921105: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
37422   sfEventThread-23906 (23896) [002] d..3 24572.921140: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=004
37423 id.nn.benchmark-13156 (13131) [004] dnh1 24572.921159: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=004
37424 id.nn.benchmark-13156 (13131) [004] d..2 24572.921161: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
37425   sfEventThread-23906 (23896) [002] d..3 24572.921163: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
37426   sfEventThread-23906 (23896) [002] d..4 24572.921178: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
37427  kworker/u16:15-18488 (18488) [001] d..2 24572.921184: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
37428   sfEventThread-23906 (23896) [002] d..2 24572.921204: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37429          <idle>-0     (-----) [002] d..1 24572.921212: cpu_idle: state=0 cpu_id=2
37430<...>-24042 ( 23968) [004] .... 24572.921332: binder_transaction: transaction=1669584 dest_node=1271163 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
37431<...>-24042 ( 23968) [004] d..4 24572.921338: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
37432          <idle>-0     (-----) [002] dnh2 24572.921371: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=002
37433          <idle>-0     (-----) [002] .n.1 24572.921375: cpu_idle: state=4294967295 cpu_id=2
37434          <idle>-0     (-----) [002] d..2 24572.921381: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
37435<...>-23903 ( 23896) [002] .... 24572.921386: binder_transaction_received: transaction=1669584
37436<...>-23903 ( 23896) [002] d..1 24572.921411: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
37437<...>-23903 ( 23896) [002] dn.2 24572.921417: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
37438<...>-23903 ( 23896) [002] d..2 24572.921422: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
37439   sfEventThread-23906 (23896) [002] d..2 24572.921431: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
37440<...>-23903 ( 23896) [002] d..1 24572.921433: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
37441<...>-23903 ( 23896) [002] dn.2 24572.921438: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
37442<...>-24042 ( 23968) [004] d..3 24572.921439: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=004
37443<...>-23903 ( 23896) [002] d..2 24572.921441: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
37444   sfEventThread-23906 (23896) [002] d..1 24572.921451: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
37445<...>-24042 ( 23968) [004] d..4 24572.921452: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=007
37446 id.nn.benchmark-13159 (13131) [007] d..2 24572.921458: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
37447  surfaceflinger-23896 (23896) [001] d..2 24572.921458: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
37448   sfEventThread-23906 (23896) [002] d..2 24572.921468: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
37449  kworker/u16:15-18488 (18488) [001] d..2 24572.921475: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
37450   sfEventThread-23906 (23896) [002] d..2 24572.921476: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
37451  surfaceflinger-23896 (23896) [001] d..1 24572.921479: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
37452  surfaceflinger-23896 (23896) [001] d..2 24572.921489: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
37453<...>-23903 ( 23896) [002] d..2 24572.921494: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
37454<...>-24042 ( 23968) [004] .... 24572.921495: binder_transaction: transaction=1669585 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
37455<...>-24042 ( 23968) [004] ...2 24572.921507: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
37456   sfEventThread-23906 (23896) [002] d..2 24572.921508: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
37457<...>-24042 ( 23968) [004] d..4 24572.921511: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
37458<...>-24042 ( 23968) [004] d..2 24572.921524: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
37459<...>-23903 ( 23896) [002] d.h1 24572.921524: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
37460<...>-23903 ( 23896) [002] d..2 24572.921532: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
37461  Binder:23896_5-25989 (23896) [002] .... 24572.921537: binder_transaction_received: transaction=1669585
37462  Binder:23896_5-25989 (23896) [002] .... 24572.921607: binder_transaction: transaction=1669586 dest_node=0 dest_proc=23968 dest_thread=24042 reply=1 flags=0x0 code=0x0
37463<...>-24041 ( 23968) [007] .... 24572.921609: binder_transaction: transaction=1669587 dest_node=1271137 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
37464  Binder:23896_5-25989 (23896) [002] d..2 24572.921612: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=004
37465<...>-24041 ( 23968) [007] d..4 24572.921612: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=002
37466  Binder:23896_5-25989 (23896) [002] d..3 24572.921627: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=002
37467  Binder:23896_5-25989 (23896) [002] d.h2 24572.921632: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=002
37468  Binder:23896_5-25989 (23896) [002] d.h3 24572.921660: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
37469<...>-24041 ( 23968) [007] .... 24572.921669: binder_transaction: transaction=1669588 dest_node=1344550 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
37470  Binder:23896_5-25989 (23896) [002] d.h3 24572.921671: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
37471<...>-24041 ( 23968) [007] ...2 24572.921674: binder_set_priority: proc=23896 thread=23986 old=120 => new=110 desired=110
37472 id.nn.benchmark-13156 (13131) [004] dnh1 24572.921675: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
37473<...>-24041 ( 23968) [007] d..4 24572.921675: sched_waking: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=007
37474 id.nn.benchmark-13156 (13131) [004] d..2 24572.921678: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
37475  Binder:23896_5-25989 (23896) [002] dnh4 24572.921680: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
37476         sugov:4-560   (  560) [004] d..2 24572.921683: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
37477  Binder:23896_5-25989 (23896) [002] d..2 24572.921686: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
37478         sugov:0-559   (  559) [002] d..2 24572.921693: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
37479  Binder:23896_5-25989 (23896) [002] .... 24572.921695: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
37480  surfaceflinger-23896 (23896) [001] d.h1 24572.921710: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=001
37481<...>-24041 ( 23968) [007] d..2 24572.921712: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
37482  Binder:23896_5-25989 (23896) [002] d..2 24572.921737: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
37483<...>-24042 ( 23968) [002] .... 24572.921741: binder_transaction_received: transaction=1669586
37484<...>-24042 ( 23968) [002] d..2 24572.921802: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
37485<...>-23903 ( 23896) [002] .... 24572.921806: binder_transaction_received: transaction=1669587
37486<...>-23903 ( 23896) [002] d..1 24572.921816: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
37487<...>-23903 ( 23896) [002] dn.2 24572.921823: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
37488<...>-23903 ( 23896) [002] d..2 24572.921828: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
37489   sfEventThread-23906 (23896) [002] d..2 24572.921837: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
37490<...>-23903 ( 23896) [002] d..1 24572.921840: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
37491<...>-23903 ( 23896) [002] dn.2 24572.921844: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
37492<...>-23903 ( 23896) [002] d..2 24572.921848: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
37493   sfEventThread-23906 (23896) [002] d..2 24572.921861: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
37494<...>-23903 ( 23896) [002] d..2 24572.921880: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37495          <idle>-0     (-----) [002] d..1 24572.921889: cpu_idle: state=0 cpu_id=2
37496  surfaceflinger-23896 (23896) [001] ...1 24572.922251: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
37497  surfaceflinger-23896 (23896) [001] ...1 24572.922255: tracing_mark_write: E|23896
37498  surfaceflinger-23896 (23896) [001] .... 24572.922298: binder_transaction: transaction=1669589 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
37499  surfaceflinger-23896 (23896) [001] ...2 24572.922317: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
37500  surfaceflinger-23896 (23896) [001] d..4 24572.922324: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
37501  surfaceflinger-23896 (23896) [001] d..5 24572.922337: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
37502          <idle>-0     (-----) [002] .n.1 24572.922341: cpu_idle: state=4294967295 cpu_id=2
37503  surfaceflinger-23896 (23896) [001] d..2 24572.922347: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=110
37504          <idle>-0     (-----) [002] d..2 24572.922348: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
37505  Binder:23896_3-23986 (23896) [001] .... 24572.922353: binder_transaction_received: transaction=1669588
37506  HwBinder:598_3-633   (  598) [002] .... 24572.922354: binder_transaction_received: transaction=1669589
37507  Binder:23896_3-23986 (23896) [001] .... 24572.922388: binder_transaction: transaction=1669590 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
37508  HwBinder:598_3-633   (  598) [002] ...1 24572.922391: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
37509  Binder:23896_3-23986 (23896) [001] d..2 24572.922392: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=007
37510  Binder:23896_3-23986 (23896) [001] .... 24572.922407: binder_set_priority: proc=23896 thread=23986 old=110 => new=120 desired=120
37511 id.nn.benchmark-13156 (13131) [004] dnh1 24572.922410: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=004
37512 id.nn.benchmark-13156 (13131) [004] d..2 24572.922412: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
37513<...>-24041 ( 23968) [004] .... 24572.922414: binder_transaction_received: transaction=1669590
37514  Binder:23896_3-23986 (23896) [001] d..2 24572.922435: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
37515  HwBinder:598_3-633   (  598) [002] ...1 24572.922493: tracing_mark_write: B|598|HWCSession::PresentDisplay::
37516  kworker/u16:15-18488 (18488) [001] d..2 24572.922606: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13180 next_prio=110
37517           <...>-13180 (-----) [001] d.h4 24572.922636: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
37518           <...>-13180 (-----) [001] d.h4 24572.922648: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
37519           <...>-13157 (-----) [006] dnh1 24572.922651: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
37520           <...>-13157 (-----) [006] d..2 24572.922654: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
37521         sugov:4-560   (  560) [006] d..2 24572.922657: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
37522           <...>-13180 (-----) [001] dnh5 24572.922657: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
37523           <...>-13180 (-----) [001] d..2 24572.922663: sched_switch: prev_comm=id.nn.benchmark prev_pid=13180 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
37524         sugov:0-559   (  559) [001] d..2 24572.922670: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13180 next_prio=110
37525           <...>-13180 (-----) [001] d..1 24572.922675: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=006
37526           <...>-13157 (-----) [006] dnh1 24572.922687: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=006
37527<...>-24041 ( 23968) [004] d..3 24572.922688: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=006
37528           <...>-13157 (-----) [006] d..2 24572.922689: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
37529  HwBinder:598_3-633   (  598) [002] d.h1 24572.922722: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=002
37530<...>-24041 ( 23968) [004] .... 24572.922839: binder_transaction: transaction=1669591 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
37531<...>-24041 ( 23968) [004] d..4 24572.922844: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=006
37532  HwBinder:598_3-633   (  598) [002] d.h1 24572.922875: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=002
37533<...>-24041 ( 23968) [004] d..3 24572.922914: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=007
37534<...>-24041 ( 23968) [004] d..4 24572.922924: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=007
37535 id.nn.benchmark-13159 (13131) [007] d..2 24572.922931: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
37536<...>-23994 ( 23968) [007] d..3 24572.922976: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=006
37537           <...>-13180 (-----) [001] dnh1 24572.923008: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=001
37538           <...>-13180 (-----) [001] d..2 24572.923014: sched_switch: prev_comm=id.nn.benchmark prev_pid=13180 prev_prio=110 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
37539  HwBinder:598_3-633   (  598) [002] ...1 24572.923019: tracing_mark_write: B|598|HWDeviceDRM::Validate::
37540<...>-23994 ( 23968) [007] d..2 24572.923019: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
37541<...>-24041 ( 23968) [004] ...1 24572.923067: tracing_mark_write: B|23968|HIDL::IMapper::freeBuffer::passthrough
37542<...>-24041 ( 23968) [004] ...1 24572.923079: tracing_mark_write: B|23968|FreeBuffer
37543<...>-24041 ( 23968) [004] ...1 24572.923081: tracing_mark_write: B|23968|UnmapBuffer
37544<...>-23968 ( 23968) [001] .... 24572.923086: binder_transaction: transaction=1669592 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
37545<...>-23968 ( 23968) [001] d..2 24572.923124: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13180 next_prio=110
37546<...>-24041 ( 23968) [004] d..2 24572.923139: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=003
37547           <...>-13180 (-----) [001] ...1 24572.923150: tracing_mark_write: E|13131
37548<...>-24041 ( 23968) [004] ...1 24572.923156: tracing_mark_write: E|23968
37549           <...>-13180 (-----) [001] dnh1 24572.923160: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
37550           <...>-13180 (-----) [001] d..2 24572.923166: sched_switch: prev_comm=id.nn.benchmark prev_pid=13180 prev_prio=110 prev_state=R ==> next_comm=rcuos/4 next_pid=46 next_prio=120
37551<...>-24041 ( 23968) [004] ...1 24572.923166: tracing_mark_write: E|23968
37552<...>-24041 ( 23968) [004] ...1 24572.923167: tracing_mark_write: B|23968|FreeBuffer
37553<...>-24041 ( 23968) [004] ...1 24572.923170: tracing_mark_write: E|23968
37554<...>-46 ( 46) [001] d..2 24572.923171: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
37555<...>-24041 ( 23968) [004] ...1 24572.923173: tracing_mark_write: E|23968
37556<...>-24041 ( 23968) [004] .... 24572.923185: binder_transaction: transaction=1669593 dest_node=1669016 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0xa
37557<...>-24041 ( 23968) [004] ...2 24572.923187: binder_set_priority: proc=23896 thread=23986 old=120 => new=110 desired=110
37558<...>-46 ( 46) [001] d..3 24572.923188: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
37559<...>-24041 ( 23968) [004] d..4 24572.923189: sched_waking: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=001
37560<...>-46 ( 46) [001] d..2 24572.923195: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
37561       rcu_sched-8     (    8) [001] d..2 24572.923205: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13180 next_prio=110
37562           <...>-13180 (-----) [001] dnh3 24572.923210: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=001
37563<...>-24041 ( 23968) [004] d..2 24572.923211: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
37564           <...>-13180 (-----) [001] d..2 24572.923215: sched_switch: prev_comm=id.nn.benchmark prev_pid=13180 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=110
37565  Binder:23896_3-23986 (23896) [001] .... 24572.923220: binder_transaction_received: transaction=1669593
37566  Binder:23896_3-23986 (23896) [001] ...1 24572.923287: tracing_mark_write: B|23896|HIDL::IMapper::freeBuffer::passthrough
37567  Binder:23896_3-23986 (23896) [001] ...1 24572.923300: tracing_mark_write: B|23896|FreeBuffer
37568  Binder:23896_3-23986 (23896) [001] d..2 24572.923320: sched_waking: comm=system pid=105 prio=120 target_cpu=004
37569  Binder:23896_3-23986 (23896) [001] d..3 24572.923353: sched_wakeup: comm=system pid=105 prio=120 target_cpu=001
37570  Binder:23896_3-23986 (23896) [001] d.h3 24572.923382: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
37571  Binder:23896_3-23986 (23896) [001] d.h3 24572.923394: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
37572 id.nn.benchmark-13156 (13131) [004] dnh1 24572.923398: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
37573  Binder:23896_3-23986 (23896) [001] dnh4 24572.923399: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
37574 id.nn.benchmark-13156 (13131) [004] d..2 24572.923401: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
37575  Binder:23896_3-23986 (23896) [001] d..2 24572.923405: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
37576         sugov:4-560   (  560) [004] d..2 24572.923405: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
37577         sugov:0-559   (  559) [001] d..2 24572.923412: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
37578  HwBinder:598_3-633   (  598) [002] ...1 24572.923415: tracing_mark_write: E|598
37579  HwBinder:598_3-633   (  598) [002] ...1 24572.923519: tracing_mark_write: B|598|HWDeviceDRM::Commit::
37580  HwBinder:598_3-633   (  598) [002] ...1 24572.923525: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
37581  HwBinder:598_3-633   (  598) [002] d..2 24572.923831: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
37582  HwBinder:598_3-633   (  598) [002] d..3 24572.923851: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
37583<...>-105 ( 105) [001] d..2 24572.923860: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
37584  HwBinder:598_3-633   (  598) [002] ...1 24572.923918: tracing_mark_write: E|598
37585  HwBinder:598_3-633   (  598) [002] ...1 24572.923921: tracing_mark_write: E|598
37586  HwBinder:598_3-633   (  598) [002] ...1 24572.923962: tracing_mark_write: E|598
37587  HwBinder:598_3-633   (  598) [002] ...1 24572.924006: tracing_mark_write: E|598
37588  HwBinder:598_3-633   (  598) [002] .... 24572.924019: binder_transaction: transaction=1669594 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
37589  HwBinder:598_3-633   (  598) [002] d..2 24572.924038: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
37590  HwBinder:598_3-633   (  598) [002] d..3 24572.924054: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
37591  HwBinder:598_3-633   (  598) [002] .... 24572.924057: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
37592           <...>-13154 (-----) [000] d..2 24572.924063: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
37593  surfaceflinger-23896 (23896) [000] .... 24572.924070: binder_transaction_received: transaction=1669594
37594  HwBinder:598_3-633   (  598) [002] d..2 24572.924118: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=android.display next_pid=24003 next_prio=117
37595<...>-24003 ( 23968) [002] d..2 24572.924163: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
37596<...>-24177 ( 24151) [002] .... 24572.924170: binder_transaction_received: transaction=1669591
37597 id.nn.benchmark-13155 (13131) [005] d.s1 24572.924231: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
37598 id.nn.benchmark-13155 (13131) [005] dns2 24572.924240: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
37599 id.nn.benchmark-13155 (13131) [005] d..2 24572.924244: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
37600     rcu_preempt-7     (    7) [005] d..2 24572.924250: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
37601  surfaceflinger-23896 (23896) [000] d..2 24572.924302: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
37602<...>-24177 ( 24151) [002] d..3 24572.924321: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
37603 id.nn.benchmark-13159 (13131) [007] dnh1 24572.924351: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
37604 id.nn.benchmark-13159 (13131) [007] d..2 24572.924354: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
37605<...>-24177 ( 24151) [002] d..4 24572.924388: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
37606<...>-24177 ( 24151) [002] d..5 24572.924408: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=002
37607<...>-24151 ( 24151) [007] d..2 24572.924408: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
37608<...>-24177 ( 24151) [002] d.h5 24572.924437: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
37609<...>-24177 ( 24151) [002] d.h5 24572.924445: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
37610 id.nn.benchmark-13156 (13131) [004] dnh1 24572.924448: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
37611 id.nn.benchmark-13156 (13131) [004] d..2 24572.924451: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
37612         sugov:4-560   (  560) [004] d..2 24572.924454: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
37613<...>-24177 ( 24151) [002] dnh6 24572.924454: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
37614<...>-24177 ( 24151) [002] d..2 24572.924460: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
37615         sugov:0-559   (  559) [002] d..2 24572.924467: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
37616<...>-24376 ( 24151) [002] .... 24572.924472: binder_transaction_received: transaction=1669592
37617<...>-24376 ( 24151) [002] d..3 24572.924527: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
37618 id.nn.benchmark-13159 (13131) [007] dnh1 24572.924553: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
37619 id.nn.benchmark-13159 (13131) [007] d..2 24572.924556: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
37620<...>-24376 ( 24151) [002] d..2 24572.924576: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
37621<...>-24151 ( 24151) [007] d..2 24572.924578: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
37622<...>-24177 ( 24151) [002] d..2 24572.924608: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
37623           <...>-13154 (-----) [000] d.h1 24572.925340: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
37624           <...>-13154 (-----) [000] dnh2 24572.925348: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
37625           <...>-13154 (-----) [000] d..2 24572.925357: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
37626 crtc_commit:111-253   (  253) [001] .... 24572.925426: clk_set_rate: disp_cc_mdss_mdp_clk_src 200000000
37627 crtc_commit:111-253   (  253) [001] .... 24572.925479: clk_set_rate: disp_cc_mdss_mdp_lut_clk 0
37628 crtc_commit:111-253   (  253) [001] .... 24572.925480: clk_set_rate: disp_cc_mdss_mdp_clk 200000000
37629 irq/79-1436400.-24613 (24613) [000] d..2 24572.925494: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
37630 crtc_commit:111-253   (  253) [001] d..2 24572.925511: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=110
37631  Binder:23896_3-23986 (23896) [001] ...1 24572.925531: tracing_mark_write: E|23896
37632  Binder:23896_3-23986 (23896) [001] ...1 24572.925535: tracing_mark_write: B|23896|FreeBuffer
37633 id.nn.benchmark-13158 (13131) [003] d.s2 24572.925544: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
37634  Binder:23896_3-23986 (23896) [001] ...1 24572.925551: tracing_mark_write: E|23896
37635 id.nn.benchmark-13158 (13131) [003] d.s3 24572.925554: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
37636  Binder:23896_3-23986 (23896) [001] ...1 24572.925557: tracing_mark_write: E|23896
37637           <...>-13154 (-----) [000] d..2 24572.925561: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
37638 id.nn.benchmark-13155 (13131) [005] d..3 24572.925572: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
37639 irq/79-1436400.-24613 (24613) [000] d..2 24572.925578: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
37640 id.nn.benchmark-13155 (13131) [005] d..2 24572.925578: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
37641 id.nn.benchmark-13158 (13131) [003] dnh1 24572.925581: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
37642  Binder:23896_3-23986 (23896) [001] d..1 24572.925582: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
37643          <idle>-0     (-----) [005] d..1 24572.925586: cpu_idle: state=0 cpu_id=5
37644 id.nn.benchmark-13158 (13131) [003] d..2 24572.925586: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
37645  Binder:23896_3-23986 (23896) [001] dn.2 24572.925594: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
37646  Binder:23896_3-23986 (23896) [001] d..2 24572.925599: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=110 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
37647          <idle>-0     (-----) [005] .n.1 24572.925613: cpu_idle: state=4294967295 cpu_id=5
37648          <idle>-0     (-----) [005] d..2 24572.925636: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
37649<...>-33 ( 33) [003] d.h3 24572.925637: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
37650<...>-33 ( 33) [003] d.h3 24572.925649: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
37651 id.nn.benchmark-13160 (13131) [006] dnh1 24572.925651: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
37652 id.nn.benchmark-13160 (13131) [006] d..2 24572.925654: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
37653         sugov:4-560   (  560) [006] d..2 24572.925658: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
37654<...>-33 ( 33) [003] d.h4 24572.925658: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
37655<...>-33 ( 33) [003] d..2 24572.925666: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
37656         sugov:0-559   (  559) [003] d..2 24572.925679: 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
37657          <idle>-0     (-----) [003] d..1 24572.925695: cpu_idle: state=0 cpu_id=3
37658  surfaceflinger-23896 (23896) [001] d..2 24572.925757: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=110
37659  Binder:23896_3-23986 (23896) [001] .... 24572.925772: binder_transaction: transaction=1669595 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
37660  Binder:23896_3-23986 (23896) [001] d..2 24572.925776: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=004
37661  Binder:23896_3-23986 (23896) [001] .... 24572.925792: binder_set_priority: proc=23896 thread=23986 old=110 => new=120 desired=120
37662 id.nn.benchmark-13160 (13131) [006] dnh1 24572.925793: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=006
37663 id.nn.benchmark-13160 (13131) [006] d..2 24572.925796: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
37664<...>-24041 ( 23968) [006] .... 24572.925799: binder_transaction_received: transaction=1669595
37665<...>-24041 ( 23968) [006] ...1 24572.925819: tracing_mark_write: B|23968|HIDL::IMapper::freeBuffer::passthrough
37666  Binder:23896_3-23986 (23896) [001] d..2 24572.925819: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13180 next_prio=110
37667<...>-24041 ( 23968) [006] ...2 24572.925824: tracing_mark_write: B|23968|FreeBuffer
37668<...>-24041 ( 23968) [006] ...1 24572.925826: tracing_mark_write: B|23968|UnmapBuffer
37669           <...>-13180 (-----) [001] ...1 24572.925829: tracing_mark_write: E|13131
37670           <...>-13180 (-----) [001] ...1 24572.925864: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
37671           <...>-13180 (-----) [001] ...1 24572.925873: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
37672<...>-24041 ( 23968) [006] d..2 24572.925879: sched_waking: comm=rcuos/6 pid=62 prio=120 target_cpu=000
37673<...>-24041 ( 23968) [006] ...1 24572.925894: tracing_mark_write: E|23968
37674<...>-24041 ( 23968) [006] ...1 24572.925900: tracing_mark_write: E|23968
37675          <idle>-0     (-----) [003] dnh2 24572.925901: sched_wakeup: comm=rcuos/6 pid=62 prio=120 target_cpu=003
37676<...>-24041 ( 23968) [006] ...2 24572.925901: tracing_mark_write: B|23968|FreeBuffer
37677<...>-24041 ( 23968) [006] ...1 24572.925904: tracing_mark_write: E|23968
37678          <idle>-0     (-----) [003] .n.1 24572.925905: cpu_idle: state=4294967295 cpu_id=3
37679<...>-24041 ( 23968) [006] ...1 24572.925907: tracing_mark_write: E|23968
37680          <idle>-0     (-----) [003] d..2 24572.925911: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuos/6 next_pid=62 next_prio=120
37681           <...>-13180 (-----) [001] d.h1 24572.925914: sched_waking: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
37682           <...>-13180 (-----) [001] dnh2 24572.925922: sched_wakeup: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
37683<...>-62 ( 62) [003] d..2 24572.925924: sched_switch: prev_comm=rcuos/6 prev_pid=62 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37684          <idle>-0     (-----) [003] d..1 24572.925929: cpu_idle: state=0 cpu_id=3
37685           <...>-13180 (-----) [001] d..2 24572.925936: sched_switch: prev_comm=id.nn.benchmark prev_pid=13180 prev_prio=110 prev_state=R ==> next_comm=irq/80-114a000. next_pid=24617 next_prio=49
37686<...>-24041 ( 23968) [006] d..5 24572.925972: sched_waking: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=001
37687<...>-24041 ( 23968) [006] .... 24572.925986: binder_transaction: transaction=1669596 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
37688          <idle>-0     (-----) [003] dnh2 24572.925988: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=003
37689          <idle>-0     (-----) [003] .n.1 24572.925991: cpu_idle: state=4294967295 cpu_id=3
37690          <idle>-0     (-----) [003] d..2 24572.925996: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
37691<...>-24041 ( 23968) [006] ...2 24572.926002: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
37692<...>-24041 ( 23968) [006] d..4 24572.926003: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=002
37693<...>-24041 ( 23968) [006] d..2 24572.926019: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
37694  Binder:23896_3-23986 (23896) [003] d.h1 24572.926020: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=003
37695 id.nn.benchmark-13159 (13131) [007] d..3 24572.926023: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
37696 id.nn.benchmark-13159 (13131) [007] d..2 24572.926031: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37697           <...>-13154 (-----) [000] dnh1 24572.926033: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
37698           <...>-13154 (-----) [000] d..2 24572.926038: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
37699          <idle>-0     (-----) [007] d..1 24572.926039: cpu_idle: state=0 cpu_id=7
37700  Binder:23896_3-23986 (23896) [003] d..2 24572.926040: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
37701<...>-24617 ( 24617) [001] d..2 24572.926042: sched_switch: prev_comm=irq/80-114a000. prev_pid=24617 prev_prio=49 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13180 next_prio=110
37702<...>-23903 ( 23896) [003] .... 24572.926044: binder_transaction_received: transaction=1669596
37703<...>-23903 ( 23896) [003] d.s4 24572.926044: sched_waking: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
37704<...>-23903 ( 23896) [003] d.s5 24572.926044: sched_wakeup: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
37705          <idle>-0     (-----) [007] .n.1 24572.926062: cpu_idle: state=4294967295 cpu_id=7
37706          <idle>-0     (-----) [007] d..2 24572.926080: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
37707     migration/0-13    (   13) [000] d..2 24572.926091: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37708           <...>-13180 (-----) [001] d..2 24572.926093: sched_switch: prev_comm=id.nn.benchmark prev_pid=13180 prev_prio=110 prev_state=R ==> next_comm=irq/80-114a000. next_pid=24617 next_prio=49
37709          <idle>-0     (-----) [000] d..1 24572.926104: cpu_idle: state=0 cpu_id=0
37710<...>-24617 ( 24617) [001] d..2 24572.926107: sched_switch: prev_comm=irq/80-114a000. prev_pid=24617 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13180 next_prio=110
37711<...>-23903 ( 23896) [003] d..2 24572.926298: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
37712<...>-23903 ( 23896) [003] d..3 24572.926313: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
37713<...>-23903 ( 23896) [003] .... 24572.926391: binder_transaction: transaction=1669597 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
37714<...>-23903 ( 23896) [003] d..2 24572.926395: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=006
37715<...>-23903 ( 23896) [003] .... 24572.926406: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
37716 id.nn.benchmark-13160 (13131) [006] dnh1 24572.926410: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=006
37717 id.nn.benchmark-13160 (13131) [006] d..2 24572.926413: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
37718<...>-24041 ( 23968) [006] .... 24572.926415: binder_transaction_received: transaction=1669597
37719<...>-23903 ( 23896) [003] d..2 24572.926444: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
37720     logd.writer-563   (  555) [003] d..2 24572.926560: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37721          <idle>-0     (-----) [003] d..1 24572.926569: cpu_idle: state=0 cpu_id=3
37722           <...>-13180 (-----) [001] d..1 24572.926581: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
37723 id.nn.benchmark-13158 (13131) [005] d.h1 24572.926595: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
37724           <...>-13180 (-----) [001] d..1 24572.926597: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
37725           <...>-13154 (-----) [007] d.h1 24572.926609: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
37726<...>-24041 ( 23968) [006] d..3 24572.926715: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
37727<...>-24041 ( 23968) [006] d.h3 24572.926750: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
37728          <idle>-0     (-----) [000] dnh2 24572.926752: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
37729          <idle>-0     (-----) [000] .n.1 24572.926756: cpu_idle: state=4294967295 cpu_id=0
37730<...>-24041 ( 23968) [006] d.h4 24572.926759: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
37731<...>-24041 ( 23968) [006] d.h3 24572.926759: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
37732          <idle>-0     (-----) [000] d..2 24572.926763: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
37733 id.nn.benchmark-13156 (13131) [004] d..2 24572.926765: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
37734         sugov:4-560   (  560) [004] d..2 24572.926768: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
37735          <idle>-0     (-----) [003] dnh2 24572.926773: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
37736          <idle>-0     (-----) [003] .n.1 24572.926777: cpu_idle: state=4294967295 cpu_id=3
37737          <idle>-0     (-----) [003] d..2 24572.926782: 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
37738         sugov:0-559   (  559) [003] d..2 24572.926809: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
37739<...>-24073 ( 23968) [000] d..2 24572.926814: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
37740<...>-24041 ( 23968) [006] d..3 24572.926966: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
37741           <...>-13180 (-----) [001] dnh1 24572.926984: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
37742           <...>-13180 (-----) [001] d..2 24572.926990: sched_switch: prev_comm=id.nn.benchmark prev_pid=13180 prev_prio=110 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
37743<...>-24073 ( 23968) [001] d..2 24572.927013: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13180 next_prio=110
37744<...>-24041 ( 23968) [006] d..1 24572.927022: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=002
37745<...>-24041 ( 23968) [006] d..2 24572.927036: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=004
37746 id.nn.benchmark-13156 (13131) [004] d..2 24572.927052: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
37747<...>-24041 ( 23968) [006] d..5 24572.927073: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
37748<...>-24041 ( 23968) [006] d..6 24572.927086: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
37749 id.nn.benchmark-13158 (13131) [005] d..2 24572.927103: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
37750<...>-24041 ( 23968) [006] d..2 24572.927108: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
37751<...>-23903 ( 23896) [005] d..2 24572.927118: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
37752<...>-24003 ( 23968) [004] d..2 24572.927134: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
37753           <...>-13180 (-----) [001] ...1 24572.927196: tracing_mark_write: E|13131
37754           <...>-13180 (-----) [001] ...1 24572.927201: tracing_mark_write: E|13131
37755           <...>-13180 (-----) [001] ...1 24572.927227: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
37756           <...>-13180 (-----) [001] ...1 24572.927232: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
37757           <...>-13180 (-----) [001] d.s1 24572.927567: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
37758           <...>-13180 (-----) [001] dns2 24572.927578: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
37759           <...>-13180 (-----) [001] dns2 24572.927581: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
37760 id.nn.benchmark-13158 (13131) [005] dnh1 24572.927606: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
37761 id.nn.benchmark-13158 (13131) [005] d..2 24572.927609: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
37762           <...>-13180 (-----) [001] d..2 24572.927609: sched_switch: prev_comm=id.nn.benchmark prev_pid=13180 prev_prio=110 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
37763     rcu_preempt-7     (    7) [005] d..2 24572.927611: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=007
37764       rcu_sched-8     (    8) [001] d..2 24572.927619: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13180 next_prio=110
37765     rcu_preempt-7     (    7) [005] d..3 24572.927624: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=007
37766     rcu_preempt-7     (    7) [005] d..2 24572.927628: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
37767           <...>-13154 (-----) [007] d..2 24572.927630: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
37768           <...>-13180 (-----) [001] ...1 24572.927642: tracing_mark_write: E|13131
37769           <...>-13180 (-----) [001] ...1 24572.927646: tracing_mark_write: E|13131
37770         rcuop/6-61    (   61) [007] d..2 24572.927646: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
37771           <...>-13180 (-----) [001] ...1 24572.927659: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
37772           <...>-13180 (-----) [001] ...1 24572.927663: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
37773           <...>-13180 (-----) [001] ...1 24572.927904: tracing_mark_write: E|13131
37774           <...>-13180 (-----) [001] ...1 24572.927907: tracing_mark_write: E|13131
37775           <...>-13180 (-----) [001] ...1 24572.927918: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
37776           <...>-13180 (-----) [001] ...1 24572.927922: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
37777           <...>-13180 (-----) [001] ...1 24572.928321: tracing_mark_write: E|13131
37778           <...>-13180 (-----) [001] ...1 24572.928324: tracing_mark_write: E|13131
37779           <...>-13180 (-----) [001] ...1 24572.928335: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
37780           <...>-13180 (-----) [001] ...1 24572.928339: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
37781           <...>-13180 (-----) [001] ...1 24572.928742: tracing_mark_write: E|13131
37782           <...>-13180 (-----) [001] ...1 24572.928746: tracing_mark_write: E|13131
37783           <...>-13180 (-----) [001] ...1 24572.928767: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
37784           <...>-13180 (-----) [001] ...1 24572.928771: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
37785           <...>-13180 (-----) [001] ...1 24572.928964: tracing_mark_write: E|13131
37786           <...>-13180 (-----) [001] ...1 24572.928968: tracing_mark_write: E|13131
37787           <...>-13180 (-----) [001] ...1 24572.928983: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
37788           <...>-13180 (-----) [001] ...1 24572.928987: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
37789           <...>-13180 (-----) [001] ...1 24572.929060: tracing_mark_write: E|13131
37790           <...>-13180 (-----) [001] ...1 24572.929063: tracing_mark_write: E|13131
37791           <...>-13180 (-----) [001] ...1 24572.929076: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
37792           <...>-13180 (-----) [001] ...1 24572.929080: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
37793           <...>-13180 (-----) [001] ...1 24572.929413: tracing_mark_write: E|13131
37794           <...>-13180 (-----) [001] ...1 24572.929417: tracing_mark_write: E|13131
37795           <...>-13180 (-----) [001] ...1 24572.929427: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
37796           <...>-13180 (-----) [001] ...1 24572.929430: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
37797           <...>-13180 (-----) [001] ...1 24572.929489: tracing_mark_write: E|13131
37798           <...>-13180 (-----) [001] ...1 24572.929492: tracing_mark_write: E|13131
37799           <...>-13180 (-----) [001] ...1 24572.929501: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
37800           <...>-13180 (-----) [001] ...1 24572.929504: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
37801           <...>-13180 (-----) [001] ...1 24572.929524: tracing_mark_write: E|13131
37802           <...>-13180 (-----) [001] ...1 24572.929527: tracing_mark_write: E|13131
37803           <...>-13180 (-----) [001] ...1 24572.929537: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
37804           <...>-13180 (-----) [001] ...1 24572.929541: tracing_mark_write: E|13131
37805           <...>-13180 (-----) [001] ...1 24572.929552: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
37806           <...>-13180 (-----) [001] ...1 24572.929556: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
37807           <...>-13180 (-----) [001] ...1 24572.930409: tracing_mark_write: E|13131
37808           <...>-13180 (-----) [001] ...1 24572.930412: tracing_mark_write: E|13131
37809           <...>-13180 (-----) [001] ...1 24572.930419: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
37810           <...>-13180 (-----) [001] ...1 24572.930423: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
37811           <...>-13180 (-----) [001] ...1 24572.930507: tracing_mark_write: E|13131
37812           <...>-13180 (-----) [001] ...1 24572.930510: tracing_mark_write: E|13131
37813           <...>-13180 (-----) [001] d..2 24572.930568: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
37814           <...>-13180 (-----) [001] d..3 24572.930585: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
37815           <...>-13180 (-----) [001] ...1 24572.930605: tracing_mark_write: E|13131
37816           <...>-13180 (-----) [001] d..1 24572.930611: sched_waking: comm=id.nn.benchmark pid=13179 prio=110 target_cpu=002
37817 id.nn.benchmark-13160 (13131) [006] dnh1 24572.930637: sched_wakeup: comm=id.nn.benchmark pid=13179 prio=110 target_cpu=006
37818 id.nn.benchmark-13160 (13131) [006] d..2 24572.930663: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13179 next_prio=110
37819           <...>-13180 (-----) [001] d.h3 24572.930664: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
37820           <...>-13180 (-----) [001] d.h3 24572.930671: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
37821           <...>-13179 (-----) [006] d..2 24572.930673: sched_switch: prev_comm=id.nn.benchmark prev_pid=13179 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
37822 id.nn.benchmark-13156 (13131) [004] dnh1 24572.930676: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
37823 id.nn.benchmark-13156 (13131) [004] d..2 24572.930679: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
37824           <...>-13180 (-----) [001] d.h4 24572.930680: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
37825         sugov:4-560   (  560) [004] d..2 24572.930684: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
37826 id.nn.benchmark-13159 (13131) [003] d..2 24572.930690: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
37827           <...>-13180 (-----) [001] ...1 24572.930697: tracing_mark_write: E|13131
37828         sugov:0-559   (  559) [003] d..2 24572.930699: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
37829 id.nn.benchmark-13160 (13131) [006] d.s2 24572.930891: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
37830 id.nn.benchmark-13159 (13131) [003] d.s2 24572.930896: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
37831 id.nn.benchmark-13160 (13131) [006] dns3 24572.930906: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
37832 id.nn.benchmark-13160 (13131) [006] dns2 24572.930914: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
37833 id.nn.benchmark-13160 (13131) [006] dns3 24572.930919: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
37834 id.nn.benchmark-13160 (13131) [006] dnH2 24572.930937: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=006
37835 id.nn.benchmark-13160 (13131) [006] d..2 24572.930940: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
37836           <...>-13180 (-----) [001] d..1 24572.930947: sched_waking: comm=id.nn.benchmark pid=13179 prio=110 target_cpu=006
37837  kworker/u16:15-18488 (18488) [006] d.h3 24572.930960: sched_wakeup: comm=id.nn.benchmark pid=13179 prio=110 target_cpu=006
37838           <...>-13180 (-----) [001] d..2 24572.931042: sched_switch: prev_comm=id.nn.benchmark prev_pid=13180 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
37839     logd.writer-563   (  555) [001] d..2 24572.931108: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
37840  kworker/u16:15-18488 (18488) [006] d..2 24572.931111: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
37841     kworker/6:0-21469 (21469) [006] d..2 24572.931143: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
37842       rcu_sched-8     (    8) [006] d..2 24572.931145: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=001
37843 id.nn.benchmark-13159 (13131) [003] d.s2 24572.931147: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
37844       rcu_sched-8     (    8) [006] d..2 24572.931156: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13179 next_prio=110
37845<...>-105 ( 105) [001] dnh1 24572.931159: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
37846<...>-105 ( 105) [001] d..2 24572.931165: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=rcuos/4 next_pid=46 next_prio=120
37847           <...>-13179 (-----) [006] d.h1 24572.931172: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
37848           <...>-13179 (-----) [006] d.h1 24572.931174: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
37849<...>-46 ( 46) [001] d..2 24572.931176: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
37850           <...>-13179 (-----) [006] d..2 24572.931207: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
37851<...>-105 ( 105) [001] dnh1 24572.931219: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
37852<...>-105 ( 105) [001] d..2 24572.931223: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=logd.writer next_pid=563 next_prio=130
37853           <...>-13179 (-----) [006] d..1 24572.931246: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
37854           <...>-13179 (-----) [006] d..2 24572.931260: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
37855 id.nn.benchmark-13156 (13131) [004] d..2 24572.931266: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
37856     logd.writer-563   (  555) [001] d..2 24572.931268: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
37857           <...>-13131 (-----) [004] d..2 24572.931287: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
37858           <...>-13179 (-----) [006] d.h3 24572.931290: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
37859           <...>-13179 (-----) [006] d.h4 24572.931296: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
37860           <...>-13179 (-----) [006] d.h3 24572.931296: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
37861 id.nn.benchmark-13156 (13131) [004] d..2 24572.931302: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
37862         sugov:4-560   (  560) [004] d..2 24572.931305: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
37863<...>-105 ( 105) [001] dnh1 24572.931310: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
37864<...>-105 ( 105) [001] d..2 24572.931315: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
37865         sugov:0-559   (  559) [001] d..2 24572.931322: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
37866           <...>-13179 (-----) [006] d..1 24572.931337: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
37867           <...>-13179 (-----) [006] d..2 24572.931347: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
37868 id.nn.benchmark-13156 (13131) [004] d..2 24572.931352: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
37869           <...>-13131 (-----) [004] ...1 24572.931370: tracing_mark_write: E|13131
37870           <...>-13131 (-----) [004] ...1 24572.931374: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
37871           <...>-13179 (-----) [006] d..2 24572.931374: sched_switch: prev_comm=id.nn.benchmark prev_pid=13179 prev_prio=110 prev_state=x ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
37872           <...>-13131 (-----) [004] ...1 24572.931378: tracing_mark_write: E|13131
37873           <...>-13131 (-----) [004] ...1 24572.931380: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
37874           <...>-13131 (-----) [004] ...1 24572.931382: tracing_mark_write: E|13131
37875           <...>-13131 (-----) [004] ...1 24572.931500: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
37876           <...>-13131 (-----) [004] d..2 24572.931520: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
37877<...>-105 ( 105) [001] dnh1 24572.931533: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
37878           <...>-13131 (-----) [004] ...1 24572.931536: tracing_mark_write: E|13131
37879<...>-105 ( 105) [001] d..2 24572.931538: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=logd.writer next_pid=563 next_prio=130
37880           <...>-13131 (-----) [004] ...1 24572.931538: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
37881           <...>-13131 (-----) [004] ...1 24572.931541: tracing_mark_write: E|13131
37882           <...>-13131 (-----) [004] ...1 24572.931543: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
37883           <...>-13131 (-----) [004] ...1 24572.931545: tracing_mark_write: E|13131
37884           <...>-13131 (-----) [004] ...1 24572.931547: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
37885     logd.writer-563   (  555) [001] d..2 24572.931578: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
37886  kworker/u16:15-18488 (18488) [006] .... 24572.931609: clk_set_rate: l3_cluster0_vote_clk 1401600000
37887  kworker/u16:15-18488 (18488) [006] d..2 24572.931615: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
37888           <...>-13131 (-----) [004] ...1 24572.931633: tracing_mark_write: E|13131
37889           <...>-13131 (-----) [004] ...1 24572.931635: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
37890           <...>-13131 (-----) [004] d..2 24572.931640: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
37891<...>-105 ( 105) [001] d..2 24572.932688: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13181 next_prio=110
37892           <...>-13181 (-----) [001] d.h4 24572.932720: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
37893           <...>-13181 (-----) [001] d.h4 24572.932732: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
37894 id.nn.benchmark-13160 (13131) [006] dnh1 24572.932736: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
37895           <...>-13181 (-----) [001] dnh5 24572.932739: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
37896 id.nn.benchmark-13160 (13131) [006] d..2 24572.932739: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
37897         sugov:4-560   (  560) [006] d..2 24572.932743: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
37898           <...>-13181 (-----) [001] d..2 24572.932745: sched_switch: prev_comm=id.nn.benchmark prev_pid=13181 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
37899         sugov:0-559   (  559) [001] d..2 24572.932752: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13181 next_prio=110
37900           <...>-13181 (-----) [001] d..2 24572.932814: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
37901           <...>-13181 (-----) [001] d..3 24572.932822: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
37902 id.nn.benchmark-13155 (13131) [000] d.h1 24572.933005: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
37903 id.nn.benchmark-13155 (13131) [000] dnh2 24572.933012: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
37904 id.nn.benchmark-13155 (13131) [000] d..2 24572.933020: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
37905 irq/79-1436400.-24613 (24613) [000] d..2 24572.933135: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
37906           <...>-13181 (-----) [001] d..2 24572.933137: sched_switch: prev_comm=id.nn.benchmark prev_pid=13181 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
37907 id.nn.benchmark-13159 (13131) [003] d.s2 24572.933177: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
37908 id.nn.benchmark-13159 (13131) [003] d.s3 24572.933185: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
37909 id.nn.benchmark-13155 (13131) [000] d..2 24572.933193: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
37910 irq/79-1436400.-24613 (24613) [000] d..2 24572.933208: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
37911     logd.writer-563   (  555) [001] d..2 24572.933359: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13182 next_prio=110
37912           <...>-13182 (-----) [001] ...1 24572.933388: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
37913           <...>-13182 (-----) [001] ...1 24572.933392: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
37914           <...>-13182 (-----) [001] d..2 24572.933454: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
37915           <...>-13182 (-----) [001] d..3 24572.933463: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
37916           <...>-13182 (-----) [001] ...1 24572.933533: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
37917           <...>-13182 (-----) [001] ...1 24572.933538: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
37918 id.nn.benchmark-13155 (13131) [000] d.h4 24572.933847: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
37919 id.nn.benchmark-13155 (13131) [000] d.h5 24572.933864: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
37920 id.nn.benchmark-13155 (13131) [000] d.h4 24572.933868: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
37921           <...>-13182 (-----) [001] d..2 24572.933875: sched_switch: prev_comm=id.nn.benchmark prev_pid=13182 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
37922 id.nn.benchmark-13160 (13131) [006] dnh1 24572.933897: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
37923 id.nn.benchmark-13160 (13131) [006] d..2 24572.933899: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
37924  crtc_event:111-254   (  254) [001] d..2 24572.933900: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
37925 id.nn.benchmark-13155 (13131) [000] d.h2 24572.933925: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
37926 id.nn.benchmark-13155 (13131) [000] d.h2 24572.933936: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
37927 id.nn.benchmark-13156 (13131) [004] dnh1 24572.933940: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
37928 id.nn.benchmark-13156 (13131) [004] d..2 24572.933943: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
37929 id.nn.benchmark-13155 (13131) [000] d.h3 24572.933943: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
37930         sugov:4-560   (  560) [004] d..2 24572.933947: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
37931     logd.writer-563   (  555) [001] d..2 24572.933950: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
37932         sugov:0-559   (  559) [001] d..2 24572.933961: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
37933 crtc_commit:111-253   (  253) [006] d..2 24572.934000: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
37934     logd.writer-563   (  555) [001] d..2 24572.934024: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13182 next_prio=110
37935 id.nn.benchmark-13160 (13131) [006] d.s2 24572.934225: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
37936 id.nn.benchmark-13160 (13131) [006] d.s2 24572.934231: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
37937           <...>-13182 (-----) [001] dnh1 24572.934237: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
37938           <...>-13182 (-----) [001] d..2 24572.934242: sched_switch: prev_comm=id.nn.benchmark prev_pid=13182 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
37939 id.nn.benchmark-13160 (13131) [006] d.s3 24572.934242: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
37940 id.nn.benchmark-13158 (13131) [005] d..2 24572.934248: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
37941     rcu_preempt-7     (    7) [005] d..2 24572.934250: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
37942  crtc_event:111-254   (  254) [001] d..2 24572.934255: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13182 next_prio=110
37943     rcu_preempt-7     (    7) [005] d..2 24572.934262: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
37944           <...>-13182 (-----) [001] dnh1 24572.934268: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
37945           <...>-13182 (-----) [001] d..2 24572.934276: sched_switch: prev_comm=id.nn.benchmark prev_pid=13182 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
37946     rcu_preempt-7     (    7) [005] d..2 24572.934282: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
37947         rcuop/2-29    (   29) [001] d.h3 24572.934283: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
37948         rcuop/2-29    (   29) [001] d..2 24572.934288: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
37949         rcuop/2-29    (   29) [001] d..3 24572.934305: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
37950         rcuop/2-29    (   29) [001] d..2 24572.934355: 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
37951         rcuop/0-10    (   10) [001] d..2 24572.934367: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
37952         rcuop/3-37    (   37) [001] d..2 24572.934377: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13182 next_prio=110
37953           <...>-13154 (-----) [007] d..3 24572.934916: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
37954           <...>-13154 (-----) [007] d..2 24572.934924: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37955 id.nn.benchmark-13155 (13131) [000] dnh1 24572.934927: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
37956 id.nn.benchmark-13155 (13131) [000] d..2 24572.934932: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
37957          <idle>-0     (-----) [007] d..1 24572.934935: cpu_idle: state=0 cpu_id=7
37958          <idle>-0     (-----) [007] .n.1 24572.934959: cpu_idle: state=4294967295 cpu_id=7
37959 id.nn.benchmark-13158 (13131) [005] d..2 24572.934979: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
37960     migration/0-13    (   13) [000] d.h3 24572.934980: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
37961          <idle>-0     (-----) [007] d..2 24572.934980: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
37962          <idle>-0     (-----) [005] d..1 24572.934986: cpu_idle: state=0 cpu_id=5
37963     migration/0-13    (   13) [000] d.h3 24572.934991: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
37964          <idle>-0     (-----) [005] dnh2 24572.934998: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
37965          <idle>-0     (-----) [005] .n.1 24572.935000: cpu_idle: state=4294967295 cpu_id=5
37966     migration/0-13    (   13) [000] d.h4 24572.935000: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
37967          <idle>-0     (-----) [005] d..2 24572.935003: 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
37968     migration/0-13    (   13) [000] d..2 24572.935008: 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
37969         sugov:4-560   (  560) [005] d..2 24572.935011: 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
37970          <idle>-0     (-----) [005] d..1 24572.935012: cpu_idle: state=0 cpu_id=5
37971         sugov:0-559   (  559) [000] d..2 24572.935021: 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
37972          <idle>-0     (-----) [000] d..1 24572.935035: cpu_idle: state=0 cpu_id=0
37973 id.nn.benchmark-13156 (13131) [004] d..3 24572.935257: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
37974 id.nn.benchmark-13156 (13131) [004] d..2 24572.935265: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
37975           <...>-13157 (-----) [002] dnh1 24572.935269: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
37976          <idle>-0     (-----) [004] d..1 24572.935274: cpu_idle: state=0 cpu_id=4
37977           <...>-13157 (-----) [002] d..2 24572.935276: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
37978          <idle>-0     (-----) [004] .n.1 24572.935301: cpu_idle: state=4294967295 cpu_id=4
37979          <idle>-0     (-----) [004] d..2 24572.935319: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
37980     migration/2-25    (   25) [002] d..2 24572.935332: 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
37981          <idle>-0     (-----) [002] d..1 24572.935343: cpu_idle: state=0 cpu_id=2
37982           <...>-13182 (-----) [001] d..1 24572.935534: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=007
37983           <...>-13182 (-----) [001] d..1 24572.935553: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=004
37984          <idle>-0     (-----) [005] dnh2 24572.935555: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
37985          <idle>-0     (-----) [005] .n.1 24572.935557: cpu_idle: state=4294967295 cpu_id=5
37986          <idle>-0     (-----) [005] d..2 24572.935559: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
37987           <...>-13182 (-----) [001] d..1 24572.935563: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
37988           <...>-13157 (-----) [004] d.h1 24572.935564: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=004
37989           <...>-13154 (-----) [005] d.h1 24572.935574: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
37990          <idle>-0     (-----) [000] d.h5 24572.936178: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
37991          <idle>-0     (-----) [000] dnh6 24572.936192: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
37992          <idle>-0     (-----) [000] dnh3 24572.936231: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
37993          <idle>-0     (-----) [000] dnh3 24572.936241: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
37994 id.nn.benchmark-13160 (13131) [006] dnh1 24572.936244: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
37995 id.nn.benchmark-13160 (13131) [006] d..2 24572.936248: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
37996         sugov:4-560   (  560) [006] d..2 24572.936252: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
37997          <idle>-0     (-----) [000] dnh4 24572.936252: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
37998          <idle>-0     (-----) [000] .n.1 24572.936256: cpu_idle: state=4294967295 cpu_id=0
37999          <idle>-0     (-----) [002] .n.1 24572.936257: cpu_idle: state=4294967295 cpu_id=2
38000          <idle>-0     (-----) [000] d..2 24572.936262: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
38001          <idle>-0     (-----) [002] d..2 24572.936263: 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
38002         sugov:0-559   (  559) [002] d..2 24572.936289: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
38003 crtc_commit:111-253   (  253) [000] d..2 24572.936351: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
38004 id.nn.benchmark-13158 (13131) [000] d.h4 24572.936488: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
38005 id.nn.benchmark-13158 (13131) [000] d.h5 24572.936498: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
38006           <...>-13182 (-----) [001] d..2 24572.936508: sched_switch: prev_comm=id.nn.benchmark prev_pid=13182 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
38007  crtc_event:111-254   (  254) [001] d..2 24572.936520: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13182 next_prio=110
38008           <...>-13182 (-----) [001] ...1 24572.936775: tracing_mark_write: E|13131
38009           <...>-13182 (-----) [001] ...1 24572.936779: tracing_mark_write: E|13131
38010           <...>-13182 (-----) [001] ...1 24572.936792: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
38011           <...>-13182 (-----) [001] ...1 24572.936796: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
38012 id.nn.benchmark-13159 (13131) [003] d.h1 24572.937434: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
38013 id.nn.benchmark-13159 (13131) [003] d.h2 24572.937451: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
38014           <...>-13182 (-----) [001] d..2 24572.937461: sched_switch: prev_comm=id.nn.benchmark prev_pid=13182 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
38015        DispSync-23904 (23896) [001] d..1 24572.937490: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
38016        DispSync-23904 (23896) [001] d..2 24572.937502: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
38017 id.nn.benchmark-13156 (13131) [002] d..2 24572.937512: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
38018        DispSync-23904 (23896) [001] d..2 24572.937521: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13182 next_prio=110
38019 id.nn.benchmark-13160 (13131) [006] d.s1 24572.937557: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=006
38020 id.nn.benchmark-13160 (13131) [006] dns2 24572.937578: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=006
38021 id.nn.benchmark-13160 (13131) [006] d..2 24572.937582: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
38022   sfEventThread-23906 (23896) [002] d.s3 24572.937582: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
38023           <...>-13154 (-----) [005] d.H2 24572.937585: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
38024       rcu_sched-8     (    8) [006] d..2 24572.937589: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
38025           <...>-13154 (-----) [005] d.H3 24572.937598: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
38026           <...>-13154 (-----) [005] d.H2 24572.937598: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
38027           <...>-13182 (-----) [001] ...1 24572.937601: tracing_mark_write: E|13131
38028           <...>-13157 (-----) [004] d..2 24572.937604: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
38029           <...>-13182 (-----) [001] ...1 24572.937605: tracing_mark_write: E|13131
38030         sugov:4-560   (  560) [004] d..2 24572.937608: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
38031           <...>-13182 (-----) [001] dnh1 24572.937613: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
38032   sfEventThread-23906 (23896) [002] d.s4 24572.937619: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
38033           <...>-13182 (-----) [001] d..2 24572.937625: sched_switch: prev_comm=id.nn.benchmark prev_pid=13182 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
38034         sugov:0-559   (  559) [001] d..2 24572.937650: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
38035   sfEventThread-23906 (23896) [002] d.s3 24572.937652: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=006
38036 id.nn.benchmark-13160 (13131) [006] dnh1 24572.937673: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=006
38037 id.nn.benchmark-13160 (13131) [006] d..2 24572.937676: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
38038       rcu_sched-8     (    8) [006] d..2 24572.937677: sched_waking: comm=rcuos/6 pid=62 prio=120 target_cpu=003
38039   sfEventThread-23906 (23896) [002] d..3 24572.937682: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=002
38040  kworker/u16:15-18488 (18488) [001] d..2 24572.937692: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13182 next_prio=110
38041       rcu_sched-8     (    8) [006] d..2 24572.937695: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
38042           <...>-13182 (-----) [001] dnh3 24572.937698: sched_wakeup: comm=rcuos/6 pid=62 prio=120 target_cpu=001
38043           <...>-13182 (-----) [001] d..2 24572.937702: sched_switch: prev_comm=id.nn.benchmark prev_pid=13182 prev_prio=110 prev_state=R ==> next_comm=rcuos/6 next_pid=62 next_prio=120
38044           <...>-13157 (-----) [004] dnh1 24572.937705: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=004
38045           <...>-13157 (-----) [004] d..2 24572.937723: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
38046<...>-62 ( 62) [001] d..2 24572.937726: sched_switch: prev_comm=rcuos/6 prev_pid=62 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13182 next_prio=110
38047   sfEventThread-23906 (23896) [002] d..3 24572.937733: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=006
38048           <...>-13182 (-----) [001] ...1 24572.937744: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
38049           <...>-13182 (-----) [001] ...1 24572.937748: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
38050<...>-24042 ( 23968) [004] d.h1 24572.937751: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=004
38051   sfEventThread-23906 (23896) [002] d..3 24572.937756: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
38052   sfEventThread-23906 (23896) [002] d..4 24572.937767: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
38053           <...>-13182 (-----) [001] d..2 24572.937776: sched_switch: prev_comm=id.nn.benchmark prev_pid=13182 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
38054   sfEventThread-23906 (23896) [002] d..2 24572.937781: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
38055  surfaceflinger-23896 (23896) [001] d.h1 24572.937791: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
38056  surfaceflinger-23896 (23896) [001] d.h2 24572.937800: sched_blocked_reason: pid=18488 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
38057  surfaceflinger-23896 (23896) [001] d.h2 24572.937803: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
38058<...>-24042 ( 23968) [004] .... 24572.937950: binder_transaction: transaction=1669598 dest_node=1271163 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
38059<...>-24042 ( 23968) [004] d..4 24572.937957: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
38060<...>-24042 ( 23968) [004] d..5 24572.937970: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
38061           <...>-13154 (-----) [005] d..2 24572.937976: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
38062<...>-23903 ( 23896) [005] .... 24572.937980: binder_transaction_received: transaction=1669598
38063<...>-23903 ( 23896) [005] d..1 24572.937994: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
38064 id.nn.benchmark-13156 (13131) [002] dnh1 24572.938004: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
38065<...>-23903 ( 23896) [005] d..2 24572.938009: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
38066 id.nn.benchmark-13156 (13131) [002] d..2 24572.938010: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
38067   sfEventThread-23906 (23896) [002] d..2 24572.938028: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
38068<...>-24042 ( 23968) [004] .... 24572.938037: binder_transaction: transaction=1669599 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
38069<...>-24042 ( 23968) [004] ...2 24572.938050: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
38070<...>-24042 ( 23968) [004] d..4 24572.938052: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
38071<...>-24042 ( 23968) [004] d..5 24572.938062: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
38072<...>-24042 ( 23968) [004] d..2 24572.938066: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
38073           <...>-13154 (-----) [005] d..2 24572.938068: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
38074<...>-23903 ( 23896) [005] .... 24572.938070: binder_transaction_received: transaction=1669599
38075<...>-23903 ( 23896) [005] d..2 24572.938097: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
38076<...>-24041 ( 23968) [004] .... 24572.938136: binder_transaction: transaction=1669600 dest_node=1271137 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
38077<...>-24041 ( 23968) [004] d..4 24572.938139: sched_waking: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=003
38078<...>-24041 ( 23968) [004] d..5 24572.938155: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=007
38079<...>-24041 ( 23968) [004] d.h5 24572.938175: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
38080 id.nn.benchmark-13155 (13131) [007] d..2 24572.938175: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
38081  surfaceflinger-23896 (23896) [001] ...1 24572.938178: tracing_mark_write: B|23896|HIDL::IComposerClient::destroyLayer::client
38082  surfaceflinger-23896 (23896) [001] ...1 24572.938181: tracing_mark_write: E|23896
38083<...>-24041 ( 23968) [004] d.h6 24572.938183: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
38084<...>-24041 ( 23968) [004] d.h5 24572.938184: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
38085           <...>-13154 (-----) [005] d..2 24572.938189: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
38086         sugov:4-560   (  560) [005] d..2 24572.938193: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
38087  Binder:23896_3-23986 (23896) [007] .... 24572.938193: binder_transaction_received: transaction=1669600
38088 id.nn.benchmark-13158 (13131) [000] dnh1 24572.938197: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
38089 id.nn.benchmark-13158 (13131) [000] d..2 24572.938203: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
38090  Binder:23896_3-23986 (23896) [007] d..1 24572.938207: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
38091         sugov:0-559   (  559) [000] d..2 24572.938211: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
38092 id.nn.benchmark-13156 (13131) [002] dnh1 24572.938217: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
38093  surfaceflinger-23896 (23896) [001] .... 24572.938218: binder_transaction: transaction=1669601 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x6
38094  Binder:23896_3-23986 (23896) [007] d..2 24572.938221: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
38095 id.nn.benchmark-13156 (13131) [002] d..2 24572.938222: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
38096  surfaceflinger-23896 (23896) [001] ...2 24572.938225: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
38097  surfaceflinger-23896 (23896) [001] d..4 24572.938233: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
38098   sfEventThread-23906 (23896) [002] d..2 24572.938235: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
38099 id.nn.benchmark-13155 (13131) [007] dnh1 24572.938259: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
38100 id.nn.benchmark-13155 (13131) [007] d..2 24572.938280: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
38101  HwBinder:598_3-633   (  598) [007] .... 24572.938284: binder_transaction_received: transaction=1669601
38102  surfaceflinger-23896 (23896) [001] d..2 24572.938288: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
38103  HwBinder:598_3-633   (  598) [007] ...1 24572.938310: tracing_mark_write: B|598|HIDL::IComposerClient::destroyLayer::server
38104  HwBinder:598_3-633   (  598) [007] ...1 24572.938335: tracing_mark_write: B|598|HIDL::IMapper::freeBuffer::passthrough
38105  kworker/u16:15-18488 (18488) [001] d..2 24572.938342: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13182 next_prio=110
38106  HwBinder:598_3-633   (  598) [007] ...1 24572.938343: tracing_mark_write: B|598|FreeBuffer
38107  HwBinder:598_3-633   (  598) [007] ...1 24572.938351: tracing_mark_write: E|598
38108  HwBinder:598_3-633   (  598) [007] ...1 24572.938352: tracing_mark_write: B|598|FreeBuffer
38109  HwBinder:598_3-633   (  598) [007] ...1 24572.938353: tracing_mark_write: B|598|UnmapBuffer
38110  HwBinder:598_3-633   (  598) [007] ...1 24572.938365: tracing_mark_write: E|598
38111  HwBinder:598_3-633   (  598) [007] ...1 24572.938368: tracing_mark_write: E|598
38112  HwBinder:598_3-633   (  598) [007] ...1 24572.938371: tracing_mark_write: E|598
38113  HwBinder:598_3-633   (  598) [007] ...1 24572.938377: tracing_mark_write: E|598
38114  HwBinder:598_3-633   (  598) [007] .... 24572.938382: binder_transaction: transaction=1669602 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
38115  HwBinder:598_3-633   (  598) [007] d..2 24572.938384: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
38116  HwBinder:598_3-633   (  598) [007] .... 24572.938391: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
38117           <...>-13182 (-----) [001] dnh1 24572.938397: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
38118           <...>-13182 (-----) [001] d..2 24572.938403: sched_switch: prev_comm=id.nn.benchmark prev_pid=13182 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
38119  HwBinder:598_3-633   (  598) [007] d..2 24572.938406: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
38120  surfaceflinger-23896 (23896) [001] .... 24572.938407: binder_transaction_received: transaction=1669602
38121  surfaceflinger-23896 (23896) [001] d.h1 24572.938441: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
38122<...>-24041 ( 23968) [004] .... 24572.938449: binder_transaction: transaction=1669603 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
38123  surfaceflinger-23896 (23896) [001] d.h2 24572.938450: sched_blocked_reason: pid=18488 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
38124  surfaceflinger-23896 (23896) [001] d.h2 24572.938453: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
38125<...>-24041 ( 23968) [004] ...2 24572.938459: binder_set_priority: proc=23896 thread=23986 old=120 => new=110 desired=110
38126<...>-24041 ( 23968) [004] d..4 24572.938460: sched_waking: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=007
38127<...>-24041 ( 23968) [004] d..5 24572.938469: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=007
38128<...>-24041 ( 23968) [004] d..2 24572.938474: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
38129 id.nn.benchmark-13155 (13131) [007] d..2 24572.938476: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=110
38130  Binder:23896_3-23986 (23896) [007] .... 24572.938478: binder_transaction_received: transaction=1669603
38131  Binder:23896_3-23986 (23896) [007] d..2 24572.938510: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
38132  surfaceflinger-23896 (23896) [001] d..1 24572.938592: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
38133           <...>-13154 (-----) [005] dnh1 24572.938612: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
38134           <...>-13154 (-----) [005] d..2 24572.938615: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
38135<...>-23903 ( 23896) [005] d..1 24572.938625: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
38136<...>-23903 ( 23896) [005] d..1 24572.938630: sched_waking: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=007
38137 id.nn.benchmark-13156 (13131) [002] dnh1 24572.938635: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
38138 id.nn.benchmark-13156 (13131) [002] d..2 24572.938639: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
38139<...>-23903 ( 23896) [005] d..2 24572.938639: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=007
38140<...>-23903 ( 23896) [005] .... 24572.938644: binder_transaction: transaction=1669604 dest_node=0 dest_proc=23968 dest_thread=24042 reply=1 flags=0x0 code=0x0
38141 id.nn.benchmark-13155 (13131) [007] d..2 24572.938646: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=110
38142<...>-23903 ( 23896) [005] d..2 24572.938646: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=004
38143   sfEventThread-23906 (23896) [002] d..2 24572.938650: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
38144<...>-23903 ( 23896) [005] d..3 24572.938652: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=004
38145<...>-23903 ( 23896) [005] .... 24572.938653: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
38146           <...>-13157 (-----) [004] d..2 24572.938659: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
38147<...>-24042 ( 23968) [004] .... 24572.938661: binder_transaction_received: transaction=1669604
38148  Binder:23896_3-23986 (23896) [007] .... 24572.938663: binder_transaction: transaction=1669605 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
38149  Binder:23896_3-23986 (23896) [007] d..2 24572.938665: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=004
38150<...>-23903 ( 23896) [005] d..2 24572.938666: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
38151  Binder:23896_3-23986 (23896) [007] d..3 24572.938671: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=004
38152  Binder:23896_3-23986 (23896) [007] .... 24572.938672: binder_set_priority: proc=23896 thread=23986 old=110 => new=120 desired=120
38153  Binder:23896_3-23986 (23896) [007] d..2 24572.938685: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
38154<...>-24042 ( 23968) [004] d..2 24572.938692: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
38155<...>-24041 ( 23968) [004] .... 24572.938694: binder_transaction_received: transaction=1669605
38156<...>-24041 ( 23968) [004] d..3 24572.938841: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=004
38157<...>-24041 ( 23968) [004] d..4 24572.938857: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=007
38158 id.nn.benchmark-13155 (13131) [007] d..2 24572.938863: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
38159<...>-24003 ( 23968) [007] d..2 24572.938887: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
38160<...>-24041 ( 23968) [004] .... 24572.938982: binder_transaction: transaction=1669606 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
38161<...>-24041 ( 23968) [004] d..4 24572.938987: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=002
38162<...>-24041 ( 23968) [004] d..5 24572.939003: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=007
38163<...>-24041 ( 23968) [004] d.h5 24572.939022: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
38164 id.nn.benchmark-13155 (13131) [007] d..2 24572.939023: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
38165<...>-24041 ( 23968) [004] d.h6 24572.939031: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
38166<...>-24041 ( 23968) [004] d.h5 24572.939032: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
38167<...>-24177 ( 24151) [007] d..2 24572.939040: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
38168 id.nn.benchmark-13158 (13131) [000] dnh1 24572.939042: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
38169         sugov:4-560   (  560) [007] d..2 24572.939045: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
38170 id.nn.benchmark-13158 (13131) [000] d..2 24572.939046: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
38171<...>-24177 ( 24151) [007] .... 24572.939047: binder_transaction_received: transaction=1669606
38172         sugov:0-559   (  559) [000] d..2 24572.939052: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
38173<...>-24041 ( 23968) [004] d..3 24572.939085: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=007
38174<...>-24041 ( 23968) [004] d..4 24572.939093: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=007
38175<...>-24177 ( 24151) [007] d..3 24572.939120: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
38176<...>-24177 ( 24151) [007] d..4 24572.939131: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
38177<...>-24177 ( 24151) [007] d..2 24572.939161: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=23994 next_prio=118
38178<...>-24041 ( 23968) [004] .... 24572.939178: binder_transaction: transaction=1669607 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
38179<...>-24041 ( 23968) [004] ...2 24572.939181: binder_set_priority: proc=23896 thread=23986 old=120 => new=110 desired=110
38180<...>-24041 ( 23968) [004] d..4 24572.939182: sched_waking: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=007
38181<...>-24041 ( 23968) [004] d..5 24572.939188: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=007
38182<...>-24041 ( 23968) [004] d..2 24572.939192: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
38183  surfaceflinger-23896 (23896) [001] ...1 24572.939198: tracing_mark_write: B|23896|HIDL::IMapper::freeBuffer::passthrough
38184<...>-23994 ( 23968) [007] d..3 24572.939206: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=001
38185  surfaceflinger-23896 (23896) [001] ...1 24572.939210: tracing_mark_write: B|23896|FreeBuffer
38186  surfaceflinger-23896 (23896) [001] d.h2 24572.939228: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=001
38187  surfaceflinger-23896 (23896) [001] ...1 24572.939233: tracing_mark_write: E|23896
38188<...>-23994 ( 23968) [007] d..2 24572.939235: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
38189  surfaceflinger-23896 (23896) [001] ...1 24572.939236: tracing_mark_write: B|23896|FreeBuffer
38190  surfaceflinger-23896 (23896) [001] d..2 24572.939247: sched_waking: comm=system pid=105 prio=120 target_cpu=001
38191           <...>-13157 (-----) [004] d.h1 24572.939288: sched_wakeup: comm=system pid=105 prio=120 target_cpu=004
38192<...>-24151 ( 24151) [007] d..2 24572.939290: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=110
38193  Binder:23896_3-23986 (23896) [007] .... 24572.939292: binder_transaction_received: transaction=1669607
38194  surfaceflinger-23896 (23896) [001] ...1 24572.939299: tracing_mark_write: E|23896
38195  Binder:23896_3-23986 (23896) [007] .... 24572.939302: binder_transaction: transaction=1669608 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
38196  Binder:23896_3-23986 (23896) [007] d..2 24572.939304: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=004
38197  surfaceflinger-23896 (23896) [001] ...1 24572.939304: tracing_mark_write: E|23896
38198  Binder:23896_3-23986 (23896) [007] d..3 24572.939312: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=004
38199  Binder:23896_3-23986 (23896) [007] .... 24572.939313: binder_set_priority: proc=23896 thread=23986 old=110 => new=120 desired=120
38200           <...>-13157 (-----) [004] d..2 24572.939319: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
38201<...>-24041 ( 23968) [004] .... 24572.939321: binder_transaction_received: transaction=1669608
38202  Binder:23896_3-23986 (23896) [007] d..2 24572.939324: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
38203  surfaceflinger-23896 (23896) [001] ...1 24572.939525: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
38204  surfaceflinger-23896 (23896) [001] ...1 24572.939528: tracing_mark_write: E|23896
38205  surfaceflinger-23896 (23896) [001] .... 24572.939554: binder_transaction: transaction=1669609 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
38206<...>-24041 ( 23968) [004] d..3 24572.939569: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
38207  surfaceflinger-23896 (23896) [001] ...2 24572.939576: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
38208  surfaceflinger-23896 (23896) [001] d..4 24572.939580: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
38209 id.nn.benchmark-13155 (13131) [007] dnh1 24572.939593: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
38210  surfaceflinger-23896 (23896) [001] d.h4 24572.939596: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
38211 id.nn.benchmark-13155 (13131) [007] d..2 24572.939596: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
38212  HwBinder:598_3-633   (  598) [007] .... 24572.939599: binder_transaction_received: transaction=1669609
38213  surfaceflinger-23896 (23896) [001] d..2 24572.939607: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
38214  HwBinder:598_3-633   (  598) [007] ...1 24572.939613: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
38215<...>-24041 ( 23968) [004] d..1 24572.939618: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=007
38216<...>-24041 ( 23968) [004] d..2 24572.939624: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=007
38217<...>-24041 ( 23968) [004] d..2 24572.939642: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
38218  HwBinder:598_3-633   (  598) [007] ...1 24572.939675: tracing_mark_write: B|598|HWCSession::PresentDisplay::
38219<...>-23968 ( 23968) [001] .... 24572.939679: binder_transaction: transaction=1669610 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
38220<...>-23968 ( 23968) [001] d..4 24572.939683: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=007
38221 id.nn.benchmark-13160 (13131) [006] dnh1 24572.939708: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=006
38222 id.nn.benchmark-13160 (13131) [006] d..2 24572.939711: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
38223<...>-24177 ( 24151) [006] .... 24572.939713: binder_transaction_received: transaction=1669610
38224<...>-23968 ( 23968) [001] d..2 24572.939740: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
38225<...>-24177 ( 24151) [006] d..3 24572.939752: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
38226<...>-24177 ( 24151) [006] d..4 24572.939762: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
38227<...>-24073 ( 23968) [001] d..2 24572.939768: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
38228<...>-24177 ( 24151) [006] d..2 24572.939781: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
38229  kworker/u16:15-18488 (18488) [001] d..2 24572.939812: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13182 next_prio=110
38230           <...>-13182 (-----) [001] d.h1 24572.939912: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
38231           <...>-13182 (-----) [001] d.h2 24572.939922: sched_blocked_reason: pid=18488 iowait=0 caller=a6xx_wait_for_lowest_idle+0x2a0/0x730
38232           <...>-13182 (-----) [001] dnh2 24572.939925: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
38233           <...>-13182 (-----) [001] d..2 24572.939933: sched_switch: prev_comm=id.nn.benchmark prev_pid=13182 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
38234  kworker/u16:15-18488 (18488) [001] d..2 24572.939943: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13182 next_prio=110
38235  HwBinder:598_3-633   (  598) [007] ...1 24572.939965: tracing_mark_write: B|598|HWDeviceDRM::Validate::
38236           <...>-13182 (-----) [001] d.h1 24572.940044: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
38237           <...>-13182 (-----) [001] d.h2 24572.940052: sched_blocked_reason: pid=18488 iowait=0 caller=a6xx_wait_for_lowest_idle+0x2a0/0x730
38238           <...>-13182 (-----) [001] dnh2 24572.940055: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
38239           <...>-13182 (-----) [001] d..2 24572.940061: sched_switch: prev_comm=id.nn.benchmark prev_pid=13182 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
38240  kworker/u16:15-18488 (18488) [001] d..2 24572.940072: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13182 next_prio=110
38241           <...>-13182 (-----) [001] d.h1 24572.940171: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
38242           <...>-13182 (-----) [001] d.h2 24572.940178: sched_blocked_reason: pid=18488 iowait=0 caller=a6xx_wait_for_lowest_idle+0x2a0/0x730
38243           <...>-13182 (-----) [001] dnh2 24572.940180: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
38244  HwBinder:598_3-633   (  598) [007] ...1 24572.940182: tracing_mark_write: E|598
38245           <...>-13182 (-----) [001] d..2 24572.940187: sched_switch: prev_comm=id.nn.benchmark prev_pid=13182 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
38246  kworker/u16:15-18488 (18488) [001] d..2 24572.940196: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13182 next_prio=110
38247  HwBinder:598_3-633   (  598) [007] ...1 24572.940227: tracing_mark_write: B|598|HWDeviceDRM::Commit::
38248  HwBinder:598_3-633   (  598) [007] ...1 24572.940230: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
38249           <...>-13182 (-----) [001] d.h1 24572.940296: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
38250           <...>-13182 (-----) [001] d.h2 24572.940302: sched_blocked_reason: pid=18488 iowait=0 caller=a6xx_wait_for_lowest_idle+0x2a0/0x730
38251           <...>-13182 (-----) [001] dnh2 24572.940304: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
38252           <...>-13182 (-----) [001] d..2 24572.940310: sched_switch: prev_comm=id.nn.benchmark prev_pid=13182 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
38253  HwBinder:598_3-633   (  598) [007] d..2 24572.940348: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
38254  kworker/u16:15-18488 (18488) [001] dnh1 24572.940365: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
38255  kworker/u16:15-18488 (18488) [001] d..2 24572.940370: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
38256  HwBinder:598_3-633   (  598) [007] ...1 24572.940388: tracing_mark_write: E|598
38257  HwBinder:598_3-633   (  598) [007] ...1 24572.940389: tracing_mark_write: E|598
38258  HwBinder:598_3-633   (  598) [007] ...1 24572.940408: tracing_mark_write: E|598
38259  HwBinder:598_3-633   (  598) [007] ...1 24572.940428: tracing_mark_write: E|598
38260  HwBinder:598_3-633   (  598) [007] .... 24572.940431: binder_transaction: transaction=1669611 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
38261  HwBinder:598_3-633   (  598) [007] d..2 24572.940438: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
38262  HwBinder:598_3-633   (  598) [007] .... 24572.940447: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
38263 id.nn.benchmark-13158 (13131) [000] dnh1 24572.940452: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
38264 id.nn.benchmark-13158 (13131) [000] d..2 24572.940458: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
38265  surfaceflinger-23896 (23896) [000] .... 24572.940463: binder_transaction_received: transaction=1669611
38266  HwBinder:598_3-633   (  598) [007] d..2 24572.940467: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=android.display next_pid=24003 next_prio=117
38267<...>-24003 ( 23968) [007] d..2 24572.940543: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
38268<...>-24151 ( 24151) [007] d..2 24572.940579: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
38269  surfaceflinger-23896 (23896) [000] d..2 24572.940732: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
38270           <...>-13154 (-----) [005] d.s1 24572.940893: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
38271 id.nn.benchmark-13160 (13131) [006] d.s2 24572.940896: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
38272           <...>-13154 (-----) [005] dns2 24572.940903: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
38273           <...>-13154 (-----) [005] d..2 24572.940906: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
38274     rcu_preempt-7     (    7) [005] d..2 24572.940910: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=007
38275 crtc_commit:111-253   (  253) [001] d.h1 24572.940915: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
38276     rcu_preempt-7     (    7) [005] d..3 24572.940921: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=007
38277     rcu_preempt-7     (    7) [005] d..2 24572.940926: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
38278 id.nn.benchmark-13155 (13131) [007] d..2 24572.940927: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
38279         rcuop/6-61    (   61) [007] d..2 24572.940942: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
38280 crtc_commit:111-253   (  253) [001] d..3 24572.942493: sched_pi_setprio: comm=kworker/u16:15 pid=18488 oldprio=120 newprio=83
38281 id.nn.benchmark-13155 (13131) [007] d..2 24572.942528: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=83
38282 crtc_commit:111-253   (  253) [001] d.h3 24572.942555: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
38283 crtc_commit:111-253   (  253) [001] d.h3 24572.942568: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
38284           <...>-13154 (-----) [005] dnh1 24572.942570: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
38285           <...>-13154 (-----) [005] d..2 24572.942573: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
38286 crtc_commit:111-253   (  253) [001] d.h4 24572.942576: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
38287         sugov:4-560   (  560) [005] d..2 24572.942578: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
38288 crtc_commit:111-253   (  253) [001] d..2 24572.942584: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
38289 id.nn.benchmark-13158 (13131) [000] d..2 24572.942586: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
38290         sugov:0-559   (  559) [000] d..2 24572.942594: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
38291  kworker/u16:15-18488 (18488) [007] d..2 24572.942600: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
38292 id.nn.benchmark-13159 (13131) [003] d.s2 24572.942636: sched_waking: comm=kworker/u16:15 pid=18488 prio=83 target_cpu=007
38293 id.nn.benchmark-13159 (13131) [003] d.s3 24572.942655: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=83 target_cpu=001
38294  kworker/u16:10-23868 (23868) [001] d..2 24572.942684: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=83
38295  kworker/u16:15-18488 (18488) [001] d..1 24572.942692: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
38296 id.nn.benchmark-13155 (13131) [007] dnh1 24572.942726: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
38297  kworker/u16:15-18488 (18488) [001] d..2 24572.942728: sched_pi_setprio: comm=kworker/u16:15 pid=18488 oldprio=83 newprio=120
38298 id.nn.benchmark-13155 (13131) [007] d..2 24572.942729: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
38299  kworker/u16:15-18488 (18488) [001] d..2 24572.942737: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
38300 crtc_commit:111-253   (  253) [007] d..2 24572.943107: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
38301  kworker/u16:10-23868 (23868) [001] d..2 24572.943142: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
38302 id.nn.benchmark-13159 (13131) [003] d.s2 24572.943168: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
38303  kworker/u16:15-18488 (18488) [001] d..2 24572.943173: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13182 next_prio=110
38304 id.nn.benchmark-13159 (13131) [003] d.s3 24572.943182: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
38305 id.nn.benchmark-13159 (13131) [003] d.s3 24572.943187: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
38306           <...>-13182 (-----) [001] d..2 24572.943192: sched_switch: prev_comm=id.nn.benchmark prev_pid=13182 prev_prio=110 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
38307  kworker/u16:10-23868 (23868) [001] d..2 24572.943206: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13182 next_prio=110
38308           <...>-13182 (-----) [001] ...1 24572.943210: tracing_mark_write: E|13131
38309           <...>-13182 (-----) [001] ...1 24572.943215: tracing_mark_write: E|13131
38310           <...>-13182 (-----) [001] ...1 24572.943238: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
38311           <...>-13182 (-----) [001] ...1 24572.943244: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
38312           <...>-13182 (-----) [001] d.h1 24572.943273: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
38313           <...>-13182 (-----) [001] d.h2 24572.943282: sched_blocked_reason: pid=18488 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
38314           <...>-13182 (-----) [001] dnh2 24572.943285: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
38315           <...>-13182 (-----) [001] d..2 24572.943292: sched_switch: prev_comm=id.nn.benchmark prev_pid=13182 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
38316  kworker/u16:15-18488 (18488) [001] d..2 24572.943343: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13182 next_prio=110
38317           <...>-13182 (-----) [001] d.h1 24572.943443: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
38318           <...>-13182 (-----) [001] d.h2 24572.943451: sched_blocked_reason: pid=18488 iowait=0 caller=a6xx_rpmh_gpu_pwrctrl+0x13d4/0x3168
38319           <...>-13182 (-----) [001] dnh2 24572.943454: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
38320           <...>-13182 (-----) [001] d..2 24572.943461: sched_switch: prev_comm=id.nn.benchmark prev_pid=13182 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
38321  kworker/u16:15-18488 (18488) [001] d..1 24572.943469: clk_disable: gpu_cc_cx_gmu_clk
38322  kworker/u16:15-18488 (18488) [001] d..1 24572.943484: clk_disable: gpu_cc_gmu_clk_src
38323  kworker/u16:15-18488 (18488) [001] d..1 24572.943505: clk_disable: gcc_gpu_gpll0_div_clk_src
38324  kworker/u16:15-18488 (18488) [001] d..1 24572.944012: clk_disable: gpll0_out_even
38325  kworker/u16:15-18488 (18488) [001] d..1 24572.944041: clk_disable: gpu_cc_cxo_clk
38326  kworker/u16:15-18488 (18488) [001] d..1 24572.944049: clk_disable: gcc_ddrss_gpu_axi_clk
38327  kworker/u16:15-18488 (18488) [001] d..1 24572.944066: clk_disable: gcc_gpu_memnoc_gfx_clk
38328  kworker/u16:15-18488 (18488) [001] d..2 24572.944199: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
38329  kworker/u16:15-18488 (18488) [001] d..3 24572.944208: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
38330  kworker/u16:15-18488 (18488) [001] d..2 24572.944398: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
38331  kworker/u16:10-23868 (23868) [001] d..2 24572.944404: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13182 next_prio=110
38332           <...>-13182 (-----) [001] ...1 24572.944540: tracing_mark_write: E|13131
38333           <...>-13182 (-----) [001] ...1 24572.944544: tracing_mark_write: E|13131
38334           <...>-13182 (-----) [001] ...1 24572.944558: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
38335           <...>-13182 (-----) [001] ...1 24572.944562: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
38336           <...>-13182 (-----) [001] ...1 24572.944958: tracing_mark_write: E|13131
38337           <...>-13182 (-----) [001] ...1 24572.944962: tracing_mark_write: E|13131
38338           <...>-13182 (-----) [001] ...1 24572.944973: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
38339           <...>-13182 (-----) [001] ...1 24572.944977: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
38340           <...>-13182 (-----) [001] ...1 24572.945376: tracing_mark_write: E|13131
38341           <...>-13182 (-----) [001] ...1 24572.945380: tracing_mark_write: E|13131
38342           <...>-13182 (-----) [001] ...1 24572.945400: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
38343           <...>-13182 (-----) [001] ...1 24572.945404: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
38344           <...>-13182 (-----) [001] ...1 24572.945600: tracing_mark_write: E|13131
38345           <...>-13182 (-----) [001] ...1 24572.945604: tracing_mark_write: E|13131
38346           <...>-13182 (-----) [001] ...1 24572.945617: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
38347           <...>-13182 (-----) [001] ...1 24572.945621: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
38348           <...>-13182 (-----) [001] ...1 24572.945697: tracing_mark_write: E|13131
38349           <...>-13182 (-----) [001] ...1 24572.945700: tracing_mark_write: E|13131
38350           <...>-13182 (-----) [001] ...1 24572.945713: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
38351           <...>-13182 (-----) [001] ...1 24572.945718: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
38352           <...>-13182 (-----) [001] ...1 24572.946030: tracing_mark_write: E|13131
38353           <...>-13182 (-----) [001] ...1 24572.946034: tracing_mark_write: E|13131
38354           <...>-13182 (-----) [001] ...1 24572.946043: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
38355           <...>-13182 (-----) [001] ...1 24572.946047: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
38356           <...>-13182 (-----) [001] ...1 24572.946099: tracing_mark_write: E|13131
38357           <...>-13182 (-----) [001] ...1 24572.946102: tracing_mark_write: E|13131
38358           <...>-13182 (-----) [001] ...1 24572.946111: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
38359           <...>-13182 (-----) [001] ...1 24572.946114: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
38360           <...>-13182 (-----) [001] ...1 24572.946132: tracing_mark_write: E|13131
38361           <...>-13182 (-----) [001] ...1 24572.946135: tracing_mark_write: E|13131
38362           <...>-13182 (-----) [001] ...1 24572.946146: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
38363           <...>-13182 (-----) [001] ...1 24572.946148: tracing_mark_write: E|13131
38364           <...>-13182 (-----) [001] ...1 24572.946159: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
38365           <...>-13182 (-----) [001] ...1 24572.946163: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
38366           <...>-13182 (-----) [001] ...1 24572.947016: tracing_mark_write: E|13131
38367           <...>-13182 (-----) [001] ...1 24572.947019: tracing_mark_write: E|13131
38368           <...>-13182 (-----) [001] ...1 24572.947027: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
38369           <...>-13182 (-----) [001] ...1 24572.947031: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
38370           <...>-13182 (-----) [001] ...1 24572.947115: tracing_mark_write: E|13131
38371           <...>-13182 (-----) [001] ...1 24572.947118: tracing_mark_write: E|13131
38372           <...>-13182 (-----) [001] d..2 24572.947183: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
38373           <...>-13182 (-----) [001] d..3 24572.947194: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
38374           <...>-13182 (-----) [001] ...1 24572.947218: tracing_mark_write: E|13131
38375           <...>-13182 (-----) [001] d..1 24572.947225: sched_waking: comm=id.nn.benchmark pid=13181 prio=110 target_cpu=001
38376 id.nn.benchmark-13155 (13131) [007] dnh1 24572.947249: sched_wakeup: comm=id.nn.benchmark pid=13181 prio=110 target_cpu=007
38377 id.nn.benchmark-13155 (13131) [007] d..2 24572.947274: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13181 next_prio=110
38378           <...>-13182 (-----) [001] d.h3 24572.947275: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
38379           <...>-13182 (-----) [001] d.h3 24572.947283: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
38380           <...>-13181 (-----) [007] d..2 24572.947285: sched_switch: prev_comm=id.nn.benchmark prev_pid=13181 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
38381           <...>-13154 (-----) [005] dnh1 24572.947286: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
38382           <...>-13154 (-----) [005] d..2 24572.947289: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
38383         sugov:4-560   (  560) [005] d..2 24572.947293: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
38384           <...>-13182 (-----) [001] dnh4 24572.947293: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
38385           <...>-13182 (-----) [001] d..2 24572.947299: sched_switch: prev_comm=id.nn.benchmark prev_pid=13182 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
38386         sugov:0-559   (  559) [001] d..2 24572.947306: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
38387     logd.writer-563   (  555) [001] d..2 24572.947387: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13182 next_prio=110
38388           <...>-13182 (-----) [001] ...1 24572.947406: tracing_mark_write: E|13131
38389           <...>-13154 (-----) [005] d.s1 24572.947553: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
38390           <...>-13154 (-----) [005] dns2 24572.947563: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
38391           <...>-13154 (-----) [005] d..2 24572.947565: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
38392     rcu_preempt-7     (    7) [005] d..2 24572.947569: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
38393           <...>-13182 (-----) [001] d..1 24572.947652: sched_waking: comm=id.nn.benchmark pid=13181 prio=110 target_cpu=007
38394           <...>-13182 (-----) [001] dn.2 24572.947681: sched_wakeup: comm=id.nn.benchmark pid=13181 prio=110 target_cpu=001
38395           <...>-13182 (-----) [001] d..2 24572.947707: sched_switch: prev_comm=id.nn.benchmark prev_pid=13182 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13181 next_prio=110
38396           <...>-13181 (-----) [001] d..2 24572.947768: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
38397           <...>-13181 (-----) [001] d..3 24572.947778: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
38398           <...>-13181 (-----) [001] d..1 24572.947836: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
38399           <...>-13157 (-----) [004] dnh1 24572.947860: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
38400           <...>-13157 (-----) [004] d..2 24572.947863: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
38401           <...>-13131 (-----) [004] d..2 24572.947871: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
38402           <...>-13181 (-----) [001] d..1 24572.947915: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
38403           <...>-13157 (-----) [004] dnh1 24572.947937: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
38404           <...>-13157 (-----) [004] d..2 24572.947940: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
38405           <...>-13131 (-----) [004] ...1 24572.947956: tracing_mark_write: E|13131
38406           <...>-13131 (-----) [004] ...1 24572.947959: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
38407           <...>-13131 (-----) [004] ...1 24572.947962: tracing_mark_write: E|13131
38408           <...>-13131 (-----) [004] ...1 24572.947964: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
38409           <...>-13131 (-----) [004] ...1 24572.947966: tracing_mark_write: E|13131
38410           <...>-13181 (-----) [001] d..2 24572.948001: sched_switch: prev_comm=id.nn.benchmark prev_pid=13181 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
38411           <...>-13131 (-----) [004] ...1 24572.948031: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
38412           <...>-13131 (-----) [004] ...1 24572.948057: tracing_mark_write: E|13131
38413           <...>-13131 (-----) [004] ...1 24572.948059: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
38414           <...>-13131 (-----) [004] ...1 24572.948062: tracing_mark_write: E|13131
38415           <...>-13131 (-----) [004] ...1 24572.948064: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
38416           <...>-13131 (-----) [004] ...1 24572.948066: tracing_mark_write: E|13131
38417           <...>-13131 (-----) [004] ...1 24572.948068: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
38418     logd.writer-563   (  555) [001] d..2 24572.948086: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13182 next_prio=110
38419           <...>-13131 (-----) [004] d..1 24572.948093: sched_waking: comm=id.nn.benchmark pid=13182 prio=110 target_cpu=001
38420           <...>-13182 (-----) [001] d..2 24572.948129: sched_switch: prev_comm=id.nn.benchmark prev_pid=13182 prev_prio=110 prev_state=D ==> next_comm=system next_pid=105 next_prio=120
38421<...>-105 ( 105) [001] d.h3 24572.948159: sched_blocked_reason: pid=13182 iowait=0 caller=do_exit+0x908/0x11bc
38422           <...>-13131 (-----) [004] d..2 24572.948161: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
38423<...>-105 ( 105) [001] dnh3 24572.948162: sched_wakeup: comm=id.nn.benchmark pid=13182 prio=110 target_cpu=001
38424<...>-105 ( 105) [001] dnh4 24572.948166: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
38425<...>-105 ( 105) [001] dnh4 24572.948178: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
38426           <...>-13157 (-----) [004] dnh1 24572.948182: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
38427<...>-105 ( 105) [001] dnh5 24572.948184: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
38428           <...>-13157 (-----) [004] d..2 24572.948185: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
38429         sugov:4-560   (  560) [004] d..2 24572.948189: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
38430<...>-105 ( 105) [001] d..2 24572.948190: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
38431         sugov:0-559   (  559) [001] d..2 24572.948196: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13182 next_prio=110
38432           <...>-13182 (-----) [001] d..2 24572.948198: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
38433           <...>-13157 (-----) [004] d.h1 24572.948210: sched_blocked_reason: pid=13131 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
38434           <...>-13157 (-----) [004] dnh1 24572.948211: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
38435           <...>-13157 (-----) [004] d..2 24572.948214: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
38436           <...>-13182 (-----) [001] d..2 24572.948239: sched_switch: prev_comm=id.nn.benchmark prev_pid=13182 prev_prio=110 prev_state=x ==> next_comm=system next_pid=105 next_prio=120
38437           <...>-13131 (-----) [004] ...1 24572.948257: tracing_mark_write: E|13131
38438           <...>-13131 (-----) [004] ...1 24572.948259: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
38439           <...>-13131 (-----) [004] d..2 24572.948263: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
38440<...>-105 ( 105) [001] d..2 24572.948293: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13183 next_prio=110
38441           <...>-13183 (-----) [001] d..2 24572.948370: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
38442           <...>-13183 (-----) [001] d..3 24572.948377: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
38443           <...>-13183 (-----) [001] d..2 24572.948681: sched_switch: prev_comm=id.nn.benchmark prev_pid=13183 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
38444     logd.writer-563   (  555) [001] d..2 24572.948877: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13184 next_prio=110
38445           <...>-13184 (-----) [001] ...1 24572.948904: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
38446           <...>-13184 (-----) [001] ...1 24572.948909: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
38447           <...>-13184 (-----) [001] d..2 24572.948968: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
38448           <...>-13184 (-----) [001] d..3 24572.948977: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
38449           <...>-13184 (-----) [001] ...1 24572.949042: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
38450           <...>-13184 (-----) [001] ...1 24572.949047: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
38451 id.nn.benchmark-13158 (13131) [000] d.h4 24572.950321: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
38452 id.nn.benchmark-13158 (13131) [000] d.h5 24572.950335: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
38453 id.nn.benchmark-13158 (13131) [000] d.h4 24572.950338: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
38454           <...>-13184 (-----) [001] d..2 24572.950345: sched_switch: prev_comm=id.nn.benchmark prev_pid=13184 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
38455           <...>-13157 (-----) [004] dnh1 24572.950354: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
38456           <...>-13157 (-----) [004] d..2 24572.950357: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
38457  crtc_event:111-254   (  254) [001] d..2 24572.950366: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
38458 crtc_commit:111-253   (  253) [004] d..2 24572.950449: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
38459     logd.writer-563   (  555) [001] d..2 24572.950470: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13184 next_prio=110
38460 id.nn.benchmark-13160 (13131) [006] d.s2 24572.950887: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
38461           <...>-13157 (-----) [004] d.s2 24572.950891: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
38462 id.nn.benchmark-13156 (13131) [002] d.s2 24572.950893: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
38463           <...>-13184 (-----) [001] dnH1 24572.950903: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
38464           <...>-13184 (-----) [001] dnH1 24572.950907: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
38465           <...>-13184 (-----) [001] d..2 24572.950916: sched_switch: prev_comm=id.nn.benchmark prev_pid=13184 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
38466           <...>-13154 (-----) [005] dnh1 24572.950918: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
38467           <...>-13154 (-----) [005] d..2 24572.950920: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
38468     rcu_preempt-7     (    7) [005] d..2 24572.950922: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
38469  crtc_event:111-254   (  254) [001] d..2 24572.950930: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
38470     rcu_preempt-7     (    7) [005] d..2 24572.950931: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
38471  kworker/u16:10-23868 (23868) [001] d.h3 24572.950937: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
38472     rcu_preempt-7     (    7) [005] d..2 24572.950940: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
38473  kworker/u16:10-23868 (23868) [001] d.h2 24572.950943: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
38474  kworker/u16:10-23868 (23868) [001] d..2 24572.951120: 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
38475         rcuop/0-10    (   10) [001] d..2 24572.951125: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
38476         rcuop/0-10    (   10) [001] d..3 24572.951143: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
38477         rcuop/0-10    (   10) [001] d..2 24572.951150: 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
38478 id.nn.benchmark-13159 (13131) [003] d.s2 24572.951151: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
38479         rcuop/2-29    (   29) [001] d..2 24572.951160: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
38480 id.nn.benchmark-13159 (13131) [003] d.s3 24572.951165: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
38481 id.nn.benchmark-13159 (13131) [003] d.s3 24572.951168: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
38482         rcuop/1-21    (   21) [001] d..2 24572.951186: 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
38483  kworker/u16:10-23868 (23868) [001] d..2 24572.951458: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13184 next_prio=110
38484           <...>-13184 (-----) [001] ...1 24572.951752: tracing_mark_write: E|13131
38485           <...>-13184 (-----) [001] ...1 24572.951756: tracing_mark_write: E|13131
38486           <...>-13184 (-----) [001] ...1 24572.951768: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
38487           <...>-13184 (-----) [001] ...1 24572.951772: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
38488           <...>-13184 (-----) [001] ...1 24572.952471: tracing_mark_write: E|13131
38489           <...>-13184 (-----) [001] ...1 24572.952474: tracing_mark_write: E|13131
38490           <...>-13184 (-----) [001] ...1 24572.952489: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
38491           <...>-13184 (-----) [001] ...1 24572.952493: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
38492 id.nn.benchmark-13158 (13131) [000] d.h4 24572.952664: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
38493 id.nn.benchmark-13158 (13131) [000] d.h5 24572.952683: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
38494           <...>-13184 (-----) [001] d..2 24572.952694: sched_switch: prev_comm=id.nn.benchmark prev_pid=13184 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
38495 id.nn.benchmark-13158 (13131) [000] d.h2 24572.952722: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
38496 crtc_commit:111-253   (  253) [001] .... 24572.952724: clk_set_rate: disp_cc_mdss_mdp_clk_src 100000000
38497 id.nn.benchmark-13158 (13131) [000] d.h2 24572.952729: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
38498           <...>-13157 (-----) [004] dnh1 24572.952733: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
38499           <...>-13157 (-----) [004] d..2 24572.952737: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
38500 id.nn.benchmark-13158 (13131) [000] dnh3 24572.952739: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
38501         sugov:4-560   (  560) [004] d..2 24572.952741: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
38502 id.nn.benchmark-13158 (13131) [000] d..2 24572.952745: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
38503         sugov:0-559   (  559) [000] d..2 24572.952753: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
38504 crtc_commit:111-253   (  253) [001] .... 24572.952768: clk_set_rate: disp_cc_mdss_mdp_lut_clk 0
38505 crtc_commit:111-253   (  253) [001] .... 24572.952769: clk_set_rate: disp_cc_mdss_mdp_clk 100000000
38506 crtc_commit:111-253   (  253) [001] d..2 24572.952846: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13184 next_prio=110
38507 id.nn.benchmark-13158 (13131) [000] d.h4 24572.952970: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
38508 id.nn.benchmark-13158 (13131) [000] d.h5 24572.952980: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
38509           <...>-13184 (-----) [001] d..2 24572.952988: sched_switch: prev_comm=id.nn.benchmark prev_pid=13184 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
38510  crtc_event:111-254   (  254) [001] d..2 24572.952999: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13184 next_prio=110
38511           <...>-13184 (-----) [001] ...1 24572.953015: tracing_mark_write: E|13131
38512           <...>-13184 (-----) [001] ...1 24572.953019: tracing_mark_write: E|13131
38513           <...>-13184 (-----) [001] ...1 24572.953029: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
38514           <...>-13184 (-----) [001] ...1 24572.953033: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
38515           <...>-13184 (-----) [001] ...1 24572.953262: tracing_mark_write: E|13131
38516           <...>-13184 (-----) [001] ...1 24572.953266: tracing_mark_write: E|13131
38517           <...>-13184 (-----) [001] ...1 24572.953276: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
38518           <...>-13184 (-----) [001] ...1 24572.953280: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
38519           <...>-13184 (-----) [001] ...1 24572.953662: tracing_mark_write: E|13131
38520           <...>-13184 (-----) [001] ...1 24572.953665: tracing_mark_write: E|13131
38521           <...>-13184 (-----) [001] ...1 24572.953675: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
38522           <...>-13184 (-----) [001] ...1 24572.953680: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
38523           <...>-13184 (-----) [001] d.h1 24572.953912: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
38524           <...>-13184 (-----) [001] dnh2 24572.953923: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
38525           <...>-13184 (-----) [001] d..2 24572.953931: sched_switch: prev_comm=id.nn.benchmark prev_pid=13184 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
38526        DispSync-23904 (23896) [001] d..1 24572.953956: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
38527        DispSync-23904 (23896) [001] d..2 24572.953967: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
38528 id.nn.benchmark-13156 (13131) [002] d..2 24572.953977: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
38529        DispSync-23904 (23896) [001] d..2 24572.953984: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13184 next_prio=110
38530   sfEventThread-23906 (23896) [002] d..3 24572.954010: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=004
38531           <...>-13157 (-----) [004] dnh1 24572.954027: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=004
38532           <...>-13157 (-----) [004] d..2 24572.954030: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
38533   sfEventThread-23906 (23896) [002] d..3 24572.954032: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=004
38534<...>-24042 ( 23968) [004] d.h1 24572.954046: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=004
38535   sfEventThread-23906 (23896) [002] d..3 24572.954049: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
38536   sfEventThread-23906 (23896) [002] d..4 24572.954064: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
38537           <...>-13184 (-----) [001] d..2 24572.954072: sched_switch: prev_comm=id.nn.benchmark prev_pid=13184 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
38538   sfEventThread-23906 (23896) [002] d..2 24572.954077: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
38539  surfaceflinger-23896 (23896) [001] d.s2 24572.954234: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
38540  surfaceflinger-23896 (23896) [001] d.s3 24572.954244: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
38541<...>-24042 ( 23968) [004] .... 24572.954249: binder_transaction: transaction=1669612 dest_node=1271163 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
38542<...>-24042 ( 23968) [004] d..4 24572.954256: sched_waking: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=007
38543<...>-24042 ( 23968) [004] d..5 24572.954265: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=007
38544 id.nn.benchmark-13155 (13131) [007] d..2 24572.954272: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
38545  Binder:23896_3-23986 (23896) [007] .... 24572.954276: binder_transaction_received: transaction=1669612
38546  Binder:23896_3-23986 (23896) [007] d..1 24572.954297: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
38547 id.nn.benchmark-13156 (13131) [002] dnh1 24572.954308: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
38548 id.nn.benchmark-13156 (13131) [002] d..2 24572.954314: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
38549  Binder:23896_3-23986 (23896) [007] d..2 24572.954316: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
38550<...>-24042 ( 23968) [004] .... 24572.954332: binder_transaction: transaction=1669613 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
38551   sfEventThread-23906 (23896) [002] d..2 24572.954332: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
38552<...>-24042 ( 23968) [004] ...2 24572.954344: binder_set_priority: proc=23896 thread=23986 old=120 => new=110 desired=110
38553<...>-24042 ( 23968) [004] d..4 24572.954345: sched_waking: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=007
38554<...>-24042 ( 23968) [004] d..5 24572.954353: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=007
38555<...>-24042 ( 23968) [004] d..2 24572.954357: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
38556 id.nn.benchmark-13155 (13131) [007] d..2 24572.954359: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=110
38557  Binder:23896_3-23986 (23896) [007] .... 24572.954361: binder_transaction_received: transaction=1669613
38558  surfaceflinger-23896 (23896) [001] d..1 24572.954384: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
38559  surfaceflinger-23896 (23896) [001] d..2 24572.954395: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
38560  Binder:23896_3-23986 (23896) [007] d..2 24572.954397: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
38561  surfaceflinger-23896 (23896) [001] d..1 24572.954397: sched_waking: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=007
38562 id.nn.benchmark-13156 (13131) [002] d..2 24572.954402: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
38563 id.nn.benchmark-13155 (13131) [007] dnh1 24572.954411: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=007
38564   sfEventThread-23906 (23896) [002] d..2 24572.954413: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
38565 id.nn.benchmark-13155 (13131) [007] d..2 24572.954414: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=110
38566<...>-24041 ( 23968) [004] .... 24572.954420: binder_transaction: transaction=1669614 dest_node=1271137 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
38567  Binder:23896_3-23986 (23896) [007] .... 24572.954421: binder_transaction: transaction=1669615 dest_node=0 dest_proc=23968 dest_thread=24042 reply=1 flags=0x0 code=0x0
38568<...>-24041 ( 23968) [004] d..4 24572.954422: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
38569<...>-24041 ( 23968) [004] d..5 24572.954437: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
38570  Binder:23896_3-23986 (23896) [007] d..2 24572.954438: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=004
38571           <...>-13154 (-----) [005] d..2 24572.954443: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
38572<...>-23903 ( 23896) [005] .... 24572.954445: binder_transaction_received: transaction=1669614
38573<...>-23903 ( 23896) [005] d..1 24572.954453: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
38574 id.nn.benchmark-13156 (13131) [002] dnh1 24572.954476: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
38575  Binder:23896_3-23986 (23896) [007] d.h3 24572.954476: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
38576<...>-23903 ( 23896) [005] d..2 24572.954477: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
38577  surfaceflinger-23896 (23896) [001] d.h1 24572.954477: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=001
38578 id.nn.benchmark-13156 (13131) [002] d..2 24572.954480: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
38579  Binder:23896_3-23986 (23896) [007] d.h4 24572.954485: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
38580  Binder:23896_3-23986 (23896) [007] d.h3 24572.954485: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
38581   sfEventThread-23906 (23896) [002] d..2 24572.954491: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
38582           <...>-13154 (-----) [005] d..2 24572.954491: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
38583  Binder:23896_3-23986 (23896) [007] .... 24572.954491: binder_set_priority: proc=23896 thread=23986 old=110 => new=120 desired=120
38584         sugov:4-560   (  560) [005] d..2 24572.954494: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
38585 id.nn.benchmark-13158 (13131) [000] dnh1 24572.954496: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
38586 id.nn.benchmark-13158 (13131) [000] d..2 24572.954502: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
38587  Binder:23896_3-23986 (23896) [007] d..2 24572.954506: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
38588         sugov:0-559   (  559) [000] d..2 24572.954510: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
38589<...>-24041 ( 23968) [004] .... 24572.954657: binder_transaction: transaction=1669616 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
38590<...>-24041 ( 23968) [004] ...2 24572.954664: binder_set_priority: proc=23896 thread=23986 old=120 => new=110 desired=110
38591<...>-24041 ( 23968) [004] d..4 24572.954665: sched_waking: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=007
38592<...>-24041 ( 23968) [004] d..5 24572.954674: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=007
38593<...>-24041 ( 23968) [004] d..2 24572.954679: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
38594 id.nn.benchmark-13155 (13131) [007] d..2 24572.954681: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=110
38595  Binder:23896_3-23986 (23896) [007] .... 24572.954682: binder_transaction_received: transaction=1669616
38596  Binder:23896_3-23986 (23896) [007] .... 24572.954699: binder_transaction: transaction=1669617 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
38597  Binder:23896_3-23986 (23896) [007] d..2 24572.954701: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=004
38598  Binder:23896_3-23986 (23896) [007] d..3 24572.954708: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=004
38599  Binder:23896_3-23986 (23896) [007] .... 24572.954708: binder_set_priority: proc=23896 thread=23986 old=110 => new=120 desired=120
38600           <...>-13157 (-----) [004] d..2 24572.954714: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
38601<...>-24041 ( 23968) [004] .... 24572.954716: binder_transaction_received: transaction=1669617
38602  Binder:23896_3-23986 (23896) [007] d..2 24572.954719: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
38603<...>-24041 ( 23968) [004] d..2 24572.954753: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
38604  surfaceflinger-23896 (23896) [001] ...1 24572.955100: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
38605  surfaceflinger-23896 (23896) [001] ...1 24572.955103: tracing_mark_write: E|23896
38606  surfaceflinger-23896 (23896) [001] .... 24572.955148: binder_transaction: transaction=1669618 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
38607  surfaceflinger-23896 (23896) [001] ...2 24572.955169: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
38608  surfaceflinger-23896 (23896) [001] d..4 24572.955175: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
38609           <...>-13157 (-----) [004] dnh1 24572.955196: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
38610           <...>-13157 (-----) [004] d..2 24572.955199: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
38611  surfaceflinger-23896 (23896) [001] d..2 24572.955202: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
38612  HwBinder:598_3-633   (  598) [004] .... 24572.955203: binder_transaction_received: transaction=1669618
38613  HwBinder:598_3-633   (  598) [004] ...1 24572.955227: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
38614  HwBinder:598_3-633   (  598) [004] ...1 24572.955289: tracing_mark_write: B|598|HWCSession::PresentDisplay::
38615     kworker/1:1-13091 (13091) [001] d..2 24572.955292: sched_waking: comm=system pid=105 prio=120 target_cpu=001
38616     kworker/1:1-13091 (13091) [001] d..3 24572.955302: sched_wakeup: comm=system pid=105 prio=120 target_cpu=001
38617     kworker/1:1-13091 (13091) [001] d..2 24572.955317: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
38618<...>-24042 ( 23968) [001] .... 24572.955323: binder_transaction_received: transaction=1669615
38619<...>-24042 ( 23968) [001] d..2 24572.955379: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13184 next_prio=110
38620           <...>-13184 (-----) [001] ...1 24572.955460: tracing_mark_write: E|13131
38621           <...>-13184 (-----) [001] ...1 24572.955465: tracing_mark_write: E|13131
38622           <...>-13184 (-----) [001] ...1 24572.955485: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
38623           <...>-13184 (-----) [001] ...1 24572.955489: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
38624  HwBinder:598_3-633   (  598) [004] ...1 24572.955526: tracing_mark_write: B|598|HWDeviceDRM::Validate::
38625           <...>-13184 (-----) [001] ...1 24572.955686: tracing_mark_write: E|13131
38626           <...>-13184 (-----) [001] ...1 24572.955690: tracing_mark_write: E|13131
38627           <...>-13184 (-----) [001] ...1 24572.955703: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
38628           <...>-13184 (-----) [001] ...1 24572.955707: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
38629  HwBinder:598_3-633   (  598) [004] ...1 24572.955728: tracing_mark_write: E|598
38630  HwBinder:598_3-633   (  598) [004] ...1 24572.955770: tracing_mark_write: B|598|HWDeviceDRM::Commit::
38631  HwBinder:598_3-633   (  598) [004] ...1 24572.955772: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
38632           <...>-13184 (-----) [001] ...1 24572.955779: tracing_mark_write: E|13131
38633           <...>-13184 (-----) [001] ...1 24572.955782: tracing_mark_write: E|13131
38634           <...>-13184 (-----) [001] ...1 24572.955793: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
38635           <...>-13184 (-----) [001] ...1 24572.955798: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
38636  HwBinder:598_3-633   (  598) [004] d..2 24572.955880: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
38637  HwBinder:598_3-633   (  598) [004] d..3 24572.955894: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
38638  HwBinder:598_3-633   (  598) [004] d.h3 24572.955916: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
38639 id.nn.benchmark-13155 (13131) [007] d..2 24572.955917: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
38640  HwBinder:598_3-633   (  598) [004] d.h4 24572.955921: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
38641  HwBinder:598_3-633   (  598) [004] d.h3 24572.955921: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
38642           <...>-13154 (-----) [005] d..2 24572.955927: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
38643         sugov:4-560   (  560) [005] d..2 24572.955930: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
38644           <...>-13184 (-----) [001] dnh1 24572.955936: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
38645           <...>-13184 (-----) [001] d..2 24572.955944: sched_switch: prev_comm=id.nn.benchmark prev_pid=13184 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
38646         sugov:0-559   (  559) [001] d..2 24572.955952: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13184 next_prio=110
38647  HwBinder:598_3-633   (  598) [004] ...1 24572.955959: tracing_mark_write: E|598
38648  HwBinder:598_3-633   (  598) [004] ...1 24572.955960: tracing_mark_write: E|598
38649  HwBinder:598_3-633   (  598) [004] ...1 24572.955977: tracing_mark_write: E|598
38650  HwBinder:598_3-633   (  598) [004] ...1 24572.955997: tracing_mark_write: E|598
38651  HwBinder:598_3-633   (  598) [004] .... 24572.956003: binder_transaction: transaction=1669619 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
38652  HwBinder:598_3-633   (  598) [004] d..2 24572.956009: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
38653  HwBinder:598_3-633   (  598) [004] .... 24572.956016: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
38654           <...>-13184 (-----) [001] dnh1 24572.956020: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
38655           <...>-13184 (-----) [001] d..2 24572.956026: sched_switch: prev_comm=id.nn.benchmark prev_pid=13184 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
38656  surfaceflinger-23896 (23896) [001] .... 24572.956031: binder_transaction_received: transaction=1669619
38657  HwBinder:598_3-633   (  598) [004] d..2 24572.956040: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
38658  surfaceflinger-23896 (23896) [001] d..2 24572.956294: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13184 next_prio=110
38659           <...>-13184 (-----) [001] ...1 24572.956396: tracing_mark_write: E|13131
38660           <...>-13184 (-----) [001] ...1 24572.956401: tracing_mark_write: E|13131
38661           <...>-13184 (-----) [001] ...1 24572.956412: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
38662           <...>-13184 (-----) [001] ...1 24572.956416: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
38663           <...>-13184 (-----) [001] ...1 24572.956466: tracing_mark_write: E|13131
38664           <...>-13184 (-----) [001] ...1 24572.956469: tracing_mark_write: E|13131
38665           <...>-13184 (-----) [001] ...1 24572.956477: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
38666           <...>-13184 (-----) [001] ...1 24572.956481: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
38667           <...>-13184 (-----) [001] ...1 24572.956496: tracing_mark_write: E|13131
38668           <...>-13184 (-----) [001] ...1 24572.956498: tracing_mark_write: E|13131
38669           <...>-13184 (-----) [001] ...1 24572.956509: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
38670           <...>-13184 (-----) [001] ...1 24572.956512: tracing_mark_write: E|13131
38671           <...>-13184 (-----) [001] ...1 24572.956520: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
38672           <...>-13184 (-----) [001] ...1 24572.956524: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
38673 crtc_commit:111-253   (  253) [007] d..2 24572.957320: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
38674           <...>-13184 (-----) [001] ...1 24572.957376: tracing_mark_write: E|13131
38675           <...>-13184 (-----) [001] ...1 24572.957379: tracing_mark_write: E|13131
38676           <...>-13184 (-----) [001] ...1 24572.957387: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
38677           <...>-13184 (-----) [001] ...1 24572.957391: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
38678           <...>-13184 (-----) [001] ...1 24572.957475: tracing_mark_write: E|13131
38679           <...>-13184 (-----) [001] ...1 24572.957479: tracing_mark_write: E|13131
38680           <...>-13184 (-----) [001] d..2 24572.957533: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
38681           <...>-13184 (-----) [001] d..3 24572.957547: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
38682           <...>-13154 (-----) [005] d.s1 24572.957554: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
38683           <...>-13154 (-----) [005] d.s2 24572.957581: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
38684 id.nn.benchmark-13155 (13131) [007] d..2 24572.957587: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
38685 id.nn.benchmark-13160 (13131) [006] d.h2 24572.957588: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
38686     rcu_preempt-7     (    7) [007] d..2 24572.957589: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=007
38687 id.nn.benchmark-13160 (13131) [006] d.h3 24572.957594: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
38688 id.nn.benchmark-13160 (13131) [006] d.h2 24572.957595: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
38689           <...>-13154 (-----) [005] d..2 24572.957600: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
38690     rcu_preempt-7     (    7) [007] d..3 24572.957602: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
38691         sugov:4-560   (  560) [005] d..2 24572.957603: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
38692 id.nn.benchmark-13160 (13131) [006] d..2 24572.957606: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
38693           <...>-13184 (-----) [001] dnh1 24572.957606: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
38694     rcu_preempt-7     (    7) [007] d..2 24572.957607: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
38695           <...>-13184 (-----) [001] d..2 24572.957612: sched_switch: prev_comm=id.nn.benchmark prev_pid=13184 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
38696         sugov:0-559   (  559) [001] d..2 24572.957620: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
38697         rcuop/6-61    (   61) [006] d..2 24572.957623: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
38698     logd.writer-563   (  555) [001] d..2 24572.957688: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13184 next_prio=110
38699           <...>-13184 (-----) [001] ...1 24572.957695: tracing_mark_write: E|13131
38700           <...>-13184 (-----) [001] d..1 24572.957701: sched_waking: comm=id.nn.benchmark pid=13183 prio=110 target_cpu=001
38701           <...>-13184 (-----) [001] dn.2 24572.957713: sched_wakeup: comm=id.nn.benchmark pid=13183 prio=110 target_cpu=001
38702           <...>-13184 (-----) [001] d..2 24572.957718: sched_switch: prev_comm=id.nn.benchmark prev_pid=13184 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13183 next_prio=110
38703           <...>-13183 (-----) [001] d..2 24572.957733: sched_switch: prev_comm=id.nn.benchmark prev_pid=13183 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13184 next_prio=110
38704           <...>-13184 (-----) [001] ...1 24572.957750: tracing_mark_write: E|13131
38705           <...>-13184 (-----) [001] d..1 24572.957976: sched_waking: comm=id.nn.benchmark pid=13183 prio=110 target_cpu=001
38706           <...>-13184 (-----) [001] dn.2 24572.957984: sched_wakeup: comm=id.nn.benchmark pid=13183 prio=110 target_cpu=001
38707           <...>-13184 (-----) [001] d..2 24572.957989: sched_switch: prev_comm=id.nn.benchmark prev_pid=13184 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13183 next_prio=110
38708           <...>-13183 (-----) [001] d..2 24572.958043: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
38709           <...>-13183 (-----) [001] d..3 24572.958052: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
38710           <...>-13183 (-----) [001] d..1 24572.958108: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
38711           <...>-13157 (-----) [004] dnh1 24572.958125: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
38712           <...>-13157 (-----) [004] d..2 24572.958128: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
38713           <...>-13131 (-----) [004] d..2 24572.958135: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
38714           <...>-13183 (-----) [001] d..1 24572.958174: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
38715           <...>-13183 (-----) [001] d..2 24572.958191: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
38716           <...>-13183 (-----) [001] d.h3 24572.958221: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
38717           <...>-13183 (-----) [001] d.h3 24572.958229: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
38718           <...>-13154 (-----) [005] dnh1 24572.958232: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
38719           <...>-13183 (-----) [001] dnh4 24572.958234: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
38720           <...>-13154 (-----) [005] d..2 24572.958234: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
38721         sugov:4-560   (  560) [005] d..2 24572.958237: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
38722           <...>-13183 (-----) [001] d..2 24572.958239: sched_switch: prev_comm=id.nn.benchmark prev_pid=13183 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
38723         sugov:0-559   (  559) [001] d..2 24572.958246: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
38724     logd.writer-563   (  555) [001] d..2 24572.958299: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
38725           <...>-13131 (-----) [001] ...1 24572.958321: tracing_mark_write: E|13131
38726           <...>-13131 (-----) [001] ...1 24572.958327: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
38727           <...>-13131 (-----) [001] ...1 24572.958333: tracing_mark_write: E|13131
38728           <...>-13131 (-----) [001] ...1 24572.958339: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
38729           <...>-13131 (-----) [001] ...1 24572.958344: tracing_mark_write: E|13131
38730           <...>-13131 (-----) [001] ...1 24572.958656: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
38731           <...>-13131 (-----) [001] d..2 24572.958680: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
38732           <...>-13131 (-----) [001] d..3 24572.958691: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
38733           <...>-13131 (-----) [001] ...1 24572.958707: tracing_mark_write: E|13131
38734           <...>-13131 (-----) [001] ...1 24572.958711: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
38735           <...>-13131 (-----) [001] ...1 24572.958716: tracing_mark_write: E|13131
38736           <...>-13131 (-----) [001] ...1 24572.958721: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
38737           <...>-13131 (-----) [001] ...1 24572.958725: tracing_mark_write: E|13131
38738           <...>-13131 (-----) [001] ...1 24572.958729: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
38739           <...>-13131 (-----) [001] ...1 24572.958852: tracing_mark_write: E|13131
38740           <...>-13131 (-----) [001] ...1 24572.958856: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
38741           <...>-13131 (-----) [001] d..2 24572.958866: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13183 next_prio=110
38742           <...>-13183 (-----) [001] d..2 24572.958928: sched_switch: prev_comm=id.nn.benchmark prev_pid=13183 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
38743     logd.writer-563   (  555) [001] d..2 24572.958970: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13184 next_prio=110
38744           <...>-13184 (-----) [001] d..2 24572.959005: sched_switch: prev_comm=id.nn.benchmark prev_pid=13184 prev_prio=110 prev_state=x ==> next_comm=system next_pid=105 next_prio=120
38745 id.nn.benchmark-13158 (13131) [000] d.h1 24572.960238: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
38746 id.nn.benchmark-13158 (13131) [000] dnh2 24572.960245: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
38747 id.nn.benchmark-13158 (13131) [000] d..2 24572.960254: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
38748<...>-105 ( 105) [001] d..2 24572.960300: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13185 next_prio=110
38749           <...>-13185 (-----) [001] d..2 24572.960361: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
38750           <...>-13185 (-----) [001] d..3 24572.960369: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
38751 irq/79-1436400.-24613 (24613) [000] d..2 24572.960394: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
38752 id.nn.benchmark-13159 (13131) [003] d.s2 24572.960443: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
38753 id.nn.benchmark-13159 (13131) [003] d.s3 24572.960452: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
38754 id.nn.benchmark-13158 (13131) [000] d..2 24572.960460: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
38755 irq/79-1436400.-24613 (24613) [000] d..2 24572.960477: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
38756           <...>-13185 (-----) [001] d..2 24572.960673: sched_switch: prev_comm=id.nn.benchmark prev_pid=13185 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
38757 id.nn.benchmark-13160 (13131) [006] d.s2 24572.960890: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
38758     logd.writer-563   (  555) [001] dnh3 24572.960910: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
38759     logd.writer-563   (  555) [001] d..2 24572.960916: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
38760  kworker/u16:10-23868 (23868) [001] d..2 24572.961289: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
38761     logd.writer-563   (  555) [001] d..2 24572.961300: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13186 next_prio=110
38762           <...>-13186 (-----) [001] ...1 24572.961328: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
38763           <...>-13186 (-----) [001] ...1 24572.961333: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
38764           <...>-13186 (-----) [001] d..2 24572.961395: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
38765           <...>-13186 (-----) [001] d..3 24572.961403: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
38766           <...>-13186 (-----) [001] ...1 24572.961472: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
38767           <...>-13186 (-----) [001] ...1 24572.961477: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
38768           <...>-13157 (-----) [004] d..3 24572.961923: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
38769 id.nn.benchmark-13155 (13131) [007] d..2 24572.961924: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38770           <...>-13154 (-----) [005] d..2 24572.961930: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
38771           <...>-13157 (-----) [004] d..2 24572.961931: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
38772 id.nn.benchmark-13156 (13131) [002] dnh1 24572.961935: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
38773          <idle>-0     (-----) [007] d..1 24572.961939: cpu_idle: state=2 cpu_id=7
38774          <idle>-0     (-----) [005] d..1 24572.961939: cpu_idle: state=2 cpu_id=5
38775 id.nn.benchmark-13156 (13131) [002] d..2 24572.961941: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
38776          <idle>-0     (-----) [004] d..1 24572.961941: cpu_idle: state=2 cpu_id=4
38777     migration/2-25    (   25) [002] d.h3 24572.961993: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
38778 id.nn.benchmark-13160 (13131) [006] d..3 24572.961996: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
38779     migration/2-25    (   25) [002] d.h3 24572.962001: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
38780 id.nn.benchmark-13160 (13131) [006] d..2 24572.962003: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
38781 id.nn.benchmark-13158 (13131) [000] dnh1 24572.962006: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
38782          <idle>-0     (-----) [006] d..1 24572.962011: cpu_idle: state=0 cpu_id=6
38783 id.nn.benchmark-13158 (13131) [000] d..2 24572.962011: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
38784     migration/2-25    (   25) [002] d.h4 24572.962012: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
38785     migration/2-25    (   25) [002] d..2 24572.962019: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
38786         sugov:0-559   (  559) [002] d..2 24572.962034: 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
38787          <idle>-0     (-----) [006] .n.1 24572.962037: cpu_idle: state=4294967295 cpu_id=6
38788          <idle>-0     (-----) [002] d..1 24572.962047: cpu_idle: state=0 cpu_id=2
38789          <idle>-0     (-----) [006] d..2 24572.962058: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
38790     migration/0-13    (   13) [000] d..2 24572.962069: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38791          <idle>-0     (-----) [000] d..1 24572.962082: cpu_idle: state=0 cpu_id=0
38792          <idle>-0     (-----) [005] dnh2 24572.962321: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
38793          <idle>-0     (-----) [005] .n.1 24572.962324: cpu_idle: state=4294967295 cpu_id=5
38794          <idle>-0     (-----) [005] d..2 24572.962328: 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
38795         sugov:4-560   (  560) [005] d..3 24572.962335: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
38796          <idle>-0     (-----) [004] .n.1 24572.962339: cpu_idle: state=4294967295 cpu_id=4
38797         sugov:4-560   (  560) [005] d..2 24572.962343: 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
38798          <idle>-0     (-----) [004] d..2 24572.962345: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
38799 id.nn.benchmark-13159 (13131) [003] dnh1 24572.962346: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
38800          <idle>-0     (-----) [005] d..1 24572.962347: cpu_idle: state=2 cpu_id=5
38801 id.nn.benchmark-13159 (13131) [003] d..2 24572.962351: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
38802<...>-33 ( 33) [003] d..2 24572.962412: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
38803     logd.writer-563   (  555) [003] d..2 24572.962481: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
38804     logd.writer-563   (  555) [003] d..3 24572.962517: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
38805          <idle>-0     (-----) [000] .n.1 24572.962521: cpu_idle: state=4294967295 cpu_id=0
38806          <idle>-0     (-----) [000] d..2 24572.962528: 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
38807         rcuop/2-29    (   29) [000] d..2 24572.962543: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38808          <idle>-0     (-----) [000] d..1 24572.962548: cpu_idle: state=0 cpu_id=0
38809          <idle>-0     (-----) [005] .n.1 24572.962560: cpu_idle: state=4294967295 cpu_id=5
38810          <idle>-0     (-----) [005] d..2 24572.962566: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
38811     logd.writer-563   (  555) [003] d..2 24572.962582: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38812          <idle>-0     (-----) [003] d..1 24572.962596: cpu_idle: state=2 cpu_id=3
38813           <...>-13186 (-----) [001] d..1 24572.963141: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
38814           <...>-13186 (-----) [001] d..1 24572.963159: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=007
38815           <...>-13186 (-----) [001] d..1 24572.963167: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=004
38816           <...>-13186 (-----) [001] d..1 24572.963179: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=006
38817          <idle>-0     (-----) [007] dnh2 24572.963299: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=007
38818          <idle>-0     (-----) [007] dnh2 24572.963300: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=007
38819          <idle>-0     (-----) [007] dnh2 24572.963301: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=007
38820          <idle>-0     (-----) [007] dnh2 24572.963302: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=007
38821          <idle>-0     (-----) [007] .n.1 24572.963305: cpu_idle: state=4294967295 cpu_id=7
38822          <idle>-0     (-----) [007] d..2 24572.963308: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
38823          <idle>-0     (-----) [002] ...1 24572.963531: cpu_idle: state=4294967295 cpu_id=2
38824          <idle>-0     (-----) [002] d..1 24572.963534: cpu_idle: state=2 cpu_id=2
38825          <idle>-0     (-----) [000] ...1 24572.964130: cpu_idle: state=4294967295 cpu_id=0
38826          <idle>-0     (-----) [000] d..1 24572.964132: cpu_idle: state=0 cpu_id=0
38827 id.nn.benchmark-13160 (13131) [007] d.s1 24572.964249: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
38828          <idle>-0     (-----) [000] dnH2 24572.964303: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
38829          <idle>-0     (-----) [000] dnH3 24572.964310: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
38830          <idle>-0     (-----) [000] dnH3 24572.964322: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
38831 id.nn.benchmark-13158 (13131) [006] dnh1 24572.964325: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
38832 id.nn.benchmark-13158 (13131) [006] d..2 24572.964328: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
38833          <idle>-0     (-----) [000] dnH4 24572.964330: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
38834         sugov:4-560   (  560) [006] d..2 24572.964332: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
38835          <idle>-0     (-----) [000] .n.1 24572.964337: cpu_idle: state=4294967295 cpu_id=0
38836          <idle>-0     (-----) [000] d..2 24572.964344: 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
38837     rcu_preempt-7     (    7) [000] d..2 24572.964354: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
38838          <idle>-0     (-----) [002] .n.1 24572.964429: cpu_idle: state=4294967295 cpu_id=2
38839          <idle>-0     (-----) [002] d..2 24572.964438: 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
38840         sugov:0-559   (  559) [002] d..2 24572.964461: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
38841 id.nn.benchmark-13155 (13131) [000] d.h4 24572.966804: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
38842 id.nn.benchmark-13155 (13131) [000] d.h5 24572.966822: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
38843 id.nn.benchmark-13155 (13131) [000] d.h4 24572.966826: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
38844 id.nn.benchmark-13155 (13131) [000] d.h5 24572.966842: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
38845           <...>-13186 (-----) [001] d..2 24572.966850: sched_switch: prev_comm=id.nn.benchmark prev_pid=13186 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
38846 id.nn.benchmark-13155 (13131) [000] d.h2 24572.966875: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
38847 id.nn.benchmark-13155 (13131) [000] d.h2 24572.966883: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
38848 id.nn.benchmark-13158 (13131) [006] dnh1 24572.966886: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
38849 id.nn.benchmark-13158 (13131) [006] d..2 24572.966888: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
38850 id.nn.benchmark-13155 (13131) [000] d.h3 24572.966890: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
38851         sugov:4-560   (  560) [006] d..2 24572.966891: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
38852           <...>-13154 (-----) [002] d..2 24572.966900: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
38853         sugov:0-559   (  559) [002] d..2 24572.966908: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
38854 crtc_commit:111-253   (  253) [001] d..2 24572.966913: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13186 next_prio=110
38855          <idle>-0     (-----) [003] .n.1 24572.966922: cpu_idle: state=4294967295 cpu_id=3
38856          <idle>-0     (-----) [003] d..2 24572.966932: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
38857  crtc_event:111-254   (  254) [003] d..2 24572.966946: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
38858  crtc_event:111-254   (  254) [003] d..3 24572.966958: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
38859           <...>-13186 (-----) [001] d..2 24572.966965: sched_switch: prev_comm=id.nn.benchmark prev_pid=13186 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
38860  crtc_event:111-254   (  254) [003] d..2 24572.966972: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38861          <idle>-0     (-----) [003] d..1 24572.966980: cpu_idle: state=2 cpu_id=3
38862 crtc_commit:111-253   (  253) [001] d..2 24572.967032: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13186 next_prio=110
38863           <...>-13186 (-----) [001] d.s2 24572.967562: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
38864 id.nn.benchmark-13155 (13131) [000] d.s2 24572.967565: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
38865           <...>-13186 (-----) [001] d.s3 24572.967572: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
38866 id.nn.benchmark-13155 (13131) [000] d.s3 24572.967580: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
38867          <idle>-0     (-----) [003] .n.1 24572.967669: cpu_idle: state=4294967295 cpu_id=3
38868          <idle>-0     (-----) [003] d..2 24572.967678: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
38869  crtc_event:111-254   (  254) [003] d..2 24572.967693: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
38870     rcu_preempt-7     (    7) [003] d..2 24572.967698: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
38871 id.nn.benchmark-13159 (13131) [005] d..3 24572.967716: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
38872 id.nn.benchmark-13156 (13131) [004] d..2 24572.967717: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
38873 id.nn.benchmark-13159 (13131) [005] d..2 24572.967723: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
38874     rcu_preempt-7     (    7) [003] d..3 24572.967724: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
38875 id.nn.benchmark-13155 (13131) [000] dnh1 24572.967726: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
38876          <idle>-0     (-----) [005] d..1 24572.967727: cpu_idle: state=2 cpu_id=5
38877 id.nn.benchmark-13155 (13131) [000] d..2 24572.967731: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
38878     rcu_preempt-7     (    7) [003] d..2 24572.967733: 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
38879         rcuop/0-10    (   10) [003] d..2 24572.967737: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
38880 id.nn.benchmark-13158 (13131) [006] d..2 24572.967743: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
38881 id.nn.benchmark-13155 (13131) [006] d.h4 24572.967764: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
38882     migration/0-13    (   13) [000] d..2 24572.967765: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38883 id.nn.benchmark-13155 (13131) [006] d.h5 24572.967772: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
38884 id.nn.benchmark-13155 (13131) [006] d.h4 24572.967772: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
38885          <idle>-0     (-----) [000] dn.1 24572.967773: cpu_idle: state=0 cpu_id=0
38886          <idle>-0     (-----) [000] .n.1 24572.967776: cpu_idle: state=4294967295 cpu_id=0
38887         rcuop/0-10    (   10) [003] d..3 24572.967776: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
38888          <idle>-0     (-----) [000] dn.2 24572.967783: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
38889          <idle>-0     (-----) [000] d..2 24572.967789: 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
38890         rcuop/0-10    (   10) [003] d..2 24572.967795: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38891         sugov:0-559   (  559) [000] d..2 24572.967797: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
38892          <idle>-0     (-----) [003] d..1 24572.967802: cpu_idle: state=0 cpu_id=3
38893         rcuop/1-21    (   21) [000] d..2 24572.967837: 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
38894           <...>-13186 (-----) [001] ...1 24572.967838: tracing_mark_write: E|13131
38895           <...>-13186 (-----) [001] ...1 24572.967842: tracing_mark_write: E|13131
38896          <idle>-0     (-----) [000] d..1 24572.967844: cpu_idle: state=0 cpu_id=0
38897           <...>-13186 (-----) [001] ...1 24572.967855: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
38898           <...>-13186 (-----) [001] ...1 24572.967860: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
38899 id.nn.benchmark-13160 (13131) [007] d..3 24572.967896: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
38900 id.nn.benchmark-13160 (13131) [007] d..2 24572.967903: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38901           <...>-13154 (-----) [002] dnh1 24572.967905: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
38902          <idle>-0     (-----) [007] d..1 24572.967907: cpu_idle: state=2 cpu_id=7
38903           <...>-13154 (-----) [002] d..2 24572.967911: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
38904          <idle>-0     (-----) [005] .n.1 24572.967941: cpu_idle: state=4294967295 cpu_id=5
38905          <idle>-0     (-----) [005] d..2 24572.967954: 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
38906         sugov:4-560   (  560) [005] d..2 24572.967961: 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
38907     migration/2-25    (   25) [002] d..2 24572.967961: 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
38908          <idle>-0     (-----) [005] d..1 24572.967965: cpu_idle: state=0 cpu_id=5
38909          <idle>-0     (-----) [002] d..1 24572.967970: cpu_idle: state=0 cpu_id=2
38910          <idle>-0     (-----) [007] .n.1 24572.968122: cpu_idle: state=4294967295 cpu_id=7
38911          <idle>-0     (-----) [007] d..2 24572.968128: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
38912           <...>-13186 (-----) [001] d..1 24572.968327: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=004
38913           <...>-13186 (-----) [001] d..1 24572.968344: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=006
38914          <idle>-0     (-----) [005] dnh2 24572.968347: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=005
38915          <idle>-0     (-----) [005] .n.1 24572.968349: cpu_idle: state=4294967295 cpu_id=5
38916          <idle>-0     (-----) [005] d..2 24572.968352: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
38917           <...>-13186 (-----) [001] d..1 24572.968353: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=005
38918 id.nn.benchmark-13155 (13131) [006] d.h1 24572.968356: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=006
38919           <...>-13186 (-----) [001] d..1 24572.968362: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=007
38920 id.nn.benchmark-13156 (13131) [005] d.h1 24572.968364: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=005
38921           <...>-13154 (-----) [007] d.h1 24572.968374: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=007
38922          <idle>-0     (-----) [000] d.h5 24572.969142: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
38923          <idle>-0     (-----) [000] dnh6 24572.969154: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
38924          <idle>-0     (-----) [000] .n.1 24572.969163: cpu_idle: state=4294967295 cpu_id=0
38925          <idle>-0     (-----) [000] d..2 24572.969168: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
38926 crtc_commit:111-253   (  253) [000] d..2 24572.969238: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
38927 id.nn.benchmark-13160 (13131) [000] d.h4 24572.969265: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
38928 id.nn.benchmark-13160 (13131) [000] d.h4 24572.969273: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
38929 id.nn.benchmark-13156 (13131) [005] dnh1 24572.969276: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
38930 id.nn.benchmark-13156 (13131) [005] d..2 24572.969279: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
38931         sugov:4-560   (  560) [005] d..2 24572.969282: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
38932 id.nn.benchmark-13160 (13131) [000] d.h5 24572.969285: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
38933          <idle>-0     (-----) [002] .n.1 24572.969290: cpu_idle: state=4294967295 cpu_id=2
38934          <idle>-0     (-----) [002] d..2 24572.969296: 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
38935         sugov:0-559   (  559) [002] d..2 24572.969321: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
38936 id.nn.benchmark-13160 (13131) [000] d.h4 24572.969449: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
38937 id.nn.benchmark-13160 (13131) [000] d.h5 24572.969458: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
38938          <idle>-0     (-----) [003] .n.1 24572.969463: cpu_idle: state=4294967295 cpu_id=3
38939          <idle>-0     (-----) [003] d..2 24572.969468: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
38940  crtc_event:111-254   (  254) [003] d..2 24572.969498: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
38941           <...>-13186 (-----) [001] ...1 24572.969756: tracing_mark_write: E|13131
38942           <...>-13186 (-----) [001] ...1 24572.969760: tracing_mark_write: E|13131
38943           <...>-13186 (-----) [001] ...1 24572.969778: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
38944           <...>-13186 (-----) [001] ...1 24572.969782: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
38945           <...>-13186 (-----) [001] ...1 24572.970112: tracing_mark_write: E|13131
38946           <...>-13186 (-----) [001] ...1 24572.970116: tracing_mark_write: E|13131
38947           <...>-13186 (-----) [001] ...1 24572.970127: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
38948           <...>-13186 (-----) [001] ...1 24572.970131: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
38949           <...>-13186 (-----) [001] ...1 24572.970369: tracing_mark_write: E|13131
38950           <...>-13186 (-----) [001] ...1 24572.970373: tracing_mark_write: E|13131
38951           <...>-13186 (-----) [001] d.h1 24572.970379: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
38952           <...>-13186 (-----) [001] dnh2 24572.970390: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
38953           <...>-13186 (-----) [001] d..2 24572.970399: sched_switch: prev_comm=id.nn.benchmark prev_pid=13186 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
38954        DispSync-23904 (23896) [001] d..1 24572.970423: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
38955        DispSync-23904 (23896) [001] d..2 24572.970434: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
38956 id.nn.benchmark-13156 (13131) [002] d..2 24572.970443: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
38957        DispSync-23904 (23896) [001] d..2 24572.970451: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13186 next_prio=110
38958           <...>-13186 (-----) [001] ...1 24572.970466: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
38959           <...>-13186 (-----) [001] ...1 24572.970470: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
38960   sfEventThread-23906 (23896) [002] d..3 24572.970483: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=001
38961   sfEventThread-23906 (23896) [002] d..4 24572.970518: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=001
38962           <...>-13186 (-----) [001] d..2 24572.970528: sched_switch: prev_comm=id.nn.benchmark prev_pid=13186 prev_prio=110 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
38963   sfEventThread-23906 (23896) [002] d..3 24572.970530: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=004
38964 id.nn.benchmark-13159 (13131) [005] dnh1 24572.970549: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=005
38965 id.nn.benchmark-13159 (13131) [005] d..2 24572.970551: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
38966   sfEventThread-23906 (23896) [002] d..3 24572.970553: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
38967   sfEventThread-23906 (23896) [002] d..4 24572.970563: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
38968<...>-24042 ( 23968) [001] d..2 24572.970574: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
38969   sfEventThread-23906 (23896) [002] d..2 24572.970576: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
38970<...>-24041 ( 23968) [005] d..2 24572.970680: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
38971  surfaceflinger-23896 (23896) [001] d..1 24572.970860: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
38972  surfaceflinger-23896 (23896) [001] d..2 24572.970871: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
38973 id.nn.benchmark-13156 (13131) [002] d..2 24572.970878: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
38974 id.nn.benchmark-13155 (13131) [006] d.s2 24572.970889: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
38975  surfaceflinger-23896 (23896) [001] d.h1 24572.970906: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
38976   sfEventThread-23906 (23896) [002] d..2 24572.970915: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
38977  surfaceflinger-23896 (23896) [001] ...1 24572.971605: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
38978  surfaceflinger-23896 (23896) [001] ...1 24572.971609: tracing_mark_write: E|23896
38979  surfaceflinger-23896 (23896) [001] .... 24572.971662: binder_transaction: transaction=1669620 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
38980  surfaceflinger-23896 (23896) [001] ...2 24572.971688: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
38981  surfaceflinger-23896 (23896) [001] d..4 24572.971693: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
38982 id.nn.benchmark-13159 (13131) [005] dnh1 24572.971713: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=005
38983 id.nn.benchmark-13159 (13131) [005] d..2 24572.971716: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
38984  HwBinder:598_3-633   (  598) [005] .... 24572.971720: binder_transaction_received: transaction=1669620
38985  surfaceflinger-23896 (23896) [001] d..2 24572.971723: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
38986  HwBinder:598_3-633   (  598) [005] ...1 24572.971742: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
38987  HwBinder:598_3-633   (  598) [005] ...1 24572.971803: tracing_mark_write: B|598|HWCSession::PresentDisplay::
38988  kworker/u16:10-23868 (23868) [001] d..2 24572.971910: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
38989 id.nn.benchmark-13158 (13131) [003] d.s2 24572.971941: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
38990 id.nn.benchmark-13158 (13131) [003] d.s3 24572.971951: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
38991 id.nn.benchmark-13158 (13131) [003] d.s3 24572.971955: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
38992  HwBinder:598_3-633   (  598) [005] ...1 24572.972039: tracing_mark_write: B|598|HWDeviceDRM::Validate::
38993<...>-24042 ( 23968) [001] .... 24572.972139: binder_transaction: transaction=1669621 dest_node=1271163 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
38994<...>-24042 ( 23968) [001] d..4 24572.972147: sched_waking: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=007
38995  HwBinder:598_3-633   (  598) [005] d.h1 24572.972172: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=005
38996  HwBinder:598_3-633   (  598) [005] ...1 24572.972231: tracing_mark_write: E|598
38997<...>-24042 ( 23968) [001] .... 24572.972275: binder_transaction: transaction=1669622 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
38998  HwBinder:598_3-633   (  598) [005] ...1 24572.972279: tracing_mark_write: B|598|HWDeviceDRM::Commit::
38999  HwBinder:598_3-633   (  598) [005] ...1 24572.972282: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
39000<...>-24042 ( 23968) [001] ...2 24572.972294: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
39001<...>-24042 ( 23968) [001] d..4 24572.972297: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
39002  HwBinder:598_3-633   (  598) [005] d.h1 24572.972314: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
39003<...>-24042 ( 23968) [001] d..2 24572.972319: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
39004  HwBinder:598_3-633   (  598) [005] d..2 24572.972418: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
39005  kworker/u16:10-23868 (23868) [001] .... 24572.972422: clk_set_rate: l3_cluster1_vote_clk 1401600000
39006  kworker/u16:10-23868 (23868) [001] .... 24572.972428: clk_set_rate: l3_clk 1401600000
39007  kworker/u16:10-23868 (23868) [001] dnh1 24572.972435: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
39008  kworker/u16:10-23868 (23868) [001] d..2 24572.972441: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
39009  HwBinder:598_3-633   (  598) [005] ...1 24572.972457: tracing_mark_write: E|598
39010  HwBinder:598_3-633   (  598) [005] ...1 24572.972459: tracing_mark_write: E|598
39011  HwBinder:598_3-633   (  598) [005] ...1 24572.972477: tracing_mark_write: E|598
39012  HwBinder:598_3-633   (  598) [005] ...1 24572.972496: tracing_mark_write: E|598
39013  HwBinder:598_3-633   (  598) [005] .... 24572.972502: binder_transaction: transaction=1669623 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
39014  HwBinder:598_3-633   (  598) [005] d..2 24572.972508: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
39015  HwBinder:598_3-633   (  598) [005] .... 24572.972518: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
39016 id.nn.benchmark-13160 (13131) [000] dnh1 24572.972523: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
39017 id.nn.benchmark-13160 (13131) [000] d..2 24572.972529: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
39018  surfaceflinger-23896 (23896) [000] .... 24572.972535: binder_transaction_received: transaction=1669623
39019  HwBinder:598_3-633   (  598) [005] d..2 24572.972543: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
39020  Binder:23896_3-23986 (23896) [005] .... 24572.972546: binder_transaction_received: transaction=1669621
39021  Binder:23896_3-23986 (23896) [005] d..1 24572.972565: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
39022 id.nn.benchmark-13156 (13131) [002] dnh1 24572.972576: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
39023  Binder:23896_3-23986 (23896) [005] d..2 24572.972579: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
39024 id.nn.benchmark-13156 (13131) [002] d..2 24572.972581: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
39025<...>-23903 ( 23896) [005] .... 24572.972582: binder_transaction_received: transaction=1669622
39026   sfEventThread-23906 (23896) [002] d..2 24572.972593: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
39027<...>-23903 ( 23896) [005] .... 24572.972619: binder_transaction: transaction=1669624 dest_node=0 dest_proc=23968 dest_thread=24042 reply=1 flags=0x0 code=0x0
39028<...>-23903 ( 23896) [005] d..2 24572.972622: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=001
39029<...>-23903 ( 23896) [005] d..3 24572.972633: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=005
39030<...>-23903 ( 23896) [005] d.h3 24572.972654: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
39031<...>-23903 ( 23896) [005] dnh4 24572.972657: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
39032<...>-23903 ( 23896) [005] dnh3 24572.972657: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
39033<...>-23903 ( 23896) [005] d..2 24572.972664: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=110 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
39034 id.nn.benchmark-13156 (13131) [002] dnh1 24572.972667: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
39035         sugov:4-560   (  560) [005] d..2 24572.972668: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
39036<...>-23903 ( 23896) [005] .... 24572.972669: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
39037 id.nn.benchmark-13156 (13131) [002] d..2 24572.972671: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
39038         sugov:0-559   (  559) [002] d..2 24572.972678: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
39039<...>-23903 ( 23896) [005] d..2 24572.972683: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
39040<...>-24042 ( 23968) [005] .... 24572.972685: binder_transaction_received: transaction=1669624
39041<...>-24042 ( 23968) [005] d..2 24572.972718: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
39042  surfaceflinger-23896 (23896) [000] d..2 24572.972791: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
39043 crtc_commit:111-253   (  253) [001] d..2 24572.973949: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
39044 id.nn.benchmark-13155 (13131) [006] d.s2 24572.974220: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
39045 id.nn.benchmark-13158 (13131) [003] d.s1 24572.974228: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
39046  kworker/u16:10-23868 (23868) [001] d.H3 24572.974237: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
39047 id.nn.benchmark-13158 (13131) [003] d.s2 24572.974245: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
39048  kworker/u16:10-23868 (23868) [001] d..2 24572.974317: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
39049  kworker/u16:15-18488 (18488) [001] d..2 24572.974325: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
39050     rcu_preempt-7     (    7) [001] d..2 24572.974334: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13186 next_prio=110
39051           <...>-13186 (-----) [001] ...1 24572.974705: tracing_mark_write: E|13131
39052           <...>-13186 (-----) [001] ...1 24572.974709: tracing_mark_write: E|13131
39053           <...>-13186 (-----) [001] ...1 24572.974725: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
39054           <...>-13186 (-----) [001] ...1 24572.974731: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
39055           <...>-13186 (-----) [001] ...1 24572.975134: tracing_mark_write: E|13131
39056           <...>-13186 (-----) [001] ...1 24572.975137: tracing_mark_write: E|13131
39057           <...>-13186 (-----) [001] ...1 24572.975160: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
39058           <...>-13186 (-----) [001] ...1 24572.975164: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
39059           <...>-13186 (-----) [001] ...1 24572.975362: tracing_mark_write: E|13131
39060           <...>-13186 (-----) [001] ...1 24572.975365: tracing_mark_write: E|13131
39061           <...>-13186 (-----) [001] ...1 24572.975379: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
39062           <...>-13186 (-----) [001] ...1 24572.975383: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
39063           <...>-13186 (-----) [001] ...1 24572.975460: tracing_mark_write: E|13131
39064           <...>-13186 (-----) [001] ...1 24572.975463: tracing_mark_write: E|13131
39065           <...>-13186 (-----) [001] ...1 24572.975476: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
39066           <...>-13186 (-----) [001] ...1 24572.975480: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
39067           <...>-13186 (-----) [001] ...1 24572.975803: tracing_mark_write: E|13131
39068           <...>-13186 (-----) [001] ...1 24572.975806: tracing_mark_write: E|13131
39069           <...>-13186 (-----) [001] ...1 24572.975816: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
39070           <...>-13186 (-----) [001] ...1 24572.975820: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
39071           <...>-13186 (-----) [001] ...1 24572.975876: tracing_mark_write: E|13131
39072           <...>-13186 (-----) [001] ...1 24572.975879: tracing_mark_write: E|13131
39073           <...>-13186 (-----) [001] ...1 24572.975888: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
39074           <...>-13186 (-----) [001] ...1 24572.975892: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
39075           <...>-13186 (-----) [001] ...1 24572.975910: tracing_mark_write: E|13131
39076           <...>-13186 (-----) [001] ...1 24572.975913: tracing_mark_write: E|13131
39077           <...>-13186 (-----) [001] ...1 24572.975923: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
39078           <...>-13186 (-----) [001] ...1 24572.975927: tracing_mark_write: E|13131
39079           <...>-13186 (-----) [001] ...1 24572.975935: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
39080           <...>-13186 (-----) [001] ...1 24572.975940: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
39081           <...>-13186 (-----) [001] ...1 24572.976794: tracing_mark_write: E|13131
39082           <...>-13186 (-----) [001] ...1 24572.976797: tracing_mark_write: E|13131
39083           <...>-13186 (-----) [001] ...1 24572.976805: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
39084           <...>-13186 (-----) [001] ...1 24572.976809: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
39085           <...>-13186 (-----) [001] ...1 24572.976892: tracing_mark_write: E|13131
39086           <...>-13186 (-----) [001] ...1 24572.976895: tracing_mark_write: E|13131
39087           <...>-13186 (-----) [001] d..2 24572.976950: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
39088           <...>-13186 (-----) [001] d..3 24572.976965: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
39089           <...>-13186 (-----) [001] ...1 24572.976988: tracing_mark_write: E|13131
39090           <...>-13186 (-----) [001] d..1 24572.976994: sched_waking: comm=id.nn.benchmark pid=13185 prio=110 target_cpu=001
39091 id.nn.benchmark-13159 (13131) [005] dnh1 24572.977019: sched_wakeup: comm=id.nn.benchmark pid=13185 prio=110 target_cpu=005
39092 id.nn.benchmark-13159 (13131) [005] d..2 24572.977046: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13185 next_prio=110
39093           <...>-13186 (-----) [001] d.h3 24572.977046: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
39094           <...>-13185 (-----) [005] d..2 24572.977056: sched_switch: prev_comm=id.nn.benchmark prev_pid=13185 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
39095           <...>-13186 (-----) [001] d.h3 24572.977057: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
39096 id.nn.benchmark-13159 (13131) [005] dnh3 24572.977059: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
39097 id.nn.benchmark-13159 (13131) [005] d..2 24572.977062: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
39098         sugov:4-560   (  560) [005] d..2 24572.977066: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
39099           <...>-13186 (-----) [001] dnh4 24572.977067: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
39100           <...>-13186 (-----) [001] d..2 24572.977073: sched_switch: prev_comm=id.nn.benchmark prev_pid=13186 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
39101         sugov:0-559   (  559) [001] d..2 24572.977081: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
39102     logd.writer-563   (  555) [001] d..2 24572.977147: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13186 next_prio=110
39103           <...>-13186 (-----) [001] ...1 24572.977166: tracing_mark_write: E|13131
39104           <...>-13186 (-----) [001] d..1 24572.977392: sched_waking: comm=id.nn.benchmark pid=13185 prio=110 target_cpu=005
39105 id.nn.benchmark-13159 (13131) [005] dnh1 24572.977406: sched_wakeup: comm=id.nn.benchmark pid=13185 prio=110 target_cpu=005
39106 id.nn.benchmark-13159 (13131) [005] d..2 24572.977409: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13185 next_prio=110
39107           <...>-13185 (-----) [005] d..2 24572.977447: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
39108           <...>-13186 (-----) [001] d.h2 24572.977462: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
39109           <...>-13186 (-----) [001] d..2 24572.977470: sched_switch: prev_comm=id.nn.benchmark prev_pid=13186 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
39110           <...>-13185 (-----) [005] d..1 24572.977484: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
39111     logd.writer-563   (  555) [001] dnh1 24572.977506: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
39112     logd.writer-563   (  555) [001] d..2 24572.977512: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
39113           <...>-13131 (-----) [001] d..2 24572.977527: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
39114           <...>-13185 (-----) [005] d..1 24572.977527: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
39115     logd.writer-563   (  555) [001] dnh1 24572.977543: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
39116     logd.writer-563   (  555) [001] d..2 24572.977553: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
39117           <...>-13185 (-----) [005] d..2 24572.977560: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=002
39118           <...>-13185 (-----) [005] d..2 24572.977598: sched_switch: prev_comm=id.nn.benchmark prev_pid=13185 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
39119           <...>-13131 (-----) [001] d.H3 24572.977612: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
39120           <...>-13131 (-----) [001] d.H4 24572.977615: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
39121           <...>-13131 (-----) [001] d.H4 24572.977624: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
39122 id.nn.benchmark-13159 (13131) [005] dnh1 24572.977628: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
39123           <...>-13131 (-----) [001] dnH5 24572.977630: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
39124 id.nn.benchmark-13159 (13131) [005] d..2 24572.977631: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
39125           <...>-13131 (-----) [001] dns4 24572.977634: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
39126         sugov:4-560   (  560) [005] d..2 24572.977635: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
39127           <...>-13131 (-----) [001] dns5 24572.977643: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
39128           <...>-13131 (-----) [001] d..2 24572.977648: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
39129         sugov:0-559   (  559) [001] d..2 24572.977656: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
39130         rcuop/4-45    (   45) [001] d..2 24572.977664: 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
39131     rcu_preempt-7     (    7) [001] d..2 24572.977668: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
39132     rcu_preempt-7     (    7) [001] d..3 24572.977682: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
39133     rcu_preempt-7     (    7) [001] d..2 24572.977692: 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
39134         rcuop/2-29    (   29) [001] d..2 24572.977696: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
39135         rcuop/2-29    (   29) [001] d..3 24572.977707: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
39136         rcuop/2-29    (   29) [001] d..2 24572.977713: 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
39137         rcuop/3-37    (   37) [001] d..2 24572.977722: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
39138           <...>-13131 (-----) [001] ...1 24572.977746: tracing_mark_write: E|13131
39139           <...>-13131 (-----) [001] ...1 24572.977752: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
39140           <...>-13131 (-----) [001] ...1 24572.977758: tracing_mark_write: E|13131
39141           <...>-13131 (-----) [001] ...1 24572.977762: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
39142           <...>-13131 (-----) [001] ...1 24572.977767: tracing_mark_write: E|13131
39143           <...>-13131 (-----) [001] ...1 24572.978080: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
39144           <...>-13131 (-----) [001] ...1 24572.978120: tracing_mark_write: E|13131
39145           <...>-13131 (-----) [001] ...1 24572.978125: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
39146           <...>-13131 (-----) [001] ...1 24572.978130: tracing_mark_write: E|13131
39147           <...>-13131 (-----) [001] ...1 24572.978134: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
39148           <...>-13131 (-----) [001] ...1 24572.978138: tracing_mark_write: E|13131
39149           <...>-13131 (-----) [001] ...1 24572.978142: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
39150           <...>-13131 (-----) [001] ...1 24572.978263: tracing_mark_write: E|13131
39151           <...>-13131 (-----) [001] ...1 24572.978268: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
39152           <...>-13131 (-----) [001] d..2 24572.978277: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
39153     logd.writer-563   (  555) [001] d..2 24572.978328: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13187 next_prio=110
39154           <...>-13187 (-----) [001] d..2 24572.978378: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
39155           <...>-13187 (-----) [001] d..3 24572.978387: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
39156           <...>-13187 (-----) [001] d..2 24572.978677: sched_switch: prev_comm=id.nn.benchmark prev_pid=13187 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
39157     logd.writer-563   (  555) [001] d..2 24572.978869: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13188 next_prio=110
39158           <...>-13188 (-----) [001] ...1 24572.978896: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
39159           <...>-13188 (-----) [001] ...1 24572.978900: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
39160           <...>-13188 (-----) [001] d..2 24572.978960: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
39161           <...>-13188 (-----) [001] d..3 24572.978969: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
39162           <...>-13188 (-----) [001] ...1 24572.979035: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
39163           <...>-13188 (-----) [001] ...1 24572.979039: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
39164 id.nn.benchmark-13155 (13131) [006] d.s2 24572.980886: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
39165           <...>-13188 (-----) [001] dnh1 24572.980906: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
39166           <...>-13188 (-----) [001] d..2 24572.980913: sched_switch: prev_comm=id.nn.benchmark prev_pid=13188 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
39167  kworker/u16:15-18488 (18488) [001] .... 24572.981090: clk_set_rate: l3_cluster1_vote_clk 1478400000
39168  kworker/u16:15-18488 (18488) [001] .... 24572.981094: clk_set_rate: l3_clk 1478400000
39169  kworker/u16:15-18488 (18488) [001] d..2 24572.981296: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=logd.writer next_pid=563 next_prio=130
39170 id.nn.benchmark-13158 (13131) [003] d.s2 24572.981327: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
39171 id.nn.benchmark-13158 (13131) [003] d.s3 24572.981337: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
39172 id.nn.benchmark-13158 (13131) [003] d.s3 24572.981344: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
39173     logd.writer-563   (  555) [001] d..2 24572.981350: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
39174  kworker/u16:15-18488 (18488) [001] d..2 24572.981367: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13188 next_prio=110
39175           <...>-13188 (-----) [001] ...1 24572.981493: tracing_mark_write: E|13131
39176           <...>-13188 (-----) [001] ...1 24572.981497: tracing_mark_write: E|13131
39177           <...>-13188 (-----) [001] ...1 24572.981509: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
39178           <...>-13188 (-----) [001] ...1 24572.981513: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
39179           <...>-13188 (-----) [001] ...1 24572.982218: tracing_mark_write: E|13131
39180           <...>-13188 (-----) [001] ...1 24572.982222: tracing_mark_write: E|13131
39181           <...>-13188 (-----) [001] ...1 24572.982237: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
39182           <...>-13188 (-----) [001] ...1 24572.982241: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
39183           <...>-13188 (-----) [001] ...1 24572.982569: tracing_mark_write: E|13131
39184           <...>-13188 (-----) [001] ...1 24572.982573: tracing_mark_write: E|13131
39185           <...>-13188 (-----) [001] ...1 24572.982583: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
39186           <...>-13188 (-----) [001] ...1 24572.982587: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
39187           <...>-13188 (-----) [001] ...1 24572.982827: tracing_mark_write: E|13131
39188           <...>-13188 (-----) [001] ...1 24572.982831: tracing_mark_write: E|13131
39189           <...>-13188 (-----) [001] ...1 24572.982841: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
39190           <...>-13188 (-----) [001] ...1 24572.982844: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
39191 id.nn.benchmark-13160 (13131) [000] d.h4 24572.983287: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
39192 id.nn.benchmark-13160 (13131) [000] d.h5 24572.983310: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
39193 id.nn.benchmark-13160 (13131) [000] d.h4 24572.983313: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
39194           <...>-13188 (-----) [001] d..2 24572.983324: sched_switch: prev_comm=id.nn.benchmark prev_pid=13188 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
39195 id.nn.benchmark-13159 (13131) [005] dnh1 24572.983342: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
39196 id.nn.benchmark-13159 (13131) [005] d..2 24572.983345: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
39197  crtc_event:111-254   (  254) [001] d..2 24572.983345: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13188 next_prio=110
39198 id.nn.benchmark-13160 (13131) [000] d.h2 24572.983374: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
39199 id.nn.benchmark-13160 (13131) [000] d.h2 24572.983385: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
39200 id.nn.benchmark-13155 (13131) [006] dnh1 24572.983388: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
39201 id.nn.benchmark-13155 (13131) [006] d..2 24572.983391: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
39202 id.nn.benchmark-13160 (13131) [000] d.h3 24572.983393: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
39203         sugov:4-560   (  560) [006] d..2 24572.983396: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
39204           <...>-13188 (-----) [001] d..2 24572.983401: sched_switch: prev_comm=id.nn.benchmark prev_pid=13188 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
39205         sugov:0-559   (  559) [001] d..2 24572.983408: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13188 next_prio=110
39206           <...>-13188 (-----) [001] ...1 24572.983424: tracing_mark_write: E|13131
39207           <...>-13188 (-----) [001] ...1 24572.983428: tracing_mark_write: E|13131
39208           <...>-13188 (-----) [001] ...1 24572.983438: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
39209 crtc_commit:111-253   (  253) [005] d..2 24572.983440: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
39210           <...>-13188 (-----) [001] ...1 24572.983442: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
39211           <...>-13188 (-----) [001] ...1 24572.983824: tracing_mark_write: E|13131
39212           <...>-13188 (-----) [001] ...1 24572.983828: tracing_mark_write: E|13131
39213           <...>-13188 (-----) [001] ...1 24572.983845: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
39214           <...>-13188 (-----) [001] ...1 24572.983850: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
39215           <...>-13188 (-----) [001] ...1 24572.984041: tracing_mark_write: E|13131
39216           <...>-13188 (-----) [001] ...1 24572.984044: tracing_mark_write: E|13131
39217           <...>-13188 (-----) [001] ...1 24572.984058: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
39218           <...>-13188 (-----) [001] ...1 24572.984062: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
39219 id.nn.benchmark-13156 (13131) [002] d..2 24572.984083: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
39220 id.nn.benchmark-13155 (13131) [006] d..3 24572.984090: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
39221 id.nn.benchmark-13155 (13131) [006] d..2 24572.984098: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=D|K ==> next_comm=swapper/6 next_pid=0 next_prio=120
39222          <idle>-0     (-----) [006] d..1 24572.984110: cpu_idle: state=0 cpu_id=6
39223 id.nn.benchmark-13156 (13131) [002] dnh2 24572.984114: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
39224          <idle>-0     (-----) [006] d.h2 24572.984118: sched_blocked_reason: pid=13155 iowait=1 caller=__lock_page_or_retry+0x26c/0x2c4
39225          <idle>-0     (-----) [006] dnh2 24572.984119: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
39226 id.nn.benchmark-13156 (13131) [002] d..2 24572.984120: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R+ ==> next_comm=migration/2 next_pid=25 next_prio=0
39227          <idle>-0     (-----) [006] .n.1 24572.984122: cpu_idle: state=4294967295 cpu_id=6
39228          <idle>-0     (-----) [006] d..2 24572.984126: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
39229     migration/2-25    (   25) [002] d.h3 24572.984167: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
39230     migration/2-25    (   25) [002] d.h3 24572.984178: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
39231 id.nn.benchmark-13159 (13131) [005] dnh1 24572.984181: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
39232 id.nn.benchmark-13159 (13131) [005] d..2 24572.984184: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
39233         sugov:4-560   (  560) [005] d..2 24572.984187: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
39234     migration/2-25    (   25) [002] d.h4 24572.984188: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
39235     migration/2-25    (   25) [002] d..2 24572.984196: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
39236           <...>-13154 (-----) [007] d.s2 24572.984222: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
39237 id.nn.benchmark-13159 (13131) [005] d.s2 24572.984223: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
39238         sugov:0-559   (  559) [002] d..2 24572.984225: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
39239           <...>-13188 (-----) [001] d.s1 24572.984234: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
39240           <...>-13188 (-----) [001] dns2 24572.984245: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
39241           <...>-13188 (-----) [001] dnH2 24572.984266: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
39242           <...>-13188 (-----) [001] dnH2 24572.984269: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
39243           <...>-13188 (-----) [001] d..2 24572.984275: sched_switch: prev_comm=id.nn.benchmark prev_pid=13188 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
39244  crtc_event:111-254   (  254) [001] d..2 24572.984287: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
39245     rcu_preempt-7     (    7) [001] d..2 24572.984291: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
39246     rcu_preempt-7     (    7) [001] d..3 24572.984299: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
39247     rcu_preempt-7     (    7) [001] d..2 24572.984303: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
39248     rcu_preempt-7     (    7) [001] d..3 24572.984318: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
39249     rcu_preempt-7     (    7) [001] d..2 24572.984327: 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
39250         rcuop/4-45    (   45) [001] d..2 24572.984330: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=007
39251           <...>-13154 (-----) [007] dnh1 24572.984362: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=007
39252         rcuop/4-45    (   45) [001] d..2 24572.984363: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
39253           <...>-13154 (-----) [007] d..2 24572.984365: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/5 next_pid=53 next_prio=120
39254         rcuop/0-10    (   10) [001] d..2 24572.984367: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
39255         rcuop/5-53    (   53) [007] d..2 24572.984378: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
39256         rcuop/0-10    (   10) [001] d..3 24572.984381: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
39257         rcuop/0-10    (   10) [001] d..2 24572.984387: 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
39258         rcuop/1-21    (   21) [001] d..2 24572.984419: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
39259  kworker/u16:15-18488 (18488) [001] d..2 24572.984508: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13188 next_prio=110
39260           <...>-13188 (-----) [001] ...1 24572.984516: tracing_mark_write: E|13131
39261           <...>-13188 (-----) [001] ...1 24572.984520: tracing_mark_write: E|13131
39262           <...>-13188 (-----) [001] ...1 24572.984531: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
39263           <...>-13188 (-----) [001] ...1 24572.984535: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
39264           <...>-13188 (-----) [001] ...1 24572.984801: tracing_mark_write: E|13131
39265           <...>-13188 (-----) [001] ...1 24572.984804: tracing_mark_write: E|13131
39266           <...>-13188 (-----) [001] ...1 24572.984814: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
39267           <...>-13188 (-----) [001] ...1 24572.984818: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
39268           <...>-13188 (-----) [001] ...1 24572.984863: tracing_mark_write: E|13131
39269           <...>-13188 (-----) [001] ...1 24572.984866: tracing_mark_write: E|13131
39270           <...>-13188 (-----) [001] ...1 24572.984875: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
39271           <...>-13188 (-----) [001] ...1 24572.984879: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
39272           <...>-13188 (-----) [001] ...1 24572.984894: tracing_mark_write: E|13131
39273           <...>-13188 (-----) [001] ...1 24572.984898: tracing_mark_write: E|13131
39274           <...>-13188 (-----) [001] ...1 24572.984907: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
39275           <...>-13188 (-----) [001] ...1 24572.984910: tracing_mark_write: E|13131
39276           <...>-13188 (-----) [001] ...1 24572.984918: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
39277           <...>-13188 (-----) [001] ...1 24572.984922: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
39278 id.nn.benchmark-13160 (13131) [000] d.h4 24572.985615: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
39279 id.nn.benchmark-13160 (13131) [000] d.h5 24572.985632: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
39280           <...>-13188 (-----) [001] d..2 24572.985643: sched_switch: prev_comm=id.nn.benchmark prev_pid=13188 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
39281 id.nn.benchmark-13160 (13131) [000] d.h2 24572.985669: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
39282 id.nn.benchmark-13160 (13131) [000] d.h2 24572.985676: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
39283 id.nn.benchmark-13159 (13131) [005] dnh1 24572.985678: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
39284 id.nn.benchmark-13159 (13131) [005] d..2 24572.985681: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
39285 id.nn.benchmark-13160 (13131) [000] d.h3 24572.985683: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
39286         sugov:4-560   (  560) [005] d..2 24572.985684: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
39287 id.nn.benchmark-13156 (13131) [002] d..2 24572.985692: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
39288 crtc_commit:111-253   (  253) [001] d..2 24572.985698: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
39289         sugov:0-559   (  559) [002] d..2 24572.985700: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
39290     logd.writer-563   (  555) [001] d..2 24572.985811: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13188 next_prio=110
39291 id.nn.benchmark-13160 (13131) [000] d.h4 24572.985928: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
39292 id.nn.benchmark-13160 (13131) [000] d.h5 24572.985936: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
39293           <...>-13188 (-----) [001] d..2 24572.985945: sched_switch: prev_comm=id.nn.benchmark prev_pid=13188 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
39294  crtc_event:111-254   (  254) [001] d..2 24572.985956: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13188 next_prio=110
39295           <...>-13188 (-----) [001] ...1 24572.985978: tracing_mark_write: E|13131
39296           <...>-13188 (-----) [001] ...1 24572.985982: tracing_mark_write: E|13131
39297           <...>-13188 (-----) [001] ...1 24572.985991: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
39298           <...>-13188 (-----) [001] ...1 24572.985995: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
39299           <...>-13188 (-----) [001] ...1 24572.986079: tracing_mark_write: E|13131
39300           <...>-13188 (-----) [001] ...1 24572.986082: tracing_mark_write: E|13131
39301           <...>-13188 (-----) [001] d..2 24572.986117: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
39302           <...>-13188 (-----) [001] d..3 24572.986125: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
39303           <...>-13188 (-----) [001] ...1 24572.986142: tracing_mark_write: E|13131
39304           <...>-13188 (-----) [001] d..1 24572.986147: sched_waking: comm=id.nn.benchmark pid=13187 prio=110 target_cpu=001
39305 id.nn.benchmark-13159 (13131) [005] dnh1 24572.986170: sched_wakeup: comm=id.nn.benchmark pid=13187 prio=110 target_cpu=005
39306 id.nn.benchmark-13159 (13131) [005] d..2 24572.986195: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13187 next_prio=110
39307           <...>-13188 (-----) [001] d.h3 24572.986196: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
39308           <...>-13187 (-----) [005] d..2 24572.986202: sched_switch: prev_comm=id.nn.benchmark prev_pid=13187 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
39309           <...>-13188 (-----) [001] d.h3 24572.986204: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
39310 id.nn.benchmark-13159 (13131) [005] dnh1 24572.986207: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
39311 id.nn.benchmark-13159 (13131) [005] d..2 24572.986210: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
39312         sugov:4-560   (  560) [005] d..2 24572.986213: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
39313           <...>-13188 (-----) [001] dnh4 24572.986213: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
39314           <...>-13188 (-----) [001] d..2 24572.986219: sched_switch: prev_comm=id.nn.benchmark prev_pid=13188 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
39315         sugov:0-559   (  559) [001] d..2 24572.986226: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13188 next_prio=110
39316           <...>-13188 (-----) [001] ...1 24572.986242: tracing_mark_write: E|13131
39317           <...>-13188 (-----) [001] d..1 24572.986431: sched_waking: comm=id.nn.benchmark pid=13187 prio=110 target_cpu=005
39318           <...>-13188 (-----) [001] d..2 24572.986460: sched_wakeup: comm=id.nn.benchmark pid=13187 prio=110 target_cpu=001
39319           <...>-13188 (-----) [001] d..2 24572.986521: sched_switch: prev_comm=id.nn.benchmark prev_pid=13188 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13187 next_prio=110
39320           <...>-13187 (-----) [001] d..1 24572.986616: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
39321           <...>-13187 (-----) [001] dn.2 24572.986639: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
39322           <...>-13187 (-----) [001] d..2 24572.986644: sched_switch: prev_comm=id.nn.benchmark prev_pid=13187 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
39323           <...>-13131 (-----) [001] d..2 24572.986655: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13187 next_prio=110
39324           <...>-13187 (-----) [001] d..1 24572.986707: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
39325           <...>-13187 (-----) [001] dn.2 24572.986715: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
39326           <...>-13187 (-----) [001] d..2 24572.986720: sched_switch: prev_comm=id.nn.benchmark prev_pid=13187 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
39327           <...>-13131 (-----) [001] ...1 24572.986737: tracing_mark_write: E|13131
39328           <...>-13131 (-----) [001] ...1 24572.986742: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
39329           <...>-13131 (-----) [001] ...1 24572.986747: tracing_mark_write: E|13131
39330           <...>-13131 (-----) [001] ...1 24572.986751: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
39331           <...>-13131 (-----) [001] ...1 24572.986755: tracing_mark_write: E|13131
39332           <...>-13131 (-----) [001] d.h1 24572.986852: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
39333           <...>-13131 (-----) [001] dnh2 24572.986861: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
39334           <...>-13131 (-----) [001] d..2 24572.986869: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
39335        DispSync-23904 (23896) [001] d..1 24572.986891: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
39336        DispSync-23904 (23896) [001] d..2 24572.986901: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
39337 id.nn.benchmark-13156 (13131) [002] d..2 24572.986909: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
39338        DispSync-23904 (23896) [001] d..2 24572.986916: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
39339   sfEventThread-23906 (23896) [002] d..3 24572.986936: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=005
39340 id.nn.benchmark-13159 (13131) [005] dnh1 24572.986963: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=005
39341 id.nn.benchmark-13159 (13131) [005] d..2 24572.986965: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
39342   sfEventThread-23906 (23896) [002] d..3 24572.986967: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
39343   sfEventThread-23906 (23896) [002] d..4 24572.986983: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
39344           <...>-13131 (-----) [001] d..2 24572.986991: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
39345   sfEventThread-23906 (23896) [002] d..2 24572.986995: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
39346<...>-24042 ( 23968) [005] .... 24572.987128: binder_transaction: transaction=1669625 dest_node=1271163 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
39347<...>-24042 ( 23968) [005] d..4 24572.987133: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
39348<...>-24042 ( 23968) [005] d..5 24572.987146: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
39349<...>-24042 ( 23968) [005] .... 24572.987206: binder_transaction: transaction=1669626 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
39350<...>-24042 ( 23968) [005] ...2 24572.987216: binder_set_priority: proc=23896 thread=23986 old=120 => new=110 desired=110
39351<...>-24042 ( 23968) [005] d..4 24572.987218: sched_waking: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=005
39352<...>-24042 ( 23968) [005] d..5 24572.987229: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=005
39353<...>-24042 ( 23968) [005] d..2 24572.987233: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
39354<...>-23903 ( 23896) [005] .... 24572.987237: binder_transaction_received: transaction=1669625
39355  surfaceflinger-23896 (23896) [001] d..1 24572.987240: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
39356  surfaceflinger-23896 (23896) [001] d..2 24572.987250: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
39357 id.nn.benchmark-13156 (13131) [002] d..2 24572.987258: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
39358<...>-23903 ( 23896) [005] d..2 24572.987264: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=110
39359  Binder:23896_3-23986 (23896) [005] .... 24572.987266: binder_transaction_received: transaction=1669626
39360   sfEventThread-23906 (23896) [002] d..2 24572.987272: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
39361  Binder:23896_3-23986 (23896) [005] .... 24572.987302: binder_transaction: transaction=1669627 dest_node=0 dest_proc=23968 dest_thread=24042 reply=1 flags=0x0 code=0x0
39362  Binder:23896_3-23986 (23896) [005] d..2 24572.987304: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=005
39363  Binder:23896_3-23986 (23896) [005] d..3 24572.987314: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=005
39364  Binder:23896_3-23986 (23896) [005] .... 24572.987314: binder_set_priority: proc=23896 thread=23986 old=110 => new=120 desired=120
39365  Binder:23896_3-23986 (23896) [005] d..2 24572.987328: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
39366<...>-24042 ( 23968) [005] .... 24572.987329: binder_transaction_received: transaction=1669627
39367<...>-24042 ( 23968) [005] d..2 24572.987359: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
39368  surfaceflinger-23896 (23896) [001] ...1 24572.987930: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
39369  surfaceflinger-23896 (23896) [001] ...1 24572.987934: tracing_mark_write: E|23896
39370  surfaceflinger-23896 (23896) [001] .... 24572.987978: binder_transaction: transaction=1669628 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
39371  surfaceflinger-23896 (23896) [001] ...2 24572.987999: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
39372  surfaceflinger-23896 (23896) [001] d..4 24572.988006: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=005
39373 id.nn.benchmark-13159 (13131) [005] dnh1 24572.988022: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=005
39374 id.nn.benchmark-13159 (13131) [005] d..2 24572.988025: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
39375  surfaceflinger-23896 (23896) [001] d..2 24572.988027: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
39376  HwBinder:598_3-633   (  598) [005] .... 24572.988028: binder_transaction_received: transaction=1669628
39377  HwBinder:598_3-633   (  598) [005] ...1 24572.988051: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
39378  HwBinder:598_3-633   (  598) [005] ...1 24572.988113: tracing_mark_write: B|598|HWCSession::PresentDisplay::
39379           <...>-13131 (-----) [001] ...1 24572.988183: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
39380           <...>-13131 (-----) [001] ...1 24572.988225: tracing_mark_write: E|13131
39381           <...>-13131 (-----) [001] ...1 24572.988229: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
39382           <...>-13131 (-----) [001] ...1 24572.988234: tracing_mark_write: E|13131
39383           <...>-13131 (-----) [001] ...1 24572.988238: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
39384           <...>-13131 (-----) [001] ...1 24572.988242: tracing_mark_write: E|13131
39385           <...>-13131 (-----) [001] ...1 24572.988245: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
39386           <...>-13131 (-----) [001] ...1 24572.988338: tracing_mark_write: E|13131
39387           <...>-13131 (-----) [001] ...1 24572.988343: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
39388  HwBinder:598_3-633   (  598) [005] ...1 24572.988343: tracing_mark_write: B|598|HWDeviceDRM::Validate::
39389           <...>-13131 (-----) [001] d..2 24572.988352: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13187 next_prio=110
39390           <...>-13187 (-----) [001] d..2 24572.988392: sched_switch: prev_comm=id.nn.benchmark prev_pid=13187 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
39391     logd.writer-563   (  555) [001] d..2 24572.988482: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13189 next_prio=110
39392           <...>-13189 (-----) [001] d..2 24572.988533: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
39393  HwBinder:598_3-633   (  598) [005] ...1 24572.988535: tracing_mark_write: E|598
39394           <...>-13189 (-----) [001] d..3 24572.988541: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
39395  HwBinder:598_3-633   (  598) [005] ...1 24572.988582: tracing_mark_write: B|598|HWDeviceDRM::Commit::
39396  HwBinder:598_3-633   (  598) [005] ...1 24572.988584: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
39397  HwBinder:598_3-633   (  598) [005] d..2 24572.988705: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
39398           <...>-13189 (-----) [001] dnh1 24572.988720: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
39399           <...>-13189 (-----) [001] d..2 24572.988728: sched_switch: prev_comm=id.nn.benchmark prev_pid=13189 prev_prio=110 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
39400  HwBinder:598_3-633   (  598) [005] ...1 24572.988740: tracing_mark_write: E|598
39401  HwBinder:598_3-633   (  598) [005] ...1 24572.988742: tracing_mark_write: E|598
39402  HwBinder:598_3-633   (  598) [005] ...1 24572.988760: tracing_mark_write: E|598
39403  HwBinder:598_3-633   (  598) [005] ...1 24572.988780: tracing_mark_write: E|598
39404  HwBinder:598_3-633   (  598) [005] .... 24572.988786: binder_transaction: transaction=1669629 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
39405  HwBinder:598_3-633   (  598) [005] d..2 24572.988792: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
39406  HwBinder:598_3-633   (  598) [005] .... 24572.988802: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
39407 id.nn.benchmark-13160 (13131) [000] dnh1 24572.988807: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
39408 id.nn.benchmark-13160 (13131) [000] d..2 24572.988813: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
39409  surfaceflinger-23896 (23896) [000] .... 24572.988819: binder_transaction_received: transaction=1669629
39410  HwBinder:598_3-633   (  598) [005] d..2 24572.988827: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
39411  surfaceflinger-23896 (23896) [000] d..2 24572.989062: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
39412 crtc_commit:111-253   (  253) [001] d..2 24572.990252: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13189 next_prio=110
39413           <...>-13189 (-----) [001] d..2 24572.990376: sched_switch: prev_comm=id.nn.benchmark prev_pid=13189 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
39414           <...>-13157 (-----) [004] d..3 24572.990454: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
39415           <...>-13157 (-----) [004] d..2 24572.990462: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39416 id.nn.benchmark-13155 (13131) [006] d..2 24572.990463: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
39417 id.nn.benchmark-13156 (13131) [002] dnh1 24572.990464: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
39418           <...>-13154 (-----) [007] d..2 24572.990465: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
39419          <idle>-0     (-----) [006] d..1 24572.990466: cpu_idle: state=0 cpu_id=6
39420 id.nn.benchmark-13156 (13131) [002] d..2 24572.990469: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
39421          <idle>-0     (-----) [004] d..1 24572.990471: cpu_idle: state=2 cpu_id=4
39422          <idle>-0     (-----) [007] d..1 24572.990472: cpu_idle: state=0 cpu_id=7
39423     migration/2-25    (   25) [002] d.h3 24572.990517: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
39424     migration/2-25    (   25) [002] d.h3 24572.990528: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
39425          <idle>-0     (-----) [006] dnh2 24572.990533: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
39426          <idle>-0     (-----) [006] .n.1 24572.990535: cpu_idle: state=4294967295 cpu_id=6
39427          <idle>-0     (-----) [006] d..2 24572.990538: 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
39428     migration/2-25    (   25) [002] d.h4 24572.990538: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
39429         sugov:4-560   (  560) [006] d..3 24572.990543: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
39430     logd.writer-563   (  555) [001] d..2 24572.990543: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13190 next_prio=110
39431     migration/2-25    (   25) [002] d..2 24572.990545: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
39432         sugov:4-560   (  560) [006] d..2 24572.990551: 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
39433          <idle>-0     (-----) [006] d..1 24572.990553: cpu_idle: state=0 cpu_id=6
39434 id.nn.benchmark-13160 (13131) [000] dnh1 24572.990554: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
39435 id.nn.benchmark-13160 (13131) [000] d..2 24572.990561: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
39436         sugov:0-559   (  559) [002] d..2 24572.990562: 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
39437           <...>-13190 (-----) [001] ...1 24572.990570: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
39438           <...>-13190 (-----) [001] ...1 24572.990575: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
39439          <idle>-0     (-----) [002] d..1 24572.990576: cpu_idle: state=0 cpu_id=2
39440          <idle>-0     (-----) [006] .n.1 24572.990585: cpu_idle: state=4294967295 cpu_id=6
39441          <idle>-0     (-----) [006] d..2 24572.990604: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
39442     migration/0-13    (   13) [000] d..2 24572.990616: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39443          <idle>-0     (-----) [000] d..1 24572.990629: cpu_idle: state=0 cpu_id=0
39444           <...>-13190 (-----) [001] d..2 24572.990631: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
39445           <...>-13190 (-----) [001] d..3 24572.990640: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
39446          <idle>-0     (-----) [007] ...1 24572.990663: cpu_idle: state=4294967295 cpu_id=7
39447          <idle>-0     (-----) [007] d..1 24572.990665: cpu_idle: state=2 cpu_id=7
39448           <...>-13190 (-----) [001] ...1 24572.990705: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
39449           <...>-13190 (-----) [001] ...1 24572.990711: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
39450          <idle>-0     (-----) [004] .n.1 24572.990786: cpu_idle: state=4294967295 cpu_id=4
39451          <idle>-0     (-----) [004] d..2 24572.990793: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
39452 id.nn.benchmark-13160 (13131) [006] d.s2 24572.990887: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
39453 id.nn.benchmark-13158 (13131) [003] d.h2 24572.990893: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
39454           <...>-13190 (-----) [001] d.s1 24572.990896: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
39455 id.nn.benchmark-13158 (13131) [003] dnh3 24572.990902: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
39456 id.nn.benchmark-13158 (13131) [003] d..2 24572.990910: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
39457          <idle>-0     (-----) [000] dnH2 24572.990910: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
39458           <...>-13190 (-----) [001] dns2 24572.990919: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
39459          <idle>-0     (-----) [000] .n.1 24572.990919: cpu_idle: state=4294967295 cpu_id=0
39460           <...>-13190 (-----) [001] d..2 24572.990926: sched_switch: prev_comm=id.nn.benchmark prev_pid=13190 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
39461          <idle>-0     (-----) [000] d..2 24572.990927: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
39462     rcu_preempt-7     (    7) [001] d..2 24572.990954: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13190 next_prio=110
39463<...>-33 ( 33) [003] d..2 24572.990965: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39464          <idle>-0     (-----) [003] d..1 24572.990978: cpu_idle: state=0 cpu_id=3
39465          <idle>-0     (-----) [007] .n.1 24572.991069: cpu_idle: state=4294967295 cpu_id=7
39466          <idle>-0     (-----) [007] d..2 24572.991076: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
39467  kworker/u16:15-18488 (18488) [000] d..2 24572.991158: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
39468     logd.writer-563   (  555) [000] d..2 24572.991284: 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
39469          <idle>-0     (-----) [000] d..1 24572.991294: cpu_idle: state=0 cpu_id=0
39470 id.nn.benchmark-13159 (13131) [005] d..2 24572.991760: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
39471          <idle>-0     (-----) [005] d..1 24572.991769: cpu_idle: state=0 cpu_id=5
39472          <idle>-0     (-----) [005] ...1 24572.992168: cpu_idle: state=4294967295 cpu_id=5
39473          <idle>-0     (-----) [005] d..1 24572.992169: cpu_idle: state=2 cpu_id=5
39474          <idle>-0     (-----) [002] ...1 24572.992288: cpu_idle: state=4294967295 cpu_id=2
39475          <idle>-0     (-----) [002] d..1 24572.992291: cpu_idle: state=2 cpu_id=2
39476           <...>-13190 (-----) [001] d..1 24572.992446: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=007
39477           <...>-13190 (-----) [001] d..1 24572.992463: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
39478           <...>-13190 (-----) [001] d..1 24572.992476: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=004
39479           <...>-13190 (-----) [001] d..1 24572.992487: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=005
39480          <idle>-0     (-----) [005] dnh2 24572.992605: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=005
39481          <idle>-0     (-----) [005] dnh2 24572.992606: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
39482          <idle>-0     (-----) [005] dnh2 24572.992607: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
39483          <idle>-0     (-----) [005] dnh2 24572.992608: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
39484          <idle>-0     (-----) [005] .n.1 24572.992611: cpu_idle: state=4294967295 cpu_id=5
39485          <idle>-0     (-----) [005] d..2 24572.992615: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
39486          <idle>-0     (-----) [000] ...1 24572.992786: cpu_idle: state=4294967295 cpu_id=0
39487          <idle>-0     (-----) [000] d..1 24572.992789: cpu_idle: state=0 cpu_id=0
39488 id.nn.benchmark-13160 (13131) [006] d.s2 24572.994219: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
39489          <idle>-0     (-----) [000] dnh2 24572.994233: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
39490          <idle>-0     (-----) [000] .n.1 24572.994236: cpu_idle: state=4294967295 cpu_id=0
39491          <idle>-0     (-----) [000] d..2 24572.994243: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
39492  kworker/u16:15-18488 (18488) [000] d..2 24572.994311: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
39493           <...>-13154 (-----) [000] d.h4 24572.994341: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
39494           <...>-13154 (-----) [000] d.h4 24572.994354: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
39495 id.nn.benchmark-13158 (13131) [007] dnh1 24572.994359: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
39496 id.nn.benchmark-13158 (13131) [007] d..2 24572.994361: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
39497           <...>-13154 (-----) [000] d.h5 24572.994363: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
39498         sugov:4-560   (  560) [007] d..2 24572.994366: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
39499          <idle>-0     (-----) [002] .n.1 24572.994464: cpu_idle: state=4294967295 cpu_id=2
39500          <idle>-0     (-----) [002] d..2 24572.994474: 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
39501         sugov:0-559   (  559) [002] d..2 24572.994505: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
39502          <idle>-0     (-----) [003] ...1 24572.996979: cpu_idle: state=4294967295 cpu_id=3
39503          <idle>-0     (-----) [003] d..1 24572.996981: cpu_idle: state=2 cpu_id=3
39504 id.nn.benchmark-13156 (13131) [004] d..2 24572.997015: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
39505 id.nn.benchmark-13160 (13131) [006] d..3 24572.997022: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
39506 id.nn.benchmark-13160 (13131) [006] d..2 24572.997029: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
39507 id.nn.benchmark-13158 (13131) [007] d..2 24572.997030: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
39508          <idle>-0     (-----) [006] d..1 24572.997032: cpu_idle: state=0 cpu_id=6
39509           <...>-13154 (-----) [000] dnh1 24572.997034: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
39510          <idle>-0     (-----) [007] d..1 24572.997034: cpu_idle: state=2 cpu_id=7
39511           <...>-13154 (-----) [000] d..2 24572.997040: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
39512          <idle>-0     (-----) [006] .n.1 24572.997061: cpu_idle: state=4294967295 cpu_id=6
39513          <idle>-0     (-----) [006] d..2 24572.997082: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
39514     migration/0-13    (   13) [000] d.h3 24572.997083: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
39515     migration/0-13    (   13) [000] d.h3 24572.997091: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
39516     migration/0-13    (   13) [000] d.h4 24572.997102: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
39517     migration/0-13    (   13) [000] d..2 24572.997115: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39518          <idle>-0     (-----) [000] d..1 24572.997123: cpu_idle: state=0 cpu_id=0
39519           <...>-13190 (-----) [001] ...1 24572.997133: tracing_mark_write: E|13131
39520           <...>-13190 (-----) [001] ...1 24572.997137: tracing_mark_write: E|13131
39521           <...>-13190 (-----) [001] ...1 24572.997151: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
39522           <...>-13157 (-----) [005] d..3 24572.997151: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
39523           <...>-13190 (-----) [001] ...1 24572.997155: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
39524           <...>-13157 (-----) [005] d..2 24572.997157: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
39525 id.nn.benchmark-13155 (13131) [002] dnh1 24572.997161: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
39526          <idle>-0     (-----) [005] d..1 24572.997162: cpu_idle: state=0 cpu_id=5
39527 id.nn.benchmark-13155 (13131) [002] d..2 24572.997167: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
39528          <idle>-0     (-----) [005] .n.1 24572.997189: cpu_idle: state=4294967295 cpu_id=5
39529          <idle>-0     (-----) [003] .n.1 24572.997204: cpu_idle: state=4294967295 cpu_id=3
39530          <idle>-0     (-----) [005] d..2 24572.997209: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
39531          <idle>-0     (-----) [003] d..2 24572.997214: 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
39532     migration/2-25    (   25) [002] d..2 24572.997219: 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
39533          <idle>-0     (-----) [002] d..1 24572.997228: cpu_idle: state=0 cpu_id=2
39534         sugov:0-559   (  559) [003] d..2 24572.997229: 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
39535          <idle>-0     (-----) [003] d..1 24572.997237: cpu_idle: state=0 cpu_id=3
39536          <idle>-0     (-----) [007] dnh2 24572.997252: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
39537          <idle>-0     (-----) [007] .n.1 24572.997255: cpu_idle: state=4294967295 cpu_id=7
39538          <idle>-0     (-----) [007] d..2 24572.997259: 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
39539         sugov:4-560   (  560) [007] d..2 24572.997266: 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
39540          <idle>-0     (-----) [007] d..1 24572.997269: cpu_idle: state=0 cpu_id=7
39541           <...>-13190 (-----) [001] d.s1 24572.997573: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
39542           <...>-13190 (-----) [001] dns2 24572.997584: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
39543           <...>-13190 (-----) [001] d..2 24572.997590: sched_switch: prev_comm=id.nn.benchmark prev_pid=13190 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
39544     rcu_preempt-7     (    7) [001] d..2 24572.997597: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
39545     rcu_preempt-7     (    7) [001] d..3 24572.997607: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
39546     rcu_preempt-7     (    7) [001] d..2 24572.997617: 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
39547         rcuop/2-29    (   29) [001] d..2 24572.997621: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
39548         rcuop/2-29    (   29) [001] d..3 24572.997631: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
39549         rcuop/2-29    (   29) [001] d..2 24572.997637: 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
39550         rcuop/3-37    (   37) [001] d..2 24572.997646: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13190 next_prio=110
39551           <...>-13190 (-----) [001] d..1 24572.997721: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=004
39552           <...>-13190 (-----) [001] d..1 24572.997737: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
39553          <idle>-0     (-----) [007] dnh2 24572.997742: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=007
39554          <idle>-0     (-----) [007] .n.1 24572.997744: cpu_idle: state=4294967295 cpu_id=7
39555           <...>-13190 (-----) [001] d..1 24572.997747: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=007
39556          <idle>-0     (-----) [007] d..2 24572.997747: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
39557 id.nn.benchmark-13155 (13131) [005] d.h1 24572.997749: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
39558           <...>-13190 (-----) [001] d..1 24572.997757: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=006
39559 id.nn.benchmark-13156 (13131) [007] d.h1 24572.997758: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=007
39560           <...>-13154 (-----) [006] d.h1 24572.997769: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=006
39561          <idle>-0     (-----) [000] d.h5 24572.999762: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
39562          <idle>-0     (-----) [000] dnh6 24572.999775: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
39563          <idle>-0     (-----) [000] dnh5 24572.999778: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
39564          <idle>-0     (-----) [000] dnh6 24572.999790: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
39565          <idle>-0     (-----) [003] .n.1 24572.999796: cpu_idle: state=4294967295 cpu_id=3
39566          <idle>-0     (-----) [000] .n.1 24572.999800: cpu_idle: state=4294967295 cpu_id=0
39567          <idle>-0     (-----) [003] d..2 24572.999802: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
39568          <idle>-0     (-----) [000] d..2 24572.999806: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
39569  crtc_event:111-254   (  254) [000] d..2 24572.999839: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
39570 id.nn.benchmark-13158 (13131) [000] d.h4 24572.999865: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
39571 id.nn.benchmark-13158 (13131) [000] d.h4 24572.999873: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
39572 id.nn.benchmark-13156 (13131) [007] dnh1 24572.999877: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
39573 id.nn.benchmark-13156 (13131) [007] d..2 24572.999880: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
39574         sugov:4-560   (  560) [007] d..2 24572.999883: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
39575 id.nn.benchmark-13158 (13131) [000] d.h5 24572.999885: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
39576          <idle>-0     (-----) [002] .n.1 24572.999891: cpu_idle: state=4294967295 cpu_id=2
39577          <idle>-0     (-----) [002] d..2 24572.999897: 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
39578         sugov:0-559   (  559) [002] d..2 24572.999922: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
39579 crtc_commit:111-253   (  253) [003] d..2 24572.999953: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
39580           <...>-13190 (-----) [001] ...1 24573.000208: tracing_mark_write: E|13131
39581           <...>-13190 (-----) [001] ...1 24573.000212: tracing_mark_write: E|13131
39582           <...>-13190 (-----) [001] ...1 24573.000231: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
39583           <...>-13190 (-----) [001] ...1 24573.000236: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
39584           <...>-13190 (-----) [001] ...1 24573.000578: tracing_mark_write: E|13131
39585           <...>-13190 (-----) [001] ...1 24573.000582: tracing_mark_write: E|13131
39586           <...>-13190 (-----) [001] ...1 24573.000593: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
39587           <...>-13190 (-----) [001] ...1 24573.000597: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
39588           <...>-13190 (-----) [001] ...1 24573.000839: tracing_mark_write: E|13131
39589           <...>-13190 (-----) [001] ...1 24573.000842: tracing_mark_write: E|13131
39590           <...>-13190 (-----) [001] ...1 24573.000853: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
39591           <...>-13190 (-----) [001] ...1 24573.000857: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
39592 id.nn.benchmark-13155 (13131) [005] d.s2 24573.000889: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
39593 id.nn.benchmark-13160 (13131) [003] d.s2 24573.000901: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
39594           <...>-13190 (-----) [001] dnh1 24573.000911: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
39595 id.nn.benchmark-13160 (13131) [003] d.s3 24573.000919: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
39596           <...>-13190 (-----) [001] d..2 24573.000924: sched_switch: prev_comm=id.nn.benchmark prev_pid=13190 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
39597  crtc_event:111-254   (  254) [001] d..2 24573.000937: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
39598  kworker/u16:15-18488 (18488) [001] .... 24573.001111: clk_set_rate: l3_cluster1_vote_clk 300000000
39599  kworker/u16:15-18488 (18488) [001] .... 24573.001116: clk_set_rate: l3_clk 1401600000
39600  kworker/u16:15-18488 (18488) [001] d..2 24573.001435: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13190 next_prio=110
39601 id.nn.benchmark-13160 (13131) [003] d.s2 24573.001470: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
39602 id.nn.benchmark-13160 (13131) [003] d.s3 24573.001478: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
39603 id.nn.benchmark-13160 (13131) [003] d.s3 24573.001484: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
39604           <...>-13190 (-----) [001] d..2 24573.001490: sched_switch: prev_comm=id.nn.benchmark prev_pid=13190 prev_prio=110 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
39605  kworker/u16:15-18488 (18488) [001] d..2 24573.001505: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13190 next_prio=110
39606           <...>-13190 (-----) [001] ...1 24573.001839: tracing_mark_write: E|13131
39607           <...>-13190 (-----) [001] ...1 24573.001844: tracing_mark_write: E|13131
39608           <...>-13190 (-----) [001] ...1 24573.001854: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
39609           <...>-13190 (-----) [001] ...1 24573.001858: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
39610 id.nn.benchmark-13158 (13131) [000] d.h4 24573.002116: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
39611 id.nn.benchmark-13158 (13131) [000] d.h5 24573.002131: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
39612           <...>-13190 (-----) [001] d..2 24573.002141: sched_switch: prev_comm=id.nn.benchmark prev_pid=13190 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
39613 crtc_commit:111-253   (  253) [001] d..2 24573.002191: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13190 next_prio=110
39614 id.nn.benchmark-13158 (13131) [000] d.h4 24573.002408: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
39615 id.nn.benchmark-13158 (13131) [000] d.h5 24573.002417: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
39616           <...>-13190 (-----) [001] d..2 24573.002426: sched_switch: prev_comm=id.nn.benchmark prev_pid=13190 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
39617  crtc_event:111-254   (  254) [001] d..2 24573.002436: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13190 next_prio=110
39618           <...>-13190 (-----) [001] ...1 24573.002444: tracing_mark_write: E|13131
39619           <...>-13190 (-----) [001] ...1 24573.002448: tracing_mark_write: E|13131
39620           <...>-13190 (-----) [001] ...1 24573.002465: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
39621           <...>-13190 (-----) [001] ...1 24573.002469: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
39622           <...>-13190 (-----) [001] ...1 24573.002659: tracing_mark_write: E|13131
39623           <...>-13190 (-----) [001] ...1 24573.002663: tracing_mark_write: E|13131
39624           <...>-13190 (-----) [001] ...1 24573.002676: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
39625           <...>-13190 (-----) [001] ...1 24573.002679: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
39626           <...>-13190 (-----) [001] ...1 24573.002750: tracing_mark_write: E|13131
39627           <...>-13190 (-----) [001] ...1 24573.002753: tracing_mark_write: E|13131
39628           <...>-13190 (-----) [001] ...1 24573.002764: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
39629           <...>-13190 (-----) [001] ...1 24573.002768: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
39630           <...>-13190 (-----) [001] ...1 24573.003055: tracing_mark_write: E|13131
39631           <...>-13190 (-----) [001] ...1 24573.003058: tracing_mark_write: E|13131
39632           <...>-13190 (-----) [001] ...1 24573.003068: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
39633           <...>-13190 (-----) [001] ...1 24573.003071: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
39634           <...>-13190 (-----) [001] ...1 24573.003121: tracing_mark_write: E|13131
39635           <...>-13190 (-----) [001] ...1 24573.003124: tracing_mark_write: E|13131
39636           <...>-13190 (-----) [001] ...1 24573.003133: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
39637           <...>-13190 (-----) [001] ...1 24573.003136: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
39638           <...>-13190 (-----) [001] ...1 24573.003153: tracing_mark_write: E|13131
39639           <...>-13190 (-----) [001] ...1 24573.003156: tracing_mark_write: E|13131
39640           <...>-13190 (-----) [001] ...1 24573.003165: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
39641           <...>-13190 (-----) [001] ...1 24573.003168: tracing_mark_write: E|13131
39642           <...>-13190 (-----) [001] ...1 24573.003176: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
39643           <...>-13190 (-----) [001] ...1 24573.003180: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
39644           <...>-13190 (-----) [001] d.h1 24573.003322: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
39645           <...>-13190 (-----) [001] dnh2 24573.003331: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
39646           <...>-13190 (-----) [001] d..2 24573.003340: sched_switch: prev_comm=id.nn.benchmark prev_pid=13190 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
39647        DispSync-23904 (23896) [001] d..1 24573.003360: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
39648        DispSync-23904 (23896) [001] d..2 24573.003370: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
39649           <...>-13157 (-----) [002] d..2 24573.003379: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
39650        DispSync-23904 (23896) [001] d..2 24573.003386: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13190 next_prio=110
39651   sfEventThread-23906 (23896) [002] d..3 24573.003418: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=005
39652 id.nn.benchmark-13155 (13131) [005] dnh1 24573.003445: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=005
39653 id.nn.benchmark-13155 (13131) [005] d..2 24573.003448: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
39654   sfEventThread-23906 (23896) [002] d..3 24573.003450: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
39655   sfEventThread-23906 (23896) [002] d..4 24573.003465: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
39656           <...>-13190 (-----) [001] d..2 24573.003474: sched_switch: prev_comm=id.nn.benchmark prev_pid=13190 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
39657   sfEventThread-23906 (23896) [002] d..2 24573.003479: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
39658<...>-24042 ( 23968) [005] .... 24573.003638: binder_transaction: transaction=1669630 dest_node=1271163 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
39659<...>-24042 ( 23968) [005] d..4 24573.003644: sched_waking: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=005
39660<...>-24042 ( 23968) [005] d..5 24573.003655: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=005
39661<...>-24042 ( 23968) [005] d..3 24573.003701: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=005
39662  surfaceflinger-23896 (23896) [001] d..1 24573.003706: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
39663<...>-24042 ( 23968) [005] d..4 24573.003716: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=007
39664  surfaceflinger-23896 (23896) [001] d..2 24573.003716: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
39665           <...>-13157 (-----) [002] d..2 24573.003724: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
39666 id.nn.benchmark-13156 (13131) [007] d..2 24573.003724: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
39667   sfEventThread-23906 (23896) [002] d..2 24573.003739: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
39668<...>-24042 ( 23968) [005] .... 24573.003782: binder_transaction: transaction=1669631 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
39669<...>-24042 ( 23968) [005] ...2 24573.003794: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
39670<...>-24042 ( 23968) [005] d..4 24573.003796: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
39671<...>-24042 ( 23968) [005] d..5 24573.003805: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
39672<...>-24042 ( 23968) [005] d..2 24573.003810: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
39673  Binder:23896_3-23986 (23896) [005] .... 24573.003815: binder_transaction_received: transaction=1669630
39674  Binder:23896_3-23986 (23896) [005] d..1 24573.003831: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
39675           <...>-13157 (-----) [002] dnh1 24573.003842: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
39676  Binder:23896_3-23986 (23896) [005] d..2 24573.003845: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
39677           <...>-13157 (-----) [002] d..2 24573.003847: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
39678<...>-23903 ( 23896) [005] .... 24573.003848: binder_transaction_received: transaction=1669631
39679   sfEventThread-23906 (23896) [002] d..2 24573.003858: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
39680<...>-24041 ( 23968) [007] .... 24573.003883: binder_transaction: transaction=1669632 dest_node=1271137 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
39681<...>-23903 ( 23896) [005] .... 24573.003884: binder_transaction: transaction=1669633 dest_node=0 dest_proc=23968 dest_thread=24042 reply=1 flags=0x0 code=0x0
39682<...>-24041 ( 23968) [007] d..4 24573.003886: sched_waking: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=005
39683<...>-24041 ( 23968) [007] d..5 24573.003896: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=005
39684<...>-23903 ( 23896) [005] d..2 24573.003898: sched_waking: comm=android.anim.lf pid=24042 prio=110 target_cpu=005
39685<...>-23903 ( 23896) [005] d..3 24573.003905: sched_wakeup: comm=android.anim.lf pid=24042 prio=110 target_cpu=005
39686<...>-23903 ( 23896) [005] .... 24573.003906: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
39687<...>-23903 ( 23896) [005] d..2 24573.003920: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
39688  Binder:23896_3-23986 (23896) [005] .... 24573.003921: binder_transaction_received: transaction=1669632
39689  Binder:23896_3-23986 (23896) [005] d..1 24573.003925: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
39690<...>-24041 ( 23968) [007] d..3 24573.003931: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=007
39691  Binder:23896_3-23986 (23896) [005] d..2 24573.003934: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=android.anim.lf next_pid=24042 next_prio=110
39692           <...>-13157 (-----) [002] dnh1 24573.003934: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
39693<...>-24042 ( 23968) [005] .... 24573.003935: binder_transaction_received: transaction=1669633
39694<...>-24041 ( 23968) [007] d..4 24573.003938: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=007
39695           <...>-13157 (-----) [002] d..2 24573.003939: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
39696   sfEventThread-23906 (23896) [002] d..2 24573.003949: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
39697<...>-24041 ( 23968) [007] d..3 24573.003965: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=007
39698<...>-24042 ( 23968) [005] d..2 24573.003966: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
39699<...>-24041 ( 23968) [007] d..4 24573.003972: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=007
39700<...>-24041 ( 23968) [007] d..3 24573.003984: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=001
39701  surfaceflinger-23896 (23896) [001] d.h1 24573.004004: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=001
39702  surfaceflinger-23896 (23896) [001] ...1 24573.004084: tracing_mark_write: B|23896|HIDL::IComposerClient::destroyLayer::client
39703  surfaceflinger-23896 (23896) [001] ...1 24573.004088: tracing_mark_write: E|23896
39704<...>-24041 ( 23968) [007] .... 24573.004094: binder_transaction: transaction=1669634 dest_node=1309266 dest_proc=24827 dest_thread=0 reply=0 flags=0x11 code=0x4
39705<...>-24041 ( 23968) [007] d..4 24573.004100: sched_waking: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=006
39706<...>-24041 ( 23968) [007] d..5 24573.004112: sched_wakeup: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=006
39707  surfaceflinger-23896 (23896) [001] .... 24573.004116: binder_transaction: transaction=1669635 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x6
39708           <...>-13154 (-----) [006] d..2 24573.004118: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=Binder:24827_5 next_pid=5558 next_prio=120
39709<...>-5558 ( 24827) [006] .... 24573.004123: binder_transaction_received: transaction=1669634
39710  surfaceflinger-23896 (23896) [001] ...2 24573.004123: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
39711  surfaceflinger-23896 (23896) [001] d..4 24573.004128: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=005
39712<...>-24041 ( 23968) [007] dnh1 24573.004149: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
39713  surfaceflinger-23896 (23896) [001] d..2 24573.004153: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
39714<...>-24041 ( 23968) [007] d..2 24573.004153: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
39715  HwBinder:598_3-633   (  598) [007] .... 24573.004157: binder_transaction_received: transaction=1669635
39716  HwBinder:598_3-633   (  598) [007] ...1 24573.004179: tracing_mark_write: B|598|HIDL::IComposerClient::destroyLayer::server
39717  HwBinder:598_3-633   (  598) [007] ...1 24573.004197: tracing_mark_write: B|598|HIDL::IMapper::freeBuffer::passthrough
39718  HwBinder:598_3-633   (  598) [007] ...1 24573.004203: tracing_mark_write: B|598|FreeBuffer
39719  HwBinder:598_3-633   (  598) [007] ...1 24573.004225: tracing_mark_write: E|598
39720 id.nn.benchmark-13155 (13131) [005] d.s2 24573.004226: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
39721  HwBinder:598_3-633   (  598) [007] ...1 24573.004226: tracing_mark_write: B|598|FreeBuffer
39722  HwBinder:598_3-633   (  598) [007] ...1 24573.004228: tracing_mark_write: B|598|UnmapBuffer
39723<...>-23968 ( 23968) [001] d.s1 24573.004232: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
39724<...>-5558 ( 24827) [006] d..3 24573.004239: sched_waking: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=003
39725<...>-23968 ( 23968) [001] d.s2 24573.004244: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
39726  HwBinder:598_3-633   (  598) [007] ...1 24573.004247: tracing_mark_write: E|598
39727  HwBinder:598_3-633   (  598) [007] ...1 24573.004249: tracing_mark_write: E|598
39728<...>-23968 ( 23968) [001] d.H2 24573.004252: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
39729  HwBinder:598_3-633   (  598) [007] ...1 24573.004252: tracing_mark_write: E|598
39730  HwBinder:598_3-633   (  598) [007] ...1 24573.004253: tracing_mark_write: B|598|HIDL::IMapper::freeBuffer::passthrough
39731  HwBinder:598_3-633   (  598) [007] ...1 24573.004255: tracing_mark_write: B|598|FreeBuffer
39732<...>-23968 ( 23968) [001] d.H2 24573.004257: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=001
39733  HwBinder:598_3-633   (  598) [007] ...1 24573.004258: tracing_mark_write: E|598
39734  HwBinder:598_3-633   (  598) [007] ...1 24573.004259: tracing_mark_write: B|598|FreeBuffer
39735  HwBinder:598_3-633   (  598) [007] ...1 24573.004260: tracing_mark_write: B|598|UnmapBuffer
39736  HwBinder:598_3-633   (  598) [007] ...1 24573.004266: tracing_mark_write: E|598
39737  HwBinder:598_3-633   (  598) [007] ...1 24573.004269: tracing_mark_write: E|598
39738  HwBinder:598_3-633   (  598) [007] ...1 24573.004270: tracing_mark_write: E|598
39739  HwBinder:598_3-633   (  598) [007] ...1 24573.004271: tracing_mark_write: B|598|HIDL::IMapper::freeBuffer::passthrough
39740  HwBinder:598_3-633   (  598) [007] ...1 24573.004273: tracing_mark_write: B|598|FreeBuffer
39741  HwBinder:598_3-633   (  598) [007] ...1 24573.004275: tracing_mark_write: E|598
39742<...>-5558 ( 24827) [006] d..2 24573.004276: sched_switch: prev_comm=Binder:24827_5 prev_pid=5558 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
39743  HwBinder:598_3-633   (  598) [007] ...1 24573.004276: tracing_mark_write: B|598|FreeBuffer
39744  HwBinder:598_3-633   (  598) [007] ...1 24573.004277: tracing_mark_write: B|598|UnmapBuffer
39745  HwBinder:598_3-633   (  598) [007] ...1 24573.004281: tracing_mark_write: E|598
39746  HwBinder:598_3-633   (  598) [007] ...1 24573.004283: tracing_mark_write: E|598
39747  HwBinder:598_3-633   (  598) [007] ...1 24573.004284: tracing_mark_write: E|598
39748  HwBinder:598_3-633   (  598) [007] ...1 24573.004289: tracing_mark_write: E|598
39749  HwBinder:598_3-633   (  598) [007] .... 24573.004293: binder_transaction: transaction=1669636 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
39750  HwBinder:598_3-633   (  598) [007] d..2 24573.004295: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
39751  HwBinder:598_3-633   (  598) [007] .... 24573.004302: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
39752<...>-23968 ( 23968) [001] dnh1 24573.004307: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
39753<...>-23968 ( 23968) [001] d..2 24573.004313: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
39754  HwBinder:598_3-633   (  598) [007] d..2 24573.004314: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=android.display next_pid=24003 next_prio=117
39755  surfaceflinger-23896 (23896) [001] .... 24573.004318: binder_transaction_received: transaction=1669636
39756<...>-24003 ( 23968) [007] d..2 24573.004374: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=ActivityManager next_pid=23993 next_prio=118
39757<...>-23993 ( 23968) [007] .... 24573.004431: binder_transaction: transaction=1669637 dest_node=1668777 dest_proc=13131 dest_thread=0 reply=0 flags=0x11 code=0x2a
39758<...>-23993 ( 23968) [007] d..4 24573.004442: sched_waking: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=004
39759<...>-23993 ( 23968) [007] d..5 24573.004453: sched_wakeup: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=007
39760<...>-23993 ( 23968) [007] d..2 24573.004523: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=Binder:13131_3 next_pid=13145 next_prio=120
39761           <...>-13145 (-----) [007] .... 24573.004527: binder_transaction_received: transaction=1669637
39762  surfaceflinger-23896 (23896) [001] ...1 24573.004565: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
39763  surfaceflinger-23896 (23896) [001] ...1 24573.004569: tracing_mark_write: E|23896
39764  surfaceflinger-23896 (23896) [001] .... 24573.004591: binder_transaction: transaction=1669638 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
39765  surfaceflinger-23896 (23896) [001] ...2 24573.004605: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
39766  surfaceflinger-23896 (23896) [001] d..4 24573.004608: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
39767           <...>-13145 (-----) [007] dnh1 24573.004624: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
39768  surfaceflinger-23896 (23896) [001] d..2 24573.004628: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
39769           <...>-13145 (-----) [007] d..2 24573.004628: sched_switch: prev_comm=Binder:13131_3 prev_pid=13145 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
39770  HwBinder:598_3-633   (  598) [007] .... 24573.004630: binder_transaction_received: transaction=1669638
39771     rcu_preempt-7     (    7) [001] d..2 24573.004633: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
39772  HwBinder:598_3-633   (  598) [007] ...1 24573.004642: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
39773     rcu_preempt-7     (    7) [001] d..3 24573.004645: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
39774     rcu_preempt-7     (    7) [001] d..2 24573.004651: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
39775  HwBinder:598_3-633   (  598) [007] ...1 24573.004689: tracing_mark_write: B|598|HWCSession::PresentDisplay::
39776 s.nexuslauncher-24827 (24827) [001] .... 24573.004802: binder_transaction: transaction=1669639 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
39777 s.nexuslauncher-24827 (24827) [001] d..4 24573.004807: sched_waking: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=005
39778 id.nn.benchmark-13155 (13131) [005] dnh1 24573.004823: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=005
39779 id.nn.benchmark-13155 (13131) [005] d..2 24573.004826: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
39780  Binder:23896_3-23986 (23896) [005] .... 24573.004827: binder_transaction_received: transaction=1669639
39781  Binder:23896_3-23986 (23896) [005] d..1 24573.004837: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
39782 s.nexuslauncher-24827 (24827) [001] d..3 24573.004844: sched_waking: comm=RenderThread pid=25194 prio=120 target_cpu=004
39783  Binder:23896_3-23986 (23896) [005] d..2 24573.004855: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
39784  HwBinder:598_3-633   (  598) [007] d.h1 24573.004872: sched_wakeup: comm=RenderThread pid=25194 prio=120 target_cpu=007
39785 s.nexuslauncher-24827 (24827) [001] dnh2 24573.004873: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
39786 s.nexuslauncher-24827 (24827) [001] d..2 24573.004881: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
39787  appEventThread-23905 (23896) [001] d..1 24573.004910: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
39788  HwBinder:598_3-633   (  598) [007] ...1 24573.004945: tracing_mark_write: B|598|HWDeviceDRM::Validate::
39789 id.nn.benchmark-13155 (13131) [005] dnh1 24573.004955: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=005
39790  appEventThread-23905 (23896) [001] d.h3 24573.004957: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
39791 id.nn.benchmark-13155 (13131) [005] d..2 24573.004958: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
39792        DispSync-23904 (23896) [005] d..2 24573.004965: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
39793  appEventThread-23905 (23896) [001] d.h3 24573.004968: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
39794           <...>-13154 (-----) [006] dnh1 24573.004972: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
39795           <...>-13154 (-----) [006] d..2 24573.004976: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
39796  appEventThread-23905 (23896) [001] d.h4 24573.004976: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
39797  appEventThread-23905 (23896) [001] d..1 24573.004980: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=005
39798         sugov:4-560   (  560) [006] d..2 24573.004981: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
39799           <...>-13157 (-----) [002] d..2 24573.004984: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
39800 id.nn.benchmark-13155 (13131) [005] dnh1 24573.004991: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=005
39801         sugov:0-559   (  559) [002] d..2 24573.004993: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
39802 id.nn.benchmark-13155 (13131) [005] d..2 24573.004994: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
39803        DispSync-23904 (23896) [005] d..2 24573.005000: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
39804  appEventThread-23905 (23896) [001] d..2 24573.005000: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
39805         rcuop/0-10    (   10) [001] d..2 24573.005004: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
39806         rcuop/0-10    (   10) [001] d..3 24573.005016: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
39807         rcuop/0-10    (   10) [001] d..2 24573.005021: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
39808         rcuop/0-10    (   10) [001] d..3 24573.005028: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
39809         rcuop/0-10    (   10) [001] d..2 24573.005033: 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
39810         rcuop/1-21    (   21) [001] d..2 24573.005056: 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
39811     rcu_preempt-7     (    7) [001] d..2 24573.005065: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
39812<...>-23968 ( 23968) [001] .... 24573.005078: binder_transaction: transaction=1669640 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x19
39813<...>-23968 ( 23968) [001] d..4 24573.005086: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=006
39814           <...>-13154 (-----) [006] dnh1 24573.005108: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=006
39815           <...>-13154 (-----) [006] d..2 24573.005110: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
39816<...>-24177 ( 24151) [006] .... 24573.005114: binder_transaction_received: transaction=1669640
39817  HwBinder:598_3-633   (  598) [007] ...1 24573.005132: tracing_mark_write: E|598
39818  HwBinder:598_3-633   (  598) [007] ...1 24573.005168: tracing_mark_write: B|598|HWDeviceDRM::Commit::
39819  HwBinder:598_3-633   (  598) [007] ...1 24573.005170: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
39820<...>-23968 ( 23968) [001] .... 24573.005173: binder_transaction: transaction=1669641 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x19
39821<...>-24177 ( 24151) [006] d..3 24573.005193: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
39822<...>-24177 ( 24151) [006] d..4 24573.005201: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
39823<...>-23968 ( 23968) [001] d..2 24573.005206: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
39824<...>-24177 ( 24151) [006] d..4 24573.005225: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=002
39825<...>-24177 ( 24151) [006] d..5 24573.005238: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
39826 s.nexuslauncher-24827 (24827) [001] d..2 24573.005238: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
39827<...>-24177 ( 24151) [006] .... 24573.005255: binder_transaction_received: transaction=1669641
39828  HwBinder:598_3-633   (  598) [007] d..2 24573.005279: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
39829<...>-24177 ( 24151) [006] d..2 24573.005287: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
39830<...>-24376 ( 24151) [006] d..2 24573.005293: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
39831  kworker/u16:15-18488 (18488) [001] dnh3 24573.005294: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
39832  kworker/u16:15-18488 (18488) [001] d..2 24573.005300: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
39833  HwBinder:598_3-633   (  598) [007] ...1 24573.005314: tracing_mark_write: E|598
39834  HwBinder:598_3-633   (  598) [007] ...1 24573.005315: tracing_mark_write: E|598
39835  HwBinder:598_3-633   (  598) [007] ...1 24573.005330: tracing_mark_write: E|598
39836  HwBinder:598_3-633   (  598) [007] ...1 24573.005348: tracing_mark_write: E|598
39837  HwBinder:598_3-633   (  598) [007] .... 24573.005351: binder_transaction: transaction=1669642 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
39838  HwBinder:598_3-633   (  598) [007] d..2 24573.005357: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
39839  HwBinder:598_3-633   (  598) [007] .... 24573.005366: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
39840 id.nn.benchmark-13158 (13131) [000] dnh1 24573.005371: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
39841 id.nn.benchmark-13158 (13131) [000] d..2 24573.005376: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
39842  surfaceflinger-23896 (23896) [000] .... 24573.005382: binder_transaction_received: transaction=1669642
39843  HwBinder:598_3-633   (  598) [007] d..2 24573.005385: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=120
39844    RenderThread-25194 (24827) [007] d..2 24573.005404: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
39845  surfaceflinger-23896 (23896) [000] d..2 24573.005602: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
39846<...>-24151 ( 24151) [007] d..2 24573.005662: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
39847<...>-24041 ( 23968) [007] .... 24573.005856: binder_transaction: transaction=1669643 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
39848<...>-24041 ( 23968) [007] d..4 24573.005859: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
39849<...>-24041 ( 23968) [007] d..5 24573.005870: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
39850           <...>-13154 (-----) [006] d..2 24573.005876: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
39851<...>-24376 ( 24151) [006] .... 24573.005878: binder_transaction_received: transaction=1669643
39852<...>-24376 ( 24151) [006] d..3 24573.005908: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
39853<...>-24376 ( 24151) [006] d..4 24573.005914: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
39854<...>-24041 ( 23968) [007] d..3 24573.005922: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=007
39855<...>-24041 ( 23968) [007] d..4 24573.005929: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=007
39856<...>-24376 ( 24151) [006] d..2 24573.005930: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
39857<...>-24041 ( 23968) [007] .... 24573.006115: binder_transaction: transaction=1669644 dest_node=1282186 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x1
39858<...>-24041 ( 23968) [007] d..4 24573.006118: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
39859<...>-24041 ( 23968) [007] d..5 24573.006129: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
39860           <...>-13154 (-----) [006] d..2 24573.006135: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
39861<...>-24376 ( 24151) [006] .... 24573.006136: binder_transaction_received: transaction=1669644
39862<...>-24041 ( 23968) [007] .... 24573.006145: binder_transaction: transaction=1669645 dest_node=1286409 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x1
39863<...>-24041 ( 23968) [007] d..4 24573.006147: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=006
39864<...>-24041 ( 23968) [007] d..5 24573.006154: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=006
39865<...>-24376 ( 24151) [006] d..2 24573.006195: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
39866<...>-24177 ( 24151) [006] .... 24573.006197: binder_transaction_received: transaction=1669645
39867<...>-24041 ( 23968) [007] .... 24573.006214: binder_transaction: transaction=1669646 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
39868<...>-24041 ( 23968) [007] ...2 24573.006227: binder_set_priority: proc=23896 thread=23986 old=120 => new=110 desired=110
39869<...>-24041 ( 23968) [007] d..4 24573.006228: sched_waking: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=005
39870<...>-24041 ( 23968) [007] d..5 24573.006236: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=005
39871<...>-24177 ( 24151) [006] d..2 24573.006240: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
39872<...>-24041 ( 23968) [007] d..2 24573.006241: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=android.ui next_pid=23994 next_prio=118
39873 id.nn.benchmark-13155 (13131) [005] d..2 24573.006243: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=110
39874  Binder:23896_3-23986 (23896) [005] .... 24573.006245: binder_transaction_received: transaction=1669646
39875<...>-23994 ( 23968) [007] d..3 24573.006278: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=001
39876 crtc_commit:111-253   (  253) [001] d.h1 24573.006298: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=001
39877  Binder:23896_3-23986 (23896) [005] .... 24573.006300: binder_transaction: transaction=1669647 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
39878  Binder:23896_3-23986 (23896) [005] d..2 24573.006302: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=007
39879<...>-23994 ( 23968) [007] d..2 24573.006304: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=Binder:13131_3 next_pid=13145 next_prio=120
39880  Binder:23896_3-23986 (23896) [005] d..3 24573.006310: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=007
39881  Binder:23896_3-23986 (23896) [005] .... 24573.006312: binder_set_priority: proc=23896 thread=23986 old=110 => new=120 desired=120
39882  Binder:23896_3-23986 (23896) [005] d..2 24573.006328: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
39883           <...>-13145 (-----) [007] d..2 24573.006435: sched_switch: prev_comm=Binder:13131_3 prev_pid=13145 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
39884<...>-24041 ( 23968) [007] .... 24573.006437: binder_transaction_received: transaction=1669647
39885 id.nn.benchmark-13159 (13131) [004] d..3 24573.006518: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
39886 id.nn.benchmark-13159 (13131) [004] d..2 24573.006527: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39887 id.nn.benchmark-13158 (13131) [000] dnh1 24573.006530: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
39888 id.nn.benchmark-13158 (13131) [000] d..2 24573.006536: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
39889          <idle>-0     (-----) [004] d..1 24573.006538: cpu_idle: state=2 cpu_id=4
39890     migration/0-13    (   13) [000] d.h3 24573.006586: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
39891     migration/0-13    (   13) [000] d.h3 24573.006598: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
39892     migration/0-13    (   13) [000] d.h4 24573.006607: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
39893     migration/0-13    (   13) [000] d..2 24573.006614: 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
39894         sugov:0-559   (  559) [000] d..2 24573.006633: 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
39895          <idle>-0     (-----) [000] d..1 24573.006645: cpu_idle: state=0 cpu_id=0
39896<...>-24041 ( 23968) [007] d..3 24573.006734: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
39897<...>-24041 ( 23968) [007] d..3 24573.006755: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=007
39898          <idle>-0     (-----) [000] dnh2 24573.006757: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
39899          <idle>-0     (-----) [000] .n.1 24573.006761: cpu_idle: state=4294967295 cpu_id=0
39900<...>-24041 ( 23968) [007] d..4 24573.006763: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=007
39901          <idle>-0     (-----) [000] d..2 24573.006769: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
39902<...>-24073 ( 23968) [000] d..2 24573.006809: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39903          <idle>-0     (-----) [000] d..1 24573.006816: cpu_idle: state=0 cpu_id=0
39904          <idle>-0     (-----) [004] dnh2 24573.006853: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
39905          <idle>-0     (-----) [004] .n.1 24573.006856: cpu_idle: state=4294967295 cpu_id=4
39906          <idle>-0     (-----) [004] d..2 24573.006861: 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
39907         sugov:4-560   (  560) [004] d..2 24573.006865: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
39908<...>-24041 ( 23968) [007] .... 24573.006940: binder_transaction: transaction=1669648 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
39909<...>-24041 ( 23968) [007] d..4 24573.006943: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=006
39910          <idle>-0     (-----) [000] dnh2 24573.006974: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=000
39911          <idle>-0     (-----) [000] .n.1 24573.006978: cpu_idle: state=4294967295 cpu_id=0
39912          <idle>-0     (-----) [000] d..2 24573.006983: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
39913<...>-24177 ( 24151) [000] .... 24573.006987: binder_transaction_received: transaction=1669648
39914<...>-24041 ( 23968) [007] d..3 24573.006999: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=007
39915<...>-24041 ( 23968) [007] d..4 24573.007009: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=007
39916<...>-24177 ( 24151) [000] d..2 24573.007073: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39917          <idle>-0     (-----) [000] d..1 24573.007081: cpu_idle: state=0 cpu_id=0
39918<...>-24041 ( 23968) [007] .... 24573.007083: binder_transaction: transaction=1669649 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
39919<...>-24041 ( 23968) [007] ...2 24573.007085: binder_set_priority: proc=23896 thread=23986 old=120 => new=116 desired=116
39920<...>-24041 ( 23968) [007] d..4 24573.007086: sched_waking: comm=Binder:23896_3 pid=23986 prio=116 target_cpu=005
39921<...>-24041 ( 23968) [007] d.h5 24573.007118: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
39922          <idle>-0     (-----) [000] dnh2 24573.007120: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=116 target_cpu=000
39923          <idle>-0     (-----) [000] .n.1 24573.007124: cpu_idle: state=4294967295 cpu_id=0
39924<...>-24041 ( 23968) [007] d.h6 24573.007124: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
39925<...>-24041 ( 23968) [007] d.h5 24573.007125: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
39926          <idle>-0     (-----) [000] d..2 24573.007130: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=116
39927 id.nn.benchmark-13158 (13131) [004] d..2 24573.007130: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
39928         sugov:4-560   (  560) [004] d..2 24573.007134: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
39929  Binder:23896_3-23986 (23896) [000] dnh3 24573.007137: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
39930<...>-24041 ( 23968) [007] d..2 24573.007137: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=S ==> next_comm=android.display next_pid=24003 next_prio=117
39931  Binder:23896_3-23986 (23896) [000] d..2 24573.007142: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=116 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
39932         sugov:0-559   (  559) [000] d..2 24573.007148: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=116
39933  Binder:23896_3-23986 (23896) [000] .... 24573.007152: binder_transaction_received: transaction=1669649
39934<...>-24003 ( 23968) [007] d..2 24573.007169: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=android.ui next_pid=23994 next_prio=118
39935  Binder:23896_3-23986 (23896) [000] .... 24573.007174: binder_transaction: transaction=1669650 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
39936  Binder:23896_3-23986 (23896) [000] d..2 24573.007177: sched_waking: comm=android.anim pid=24041 prio=116 target_cpu=007
39937  Binder:23896_3-23986 (23896) [000] d..3 24573.007192: sched_wakeup: comm=android.anim pid=24041 prio=116 target_cpu=000
39938<...>-23994 ( 23968) [007] d..2 24573.007193: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
39939  Binder:23896_3-23986 (23896) [000] .... 24573.007217: binder_set_priority: proc=23896 thread=23986 old=116 => new=120 desired=120
39940  Binder:23896_3-23986 (23896) [000] d..2 24573.007241: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=116
39941<...>-24041 ( 23968) [000] .... 24573.007245: binder_transaction_received: transaction=1669650
39942<...>-24151 ( 24151) [007] .... 24573.007301: binder_transaction: transaction=1669651 dest_node=1271369 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x3
39943<...>-24151 ( 24151) [007] d..4 24573.007305: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=003
39944<...>-24151 ( 24151) [007] d..5 24573.007319: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
39945<...>-24151 ( 24151) [007] d..2 24573.007339: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
39946  Binder:23968_1-23981 (23968) [007] .... 24573.007342: binder_transaction_received: transaction=1669651
39947 crtc_commit:111-253   (  253) [001] d..2 24573.007413: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=system_server next_pid=23968 next_prio=118
39948<...>-23968 ( 23968) [001] .... 24573.007467: binder_transaction: transaction=1669652 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
39949<...>-23968 ( 23968) [001] d..4 24573.007471: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=000
39950<...>-23968 ( 23968) [001] d..5 24573.007494: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=000
39951  Binder:23968_1-23981 (23968) [007] .... 24573.007496: binder_transaction: transaction=1669653 dest_node=0 dest_proc=24151 dest_thread=24151 reply=1 flags=0x0 code=0x0
39952  Binder:23968_1-23981 (23968) [007] d..2 24573.007499: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
39953  Binder:23968_1-23981 (23968) [007] d..3 24573.007505: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
39954  Binder:23968_1-23981 (23968) [007] d..2 24573.007516: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
39955<...>-24151 ( 24151) [007] .... 24573.007518: binder_transaction_received: transaction=1669653
39956<...>-23968 ( 23968) [001] .... 24573.007538: binder_transaction: transaction=1669654 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
39957 id.nn.benchmark-13155 (13131) [005] d.s2 24573.007559: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
39958<...>-23968 ( 23968) [001] d.h1 24573.007577: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
39959<...>-23968 ( 23968) [001] d..2 24573.007598: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
39960  kworker/u16:10-23868 (23868) [001] d..2 24573.007607: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
39961           <...>-13154 (-----) [006] d..3 24573.007670: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
39962           <...>-13154 (-----) [006] d..2 24573.007679: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
39963           <...>-13157 (-----) [002] dnh1 24573.007681: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
39964           <...>-13157 (-----) [002] d..2 24573.007686: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
39965          <idle>-0     (-----) [006] d..1 24573.007687: cpu_idle: state=0 cpu_id=6
39966          <idle>-0     (-----) [006] .n.1 24573.007711: cpu_idle: state=4294967295 cpu_id=6
39967          <idle>-0     (-----) [006] d..2 24573.007733: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
39968     migration/2-25    (   25) [002] d.h3 24573.007733: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
39969     migration/2-25    (   25) [002] d.h3 24573.007740: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
39970 id.nn.benchmark-13158 (13131) [004] dnh1 24573.007743: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
39971 id.nn.benchmark-13158 (13131) [004] d..2 24573.007746: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
39972         sugov:4-560   (  560) [004] d..2 24573.007749: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
39973     migration/2-25    (   25) [002] d.h4 24573.007751: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
39974     migration/2-25    (   25) [002] d..2 24573.007757: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
39975<...>-24041 ( 23968) [000] d..3 24573.007766: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
39976         sugov:0-559   (  559) [002] d..2 24573.007771: 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
39977  kworker/u16:15-18488 (18488) [001] d..2 24573.007784: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13190 next_prio=110
39978<...>-24041 ( 23968) [000] d..4 24573.007784: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=002
39979          <idle>-0     (-----) [002] d..2 24573.007792: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
39980 id.nn.benchmark-13160 (13131) [003] d.s2 24573.007806: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
39981<...>-24073 ( 23968) [002] d..2 24573.007822: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
39982          <idle>-0     (-----) [002] d..1 24573.007829: cpu_idle: state=0 cpu_id=2
39983<...>-24041 ( 23968) [000] d..1 24573.007829: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=007
39984 id.nn.benchmark-13160 (13131) [003] d.s3 24573.007831: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
39985<...>-24151 ( 24151) [007] .... 24573.007835: binder_transaction: transaction=1669655 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
39986 id.nn.benchmark-13160 (13131) [003] d.s3 24573.007837: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
39987<...>-24151 ( 24151) [007] d..4 24573.007838: sched_waking: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=000
39988          <idle>-0     (-----) [002] .n.1 24573.007843: cpu_idle: state=4294967295 cpu_id=2
39989          <idle>-0     (-----) [002] d..2 24573.007849: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
39990<...>-24151 ( 24151) [007] d.h4 24573.007854: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=007
39991<...>-24041 ( 23968) [000] d.h1 24573.007858: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=000
39992  kworker/u16:15-18488 (18488) [002] d..2 24573.007868: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
39993<...>-24151 ( 24151) [007] d..3 24573.007869: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
39994          <idle>-0     (-----) [002] d..1 24573.007874: cpu_idle: state=0 cpu_id=2
39995<...>-24041 ( 23968) [000] d..2 24573.007882: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=S ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
39996          <idle>-0     (-----) [002] dnh2 24573.007885: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
39997  Binder:23896_3-23986 (23896) [000] .... 24573.007886: binder_transaction_received: transaction=1669655
39998 id.nn.benchmark-13155 (13131) [005] d..3 24573.007888: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
39999          <idle>-0     (-----) [002] .n.1 24573.007889: cpu_idle: state=4294967295 cpu_id=2
40000          <idle>-0     (-----) [002] d..2 24573.007894: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
40001 id.nn.benchmark-13155 (13131) [005] d..2 24573.007895: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
40002 id.nn.benchmark-13160 (13131) [003] dnh1 24573.007897: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
40003  Binder:23896_3-23986 (23896) [000] d..1 24573.007900: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
40004 id.nn.benchmark-13160 (13131) [003] d..2 24573.007903: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
40005          <idle>-0     (-----) [005] d..1 24573.007903: cpu_idle: state=0 cpu_id=5
40006  Binder:23896_3-23986 (23896) [000] dn.2 24573.007913: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
40007  Binder:23896_3-23986 (23896) [000] d..2 24573.007918: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
40008          <idle>-0     (-----) [005] .n.1 24573.007927: cpu_idle: state=4294967295 cpu_id=5
40009          <idle>-0     (-----) [005] d..2 24573.007945: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
40010  appEventThread-23905 (23896) [000] d..2 24573.007948: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
40011<...>-33 ( 33) [003] d..2 24573.007961: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
40012    RenderThread-24437 (24151) [002] d..2 24573.007961: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=ActivityManager next_pid=23993 next_prio=118
40013          <idle>-0     (-----) [003] d..1 24573.007972: cpu_idle: state=0 cpu_id=3
40014  Binder:23896_3-23986 (23896) [000] d.h3 24573.007977: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
40015  Binder:23896_3-23986 (23896) [000] dnh4 24573.007992: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
40016<...>-24151 ( 24151) [007] d..3 24573.007996: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
40017  Binder:23896_3-23986 (23896) [000] d..2 24573.008000: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=R+ ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
40018          <idle>-0     (-----) [003] dnh2 24573.008015: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=003
40019          <idle>-0     (-----) [003] .n.1 24573.008018: cpu_idle: state=4294967295 cpu_id=3
40020          <idle>-0     (-----) [003] d..2 24573.008024: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
40021<...>-23993 ( 23968) [002] d..1 24573.008035: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=007
40022<...>-24151 ( 24151) [007] d..2 24573.008037: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
40023    RenderThread-24437 (24151) [003] d..2 24573.008053: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
40024 id.nn.benchmark-13156 (13131) [007] dnh1 24573.008059: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=007
40025          <idle>-0     (-----) [003] d..1 24573.008060: cpu_idle: state=0 cpu_id=3
40026 id.nn.benchmark-13156 (13131) [007] d..2 24573.008062: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
40027<...>-23993 ( 23968) [002] d..2 24573.008086: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
40028<...>-24003 ( 23968) [007] d..1 24573.008094: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=002
40029          <idle>-0     (-----) [002] d..1 24573.008095: cpu_idle: state=0 cpu_id=2
40030 irq/79-1436400.-24613 (24613) [000] d..2 24573.008103: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
40031  Binder:23896_3-23986 (23896) [000] d..1 24573.008107: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
40032          <idle>-0     (-----) [002] dnh2 24573.008108: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=002
40033          <idle>-0     (-----) [002] .n.1 24573.008112: cpu_idle: state=4294967295 cpu_id=2
40034          <idle>-0     (-----) [002] d..2 24573.008118: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
40035  Binder:23896_3-23986 (23896) [000] d..2 24573.008121: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
40036          <idle>-0     (-----) [003] dns2 24573.008129: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
40037<...>-24003 ( 23968) [007] d..2 24573.008129: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
40038          <idle>-0     (-----) [003] dns3 24573.008137: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
40039  Binder:23896_3-23986 (23896) [000] d..2 24573.008139: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
40040          <idle>-0     (-----) [003] .n.1 24573.008141: cpu_idle: state=4294967295 cpu_id=3
40041<...>-24177 ( 24151) [000] .... 24573.008143: binder_transaction_received: transaction=1669652
40042          <idle>-0     (-----) [003] d..2 24573.008146: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
40043  appEventThread-23905 (23896) [003] d..2 24573.008180: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
40044     ksoftirqd/3-34    (   34) [003] d.s2 24573.008189: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
40045     ksoftirqd/3-34    (   34) [003] d.s3 24573.008197: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
40046<...>-24177 ( 24151) [000] d..2 24573.008207: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
40047     ksoftirqd/3-34    (   34) [003] d..2 24573.008210: 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
40048          <idle>-0     (-----) [003] d..1 24573.008217: cpu_idle: state=2 cpu_id=3
40049 irq/79-1436400.-24613 (24613) [000] d..2 24573.008226: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
40050<...>-24177 ( 24151) [000] d..4 24573.008239: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
40051<...>-24177 ( 24151) [000] d..5 24573.008258: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=003
40052<...>-24177 ( 24151) [000] d.h5 24573.008288: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
40053<...>-24177 ( 24151) [000] d.h5 24573.008295: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
40054 id.nn.benchmark-13158 (13131) [004] dnh1 24573.008298: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
40055 id.nn.benchmark-13158 (13131) [004] d..2 24573.008300: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
40056         sugov:4-560   (  560) [004] d..2 24573.008303: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
40057<...>-24177 ( 24151) [000] d.h6 24573.008308: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
40058<...>-23993 ( 23968) [002] d..2 24573.008313: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=116 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
40059<...>-24177 ( 24151) [000] .... 24573.008319: binder_transaction_received: transaction=1669654
40060         sugov:0-559   (  559) [002] d..2 24573.008324: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=ActivityManager next_pid=23993 next_prio=116
40061<...>-24177 ( 24151) [000] d..2 24573.008385: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40062          <idle>-0     (-----) [000] d..1 24573.008394: cpu_idle: state=0 cpu_id=0
40063          <idle>-0     (-----) [003] .n.1 24573.008410: cpu_idle: state=4294967295 cpu_id=3
40064          <idle>-0     (-----) [003] d..2 24573.008419: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
40065<...>-24376 ( 24151) [003] d..2 24573.008436: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
40066           <...>-13190 (-----) [001] ...1 24573.008437: tracing_mark_write: E|13131
40067           <...>-13190 (-----) [001] ...1 24573.008443: tracing_mark_write: E|13131
40068          <idle>-0     (-----) [003] d..1 24573.008443: cpu_idle: state=0 cpu_id=3
40069<...>-23993 ( 23968) [002] .... 24573.008457: binder_transaction: transaction=1669656 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
40070           <...>-13190 (-----) [001] ...1 24573.008465: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
40071<...>-23993 ( 23968) [002] ...2 24573.008467: binder_set_priority: proc=23896 thread=23986 old=120 => new=116 desired=116
40072<...>-23993 ( 23968) [002] d..4 24573.008469: sched_waking: comm=Binder:23896_3 pid=23986 prio=116 target_cpu=000
40073           <...>-13190 (-----) [001] ...1 24573.008472: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
40074<...>-23993 ( 23968) [002] d..5 24573.008480: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=116 target_cpu=002
40075<...>-23993 ( 23968) [002] d..2 24573.008488: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=116 prev_state=S ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=116
40076  Binder:23896_3-23986 (23896) [002] .... 24573.008492: binder_transaction_received: transaction=1669656
40077           <...>-13190 (-----) [001] d..1 24573.008493: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=006
40078           <...>-13190 (-----) [001] d..1 24573.008506: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
40079           <...>-13157 (-----) [006] d.h1 24573.008508: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=006
40080 id.nn.benchmark-13160 (13131) [005] d.h1 24573.008518: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
40081           <...>-13190 (-----) [001] d..1 24573.008519: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=004
40082  Binder:23896_3-23986 (23896) [002] .... 24573.008528: binder_transaction: transaction=1669657 dest_node=0 dest_proc=23968 dest_thread=23993 reply=1 flags=0x0 code=0x0
40083  Binder:23896_3-23986 (23896) [002] d..2 24573.008531: sched_waking: comm=ActivityManager pid=23993 prio=116 target_cpu=002
40084 id.nn.benchmark-13158 (13131) [004] d.h1 24573.008532: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=004
40085  Binder:23896_3-23986 (23896) [002] d..3 24573.008538: sched_wakeup: comm=ActivityManager pid=23993 prio=116 target_cpu=002
40086  Binder:23896_3-23986 (23896) [002] .... 24573.008540: binder_set_priority: proc=23896 thread=23986 old=116 => new=120 desired=120
40087  Binder:23896_3-23986 (23896) [002] d..2 24573.008564: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=ActivityManager next_pid=23993 next_prio=116
40088<...>-23993 ( 23968) [002] .... 24573.008568: binder_transaction_received: transaction=1669657
40089<...>-23993 ( 23968) [002] d..2 24573.008724: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
40090<...>-23993 ( 23968) [002] d..3 24573.008739: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
40091<...>-23993 ( 23968) [002] .... 24573.008850: binder_transaction: transaction=1669658 dest_node=1303079 dest_proc=24827 dest_thread=0 reply=0 flags=0x11 code=0x33
40092<...>-23993 ( 23968) [002] d..4 24573.008864: sched_waking: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=006
40093<...>-23993 ( 23968) [002] d..5 24573.008884: sched_wakeup: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=000
40094          <idle>-0     (-----) [000] .n.1 24573.008889: cpu_idle: state=4294967295 cpu_id=0
40095<...>-23993 ( 23968) [002] d.h5 24573.008914: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
40096          <idle>-0     (-----) [000] d..2 24573.008915: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24827_5 next_pid=5558 next_prio=120
40097<...>-23993 ( 23968) [002] d.h5 24573.008926: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
40098 id.nn.benchmark-13156 (13131) [007] dnh1 24573.008929: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
40099 id.nn.benchmark-13156 (13131) [007] d..2 24573.008933: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
40100         sugov:4-560   (  560) [007] d..2 24573.008937: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
40101<...>-23993 ( 23968) [002] d.h6 24573.008939: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
40102          <idle>-0     (-----) [003] .n.1 24573.008944: cpu_idle: state=4294967295 cpu_id=3
40103<...>-5558 ( 24827) [000] .... 24573.008944: binder_transaction_received: transaction=1669658
40104          <idle>-0     (-----) [003] d..2 24573.008949: 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
40105         sugov:0-559   (  559) [003] d..2 24573.008976: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
40106<...>-5558 ( 24827) [000] d..2 24573.009139: sched_switch: prev_comm=Binder:24827_5 prev_pid=5558 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
40107<...>-23993 ( 23968) [002] .... 24573.009157: binder_transaction: transaction=1669659 dest_node=1303079 dest_proc=24827 dest_thread=0 reply=0 flags=0x11 code=0x27
40108<...>-23993 ( 23968) [002] d..4 24573.009161: sched_waking: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=000
40109 id.nn.benchmark-13156 (13131) [007] dnh1 24573.009185: sched_wakeup: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=007
40110 id.nn.benchmark-13156 (13131) [007] d..2 24573.009206: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:24827_5 next_pid=5558 next_prio=120
40111<...>-5558 ( 24827) [007] .... 24573.009208: binder_transaction_received: transaction=1669659
40112<...>-5558 ( 24827) [007] d..2 24573.009250: sched_switch: prev_comm=Binder:24827_5 prev_pid=5558 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
40113<...>-23993 ( 23968) [002] d..3 24573.009284: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=007
40114 id.nn.benchmark-13156 (13131) [007] dnh1 24573.009299: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=007
40115 id.nn.benchmark-13156 (13131) [007] d..2 24573.009302: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
40116<...>-23994 ( 23968) [007] d..2 24573.009318: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
40117<...>-23993 ( 23968) [002] d..2 24573.009336: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=000
40118<...>-23993 ( 23968) [002] d..3 24573.009356: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=001
40119           <...>-13190 (-----) [001] d..2 24573.009366: sched_switch: prev_comm=id.nn.benchmark prev_pid=13190 prev_prio=110 prev_state=R ==> next_comm=statsd.writer next_pid=1044 next_prio=120
40120<...>-23993 ( 23968) [002] d..1 24573.009419: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=007
40121 id.nn.benchmark-13156 (13131) [007] dnh1 24573.009433: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=007
40122 id.nn.benchmark-13156 (13131) [007] d..2 24573.009435: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
40123<...>-23993 ( 23968) [002] d..2 24573.009456: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
40124<...>-23994 ( 23968) [007] d..3 24573.009460: sched_waking: comm=android.bg pid=23992 prio=130 target_cpu=000
40125<...>-23994 ( 23968) [007] d..3 24573.009481: sched_waking: comm=android.fg pid=24001 prio=120 target_cpu=006
40126<...>-1044 ( 887) [001] d.h1 24573.009482: sched_wakeup: comm=android.bg pid=23992 prio=130 target_cpu=001
40127<...>-23994 ( 23968) [007] d..4 24573.009492: sched_wakeup: comm=android.fg pid=24001 prio=120 target_cpu=006
40128           <...>-13157 (-----) [006] d..2 24573.009498: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=android.fg next_pid=24001 next_prio=120
40129<...>-23994 ( 23968) [007] d..3 24573.009506: sched_waking: comm=tworkPolicy.uid pid=24082 prio=118 target_cpu=006
40130<...>-23994 ( 23968) [007] d..4 24573.009514: sched_wakeup: comm=tworkPolicy.uid pid=24082 prio=118 target_cpu=006
40131<...>-1044 ( 887) [001] d..2 24573.009520: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=android.bg next_pid=23992 next_prio=130
40132      android.fg-24001 (23968) [006] d..2 24573.009527: sched_switch: prev_comm=android.fg prev_pid=24001 prev_prio=120 prev_state=S ==> next_comm=tworkPolicy.uid next_pid=24082 next_prio=118
40133<...>-23994 ( 23968) [007] .... 24573.009542: binder_transaction: transaction=1669660 dest_node=1279661 dest_proc=24119 dest_thread=0 reply=0 flags=0x11 code=0x4
40134<...>-23994 ( 23968) [007] d..4 24573.009546: sched_waking: comm=Binder:24119_3 pid=24159 prio=120 target_cpu=001
40135     logd.writer-563   (  555) [002] d..2 24573.009558: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
40136<...>-23992 ( 23968) [001] d.h1 24573.009565: sched_wakeup: comm=Binder:24119_3 pid=24159 prio=120 target_cpu=001
40137<...>-23994 ( 23968) [007] d..3 24573.009569: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=001
40138 id.nn.benchmark-13159 (13131) [002] d.h4 24573.009592: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
40139 tworkPolicy.uid-24082 (23968) [006] d..2 24573.009593: sched_switch: prev_comm=tworkPolicy.uid prev_pid=24082 prev_prio=118 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
40140<...>-23992 ( 23968) [001] d.h1 24573.009604: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=001
40141 id.nn.benchmark-13159 (13131) [002] d.h4 24573.009604: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
40142 id.nn.benchmark-13158 (13131) [004] dnh1 24573.009607: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
40143 id.nn.benchmark-13158 (13131) [004] d..2 24573.009610: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
40144         sugov:4-560   (  560) [004] d..2 24573.009612: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
40145 id.nn.benchmark-13159 (13131) [002] d.h5 24573.009618: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
40146<...>-23994 ( 23968) [007] d..2 24573.009622: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
40147<...>-23992 ( 23968) [001] d..2 24573.009625: sched_switch: prev_comm=android.bg prev_pid=23992 prev_prio=130 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
40148         sugov:0-559   (  559) [001] d..2 24573.009634: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:24119_3 next_pid=24159 next_prio=120
40149  Binder:24119_3-24159 (24119) [001] .... 24573.009641: binder_transaction_received: transaction=1669660
40150  Binder:24119_3-24159 (24119) [001] d..2 24573.009818: sched_switch: prev_comm=Binder:24119_3 prev_pid=24159 prev_prio=120 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
40151<...>-23968 ( 23968) [001] d..2 24573.009898: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=android.bg next_pid=23992 next_prio=130
40152 id.nn.benchmark-13160 (13131) [005] d.s2 24573.010888: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
40153<...>-23992 ( 23968) [001] dns1 24573.010901: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
40154 id.nn.benchmark-13160 (13131) [005] d.s2 24573.010903: sched_waking: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
40155 id.nn.benchmark-13160 (13131) [005] dns3 24573.010907: sched_wakeup: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
40156 id.nn.benchmark-13160 (13131) [005] d..2 24573.010911: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/5:0 next_pid=24254 next_prio=120
40157<...>-23992 ( 23968) [001] dns2 24573.010912: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
40158<...>-23992 ( 23968) [001] dnH2 24573.010918: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
40159     kworker/5:0-24254 (24254) [005] d..2 24573.010922: sched_switch: prev_comm=kworker/5:0 prev_pid=24254 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
40160<...>-23992 ( 23968) [001] d..2 24573.010924: sched_switch: prev_comm=android.bg prev_pid=23992 prev_prio=130 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
40161     rcu_preempt-7     (    7) [001] d..2 24573.010937: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
40162  kworker/u16:15-18488 (18488) [001] d..2 24573.011127: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13190 next_prio=110
40163           <...>-13190 (-----) [001] ...1 24573.011148: tracing_mark_write: E|13131
40164           <...>-13190 (-----) [001] ...1 24573.011153: tracing_mark_write: E|13131
40165 id.nn.benchmark-13155 (13131) [003] d.s2 24573.011160: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
40166 id.nn.benchmark-13155 (13131) [003] d.s3 24573.011169: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
40167 id.nn.benchmark-13155 (13131) [003] d.s3 24573.011175: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
40168           <...>-13190 (-----) [001] d..2 24573.011185: sched_switch: prev_comm=id.nn.benchmark prev_pid=13190 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
40169  kworker/u16:15-18488 (18488) [001] .... 24573.011297: clk_set_rate: l3_cluster1_vote_clk 1478400000
40170  kworker/u16:15-18488 (18488) [001] .... 24573.011304: clk_set_rate: l3_clk 1478400000
40171  kworker/u16:15-18488 (18488) [001] d..2 24573.011422: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13190 next_prio=110
40172           <...>-13190 (-----) [001] d..2 24573.011463: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
40173           <...>-13190 (-----) [001] d..3 24573.011474: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
40174           <...>-13190 (-----) [001] ...1 24573.011496: tracing_mark_write: E|13131
40175           <...>-13190 (-----) [001] d..1 24573.011503: sched_waking: comm=id.nn.benchmark pid=13189 prio=110 target_cpu=001
40176           <...>-13190 (-----) [001] dn.2 24573.011527: sched_wakeup: comm=id.nn.benchmark pid=13189 prio=110 target_cpu=001
40177           <...>-13190 (-----) [001] d..2 24573.011532: sched_switch: prev_comm=id.nn.benchmark prev_pid=13190 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13189 next_prio=110
40178           <...>-13189 (-----) [001] d..2 24573.011548: sched_switch: prev_comm=id.nn.benchmark prev_pid=13189 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13190 next_prio=110
40179           <...>-13190 (-----) [001] ...1 24573.011568: tracing_mark_write: E|13131
40180           <...>-13190 (-----) [001] d..3 24573.011837: sched_pi_setprio: comm=android.bg pid=23992 oldprio=130 newprio=110
40181           <...>-13190 (-----) [001] d..2 24573.011851: sched_switch: prev_comm=id.nn.benchmark prev_pid=13190 prev_prio=110 prev_state=D ==> next_comm=android.bg next_pid=23992 next_prio=110
40182<...>-23992 ( 23968) [001] d..1 24573.012181: sched_waking: comm=id.nn.benchmark pid=13190 prio=110 target_cpu=001
40183<...>-23992 ( 23968) [001] d..2 24573.012201: sched_blocked_reason: pid=13190 iowait=0 caller=process_notifier+0x240/0x254
40184<...>-23992 ( 23968) [001] dn.2 24573.012204: sched_wakeup: comm=id.nn.benchmark pid=13190 prio=110 target_cpu=001
40185<...>-23992 ( 23968) [001] d..2 24573.012209: sched_switch: prev_comm=android.bg prev_pid=23992 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13190 next_prio=110
40186           <...>-13190 (-----) [001] d..1 24573.012230: sched_waking: comm=id.nn.benchmark pid=13189 prio=110 target_cpu=001
40187           <...>-13190 (-----) [001] d..2 24573.012247: sched_wakeup: comm=id.nn.benchmark pid=13189 prio=110 target_cpu=001
40188           <...>-13190 (-----) [001] d..2 24573.012322: sched_switch: prev_comm=id.nn.benchmark prev_pid=13190 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13189 next_prio=110
40189           <...>-13189 (-----) [001] d..1 24573.012452: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
40190           <...>-13189 (-----) [001] d..2 24573.012477: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
40191           <...>-13189 (-----) [001] d..2 24573.012576: sched_switch: prev_comm=id.nn.benchmark prev_pid=13189 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
40192           <...>-13131 (-----) [001] ...1 24573.012605: tracing_mark_write: E|13131
40193           <...>-13131 (-----) [001] ...1 24573.012611: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
40194           <...>-13131 (-----) [001] ...1 24573.012618: tracing_mark_write: E|13131
40195           <...>-13131 (-----) [001] ...1 24573.012622: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
40196           <...>-13131 (-----) [001] ...1 24573.012627: tracing_mark_write: E|13131
40197           <...>-13131 (-----) [001] ...1 24573.012943: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
40198           <...>-13131 (-----) [001] ...1 24573.012980: tracing_mark_write: E|13131
40199           <...>-13131 (-----) [001] ...1 24573.012985: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
40200           <...>-13131 (-----) [001] ...1 24573.012991: tracing_mark_write: E|13131
40201           <...>-13131 (-----) [001] ...1 24573.012995: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
40202           <...>-13131 (-----) [001] ...1 24573.013000: tracing_mark_write: E|13131
40203           <...>-13131 (-----) [001] ...1 24573.013003: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
40204 id.nn.benchmark-13158 (13131) [004] d..3 24573.013007: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
40205 id.nn.benchmark-13158 (13131) [004] d..2 24573.013014: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
40206           <...>-13154 (-----) [000] dnh1 24573.013018: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
40207          <idle>-0     (-----) [004] d..1 24573.013020: cpu_idle: state=0 cpu_id=4
40208           <...>-13154 (-----) [000] d..2 24573.013024: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
40209 id.nn.benchmark-13160 (13131) [005] d..2 24573.013041: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
40210          <idle>-0     (-----) [005] d..1 24573.013044: cpu_idle: state=2 cpu_id=5
40211          <idle>-0     (-----) [004] .n.1 24573.013048: cpu_idle: state=4294967295 cpu_id=4
40212          <idle>-0     (-----) [004] d..2 24573.013071: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
40213     migration/0-13    (   13) [000] d.h3 24573.013072: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
40214     migration/0-13    (   13) [000] d.h3 24573.013084: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
40215     migration/0-13    (   13) [000] d.h4 24573.013093: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
40216     migration/0-13    (   13) [000] d..2 24573.013099: 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
40217           <...>-13157 (-----) [006] d..2 24573.013103: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
40218          <idle>-0     (-----) [006] d..1 24573.013108: cpu_idle: state=0 cpu_id=6
40219         sugov:0-559   (  559) [000] d..2 24573.013118: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
40220          <idle>-0     (-----) [006] .n.1 24573.013135: cpu_idle: state=4294967295 cpu_id=6
40221           <...>-13131 (-----) [001] ...1 24573.013138: tracing_mark_write: E|13131
40222          <idle>-0     (-----) [006] d..2 24573.013138: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13191 next_prio=110
40223           <...>-13131 (-----) [001] ...1 24573.013142: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
40224           <...>-13131 (-----) [001] d..2 24573.013152: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=android.bg next_pid=23992 next_prio=110
40225<...>-23992 ( 23968) [001] d..2 24573.013155: sched_pi_setprio: comm=android.bg pid=23992 oldprio=110 newprio=130
40226<...>-23992 ( 23968) [001] d..2 24573.013255: sched_switch: prev_comm=android.bg prev_pid=23992 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40227          <idle>-0     (-----) [001] d..1 24573.013268: cpu_idle: state=0 cpu_id=1
40228 id.nn.benchmark-13156 (13131) [007] d..3 24573.013299: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
40229 id.nn.benchmark-13156 (13131) [007] d..2 24573.013306: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
40230          <idle>-0     (-----) [001] .n.1 24573.013308: cpu_idle: state=4294967295 cpu_id=1
40231 id.nn.benchmark-13159 (13131) [002] dnh1 24573.013309: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
40232          <idle>-0     (-----) [007] d..1 24573.013313: cpu_idle: state=0 cpu_id=7
40233 id.nn.benchmark-13159 (13131) [002] d..2 24573.013314: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
40234          <idle>-0     (-----) [001] d..2 24573.013315: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13192 next_prio=110
40235          <idle>-0     (-----) [005] dnh2 24573.013324: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
40236          <idle>-0     (-----) [005] .n.1 24573.013327: cpu_idle: state=4294967295 cpu_id=5
40237           <...>-13191 (-----) [006] d..2 24573.013328: sched_switch: prev_comm=id.nn.benchmark prev_pid=13191 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
40238          <idle>-0     (-----) [005] d..2 24573.013331: 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
40239           <...>-13192 (-----) [001] ...1 24573.013344: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
40240     migration/2-25    (   25) [002] d..2 24573.013348: 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
40241           <...>-13192 (-----) [001] ...1 24573.013349: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
40242         sugov:4-560   (  560) [005] d..3 24573.013349: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
40243         sugov:4-560   (  560) [005] d..2 24573.013356: 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
40244          <idle>-0     (-----) [002] d..1 24573.013359: cpu_idle: state=0 cpu_id=2
40245 id.nn.benchmark-13155 (13131) [003] dnh1 24573.013359: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
40246          <idle>-0     (-----) [005] d..1 24573.013360: cpu_idle: state=2 cpu_id=5
40247 id.nn.benchmark-13155 (13131) [003] d..2 24573.013364: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
40248           <...>-13192 (-----) [001] d..2 24573.013410: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
40249     logd.writer-563   (  555) [000] d..2 24573.013414: 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
40250<...>-33 ( 33) [003] d..2 24573.013415: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
40251          <idle>-0     (-----) [003] d..1 24573.013424: cpu_idle: state=0 cpu_id=3
40252          <idle>-0     (-----) [000] d..1 24573.013426: cpu_idle: state=0 cpu_id=0
40253           <...>-13192 (-----) [001] d..3 24573.013428: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
40254           <...>-13192 (-----) [001] ...1 24573.013498: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
40255           <...>-13192 (-----) [001] ...1 24573.013505: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
40256          <idle>-0     (-----) [005] .n.1 24573.013586: cpu_idle: state=4294967295 cpu_id=5
40257          <idle>-0     (-----) [005] d..2 24573.013592: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
40258          <idle>-0     (-----) [002] .n.1 24573.014261: cpu_idle: state=4294967295 cpu_id=2
40259          <idle>-0     (-----) [002] d..2 24573.014268: 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
40260          <idle>-0     (-----) [000] ...1 24573.014272: cpu_idle: state=4294967295 cpu_id=0
40261          <idle>-0     (-----) [000] d..1 24573.014275: cpu_idle: state=0 cpu_id=0
40262          <idle>-0     (-----) [007] ...1 24573.014322: cpu_idle: state=4294967295 cpu_id=7
40263          <idle>-0     (-----) [007] d..1 24573.014323: cpu_idle: state=2 cpu_id=7
40264     logd.writer-563   (  555) [002] d..2 24573.014330: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
40265     logd.writer-563   (  555) [002] d..3 24573.014348: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
40266           <...>-13192 (-----) [001] d..2 24573.014358: sched_switch: prev_comm=id.nn.benchmark prev_pid=13192 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
40267         rcuop/2-29    (   29) [001] d..2 24573.014370: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13192 next_prio=110
40268     logd.writer-563   (  555) [002] d..2 24573.014413: 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
40269          <idle>-0     (-----) [002] d..1 24573.014423: cpu_idle: state=0 cpu_id=2
40270           <...>-13192 (-----) [001] d..1 24573.015214: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=007
40271           <...>-13192 (-----) [001] d..1 24573.015226: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=006
40272           <...>-13192 (-----) [001] d..1 24573.015238: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
40273           <...>-13192 (-----) [001] d..1 24573.015249: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=005
40274          <idle>-0     (-----) [007] dnh2 24573.015365: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=007
40275          <idle>-0     (-----) [007] dnh2 24573.015366: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=007
40276          <idle>-0     (-----) [007] dnh2 24573.015367: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=007
40277          <idle>-0     (-----) [007] dnh2 24573.015368: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=007
40278          <idle>-0     (-----) [007] .n.1 24573.015371: cpu_idle: state=4294967295 cpu_id=7
40279          <idle>-0     (-----) [007] d..2 24573.015376: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
40280          <idle>-0     (-----) [002] ...1 24573.015661: cpu_idle: state=4294967295 cpu_id=2
40281          <idle>-0     (-----) [002] d..1 24573.015664: cpu_idle: state=2 cpu_id=2
40282          <idle>-0     (-----) [000] d.h5 24573.016256: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
40283          <idle>-0     (-----) [000] dnh6 24573.016271: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
40284          <idle>-0     (-----) [000] dnh5 24573.016276: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
40285          <idle>-0     (-----) [000] dnh6 24573.016290: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
40286          <idle>-0     (-----) [003] .n.1 24573.016295: cpu_idle: state=4294967295 cpu_id=3
40287          <idle>-0     (-----) [000] .n.1 24573.016301: cpu_idle: state=4294967295 cpu_id=0
40288          <idle>-0     (-----) [003] d..2 24573.016302: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
40289          <idle>-0     (-----) [000] d..2 24573.016308: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
40290  crtc_event:111-254   (  254) [000] d..2 24573.016348: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
40291 id.nn.benchmark-13156 (13131) [000] d.h4 24573.016378: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
40292 id.nn.benchmark-13156 (13131) [000] d.h4 24573.016385: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
40293 id.nn.benchmark-13155 (13131) [005] dnh1 24573.016389: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
40294 id.nn.benchmark-13155 (13131) [005] d..2 24573.016392: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
40295 id.nn.benchmark-13156 (13131) [000] d.h5 24573.016396: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
40296         sugov:4-560   (  560) [005] d..2 24573.016397: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
40297 crtc_commit:111-253   (  253) [003] d..2 24573.016452: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
40298          <idle>-0     (-----) [002] .n.1 24573.016495: cpu_idle: state=4294967295 cpu_id=2
40299          <idle>-0     (-----) [002] d..2 24573.016504: 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
40300         sugov:0-559   (  559) [002] d..2 24573.016533: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
40301           <...>-13192 (-----) [001] ...1 24573.016884: tracing_mark_write: E|13131
40302           <...>-13192 (-----) [001] ...1 24573.016888: tracing_mark_write: E|13131
40303           <...>-13192 (-----) [001] ...1 24573.016903: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
40304           <...>-13192 (-----) [001] ...1 24573.016908: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
40305           <...>-13154 (-----) [004] d.s2 24573.017556: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
40306           <...>-13157 (-----) [007] d.s2 24573.017558: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
40307 id.nn.benchmark-13158 (13131) [003] d.s2 24573.017585: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
40308           <...>-13192 (-----) [001] dnH1 24573.017589: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
40309 id.nn.benchmark-13155 (13131) [005] d.H2 24573.017592: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
40310           <...>-13192 (-----) [001] dnH1 24573.017592: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
40311 id.nn.benchmark-13158 (13131) [003] d.s3 24573.017600: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
40312 id.nn.benchmark-13155 (13131) [005] d.H3 24573.017601: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
40313 id.nn.benchmark-13155 (13131) [005] d.H2 24573.017602: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
40314           <...>-13192 (-----) [001] d..2 24573.017606: sched_switch: prev_comm=id.nn.benchmark prev_pid=13192 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
40315 id.nn.benchmark-13159 (13131) [006] d..2 24573.017608: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
40316         sugov:4-560   (  560) [006] d..2 24573.017612: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
40317 id.nn.benchmark-13160 (13131) [002] dnh1 24573.017614: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
40318 id.nn.benchmark-13160 (13131) [002] d..2 24573.017620: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
40319  crtc_event:111-254   (  254) [001] d..2 24573.017621: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
40320     rcu_preempt-7     (    7) [001] d..2 24573.017627: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
40321         sugov:0-559   (  559) [002] d..2 24573.017628: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
40322     rcu_preempt-7     (    7) [001] d..3 24573.017640: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
40323     rcu_preempt-7     (    7) [001] d..2 24573.017650: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
40324  kworker/u16:15-18488 (18488) [001] d..2 24573.017747: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
40325         rcuop/0-10    (   10) [001] d..2 24573.017752: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
40326         rcuop/0-10    (   10) [001] d..3 24573.017763: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
40327         rcuop/0-10    (   10) [001] d..2 24573.017776: 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
40328         rcuop/1-21    (   21) [001] d..2 24573.017810: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13192 next_prio=110
40329           <...>-13192 (-----) [001] ...1 24573.017877: tracing_mark_write: E|13131
40330           <...>-13192 (-----) [001] ...1 24573.017881: tracing_mark_write: E|13131
40331           <...>-13192 (-----) [001] ...1 24573.017897: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
40332           <...>-13192 (-----) [001] ...1 24573.017901: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
40333           <...>-13192 (-----) [001] ...1 24573.018241: tracing_mark_write: E|13131
40334           <...>-13192 (-----) [001] ...1 24573.018245: tracing_mark_write: E|13131
40335           <...>-13192 (-----) [001] ...1 24573.018257: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
40336           <...>-13192 (-----) [001] ...1 24573.018262: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
40337           <...>-13192 (-----) [001] ...1 24573.018510: tracing_mark_write: E|13131
40338           <...>-13192 (-----) [001] ...1 24573.018513: tracing_mark_write: E|13131
40339           <...>-13192 (-----) [001] ...1 24573.018544: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
40340           <...>-13192 (-----) [001] ...1 24573.018548: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
40341 id.nn.benchmark-13156 (13131) [000] d.h4 24573.018594: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
40342 id.nn.benchmark-13156 (13131) [000] d.h5 24573.018610: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
40343           <...>-13192 (-----) [001] d..2 24573.018619: sched_switch: prev_comm=id.nn.benchmark prev_pid=13192 prev_prio=110 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
40344 crtc_commit:111-253   (  253) [001] d..2 24573.018783: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13192 next_prio=110
40345 id.nn.benchmark-13156 (13131) [000] d.h4 24573.018892: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
40346 id.nn.benchmark-13156 (13131) [000] d.h5 24573.018900: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
40347           <...>-13192 (-----) [001] d..2 24573.018909: sched_switch: prev_comm=id.nn.benchmark prev_pid=13192 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
40348  crtc_event:111-254   (  254) [001] d..2 24573.018921: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13192 next_prio=110
40349           <...>-13192 (-----) [001] ...1 24573.019160: tracing_mark_write: E|13131
40350           <...>-13192 (-----) [001] ...1 24573.019164: tracing_mark_write: E|13131
40351           <...>-13192 (-----) [001] ...1 24573.019174: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
40352           <...>-13192 (-----) [001] ...1 24573.019178: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
40353           <...>-13192 (-----) [001] ...1 24573.019582: tracing_mark_write: E|13131
40354           <...>-13192 (-----) [001] ...1 24573.019586: tracing_mark_write: E|13131
40355           <...>-13192 (-----) [001] ...1 24573.019604: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
40356           <...>-13192 (-----) [001] ...1 24573.019608: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
40357 id.nn.benchmark-13155 (13131) [005] d.h1 24573.019767: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=005
40358           <...>-13192 (-----) [001] dnh1 24573.019787: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
40359           <...>-13192 (-----) [001] d..2 24573.019794: sched_switch: prev_comm=id.nn.benchmark prev_pid=13192 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
40360 id.nn.benchmark-13155 (13131) [005] d.h2 24573.019813: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
40361 id.nn.benchmark-13155 (13131) [005] d.h3 24573.019818: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
40362 id.nn.benchmark-13155 (13131) [005] d.h2 24573.019819: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
40363        DispSync-23904 (23896) [001] d..1 24573.019822: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
40364 id.nn.benchmark-13159 (13131) [006] d..2 24573.019825: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
40365         sugov:4-560   (  560) [006] d..2 24573.019828: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
40366 id.nn.benchmark-13160 (13131) [002] dnh1 24573.019830: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
40367 id.nn.benchmark-13160 (13131) [002] d..2 24573.019840: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
40368        DispSync-23904 (23896) [001] d..2 24573.019841: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
40369         sugov:0-559   (  559) [002] d..2 24573.019847: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
40370 id.nn.benchmark-13156 (13131) [000] d..2 24573.019851: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
40371        DispSync-23904 (23896) [001] d..2 24573.019860: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13192 next_prio=110
40372           <...>-13192 (-----) [001] ...1 24573.019882: tracing_mark_write: E|13131
40373           <...>-13192 (-----) [001] ...1 24573.019886: tracing_mark_write: E|13131
40374   sfEventThread-23906 (23896) [000] d..3 24573.019896: sched_waking: comm=android.anim.lf pid=24042 prio=116 target_cpu=005
40375           <...>-13192 (-----) [001] ...1 24573.019899: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
40376           <...>-13192 (-----) [001] ...1 24573.019902: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
40377 id.nn.benchmark-13155 (13131) [005] dnh1 24573.019924: sched_wakeup: comm=android.anim.lf pid=24042 prio=116 target_cpu=005
40378 id.nn.benchmark-13155 (13131) [005] d..2 24573.019927: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=android.anim.lf next_pid=24042 next_prio=116
40379   sfEventThread-23906 (23896) [000] d..3 24573.019931: sched_waking: comm=android.anim pid=24041 prio=116 target_cpu=000
40380 id.nn.benchmark-13159 (13131) [006] dnh1 24573.019953: sched_wakeup: comm=android.anim pid=24041 prio=116 target_cpu=006
40381 id.nn.benchmark-13159 (13131) [006] d..2 24573.019974: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=116
40382   sfEventThread-23906 (23896) [000] d..3 24573.019983: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
40383   sfEventThread-23906 (23896) [000] d..4 24573.019998: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
40384           <...>-13192 (-----) [001] d..2 24573.020008: sched_switch: prev_comm=id.nn.benchmark prev_pid=13192 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
40385   sfEventThread-23906 (23896) [000] d..2 24573.020012: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
40386<...>-24042 ( 23968) [005] d..2 24573.020022: sched_switch: prev_comm=android.anim.lf prev_pid=24042 prev_prio=116 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
40387<...>-24041 ( 23968) [006] .... 24573.020065: binder_transaction: transaction=1669661 dest_node=1271137 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
40388<...>-24041 ( 23968) [006] d..4 24573.020072: sched_waking: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=002
40389<...>-24041 ( 23968) [006] d..5 24573.020088: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=007
40390           <...>-13157 (-----) [007] d..2 24573.020106: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
40391  Binder:23896_3-23986 (23896) [007] .... 24573.020110: binder_transaction_received: transaction=1669661
40392  Binder:23896_3-23986 (23896) [007] d..1 24573.020127: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
40393 id.nn.benchmark-13156 (13131) [000] dnh1 24573.020139: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
40394  Binder:23896_3-23986 (23896) [007] d..2 24573.020144: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
40395 id.nn.benchmark-13156 (13131) [000] d..2 24573.020145: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
40396   sfEventThread-23906 (23896) [000] d..2 24573.020164: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
40397<...>-24041 ( 23968) [006] .... 24573.020347: binder_transaction: transaction=1669662 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
40398<...>-24041 ( 23968) [006] ...2 24573.020359: binder_set_priority: proc=23896 thread=23986 old=120 => new=116 desired=116
40399<...>-24041 ( 23968) [006] d..4 24573.020361: sched_waking: comm=Binder:23896_3 pid=23986 prio=116 target_cpu=007
40400<...>-24041 ( 23968) [006] d..5 24573.020369: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=116 target_cpu=007
40401<...>-24041 ( 23968) [006] d..2 24573.020374: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
40402           <...>-13157 (-----) [007] d..2 24573.020375: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=116
40403  Binder:23896_3-23986 (23896) [007] .... 24573.020377: binder_transaction_received: transaction=1669662
40404  Binder:23896_3-23986 (23896) [007] d..2 24573.020402: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=116 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
40405  surfaceflinger-23896 (23896) [001] d..1 24573.020449: sched_waking: comm=Binder:23896_3 pid=23986 prio=116 target_cpu=007
40406           <...>-13157 (-----) [007] dnh1 24573.020472: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=116 target_cpu=007
40407           <...>-13157 (-----) [007] d..2 24573.020474: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=116
40408  Binder:23896_3-23986 (23896) [007] .... 24573.020486: binder_transaction: transaction=1669663 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
40409  Binder:23896_3-23986 (23896) [007] d..2 24573.020489: sched_waking: comm=android.anim pid=24041 prio=116 target_cpu=006
40410  Binder:23896_3-23986 (23896) [007] d..3 24573.020497: sched_wakeup: comm=android.anim pid=24041 prio=116 target_cpu=006
40411  Binder:23896_3-23986 (23896) [007] .... 24573.020498: binder_set_priority: proc=23896 thread=23986 old=116 => new=120 desired=120
40412 id.nn.benchmark-13159 (13131) [006] d..2 24573.020503: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=116
40413<...>-24041 ( 23968) [006] .... 24573.020505: binder_transaction_received: transaction=1669663
40414  Binder:23896_3-23986 (23896) [007] d..2 24573.020511: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
40415<...>-24041 ( 23968) [006] d..1 24573.020531: sched_waking: comm=TaskSnapshotPer pid=24113 prio=130 target_cpu=001
40416  surfaceflinger-23896 (23896) [001] d.h1 24573.020547: sched_wakeup: comm=TaskSnapshotPer pid=24113 prio=130 target_cpu=001
40417  surfaceflinger-23896 (23896) [001] d..1 24573.020561: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
40418  surfaceflinger-23896 (23896) [001] d..2 24573.020571: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
40419 id.nn.benchmark-13156 (13131) [000] d..2 24573.020578: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
40420   sfEventThread-23906 (23896) [000] d..2 24573.020589: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
40421<...>-24041 ( 23968) [006] .... 24573.020696: binder_transaction: transaction=1669664 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
40422<...>-24041 ( 23968) [006] d..4 24573.020701: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=003
40423<...>-24041 ( 23968) [006] d..5 24573.020716: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
40424           <...>-13157 (-----) [007] d..2 24573.020736: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
40425<...>-24041 ( 23968) [006] d.h5 24573.020736: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
40426<...>-24041 ( 23968) [006] d.h6 24573.020744: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
40427<...>-24041 ( 23968) [006] d.h5 24573.020745: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
40428 id.nn.benchmark-13155 (13131) [005] d..2 24573.020751: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
40429<...>-24376 ( 24151) [007] .... 24573.020751: binder_transaction_received: transaction=1669664
40430 id.nn.benchmark-13160 (13131) [002] dnh1 24573.020755: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
40431         sugov:4-560   (  560) [005] d..2 24573.020755: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
40432 id.nn.benchmark-13160 (13131) [002] d..2 24573.020759: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
40433         sugov:0-559   (  559) [002] d..2 24573.020765: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
40434<...>-24041 ( 23968) [006] d..3 24573.020788: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=007
40435<...>-24041 ( 23968) [006] d..4 24573.020795: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=007
40436  surfaceflinger-23896 (23896) [001] d.h1 24573.020808: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
40437 id.nn.benchmark-13155 (13131) [005] dnh1 24573.020828: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=005
40438 id.nn.benchmark-13155 (13131) [005] d..2 24573.020849: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
40439<...>-24376 ( 24151) [007] d..2 24573.020851: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=23994 next_prio=118
40440        DispSync-23904 (23896) [005] d..1 24573.020855: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
40441        DispSync-23904 (23896) [005] d..2 24573.020867: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
40442 id.nn.benchmark-13158 (13131) [003] dnh1 24573.020868: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
40443 id.nn.benchmark-13158 (13131) [003] d..2 24573.020875: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
40444           <...>-13154 (-----) [004] d.s2 24573.020891: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
40445<...>-23994 ( 23968) [007] d..3 24573.020903: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=001
40446<...>-24041 ( 23968) [006] .... 24573.020903: binder_transaction: transaction=1669665 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
40447  surfaceflinger-23896 (23896) [001] d.h1 24573.020905: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
40448<...>-24041 ( 23968) [006] ...2 24573.020905: binder_set_priority: proc=23896 thread=23986 old=120 => new=116 desired=116
40449<...>-24041 ( 23968) [006] d..4 24573.020906: sched_waking: comm=Binder:23896_3 pid=23986 prio=116 target_cpu=007
40450<...>-24041 ( 23968) [006] d..5 24573.020915: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=116 target_cpu=007
40451<...>-24041 ( 23968) [006] d..2 24573.020919: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
40452  surfaceflinger-23896 (23896) [001] d.h1 24573.020924: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=001
40453<...>-23994 ( 23968) [007] d..2 24573.020932: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=116
40454  Binder:23896_3-23986 (23896) [007] .... 24573.020935: binder_transaction_received: transaction=1669665
40455  appEventThread-23905 (23896) [003] d..3 24573.020936: sched_waking: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=001
40456  Binder:23896_3-23986 (23896) [007] .... 24573.020947: binder_transaction: transaction=1669666 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
40457  Binder:23896_3-23986 (23896) [007] d..2 24573.020949: sched_waking: comm=android.anim pid=24041 prio=116 target_cpu=006
40458  Binder:23896_3-23986 (23896) [007] d..3 24573.020957: sched_wakeup: comm=android.anim pid=24041 prio=116 target_cpu=006
40459  Binder:23896_3-23986 (23896) [007] .... 24573.020958: binder_set_priority: proc=23896 thread=23986 old=116 => new=120 desired=120
40460  appEventThread-23905 (23896) [003] d..4 24573.020962: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=001
40461 id.nn.benchmark-13159 (13131) [006] d..2 24573.020964: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=116
40462<...>-24041 ( 23968) [006] .... 24573.020966: binder_transaction_received: transaction=1669666
40463  Binder:23896_3-23986 (23896) [007] d..2 24573.020969: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
40464  appEventThread-23905 (23896) [003] d..3 24573.020974: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
40465           <...>-13157 (-----) [007] dnh1 24573.020989: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
40466           <...>-13157 (-----) [007] d..2 24573.020991: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
40467  appEventThread-23905 (23896) [003] d..2 24573.020998: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
40468<...>-24151 ( 24151) [007] .... 24573.021113: binder_transaction: transaction=1669667 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
40469<...>-24151 ( 24151) [007] d..4 24573.021115: sched_waking: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=007
40470<...>-24151 ( 24151) [007] d..5 24573.021124: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=007
40471  surfaceflinger-23896 (23896) [001] ...1 24573.021199: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
40472  surfaceflinger-23896 (23896) [001] ...1 24573.021202: tracing_mark_write: E|23896
40473<...>-24041 ( 23968) [006] d..3 24573.021206: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=002
40474<...>-24041 ( 23968) [006] dn.4 24573.021220: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
40475<...>-24041 ( 23968) [006] dnh3 24573.021240: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
40476<...>-24041 ( 23968) [006] dnh4 24573.021245: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
40477<...>-24041 ( 23968) [006] dnh3 24573.021246: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
40478  surfaceflinger-23896 (23896) [001] .... 24573.021248: binder_transaction: transaction=1669668 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
40479 id.nn.benchmark-13155 (13131) [005] d..2 24573.021251: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
40480<...>-24041 ( 23968) [006] d..2 24573.021253: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=R+ ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
40481         sugov:4-560   (  560) [005] d..2 24573.021255: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
40482 id.nn.benchmark-13160 (13131) [002] dnh1 24573.021256: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
40483 id.nn.benchmark-13160 (13131) [002] d..2 24573.021261: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
40484         sugov:0-559   (  559) [002] d..2 24573.021266: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
40485<...>-24073 ( 23968) [006] d..2 24573.021269: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=116
40486  surfaceflinger-23896 (23896) [001] ...2 24573.021269: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
40487  surfaceflinger-23896 (23896) [001] d..4 24573.021277: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
40488<...>-24041 ( 23968) [006] d..3 24573.021280: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=007
40489<...>-24041 ( 23968) [006] d..4 24573.021297: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=005
40490 id.nn.benchmark-13155 (13131) [005] dnh1 24573.021299: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=005
40491 id.nn.benchmark-13155 (13131) [005] d..2 24573.021304: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
40492  surfaceflinger-23896 (23896) [001] d..2 24573.021308: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=24113 next_prio=130
40493  HwBinder:598_3-633   (  598) [005] .... 24573.021309: binder_transaction_received: transaction=1669668
40494  HwBinder:598_3-633   (  598) [005] ...1 24573.021337: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
40495<...>-24113 ( 23968) [001] d..2 24573.021359: sched_switch: prev_comm=TaskSnapshotPer prev_pid=24113 prev_prio=130 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
40496  HwBinder:598_3-633   (  598) [005] ...1 24573.021409: tracing_mark_write: B|598|HWCSession::PresentDisplay::
40497  HwBinder:598_3-633   (  598) [005] ...1 24573.021477: tracing_mark_write: B|598|HWDeviceDRM::Commit::
40498<...>-24041 ( 23968) [006] .... 24573.021481: binder_transaction: transaction=1669669 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
40499<...>-24041 ( 23968) [006] d..4 24573.021483: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
40500  HwBinder:598_3-633   (  598) [005] ...1 24573.021487: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
40501<...>-24041 ( 23968) [006] d..5 24573.021492: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
40502<...>-24041 ( 23968) [006] d..3 24573.021523: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=007
40503<...>-24041 ( 23968) [006] d..4 24573.021532: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=006
40504<...>-24041 ( 23968) [006] .... 24573.021596: binder_transaction: transaction=1669670 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
40505<...>-24151 ( 24151) [007] d..3 24573.021596: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=003
40506<...>-24041 ( 23968) [006] ...2 24573.021599: binder_set_priority: proc=23896 thread=23903 old=120 => new=116 desired=116
40507<...>-24041 ( 23968) [006] d..4 24573.021600: sched_waking: comm=Binder:23896_2 pid=23903 prio=116 target_cpu=005
40508<...>-24041 ( 23968) [006] d..5 24573.021610: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=116 target_cpu=005
40509<...>-24041 ( 23968) [006] d..2 24573.021615: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=S ==> next_comm=android.ui next_pid=23994 next_prio=118
40510<...>-24151 ( 24151) [007] d..2 24573.021616: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
40511  kworker/u16:15-18488 (18488) [001] d.h1 24573.021618: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=001
40512  Binder:23896_3-23986 (23896) [007] .... 24573.021619: binder_transaction_received: transaction=1669667
40513  Binder:23896_3-23986 (23896) [007] d..1 24573.021628: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
40514 id.nn.benchmark-13158 (13131) [003] dnh1 24573.021638: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
40515  Binder:23896_3-23986 (23896) [007] d..2 24573.021640: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
40516<...>-24376 ( 24151) [007] .... 24573.021642: binder_transaction_received: transaction=1669669
40517 id.nn.benchmark-13158 (13131) [003] d..2 24573.021644: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
40518<...>-23994 ( 23968) [006] d..2 24573.021645: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
40519  appEventThread-23905 (23896) [003] d..2 24573.021660: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
40520<...>-24376 ( 24151) [007] d..2 24573.021684: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
40521  HwBinder:598_3-633   (  598) [005] d..2 24573.021687: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
40522  HwBinder:598_3-633   (  598) [005] d..3 24573.021702: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
40523 id.nn.benchmark-13159 (13131) [006] d..2 24573.021719: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
40524  HwBinder:598_3-633   (  598) [005] ...1 24573.021752: tracing_mark_write: E|598
40525  kworker/u16:15-18488 (18488) [001] d..2 24573.021753: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=system_server next_pid=23968 next_prio=118
40526  HwBinder:598_3-633   (  598) [005] ...1 24573.021754: tracing_mark_write: E|598
40527 id.nn.benchmark-13158 (13131) [003] d.s2 24573.021785: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
40528  HwBinder:598_3-633   (  598) [005] ...1 24573.021786: tracing_mark_write: E|598
40529 id.nn.benchmark-13158 (13131) [003] d.s3 24573.021796: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
40530 id.nn.benchmark-13158 (13131) [003] d.s3 24573.021799: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
40531  HwBinder:598_3-633   (  598) [005] ...1 24573.021809: tracing_mark_write: E|598
40532  HwBinder:598_3-633   (  598) [005] .... 24573.021816: binder_transaction: transaction=1669671 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
40533<...>-23968 ( 23968) [001] .... 24573.021822: binder_transaction: transaction=1669672 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
40534  HwBinder:598_3-633   (  598) [005] d..2 24573.021822: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
40535<...>-23968 ( 23968) [001] d..4 24573.021827: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
40536  HwBinder:598_3-633   (  598) [005] .... 24573.021829: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
40537           <...>-13157 (-----) [007] dnh1 24573.021843: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
40538<...>-23968 ( 23968) [001] dnh4 24573.021843: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
40539           <...>-13157 (-----) [007] d..2 24573.021846: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
40540<...>-24376 ( 24151) [007] .... 24573.021847: binder_transaction_received: transaction=1669672
40541<...>-23968 ( 23968) [001] d..2 24573.021850: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
40542  HwBinder:598_3-633   (  598) [005] d..2 24573.021853: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=android.display next_pid=24003 next_prio=117
40543  surfaceflinger-23896 (23896) [001] .... 24573.021855: binder_transaction_received: transaction=1669671
40544<...>-24376 ( 24151) [007] d..2 24573.021877: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
40545<...>-24003 ( 23968) [005] d..2 24573.021894: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=116
40546<...>-23903 ( 23896) [005] .... 24573.021898: binder_transaction_received: transaction=1669670
40547<...>-23903 ( 23896) [005] .... 24573.021913: binder_transaction: transaction=1669673 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
40548<...>-23903 ( 23896) [005] d..2 24573.021915: sched_waking: comm=android.anim pid=24041 prio=116 target_cpu=006
40549<...>-23903 ( 23896) [005] d..3 24573.021927: sched_wakeup: comm=android.anim pid=24041 prio=116 target_cpu=007
40550<...>-23903 ( 23896) [005] .... 24573.021928: binder_set_priority: proc=23896 thread=23903 old=116 => new=120 desired=120
40551           <...>-13157 (-----) [007] d..2 24573.021933: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=116
40552<...>-24041 ( 23968) [007] .... 24573.021935: binder_transaction_received: transaction=1669673
40553<...>-23903 ( 23896) [005] d..2 24573.021939: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
40554  surfaceflinger-23896 (23896) [001] d..1 24573.022084: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=005
40555 id.nn.benchmark-13155 (13131) [005] dnh1 24573.022098: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=005
40556 id.nn.benchmark-13155 (13131) [005] d..2 24573.022101: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
40557        DispSync-23904 (23896) [005] d..2 24573.022108: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
40558  surfaceflinger-23896 (23896) [001] d..2 24573.022109: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
40559<...>-24041 ( 23968) [007] d..3 24573.022133: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
40560<...>-24041 ( 23968) [007] d..4 24573.022140: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
40561<...>-24041 ( 23968) [007] d..1 24573.022163: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=005
40562<...>-24041 ( 23968) [007] d..2 24573.022171: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=005
40563 id.nn.benchmark-13155 (13131) [005] d..2 24573.022178: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
40564<...>-24041 ( 23968) [007] d..2 24573.022189: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
40565<...>-24003 ( 23968) [005] d..2 24573.022237: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
40566 crtc_commit:111-253   (  253) [006] d..2 24573.022292: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
40567<...>-24073 ( 23968) [006] d..2 24573.022305: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
40568 s.nexuslauncher-24827 (24827) [001] .... 24573.022880: binder_transaction: transaction=1669674 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
40569 s.nexuslauncher-24827 (24827) [001] d..4 24573.022885: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
40570 id.nn.benchmark-13155 (13131) [005] dnh1 24573.022908: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
40571 id.nn.benchmark-13155 (13131) [005] d..2 24573.022911: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
40572<...>-23903 ( 23896) [005] .... 24573.022913: binder_transaction_received: transaction=1669674
40573<...>-23903 ( 23896) [005] d..1 24573.022920: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
40574 id.nn.benchmark-13158 (13131) [003] dnh1 24573.022931: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
40575<...>-23903 ( 23896) [005] d..2 24573.022933: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
40576 id.nn.benchmark-13158 (13131) [003] d..2 24573.022937: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
40577  appEventThread-23905 (23896) [003] d..2 24573.022952: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
40578 s.nexuslauncher-24827 (24827) [001] .... 24573.023053: binder_transaction: transaction=1669675 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xa
40579 s.nexuslauncher-24827 (24827) [001] d..4 24573.023067: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
40580           <...>-13157 (-----) [007] dnh1 24573.023091: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
40581           <...>-13157 (-----) [007] d..2 24573.023095: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
40582 s.nexuslauncher-24827 (24827) [001] d..2 24573.023096: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
40583  Binder:23968_1-23981 (23968) [007] .... 24573.023098: binder_transaction_received: transaction=1669675
40584    RenderThread-24437 (24151) [001] d..2 24573.023270: clk_enable: gcc_gpu_memnoc_gfx_clk
40585  Binder:23968_1-23981 (23968) [007] .... 24573.023287: binder_transaction: transaction=1669676 dest_node=0 dest_proc=24827 dest_thread=24827 reply=1 flags=0x0 code=0x0
40586  Binder:23968_1-23981 (23968) [007] d..2 24573.023291: sched_waking: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=001
40587    RenderThread-24437 (24151) [001] d..2 24573.023299: clk_disable: gcc_gpu_memnoc_gfx_clk
40588  Binder:23968_1-23981 (23968) [007] d..3 24573.023306: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=006
40589  Binder:23968_1-23981 (23968) [007] d.h3 24573.023327: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
40590 id.nn.benchmark-13159 (13131) [006] d..2 24573.023327: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
40591 s.nexuslauncher-24827 (24827) [006] .... 24573.023329: binder_transaction_received: transaction=1669676
40592  Binder:23968_1-23981 (23968) [007] d.h4 24573.023335: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
40593  Binder:23968_1-23981 (23968) [007] d.h3 24573.023336: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
40594 s.nexuslauncher-24827 (24827) [006] d..2 24573.023343: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
40595         sugov:4-560   (  560) [006] d..2 24573.023347: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
40596    RenderThread-24437 (24151) [001] dnh1 24573.023350: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
40597  Binder:23968_1-23981 (23968) [007] d..2 24573.023357: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
40598    RenderThread-24437 (24151) [001] d..2 24573.023359: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
40599         sugov:0-559   (  559) [001] d..2 24573.023367: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
40600 s.nexuslauncher-24827 (24827) [006] d..3 24573.023418: sched_waking: comm=RenderThread pid=25194 prio=120 target_cpu=007
40601 s.nexuslauncher-24827 (24827) [006] d..4 24573.023432: sched_wakeup: comm=RenderThread pid=25194 prio=120 target_cpu=007
40602<...>-23968 ( 23968) [001] .... 24573.023434: binder_transaction: transaction=1669677 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
40603           <...>-13157 (-----) [007] d..2 24573.023438: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=120
40604<...>-23968 ( 23968) [001] d..4 24573.023439: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
40605 s.nexuslauncher-24827 (24827) [006] d..2 24573.023439: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
40606    RenderThread-25194 (24827) [007] d.h1 24573.023461: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
40607<...>-23968 ( 23968) [001] d..2 24573.023485: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
40608    RenderThread-24437 (24151) [001] d..2 24573.023540: clk_enable: gcc_gpu_memnoc_gfx_clk
40609    RenderThread-24437 (24151) [001] d..2 24573.023554: clk_disable: gcc_gpu_memnoc_gfx_clk
40610    RenderThread-25194 (24827) [007] d..1 24573.023689: sched_waking: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=006
40611    RenderThread-25194 (24827) [007] d..2 24573.023699: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=006
40612 id.nn.benchmark-13159 (13131) [006] d..2 24573.023705: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
40613    RenderThread-25194 (24827) [007] d..2 24573.023707: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=120 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
40614<...>-24376 ( 24151) [007] .... 24573.023709: binder_transaction_received: transaction=1669677
40615 s.nexuslauncher-24827 (24827) [006] d..3 24573.023711: sched_waking: comm=RenderThread pid=25194 prio=120 target_cpu=007
40616 s.nexuslauncher-24827 (24827) [006] d..4 24573.023718: sched_wakeup: comm=RenderThread pid=25194 prio=120 target_cpu=007
40617    RenderThread-24437 (24151) [001] d..2 24573.023718: clk_enable: gcc_gpu_memnoc_gfx_clk
40618 s.nexuslauncher-24827 (24827) [006] d..2 24573.023721: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
40619    RenderThread-24437 (24151) [001] d..2 24573.023731: clk_disable: gcc_gpu_memnoc_gfx_clk
40620<...>-24376 ( 24151) [007] d..2 24573.023754: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=120
40621    RenderThread-25194 (24827) [007] d..2 24573.023870: clk_enable: gcc_gpu_memnoc_gfx_clk
40622    RenderThread-25194 (24827) [007] d..2 24573.023883: clk_disable: gcc_gpu_memnoc_gfx_clk
40623    RenderThread-24437 (24151) [001] d..1 24573.024001: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
40624 id.nn.benchmark-13159 (13131) [006] dnh1 24573.024028: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
40625    RenderThread-25194 (24827) [007] d..2 24573.024030: clk_enable: gcc_gpu_memnoc_gfx_clk
40626 id.nn.benchmark-13159 (13131) [006] d..2 24573.024031: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
40627    RenderThread-25194 (24827) [007] d..2 24573.024042: clk_disable: gcc_gpu_memnoc_gfx_clk
40628    RenderThread-24437 (24151) [001] .... 24573.024065: binder_transaction: transaction=1669678 dest_node=1285651 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
40629    RenderThread-24437 (24151) [001] d..4 24573.024070: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
40630 id.nn.benchmark-13155 (13131) [005] dnh1 24573.024083: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
40631<...>-24151 ( 24151) [006] d..2 24573.024087: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
40632 id.nn.benchmark-13155 (13131) [005] d..2 24573.024087: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
40633<...>-23903 ( 23896) [005] .... 24573.024089: binder_transaction_received: transaction=1669678
40634    RenderThread-24437 (24151) [001] d..2 24573.024089: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
40635  kworker/u16:15-18488 (18488) [001] d..2 24573.024110: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13192 next_prio=110
40636<...>-23903 ( 23896) [005] .... 24573.024116: binder_transaction: transaction=1669679 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
40637<...>-23903 ( 23896) [005] d..2 24573.024121: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=001
40638           <...>-13192 (-----) [001] ...1 24573.024133: tracing_mark_write: E|13131
40639<...>-23903 ( 23896) [005] d..2 24573.024140: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
40640           <...>-13192 (-----) [001] dnh1 24573.024141: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=001
40641           <...>-13192 (-----) [001] d..2 24573.024146: sched_switch: prev_comm=id.nn.benchmark prev_pid=13192 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=24437 next_prio=120
40642    RenderThread-24437 (24151) [001] .... 24573.024151: binder_transaction_received: transaction=1669679
40643    RenderThread-25194 (24827) [007] d..2 24573.024198: clk_enable: gcc_gpu_memnoc_gfx_clk
40644    RenderThread-25194 (24827) [007] d..2 24573.024209: clk_disable: gcc_gpu_memnoc_gfx_clk
40645           <...>-13154 (-----) [004] d.s2 24573.024218: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
40646    RenderThread-24437 (24151) [001] d.H1 24573.024235: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
40647    RenderThread-24437 (24151) [001] d.s1 24573.024238: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
40648    RenderThread-24437 (24151) [001] d.s2 24573.024248: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
40649           <...>-13154 (-----) [004] d..3 24573.024397: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
40650    RenderThread-25194 (24827) [007] d..2 24573.024400: clk_enable: gcc_gpu_memnoc_gfx_clk
40651           <...>-13154 (-----) [004] d..2 24573.024404: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
40652 id.nn.benchmark-13156 (13131) [000] dnh1 24573.024408: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
40653    RenderThread-25194 (24827) [007] d..2 24573.024411: clk_disable: gcc_gpu_memnoc_gfx_clk
40654 id.nn.benchmark-13156 (13131) [000] d..2 24573.024413: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
40655          <idle>-0     (-----) [004] d..1 24573.024416: cpu_idle: state=0 cpu_id=4
40656          <idle>-0     (-----) [004] .n.1 24573.024442: cpu_idle: state=4294967295 cpu_id=4
40657          <idle>-0     (-----) [004] d..2 24573.024463: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
40658     migration/0-13    (   13) [000] d.h3 24573.024463: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
40659     migration/0-13    (   13) [000] d.h3 24573.024471: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
40660 id.nn.benchmark-13159 (13131) [006] dnh1 24573.024475: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
40661 id.nn.benchmark-13159 (13131) [006] d..2 24573.024478: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
40662     migration/0-13    (   13) [000] d.h4 24573.024481: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
40663         sugov:4-560   (  560) [006] d..2 24573.024482: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
40664     migration/0-13    (   13) [000] d..2 24573.024488: 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
40665         sugov:0-559   (  559) [000] d..2 24573.024504: 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
40666          <idle>-0     (-----) [000] d..1 24573.024519: cpu_idle: state=0 cpu_id=0
40667    RenderThread-25194 (24827) [007] d..2 24573.024584: clk_enable: gcc_gpu_memnoc_gfx_clk
40668    RenderThread-25194 (24827) [007] d..2 24573.024595: clk_disable: gcc_gpu_memnoc_gfx_clk
40669    RenderThread-25194 (24827) [007] d..2 24573.024785: clk_enable: gcc_gpu_memnoc_gfx_clk
40670    RenderThread-25194 (24827) [007] d..2 24573.024796: clk_disable: gcc_gpu_memnoc_gfx_clk
40671    RenderThread-25194 (24827) [007] d..2 24573.024977: clk_enable: gcc_gpu_memnoc_gfx_clk
40672    RenderThread-25194 (24827) [007] d..2 24573.024993: clk_disable: gcc_gpu_memnoc_gfx_clk
40673    RenderThread-24437 (24151) [001] d..2 24573.025285: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
40674    RenderThread-24437 (24151) [001] d..3 24573.025307: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
40675          <idle>-0     (-----) [000] .n.1 24573.025313: cpu_idle: state=4294967295 cpu_id=0
40676          <idle>-0     (-----) [000] d..2 24573.025319: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
40677 id.nn.benchmark-13155 (13131) [005] d..2 24573.025364: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
40678 kgsl_worker_thr-246   (  246) [000] d..2 24573.025367: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40679          <idle>-0     (-----) [000] d..1 24573.025373: cpu_idle: state=0 cpu_id=0
40680    RenderThread-24437 (24151) [001] d..2 24573.025438: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
40681    RenderThread-24437 (24151) [001] d..3 24573.025449: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
40682          <idle>-0     (-----) [000] .n.1 24573.025454: cpu_idle: state=4294967295 cpu_id=0
40683          <idle>-0     (-----) [000] d..2 24573.025459: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
40684 kgsl_worker_thr-246   (  246) [000] d..1 24573.025542: clk_enable: gpll0_out_even
40685 kgsl_worker_thr-246   (  246) [000] d..1 24573.025543: clk_enable: gcc_gpu_gpll0_div_clk_src
40686    RenderThread-24437 (24151) [001] .... 24573.025734: binder_transaction: transaction=1669680 dest_node=1285651 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
40687    RenderThread-24437 (24151) [001] d..4 24573.025742: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
40688           <...>-13157 (-----) [005] dnh1 24573.025763: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
40689           <...>-13157 (-----) [005] d..2 24573.025766: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
40690<...>-23903 ( 23896) [005] .... 24573.025768: binder_transaction_received: transaction=1669680
40691    RenderThread-24437 (24151) [001] d..2 24573.025770: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
40692     rcu_preempt-7     (    7) [001] d..2 24573.025784: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
40693<...>-23903 ( 23896) [005] .... 24573.025826: binder_transaction: transaction=1669681 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
40694<...>-23903 ( 23896) [005] d..2 24573.025828: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=001
40695  kworker/u16:15-18488 (18488) [001] d.h1 24573.025845: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=001
40696<...>-23903 ( 23896) [005] d..2 24573.025846: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
40697  kworker/u16:15-18488 (18488) [001] d..2 24573.025942: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=RenderThread next_pid=24437 next_prio=120
40698    RenderThread-24437 (24151) [001] .... 24573.025946: binder_transaction_received: transaction=1669681
40699 id.nn.benchmark-13158 (13131) [003] d.s2 24573.025968: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
40700 id.nn.benchmark-13158 (13131) [003] d.s3 24573.025983: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
40701    RenderThread-24437 (24151) [001] d.h1 24573.025984: sched_waking: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
40702 id.nn.benchmark-13158 (13131) [003] d.s3 24573.025987: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
40703    RenderThread-24437 (24151) [001] dnh2 24573.025995: sched_wakeup: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
40704    RenderThread-24437 (24151) [001] d..2 24573.026003: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=irq/80-114a000. next_pid=24617 next_prio=49
40705<...>-24617 ( 24617) [001] d..2 24573.026011: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
40706<...>-24617 ( 24617) [001] d..3 24573.026028: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
40707<...>-24617 ( 24617) [001] d..2 24573.026036: sched_switch: prev_comm=irq/80-114a000. prev_pid=24617 prev_prio=49 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
40708  kworker/u16:10-23868 (23868) [001] d..2 24573.026044: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
40709 kgsl_worker_thr-246   (  246) [000] d..1 24573.026050: clk_enable: gpu_cc_gmu_clk_src
40710  kworker/u16:15-18488 (18488) [001] d..2 24573.026052: sched_waking: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
40711  kworker/u16:15-18488 (18488) [001] dn.3 24573.026055: sched_wakeup: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
40712  kworker/u16:15-18488 (18488) [001] d..2 24573.026059: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=irq/80-114a000. next_pid=24617 next_prio=49
40713 kgsl_worker_thr-246   (  246) [000] d..1 24573.026073: clk_enable: gpu_cc_cx_gmu_clk
40714 kgsl_worker_thr-246   (  246) [000] d..1 24573.026083: clk_enable: gpu_cc_cxo_clk
40715 kgsl_worker_thr-246   (  246) [000] d..1 24573.026091: clk_enable: gcc_ddrss_gpu_axi_clk
40716 kgsl_worker_thr-246   (  246) [000] d..1 24573.026098: clk_enable: gcc_gpu_memnoc_gfx_clk
40717 kgsl_worker_thr-246   (  246) [000] d..2 24573.026144: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
40718<...>-24617 ( 24617) [001] d..2 24573.026145: sched_switch: prev_comm=irq/80-114a000. prev_pid=24617 prev_prio=49 prev_state=D ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
40719          <idle>-0     (-----) [000] d..1 24573.026150: cpu_idle: state=0 cpu_id=0
40720  kworker/u16:15-18488 (18488) [001] d..2 24573.026151: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
40721 id.nn.benchmark-13158 (13131) [003] d.s2 24573.026166: sched_waking: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
40722 id.nn.benchmark-13158 (13131) [003] d.s3 24573.026174: sched_wakeup: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
40723    RenderThread-24437 (24151) [001] d..2 24573.026180: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=irq/80-114a000. next_pid=24617 next_prio=49
40724<...>-24617 ( 24617) [001] d..2 24573.026199: sched_switch: prev_comm=irq/80-114a000. prev_pid=24617 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
40725 id.nn.benchmark-13159 (13131) [006] d..3 24573.026211: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
40726 id.nn.benchmark-13159 (13131) [006] d..2 24573.026219: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
40727 id.nn.benchmark-13160 (13131) [002] dnh1 24573.026222: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
40728 id.nn.benchmark-13160 (13131) [002] d..2 24573.026227: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
40729          <idle>-0     (-----) [006] d..1 24573.026229: cpu_idle: state=0 cpu_id=6
40730          <idle>-0     (-----) [000] d.h2 24573.026240: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
40731          <idle>-0     (-----) [000] dnh3 24573.026247: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
40732          <idle>-0     (-----) [000] .n.1 24573.026251: cpu_idle: state=4294967295 cpu_id=0
40733          <idle>-0     (-----) [006] .n.1 24573.026252: cpu_idle: state=4294967295 cpu_id=6
40734          <idle>-0     (-----) [000] d..2 24573.026275: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
40735          <idle>-0     (-----) [006] d..2 24573.026275: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
40736     migration/2-25    (   25) [002] d.h3 24573.026276: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
40737 kgsl_worker_thr-246   (  246) [000] d..2 24573.026288: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
40738     migration/2-25    (   25) [002] d.h3 24573.026289: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
40739          <idle>-0     (-----) [000] d..1 24573.026292: cpu_idle: state=0 cpu_id=0
40740    RenderThread-25194 (24827) [007] dnh2 24573.026293: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
40741    RenderThread-25194 (24827) [007] d..2 24573.026298: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
40742     migration/2-25    (   25) [002] d.h4 24573.026298: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
40743         sugov:4-560   (  560) [007] d..2 24573.026302: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=120
40744          <idle>-0     (-----) [000] .n.1 24573.026302: cpu_idle: state=4294967295 cpu_id=0
40745          <idle>-0     (-----) [000] d..2 24573.026307: 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
40746     migration/2-25    (   25) [002] d..2 24573.026312: 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
40747         sugov:0-559   (  559) [000] d..2 24573.026318: 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
40748          <idle>-0     (-----) [000] d..1 24573.026322: cpu_idle: state=0 cpu_id=0
40749          <idle>-0     (-----) [002] d..1 24573.026326: cpu_idle: state=0 cpu_id=2
40750          <idle>-0     (-----) [000] d.h2 24573.026401: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
40751          <idle>-0     (-----) [000] dnh3 24573.026406: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
40752          <idle>-0     (-----) [000] .n.1 24573.026410: cpu_idle: state=4294967295 cpu_id=0
40753          <idle>-0     (-----) [000] d..2 24573.026415: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
40754    RenderThread-24437 (24151) [001] d..1 24573.026427: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
40755    RenderThread-24437 (24151) [001] d..2 24573.026449: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
40756          <idle>-0     (-----) [002] .n.1 24573.026455: cpu_idle: state=4294967295 cpu_id=2
40757          <idle>-0     (-----) [002] d..2 24573.026477: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
40758 kgsl_worker_thr-246   (  246) [000] d..2 24573.026481: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
40759          <idle>-0     (-----) [000] d..1 24573.026486: cpu_idle: state=0 cpu_id=0
40760    RenderThread-24437 (24151) [001] .... 24573.026507: binder_transaction: transaction=1669682 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
40761    RenderThread-24437 (24151) [001] d..4 24573.026511: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
40762    RenderThread-24437 (24151) [001] d..5 24573.026529: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
40763          <idle>-0     (-----) [000] .n.1 24573.026533: cpu_idle: state=4294967295 cpu_id=0
40764          <idle>-0     (-----) [000] d..2 24573.026554: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
40765    RenderThread-24437 (24151) [001] d..2 24573.026558: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13192 next_prio=110
40766<...>-23903 ( 23896) [000] .... 24573.026558: binder_transaction_received: transaction=1669682
40767<...>-23903 ( 23896) [000] d.h1 24573.026566: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
40768<...>-23903 ( 23896) [000] dnh2 24573.026573: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
40769           <...>-13192 (-----) [001] ...1 24573.026575: tracing_mark_write: E|13131
40770<...>-23903 ( 23896) [000] d..2 24573.026579: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
40771 kgsl_worker_thr-246   (  246) [000] d..2 24573.026598: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
40772<...>-24151 ( 24151) [002] d..2 24573.026602: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
40773           <...>-13192 (-----) [001] ...1 24573.026606: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
40774          <idle>-0     (-----) [002] d..1 24573.026611: cpu_idle: state=0 cpu_id=2
40775           <...>-13192 (-----) [001] ...1 24573.026613: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
40776<...>-23903 ( 23896) [000] .... 24573.026635: binder_transaction: transaction=1669683 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
40777<...>-23903 ( 23896) [000] d..2 24573.026641: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=001
40778<...>-23903 ( 23896) [000] d..3 24573.026653: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
40779<...>-23903 ( 23896) [000] d..2 24573.026673: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
40780    RenderThread-24437 (24151) [000] .... 24573.026677: binder_transaction_received: transaction=1669683
40781    RenderThread-24437 (24151) [000] d.h1 24573.026698: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
40782    RenderThread-24437 (24151) [000] d.h2 24573.026713: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
40783          <idle>-0     (-----) [002] .n.1 24573.026719: cpu_idle: state=4294967295 cpu_id=2
40784          <idle>-0     (-----) [002] d..2 24573.026725: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
40785 kgsl_worker_thr-246   (  246) [002] d..2 24573.026739: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
40786    RenderThread-25194 (24827) [007] ...1 24573.026742: tracing_mark_write: B|24827|HIDL::IMapper::freeBuffer::passthrough
40787          <idle>-0     (-----) [002] d..1 24573.026744: cpu_idle: state=0 cpu_id=2
40788    RenderThread-25194 (24827) [007] ...1 24573.026752: tracing_mark_write: B|24827|FreeBuffer
40789    RenderThread-25194 (24827) [007] ...1 24573.026767: tracing_mark_write: E|24827
40790    RenderThread-25194 (24827) [007] ...1 24573.026768: tracing_mark_write: B|24827|FreeBuffer
40791    RenderThread-25194 (24827) [007] ...1 24573.026770: tracing_mark_write: B|24827|UnmapBuffer
40792    RenderThread-25194 (24827) [007] ...1 24573.026778: tracing_mark_write: E|24827
40793    RenderThread-25194 (24827) [007] ...1 24573.026781: tracing_mark_write: E|24827
40794    RenderThread-25194 (24827) [007] ...1 24573.026785: tracing_mark_write: E|24827
40795    RenderThread-25194 (24827) [007] ...1 24573.026788: tracing_mark_write: B|24827|HIDL::IMapper::freeBuffer::passthrough
40796    RenderThread-25194 (24827) [007] ...1 24573.026790: tracing_mark_write: B|24827|FreeBuffer
40797    RenderThread-25194 (24827) [007] ...1 24573.026794: tracing_mark_write: E|24827
40798    RenderThread-25194 (24827) [007] ...1 24573.026795: tracing_mark_write: B|24827|FreeBuffer
40799    RenderThread-25194 (24827) [007] ...1 24573.026796: tracing_mark_write: B|24827|UnmapBuffer
40800    RenderThread-25194 (24827) [007] ...1 24573.026801: tracing_mark_write: E|24827
40801    RenderThread-25194 (24827) [007] ...1 24573.026804: tracing_mark_write: E|24827
40802    RenderThread-25194 (24827) [007] ...1 24573.026806: tracing_mark_write: E|24827
40803    RenderThread-25194 (24827) [007] ...1 24573.026808: tracing_mark_write: B|24827|HIDL::IMapper::freeBuffer::passthrough
40804    RenderThread-25194 (24827) [007] ...1 24573.026810: tracing_mark_write: B|24827|FreeBuffer
40805    RenderThread-25194 (24827) [007] ...1 24573.026813: tracing_mark_write: E|24827
40806    RenderThread-25194 (24827) [007] ...1 24573.026814: tracing_mark_write: B|24827|FreeBuffer
40807    RenderThread-25194 (24827) [007] ...1 24573.026815: tracing_mark_write: B|24827|UnmapBuffer
40808    RenderThread-25194 (24827) [007] ...1 24573.026822: tracing_mark_write: E|24827
40809    RenderThread-25194 (24827) [007] ...1 24573.026824: tracing_mark_write: E|24827
40810    RenderThread-25194 (24827) [007] ...1 24573.026826: tracing_mark_write: E|24827
40811          <idle>-0     (-----) [002] d.h2 24573.026836: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
40812    RenderThread-25194 (24827) [007] .... 24573.026841: binder_transaction: transaction=1669684 dest_node=1606242 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0xa
40813          <idle>-0     (-----) [002] dnh3 24573.026843: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
40814    RenderThread-25194 (24827) [007] d..4 24573.026843: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
40815          <idle>-0     (-----) [002] .n.1 24573.026847: cpu_idle: state=4294967295 cpu_id=2
40816          <idle>-0     (-----) [002] d..2 24573.026852: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
40817    RenderThread-25194 (24827) [007] dn.5 24573.026854: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
40818    RenderThread-25194 (24827) [007] dnh5 24573.026875: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
40819    RenderThread-25194 (24827) [007] dnh6 24573.026879: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
40820    RenderThread-25194 (24827) [007] dnh5 24573.026879: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
40821 kgsl_worker_thr-246   (  246) [002] d..2 24573.026881: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
40822          <idle>-0     (-----) [002] d..1 24573.026885: cpu_idle: state=0 cpu_id=2
40823    RenderThread-25194 (24827) [007] d..2 24573.026890: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
40824         sugov:4-560   (  560) [007] d..2 24573.026894: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
40825          <idle>-0     (-----) [002] dnh2 24573.026895: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
40826<...>-23903 ( 23896) [007] .... 24573.026896: binder_transaction_received: transaction=1669684
40827          <idle>-0     (-----) [002] .n.1 24573.026898: cpu_idle: state=4294967295 cpu_id=2
40828          <idle>-0     (-----) [002] d..2 24573.026902: 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
40829         sugov:0-559   (  559) [002] d..2 24573.026913: 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
40830<...>-23903 ( 23896) [007] d..2 24573.026914: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
40831          <idle>-0     (-----) [002] d..1 24573.026917: cpu_idle: state=0 cpu_id=2
40832<...>-23903 ( 23896) [007] d..3 24573.026931: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
40833           <...>-13192 (-----) [001] ...1 24573.026936: tracing_mark_write: E|13131
40834 id.nn.benchmark-13160 (13131) [006] d..2 24573.026937: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
40835           <...>-13192 (-----) [001] ...1 24573.026940: tracing_mark_write: E|13131
40836         rcuop/6-61    (   61) [006] d..2 24573.026943: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
40837           <...>-13192 (-----) [001] ...1 24573.026953: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
40838           <...>-13192 (-----) [001] ...1 24573.026957: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
40839          <idle>-0     (-----) [002] d.h2 24573.026962: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
40840          <idle>-0     (-----) [002] dnh3 24573.026968: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
40841          <idle>-0     (-----) [002] .n.1 24573.026972: cpu_idle: state=4294967295 cpu_id=2
40842<...>-23903 ( 23896) [007] ...1 24573.026974: tracing_mark_write: B|23896|HIDL::IMapper::freeBuffer::passthrough
40843          <idle>-0     (-----) [002] d..2 24573.026976: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
40844<...>-23903 ( 23896) [007] ...1 24573.026983: tracing_mark_write: B|23896|FreeBuffer
40845 kgsl_worker_thr-246   (  246) [002] d..2 24573.026988: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
40846          <idle>-0     (-----) [002] d..1 24573.026992: cpu_idle: state=0 cpu_id=2
40847           <...>-13192 (-----) [001] ...1 24573.027006: tracing_mark_write: E|13131
40848           <...>-13192 (-----) [001] ...1 24573.027009: tracing_mark_write: E|13131
40849           <...>-13192 (-----) [001] ...1 24573.027018: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
40850           <...>-13192 (-----) [001] ...1 24573.027022: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
40851<...>-23903 ( 23896) [007] d..2 24573.027038: sched_waking: comm=system pid=105 prio=120 target_cpu=001
40852           <...>-13192 (-----) [001] ...1 24573.027040: tracing_mark_write: E|13131
40853           <...>-13192 (-----) [001] ...1 24573.027043: tracing_mark_write: E|13131
40854 id.nn.benchmark-13156 (13131) [004] d..3 24573.027046: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
40855<...>-23903 ( 23896) [007] ...1 24573.027052: tracing_mark_write: E|23896
40856 id.nn.benchmark-13156 (13131) [004] d..2 24573.027053: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
40857<...>-23903 ( 23896) [007] ...1 24573.027053: tracing_mark_write: B|23896|FreeBuffer
40858          <idle>-0     (-----) [004] d..1 24573.027056: cpu_idle: state=0 cpu_id=4
40859 id.nn.benchmark-13158 (13131) [003] dnh1 24573.027056: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
40860           <...>-13192 (-----) [001] d.h1 24573.027057: sched_wakeup: comm=system pid=105 prio=120 target_cpu=001
40861<...>-23903 ( 23896) [007] ...1 24573.027059: tracing_mark_write: E|23896
40862<...>-23903 ( 23896) [007] ...1 24573.027061: tracing_mark_write: E|23896
40863 id.nn.benchmark-13158 (13131) [003] d..2 24573.027062: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
40864           <...>-13192 (-----) [001] ...1 24573.027066: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
40865<...>-23903 ( 23896) [007] ...1 24573.027068: tracing_mark_write: B|23896|HIDL::IMapper::freeBuffer::passthrough
40866           <...>-13192 (-----) [001] ...1 24573.027069: tracing_mark_write: E|13131
40867<...>-23903 ( 23896) [007] ...1 24573.027070: tracing_mark_write: B|23896|FreeBuffer
40868           <...>-13192 (-----) [001] ...1 24573.027079: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
40869           <...>-13192 (-----) [001] ...1 24573.027083: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
40870          <idle>-0     (-----) [004] .n.1 24573.027085: cpu_idle: state=4294967295 cpu_id=4
40871          <idle>-0     (-----) [004] d..2 24573.027103: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
40872          <idle>-0     (-----) [002] d.h2 24573.027103: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
40873          <idle>-0     (-----) [002] dnh3 24573.027108: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
40874<...>-23903 ( 23896) [007] ...1 24573.027109: tracing_mark_write: E|23896
40875<...>-23903 ( 23896) [007] ...1 24573.027110: tracing_mark_write: B|23896|FreeBuffer
40876          <idle>-0     (-----) [002] .n.1 24573.027113: cpu_idle: state=4294967295 cpu_id=2
40877<...>-23903 ( 23896) [007] ...1 24573.027113: tracing_mark_write: E|23896
40878<...>-23903 ( 23896) [007] ...1 24573.027114: tracing_mark_write: E|23896
40879          <idle>-0     (-----) [002] d..2 24573.027118: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
40880<...>-33 ( 33) [003] d..2 24573.027120: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
40881<...>-23903 ( 23896) [007] d..5 24573.027131: sched_waking: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=007
40882<...>-23903 ( 23896) [007] d..6 24573.027146: sched_wakeup: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=007
40883<...>-23903 ( 23896) [007] .... 24573.027148: binder_transaction: transaction=1669685 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
40884 kgsl_worker_thr-246   (  246) [002] d..2 24573.027149: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=RenderThread next_pid=25194 next_prio=120
40885    RenderThread-25194 (24827) [002] .... 24573.027180: binder_transaction_received: transaction=1669685
40886<...>-23903 ( 23896) [007] d..2 24573.027181: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=Binder:24827_5 next_pid=5558 next_prio=120
40887    RenderThread-25194 (24827) [002] d..3 24573.027183: sched_waking: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=006
40888 id.nn.benchmark-13160 (13131) [006] dnh1 24573.027204: sched_wakeup: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=006
40889 id.nn.benchmark-13160 (13131) [006] d..2 24573.027206: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=Binder:24827_4 next_pid=25554 next_prio=120
40890<...>-25554 ( 24827) [006] d..2 24573.027211: sched_switch: prev_comm=Binder:24827_4 prev_pid=25554 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
40891<...>-5558 ( 24827) [007] d..2 24573.027221: sched_switch: prev_comm=Binder:24827_5 prev_pid=5558 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
40892    RenderThread-25194 (24827) [002] d.h1 24573.027227: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
40893          <idle>-0     (-----) [007] d..1 24573.027230: cpu_idle: state=0 cpu_id=7
40894    RenderThread-25194 (24827) [002] dnh2 24573.027234: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
40895    RenderThread-25194 (24827) [002] d..2 24573.027242: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
40896 kgsl_worker_thr-246   (  246) [002] d..2 24573.027252: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=RenderThread next_pid=25194 next_prio=120
40897    RenderThread-25194 (24827) [002] d..1 24573.027269: sched_waking: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=006
40898          <idle>-0     (-----) [007] dnh2 24573.027289: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=007
40899          <idle>-0     (-----) [007] .n.1 24573.027292: cpu_idle: state=4294967295 cpu_id=7
40900          <idle>-0     (-----) [007] d..2 24573.027295: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
40901    RenderThread-25194 (24827) [002] d..2 24573.027299: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
40902          <idle>-0     (-----) [002] d..1 24573.027306: cpu_idle: state=0 cpu_id=2
40903 s.nexuslauncher-24827 (24827) [007] d..3 24573.027345: sched_waking: comm=RenderThread pid=25194 prio=120 target_cpu=002
40904          <idle>-0     (-----) [002] d.h2 24573.027353: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
40905          <idle>-0     (-----) [002] dnh3 24573.027359: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
40906 s.nexuslauncher-24827 (24827) [007] d..2 24573.027360: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
40907          <idle>-0     (-----) [007] d..1 24573.027363: cpu_idle: state=0 cpu_id=7
40908          <idle>-0     (-----) [002] dnh2 24573.027369: sched_wakeup: comm=RenderThread pid=25194 prio=120 target_cpu=002
40909          <idle>-0     (-----) [002] .n.1 24573.027372: cpu_idle: state=4294967295 cpu_id=2
40910          <idle>-0     (-----) [002] d..2 24573.027377: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
40911 kgsl_worker_thr-246   (  246) [002] d..2 24573.027396: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=RenderThread next_pid=25194 next_prio=120
40912    RenderThread-25194 (24827) [002] d..1 24573.027407: sched_waking: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=007
40913          <idle>-0     (-----) [007] dnh2 24573.027422: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=007
40914          <idle>-0     (-----) [007] .n.1 24573.027424: cpu_idle: state=4294967295 cpu_id=7
40915          <idle>-0     (-----) [007] d..2 24573.027427: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
40916    RenderThread-25194 (24827) [002] d..2 24573.027429: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
40917          <idle>-0     (-----) [002] d..1 24573.027434: cpu_idle: state=0 cpu_id=2
40918    RenderThread-24437 (24151) [000] d.h1 24573.027448: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
40919    RenderThread-24437 (24151) [000] dnh2 24573.027458: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
40920    RenderThread-24437 (24151) [000] d..2 24573.027468: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
40921 s.nexuslauncher-24827 (24827) [007] .... 24573.027481: binder_transaction: transaction=1669686 dest_node=1309207 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x6
40922 s.nexuslauncher-24827 (24827) [007] d..4 24573.027489: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
40923 s.nexuslauncher-24827 (24827) [007] d..5 24573.027494: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
40924           <...>-13157 (-----) [005] d..2 24573.027495: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
40925          <idle>-0     (-----) [002] d.h2 24573.027497: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
40926 s.nexuslauncher-24827 (24827) [007] d..2 24573.027498: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
40927  Binder:23968_1-23981 (23968) [007] .... 24573.027501: binder_transaction_received: transaction=1669686
40928          <idle>-0     (-----) [002] dnh3 24573.027503: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
40929          <idle>-0     (-----) [005] d..1 24573.027504: cpu_idle: state=0 cpu_id=5
40930          <idle>-0     (-----) [002] .n.1 24573.027508: cpu_idle: state=4294967295 cpu_id=2
40931          <idle>-0     (-----) [002] d..2 24573.027513: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
40932 kgsl_worker_thr-246   (  246) [002] d..2 24573.027532: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
40933          <idle>-0     (-----) [002] d..1 24573.027538: cpu_idle: state=0 cpu_id=2
40934 id.nn.benchmark-13158 (13131) [004] d.s2 24573.027554: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
40935<...>-105 ( 105) [003] d.s3 24573.027563: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
40936           <...>-13192 (-----) [001] d.s3 24573.027575: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
40937           <...>-13192 (-----) [001] d.s4 24573.027587: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
40938          <idle>-0     (-----) [002] .n.1 24573.027591: cpu_idle: state=4294967295 cpu_id=2
40939<...>-105 ( 105) [003] d.s4 24573.027593: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
40940          <idle>-0     (-----) [002] d..2 24573.027597: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
40941 irq/79-1436400.-24613 (24613) [000] d.H2 24573.027600: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
40942 irq/79-1436400.-24613 (24613) [000] d..2 24573.027612: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
40943 kgsl_worker_thr-246   (  246) [002] d..2 24573.027613: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
40944     rcu_preempt-7     (    7) [000] d..2 24573.027617: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
40945          <idle>-0     (-----) [002] d..1 24573.027618: cpu_idle: state=0 cpu_id=2
40946           <...>-13192 (-----) [001] d.s3 24573.027624: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
40947<...>-105 ( 105) [003] d.s3 24573.027629: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
40948           <...>-13192 (-----) [001] dns4 24573.027633: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
40949     rcu_preempt-7     (    7) [000] d..3 24573.027633: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
40950<...>-105 ( 105) [003] d.s4 24573.027637: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
40951          <idle>-0     (-----) [002] .n.1 24573.027638: cpu_idle: state=4294967295 cpu_id=2
40952     rcu_preempt-7     (    7) [000] d..2 24573.027642: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R+ ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
40953           <...>-13192 (-----) [001] d..2 24573.027643: sched_switch: prev_comm=id.nn.benchmark prev_pid=13192 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
40954          <idle>-0     (-----) [002] d..2 24573.027644: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
40955         rcuop/2-29    (   29) [001] d..2 24573.027656: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13192 next_prio=110
40956 kgsl_worker_thr-246   (  246) [002] d..2 24573.027659: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
40957 irq/79-1436400.-24613 (24613) [000] d..2 24573.027661: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
40958          <idle>-0     (-----) [002] d..1 24573.027664: cpu_idle: state=0 cpu_id=2
40959     rcu_preempt-7     (    7) [000] d..2 24573.027671: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
40960           <...>-13192 (-----) [001] d.s3 24573.027682: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
40961           <...>-13192 (-----) [001] d.s4 24573.027691: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
40962          <idle>-0     (-----) [002] .n.1 24573.027696: cpu_idle: state=4294967295 cpu_id=2
40963          <idle>-0     (-----) [002] d..2 24573.027700: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
40964 kgsl_worker_thr-246   (  246) [002] d..2 24573.027716: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
40965          <idle>-0     (-----) [002] d..1 24573.027728: cpu_idle: state=0 cpu_id=2
40966          <idle>-0     (-----) [002] ...1 24573.027737: cpu_idle: state=4294967295 cpu_id=2
40967          <idle>-0     (-----) [002] d..1 24573.027739: cpu_idle: state=0 cpu_id=2
40968  kworker/u16:15-18488 (18488) [000] d..2 24573.027775: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
40969           <...>-13192 (-----) [001] d.s3 24573.027790: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
40970           <...>-13192 (-----) [001] d.s4 24573.027799: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
40971          <idle>-0     (-----) [002] .n.1 24573.027803: cpu_idle: state=4294967295 cpu_id=2
40972          <idle>-0     (-----) [002] d..2 24573.027808: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
40973  Binder:23968_1-23981 (23968) [007] .... 24573.027808: binder_transaction: transaction=1669687 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
40974  Binder:23968_1-23981 (23968) [007] ...2 24573.027820: binder_set_priority: proc=23896 thread=23903 old=120 => new=116 desired=116
40975  Binder:23968_1-23981 (23968) [007] d..4 24573.027821: sched_waking: comm=Binder:23896_2 pid=23903 prio=116 target_cpu=007
40976 kgsl_worker_thr-246   (  246) [002] d..2 24573.027823: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
40977  Binder:23968_1-23981 (23968) [007] d..5 24573.027825: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=116 target_cpu=007
40978          <idle>-0     (-----) [002] d..1 24573.027828: cpu_idle: state=0 cpu_id=2
40979  Binder:23968_1-23981 (23968) [007] d..2 24573.027829: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=116 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=116
40980<...>-23903 ( 23896) [007] .... 24573.027831: binder_transaction_received: transaction=1669687
40981           <...>-13192 (-----) [001] d.s3 24573.027832: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
40982           <...>-13192 (-----) [001] d.s4 24573.027840: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
40983          <idle>-0     (-----) [002] .n.1 24573.027845: cpu_idle: state=4294967295 cpu_id=2
40984          <idle>-0     (-----) [002] d..2 24573.027850: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
40985<...>-23903 ( 23896) [007] .... 24573.027864: binder_transaction: transaction=1669688 dest_node=0 dest_proc=23968 dest_thread=23981 reply=1 flags=0x0 code=0x0
40986<...>-23903 ( 23896) [007] d..2 24573.027865: sched_waking: comm=Binder:23968_1 pid=23981 prio=116 target_cpu=007
40987<...>-23903 ( 23896) [007] d..3 24573.027869: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=116 target_cpu=007
40988<...>-23903 ( 23896) [007] .... 24573.027869: binder_set_priority: proc=23896 thread=23903 old=116 => new=120 desired=120
40989<...>-23903 ( 23896) [007] d..2 24573.027873: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=116
40990  Binder:23968_1-23981 (23968) [007] .... 24573.027874: binder_transaction_received: transaction=1669688
40991 kgsl_worker_thr-246   (  246) [002] d..2 24573.027875: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
40992          <idle>-0     (-----) [002] d..1 24573.027879: cpu_idle: state=0 cpu_id=2
40993 id.nn.benchmark-13160 (13131) [006] d..2 24573.027908: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
40994          <idle>-0     (-----) [006] d..1 24573.027911: cpu_idle: state=0 cpu_id=6
40995          <idle>-0     (-----) [002] d.h2 24573.027973: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
40996          <idle>-0     (-----) [002] dnh3 24573.027979: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
40997          <idle>-0     (-----) [002] .n.1 24573.027983: cpu_idle: state=4294967295 cpu_id=2
40998          <idle>-0     (-----) [002] d..2 24573.027988: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
40999          <idle>-0     (-----) [006] ...1 24573.028100: cpu_idle: state=4294967295 cpu_id=6
41000          <idle>-0     (-----) [006] d..1 24573.028101: cpu_idle: state=0 cpu_id=6
41001 kgsl_worker_thr-246   (  246) [002] d..2 24573.028109: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
41002  Binder:23968_1-23981 (23968) [007] d..3 24573.028110: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=005
41003           <...>-13192 (-----) [001] ...1 24573.028111: tracing_mark_write: E|13131
41004           <...>-13192 (-----) [001] ...1 24573.028115: tracing_mark_write: E|13131
41005          <idle>-0     (-----) [002] d..1 24573.028115: cpu_idle: state=0 cpu_id=2
41006           <...>-13192 (-----) [001] ...1 24573.028132: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
41007           <...>-13192 (-----) [001] ...1 24573.028137: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
41008  Binder:23968_1-23981 (23968) [007] d.h3 24573.028146: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
41009<...>-105 ( 105) [003] d.s2 24573.028148: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
41010          <idle>-0     (-----) [002] dnh2 24573.028148: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=002
41011  Binder:23968_1-23981 (23968) [007] d.h4 24573.028154: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
41012  Binder:23968_1-23981 (23968) [007] d.h3 24573.028155: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
41013          <idle>-0     (-----) [002] .n.1 24573.028155: cpu_idle: state=4294967295 cpu_id=2
41014           <...>-13192 (-----) [001] d..1 24573.028157: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
41015<...>-105 ( 105) [003] d.s3 24573.028157: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
41016          <idle>-0     (-----) [006] .n.1 24573.028158: cpu_idle: state=4294967295 cpu_id=6
41017    RenderThread-24437 (24151) [000] .... 24573.028161: binder_transaction: transaction=1669689 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
41018          <idle>-0     (-----) [006] d..2 24573.028161: 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
41019          <idle>-0     (-----) [002] d..2 24573.028162: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
41020    RenderThread-24437 (24151) [000] d..4 24573.028171: sched_waking: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=007
41021         sugov:4-560   (  560) [006] d..2 24573.028171: 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
41022          <idle>-0     (-----) [006] d..1 24573.028174: cpu_idle: state=0 cpu_id=6
41023           <...>-13192 (-----) [001] d..1 24573.028176: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
41024          <idle>-0     (-----) [005] dnh2 24573.028182: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
41025          <idle>-0     (-----) [005] .n.1 24573.028188: cpu_idle: state=4294967295 cpu_id=5
41026    RenderThread-24437 (24151) [000] dn.5 24573.028191: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=000
41027           <...>-13192 (-----) [001] d..1 24573.028191: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=004
41028          <idle>-0     (-----) [005] d..2 24573.028193: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
41029          <idle>-0     (-----) [006] dnh2 24573.028194: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
41030          <idle>-0     (-----) [006] .n.1 24573.028196: cpu_idle: state=4294967295 cpu_id=6
41031    RenderThread-24437 (24151) [000] dnh4 24573.028197: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
41032          <idle>-0     (-----) [006] d..2 24573.028199: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
41033           <...>-13192 (-----) [001] d..1 24573.028227: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
41034  Binder:23968_1-23981 (23968) [007] d.h1 24573.028227: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=007
41035    RenderThread-24437 (24151) [000] d..2 24573.028230: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
41036 kgsl_worker_thr-246   (  246) [002] d..2 24573.028232: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=android.display next_pid=24003 next_prio=117
41037           <...>-13192 (-----) [001] d..1 24573.028238: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=006
41038         sugov:0-559   (  559) [000] d..2 24573.028238: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
41039           <...>-13154 (-----) [005] d.h1 24573.028239: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
41040  Binder:23896_3-23986 (23896) [000] .... 24573.028246: binder_transaction_received: transaction=1669689
41041           <...>-13192 (-----) [001] d..1 24573.028248: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=006
41042 id.nn.benchmark-13155 (13131) [006] d.h1 24573.028249: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=006
41043 id.nn.benchmark-13155 (13131) [006] d.h1 24573.028259: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=006
41044<...>-24003 ( 23968) [002] d..2 24573.028309: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
41045 id.nn.benchmark-13160 (13131) [002] d.h3 24573.028337: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
41046 id.nn.benchmark-13160 (13131) [002] d.h4 24573.028351: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
41047  Binder:23896_3-23986 (23896) [000] d..2 24573.028358: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
41048  Binder:23968_1-23981 (23968) [007] .... 24573.028360: binder_transaction: transaction=1669690 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
41049  Binder:23968_1-23981 (23968) [007] d..4 24573.028366: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
41050  Binder:23968_1-23981 (23968) [007] d..5 24573.028378: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
41051  Binder:23968_1-23981 (23968) [007] d..3 24573.028451: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=006
41052 kgsl_worker_thr-246   (  246) [000] d.h1 24573.028483: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=000
41053  Binder:23968_1-23981 (23968) [007] .... 24573.028624: binder_transaction: transaction=1669691 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
41054  Binder:23968_1-23981 (23968) [007] ...2 24573.028627: binder_set_priority: proc=23896 thread=25989 old=120 => new=116 desired=116
41055  Binder:23968_1-23981 (23968) [007] d..4 24573.028629: sched_waking: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=002
41056  Binder:23968_1-23981 (23968) [007] d..5 24573.028645: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=004
41057  Binder:23968_1-23981 (23968) [007] d.h5 24573.028665: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
41058 id.nn.benchmark-13158 (13131) [004] d..2 24573.028665: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
41059  Binder:23968_1-23981 (23968) [007] d.h6 24573.028674: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
41060  Binder:23968_1-23981 (23968) [007] d.h5 24573.028675: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
41061  Binder:23896_5-25989 (23896) [004] d..2 24573.028686: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=116 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
41062  Binder:23968_1-23981 (23968) [007] d..2 24573.028687: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=116 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
41063           <...>-13192 (-----) [001] dnh1 24573.028688: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
41064         sugov:4-560   (  560) [004] d..2 24573.028690: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
41065<...>-24376 ( 24151) [007] .... 24573.028690: binder_transaction_received: transaction=1669690
41066  Binder:23896_5-25989 (23896) [004] .... 24573.028692: binder_transaction_received: transaction=1669691
41067           <...>-13192 (-----) [001] d..2 24573.028695: sched_switch: prev_comm=id.nn.benchmark prev_pid=13192 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
41068         sugov:0-559   (  559) [001] d..2 24573.028703: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13192 next_prio=110
41069  Binder:23896_5-25989 (23896) [004] .... 24573.028711: binder_transaction: transaction=1669692 dest_node=0 dest_proc=23968 dest_thread=23981 reply=1 flags=0x0 code=0x0
41070  Binder:23896_5-25989 (23896) [004] d..2 24573.028712: sched_waking: comm=Binder:23968_1 pid=23981 prio=116 target_cpu=007
41071  Binder:23896_5-25989 (23896) [004] d..3 24573.028722: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=116 target_cpu=007
41072  Binder:23896_5-25989 (23896) [004] .... 24573.028724: binder_set_priority: proc=23896 thread=25989 old=116 => new=120 desired=120
41073  Binder:23896_5-25989 (23896) [004] d..2 24573.028734: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
41074<...>-24376 ( 24151) [007] d..3 24573.028751: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
41075 kgsl_worker_thr-246   (  246) [000] d.h2 24573.028768: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
41076<...>-24376 ( 24151) [007] d..2 24573.028788: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
41077<...>-23903 ( 23896) [007] d..2 24573.028802: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=116
41078  Binder:23968_1-23981 (23968) [007] .... 24573.028804: binder_transaction_received: transaction=1669692
41079  Binder:23968_1-23981 (23968) [007] d..3 24573.029063: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
41080           <...>-13192 (-----) [001] dnh1 24573.029095: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
41081           <...>-13192 (-----) [001] d..2 24573.029099: sched_switch: prev_comm=id.nn.benchmark prev_pid=13192 prev_prio=110 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
41082<...>-24073 ( 23968) [001] d..2 24573.029132: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13192 next_prio=110
41083 kgsl_worker_thr-246   (  246) [000] d..2 24573.029177: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
41084 kgsl_worker_thr-246   (  246) [000] d..3 24573.029193: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
41085 kgsl_worker_thr-246   (  246) [000] d..2 24573.029303: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=android.ui next_pid=23994 next_prio=118
41086  Binder:23968_1-23981 (23968) [007] d..3 24573.029372: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
41087<...>-23994 ( 23968) [000] d.h1 24573.029381: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
41088  Binder:23968_1-23981 (23968) [007] d..1 24573.029382: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=002
41089           <...>-13192 (-----) [001] dnh1 24573.029385: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
41090           <...>-13192 (-----) [001] d..2 24573.029391: sched_switch: prev_comm=id.nn.benchmark prev_pid=13192 prev_prio=110 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
41091  Binder:23968_1-23981 (23968) [007] d..2 24573.029396: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=004
41092<...>-23994 ( 23968) [000] d.h2 24573.029401: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
41093 id.nn.benchmark-13158 (13131) [004] d..2 24573.029403: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
41094  Binder:23968_1-23981 (23968) [007] d.h3 24573.029421: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
41095<...>-24003 ( 23968) [004] d..2 24573.029422: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
41096<...>-24073 ( 23968) [001] d..2 24573.029424: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
41097  Binder:23968_1-23981 (23968) [007] d.h4 24573.029428: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
41098  Binder:23968_1-23981 (23968) [007] d.h3 24573.029429: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
41099 id.nn.benchmark-13158 (13131) [004] d..2 24573.029435: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
41100         sugov:4-560   (  560) [004] d..2 24573.029438: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
41101  Binder:23968_1-23981 (23968) [007] d..1 24573.029440: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=004
41102<...>-23994 ( 23968) [000] d..3 24573.029441: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=001
41103<...>-105 ( 105) [003] dnh1 24573.029444: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
41104  Binder:23968_1-23981 (23968) [007] d..2 24573.029446: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=004
41105 id.nn.benchmark-13158 (13131) [004] d..2 24573.029452: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
41106<...>-105 ( 105) [003] d..2 24573.029452: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
41107<...>-23994 ( 23968) [000] d..4 24573.029454: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=001
41108         sugov:0-559   (  559) [003] d..2 24573.029461: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
41109 kgsl_worker_thr-246   (  246) [001] d..2 24573.029472: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=system_server next_pid=23968 next_prio=118
41110<...>-23994 ( 23968) [000] d..2 24573.029485: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
41111  Binder:23896_3-23986 (23896) [000] .... 24573.029512: binder_transaction: transaction=1669693 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
41112<...>-24003 ( 23968) [004] d..2 24573.029533: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
41113  Binder:23896_3-23986 (23896) [000] d..2 24573.029541: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
41114  kworker/u16:15-18488 (18488) [000] d..2 24573.029553: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
41115<...>-23968 ( 23968) [001] .... 24573.029560: binder_transaction: transaction=1669694 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
41116<...>-23968 ( 23968) [001] d..4 24573.029565: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
41117  kworker/u16:15-18488 (18488) [000] d..3 24573.029574: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
41118  kworker/u16:15-18488 (18488) [000] d..2 24573.029586: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
41119<...>-23968 ( 23968) [001] d.h4 24573.029593: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
41120  Binder:23968_1-23981 (23968) [007] d.h1 24573.029594: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
41121<...>-23968 ( 23968) [001] d.h5 24573.029607: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
41122<...>-105 ( 105) [003] d..2 24573.029614: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
41123  Binder:23968_1-23981 (23968) [007] .... 24573.029641: binder_transaction: transaction=1669695 dest_node=0 dest_proc=24827 dest_thread=24827 reply=1 flags=0x0 code=0x0
41124  Binder:23968_1-23981 (23968) [007] d..2 24573.029645: sched_waking: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=007
41125<...>-23968 ( 23968) [001] d..2 24573.029648: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
41126  Binder:23968_1-23981 (23968) [007] d..3 24573.029655: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=007
41127  kworker/u16:10-23868 (23868) [001] d..2 24573.029657: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
41128 kgsl_worker_thr-246   (  246) [003] d..2 24573.029662: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=system next_pid=105 next_prio=120
41129<...>-24073 ( 23968) [001] d..2 24573.029663: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13192 next_prio=110
41130  Binder:23968_1-23981 (23968) [007] d..2 24573.029670: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
41131<...>-24376 ( 24151) [007] .... 24573.029673: binder_transaction_received: transaction=1669694
41132<...>-24151 ( 24151) [000] d..2 24573.029677: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
41133    RenderThread-24437 (24151) [000] .... 24573.029701: binder_transaction_received: transaction=1669693
41134<...>-24376 ( 24151) [007] d..3 24573.029714: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
41135    RenderThread-24437 (24151) [000] dnh1 24573.029728: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
41136    RenderThread-24437 (24151) [000] d..2 24573.029734: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
41137<...>-24376 ( 24151) [007] d..2 24573.029739: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
41138 s.nexuslauncher-24827 (24827) [007] .... 24573.029742: binder_transaction_received: transaction=1669695
41139<...>-105 ( 105) [003] d.h1 24573.029760: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
41140<...>-105 ( 105) [003] d.h2 24573.029775: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
41141<...>-24151 ( 24151) [000] d..2 24573.029776: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
41142           <...>-13192 (-----) [001] d..2 24573.029783: sched_switch: prev_comm=id.nn.benchmark prev_pid=13192 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
41143    RenderThread-24437 (24151) [000] d..2 24573.029884: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
41144 kgsl_worker_thr-246   (  246) [001] d..2 24573.029971: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13192 next_prio=110
41145 s.nexuslauncher-24827 (24827) [007] d..3 24573.030145: sched_waking: comm=RenderThread pid=25194 prio=120 target_cpu=002
41146           <...>-13192 (-----) [001] d.h1 24573.030165: sched_wakeup: comm=RenderThread pid=25194 prio=120 target_cpu=001
41147 s.nexuslauncher-24827 (24827) [007] d..2 24573.030166: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
41148<...>-105 ( 105) [003] d..2 24573.030499: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
41149 id.nn.benchmark-13159 (13131) [003] d.h4 24573.030528: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
41150 id.nn.benchmark-13159 (13131) [003] d.h4 24573.030536: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
41151 id.nn.benchmark-13158 (13131) [004] dnh1 24573.030539: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
41152 id.nn.benchmark-13158 (13131) [004] d..2 24573.030543: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
41153         sugov:4-560   (  560) [004] d..2 24573.030547: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
41154 id.nn.benchmark-13159 (13131) [003] d.h5 24573.030547: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
41155           <...>-13192 (-----) [001] d..2 24573.030555: sched_switch: prev_comm=id.nn.benchmark prev_pid=13192 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
41156         sugov:0-559   (  559) [001] d..2 24573.030562: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=120
41157    RenderThread-25194 (24827) [001] d..1 24573.030581: sched_waking: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=007
41158 id.nn.benchmark-13155 (13131) [006] dnh1 24573.030606: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=006
41159 id.nn.benchmark-13155 (13131) [006] d..2 24573.030609: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
41160    RenderThread-25194 (24827) [001] d..2 24573.030616: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13192 next_prio=110
41161           <...>-13192 (-----) [001] ...1 24573.030635: tracing_mark_write: E|13131
41162           <...>-13192 (-----) [001] ...1 24573.030640: tracing_mark_write: E|13131
41163 s.nexuslauncher-24827 (24827) [006] d..3 24573.030644: sched_waking: comm=RenderThread pid=25194 prio=120 target_cpu=001
41164 s.nexuslauncher-24827 (24827) [006] d..2 24573.030657: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
41165           <...>-13192 (-----) [001] d.h1 24573.030659: sched_wakeup: comm=RenderThread pid=25194 prio=120 target_cpu=001
41166           <...>-13192 (-----) [001] d..2 24573.030734: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
41167           <...>-13192 (-----) [001] d..3 24573.030753: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
41168           <...>-13192 (-----) [001] ...1 24573.030780: tracing_mark_write: E|13131
41169           <...>-13192 (-----) [001] d..1 24573.030787: sched_waking: comm=id.nn.benchmark pid=13191 prio=110 target_cpu=006
41170 id.nn.benchmark-13158 (13131) [004] dnh1 24573.030815: sched_wakeup: comm=id.nn.benchmark pid=13191 prio=110 target_cpu=004
41171 id.nn.benchmark-13158 (13131) [004] d..2 24573.030817: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13191 next_prio=110
41172           <...>-13191 (-----) [004] d..2 24573.030827: sched_switch: prev_comm=id.nn.benchmark prev_pid=13191 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
41173           <...>-13192 (-----) [001] ...1 24573.030828: tracing_mark_write: E|13131
41174 id.nn.benchmark-13158 (13131) [004] d.s2 24573.030897: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
41175 id.nn.benchmark-13158 (13131) [004] d.s2 24573.030906: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
41176           <...>-13192 (-----) [001] dnh2 24573.030910: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
41177 id.nn.benchmark-13158 (13131) [004] dns3 24573.030911: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
41178 id.nn.benchmark-13158 (13131) [004] d..2 24573.030914: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=kworker/4:0 next_pid=24269 next_prio=120
41179           <...>-13192 (-----) [001] d..2 24573.030933: sched_switch: prev_comm=id.nn.benchmark prev_pid=13192 prev_prio=110 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
41180     kworker/4:0-24269 (24269) [004] d..2 24573.030941: sched_switch: prev_comm=kworker/4:0 prev_pid=24269 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
41181  kworker/u16:10-23868 (23868) [001] d..2 24573.031141: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13192 next_prio=110
41182 id.nn.benchmark-13159 (13131) [003] d.s2 24573.031200: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
41183 id.nn.benchmark-13159 (13131) [003] d.s3 24573.031209: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
41184 id.nn.benchmark-13159 (13131) [003] d.s3 24573.031216: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
41185           <...>-13192 (-----) [001] d..2 24573.031224: sched_switch: prev_comm=id.nn.benchmark prev_pid=13192 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
41186           <...>-13157 (-----) [000] d.h1 24573.031413: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
41187           <...>-13157 (-----) [000] dnh2 24573.031420: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
41188  kworker/u16:10-23868 (23868) [001] d..2 24573.031422: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13192 next_prio=110
41189           <...>-13157 (-----) [000] d..2 24573.031428: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
41190 irq/79-1436400.-24613 (24613) [000] d..2 24573.031530: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
41191           <...>-13192 (-----) [001] d..1 24573.031540: sched_waking: comm=id.nn.benchmark pid=13191 prio=110 target_cpu=004
41192 id.nn.benchmark-13159 (13131) [003] d.s2 24573.031544: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
41193 id.nn.benchmark-13159 (13131) [003] d.s3 24573.031552: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
41194 id.nn.benchmark-13158 (13131) [004] dnh1 24573.031553: sched_wakeup: comm=id.nn.benchmark pid=13191 prio=110 target_cpu=004
41195 id.nn.benchmark-13158 (13131) [004] d..2 24573.031556: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13191 next_prio=110
41196           <...>-13157 (-----) [000] d..2 24573.031559: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
41197 irq/79-1436400.-24613 (24613) [000] d..2 24573.031574: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
41198           <...>-13192 (-----) [001] d..2 24573.031622: sched_switch: prev_comm=id.nn.benchmark prev_pid=13192 prev_prio=110 prev_state=x ==> next_comm=RenderThread next_pid=25194 next_prio=120
41199           <...>-13191 (-----) [004] d..1 24573.031637: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
41200    RenderThread-25194 (24827) [001] dnh1 24573.031658: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
41201    RenderThread-25194 (24827) [001] d..2 24573.031664: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
41202           <...>-13131 (-----) [001] d..2 24573.031680: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=120
41203           <...>-13191 (-----) [004] d..1 24573.031681: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
41204    RenderThread-25194 (24827) [001] dnh1 24573.031696: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
41205    RenderThread-25194 (24827) [001] d..2 24573.031701: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
41206           <...>-13191 (-----) [004] d..2 24573.031702: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
41207           <...>-13131 (-----) [001] d.h2 24573.031715: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
41208           <...>-13191 (-----) [004] d..2 24573.031720: sched_switch: prev_comm=id.nn.benchmark prev_pid=13191 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
41209           <...>-13131 (-----) [001] ...1 24573.031733: tracing_mark_write: E|13131
41210           <...>-13131 (-----) [001] ...1 24573.031739: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
41211           <...>-13131 (-----) [001] ...1 24573.031745: tracing_mark_write: E|13131
41212           <...>-13131 (-----) [001] ...1 24573.031749: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
41213           <...>-13131 (-----) [001] ...1 24573.031754: tracing_mark_write: E|13131
41214           <...>-13131 (-----) [001] ...1 24573.032083: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
41215           <...>-13131 (-----) [001] ...1 24573.032123: tracing_mark_write: E|13131
41216           <...>-13131 (-----) [001] ...1 24573.032129: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
41217           <...>-13131 (-----) [001] ...1 24573.032135: tracing_mark_write: E|13131
41218           <...>-13131 (-----) [001] ...1 24573.032140: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
41219           <...>-13131 (-----) [001] ...1 24573.032145: tracing_mark_write: E|13131
41220           <...>-13131 (-----) [001] ...1 24573.032150: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
41221           <...>-13131 (-----) [001] ...1 24573.032293: tracing_mark_write: E|13131
41222           <...>-13131 (-----) [001] ...1 24573.032298: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
41223           <...>-13131 (-----) [001] d..2 24573.032307: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
41224         rcuop/4-45    (   45) [001] d..2 24573.032318: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=120
41225    RenderThread-25194 (24827) [001] d..1 24573.032334: sched_waking: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=006
41226 id.nn.benchmark-13155 (13131) [006] dnh1 24573.032348: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=006
41227 id.nn.benchmark-13155 (13131) [006] d..2 24573.032351: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
41228    RenderThread-25194 (24827) [001] d..2 24573.032359: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
41229     logd.writer-563   (  555) [001] d..2 24573.032498: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13193 next_prio=110
41230           <...>-13193 (-----) [001] d..2 24573.032553: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
41231           <...>-13193 (-----) [001] d..3 24573.032561: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
41232 s.nexuslauncher-24827 (24827) [006] d..3 24573.032624: sched_waking: comm=UiThreadHelper pid=25108 prio=118 target_cpu=007
41233 s.nexuslauncher-24827 (24827) [006] d..4 24573.032636: sched_wakeup: comm=UiThreadHelper pid=25108 prio=118 target_cpu=007
41234 id.nn.benchmark-13156 (13131) [007] d..2 24573.032642: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=UiThreadHelper next_pid=25108 next_prio=118
41235           <...>-13154 (-----) [005] d..2 24573.032692: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
41236 s.nexuslauncher-24827 (24827) [006] .... 24573.032701: binder_transaction: transaction=1669696 dest_node=1272319 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x2
41237 s.nexuslauncher-24827 (24827) [006] d..4 24573.032704: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
41238 s.nexuslauncher-24827 (24827) [006] d..5 24573.032709: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
41239 s.nexuslauncher-24827 (24827) [006] d..2 24573.032714: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
41240           <...>-13157 (-----) [000] d.h4 24573.032730: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
41241           <...>-13157 (-----) [000] d.h5 24573.032742: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
41242           <...>-13193 (-----) [001] d..2 24573.032749: sched_switch: prev_comm=id.nn.benchmark prev_pid=13193 prev_prio=110 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
41243           <...>-13157 (-----) [000] d.h4 24573.032755: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
41244<...>-25108 ( 24827) [007] dnh1 24573.032773: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
41245  crtc_event:111-254   (  254) [001] d..2 24573.032776: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
41246<...>-25108 ( 24827) [007] d..2 24573.032778: sched_switch: prev_comm=UiThreadHelper prev_pid=25108 prev_prio=118 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
41247 crtc_commit:111-253   (  253) [007] d..2 24573.032879: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=UiThreadHelper next_pid=25108 next_prio=118
41248     logd.writer-563   (  555) [001] d..2 24573.032914: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13193 next_prio=110
41249           <...>-13193 (-----) [001] d..1 24573.032923: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
41250           <...>-13193 (-----) [001] d..2 24573.032930: sched_blocked_reason: pid=563 iowait=0 caller=proc_pid_cmdline_read+0x63c/0x668
41251           <...>-13193 (-----) [001] d..2 24573.032933: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
41252           <...>-13193 (-----) [001] d..2 24573.032978: sched_switch: prev_comm=id.nn.benchmark prev_pid=13193 prev_prio=110 prev_state=D|K ==> next_comm=logd.writer next_pid=563 next_prio=130
41253     logd.writer-563   (  555) [001] d..1 24573.032980: sched_waking: comm=id.nn.benchmark pid=13193 prio=110 target_cpu=001
41254     logd.writer-563   (  555) [001] d..2 24573.032999: sched_blocked_reason: pid=13193 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
41255     logd.writer-563   (  555) [001] dn.2 24573.033001: sched_wakeup: comm=id.nn.benchmark pid=13193 prio=110 target_cpu=001
41256     logd.writer-563   (  555) [001] d..2 24573.033005: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13193 next_prio=110
41257           <...>-13193 (-----) [001] d..2 24573.033098: sched_switch: prev_comm=id.nn.benchmark prev_pid=13193 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
41258 id.nn.benchmark-13155 (13131) [006] d..3 24573.033122: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
41259 id.nn.benchmark-13155 (13131) [006] d..2 24573.033130: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
41260 id.nn.benchmark-13160 (13131) [002] dnh1 24573.033133: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
41261<...>-25108 ( 24827) [007] d..3 24573.033135: sched_waking: comm=GoogleApiHandle pid=24986 prio=129 target_cpu=000
41262          <idle>-0     (-----) [006] d..1 24573.033137: cpu_idle: state=0 cpu_id=6
41263 id.nn.benchmark-13160 (13131) [002] d..2 24573.033139: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
41264<...>-25108 ( 24827) [007] d..4 24573.033159: sched_wakeup: comm=GoogleApiHandle pid=24986 prio=129 target_cpu=006
41265          <idle>-0     (-----) [006] .n.1 24573.033165: cpu_idle: state=4294967295 cpu_id=6
41266<...>-25108 ( 24827) [007] d.h3 24573.033183: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
41267          <idle>-0     (-----) [006] d..2 24573.033183: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=GoogleApiHandle next_pid=24986 next_prio=129
41268     migration/2-25    (   25) [002] d..2 24573.033185: 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
41269<...>-25108 ( 24827) [007] d.h4 24573.033188: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
41270<...>-25108 ( 24827) [007] d.h3 24573.033193: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
41271          <idle>-0     (-----) [002] d..1 24573.033195: cpu_idle: state=0 cpu_id=2
41272 id.nn.benchmark-13158 (13131) [004] d..2 24573.033197: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=sugov:4 next_pid=560 next_prio=49
41273     logd.writer-563   (  555) [001] d..2 24573.033198: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13194 next_prio=110
41274         sugov:4-560   (  560) [004] d..2 24573.033207: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
41275          <idle>-0     (-----) [002] dnh2 24573.033216: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
41276          <idle>-0     (-----) [002] .n.1 24573.033220: cpu_idle: state=4294967295 cpu_id=2
41277           <...>-13194 (-----) [001] ...1 24573.033225: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
41278          <idle>-0     (-----) [002] d..2 24573.033225: 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
41279<...>-25108 ( 24827) [007] d..2 24573.033226: sched_switch: prev_comm=UiThreadHelper prev_pid=25108 prev_prio=118 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
41280           <...>-13194 (-----) [001] ...1 24573.033229: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
41281  Binder:23968_1-23981 (23968) [007] .... 24573.033230: binder_transaction_received: transaction=1669696
41282         sugov:0-559   (  559) [002] d..2 24573.033238: 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
41283          <idle>-0     (-----) [002] d..1 24573.033243: cpu_idle: state=0 cpu_id=2
41284           <...>-13194 (-----) [001] d..2 24573.033288: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
41285           <...>-13194 (-----) [001] d..3 24573.033296: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
41286           <...>-13194 (-----) [001] ...1 24573.033368: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
41287           <...>-13194 (-----) [001] ...1 24573.033374: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
41288  Binder:23968_1-23981 (23968) [007] .... 24573.033379: binder_transaction: transaction=1669697 dest_node=0 dest_proc=24827 dest_thread=24827 reply=1 flags=0x0 code=0x0
41289  Binder:23968_1-23981 (23968) [007] d..2 24573.033382: sched_waking: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=006
41290  Binder:23968_1-23981 (23968) [007] d..3 24573.033389: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=007
41291  Binder:23968_1-23981 (23968) [007] d..2 24573.033400: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
41292 s.nexuslauncher-24827 (24827) [007] .... 24573.033402: binder_transaction_received: transaction=1669697
41293 s.nexuslauncher-24827 (24827) [007] d..1 24573.033500: sched_waking: comm=Recents-HighRes pid=25113 prio=131 target_cpu=005
41294          <idle>-0     (-----) [002] dnh2 24573.033534: sched_wakeup: comm=Recents-HighRes pid=25113 prio=131 target_cpu=002
41295          <idle>-0     (-----) [002] .n.1 24573.033538: cpu_idle: state=4294967295 cpu_id=2
41296<...>-24986 ( 24827) [006] .... 24573.033543: binder_transaction: transaction=1669698 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x19
41297          <idle>-0     (-----) [002] d..2 24573.033544: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Recents-HighRes next_pid=25113 next_prio=131
41298<...>-25113 ( 24827) [002] d..2 24573.033605: sched_switch: prev_comm=Recents-HighRes prev_pid=25113 prev_prio=131 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41299          <idle>-0     (-----) [002] d..1 24573.033612: cpu_idle: state=0 cpu_id=2
41300<...>-24986 ( 24827) [006] d..4 24573.033651: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
41301<...>-24986 ( 24827) [006] dn.5 24573.033660: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
41302<...>-24986 ( 24827) [006] d..2 24573.033663: sched_switch: prev_comm=GoogleApiHandle prev_pid=24986 prev_prio=129 prev_state=R+ ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
41303  Binder:23968_1-23981 (23968) [006] .... 24573.033665: binder_transaction_received: transaction=1669698
41304  Binder:23968_1-23981 (23968) [006] .... 24573.033931: binder_transaction: transaction=1669701 dest_node=1669699 dest_proc=24827 dest_thread=0 reply=0 flags=0x11 code=0x1
41305  Binder:23968_1-23981 (23968) [006] d..4 24573.033950: sched_waking: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=007
41306  Binder:23968_1-23981 (23968) [006] d.h5 24573.033983: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
41307          <idle>-0     (-----) [002] dnh2 24573.033986: sched_wakeup: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=002
41308          <idle>-0     (-----) [002] .n.1 24573.033990: cpu_idle: state=4294967295 cpu_id=2
41309  Binder:23968_1-23981 (23968) [006] d.h6 24573.033993: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
41310  Binder:23968_1-23981 (23968) [006] d.h5 24573.033993: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
41311          <idle>-0     (-----) [002] d..2 24573.033996: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24827_5 next_pid=5558 next_prio=120
41312 s.nexuslauncher-24827 (24827) [007] d..2 24573.034002: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
41313         sugov:4-560   (  560) [007] d..2 24573.034008: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
41314<...>-5558 ( 24827) [002] dnh3 24573.034008: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
41315<...>-5558 ( 24827) [002] d..2 24573.034014: sched_switch: prev_comm=Binder:24827_5 prev_pid=5558 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
41316         sugov:0-559   (  559) [002] d..2 24573.034020: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:24827_5 next_pid=5558 next_prio=120
41317<...>-5558 ( 24827) [002] .... 24573.034023: binder_transaction_received: transaction=1669701
41318  Binder:23968_1-23981 (23968) [006] .... 24573.034055: binder_transaction: transaction=1669703 dest_node=0 dest_proc=24827 dest_thread=24986 reply=1 flags=0x0 code=0x0
41319  Binder:23968_1-23981 (23968) [006] d..2 24573.034068: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=GoogleApiHandle next_pid=24986 next_prio=129
41320<...>-24986 ( 24827) [006] .... 24573.034072: binder_transaction_received: transaction=1669703
41321 s.nexuslauncher-24827 (24827) [007] d..3 24573.034089: sched_waking: comm=RenderThread pid=25194 prio=120 target_cpu=001
41322           <...>-13194 (-----) [001] dnh1 24573.034110: sched_wakeup: comm=RenderThread pid=25194 prio=120 target_cpu=001
41323           <...>-13194 (-----) [001] d..2 24573.034118: sched_switch: prev_comm=id.nn.benchmark prev_pid=13194 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=120
41324<...>-24986 ( 24827) [006] d..3 24573.034128: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
41325<...>-24986 ( 24827) [006] d..2 24573.034136: sched_switch: prev_comm=GoogleApiHandle prev_pid=24986 prev_prio=129 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
41326           <...>-13157 (-----) [000] dnh1 24573.034139: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
41327    RenderThread-25194 (24827) [001] d..2 24573.034141: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13194 next_prio=110
41328          <idle>-0     (-----) [006] d..1 24573.034142: cpu_idle: state=0 cpu_id=6
41329           <...>-13157 (-----) [000] d..2 24573.034144: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
41330          <idle>-0     (-----) [006] .n.1 24573.034169: cpu_idle: state=4294967295 cpu_id=6
41331 s.nexuslauncher-24827 (24827) [007] d..2 24573.034186: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
41332          <idle>-0     (-----) [006] d..2 24573.034187: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
41333<...>-5558 ( 24827) [002] d..2 24573.034188: sched_switch: prev_comm=Binder:24827_5 prev_pid=5558 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41334          <idle>-0     (-----) [007] d..1 24573.034194: cpu_idle: state=0 cpu_id=7
41335     migration/0-13    (   13) [000] d..2 24573.034197: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41336          <idle>-0     (-----) [002] d..1 24573.034197: cpu_idle: state=0 cpu_id=2
41337          <idle>-0     (-----) [000] d..1 24573.034208: cpu_idle: state=0 cpu_id=0
41338          <idle>-0     (-----) [007] d.s3 24573.034226: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
41339 id.nn.benchmark-13159 (13131) [003] d.h2 24573.034228: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
41340          <idle>-0     (-----) [000] d.s2 24573.034231: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
41341 id.nn.benchmark-13159 (13131) [003] dnh3 24573.034233: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
41342 id.nn.benchmark-13159 (13131) [003] d..2 24573.034242: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
41343          <idle>-0     (-----) [000] dns3 24573.034242: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
41344          <idle>-0     (-----) [002] dnH3 24573.034246: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
41345          <idle>-0     (-----) [007] ...1 24573.034249: cpu_idle: state=4294967295 cpu_id=7
41346          <idle>-0     (-----) [007] d..1 24573.034251: cpu_idle: state=0 cpu_id=7
41347          <idle>-0     (-----) [000] .n.1 24573.034254: cpu_idle: state=4294967295 cpu_id=0
41348          <idle>-0     (-----) [002] .n.1 24573.034255: cpu_idle: state=4294967295 cpu_id=2
41349          <idle>-0     (-----) [000] d..2 24573.034259: 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
41350          <idle>-0     (-----) [002] d..2 24573.034261: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
41351          <idle>-0     (-----) [007] .n.1 24573.034264: cpu_idle: state=4294967295 cpu_id=7
41352          <idle>-0     (-----) [007] d..2 24573.034284: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
41353     rcu_preempt-7     (    7) [000] d..2 24573.034293: 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
41354<...>-33 ( 33) [003] d..2 24573.034296: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41355          <idle>-0     (-----) [000] d..1 24573.034299: cpu_idle: state=0 cpu_id=0
41356  crtc_event:111-254   (  254) [002] d..2 24573.034302: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
41357          <idle>-0     (-----) [003] d..1 24573.034310: cpu_idle: state=0 cpu_id=3
41358     logd.writer-563   (  555) [002] d..2 24573.034492: 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
41359          <idle>-0     (-----) [002] d..1 24573.034501: cpu_idle: state=0 cpu_id=2
41360 id.nn.benchmark-13156 (13131) [005] d..2 24573.034718: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
41361          <idle>-0     (-----) [005] d..1 24573.034721: cpu_idle: state=0 cpu_id=5
41362          <idle>-0     (-----) [000] d.h5 24573.035077: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
41363          <idle>-0     (-----) [000] dnh6 24573.035092: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
41364          <idle>-0     (-----) [000] dnh3 24573.035131: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
41365           <...>-13194 (-----) [001] d..1 24573.035132: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
41366           <...>-13194 (-----) [001] d..1 24573.035143: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
41367          <idle>-0     (-----) [000] dnh3 24573.035143: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
41368          <idle>-0     (-----) [005] dnh2 24573.035148: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
41369          <idle>-0     (-----) [005] dnh2 24573.035149: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
41370          <idle>-0     (-----) [000] dnh4 24573.035150: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
41371          <idle>-0     (-----) [005] .n.1 24573.035151: cpu_idle: state=4294967295 cpu_id=5
41372           <...>-13194 (-----) [001] d..1 24573.035153: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=005
41373          <idle>-0     (-----) [000] .n.1 24573.035154: cpu_idle: state=4294967295 cpu_id=0
41374          <idle>-0     (-----) [005] d..2 24573.035154: 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
41375           <...>-13157 (-----) [006] d.h1 24573.035155: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
41376          <idle>-0     (-----) [002] .n.1 24573.035156: cpu_idle: state=4294967295 cpu_id=2
41377          <idle>-0     (-----) [000] d..2 24573.035159: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
41378         sugov:4-560   (  560) [005] d..2 24573.035159: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
41379          <idle>-0     (-----) [002] d..2 24573.035162: 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
41380           <...>-13194 (-----) [001] d..1 24573.035163: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
41381           <...>-13154 (-----) [005] d.h1 24573.035164: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=005
41382 id.nn.benchmark-13160 (13131) [004] d.h1 24573.035175: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
41383         sugov:0-559   (  559) [002] d..2 24573.035189: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
41384 crtc_commit:111-253   (  253) [000] d..2 24573.035248: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
41385 id.nn.benchmark-13158 (13131) [000] d.h4 24573.035377: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
41386 id.nn.benchmark-13158 (13131) [000] d.h5 24573.035390: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
41387          <idle>-0     (-----) [003] .n.1 24573.035396: cpu_idle: state=4294967295 cpu_id=3
41388          <idle>-0     (-----) [003] d..2 24573.035401: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
41389  crtc_event:111-254   (  254) [003] d..2 24573.035433: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
41390           <...>-13194 (-----) [001] ...1 24573.035780: tracing_mark_write: E|13131
41391           <...>-13194 (-----) [001] ...1 24573.035784: tracing_mark_write: E|13131
41392           <...>-13194 (-----) [001] ...1 24573.035803: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
41393           <...>-13194 (-----) [001] ...1 24573.035808: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
41394           <...>-13194 (-----) [001] ...1 24573.036503: tracing_mark_write: E|13131
41395           <...>-13194 (-----) [001] ...1 24573.036506: tracing_mark_write: E|13131
41396           <...>-13194 (-----) [001] ...1 24573.036522: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
41397           <...>-13194 (-----) [001] ...1 24573.036527: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
41398           <...>-13194 (-----) [001] ...1 24573.036860: tracing_mark_write: E|13131
41399           <...>-13194 (-----) [001] ...1 24573.036864: tracing_mark_write: E|13131
41400           <...>-13194 (-----) [001] ...1 24573.036875: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
41401           <...>-13194 (-----) [001] ...1 24573.036879: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
41402           <...>-13194 (-----) [001] ...1 24573.037128: tracing_mark_write: E|13131
41403           <...>-13194 (-----) [001] ...1 24573.037132: tracing_mark_write: E|13131
41404           <...>-13194 (-----) [001] ...1 24573.037142: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
41405           <...>-13194 (-----) [001] ...1 24573.037146: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
41406           <...>-13154 (-----) [005] d.h1 24573.037239: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=005
41407           <...>-13154 (-----) [005] d.h2 24573.037272: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
41408           <...>-13194 (-----) [001] dnh1 24573.037274: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
41409           <...>-13154 (-----) [005] d.h3 24573.037279: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
41410           <...>-13154 (-----) [005] d.h2 24573.037280: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
41411           <...>-13194 (-----) [001] d..2 24573.037282: sched_switch: prev_comm=id.nn.benchmark prev_pid=13194 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
41412 id.nn.benchmark-13160 (13131) [004] d..2 24573.037286: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
41413         sugov:4-560   (  560) [004] d..2 24573.037290: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
41414 id.nn.benchmark-13155 (13131) [002] dnh1 24573.037291: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
41415 id.nn.benchmark-13155 (13131) [002] d..2 24573.037298: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
41416         sugov:0-559   (  559) [002] d..2 24573.037306: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
41417        DispSync-23904 (23896) [001] d..1 24573.037310: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
41418        DispSync-23904 (23896) [001] d..2 24573.037323: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
41419 id.nn.benchmark-13156 (13131) [003] d..2 24573.037332: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
41420        DispSync-23904 (23896) [001] d..2 24573.037342: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13194 next_prio=110
41421  appEventThread-23905 (23896) [003] d..3 24573.037386: sched_waking: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=007
41422 id.nn.benchmark-13159 (13131) [007] dnh1 24573.037403: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=007
41423 id.nn.benchmark-13159 (13131) [007] d..2 24573.037406: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
41424  appEventThread-23905 (23896) [003] d..3 24573.037409: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
41425 s.nexuslauncher-24827 (24827) [007] d.h1 24573.037432: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
41426  appEventThread-23905 (23896) [003] d..2 24573.037468: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
41427 id.nn.benchmark-13160 (13131) [004] d.s2 24573.037558: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
41428           <...>-13194 (-----) [001] dnh1 24573.037581: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
41429           <...>-13154 (-----) [005] d.s2 24573.037583: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
41430           <...>-13194 (-----) [001] d..2 24573.037587: sched_switch: prev_comm=id.nn.benchmark prev_pid=13194 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
41431 s.nexuslauncher-24827 (24827) [007] .... 24573.037591: binder_transaction: transaction=1669704 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
41432 s.nexuslauncher-24827 (24827) [007] d..4 24573.037596: sched_waking: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=000
41433  kworker/u16:10-23868 (23868) [001] d.h1 24573.037599: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
41434 s.nexuslauncher-24827 (24827) [007] d..5 24573.037612: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=004
41435 id.nn.benchmark-13160 (13131) [004] d..2 24573.037630: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
41436  Binder:23896_3-23986 (23896) [004] .... 24573.037634: binder_transaction_received: transaction=1669704
41437  Binder:23896_3-23986 (23896) [004] d..1 24573.037653: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
41438  kworker/u16:10-23868 (23868) [001] dnh3 24573.037668: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
41439  kworker/u16:10-23868 (23868) [001] d..2 24573.037673: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
41440  Binder:23896_3-23986 (23896) [004] d..2 24573.037673: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
41441  appEventThread-23905 (23896) [001] d..2 24573.037700: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
41442     rcu_preempt-7     (    7) [001] d..2 24573.037706: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
41443     rcu_preempt-7     (    7) [001] d..3 24573.037718: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
41444     rcu_preempt-7     (    7) [001] d..2 24573.037720: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
41445     rcu_preempt-7     (    7) [001] d..2 24573.037745: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
41446           <...>-13157 (-----) [006] dnh1 24573.037749: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
41447           <...>-13157 (-----) [006] d..2 24573.037752: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
41448     rcu_preempt-7     (    7) [001] d..3 24573.037755: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
41449         rcuop/6-61    (   61) [006] d..2 24573.037758: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=006
41450     rcu_preempt-7     (    7) [001] d..2 24573.037766: 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
41451         rcuop/6-61    (   61) [006] d..3 24573.037769: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=006
41452         rcuop/6-61    (   61) [006] d..2 24573.037774: 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
41453         rcuop/2-29    (   29) [001] d..2 24573.037777: 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
41454         rcuop/7-69    (   69) [006] d..2 24573.037780: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
41455         rcuop/0-10    (   10) [001] d..2 24573.037782: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
41456         rcuop/0-10    (   10) [001] d..3 24573.037792: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
41457         rcuop/0-10    (   10) [001] d..2 24573.037800: 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
41458         rcuop/1-21    (   21) [001] d..2 24573.037833: 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
41459 s.nexuslauncher-24827 (24827) [007] d..3 24573.037867: sched_waking: comm=GoogleApiHandle pid=24986 prio=129 target_cpu=006
41460  kworker/u16:10-23868 (23868) [001] d..2 24573.037870: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13194 next_prio=110
41461 s.nexuslauncher-24827 (24827) [007] d..4 24573.037880: sched_wakeup: comm=GoogleApiHandle pid=24986 prio=129 target_cpu=006
41462 s.nexuslauncher-24827 (24827) [007] .... 24573.038121: binder_transaction: transaction=1669705 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x11 code=0x13
41463 s.nexuslauncher-24827 (24827) [007] d..4 24573.038128: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
41464 s.nexuslauncher-24827 (24827) [007] d.h5 24573.038160: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
41465           <...>-13194 (-----) [001] dnh1 24573.038161: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=001
41466 s.nexuslauncher-24827 (24827) [007] d.h6 24573.038166: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
41467 s.nexuslauncher-24827 (24827) [007] d.h5 24573.038166: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
41468           <...>-13194 (-----) [001] d..2 24573.038166: sched_switch: prev_comm=id.nn.benchmark prev_pid=13194 prev_prio=110 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
41469 id.nn.benchmark-13160 (13131) [004] d..2 24573.038172: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
41470         sugov:4-560   (  560) [004] d..2 24573.038176: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
41471  Binder:23968_1-23981 (23968) [001] dnh2 24573.038181: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
41472  Binder:23968_1-23981 (23968) [001] d..2 24573.038187: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
41473         sugov:0-559   (  559) [001] d..2 24573.038193: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
41474  Binder:23968_1-23981 (23968) [001] .... 24573.038196: binder_transaction_received: transaction=1669705
41475 s.nexuslauncher-24827 (24827) [007] d..2 24573.038197: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
41476<...>-24151 ( 24151) [007] .... 24573.038330: binder_transaction: transaction=1669706 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
41477<...>-24151 ( 24151) [007] d..4 24573.038333: sched_waking: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=004
41478<...>-24151 ( 24151) [007] d..5 24573.038342: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=004
41479 id.nn.benchmark-13160 (13131) [004] d..2 24573.038348: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
41480  Binder:23896_3-23986 (23896) [004] .... 24573.038349: binder_transaction_received: transaction=1669706
41481  Binder:23896_3-23986 (23896) [004] d..1 24573.038353: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
41482<...>-24151 ( 24151) [007] d..3 24573.038358: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
41483  Binder:23896_3-23986 (23896) [004] d..2 24573.038362: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
41484  Binder:23968_1-23981 (23968) [001] dnh1 24573.038364: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
41485<...>-24151 ( 24151) [007] d..4 24573.038370: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
41486  Binder:23968_1-23981 (23968) [001] d..2 24573.038372: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
41487  appEventThread-23905 (23896) [001] d..2 24573.038394: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
41488<...>-24151 ( 24151) [007] d..2 24573.038443: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
41489  Binder:23968_1-23981 (23968) [001] .... 24573.038465: binder_transaction: transaction=1669707 dest_node=1309275 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
41490  Binder:23968_1-23981 (23968) [001] ...2 24573.038476: binder_set_priority: proc=23896 thread=23986 old=120 => new=116 desired=116
41491  Binder:23968_1-23981 (23968) [001] d..4 24573.038478: sched_waking: comm=Binder:23896_3 pid=23986 prio=116 target_cpu=004
41492 id.nn.benchmark-13160 (13131) [004] dnh1 24573.038493: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=116 target_cpu=004
41493 id.nn.benchmark-13160 (13131) [004] d..2 24573.038495: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=116
41494  Binder:23968_1-23981 (23968) [001] d..2 24573.038496: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=116 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13194 next_prio=110
41495  Binder:23896_3-23986 (23896) [004] .... 24573.038497: binder_transaction_received: transaction=1669707
41496    RenderThread-24437 (24151) [007] d..1 24573.038498: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
41497  Binder:23896_3-23986 (23896) [004] .... 24573.038525: binder_transaction: transaction=1669708 dest_node=0 dest_proc=23968 dest_thread=23981 reply=1 flags=0x0 code=0x0
41498  Binder:23896_3-23986 (23896) [004] d..2 24573.038527: sched_waking: comm=Binder:23968_1 pid=23981 prio=116 target_cpu=001
41499           <...>-13194 (-----) [001] dnh1 24573.038527: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
41500           <...>-13194 (-----) [001] d..2 24573.038534: sched_switch: prev_comm=id.nn.benchmark prev_pid=13194 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
41501  Binder:23896_3-23986 (23896) [004] .... 24573.038537: binder_set_priority: proc=23896 thread=23986 old=116 => new=120 desired=120
41502<...>-24151 ( 24151) [001] d.h3 24573.038540: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=116 target_cpu=001
41503  Binder:23896_3-23986 (23896) [004] d..2 24573.038549: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
41504    RenderThread-24437 (24151) [007] .... 24573.038564: binder_transaction: transaction=1669709 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
41505    RenderThread-24437 (24151) [007] d..4 24573.038566: sched_waking: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=004
41506    RenderThread-24437 (24151) [007] d..5 24573.038574: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=004
41507    RenderThread-24437 (24151) [007] d..2 24573.038579: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
41508 id.nn.benchmark-13160 (13131) [004] d..2 24573.038580: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
41509  Binder:23896_3-23986 (23896) [004] .... 24573.038582: binder_transaction_received: transaction=1669709
41510<...>-24151 ( 24151) [001] d..2 24573.038584: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=116
41511  Binder:23968_1-23981 (23968) [001] .... 24573.038589: binder_transaction_received: transaction=1669708
41512  Binder:23896_3-23986 (23896) [004] .... 24573.038610: binder_transaction: transaction=1669710 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
41513  Binder:23968_1-23981 (23968) [001] d..5 24573.038615: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
41514  Binder:23896_3-23986 (23896) [004] d..2 24573.038636: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
41515 id.nn.benchmark-13159 (13131) [007] dnh1 24573.038640: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
41516  Binder:23896_3-23986 (23896) [004] d..3 24573.038641: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
41517  Binder:23896_3-23986 (23896) [004] d..3 24573.038644: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
41518 id.nn.benchmark-13159 (13131) [007] d..2 24573.038645: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
41519  Binder:23896_3-23986 (23896) [004] d..4 24573.038648: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
41520  Binder:23896_3-23986 (23896) [004] d..2 24573.038656: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
41521  Binder:23896_5-25989 (23896) [004] d..2 24573.038660: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
41522<...>-23903 ( 23896) [007] d..2 24573.038668: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
41523    RenderThread-24437 (24151) [007] .... 24573.038670: binder_transaction_received: transaction=1669710
41524  Binder:23968_1-23981 (23968) [001] d..3 24573.039044: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=000
41525           <...>-13157 (-----) [006] dnh1 24573.039069: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=006
41526           <...>-13157 (-----) [006] d..2 24573.039092: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
41527  Binder:23968_1-23981 (23968) [001] d.h3 24573.039094: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
41528  Binder:23968_1-23981 (23968) [001] d.h3 24573.039101: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
41529 id.nn.benchmark-13160 (13131) [004] dnh1 24573.039105: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
41530  Binder:23968_1-23981 (23968) [001] dnh4 24573.039108: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
41531 id.nn.benchmark-13160 (13131) [004] d..2 24573.039108: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
41532         sugov:4-560   (  560) [004] d..2 24573.039111: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
41533<...>-23994 ( 23968) [006] d..2 24573.039111: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=GoogleApiHandle next_pid=24986 next_prio=129
41534  Binder:23968_1-23981 (23968) [001] d..2 24573.039113: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=118 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
41535         sugov:0-559   (  559) [001] d..2 24573.039121: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=118
41536  Binder:23968_1-23981 (23968) [001] d..1 24573.039127: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=006
41537<...>-24986 ( 24827) [006] dnh1 24573.039140: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=006
41538<...>-24986 ( 24827) [006] d..2 24573.039143: sched_switch: prev_comm=GoogleApiHandle prev_pid=24986 prev_prio=129 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
41539<...>-23994 ( 23968) [006] d..2 24573.039156: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=GoogleApiHandle next_pid=24986 next_prio=129
41540  Binder:23968_1-23981 (23968) [001] d..1 24573.039193: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=006
41541<...>-24986 ( 24827) [006] dnh1 24573.039207: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=006
41542<...>-24986 ( 24827) [006] d..2 24573.039210: sched_switch: prev_comm=GoogleApiHandle prev_pid=24986 prev_prio=129 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
41543<...>-23994 ( 23968) [006] .... 24573.039261: binder_transaction: transaction=1669711 dest_node=1303001 dest_proc=24655 dest_thread=0 reply=0 flags=0x11 code=0x1
41544<...>-23994 ( 23968) [006] d..4 24573.039265: sched_waking: comm=Binder:24655_1 pid=24669 prio=120 target_cpu=007
41545  Binder:23968_1-23981 (23968) [001] d..5 24573.039278: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
41546<...>-23994 ( 23968) [006] d..5 24573.039280: sched_wakeup: comm=Binder:24655_1 pid=24669 prio=120 target_cpu=007
41547    RenderThread-24437 (24151) [007] d..2 24573.039288: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=Binder:24655_1 next_pid=24669 next_prio=120
41548  Binder:24655_1-24669 (24655) [007] .... 24573.039293: binder_transaction_received: transaction=1669711
41549 id.nn.benchmark-13160 (13131) [004] dnh1 24573.039302: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
41550 id.nn.benchmark-13160 (13131) [004] d..2 24573.039305: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
41551<...>-23994 ( 23968) [006] d..2 24573.039309: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=GoogleApiHandle next_pid=24986 next_prio=129
41552<...>-23903 ( 23896) [004] d..2 24573.039314: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
41553  Binder:23968_1-23981 (23968) [001] d..2 24573.039315: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13194 next_prio=110
41554  Binder:24655_1-24669 (24655) [007] d..2 24573.039434: sched_switch: prev_comm=Binder:24655_1 prev_pid=24669 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
41555<...>-24986 ( 24827) [006] .... 24573.039554: binder_transaction: transaction=1669712 dest_node=1669305 dest_proc=24741 dest_thread=0 reply=0 flags=0x10 code=0x2e
41556<...>-24986 ( 24827) [006] ...2 24573.039588: binder_set_priority: proc=24741 thread=25141 old=120 => new=129 desired=129
41557    RenderThread-24437 (24151) [007] d..2 24573.039591: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
41558<...>-24986 ( 24827) [006] d..4 24573.039593: sched_waking: comm=Binder:24741_4 pid=25141 prio=129 target_cpu=007
41559<...>-24986 ( 24827) [006] d.h5 24573.039631: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
41560           <...>-13194 (-----) [001] d.h1 24573.039633: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=129 target_cpu=001
41561<...>-24986 ( 24827) [006] d.h6 24573.039637: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
41562<...>-24986 ( 24827) [006] d.h5 24573.039638: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
41563 id.nn.benchmark-13160 (13131) [004] d..2 24573.039643: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
41564         sugov:4-560   (  560) [004] d..2 24573.039646: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
41565<...>-24986 ( 24827) [006] d..2 24573.039647: sched_switch: prev_comm=GoogleApiHandle prev_pid=24986 prev_prio=129 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
41566           <...>-13194 (-----) [001] dnh1 24573.039648: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
41567           <...>-13194 (-----) [001] d..2 24573.039653: sched_switch: prev_comm=id.nn.benchmark prev_pid=13194 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
41568         sugov:0-559   (  559) [001] d..2 24573.039661: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=129
41569<...>-25141 ( 24741) [001] .... 24573.039669: binder_transaction_received: transaction=1669712
41570 id.nn.benchmark-13159 (13131) [007] d.h1 24573.039692: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
41571 id.nn.benchmark-13159 (13131) [007] d.h2 24573.039697: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
41572 id.nn.benchmark-13159 (13131) [007] d.h2 24573.039699: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
41573 id.nn.benchmark-13158 (13131) [000] d.h2 24573.039813: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
41574 id.nn.benchmark-13158 (13131) [000] d.h3 24573.039827: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
41575<...>-25141 ( 24741) [001] d..2 24573.039837: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=129 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
41576 kgsl_worker_thr-246   (  246) [001] d..2 24573.039850: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=129
41577<...>-25141 ( 24741) [001] .... 24573.040126: binder_transaction: transaction=1669715 dest_node=1270624 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xa
41578<...>-25141 ( 24741) [001] d..4 24573.040131: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=001
41579           <...>-13157 (-----) [006] dnh1 24573.040154: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
41580           <...>-13157 (-----) [006] d..2 24573.040180: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
41581<...>-25141 ( 24741) [001] d.h5 24573.040181: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
41582<...>-25141 ( 24741) [001] d.h5 24573.040189: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
41583 id.nn.benchmark-13160 (13131) [004] dnh1 24573.040191: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
41584 id.nn.benchmark-13160 (13131) [004] d..2 24573.040194: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
41585<...>-25141 ( 24741) [001] dnh6 24573.040195: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
41586         sugov:4-560   (  560) [004] d..2 24573.040196: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
41587  Binder:23968_1-23981 (23968) [006] .... 24573.040198: binder_transaction_received: transaction=1669715
41588<...>-25141 ( 24741) [001] d..2 24573.040201: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=129 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
41589         sugov:0-559   (  559) [001] d..2 24573.040208: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=129
41590<...>-25141 ( 24741) [001] d..2 24573.040215: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=129 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13194 next_prio=110
41591           <...>-13194 (-----) [001] ...1 24573.040221: tracing_mark_write: E|13131
41592           <...>-13194 (-----) [001] ...1 24573.040230: tracing_mark_write: E|13131
41593           <...>-13194 (-----) [001] ...1 24573.040252: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
41594           <...>-13194 (-----) [001] ...1 24573.040257: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
41595  Binder:23968_1-23981 (23968) [006] .... 24573.040271: binder_transaction: transaction=1669716 dest_node=0 dest_proc=24741 dest_thread=25141 reply=1 flags=0x0 code=0x0
41596  Binder:23968_1-23981 (23968) [006] d..2 24573.040274: sched_waking: comm=Binder:24741_4 pid=25141 prio=129 target_cpu=001
41597           <...>-13194 (-----) [001] d.h1 24573.040290: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=129 target_cpu=001
41598  Binder:23968_1-23981 (23968) [006] d..2 24573.040291: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
41599           <...>-13194 (-----) [001] ...1 24573.040681: tracing_mark_write: E|13131
41600           <...>-13194 (-----) [001] ...1 24573.040685: tracing_mark_write: E|13131
41601           <...>-13194 (-----) [001] ...1 24573.040708: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
41602           <...>-13194 (-----) [001] ...1 24573.040712: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
41603 id.nn.benchmark-13160 (13131) [004] d.s2 24573.040895: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
41604           <...>-13194 (-----) [001] dnH1 24573.040908: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
41605           <...>-13194 (-----) [001] d..2 24573.040923: sched_switch: prev_comm=id.nn.benchmark prev_pid=13194 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
41606  kworker/u16:10-23868 (23868) [001] d..2 24573.041211: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=129
41607<...>-25141 ( 24741) [001] .... 24573.041216: binder_transaction_received: transaction=1669716
41608<...>-25141 ( 24741) [001] d.h1 24573.041274: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
41609<...>-25141 ( 24741) [001] dnh2 24573.041284: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
41610<...>-25141 ( 24741) [001] d..2 24573.041292: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=129 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
41611        DispSync-23904 (23896) [001] d..1 24573.041309: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
41612        DispSync-23904 (23896) [001] d..2 24573.041321: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
41613 id.nn.benchmark-13158 (13131) [000] d..2 24573.041329: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
41614        DispSync-23904 (23896) [001] d..2 24573.041334: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=129
41615   sfEventThread-23906 (23896) [000] d..3 24573.041372: sched_waking: comm=android.anim pid=24041 prio=116 target_cpu=007
41616 id.nn.benchmark-13160 (13131) [004] dnh1 24573.041394: sched_wakeup: comm=android.anim pid=24041 prio=116 target_cpu=004
41617 id.nn.benchmark-13160 (13131) [004] d..2 24573.041397: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=116
41618   sfEventThread-23906 (23896) [000] d..3 24573.041401: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
41619   sfEventThread-23906 (23896) [000] d..4 24573.041413: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
41620<...>-25141 ( 24741) [001] d..2 24573.041423: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=129 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
41621   sfEventThread-23906 (23896) [000] d..2 24573.041427: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
41622<...>-24041 ( 23968) [004] .... 24573.041477: binder_transaction: transaction=1669717 dest_node=1271137 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
41623<...>-24041 ( 23968) [004] d..4 24573.041480: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
41624<...>-24041 ( 23968) [004] d..5 24573.041487: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
41625<...>-24041 ( 23968) [004] .... 24573.041733: binder_transaction: transaction=1669718 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
41626<...>-24041 ( 23968) [004] ...2 24573.041746: binder_set_priority: proc=23896 thread=25989 old=120 => new=116 desired=116
41627<...>-24041 ( 23968) [004] d..4 24573.041746: sched_waking: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=004
41628<...>-24041 ( 23968) [004] d..5 24573.041756: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=004
41629<...>-24041 ( 23968) [004] d..2 24573.041760: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
41630<...>-23903 ( 23896) [004] .... 24573.041762: binder_transaction_received: transaction=1669717
41631<...>-23903 ( 23896) [004] d..1 24573.041771: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
41632  surfaceflinger-23896 (23896) [001] ...1 24573.041780: tracing_mark_write: B|23896|HIDL::IMapper::freeBuffer::passthrough
41633 id.nn.benchmark-13158 (13131) [000] dnh1 24573.041782: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
41634<...>-23903 ( 23896) [004] d..2 24573.041782: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
41635  Binder:23896_5-25989 (23896) [004] .... 24573.041784: binder_transaction_received: transaction=1669718
41636 id.nn.benchmark-13158 (13131) [000] d..2 24573.041787: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
41637  surfaceflinger-23896 (23896) [001] ...1 24573.041797: tracing_mark_write: B|23896|FreeBuffer
41638   sfEventThread-23906 (23896) [000] d..2 24573.041802: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
41639  Binder:23896_5-25989 (23896) [004] d..2 24573.041825: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=116 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
41640  surfaceflinger-23896 (23896) [001] d..2 24573.041877: sched_waking: comm=system pid=105 prio=120 target_cpu=003
41641 id.nn.benchmark-13160 (13131) [004] d.h1 24573.041903: sched_wakeup: comm=system pid=105 prio=120 target_cpu=004
41642  surfaceflinger-23896 (23896) [001] d.h3 24573.041929: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
41643  surfaceflinger-23896 (23896) [001] d.h3 24573.041940: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
41644           <...>-13154 (-----) [005] dnh1 24573.041943: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
41645           <...>-13154 (-----) [005] d..2 24573.041946: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
41646         sugov:4-560   (  560) [005] d..2 24573.041950: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
41647  surfaceflinger-23896 (23896) [001] d.h4 24573.041953: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
41648 id.nn.benchmark-13158 (13131) [000] d..2 24573.041960: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
41649         sugov:0-559   (  559) [000] d..2 24573.041967: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
41650  surfaceflinger-23896 (23896) [001] ...1 24573.041971: tracing_mark_write: E|23896
41651  surfaceflinger-23896 (23896) [001] ...1 24573.041975: tracing_mark_write: B|23896|FreeBuffer
41652  surfaceflinger-23896 (23896) [001] ...1 24573.041988: tracing_mark_write: E|23896
41653  surfaceflinger-23896 (23896) [001] ...1 24573.041993: tracing_mark_write: E|23896
41654  surfaceflinger-23896 (23896) [001] d..1 24573.042264: sched_waking: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=004
41655 id.nn.benchmark-13160 (13131) [004] dnh1 24573.042285: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=004
41656 id.nn.benchmark-13160 (13131) [004] d..2 24573.042288: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
41657  Binder:23896_5-25989 (23896) [004] d..1 24573.042307: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
41658  Binder:23896_5-25989 (23896) [004] .... 24573.042318: binder_transaction: transaction=1669719 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
41659 id.nn.benchmark-13158 (13131) [000] dnh1 24573.042318: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
41660  Binder:23896_5-25989 (23896) [004] d..2 24573.042319: sched_waking: comm=android.anim pid=24041 prio=116 target_cpu=004
41661 id.nn.benchmark-13158 (13131) [000] d..2 24573.042322: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
41662  Binder:23896_5-25989 (23896) [004] d..3 24573.042332: sched_wakeup: comm=android.anim pid=24041 prio=116 target_cpu=005
41663  Binder:23896_5-25989 (23896) [004] .... 24573.042332: binder_set_priority: proc=23896 thread=25989 old=116 => new=120 desired=120
41664   sfEventThread-23906 (23896) [000] d..2 24573.042333: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
41665           <...>-13154 (-----) [005] d..2 24573.042338: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=116
41666<...>-24041 ( 23968) [005] .... 24573.042341: binder_transaction_received: transaction=1669719
41667  Binder:23896_5-25989 (23896) [004] d..2 24573.042346: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
41668<...>-24041 ( 23968) [005] d..3 24573.042515: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=004
41669<...>-24041 ( 23968) [005] d..4 24573.042527: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=004
41670 id.nn.benchmark-13160 (13131) [004] d..2 24573.042533: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
41671<...>-24003 ( 23968) [004] d..2 24573.042556: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
41672<...>-24041 ( 23968) [005] .... 24573.042629: binder_transaction: transaction=1669720 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
41673<...>-24041 ( 23968) [005] d..4 24573.042633: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
41674<...>-24041 ( 23968) [005] d..5 24573.042647: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
41675           <...>-13157 (-----) [006] d..2 24573.042653: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
41676<...>-24376 ( 24151) [006] .... 24573.042656: binder_transaction_received: transaction=1669720
41677<...>-24041 ( 23968) [005] d..3 24573.042689: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=006
41678<...>-24041 ( 23968) [005] d..4 24573.042695: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=006
41679<...>-24376 ( 24151) [006] d..3 24573.042708: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
41680<...>-24376 ( 24151) [006] d..4 24573.042723: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
41681<...>-24376 ( 24151) [006] d.h3 24573.042743: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
41682 id.nn.benchmark-13159 (13131) [007] d..2 24573.042743: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
41683<...>-24376 ( 24151) [006] d.h4 24573.042751: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
41684<...>-24376 ( 24151) [006] d.h3 24573.042752: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
41685<...>-24151 ( 24151) [007] d..2 24573.042758: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
41686 id.nn.benchmark-13160 (13131) [004] d..2 24573.042759: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
41687<...>-24376 ( 24151) [006] d..1 24573.042759: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
41688 id.nn.benchmark-13158 (13131) [000] dnh1 24573.042762: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
41689         sugov:4-560   (  560) [004] d..2 24573.042763: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
41690 id.nn.benchmark-13158 (13131) [000] d..2 24573.042766: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
41691<...>-24376 ( 24151) [006] d..2 24573.042766: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
41692    RenderThread-24437 (24151) [007] d..2 24573.042769: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
41693         sugov:0-559   (  559) [000] d..2 24573.042772: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
41694<...>-24041 ( 23968) [005] .... 24573.042781: binder_transaction: transaction=1669721 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
41695<...>-24041 ( 23968) [005] ...2 24573.042784: binder_set_priority: proc=23896 thread=25989 old=120 => new=116 desired=116
41696<...>-24041 ( 23968) [005] d..4 24573.042785: sched_waking: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=004
41697<...>-24376 ( 24151) [006] d..2 24573.042792: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=23994 next_prio=118
41698<...>-24041 ( 23968) [005] d..5 24573.042793: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=004
41699<...>-24041 ( 23968) [005] d..2 24573.042798: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
41700 id.nn.benchmark-13160 (13131) [004] d..2 24573.042799: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
41701  Binder:23896_5-25989 (23896) [004] .... 24573.042801: binder_transaction_received: transaction=1669721
41702  Binder:23896_5-25989 (23896) [004] .... 24573.042809: binder_transaction: transaction=1669722 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
41703  Binder:23896_5-25989 (23896) [004] d..2 24573.042811: sched_waking: comm=android.anim pid=24041 prio=116 target_cpu=005
41704<...>-24151 ( 24151) [007] d..2 24573.042817: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
41705  Binder:23896_5-25989 (23896) [004] d..3 24573.042818: sched_wakeup: comm=android.anim pid=24041 prio=116 target_cpu=005
41706  Binder:23896_5-25989 (23896) [004] .... 24573.042819: binder_set_priority: proc=23896 thread=25989 old=116 => new=120 desired=120
41707    RenderThread-24437 (24151) [007] d..1 24573.042823: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
41708           <...>-13154 (-----) [005] d..2 24573.042824: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=116
41709<...>-24041 ( 23968) [005] .... 24573.042826: binder_transaction_received: transaction=1669722
41710<...>-23994 ( 23968) [006] d..3 24573.042831: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=001
41711  Binder:23896_5-25989 (23896) [004] d..2 24573.042835: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
41712    RenderThread-24437 (24151) [007] d..2 24573.042839: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=004
41713<...>-23994 ( 23968) [006] d..4 24573.042842: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=006
41714 id.nn.benchmark-13160 (13131) [004] d..2 24573.042857: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
41715<...>-23994 ( 23968) [006] d..2 24573.042867: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
41716 kgsl_worker_thr-246   (  246) [004] d..2 24573.042882: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
41717 kgsl_worker_thr-246   (  246) [004] d..2 24573.042892: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
41718  surfaceflinger-23896 (23896) [001] d.h1 24573.042896: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
41719<...>-23968 ( 23968) [006] .... 24573.042901: binder_transaction: transaction=1669723 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
41720<...>-23968 ( 23968) [006] d..4 24573.042903: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
41721<...>-23968 ( 23968) [006] d..5 24573.042908: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
41722<...>-23968 ( 23968) [006] d..2 24573.042926: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
41723<...>-24376 ( 24151) [006] .... 24573.042928: binder_transaction_received: transaction=1669723
41724    RenderThread-24437 (24151) [007] .... 24573.042942: binder_transaction: transaction=1669724 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
41725    RenderThread-24437 (24151) [007] d..4 24573.042947: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
41726<...>-24376 ( 24151) [006] d..3 24573.042953: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
41727    RenderThread-24437 (24151) [007] d..5 24573.042955: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
41728    RenderThread-24437 (24151) [007] d..2 24573.042960: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
41729 id.nn.benchmark-13160 (13131) [004] d..2 24573.042961: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
41730  Binder:23896_5-25989 (23896) [004] .... 24573.042963: binder_transaction_received: transaction=1669724
41731<...>-24376 ( 24151) [006] d..4 24573.042965: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
41732<...>-24376 ( 24151) [006] d..2 24573.042979: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
41733  Binder:23896_5-25989 (23896) [004] .... 24573.043004: binder_transaction: transaction=1669725 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
41734  Binder:23896_5-25989 (23896) [004] d..2 24573.043006: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
41735<...>-24151 ( 24151) [006] d..2 24573.043007: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
41736  Binder:23896_5-25989 (23896) [004] d..3 24573.043010: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
41737  Binder:23896_5-25989 (23896) [004] d..2 24573.043018: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
41738<...>-24041 ( 23968) [005] d..3 24573.043074: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
41739<...>-24041 ( 23968) [005] d..4 24573.043091: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
41740           <...>-13157 (-----) [006] d..2 24573.043109: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
41741  surfaceflinger-23896 (23896) [001] ...1 24573.043119: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
41742  surfaceflinger-23896 (23896) [001] ...1 24573.043123: tracing_mark_write: E|23896
41743<...>-24073 ( 23968) [006] d..2 24573.043126: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
41744<...>-24041 ( 23968) [005] d..1 24573.043144: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=004
41745<...>-24041 ( 23968) [005] d..2 24573.043151: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=004
41746 id.nn.benchmark-13160 (13131) [004] d..2 24573.043156: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
41747<...>-24041 ( 23968) [005] d..2 24573.043168: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
41748  surfaceflinger-23896 (23896) [001] .... 24573.043168: binder_transaction: transaction=1669726 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
41749  surfaceflinger-23896 (23896) [001] ...2 24573.043188: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
41750  surfaceflinger-23896 (23896) [001] d..4 24573.043198: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=005
41751           <...>-13154 (-----) [005] dnh1 24573.043214: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=005
41752           <...>-13154 (-----) [005] d..2 24573.043217: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
41753<...>-24003 ( 23968) [004] d..2 24573.043219: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
41754  surfaceflinger-23896 (23896) [001] d..2 24573.043220: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
41755  HwBinder:598_3-633   (  598) [005] .... 24573.043222: binder_transaction_received: transaction=1669726
41756  kworker/u16:10-23868 (23868) [001] d..2 24573.043249: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=129
41757  HwBinder:598_3-633   (  598) [005] ...1 24573.043252: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
41758<...>-25141 ( 24741) [001] .... 24573.043300: binder_transaction: transaction=1669727 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x3
41759<...>-25141 ( 24741) [001] d..4 24573.043304: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
41760  HwBinder:598_3-633   (  598) [005] ...1 24573.043319: tracing_mark_write: B|598|HWCSession::PresentDisplay::
41761           <...>-13157 (-----) [006] dnh1 24573.043319: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
41762           <...>-13157 (-----) [006] d..2 24573.043322: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
41763<...>-25141 ( 24741) [001] d..2 24573.043322: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=129 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13194 next_prio=110
41764  Binder:23968_1-23981 (23968) [006] .... 24573.043324: binder_transaction_received: transaction=1669727
41765           <...>-13194 (-----) [001] ...1 24573.043360: tracing_mark_write: E|13131
41766           <...>-13194 (-----) [001] ...1 24573.043365: tracing_mark_write: E|13131
41767           <...>-13194 (-----) [001] ...1 24573.043384: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
41768           <...>-13194 (-----) [001] ...1 24573.043389: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
41769  Binder:23968_1-23981 (23968) [006] .... 24573.043536: binder_transaction: transaction=1669728 dest_node=0 dest_proc=24741 dest_thread=25141 reply=1 flags=0x0 code=0x0
41770  Binder:23968_1-23981 (23968) [006] d..2 24573.043540: sched_waking: comm=Binder:24741_4 pid=25141 prio=129 target_cpu=001
41771  HwBinder:598_3-633   (  598) [005] ...1 24573.043546: tracing_mark_write: B|598|HWDeviceDRM::Validate::
41772           <...>-13194 (-----) [001] d.h1 24573.043557: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=129 target_cpu=001
41773  Binder:23968_1-23981 (23968) [006] d..2 24573.043559: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
41774  HwBinder:598_3-633   (  598) [005] ...1 24573.043767: tracing_mark_write: E|598
41775  HwBinder:598_3-633   (  598) [005] ...1 24573.043814: tracing_mark_write: B|598|HWDeviceDRM::Commit::
41776  HwBinder:598_3-633   (  598) [005] ...1 24573.043817: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
41777  HwBinder:598_3-633   (  598) [005] d..2 24573.043933: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
41778           <...>-13194 (-----) [001] dnh1 24573.043951: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
41779           <...>-13194 (-----) [001] d..2 24573.043957: sched_switch: prev_comm=id.nn.benchmark prev_pid=13194 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
41780  HwBinder:598_3-633   (  598) [005] ...1 24573.043973: tracing_mark_write: E|598
41781  HwBinder:598_3-633   (  598) [005] ...1 24573.043975: tracing_mark_write: E|598
41782  HwBinder:598_3-633   (  598) [005] ...1 24573.043992: tracing_mark_write: E|598
41783  HwBinder:598_3-633   (  598) [005] ...1 24573.044014: tracing_mark_write: E|598
41784  HwBinder:598_3-633   (  598) [005] .... 24573.044021: binder_transaction: transaction=1669729 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
41785  HwBinder:598_3-633   (  598) [005] d..2 24573.044026: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
41786  HwBinder:598_3-633   (  598) [005] .... 24573.044035: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
41787 id.nn.benchmark-13158 (13131) [000] dnh1 24573.044039: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
41788 id.nn.benchmark-13158 (13131) [000] d..2 24573.044044: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
41789  surfaceflinger-23896 (23896) [000] .... 24573.044048: binder_transaction_received: transaction=1669729
41790  HwBinder:598_3-633   (  598) [005] d..2 24573.044060: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
41791 crtc_commit:111-253   (  253) [001] d.s1 24573.044232: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
41792 crtc_commit:111-253   (  253) [001] d.s2 24573.044243: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
41793  surfaceflinger-23896 (23896) [000] d..2 24573.044350: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
41794 crtc_commit:111-253   (  253) [001] d..2 24573.044616: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
41795     rcu_preempt-7     (    7) [001] d..2 24573.044624: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
41796     rcu_preempt-7     (    7) [001] d..3 24573.044637: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
41797     rcu_preempt-7     (    7) [001] d..2 24573.044647: 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
41798         rcuop/4-45    (   45) [001] d..2 24573.044673: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13194 next_prio=110
41799           <...>-13194 (-----) [001] ...1 24573.044682: tracing_mark_write: E|13131
41800           <...>-13194 (-----) [001] ...1 24573.044686: tracing_mark_write: E|13131
41801           <...>-13194 (-----) [001] ...1 24573.044702: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
41802           <...>-13194 (-----) [001] ...1 24573.044706: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
41803           <...>-13194 (-----) [001] ...1 24573.045040: tracing_mark_write: E|13131
41804           <...>-13194 (-----) [001] ...1 24573.045043: tracing_mark_write: E|13131
41805           <...>-13194 (-----) [001] ...1 24573.045054: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
41806           <...>-13194 (-----) [001] ...1 24573.045058: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
41807           <...>-13194 (-----) [001] ...1 24573.045115: tracing_mark_write: E|13131
41808           <...>-13194 (-----) [001] ...1 24573.045118: tracing_mark_write: E|13131
41809           <...>-13194 (-----) [001] ...1 24573.045128: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
41810           <...>-13194 (-----) [001] ...1 24573.045131: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
41811           <...>-13194 (-----) [001] ...1 24573.045151: tracing_mark_write: E|13131
41812           <...>-13194 (-----) [001] ...1 24573.045154: tracing_mark_write: E|13131
41813           <...>-13194 (-----) [001] ...1 24573.045165: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
41814           <...>-13194 (-----) [001] ...1 24573.045168: tracing_mark_write: E|13131
41815           <...>-13194 (-----) [001] ...1 24573.045179: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
41816           <...>-13194 (-----) [001] ...1 24573.045184: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
41817 id.nn.benchmark-13159 (13131) [007] d..2 24573.045202: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
41818    RenderThread-24437 (24151) [007] .... 24573.045205: binder_transaction_received: transaction=1669725
41819    RenderThread-24437 (24151) [007] d..2 24573.045260: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
41820           <...>-13157 (-----) [006] d..3 24573.045604: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
41821           <...>-13157 (-----) [006] d..2 24573.045613: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
41822 id.nn.benchmark-13158 (13131) [000] dnh1 24573.045617: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
41823 id.nn.benchmark-13158 (13131) [000] d..2 24573.045622: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
41824          <idle>-0     (-----) [006] d..1 24573.045630: cpu_idle: state=0 cpu_id=6
41825          <idle>-0     (-----) [006] .n.1 24573.045651: cpu_idle: state=4294967295 cpu_id=6
41826          <idle>-0     (-----) [006] d..2 24573.045674: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
41827     migration/0-13    (   13) [000] d.h3 24573.045675: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
41828     migration/0-13    (   13) [000] d.h3 24573.045687: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
41829<...>-105 ( 105) [007] dnh2 24573.045692: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
41830     migration/0-13    (   13) [000] d.h4 24573.045693: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
41831     migration/0-13    (   13) [000] d..2 24573.045701: 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
41832<...>-105 ( 105) [007] d..2 24573.045707: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
41833         sugov:4-560   (  560) [007] d..2 24573.045712: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
41834         sugov:0-559   (  559) [000] d..2 24573.045716: 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
41835          <idle>-0     (-----) [000] d..1 24573.045733: cpu_idle: state=0 cpu_id=0
41836 id.nn.benchmark-13160 (13131) [004] d..3 24573.045775: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
41837 id.nn.benchmark-13160 (13131) [004] d..2 24573.045784: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
41838 id.nn.benchmark-13155 (13131) [002] dnh1 24573.045788: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
41839 id.nn.benchmark-13155 (13131) [002] d..2 24573.045795: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
41840          <idle>-0     (-----) [004] d..1 24573.045796: cpu_idle: state=0 cpu_id=4
41841          <idle>-0     (-----) [004] .n.1 24573.045821: cpu_idle: state=4294967295 cpu_id=4
41842          <idle>-0     (-----) [004] d..2 24573.045839: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
41843     migration/2-25    (   25) [002] d..2 24573.045852: 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
41844          <idle>-0     (-----) [002] d..1 24573.045867: cpu_idle: state=0 cpu_id=2
41845           <...>-13194 (-----) [001] ...1 24573.046038: tracing_mark_write: E|13131
41846           <...>-13194 (-----) [001] ...1 24573.046040: tracing_mark_write: E|13131
41847           <...>-13194 (-----) [001] ...1 24573.046051: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
41848           <...>-13194 (-----) [001] ...1 24573.046055: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
41849           <...>-13194 (-----) [001] d..1 24573.046075: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=006
41850           <...>-13194 (-----) [001] d..1 24573.046097: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
41851<...>-105 ( 105) [007] dnh1 24573.046098: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=007
41852<...>-105 ( 105) [007] d..2 24573.046102: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
41853           <...>-13194 (-----) [001] d..1 24573.046107: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=004
41854           <...>-13157 (-----) [007] dnh1 24573.046109: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
41855           <...>-13157 (-----) [007] d..2 24573.046111: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
41856 id.nn.benchmark-13155 (13131) [004] d.h1 24573.046118: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=004
41857          <idle>-0     (-----) [000] ...1 24573.046907: cpu_idle: state=4294967295 cpu_id=0
41858          <idle>-0     (-----) [000] d..1 24573.046910: cpu_idle: state=0 cpu_id=0
41859          <idle>-0     (-----) [002] ...1 24573.047141: cpu_idle: state=4294967295 cpu_id=2
41860          <idle>-0     (-----) [002] d..1 24573.047143: cpu_idle: state=0 cpu_id=2
41861           <...>-13154 (-----) [005] d.s2 24573.047555: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
41862          <idle>-0     (-----) [000] dnH2 24573.047577: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
41863          <idle>-0     (-----) [000] .n.1 24573.047582: cpu_idle: state=4294967295 cpu_id=0
41864          <idle>-0     (-----) [000] d..2 24573.047589: 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
41865  kworker/u16:10-23868 (23868) [000] d..2 24573.047698: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
41866<...>-105 ( 105) [000] d.h4 24573.047725: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
41867<...>-105 ( 105) [000] d.h4 24573.047737: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
41868 id.nn.benchmark-13158 (13131) [006] dnh1 24573.047740: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
41869 id.nn.benchmark-13158 (13131) [006] d..2 24573.047743: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
41870         sugov:4-560   (  560) [006] d..2 24573.047747: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
41871<...>-105 ( 105) [000] d.h5 24573.047749: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
41872          <idle>-0     (-----) [002] .n.1 24573.047754: cpu_idle: state=4294967295 cpu_id=2
41873          <idle>-0     (-----) [002] d..2 24573.047760: 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
41874         sugov:0-559   (  559) [002] d..2 24573.047787: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
41875<...>-105 ( 105) [000] d..2 24573.048436: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41876          <idle>-0     (-----) [000] d..1 24573.048445: cpu_idle: state=0 cpu_id=0
41877          <idle>-0     (-----) [000] d.h5 24573.049217: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
41878          <idle>-0     (-----) [000] dnh6 24573.049232: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
41879          <idle>-0     (-----) [000] dnh5 24573.049235: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
41880          <idle>-0     (-----) [000] dnh6 24573.049244: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
41881           <...>-13194 (-----) [001] d..2 24573.049253: sched_switch: prev_comm=id.nn.benchmark prev_pid=13194 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
41882          <idle>-0     (-----) [000] .n.1 24573.049256: cpu_idle: state=4294967295 cpu_id=0
41883          <idle>-0     (-----) [000] d..2 24573.049261: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
41884  crtc_event:111-254   (  254) [000] d..2 24573.049290: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=129
41885<...>-25141 ( 24741) [000] .... 24573.049297: binder_transaction_received: transaction=1669728
41886 crtc_commit:111-253   (  253) [001] d..2 24573.049374: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13194 next_prio=110
41887<...>-25141 ( 24741) [000] .... 24573.049787: binder_transaction: transaction=1669730 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x6a
41888<...>-25141 ( 24741) [000] d..4 24573.049793: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
41889<...>-25141 ( 24741) [000] dn.5 24573.049810: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=000
41890<...>-25141 ( 24741) [000] dnh5 24573.049841: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
41891<...>-25141 ( 24741) [000] dnh5 24573.049849: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
41892 id.nn.benchmark-13158 (13131) [006] dnh1 24573.049852: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
41893 id.nn.benchmark-13158 (13131) [006] d..2 24573.049854: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
41894         sugov:4-560   (  560) [006] d..2 24573.049857: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
41895<...>-25141 ( 24741) [000] dnh6 24573.049862: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
41896<...>-25141 ( 24741) [000] d..2 24573.049869: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=129 prev_state=R+ ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
41897           <...>-13194 (-----) [001] d..2 24573.049870: sched_switch: prev_comm=id.nn.benchmark prev_pid=13194 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
41898  Binder:23968_1-23981 (23968) [000] .... 24573.049874: binder_transaction_received: transaction=1669730
41899         sugov:0-559   (  559) [001] d..2 24573.049877: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13194 next_prio=110
41900  Binder:23968_1-23981 (23968) [000] .... 24573.050057: binder_transaction: transaction=1669731 dest_node=0 dest_proc=24741 dest_thread=25141 reply=1 flags=0x0 code=0x0
41901  Binder:23968_1-23981 (23968) [000] d..2 24573.050082: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=129
41902<...>-25141 ( 24741) [000] .... 24573.050088: binder_transaction_received: transaction=1669731
41903 id.nn.benchmark-13155 (13131) [004] d..2 24573.050519: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
41904           <...>-13154 (-----) [005] d..3 24573.050529: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
41905           <...>-13154 (-----) [005] d..2 24573.050537: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
41906           <...>-13157 (-----) [002] dnh1 24573.050539: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
41907           <...>-13157 (-----) [002] d..2 24573.050544: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
41908          <idle>-0     (-----) [005] d..1 24573.050545: cpu_idle: state=0 cpu_id=5
41909           <...>-13194 (-----) [001] ...1 24573.050551: tracing_mark_write: E|13131
41910           <...>-13194 (-----) [001] ...1 24573.050555: tracing_mark_write: E|13131
41911 id.nn.benchmark-13158 (13131) [006] d..2 24573.050558: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
41912 id.nn.benchmark-13159 (13131) [007] d..2 24573.050559: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
41913          <idle>-0     (-----) [006] d..1 24573.050561: cpu_idle: state=0 cpu_id=6
41914          <idle>-0     (-----) [005] .n.1 24573.050565: cpu_idle: state=4294967295 cpu_id=5
41915          <idle>-0     (-----) [007] d..1 24573.050568: cpu_idle: state=0 cpu_id=7
41916          <idle>-0     (-----) [005] d..2 24573.050585: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
41917     migration/2-25    (   25) [002] d.h3 24573.050586: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
41918     migration/2-25    (   25) [002] d.h3 24573.050594: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
41919          <idle>-0     (-----) [006] dnh2 24573.050598: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
41920          <idle>-0     (-----) [006] .n.1 24573.050600: cpu_idle: state=4294967295 cpu_id=6
41921          <idle>-0     (-----) [006] d..2 24573.050602: 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
41922     migration/2-25    (   25) [002] d.h4 24573.050603: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
41923     migration/2-25    (   25) [002] d..2 24573.050609: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
41924         sugov:4-560   (  560) [006] d..2 24573.050612: 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
41925          <idle>-0     (-----) [006] d..1 24573.050614: cpu_idle: state=0 cpu_id=6
41926         sugov:0-559   (  559) [002] d..2 24573.050620: 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
41927          <idle>-0     (-----) [002] d..1 24573.050628: cpu_idle: state=0 cpu_id=2
41928           <...>-13194 (-----) [001] d..2 24573.050632: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
41929           <...>-13194 (-----) [001] d..3 24573.050648: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
41930           <...>-13194 (-----) [001] ...1 24573.050674: tracing_mark_write: E|13131
41931           <...>-13194 (-----) [001] d..1 24573.050681: sched_waking: comm=id.nn.benchmark pid=13193 prio=110 target_cpu=001
41932           <...>-13194 (-----) [001] d..2 24573.050700: sched_wakeup: comm=id.nn.benchmark pid=13193 prio=110 target_cpu=002
41933          <idle>-0     (-----) [002] .n.1 24573.050705: cpu_idle: state=4294967295 cpu_id=2
41934          <idle>-0     (-----) [002] d..2 24573.050712: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13193 next_prio=110
41935           <...>-13194 (-----) [001] ...1 24573.050718: tracing_mark_write: E|13131
41936           <...>-13193 (-----) [002] d..2 24573.050734: sched_switch: prev_comm=id.nn.benchmark prev_pid=13193 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41937          <idle>-0     (-----) [002] d..1 24573.050740: cpu_idle: state=0 cpu_id=2
41938          <idle>-0     (-----) [007] ...1 24573.050759: cpu_idle: state=4294967295 cpu_id=7
41939          <idle>-0     (-----) [007] d..1 24573.050760: cpu_idle: state=0 cpu_id=7
41940          <idle>-0     (-----) [006] ...1 24573.050808: cpu_idle: state=4294967295 cpu_id=6
41941          <idle>-0     (-----) [006] d..1 24573.050811: cpu_idle: state=0 cpu_id=6
41942 id.nn.benchmark-13156 (13131) [003] d.h2 24573.050892: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
41943           <...>-13194 (-----) [001] d.s2 24573.050896: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
41944 id.nn.benchmark-13156 (13131) [003] dnh3 24573.050900: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
41945 id.nn.benchmark-13156 (13131) [003] dns2 24573.050906: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
41946<...>-25141 ( 24741) [000] d..1 24573.050911: sched_waking: comm=lowpool[8] pid=27168 prio=130 target_cpu=007
41947           <...>-13194 (-----) [001] d.s3 24573.050912: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
41948           <...>-13194 (-----) [001] d.s1 24573.050914: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
41949          <idle>-0     (-----) [002] .n.1 24573.050917: cpu_idle: state=4294967295 cpu_id=2
41950          <idle>-0     (-----) [002] d..2 24573.050923: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
41951           <...>-13194 (-----) [001] dns2 24573.050930: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
41952 id.nn.benchmark-13156 (13131) [003] dns3 24573.050931: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
41953           <...>-13194 (-----) [001] d..2 24573.050936: sched_switch: prev_comm=id.nn.benchmark prev_pid=13194 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
41954  crtc_event:111-254   (  254) [002] d..2 24573.050939: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
41955 id.nn.benchmark-13156 (13131) [003] dns2 24573.050942: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
41956     rcu_preempt-7     (    7) [001] d..2 24573.050949: 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
41957<...>-25141 ( 24741) [000] d..2 24573.050952: sched_wakeup: comm=lowpool[8] pid=27168 prio=130 target_cpu=002
41958 id.nn.benchmark-13156 (13131) [003] dns3 24573.050961: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
41959 id.nn.benchmark-13156 (13131) [003] d..2 24573.050988: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
41960<...>-25141 ( 24741) [000] d..2 24573.050994: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=129 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
41961  kworker/u16:15-18488 (18488) [000] d..2 24573.051007: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=129
41962          <idle>-0     (-----) [006] .n.1 24573.051009: cpu_idle: state=4294967295 cpu_id=6
41963          <idle>-0     (-----) [006] d..2 24573.051029: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
41964<...>-33 ( 33) [003] d..2 24573.051042: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41965          <idle>-0     (-----) [003] d..1 24573.051067: cpu_idle: state=0 cpu_id=3
41966     logd.writer-563   (  555) [001] d..2 24573.051074: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13194 next_prio=110
41967          <idle>-0     (-----) [003] ...1 24573.051078: cpu_idle: state=4294967295 cpu_id=3
41968          <idle>-0     (-----) [003] d..1 24573.051080: cpu_idle: state=0 cpu_id=3
41969<...>-25141 ( 24741) [000] .... 24573.051130: binder_transaction: transaction=1669732 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x3
41970<...>-25141 ( 24741) [000] d..4 24573.051134: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=000
41971<...>-25141 ( 24741) [000] dn.5 24573.051142: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=000
41972<...>-25141 ( 24741) [000] d..2 24573.051148: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=129 prev_state=R+ ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
41973  Binder:23968_1-23981 (23968) [000] .... 24573.051152: binder_transaction_received: transaction=1669732
41974           <...>-13194 (-----) [001] d..1 24573.051175: sched_waking: comm=id.nn.benchmark pid=13193 prio=110 target_cpu=002
41975           <...>-13194 (-----) [001] d..2 24573.051191: sched_wakeup: comm=id.nn.benchmark pid=13193 prio=110 target_cpu=003
41976          <idle>-0     (-----) [003] .n.1 24573.051195: cpu_idle: state=4294967295 cpu_id=3
41977          <idle>-0     (-----) [003] d..2 24573.051202: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13193 next_prio=110
41978  kworker/u16:10-23868 (23868) [002] d..2 24573.051220: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
41979           <...>-13193 (-----) [003] d.s3 24573.051257: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
41980           <...>-13194 (-----) [001] d..2 24573.051277: sched_switch: prev_comm=id.nn.benchmark prev_pid=13194 prev_prio=110 prev_state=x ==> next_comm=swapper/1 next_pid=0 next_prio=120
41981           <...>-13193 (-----) [003] d.s4 24573.051283: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
41982           <...>-13193 (-----) [003] d.s4 24573.051289: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
41983          <idle>-0     (-----) [001] d..2 24573.051294: 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
41984           <...>-13193 (-----) [003] d..2 24573.051346: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
41985           <...>-13193 (-----) [003] d..3 24573.051357: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
41986<...>-27168 ( 24741) [002] d..2 24573.051358: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41987          <idle>-0     (-----) [002] d..1 24573.051367: cpu_idle: state=0 cpu_id=2
41988           <...>-13193 (-----) [003] d..1 24573.051420: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
41989           <...>-13193 (-----) [003] d..2 24573.051441: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
41990          <idle>-0     (-----) [002] .n.1 24573.051446: cpu_idle: state=4294967295 cpu_id=2
41991          <idle>-0     (-----) [002] d..2 24573.051453: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
41992  kworker/u16:10-23868 (23868) [001] d..2 24573.051456: 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
41993          <idle>-0     (-----) [001] d..1 24573.051465: cpu_idle: state=0 cpu_id=1
41994           <...>-13131 (-----) [002] d..2 24573.051478: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41995          <idle>-0     (-----) [002] d..1 24573.051504: cpu_idle: state=0 cpu_id=2
41996           <...>-13193 (-----) [003] d..1 24573.051526: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
41997           <...>-13193 (-----) [003] d..2 24573.051541: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
41998          <idle>-0     (-----) [001] .n.1 24573.051546: cpu_idle: state=4294967295 cpu_id=1
41999          <idle>-0     (-----) [001] d..2 24573.051552: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
42000  Binder:23968_1-23981 (23968) [000] d.h4 24573.051561: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
42001           <...>-13131 (-----) [001] ...1 24573.051578: tracing_mark_write: E|13131
42002  Binder:23968_1-23981 (23968) [000] d.h5 24573.051579: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
42003           <...>-13193 (-----) [003] d..2 24573.051579: sched_switch: prev_comm=id.nn.benchmark prev_pid=13193 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
42004          <idle>-0     (-----) [002] .n.1 24573.051584: cpu_idle: state=4294967295 cpu_id=2
42005           <...>-13131 (-----) [001] ...1 24573.051584: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
42006          <idle>-0     (-----) [002] d..2 24573.051589: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
42007           <...>-13131 (-----) [001] ...1 24573.051590: tracing_mark_write: E|13131
42008           <...>-13131 (-----) [001] ...1 24573.051594: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
42009           <...>-13131 (-----) [001] ...1 24573.051598: tracing_mark_write: E|13131
42010  Binder:23968_1-23981 (23968) [000] .... 24573.051618: binder_transaction: transaction=1669733 dest_node=0 dest_proc=24741 dest_thread=25141 reply=1 flags=0x0 code=0x0
42011  Binder:23968_1-23981 (23968) [000] d..2 24573.051643: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=129
42012 crtc_commit:111-253   (  253) [002] d..2 24573.051647: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42013<...>-25141 ( 24741) [000] .... 24573.051648: binder_transaction_received: transaction=1669733
42014     logd.writer-563   (  555) [003] d..2 24573.051654: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42015          <idle>-0     (-----) [002] d..1 24573.051654: cpu_idle: state=0 cpu_id=2
42016          <idle>-0     (-----) [003] d..1 24573.051666: cpu_idle: state=0 cpu_id=3
42017<...>-25141 ( 24741) [000] d.h4 24573.051853: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
42018<...>-25141 ( 24741) [000] d.h5 24573.051866: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
42019          <idle>-0     (-----) [002] .n.1 24573.051871: cpu_idle: state=4294967295 cpu_id=2
42020          <idle>-0     (-----) [002] d..2 24573.051876: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
42021  crtc_event:111-254   (  254) [002] d..2 24573.051890: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42022          <idle>-0     (-----) [002] d..1 24573.051895: cpu_idle: state=0 cpu_id=2
42023           <...>-13131 (-----) [001] ...1 24573.051917: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
42024           <...>-13131 (-----) [001] d..2 24573.051947: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
42025           <...>-13131 (-----) [001] d..3 24573.051960: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
42026           <...>-13131 (-----) [001] ...1 24573.051977: tracing_mark_write: E|13131
42027           <...>-13131 (-----) [001] ...1 24573.051983: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
42028           <...>-13131 (-----) [001] ...1 24573.051988: tracing_mark_write: E|13131
42029           <...>-13131 (-----) [001] ...1 24573.051992: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
42030           <...>-13131 (-----) [001] ...1 24573.051997: tracing_mark_write: E|13131
42031           <...>-13131 (-----) [001] ...1 24573.052000: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
42032          <idle>-0     (-----) [002] .n.1 24573.052127: cpu_idle: state=4294967295 cpu_id=2
42033           <...>-13131 (-----) [001] ...1 24573.052131: tracing_mark_write: E|13131
42034          <idle>-0     (-----) [002] d..2 24573.052133: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13195 next_prio=110
42035           <...>-13131 (-----) [001] ...1 24573.052135: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
42036           <...>-13131 (-----) [001] d..2 24573.052144: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
42037           <...>-13195 (-----) [002] d..2 24573.052197: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
42038     logd.writer-563   (  555) [001] d..2 24573.052197: 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
42039          <idle>-0     (-----) [001] d..1 24573.052205: cpu_idle: state=0 cpu_id=1
42040           <...>-13195 (-----) [002] d..3 24573.052210: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
42041          <idle>-0     (-----) [001] .n.1 24573.052485: cpu_idle: state=4294967295 cpu_id=1
42042          <idle>-0     (-----) [001] d..2 24573.052491: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13196 next_prio=110
42043           <...>-13195 (-----) [002] d..2 24573.052508: sched_switch: prev_comm=id.nn.benchmark prev_pid=13195 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
42044           <...>-13196 (-----) [001] ...1 24573.052520: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
42045           <...>-13196 (-----) [001] ...1 24573.052524: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
42046           <...>-13196 (-----) [001] ...1 24573.052645: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
42047           <...>-13196 (-----) [001] ...1 24573.052651: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
42048<...>-25141 ( 24741) [000] d..1 24573.052661: sched_waking: comm=lowpool[8] pid=27168 prio=130 target_cpu=002
42049<...>-25141 ( 24741) [000] d..2 24573.052675: sched_wakeup: comm=lowpool[8] pid=27168 prio=130 target_cpu=002
42050     logd.writer-563   (  555) [002] d..2 24573.052776: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
42051<...>-25141 ( 24741) [000] .... 24573.052798: binder_transaction: transaction=1669734 dest_node=1669713 dest_proc=24827 dest_thread=24986 reply=0 flags=0x10 code=0x1
42052<...>-25141 ( 24741) [000] d..4 24573.052842: sched_waking: comm=GoogleApiHandle pid=24986 prio=129 target_cpu=006
42053<...>-25141 ( 24741) [000] d..5 24573.052860: sched_wakeup: comm=GoogleApiHandle pid=24986 prio=129 target_cpu=000
42054<...>-25141 ( 24741) [000] d.h5 24573.052892: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
42055<...>-25141 ( 24741) [000] d.h5 24573.052903: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
42056          <idle>-0     (-----) [007] dnh2 24573.052908: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
42057          <idle>-0     (-----) [007] .n.1 24573.052910: cpu_idle: state=4294967295 cpu_id=7
42058          <idle>-0     (-----) [007] d..2 24573.052913: 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
42059<...>-25141 ( 24741) [000] d.h6 24573.052916: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
42060         sugov:4-560   (  560) [007] d..2 24573.052919: 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
42061          <idle>-0     (-----) [007] d..1 24573.052921: cpu_idle: state=0 cpu_id=7
42062          <idle>-0     (-----) [003] .n.1 24573.052921: cpu_idle: state=4294967295 cpu_id=3
42063<...>-25141 ( 24741) [000] d..2 24573.052926: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=129 prev_state=S ==> next_comm=GoogleApiHandle next_pid=24986 next_prio=129
42064          <idle>-0     (-----) [003] d..2 24573.052927: 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
42065<...>-24986 ( 24827) [000] .... 24573.052936: binder_transaction_received: transaction=1669734
42066         sugov:0-559   (  559) [003] d..2 24573.052940: 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
42067          <idle>-0     (-----) [003] d..1 24573.052945: cpu_idle: state=0 cpu_id=3
42068<...>-27168 ( 24741) [002] d..2 24573.052949: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42069          <idle>-0     (-----) [002] d..1 24573.052960: cpu_idle: state=0 cpu_id=2
42070          <idle>-0     (-----) [007] ...1 24573.053111: cpu_idle: state=4294967295 cpu_id=7
42071          <idle>-0     (-----) [007] d..1 24573.053112: cpu_idle: state=0 cpu_id=7
42072<...>-24986 ( 24827) [000] .... 24573.053344: binder_transaction: transaction=1669737 dest_node=0 dest_proc=24741 dest_thread=25141 reply=1 flags=0x0 code=0x0
42073<...>-24986 ( 24827) [000] d..2 24573.053348: sched_waking: comm=Binder:24741_4 pid=25141 prio=129 target_cpu=000
42074<...>-24986 ( 24827) [000] d..3 24573.053357: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=129 target_cpu=000
42075<...>-24986 ( 24827) [000] d..2 24573.053377: sched_switch: prev_comm=GoogleApiHandle prev_pid=24986 prev_prio=129 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=129
42076<...>-25141 ( 24741) [000] .... 24573.053382: binder_transaction_received: transaction=1669737
42077 id.nn.benchmark-13156 (13131) [006] d..2 24573.053431: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
42078          <idle>-0     (-----) [006] d..1 24573.053434: cpu_idle: state=0 cpu_id=6
42079<...>-25141 ( 24741) [000] .... 24573.053481: binder_transaction: transaction=1669738 dest_node=0 dest_proc=24827 dest_thread=24986 reply=1 flags=0x0 code=0x0
42080<...>-25141 ( 24741) [000] d..2 24573.053485: sched_waking: comm=GoogleApiHandle pid=24986 prio=129 target_cpu=000
42081<...>-25141 ( 24741) [000] d..3 24573.053493: sched_wakeup: comm=GoogleApiHandle pid=24986 prio=129 target_cpu=000
42082<...>-25141 ( 24741) [000] .... 24573.053495: binder_set_priority: proc=24741 thread=25141 old=129 => new=120 desired=120
42083<...>-25141 ( 24741) [000] d..2 24573.053525: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=S ==> next_comm=GoogleApiHandle next_pid=24986 next_prio=129
42084<...>-24986 ( 24827) [000] .... 24573.053528: binder_transaction_received: transaction=1669738
42085<...>-24986 ( 24827) [000] .... 24573.053622: binder_transaction: transaction=1669739 dest_node=1669735 dest_proc=24741 dest_thread=0 reply=0 flags=0x10 code=0x5f4e5446
42086          <idle>-0     (-----) [006] ...1 24573.053623: cpu_idle: state=4294967295 cpu_id=6
42087          <idle>-0     (-----) [006] d..1 24573.053624: cpu_idle: state=0 cpu_id=6
42088<...>-24986 ( 24827) [000] ...2 24573.053626: binder_set_priority: proc=24741 thread=25141 old=120 => new=129 desired=129
42089<...>-24986 ( 24827) [000] d..4 24573.053627: sched_waking: comm=Binder:24741_4 pid=25141 prio=129 target_cpu=000
42090<...>-24986 ( 24827) [000] d..5 24573.053635: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=129 target_cpu=000
42091<...>-24986 ( 24827) [000] d..2 24573.053642: sched_switch: prev_comm=GoogleApiHandle prev_pid=24986 prev_prio=129 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=129
42092<...>-25141 ( 24741) [000] .... 24573.053646: binder_transaction_received: transaction=1669739
42093<...>-25141 ( 24741) [000] .... 24573.053710: binder_transaction: transaction=1669740 dest_node=0 dest_proc=24827 dest_thread=24986 reply=1 flags=0x0 code=0x0
42094<...>-25141 ( 24741) [000] d..2 24573.053713: sched_waking: comm=GoogleApiHandle pid=24986 prio=129 target_cpu=000
42095<...>-25141 ( 24741) [000] d..3 24573.053721: sched_wakeup: comm=GoogleApiHandle pid=24986 prio=129 target_cpu=000
42096<...>-25141 ( 24741) [000] .... 24573.053722: binder_set_priority: proc=24741 thread=25141 old=129 => new=120 desired=120
42097           <...>-13196 (-----) [001] d.h1 24573.053737: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
42098<...>-25141 ( 24741) [000] d..2 24573.053746: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=S ==> next_comm=GoogleApiHandle next_pid=24986 next_prio=129
42099<...>-24986 ( 24827) [000] .... 24573.053750: binder_transaction_received: transaction=1669740
42100           <...>-13196 (-----) [001] d.h2 24573.053756: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
42101          <idle>-0     (-----) [003] .n.1 24573.053760: cpu_idle: state=4294967295 cpu_id=3
42102          <idle>-0     (-----) [003] d..2 24573.053765: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
42103        DispSync-23904 (23896) [003] d..1 24573.053788: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
42104        DispSync-23904 (23896) [003] d..2 24573.053805: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
42105          <idle>-0     (-----) [002] .n.1 24573.053811: cpu_idle: state=4294967295 cpu_id=2
42106          <idle>-0     (-----) [002] d..2 24573.053817: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
42107        DispSync-23904 (23896) [003] d..2 24573.053825: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42108          <idle>-0     (-----) [003] d..1 24573.053831: cpu_idle: state=0 cpu_id=3
42109  appEventThread-23905 (23896) [002] d..3 24573.053866: sched_waking: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=007
42110           <...>-13157 (-----) [005] d..2 24573.053884: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
42111          <idle>-0     (-----) [005] d..1 24573.053887: cpu_idle: state=0 cpu_id=5
42112  appEventThread-23905 (23896) [002] d..4 24573.053890: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=003
42113          <idle>-0     (-----) [003] .n.1 24573.053894: cpu_idle: state=4294967295 cpu_id=3
42114  appEventThread-23905 (23896) [002] d.h3 24573.053921: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
42115          <idle>-0     (-----) [003] d..2 24573.053922: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
42116  appEventThread-23905 (23896) [002] d.h3 24573.053928: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
42117          <idle>-0     (-----) [007] dnh2 24573.053932: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
42118          <idle>-0     (-----) [007] .n.1 24573.053935: cpu_idle: state=4294967295 cpu_id=7
42119          <idle>-0     (-----) [007] d..2 24573.053937: 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
42120  appEventThread-23905 (23896) [002] d.h4 24573.053940: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
42121         sugov:4-560   (  560) [007] d..2 24573.053942: 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
42122          <idle>-0     (-----) [007] d..1 24573.053944: cpu_idle: state=0 cpu_id=7
42123<...>-24986 ( 24827) [000] d..2 24573.053952: sched_switch: prev_comm=GoogleApiHandle prev_pid=24986 prev_prio=129 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
42124  appEventThread-23905 (23896) [002] d..3 24573.053953: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
42125         sugov:0-559   (  559) [000] d..2 24573.053961: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=GoogleApiHandle next_pid=24986 next_prio=129
42126          <idle>-0     (-----) [006] dnh2 24573.053968: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
42127          <idle>-0     (-----) [006] .n.1 24573.053970: cpu_idle: state=4294967295 cpu_id=6
42128          <idle>-0     (-----) [006] d..2 24573.053973: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
42129  appEventThread-23905 (23896) [002] d..2 24573.053983: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42130          <idle>-0     (-----) [002] d..1 24573.053991: cpu_idle: state=0 cpu_id=2
42131<...>-24151 ( 24151) [006] .... 24573.054112: binder_transaction: transaction=1669741 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
42132 s.nexuslauncher-24827 (24827) [003] .... 24573.054115: binder_transaction: transaction=1669742 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
42133<...>-24151 ( 24151) [006] d..4 24573.054117: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
42134 s.nexuslauncher-24827 (24827) [003] d..4 24573.054148: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
42135          <idle>-0     (-----) [002] dnh2 24573.054150: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
42136          <idle>-0     (-----) [002] .n.1 24573.054154: cpu_idle: state=4294967295 cpu_id=2
42137          <idle>-0     (-----) [002] d..2 24573.054159: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
42138  Binder:23896_5-25989 (23896) [002] .... 24573.054169: binder_transaction_received: transaction=1669741
42139          <idle>-0     (-----) [005] dnh2 24573.054172: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
42140          <idle>-0     (-----) [005] .n.1 24573.054174: cpu_idle: state=4294967295 cpu_id=5
42141          <idle>-0     (-----) [005] d..2 24573.054177: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
42142<...>-23903 ( 23896) [005] .... 24573.054180: binder_transaction_received: transaction=1669742
42143<...>-24151 ( 24151) [006] d..3 24573.054182: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
42144 s.nexuslauncher-24827 (24827) [003] d..3 24573.054189: sched_waking: comm=RenderThread pid=25194 prio=120 target_cpu=001
42145<...>-24151 ( 24151) [006] d..4 24573.054190: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
42146  Binder:23896_5-25989 (23896) [002] d..1 24573.054192: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
42147          <idle>-0     (-----) [007] .n.1 24573.054195: cpu_idle: state=4294967295 cpu_id=7
42148          <idle>-0     (-----) [007] d..2 24573.054198: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
42149  Binder:23896_5-25989 (23896) [002] dn.2 24573.054198: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
42150<...>-23903 ( 23896) [005] d..2 24573.054201: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
42151  Binder:23896_5-25989 (23896) [002] d..2 24573.054203: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
42152          <idle>-0     (-----) [005] d..1 24573.054204: cpu_idle: state=0 cpu_id=5
42153  appEventThread-23905 (23896) [002] d..2 24573.054212: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
42154    RenderThread-24437 (24151) [007] d..2 24573.054215: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
42155<...>-24151 ( 24151) [006] d.h1 24573.054216: sched_wakeup: comm=RenderThread pid=25194 prio=120 target_cpu=006
42156          <idle>-0     (-----) [007] d..1 24573.054252: cpu_idle: state=0 cpu_id=7
42157  Binder:23896_5-25989 (23896) [002] d..1 24573.054252: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
42158  Binder:23896_5-25989 (23896) [002] dn.2 24573.054259: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
42159  Binder:23896_5-25989 (23896) [002] d..2 24573.054263: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
42160  appEventThread-23905 (23896) [002] d..1 24573.054276: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
42161          <idle>-0     (-----) [005] dnh2 24573.054291: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
42162<...>-24151 ( 24151) [006] d..3 24573.054292: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
42163  appEventThread-23905 (23896) [002] d..2 24573.054294: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
42164          <idle>-0     (-----) [005] .n.1 24573.054294: cpu_idle: state=4294967295 cpu_id=5
42165          <idle>-0     (-----) [005] d..2 24573.054298: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
42166<...>-24151 ( 24151) [006] d..4 24573.054299: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
42167<...>-23903 ( 23896) [005] d..1 24573.054300: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
42168          <idle>-0     (-----) [007] .n.1 24573.054303: cpu_idle: state=4294967295 cpu_id=7
42169<...>-24151 ( 24151) [006] d..2 24573.054305: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=120
42170          <idle>-0     (-----) [007] d..2 24573.054306: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
42171  Binder:23896_5-25989 (23896) [002] d..2 24573.054316: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42172<...>-23903 ( 23896) [005] d..2 24573.054317: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
42173          <idle>-0     (-----) [005] d..1 24573.054320: cpu_idle: state=0 cpu_id=5
42174          <idle>-0     (-----) [002] dnh3 24573.054322: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
42175    RenderThread-25194 (24827) [006] d..2 24573.054323: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
42176          <idle>-0     (-----) [002] d..2 24573.054328: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
42177          <idle>-0     (-----) [006] d..1 24573.054328: cpu_idle: state=0 cpu_id=6
42178  appEventThread-23905 (23896) [002] d..2 24573.054346: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42179          <idle>-0     (-----) [002] d..1 24573.054353: cpu_idle: state=0 cpu_id=2
42180    RenderThread-24437 (24151) [007] d..1 24573.054354: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
42181           <...>-13196 (-----) [001] d..1 24573.054357: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
42182    RenderThread-24437 (24151) [007] d..2 24573.054361: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
42183          <idle>-0     (-----) [006] .n.1 24573.054365: cpu_idle: state=4294967295 cpu_id=6
42184          <idle>-0     (-----) [006] d..2 24573.054369: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
42185           <...>-13196 (-----) [001] d..1 24573.054369: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=004
42186          <idle>-0     (-----) [005] dnh2 24573.054371: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
42187          <idle>-0     (-----) [005] .n.1 24573.054373: cpu_idle: state=4294967295 cpu_id=5
42188          <idle>-0     (-----) [005] d..2 24573.054376: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
42189           <...>-13196 (-----) [001] d..1 24573.054384: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
42190<...>-24151 ( 24151) [006] d.h1 24573.054389: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
42191    RenderThread-24437 (24151) [007] .... 24573.054393: binder_transaction: transaction=1669743 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
42192    RenderThread-24437 (24151) [007] d..4 24573.054395: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
42193<...>-24151 ( 24151) [006] d..2 24573.054397: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
42194           <...>-13196 (-----) [001] d..1 24573.054398: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
42195    RenderThread-24437 (24151) [007] d..5 24573.054403: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
42196    RenderThread-24437 (24151) [007] d.h4 24573.054406: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=007
42197           <...>-13196 (-----) [001] d..1 24573.054409: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=006
42198    RenderThread-24437 (24151) [007] d..2 24573.054410: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
42199           <...>-13154 (-----) [005] d.h1 24573.054412: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
42200<...>-23903 ( 23896) [007] .... 24573.054413: binder_transaction_received: transaction=1669743
42201           <...>-13196 (-----) [001] d..1 24573.054418: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
42202 id.nn.benchmark-13155 (13131) [006] dnh1 24573.054421: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=006
42203 id.nn.benchmark-13155 (13131) [006] d..2 24573.054424: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
42204<...>-23903 ( 23896) [007] d.h1 24573.054430: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
42205 s.nexuslauncher-24827 (24827) [003] d..2 24573.054440: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
42206<...>-23903 ( 23896) [007] .... 24573.054449: binder_transaction: transaction=1669745 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
42207<...>-24986 ( 24827) [000] .... 24573.054450: binder_transaction: transaction=1669744 dest_node=1669735 dest_proc=24741 dest_thread=0 reply=0 flags=0x11 code=0x1
42208<...>-23903 ( 23896) [007] d..2 24573.054454: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
42209           <...>-13157 (-----) [003] d.h4 24573.054472: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
42210<...>-24986 ( 24827) [000] d..4 24573.054488: sched_waking: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=000
42211           <...>-13157 (-----) [003] d.h4 24573.054499: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
42212 id.nn.benchmark-13160 (13131) [004] dnh1 24573.054500: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
42213          <idle>-0     (-----) [002] dnh2 24573.054503: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
42214 id.nn.benchmark-13160 (13131) [004] d..2 24573.054503: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
42215          <idle>-0     (-----) [002] .n.1 24573.054507: cpu_idle: state=4294967295 cpu_id=2
42216         sugov:4-560   (  560) [004] d..2 24573.054507: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
42217<...>-23903 ( 23896) [007] d..2 24573.054508: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
42218           <...>-13157 (-----) [003] d.h5 24573.054511: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
42219          <idle>-0     (-----) [002] d..2 24573.054512: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
42220<...>-24986 ( 24827) [000] dn.5 24573.054515: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=000
42221    RenderThread-24437 (24151) [002] .... 24573.054517: binder_transaction_received: transaction=1669745
42222<...>-24986 ( 24827) [000] d..2 24573.054524: sched_switch: prev_comm=GoogleApiHandle prev_pid=24986 prev_prio=129 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
42223         sugov:0-559   (  559) [000] d..2 24573.054532: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=120
42224<...>-25141 ( 24741) [000] .... 24573.054536: binder_transaction_received: transaction=1669744
42225<...>-25141 ( 24741) [000] d..1 24573.055107: sched_waking: comm=lowpool[8] pid=27168 prio=130 target_cpu=002
42226<...>-25141 ( 24741) [000] d..2 24573.055121: sched_wakeup: comm=lowpool[8] pid=27168 prio=130 target_cpu=002
42227<...>-25141 ( 24741) [000] d..2 24573.055182: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=S ==> next_comm=GoogleApiHandle next_pid=24986 next_prio=129
42228<...>-24986 ( 24827) [000] d..2 24573.055302: sched_switch: prev_comm=GoogleApiHandle prev_pid=24986 prev_prio=129 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
42229 id.nn.benchmark-13156 (13131) [000] d.h4 24573.055335: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
42230 id.nn.benchmark-13156 (13131) [000] d.h4 24573.055343: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
42231 id.nn.benchmark-13160 (13131) [004] dnh1 24573.055345: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
42232 id.nn.benchmark-13160 (13131) [004] d..2 24573.055348: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
42233         sugov:4-560   (  560) [004] d..2 24573.055351: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
42234 id.nn.benchmark-13156 (13131) [000] d.h5 24573.055356: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
42235           <...>-13196 (-----) [001] d..2 24573.055365: sched_switch: prev_comm=id.nn.benchmark prev_pid=13196 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
42236         sugov:0-559   (  559) [001] d..2 24573.055374: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13196 next_prio=110
42237    RenderThread-24437 (24151) [002] d..2 24573.055771: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
42238<...>-27168 ( 24741) [002] d.h1 24573.055868: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
42239<...>-27168 ( 24741) [002] d.h2 24573.055900: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
42240<...>-27168 ( 24741) [002] d.h2 24573.055904: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
42241 id.nn.benchmark-13156 (13131) [000] d.h2 24573.055983: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=004
42242 id.nn.benchmark-13156 (13131) [000] d.h3 24573.056004: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
42243           <...>-13196 (-----) [001] d..2 24573.056011: sched_switch: prev_comm=id.nn.benchmark prev_pid=13196 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
42244 id.nn.benchmark-13156 (13131) [000] d.h2 24573.056037: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
42245 kgsl_worker_thr-246   (  246) [001] d..2 24573.056040: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13196 next_prio=110
42246 id.nn.benchmark-13156 (13131) [000] d.h2 24573.056045: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
42247 id.nn.benchmark-13160 (13131) [004] dnh1 24573.056048: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
42248 id.nn.benchmark-13160 (13131) [004] d..2 24573.056050: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
42249         sugov:4-560   (  560) [004] d..2 24573.056053: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
42250 id.nn.benchmark-13156 (13131) [000] d.h3 24573.056053: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
42251           <...>-13196 (-----) [001] d..2 24573.056060: sched_switch: prev_comm=id.nn.benchmark prev_pid=13196 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
42252         sugov:0-559   (  559) [001] d..2 24573.056066: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13196 next_prio=110
42253<...>-27168 ( 24741) [002] .... 24573.056125: binder_transaction: transaction=1669748 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x17
42254<...>-27168 ( 24741) [002] d..4 24573.056138: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=000
42255 id.nn.benchmark-13159 (13131) [007] d.h1 24573.056163: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
42256<...>-27168 ( 24741) [002] d..2 24573.056192: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
42257    RenderThread-24437 (24151) [002] d..1 24573.056209: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
42258    RenderThread-24437 (24151) [002] d..2 24573.056219: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
42259           <...>-13196 (-----) [001] d..2 24573.056227: sched_switch: prev_comm=id.nn.benchmark prev_pid=13196 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
42260 kgsl_worker_thr-246   (  246) [001] d..2 24573.056264: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
42261 kgsl_worker_thr-246   (  246) [001] d..3 24573.056280: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
42262 kgsl_worker_thr-246   (  246) [001] d..2 24573.056288: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
42263    RenderThread-24437 (24151) [002] .... 24573.056357: binder_transaction: transaction=1669749 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
42264    RenderThread-24437 (24151) [002] d..4 24573.056365: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
42265    RenderThread-24437 (24151) [002] d..5 24573.056380: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=002
42266    RenderThread-24437 (24151) [002] d..2 24573.056410: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
42267<...>-23903 ( 23896) [002] .... 24573.056414: binder_transaction_received: transaction=1669749
42268  kworker/u16:10-23868 (23868) [001] d..2 24573.056468: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13196 next_prio=110
42269<...>-23903 ( 23896) [002] .... 24573.056524: binder_transaction: transaction=1669750 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
42270<...>-23903 ( 23896) [002] d..2 24573.056527: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
42271<...>-23903 ( 23896) [002] d..3 24573.056535: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
42272<...>-23903 ( 23896) [002] d..2 24573.056554: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
42273    RenderThread-24437 (24151) [002] .... 24573.056558: binder_transaction_received: transaction=1669750
42274    RenderThread-24437 (24151) [002] d..2 24573.056625: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
42275 id.nn.benchmark-13155 (13131) [002] d.h4 24573.056657: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
42276 id.nn.benchmark-13155 (13131) [002] d.h4 24573.056669: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
42277 id.nn.benchmark-13158 (13131) [006] dnh1 24573.056673: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
42278 id.nn.benchmark-13158 (13131) [006] d..2 24573.056676: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
42279 id.nn.benchmark-13155 (13131) [002] d.h5 24573.056678: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
42280         sugov:4-560   (  560) [006] d..2 24573.056680: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
42281           <...>-13196 (-----) [001] d..2 24573.056686: sched_switch: prev_comm=id.nn.benchmark prev_pid=13196 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
42282         sugov:0-559   (  559) [001] d..2 24573.056692: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13196 next_prio=110
42283           <...>-13196 (-----) [001] ...1 24573.056965: tracing_mark_write: E|13131
42284           <...>-13196 (-----) [001] ...1 24573.056970: tracing_mark_write: E|13131
42285           <...>-13196 (-----) [001] ...1 24573.056991: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
42286           <...>-13196 (-----) [001] ...1 24573.056997: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
42287 id.nn.benchmark-13160 (13131) [004] d.s2 24573.057559: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
42288 id.nn.benchmark-13155 (13131) [002] d.s2 24573.057584: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
42289           <...>-13196 (-----) [001] dnH1 24573.057586: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
42290 id.nn.benchmark-13158 (13131) [006] d.H2 24573.057589: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
42291 id.nn.benchmark-13158 (13131) [006] dnH3 24573.057592: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
42292 id.nn.benchmark-13158 (13131) [006] dnH2 24573.057593: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
42293 id.nn.benchmark-13155 (13131) [002] d.s3 24573.057599: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
42294 id.nn.benchmark-13158 (13131) [006] d..2 24573.057604: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
42295           <...>-13196 (-----) [001] dnH2 24573.057605: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
42296         sugov:4-560   (  560) [006] d..2 24573.057607: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
42297           <...>-13196 (-----) [001] d..2 24573.057611: sched_switch: prev_comm=id.nn.benchmark prev_pid=13196 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
42298         sugov:0-559   (  559) [001] d..2 24573.057619: 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
42299  kworker/u16:10-23868 (23868) [001] .... 24573.057716: clk_set_rate: l3_cluster0_vote_clk 1305600000
42300  kworker/u16:10-23868 (23868) [001] d..2 24573.057731: 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
42301     rcu_preempt-7     (    7) [001] d..2 24573.057738: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
42302           <...>-13157 (-----) [003] d.h1 24573.057745: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
42303     rcu_preempt-7     (    7) [001] d..3 24573.057751: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
42304     rcu_preempt-7     (    7) [001] d..2 24573.057753: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
42305           <...>-13157 (-----) [003] d.h2 24573.057765: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
42306     rcu_preempt-7     (    7) [001] dn.3 24573.057769: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
42307     rcu_preempt-7     (    7) [001] d..2 24573.057776: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R+ ==> next_comm=DispSync next_pid=23904 next_prio=97
42308        DispSync-23904 (23896) [001] d..1 24573.057794: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
42309        DispSync-23904 (23896) [001] d..2 24573.057806: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
42310 id.nn.benchmark-13156 (13131) [000] d..2 24573.057815: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
42311        DispSync-23904 (23896) [001] d..2 24573.057820: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
42312         rcuop/0-10    (   10) [001] d..2 24573.057826: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
42313         rcuop/0-10    (   10) [001] d..3 24573.057837: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
42314         rcuop/0-10    (   10) [001] d..2 24573.057848: 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
42315   sfEventThread-23906 (23896) [000] d..3 24573.057852: sched_waking: comm=android.anim pid=24041 prio=116 target_cpu=005
42316         rcuop/2-29    (   29) [001] d..2 24573.057857: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
42317           <...>-13154 (-----) [005] dnh1 24573.057877: sched_wakeup: comm=android.anim pid=24041 prio=116 target_cpu=005
42318           <...>-13154 (-----) [005] d..2 24573.057880: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=116
42319   sfEventThread-23906 (23896) [000] d..3 24573.057884: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
42320         rcuop/1-21    (   21) [001] d..2 24573.057884: 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
42321     rcu_preempt-7     (    7) [001] d..2 24573.057886: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
42322   sfEventThread-23906 (23896) [000] d..4 24573.057900: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
42323 id.nn.benchmark-13158 (13131) [006] dnh1 24573.057913: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
42324   sfEventThread-23906 (23896) [000] d..2 24573.057913: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
42325 id.nn.benchmark-13158 (13131) [006] d..2 24573.057915: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
42326     rcu_preempt-7     (    7) [001] d..2 24573.057916: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
42327         rcuop/6-61    (   61) [006] d..2 24573.057918: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=006
42328         rcuop/6-61    (   61) [006] d..3 24573.057929: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=006
42329         rcuop/6-61    (   61) [006] d..2 24573.057932: 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
42330         rcuop/7-69    (   69) [006] d..2 24573.057939: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
42331<...>-24041 ( 23968) [005] .... 24573.057994: binder_transaction: transaction=1669751 dest_node=1271137 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
42332<...>-24041 ( 23968) [005] d..4 24573.057997: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=002
42333<...>-24041 ( 23968) [005] d..5 24573.058013: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
42334 id.nn.benchmark-13158 (13131) [006] d..2 24573.058030: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
42335<...>-23903 ( 23896) [006] .... 24573.058032: binder_transaction_received: transaction=1669751
42336<...>-23903 ( 23896) [006] d..1 24573.058043: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
42337 id.nn.benchmark-13156 (13131) [000] dnh1 24573.058054: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
42338<...>-23903 ( 23896) [006] d..2 24573.058055: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
42339 id.nn.benchmark-13156 (13131) [000] d..2 24573.058060: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
42340   sfEventThread-23906 (23896) [000] d..2 24573.058074: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
42341<...>-24041 ( 23968) [005] .... 24573.058286: binder_transaction: transaction=1669752 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
42342<...>-24041 ( 23968) [005] ...2 24573.058297: binder_set_priority: proc=23896 thread=23903 old=120 => new=116 desired=116
42343<...>-24041 ( 23968) [005] d..4 24573.058298: sched_waking: comm=Binder:23896_2 pid=23903 prio=116 target_cpu=006
42344<...>-24041 ( 23968) [005] d..5 24573.058307: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=116 target_cpu=006
42345<...>-24041 ( 23968) [005] d..2 24573.058312: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
42346  surfaceflinger-23896 (23896) [001] d..1 24573.058312: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
42347 id.nn.benchmark-13158 (13131) [006] d..2 24573.058313: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=116
42348<...>-23903 ( 23896) [006] .... 24573.058315: binder_transaction_received: transaction=1669752
42349  surfaceflinger-23896 (23896) [001] d..2 24573.058324: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
42350 id.nn.benchmark-13156 (13131) [000] d..2 24573.058331: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
42351   sfEventThread-23906 (23896) [000] d..2 24573.058342: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
42352<...>-23903 ( 23896) [006] .... 24573.058348: binder_transaction: transaction=1669753 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
42353<...>-23903 ( 23896) [006] d..2 24573.058349: sched_waking: comm=android.anim pid=24041 prio=116 target_cpu=005
42354<...>-23903 ( 23896) [006] d..3 24573.058359: sched_wakeup: comm=android.anim pid=24041 prio=116 target_cpu=005
42355<...>-23903 ( 23896) [006] .... 24573.058360: binder_set_priority: proc=23896 thread=23903 old=116 => new=120 desired=120
42356           <...>-13154 (-----) [005] d..2 24573.058365: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=116
42357<...>-24041 ( 23968) [005] .... 24573.058367: binder_transaction_received: transaction=1669753
42358<...>-23903 ( 23896) [006] d..2 24573.058374: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
42359<...>-24041 ( 23968) [005] d..2 24573.058407: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
42360  surfaceflinger-23896 (23896) [001] ...1 24573.058940: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
42361  surfaceflinger-23896 (23896) [001] ...1 24573.058944: tracing_mark_write: E|23896
42362  surfaceflinger-23896 (23896) [001] .... 24573.058991: binder_transaction: transaction=1669754 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
42363  surfaceflinger-23896 (23896) [001] ...2 24573.059010: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
42364  surfaceflinger-23896 (23896) [001] d..4 24573.059018: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=005
42365 id.nn.benchmark-13158 (13131) [006] dnh1 24573.059038: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=006
42366 id.nn.benchmark-13158 (13131) [006] d..2 24573.059041: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
42367  HwBinder:598_3-633   (  598) [006] .... 24573.059045: binder_transaction_received: transaction=1669754
42368  surfaceflinger-23896 (23896) [001] d..2 24573.059045: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
42369     rcu_preempt-7     (    7) [001] d..2 24573.059057: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13196 next_prio=110
42370  HwBinder:598_3-633   (  598) [006] ...1 24573.059071: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
42371  HwBinder:598_3-633   (  598) [006] ...1 24573.059136: tracing_mark_write: B|598|HWCSession::PresentDisplay::
42372           <...>-13196 (-----) [001] ...1 24573.059232: tracing_mark_write: E|13131
42373           <...>-13196 (-----) [001] ...1 24573.059236: tracing_mark_write: E|13131
42374           <...>-13196 (-----) [001] ...1 24573.059259: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
42375           <...>-13196 (-----) [001] ...1 24573.059264: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
42376  HwBinder:598_3-633   (  598) [006] ...1 24573.059360: tracing_mark_write: B|598|HWDeviceDRM::Validate::
42377  HwBinder:598_3-633   (  598) [006] ...1 24573.059568: tracing_mark_write: E|598
42378  HwBinder:598_3-633   (  598) [006] ...1 24573.059607: tracing_mark_write: B|598|HWDeviceDRM::Commit::
42379  HwBinder:598_3-633   (  598) [006] ...1 24573.059609: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
42380  HwBinder:598_3-633   (  598) [006] d..2 24573.059712: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
42381           <...>-13196 (-----) [001] dnh1 24573.059731: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
42382           <...>-13196 (-----) [001] d..2 24573.059740: sched_switch: prev_comm=id.nn.benchmark prev_pid=13196 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
42383  HwBinder:598_3-633   (  598) [006] ...1 24573.059751: tracing_mark_write: E|598
42384  HwBinder:598_3-633   (  598) [006] ...1 24573.059753: tracing_mark_write: E|598
42385  HwBinder:598_3-633   (  598) [006] ...1 24573.059768: tracing_mark_write: E|598
42386  HwBinder:598_3-633   (  598) [006] ...1 24573.059789: tracing_mark_write: E|598
42387  HwBinder:598_3-633   (  598) [006] .... 24573.059795: binder_transaction: transaction=1669755 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
42388  HwBinder:598_3-633   (  598) [006] d..2 24573.059801: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
42389  HwBinder:598_3-633   (  598) [006] .... 24573.059810: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
42390 id.nn.benchmark-13156 (13131) [000] dnh1 24573.059815: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
42391 id.nn.benchmark-13156 (13131) [000] d..2 24573.059821: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
42392  surfaceflinger-23896 (23896) [000] .... 24573.059826: binder_transaction_received: transaction=1669755
42393  HwBinder:598_3-633   (  598) [006] d..2 24573.059833: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
42394  surfaceflinger-23896 (23896) [000] d..2 24573.060088: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
42395 crtc_commit:111-253   (  253) [001] d..2 24573.060359: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13196 next_prio=110
42396           <...>-13196 (-----) [001] ...1 24573.060369: tracing_mark_write: E|13131
42397           <...>-13196 (-----) [001] ...1 24573.060373: tracing_mark_write: E|13131
42398           <...>-13196 (-----) [001] ...1 24573.060389: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
42399           <...>-13196 (-----) [001] ...1 24573.060393: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
42400           <...>-13196 (-----) [001] ...1 24573.060631: tracing_mark_write: E|13131
42401           <...>-13196 (-----) [001] ...1 24573.060634: tracing_mark_write: E|13131
42402           <...>-13196 (-----) [001] ...1 24573.060646: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
42403           <...>-13196 (-----) [001] ...1 24573.060650: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
42404 id.nn.benchmark-13160 (13131) [004] d.s2 24573.060888: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
42405           <...>-13196 (-----) [001] dnh1 24573.060908: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
42406           <...>-13196 (-----) [001] d..2 24573.060914: sched_switch: prev_comm=id.nn.benchmark prev_pid=13196 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
42407  kworker/u16:10-23868 (23868) [001] d..2 24573.061180: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13196 next_prio=110
42408           <...>-13196 (-----) [001] ...1 24573.061350: tracing_mark_write: E|13131
42409           <...>-13196 (-----) [001] ...1 24573.061354: tracing_mark_write: E|13131
42410           <...>-13196 (-----) [001] ...1 24573.061365: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
42411           <...>-13196 (-----) [001] ...1 24573.061369: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
42412           <...>-13196 (-----) [001] ...1 24573.061767: tracing_mark_write: E|13131
42413           <...>-13196 (-----) [001] ...1 24573.061771: tracing_mark_write: E|13131
42414           <...>-13196 (-----) [001] ...1 24573.061792: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
42415           <...>-13196 (-----) [001] ...1 24573.061796: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
42416           <...>-13196 (-----) [001] ...1 24573.061992: tracing_mark_write: E|13131
42417           <...>-13196 (-----) [001] ...1 24573.061996: tracing_mark_write: E|13131
42418           <...>-13196 (-----) [001] ...1 24573.062010: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
42419           <...>-13196 (-----) [001] ...1 24573.062014: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
42420           <...>-13196 (-----) [001] ...1 24573.062088: tracing_mark_write: E|13131
42421           <...>-13196 (-----) [001] ...1 24573.062091: tracing_mark_write: E|13131
42422           <...>-13196 (-----) [001] ...1 24573.062104: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
42423           <...>-13196 (-----) [001] ...1 24573.062108: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
42424           <...>-13196 (-----) [001] ...1 24573.062420: tracing_mark_write: E|13131
42425           <...>-13196 (-----) [001] ...1 24573.062423: tracing_mark_write: E|13131
42426           <...>-13196 (-----) [001] ...1 24573.062433: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
42427           <...>-13196 (-----) [001] ...1 24573.062437: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
42428           <...>-13196 (-----) [001] ...1 24573.062487: tracing_mark_write: E|13131
42429           <...>-13196 (-----) [001] ...1 24573.062490: tracing_mark_write: E|13131
42430           <...>-13196 (-----) [001] ...1 24573.062499: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
42431           <...>-13196 (-----) [001] ...1 24573.062503: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
42432           <...>-13196 (-----) [001] ...1 24573.062520: tracing_mark_write: E|13131
42433           <...>-13196 (-----) [001] ...1 24573.062522: tracing_mark_write: E|13131
42434           <...>-13196 (-----) [001] ...1 24573.062533: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
42435           <...>-13196 (-----) [001] ...1 24573.062536: tracing_mark_write: E|13131
42436           <...>-13196 (-----) [001] ...1 24573.062545: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
42437           <...>-13196 (-----) [001] ...1 24573.062550: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
42438           <...>-13196 (-----) [001] ...1 24573.063403: tracing_mark_write: E|13131
42439           <...>-13196 (-----) [001] ...1 24573.063406: tracing_mark_write: E|13131
42440           <...>-13196 (-----) [001] ...1 24573.063414: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
42441           <...>-13196 (-----) [001] ...1 24573.063417: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
42442           <...>-13196 (-----) [001] ...1 24573.063501: tracing_mark_write: E|13131
42443           <...>-13196 (-----) [001] ...1 24573.063504: tracing_mark_write: E|13131
42444           <...>-13196 (-----) [001] d..2 24573.063571: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
42445           <...>-13196 (-----) [001] d..3 24573.063588: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
42446           <...>-13196 (-----) [001] ...1 24573.063613: tracing_mark_write: E|13131
42447           <...>-13196 (-----) [001] d..1 24573.063619: sched_waking: comm=id.nn.benchmark pid=13195 prio=110 target_cpu=002
42448 id.nn.benchmark-13158 (13131) [006] dnh1 24573.063646: sched_wakeup: comm=id.nn.benchmark pid=13195 prio=110 target_cpu=006
42449 id.nn.benchmark-13158 (13131) [006] d..2 24573.063675: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13195 next_prio=110
42450           <...>-13196 (-----) [001] d.h3 24573.063676: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
42451           <...>-13195 (-----) [006] d..2 24573.063686: sched_switch: prev_comm=id.nn.benchmark prev_pid=13195 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
42452           <...>-13196 (-----) [001] d.h3 24573.063687: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
42453 id.nn.benchmark-13158 (13131) [006] dnh3 24573.063689: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
42454 id.nn.benchmark-13158 (13131) [006] d..2 24573.063692: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
42455           <...>-13196 (-----) [001] dnh4 24573.063693: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
42456         sugov:4-560   (  560) [006] d..2 24573.063696: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
42457           <...>-13196 (-----) [001] d..2 24573.063700: sched_switch: prev_comm=id.nn.benchmark prev_pid=13196 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
42458         sugov:0-559   (  559) [001] d..2 24573.063708: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13196 next_prio=110
42459           <...>-13196 (-----) [001] ...1 24573.063725: tracing_mark_write: E|13131
42460           <...>-13196 (-----) [001] d..1 24573.063959: sched_waking: comm=id.nn.benchmark pid=13195 prio=110 target_cpu=006
42461 id.nn.benchmark-13158 (13131) [006] dnh1 24573.063973: sched_wakeup: comm=id.nn.benchmark pid=13195 prio=110 target_cpu=006
42462 id.nn.benchmark-13158 (13131) [006] d..2 24573.063975: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13195 next_prio=110
42463           <...>-13196 (-----) [001] d..2 24573.064039: sched_switch: prev_comm=id.nn.benchmark prev_pid=13196 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
42464           <...>-13195 (-----) [006] d..1 24573.064049: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
42465     logd.writer-563   (  555) [001] dnh1 24573.064073: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
42466     logd.writer-563   (  555) [001] d..2 24573.064079: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
42467           <...>-13131 (-----) [001] d..2 24573.064094: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
42468           <...>-13195 (-----) [006] d..1 24573.064096: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
42469     logd.writer-563   (  555) [001] dnh1 24573.064111: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
42470     logd.writer-563   (  555) [001] d..2 24573.064116: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
42471           <...>-13195 (-----) [006] d..2 24573.064127: sched_switch: prev_comm=id.nn.benchmark prev_pid=13195 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
42472           <...>-13131 (-----) [001] ...1 24573.064139: tracing_mark_write: E|13131
42473           <...>-13131 (-----) [001] ...1 24573.064145: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
42474           <...>-13131 (-----) [001] ...1 24573.064152: tracing_mark_write: E|13131
42475           <...>-13131 (-----) [001] ...1 24573.064155: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
42476           <...>-13131 (-----) [001] ...1 24573.064160: tracing_mark_write: E|13131
42477 id.nn.benchmark-13159 (13131) [007] d..2 24573.064225: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
42478  Binder:23968_1-23981 (23968) [007] .... 24573.064230: binder_transaction_received: transaction=1669748
42479           <...>-13131 (-----) [001] d.s1 24573.064231: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
42480           <...>-13131 (-----) [001] d.s2 24573.064240: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
42481  Binder:23968_1-23981 (23968) [007] d..3 24573.064505: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=002
42482           <...>-13131 (-----) [001] ...1 24573.064510: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
42483  Binder:23968_1-23981 (23968) [007] d..4 24573.064522: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=006
42484  Binder:23968_1-23981 (23968) [007] d.h3 24573.064543: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
42485 id.nn.benchmark-13158 (13131) [006] d..2 24573.064543: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
42486  Binder:23968_1-23981 (23968) [007] d.h4 24573.064550: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
42487           <...>-13131 (-----) [001] ...1 24573.064552: tracing_mark_write: E|13131
42488<...>-23993 ( 23968) [006] d..2 24573.064554: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
42489  Binder:23968_1-23981 (23968) [007] d.h3 24573.064556: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
42490           <...>-13131 (-----) [001] ...1 24573.064557: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
42491         sugov:4-560   (  560) [006] d..2 24573.064562: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=ActivityManager next_pid=23993 next_prio=118
42492           <...>-13131 (-----) [001] dnh1 24573.064567: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
42493           <...>-13131 (-----) [001] d..2 24573.064575: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
42494<...>-23993 ( 23968) [006] d..2 24573.064581: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
42495         sugov:0-559   (  559) [001] d..2 24573.064583: 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
42496     rcu_preempt-7     (    7) [001] d..2 24573.064595: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
42497           <...>-13131 (-----) [001] ...1 24573.064598: tracing_mark_write: E|13131
42498           <...>-13131 (-----) [001] ...1 24573.064603: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
42499           <...>-13131 (-----) [001] ...1 24573.064608: tracing_mark_write: E|13131
42500           <...>-13131 (-----) [001] ...1 24573.064612: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
42501  Binder:23968_1-23981 (23968) [007] d..3 24573.064657: sched_waking: comm=lmkd pid=808 prio=98 target_cpu=002
42502           <...>-13131 (-----) [001] dnh2 24573.064674: sched_wakeup: comm=lmkd pid=808 prio=98 target_cpu=001
42503           <...>-13131 (-----) [001] d..2 24573.064682: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=lmkd next_pid=808 next_prio=98
42504  Binder:23968_1-23981 (23968) [007] .... 24573.064747: binder_transaction: transaction=1669756 dest_node=1302474 dest_proc=24741 dest_thread=0 reply=0 flags=0x11 code=0x7
42505  Binder:23968_1-23981 (23968) [007] d..4 24573.064759: sched_waking: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=000
42506  Binder:23968_1-23981 (23968) [007] d..5 24573.064774: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=006
42507 id.nn.benchmark-13158 (13131) [006] d..2 24573.064791: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=120
42508<...>-25141 ( 24741) [006] .... 24573.064794: binder_transaction_received: transaction=1669756
42509  Binder:23968_1-23981 (23968) [007] .... 24573.064864: binder_transaction: transaction=1669757 dest_node=0 dest_proc=24741 dest_thread=27168 reply=1 flags=0x0 code=0x0
42510  Binder:23968_1-23981 (23968) [007] d..2 24573.064868: sched_waking: comm=lowpool[8] pid=27168 prio=130 target_cpu=002
42511            lmkd-808   (  808) [001] d.h1 24573.064887: sched_wakeup: comm=lowpool[8] pid=27168 prio=130 target_cpu=001
42512  Binder:23968_1-23981 (23968) [007] d..2 24573.064893: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
42513<...>-25141 ( 24741) [006] d..3 24573.064910: sched_waking: comm=.gms.persistent pid=24741 prio=120 target_cpu=007
42514            lmkd-808   (  808) [001] d.h1 24573.064947: sched_wakeup: comm=.gms.persistent pid=24741 prio=120 target_cpu=001
42515<...>-25141 ( 24741) [006] d..2 24573.064972: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
42516            lmkd-808   (  808) [001] d..2 24573.065251: sched_switch: prev_comm=lmkd prev_pid=808 prev_prio=98 prev_state=S ==> next_comm=.gms.persistent next_pid=24741 next_prio=120
42517<...>-24741 ( 24741) [001] .... 24573.065517: binder_transaction: transaction=1669758 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x11 code=0x2f
42518<...>-24741 ( 24741) [001] d..4 24573.065525: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
42519 id.nn.benchmark-13159 (13131) [007] d.h1 24573.065549: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
42520<...>-24741 ( 24741) [001] d..2 24573.065583: sched_switch: prev_comm=.gms.persistent prev_pid=24741 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
42521           <...>-13131 (-----) [001] ...1 24573.065686: tracing_mark_write: E|13131
42522 id.nn.benchmark-13156 (13131) [000] d.h4 24573.065689: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
42523           <...>-13131 (-----) [001] ...1 24573.065691: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
42524           <...>-13131 (-----) [001] d..2 24573.065701: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
42525<...>-27168 ( 24741) [001] .... 24573.065708: binder_transaction_received: transaction=1669757
42526 id.nn.benchmark-13156 (13131) [000] d.h5 24573.065714: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
42527<...>-27168 ( 24741) [001] d..2 24573.065720: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
42528 id.nn.benchmark-13156 (13131) [000] d.h4 24573.065725: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
42529  crtc_event:111-254   (  254) [001] d..2 24573.065745: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
42530 id.nn.benchmark-13158 (13131) [006] dnh1 24573.065745: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
42531 id.nn.benchmark-13158 (13131) [006] d..2 24573.065748: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
42532 id.nn.benchmark-13156 (13131) [000] d.h2 24573.065776: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
42533 id.nn.benchmark-13156 (13131) [000] d.h2 24573.065787: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
42534           <...>-13154 (-----) [005] dnh1 24573.065791: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
42535           <...>-13154 (-----) [005] d..2 24573.065794: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
42536 id.nn.benchmark-13156 (13131) [000] d.h3 24573.065794: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
42537         sugov:4-560   (  560) [005] d..2 24573.065798: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
42538<...>-27168 ( 24741) [001] d..2 24573.065803: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
42539         sugov:0-559   (  559) [001] d..2 24573.065811: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
42540 crtc_commit:111-253   (  253) [006] d..2 24573.065844: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
42541<...>-27168 ( 24741) [001] d..2 24573.066836: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=000
42542<...>-27168 ( 24741) [001] dn.3 24573.066857: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=001
42543<...>-27168 ( 24741) [001] d..2 24573.066864: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R+ ==> next_comm=rcuos/0 next_pid=11 next_prio=120
42544<...>-11 ( 11) [001] d..2 24573.066870: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=006
42545 id.nn.benchmark-13158 (13131) [006] dnh1 24573.066897: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=006
42546<...>-11 ( 11) [001] d..2 24573.066899: sched_switch: prev_comm=rcuos/0 prev_pid=11 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
42547 id.nn.benchmark-13158 (13131) [006] d..2 24573.066900: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
42548       rcu_sched-8     (    8) [006] d..2 24573.066907: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
42549 id.nn.benchmark-13160 (13131) [004] d.s2 24573.067554: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
42550 id.nn.benchmark-13158 (13131) [006] d.s2 24573.067556: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
42551 id.nn.benchmark-13155 (13131) [002] d.s2 24573.067560: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
42552<...>-27168 ( 24741) [001] dnH1 24573.067572: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
42553<...>-27168 ( 24741) [001] dnH1 24573.067577: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
42554 id.nn.benchmark-13155 (13131) [002] d.s3 24573.067581: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
42555<...>-27168 ( 24741) [001] d..2 24573.067588: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
42556  crtc_event:111-254   (  254) [001] d..2 24573.067601: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
42557  kworker/u16:10-23868 (23868) [001] .... 24573.067704: clk_set_rate: l3_cluster0_vote_clk 1401600000
42558  kworker/u16:10-23868 (23868) [001] d..2 24573.067720: 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
42559     rcu_preempt-7     (    7) [001] d..2 24573.067724: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
42560     rcu_preempt-7     (    7) [001] d..2 24573.067747: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
42561 id.nn.benchmark-13158 (13131) [006] dnh1 24573.067749: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
42562 id.nn.benchmark-13158 (13131) [006] d..2 24573.067752: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
42563     rcu_preempt-7     (    7) [001] d..3 24573.067757: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
42564     rcu_preempt-7     (    7) [001] d..2 24573.067759: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
42565     rcu_preempt-7     (    7) [001] d..3 24573.067768: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
42566         rcuop/6-61    (   61) [006] d..2 24573.067770: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=006
42567     rcu_preempt-7     (    7) [001] d..2 24573.067775: 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
42568         rcuop/2-29    (   29) [001] d..2 24573.067779: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
42569         rcuop/6-61    (   61) [006] d..3 24573.067781: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=006
42570         rcuop/6-61    (   61) [006] d..2 24573.067782: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
42571         rcuop/2-29    (   29) [001] d..3 24573.067791: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
42572         rcuop/6-61    (   61) [006] d..2 24573.067794: 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
42573         rcuop/2-29    (   29) [001] d.h2 24573.067796: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
42574         rcuop/7-69    (   69) [006] d..2 24573.067799: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
42575         rcuop/2-29    (   29) [001] d..2 24573.067806: 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
42576         rcuop/0-10    (   10) [001] d..2 24573.067810: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
42577         rcuop/0-10    (   10) [001] d..3 24573.067820: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
42578         rcuop/0-10    (   10) [001] d..2 24573.067830: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
42579         rcuop/3-37    (   37) [001] d..2 24573.067853: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
42580         rcuop/1-21    (   21) [001] d..2 24573.067876: 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
42581     rcu_preempt-7     (    7) [001] d..2 24573.067883: 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
42582           <...>-13154 (-----) [005] d..3 24573.067910: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
42583 id.nn.benchmark-13160 (13131) [004] d..2 24573.067916: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
42584           <...>-13154 (-----) [005] d..2 24573.067919: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
42585           <...>-13157 (-----) [003] dnh1 24573.067923: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
42586           <...>-13157 (-----) [003] d..2 24573.067929: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
42587          <idle>-0     (-----) [004] d..1 24573.067929: cpu_idle: state=0 cpu_id=4
42588          <idle>-0     (-----) [005] d..1 24573.067929: cpu_idle: state=0 cpu_id=5
42589          <idle>-0     (-----) [005] .n.1 24573.067979: cpu_idle: state=4294967295 cpu_id=5
42590          <idle>-0     (-----) [005] d..2 24573.067994: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
42591<...>-33 ( 33) [003] d.h3 24573.067995: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
42592<...>-33 ( 33) [003] d.h3 24573.068007: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
42593          <idle>-0     (-----) [004] dnh2 24573.068012: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
42594          <idle>-0     (-----) [004] .n.1 24573.068015: cpu_idle: state=4294967295 cpu_id=4
42595<...>-33 ( 33) [003] d.h4 24573.068018: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
42596          <idle>-0     (-----) [004] d..2 24573.068018: 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
42597         sugov:4-560   (  560) [004] d..3 24573.068023: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
42598<...>-33 ( 33) [003] d..2 24573.068025: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
42599         sugov:4-560   (  560) [004] d..2 24573.068031: 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
42600     logd.writer-563   (  555) [001] d..2 24573.068031: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13197 next_prio=110
42601          <idle>-0     (-----) [004] d..1 24573.068033: cpu_idle: state=0 cpu_id=4
42602 id.nn.benchmark-13156 (13131) [000] d.h4 24573.068036: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
42603         sugov:0-559   (  559) [003] d..2 24573.068042: 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
42604 id.nn.benchmark-13156 (13131) [000] d.h5 24573.068055: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
42605          <idle>-0     (-----) [003] d..2 24573.068063: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
42606 id.nn.benchmark-13156 (13131) [000] dnh1 24573.068064: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
42607 id.nn.benchmark-13156 (13131) [000] d..2 24573.068089: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
42608           <...>-13197 (-----) [001] d..2 24573.068103: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
42609          <idle>-0     (-----) [004] .n.1 24573.068112: cpu_idle: state=4294967295 cpu_id=4
42610          <idle>-0     (-----) [004] d..2 24573.068127: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
42611           <...>-13197 (-----) [001] d..3 24573.068129: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
42612     migration/0-13    (   13) [000] d..2 24573.068144: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
42613 crtc_commit:111-253   (  253) [003] d..2 24573.068149: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
42614  Binder:23968_1-23981 (23968) [003] .... 24573.068177: binder_transaction_received: transaction=1669758
42615     logd.writer-563   (  555) [000] d.h4 24573.068330: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
42616     logd.writer-563   (  555) [000] dnh5 24573.068344: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
42617     logd.writer-563   (  555) [000] d..2 24573.068359: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
42618  crtc_event:111-254   (  254) [000] d..2 24573.068369: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
42619  Binder:23968_1-23981 (23968) [003] d..3 24573.068383: sched_waking: comm=lmkd pid=808 prio=98 target_cpu=001
42620  Binder:23968_1-23981 (23968) [003] d..4 24573.068399: sched_wakeup: comm=lmkd pid=808 prio=98 target_cpu=000
42621     logd.writer-563   (  555) [000] d..2 24573.068407: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=lmkd next_pid=808 next_prio=98
42622           <...>-13197 (-----) [001] d..2 24573.068448: sched_switch: prev_comm=id.nn.benchmark prev_pid=13197 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13198 next_prio=110
42623           <...>-13198 (-----) [001] ...1 24573.068472: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
42624           <...>-13198 (-----) [001] ...1 24573.068477: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
42625  Binder:23968_1-23981 (23968) [003] d..2 24573.068491: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42626          <idle>-0     (-----) [003] d..1 24573.068501: cpu_idle: state=0 cpu_id=3
42627 id.nn.benchmark-13158 (13131) [006] d..3 24573.068557: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
42628 id.nn.benchmark-13158 (13131) [006] d..2 24573.068565: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
42629 id.nn.benchmark-13155 (13131) [002] dnh1 24573.068567: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
42630          <idle>-0     (-----) [006] d..1 24573.068571: cpu_idle: state=0 cpu_id=6
42631 id.nn.benchmark-13155 (13131) [002] d..2 24573.068572: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
42632 id.nn.benchmark-13159 (13131) [007] d..2 24573.068582: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
42633          <idle>-0     (-----) [007] d..1 24573.068589: cpu_idle: state=0 cpu_id=7
42634          <idle>-0     (-----) [006] .n.1 24573.068596: cpu_idle: state=4294967295 cpu_id=6
42635           <...>-13198 (-----) [001] ...1 24573.068598: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
42636           <...>-13198 (-----) [001] ...1 24573.068603: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
42637          <idle>-0     (-----) [006] d..2 24573.068617: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
42638     migration/2-25    (   25) [002] d.h3 24573.068617: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
42639     migration/2-25    (   25) [002] d.h3 24573.068629: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
42640          <idle>-0     (-----) [007] dnh2 24573.068634: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
42641          <idle>-0     (-----) [007] .n.1 24573.068637: cpu_idle: state=4294967295 cpu_id=7
42642     migration/2-25    (   25) [002] d.h4 24573.068637: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
42643          <idle>-0     (-----) [007] d..2 24573.068640: 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
42644          <idle>-0     (-----) [003] .n.1 24573.068643: cpu_idle: state=4294967295 cpu_id=3
42645         sugov:4-560   (  560) [007] d..2 24573.068646: 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
42646          <idle>-0     (-----) [007] d..1 24573.068648: cpu_idle: state=0 cpu_id=7
42647          <idle>-0     (-----) [003] d..2 24573.068648: 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
42648     migration/2-25    (   25) [002] d..2 24573.068651: 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
42649         sugov:0-559   (  559) [003] d..2 24573.068661: 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
42650          <idle>-0     (-----) [002] d..1 24573.068663: cpu_idle: state=0 cpu_id=2
42651          <idle>-0     (-----) [003] d..1 24573.068666: cpu_idle: state=0 cpu_id=3
42652            lmkd-808   (  808) [000] d..2 24573.068705: sched_switch: prev_comm=lmkd prev_pid=808 prev_prio=98 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
42653     logd.writer-563   (  555) [000] d..2 24573.068841: 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
42654          <idle>-0     (-----) [000] d..1 24573.068856: cpu_idle: state=0 cpu_id=0
42655          <idle>-0     (-----) [002] ...1 24573.069984: cpu_idle: state=4294967295 cpu_id=2
42656          <idle>-0     (-----) [002] d..1 24573.069987: cpu_idle: state=0 cpu_id=2
42657          <idle>-0     (-----) [003] ...1 24573.070149: cpu_idle: state=4294967295 cpu_id=3
42658          <idle>-0     (-----) [003] d..1 24573.070152: cpu_idle: state=0 cpu_id=3
42659           <...>-13198 (-----) [001] d.h1 24573.070210: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
42660          <idle>-0     (-----) [000] ...1 24573.070225: cpu_idle: state=4294967295 cpu_id=0
42661          <idle>-0     (-----) [000] d..1 24573.070228: cpu_idle: state=0 cpu_id=0
42662           <...>-13198 (-----) [001] d.h2 24573.070229: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
42663          <idle>-0     (-----) [002] .n.1 24573.070233: cpu_idle: state=4294967295 cpu_id=2
42664          <idle>-0     (-----) [002] d..2 24573.070239: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
42665        DispSync-23904 (23896) [002] d..1 24573.070263: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
42666        DispSync-23904 (23896) [002] d..2 24573.070281: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
42667          <idle>-0     (-----) [003] .n.1 24573.070285: cpu_idle: state=4294967295 cpu_id=3
42668          <idle>-0     (-----) [003] d..2 24573.070290: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
42669           <...>-13198 (-----) [001] d..1 24573.070295: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
42670        DispSync-23904 (23896) [002] d..2 24573.070301: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42671          <idle>-0     (-----) [002] d..1 24573.070307: cpu_idle: state=0 cpu_id=2
42672           <...>-13198 (-----) [001] d..1 24573.070315: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=006
42673          <idle>-0     (-----) [007] dnh2 24573.070316: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=007
42674          <idle>-0     (-----) [007] .n.1 24573.070318: cpu_idle: state=4294967295 cpu_id=7
42675          <idle>-0     (-----) [007] d..2 24573.070320: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
42676           <...>-13198 (-----) [001] d..1 24573.070326: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
42677 id.nn.benchmark-13155 (13131) [006] d.h1 24573.070328: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=006
42678           <...>-13198 (-----) [001] d..1 24573.070335: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=004
42679           <...>-13154 (-----) [007] dnh1 24573.070337: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
42680           <...>-13154 (-----) [007] d..2 24573.070339: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
42681  appEventThread-23905 (23896) [003] d..3 24573.070339: sched_waking: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=003
42682 id.nn.benchmark-13156 (13131) [004] dnh1 24573.070346: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=004
42683 id.nn.benchmark-13156 (13131) [004] d..2 24573.070349: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
42684  appEventThread-23905 (23896) [003] d..4 24573.070358: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=000
42685          <idle>-0     (-----) [000] .n.1 24573.070363: cpu_idle: state=4294967295 cpu_id=0
42686          <idle>-0     (-----) [000] d..2 24573.070370: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
42687  appEventThread-23905 (23896) [003] d..3 24573.070370: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
42688  appEventThread-23905 (23896) [003] d..4 24573.070389: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
42689          <idle>-0     (-----) [002] .n.1 24573.070394: cpu_idle: state=4294967295 cpu_id=2
42690  appEventThread-23905 (23896) [003] d.h3 24573.070419: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
42691          <idle>-0     (-----) [002] d..2 24573.070420: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
42692  appEventThread-23905 (23896) [003] d.h3 24573.070430: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
42693           <...>-13157 (-----) [005] dnh1 24573.070433: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
42694           <...>-13157 (-----) [005] d..2 24573.070436: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
42695         sugov:4-560   (  560) [005] d..2 24573.070439: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
42696  appEventThread-23905 (23896) [003] d.h4 24573.070442: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
42697 s.nexuslauncher-24827 (24827) [000] d..2 24573.070454: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
42698         sugov:0-559   (  559) [000] d..2 24573.070462: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
42699  appEventThread-23905 (23896) [003] d..2 24573.070478: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
42700 s.nexuslauncher-24827 (24827) [000] .... 24573.070643: binder_transaction: transaction=1669759 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
42701 s.nexuslauncher-24827 (24827) [000] d..4 24573.070652: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
42702 s.nexuslauncher-24827 (24827) [000] d..5 24573.070674: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
42703<...>-24151 ( 24151) [002] .... 24573.070702: binder_transaction: transaction=1669760 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
42704<...>-24151 ( 24151) [002] d..4 24573.070708: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
42705<...>-24151 ( 24151) [002] d..5 24573.070724: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
42706 s.nexuslauncher-24827 (24827) [000] d..3 24573.070728: sched_waking: comm=RenderThread pid=25194 prio=120 target_cpu=006
42707 s.nexuslauncher-24827 (24827) [000] d..4 24573.070747: sched_wakeup: comm=RenderThread pid=25194 prio=120 target_cpu=000
42708<...>-24151 ( 24151) [002] d..3 24573.070749: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
42709<...>-24151 ( 24151) [002] d..4 24573.070773: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
42710<...>-24151 ( 24151) [002] d..2 24573.070876: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
42711 id.nn.benchmark-13155 (13131) [006] d.s1 24573.070889: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=006
42712           <...>-13157 (-----) [005] d.s2 24573.070891: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
42713  Binder:23896_5-25989 (23896) [002] .... 24573.070904: binder_transaction_received: transaction=1669760
42714 id.nn.benchmark-13155 (13131) [006] d.H3 24573.070922: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
42715 s.nexuslauncher-24827 (24827) [000] d.h1 24573.070923: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
42716           <...>-13198 (-----) [001] dnh1 24573.070924: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
42717 id.nn.benchmark-13155 (13131) [006] d.H4 24573.070928: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
42718 id.nn.benchmark-13155 (13131) [006] d.H3 24573.070928: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
42719           <...>-13198 (-----) [001] d..2 24573.070930: sched_switch: prev_comm=id.nn.benchmark prev_pid=13198 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
42720  Binder:23896_5-25989 (23896) [002] d..1 24573.070933: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
42721           <...>-13157 (-----) [005] d..2 24573.070934: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
42722         sugov:4-560   (  560) [005] d..2 24573.070937: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
42723 s.nexuslauncher-24827 (24827) [000] dnh1 24573.070939: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
42724 s.nexuslauncher-24827 (24827) [000] d..2 24573.070944: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
42725  Binder:23896_5-25989 (23896) [002] d..2 24573.070944: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
42726 id.nn.benchmark-13156 (13131) [003] d..2 24573.070953: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
42727         sugov:0-559   (  559) [000] d..2 24573.070956: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
42728  Binder:23896_5-25989 (23896) [002] d..2 24573.070962: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
42729<...>-23903 ( 23896) [000] .... 24573.070966: binder_transaction_received: transaction=1669759
42730  appEventThread-23905 (23896) [003] d..2 24573.070979: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
42731<...>-23903 ( 23896) [000] d..1 24573.070990: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
42732<...>-23903 ( 23896) [000] dn.2 24573.071003: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
42733<...>-23903 ( 23896) [000] d..2 24573.071008: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
42734  appEventThread-23905 (23896) [000] d..2 24573.071022: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=120
42735    RenderThread-25194 (24827) [000] d..2 24573.071049: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
42736       rcu_sched-8     (    8) [000] d..2 24573.071054: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=001
42737       rcu_sched-8     (    8) [000] d..3 24573.071071: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=001
42738       rcu_sched-8     (    8) [000] d..2 24573.071077: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
42739<...>-23903 ( 23896) [000] d..1 24573.071081: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
42740<...>-23903 ( 23896) [000] dn.2 24573.071088: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
42741<...>-23903 ( 23896) [000] d..2 24573.071091: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
42742  appEventThread-23905 (23896) [000] d..2 24573.071113: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
42743<...>-23903 ( 23896) [000] d..2 24573.071129: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
42744    RenderThread-24437 (24151) [002] d..1 24573.071136: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
42745    RenderThread-24437 (24151) [002] d..2 24573.071153: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
42746  kworker/u16:10-23868 (23868) [001] d..2 24573.071167: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=rcuos/0 next_pid=11 next_prio=120
42747<...>-11 ( 11) [001] d..2 24573.071171: sched_waking: comm=rcuos/1 pid=22 prio=120 target_cpu=000
42748<...>-11 ( 11) [001] d..3 24573.071184: sched_wakeup: comm=rcuos/1 pid=22 prio=120 target_cpu=000
42749 s.nexuslauncher-24827 (24827) [000] d..2 24573.071192: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=S ==> next_comm=rcuos/1 next_pid=22 next_prio=120
42750<...>-11 ( 11) [001] d..2 24573.071199: sched_switch: prev_comm=rcuos/0 prev_pid=11 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13198 next_prio=110
42751 id.nn.benchmark-13156 (13131) [003] d.s2 24573.071202: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
42752<...>-22 ( 22) [000] d..2 24573.071204: sched_switch: prev_comm=rcuos/1 prev_pid=22 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
42753    RenderThread-24437 (24151) [002] .... 24573.071207: binder_transaction: transaction=1669761 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
42754    RenderThread-24437 (24151) [002] d..4 24573.071211: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
42755 id.nn.benchmark-13156 (13131) [003] d.s3 24573.071218: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
42756    RenderThread-24437 (24151) [002] d..5 24573.071222: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=002
42757 id.nn.benchmark-13156 (13131) [003] d.s3 24573.071225: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
42758    RenderThread-24437 (24151) [002] d..2 24573.071230: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
42759           <...>-13198 (-----) [001] d..2 24573.071232: sched_switch: prev_comm=id.nn.benchmark prev_pid=13198 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
42760<...>-23903 ( 23896) [002] .... 24573.071235: binder_transaction_received: transaction=1669761
42761<...>-24151 ( 24151) [000] d..2 24573.071268: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
42762<...>-23903 ( 23896) [002] .... 24573.071285: binder_transaction: transaction=1669762 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
42763<...>-23903 ( 23896) [002] d..2 24573.071315: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
42764<...>-23903 ( 23896) [002] d..3 24573.071324: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
42765<...>-23903 ( 23896) [002] d..2 24573.071345: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
42766    RenderThread-24437 (24151) [002] .... 24573.071348: binder_transaction_received: transaction=1669762
42767  kworker/u16:10-23868 (23868) [001] d..2 24573.071427: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13198 next_prio=110
42768    RenderThread-24437 (24151) [002] d..2 24573.072991: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
42769 id.nn.benchmark-13158 (13131) [002] d.h4 24573.073024: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
42770 id.nn.benchmark-13158 (13131) [002] d.h4 24573.073036: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
42771 id.nn.benchmark-13155 (13131) [006] dnh1 24573.073039: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
42772 id.nn.benchmark-13155 (13131) [006] d..2 24573.073042: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
42773         sugov:4-560   (  560) [006] d..2 24573.073046: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
42774 id.nn.benchmark-13158 (13131) [002] d.h5 24573.073049: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
42775           <...>-13198 (-----) [001] d..2 24573.073057: sched_switch: prev_comm=id.nn.benchmark prev_pid=13198 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
42776         sugov:0-559   (  559) [001] d..2 24573.073064: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13198 next_prio=110
42777 id.nn.benchmark-13158 (13131) [002] d.h1 24573.073065: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
42778 id.nn.benchmark-13158 (13131) [002] d.h2 24573.073073: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
42779 id.nn.benchmark-13158 (13131) [002] dnh2 24573.073075: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
42780 id.nn.benchmark-13158 (13131) [002] d..2 24573.073082: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
42781    RenderThread-24437 (24151) [002] .... 24573.073292: binder_transaction: transaction=1669763 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
42782    RenderThread-24437 (24151) [002] d..4 24573.073301: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=002
42783 id.nn.benchmark-13155 (13131) [006] dnh1 24573.073323: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
42784 id.nn.benchmark-13155 (13131) [006] d..2 24573.073343: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
42785<...>-23903 ( 23896) [006] .... 24573.073345: binder_transaction_received: transaction=1669763
42786           <...>-13154 (-----) [000] d.h2 24573.073346: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
42787    RenderThread-24437 (24151) [002] d..2 24573.073351: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
42788           <...>-13154 (-----) [000] d.h3 24573.073360: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
42789           <...>-13198 (-----) [001] d..2 24573.073368: sched_switch: prev_comm=id.nn.benchmark prev_pid=13198 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
42790 kgsl_worker_thr-246   (  246) [001] d..2 24573.073403: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
42791 kgsl_worker_thr-246   (  246) [001] d..3 24573.073412: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
42792<...>-23903 ( 23896) [006] .... 24573.073415: binder_transaction: transaction=1669764 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
42793<...>-23903 ( 23896) [006] d..2 24573.073417: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
42794 id.nn.benchmark-13158 (13131) [002] dnh1 24573.073431: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
42795<...>-23903 ( 23896) [006] d..2 24573.073431: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
42796 id.nn.benchmark-13158 (13131) [002] d..2 24573.073436: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
42797    RenderThread-24437 (24151) [002] .... 24573.073441: binder_transaction_received: transaction=1669764
42798 kgsl_worker_thr-246   (  246) [001] d..2 24573.073473: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
42799    RenderThread-24437 (24151) [002] d..2 24573.073488: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
42800  kworker/u16:10-23868 (23868) [001] d..2 24573.073499: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13198 next_prio=110
42801           <...>-13198 (-----) [001] ...1 24573.073748: tracing_mark_write: E|13131
42802           <...>-13198 (-----) [001] ...1 24573.073753: tracing_mark_write: E|13131
42803           <...>-13198 (-----) [001] ...1 24573.073774: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
42804           <...>-13198 (-----) [001] ...1 24573.073780: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
42805           <...>-13157 (-----) [005] d.s2 24573.074220: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
42806 id.nn.benchmark-13158 (13131) [002] d.h1 24573.074233: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
42807           <...>-13198 (-----) [001] dnH1 24573.074237: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
42808           <...>-13198 (-----) [001] dns1 24573.074240: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
42809 id.nn.benchmark-13158 (13131) [002] d.h2 24573.074248: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
42810           <...>-13198 (-----) [001] dns2 24573.074252: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
42811           <...>-13198 (-----) [001] d..2 24573.074258: sched_switch: prev_comm=id.nn.benchmark prev_pid=13198 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
42812        DispSync-23904 (23896) [001] d..1 24573.074274: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
42813        DispSync-23904 (23896) [001] d..2 24573.074285: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
42814           <...>-13154 (-----) [000] d..2 24573.074293: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
42815        DispSync-23904 (23896) [001] d..2 24573.074298: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
42816   sfEventThread-23906 (23896) [000] d..3 24573.074327: sched_waking: comm=android.anim pid=24041 prio=116 target_cpu=005
42817  kworker/u16:10-23868 (23868) [001] d..2 24573.074343: 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
42818     rcu_preempt-7     (    7) [001] d..2 24573.074347: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
42819           <...>-13157 (-----) [005] dnh1 24573.074352: sched_wakeup: comm=android.anim pid=24041 prio=116 target_cpu=005
42820           <...>-13157 (-----) [005] d..2 24573.074354: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=116
42821     rcu_preempt-7     (    7) [001] d..3 24573.074357: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
42822   sfEventThread-23906 (23896) [000] d..3 24573.074359: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
42823     rcu_preempt-7     (    7) [001] d..2 24573.074359: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
42824   sfEventThread-23906 (23896) [000] d..4 24573.074374: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
42825 id.nn.benchmark-13155 (13131) [006] dnh1 24573.074384: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
42826 id.nn.benchmark-13155 (13131) [006] d..2 24573.074386: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
42827     rcu_preempt-7     (    7) [001] d..2 24573.074387: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
42828   sfEventThread-23906 (23896) [000] d..2 24573.074388: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
42829         rcuop/6-61    (   61) [006] d..2 24573.074398: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
42830<...>-24041 ( 23968) [005] d..2 24573.074429: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
42831  surfaceflinger-23896 (23896) [001] d..1 24573.074657: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
42832  surfaceflinger-23896 (23896) [001] d..2 24573.074668: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
42833           <...>-13154 (-----) [000] d..2 24573.074676: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
42834   sfEventThread-23906 (23896) [000] d..2 24573.074690: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
42835  surfaceflinger-23896 (23896) [001] ...1 24573.074806: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
42836  surfaceflinger-23896 (23896) [001] ...1 24573.074811: tracing_mark_write: E|23896
42837  surfaceflinger-23896 (23896) [001] .... 24573.074858: binder_transaction: transaction=1669765 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
42838  surfaceflinger-23896 (23896) [001] ...2 24573.074881: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
42839  surfaceflinger-23896 (23896) [001] d..4 24573.074890: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=006
42840 id.nn.benchmark-13159 (13131) [007] d..3 24573.074895: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
42841 id.nn.benchmark-13160 (13131) [004] d..2 24573.074904: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
42842 id.nn.benchmark-13159 (13131) [007] d..2 24573.074905: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
42843 id.nn.benchmark-13156 (13131) [003] dnh1 24573.074905: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
42844          <idle>-0     (-----) [004] d..1 24573.074909: cpu_idle: state=0 cpu_id=4
42845 id.nn.benchmark-13156 (13131) [003] d..2 24573.074910: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
42846          <idle>-0     (-----) [007] dnh2 24573.074911: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
42847          <idle>-0     (-----) [007] d..2 24573.074916: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
42848  surfaceflinger-23896 (23896) [001] d..2 24573.074916: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
42849  HwBinder:598_3-633   (  598) [007] .... 24573.074921: binder_transaction_received: transaction=1669765
42850         rcuop/0-10    (   10) [001] d..2 24573.074921: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
42851  HwBinder:598_3-633   (  598) [007] ...1 24573.074950: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
42852<...>-33 ( 33) [003] d.h3 24573.074956: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
42853         rcuop/0-10    (   10) [001] d..3 24573.074957: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
42854         rcuop/0-10    (   10) [001] d..2 24573.074966: 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
42855<...>-33 ( 33) [003] d.h3 24573.074968: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
42856          <idle>-0     (-----) [004] dnh2 24573.074973: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
42857          <idle>-0     (-----) [004] .n.1 24573.074976: cpu_idle: state=4294967295 cpu_id=4
42858<...>-33 ( 33) [003] d.h4 24573.074978: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
42859          <idle>-0     (-----) [004] d..2 24573.074979: 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
42860         sugov:4-560   (  560) [004] d..3 24573.074984: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
42861<...>-33 ( 33) [003] d..2 24573.074985: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
42862         sugov:4-560   (  560) [004] d..2 24573.074990: 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
42863           <...>-13154 (-----) [000] dnh1 24573.074993: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
42864          <idle>-0     (-----) [004] d..1 24573.074993: cpu_idle: state=0 cpu_id=4
42865         sugov:0-559   (  559) [003] d..2 24573.074997: 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
42866         rcuop/1-21    (   21) [001] d..2 24573.074999: 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
42867           <...>-13154 (-----) [000] d..2 24573.074999: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
42868  HwBinder:598_3-633   (  598) [007] ...1 24573.075004: tracing_mark_write: B|598|HWCSession::PresentDisplay::
42869     rcu_preempt-7     (    7) [001] d..2 24573.075007: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13198 next_prio=110
42870          <idle>-0     (-----) [003] d..1 24573.075010: cpu_idle: state=0 cpu_id=3
42871          <idle>-0     (-----) [004] .n.1 24573.075022: cpu_idle: state=4294967295 cpu_id=4
42872          <idle>-0     (-----) [004] d..2 24573.075042: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
42873           <...>-13157 (-----) [005] d..3 24573.075046: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
42874     migration/0-13    (   13) [000] d..2 24573.075052: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42875           <...>-13157 (-----) [005] d..2 24573.075053: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
42876 id.nn.benchmark-13158 (13131) [002] dnh1 24573.075056: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
42877          <idle>-0     (-----) [005] d..1 24573.075059: cpu_idle: state=0 cpu_id=5
42878 id.nn.benchmark-13158 (13131) [002] d..2 24573.075062: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
42879          <idle>-0     (-----) [000] d..1 24573.075064: cpu_idle: state=0 cpu_id=0
42880 id.nn.benchmark-13155 (13131) [006] d..2 24573.075066: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
42881          <idle>-0     (-----) [006] d..1 24573.075072: cpu_idle: state=0 cpu_id=6
42882  HwBinder:598_3-633   (  598) [007] ...1 24573.075074: tracing_mark_write: B|598|HWDeviceDRM::Commit::
42883  HwBinder:598_3-633   (  598) [007] ...1 24573.075078: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
42884          <idle>-0     (-----) [005] .n.1 24573.075085: cpu_idle: state=4294967295 cpu_id=5
42885          <idle>-0     (-----) [005] d..2 24573.075103: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
42886           <...>-13198 (-----) [001] d..1 24573.075104: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
42887           <...>-13198 (-----) [001] d..1 24573.075117: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
42888          <idle>-0     (-----) [006] dnh2 24573.075119: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
42889     migration/2-25    (   25) [002] d..2 24573.075120: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
42890          <idle>-0     (-----) [006] .n.1 24573.075121: cpu_idle: state=4294967295 cpu_id=6
42891          <idle>-0     (-----) [006] d..2 24573.075125: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
42892           <...>-13198 (-----) [001] d..1 24573.075128: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
42893 id.nn.benchmark-13158 (13131) [005] d.h1 24573.075129: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
42894           <...>-13198 (-----) [001] d..1 24573.075138: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=004
42895  HwBinder:598_3-633   (  598) [007] d.h1 24573.075141: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
42896           <...>-13154 (-----) [004] d.h1 24573.075148: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=004
42897  HwBinder:598_3-633   (  598) [007] d..2 24573.075294: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
42898          <idle>-0     (-----) [003] dnh2 24573.075309: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
42899          <idle>-0     (-----) [003] .n.1 24573.075313: cpu_idle: state=4294967295 cpu_id=3
42900          <idle>-0     (-----) [003] d..2 24573.075318: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
42901  HwBinder:598_3-633   (  598) [007] ...1 24573.075331: tracing_mark_write: E|598
42902  HwBinder:598_3-633   (  598) [007] ...1 24573.075333: tracing_mark_write: E|598
42903  HwBinder:598_3-633   (  598) [007] ...1 24573.075355: tracing_mark_write: E|598
42904  HwBinder:598_3-633   (  598) [007] ...1 24573.075377: tracing_mark_write: E|598
42905  HwBinder:598_3-633   (  598) [007] .... 24573.075382: binder_transaction: transaction=1669766 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
42906  HwBinder:598_3-633   (  598) [007] d..2 24573.075387: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
42907  HwBinder:598_3-633   (  598) [007] .... 24573.075396: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
42908          <idle>-0     (-----) [000] dnh2 24573.075404: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
42909          <idle>-0     (-----) [000] .n.1 24573.075407: cpu_idle: state=4294967295 cpu_id=0
42910          <idle>-0     (-----) [000] d..2 24573.075412: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
42911  surfaceflinger-23896 (23896) [000] .... 24573.075417: binder_transaction_received: transaction=1669766
42912  HwBinder:598_3-633   (  598) [007] d..2 24573.075419: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
42913<...>-27168 ( 24741) [002] .... 24573.075701: binder_transaction: transaction=1669767 dest_node=3 dest_proc=587 dest_thread=0 reply=0 flags=0x10 code=0x1
42914  surfaceflinger-23896 (23896) [000] d..2 24573.075704: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
42915<...>-27168 ( 24741) [002] d..4 24573.075709: sched_waking: comm=servicemanager pid=587 prio=120 target_cpu=000
42916           <...>-13157 (-----) [000] d.h4 24573.075739: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
42917<...>-27168 ( 24741) [002] dn.5 24573.075746: sched_wakeup: comm=servicemanager pid=587 prio=120 target_cpu=002
42918           <...>-13157 (-----) [000] d.h4 24573.075751: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
42919<...>-27168 ( 24741) [002] d..2 24573.075752: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R+ ==> next_comm=servicemanager next_pid=587 next_prio=120
42920 id.nn.benchmark-13158 (13131) [005] dnh1 24573.075754: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
42921 id.nn.benchmark-13158 (13131) [005] d..2 24573.075757: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
42922<...>-587 ( 587) [002] .... 24573.075760: binder_transaction_received: transaction=1669767
42923         sugov:4-560   (  560) [005] d..2 24573.075761: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
42924           <...>-13157 (-----) [000] d.h5 24573.075765: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
42925<...>-587 ( 587) [002] d..2 24573.075772: sched_switch: prev_comm=servicemanager prev_pid=587 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
42926         sugov:0-559   (  559) [002] d..2 24573.075783: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=servicemanager next_pid=587 next_prio=120
42927<...>-587 ( 587) [002] d..2 24573.075923: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
42928<...>-587 ( 587) [002] d..3 24573.075954: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
42929 crtc_commit:111-253   (  253) [003] d..2 24573.075959: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcuop/2 next_pid=29 next_prio=120
42930         rcuop/2-29    (   29) [003] d..2 24573.075989: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
42931<...>-587 ( 587) [002] .... 24573.075996: binder_transaction: transaction=1669768 dest_node=0 dest_proc=24741 dest_thread=27168 reply=1 flags=0x0 code=0x0
42932<...>-587 ( 587) [002] d..2 24573.076022: sched_switch: prev_comm=servicemanager prev_pid=587 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
42933<...>-27168 ( 24741) [002] .... 24573.076027: binder_transaction_received: transaction=1669768
42934<...>-27168 ( 24741) [002] .... 24573.076135: binder_transaction: transaction=1669769 dest_node=1278627 dest_proc=24290 dest_thread=0 reply=0 flags=0x10 code=0x17
42935<...>-27168 ( 24741) [002] ...2 24573.076142: binder_set_priority: proc=24290 thread=24501 old=120 => new=130 desired=130
42936<...>-27168 ( 24741) [002] d..4 24573.076146: sched_waking: comm=Binder:24290_7 pid=24501 prio=130 target_cpu=000
42937<...>-27168 ( 24741) [002] d..5 24573.076161: sched_wakeup: comm=Binder:24290_7 pid=24501 prio=130 target_cpu=002
42938<...>-27168 ( 24741) [002] d..2 24573.076169: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=S ==> next_comm=Binder:24290_7 next_pid=24501 next_prio=130
42939<...>-24501 ( 24290) [002] .... 24573.076177: binder_transaction_received: transaction=1669769
42940<...>-24501 ( 24290) [002] .... 24573.076411: binder_transaction: transaction=1669770 dest_node=0 dest_proc=24741 dest_thread=27168 reply=1 flags=0x0 code=0x0
42941<...>-24501 ( 24290) [002] d..2 24573.076416: sched_waking: comm=lowpool[8] pid=27168 prio=130 target_cpu=002
42942<...>-24501 ( 24290) [002] d..3 24573.076424: sched_wakeup: comm=lowpool[8] pid=27168 prio=130 target_cpu=002
42943<...>-24501 ( 24290) [002] .... 24573.076426: binder_set_priority: proc=24290 thread=24501 old=130 => new=120 desired=120
42944<...>-24501 ( 24290) [002] d..2 24573.076452: sched_switch: prev_comm=Binder:24290_7 prev_pid=24501 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
42945<...>-27168 ( 24741) [002] .... 24573.076456: binder_transaction_received: transaction=1669770
42946<...>-27168 ( 24741) [002] .... 24573.076506: binder_transaction: transaction=1669771 dest_node=3 dest_proc=587 dest_thread=0 reply=0 flags=0x10 code=0x1
42947<...>-27168 ( 24741) [002] d..4 24573.076510: sched_waking: comm=servicemanager pid=587 prio=120 target_cpu=002
42948<...>-27168 ( 24741) [002] dn.5 24573.076517: sched_wakeup: comm=servicemanager pid=587 prio=120 target_cpu=002
42949<...>-27168 ( 24741) [002] d..2 24573.076522: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R+ ==> next_comm=servicemanager next_pid=587 next_prio=120
42950<...>-587 ( 587) [002] .... 24573.076526: binder_transaction_received: transaction=1669771
42951<...>-587 ( 587) [002] .... 24573.076581: binder_transaction: transaction=1669772 dest_node=0 dest_proc=24741 dest_thread=27168 reply=1 flags=0x0 code=0x0
42952<...>-587 ( 587) [002] d..2 24573.076599: sched_switch: prev_comm=servicemanager prev_pid=587 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
42953<...>-27168 ( 24741) [002] .... 24573.076603: binder_transaction_received: transaction=1669772
42954<...>-27168 ( 24741) [002] .... 24573.076661: binder_transaction: transaction=1669773 dest_node=1278627 dest_proc=24290 dest_thread=0 reply=0 flags=0x10 code=0x1b
42955<...>-27168 ( 24741) [002] ...2 24573.076664: binder_set_priority: proc=24290 thread=24501 old=120 => new=130 desired=130
42956<...>-27168 ( 24741) [002] d..4 24573.076667: sched_waking: comm=Binder:24290_7 pid=24501 prio=130 target_cpu=002
42957<...>-27168 ( 24741) [002] d..5 24573.076674: sched_wakeup: comm=Binder:24290_7 pid=24501 prio=130 target_cpu=002
42958<...>-27168 ( 24741) [002] d..2 24573.076682: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=S ==> next_comm=Binder:24290_7 next_pid=24501 next_prio=130
42959<...>-24501 ( 24290) [002] .... 24573.076685: binder_transaction_received: transaction=1669773
42960<...>-24501 ( 24290) [002] .... 24573.076767: binder_transaction: transaction=1669774 dest_node=0 dest_proc=24741 dest_thread=27168 reply=1 flags=0x0 code=0x0
42961<...>-24501 ( 24290) [002] d..2 24573.076770: sched_waking: comm=lowpool[8] pid=27168 prio=130 target_cpu=002
42962<...>-24501 ( 24290) [002] d..3 24573.076778: sched_wakeup: comm=lowpool[8] pid=27168 prio=130 target_cpu=002
42963<...>-24501 ( 24290) [002] .... 24573.076780: binder_set_priority: proc=24290 thread=24501 old=130 => new=120 desired=120
42964<...>-24501 ( 24290) [002] d..2 24573.076804: sched_switch: prev_comm=Binder:24290_7 prev_pid=24501 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
42965<...>-27168 ( 24741) [002] .... 24573.076807: binder_transaction_received: transaction=1669774
42966<...>-27168 ( 24741) [002] .... 24573.076854: binder_transaction: transaction=1669775 dest_node=3 dest_proc=587 dest_thread=0 reply=0 flags=0x10 code=0x1
42967<...>-27168 ( 24741) [002] d..4 24573.076858: sched_waking: comm=servicemanager pid=587 prio=120 target_cpu=002
42968<...>-27168 ( 24741) [002] dn.5 24573.076866: sched_wakeup: comm=servicemanager pid=587 prio=120 target_cpu=002
42969<...>-27168 ( 24741) [002] d..2 24573.076871: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R+ ==> next_comm=servicemanager next_pid=587 next_prio=120
42970<...>-587 ( 587) [002] .... 24573.076874: binder_transaction_received: transaction=1669775
42971<...>-587 ( 587) [002] .... 24573.076924: binder_transaction: transaction=1669776 dest_node=0 dest_proc=24741 dest_thread=27168 reply=1 flags=0x0 code=0x0
42972<...>-587 ( 587) [002] d..2 24573.076942: sched_switch: prev_comm=servicemanager prev_pid=587 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
42973<...>-27168 ( 24741) [002] .... 24573.076946: binder_transaction_received: transaction=1669776
42974<...>-27168 ( 24741) [002] .... 24573.077004: binder_transaction: transaction=1669777 dest_node=1278627 dest_proc=24290 dest_thread=0 reply=0 flags=0x10 code=0x19
42975<...>-27168 ( 24741) [002] ...2 24573.077007: binder_set_priority: proc=24290 thread=24501 old=120 => new=130 desired=130
42976<...>-27168 ( 24741) [002] d..4 24573.077009: sched_waking: comm=Binder:24290_7 pid=24501 prio=130 target_cpu=002
42977<...>-27168 ( 24741) [002] d..5 24573.077016: sched_wakeup: comm=Binder:24290_7 pid=24501 prio=130 target_cpu=002
42978<...>-27168 ( 24741) [002] d..2 24573.077024: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=S ==> next_comm=Binder:24290_7 next_pid=24501 next_prio=130
42979<...>-24501 ( 24290) [002] .... 24573.077027: binder_transaction_received: transaction=1669777
42980<...>-24501 ( 24290) [002] .... 24573.077107: binder_transaction: transaction=1669778 dest_node=0 dest_proc=24741 dest_thread=27168 reply=1 flags=0x0 code=0x0
42981<...>-24501 ( 24290) [002] d..2 24573.077111: sched_waking: comm=lowpool[8] pid=27168 prio=130 target_cpu=002
42982<...>-24501 ( 24290) [002] d..3 24573.077118: sched_wakeup: comm=lowpool[8] pid=27168 prio=130 target_cpu=002
42983<...>-24501 ( 24290) [002] .... 24573.077120: binder_set_priority: proc=24290 thread=24501 old=130 => new=120 desired=120
42984<...>-24501 ( 24290) [002] d..2 24573.077144: sched_switch: prev_comm=Binder:24290_7 prev_pid=24501 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
42985<...>-27168 ( 24741) [002] .... 24573.077148: binder_transaction_received: transaction=1669778
42986<...>-27168 ( 24741) [002] .... 24573.077194: binder_transaction: transaction=1669779 dest_node=3 dest_proc=587 dest_thread=0 reply=0 flags=0x10 code=0x1
42987<...>-27168 ( 24741) [002] d..4 24573.077197: sched_waking: comm=servicemanager pid=587 prio=120 target_cpu=002
42988<...>-27168 ( 24741) [002] dn.5 24573.077204: sched_wakeup: comm=servicemanager pid=587 prio=120 target_cpu=002
42989<...>-27168 ( 24741) [002] d..2 24573.077210: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R+ ==> next_comm=servicemanager next_pid=587 next_prio=120
42990<...>-587 ( 587) [002] .... 24573.077213: binder_transaction_received: transaction=1669779
42991<...>-587 ( 587) [002] .... 24573.077262: binder_transaction: transaction=1669780 dest_node=0 dest_proc=24741 dest_thread=27168 reply=1 flags=0x0 code=0x0
42992<...>-587 ( 587) [002] d..2 24573.077280: sched_switch: prev_comm=servicemanager prev_pid=587 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
42993<...>-27168 ( 24741) [002] .... 24573.077284: binder_transaction_received: transaction=1669780
42994<...>-27168 ( 24741) [002] .... 24573.077341: binder_transaction: transaction=1669781 dest_node=1278627 dest_proc=24290 dest_thread=0 reply=0 flags=0x10 code=0x14
42995<...>-27168 ( 24741) [002] ...2 24573.077345: binder_set_priority: proc=24290 thread=24501 old=120 => new=130 desired=130
42996<...>-27168 ( 24741) [002] d..4 24573.077347: sched_waking: comm=Binder:24290_7 pid=24501 prio=130 target_cpu=002
42997<...>-27168 ( 24741) [002] d..5 24573.077354: sched_wakeup: comm=Binder:24290_7 pid=24501 prio=130 target_cpu=002
42998<...>-27168 ( 24741) [002] d..2 24573.077362: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=S ==> next_comm=Binder:24290_7 next_pid=24501 next_prio=130
42999<...>-24501 ( 24290) [002] .... 24573.077365: binder_transaction_received: transaction=1669781
43000<...>-24501 ( 24290) [002] .... 24573.077502: binder_transaction: transaction=1669782 dest_node=0 dest_proc=24741 dest_thread=27168 reply=1 flags=0x0 code=0x0
43001<...>-24501 ( 24290) [002] d..2 24573.077506: sched_waking: comm=lowpool[8] pid=27168 prio=130 target_cpu=002
43002<...>-24501 ( 24290) [002] d..3 24573.077514: sched_wakeup: comm=lowpool[8] pid=27168 prio=130 target_cpu=002
43003<...>-24501 ( 24290) [002] .... 24573.077516: binder_set_priority: proc=24290 thread=24501 old=130 => new=120 desired=120
43004<...>-24501 ( 24290) [002] d..2 24573.077540: sched_switch: prev_comm=Binder:24290_7 prev_pid=24501 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
43005<...>-27168 ( 24741) [002] .... 24573.077544: binder_transaction_received: transaction=1669782
43006           <...>-13154 (-----) [004] d.s2 24573.077557: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
43007           <...>-13198 (-----) [001] dnH1 24573.077585: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
43008 id.nn.benchmark-13158 (13131) [005] d.H2 24573.077588: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
43009           <...>-13198 (-----) [001] d..2 24573.077594: sched_switch: prev_comm=id.nn.benchmark prev_pid=13198 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
43010 id.nn.benchmark-13158 (13131) [005] d.H3 24573.077597: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
43011 id.nn.benchmark-13158 (13131) [005] d.H2 24573.077597: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
43012 id.nn.benchmark-13155 (13131) [006] d..2 24573.077603: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
43013         sugov:4-560   (  560) [006] d..2 24573.077608: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
43014  kworker/u16:10-23868 (23868) [001] dnh3 24573.077611: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
43015  kworker/u16:10-23868 (23868) [001] d..2 24573.077616: 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
43016         sugov:0-559   (  559) [001] d..2 24573.077623: 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
43017  kworker/u16:10-23868 (23868) [001] d..2 24573.077704: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13198 next_prio=110
43018<...>-27168 ( 24741) [002] .... 24573.078429: binder_transaction: transaction=1669783 dest_node=1271803 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x3
43019<...>-27168 ( 24741) [002] d..4 24573.078434: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=003
43020<...>-27168 ( 24741) [002] d..5 24573.078452: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=003
43021 id.nn.benchmark-13160 (13131) [003] d..2 24573.078461: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
43022  Binder:23968_1-23981 (23968) [003] .... 24573.078469: binder_transaction_received: transaction=1669783
43023<...>-27168 ( 24741) [002] d..2 24573.078479: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
43024  Binder:23968_1-23981 (23968) [003] .... 24573.078736: binder_transaction: transaction=1669784 dest_node=0 dest_proc=24741 dest_thread=27168 reply=1 flags=0x0 code=0x0
43025  Binder:23968_1-23981 (23968) [003] d..2 24573.078740: sched_waking: comm=lowpool[8] pid=27168 prio=130 target_cpu=002
43026  Binder:23968_1-23981 (23968) [003] d..3 24573.078754: sched_wakeup: comm=lowpool[8] pid=27168 prio=130 target_cpu=003
43027  Binder:23968_1-23981 (23968) [003] d..2 24573.078775: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
43028<...>-27168 ( 24741) [003] .... 24573.078780: binder_transaction_received: transaction=1669784
43029           <...>-13154 (-----) [004] d..2 24573.079629: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
43030 id.nn.benchmark-13155 (13131) [006] d..3 24573.079630: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
43031 id.nn.benchmark-13155 (13131) [006] d..2 24573.079637: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
43032          <idle>-0     (-----) [006] d..1 24573.079640: cpu_idle: state=0 cpu_id=6
43033           <...>-13157 (-----) [000] dnh1 24573.079640: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
43034           <...>-13157 (-----) [000] d..2 24573.079646: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
43035          <idle>-0     (-----) [006] .n.1 24573.079668: cpu_idle: state=4294967295 cpu_id=6
43036          <idle>-0     (-----) [006] d..2 24573.079690: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
43037     migration/0-13    (   13) [000] d.h3 24573.079691: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
43038 id.nn.benchmark-13158 (13131) [005] d..2 24573.079693: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
43039          <idle>-0     (-----) [005] d..1 24573.079698: cpu_idle: state=0 cpu_id=5
43040     migration/0-13    (   13) [000] d.h3 24573.079704: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
43041          <idle>-0     (-----) [005] dnh2 24573.079708: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
43042          <idle>-0     (-----) [005] .n.1 24573.079710: cpu_idle: state=4294967295 cpu_id=5
43043          <idle>-0     (-----) [005] d..2 24573.079713: 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
43044     migration/0-13    (   13) [000] d.h4 24573.079713: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
43045     migration/0-13    (   13) [000] d..2 24573.079720: 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
43046           <...>-13198 (-----) [001] ...1 24573.079722: tracing_mark_write: E|13131
43047         sugov:4-560   (  560) [005] d..2 24573.079723: 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
43048          <idle>-0     (-----) [005] d..1 24573.079725: cpu_idle: state=0 cpu_id=5
43049           <...>-13198 (-----) [001] ...1 24573.079726: tracing_mark_write: E|13131
43050         sugov:0-559   (  559) [000] d..2 24573.079733: 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
43051          <idle>-0     (-----) [000] d..1 24573.079742: cpu_idle: state=0 cpu_id=0
43052           <...>-13198 (-----) [001] ...1 24573.079760: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
43053           <...>-13198 (-----) [001] ...1 24573.079765: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
43054          <idle>-0     (-----) [005] ...1 24573.079915: cpu_idle: state=4294967295 cpu_id=5
43055          <idle>-0     (-----) [005] d..1 24573.079916: cpu_idle: state=0 cpu_id=5
43056 id.nn.benchmark-13159 (13131) [007] d..3 24573.079924: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
43057 id.nn.benchmark-13159 (13131) [007] d..2 24573.079932: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
43058 id.nn.benchmark-13160 (13131) [002] dnh1 24573.079935: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
43059          <idle>-0     (-----) [007] d..1 24573.079938: cpu_idle: state=0 cpu_id=7
43060 id.nn.benchmark-13160 (13131) [002] d..2 24573.079941: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
43061           <...>-13198 (-----) [001] d..1 24573.079942: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
43062           <...>-13198 (-----) [001] d..1 24573.079959: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
43063          <idle>-0     (-----) [005] dnh2 24573.079961: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
43064          <idle>-0     (-----) [007] .n.1 24573.079963: cpu_idle: state=4294967295 cpu_id=7
43065           <...>-13157 (-----) [006] d.h1 24573.079983: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
43066          <idle>-0     (-----) [005] .n.1 24573.079983: cpu_idle: state=4294967295 cpu_id=5
43067          <idle>-0     (-----) [007] d..2 24573.079984: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
43068           <...>-13198 (-----) [001] d..1 24573.079985: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
43069          <idle>-0     (-----) [005] d..2 24573.079986: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
43070           <...>-13198 (-----) [001] d..1 24573.079994: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
43071           <...>-13154 (-----) [005] d.h1 24573.079996: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
43072     migration/2-25    (   25) [002] d..2 24573.080004: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
43073 id.nn.benchmark-13160 (13131) [007] dnh1 24573.080005: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
43074 id.nn.benchmark-13160 (13131) [007] d..2 24573.080007: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
43075<...>-27168 ( 24741) [003] d..2 24573.080152: sched_waking: comm=rcuos/2 pid=30 prio=120 target_cpu=000
43076<...>-27168 ( 24741) [003] d..3 24573.080184: sched_wakeup: comm=rcuos/2 pid=30 prio=120 target_cpu=001
43077           <...>-13198 (-----) [001] d..2 24573.080194: sched_switch: prev_comm=id.nn.benchmark prev_pid=13198 prev_prio=110 prev_state=R ==> next_comm=rcuos/2 next_pid=30 next_prio=120
43078<...>-30 ( 30) [001] d..2 24573.080199: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
43079<...>-30 ( 30) [001] d..3 24573.080223: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
43080<...>-30 ( 30) [001] d..2 24573.080229: sched_switch: prev_comm=rcuos/2 prev_pid=30 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
43081       rcu_sched-8     (    8) [001] d..2 24573.080240: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13198 next_prio=110
43082 id.nn.benchmark-13156 (13131) [004] d.s2 24573.080891: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
43083           <...>-13198 (-----) [001] d.s1 24573.080895: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
43084           <...>-13198 (-----) [001] dns2 24573.080905: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
43085           <...>-13198 (-----) [001] dnH2 24573.080910: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
43086           <...>-13198 (-----) [001] d..2 24573.080917: sched_switch: prev_comm=id.nn.benchmark prev_pid=13198 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
43087     rcu_preempt-7     (    7) [001] d..2 24573.080947: 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
43088          <idle>-0     (-----) [000] dnH3 24573.080948: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
43089          <idle>-0     (-----) [000] dnH3 24573.080960: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
43090 id.nn.benchmark-13156 (13131) [004] dnh1 24573.080964: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
43091 id.nn.benchmark-13156 (13131) [004] d..2 24573.080969: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
43092          <idle>-0     (-----) [000] dnH4 24573.080971: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
43093         sugov:4-560   (  560) [004] d..2 24573.080972: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
43094          <idle>-0     (-----) [000] .n.1 24573.080978: cpu_idle: state=4294967295 cpu_id=0
43095  kworker/u16:10-23868 (23868) [001] d..2 24573.080979: 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
43096          <idle>-0     (-----) [000] d..2 24573.080985: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
43097         sugov:0-559   (  559) [001] d..2 24573.080987: 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
43098  kworker/u16:10-23868 (23868) [001] d..2 24573.081342: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13198 next_prio=110
43099<...>-27168 ( 24741) [003] d.s2 24573.081382: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
43100<...>-27168 ( 24741) [003] d.s3 24573.081394: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
43101<...>-27168 ( 24741) [003] d.s3 24573.081401: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
43102           <...>-13198 (-----) [001] d..2 24573.081409: sched_switch: prev_comm=id.nn.benchmark prev_pid=13198 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
43103<...>-27168 ( 24741) [003] .... 24573.081509: binder_transaction: transaction=1669785 dest_node=1669746 dest_proc=24827 dest_thread=0 reply=0 flags=0x11 code=0x1
43104<...>-27168 ( 24741) [003] d..4 24573.081517: sched_waking: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=002
43105  kworker/u16:10-23868 (23868) [001] d..2 24573.081520: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13198 next_prio=110
43106           <...>-13157 (-----) [006] dnh1 24573.081543: sched_wakeup: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=006
43107           <...>-13157 (-----) [006] d..2 24573.081546: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:24827_5 next_pid=5558 next_prio=120
43108<...>-27168 ( 24741) [003] d.H5 24573.081584: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
43109<...>-27168 ( 24741) [003] d.H5 24573.081592: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
43110 id.nn.benchmark-13156 (13131) [004] dnh1 24573.081595: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
43111 id.nn.benchmark-13156 (13131) [004] d..2 24573.081598: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
43112<...>-27168 ( 24741) [003] d.H6 24573.081600: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
43113         sugov:4-560   (  560) [004] d..2 24573.081601: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
43114<...>-27168 ( 24741) [003] d.s5 24573.081606: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
43115           <...>-13198 (-----) [001] d..2 24573.081608: sched_switch: prev_comm=id.nn.benchmark prev_pid=13198 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
43116         sugov:0-559   (  559) [001] d..2 24573.081616: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13198 next_prio=110
43117<...>-27168 ( 24741) [003] d.s6 24573.081620: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
43118<...>-27168 ( 24741) [003] d.s6 24573.081625: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
43119<...>-5558 ( 24827) [006] .... 24573.081630: binder_transaction_received: transaction=1669785
43120           <...>-13198 (-----) [001] d..2 24573.081632: sched_switch: prev_comm=id.nn.benchmark prev_pid=13198 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
43121  kworker/u16:10-23868 (23868) [001] d..2 24573.081641: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13198 next_prio=110
43122<...>-27168 ( 24741) [003] d..1 24573.081755: sched_waking: comm=lowpool[3] pid=25296 prio=130 target_cpu=006
43123<...>-5558 ( 24827) [006] d.h1 24573.081773: sched_wakeup: comm=lowpool[3] pid=25296 prio=130 target_cpu=006
43124<...>-5558 ( 24827) [006] d..2 24573.081888: sched_switch: prev_comm=Binder:24827_5 prev_pid=5558 prev_prio=120 prev_state=S ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
43125<...>-27168 ( 24741) [003] d..2 24573.081961: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
43126<...>-25296 ( 24741) [006] .... 24573.082122: binder_transaction: transaction=1669786 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x24
43127<...>-25296 ( 24741) [006] d..4 24573.082130: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=003
43128<...>-25296 ( 24741) [006] d..2 24573.082141: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
43129 id.nn.benchmark-13158 (13131) [003] dnh1 24573.082144: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=003
43130 id.nn.benchmark-13158 (13131) [003] d..2 24573.082150: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
43131  Binder:23968_1-23981 (23968) [003] .... 24573.082157: binder_transaction_received: transaction=1669786
43132 id.nn.benchmark-13160 (13131) [000] d.h4 24573.082163: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
43133 id.nn.benchmark-13160 (13131) [000] d.h5 24573.082181: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
43134 id.nn.benchmark-13160 (13131) [000] d.h4 24573.082184: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
43135           <...>-13198 (-----) [001] d..2 24573.082188: sched_switch: prev_comm=id.nn.benchmark prev_pid=13198 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
43136 id.nn.benchmark-13156 (13131) [004] dnh1 24573.082202: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
43137 id.nn.benchmark-13156 (13131) [004] d..2 24573.082204: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
43138  crtc_event:111-254   (  254) [001] d..2 24573.082207: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13198 next_prio=110
43139 id.nn.benchmark-13160 (13131) [000] d.h2 24573.082231: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
43140 id.nn.benchmark-13160 (13131) [000] d.h2 24573.082242: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
43141           <...>-13157 (-----) [006] dnh1 24573.082246: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
43142           <...>-13157 (-----) [006] d..2 24573.082249: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
43143 id.nn.benchmark-13160 (13131) [000] d.h3 24573.082249: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
43144         sugov:4-560   (  560) [006] d..2 24573.082253: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
43145           <...>-13198 (-----) [001] d..2 24573.082256: sched_switch: prev_comm=id.nn.benchmark prev_pid=13198 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
43146         sugov:0-559   (  559) [001] d..2 24573.082262: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13198 next_prio=110
43147 crtc_commit:111-253   (  253) [004] d..2 24573.082298: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
43148  Binder:23968_1-23981 (23968) [003] .... 24573.082432: binder_transaction: transaction=1669787 dest_node=0 dest_proc=24741 dest_thread=25296 reply=1 flags=0x0 code=0x0
43149  Binder:23968_1-23981 (23968) [003] d..2 24573.082436: sched_waking: comm=lowpool[3] pid=25296 prio=130 target_cpu=006
43150           <...>-13157 (-----) [006] d.h1 24573.082451: sched_wakeup: comm=lowpool[3] pid=25296 prio=130 target_cpu=006
43151  Binder:23968_1-23981 (23968) [003] d..2 24573.082476: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
43152           <...>-13198 (-----) [001] ...1 24573.082495: tracing_mark_write: E|13131
43153           <...>-13198 (-----) [001] ...1 24573.082499: tracing_mark_write: E|13131
43154           <...>-13198 (-----) [001] ...1 24573.082518: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
43155           <...>-13198 (-----) [001] ...1 24573.082524: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
43156           <...>-13198 (-----) [001] ...1 24573.082780: tracing_mark_write: E|13131
43157           <...>-13198 (-----) [001] ...1 24573.082784: tracing_mark_write: E|13131
43158           <...>-13198 (-----) [001] ...1 24573.082799: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
43159           <...>-13198 (-----) [001] ...1 24573.082804: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
43160           <...>-13198 (-----) [001] ...1 24573.083213: tracing_mark_write: E|13131
43161           <...>-13198 (-----) [001] ...1 24573.083217: tracing_mark_write: E|13131
43162           <...>-13198 (-----) [001] ...1 24573.083228: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
43163           <...>-13198 (-----) [001] ...1 24573.083232: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
43164           <...>-13198 (-----) [001] ...1 24573.083642: tracing_mark_write: E|13131
43165           <...>-13198 (-----) [001] ...1 24573.083646: tracing_mark_write: E|13131
43166           <...>-13198 (-----) [001] ...1 24573.083671: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
43167           <...>-13198 (-----) [001] ...1 24573.083676: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
43168           <...>-13198 (-----) [001] ...1 24573.083873: tracing_mark_write: E|13131
43169           <...>-13198 (-----) [001] ...1 24573.083877: tracing_mark_write: E|13131
43170           <...>-13198 (-----) [001] ...1 24573.083892: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
43171           <...>-13198 (-----) [001] ...1 24573.083897: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
43172           <...>-13198 (-----) [001] ...1 24573.083973: tracing_mark_write: E|13131
43173           <...>-13198 (-----) [001] ...1 24573.083976: tracing_mark_write: E|13131
43174           <...>-13198 (-----) [001] ...1 24573.083992: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
43175           <...>-13198 (-----) [001] ...1 24573.083997: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
43176 id.nn.benchmark-13156 (13131) [004] d.s2 24573.084222: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
43177           <...>-13198 (-----) [001] d.s1 24573.084231: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
43178           <...>-13198 (-----) [001] dns2 24573.084242: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
43179           <...>-13198 (-----) [001] dnH2 24573.084247: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
43180           <...>-13198 (-----) [001] d..2 24573.084253: sched_switch: prev_comm=id.nn.benchmark prev_pid=13198 prev_prio=110 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
43181  crtc_event:111-254   (  254) [001] d..2 24573.084267: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
43182       rcu_sched-8     (    8) [001] d..2 24573.084277: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13198 next_prio=110
43183           <...>-13198 (-----) [001] ...1 24573.084402: tracing_mark_write: E|13131
43184           <...>-13198 (-----) [001] ...1 24573.084406: tracing_mark_write: E|13131
43185           <...>-13198 (-----) [001] ...1 24573.084417: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
43186           <...>-13198 (-----) [001] ...1 24573.084421: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
43187           <...>-13198 (-----) [001] ...1 24573.084491: tracing_mark_write: E|13131
43188           <...>-13198 (-----) [001] ...1 24573.084494: tracing_mark_write: E|13131
43189           <...>-13198 (-----) [001] ...1 24573.084504: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
43190           <...>-13198 (-----) [001] ...1 24573.084507: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
43191 id.nn.benchmark-13160 (13131) [000] d.h4 24573.084514: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
43192           <...>-13198 (-----) [001] ...1 24573.084525: tracing_mark_write: E|13131
43193           <...>-13198 (-----) [001] ...1 24573.084528: tracing_mark_write: E|13131
43194 id.nn.benchmark-13160 (13131) [000] d.h5 24573.084532: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
43195           <...>-13198 (-----) [001] d..2 24573.084541: sched_switch: prev_comm=id.nn.benchmark prev_pid=13198 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
43196 id.nn.benchmark-13160 (13131) [000] d.h2 24573.084566: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
43197 id.nn.benchmark-13160 (13131) [000] d.h2 24573.084576: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
43198 id.nn.benchmark-13156 (13131) [004] dnh1 24573.084580: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
43199 id.nn.benchmark-13156 (13131) [004] d..2 24573.084583: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
43200 id.nn.benchmark-13160 (13131) [000] dnh3 24573.084585: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
43201         sugov:4-560   (  560) [004] d..2 24573.084587: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
43202 id.nn.benchmark-13160 (13131) [000] d..2 24573.084590: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
43203 crtc_commit:111-253   (  253) [001] d..2 24573.084594: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13198 next_prio=110
43204         sugov:0-559   (  559) [000] d..2 24573.084598: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
43205           <...>-13198 (-----) [001] ...1 24573.084605: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
43206           <...>-13198 (-----) [001] ...1 24573.084608: tracing_mark_write: E|13131
43207           <...>-13198 (-----) [001] ...1 24573.084618: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
43208           <...>-13198 (-----) [001] ...1 24573.084622: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
43209 id.nn.benchmark-13160 (13131) [000] d.h4 24573.084814: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
43210 id.nn.benchmark-13160 (13131) [000] d.h5 24573.084822: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
43211           <...>-13198 (-----) [001] d..2 24573.084831: sched_switch: prev_comm=id.nn.benchmark prev_pid=13198 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
43212  crtc_event:111-254   (  254) [001] d..2 24573.084841: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13198 next_prio=110
43213           <...>-13198 (-----) [001] ...1 24573.085496: tracing_mark_write: E|13131
43214           <...>-13198 (-----) [001] ...1 24573.085499: tracing_mark_write: E|13131
43215           <...>-13198 (-----) [001] ...1 24573.085507: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
43216           <...>-13198 (-----) [001] ...1 24573.085512: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
43217           <...>-13198 (-----) [001] ...1 24573.085597: tracing_mark_write: E|13131
43218           <...>-13198 (-----) [001] ...1 24573.085600: tracing_mark_write: E|13131
43219           <...>-13198 (-----) [001] d..2 24573.085673: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
43220           <...>-13198 (-----) [001] d..3 24573.085689: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
43221           <...>-13198 (-----) [001] ...1 24573.085714: tracing_mark_write: E|13131
43222           <...>-13198 (-----) [001] d..1 24573.085721: sched_waking: comm=id.nn.benchmark pid=13197 prio=110 target_cpu=001
43223 id.nn.benchmark-13156 (13131) [004] dnh1 24573.085745: sched_wakeup: comm=id.nn.benchmark pid=13197 prio=110 target_cpu=004
43224 id.nn.benchmark-13156 (13131) [004] d..2 24573.085770: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13197 next_prio=110
43225           <...>-13198 (-----) [001] d.h3 24573.085771: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
43226           <...>-13197 (-----) [004] d..2 24573.085780: sched_switch: prev_comm=id.nn.benchmark prev_pid=13197 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
43227           <...>-13198 (-----) [001] d.h3 24573.085782: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
43228 id.nn.benchmark-13156 (13131) [004] dnh3 24573.085783: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
43229 id.nn.benchmark-13156 (13131) [004] d..2 24573.085785: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
43230         sugov:4-560   (  560) [004] d..2 24573.085788: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
43231           <...>-13198 (-----) [001] dnh4 24573.085791: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
43232           <...>-13198 (-----) [001] d..2 24573.085797: sched_switch: prev_comm=id.nn.benchmark prev_pid=13198 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
43233         sugov:0-559   (  559) [001] d..2 24573.085804: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
43234     logd.writer-563   (  555) [001] d..2 24573.085894: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13198 next_prio=110
43235           <...>-13198 (-----) [001] ...1 24573.085914: tracing_mark_write: E|13131
43236           <...>-13198 (-----) [001] d..1 24573.086149: sched_waking: comm=id.nn.benchmark pid=13197 prio=110 target_cpu=004
43237 id.nn.benchmark-13156 (13131) [004] dnh1 24573.086163: sched_wakeup: comm=id.nn.benchmark pid=13197 prio=110 target_cpu=004
43238 id.nn.benchmark-13156 (13131) [004] d..2 24573.086165: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13197 next_prio=110
43239           <...>-13197 (-----) [004] d..2 24573.086206: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
43240           <...>-13198 (-----) [001] d.h2 24573.086227: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
43241           <...>-13198 (-----) [001] d..2 24573.086235: sched_switch: prev_comm=id.nn.benchmark prev_pid=13198 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
43242           <...>-13197 (-----) [004] d..1 24573.086246: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
43243     logd.writer-563   (  555) [001] dnh1 24573.086268: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
43244     logd.writer-563   (  555) [001] d..2 24573.086274: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
43245           <...>-13131 (-----) [001] d..2 24573.086290: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
43246           <...>-13197 (-----) [004] d..1 24573.086294: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
43247     logd.writer-563   (  555) [001] dnh1 24573.086309: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
43248     logd.writer-563   (  555) [001] d..2 24573.086314: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
43249           <...>-13197 (-----) [004] d..2 24573.086315: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
43250           <...>-13131 (-----) [001] d.h2 24573.086328: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
43251           <...>-13197 (-----) [004] d..2 24573.086333: sched_switch: prev_comm=id.nn.benchmark prev_pid=13197 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
43252           <...>-13131 (-----) [001] ...1 24573.086344: tracing_mark_write: E|13131
43253           <...>-13131 (-----) [001] ...1 24573.086350: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
43254           <...>-13131 (-----) [001] ...1 24573.086356: tracing_mark_write: E|13131
43255           <...>-13131 (-----) [001] ...1 24573.086360: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
43256           <...>-13131 (-----) [001] ...1 24573.086365: tracing_mark_write: E|13131
43257           <...>-13131 (-----) [001] d.h1 24573.086680: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
43258           <...>-13131 (-----) [001] dnh2 24573.086690: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
43259           <...>-13131 (-----) [001] d..2 24573.086699: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
43260        DispSync-23904 (23896) [001] d..1 24573.086724: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
43261        DispSync-23904 (23896) [001] d..2 24573.086737: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
43262 id.nn.benchmark-13160 (13131) [000] d..2 24573.086745: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
43263        DispSync-23904 (23896) [001] d..2 24573.086754: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
43264         rcuop/4-45    (   45) [001] d..2 24573.086764: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
43265  appEventThread-23905 (23896) [000] d..3 24573.086791: sched_waking: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=000
43266  appEventThread-23905 (23896) [000] d..4 24573.086809: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=001
43267  appEventThread-23905 (23896) [000] d..3 24573.086821: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
43268  appEventThread-23905 (23896) [000] d..4 24573.086835: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
43269  appEventThread-23905 (23896) [000] d..2 24573.086851: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
43270 id.nn.benchmark-13156 (13131) [004] d.s2 24573.087559: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
43271 id.nn.benchmark-13155 (13131) [002] d.s2 24573.087560: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
43272 id.nn.benchmark-13160 (13131) [000] d.s2 24573.087566: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
43273 id.nn.benchmark-13155 (13131) [002] d.s3 24573.087572: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
43274 id.nn.benchmark-13160 (13131) [000] d.s3 24573.087577: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
43275           <...>-13131 (-----) [001] d.H2 24573.087582: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
43276           <...>-13154 (-----) [005] d..3 24573.089980: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
43277           <...>-13157 (-----) [006] d..2 24573.089980: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
43278<...>-25296 ( 24741) [006] .... 24573.089984: binder_transaction_received: transaction=1669787
43279 id.nn.benchmark-13159 (13131) [007] d..2 24573.089985: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
43280           <...>-13154 (-----) [005] d..2 24573.089987: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
43281 id.nn.benchmark-13160 (13131) [000] dnh1 24573.089989: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
43282          <idle>-0     (-----) [007] d..1 24573.089991: cpu_idle: state=0 cpu_id=7
43283          <idle>-0     (-----) [005] d..1 24573.089991: cpu_idle: state=0 cpu_id=5
43284 id.nn.benchmark-13160 (13131) [000] d..2 24573.089994: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
43285          <idle>-0     (-----) [005] .n.1 24573.090020: cpu_idle: state=4294967295 cpu_id=5
43286          <idle>-0     (-----) [005] d..2 24573.090041: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
43287     migration/0-13    (   13) [000] d.h3 24573.090042: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
43288     migration/0-13    (   13) [000] d.h3 24573.090053: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
43289          <idle>-0     (-----) [007] dnh2 24573.090058: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
43290          <idle>-0     (-----) [007] .n.1 24573.090061: cpu_idle: state=4294967295 cpu_id=7
43291     migration/0-13    (   13) [000] d.h4 24573.090062: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
43292          <idle>-0     (-----) [007] d..2 24573.090064: 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
43293     migration/0-13    (   13) [000] d..2 24573.090069: 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
43294         sugov:4-560   (  560) [007] d..2 24573.090072: 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
43295          <idle>-0     (-----) [007] d..1 24573.090075: cpu_idle: state=0 cpu_id=7
43296<...>-25296 ( 24741) [006] d..3 24573.090084: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
43297         sugov:0-559   (  559) [000] d..2 24573.090089: 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
43298<...>-25296 ( 24741) [006] d..2 24573.090092: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
43299 id.nn.benchmark-13155 (13131) [002] dnh1 24573.090094: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
43300 id.nn.benchmark-13155 (13131) [002] d..2 24573.090099: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
43301          <idle>-0     (-----) [006] d..1 24573.090100: cpu_idle: state=0 cpu_id=6
43302          <idle>-0     (-----) [006] .n.1 24573.090123: cpu_idle: state=4294967295 cpu_id=6
43303          <idle>-0     (-----) [006] d..2 24573.090142: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
43304     migration/2-25    (   25) [002] d..2 24573.090156: 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
43305          <idle>-0     (-----) [002] d..1 24573.090192: cpu_idle: state=0 cpu_id=2
43306 id.nn.benchmark-13156 (13131) [004] d..3 24573.090219: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
43307  kworker/u16:10-23868 (23868) [000] d..2 24573.090224: 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
43308 id.nn.benchmark-13156 (13131) [004] d..2 24573.090227: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
43309 id.nn.benchmark-13158 (13131) [003] dnh1 24573.090231: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
43310          <idle>-0     (-----) [004] d..1 24573.090235: cpu_idle: state=0 cpu_id=4
43311          <idle>-0     (-----) [000] d..1 24573.090235: cpu_idle: state=0 cpu_id=0
43312 id.nn.benchmark-13158 (13131) [003] d..2 24573.090237: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
43313          <idle>-0     (-----) [004] .n.1 24573.090261: cpu_idle: state=4294967295 cpu_id=4
43314          <idle>-0     (-----) [004] d..2 24573.090280: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
43315          <idle>-0     (-----) [007] ...1 24573.090282: cpu_idle: state=4294967295 cpu_id=7
43316          <idle>-0     (-----) [007] d..1 24573.090283: cpu_idle: state=0 cpu_id=7
43317<...>-33 ( 33) [003] d..2 24573.090297: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
43318       rcu_sched-8     (    8) [003] d..2 24573.090303: sched_waking: comm=rcuos/2 pid=30 prio=120 target_cpu=001
43319       rcu_sched-8     (    8) [003] d..3 24573.090326: sched_wakeup: comm=rcuos/2 pid=30 prio=120 target_cpu=003
43320       rcu_sched-8     (    8) [003] d..2 24573.090333: 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
43321<...>-30 ( 30) [003] d..2 24573.090337: sched_waking: comm=rcuos/3 pid=38 prio=120 target_cpu=001
43322<...>-30 ( 30) [003] d..3 24573.090359: sched_wakeup: comm=rcuos/3 pid=38 prio=120 target_cpu=003
43323<...>-30 ( 30) [003] d..2 24573.090361: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
43324<...>-30 ( 30) [003] d..3 24573.090367: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
43325<...>-30 ( 30) [003] d..2 24573.090373: sched_switch: prev_comm=rcuos/2 prev_pid=30 prev_prio=120 prev_state=S ==> next_comm=rcuos/3 next_pid=38 next_prio=120
43326         rcuos/3-38    (   38) [003] d..2 24573.090384: sched_switch: prev_comm=rcuos/3 prev_pid=38 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
43327       rcu_sched-8     (    8) [003] d..2 24573.090402: 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
43328     rcu_preempt-7     (    7) [003] d..2 24573.090407: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
43329     rcu_preempt-7     (    7) [003] d..3 24573.090428: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
43330     rcu_preempt-7     (    7) [003] d..2 24573.090435: 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
43331         rcuop/0-10    (   10) [003] d..2 24573.090439: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
43332         rcuop/0-10    (   10) [003] d..3 24573.090460: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
43333         rcuop/0-10    (   10) [003] d..2 24573.090471: 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
43334         rcuop/1-21    (   21) [003] d..2 24573.090490: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
43335           <...>-13131 (-----) [001] d.h1 24573.090690: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
43336           <...>-13131 (-----) [001] d.h2 24573.090709: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
43337          <idle>-0     (-----) [002] .n.1 24573.090714: cpu_idle: state=4294967295 cpu_id=2
43338          <idle>-0     (-----) [002] d..2 24573.090720: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
43339        DispSync-23904 (23896) [002] d..1 24573.090737: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
43340        DispSync-23904 (23896) [002] d..2 24573.090750: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
43341          <idle>-0     (-----) [000] .n.1 24573.090754: cpu_idle: state=4294967295 cpu_id=0
43342          <idle>-0     (-----) [000] d..2 24573.090760: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
43343<...>-24151 ( 24151) [003] .... 24573.090766: binder_transaction: transaction=1669788 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
43344<...>-24151 ( 24151) [003] d..4 24573.090776: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
43345        DispSync-23904 (23896) [002] d..2 24573.090777: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
43346   sfEventThread-23906 (23896) [000] d..3 24573.090788: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
43347          <idle>-0     (-----) [007] dnh2 24573.090800: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
43348          <idle>-0     (-----) [007] .n.1 24573.090802: cpu_idle: state=4294967295 cpu_id=7
43349          <idle>-0     (-----) [007] d..2 24573.090804: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
43350   sfEventThread-23906 (23896) [000] d..4 24573.090805: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
43351<...>-23903 ( 23896) [007] .... 24573.090808: binder_transaction_received: transaction=1669788
43352 s.nexuslauncher-24827 (24827) [002] d..2 24573.090812: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
43353<...>-24151 ( 24151) [003] d..3 24573.090823: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
43354<...>-23903 ( 23896) [007] d..1 24573.090829: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
43355   sfEventThread-23906 (23896) [000] d..2 24573.090840: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
43356     logd.writer-563   (  555) [000] dnh3 24573.090846: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
43357<...>-24151 ( 24151) [003] d..4 24573.090847: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
43358     logd.writer-563   (  555) [000] d..2 24573.090852: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
43359<...>-23903 ( 23896) [007] d..2 24573.090856: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
43360          <idle>-0     (-----) [007] d..1 24573.090859: cpu_idle: state=0 cpu_id=7
43361  appEventThread-23905 (23896) [000] d..2 24573.090876: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
43362 id.nn.benchmark-13158 (13131) [004] d.s2 24573.090886: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
43363           <...>-13131 (-----) [001] d.h1 24573.090909: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
43364           <...>-13131 (-----) [001] ...1 24573.090937: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
43365     logd.writer-563   (  555) [000] d..2 24573.090957: 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
43366          <idle>-0     (-----) [000] d..1 24573.090967: cpu_idle: state=0 cpu_id=0
43367           <...>-13131 (-----) [001] d..2 24573.090970: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
43368<...>-24151 ( 24151) [003] d..2 24573.090992: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
43369           <...>-13131 (-----) [001] d..3 24573.090994: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
43370          <idle>-0     (-----) [003] d..1 24573.091006: cpu_idle: state=0 cpu_id=3
43371           <...>-13131 (-----) [001] ...1 24573.091013: tracing_mark_write: E|13131
43372           <...>-13131 (-----) [001] ...1 24573.091017: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
43373           <...>-13131 (-----) [001] ...1 24573.091024: tracing_mark_write: E|13131
43374           <...>-13131 (-----) [001] ...1 24573.091028: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
43375           <...>-13131 (-----) [001] ...1 24573.091033: tracing_mark_write: E|13131
43376           <...>-13131 (-----) [001] ...1 24573.091036: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
43377          <idle>-0     (-----) [000] .n.1 24573.091141: cpu_idle: state=4294967295 cpu_id=0
43378           <...>-13131 (-----) [001] ...1 24573.091143: tracing_mark_write: E|13131
43379          <idle>-0     (-----) [000] d..2 24573.091147: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13199 next_prio=110
43380           <...>-13131 (-----) [001] ...1 24573.091148: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
43381           <...>-13131 (-----) [001] d..2 24573.091157: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
43382  surfaceflinger-23896 (23896) [002] d..1 24573.091189: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
43383  surfaceflinger-23896 (23896) [002] d..2 24573.091206: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
43384          <idle>-0     (-----) [003] .n.1 24573.091211: cpu_idle: state=4294967295 cpu_id=3
43385          <idle>-0     (-----) [003] d..2 24573.091216: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
43386   sfEventThread-23906 (23896) [003] d..2 24573.091242: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
43387          <idle>-0     (-----) [003] d..1 24573.091254: cpu_idle: state=0 cpu_id=3
43388          <idle>-0     (-----) [003] ...1 24573.091262: cpu_idle: state=4294967295 cpu_id=3
43389          <idle>-0     (-----) [003] d..1 24573.091264: cpu_idle: state=0 cpu_id=3
43390  surfaceflinger-23896 (23896) [002] ...1 24573.091296: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
43391  surfaceflinger-23896 (23896) [002] ...1 24573.091299: tracing_mark_write: E|23896
43392  surfaceflinger-23896 (23896) [002] .... 24573.091348: binder_transaction: transaction=1669789 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
43393  surfaceflinger-23896 (23896) [002] ...2 24573.091371: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
43394  surfaceflinger-23896 (23896) [002] d..4 24573.091378: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
43395  surfaceflinger-23896 (23896) [002] d..5 24573.091399: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
43396          <idle>-0     (-----) [003] .n.1 24573.091402: cpu_idle: state=4294967295 cpu_id=3
43397  kworker/u16:10-23868 (23868) [001] d..2 24573.091404: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
43398          <idle>-0     (-----) [003] d..2 24573.091407: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
43399  surfaceflinger-23896 (23896) [002] d.h5 24573.091435: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
43400  surfaceflinger-23896 (23896) [002] d.h5 24573.091443: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
43401          <idle>-0     (-----) [007] dnh2 24573.091447: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
43402          <idle>-0     (-----) [007] .n.1 24573.091450: cpu_idle: state=4294967295 cpu_id=7
43403          <idle>-0     (-----) [007] d..2 24573.091453: 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
43404  surfaceflinger-23896 (23896) [002] d.h6 24573.091454: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
43405         sugov:4-560   (  560) [007] d..2 24573.091458: 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
43406          <idle>-0     (-----) [007] d..1 24573.091460: cpu_idle: state=0 cpu_id=7
43407     logd.writer-563   (  555) [001] d..2 24573.091461: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
43408  HwBinder:598_3-633   (  598) [003] .... 24573.091468: binder_transaction_received: transaction=1669789
43409         sugov:0-559   (  559) [001] d..2 24573.091473: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
43410  surfaceflinger-23896 (23896) [002] d..2 24573.091475: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
43411          <idle>-0     (-----) [007] .n.1 24573.091498: cpu_idle: state=4294967295 cpu_id=7
43412          <idle>-0     (-----) [007] d..2 24573.091501: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13200 next_prio=110
43413  HwBinder:598_3-633   (  598) [003] ...1 24573.091509: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
43414           <...>-13200 (-----) [007] ...1 24573.091521: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
43415           <...>-13200 (-----) [007] ...1 24573.091524: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
43416           <...>-13199 (-----) [000] d..2 24573.091531: sched_switch: prev_comm=id.nn.benchmark prev_pid=13199 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43417          <idle>-0     (-----) [000] d..1 24573.091542: cpu_idle: state=0 cpu_id=0
43418           <...>-13200 (-----) [007] ...1 24573.091591: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
43419  HwBinder:598_3-633   (  598) [003] ...1 24573.091591: tracing_mark_write: B|598|HWCSession::PresentDisplay::
43420           <...>-13200 (-----) [007] ...1 24573.091594: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
43421    RenderThread-24437 (24151) [002] d..1 24573.091599: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
43422    RenderThread-24437 (24151) [002] d..2 24573.091616: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
43423          <idle>-0     (-----) [000] .n.1 24573.091621: cpu_idle: state=4294967295 cpu_id=0
43424          <idle>-0     (-----) [000] d..2 24573.091628: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
43425    RenderThread-24437 (24151) [002] .... 24573.091676: binder_transaction: transaction=1669790 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
43426    RenderThread-24437 (24151) [002] d..4 24573.091680: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
43427<...>-24151 ( 24151) [000] d..2 24573.091691: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43428           <...>-13200 (-----) [007] dnh1 24573.091697: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
43429          <idle>-0     (-----) [000] d..1 24573.091699: cpu_idle: state=0 cpu_id=0
43430           <...>-13200 (-----) [007] d..2 24573.091701: sched_switch: prev_comm=id.nn.benchmark prev_pid=13200 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
43431    RenderThread-24437 (24151) [002] d..2 24573.091701: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
43432<...>-23903 ( 23896) [007] .... 24573.091704: binder_transaction_received: transaction=1669790
43433  HwBinder:598_3-633   (  598) [003] ...1 24573.091711: tracing_mark_write: B|598|HWDeviceDRM::Commit::
43434  HwBinder:598_3-633   (  598) [003] ...1 24573.091719: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
43435     logd.writer-563   (  555) [001] d..2 24573.091737: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13200 next_prio=110
43436<...>-23903 ( 23896) [007] .... 24573.091738: binder_transaction: transaction=1669791 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
43437<...>-23903 ( 23896) [007] d..2 24573.091743: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
43438<...>-23903 ( 23896) [007] d..3 24573.091770: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
43439<...>-23903 ( 23896) [007] d..2 24573.091796: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
43440    RenderThread-24437 (24151) [007] .... 24573.091797: binder_transaction_received: transaction=1669791
43441 s.nexuslauncher-24827 (24827) [002] .... 24573.091907: binder_transaction: transaction=1669792 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
43442 s.nexuslauncher-24827 (24827) [002] d..4 24573.091912: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
43443 s.nexuslauncher-24827 (24827) [002] d..5 24573.091932: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
43444          <idle>-0     (-----) [000] .n.1 24573.091938: cpu_idle: state=4294967295 cpu_id=0
43445 s.nexuslauncher-24827 (24827) [002] d.h5 24573.091961: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
43446          <idle>-0     (-----) [000] d..2 24573.091962: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
43447 s.nexuslauncher-24827 (24827) [002] d.h5 24573.091969: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
43448    RenderThread-24437 (24151) [007] dnh1 24573.091974: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
43449    RenderThread-24437 (24151) [007] d..2 24573.091979: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
43450 s.nexuslauncher-24827 (24827) [002] d.h6 24573.091981: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
43451         sugov:4-560   (  560) [007] d..2 24573.091983: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
43452<...>-23903 ( 23896) [000] d..2 24573.091990: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
43453         sugov:0-559   (  559) [000] d..2 24573.091998: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
43454<...>-23903 ( 23896) [000] .... 24573.092000: binder_transaction_received: transaction=1669792
43455 s.nexuslauncher-24827 (24827) [002] d..3 24573.092009: sched_waking: comm=RenderThread pid=25194 prio=120 target_cpu=000
43456<...>-23903 ( 23896) [000] d..1 24573.092016: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
43457<...>-23903 ( 23896) [000] dn.2 24573.092023: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
43458<...>-23903 ( 23896) [000] d..2 24573.092027: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
43459 s.nexuslauncher-24827 (24827) [002] d..4 24573.092032: sched_wakeup: comm=RenderThread pid=25194 prio=120 target_cpu=000
43460  appEventThread-23905 (23896) [000] d..2 24573.092041: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=120
43461    RenderThread-25194 (24827) [000] d..2 24573.092076: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
43462<...>-23903 ( 23896) [000] d..1 24573.092080: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
43463<...>-23903 ( 23896) [000] dn.2 24573.092085: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
43464<...>-23903 ( 23896) [000] d..2 24573.092089: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
43465  appEventThread-23905 (23896) [000] d..2 24573.092110: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
43466  HwBinder:598_3-633   (  598) [003] d..2 24573.092114: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
43467  HwBinder:598_3-633   (  598) [003] d..3 24573.092133: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
43468<...>-23903 ( 23896) [000] d..2 24573.092138: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
43469 s.nexuslauncher-24827 (24827) [002] d..2 24573.092204: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
43470  HwBinder:598_3-633   (  598) [003] ...1 24573.092206: tracing_mark_write: E|598
43471  HwBinder:598_3-633   (  598) [003] ...1 24573.092210: tracing_mark_write: E|598
43472          <idle>-0     (-----) [002] d..1 24573.092215: cpu_idle: state=0 cpu_id=2
43473  HwBinder:598_3-633   (  598) [003] ...1 24573.092254: tracing_mark_write: E|598
43474  HwBinder:598_3-633   (  598) [003] ...1 24573.092293: tracing_mark_write: E|598
43475  HwBinder:598_3-633   (  598) [003] .... 24573.092303: binder_transaction: transaction=1669793 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
43476  HwBinder:598_3-633   (  598) [003] d..2 24573.092315: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
43477  HwBinder:598_3-633   (  598) [003] d..3 24573.092326: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
43478  HwBinder:598_3-633   (  598) [003] .... 24573.092329: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
43479          <idle>-0     (-----) [002] .n.1 24573.092331: cpu_idle: state=4294967295 cpu_id=2
43480          <idle>-0     (-----) [002] d..2 24573.092338: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
43481  surfaceflinger-23896 (23896) [002] .... 24573.092343: binder_transaction_received: transaction=1669793
43482  HwBinder:598_3-633   (  598) [003] d..2 24573.092379: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
43483          <idle>-0     (-----) [003] d..1 24573.092387: cpu_idle: state=0 cpu_id=3
43484    RenderThread-24437 (24151) [007] d..2 24573.092481: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
43485          <idle>-0     (-----) [007] d..1 24573.092486: cpu_idle: state=0 cpu_id=7
43486          <idle>-0     (-----) [007] d.h2 24573.092578: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
43487          <idle>-0     (-----) [003] d.h2 24573.092614: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
43488          <idle>-0     (-----) [007] d.h3 24573.092616: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
43489          <idle>-0     (-----) [003] dnh2 24573.092618: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=003
43490          <idle>-0     (-----) [007] dnh4 24573.092619: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
43491          <idle>-0     (-----) [007] dnh3 24573.092619: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
43492          <idle>-0     (-----) [003] .n.1 24573.092621: cpu_idle: state=4294967295 cpu_id=3
43493          <idle>-0     (-----) [003] d..2 24573.092628: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
43494          <idle>-0     (-----) [007] .n.1 24573.092631: cpu_idle: state=4294967295 cpu_id=7
43495    RenderThread-24437 (24151) [003] dnh3 24573.092634: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
43496          <idle>-0     (-----) [007] d..2 24573.092634: 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
43497  surfaceflinger-23896 (23896) [002] d..2 24573.092635: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
43498    RenderThread-24437 (24151) [003] d..2 24573.092639: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
43499         sugov:4-560   (  560) [007] d..2 24573.092640: 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
43500          <idle>-0     (-----) [007] d..1 24573.092642: cpu_idle: state=0 cpu_id=7
43501          <idle>-0     (-----) [002] d..1 24573.092644: cpu_idle: state=0 cpu_id=2
43502         sugov:0-559   (  559) [003] d..2 24573.092647: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
43503 id.nn.benchmark-13160 (13131) [005] d..2 24573.092666: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
43504          <idle>-0     (-----) [005] d..1 24573.092668: cpu_idle: state=0 cpu_id=5
43505 id.nn.benchmark-13155 (13131) [006] d..2 24573.092669: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
43506          <idle>-0     (-----) [006] d..1 24573.092671: cpu_idle: state=0 cpu_id=6
43507 crtc_commit:111-253   (  253) [000] d.h2 24573.092709: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
43508 crtc_commit:111-253   (  253) [000] d.h3 24573.092728: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
43509          <idle>-0     (-----) [002] .n.1 24573.092733: cpu_idle: state=4294967295 cpu_id=2
43510          <idle>-0     (-----) [002] d..2 24573.092739: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
43511 id.nn.benchmark-13158 (13131) [004] d..2 24573.092759: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
43512          <idle>-0     (-----) [004] d..1 24573.092762: cpu_idle: state=0 cpu_id=4
43513 kgsl_worker_thr-246   (  246) [002] d..2 24573.092774: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
43514 kgsl_worker_thr-246   (  246) [002] d..3 24573.092794: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
43515    RenderThread-24437 (24151) [003] .... 24573.092796: binder_transaction: transaction=1669794 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
43516    RenderThread-24437 (24151) [003] d..4 24573.092803: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
43517 kgsl_worker_thr-246   (  246) [002] d..2 24573.092804: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
43518 crtc_commit:111-253   (  253) [000] d..2 24573.092818: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
43519    RenderThread-24437 (24151) [003] d..5 24573.092819: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
43520    RenderThread-24437 (24151) [003] d..2 24573.092827: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
43521          <idle>-0     (-----) [000] d..1 24573.092827: cpu_idle: state=0 cpu_id=0
43522<...>-23903 ( 23896) [003] .... 24573.092831: binder_transaction_received: transaction=1669794
43523          <idle>-0     (-----) [005] ...1 24573.092858: cpu_idle: state=4294967295 cpu_id=5
43524          <idle>-0     (-----) [005] d..1 24573.092859: cpu_idle: state=0 cpu_id=5
43525          <idle>-0     (-----) [006] ...1 24573.092861: cpu_idle: state=4294967295 cpu_id=6
43526          <idle>-0     (-----) [006] d..1 24573.092863: cpu_idle: state=0 cpu_id=6
43527<...>-23903 ( 23896) [003] .... 24573.092910: binder_transaction: transaction=1669795 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
43528<...>-23903 ( 23896) [003] d..2 24573.092914: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=003
43529<...>-23903 ( 23896) [003] d..3 24573.092921: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=003
43530<...>-23903 ( 23896) [003] d..2 24573.092940: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
43531    RenderThread-24437 (24151) [003] .... 24573.092944: binder_transaction_received: transaction=1669795
43532          <idle>-0     (-----) [004] ...1 24573.092952: cpu_idle: state=4294967295 cpu_id=4
43533          <idle>-0     (-----) [004] d..1 24573.092953: cpu_idle: state=0 cpu_id=4
43534  kworker/u16:10-23868 (23868) [002] d..2 24573.092961: 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
43535          <idle>-0     (-----) [002] d..1 24573.092969: cpu_idle: state=0 cpu_id=2
43536    RenderThread-24437 (24151) [003] d.s2 24573.092992: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
43537    RenderThread-24437 (24151) [003] d.s3 24573.093014: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
43538    RenderThread-24437 (24151) [003] d.s3 24573.093020: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
43539          <idle>-0     (-----) [000] .n.1 24573.093026: cpu_idle: state=4294967295 cpu_id=0
43540          <idle>-0     (-----) [000] d..2 24573.093032: 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
43541  kworker/u16:10-23868 (23868) [000] d..2 24573.093053: 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
43542          <idle>-0     (-----) [000] d..1 24573.093059: cpu_idle: state=0 cpu_id=0
43543    RenderThread-24437 (24151) [003] d..2 24573.093066: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
43544          <idle>-0     (-----) [003] d..1 24573.093073: cpu_idle: state=0 cpu_id=3
43545           <...>-13200 (-----) [001] d..1 24573.093106: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
43546           <...>-13200 (-----) [001] d..1 24573.093124: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
43547          <idle>-0     (-----) [004] dnh2 24573.093126: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
43548          <idle>-0     (-----) [004] .n.1 24573.093128: cpu_idle: state=4294967295 cpu_id=4
43549          <idle>-0     (-----) [004] d..2 24573.093131: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
43550           <...>-13200 (-----) [001] d..1 24573.093138: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=004
43551          <idle>-0     (-----) [005] dnh2 24573.093141: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
43552          <idle>-0     (-----) [005] .n.1 24573.093143: cpu_idle: state=4294967295 cpu_id=5
43553          <idle>-0     (-----) [005] d..2 24573.093146: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
43554           <...>-13200 (-----) [001] d..1 24573.093154: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=006
43555          <idle>-0     (-----) [006] dnh2 24573.093158: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
43556          <idle>-0     (-----) [006] .n.1 24573.093160: cpu_idle: state=4294967295 cpu_id=6
43557           <...>-13200 (-----) [001] d..1 24573.093162: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
43558          <idle>-0     (-----) [006] dnh2 24573.093166: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=006
43559          <idle>-0     (-----) [006] d..2 24573.093170: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
43560           <...>-13200 (-----) [001] d..1 24573.093176: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
43561          <idle>-0     (-----) [007] dnh2 24573.093181: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=007
43562          <idle>-0     (-----) [007] .n.1 24573.093183: cpu_idle: state=4294967295 cpu_id=7
43563          <idle>-0     (-----) [007] dn.2 24573.093185: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
43564          <idle>-0     (-----) [007] d..2 24573.093187: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
43565           <...>-13200 (-----) [001] d..1 24573.093190: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=005
43566 id.nn.benchmark-13155 (13131) [005] d.h1 24573.093201: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=005
43567          <idle>-0     (-----) [002] ...1 24573.094179: cpu_idle: state=4294967295 cpu_id=2
43568          <idle>-0     (-----) [002] d..1 24573.094181: cpu_idle: state=0 cpu_id=2
43569          <idle>-0     (-----) [003] d.s2 24573.094232: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
43570          <idle>-0     (-----) [003] dns3 24573.094241: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
43571          <idle>-0     (-----) [003] dns2 24573.094243: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
43572          <idle>-0     (-----) [000] ...1 24573.094244: cpu_idle: state=4294967295 cpu_id=0
43573          <idle>-0     (-----) [000] d..1 24573.094246: cpu_idle: state=0 cpu_id=0
43574          <idle>-0     (-----) [003] dns3 24573.094249: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
43575          <idle>-0     (-----) [003] .n.1 24573.094258: cpu_idle: state=4294967295 cpu_id=3
43576          <idle>-0     (-----) [003] d..2 24573.094263: 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
43577     rcu_preempt-7     (    7) [003] d..2 24573.094277: 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
43578       rcu_sched-8     (    8) [003] d..2 24573.094307: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
43579 id.nn.benchmark-13160 (13131) [003] d.h4 24573.094338: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
43580 id.nn.benchmark-13160 (13131) [003] d.h4 24573.094350: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
43581 id.nn.benchmark-13155 (13131) [005] dnh1 24573.094353: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
43582 id.nn.benchmark-13155 (13131) [005] d..2 24573.094356: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
43583         sugov:4-560   (  560) [005] d..2 24573.094360: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
43584 id.nn.benchmark-13160 (13131) [003] d.h5 24573.094363: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
43585          <idle>-0     (-----) [002] .n.1 24573.094367: cpu_idle: state=4294967295 cpu_id=2
43586          <idle>-0     (-----) [002] d..2 24573.094373: 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
43587         sugov:0-559   (  559) [002] d..2 24573.094401: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
43588 id.nn.benchmark-13159 (13131) [007] d.s2 24573.097557: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
43589 id.nn.benchmark-13155 (13131) [005] d.h2 24573.097586: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
43590 id.nn.benchmark-13155 (13131) [005] dnh3 24573.097589: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
43591 id.nn.benchmark-13155 (13131) [005] dnh2 24573.097590: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
43592          <idle>-0     (-----) [000] dnH2 24573.097593: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
43593 id.nn.benchmark-13155 (13131) [005] d..2 24573.097602: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
43594         sugov:4-560   (  560) [005] d..2 24573.097605: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
43595          <idle>-0     (-----) [000] dnh2 24573.097606: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
43596          <idle>-0     (-----) [000] .n.1 24573.097610: cpu_idle: state=4294967295 cpu_id=0
43597          <idle>-0     (-----) [000] d..2 24573.097616: 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
43598         sugov:0-559   (  559) [000] d..2 24573.097623: 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
43599           <...>-13154 (-----) [004] d..2 24573.097684: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
43600  kworker/u16:10-23868 (23868) [000] .... 24573.097712: clk_set_rate: l3_cluster0_vote_clk 1132800000
43601 id.nn.benchmark-13156 (13131) [006] d..3 24573.097715: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
43602 id.nn.benchmark-13156 (13131) [006] d..2 24573.097722: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
43603           <...>-13157 (-----) [002] dnh1 24573.097725: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
43604          <idle>-0     (-----) [006] d..1 24573.097726: cpu_idle: state=0 cpu_id=6
43605  kworker/u16:10-23868 (23868) [000] d..2 24573.097729: 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
43606           <...>-13157 (-----) [002] d..2 24573.097731: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
43607          <idle>-0     (-----) [000] d..1 24573.097736: cpu_idle: state=0 cpu_id=0
43608          <idle>-0     (-----) [006] .n.1 24573.097756: cpu_idle: state=4294967295 cpu_id=6
43609 id.nn.benchmark-13155 (13131) [005] d..2 24573.097774: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
43610          <idle>-0     (-----) [006] d..2 24573.097775: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
43611 id.nn.benchmark-13159 (13131) [007] d..3 24573.097777: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
43612          <idle>-0     (-----) [005] d..1 24573.097777: cpu_idle: state=0 cpu_id=5
43613 id.nn.benchmark-13159 (13131) [007] d..2 24573.097784: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
43614     migration/2-25    (   25) [002] d..2 24573.097785: 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
43615 id.nn.benchmark-13160 (13131) [003] dnh1 24573.097787: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
43616          <idle>-0     (-----) [007] d..1 24573.097788: cpu_idle: state=0 cpu_id=7
43617          <idle>-0     (-----) [002] d..1 24573.097792: cpu_idle: state=0 cpu_id=2
43618 id.nn.benchmark-13160 (13131) [003] d..2 24573.097793: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
43619           <...>-13200 (-----) [001] ...1 24573.097809: tracing_mark_write: E|13131
43620           <...>-13200 (-----) [001] ...1 24573.097814: tracing_mark_write: E|13131
43621          <idle>-0     (-----) [007] .n.1 24573.097816: cpu_idle: state=4294967295 cpu_id=7
43622          <idle>-0     (-----) [007] d..2 24573.097834: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
43623           <...>-13200 (-----) [001] ...1 24573.097835: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
43624           <...>-13200 (-----) [001] ...1 24573.097840: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
43625<...>-33 ( 33) [003] d..2 24573.097843: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
43626          <idle>-0     (-----) [003] d..1 24573.097850: cpu_idle: state=0 cpu_id=3
43627          <idle>-0     (-----) [005] ...1 24573.097968: cpu_idle: state=4294967295 cpu_id=5
43628          <idle>-0     (-----) [005] d..1 24573.097969: cpu_idle: state=0 cpu_id=5
43629           <...>-13200 (-----) [001] d..1 24573.098311: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
43630           <...>-13200 (-----) [001] d..1 24573.098328: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
43631          <idle>-0     (-----) [005] dnh2 24573.098332: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
43632          <idle>-0     (-----) [005] .n.1 24573.098334: cpu_idle: state=4294967295 cpu_id=5
43633          <idle>-0     (-----) [005] dn.2 24573.098336: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
43634          <idle>-0     (-----) [005] d..2 24573.098338: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
43635           <...>-13200 (-----) [001] d..1 24573.098338: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
43636           <...>-13200 (-----) [001] d..1 24573.098349: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
43637           <...>-13157 (-----) [006] d.h1 24573.098350: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
43638 id.nn.benchmark-13160 (13131) [007] dnh1 24573.098359: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
43639 id.nn.benchmark-13160 (13131) [007] d..2 24573.098362: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
43640          <idle>-0     (-----) [000] d.h5 24573.098653: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
43641          <idle>-0     (-----) [000] dnh6 24573.098668: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
43642          <idle>-0     (-----) [000] dnh5 24573.098671: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
43643          <idle>-0     (-----) [000] dnh6 24573.098683: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
43644          <idle>-0     (-----) [003] .n.1 24573.098688: cpu_idle: state=4294967295 cpu_id=3
43645          <idle>-0     (-----) [003] d..2 24573.098693: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
43646          <idle>-0     (-----) [000] .n.1 24573.098695: cpu_idle: state=4294967295 cpu_id=0
43647          <idle>-0     (-----) [000] d..2 24573.098700: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
43648  crtc_event:111-254   (  254) [000] d..2 24573.098735: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
43649           <...>-13154 (-----) [000] d.h4 24573.098764: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
43650           <...>-13154 (-----) [000] d.h4 24573.098772: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
43651 id.nn.benchmark-13155 (13131) [005] dnh1 24573.098775: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
43652 id.nn.benchmark-13155 (13131) [005] d..2 24573.098777: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
43653         sugov:4-560   (  560) [005] d..2 24573.098780: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
43654           <...>-13154 (-----) [000] d.h5 24573.098783: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
43655          <idle>-0     (-----) [002] .n.1 24573.098788: cpu_idle: state=4294967295 cpu_id=2
43656          <idle>-0     (-----) [002] d..2 24573.098794: 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
43657         sugov:0-559   (  559) [002] d..2 24573.098819: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
43658 crtc_commit:111-253   (  253) [003] d..2 24573.098848: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
43659           <...>-13200 (-----) [001] ...1 24573.099101: tracing_mark_write: E|13131
43660           <...>-13200 (-----) [001] ...1 24573.099105: tracing_mark_write: E|13131
43661           <...>-13200 (-----) [001] ...1 24573.099132: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
43662           <...>-13200 (-----) [001] ...1 24573.099137: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
43663           <...>-13200 (-----) [001] ...1 24573.099473: tracing_mark_write: E|13131
43664           <...>-13200 (-----) [001] ...1 24573.099478: tracing_mark_write: E|13131
43665           <...>-13200 (-----) [001] ...1 24573.099489: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
43666           <...>-13200 (-----) [001] ...1 24573.099494: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
43667           <...>-13200 (-----) [001] ...1 24573.099741: tracing_mark_write: E|13131
43668           <...>-13200 (-----) [001] ...1 24573.099745: tracing_mark_write: E|13131
43669           <...>-13200 (-----) [001] ...1 24573.099755: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
43670           <...>-13200 (-----) [001] ...1 24573.099759: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
43671           <...>-13200 (-----) [001] ...1 24573.100160: tracing_mark_write: E|13131
43672           <...>-13200 (-----) [001] ...1 24573.100163: tracing_mark_write: E|13131
43673           <...>-13200 (-----) [001] ...1 24573.100173: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
43674           <...>-13200 (-----) [001] ...1 24573.100177: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
43675           <...>-13200 (-----) [001] ...1 24573.100583: tracing_mark_write: E|13131
43676           <...>-13200 (-----) [001] ...1 24573.100587: tracing_mark_write: E|13131
43677           <...>-13200 (-----) [001] ...1 24573.100606: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
43678           <...>-13200 (-----) [001] ...1 24573.100610: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
43679 id.nn.benchmark-13156 (13131) [002] d..2 24573.100668: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
43680 id.nn.benchmark-13155 (13131) [005] d..3 24573.100670: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
43681 id.nn.benchmark-13155 (13131) [005] d..2 24573.100677: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=D|K ==> next_comm=swapper/5 next_pid=0 next_prio=120
43682          <idle>-0     (-----) [005] d..1 24573.100680: cpu_idle: state=0 cpu_id=5
43683           <...>-13154 (-----) [000] dnh1 24573.100681: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
43684           <...>-13154 (-----) [000] d..2 24573.100688: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
43685          <idle>-0     (-----) [005] d.h2 24573.100691: sched_blocked_reason: pid=13155 iowait=1 caller=__lock_page_or_retry+0x26c/0x2c4
43686          <idle>-0     (-----) [005] dnh2 24573.100692: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
43687          <idle>-0     (-----) [005] .n.1 24573.100694: cpu_idle: state=4294967295 cpu_id=5
43688          <idle>-0     (-----) [005] d..2 24573.100703: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
43689     migration/0-13    (   13) [000] d.h3 24573.100733: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
43690     migration/0-13    (   13) [000] d.h3 24573.100744: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
43691           <...>-13157 (-----) [006] dnh1 24573.100747: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
43692           <...>-13157 (-----) [006] d..2 24573.100751: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
43693     migration/0-13    (   13) [000] d.h4 24573.100753: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
43694         sugov:4-560   (  560) [006] d..2 24573.100755: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
43695     migration/0-13    (   13) [000] d..2 24573.100760: 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
43696         sugov:0-559   (  559) [000] d..2 24573.100772: 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
43697          <idle>-0     (-----) [000] d..1 24573.100781: cpu_idle: state=0 cpu_id=0
43698 id.nn.benchmark-13158 (13131) [004] d.s2 24573.100888: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
43699 id.nn.benchmark-13159 (13131) [007] d.s2 24573.100890: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
43700 id.nn.benchmark-13160 (13131) [003] d.s2 24573.100902: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
43701 id.nn.benchmark-13159 (13131) [007] d.s2 24573.100903: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
43702           <...>-13200 (-----) [001] dnh1 24573.100909: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
43703          <idle>-0     (-----) [000] dnh2 24573.100910: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
43704           <...>-13200 (-----) [001] d..2 24573.100916: sched_switch: prev_comm=id.nn.benchmark prev_pid=13200 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
43705 id.nn.benchmark-13160 (13131) [003] d.s3 24573.100916: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
43706          <idle>-0     (-----) [000] dnh2 24573.100932: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
43707     rcu_preempt-7     (    7) [001] d..2 24573.100942: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
43708     rcu_preempt-7     (    7) [001] d..3 24573.100961: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
43709     rcu_preempt-7     (    7) [001] d..2 24573.100963: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
43710     rcu_preempt-7     (    7) [001] d..3 24573.100977: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
43711     rcu_preempt-7     (    7) [001] d..2 24573.100987: 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
43712          <idle>-0     (-----) [000] dnh5 24573.101001: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
43713         rcuop/4-45    (   45) [001] d..2 24573.101010: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13200 next_prio=110
43714          <idle>-0     (-----) [000] dnh6 24573.101020: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
43715          <idle>-0     (-----) [000] .n.1 24573.101029: cpu_idle: state=4294967295 cpu_id=0
43716           <...>-13200 (-----) [001] d..2 24573.101029: sched_switch: prev_comm=id.nn.benchmark prev_pid=13200 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
43717          <idle>-0     (-----) [000] d..2 24573.101036: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
43718  crtc_event:111-254   (  254) [000] d..2 24573.101048: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
43719       rcu_sched-8     (    8) [000] d..2 24573.101052: sched_waking: comm=rcuos/2 pid=30 prio=120 target_cpu=003
43720       rcu_sched-8     (    8) [000] d..3 24573.101068: sched_wakeup: comm=rcuos/2 pid=30 prio=120 target_cpu=000
43721       rcu_sched-8     (    8) [000] d..2 24573.101074: 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
43722 crtc_commit:111-253   (  253) [001] d..2 24573.101079: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13200 next_prio=110
43723         rcuop/2-29    (   29) [000] d..2 24573.101085: 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
43724<...>-30 ( 30) [000] d..2 24573.101090: sched_waking: comm=rcuos/3 pid=38 prio=120 target_cpu=003
43725<...>-30 ( 30) [000] d..3 24573.101104: sched_wakeup: comm=rcuos/3 pid=38 prio=120 target_cpu=000
43726<...>-30 ( 30) [000] d..2 24573.101110: sched_switch: prev_comm=rcuos/2 prev_pid=30 prev_prio=120 prev_state=S ==> next_comm=rcuos/3 next_pid=38 next_prio=120
43727         rcuos/3-38    (   38) [000] d..2 24573.101120: sched_switch: prev_comm=rcuos/3 prev_pid=38 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
43728  kworker/u16:10-23868 (23868) [000] d.h6 24573.101297: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
43729  kworker/u16:10-23868 (23868) [000] dnh7 24573.101304: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
43730  kworker/u16:10-23868 (23868) [000] d..2 24573.101321: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
43731  crtc_event:111-254   (  254) [000] d..2 24573.101330: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
43732  kworker/u16:10-23868 (23868) [000] d..2 24573.101482: 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
43733          <idle>-0     (-----) [000] d..1 24573.101490: cpu_idle: state=0 cpu_id=0
43734          <idle>-0     (-----) [000] ...1 24573.103074: cpu_idle: state=4294967295 cpu_id=0
43735          <idle>-0     (-----) [000] d..1 24573.103077: cpu_idle: state=0 cpu_id=0
43736 id.nn.benchmark-13156 (13131) [002] d.h1 24573.103154: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
43737 id.nn.benchmark-13156 (13131) [002] d.h2 24573.103172: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
43738          <idle>-0     (-----) [000] .n.1 24573.103176: cpu_idle: state=4294967295 cpu_id=0
43739          <idle>-0     (-----) [000] d..2 24573.103181: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
43740        DispSync-23904 (23896) [000] d..1 24573.103199: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
43741        DispSync-23904 (23896) [000] d..2 24573.103214: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
43742           <...>-13200 (-----) [001] d..2 24573.103223: sched_switch: prev_comm=id.nn.benchmark prev_pid=13200 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
43743        DispSync-23904 (23896) [000] d..2 24573.103233: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43744          <idle>-0     (-----) [000] d..1 24573.103239: cpu_idle: state=0 cpu_id=0
43745  appEventThread-23905 (23896) [001] d..3 24573.103265: sched_waking: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=002
43746  appEventThread-23905 (23896) [001] d..4 24573.103283: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=000
43747          <idle>-0     (-----) [000] .n.1 24573.103288: cpu_idle: state=4294967295 cpu_id=0
43748  appEventThread-23905 (23896) [001] d..3 24573.103294: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
43749          <idle>-0     (-----) [000] d..2 24573.103294: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
43750  appEventThread-23905 (23896) [001] d..4 24573.103318: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
43751  appEventThread-23905 (23896) [001] d..2 24573.103333: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13200 next_prio=110
43752 s.nexuslauncher-24827 (24827) [000] .... 24573.103507: binder_transaction: transaction=1669796 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
43753 s.nexuslauncher-24827 (24827) [000] d..4 24573.103514: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
43754           <...>-13157 (-----) [006] dnh1 24573.103538: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
43755           <...>-13157 (-----) [006] d..2 24573.103562: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
43756 s.nexuslauncher-24827 (24827) [000] d.h5 24573.103563: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
43757 s.nexuslauncher-24827 (24827) [000] d.h5 24573.103576: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
43758 id.nn.benchmark-13158 (13131) [004] dnh1 24573.103579: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
43759 id.nn.benchmark-13158 (13131) [004] d..2 24573.103583: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
43760         sugov:4-560   (  560) [004] d..2 24573.103587: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
43761 s.nexuslauncher-24827 (24827) [000] d.h6 24573.103587: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
43762<...>-23903 ( 23896) [006] .... 24573.103591: binder_transaction_received: transaction=1669796
43763           <...>-13200 (-----) [001] d..2 24573.103595: sched_switch: prev_comm=id.nn.benchmark prev_pid=13200 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
43764         sugov:0-559   (  559) [001] d..2 24573.103602: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13200 next_prio=110
43765<...>-23903 ( 23896) [006] d..1 24573.103604: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
43766           <...>-13200 (-----) [001] dnh1 24573.103615: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
43767 s.nexuslauncher-24827 (24827) [000] d..3 24573.103615: sched_waking: comm=RenderThread pid=25194 prio=120 target_cpu=000
43768<...>-23903 ( 23896) [006] d..2 24573.103620: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
43769           <...>-13200 (-----) [001] d..2 24573.103620: sched_switch: prev_comm=id.nn.benchmark prev_pid=13200 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
43770  appEventThread-23905 (23896) [001] d..2 24573.103637: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13200 next_prio=110
43771 s.nexuslauncher-24827 (24827) [000] d..4 24573.103638: sched_wakeup: comm=RenderThread pid=25194 prio=120 target_cpu=000
43772 s.nexuslauncher-24827 (24827) [000] d..2 24573.103788: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=120
43773    RenderThread-25194 (24827) [000] d..2 24573.103808: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
43774<...>-24151 ( 24151) [000] .... 24573.103993: binder_transaction: transaction=1669797 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
43775<...>-24151 ( 24151) [000] d..4 24573.103998: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
43776           <...>-13157 (-----) [006] dnh1 24573.104013: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
43777           <...>-13157 (-----) [006] d..2 24573.104015: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
43778<...>-23903 ( 23896) [006] .... 24573.104017: binder_transaction_received: transaction=1669797
43779<...>-23903 ( 23896) [006] d..1 24573.104020: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
43780<...>-24151 ( 24151) [000] d..3 24573.104028: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=003
43781<...>-23903 ( 23896) [006] d..2 24573.104032: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
43782           <...>-13157 (-----) [006] dnh1 24573.104049: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
43783<...>-24151 ( 24151) [000] dnh2 24573.104051: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
43784           <...>-13157 (-----) [006] d..2 24573.104052: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
43785<...>-24151 ( 24151) [000] dnh3 24573.104079: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
43786    RenderThread-24437 (24151) [006] d..2 24573.104080: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
43787<...>-24151 ( 24151) [000] dnh3 24573.104091: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
43788           <...>-13157 (-----) [006] dnh1 24573.104094: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
43789           <...>-13157 (-----) [006] d..2 24573.104097: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
43790<...>-24151 ( 24151) [000] dnh4 24573.104099: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
43791         sugov:4-560   (  560) [006] d..2 24573.104101: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
43792<...>-24151 ( 24151) [000] d..2 24573.104106: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
43793           <...>-13200 (-----) [001] d..2 24573.104107: sched_switch: prev_comm=id.nn.benchmark prev_pid=13200 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
43794         sugov:0-559   (  559) [001] d..2 24573.104113: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13200 next_prio=110
43795  appEventThread-23905 (23896) [000] d..2 24573.104131: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
43796<...>-24151 ( 24151) [000] d..3 24573.104211: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
43797           <...>-13157 (-----) [006] dnH1 24573.104225: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
43798           <...>-13157 (-----) [006] d..2 24573.104228: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
43799<...>-24151 ( 24151) [000] d..2 24573.104269: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
43800    RenderThread-24437 (24151) [006] d..1 24573.104273: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
43801           <...>-13200 (-----) [001] dnh1 24573.104307: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
43802           <...>-13200 (-----) [001] d..2 24573.104312: sched_switch: prev_comm=id.nn.benchmark prev_pid=13200 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
43803    RenderThread-24437 (24151) [006] .... 24573.104322: binder_transaction: transaction=1669798 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
43804    RenderThread-24437 (24151) [006] d..4 24573.104324: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
43805    RenderThread-24437 (24151) [006] d..5 24573.104338: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
43806    RenderThread-24437 (24151) [006] d..2 24573.104342: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
43807 id.nn.benchmark-13155 (13131) [005] d..2 24573.104344: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
43808<...>-23903 ( 23896) [005] .... 24573.104348: binder_transaction_received: transaction=1669798
43809<...>-24151 ( 24151) [001] d..2 24573.104359: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13200 next_prio=110
43810<...>-23903 ( 23896) [005] .... 24573.104375: binder_transaction: transaction=1669799 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
43811<...>-23903 ( 23896) [005] d..2 24573.104379: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
43812<...>-23903 ( 23896) [005] d..3 24573.104387: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
43813           <...>-13157 (-----) [006] d..2 24573.104394: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
43814    RenderThread-24437 (24151) [006] .... 24573.104396: binder_transaction_received: transaction=1669799
43815<...>-23903 ( 23896) [005] d..2 24573.104399: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
43816           <...>-13200 (-----) [001] ...1 24573.104431: tracing_mark_write: E|13131
43817           <...>-13200 (-----) [001] ...1 24573.104435: tracing_mark_write: E|13131
43818           <...>-13200 (-----) [001] ...1 24573.104452: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
43819           <...>-13200 (-----) [001] ...1 24573.104456: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
43820           <...>-13200 (-----) [001] ...1 24573.104532: tracing_mark_write: E|13131
43821           <...>-13200 (-----) [001] ...1 24573.104536: tracing_mark_write: E|13131
43822           <...>-13200 (-----) [001] ...1 24573.104548: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
43823           <...>-13200 (-----) [001] ...1 24573.104552: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
43824           <...>-13200 (-----) [001] ...1 24573.104858: tracing_mark_write: E|13131
43825           <...>-13200 (-----) [001] ...1 24573.104862: tracing_mark_write: E|13131
43826           <...>-13200 (-----) [001] ...1 24573.104872: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
43827           <...>-13200 (-----) [001] ...1 24573.104875: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
43828 id.nn.benchmark-13158 (13131) [004] d..3 24573.104878: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
43829    RenderThread-24437 (24151) [006] d..2 24573.104881: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
43830 id.nn.benchmark-13158 (13131) [004] d..2 24573.104884: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
43831           <...>-13154 (-----) [000] dnh1 24573.104888: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
43832          <idle>-0     (-----) [004] d..1 24573.104889: cpu_idle: state=0 cpu_id=4
43833 id.nn.benchmark-13159 (13131) [007] d..2 24573.104891: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
43834           <...>-13154 (-----) [000] d..2 24573.104895: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
43835          <idle>-0     (-----) [007] d..1 24573.104895: cpu_idle: state=0 cpu_id=7
43836          <idle>-0     (-----) [004] .n.1 24573.104917: cpu_idle: state=4294967295 cpu_id=4
43837           <...>-13200 (-----) [001] ...1 24573.104926: tracing_mark_write: E|13131
43838           <...>-13200 (-----) [001] ...1 24573.104929: tracing_mark_write: E|13131
43839          <idle>-0     (-----) [004] d..2 24573.104936: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
43840     migration/0-13    (   13) [000] d.h3 24573.104937: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
43841           <...>-13200 (-----) [001] ...1 24573.104939: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
43842           <...>-13200 (-----) [001] ...1 24573.104943: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
43843     migration/0-13    (   13) [000] d.h3 24573.104949: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
43844          <idle>-0     (-----) [007] dnh2 24573.104954: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
43845          <idle>-0     (-----) [007] .n.1 24573.104956: cpu_idle: state=4294967295 cpu_id=7
43846     migration/0-13    (   13) [000] d.h4 24573.104958: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
43847          <idle>-0     (-----) [007] d..2 24573.104959: 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
43848           <...>-13200 (-----) [001] ...1 24573.104960: tracing_mark_write: E|13131
43849           <...>-13200 (-----) [001] ...1 24573.104963: tracing_mark_write: E|13131
43850     migration/0-13    (   13) [000] d..2 24573.104965: 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
43851         sugov:4-560   (  560) [007] d..2 24573.104967: 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
43852          <idle>-0     (-----) [007] d..1 24573.104970: cpu_idle: state=0 cpu_id=7
43853           <...>-13200 (-----) [001] ...1 24573.104973: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
43854           <...>-13200 (-----) [001] ...1 24573.104976: tracing_mark_write: E|13131
43855         sugov:0-559   (  559) [000] d..2 24573.104977: 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
43856           <...>-13157 (-----) [006] d.h1 24573.104980: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
43857          <idle>-0     (-----) [000] d..1 24573.104985: cpu_idle: state=0 cpu_id=0
43858           <...>-13200 (-----) [001] ...1 24573.104985: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
43859           <...>-13200 (-----) [001] ...1 24573.104990: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
43860          <idle>-0     (-----) [000] d.h2 24573.105010: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
43861          <idle>-0     (-----) [000] dnh2 24573.105013: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
43862          <idle>-0     (-----) [000] .n.1 24573.105016: cpu_idle: state=4294967295 cpu_id=0
43863          <idle>-0     (-----) [000] d..2 24573.105022: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
43864    RenderThread-24437 (24151) [000] d.h2 24573.105107: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
43865    RenderThread-24437 (24151) [000] dnh3 24573.105121: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
43866    RenderThread-24437 (24151) [000] d..2 24573.105133: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
43867          <idle>-0     (-----) [007] ...1 24573.105159: cpu_idle: state=4294967295 cpu_id=7
43868          <idle>-0     (-----) [007] d..1 24573.105160: cpu_idle: state=0 cpu_id=7
43869 kgsl_worker_thr-246   (  246) [000] d..2 24573.105161: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
43870 kgsl_worker_thr-246   (  246) [000] d..3 24573.105170: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
43871 kgsl_worker_thr-246   (  246) [000] d..2 24573.105179: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
43872  kworker/u16:10-23868 (23868) [000] d..2 24573.105351: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
43873    RenderThread-24437 (24151) [000] .... 24573.105420: binder_transaction: transaction=1669800 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
43874    RenderThread-24437 (24151) [000] d..4 24573.105429: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
43875    RenderThread-24437 (24151) [000] d..5 24573.105444: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
43876    RenderThread-24437 (24151) [000] d.h5 24573.105473: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
43877    RenderThread-24437 (24151) [000] d.h5 24573.105481: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
43878          <idle>-0     (-----) [007] dnh2 24573.105485: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
43879          <idle>-0     (-----) [007] .n.1 24573.105487: cpu_idle: state=4294967295 cpu_id=7
43880          <idle>-0     (-----) [007] d..2 24573.105489: 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
43881    RenderThread-24437 (24151) [000] d.h6 24573.105493: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
43882         sugov:4-560   (  560) [007] d..3 24573.105493: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
43883         sugov:4-560   (  560) [007] d..2 24573.105500: 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
43884          <idle>-0     (-----) [007] d..1 24573.105502: cpu_idle: state=0 cpu_id=7
43885    RenderThread-24437 (24151) [000] d..2 24573.105502: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
43886 id.nn.benchmark-13156 (13131) [002] dnh1 24573.105503: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
43887           <...>-13200 (-----) [001] d..2 24573.105504: sched_switch: prev_comm=id.nn.benchmark prev_pid=13200 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
43888<...>-23903 ( 23896) [000] .... 24573.105506: binder_transaction_received: transaction=1669800
43889 id.nn.benchmark-13156 (13131) [002] d..2 24573.105509: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
43890         sugov:0-559   (  559) [001] d..2 24573.105513: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13200 next_prio=110
43891          <idle>-0     (-----) [007] .n.1 24573.105531: cpu_idle: state=4294967295 cpu_id=7
43892          <idle>-0     (-----) [007] d..2 24573.105549: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
43893     migration/2-25    (   25) [002] d..2 24573.105559: 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
43894          <idle>-0     (-----) [002] d..1 24573.105569: cpu_idle: state=0 cpu_id=2
43895<...>-23903 ( 23896) [000] .... 24573.105599: binder_transaction: transaction=1669801 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
43896<...>-23903 ( 23896) [000] d..2 24573.105603: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
43897<...>-23903 ( 23896) [000] d..3 24573.105611: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
43898<...>-23903 ( 23896) [000] d..2 24573.105629: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
43899    RenderThread-24437 (24151) [000] .... 24573.105633: binder_transaction_received: transaction=1669801
43900           <...>-13157 (-----) [006] d..3 24573.105674: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
43901           <...>-13157 (-----) [006] d..2 24573.105680: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
43902 id.nn.benchmark-13160 (13131) [003] dnh1 24573.105684: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
43903    RenderThread-24437 (24151) [000] d..2 24573.105685: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43904          <idle>-0     (-----) [006] d..1 24573.105686: cpu_idle: state=0 cpu_id=6
43905 id.nn.benchmark-13160 (13131) [003] d..2 24573.105689: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
43906          <idle>-0     (-----) [000] d..1 24573.105693: cpu_idle: state=0 cpu_id=0
43907          <idle>-0     (-----) [006] .n.1 24573.105711: cpu_idle: state=4294967295 cpu_id=6
43908          <idle>-0     (-----) [006] d..2 24573.105729: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
43909<...>-33 ( 33) [003] d..2 24573.105739: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
43910          <idle>-0     (-----) [003] d..1 24573.105750: cpu_idle: state=0 cpu_id=3
43911           <...>-13200 (-----) [001] ...1 24573.105865: tracing_mark_write: E|13131
43912           <...>-13200 (-----) [001] ...1 24573.105868: tracing_mark_write: E|13131
43913           <...>-13200 (-----) [001] ...1 24573.105878: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
43914           <...>-13200 (-----) [001] ...1 24573.105882: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
43915           <...>-13200 (-----) [001] d..1 24573.105899: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=006
43916           <...>-13200 (-----) [001] d..1 24573.105912: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
43917 id.nn.benchmark-13160 (13131) [006] d.h1 24573.105914: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=006
43918           <...>-13200 (-----) [001] d..1 24573.105921: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
43919           <...>-13154 (-----) [004] d.h1 24573.105923: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
43920 id.nn.benchmark-13156 (13131) [007] dnh1 24573.105933: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
43921 id.nn.benchmark-13156 (13131) [007] d..2 24573.105935: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
43922          <idle>-0     (-----) [002] ...1 24573.107005: cpu_idle: state=4294967295 cpu_id=2
43923          <idle>-0     (-----) [002] d..1 24573.107008: cpu_idle: state=0 cpu_id=2
43924          <idle>-0     (-----) [000] d.h2 24573.107159: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
43925          <idle>-0     (-----) [000] dnh3 24573.107166: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
43926          <idle>-0     (-----) [000] .n.1 24573.107171: cpu_idle: state=4294967295 cpu_id=0
43927          <idle>-0     (-----) [000] d..2 24573.107177: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
43928        DispSync-23904 (23896) [000] d..1 24573.107190: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
43929        DispSync-23904 (23896) [000] d..2 24573.107200: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
43930          <idle>-0     (-----) [003] .n.1 24573.107206: cpu_idle: state=4294967295 cpu_id=3
43931          <idle>-0     (-----) [003] d..2 24573.107211: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
43932        DispSync-23904 (23896) [000] d..2 24573.107232: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
43933   sfEventThread-23906 (23896) [003] d..3 24573.107243: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
43934           <...>-13157 (-----) [000] d.h4 24573.107262: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
43935   sfEventThread-23906 (23896) [003] d..4 24573.107271: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
43936           <...>-13157 (-----) [000] d.h4 24573.107274: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
43937          <idle>-0     (-----) [002] .n.1 24573.107274: cpu_idle: state=4294967295 cpu_id=2
43938 id.nn.benchmark-13155 (13131) [005] dnh1 24573.107277: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
43939          <idle>-0     (-----) [002] d..2 24573.107280: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
43940 id.nn.benchmark-13155 (13131) [005] d..2 24573.107280: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
43941           <...>-13157 (-----) [000] d.h5 24573.107282: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
43942         sugov:4-560   (  560) [005] d..2 24573.107284: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
43943           <...>-13200 (-----) [001] d..2 24573.107291: sched_switch: prev_comm=id.nn.benchmark prev_pid=13200 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
43944         sugov:0-559   (  559) [001] d..2 24573.107299: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13200 next_prio=110
43945   sfEventThread-23906 (23896) [003] d..2 24573.107304: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
43946           <...>-13200 (-----) [001] ...1 24573.107400: tracing_mark_write: E|13131
43947           <...>-13200 (-----) [001] ...1 24573.107404: tracing_mark_write: E|13131
43948           <...>-13200 (-----) [001] d..2 24573.107455: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
43949           <...>-13200 (-----) [001] d..3 24573.107464: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
43950           <...>-13200 (-----) [001] ...1 24573.107487: tracing_mark_write: E|13131
43951           <...>-13200 (-----) [001] d..1 24573.107493: sched_waking: comm=id.nn.benchmark pid=13199 prio=110 target_cpu=000
43952  surfaceflinger-23896 (23896) [002] d..1 24573.107502: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
43953 id.nn.benchmark-13155 (13131) [005] dnh1 24573.107517: sched_wakeup: comm=id.nn.benchmark pid=13199 prio=110 target_cpu=005
43954  surfaceflinger-23896 (23896) [002] d..2 24573.107519: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
43955 id.nn.benchmark-13155 (13131) [005] d..2 24573.107520: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13199 next_prio=110
43956           <...>-13199 (-----) [005] d..2 24573.107543: sched_switch: prev_comm=id.nn.benchmark prev_pid=13199 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
43957           <...>-13200 (-----) [001] d..2 24573.107548: sched_switch: prev_comm=id.nn.benchmark prev_pid=13200 prev_prio=110 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
43958           <...>-13154 (-----) [004] d.s2 24573.107553: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
43959   sfEventThread-23906 (23896) [001] d.s3 24573.107566: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
43960  surfaceflinger-23896 (23896) [002] d.h1 24573.107572: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
43961   sfEventThread-23906 (23896) [001] d.s4 24573.107581: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
43962   sfEventThread-23906 (23896) [001] d..2 24573.107602: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
43963     rcu_preempt-7     (    7) [001] d..2 24573.107612: 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
43964     logd.writer-563   (  555) [001] d..2 24573.107679: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13200 next_prio=110
43965  surfaceflinger-23896 (23896) [002] ...1 24573.107684: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
43966  surfaceflinger-23896 (23896) [002] ...1 24573.107688: tracing_mark_write: E|23896
43967           <...>-13200 (-----) [001] ...1 24573.107699: tracing_mark_write: E|13131
43968  surfaceflinger-23896 (23896) [002] .... 24573.107726: binder_transaction: transaction=1669802 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
43969  surfaceflinger-23896 (23896) [002] ...2 24573.107745: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
43970  surfaceflinger-23896 (23896) [002] d..4 24573.107752: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
43971  surfaceflinger-23896 (23896) [002] d..5 24573.107805: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
43972           <...>-13200 (-----) [001] d..2 24573.107814: sched_switch: prev_comm=id.nn.benchmark prev_pid=13200 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
43973  surfaceflinger-23896 (23896) [002] d..2 24573.107815: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
43974  HwBinder:598_3-633   (  598) [001] .... 24573.107821: binder_transaction_received: transaction=1669802
43975  HwBinder:598_3-633   (  598) [001] ...1 24573.107870: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
43976  kworker/u16:10-23868 (23868) [002] .... 24573.107896: clk_set_rate: l3_cluster0_vote_clk 1401600000
43977  kworker/u16:10-23868 (23868) [002] d..2 24573.107913: 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
43978          <idle>-0     (-----) [002] d..1 24573.107921: cpu_idle: state=0 cpu_id=2
43979  HwBinder:598_3-633   (  598) [001] ...1 24573.107951: tracing_mark_write: B|598|HWCSession::PresentDisplay::
43980  HwBinder:598_3-633   (  598) [001] ...1 24573.108071: tracing_mark_write: B|598|HWDeviceDRM::Commit::
43981  HwBinder:598_3-633   (  598) [001] ...1 24573.108078: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
43982  HwBinder:598_3-633   (  598) [001] d..2 24573.108459: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
43983  HwBinder:598_3-633   (  598) [001] d..3 24573.108476: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
43984          <idle>-0     (-----) [002] .n.1 24573.108481: cpu_idle: state=4294967295 cpu_id=2
43985          <idle>-0     (-----) [002] d..2 24573.108487: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
43986  HwBinder:598_3-633   (  598) [001] ...1 24573.108533: tracing_mark_write: E|598
43987  HwBinder:598_3-633   (  598) [001] ...1 24573.108537: tracing_mark_write: E|598
43988  HwBinder:598_3-633   (  598) [001] ...1 24573.108576: tracing_mark_write: E|598
43989  HwBinder:598_3-633   (  598) [001] ...1 24573.108609: tracing_mark_write: E|598
43990  HwBinder:598_3-633   (  598) [001] .... 24573.108619: binder_transaction: transaction=1669803 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
43991  HwBinder:598_3-633   (  598) [001] d..2 24573.108630: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
43992  HwBinder:598_3-633   (  598) [001] d..3 24573.108646: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
43993  HwBinder:598_3-633   (  598) [001] .... 24573.108648: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
43994           <...>-13157 (-----) [000] d..2 24573.108654: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
43995  surfaceflinger-23896 (23896) [000] .... 24573.108659: binder_transaction_received: transaction=1669803
43996  HwBinder:598_3-633   (  598) [001] d..2 24573.108686: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13200 next_prio=110
43997           <...>-13200 (-----) [001] d..1 24573.108819: sched_waking: comm=id.nn.benchmark pid=13199 prio=110 target_cpu=005
43998 id.nn.benchmark-13155 (13131) [005] dnh1 24573.108833: sched_wakeup: comm=id.nn.benchmark pid=13199 prio=110 target_cpu=005
43999 id.nn.benchmark-13155 (13131) [005] d..2 24573.108835: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13199 next_prio=110
44000           <...>-13199 (-----) [005] d..2 24573.108877: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
44001           <...>-13200 (-----) [001] d.h2 24573.108893: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
44002  surfaceflinger-23896 (23896) [000] d..2 24573.108897: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
44003           <...>-13200 (-----) [001] d..2 24573.108900: sched_switch: prev_comm=id.nn.benchmark prev_pid=13200 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
44004           <...>-13199 (-----) [005] d..1 24573.108917: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
44005     logd.writer-563   (  555) [001] dnh1 24573.108937: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
44006     logd.writer-563   (  555) [001] d..2 24573.108943: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
44007           <...>-13131 (-----) [001] d..2 24573.108959: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
44008           <...>-13199 (-----) [005] d..1 24573.108962: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
44009     logd.writer-563   (  555) [001] dnh1 24573.108977: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
44010     logd.writer-563   (  555) [001] d..2 24573.108982: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
44011           <...>-13199 (-----) [005] d..2 24573.108982: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
44012           <...>-13131 (-----) [001] d.h2 24573.108997: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
44013           <...>-13199 (-----) [005] d..2 24573.109002: sched_switch: prev_comm=id.nn.benchmark prev_pid=13199 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
44014           <...>-13131 (-----) [001] ...1 24573.109016: tracing_mark_write: E|13131
44015           <...>-13131 (-----) [001] ...1 24573.109022: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
44016           <...>-13131 (-----) [001] ...1 24573.109028: tracing_mark_write: E|13131
44017           <...>-13131 (-----) [001] ...1 24573.109032: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
44018           <...>-13131 (-----) [001] ...1 24573.109036: tracing_mark_write: E|13131
44019 crtc_commit:111-253   (  253) [002] d..2 24573.109086: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
44020          <idle>-0     (-----) [002] d..1 24573.109094: cpu_idle: state=0 cpu_id=2
44021           <...>-13131 (-----) [001] ...1 24573.109351: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
44022           <...>-13131 (-----) [001] ...1 24573.109394: tracing_mark_write: E|13131
44023           <...>-13131 (-----) [001] ...1 24573.109398: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
44024           <...>-13131 (-----) [001] ...1 24573.109404: tracing_mark_write: E|13131
44025           <...>-13131 (-----) [001] ...1 24573.109409: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
44026           <...>-13131 (-----) [001] ...1 24573.109414: tracing_mark_write: E|13131
44027           <...>-13131 (-----) [001] ...1 24573.109417: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
44028          <idle>-0     (-----) [002] .n.1 24573.109542: cpu_idle: state=4294967295 cpu_id=2
44029           <...>-13131 (-----) [001] ...1 24573.109545: tracing_mark_write: E|13131
44030          <idle>-0     (-----) [002] d..2 24573.109549: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13201 next_prio=110
44031           <...>-13131 (-----) [001] ...1 24573.109549: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
44032           <...>-13131 (-----) [001] d..2 24573.109559: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
44033         rcuop/4-45    (   45) [001] d..2 24573.109568: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
44034     logd.writer-563   (  555) [001] d..2 24573.109809: 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
44035          <idle>-0     (-----) [001] d..1 24573.109823: cpu_idle: state=0 cpu_id=1
44036          <idle>-0     (-----) [001] .n.1 24573.109875: cpu_idle: state=4294967295 cpu_id=1
44037          <idle>-0     (-----) [001] d..2 24573.109882: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13202 next_prio=110
44038           <...>-13201 (-----) [002] d..2 24573.109902: sched_switch: prev_comm=id.nn.benchmark prev_pid=13201 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
44039           <...>-13202 (-----) [001] ...1 24573.109911: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
44040          <idle>-0     (-----) [002] d..1 24573.109915: cpu_idle: state=0 cpu_id=2
44041           <...>-13202 (-----) [001] ...1 24573.109916: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
44042           <...>-13202 (-----) [001] d..2 24573.109977: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
44043           <...>-13202 (-----) [001] d..3 24573.109986: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
44044           <...>-13202 (-----) [001] ...1 24573.110056: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44045           <...>-13202 (-----) [001] ...1 24573.110061: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44046           <...>-13154 (-----) [004] d..2 24573.110371: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
44047 id.nn.benchmark-13160 (13131) [006] d..3 24573.110388: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
44048 id.nn.benchmark-13159 (13131) [007] d..2 24573.110392: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
44049          <idle>-0     (-----) [007] d..1 24573.110395: cpu_idle: state=0 cpu_id=7
44050 id.nn.benchmark-13160 (13131) [006] d..2 24573.110395: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
44051          <idle>-0     (-----) [006] d..1 24573.110398: cpu_idle: state=0 cpu_id=6
44052           <...>-13157 (-----) [000] dnh1 24573.110399: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
44053           <...>-13157 (-----) [000] d..2 24573.110405: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
44054          <idle>-0     (-----) [006] .n.1 24573.110427: cpu_idle: state=4294967295 cpu_id=6
44055          <idle>-0     (-----) [006] d..2 24573.110450: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
44056     migration/0-13    (   13) [000] d.h3 24573.110451: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
44057     migration/0-13    (   13) [000] d.h3 24573.110463: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
44058          <idle>-0     (-----) [007] dnh2 24573.110467: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
44059          <idle>-0     (-----) [007] .n.1 24573.110469: cpu_idle: state=4294967295 cpu_id=7
44060          <idle>-0     (-----) [007] d..2 24573.110471: 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
44061     migration/0-13    (   13) [000] d.h4 24573.110474: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
44062         sugov:4-560   (  560) [007] d..2 24573.110476: 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
44063          <idle>-0     (-----) [007] d..1 24573.110478: cpu_idle: state=0 cpu_id=7
44064          <idle>-0     (-----) [002] .n.1 24573.110480: cpu_idle: state=4294967295 cpu_id=2
44065          <idle>-0     (-----) [002] d..2 24573.110486: 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
44066     migration/0-13    (   13) [000] d..2 24573.110487: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44067          <idle>-0     (-----) [000] d..1 24573.110496: cpu_idle: state=0 cpu_id=0
44068         sugov:0-559   (  559) [002] d..2 24573.110499: 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
44069          <idle>-0     (-----) [002] d..1 24573.110504: cpu_idle: state=0 cpu_id=2
44070 id.nn.benchmark-13155 (13131) [005] d..3 24573.110563: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
44071 id.nn.benchmark-13155 (13131) [005] d..2 24573.110570: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
44072 id.nn.benchmark-13158 (13131) [003] dnh1 24573.110574: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
44073          <idle>-0     (-----) [005] d..1 24573.110576: cpu_idle: state=0 cpu_id=5
44074 id.nn.benchmark-13158 (13131) [003] d..2 24573.110579: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
44075          <idle>-0     (-----) [005] .n.1 24573.110602: cpu_idle: state=4294967295 cpu_id=5
44076          <idle>-0     (-----) [005] d..2 24573.110619: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
44077<...>-33 ( 33) [003] d..2 24573.110628: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
44078          <idle>-0     (-----) [003] d..1 24573.110637: cpu_idle: state=0 cpu_id=3
44079          <idle>-0     (-----) [007] ...1 24573.110668: cpu_idle: state=4294967295 cpu_id=7
44080          <idle>-0     (-----) [007] d..1 24573.110669: cpu_idle: state=0 cpu_id=7
44081 id.nn.benchmark-13156 (13131) [004] d.s2 24573.110885: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
44082          <idle>-0     (-----) [000] dnh2 24573.110905: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
44083          <idle>-0     (-----) [000] .n.1 24573.110908: cpu_idle: state=4294967295 cpu_id=0
44084          <idle>-0     (-----) [000] d..2 24573.110915: 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
44085  kworker/u16:10-23868 (23868) [000] d..2 24573.111097: 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
44086          <idle>-0     (-----) [000] d..1 24573.111103: cpu_idle: state=0 cpu_id=0
44087           <...>-13202 (-----) [001] d..1 24573.111751: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
44088           <...>-13202 (-----) [001] d..1 24573.111768: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
44089          <idle>-0     (-----) [007] dnh2 24573.111771: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=007
44090          <idle>-0     (-----) [007] .n.1 24573.111773: cpu_idle: state=4294967295 cpu_id=7
44091          <idle>-0     (-----) [007] d..2 24573.111776: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
44092 id.nn.benchmark-13158 (13131) [005] d.h1 24573.111781: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
44093           <...>-13202 (-----) [001] d..1 24573.111781: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
44094           <...>-13202 (-----) [001] d..1 24573.111790: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=006
44095           <...>-13154 (-----) [007] d.h1 24573.111793: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
44096           <...>-13157 (-----) [006] d.h1 24573.111802: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=006
44097          <idle>-0     (-----) [003] ...1 24573.112225: cpu_idle: state=4294967295 cpu_id=3
44098          <idle>-0     (-----) [003] d..1 24573.112228: cpu_idle: state=0 cpu_id=3
44099          <idle>-0     (-----) [002] ...1 24573.112362: cpu_idle: state=4294967295 cpu_id=2
44100          <idle>-0     (-----) [002] d..1 24573.112365: cpu_idle: state=0 cpu_id=2
44101           <...>-13202 (-----) [001] d.s1 24573.114227: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
44102           <...>-13202 (-----) [001] d.s2 24573.114246: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
44103          <idle>-0     (-----) [002] .n.1 24573.114254: cpu_idle: state=4294967295 cpu_id=2
44104          <idle>-0     (-----) [000] .n.1 24573.114259: cpu_idle: state=4294967295 cpu_id=0
44105          <idle>-0     (-----) [002] d..2 24573.114262: 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
44106          <idle>-0     (-----) [000] d..2 24573.114266: 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
44107     rcu_preempt-7     (    7) [000] d..2 24573.114274: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
44108     rcu_preempt-7     (    7) [000] d..3 24573.114298: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
44109     rcu_preempt-7     (    7) [000] d..2 24573.114308: 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
44110         rcuop/0-10    (   10) [000] d..2 24573.114312: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
44111         rcuop/0-10    (   10) [000] d..3 24573.114332: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
44112         rcuop/0-10    (   10) [000] d..2 24573.114342: 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
44113         rcuop/1-21    (   21) [000] d..2 24573.114383: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
44114 id.nn.benchmark-13155 (13131) [000] d.h4 24573.114413: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
44115     logd.writer-563   (  555) [002] d..2 24573.114431: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
44116 id.nn.benchmark-13155 (13131) [000] d.h4 24573.114432: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
44117           <...>-13157 (-----) [006] dnh1 24573.114436: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
44118           <...>-13157 (-----) [006] d..2 24573.114438: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
44119         sugov:4-560   (  560) [006] d..2 24573.114463: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
44120 id.nn.benchmark-13155 (13131) [000] d.h5 24573.114470: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
44121          <idle>-0     (-----) [003] .n.1 24573.114474: cpu_idle: state=4294967295 cpu_id=3
44122          <idle>-0     (-----) [003] d..2 24573.114480: 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
44123         sugov:0-559   (  559) [003] d..2 24573.114493: 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
44124          <idle>-0     (-----) [003] d..1 24573.114498: cpu_idle: state=0 cpu_id=3
44125 id.nn.benchmark-13155 (13131) [000] d.h4 24573.115135: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
44126 id.nn.benchmark-13155 (13131) [000] d.h5 24573.115152: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
44127 id.nn.benchmark-13155 (13131) [000] d.h4 24573.115156: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
44128          <idle>-0     (-----) [003] .n.1 24573.115157: cpu_idle: state=4294967295 cpu_id=3
44129          <idle>-0     (-----) [003] d..2 24573.115162: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
44130 id.nn.benchmark-13155 (13131) [000] d.h5 24573.115169: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
44131           <...>-13202 (-----) [001] d..2 24573.115178: sched_switch: prev_comm=id.nn.benchmark prev_pid=13202 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
44132  crtc_event:111-254   (  254) [003] d..2 24573.115184: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
44133          <idle>-0     (-----) [003] d..1 24573.115189: cpu_idle: state=0 cpu_id=3
44134 crtc_commit:111-253   (  253) [001] d..2 24573.115299: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13202 next_prio=110
44135 id.nn.benchmark-13158 (13131) [005] d..3 24573.116307: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
44136 id.nn.benchmark-13156 (13131) [004] d..2 24573.116311: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
44137           <...>-13154 (-----) [007] d..2 24573.116313: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
44138 id.nn.benchmark-13158 (13131) [005] d..2 24573.116315: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
44139 id.nn.benchmark-13155 (13131) [000] dnh1 24573.116316: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
44140          <idle>-0     (-----) [007] d..1 24573.116316: cpu_idle: state=0 cpu_id=7
44141          <idle>-0     (-----) [005] d..1 24573.116318: cpu_idle: state=0 cpu_id=5
44142 id.nn.benchmark-13155 (13131) [000] d..2 24573.116322: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
44143           <...>-13157 (-----) [006] d..2 24573.116340: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
44144          <idle>-0     (-----) [005] .n.1 24573.116342: cpu_idle: state=4294967295 cpu_id=5
44145          <idle>-0     (-----) [006] d..1 24573.116343: cpu_idle: state=0 cpu_id=6
44146          <idle>-0     (-----) [005] d..2 24573.116363: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
44147     migration/0-13    (   13) [000] d.h3 24573.116364: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
44148     migration/0-13    (   13) [000] d.h3 24573.116372: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
44149          <idle>-0     (-----) [006] dnh2 24573.116377: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
44150          <idle>-0     (-----) [006] .n.1 24573.116379: cpu_idle: state=4294967295 cpu_id=6
44151     migration/0-13    (   13) [000] d.h4 24573.116380: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
44152          <idle>-0     (-----) [006] d..2 24573.116381: 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
44153          <idle>-0     (-----) [003] .n.1 24573.116384: cpu_idle: state=4294967295 cpu_id=3
44154         sugov:4-560   (  560) [006] d..3 24573.116385: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
44155          <idle>-0     (-----) [003] d..2 24573.116389: 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
44156         sugov:4-560   (  560) [006] d..2 24573.116391: 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
44157     migration/0-13    (   13) [000] d..2 24573.116393: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44158          <idle>-0     (-----) [006] d..1 24573.116393: cpu_idle: state=0 cpu_id=6
44159 id.nn.benchmark-13160 (13131) [002] dnh1 24573.116395: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
44160          <idle>-0     (-----) [000] d..1 24573.116400: cpu_idle: state=0 cpu_id=0
44161 id.nn.benchmark-13160 (13131) [002] d..2 24573.116402: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
44162         sugov:0-559   (  559) [003] d..2 24573.116403: 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
44163          <idle>-0     (-----) [003] d..1 24573.116408: cpu_idle: state=0 cpu_id=3
44164          <idle>-0     (-----) [006] .n.1 24573.116423: cpu_idle: state=4294967295 cpu_id=6
44165           <...>-13202 (-----) [001] ...1 24573.116429: tracing_mark_write: E|13131
44166           <...>-13202 (-----) [001] ...1 24573.116433: tracing_mark_write: E|13131
44167          <idle>-0     (-----) [006] d..2 24573.116441: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
44168           <...>-13202 (-----) [001] ...1 24573.116446: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44169           <...>-13202 (-----) [001] ...1 24573.116450: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44170     migration/2-25    (   25) [002] d..2 24573.116451: 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
44171          <idle>-0     (-----) [002] d..1 24573.116459: cpu_idle: state=0 cpu_id=2
44172           <...>-13202 (-----) [001] d..1 24573.116922: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=007
44173           <...>-13202 (-----) [001] d..1 24573.116935: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=004
44174          <idle>-0     (-----) [007] dnh2 24573.116937: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=007
44175          <idle>-0     (-----) [007] .n.1 24573.116939: cpu_idle: state=4294967295 cpu_id=7
44176          <idle>-0     (-----) [007] d..2 24573.116941: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
44177           <...>-13202 (-----) [001] d..1 24573.116944: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=006
44178 id.nn.benchmark-13159 (13131) [004] d.h1 24573.116947: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=004
44179           <...>-13202 (-----) [001] d..1 24573.116953: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
44180 id.nn.benchmark-13160 (13131) [006] d.h1 24573.116955: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=006
44181 id.nn.benchmark-13155 (13131) [005] d.h1 24573.116964: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
44182          <idle>-0     (-----) [000] d.h5 24573.117468: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
44183          <idle>-0     (-----) [000] dnh6 24573.117479: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
44184          <idle>-0     (-----) [000] .n.1 24573.117487: cpu_idle: state=4294967295 cpu_id=0
44185          <idle>-0     (-----) [000] d..2 24573.117492: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
44186 crtc_commit:111-253   (  253) [000] d..2 24573.117555: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
44187 id.nn.benchmark-13159 (13131) [004] d.s2 24573.117556: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
44188           <...>-13202 (-----) [001] d.s2 24573.117577: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
44189 id.nn.benchmark-13155 (13131) [005] d.H2 24573.117588: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
44190           <...>-13202 (-----) [001] d.s3 24573.117589: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
44191          <idle>-0     (-----) [003] .n.1 24573.117594: cpu_idle: state=4294967295 cpu_id=3
44192          <idle>-0     (-----) [003] d..2 24573.117614: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
44193           <...>-13202 (-----) [001] dnH2 24573.117615: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
44194 id.nn.benchmark-13155 (13131) [005] d.H3 24573.117616: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
44195 id.nn.benchmark-13155 (13131) [005] d.H2 24573.117617: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
44196           <...>-13154 (-----) [007] d..2 24573.117623: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
44197           <...>-13202 (-----) [001] d..2 24573.117623: sched_switch: prev_comm=id.nn.benchmark prev_pid=13202 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
44198         sugov:4-560   (  560) [007] d..2 24573.117626: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
44199          <idle>-0     (-----) [002] dnh2 24573.117635: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
44200          <idle>-0     (-----) [002] .n.1 24573.117639: cpu_idle: state=4294967295 cpu_id=2
44201          <idle>-0     (-----) [002] d..2 24573.117646: 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
44202  crtc_event:111-254   (  254) [003] d..2 24573.117647: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
44203         sugov:0-559   (  559) [002] d..2 24573.117685: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
44204  kworker/u16:10-23868 (23868) [001] d..2 24573.117751: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13202 next_prio=110
44205 id.nn.benchmark-13158 (13131) [000] d.h4 24573.117776: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
44206 id.nn.benchmark-13158 (13131) [000] d.h5 24573.117791: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
44207           <...>-13202 (-----) [001] d..2 24573.117798: sched_switch: prev_comm=id.nn.benchmark prev_pid=13202 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
44208  crtc_event:111-254   (  254) [001] d..2 24573.117807: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13202 next_prio=110
44209           <...>-13202 (-----) [001] ...1 24573.117946: tracing_mark_write: E|13131
44210           <...>-13202 (-----) [001] ...1 24573.117950: tracing_mark_write: E|13131
44211           <...>-13202 (-----) [001] ...1 24573.117966: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44212           <...>-13202 (-----) [001] ...1 24573.117970: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44213           <...>-13202 (-----) [001] ...1 24573.118304: tracing_mark_write: E|13131
44214           <...>-13202 (-----) [001] ...1 24573.118309: tracing_mark_write: E|13131
44215           <...>-13202 (-----) [001] ...1 24573.118320: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44216           <...>-13202 (-----) [001] ...1 24573.118324: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44217           <...>-13202 (-----) [001] ...1 24573.118556: tracing_mark_write: E|13131
44218           <...>-13202 (-----) [001] ...1 24573.118560: tracing_mark_write: E|13131
44219           <...>-13202 (-----) [001] ...1 24573.118570: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44220           <...>-13202 (-----) [001] ...1 24573.118574: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44221           <...>-13202 (-----) [001] ...1 24573.118967: tracing_mark_write: E|13131
44222           <...>-13202 (-----) [001] ...1 24573.118971: tracing_mark_write: E|13131
44223           <...>-13202 (-----) [001] ...1 24573.118981: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44224           <...>-13202 (-----) [001] ...1 24573.118985: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44225           <...>-13202 (-----) [001] ...1 24573.119372: tracing_mark_write: E|13131
44226           <...>-13202 (-----) [001] ...1 24573.119376: tracing_mark_write: E|13131
44227           <...>-13202 (-----) [001] ...1 24573.119392: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44228           <...>-13202 (-----) [001] ...1 24573.119397: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44229           <...>-13202 (-----) [001] ...1 24573.119589: tracing_mark_write: E|13131
44230           <...>-13202 (-----) [001] ...1 24573.119592: tracing_mark_write: E|13131
44231           <...>-13202 (-----) [001] ...1 24573.119604: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44232           <...>-13202 (-----) [001] ...1 24573.119608: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44233 id.nn.benchmark-13158 (13131) [000] d.h1 24573.119621: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
44234 id.nn.benchmark-13156 (13131) [002] d..2 24573.119630: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
44235 id.nn.benchmark-13155 (13131) [005] d..3 24573.119633: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
44236 id.nn.benchmark-13158 (13131) [000] d.h2 24573.119636: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
44237 id.nn.benchmark-13155 (13131) [005] d..2 24573.119640: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=D|K ==> next_comm=swapper/5 next_pid=0 next_prio=120
44238 id.nn.benchmark-13158 (13131) [000] dnh1 24573.119642: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
44239          <idle>-0     (-----) [005] d..1 24573.119643: cpu_idle: state=0 cpu_id=5
44240           <...>-13202 (-----) [001] d..2 24573.119646: sched_switch: prev_comm=id.nn.benchmark prev_pid=13202 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
44241 id.nn.benchmark-13158 (13131) [000] d..2 24573.119648: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
44242        DispSync-23904 (23896) [001] d..1 24573.119664: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
44243          <idle>-0     (-----) [005] dnh2 24573.119666: sched_blocked_reason: pid=13155 iowait=1 caller=__lock_page_or_retry+0x26c/0x2c4
44244          <idle>-0     (-----) [005] dnh2 24573.119668: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
44245          <idle>-0     (-----) [005] .n.1 24573.119673: cpu_idle: state=4294967295 cpu_id=5
44246          <idle>-0     (-----) [005] d..2 24573.119694: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
44247        DispSync-23904 (23896) [001] d..2 24573.119694: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
44248     migration/0-13    (   13) [000] d.h3 24573.119699: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
44249     migration/0-13    (   13) [000] d.h3 24573.119710: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
44250        DispSync-23904 (23896) [001] d..2 24573.119710: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13202 next_prio=110
44251 id.nn.benchmark-13160 (13131) [006] dnh1 24573.119712: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
44252 id.nn.benchmark-13160 (13131) [006] d..2 24573.119715: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
44253         sugov:4-560   (  560) [006] d..2 24573.119719: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
44254     migration/0-13    (   13) [000] d.h4 24573.119721: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
44255     migration/0-13    (   13) [000] d..2 24573.119728: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=appEventThread next_pid=23905 next_prio=97
44256           <...>-13202 (-----) [001] d..2 24573.119730: sched_switch: prev_comm=id.nn.benchmark prev_pid=13202 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
44257         sugov:0-559   (  559) [001] d..2 24573.119737: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13202 next_prio=110
44258  appEventThread-23905 (23896) [000] d..3 24573.119773: sched_waking: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=000
44259  appEventThread-23905 (23896) [000] d..4 24573.119785: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=000
44260  appEventThread-23905 (23896) [000] d..3 24573.119797: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
44261  appEventThread-23905 (23896) [000] d..4 24573.119824: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
44262           <...>-13202 (-----) [001] d..2 24573.119832: sched_switch: prev_comm=id.nn.benchmark prev_pid=13202 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
44263  appEventThread-23905 (23896) [000] d..2 24573.119838: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
44264 s.nexuslauncher-24827 (24827) [000] .... 24573.120083: binder_transaction: transaction=1669805 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
44265<...>-24151 ( 24151) [001] .... 24573.120083: binder_transaction: transaction=1669804 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
44266<...>-24151 ( 24151) [001] d..4 24573.120095: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
44267<...>-24151 ( 24151) [001] d..5 24573.120123: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
44268 s.nexuslauncher-24827 (24827) [000] d..4 24573.120127: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
44269 id.nn.benchmark-13160 (13131) [006] dnh1 24573.120152: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=006
44270 id.nn.benchmark-13160 (13131) [006] d..2 24573.120173: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
44271  Binder:23896_5-25989 (23896) [006] .... 24573.120177: binder_transaction_received: transaction=1669805
44272  Binder:23896_5-25989 (23896) [006] d..1 24573.120196: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
44273 s.nexuslauncher-24827 (24827) [000] d..3 24573.120199: sched_waking: comm=RenderThread pid=25194 prio=120 target_cpu=000
44274<...>-24151 ( 24151) [001] d..3 24573.120200: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
44275  Binder:23896_5-25989 (23896) [006] d..2 24573.120218: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
44276 s.nexuslauncher-24827 (24827) [000] d..4 24573.120224: sched_wakeup: comm=RenderThread pid=25194 prio=120 target_cpu=000
44277<...>-24151 ( 24151) [001] d..4 24573.120229: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
44278 s.nexuslauncher-24827 (24827) [000] dnh2 24573.120234: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
44279 s.nexuslauncher-24827 (24827) [000] d..2 24573.120240: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
44280  appEventThread-23905 (23896) [000] d..2 24573.120265: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
44281<...>-23903 ( 23896) [000] .... 24573.120269: binder_transaction_received: transaction=1669804
44282<...>-23903 ( 23896) [000] d..1 24573.120285: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
44283<...>-23903 ( 23896) [000] d..2 24573.120299: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
44284<...>-24151 ( 24151) [001] d..2 24573.120309: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
44285<...>-23903 ( 23896) [000] d..2 24573.120315: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=120
44286  appEventThread-23905 (23896) [001] d..2 24573.120333: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
44287    RenderThread-25194 (24827) [000] d..2 24573.120345: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
44288<...>-24151 ( 24151) [001] d..2 24573.120359: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13202 next_prio=110
44289 s.nexuslauncher-24827 (24827) [000] d..2 24573.120515: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
44290    RenderThread-24437 (24151) [000] d..1 24573.120620: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
44291    RenderThread-24437 (24151) [000] d..2 24573.120646: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
44292           <...>-13202 (-----) [001] d..2 24573.120654: sched_switch: prev_comm=id.nn.benchmark prev_pid=13202 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
44293<...>-24151 ( 24151) [001] d..2 24573.120690: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13202 next_prio=110
44294    RenderThread-24437 (24151) [000] .... 24573.120691: binder_transaction: transaction=1669806 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
44295    RenderThread-24437 (24151) [000] d..4 24573.120696: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
44296    RenderThread-24437 (24151) [000] d..5 24573.120703: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
44297    RenderThread-24437 (24151) [000] d..2 24573.120711: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
44298<...>-23903 ( 23896) [000] .... 24573.120716: binder_transaction_received: transaction=1669806
44299<...>-23903 ( 23896) [000] .... 24573.120759: binder_transaction: transaction=1669807 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
44300<...>-23903 ( 23896) [000] d..2 24573.120769: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
44301<...>-23903 ( 23896) [000] d..3 24573.120775: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
44302<...>-23903 ( 23896) [000] d..2 24573.120794: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
44303    RenderThread-24437 (24151) [000] .... 24573.120798: binder_transaction_received: transaction=1669807
44304 id.nn.benchmark-13159 (13131) [004] d.s2 24573.120888: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
44305    RenderThread-24437 (24151) [000] d.s1 24573.120898: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
44306           <...>-13202 (-----) [001] dnh1 24573.120905: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
44307    RenderThread-24437 (24151) [000] d.s2 24573.120908: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
44308           <...>-13202 (-----) [001] d..2 24573.120910: sched_switch: prev_comm=id.nn.benchmark prev_pid=13202 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
44309  kworker/u16:10-23868 (23868) [001] .... 24573.121076: clk_set_rate: l3_cluster1_vote_clk 300000000
44310  kworker/u16:10-23868 (23868) [001] .... 24573.121081: clk_set_rate: l3_clk 1401600000
44311  kworker/u16:10-23868 (23868) [001] d..2 24573.121284: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13202 next_prio=110
44312    RenderThread-24437 (24151) [000] d..2 24573.121792: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
44313     rcu_preempt-7     (    7) [000] d..2 24573.121825: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
44314 id.nn.benchmark-13155 (13131) [000] d.h4 24573.121856: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
44315 id.nn.benchmark-13155 (13131) [000] d.h4 24573.121865: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
44316 id.nn.benchmark-13160 (13131) [006] dnh1 24573.121868: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
44317 id.nn.benchmark-13160 (13131) [006] d..2 24573.121870: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
44318 id.nn.benchmark-13155 (13131) [000] d.h5 24573.121873: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
44319         sugov:4-560   (  560) [006] d..2 24573.121874: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
44320           <...>-13202 (-----) [001] d..2 24573.121881: sched_switch: prev_comm=id.nn.benchmark prev_pid=13202 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
44321 id.nn.benchmark-13155 (13131) [000] d.h1 24573.121887: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
44322         sugov:0-559   (  559) [001] d..2 24573.121889: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13202 next_prio=110
44323 id.nn.benchmark-13160 (13131) [006] d.h1 24573.121907: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
44324 id.nn.benchmark-13160 (13131) [006] dnh1 24573.121908: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
44325 id.nn.benchmark-13160 (13131) [006] d..2 24573.121926: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
44326           <...>-13202 (-----) [001] ...1 24573.121971: tracing_mark_write: E|13131
44327           <...>-13202 (-----) [001] ...1 24573.121976: tracing_mark_write: E|13131
44328           <...>-13202 (-----) [001] ...1 24573.121989: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
44329           <...>-13202 (-----) [001] ...1 24573.121994: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
44330 id.nn.benchmark-13155 (13131) [000] d.h2 24573.122010: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
44331    RenderThread-24437 (24151) [006] .... 24573.122011: binder_transaction: transaction=1669808 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
44332    RenderThread-24437 (24151) [006] d..4 24573.122015: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
44333 id.nn.benchmark-13155 (13131) [000] d.h3 24573.122026: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
44334    RenderThread-24437 (24151) [006] d..5 24573.122031: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
44335           <...>-13202 (-----) [001] d..2 24573.122032: sched_switch: prev_comm=id.nn.benchmark prev_pid=13202 prev_prio=110 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
44336           <...>-13154 (-----) [007] d..2 24573.122037: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
44337<...>-23903 ( 23896) [007] .... 24573.122053: binder_transaction_received: transaction=1669808
44338    RenderThread-24437 (24151) [006] d..2 24573.122056: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
44339 kgsl_worker_thr-246   (  246) [001] d..2 24573.122071: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
44340 kgsl_worker_thr-246   (  246) [001] d..3 24573.122081: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
44341 kgsl_worker_thr-246   (  246) [001] d..2 24573.122095: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
44342<...>-23903 ( 23896) [007] .... 24573.122116: binder_transaction: transaction=1669809 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
44343<...>-23903 ( 23896) [007] d..2 24573.122118: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
44344  kworker/u16:10-23868 (23868) [001] d..2 24573.122119: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13202 next_prio=110
44345<...>-23903 ( 23896) [007] d..3 24573.122127: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
44346 id.nn.benchmark-13160 (13131) [006] d..2 24573.122134: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
44347    RenderThread-24437 (24151) [006] .... 24573.122136: binder_transaction_received: transaction=1669809
44348<...>-23903 ( 23896) [007] d..2 24573.122138: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
44349    RenderThread-24437 (24151) [006] d..2 24573.122164: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
44350           <...>-13202 (-----) [001] ...1 24573.122388: tracing_mark_write: E|13131
44351           <...>-13202 (-----) [001] ...1 24573.122392: tracing_mark_write: E|13131
44352           <...>-13202 (-----) [001] ...1 24573.122403: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
44353           <...>-13202 (-----) [001] ...1 24573.122407: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
44354           <...>-13202 (-----) [001] ...1 24573.122457: tracing_mark_write: E|13131
44355           <...>-13202 (-----) [001] ...1 24573.122461: tracing_mark_write: E|13131
44356           <...>-13202 (-----) [001] ...1 24573.122469: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
44357           <...>-13202 (-----) [001] ...1 24573.122473: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
44358           <...>-13202 (-----) [001] ...1 24573.122489: tracing_mark_write: E|13131
44359           <...>-13202 (-----) [001] ...1 24573.122492: tracing_mark_write: E|13131
44360           <...>-13202 (-----) [001] ...1 24573.122502: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
44361           <...>-13202 (-----) [001] ...1 24573.122505: tracing_mark_write: E|13131
44362           <...>-13202 (-----) [001] ...1 24573.122515: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
44363           <...>-13202 (-----) [001] ...1 24573.122519: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
44364           <...>-13202 (-----) [001] ...1 24573.123371: tracing_mark_write: E|13131
44365           <...>-13202 (-----) [001] ...1 24573.123374: tracing_mark_write: E|13131
44366           <...>-13202 (-----) [001] ...1 24573.123383: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44367           <...>-13202 (-----) [001] ...1 24573.123387: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44368           <...>-13202 (-----) [001] ...1 24573.123472: tracing_mark_write: E|13131
44369           <...>-13202 (-----) [001] ...1 24573.123475: tracing_mark_write: E|13131
44370           <...>-13202 (-----) [001] d..2 24573.123523: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
44371           <...>-13202 (-----) [001] d..3 24573.123537: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
44372           <...>-13202 (-----) [001] ...1 24573.123558: tracing_mark_write: E|13131
44373           <...>-13202 (-----) [001] d..1 24573.123563: sched_waking: comm=id.nn.benchmark pid=13201 prio=110 target_cpu=002
44374 id.nn.benchmark-13160 (13131) [006] dnh1 24573.123587: sched_wakeup: comm=id.nn.benchmark pid=13201 prio=110 target_cpu=006
44375 id.nn.benchmark-13160 (13131) [006] d..2 24573.123613: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13201 next_prio=110
44376           <...>-13202 (-----) [001] d.h3 24573.123614: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
44377           <...>-13201 (-----) [006] d..2 24573.123625: sched_switch: prev_comm=id.nn.benchmark prev_pid=13201 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
44378           <...>-13202 (-----) [001] d.h3 24573.123626: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
44379           <...>-13154 (-----) [007] dnh1 24573.123629: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
44380           <...>-13202 (-----) [001] dnh4 24573.123631: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
44381           <...>-13154 (-----) [007] d..2 24573.123632: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
44382           <...>-13202 (-----) [001] d..2 24573.123637: sched_switch: prev_comm=id.nn.benchmark prev_pid=13202 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
44383         sugov:4-560   (  560) [007] d..2 24573.123637: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
44384         sugov:0-559   (  559) [001] d..2 24573.123644: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
44385     logd.writer-563   (  555) [001] d.h3 24573.123651: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
44386     logd.writer-563   (  555) [001] dnh4 24573.123657: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
44387     logd.writer-563   (  555) [001] d..2 24573.123665: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
44388        DispSync-23904 (23896) [001] d..1 24573.123679: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
44389        DispSync-23904 (23896) [001] d..2 24573.123693: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
44390 id.nn.benchmark-13155 (13131) [000] d..2 24573.123702: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
44391        DispSync-23904 (23896) [001] d..2 24573.123706: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13202 next_prio=110
44392           <...>-13202 (-----) [001] ...1 24573.123724: tracing_mark_write: E|13131
44393   sfEventThread-23906 (23896) [000] d..3 24573.123729: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
44394   sfEventThread-23906 (23896) [000] d..4 24573.123745: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
44395           <...>-13202 (-----) [001] d..2 24573.123751: sched_switch: prev_comm=id.nn.benchmark prev_pid=13202 prev_prio=110 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
44396   sfEventThread-23906 (23896) [000] d..2 24573.123765: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
44397  surfaceflinger-23896 (23896) [001] d..1 24573.123983: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
44398  surfaceflinger-23896 (23896) [001] d..2 24573.123994: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
44399 id.nn.benchmark-13155 (13131) [000] d..2 24573.124002: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
44400   sfEventThread-23906 (23896) [000] d..2 24573.124015: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
44401  surfaceflinger-23896 (23896) [001] ...1 24573.124120: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
44402  surfaceflinger-23896 (23896) [001] ...1 24573.124124: tracing_mark_write: E|23896
44403  surfaceflinger-23896 (23896) [001] .... 24573.124164: binder_transaction: transaction=1669810 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
44404  surfaceflinger-23896 (23896) [001] ...2 24573.124182: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
44405  surfaceflinger-23896 (23896) [001] d..4 24573.124188: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
44406 id.nn.benchmark-13160 (13131) [006] dnh1 24573.124213: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=006
44407 id.nn.benchmark-13159 (13131) [004] d.s2 24573.124238: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
44408 id.nn.benchmark-13160 (13131) [006] d..2 24573.124245: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
44409           <...>-13157 (-----) [003] d.s2 24573.124248: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
44410  surfaceflinger-23896 (23896) [001] d.H5 24573.124252: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
44411  surfaceflinger-23896 (23896) [001] d.H5 24573.124261: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
44412           <...>-13157 (-----) [003] d.s3 24573.124261: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
44413           <...>-13154 (-----) [007] dnh1 24573.124264: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
44414           <...>-13154 (-----) [007] d..2 24573.124266: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
44415         sugov:4-560   (  560) [007] d..2 24573.124269: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
44416  surfaceflinger-23896 (23896) [001] d.H6 24573.124275: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
44417  surfaceflinger-23896 (23896) [001] d.H4 24573.124281: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
44418 id.nn.benchmark-13155 (13131) [000] d..2 24573.124283: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
44419  HwBinder:598_3-633   (  598) [006] .... 24573.124286: binder_transaction_received: transaction=1669810
44420         sugov:0-559   (  559) [000] d..2 24573.124290: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
44421  surfaceflinger-23896 (23896) [001] d..2 24573.124292: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
44422     rcu_preempt-7     (    7) [001] d..2 24573.124296: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
44423     rcu_preempt-7     (    7) [001] d..3 24573.124306: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
44424     rcu_preempt-7     (    7) [001] d..2 24573.124308: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
44425  HwBinder:598_3-633   (  598) [006] ...1 24573.124311: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
44426     rcu_preempt-7     (    7) [001] d..3 24573.124320: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
44427     rcu_preempt-7     (    7) [001] d..2 24573.124329: 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
44428         rcuop/4-45    (   45) [001] d..2 24573.124333: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=007
44429           <...>-13154 (-----) [007] dnh1 24573.124360: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=007
44430         rcuop/4-45    (   45) [001] d..2 24573.124361: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
44431  HwBinder:598_3-633   (  598) [006] ...1 24573.124361: tracing_mark_write: B|598|HWCSession::PresentDisplay::
44432           <...>-13154 (-----) [007] d..2 24573.124362: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/5 next_pid=53 next_prio=120
44433         rcuop/2-29    (   29) [001] d..2 24573.124365: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
44434         rcuop/2-29    (   29) [001] d..3 24573.124374: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
44435         rcuop/5-53    (   53) [007] d..2 24573.124375: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
44436         rcuop/2-29    (   29) [001] d..2 24573.124385: 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
44437         rcuop/3-37    (   37) [001] d..2 24573.124401: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
44438  HwBinder:598_3-633   (  598) [006] ...1 24573.124422: tracing_mark_write: B|598|HWDeviceDRM::Commit::
44439  HwBinder:598_3-633   (  598) [006] ...1 24573.124427: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
44440  kworker/u16:10-23868 (23868) [001] d..2 24573.124445: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13202 next_prio=110
44441  HwBinder:598_3-633   (  598) [006] d..2 24573.124625: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
44442           <...>-13202 (-----) [001] dnh2 24573.124646: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
44443           <...>-13202 (-----) [001] d..2 24573.124651: sched_switch: prev_comm=id.nn.benchmark prev_pid=13202 prev_prio=110 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
44444  HwBinder:598_3-633   (  598) [006] ...1 24573.124667: tracing_mark_write: E|598
44445  HwBinder:598_3-633   (  598) [006] ...1 24573.124668: tracing_mark_write: E|598
44446  HwBinder:598_3-633   (  598) [006] ...1 24573.124689: tracing_mark_write: E|598
44447  HwBinder:598_3-633   (  598) [006] ...1 24573.124709: tracing_mark_write: E|598
44448  HwBinder:598_3-633   (  598) [006] .... 24573.124714: binder_transaction: transaction=1669811 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
44449  HwBinder:598_3-633   (  598) [006] d..2 24573.124719: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
44450  HwBinder:598_3-633   (  598) [006] .... 24573.124728: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
44451 id.nn.benchmark-13155 (13131) [000] dnh1 24573.124732: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
44452 id.nn.benchmark-13155 (13131) [000] d..2 24573.124737: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
44453  surfaceflinger-23896 (23896) [000] .... 24573.124741: binder_transaction_received: transaction=1669811
44454  HwBinder:598_3-633   (  598) [006] d..2 24573.124749: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
44455  surfaceflinger-23896 (23896) [000] d..2 24573.124982: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
44456 crtc_commit:111-253   (  253) [001] d..2 24573.125258: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13202 next_prio=110
44457           <...>-13202 (-----) [001] d..1 24573.125265: sched_waking: comm=id.nn.benchmark pid=13201 prio=110 target_cpu=006
44458 id.nn.benchmark-13160 (13131) [006] dnh1 24573.125281: sched_wakeup: comm=id.nn.benchmark pid=13201 prio=110 target_cpu=006
44459 id.nn.benchmark-13160 (13131) [006] d..2 24573.125283: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13201 next_prio=110
44460           <...>-13202 (-----) [001] d..2 24573.125334: sched_switch: prev_comm=id.nn.benchmark prev_pid=13202 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
44461           <...>-13201 (-----) [006] d..1 24573.125357: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
44462     logd.writer-563   (  555) [001] dnh1 24573.125373: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
44463     logd.writer-563   (  555) [001] d..2 24573.125379: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
44464           <...>-13201 (-----) [006] d..1 24573.125395: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
44465           <...>-13131 (-----) [001] d..2 24573.125395: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
44466     logd.writer-563   (  555) [001] dnh1 24573.125412: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
44467     logd.writer-563   (  555) [001] d..2 24573.125417: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
44468           <...>-13201 (-----) [006] d..2 24573.125417: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
44469           <...>-13201 (-----) [006] dn.3 24573.125427: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
44470           <...>-13201 (-----) [006] d..2 24573.125430: sched_switch: prev_comm=id.nn.benchmark prev_pid=13201 prev_prio=110 prev_state=R+ ==> next_comm=rcuop/6 next_pid=61 next_prio=120
44471         rcuop/6-61    (   61) [006] d..2 24573.125436: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13201 next_prio=110
44472           <...>-13131 (-----) [001] ...1 24573.125440: tracing_mark_write: E|13131
44473           <...>-13201 (-----) [006] d..2 24573.125446: sched_switch: prev_comm=id.nn.benchmark prev_pid=13201 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
44474           <...>-13131 (-----) [001] ...1 24573.125446: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
44475           <...>-13131 (-----) [001] ...1 24573.125452: tracing_mark_write: E|13131
44476           <...>-13131 (-----) [001] ...1 24573.125456: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
44477           <...>-13131 (-----) [001] ...1 24573.125461: tracing_mark_write: E|13131
44478           <...>-13131 (-----) [001] ...1 24573.125777: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
44479           <...>-13131 (-----) [001] ...1 24573.125818: tracing_mark_write: E|13131
44480           <...>-13131 (-----) [001] ...1 24573.125823: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
44481           <...>-13131 (-----) [001] ...1 24573.125828: tracing_mark_write: E|13131
44482           <...>-13131 (-----) [001] ...1 24573.125832: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
44483           <...>-13131 (-----) [001] ...1 24573.125837: tracing_mark_write: E|13131
44484           <...>-13131 (-----) [001] ...1 24573.125842: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
44485           <...>-13131 (-----) [001] ...1 24573.125974: tracing_mark_write: E|13131
44486           <...>-13131 (-----) [001] ...1 24573.125978: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
44487           <...>-13131 (-----) [001] d..2 24573.125988: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
44488     logd.writer-563   (  555) [001] d..2 24573.126084: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13203 next_prio=110
44489           <...>-13203 (-----) [001] d..2 24573.126137: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
44490           <...>-13203 (-----) [001] d..3 24573.126145: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
44491           <...>-13203 (-----) [001] d..2 24573.126449: sched_switch: prev_comm=id.nn.benchmark prev_pid=13203 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
44492     logd.writer-563   (  555) [001] d..2 24573.126639: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13204 next_prio=110
44493           <...>-13204 (-----) [001] ...1 24573.126666: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
44494           <...>-13204 (-----) [001] ...1 24573.126671: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
44495           <...>-13204 (-----) [001] d..2 24573.126731: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
44496           <...>-13204 (-----) [001] d..3 24573.126739: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
44497           <...>-13204 (-----) [001] ...1 24573.126807: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44498           <...>-13204 (-----) [001] ...1 24573.126813: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44499 id.nn.benchmark-13159 (13131) [004] d.s2 24573.127553: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
44500           <...>-13204 (-----) [001] dnh1 24573.127571: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
44501           <...>-13204 (-----) [001] d..2 24573.127577: sched_switch: prev_comm=id.nn.benchmark prev_pid=13204 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
44502  kworker/u16:10-23868 (23868) [001] d..2 24573.127670: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13204 next_prio=110
44503 id.nn.benchmark-13158 (13131) [005] d..3 24573.127884: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
44504 id.nn.benchmark-13158 (13131) [005] d..2 24573.127892: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
44505 id.nn.benchmark-13156 (13131) [002] dnh1 24573.127895: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
44506          <idle>-0     (-----) [005] d..1 24573.127897: cpu_idle: state=0 cpu_id=5
44507 id.nn.benchmark-13156 (13131) [002] d..2 24573.127901: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
44508 id.nn.benchmark-13159 (13131) [004] d..2 24573.127914: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
44509 id.nn.benchmark-13156 (13131) [004] d.h4 24573.127934: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
44510     migration/2-25    (   25) [002] d..2 24573.127937: 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
44511           <...>-13154 (-----) [007] d..3 24573.127937: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
44512 id.nn.benchmark-13156 (13131) [004] d.h5 24573.127941: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
44513 id.nn.benchmark-13156 (13131) [004] d.h4 24573.127941: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
44514           <...>-13154 (-----) [007] d..2 24573.127945: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=sugov:4 next_pid=560 next_prio=49
44515 id.nn.benchmark-13155 (13131) [000] dnh1 24573.127949: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
44516          <idle>-0     (-----) [002] d..1 24573.127950: cpu_idle: state=0 cpu_id=2
44517 id.nn.benchmark-13155 (13131) [000] d..2 24573.127954: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
44518          <idle>-0     (-----) [002] dnh2 24573.127960: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
44519          <idle>-0     (-----) [002] .n.1 24573.127964: cpu_idle: state=4294967295 cpu_id=2
44520         sugov:4-560   (  560) [007] d..2 24573.127966: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
44521          <idle>-0     (-----) [002] d..2 24573.127970: 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
44522     migration/0-13    (   13) [000] d..2 24573.127988: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44523         sugov:0-559   (  559) [002] d..2 24573.127994: 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
44524          <idle>-0     (-----) [002] d..1 24573.128000: cpu_idle: state=0 cpu_id=2
44525          <idle>-0     (-----) [000] d..1 24573.128000: cpu_idle: state=0 cpu_id=0
44526          <idle>-0     (-----) [005] ...1 24573.128088: cpu_idle: state=4294967295 cpu_id=5
44527          <idle>-0     (-----) [005] d..1 24573.128089: cpu_idle: state=0 cpu_id=5
44528           <...>-13204 (-----) [001] d..1 24573.128601: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=007
44529 id.nn.benchmark-13160 (13131) [006] d..3 24573.128604: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
44530 id.nn.benchmark-13160 (13131) [006] d..2 24573.128612: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
44531           <...>-13157 (-----) [003] dnh1 24573.128614: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
44532          <idle>-0     (-----) [006] d..1 24573.128619: cpu_idle: state=0 cpu_id=6
44533           <...>-13157 (-----) [003] d..2 24573.128619: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
44534          <idle>-0     (-----) [005] dnh2 24573.128621: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
44535           <...>-13204 (-----) [001] d..1 24573.128622: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
44536          <idle>-0     (-----) [005] .n.1 24573.128623: cpu_idle: state=4294967295 cpu_id=5
44537          <idle>-0     (-----) [005] d..2 24573.128627: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
44538           <...>-13204 (-----) [001] d..1 24573.128644: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=004
44539<...>-33 ( 33) [003] d.h3 24573.128669: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
44540          <idle>-0     (-----) [006] dnh2 24573.128670: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=006
44541          <idle>-0     (-----) [006] .n.1 24573.128673: cpu_idle: state=4294967295 cpu_id=6
44542           <...>-13204 (-----) [001] d..1 24573.128675: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=006
44543          <idle>-0     (-----) [006] d..2 24573.128677: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
44544 id.nn.benchmark-13156 (13131) [004] d.h1 24573.128680: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=004
44545<...>-33 ( 33) [003] d.h3 24573.128683: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
44546 id.nn.benchmark-13156 (13131) [004] dnh1 24573.128686: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
44547 id.nn.benchmark-13156 (13131) [004] d..2 24573.128688: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
44548           <...>-13157 (-----) [006] d.h1 24573.128689: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=006
44549<...>-33 ( 33) [003] d.h4 24573.128692: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
44550         sugov:4-560   (  560) [004] d..2 24573.128692: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
44551          <idle>-0     (-----) [002] .n.1 24573.128697: cpu_idle: state=4294967295 cpu_id=2
44552          <idle>-0     (-----) [002] d..2 24573.128702: 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
44553<...>-33 ( 33) [003] d..2 24573.128711: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
44554         sugov:0-559   (  559) [002] d..2 24573.128727: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
44555     logd.writer-563   (  555) [003] d..2 24573.128864: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
44556 id.nn.benchmark-13159 (13131) [004] d.s2 24573.130893: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
44557           <...>-13204 (-----) [001] d.s1 24573.130897: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
44558 id.nn.benchmark-13159 (13131) [004] d.s2 24573.130911: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
44559           <...>-13204 (-----) [001] d.s2 24573.130914: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
44560 id.nn.benchmark-13159 (13131) [004] dns3 24573.130916: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
44561          <idle>-0     (-----) [000] dnH3 24573.130920: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
44562 id.nn.benchmark-13159 (13131) [004] d..2 24573.130921: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/4:0 next_pid=24269 next_prio=120
44563          <idle>-0     (-----) [000] .n.1 24573.130933: cpu_idle: state=4294967295 cpu_id=0
44564          <idle>-0     (-----) [000] d..2 24573.130940: 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
44565     rcu_preempt-7     (    7) [000] d..2 24573.130951: 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
44566     kworker/4:0-24269 (24269) [004] d..2 24573.130952: sched_switch: prev_comm=kworker/4:0 prev_pid=24269 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
44567           <...>-13204 (-----) [001] ...1 24573.131017: tracing_mark_write: E|13131
44568           <...>-13204 (-----) [001] ...1 24573.131022: tracing_mark_write: E|13131
44569           <...>-13204 (-----) [001] ...1 24573.131035: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44570           <...>-13204 (-----) [001] ...1 24573.131040: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44571  kworker/u16:10-23868 (23868) [000] .... 24573.131121: clk_set_rate: l3_cluster1_vote_clk 1478400000
44572  kworker/u16:10-23868 (23868) [000] .... 24573.131126: clk_set_rate: l3_clk 1478400000
44573  kworker/u16:10-23868 (23868) [000] d..2 24573.131407: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
44574 id.nn.benchmark-13158 (13131) [003] d.s2 24573.131415: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
44575 id.nn.benchmark-13159 (13131) [000] d.h4 24573.131438: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
44576 id.nn.benchmark-13159 (13131) [000] d.h4 24573.131446: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
44577 id.nn.benchmark-13158 (13131) [003] d.s3 24573.131446: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
44578 id.nn.benchmark-13156 (13131) [004] dnh1 24573.131449: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
44579 id.nn.benchmark-13156 (13131) [004] d..2 24573.131452: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
44580 id.nn.benchmark-13158 (13131) [003] d.s3 24573.131453: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
44581         sugov:4-560   (  560) [004] d..2 24573.131456: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
44582           <...>-13204 (-----) [001] d..2 24573.131464: sched_switch: prev_comm=id.nn.benchmark prev_pid=13204 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
44583 id.nn.benchmark-13159 (13131) [000] d.h5 24573.131471: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
44584  kworker/u16:10-23868 (23868) [001] d..2 24573.131476: 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
44585         sugov:0-559   (  559) [001] d..2 24573.131487: 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
44586  kworker/u16:10-23868 (23868) [001] d..2 24573.131500: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13204 next_prio=110
44587 id.nn.benchmark-13159 (13131) [000] d.h4 24573.131607: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
44588 id.nn.benchmark-13159 (13131) [000] d.h5 24573.131617: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
44589 id.nn.benchmark-13159 (13131) [000] d.h4 24573.131620: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
44590           <...>-13204 (-----) [001] d..2 24573.131628: sched_switch: prev_comm=id.nn.benchmark prev_pid=13204 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
44591 id.nn.benchmark-13156 (13131) [004] dnh1 24573.131643: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
44592 id.nn.benchmark-13156 (13131) [004] d..2 24573.131646: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
44593  crtc_event:111-254   (  254) [001] d..2 24573.131647: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13204 next_prio=110
44594 crtc_commit:111-253   (  253) [004] d..2 24573.131740: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
44595           <...>-13204 (-----) [001] ...1 24573.131897: tracing_mark_write: E|13131
44596           <...>-13204 (-----) [001] ...1 24573.131901: tracing_mark_write: E|13131
44597           <...>-13204 (-----) [001] ...1 24573.131918: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44598           <...>-13204 (-----) [001] ...1 24573.131923: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44599           <...>-13204 (-----) [001] ...1 24573.132253: tracing_mark_write: E|13131
44600           <...>-13204 (-----) [001] ...1 24573.132257: tracing_mark_write: E|13131
44601           <...>-13204 (-----) [001] ...1 24573.132268: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44602           <...>-13204 (-----) [001] ...1 24573.132272: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44603           <...>-13204 (-----) [001] ...1 24573.132510: tracing_mark_write: E|13131
44604           <...>-13204 (-----) [001] ...1 24573.132513: tracing_mark_write: E|13131
44605           <...>-13204 (-----) [001] ...1 24573.132523: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44606           <...>-13204 (-----) [001] ...1 24573.132528: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44607           <...>-13204 (-----) [001] ...1 24573.132932: tracing_mark_write: E|13131
44608           <...>-13204 (-----) [001] ...1 24573.132936: tracing_mark_write: E|13131
44609           <...>-13204 (-----) [001] ...1 24573.132946: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44610           <...>-13204 (-----) [001] ...1 24573.132950: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44611           <...>-13204 (-----) [001] ...1 24573.133340: tracing_mark_write: E|13131
44612           <...>-13204 (-----) [001] ...1 24573.133344: tracing_mark_write: E|13131
44613           <...>-13204 (-----) [001] ...1 24573.133361: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44614           <...>-13204 (-----) [001] ...1 24573.133365: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44615           <...>-13204 (-----) [001] ...1 24573.133555: tracing_mark_write: E|13131
44616           <...>-13204 (-----) [001] ...1 24573.133559: tracing_mark_write: E|13131
44617           <...>-13204 (-----) [001] ...1 24573.133572: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44618           <...>-13204 (-----) [001] ...1 24573.133576: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44619           <...>-13204 (-----) [001] ...1 24573.133652: tracing_mark_write: E|13131
44620           <...>-13204 (-----) [001] ...1 24573.133655: tracing_mark_write: E|13131
44621           <...>-13204 (-----) [001] ...1 24573.133668: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
44622           <...>-13204 (-----) [001] ...1 24573.133672: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
44623 id.nn.benchmark-13159 (13131) [000] d.h4 24573.133960: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
44624 id.nn.benchmark-13159 (13131) [000] d.h5 24573.133978: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
44625           <...>-13204 (-----) [001] d..2 24573.133985: sched_switch: prev_comm=id.nn.benchmark prev_pid=13204 prev_prio=110 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
44626 id.nn.benchmark-13159 (13131) [000] d.h2 24573.134018: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
44627 id.nn.benchmark-13159 (13131) [000] d.h2 24573.134024: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
44628 id.nn.benchmark-13156 (13131) [004] dnh1 24573.134028: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
44629 id.nn.benchmark-13156 (13131) [004] d..2 24573.134031: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
44630 id.nn.benchmark-13159 (13131) [000] dnh3 24573.134033: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
44631         sugov:4-560   (  560) [004] d..2 24573.134035: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
44632 crtc_commit:111-253   (  253) [001] d..2 24573.134038: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13204 next_prio=110
44633 id.nn.benchmark-13159 (13131) [000] d..2 24573.134040: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
44634         sugov:0-559   (  559) [000] d..2 24573.134047: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
44635           <...>-13204 (-----) [001] ...1 24573.134052: tracing_mark_write: E|13131
44636           <...>-13204 (-----) [001] ...1 24573.134056: tracing_mark_write: E|13131
44637           <...>-13204 (-----) [001] ...1 24573.134066: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
44638           <...>-13204 (-----) [001] ...1 24573.134070: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
44639           <...>-13204 (-----) [001] ...1 24573.134124: tracing_mark_write: E|13131
44640           <...>-13204 (-----) [001] ...1 24573.134127: tracing_mark_write: E|13131
44641           <...>-13204 (-----) [001] ...1 24573.134137: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
44642           <...>-13204 (-----) [001] ...1 24573.134140: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
44643           <...>-13204 (-----) [001] ...1 24573.134157: tracing_mark_write: E|13131
44644           <...>-13204 (-----) [001] ...1 24573.134160: tracing_mark_write: E|13131
44645           <...>-13204 (-----) [001] ...1 24573.134170: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
44646           <...>-13204 (-----) [001] ...1 24573.134173: tracing_mark_write: E|13131
44647           <...>-13204 (-----) [001] ...1 24573.134183: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
44648           <...>-13204 (-----) [001] ...1 24573.134188: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
44649 id.nn.benchmark-13156 (13131) [004] d.s2 24573.134222: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
44650 id.nn.benchmark-13156 (13131) [004] d.s2 24573.134231: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
44651 id.nn.benchmark-13156 (13131) [004] dns3 24573.134234: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
44652           <...>-13204 (-----) [001] dnh1 24573.134235: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
44653 id.nn.benchmark-13156 (13131) [004] d..2 24573.134237: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=kworker/4:0 next_pid=24269 next_prio=120
44654           <...>-13204 (-----) [001] d..2 24573.134241: sched_switch: prev_comm=id.nn.benchmark prev_pid=13204 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
44655     kworker/4:0-24269 (24269) [004] d..2 24573.134246: sched_switch: prev_comm=kworker/4:0 prev_pid=24269 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
44656  crtc_event:111-254   (  254) [001] d..2 24573.134256: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13204 next_prio=110
44657           <...>-13204 (-----) [001] ...1 24573.135087: tracing_mark_write: E|13131
44658           <...>-13204 (-----) [001] ...1 24573.135090: tracing_mark_write: E|13131
44659           <...>-13204 (-----) [001] ...1 24573.135099: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44660           <...>-13204 (-----) [001] ...1 24573.135103: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44661           <...>-13204 (-----) [001] ...1 24573.135186: tracing_mark_write: E|13131
44662           <...>-13204 (-----) [001] ...1 24573.135190: tracing_mark_write: E|13131
44663           <...>-13204 (-----) [001] d..2 24573.135228: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
44664           <...>-13204 (-----) [001] d..3 24573.135240: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
44665           <...>-13204 (-----) [001] ...1 24573.135259: tracing_mark_write: E|13131
44666           <...>-13204 (-----) [001] d..1 24573.135264: sched_waking: comm=id.nn.benchmark pid=13203 prio=110 target_cpu=001
44667 id.nn.benchmark-13156 (13131) [004] dnh1 24573.135285: sched_wakeup: comm=id.nn.benchmark pid=13203 prio=110 target_cpu=004
44668 id.nn.benchmark-13156 (13131) [004] d..2 24573.135309: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13203 next_prio=110
44669           <...>-13204 (-----) [001] d.h3 24573.135310: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
44670           <...>-13203 (-----) [004] d..2 24573.135316: sched_switch: prev_comm=id.nn.benchmark prev_pid=13203 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
44671           <...>-13204 (-----) [001] d.h3 24573.135319: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
44672 id.nn.benchmark-13156 (13131) [004] dnh1 24573.135322: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
44673 id.nn.benchmark-13156 (13131) [004] d..2 24573.135324: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
44674         sugov:4-560   (  560) [004] d..2 24573.135327: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
44675           <...>-13204 (-----) [001] dnh4 24573.135328: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
44676           <...>-13204 (-----) [001] d..2 24573.135334: sched_switch: prev_comm=id.nn.benchmark prev_pid=13204 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
44677         sugov:0-559   (  559) [001] d..2 24573.135341: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
44678     logd.writer-563   (  555) [001] d..2 24573.135384: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13204 next_prio=110
44679           <...>-13204 (-----) [001] ...1 24573.135402: tracing_mark_write: E|13131
44680           <...>-13204 (-----) [001] d..1 24573.135595: sched_waking: comm=id.nn.benchmark pid=13203 prio=110 target_cpu=004
44681 id.nn.benchmark-13156 (13131) [004] dnh1 24573.135608: sched_wakeup: comm=id.nn.benchmark pid=13203 prio=110 target_cpu=004
44682 id.nn.benchmark-13156 (13131) [004] d..2 24573.135610: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13203 next_prio=110
44683           <...>-13203 (-----) [004] d..2 24573.135642: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
44684           <...>-13203 (-----) [004] d..1 24573.135674: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
44685           <...>-13204 (-----) [001] d..2 24573.135675: sched_switch: prev_comm=id.nn.benchmark prev_pid=13204 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
44686 id.nn.benchmark-13156 (13131) [001] d.h3 24573.135681: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
44687           <...>-13203 (-----) [004] dn.2 24573.135688: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
44688           <...>-13203 (-----) [004] d..2 24573.135690: sched_switch: prev_comm=id.nn.benchmark prev_pid=13203 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
44689           <...>-13131 (-----) [004] d..2 24573.135711: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13203 next_prio=110
44690           <...>-13203 (-----) [004] d..1 24573.135737: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
44691           <...>-13203 (-----) [004] dn.2 24573.135740: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
44692           <...>-13203 (-----) [004] d..2 24573.135743: sched_switch: prev_comm=id.nn.benchmark prev_pid=13203 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
44693           <...>-13131 (-----) [004] ...1 24573.135752: tracing_mark_write: E|13131
44694           <...>-13131 (-----) [004] ...1 24573.135755: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
44695           <...>-13131 (-----) [004] ...1 24573.135757: tracing_mark_write: E|13131
44696           <...>-13131 (-----) [004] ...1 24573.135759: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
44697           <...>-13131 (-----) [004] ...1 24573.135761: tracing_mark_write: E|13131
44698           <...>-13131 (-----) [004] ...1 24573.135822: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
44699           <...>-13131 (-----) [004] ...1 24573.135842: tracing_mark_write: E|13131
44700           <...>-13131 (-----) [004] ...1 24573.135844: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
44701           <...>-13131 (-----) [004] ...1 24573.135846: tracing_mark_write: E|13131
44702           <...>-13131 (-----) [004] ...1 24573.135848: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
44703           <...>-13131 (-----) [004] ...1 24573.135850: tracing_mark_write: E|13131
44704           <...>-13131 (-----) [004] ...1 24573.135852: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
44705           <...>-13131 (-----) [004] ...1 24573.135902: tracing_mark_write: E|13131
44706           <...>-13131 (-----) [004] ...1 24573.135904: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
44707           <...>-13131 (-----) [004] d..2 24573.135908: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13203 next_prio=110
44708           <...>-13203 (-----) [004] d..2 24573.135919: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
44709           <...>-13203 (-----) [004] dn.3 24573.135930: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=004
44710           <...>-13203 (-----) [004] dnh2 24573.135950: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
44711           <...>-13203 (-----) [004] dnh3 24573.135953: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
44712           <...>-13203 (-----) [004] dnh2 24573.135954: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
44713           <...>-13203 (-----) [004] d..2 24573.135960: sched_switch: prev_comm=id.nn.benchmark prev_pid=13203 prev_prio=110 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
44714 id.nn.benchmark-13156 (13131) [001] dnh1 24573.135963: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
44715         sugov:4-560   (  560) [004] d..2 24573.135964: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
44716         rcuop/4-45    (   45) [004] d..2 24573.135968: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13203 next_prio=110
44717 id.nn.benchmark-13156 (13131) [001] d..2 24573.135969: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
44718         sugov:0-559   (  559) [001] d..2 24573.135977: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
44719           <...>-13203 (-----) [004] d..2 24573.135977: sched_switch: prev_comm=id.nn.benchmark prev_pid=13203 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13205 next_prio=110
44720     logd.writer-563   (  555) [001] d.h2 24573.136098: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
44721           <...>-13205 (-----) [004] dnh2 24573.136123: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=004
44722           <...>-13205 (-----) [004] d..2 24573.136146: sched_switch: prev_comm=id.nn.benchmark prev_pid=13205 prev_prio=110 prev_state=R+ ==> next_comm=DispSync next_pid=23904 next_prio=97
44723        DispSync-23904 (23896) [004] d..1 24573.136159: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
44724     logd.writer-563   (  555) [001] dnh1 24573.136172: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
44725        DispSync-23904 (23896) [004] d..2 24573.136173: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13205 next_prio=110
44726     logd.writer-563   (  555) [001] d..2 24573.136179: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
44727           <...>-13205 (-----) [004] d..2 24573.136186: sched_switch: prev_comm=id.nn.benchmark prev_pid=13205 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13206 next_prio=110
44728           <...>-13206 (-----) [004] ...1 24573.136198: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
44729           <...>-13206 (-----) [004] ...1 24573.136200: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
44730  appEventThread-23905 (23896) [001] d..3 24573.136222: sched_waking: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=000
44731 id.nn.benchmark-13155 (13131) [007] dnh1 24573.136246: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=007
44732           <...>-13206 (-----) [004] ...1 24573.136253: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44733           <...>-13206 (-----) [004] ...1 24573.136255: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44734 id.nn.benchmark-13155 (13131) [007] d..2 24573.136265: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
44735  appEventThread-23905 (23896) [001] d..3 24573.136273: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
44736           <...>-13157 (-----) [006] dnh1 24573.136308: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
44737           <...>-13157 (-----) [006] d..2 24573.136311: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
44738  appEventThread-23905 (23896) [001] d..2 24573.136321: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
44739 s.nexuslauncher-24827 (24827) [007] d..2 24573.136408: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
44740<...>-24151 ( 24151) [006] .... 24573.136460: binder_transaction: transaction=1669812 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
44741<...>-24151 ( 24151) [006] d..4 24573.136466: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
44742<...>-24151 ( 24151) [006] d..5 24573.136481: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
44743 id.nn.benchmark-13155 (13131) [007] d..2 24573.136488: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
44744<...>-23903 ( 23896) [007] .... 24573.136492: binder_transaction_received: transaction=1669812
44745<...>-24151 ( 24151) [006] d..3 24573.136501: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
44746<...>-23903 ( 23896) [007] d..1 24573.136506: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
44747<...>-24151 ( 24151) [006] d..4 24573.136510: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
44748 id.nn.benchmark-13156 (13131) [001] dnh1 24573.136519: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
44749 id.nn.benchmark-13156 (13131) [001] d..2 24573.136524: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
44750<...>-23903 ( 23896) [007] d..2 24573.136525: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
44751    RenderThread-24437 (24151) [007] d..2 24573.136540: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
44752  appEventThread-23905 (23896) [001] d..2 24573.136541: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
44753<...>-24151 ( 24151) [006] d..3 24573.136571: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
44754<...>-24151 ( 24151) [006] d..4 24573.136578: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
44755<...>-24151 ( 24151) [006] d..2 24573.136584: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
44756 id.nn.benchmark-13155 (13131) [007] d..2 24573.136585: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
44757    RenderThread-24437 (24151) [007] d..1 24573.136636: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
44758    RenderThread-24437 (24151) [007] d..2 24573.136645: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
44759           <...>-13157 (-----) [006] d..2 24573.136651: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
44760<...>-24151 ( 24151) [006] d..2 24573.136669: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
44761    RenderThread-24437 (24151) [007] .... 24573.136676: binder_transaction: transaction=1669813 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
44762    RenderThread-24437 (24151) [007] d..4 24573.136678: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
44763    RenderThread-24437 (24151) [007] d..5 24573.136687: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
44764    RenderThread-24437 (24151) [007] d..2 24573.136692: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
44765           <...>-13206 (-----) [004] d..2 24573.136695: sched_switch: prev_comm=id.nn.benchmark prev_pid=13206 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
44766<...>-23903 ( 23896) [004] .... 24573.136699: binder_transaction_received: transaction=1669813
44767<...>-23903 ( 23896) [004] .... 24573.136733: binder_transaction: transaction=1669814 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
44768<...>-23903 ( 23896) [004] d..2 24573.136738: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
44769<...>-23903 ( 23896) [004] d..3 24573.136747: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
44770 id.nn.benchmark-13155 (13131) [007] d..2 24573.136753: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
44771    RenderThread-24437 (24151) [007] .... 24573.136755: binder_transaction_received: transaction=1669814
44772<...>-23903 ( 23896) [004] d..2 24573.136758: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13206 next_prio=110
44773    RenderThread-24437 (24151) [007] d..2 24573.137363: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
44774 id.nn.benchmark-13155 (13131) [007] d.h1 24573.137462: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
44775 id.nn.benchmark-13155 (13131) [007] d.h2 24573.137467: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
44776 id.nn.benchmark-13155 (13131) [007] dnh2 24573.137469: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
44777 id.nn.benchmark-13155 (13131) [007] d..2 24573.137473: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
44778           <...>-13206 (-----) [004] d.s2 24573.137563: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
44779 id.nn.benchmark-13158 (13131) [003] d.h2 24573.137564: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
44780    RenderThread-24437 (24151) [007] .... 24573.137569: binder_transaction: transaction=1669815 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
44781    RenderThread-24437 (24151) [007] d..4 24573.137573: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
44782 id.nn.benchmark-13158 (13131) [003] dnh3 24573.137586: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
44783           <...>-13154 (-----) [005] d.h2 24573.137591: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
44784    RenderThread-24437 (24151) [007] d..5 24573.137592: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
44785 id.nn.benchmark-13158 (13131) [003] d..2 24573.137594: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
44786           <...>-13206 (-----) [004] dns3 24573.137595: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=006
44787           <...>-13154 (-----) [005] d.h3 24573.137597: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
44788           <...>-13154 (-----) [005] d.h2 24573.137598: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
44789 id.nn.benchmark-13159 (13131) [000] d.H2 24573.137599: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
44790    RenderThread-24437 (24151) [007] d..2 24573.137599: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
44791           <...>-13157 (-----) [006] d..2 24573.137615: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
44792           <...>-13206 (-----) [004] d..2 24573.137629: sched_switch: prev_comm=id.nn.benchmark prev_pid=13206 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
44793 id.nn.benchmark-13159 (13131) [000] d.H3 24573.137653: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
44794         sugov:4-560   (  560) [004] d..2 24573.137654: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
44795<...>-23903 ( 23896) [004] .... 24573.137656: binder_transaction_received: transaction=1669815
44796<...>-33 ( 33) [003] d.h2 24573.137660: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
44797<...>-33 ( 33) [003] d..2 24573.137679: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
44798 id.nn.benchmark-13159 (13131) [000] dns1 24573.137683: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
44799 id.nn.benchmark-13159 (13131) [000] dns2 24573.137696: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
44800 id.nn.benchmark-13159 (13131) [000] d..2 24573.137705: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
44801         sugov:0-559   (  559) [000] d..2 24573.137713: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
44802 kgsl_worker_thr-246   (  246) [003] d..2 24573.137714: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
44803<...>-23903 ( 23896) [004] .... 24573.137716: binder_transaction: transaction=1669816 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
44804<...>-23903 ( 23896) [004] d..2 24573.137718: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
44805 kgsl_worker_thr-246   (  246) [003] d..3 24573.137730: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
44806 kgsl_worker_thr-246   (  246) [003] d.h1 24573.137755: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=003
44807<...>-23903 ( 23896) [004] d..2 24573.137763: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
44808 kgsl_worker_thr-246   (  246) [003] d..2 24573.137776: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
44809     rcu_preempt-7     (    7) [003] d..2 24573.137783: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
44810  kworker/u16:10-23868 (23868) [006] d..2 24573.137791: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
44811     rcu_preempt-7     (    7) [003] d..3 24573.137798: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
44812     rcu_preempt-7     (    7) [003] d..2 24573.137808: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
44813  kworker/u16:15-18488 (18488) [003] d..2 24573.137816: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
44814         rcuop/0-10    (   10) [003] d..2 24573.137821: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
44815         rcuop/0-10    (   10) [003] d..3 24573.137835: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
44816         rcuop/0-10    (   10) [003] d..2 24573.137845: 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
44817         rcuop/1-21    (   21) [003] d..2 24573.137871: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
44818    RenderThread-24437 (24151) [003] .... 24573.137876: binder_transaction_received: transaction=1669816
44819    RenderThread-24437 (24151) [003] d..2 24573.137947: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
44820     logd.writer-563   (  555) [003] d..2 24573.138212: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13206 next_prio=110
44821           <...>-13206 (-----) [003] d.h4 24573.138242: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
44822           <...>-13206 (-----) [003] d.h4 24573.138251: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
44823 id.nn.benchmark-13158 (13131) [004] dnh1 24573.138254: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
44824 id.nn.benchmark-13158 (13131) [004] d..2 24573.138257: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
44825         sugov:4-560   (  560) [004] d..2 24573.138261: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
44826           <...>-13206 (-----) [003] dnh5 24573.138261: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
44827           <...>-13206 (-----) [003] d..2 24573.138267: sched_switch: prev_comm=id.nn.benchmark prev_pid=13206 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
44828         sugov:0-559   (  559) [003] d..2 24573.138273: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13206 next_prio=110
44829           <...>-13206 (-----) [003] ...1 24573.138289: tracing_mark_write: E|13131
44830           <...>-13206 (-----) [003] ...1 24573.138294: tracing_mark_write: E|13131
44831           <...>-13206 (-----) [003] ...1 24573.138312: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44832           <...>-13206 (-----) [003] ...1 24573.138317: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44833           <...>-13206 (-----) [003] ...1 24573.139030: tracing_mark_write: E|13131
44834           <...>-13206 (-----) [003] ...1 24573.139035: tracing_mark_write: E|13131
44835           <...>-13206 (-----) [003] ...1 24573.139057: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44836           <...>-13206 (-----) [003] ...1 24573.139062: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44837           <...>-13206 (-----) [003] ...1 24573.139391: tracing_mark_write: E|13131
44838           <...>-13206 (-----) [003] ...1 24573.139395: tracing_mark_write: E|13131
44839           <...>-13206 (-----) [003] ...1 24573.139407: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44840           <...>-13206 (-----) [003] ...1 24573.139411: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44841           <...>-13206 (-----) [003] ...1 24573.139648: tracing_mark_write: E|13131
44842           <...>-13206 (-----) [003] ...1 24573.139652: tracing_mark_write: E|13131
44843           <...>-13206 (-----) [003] ...1 24573.139662: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44844           <...>-13206 (-----) [003] ...1 24573.139666: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44845           <...>-13206 (-----) [003] ...1 24573.140061: tracing_mark_write: E|13131
44846           <...>-13206 (-----) [003] ...1 24573.140065: tracing_mark_write: E|13131
44847           <...>-13206 (-----) [003] ...1 24573.140076: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44848           <...>-13206 (-----) [003] ...1 24573.140080: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44849 id.nn.benchmark-13158 (13131) [004] d.h1 24573.140087: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=004
44850 id.nn.benchmark-13158 (13131) [004] d.h2 24573.140118: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
44851           <...>-13206 (-----) [003] dnh1 24573.140119: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
44852 id.nn.benchmark-13158 (13131) [004] dnh3 24573.140120: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
44853 id.nn.benchmark-13158 (13131) [004] dnh2 24573.140121: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
44854           <...>-13206 (-----) [003] d..2 24573.140126: sched_switch: prev_comm=id.nn.benchmark prev_pid=13206 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
44855 id.nn.benchmark-13158 (13131) [004] d..2 24573.140138: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
44856         sugov:4-560   (  560) [004] d..2 24573.140141: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
44857        DispSync-23904 (23896) [003] d..1 24573.140141: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
44858 id.nn.benchmark-13159 (13131) [000] dnh1 24573.140142: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
44859 id.nn.benchmark-13159 (13131) [000] d..2 24573.140152: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
44860         sugov:0-559   (  559) [000] d..2 24573.140163: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
44861        DispSync-23904 (23896) [003] d..2 24573.140163: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
44862 id.nn.benchmark-13156 (13131) [001] d..2 24573.140172: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
44863        DispSync-23904 (23896) [003] d..2 24573.140177: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13206 next_prio=110
44864   sfEventThread-23906 (23896) [001] d..3 24573.140205: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
44865   sfEventThread-23906 (23896) [001] d..4 24573.140222: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
44866           <...>-13206 (-----) [003] d..2 24573.140232: sched_switch: prev_comm=id.nn.benchmark prev_pid=13206 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
44867   sfEventThread-23906 (23896) [001] d..2 24573.140236: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
44868  surfaceflinger-23896 (23896) [003] d..1 24573.140485: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
44869  surfaceflinger-23896 (23896) [003] d..2 24573.140496: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
44870 id.nn.benchmark-13156 (13131) [001] d..2 24573.140504: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
44871   sfEventThread-23906 (23896) [001] d..2 24573.140518: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
44872  surfaceflinger-23896 (23896) [003] ...1 24573.140626: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
44873  surfaceflinger-23896 (23896) [003] ...1 24573.140630: tracing_mark_write: E|23896
44874  surfaceflinger-23896 (23896) [003] .... 24573.140674: binder_transaction: transaction=1669817 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
44875  surfaceflinger-23896 (23896) [003] ...2 24573.140695: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
44876  surfaceflinger-23896 (23896) [003] d..4 24573.140703: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=006
44877 id.nn.benchmark-13158 (13131) [004] dnh1 24573.140723: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
44878 id.nn.benchmark-13158 (13131) [004] d..2 24573.140725: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
44879  HwBinder:598_3-633   (  598) [004] .... 24573.140729: binder_transaction_received: transaction=1669817
44880  surfaceflinger-23896 (23896) [003] d..2 24573.140730: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13206 next_prio=110
44881  HwBinder:598_3-633   (  598) [004] ...1 24573.140756: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
44882  HwBinder:598_3-633   (  598) [004] ...1 24573.140807: tracing_mark_write: B|598|HWCSession::PresentDisplay::
44883  HwBinder:598_3-633   (  598) [004] ...1 24573.140874: tracing_mark_write: B|598|HWDeviceDRM::Commit::
44884  HwBinder:598_3-633   (  598) [004] d.s2 24573.140893: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
44885  HwBinder:598_3-633   (  598) [004] ...1 24573.140903: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
44886           <...>-13206 (-----) [003] dnh1 24573.140907: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
44887           <...>-13206 (-----) [003] d..2 24573.140913: sched_switch: prev_comm=id.nn.benchmark prev_pid=13206 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
44888  HwBinder:598_3-633   (  598) [004] d..2 24573.141129: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
44889  kworker/u16:15-18488 (18488) [003] dnh3 24573.141145: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
44890  kworker/u16:15-18488 (18488) [003] d..2 24573.141152: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
44891  HwBinder:598_3-633   (  598) [004] ...1 24573.141170: tracing_mark_write: E|598
44892  HwBinder:598_3-633   (  598) [004] ...1 24573.141171: tracing_mark_write: E|598
44893  HwBinder:598_3-633   (  598) [004] ...1 24573.141194: tracing_mark_write: E|598
44894  HwBinder:598_3-633   (  598) [004] ...1 24573.141215: tracing_mark_write: E|598
44895  HwBinder:598_3-633   (  598) [004] .... 24573.141221: binder_transaction: transaction=1669818 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
44896  HwBinder:598_3-633   (  598) [004] d..2 24573.141226: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
44897  HwBinder:598_3-633   (  598) [004] .... 24573.141236: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
44898 id.nn.benchmark-13159 (13131) [000] dnh1 24573.141241: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
44899 id.nn.benchmark-13159 (13131) [000] d..2 24573.141247: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
44900  surfaceflinger-23896 (23896) [000] .... 24573.141252: binder_transaction_received: transaction=1669818
44901  HwBinder:598_3-633   (  598) [004] d..2 24573.141257: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
44902  surfaceflinger-23896 (23896) [000] d..2 24573.141510: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
44903 crtc_commit:111-253   (  253) [003] d..2 24573.141763: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
44904  kworker/u16:15-18488 (18488) [003] d..2 24573.141792: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13206 next_prio=110
44905           <...>-13206 (-----) [003] ...1 24573.141973: tracing_mark_write: E|13131
44906           <...>-13206 (-----) [003] ...1 24573.141977: tracing_mark_write: E|13131
44907           <...>-13206 (-----) [003] ...1 24573.142000: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44908           <...>-13206 (-----) [003] ...1 24573.142004: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44909           <...>-13206 (-----) [003] ...1 24573.142200: tracing_mark_write: E|13131
44910           <...>-13206 (-----) [003] ...1 24573.142204: tracing_mark_write: E|13131
44911           <...>-13206 (-----) [003] ...1 24573.142219: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44912           <...>-13206 (-----) [003] ...1 24573.142223: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44913           <...>-13206 (-----) [003] ...1 24573.142296: tracing_mark_write: E|13131
44914           <...>-13206 (-----) [003] ...1 24573.142299: tracing_mark_write: E|13131
44915           <...>-13206 (-----) [003] ...1 24573.142311: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
44916           <...>-13206 (-----) [003] ...1 24573.142316: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
44917           <...>-13206 (-----) [003] ...1 24573.142627: tracing_mark_write: E|13131
44918           <...>-13206 (-----) [003] ...1 24573.142630: tracing_mark_write: E|13131
44919           <...>-13206 (-----) [003] ...1 24573.142640: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
44920           <...>-13206 (-----) [003] ...1 24573.142644: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
44921           <...>-13206 (-----) [003] ...1 24573.142696: tracing_mark_write: E|13131
44922           <...>-13206 (-----) [003] ...1 24573.142699: tracing_mark_write: E|13131
44923           <...>-13206 (-----) [003] ...1 24573.142708: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
44924           <...>-13206 (-----) [003] ...1 24573.142711: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
44925           <...>-13206 (-----) [003] ...1 24573.142728: tracing_mark_write: E|13131
44926           <...>-13206 (-----) [003] ...1 24573.142731: tracing_mark_write: E|13131
44927           <...>-13206 (-----) [003] ...1 24573.142741: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
44928           <...>-13206 (-----) [003] ...1 24573.142744: tracing_mark_write: E|13131
44929           <...>-13206 (-----) [003] ...1 24573.142754: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
44930           <...>-13206 (-----) [003] ...1 24573.142759: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
44931           <...>-13206 (-----) [003] ...1 24573.143613: tracing_mark_write: E|13131
44932           <...>-13206 (-----) [003] ...1 24573.143616: tracing_mark_write: E|13131
44933           <...>-13206 (-----) [003] ...1 24573.143624: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
44934           <...>-13206 (-----) [003] ...1 24573.143628: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
44935           <...>-13206 (-----) [003] ...1 24573.143714: tracing_mark_write: E|13131
44936           <...>-13206 (-----) [003] ...1 24573.143717: tracing_mark_write: E|13131
44937           <...>-13206 (-----) [003] d..2 24573.143768: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
44938           <...>-13206 (-----) [003] d..3 24573.143777: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
44939           <...>-13206 (-----) [003] ...1 24573.143798: tracing_mark_write: E|13131
44940           <...>-13206 (-----) [003] d..1 24573.143804: sched_waking: comm=id.nn.benchmark pid=13205 prio=110 target_cpu=004
44941 id.nn.benchmark-13158 (13131) [004] dnh1 24573.143821: sched_wakeup: comm=id.nn.benchmark pid=13205 prio=110 target_cpu=004
44942 id.nn.benchmark-13158 (13131) [004] d..2 24573.143824: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13205 next_prio=110
44943           <...>-13206 (-----) [003] ...1 24573.143830: tracing_mark_write: E|13131
44944           <...>-13205 (-----) [004] d..2 24573.143833: sched_switch: prev_comm=id.nn.benchmark prev_pid=13205 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
44945           <...>-13206 (-----) [003] d..1 24573.144046: sched_waking: comm=id.nn.benchmark pid=13205 prio=110 target_cpu=004
44946 id.nn.benchmark-13158 (13131) [004] dnh1 24573.144059: sched_wakeup: comm=id.nn.benchmark pid=13205 prio=110 target_cpu=004
44947 id.nn.benchmark-13158 (13131) [004] d..2 24573.144062: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13205 next_prio=110
44948           <...>-13206 (-----) [003] d..2 24573.144111: sched_switch: prev_comm=id.nn.benchmark prev_pid=13206 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
44949           <...>-13205 (-----) [004] d..1 24573.144131: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
44950           <...>-13205 (-----) [004] dn.2 24573.144142: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
44951           <...>-13205 (-----) [004] d..2 24573.144145: sched_switch: prev_comm=id.nn.benchmark prev_pid=13205 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
44952           <...>-13131 (-----) [004] d..2 24573.144152: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13205 next_prio=110
44953           <...>-13205 (-----) [004] d..1 24573.144183: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
44954           <...>-13205 (-----) [004] dn.2 24573.144186: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
44955           <...>-13205 (-----) [004] d..2 24573.144189: sched_switch: prev_comm=id.nn.benchmark prev_pid=13205 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
44956           <...>-13131 (-----) [004] ...1 24573.144199: tracing_mark_write: E|13131
44957           <...>-13131 (-----) [004] ...1 24573.144202: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
44958           <...>-13131 (-----) [004] ...1 24573.144204: tracing_mark_write: E|13131
44959           <...>-13131 (-----) [004] ...1 24573.144206: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
44960     logd.writer-563   (  555) [003] d..2 24573.144207: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
44961           <...>-13131 (-----) [004] ...1 24573.144208: tracing_mark_write: E|13131
44962          <idle>-0     (-----) [003] d.s2 24573.144230: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
44963          <idle>-0     (-----) [003] dns3 24573.144240: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
44964          <idle>-0     (-----) [003] d..2 24573.144257: 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
44965     rcu_preempt-7     (    7) [003] d..2 24573.144264: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=004
44966           <...>-13131 (-----) [004] ...1 24573.144284: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
44967     rcu_preempt-7     (    7) [003] d..2 24573.144287: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
44968           <...>-13131 (-----) [004] d.h1 24573.144291: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=004
44969           <...>-13131 (-----) [004] d..2 24573.144303: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
44970     rcu_preempt-7     (    7) [003] d..2 24573.144307: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
44971           <...>-13157 (-----) [006] dnh1 24573.144310: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
44972           <...>-13157 (-----) [006] d..2 24573.144313: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
44973           <...>-13131 (-----) [004] ...1 24573.144318: tracing_mark_write: E|13131
44974           <...>-13131 (-----) [004] ...1 24573.144320: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
44975     rcu_preempt-7     (    7) [003] d..3 24573.144321: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
44976           <...>-13131 (-----) [004] ...1 24573.144323: tracing_mark_write: E|13131
44977           <...>-13131 (-----) [004] ...1 24573.144324: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
44978           <...>-13131 (-----) [004] ...1 24573.144326: tracing_mark_write: E|13131
44979     rcu_preempt-7     (    7) [003] d.h2 24573.144327: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
44980           <...>-13131 (-----) [004] ...1 24573.144328: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
44981         rcuop/6-61    (   61) [006] d..2 24573.144328: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
44982     rcu_preempt-7     (    7) [003] d..2 24573.144336: 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
44983         rcuop/2-29    (   29) [003] d..2 24573.144348: 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
44984     logd.writer-563   (  555) [003] d..2 24573.144388: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
44985           <...>-13131 (-----) [004] ...1 24573.144392: tracing_mark_write: E|13131
44986           <...>-13131 (-----) [004] ...1 24573.144393: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
44987           <...>-13131 (-----) [004] d..2 24573.144398: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
44988         rcuop/4-45    (   45) [004] d..2 24573.144404: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13205 next_prio=110
44989          <idle>-0     (-----) [003] d..1 24573.144409: cpu_idle: state=0 cpu_id=3
44990           <...>-13205 (-----) [004] d..2 24573.144428: sched_switch: prev_comm=id.nn.benchmark prev_pid=13205 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
44991 id.nn.benchmark-13158 (13131) [004] d.s2 24573.147557: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
44992          <idle>-0     (-----) [003] dnh2 24573.147567: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
44993          <idle>-0     (-----) [003] .n.1 24573.147575: cpu_idle: state=4294967295 cpu_id=3
44994          <idle>-0     (-----) [003] d..2 24573.147583: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
44995  kworker/u16:15-18488 (18488) [003] .... 24573.147661: clk_set_rate: l3_cluster0_vote_clk 940800000
44996  kworker/u16:15-18488 (18488) [003] d..2 24573.147696: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13207 next_prio=110
44997           <...>-13207 (-----) [003] d.h4 24573.147728: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
44998           <...>-13207 (-----) [003] d.h4 24573.147736: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
44999 id.nn.benchmark-13158 (13131) [004] dnh1 24573.147739: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
45000 id.nn.benchmark-13158 (13131) [004] d..2 24573.147742: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
45001           <...>-13207 (-----) [003] dnh5 24573.147746: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
45002         sugov:4-560   (  560) [004] d..2 24573.147746: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
45003           <...>-13207 (-----) [003] d..2 24573.147752: sched_switch: prev_comm=id.nn.benchmark prev_pid=13207 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
45004         sugov:0-559   (  559) [003] d..2 24573.147759: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13207 next_prio=110
45005           <...>-13207 (-----) [003] d..2 24573.147819: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
45006           <...>-13207 (-----) [003] d..3 24573.147827: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
45007 id.nn.benchmark-13159 (13131) [000] d.h4 24573.148078: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
45008 id.nn.benchmark-13159 (13131) [000] d.h5 24573.148096: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
45009           <...>-13154 (-----) [005] d..3 24573.148100: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
45010           <...>-13207 (-----) [003] d..2 24573.148103: sched_switch: prev_comm=id.nn.benchmark prev_pid=13207 prev_prio=110 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
45011 id.nn.benchmark-13155 (13131) [007] d..2 24573.148107: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
45012           <...>-13154 (-----) [005] d..2 24573.148108: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
45013 id.nn.benchmark-13159 (13131) [000] d.h4 24573.148108: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
45014 id.nn.benchmark-13156 (13131) [001] dnh1 24573.148111: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
45015          <idle>-0     (-----) [005] d..1 24573.148114: cpu_idle: state=0 cpu_id=5
45016          <idle>-0     (-----) [007] d..1 24573.148115: cpu_idle: state=0 cpu_id=7
45017 id.nn.benchmark-13156 (13131) [001] d..2 24573.148118: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
45018  crtc_event:111-254   (  254) [003] d..2 24573.148127: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
45019           <...>-13157 (-----) [006] d..3 24573.148128: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
45020          <idle>-0     (-----) [007] dnh2 24573.148130: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
45021          <idle>-0     (-----) [007] .n.1 24573.148132: cpu_idle: state=4294967295 cpu_id=7
45022          <idle>-0     (-----) [007] d..2 24573.148136: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
45023          <idle>-0     (-----) [005] .n.1 24573.148143: cpu_idle: state=4294967295 cpu_id=5
45024           <...>-13157 (-----) [006] d..2 24573.148159: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
45025          <idle>-0     (-----) [005] d..2 24573.148159: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
45026 id.nn.benchmark-13159 (13131) [000] dnh1 24573.148160: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
45027          <idle>-0     (-----) [006] d..1 24573.148165: cpu_idle: state=0 cpu_id=6
45028 id.nn.benchmark-13159 (13131) [000] d..2 24573.148166: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
45029     migration/1-17    (   17) [001] d..2 24573.148170: 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
45030          <idle>-0     (-----) [001] d..1 24573.148181: cpu_idle: state=0 cpu_id=1
45031          <idle>-0     (-----) [006] .n.1 24573.148189: cpu_idle: state=4294967295 cpu_id=6
45032          <idle>-0     (-----) [006] d..2 24573.148204: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
45033     migration/0-13    (   13) [000] d..2 24573.148215: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45034          <idle>-0     (-----) [000] d..1 24573.148227: cpu_idle: state=0 cpu_id=0
45035 crtc_commit:111-253   (  253) [007] d..3 24573.148229: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
45036 crtc_commit:111-253   (  253) [007] d..2 24573.148237: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
45037          <idle>-0     (-----) [007] d..1 24573.148239: cpu_idle: state=0 cpu_id=7
45038 id.nn.benchmark-13160 (13131) [002] dnh1 24573.148240: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
45039 id.nn.benchmark-13160 (13131) [002] d..2 24573.148247: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
45040          <idle>-0     (-----) [007] .n.1 24573.148271: cpu_idle: state=4294967295 cpu_id=7
45041          <idle>-0     (-----) [007] d..2 24573.148294: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
45042     migration/2-25    (   25) [002] d.h3 24573.148295: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
45043     logd.writer-563   (  555) [003] d..2 24573.148301: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13207 next_prio=110
45044     migration/2-25    (   25) [002] d.h3 24573.148307: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
45045 id.nn.benchmark-13156 (13131) [005] dnh1 24573.148310: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
45046 id.nn.benchmark-13156 (13131) [005] d..2 24573.148312: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
45047         sugov:4-560   (  560) [005] d..2 24573.148316: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
45048     migration/2-25    (   25) [002] d.h4 24573.148321: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
45049          <idle>-0     (-----) [000] .n.1 24573.148323: cpu_idle: state=4294967295 cpu_id=0
45050          <idle>-0     (-----) [001] .n.1 24573.148327: cpu_idle: state=4294967295 cpu_id=1
45051          <idle>-0     (-----) [000] d..2 24573.148330: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13208 next_prio=110
45052          <idle>-0     (-----) [001] d..2 24573.148332: 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
45053     migration/2-25    (   25) [002] d..2 24573.148336: 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
45054         sugov:0-559   (  559) [001] d..2 24573.148345: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45055          <idle>-0     (-----) [002] d..1 24573.148349: cpu_idle: state=0 cpu_id=2
45056          <idle>-0     (-----) [001] d..1 24573.148350: cpu_idle: state=0 cpu_id=1
45057           <...>-13207 (-----) [003] d..2 24573.148354: sched_switch: prev_comm=id.nn.benchmark prev_pid=13207 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
45058           <...>-13208 (-----) [000] ...1 24573.148362: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
45059          <idle>-0     (-----) [003] d..1 24573.148364: cpu_idle: state=0 cpu_id=3
45060           <...>-13208 (-----) [000] ...1 24573.148367: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
45061           <...>-13208 (-----) [000] d..2 24573.148438: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
45062           <...>-13208 (-----) [000] d..3 24573.148451: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
45063 id.nn.benchmark-13158 (13131) [004] d..2 24573.148514: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
45064           <...>-13208 (-----) [000] ...1 24573.148523: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45065          <idle>-0     (-----) [004] d..1 24573.148523: cpu_idle: state=0 cpu_id=4
45066           <...>-13208 (-----) [000] ...1 24573.148528: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45067          <idle>-0     (-----) [004] ...1 24573.148715: cpu_idle: state=4294967295 cpu_id=4
45068          <idle>-0     (-----) [004] d..1 24573.148716: cpu_idle: state=0 cpu_id=4
45069          <idle>-0     (-----) [001] ...1 24573.149475: cpu_idle: state=4294967295 cpu_id=1
45070          <idle>-0     (-----) [001] d..1 24573.149477: cpu_idle: state=0 cpu_id=1
45071          <idle>-0     (-----) [002] ...1 24573.149965: cpu_idle: state=4294967295 cpu_id=2
45072          <idle>-0     (-----) [002] d..1 24573.149968: cpu_idle: state=0 cpu_id=2
45073           <...>-13208 (-----) [000] d..1 24573.150175: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
45074           <...>-13208 (-----) [000] d..1 24573.150194: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=007
45075          <idle>-0     (-----) [004] dnh2 24573.150196: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
45076          <idle>-0     (-----) [004] .n.1 24573.150198: cpu_idle: state=4294967295 cpu_id=4
45077          <idle>-0     (-----) [004] d..2 24573.150201: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
45078           <...>-13208 (-----) [000] d..1 24573.150206: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=006
45079 id.nn.benchmark-13160 (13131) [007] d.h1 24573.150206: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=007
45080           <...>-13208 (-----) [000] d..1 24573.150214: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
45081 id.nn.benchmark-13159 (13131) [006] dnh1 24573.150217: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=006
45082 id.nn.benchmark-13159 (13131) [006] d..2 24573.150219: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
45083           <...>-13154 (-----) [004] d.h1 24573.150225: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
45084           <...>-13208 (-----) [000] d.h4 24573.150431: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
45085           <...>-13208 (-----) [000] d.h5 24573.150449: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
45086          <idle>-0     (-----) [002] .n.1 24573.150453: cpu_idle: state=4294967295 cpu_id=2
45087          <idle>-0     (-----) [002] d..2 24573.150459: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
45088           <...>-13208 (-----) [000] d.h2 24573.150485: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
45089           <...>-13208 (-----) [000] d.h2 24573.150492: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
45090 id.nn.benchmark-13156 (13131) [005] dnh1 24573.150495: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
45091 id.nn.benchmark-13156 (13131) [005] d..2 24573.150498: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
45092           <...>-13208 (-----) [000] d.h3 24573.150500: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
45093         sugov:4-560   (  560) [005] d..2 24573.150502: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
45094          <idle>-0     (-----) [001] .n.1 24573.150504: cpu_idle: state=4294967295 cpu_id=1
45095          <idle>-0     (-----) [001] d..2 24573.150509: 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
45096 crtc_commit:111-253   (  253) [002] d..2 24573.150518: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
45097         sugov:0-559   (  559) [001] d..2 24573.150534: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
45098     logd.writer-563   (  555) [002] d..2 24573.150671: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
45099           <...>-13208 (-----) [000] d.h4 24573.150717: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
45100           <...>-13208 (-----) [000] d.h5 24573.150726: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
45101          <idle>-0     (-----) [003] .n.1 24573.150731: cpu_idle: state=4294967295 cpu_id=3
45102          <idle>-0     (-----) [003] d..2 24573.150736: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
45103  crtc_event:111-254   (  254) [003] d..2 24573.150767: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
45104 id.nn.benchmark-13160 (13131) [007] d.s2 24573.150888: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
45105           <...>-13157 (-----) [006] d.s2 24573.150890: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
45106 id.nn.benchmark-13159 (13131) [003] d.s1 24573.150903: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
45107           <...>-13208 (-----) [000] dnh1 24573.150908: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45108           <...>-13208 (-----) [000] dnh1 24573.150910: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
45109 id.nn.benchmark-13159 (13131) [003] d.s2 24573.150919: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
45110           <...>-13208 (-----) [000] d..2 24573.150924: sched_switch: prev_comm=id.nn.benchmark prev_pid=13208 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
45111  crtc_event:111-254   (  254) [000] d..2 24573.150935: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
45112  kworker/u16:15-18488 (18488) [000] d..2 24573.151149: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
45113     rcu_preempt-7     (    7) [000] d..2 24573.151153: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
45114     rcu_preempt-7     (    7) [000] d..2 24573.151176: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
45115           <...>-13157 (-----) [006] dnh1 24573.151180: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
45116           <...>-13157 (-----) [006] d..2 24573.151182: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
45117 id.nn.benchmark-13159 (13131) [003] d.s2 24573.151187: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45118     rcu_preempt-7     (    7) [000] d..3 24573.151191: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
45119     rcu_preempt-7     (    7) [000] d..2 24573.151201: 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
45120         rcuop/6-61    (   61) [006] d..2 24573.151205: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
45121         rcuop/0-10    (   10) [000] d..2 24573.151205: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
45122 id.nn.benchmark-13159 (13131) [003] d.s3 24573.151206: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
45123 id.nn.benchmark-13159 (13131) [003] d.s3 24573.151210: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45124         rcuop/0-10    (   10) [000] d..3 24573.151219: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
45125         rcuop/0-10    (   10) [000] d..2 24573.151228: 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
45126         rcuop/1-21    (   21) [000] d..2 24573.151258: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
45127  kworker/u16:15-18488 (18488) [000] .... 24573.151356: clk_set_rate: l3_cluster1_vote_clk 1401600000
45128  kworker/u16:15-18488 (18488) [000] .... 24573.151361: clk_set_rate: l3_clk 1401600000
45129  kworker/u16:15-18488 (18488) [000] d..2 24573.151578: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13208 next_prio=110
45130           <...>-13208 (-----) [000] ...1 24573.151590: tracing_mark_write: E|13131
45131           <...>-13208 (-----) [000] ...1 24573.151593: tracing_mark_write: E|13131
45132           <...>-13208 (-----) [000] ...1 24573.151606: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45133           <...>-13208 (-----) [000] ...1 24573.151611: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45134           <...>-13208 (-----) [000] ...1 24573.152320: tracing_mark_write: E|13131
45135           <...>-13208 (-----) [000] ...1 24573.152324: tracing_mark_write: E|13131
45136           <...>-13208 (-----) [000] ...1 24573.152341: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45137           <...>-13208 (-----) [000] ...1 24573.152345: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45138 id.nn.benchmark-13159 (13131) [003] d.h1 24573.152578: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
45139 id.nn.benchmark-13159 (13131) [003] d.h2 24573.152594: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
45140           <...>-13208 (-----) [000] d..2 24573.152604: sched_switch: prev_comm=id.nn.benchmark prev_pid=13208 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
45141        DispSync-23904 (23896) [000] d..1 24573.152623: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
45142        DispSync-23904 (23896) [000] d..2 24573.152637: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
45143 id.nn.benchmark-13155 (13131) [001] d..2 24573.152646: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
45144        DispSync-23904 (23896) [000] d..2 24573.152652: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13208 next_prio=110
45145  appEventThread-23905 (23896) [001] d..3 24573.152686: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
45146           <...>-13157 (-----) [006] dnh1 24573.152703: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
45147           <...>-13157 (-----) [006] d..2 24573.152705: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
45148  appEventThread-23905 (23896) [001] d..2 24573.152714: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
45149           <...>-13208 (-----) [000] ...1 24573.152751: tracing_mark_write: E|13131
45150           <...>-13208 (-----) [000] ...1 24573.152754: tracing_mark_write: E|13131
45151           <...>-13208 (-----) [000] ...1 24573.152765: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45152           <...>-13208 (-----) [000] ...1 24573.152769: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45153<...>-24151 ( 24151) [006] .... 24573.152881: binder_transaction: transaction=1669819 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
45154<...>-24151 ( 24151) [006] d..4 24573.152886: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
45155<...>-24151 ( 24151) [006] d..5 24573.152900: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
45156           <...>-13154 (-----) [004] d..2 24573.152903: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
45157<...>-23903 ( 23896) [004] .... 24573.152910: binder_transaction_received: transaction=1669819
45158<...>-24151 ( 24151) [006] d..3 24573.152923: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=003
45159<...>-23903 ( 23896) [004] d..1 24573.152927: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
45160<...>-24151 ( 24151) [006] d..4 24573.152938: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
45161<...>-24151 ( 24151) [006] d.h3 24573.152958: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
45162 id.nn.benchmark-13160 (13131) [007] d..2 24573.152959: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
45163           <...>-13208 (-----) [000] dnh1 24573.152959: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
45164<...>-23903 ( 23896) [004] d..2 24573.152960: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
45165<...>-24151 ( 24151) [006] d.h4 24573.152965: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
45166<...>-24151 ( 24151) [006] d.h3 24573.152965: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
45167           <...>-13208 (-----) [000] d..2 24573.152967: sched_switch: prev_comm=id.nn.benchmark prev_pid=13208 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
45168 id.nn.benchmark-13156 (13131) [005] d..2 24573.152971: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
45169         sugov:4-560   (  560) [005] d..2 24573.152974: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
45170 id.nn.benchmark-13155 (13131) [001] dnh1 24573.152977: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
45171    RenderThread-24437 (24151) [007] d..2 24573.152977: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
45172 id.nn.benchmark-13155 (13131) [001] d..2 24573.152983: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
45173         sugov:0-559   (  559) [001] d..2 24573.152990: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
45174  appEventThread-23905 (23896) [000] d..2 24573.152992: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13208 next_prio=110
45175<...>-24151 ( 24151) [006] d..3 24573.153028: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
45176<...>-24151 ( 24151) [006] d..4 24573.153036: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
45177<...>-24151 ( 24151) [006] d..2 24573.153043: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
45178 id.nn.benchmark-13160 (13131) [007] d..2 24573.153044: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
45179           <...>-13208 (-----) [000] ...1 24573.153094: tracing_mark_write: E|13131
45180    RenderThread-24437 (24151) [007] d..1 24573.153095: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
45181           <...>-13208 (-----) [000] ...1 24573.153098: tracing_mark_write: E|13131
45182    RenderThread-24437 (24151) [007] d..2 24573.153104: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
45183           <...>-13208 (-----) [000] ...1 24573.153109: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45184           <...>-13157 (-----) [006] d..2 24573.153111: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
45185           <...>-13208 (-----) [000] ...1 24573.153112: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45186<...>-24151 ( 24151) [006] d..2 24573.153132: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
45187    RenderThread-24437 (24151) [007] .... 24573.153135: binder_transaction: transaction=1669820 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
45188    RenderThread-24437 (24151) [007] d..4 24573.153138: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
45189    RenderThread-24437 (24151) [007] d..5 24573.153149: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
45190    RenderThread-24437 (24151) [007] d..2 24573.153153: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
45191           <...>-13154 (-----) [004] d..2 24573.153155: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
45192<...>-23903 ( 23896) [004] .... 24573.153157: binder_transaction_received: transaction=1669820
45193<...>-23903 ( 23896) [004] .... 24573.153181: binder_transaction: transaction=1669821 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
45194<...>-23903 ( 23896) [004] d..2 24573.153186: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
45195<...>-23903 ( 23896) [004] d..3 24573.153197: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
45196 id.nn.benchmark-13160 (13131) [007] d..2 24573.153203: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
45197    RenderThread-24437 (24151) [007] .... 24573.153205: binder_transaction_received: transaction=1669821
45198<...>-23903 ( 23896) [004] d..2 24573.153206: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
45199    RenderThread-24437 (24151) [007] d..2 24573.153814: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
45200           <...>-13208 (-----) [000] ...1 24573.153899: tracing_mark_write: E|13131
45201           <...>-13208 (-----) [000] ...1 24573.153903: tracing_mark_write: E|13131
45202 id.nn.benchmark-13160 (13131) [007] d.h1 24573.153913: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
45203           <...>-13208 (-----) [000] ...1 24573.153914: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45204           <...>-13208 (-----) [000] ...1 24573.153918: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45205 id.nn.benchmark-13160 (13131) [007] d.h2 24573.153921: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
45206 id.nn.benchmark-13160 (13131) [007] dnh2 24573.153922: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
45207 id.nn.benchmark-13160 (13131) [007] d..2 24573.153927: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
45208    RenderThread-24437 (24151) [007] .... 24573.154003: binder_transaction: transaction=1669822 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
45209    RenderThread-24437 (24151) [007] d..4 24573.154008: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
45210    RenderThread-24437 (24151) [007] d..5 24573.154019: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
45211    RenderThread-24437 (24151) [007] d..2 24573.154024: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
45212           <...>-13154 (-----) [004] d..2 24573.154026: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
45213<...>-23903 ( 23896) [004] .... 24573.154027: binder_transaction_received: transaction=1669822
45214           <...>-13208 (-----) [000] d.h2 24573.154042: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
45215           <...>-13208 (-----) [000] dnh3 24573.154057: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
45216           <...>-13208 (-----) [000] d..2 24573.154069: sched_switch: prev_comm=id.nn.benchmark prev_pid=13208 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
45217<...>-23903 ( 23896) [004] .... 24573.154081: binder_transaction: transaction=1669823 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
45218<...>-23903 ( 23896) [004] d..2 24573.154083: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
45219<...>-23903 ( 23896) [004] d..3 24573.154093: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
45220 id.nn.benchmark-13160 (13131) [007] d..2 24573.154099: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
45221    RenderThread-24437 (24151) [007] .... 24573.154101: binder_transaction_received: transaction=1669823
45222<...>-23903 ( 23896) [004] d..2 24573.154102: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
45223 kgsl_worker_thr-246   (  246) [000] d..2 24573.154104: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45224 kgsl_worker_thr-246   (  246) [000] d..3 24573.154114: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45225    RenderThread-24437 (24151) [007] d..2 24573.154126: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
45226 kgsl_worker_thr-246   (  246) [000] d..2 24573.154128: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
45227  kworker/u16:15-18488 (18488) [000] d..2 24573.154152: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13208 next_prio=110
45228           <...>-13208 (-----) [000] ...1 24573.154460: tracing_mark_write: E|13131
45229           <...>-13208 (-----) [000] ...1 24573.154464: tracing_mark_write: E|13131
45230           <...>-13208 (-----) [000] ...1 24573.154483: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45231           <...>-13208 (-----) [000] ...1 24573.154488: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45232 id.nn.benchmark-13155 (13131) [001] d..2 24573.154546: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
45233           <...>-13154 (-----) [004] d..3 24573.154550: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
45234           <...>-13154 (-----) [004] d..2 24573.154556: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=D|K ==> next_comm=swapper/4 next_pid=0 next_prio=120
45235          <idle>-0     (-----) [004] d..1 24573.154564: cpu_idle: state=0 cpu_id=4
45236 id.nn.benchmark-13155 (13131) [001] dnh2 24573.154571: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
45237          <idle>-0     (-----) [004] d.h2 24573.154571: sched_blocked_reason: pid=13154 iowait=1 caller=__lock_page_or_retry+0x26c/0x2c4
45238          <idle>-0     (-----) [004] dnh2 24573.154572: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
45239          <idle>-0     (-----) [004] .n.1 24573.154575: cpu_idle: state=4294967295 cpu_id=4
45240 id.nn.benchmark-13155 (13131) [001] d..2 24573.154576: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R+ ==> next_comm=migration/1 next_pid=17 next_prio=0
45241          <idle>-0     (-----) [004] d..2 24573.154579: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
45242     migration/1-17    (   17) [001] d.h3 24573.154623: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
45243     migration/1-17    (   17) [001] d.h3 24573.154631: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
45244 id.nn.benchmark-13156 (13131) [005] dnh1 24573.154635: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
45245 id.nn.benchmark-13156 (13131) [005] d..2 24573.154637: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
45246     migration/1-17    (   17) [001] d.h4 24573.154637: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
45247         sugov:4-560   (  560) [005] d..2 24573.154641: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
45248     migration/1-17    (   17) [001] d..2 24573.154645: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
45249         sugov:0-559   (  559) [001] d..2 24573.154658: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45250          <idle>-0     (-----) [001] d..1 24573.154670: cpu_idle: state=0 cpu_id=1
45251          <idle>-0     (-----) [001] ...1 24573.155815: cpu_idle: state=4294967295 cpu_id=1
45252          <idle>-0     (-----) [001] d..1 24573.155817: cpu_idle: state=0 cpu_id=1
45253           <...>-13208 (-----) [000] d.h1 24573.156573: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
45254           <...>-13208 (-----) [000] d.h2 24573.156591: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
45255          <idle>-0     (-----) [001] .n.1 24573.156595: cpu_idle: state=4294967295 cpu_id=1
45256          <idle>-0     (-----) [001] d..2 24573.156601: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
45257        DispSync-23904 (23896) [001] d..1 24573.156613: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
45258        DispSync-23904 (23896) [001] d..2 24573.156628: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
45259           <...>-13208 (-----) [000] d..2 24573.156637: sched_switch: prev_comm=id.nn.benchmark prev_pid=13208 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
45260        DispSync-23904 (23896) [001] d..2 24573.156645: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45261          <idle>-0     (-----) [001] d..1 24573.156652: cpu_idle: state=0 cpu_id=1
45262   sfEventThread-23906 (23896) [000] d..3 24573.156666: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
45263   sfEventThread-23906 (23896) [000] d..4 24573.156682: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
45264          <idle>-0     (-----) [001] .n.1 24573.156687: cpu_idle: state=4294967295 cpu_id=1
45265          <idle>-0     (-----) [001] d..2 24573.156692: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
45266   sfEventThread-23906 (23896) [000] d..2 24573.156695: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13208 next_prio=110
45267  surfaceflinger-23896 (23896) [001] d..1 24573.156930: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
45268  surfaceflinger-23896 (23896) [001] d..2 24573.156942: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
45269           <...>-13208 (-----) [000] d..2 24573.156950: sched_switch: prev_comm=id.nn.benchmark prev_pid=13208 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
45270   sfEventThread-23906 (23896) [000] d..2 24573.156964: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13208 next_prio=110
45271  surfaceflinger-23896 (23896) [001] ...1 24573.157067: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
45272  surfaceflinger-23896 (23896) [001] ...1 24573.157070: tracing_mark_write: E|23896
45273  surfaceflinger-23896 (23896) [001] .... 24573.157111: binder_transaction: transaction=1669824 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
45274  surfaceflinger-23896 (23896) [001] ...2 24573.157132: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
45275  surfaceflinger-23896 (23896) [001] d..4 24573.157138: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
45276  surfaceflinger-23896 (23896) [001] d..5 24573.157159: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
45277  surfaceflinger-23896 (23896) [001] d.h5 24573.157189: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
45278           <...>-13208 (-----) [000] d..2 24573.157190: sched_switch: prev_comm=id.nn.benchmark prev_pid=13208 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
45279  surfaceflinger-23896 (23896) [001] d.h5 24573.157196: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
45280 id.nn.benchmark-13156 (13131) [005] dnh1 24573.157199: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
45281 id.nn.benchmark-13156 (13131) [005] d..2 24573.157201: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
45282         sugov:4-560   (  560) [005] d..2 24573.157204: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
45283  surfaceflinger-23896 (23896) [001] d.h6 24573.157209: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
45284  HwBinder:598_3-633   (  598) [000] .... 24573.157215: binder_transaction_received: transaction=1669824
45285 id.nn.benchmark-13158 (13131) [002] d..2 24573.157219: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
45286  surfaceflinger-23896 (23896) [001] d..2 24573.157226: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45287         sugov:0-559   (  559) [002] d..2 24573.157228: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
45288          <idle>-0     (-----) [001] d..1 24573.157234: cpu_idle: state=0 cpu_id=1
45289  HwBinder:598_3-633   (  598) [000] ...1 24573.157252: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
45290  HwBinder:598_3-633   (  598) [000] ...1 24573.157330: tracing_mark_write: B|598|HWCSession::PresentDisplay::
45291  HwBinder:598_3-633   (  598) [000] ...1 24573.157441: tracing_mark_write: B|598|HWDeviceDRM::Commit::
45292  HwBinder:598_3-633   (  598) [000] ...1 24573.157449: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
45293           <...>-13157 (-----) [006] d.s2 24573.157554: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45294  HwBinder:598_3-633   (  598) [000] d.H1 24573.157582: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45295  HwBinder:598_3-633   (  598) [000] d.s1 24573.157585: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
45296          <idle>-0     (-----) [001] ...1 24573.157590: cpu_idle: state=4294967295 cpu_id=1
45297          <idle>-0     (-----) [001] d..1 24573.157593: cpu_idle: state=0 cpu_id=1
45298  HwBinder:598_3-633   (  598) [000] d.s2 24573.157604: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
45299          <idle>-0     (-----) [001] .n.1 24573.157608: cpu_idle: state=4294967295 cpu_id=1
45300          <idle>-0     (-----) [001] d..2 24573.157615: 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
45301     rcu_preempt-7     (    7) [001] d..2 24573.157631: 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
45302          <idle>-0     (-----) [001] d..1 24573.157636: cpu_idle: state=0 cpu_id=1
45303  HwBinder:598_3-633   (  598) [000] d..2 24573.157882: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
45304  HwBinder:598_3-633   (  598) [000] d..3 24573.157899: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
45305          <idle>-0     (-----) [001] .n.1 24573.157904: cpu_idle: state=4294967295 cpu_id=1
45306          <idle>-0     (-----) [001] d..2 24573.157909: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
45307  HwBinder:598_3-633   (  598) [000] ...1 24573.157957: tracing_mark_write: E|598
45308  HwBinder:598_3-633   (  598) [000] ...1 24573.157960: tracing_mark_write: E|598
45309  HwBinder:598_3-633   (  598) [000] ...1 24573.157997: tracing_mark_write: E|598
45310  HwBinder:598_3-633   (  598) [000] ...1 24573.158030: tracing_mark_write: E|598
45311  HwBinder:598_3-633   (  598) [000] .... 24573.158039: binder_transaction: transaction=1669825 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
45312  HwBinder:598_3-633   (  598) [000] d..2 24573.158050: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
45313  HwBinder:598_3-633   (  598) [000] d..3 24573.158065: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
45314  HwBinder:598_3-633   (  598) [000] .... 24573.158068: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
45315 id.nn.benchmark-13158 (13131) [002] d..2 24573.158073: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
45316  surfaceflinger-23896 (23896) [002] .... 24573.158079: binder_transaction_received: transaction=1669825
45317  HwBinder:598_3-633   (  598) [000] d..2 24573.158106: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
45318  kworker/u16:15-18488 (18488) [000] .... 24573.158197: clk_set_rate: l3_cluster0_vote_clk 1401600000
45319  kworker/u16:15-18488 (18488) [000] d..2 24573.158210: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13208 next_prio=110
45320  surfaceflinger-23896 (23896) [002] d..2 24573.158332: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
45321 crtc_commit:111-253   (  253) [001] d..2 24573.158526: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
45322          <idle>-0     (-----) [001] d..1 24573.158532: cpu_idle: state=0 cpu_id=1
45323 id.nn.benchmark-13160 (13131) [007] d..2 24573.158706: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
45324           <...>-13157 (-----) [006] d..3 24573.158717: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
45325           <...>-13157 (-----) [006] d..2 24573.158724: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
45326 id.nn.benchmark-13158 (13131) [002] dnh1 24573.158727: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
45327          <idle>-0     (-----) [006] d..1 24573.158730: cpu_idle: state=0 cpu_id=6
45328 id.nn.benchmark-13158 (13131) [002] d..2 24573.158733: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
45329          <idle>-0     (-----) [006] .n.1 24573.158757: cpu_idle: state=4294967295 cpu_id=6
45330           <...>-13208 (-----) [000] ...1 24573.158761: tracing_mark_write: E|13131
45331           <...>-13208 (-----) [000] ...1 24573.158765: tracing_mark_write: E|13131
45332          <idle>-0     (-----) [006] d..2 24573.158779: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
45333     migration/2-25    (   25) [002] d.h3 24573.158779: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
45334           <...>-13208 (-----) [000] ...1 24573.158782: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45335           <...>-13208 (-----) [000] ...1 24573.158786: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45336     migration/2-25    (   25) [002] d.h3 24573.158788: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
45337 id.nn.benchmark-13156 (13131) [005] dnh1 24573.158790: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
45338 id.nn.benchmark-13156 (13131) [005] d..2 24573.158793: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
45339         sugov:4-560   (  560) [005] d..2 24573.158796: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
45340     migration/2-25    (   25) [002] d.h4 24573.158800: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
45341          <idle>-0     (-----) [001] .n.1 24573.158805: cpu_idle: state=4294967295 cpu_id=1
45342          <idle>-0     (-----) [001] d..2 24573.158811: 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
45343     migration/2-25    (   25) [002] d..2 24573.158814: 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
45344         sugov:0-559   (  559) [001] d..2 24573.158822: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45345          <idle>-0     (-----) [002] d..1 24573.158825: cpu_idle: state=0 cpu_id=2
45346          <idle>-0     (-----) [001] d..1 24573.158827: cpu_idle: state=0 cpu_id=1
45347           <...>-13208 (-----) [000] ...1 24573.158863: tracing_mark_write: E|13131
45348           <...>-13208 (-----) [000] ...1 24573.158866: tracing_mark_write: E|13131
45349           <...>-13208 (-----) [000] ...1 24573.158878: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
45350           <...>-13208 (-----) [000] ...1 24573.158882: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
45351           <...>-13208 (-----) [000] ...1 24573.159180: tracing_mark_write: E|13131
45352           <...>-13208 (-----) [000] ...1 24573.159184: tracing_mark_write: E|13131
45353           <...>-13208 (-----) [000] ...1 24573.159193: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
45354           <...>-13208 (-----) [000] ...1 24573.159197: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
45355           <...>-13208 (-----) [000] ...1 24573.159245: tracing_mark_write: E|13131
45356           <...>-13208 (-----) [000] ...1 24573.159248: tracing_mark_write: E|13131
45357           <...>-13208 (-----) [000] ...1 24573.159256: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
45358           <...>-13208 (-----) [000] ...1 24573.159260: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
45359           <...>-13208 (-----) [000] ...1 24573.159276: tracing_mark_write: E|13131
45360           <...>-13208 (-----) [000] ...1 24573.159279: tracing_mark_write: E|13131
45361           <...>-13208 (-----) [000] ...1 24573.159289: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
45362           <...>-13208 (-----) [000] ...1 24573.159292: tracing_mark_write: E|13131
45363           <...>-13208 (-----) [000] ...1 24573.159301: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
45364           <...>-13208 (-----) [000] ...1 24573.159306: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
45365           <...>-13208 (-----) [000] ...1 24573.160159: tracing_mark_write: E|13131
45366           <...>-13208 (-----) [000] ...1 24573.160162: tracing_mark_write: E|13131
45367           <...>-13208 (-----) [000] ...1 24573.160170: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45368           <...>-13208 (-----) [000] ...1 24573.160174: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45369           <...>-13208 (-----) [000] d..1 24573.160191: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=006
45370 id.nn.benchmark-13158 (13131) [006] d.h1 24573.160205: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=006
45371           <...>-13208 (-----) [000] d..1 24573.160206: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=007
45372 id.nn.benchmark-13155 (13131) [007] d.h1 24573.160218: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=007
45373 id.nn.benchmark-13155 (13131) [007] d.s2 24573.160891: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45374           <...>-13208 (-----) [000] dnh1 24573.160904: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45375          <idle>-0     (-----) [001] ...1 24573.160906: cpu_idle: state=4294967295 cpu_id=1
45376          <idle>-0     (-----) [001] d..1 24573.160909: cpu_idle: state=0 cpu_id=1
45377           <...>-13208 (-----) [000] d..2 24573.160910: sched_switch: prev_comm=id.nn.benchmark prev_pid=13208 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
45378  kworker/u16:15-18488 (18488) [000] .... 24573.161082: clk_set_rate: l3_cluster1_vote_clk 1478400000
45379  kworker/u16:15-18488 (18488) [000] .... 24573.161086: clk_set_rate: l3_clk 1478400000
45380  kworker/u16:15-18488 (18488) [000] d..2 24573.161263: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13208 next_prio=110
45381 id.nn.benchmark-13159 (13131) [003] d.s2 24573.161297: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45382 id.nn.benchmark-13159 (13131) [003] d.s3 24573.161306: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
45383 id.nn.benchmark-13159 (13131) [003] d.s3 24573.161311: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45384           <...>-13208 (-----) [000] d..2 24573.161319: sched_switch: prev_comm=id.nn.benchmark prev_pid=13208 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
45385  kworker/u16:15-18488 (18488) [000] d..2 24573.161329: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13208 next_prio=110
45386 id.nn.benchmark-13158 (13131) [006] d..2 24573.164222: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
45387 id.nn.benchmark-13155 (13131) [007] d..2 24573.164223: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
45388          <idle>-0     (-----) [001] d.s2 24573.164228: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
45389          <idle>-0     (-----) [001] dns3 24573.164237: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
45390          <idle>-0     (-----) [001] .n.1 24573.164243: cpu_idle: state=4294967295 cpu_id=1
45391          <idle>-0     (-----) [001] d..2 24573.164249: 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
45392     rcu_preempt-7     (    7) [001] d..2 24573.164253: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=004
45393           <...>-13208 (-----) [000] ...1 24573.164254: tracing_mark_write: E|13131
45394           <...>-13208 (-----) [000] ...1 24573.164258: tracing_mark_write: E|13131
45395     rcu_preempt-7     (    7) [001] d..2 24573.164283: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
45396           <...>-13154 (-----) [004] dnh1 24573.164286: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=004
45397           <...>-13154 (-----) [004] d..2 24573.164289: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/4 next_pid=45 next_prio=120
45398     rcu_preempt-7     (    7) [001] d..3 24573.164297: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
45399     rcu_preempt-7     (    7) [001] d..2 24573.164307: 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
45400         rcuop/4-45    (   45) [004] d..2 24573.164310: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
45401         rcuop/2-29    (   29) [001] d..2 24573.164311: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
45402           <...>-13208 (-----) [000] d..2 24573.164315: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
45403         rcuop/2-29    (   29) [001] d..3 24573.164321: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
45404         rcuop/2-29    (   29) [001] d..2 24573.164328: 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
45405           <...>-13208 (-----) [000] d..3 24573.164329: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
45406           <...>-13208 (-----) [000] ...1 24573.164351: tracing_mark_write: E|13131
45407           <...>-13208 (-----) [000] d..1 24573.164358: sched_waking: comm=id.nn.benchmark pid=13207 prio=110 target_cpu=003
45408         rcuop/3-37    (   37) [001] d..2 24573.164371: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
45409           <...>-13208 (-----) [000] d..2 24573.164375: sched_wakeup: comm=id.nn.benchmark pid=13207 prio=110 target_cpu=002
45410          <idle>-0     (-----) [002] .n.1 24573.164380: cpu_idle: state=4294967295 cpu_id=2
45411           <...>-13208 (-----) [000] ...1 24573.164390: tracing_mark_write: E|13131
45412 id.nn.benchmark-13155 (13131) [001] d.h4 24573.164402: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
45413          <idle>-0     (-----) [002] d..2 24573.164403: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13207 next_prio=110
45414 id.nn.benchmark-13155 (13131) [001] d.h4 24573.164414: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
45415 id.nn.benchmark-13160 (13131) [007] dnh1 24573.164417: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
45416 id.nn.benchmark-13160 (13131) [007] d..2 24573.164420: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
45417         sugov:4-560   (  560) [007] d..2 24573.164424: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
45418 id.nn.benchmark-13155 (13131) [001] d.h5 24573.164426: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
45419           <...>-13207 (-----) [002] d..2 24573.164431: sched_switch: prev_comm=id.nn.benchmark prev_pid=13207 prev_prio=110 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
45420         sugov:0-559   (  559) [002] d..2 24573.164445: 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
45421          <idle>-0     (-----) [002] d..1 24573.164451: cpu_idle: state=0 cpu_id=2
45422           <...>-13208 (-----) [000] d.h4 24573.164556: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
45423           <...>-13208 (-----) [000] d.h5 24573.164573: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
45424           <...>-13208 (-----) [000] d.h4 24573.164576: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
45425          <idle>-0     (-----) [002] .n.1 24573.164578: cpu_idle: state=4294967295 cpu_id=2
45426          <idle>-0     (-----) [002] d..2 24573.164584: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
45427           <...>-13208 (-----) [000] dnh5 24573.164587: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
45428           <...>-13208 (-----) [000] d..2 24573.164598: sched_switch: prev_comm=id.nn.benchmark prev_pid=13208 prev_prio=110 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
45429  crtc_event:111-254   (  254) [002] d..2 24573.164604: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
45430          <idle>-0     (-----) [002] d..1 24573.164609: cpu_idle: state=0 cpu_id=2
45431 id.nn.benchmark-13156 (13131) [005] d..2 24573.164665: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
45432           <...>-13154 (-----) [004] d..3 24573.164688: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
45433           <...>-13154 (-----) [004] d..2 24573.164695: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
45434 id.nn.benchmark-13155 (13131) [001] dnh1 24573.164698: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
45435          <idle>-0     (-----) [004] d..1 24573.164698: cpu_idle: state=0 cpu_id=4
45436 id.nn.benchmark-13155 (13131) [001] d..2 24573.164703: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
45437 crtc_commit:111-253   (  253) [000] d..2 24573.164707: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=logd.writer next_pid=563 next_prio=130
45438          <idle>-0     (-----) [004] .n.1 24573.164723: cpu_idle: state=4294967295 cpu_id=4
45439          <idle>-0     (-----) [004] d..2 24573.164739: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
45440     migration/1-17    (   17) [001] d..2 24573.164747: 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
45441          <idle>-0     (-----) [001] d..1 24573.164754: cpu_idle: state=0 cpu_id=1
45442     logd.writer-563   (  555) [000] d..2 24573.164803: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13208 next_prio=110
45443           <...>-13208 (-----) [000] d..1 24573.164961: sched_waking: comm=id.nn.benchmark pid=13207 prio=110 target_cpu=002
45444           <...>-13208 (-----) [000] d..2 24573.164977: sched_wakeup: comm=id.nn.benchmark pid=13207 prio=110 target_cpu=001
45445          <idle>-0     (-----) [001] .n.1 24573.164981: cpu_idle: state=4294967295 cpu_id=1
45446          <idle>-0     (-----) [001] d..2 24573.164987: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13207 next_prio=110
45447           <...>-13208 (-----) [000] d..2 24573.165049: sched_switch: prev_comm=id.nn.benchmark prev_pid=13208 prev_prio=110 prev_state=x ==> next_comm=swapper/0 next_pid=0 next_prio=120
45448           <...>-13207 (-----) [001] d..2 24573.165052: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
45449           <...>-13207 (-----) [001] d..3 24573.165063: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
45450          <idle>-0     (-----) [000] d..1 24573.165068: cpu_idle: state=0 cpu_id=0
45451 id.nn.benchmark-13155 (13131) [004] d..3 24573.165090: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
45452 id.nn.benchmark-13155 (13131) [004] d..2 24573.165098: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
45453          <idle>-0     (-----) [004] d..1 24573.165100: cpu_idle: state=0 cpu_id=4
45454 id.nn.benchmark-13159 (13131) [003] dnh1 24573.165102: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
45455 id.nn.benchmark-13159 (13131) [003] d..2 24573.165107: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
45456           <...>-13207 (-----) [001] d..1 24573.165122: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
45457 id.nn.benchmark-13158 (13131) [005] d..2 24573.165123: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
45458          <idle>-0     (-----) [005] d..1 24573.165128: cpu_idle: state=0 cpu_id=5
45459          <idle>-0     (-----) [004] .n.1 24573.165130: cpu_idle: state=4294967295 cpu_id=4
45460          <idle>-0     (-----) [004] d..2 24573.165154: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
45461<...>-33 ( 33) [003] d.h3 24573.165155: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
45462<...>-33 ( 33) [003] d.h3 24573.165166: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
45463           <...>-13207 (-----) [001] d..2 24573.165167: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
45464          <idle>-0     (-----) [005] dnh2 24573.165171: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
45465          <idle>-0     (-----) [000] .n.1 24573.165173: cpu_idle: state=4294967295 cpu_id=0
45466          <idle>-0     (-----) [005] .n.1 24573.165174: cpu_idle: state=4294967295 cpu_id=5
45467<...>-33 ( 33) [003] d.h4 24573.165175: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
45468          <idle>-0     (-----) [005] d..2 24573.165176: 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
45469          <idle>-0     (-----) [002] .n.1 24573.165180: cpu_idle: state=4294967295 cpu_id=2
45470          <idle>-0     (-----) [002] d..2 24573.165199: 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
45471          <idle>-0     (-----) [000] d..2 24573.165201: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
45472         sugov:4-560   (  560) [005] d..2 24573.165201: 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
45473          <idle>-0     (-----) [005] d..1 24573.165203: cpu_idle: state=0 cpu_id=5
45474         sugov:0-559   (  559) [002] d..2 24573.165211: 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
45475          <idle>-0     (-----) [002] d..1 24573.165216: cpu_idle: state=0 cpu_id=2
45476<...>-33 ( 33) [003] d..2 24573.165217: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
45477           <...>-13131 (-----) [000] d..2 24573.165220: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45478          <idle>-0     (-----) [000] d..1 24573.165224: cpu_idle: state=0 cpu_id=0
45479           <...>-13207 (-----) [001] d..1 24573.165264: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
45480           <...>-13207 (-----) [001] d..2 24573.165274: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
45481     logd.writer-563   (  555) [003] d..2 24573.165275: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
45482          <idle>-0     (-----) [000] .n.1 24573.165279: cpu_idle: state=4294967295 cpu_id=0
45483          <idle>-0     (-----) [000] d..2 24573.165284: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
45484          <idle>-0     (-----) [003] d..1 24573.165286: cpu_idle: state=0 cpu_id=3
45485           <...>-13131 (-----) [000] ...1 24573.165304: tracing_mark_write: E|13131
45486           <...>-13131 (-----) [000] ...1 24573.165310: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
45487           <...>-13131 (-----) [000] ...1 24573.165316: tracing_mark_write: E|13131
45488           <...>-13207 (-----) [001] d..2 24573.165318: sched_switch: prev_comm=id.nn.benchmark prev_pid=13207 prev_prio=110 prev_state=x ==> next_comm=swapper/1 next_pid=0 next_prio=120
45489           <...>-13131 (-----) [000] ...1 24573.165320: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
45490           <...>-13131 (-----) [000] ...1 24573.165324: tracing_mark_write: E|13131
45491          <idle>-0     (-----) [001] d..1 24573.165328: cpu_idle: state=0 cpu_id=1
45492          <idle>-0     (-----) [005] ...1 24573.165393: cpu_idle: state=4294967295 cpu_id=5
45493          <idle>-0     (-----) [005] d..1 24573.165395: cpu_idle: state=0 cpu_id=5
45494           <...>-13131 (-----) [000] ...1 24573.165641: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
45495           <...>-13131 (-----) [000] d..2 24573.165668: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
45496           <...>-13131 (-----) [000] d..3 24573.165680: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
45497           <...>-13131 (-----) [000] ...1 24573.165697: tracing_mark_write: E|13131
45498           <...>-13131 (-----) [000] ...1 24573.165701: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
45499           <...>-13131 (-----) [000] ...1 24573.165707: tracing_mark_write: E|13131
45500           <...>-13131 (-----) [000] ...1 24573.165712: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
45501           <...>-13131 (-----) [000] ...1 24573.165717: tracing_mark_write: E|13131
45502           <...>-13131 (-----) [000] ...1 24573.165723: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
45503          <idle>-0     (-----) [001] .n.1 24573.165851: cpu_idle: state=4294967295 cpu_id=1
45504           <...>-13131 (-----) [000] ...1 24573.165855: tracing_mark_write: E|13131
45505          <idle>-0     (-----) [001] d..2 24573.165858: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13209 next_prio=110
45506           <...>-13131 (-----) [000] ...1 24573.165859: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
45507           <...>-13131 (-----) [000] d..2 24573.165868: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
45508           <...>-13209 (-----) [001] d..2 24573.165912: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
45509     logd.writer-563   (  555) [000] d..2 24573.165918: 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
45510          <idle>-0     (-----) [000] d..1 24573.165927: cpu_idle: state=0 cpu_id=0
45511           <...>-13209 (-----) [001] d..3 24573.165931: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
45512          <idle>-0     (-----) [000] .n.1 24573.166212: cpu_idle: state=4294967295 cpu_id=0
45513          <idle>-0     (-----) [000] d..2 24573.166217: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13210 next_prio=110
45514           <...>-13209 (-----) [001] d..2 24573.166235: sched_switch: prev_comm=id.nn.benchmark prev_pid=13209 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
45515           <...>-13210 (-----) [000] ...1 24573.166245: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
45516           <...>-13210 (-----) [000] ...1 24573.166249: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
45517           <...>-13210 (-----) [000] ...1 24573.166365: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45518           <...>-13210 (-----) [000] ...1 24573.166370: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45519     logd.writer-563   (  555) [001] d..2 24573.166505: 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
45520          <idle>-0     (-----) [001] d..1 24573.166513: cpu_idle: state=0 cpu_id=1
45521           <...>-13210 (-----) [000] d.h4 24573.166904: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
45522           <...>-13210 (-----) [000] d.h5 24573.166921: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
45523          <idle>-0     (-----) [003] .n.1 24573.166927: cpu_idle: state=4294967295 cpu_id=3
45524          <idle>-0     (-----) [003] d..2 24573.166933: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
45525 crtc_commit:111-253   (  253) [003] d..2 24573.166982: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
45526          <idle>-0     (-----) [003] d..1 24573.166990: cpu_idle: state=0 cpu_id=3
45527           <...>-13210 (-----) [000] d.h4 24573.167188: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
45528           <...>-13210 (-----) [000] d.h5 24573.167197: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
45529          <idle>-0     (-----) [002] .n.1 24573.167202: cpu_idle: state=4294967295 cpu_id=2
45530          <idle>-0     (-----) [002] d..2 24573.167207: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
45531  crtc_event:111-254   (  254) [002] d..2 24573.167219: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
45532          <idle>-0     (-----) [002] d..1 24573.167223: cpu_idle: state=0 cpu_id=2
45533 id.nn.benchmark-13159 (13131) [004] d..2 24573.167526: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
45534          <idle>-0     (-----) [004] d..1 24573.167529: cpu_idle: state=0 cpu_id=4
45535 id.nn.benchmark-13160 (13131) [007] d.s2 24573.167551: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45536           <...>-13210 (-----) [000] d.s2 24573.167560: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
45537           <...>-13210 (-----) [000] d.s3 24573.167570: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
45538          <idle>-0     (-----) [002] .n.1 24573.167574: cpu_idle: state=4294967295 cpu_id=2
45539           <...>-13210 (-----) [000] dnH2 24573.167576: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45540          <idle>-0     (-----) [002] d..2 24573.167580: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
45541           <...>-13210 (-----) [000] d..2 24573.167585: sched_switch: prev_comm=id.nn.benchmark prev_pid=13210 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
45542  crtc_event:111-254   (  254) [002] d..2 24573.167597: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
45543          <idle>-0     (-----) [002] d..1 24573.167615: cpu_idle: state=0 cpu_id=2
45544          <idle>-0     (-----) [002] ...1 24573.167624: cpu_idle: state=4294967295 cpu_id=2
45545          <idle>-0     (-----) [002] d..1 24573.167627: cpu_idle: state=0 cpu_id=2
45546  kworker/u16:15-18488 (18488) [000] .... 24573.167629: clk_set_rate: l3_cluster0_vote_clk 1305600000
45547  kworker/u16:15-18488 (18488) [000] d..2 24573.167638: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13210 next_prio=110
45548          <idle>-0     (-----) [004] ...1 24573.167719: cpu_idle: state=4294967295 cpu_id=4
45549          <idle>-0     (-----) [004] d..1 24573.167720: cpu_idle: state=0 cpu_id=4
45550           <...>-13210 (-----) [000] d..1 24573.168305: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
45551           <...>-13210 (-----) [000] d..1 24573.168317: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=004
45552          <idle>-0     (-----) [004] dnh2 24573.168322: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
45553          <idle>-0     (-----) [004] .n.1 24573.168328: cpu_idle: state=4294967295 cpu_id=4
45554          <idle>-0     (-----) [004] d..2 24573.168331: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
45555           <...>-13210 (-----) [000] d..1 24573.168331: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=005
45556          <idle>-0     (-----) [005] dnh2 24573.168336: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
45557          <idle>-0     (-----) [005] .n.1 24573.168337: cpu_idle: state=4294967295 cpu_id=5
45558          <idle>-0     (-----) [005] dn.2 24573.168339: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=005
45559           <...>-13210 (-----) [000] d..1 24573.168341: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
45560          <idle>-0     (-----) [005] d..2 24573.168345: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
45561           <...>-13210 (-----) [000] d..1 24573.168349: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=004
45562 id.nn.benchmark-13156 (13131) [005] d.h1 24573.168351: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
45563           <...>-13154 (-----) [004] d.h1 24573.168360: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=004
45564          <idle>-0     (-----) [002] ...1 24573.168895: cpu_idle: state=4294967295 cpu_id=2
45565          <idle>-0     (-----) [002] d..1 24573.168897: cpu_idle: state=0 cpu_id=2
45566          <idle>-0     (-----) [001] d.h2 24573.169045: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
45567          <idle>-0     (-----) [001] dnh3 24573.169054: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
45568          <idle>-0     (-----) [001] .n.1 24573.169059: cpu_idle: state=4294967295 cpu_id=1
45569          <idle>-0     (-----) [001] d..2 24573.169065: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
45570        DispSync-23904 (23896) [001] d..1 24573.169084: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
45571        DispSync-23904 (23896) [001] d..2 24573.169100: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
45572          <idle>-0     (-----) [003] .n.1 24573.169105: cpu_idle: state=4294967295 cpu_id=3
45573          <idle>-0     (-----) [003] d..2 24573.169111: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
45574        DispSync-23904 (23896) [001] d..2 24573.169134: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
45575  appEventThread-23905 (23896) [003] d..3 24573.169150: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
45576 id.nn.benchmark-13158 (13131) [001] d.h4 24573.169165: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
45577 id.nn.benchmark-13158 (13131) [001] d.h4 24573.169179: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
45578 id.nn.benchmark-13160 (13131) [007] dnh1 24573.169180: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
45579  appEventThread-23905 (23896) [003] d..4 24573.169183: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
45580 id.nn.benchmark-13160 (13131) [007] d..2 24573.169183: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
45581         sugov:4-560   (  560) [007] d..2 24573.169187: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
45582          <idle>-0     (-----) [002] .n.1 24573.169187: cpu_idle: state=4294967295 cpu_id=2
45583 id.nn.benchmark-13158 (13131) [001] d.h5 24573.169190: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
45584          <idle>-0     (-----) [002] d..2 24573.169214: 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
45585         sugov:0-559   (  559) [002] d..2 24573.169221: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
45586  appEventThread-23905 (23896) [003] d..2 24573.169245: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
45587<...>-24151 ( 24151) [002] .... 24573.169462: binder_transaction: transaction=1669826 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
45588<...>-24151 ( 24151) [002] d..4 24573.169470: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
45589           <...>-13154 (-----) [004] dnh1 24573.169496: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
45590           <...>-13154 (-----) [004] d..2 24573.169500: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
45591<...>-23903 ( 23896) [004] .... 24573.169503: binder_transaction_received: transaction=1669826
45592<...>-23903 ( 23896) [004] d..1 24573.169515: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
45593<...>-24151 ( 24151) [002] d..3 24573.169522: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
45594<...>-23903 ( 23896) [004] d..2 24573.169533: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
45595 id.nn.benchmark-13160 (13131) [007] dnh1 24573.169536: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
45596<...>-24151 ( 24151) [002] dnh2 24573.169539: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
45597 id.nn.benchmark-13160 (13131) [007] d..2 24573.169539: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
45598<...>-24151 ( 24151) [002] d..2 24573.169546: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
45599    RenderThread-24437 (24151) [007] d..2 24573.169553: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
45600  appEventThread-23905 (23896) [002] d..2 24573.169572: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
45601<...>-24151 ( 24151) [002] d..3 24573.169659: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
45602 id.nn.benchmark-13160 (13131) [007] dnh1 24573.169674: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
45603 id.nn.benchmark-13160 (13131) [007] d..2 24573.169676: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
45604<...>-24151 ( 24151) [002] d..2 24573.169700: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
45605    RenderThread-24437 (24151) [007] d..1 24573.169719: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
45606 id.nn.benchmark-13155 (13131) [002] d.h4 24573.169731: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
45607    RenderThread-24437 (24151) [007] d..2 24573.169739: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
45608 id.nn.benchmark-13155 (13131) [002] d.h4 24573.169757: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
45609 id.nn.benchmark-13156 (13131) [005] dnh1 24573.169758: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
45610 id.nn.benchmark-13156 (13131) [005] d..2 24573.169761: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
45611         sugov:4-560   (  560) [005] d..2 24573.169764: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
45612 id.nn.benchmark-13155 (13131) [002] d.h5 24573.169770: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
45613           <...>-13210 (-----) [000] d..2 24573.169780: sched_switch: prev_comm=id.nn.benchmark prev_pid=13210 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
45614    RenderThread-24437 (24151) [007] .... 24573.169782: binder_transaction: transaction=1669827 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
45615    RenderThread-24437 (24151) [007] d..4 24573.169785: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
45616         sugov:0-559   (  559) [000] d..2 24573.169789: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13210 next_prio=110
45617    RenderThread-24437 (24151) [007] d..5 24573.169799: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
45618    RenderThread-24437 (24151) [007] d..2 24573.169803: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
45619 id.nn.benchmark-13156 (13131) [005] d..2 24573.169805: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
45620<...>-23903 ( 23896) [005] .... 24573.169808: binder_transaction_received: transaction=1669827
45621<...>-24151 ( 24151) [007] d..2 24573.169829: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
45622<...>-23903 ( 23896) [005] .... 24573.169837: binder_transaction: transaction=1669828 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
45623<...>-23903 ( 23896) [005] d..2 24573.169841: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
45624<...>-23903 ( 23896) [005] d..3 24573.169848: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
45625 id.nn.benchmark-13160 (13131) [007] d..2 24573.169855: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
45626    RenderThread-24437 (24151) [007] .... 24573.169857: binder_transaction_received: transaction=1669828
45627<...>-23903 ( 23896) [005] d..2 24573.169859: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
45628           <...>-13210 (-----) [000] ...1 24573.170098: tracing_mark_write: E|13131
45629           <...>-13210 (-----) [000] ...1 24573.170102: tracing_mark_write: E|13131
45630           <...>-13210 (-----) [000] ...1 24573.170115: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45631           <...>-13210 (-----) [000] ...1 24573.170119: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45632    RenderThread-24437 (24151) [007] d..2 24573.170423: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
45633 id.nn.benchmark-13160 (13131) [007] d.h1 24573.170522: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
45634 id.nn.benchmark-13160 (13131) [007] d.h2 24573.170527: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
45635 id.nn.benchmark-13160 (13131) [007] dnh2 24573.170528: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
45636 id.nn.benchmark-13160 (13131) [007] d..2 24573.170532: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
45637    RenderThread-24437 (24151) [007] .... 24573.170610: binder_transaction: transaction=1669829 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
45638    RenderThread-24437 (24151) [007] d..4 24573.170614: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
45639    RenderThread-24437 (24151) [007] d..5 24573.170623: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
45640    RenderThread-24437 (24151) [007] d..2 24573.170627: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
45641 id.nn.benchmark-13156 (13131) [005] d..2 24573.170629: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
45642<...>-23903 ( 23896) [005] .... 24573.170631: binder_transaction_received: transaction=1669829
45643           <...>-13210 (-----) [000] d.h2 24573.170650: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
45644           <...>-13210 (-----) [000] dnh3 24573.170661: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
45645           <...>-13210 (-----) [000] d..2 24573.170673: sched_switch: prev_comm=id.nn.benchmark prev_pid=13210 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
45646<...>-23903 ( 23896) [005] .... 24573.170683: binder_transaction: transaction=1669830 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
45647<...>-23903 ( 23896) [005] d..2 24573.170684: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
45648<...>-23903 ( 23896) [005] d..3 24573.170693: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
45649 id.nn.benchmark-13160 (13131) [007] d..2 24573.170699: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
45650    RenderThread-24437 (24151) [007] .... 24573.170701: binder_transaction_received: transaction=1669830
45651<...>-23903 ( 23896) [005] d..2 24573.170701: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
45652 kgsl_worker_thr-246   (  246) [000] d..2 24573.170706: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45653 kgsl_worker_thr-246   (  246) [000] d..3 24573.170715: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45654    RenderThread-24437 (24151) [007] d..2 24573.170723: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
45655 kgsl_worker_thr-246   (  246) [000] d..2 24573.170727: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
45656 id.nn.benchmark-13160 (13131) [007] d.s2 24573.170894: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=006
45657 id.nn.benchmark-13158 (13131) [001] d.s1 24573.170905: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
45658 id.nn.benchmark-13158 (13131) [001] d.s2 24573.170920: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
45659  kworker/u16:15-18488 (18488) [000] d.h2 24573.170925: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
45660 id.nn.benchmark-13160 (13131) [007] d.H3 24573.170944: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
45661 id.nn.benchmark-13160 (13131) [007] dnH4 24573.170950: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
45662 id.nn.benchmark-13160 (13131) [007] dnH3 24573.170951: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
45663 id.nn.benchmark-13160 (13131) [007] d..2 24573.170959: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
45664  kworker/u16:15-18488 (18488) [000] dnh3 24573.170961: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
45665         sugov:4-560   (  560) [007] d..2 24573.170964: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
45666  kworker/u16:15-18488 (18488) [000] d..2 24573.170966: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
45667         sugov:0-559   (  559) [000] d..2 24573.170974: 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
45668     rcu_preempt-7     (    7) [000] d..2 24573.170986: 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
45669  kworker/u16:10-23868 (23868) [000] d..2 24573.170994: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
45670  kworker/u16:15-18488 (18488) [000] d..2 24573.171240: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13210 next_prio=110
45671           <...>-13210 (-----) [000] ...1 24573.171433: tracing_mark_write: E|13131
45672           <...>-13210 (-----) [000] ...1 24573.171437: tracing_mark_write: E|13131
45673           <...>-13210 (-----) [000] ...1 24573.171459: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45674           <...>-13210 (-----) [000] ...1 24573.171463: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45675           <...>-13210 (-----) [000] ...1 24573.171796: tracing_mark_write: E|13131
45676           <...>-13210 (-----) [000] ...1 24573.171799: tracing_mark_write: E|13131
45677           <...>-13210 (-----) [000] ...1 24573.171810: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45678           <...>-13210 (-----) [000] ...1 24573.171814: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45679           <...>-13210 (-----) [000] ...1 24573.172051: tracing_mark_write: E|13131
45680           <...>-13210 (-----) [000] ...1 24573.172055: tracing_mark_write: E|13131
45681           <...>-13210 (-----) [000] ...1 24573.172065: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45682           <...>-13210 (-----) [000] ...1 24573.172070: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45683           <...>-13210 (-----) [000] ...1 24573.172473: tracing_mark_write: E|13131
45684           <...>-13210 (-----) [000] ...1 24573.172476: tracing_mark_write: E|13131
45685           <...>-13210 (-----) [000] ...1 24573.172487: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45686           <...>-13210 (-----) [000] ...1 24573.172491: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45687           <...>-13210 (-----) [000] ...1 24573.172885: tracing_mark_write: E|13131
45688           <...>-13210 (-----) [000] ...1 24573.172889: tracing_mark_write: E|13131
45689           <...>-13210 (-----) [000] ...1 24573.172906: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45690           <...>-13210 (-----) [000] ...1 24573.172910: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45691 id.nn.benchmark-13158 (13131) [001] d.h1 24573.173048: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
45692 id.nn.benchmark-13158 (13131) [001] d.h2 24573.173063: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
45693           <...>-13210 (-----) [000] d..2 24573.173074: sched_switch: prev_comm=id.nn.benchmark prev_pid=13210 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
45694        DispSync-23904 (23896) [000] d..1 24573.173090: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
45695        DispSync-23904 (23896) [000] d..2 24573.173107: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
45696 id.nn.benchmark-13158 (13131) [001] d..2 24573.173115: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
45697        DispSync-23904 (23896) [000] d..2 24573.173121: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13210 next_prio=110
45698   sfEventThread-23906 (23896) [001] d..3 24573.173145: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
45699   sfEventThread-23906 (23896) [001] d..4 24573.173161: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
45700           <...>-13210 (-----) [000] d..2 24573.173167: sched_switch: prev_comm=id.nn.benchmark prev_pid=13210 prev_prio=110 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
45701   sfEventThread-23906 (23896) [001] d..2 24573.173181: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
45702  surfaceflinger-23896 (23896) [000] d..1 24573.173412: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
45703  surfaceflinger-23896 (23896) [000] d..2 24573.173424: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
45704 id.nn.benchmark-13158 (13131) [001] d..2 24573.173431: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
45705   sfEventThread-23906 (23896) [001] d..2 24573.173446: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
45706  surfaceflinger-23896 (23896) [000] ...1 24573.173547: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
45707  surfaceflinger-23896 (23896) [000] ...1 24573.173551: tracing_mark_write: E|23896
45708  surfaceflinger-23896 (23896) [000] .... 24573.173592: binder_transaction: transaction=1669831 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
45709  surfaceflinger-23896 (23896) [000] ...2 24573.173612: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
45710  surfaceflinger-23896 (23896) [000] d..4 24573.173619: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
45711 id.nn.benchmark-13160 (13131) [007] dnh1 24573.173641: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
45712 id.nn.benchmark-13160 (13131) [007] d..2 24573.173667: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
45713  surfaceflinger-23896 (23896) [000] d.h5 24573.173668: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
45714  surfaceflinger-23896 (23896) [000] d.h5 24573.173679: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
45715 id.nn.benchmark-13156 (13131) [005] dnh1 24573.173683: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
45716 id.nn.benchmark-13156 (13131) [005] d..2 24573.173686: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
45717  surfaceflinger-23896 (23896) [000] d.h6 24573.173691: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
45718         sugov:4-560   (  560) [005] d..2 24573.173691: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
45719  HwBinder:598_3-633   (  598) [007] .... 24573.173696: binder_transaction_received: transaction=1669831
45720 id.nn.benchmark-13158 (13131) [001] d..2 24573.173698: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
45721  surfaceflinger-23896 (23896) [000] d..2 24573.173703: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13210 next_prio=110
45722         sugov:0-559   (  559) [001] d..2 24573.173705: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
45723           <...>-13210 (-----) [000] ...1 24573.173708: tracing_mark_write: E|13131
45724           <...>-13210 (-----) [000] ...1 24573.173716: tracing_mark_write: E|13131
45725  HwBinder:598_3-633   (  598) [007] ...1 24573.173721: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
45726           <...>-13210 (-----) [000] ...1 24573.173732: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45727           <...>-13210 (-----) [000] ...1 24573.173736: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45728  HwBinder:598_3-633   (  598) [007] ...1 24573.173769: tracing_mark_write: B|598|HWCSession::PresentDisplay::
45729           <...>-13210 (-----) [000] ...1 24573.173809: tracing_mark_write: E|13131
45730           <...>-13210 (-----) [000] ...1 24573.173813: tracing_mark_write: E|13131
45731           <...>-13210 (-----) [000] ...1 24573.173823: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
45732           <...>-13210 (-----) [000] ...1 24573.173827: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
45733  HwBinder:598_3-633   (  598) [007] ...1 24573.173832: tracing_mark_write: B|598|HWDeviceDRM::Commit::
45734  HwBinder:598_3-633   (  598) [007] ...1 24573.173836: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
45735  HwBinder:598_3-633   (  598) [007] d..2 24573.174021: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
45736           <...>-13210 (-----) [000] dnh1 24573.174038: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
45737           <...>-13210 (-----) [000] d..2 24573.174045: sched_switch: prev_comm=id.nn.benchmark prev_pid=13210 prev_prio=110 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
45738  HwBinder:598_3-633   (  598) [007] ...1 24573.174059: tracing_mark_write: E|598
45739  HwBinder:598_3-633   (  598) [007] ...1 24573.174060: tracing_mark_write: E|598
45740  HwBinder:598_3-633   (  598) [007] ...1 24573.174082: tracing_mark_write: E|598
45741  HwBinder:598_3-633   (  598) [007] ...1 24573.174102: tracing_mark_write: E|598
45742  HwBinder:598_3-633   (  598) [007] .... 24573.174107: binder_transaction: transaction=1669832 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
45743  HwBinder:598_3-633   (  598) [007] d..2 24573.174112: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
45744  HwBinder:598_3-633   (  598) [007] .... 24573.174121: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
45745 id.nn.benchmark-13158 (13131) [001] dnh1 24573.174125: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
45746 id.nn.benchmark-13158 (13131) [001] d..2 24573.174130: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
45747  surfaceflinger-23896 (23896) [001] .... 24573.174134: binder_transaction_received: transaction=1669832
45748  HwBinder:598_3-633   (  598) [007] d..2 24573.174143: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
45749 id.nn.benchmark-13160 (13131) [007] d.s2 24573.174225: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45750 id.nn.benchmark-13159 (13131) [003] d.s2 24573.174234: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
45751 crtc_commit:111-253   (  253) [000] d.h1 24573.174241: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45752 id.nn.benchmark-13159 (13131) [003] d.s3 24573.174246: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
45753  surfaceflinger-23896 (23896) [001] d..2 24573.174403: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
45754 crtc_commit:111-253   (  253) [000] d..2 24573.174681: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
45755     rcu_preempt-7     (    7) [000] d..2 24573.174687: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
45756     rcu_preempt-7     (    7) [000] d..3 24573.174700: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
45757     rcu_preempt-7     (    7) [000] d..2 24573.174711: 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
45758         rcuop/0-10    (   10) [000] d..2 24573.174723: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
45759  kworker/u16:15-18488 (18488) [000] d..2 24573.174870: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13210 next_prio=110
45760 id.nn.benchmark-13159 (13131) [003] d.s2 24573.174899: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45761 id.nn.benchmark-13159 (13131) [003] d.s3 24573.174907: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
45762 id.nn.benchmark-13159 (13131) [003] d.s3 24573.174913: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45763           <...>-13210 (-----) [000] d..2 24573.174918: sched_switch: prev_comm=id.nn.benchmark prev_pid=13210 prev_prio=110 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
45764  kworker/u16:15-18488 (18488) [000] d..2 24573.174933: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13210 next_prio=110
45765           <...>-13210 (-----) [000] ...1 24573.174979: tracing_mark_write: E|13131
45766           <...>-13210 (-----) [000] ...1 24573.174984: tracing_mark_write: E|13131
45767           <...>-13210 (-----) [000] ...1 24573.174995: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
45768           <...>-13210 (-----) [000] ...1 24573.174999: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
45769           <...>-13210 (-----) [000] ...1 24573.175051: tracing_mark_write: E|13131
45770           <...>-13210 (-----) [000] ...1 24573.175054: tracing_mark_write: E|13131
45771           <...>-13210 (-----) [000] ...1 24573.175062: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
45772           <...>-13210 (-----) [000] ...1 24573.175066: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
45773           <...>-13210 (-----) [000] ...1 24573.175084: tracing_mark_write: E|13131
45774           <...>-13210 (-----) [000] ...1 24573.175087: tracing_mark_write: E|13131
45775           <...>-13210 (-----) [000] ...1 24573.175097: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
45776           <...>-13210 (-----) [000] ...1 24573.175100: tracing_mark_write: E|13131
45777           <...>-13210 (-----) [000] ...1 24573.175110: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
45778           <...>-13210 (-----) [000] ...1 24573.175114: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
45779           <...>-13210 (-----) [000] ...1 24573.175966: tracing_mark_write: E|13131
45780           <...>-13210 (-----) [000] ...1 24573.175969: tracing_mark_write: E|13131
45781           <...>-13210 (-----) [000] ...1 24573.175978: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45782           <...>-13210 (-----) [000] ...1 24573.175982: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45783           <...>-13210 (-----) [000] ...1 24573.176066: tracing_mark_write: E|13131
45784           <...>-13210 (-----) [000] ...1 24573.176069: tracing_mark_write: E|13131
45785           <...>-13210 (-----) [000] d..2 24573.176122: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
45786           <...>-13210 (-----) [000] d..3 24573.176137: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
45787           <...>-13210 (-----) [000] ...1 24573.176159: tracing_mark_write: E|13131
45788           <...>-13210 (-----) [000] d..1 24573.176164: sched_waking: comm=id.nn.benchmark pid=13209 prio=110 target_cpu=001
45789 id.nn.benchmark-13160 (13131) [007] dnh1 24573.176188: sched_wakeup: comm=id.nn.benchmark pid=13209 prio=110 target_cpu=007
45790 id.nn.benchmark-13160 (13131) [007] d..2 24573.176214: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13209 next_prio=110
45791           <...>-13210 (-----) [000] d.h3 24573.176215: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
45792           <...>-13210 (-----) [000] d.h3 24573.176222: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
45793           <...>-13209 (-----) [007] d..2 24573.176224: sched_switch: prev_comm=id.nn.benchmark prev_pid=13209 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
45794 id.nn.benchmark-13156 (13131) [005] dnh1 24573.176226: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
45795 id.nn.benchmark-13156 (13131) [005] d..2 24573.176228: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
45796         sugov:4-560   (  560) [005] d..2 24573.176231: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
45797           <...>-13210 (-----) [000] dnh4 24573.176232: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
45798           <...>-13210 (-----) [000] d..2 24573.176238: sched_switch: prev_comm=id.nn.benchmark prev_pid=13210 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
45799         sugov:0-559   (  559) [000] d..2 24573.176245: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
45800     logd.writer-563   (  555) [000] d..2 24573.176307: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13210 next_prio=110
45801           <...>-13210 (-----) [000] ...1 24573.176325: tracing_mark_write: E|13131
45802           <...>-13210 (-----) [000] d..1 24573.176548: sched_waking: comm=id.nn.benchmark pid=13209 prio=110 target_cpu=007
45803 id.nn.benchmark-13160 (13131) [007] dnh1 24573.176562: sched_wakeup: comm=id.nn.benchmark pid=13209 prio=110 target_cpu=007
45804 id.nn.benchmark-13160 (13131) [007] d..2 24573.176564: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13209 next_prio=110
45805           <...>-13209 (-----) [007] d..2 24573.176604: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
45806           <...>-13210 (-----) [000] d..2 24573.176627: sched_switch: prev_comm=id.nn.benchmark prev_pid=13210 prev_prio=110 prev_state=x ==> next_comm=swapper/0 next_pid=0 next_prio=120
45807          <idle>-0     (-----) [000] dnh3 24573.176636: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
45808           <...>-13209 (-----) [007] d..1 24573.176641: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
45809          <idle>-0     (-----) [000] d..2 24573.176649: 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
45810     logd.writer-563   (  555) [000] dnh1 24573.176660: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
45811     logd.writer-563   (  555) [000] d..2 24573.176665: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
45812           <...>-13131 (-----) [000] d..2 24573.176680: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
45813           <...>-13209 (-----) [007] d..1 24573.176684: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
45814     logd.writer-563   (  555) [000] dnh1 24573.176699: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
45815           <...>-13209 (-----) [007] d..2 24573.176704: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
45816     logd.writer-563   (  555) [000] d..2 24573.176705: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
45817           <...>-13209 (-----) [007] d..3 24573.176716: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
45818           <...>-13157 (-----) [006] d..2 24573.176723: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
45819           <...>-13131 (-----) [000] ...1 24573.176726: tracing_mark_write: E|13131
45820           <...>-13209 (-----) [007] d..2 24573.176727: sched_switch: prev_comm=id.nn.benchmark prev_pid=13209 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
45821         rcuop/6-61    (   61) [006] d..2 24573.176728: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
45822           <...>-13131 (-----) [000] ...1 24573.176732: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
45823           <...>-13131 (-----) [000] ...1 24573.176737: tracing_mark_write: E|13131
45824           <...>-13131 (-----) [000] ...1 24573.176740: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
45825           <...>-13131 (-----) [000] ...1 24573.176745: tracing_mark_write: E|13131
45826           <...>-13131 (-----) [000] ...1 24573.177056: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
45827           <...>-13131 (-----) [000] ...1 24573.177095: tracing_mark_write: E|13131
45828           <...>-13131 (-----) [000] ...1 24573.177100: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
45829           <...>-13131 (-----) [000] ...1 24573.177105: tracing_mark_write: E|13131
45830           <...>-13131 (-----) [000] ...1 24573.177109: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
45831           <...>-13131 (-----) [000] ...1 24573.177113: tracing_mark_write: E|13131
45832           <...>-13131 (-----) [000] ...1 24573.177117: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
45833           <...>-13131 (-----) [000] ...1 24573.177244: tracing_mark_write: E|13131
45834           <...>-13131 (-----) [000] ...1 24573.177248: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
45835           <...>-13131 (-----) [000] d..2 24573.177257: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
45836     logd.writer-563   (  555) [000] d..2 24573.177318: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13211 next_prio=110
45837           <...>-13211 (-----) [000] d..2 24573.177369: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
45838           <...>-13211 (-----) [000] d..3 24573.177377: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
45839 id.nn.benchmark-13160 (13131) [007] d.s2 24573.177558: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45840           <...>-13154 (-----) [004] d.H2 24573.177585: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
45841           <...>-13211 (-----) [000] dnh1 24573.177588: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45842           <...>-13154 (-----) [004] d.H3 24573.177591: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
45843           <...>-13154 (-----) [004] d.H2 24573.177592: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
45844           <...>-13211 (-----) [000] d..2 24573.177594: sched_switch: prev_comm=id.nn.benchmark prev_pid=13211 prev_prio=110 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
45845 id.nn.benchmark-13156 (13131) [005] d..2 24573.177598: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
45846         sugov:4-560   (  560) [005] d..2 24573.177601: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
45847  kworker/u16:15-18488 (18488) [000] dnh1 24573.177606: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
45848  kworker/u16:15-18488 (18488) [000] d..2 24573.177611: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
45849         sugov:0-559   (  559) [000] d..2 24573.177618: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
45850  kworker/u16:15-18488 (18488) [000] .... 24573.177704: clk_set_rate: l3_cluster0_vote_clk 1401600000
45851  kworker/u16:15-18488 (18488) [000] d..2 24573.177717: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13211 next_prio=110
45852           <...>-13211 (-----) [000] d..2 24573.177842: sched_switch: prev_comm=id.nn.benchmark prev_pid=13211 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
45853     logd.writer-563   (  555) [000] d..2 24573.178027: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13212 next_prio=110
45854           <...>-13212 (-----) [000] ...1 24573.178054: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
45855           <...>-13212 (-----) [000] ...1 24573.178058: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
45856           <...>-13212 (-----) [000] d..2 24573.178117: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
45857           <...>-13212 (-----) [000] d..3 24573.178125: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
45858           <...>-13212 (-----) [000] ...1 24573.178188: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45859           <...>-13212 (-----) [000] ...1 24573.178193: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45860           <...>-13212 (-----) [000] ...1 24573.180151: tracing_mark_write: E|13131
45861           <...>-13212 (-----) [000] ...1 24573.180155: tracing_mark_write: E|13131
45862           <...>-13212 (-----) [000] ...1 24573.180165: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45863           <...>-13212 (-----) [000] ...1 24573.180170: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45864           <...>-13212 (-----) [000] ...1 24573.180864: tracing_mark_write: E|13131
45865           <...>-13212 (-----) [000] ...1 24573.180868: tracing_mark_write: E|13131
45866 id.nn.benchmark-13160 (13131) [007] d.s2 24573.180889: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45867           <...>-13212 (-----) [000] d.s1 24573.180899: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
45868           <...>-13212 (-----) [000] dns2 24573.180910: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
45869           <...>-13212 (-----) [000] dnH2 24573.180916: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45870           <...>-13212 (-----) [000] d..2 24573.180925: sched_switch: prev_comm=id.nn.benchmark prev_pid=13212 prev_prio=110 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
45871     rcu_preempt-7     (    7) [000] d..2 24573.180929: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
45872     rcu_preempt-7     (    7) [000] d..3 24573.180946: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
45873     rcu_preempt-7     (    7) [000] d.h5 24573.181025: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
45874     rcu_preempt-7     (    7) [000] dnh6 24573.181039: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
45875     rcu_preempt-7     (    7) [000] dnh5 24573.181043: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
45876 id.nn.benchmark-13156 (13131) [005] dnh1 24573.181063: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
45877 id.nn.benchmark-13156 (13131) [005] d..2 24573.181065: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
45878     rcu_preempt-7     (    7) [000] dnh3 24573.181093: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
45879     rcu_preempt-7     (    7) [000] dnh3 24573.181104: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
45880           <...>-13154 (-----) [004] dnh1 24573.181107: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
45881           <...>-13154 (-----) [004] d..2 24573.181111: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
45882 crtc_commit:111-253   (  253) [005] d..2 24573.181112: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
45883     rcu_preempt-7     (    7) [000] dnh4 24573.181115: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
45884         sugov:4-560   (  560) [004] d..2 24573.181115: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
45885     rcu_preempt-7     (    7) [000] d..2 24573.181121: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
45886 id.nn.benchmark-13158 (13131) [001] d..2 24573.181124: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
45887  crtc_event:111-254   (  254) [000] d..2 24573.181133: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
45888         sugov:0-559   (  559) [001] d..2 24573.181133: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
45889 id.nn.benchmark-13156 (13131) [005] dnh1 24573.181144: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
45890 id.nn.benchmark-13156 (13131) [005] d..2 24573.181146: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
45891  crtc_event:111-254   (  254) [000] d..2 24573.181146: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
45892 crtc_commit:111-253   (  253) [005] d..2 24573.181207: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
45893  kworker/u16:15-18488 (18488) [000] d..2 24573.181525: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=rcuop/2 next_pid=29 next_prio=120
45894         rcuop/2-29    (   29) [000] d..2 24573.181530: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
45895         rcuop/2-29    (   29) [000] d..3 24573.181547: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
45896 id.nn.benchmark-13159 (13131) [003] d.s2 24573.181557: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45897         rcuop/2-29    (   29) [000] d..2 24573.181558: 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
45898         rcuop/3-37    (   37) [000] d..2 24573.181568: 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
45899     rcu_preempt-7     (    7) [000] d..2 24573.181570: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=004
45900 id.nn.benchmark-13159 (13131) [003] d.s3 24573.181572: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
45901 id.nn.benchmark-13159 (13131) [003] d.s3 24573.181575: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45902           <...>-13154 (-----) [004] dnh1 24573.181596: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=004
45903           <...>-13154 (-----) [004] d..2 24573.181598: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/4 next_pid=45 next_prio=120
45904     rcu_preempt-7     (    7) [000] d..2 24573.181601: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
45905         rcuop/4-45    (   45) [004] d..2 24573.181611: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
45906  kworker/u16:15-18488 (18488) [000] d..2 24573.181718: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13212 next_prio=110
45907           <...>-13212 (-----) [000] ...1 24573.181720: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45908           <...>-13212 (-----) [000] ...1 24573.181728: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45909 id.nn.benchmark-13159 (13131) [003] d.s2 24573.181736: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45910 id.nn.benchmark-13159 (13131) [003] d.s3 24573.181743: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
45911 id.nn.benchmark-13159 (13131) [003] d.s3 24573.181748: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
45912           <...>-13212 (-----) [000] d..2 24573.181757: sched_switch: prev_comm=id.nn.benchmark prev_pid=13212 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
45913  kworker/u16:15-18488 (18488) [000] d..2 24573.181768: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13212 next_prio=110
45914           <...>-13212 (-----) [000] ...1 24573.182083: tracing_mark_write: E|13131
45915           <...>-13212 (-----) [000] ...1 24573.182087: tracing_mark_write: E|13131
45916           <...>-13212 (-----) [000] ...1 24573.182098: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45917           <...>-13212 (-----) [000] ...1 24573.182103: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45918           <...>-13212 (-----) [000] ...1 24573.182333: tracing_mark_write: E|13131
45919           <...>-13212 (-----) [000] ...1 24573.182336: tracing_mark_write: E|13131
45920           <...>-13212 (-----) [000] ...1 24573.182347: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45921           <...>-13212 (-----) [000] ...1 24573.182351: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45922           <...>-13212 (-----) [000] ...1 24573.182749: tracing_mark_write: E|13131
45923           <...>-13212 (-----) [000] ...1 24573.182753: tracing_mark_write: E|13131
45924           <...>-13212 (-----) [000] ...1 24573.182763: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45925           <...>-13212 (-----) [000] ...1 24573.182767: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45926           <...>-13212 (-----) [000] ...1 24573.183160: tracing_mark_write: E|13131
45927           <...>-13212 (-----) [000] ...1 24573.183164: tracing_mark_write: E|13131
45928           <...>-13212 (-----) [000] ...1 24573.183181: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45929           <...>-13212 (-----) [000] ...1 24573.183185: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45930           <...>-13212 (-----) [000] d.h4 24573.183361: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
45931           <...>-13212 (-----) [000] dnh5 24573.183378: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
45932           <...>-13212 (-----) [000] dnh2 24573.183410: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
45933           <...>-13212 (-----) [000] dnh2 24573.183421: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
45934 id.nn.benchmark-13156 (13131) [005] dnh1 24573.183424: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
45935 id.nn.benchmark-13156 (13131) [005] d..2 24573.183427: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
45936           <...>-13212 (-----) [000] dnh3 24573.183429: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
45937         sugov:4-560   (  560) [005] d..2 24573.183430: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
45938           <...>-13212 (-----) [000] d..2 24573.183436: sched_switch: prev_comm=id.nn.benchmark prev_pid=13212 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
45939 id.nn.benchmark-13158 (13131) [001] d..2 24573.183438: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
45940         sugov:0-559   (  559) [001] d..2 24573.183446: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
45941 crtc_commit:111-253   (  253) [000] d..2 24573.183482: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13212 next_prio=110
45942           <...>-13212 (-----) [000] ...1 24573.183569: tracing_mark_write: E|13131
45943           <...>-13212 (-----) [000] ...1 24573.183572: tracing_mark_write: E|13131
45944           <...>-13212 (-----) [000] ...1 24573.183587: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45945           <...>-13212 (-----) [000] ...1 24573.183591: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45946           <...>-13212 (-----) [000] d.h4 24573.183657: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
45947           <...>-13212 (-----) [000] dnh5 24573.183665: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
45948           <...>-13212 (-----) [000] d..2 24573.183679: sched_switch: prev_comm=id.nn.benchmark prev_pid=13212 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
45949  crtc_event:111-254   (  254) [000] d..2 24573.183688: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13212 next_prio=110
45950           <...>-13212 (-----) [000] ...1 24573.183753: tracing_mark_write: E|13131
45951           <...>-13212 (-----) [000] ...1 24573.183758: tracing_mark_write: E|13131
45952           <...>-13212 (-----) [000] ...1 24573.183768: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
45953           <...>-13212 (-----) [000] ...1 24573.183772: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
45954           <...>-13212 (-----) [000] ...1 24573.184040: tracing_mark_write: E|13131
45955           <...>-13212 (-----) [000] ...1 24573.184044: tracing_mark_write: E|13131
45956           <...>-13212 (-----) [000] ...1 24573.184052: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
45957           <...>-13212 (-----) [000] ...1 24573.184056: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
45958           <...>-13212 (-----) [000] ...1 24573.184101: tracing_mark_write: E|13131
45959           <...>-13212 (-----) [000] ...1 24573.184104: tracing_mark_write: E|13131
45960           <...>-13212 (-----) [000] ...1 24573.184113: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
45961           <...>-13212 (-----) [000] ...1 24573.184116: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
45962           <...>-13212 (-----) [000] ...1 24573.184131: tracing_mark_write: E|13131
45963           <...>-13212 (-----) [000] ...1 24573.184134: tracing_mark_write: E|13131
45964           <...>-13212 (-----) [000] ...1 24573.184143: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
45965           <...>-13212 (-----) [000] ...1 24573.184146: tracing_mark_write: E|13131
45966           <...>-13212 (-----) [000] ...1 24573.184154: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
45967           <...>-13212 (-----) [000] ...1 24573.184158: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
45968 id.nn.benchmark-13156 (13131) [005] d.s2 24573.184222: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
45969           <...>-13212 (-----) [000] dnh1 24573.184238: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
45970           <...>-13212 (-----) [000] d..2 24573.184244: sched_switch: prev_comm=id.nn.benchmark prev_pid=13212 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
45971  crtc_event:111-254   (  254) [000] d..2 24573.184256: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13212 next_prio=110
45972           <...>-13212 (-----) [000] ...1 24573.185059: tracing_mark_write: E|13131
45973           <...>-13212 (-----) [000] ...1 24573.185062: tracing_mark_write: E|13131
45974           <...>-13212 (-----) [000] ...1 24573.185071: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
45975           <...>-13212 (-----) [000] ...1 24573.185075: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
45976           <...>-13212 (-----) [000] ...1 24573.185158: tracing_mark_write: E|13131
45977           <...>-13212 (-----) [000] ...1 24573.185161: tracing_mark_write: E|13131
45978           <...>-13212 (-----) [000] ...1 24573.185213: tracing_mark_write: E|13131
45979           <...>-13212 (-----) [000] d..1 24573.185218: sched_waking: comm=id.nn.benchmark pid=13211 prio=110 target_cpu=000
45980 id.nn.benchmark-13156 (13131) [005] dnh1 24573.185264: sched_wakeup: comm=id.nn.benchmark pid=13211 prio=110 target_cpu=005
45981           <...>-13212 (-----) [000] d.h3 24573.185266: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
45982 id.nn.benchmark-13156 (13131) [005] d..2 24573.185266: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13211 next_prio=110
45983           <...>-13211 (-----) [005] d..2 24573.185277: sched_switch: prev_comm=id.nn.benchmark prev_pid=13211 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
45984           <...>-13212 (-----) [000] d.h3 24573.185278: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
45985           <...>-13154 (-----) [004] dnh1 24573.185282: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
45986           <...>-13154 (-----) [004] d..2 24573.185284: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
45987         sugov:4-560   (  560) [004] d..2 24573.185288: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
45988           <...>-13212 (-----) [000] dnh4 24573.185288: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
45989           <...>-13212 (-----) [000] d..2 24573.185294: sched_switch: prev_comm=id.nn.benchmark prev_pid=13212 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
45990         sugov:0-559   (  559) [000] d..2 24573.185302: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13212 next_prio=110
45991           <...>-13212 (-----) [000] ...1 24573.185318: tracing_mark_write: E|13131
45992           <...>-13212 (-----) [000] d..1 24573.185512: sched_waking: comm=id.nn.benchmark pid=13211 prio=110 target_cpu=005
45993           <...>-13212 (-----) [000] dn.2 24573.185540: sched_wakeup: comm=id.nn.benchmark pid=13211 prio=110 target_cpu=000
45994           <...>-13212 (-----) [000] dnh2 24573.185545: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
45995           <...>-13212 (-----) [000] dnh3 24573.185553: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
45996           <...>-13212 (-----) [000] d..2 24573.185578: sched_switch: prev_comm=id.nn.benchmark prev_pid=13212 prev_prio=110 prev_state=R+ ==> next_comm=DispSync next_pid=23904 next_prio=97
45997        DispSync-23904 (23896) [000] d..1 24573.185598: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
45998        DispSync-23904 (23896) [000] d..2 24573.185610: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
45999 id.nn.benchmark-13155 (13131) [002] d..2 24573.185620: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
46000        DispSync-23904 (23896) [000] d..2 24573.185626: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13211 next_prio=110
46001  appEventThread-23905 (23896) [002] d..3 24573.185664: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
46002  appEventThread-23905 (23896) [002] d..4 24573.185700: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
46003           <...>-13211 (-----) [000] d..2 24573.185707: sched_switch: prev_comm=id.nn.benchmark prev_pid=13211 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
46004  appEventThread-23905 (23896) [002] d..2 24573.185747: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
46005<...>-24151 ( 24151) [000] .... 24573.186006: binder_transaction: transaction=1669833 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
46006<...>-24151 ( 24151) [000] d..4 24573.186015: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
46007 id.nn.benchmark-13156 (13131) [005] dnh1 24573.186032: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
46008 id.nn.benchmark-13156 (13131) [005] d..2 24573.186034: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
46009<...>-23903 ( 23896) [005] .... 24573.186038: binder_transaction_received: transaction=1669833
46010<...>-23903 ( 23896) [005] d..1 24573.186054: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
46011<...>-24151 ( 24151) [000] d..3 24573.186058: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
46012<...>-23903 ( 23896) [005] d..2 24573.186073: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
46013<...>-24151 ( 24151) [000] d..4 24573.186090: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
46014<...>-24151 ( 24151) [000] dnh2 24573.186096: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
46015<...>-24151 ( 24151) [000] dnh3 24573.186124: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
46016<...>-24151 ( 24151) [000] dnh3 24573.186136: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
46017 id.nn.benchmark-13156 (13131) [005] dnh1 24573.186139: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
46018 id.nn.benchmark-13156 (13131) [005] d..2 24573.186142: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
46019         sugov:4-560   (  560) [005] d..2 24573.186145: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
46020<...>-24151 ( 24151) [000] dnh4 24573.186147: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
46021<...>-24151 ( 24151) [000] d..2 24573.186153: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
46022 id.nn.benchmark-13158 (13131) [001] d..2 24573.186156: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
46023         sugov:0-559   (  559) [001] d..2 24573.186164: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
46024  appEventThread-23905 (23896) [000] d..2 24573.186181: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
46025    RenderThread-24437 (24151) [000] d..2 24573.186208: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
46026<...>-24151 ( 24151) [000] d..3 24573.186305: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
46027<...>-24151 ( 24151) [000] d..4 24573.186315: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
46028<...>-24151 ( 24151) [000] d..2 24573.186325: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
46029    RenderThread-24437 (24151) [000] d..1 24573.186427: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
46030    RenderThread-24437 (24151) [000] d..2 24573.186446: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
46031    RenderThread-24437 (24151) [000] .... 24573.186496: binder_transaction: transaction=1669834 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
46032    RenderThread-24437 (24151) [000] d..4 24573.186501: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
46033 id.nn.benchmark-13156 (13131) [005] dnh1 24573.186514: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
46034 id.nn.benchmark-13156 (13131) [005] d..2 24573.186517: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
46035<...>-23903 ( 23896) [005] .... 24573.186518: binder_transaction_received: transaction=1669834
46036    RenderThread-24437 (24151) [000] d..2 24573.186519: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
46037<...>-23903 ( 23896) [005] .... 24573.186542: binder_transaction: transaction=1669835 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
46038<...>-23903 ( 23896) [005] d..2 24573.186547: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
46039<...>-24151 ( 24151) [000] d..2 24573.186559: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13211 next_prio=110
46040           <...>-13211 (-----) [000] dnh3 24573.186567: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
46041<...>-23903 ( 23896) [005] d..2 24573.186569: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
46042           <...>-13211 (-----) [000] d..2 24573.186573: sched_switch: prev_comm=id.nn.benchmark prev_pid=13211 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
46043    RenderThread-24437 (24151) [000] .... 24573.186577: binder_transaction_received: transaction=1669835
46044 id.nn.benchmark-13160 (13131) [007] d.s2 24573.187553: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
46045 id.nn.benchmark-13155 (13131) [002] d.s2 24573.187565: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
46046    RenderThread-24437 (24151) [000] dnH1 24573.187572: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
46047 id.nn.benchmark-13155 (13131) [002] d.s3 24573.187577: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
46048    RenderThread-24437 (24151) [000] d..2 24573.187586: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
46049  kworker/u16:15-18488 (18488) [000] d..2 24573.187679: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
46050     rcu_preempt-7     (    7) [000] d..2 24573.187683: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
46051     rcu_preempt-7     (    7) [000] d..2 24573.187706: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
46052           <...>-13157 (-----) [006] dnh1 24573.187708: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
46053           <...>-13157 (-----) [006] d..2 24573.187711: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
46054     rcu_preempt-7     (    7) [000] d..3 24573.187716: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
46055         rcuop/6-61    (   61) [006] d..2 24573.187718: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=006
46056     rcu_preempt-7     (    7) [000] d..2 24573.187722: 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
46057         rcuop/0-10    (   10) [000] d..2 24573.187726: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
46058         rcuop/6-61    (   61) [006] d..3 24573.187729: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=006
46059         rcuop/6-61    (   61) [006] d..2 24573.187732: 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
46060         rcuop/0-10    (   10) [000] d..3 24573.187736: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
46061         rcuop/7-69    (   69) [006] d..2 24573.187742: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
46062         rcuop/0-10    (   10) [000] d..2 24573.187749: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
46063         rcuop/0-10    (   10) [000] d..3 24573.187756: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
46064         rcuop/0-10    (   10) [000] d..2 24573.187761: 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
46065         rcuop/1-21    (   21) [000] d.h4 24573.187782: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
46066         rcuop/1-21    (   21) [000] dnh5 24573.187791: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
46067         rcuop/1-21    (   21) [000] d..2 24573.187803: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
46068 kgsl_worker_thr-246   (  246) [000] d..2 24573.187813: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=rcuop/1 next_pid=21 next_prio=120
46069         rcuop/1-21    (   21) [000] d..2 24573.187833: 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
46070     rcu_preempt-7     (    7) [000] d..2 24573.187840: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
46071    RenderThread-24437 (24151) [000] d..2 24573.187852: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13211 next_prio=110
46072           <...>-13211 (-----) [000] d..1 24573.187885: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
46073           <...>-13211 (-----) [000] dn.2 24573.187910: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
46074           <...>-13211 (-----) [000] d..2 24573.187914: sched_switch: prev_comm=id.nn.benchmark prev_pid=13211 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
46075           <...>-13131 (-----) [000] d..2 24573.187927: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13211 next_prio=110
46076           <...>-13211 (-----) [000] d.h1 24573.187951: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
46077           <...>-13211 (-----) [000] d.h2 24573.187959: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
46078           <...>-13211 (-----) [000] dnh2 24573.187962: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
46079           <...>-13211 (-----) [000] d..2 24573.187969: sched_switch: prev_comm=id.nn.benchmark prev_pid=13211 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
46080    RenderThread-24437 (24151) [000] d..1 24573.187983: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
46081    RenderThread-24437 (24151) [000] dn.2 24573.187990: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
46082    RenderThread-24437 (24151) [000] d..2 24573.187994: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
46083 kgsl_worker_thr-246   (  246) [000] d..2 24573.188027: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
46084 kgsl_worker_thr-246   (  246) [000] d..3 24573.188035: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
46085 kgsl_worker_thr-246   (  246) [000] d..2 24573.188044: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
46086  kworker/u16:15-18488 (18488) [000] d..2 24573.188067: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
46087    RenderThread-24437 (24151) [000] .... 24573.188195: binder_transaction: transaction=1669836 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
46088    RenderThread-24437 (24151) [000] d..4 24573.188202: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
46089 id.nn.benchmark-13156 (13131) [005] dnh1 24573.188217: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
46090 id.nn.benchmark-13156 (13131) [005] d..2 24573.188219: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
46091<...>-23903 ( 23896) [005] .... 24573.188221: binder_transaction_received: transaction=1669836
46092    RenderThread-24437 (24151) [000] d..2 24573.188221: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13211 next_prio=110
46093           <...>-13211 (-----) [000] d..1 24573.188270: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
46094<...>-23903 ( 23896) [005] .... 24573.188271: binder_transaction: transaction=1669837 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
46095<...>-23903 ( 23896) [005] d..2 24573.188272: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
46096           <...>-13211 (-----) [000] dn.2 24573.188279: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
46097           <...>-13211 (-----) [000] dnh2 24573.188284: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
46098<...>-23903 ( 23896) [005] d..2 24573.188287: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
46099           <...>-13211 (-----) [000] d..2 24573.188290: sched_switch: prev_comm=id.nn.benchmark prev_pid=13211 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
46100           <...>-13131 (-----) [000] ...1 24573.188311: tracing_mark_write: E|13131
46101           <...>-13131 (-----) [000] ...1 24573.188317: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
46102           <...>-13131 (-----) [000] ...1 24573.188324: tracing_mark_write: E|13131
46103           <...>-13131 (-----) [000] ...1 24573.188329: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
46104           <...>-13131 (-----) [000] ...1 24573.188333: tracing_mark_write: E|13131
46105           <...>-13131 (-----) [000] ...1 24573.188641: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
46106           <...>-13131 (-----) [000] ...1 24573.188685: tracing_mark_write: E|13131
46107           <...>-13131 (-----) [000] ...1 24573.188690: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
46108           <...>-13131 (-----) [000] ...1 24573.188695: tracing_mark_write: E|13131
46109           <...>-13131 (-----) [000] ...1 24573.188699: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
46110           <...>-13131 (-----) [000] ...1 24573.188703: tracing_mark_write: E|13131
46111           <...>-13131 (-----) [000] ...1 24573.188708: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
46112           <...>-13131 (-----) [000] ...1 24573.188815: tracing_mark_write: E|13131
46113           <...>-13131 (-----) [000] ...1 24573.188819: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
46114           <...>-13131 (-----) [000] d..2 24573.188828: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
46115    RenderThread-24437 (24151) [000] .... 24573.188833: binder_transaction_received: transaction=1669837
46116    RenderThread-24437 (24151) [000] d..2 24573.188887: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13211 next_prio=110
46117           <...>-13211 (-----) [000] d..2 24573.188944: sched_switch: prev_comm=id.nn.benchmark prev_pid=13211 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13212 next_prio=110
46118           <...>-13212 (-----) [000] d..2 24573.188966: sched_switch: prev_comm=id.nn.benchmark prev_pid=13212 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
46119     logd.writer-563   (  555) [000] d..2 24573.189189: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13213 next_prio=110
46120           <...>-13213 (-----) [000] d..2 24573.189244: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
46121           <...>-13213 (-----) [000] d..3 24573.189252: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
46122           <...>-13213 (-----) [000] d.h2 24573.189519: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
46123 id.nn.benchmark-13156 (13131) [005] dnh1 24573.189542: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=005
46124 id.nn.benchmark-13156 (13131) [005] d..2 24573.189568: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
46125           <...>-13213 (-----) [000] d.h3 24573.189568: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
46126           <...>-13154 (-----) [004] d..3 24573.189571: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
46127 id.nn.benchmark-13160 (13131) [007] d..2 24573.189573: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
46128        DispSync-23904 (23896) [005] d..1 24573.189574: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
46129           <...>-13154 (-----) [004] d..2 24573.189579: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
46130           <...>-13213 (-----) [000] d.h3 24573.189581: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
46131 id.nn.benchmark-13158 (13131) [001] dnh1 24573.189582: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
46132        DispSync-23904 (23896) [005] d..2 24573.189583: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
46133 id.nn.benchmark-13158 (13131) [001] dnh1 24573.189585: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
46134          <idle>-0     (-----) [004] dnh3 24573.189585: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
46135          <idle>-0     (-----) [007] d..1 24573.189587: cpu_idle: state=0 cpu_id=7
46136          <idle>-0     (-----) [004] d..2 24573.189588: 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
46137           <...>-13157 (-----) [006] d..2 24573.189595: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
46138           <...>-13213 (-----) [000] dnh4 24573.189595: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
46139 id.nn.benchmark-13158 (13131) [001] d..2 24573.189596: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
46140           <...>-13213 (-----) [000] d..2 24573.189602: sched_switch: prev_comm=id.nn.benchmark prev_pid=13213 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
46141          <idle>-0     (-----) [006] d..1 24573.189602: cpu_idle: state=0 cpu_id=6
46142         sugov:0-559   (  559) [000] d..2 24573.189609: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13213 next_prio=110
46143         sugov:4-560   (  560) [004] d..2 24573.189609: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
46144     migration/1-17    (   17) [001] d..2 24573.189613: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=sfEventThread next_pid=23906 next_prio=97
46145           <...>-13213 (-----) [000] d..2 24573.189638: sched_switch: prev_comm=id.nn.benchmark prev_pid=13213 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13214 next_prio=110
46146   sfEventThread-23906 (23896) [001] d..3 24573.189639: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
46147   sfEventThread-23906 (23896) [001] d..4 24573.189656: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
46148           <...>-13214 (-----) [000] d..2 24573.189661: sched_switch: prev_comm=id.nn.benchmark prev_pid=13214 prev_prio=110 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
46149   sfEventThread-23906 (23896) [001] d..2 24573.189683: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46150          <idle>-0     (-----) [001] d..1 24573.189696: cpu_idle: state=0 cpu_id=1
46151          <idle>-0     (-----) [006] ...1 24573.189794: cpu_idle: state=4294967295 cpu_id=6
46152          <idle>-0     (-----) [006] d..1 24573.189795: cpu_idle: state=0 cpu_id=6
46153 id.nn.benchmark-13156 (13131) [005] d..3 24573.189817: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
46154 id.nn.benchmark-13156 (13131) [005] d..2 24573.189825: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
46155 id.nn.benchmark-13155 (13131) [002] dnh1 24573.189827: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
46156          <idle>-0     (-----) [005] d..1 24573.189831: cpu_idle: state=0 cpu_id=5
46157 id.nn.benchmark-13155 (13131) [002] d..2 24573.189832: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
46158          <idle>-0     (-----) [005] .n.1 24573.189855: cpu_idle: state=4294967295 cpu_id=5
46159          <idle>-0     (-----) [005] d..2 24573.189872: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
46160     migration/2-25    (   25) [002] d..2 24573.189883: 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
46161          <idle>-0     (-----) [002] d..1 24573.189897: cpu_idle: state=0 cpu_id=2
46162  surfaceflinger-23896 (23896) [000] d..1 24573.189899: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
46163  surfaceflinger-23896 (23896) [000] d..2 24573.189911: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
46164          <idle>-0     (-----) [001] .n.1 24573.189916: cpu_idle: state=4294967295 cpu_id=1
46165          <idle>-0     (-----) [001] d..2 24573.189922: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
46166   sfEventThread-23906 (23896) [001] d..2 24573.189941: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46167          <idle>-0     (-----) [001] d..1 24573.189946: cpu_idle: state=0 cpu_id=1
46168  surfaceflinger-23896 (23896) [000] ...1 24573.190036: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
46169  surfaceflinger-23896 (23896) [000] ...1 24573.190040: tracing_mark_write: E|23896
46170  surfaceflinger-23896 (23896) [000] .... 24573.190082: binder_transaction: transaction=1669838 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
46171  surfaceflinger-23896 (23896) [000] ...2 24573.190101: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
46172  surfaceflinger-23896 (23896) [000] d..4 24573.190108: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
46173  surfaceflinger-23896 (23896) [000] d..5 24573.190129: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
46174          <idle>-0     (-----) [002] .n.1 24573.190134: cpu_idle: state=4294967295 cpu_id=2
46175  surfaceflinger-23896 (23896) [000] d.h5 24573.190159: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
46176          <idle>-0     (-----) [002] d..2 24573.190159: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
46177  surfaceflinger-23896 (23896) [000] d.h5 24573.190170: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
46178          <idle>-0     (-----) [007] dnh2 24573.190176: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
46179          <idle>-0     (-----) [007] .n.1 24573.190178: cpu_idle: state=4294967295 cpu_id=7
46180  surfaceflinger-23896 (23896) [000] d.h6 24573.190181: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
46181          <idle>-0     (-----) [007] d..2 24573.190182: 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
46182          <idle>-0     (-----) [001] .n.1 24573.190185: cpu_idle: state=4294967295 cpu_id=1
46183  HwBinder:598_3-633   (  598) [002] .... 24573.190187: binder_transaction_received: transaction=1669838
46184         sugov:4-560   (  560) [007] d..3 24573.190187: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
46185          <idle>-0     (-----) [001] d..2 24573.190191: 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
46186  surfaceflinger-23896 (23896) [000] d..2 24573.190192: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13214 next_prio=110
46187         sugov:4-560   (  560) [007] d..2 24573.190194: 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
46188          <idle>-0     (-----) [007] d..1 24573.190196: cpu_idle: state=0 cpu_id=7
46189 id.nn.benchmark-13159 (13131) [003] dnh1 24573.190198: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
46190 id.nn.benchmark-13159 (13131) [003] d..2 24573.190205: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
46191         sugov:0-559   (  559) [001] d..2 24573.190206: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46192          <idle>-0     (-----) [001] d..1 24573.190211: cpu_idle: state=0 cpu_id=1
46193           <...>-13214 (-----) [000] ...1 24573.190212: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
46194           <...>-13214 (-----) [000] ...1 24573.190216: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
46195  HwBinder:598_3-633   (  598) [002] ...1 24573.190227: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
46196          <idle>-0     (-----) [007] .n.1 24573.190228: cpu_idle: state=4294967295 cpu_id=7
46197          <idle>-0     (-----) [007] d..2 24573.190246: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
46198<...>-33 ( 33) [003] d..2 24573.190263: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
46199  HwBinder:598_3-633   (  598) [002] ...1 24573.190304: tracing_mark_write: B|598|HWCSession::PresentDisplay::
46200           <...>-13214 (-----) [000] ...1 24573.190337: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
46201     logd.writer-563   (  555) [003] d..2 24573.190339: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
46202           <...>-13214 (-----) [000] ...1 24573.190342: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
46203     logd.writer-563   (  555) [003] d..3 24573.190363: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
46204  HwBinder:598_3-633   (  598) [002] ...1 24573.190414: tracing_mark_write: B|598|HWDeviceDRM::Commit::
46205  HwBinder:598_3-633   (  598) [002] ...1 24573.190422: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
46206     logd.writer-563   (  555) [003] d..2 24573.190542: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
46207          <idle>-0     (-----) [003] d..1 24573.190554: cpu_idle: state=0 cpu_id=3
46208  HwBinder:598_3-633   (  598) [002] d..2 24573.190795: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
46209  HwBinder:598_3-633   (  598) [002] d..3 24573.190814: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
46210          <idle>-0     (-----) [001] .n.1 24573.190818: cpu_idle: state=4294967295 cpu_id=1
46211          <idle>-0     (-----) [001] d..2 24573.190823: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
46212  HwBinder:598_3-633   (  598) [002] ...1 24573.190872: tracing_mark_write: E|598
46213  HwBinder:598_3-633   (  598) [002] ...1 24573.190875: tracing_mark_write: E|598
46214 id.nn.benchmark-13159 (13131) [007] d.s2 24573.190888: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
46215 crtc_commit:111-253   (  253) [001] d.h1 24573.190910: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
46216  HwBinder:598_3-633   (  598) [002] ...1 24573.190934: tracing_mark_write: E|598
46217  HwBinder:598_3-633   (  598) [002] ...1 24573.190969: tracing_mark_write: E|598
46218  HwBinder:598_3-633   (  598) [002] .... 24573.190979: binder_transaction: transaction=1669839 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
46219  HwBinder:598_3-633   (  598) [002] d..2 24573.190991: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
46220  HwBinder:598_3-633   (  598) [002] d..3 24573.191005: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
46221  HwBinder:598_3-633   (  598) [002] .... 24573.191008: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
46222          <idle>-0     (-----) [003] .n.1 24573.191011: cpu_idle: state=4294967295 cpu_id=3
46223          <idle>-0     (-----) [003] d..2 24573.191018: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
46224  surfaceflinger-23896 (23896) [003] .... 24573.191023: binder_transaction_received: transaction=1669839
46225  HwBinder:598_3-633   (  598) [002] d..2 24573.191048: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
46226         rcuop/2-29    (   29) [002] d..2 24573.191064: 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
46227          <idle>-0     (-----) [002] d..1 24573.191073: cpu_idle: state=0 cpu_id=2
46228  surfaceflinger-23896 (23896) [003] d..2 24573.191275: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
46229          <idle>-0     (-----) [003] d..1 24573.191285: cpu_idle: state=0 cpu_id=3
46230 crtc_commit:111-253   (  253) [001] d..2 24573.191444: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
46231  kworker/u16:15-18488 (18488) [001] .... 24573.191558: clk_set_rate: l3_cluster1_vote_clk 300000000
46232  kworker/u16:15-18488 (18488) [001] .... 24573.191564: clk_set_rate: l3_clk 1401600000
46233  kworker/u16:15-18488 (18488) [001] d..2 24573.191768: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46234          <idle>-0     (-----) [001] d..1 24573.191777: cpu_idle: state=0 cpu_id=1
46235           <...>-13214 (-----) [000] d..1 24573.192030: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
46236           <...>-13214 (-----) [000] d..1 24573.192050: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=005
46237          <idle>-0     (-----) [006] dnh2 24573.192051: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=006
46238          <idle>-0     (-----) [006] .n.1 24573.192054: cpu_idle: state=4294967295 cpu_id=6
46239          <idle>-0     (-----) [006] d..2 24573.192057: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
46240           <...>-13214 (-----) [000] d..1 24573.192060: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=006
46241 id.nn.benchmark-13155 (13131) [005] dnh1 24573.192062: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=005
46242 id.nn.benchmark-13155 (13131) [005] d..2 24573.192065: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
46243           <...>-13214 (-----) [000] d..1 24573.192071: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=007
46244           <...>-13154 (-----) [006] d.h1 24573.192071: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=006
46245 id.nn.benchmark-13159 (13131) [007] d.h1 24573.192083: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=007
46246          <idle>-0     (-----) [001] ...1 24573.193180: cpu_idle: state=4294967295 cpu_id=1
46247          <idle>-0     (-----) [001] d..1 24573.193182: cpu_idle: state=0 cpu_id=1
46248           <...>-13214 (-----) [000] d.s1 24573.194228: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
46249           <...>-13214 (-----) [000] d.s2 24573.194247: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
46250          <idle>-0     (-----) [001] dnH3 24573.194293: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
46251          <idle>-0     (-----) [001] dnH3 24573.194302: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
46252 id.nn.benchmark-13159 (13131) [007] dnh1 24573.194304: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
46253 id.nn.benchmark-13159 (13131) [007] d..2 24573.194307: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
46254         sugov:4-560   (  560) [007] d..2 24573.194311: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
46255          <idle>-0     (-----) [001] dnH4 24573.194313: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
46256          <idle>-0     (-----) [002] .n.1 24573.194319: cpu_idle: state=4294967295 cpu_id=2
46257          <idle>-0     (-----) [001] .n.1 24573.194320: cpu_idle: state=4294967295 cpu_id=1
46258          <idle>-0     (-----) [002] d..2 24573.194325: 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
46259          <idle>-0     (-----) [001] d..2 24573.194328: 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
46260         sugov:0-559   (  559) [002] d..2 24573.194348: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
46261     rcu_preempt-7     (    7) [001] d..2 24573.194363: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
46262 id.nn.benchmark-13158 (13131) [004] d..3 24573.196592: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
46263           <...>-13154 (-----) [006] d..2 24573.196593: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
46264 id.nn.benchmark-13156 (13131) [005] d..2 24573.196596: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
46265 id.nn.benchmark-13158 (13131) [004] d..2 24573.196598: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
46266          <idle>-0     (-----) [005] d..1 24573.196600: cpu_idle: state=0 cpu_id=5
46267 id.nn.benchmark-13155 (13131) [001] dnh1 24573.196602: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
46268          <idle>-0     (-----) [004] d..1 24573.196604: cpu_idle: state=0 cpu_id=4
46269 id.nn.benchmark-13155 (13131) [001] d..2 24573.196609: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
46270 id.nn.benchmark-13159 (13131) [007] d..2 24573.196621: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
46271 id.nn.benchmark-13155 (13131) [007] d.h4 24573.196640: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
46272     migration/1-17    (   17) [001] d..2 24573.196642: 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
46273 id.nn.benchmark-13155 (13131) [007] d.h5 24573.196649: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
46274          <idle>-0     (-----) [001] d..1 24573.196649: cpu_idle: state=0 cpu_id=1
46275 id.nn.benchmark-13155 (13131) [007] d.h4 24573.196649: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
46276          <idle>-0     (-----) [004] .n.1 24573.196653: cpu_idle: state=4294967295 cpu_id=4
46277          <idle>-0     (-----) [004] d..2 24573.196656: 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
46278         sugov:4-560   (  560) [004] d..3 24573.196660: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
46279          <idle>-0     (-----) [001] dnh2 24573.196665: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
46280         sugov:4-560   (  560) [004] d..2 24573.196666: 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
46281          <idle>-0     (-----) [004] d..1 24573.196669: cpu_idle: state=0 cpu_id=4
46282          <idle>-0     (-----) [001] .n.1 24573.196669: cpu_idle: state=4294967295 cpu_id=1
46283 id.nn.benchmark-13160 (13131) [002] dnh1 24573.196670: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
46284          <idle>-0     (-----) [001] d..2 24573.196674: 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
46285 id.nn.benchmark-13160 (13131) [002] d..2 24573.196677: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
46286         sugov:0-559   (  559) [001] d..2 24573.196688: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46287          <idle>-0     (-----) [001] d..1 24573.196692: cpu_idle: state=0 cpu_id=1
46288          <idle>-0     (-----) [004] .n.1 24573.196699: cpu_idle: state=4294967295 cpu_id=4
46289           <...>-13214 (-----) [000] ...1 24573.196710: tracing_mark_write: E|13131
46290           <...>-13214 (-----) [000] ...1 24573.196714: tracing_mark_write: E|13131
46291          <idle>-0     (-----) [004] d..2 24573.196719: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
46292     migration/2-25    (   25) [002] d..2 24573.196728: 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
46293           <...>-13214 (-----) [000] ...1 24573.196728: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
46294           <...>-13214 (-----) [000] ...1 24573.196733: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
46295          <idle>-0     (-----) [002] d..1 24573.196736: cpu_idle: state=0 cpu_id=2
46296           <...>-13214 (-----) [000] d..1 24573.197201: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=006
46297           <...>-13214 (-----) [000] d..1 24573.197219: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=005
46298          <idle>-0     (-----) [005] dnh2 24573.197223: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
46299          <idle>-0     (-----) [005] .n.1 24573.197225: cpu_idle: state=4294967295 cpu_id=5
46300          <idle>-0     (-----) [005] dn.2 24573.197226: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=005
46301          <idle>-0     (-----) [005] d..2 24573.197229: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
46302           <...>-13214 (-----) [000] d..1 24573.197230: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
46303           <...>-13214 (-----) [000] d..1 24573.197238: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
46304 id.nn.benchmark-13160 (13131) [004] d.h1 24573.197241: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
46305 id.nn.benchmark-13155 (13131) [007] d.h1 24573.197250: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
46306           <...>-13214 (-----) [000] d.h4 24573.197491: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
46307           <...>-13214 (-----) [000] d.h5 24573.197510: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
46308           <...>-13214 (-----) [000] d.h4 24573.197513: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
46309          <idle>-0     (-----) [002] .n.1 24573.197515: cpu_idle: state=4294967295 cpu_id=2
46310          <idle>-0     (-----) [002] d..2 24573.197520: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
46311           <...>-13214 (-----) [000] d.h5 24573.197521: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
46312          <idle>-0     (-----) [001] .n.1 24573.197525: cpu_idle: state=4294967295 cpu_id=1
46313          <idle>-0     (-----) [001] d..2 24573.197531: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
46314 id.nn.benchmark-13155 (13131) [007] d.s2 24573.197559: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
46315  crtc_event:111-254   (  254) [002] d..2 24573.197560: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
46316 crtc_commit:111-253   (  253) [001] d.h1 24573.197572: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
46317 id.nn.benchmark-13159 (13131) [002] d.H4 24573.197624: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
46318 id.nn.benchmark-13159 (13131) [002] d.H4 24573.197637: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
46319 id.nn.benchmark-13155 (13131) [007] dnh1 24573.197640: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
46320 id.nn.benchmark-13155 (13131) [007] d..2 24573.197642: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
46321         sugov:4-560   (  560) [007] d..2 24573.197646: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
46322 id.nn.benchmark-13159 (13131) [002] d.H5 24573.197650: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
46323 id.nn.benchmark-13159 (13131) [002] d.s4 24573.197653: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
46324          <idle>-0     (-----) [003] .n.1 24573.197655: cpu_idle: state=4294967295 cpu_id=3
46325          <idle>-0     (-----) [003] d..2 24573.197662: 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
46326 crtc_commit:111-253   (  253) [001] d..2 24573.197665: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
46327 id.nn.benchmark-13159 (13131) [002] d.s5 24573.197673: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
46328         sugov:0-559   (  559) [003] d..2 24573.197691: 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
46329     rcu_preempt-7     (    7) [003] d..2 24573.197718: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
46330     rcu_preempt-7     (    7) [003] d..3 24573.197740: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
46331     rcu_preempt-7     (    7) [003] d..2 24573.197754: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
46332  kworker/u16:15-18488 (18488) [001] d..2 24573.197779: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
46333         rcuop/0-10    (   10) [001] d..2 24573.197824: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
46334           <...>-13214 (-----) [000] ...1 24573.198078: tracing_mark_write: E|13131
46335           <...>-13214 (-----) [000] ...1 24573.198082: tracing_mark_write: E|13131
46336           <...>-13214 (-----) [000] ...1 24573.198104: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
46337           <...>-13214 (-----) [000] ...1 24573.198109: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
46338           <...>-13214 (-----) [000] ...1 24573.198448: tracing_mark_write: E|13131
46339           <...>-13214 (-----) [000] ...1 24573.198452: tracing_mark_write: E|13131
46340           <...>-13214 (-----) [000] ...1 24573.198463: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
46341           <...>-13214 (-----) [000] ...1 24573.198467: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
46342           <...>-13214 (-----) [000] ...1 24573.198709: tracing_mark_write: E|13131
46343           <...>-13214 (-----) [000] ...1 24573.198714: tracing_mark_write: E|13131
46344           <...>-13214 (-----) [000] ...1 24573.198724: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
46345           <...>-13214 (-----) [000] ...1 24573.198729: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
46346           <...>-13214 (-----) [000] ...1 24573.199131: tracing_mark_write: E|13131
46347           <...>-13214 (-----) [000] ...1 24573.199135: tracing_mark_write: E|13131
46348           <...>-13214 (-----) [000] ...1 24573.199145: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
46349           <...>-13214 (-----) [000] ...1 24573.199150: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
46350           <...>-13214 (-----) [000] ...1 24573.199550: tracing_mark_write: E|13131
46351           <...>-13214 (-----) [000] ...1 24573.199553: tracing_mark_write: E|13131
46352           <...>-13214 (-----) [000] ...1 24573.199573: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
46353           <...>-13214 (-----) [000] ...1 24573.199578: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
46354           <...>-13214 (-----) [000] d.h4 24573.199836: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
46355           <...>-13214 (-----) [000] dnh5 24573.199849: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
46356           <...>-13214 (-----) [000] d..2 24573.199862: sched_switch: prev_comm=id.nn.benchmark prev_pid=13214 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
46357 crtc_commit:111-253   (  253) [000] d..2 24573.199904: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13214 next_prio=110
46358           <...>-13214 (-----) [000] ...1 24573.199913: tracing_mark_write: E|13131
46359           <...>-13214 (-----) [000] ...1 24573.199917: tracing_mark_write: E|13131
46360           <...>-13214 (-----) [000] ...1 24573.199930: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
46361           <...>-13214 (-----) [000] ...1 24573.199933: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
46362           <...>-13214 (-----) [000] ...1 24573.200007: tracing_mark_write: E|13131
46363           <...>-13214 (-----) [000] ...1 24573.200011: tracing_mark_write: E|13131
46364           <...>-13214 (-----) [000] ...1 24573.200022: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
46365           <...>-13214 (-----) [000] ...1 24573.200027: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
46366           <...>-13214 (-----) [000] d.h4 24573.200126: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
46367           <...>-13214 (-----) [000] dnh5 24573.200138: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
46368           <...>-13214 (-----) [000] d..2 24573.200153: sched_switch: prev_comm=id.nn.benchmark prev_pid=13214 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
46369  crtc_event:111-254   (  254) [000] d..2 24573.200163: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13214 next_prio=110
46370           <...>-13214 (-----) [000] ...1 24573.200435: tracing_mark_write: E|13131
46371           <...>-13214 (-----) [000] ...1 24573.200439: tracing_mark_write: E|13131
46372           <...>-13214 (-----) [000] ...1 24573.200449: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
46373           <...>-13214 (-----) [000] ...1 24573.200452: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
46374           <...>-13214 (-----) [000] ...1 24573.200509: tracing_mark_write: E|13131
46375           <...>-13214 (-----) [000] ...1 24573.200512: tracing_mark_write: E|13131
46376           <...>-13214 (-----) [000] ...1 24573.200521: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
46377           <...>-13214 (-----) [000] ...1 24573.200525: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
46378           <...>-13214 (-----) [000] ...1 24573.200542: tracing_mark_write: E|13131
46379           <...>-13214 (-----) [000] ...1 24573.200545: tracing_mark_write: E|13131
46380           <...>-13214 (-----) [000] ...1 24573.200555: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
46381           <...>-13214 (-----) [000] ...1 24573.200559: tracing_mark_write: E|13131
46382           <...>-13214 (-----) [000] ...1 24573.200568: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
46383           <...>-13214 (-----) [000] ...1 24573.200573: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
46384 id.nn.benchmark-13155 (13131) [007] d.s2 24573.200890: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
46385           <...>-13154 (-----) [001] d.s2 24573.200901: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
46386           <...>-13214 (-----) [000] dnh1 24573.200908: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
46387           <...>-13154 (-----) [001] d.s3 24573.200911: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
46388           <...>-13214 (-----) [000] d..2 24573.200917: sched_switch: prev_comm=id.nn.benchmark prev_pid=13214 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
46389  crtc_event:111-254   (  254) [000] d..2 24573.200929: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
46390  kworker/u16:15-18488 (18488) [000] d..2 24573.201308: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13214 next_prio=110
46391 id.nn.benchmark-13158 (13131) [003] d.s2 24573.201344: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
46392 id.nn.benchmark-13158 (13131) [003] d.s3 24573.201354: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
46393 id.nn.benchmark-13158 (13131) [003] d.s3 24573.201360: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
46394           <...>-13214 (-----) [000] d..2 24573.201368: sched_switch: prev_comm=id.nn.benchmark prev_pid=13214 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
46395  kworker/u16:15-18488 (18488) [000] d..2 24573.201379: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13214 next_prio=110
46396           <...>-13214 (-----) [000] ...1 24573.201875: tracing_mark_write: E|13131
46397           <...>-13214 (-----) [000] ...1 24573.201879: tracing_mark_write: E|13131
46398           <...>-13214 (-----) [000] ...1 24573.201888: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
46399           <...>-13214 (-----) [000] ...1 24573.201892: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
46400 id.nn.benchmark-13156 (13131) [005] d.h1 24573.201967: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=005
46401           <...>-13214 (-----) [000] ...1 24573.201977: tracing_mark_write: E|13131
46402 id.nn.benchmark-13156 (13131) [005] d.h2 24573.201999: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
46403           <...>-13214 (-----) [000] dnh3 24573.202000: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
46404           <...>-13214 (-----) [000] .n.1 24573.202000: tracing_mark_write: E|13131
46405 id.nn.benchmark-13156 (13131) [005] d.h3 24573.202004: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
46406 id.nn.benchmark-13156 (13131) [005] d.h2 24573.202005: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
46407           <...>-13214 (-----) [000] d..2 24573.202007: sched_switch: prev_comm=id.nn.benchmark prev_pid=13214 prev_prio=110 prev_state=R+ ==> next_comm=DispSync next_pid=23904 next_prio=97
46408 id.nn.benchmark-13155 (13131) [007] d..2 24573.202010: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
46409         sugov:4-560   (  560) [007] d..2 24573.202014: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
46410 id.nn.benchmark-13158 (13131) [003] dnh1 24573.202016: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
46411 id.nn.benchmark-13158 (13131) [003] d..2 24573.202022: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
46412        DispSync-23904 (23896) [000] d..1 24573.202024: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
46413         sugov:0-559   (  559) [003] d..2 24573.202030: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
46414        DispSync-23904 (23896) [000] d..2 24573.202041: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
46415           <...>-13154 (-----) [001] d..2 24573.202049: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
46416        DispSync-23904 (23896) [000] d..2 24573.202055: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13214 next_prio=110
46417  appEventThread-23905 (23896) [001] d..3 24573.202091: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
46418           <...>-13214 (-----) [000] d..2 24573.202096: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
46419           <...>-13214 (-----) [000] d..3 24573.202109: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
46420  appEventThread-23905 (23896) [001] d..4 24573.202121: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
46421           <...>-13214 (-----) [000] d..2 24573.202126: sched_switch: prev_comm=id.nn.benchmark prev_pid=13214 prev_prio=110 prev_state=R+ ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
46422  appEventThread-23905 (23896) [001] d..2 24573.202142: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
46423<...>-24151 ( 24151) [000] .... 24573.202405: binder_transaction: transaction=1669840 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
46424<...>-24151 ( 24151) [000] d..4 24573.202412: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
46425 id.nn.benchmark-13156 (13131) [005] dnh1 24573.202436: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
46426 id.nn.benchmark-13156 (13131) [005] d..2 24573.202439: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
46427<...>-23903 ( 23896) [005] .... 24573.202442: binder_transaction_received: transaction=1669840
46428<...>-23903 ( 23896) [005] d..1 24573.202456: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
46429<...>-24151 ( 24151) [000] d..3 24573.202463: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
46430           <...>-13154 (-----) [001] dnh1 24573.202466: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
46431<...>-23903 ( 23896) [005] d..2 24573.202469: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
46432           <...>-13154 (-----) [001] d..2 24573.202471: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
46433 id.nn.benchmark-13155 (13131) [007] dnh1 24573.202485: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
46434  appEventThread-23905 (23896) [001] d..2 24573.202488: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
46435 id.nn.benchmark-13155 (13131) [007] d..2 24573.202488: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
46436<...>-24151 ( 24151) [000] d.h3 24573.202516: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
46437    RenderThread-24437 (24151) [007] d..2 24573.202517: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
46438<...>-24151 ( 24151) [000] d.h3 24573.202525: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
46439 id.nn.benchmark-13155 (13131) [007] dnh1 24573.202529: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
46440 id.nn.benchmark-13155 (13131) [007] d..2 24573.202532: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
46441<...>-24151 ( 24151) [000] d.h4 24573.202534: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
46442         sugov:4-560   (  560) [007] d..2 24573.202536: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
46443 id.nn.benchmark-13158 (13131) [003] d..2 24573.202541: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
46444         sugov:0-559   (  559) [003] d..2 24573.202547: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
46445<...>-24151 ( 24151) [000] d..3 24573.202627: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
46446 id.nn.benchmark-13155 (13131) [007] dnh1 24573.202641: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
46447 id.nn.benchmark-13155 (13131) [007] d..2 24573.202643: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
46448<...>-24151 ( 24151) [000] d..2 24573.202648: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
46449    RenderThread-24437 (24151) [007] d..1 24573.202692: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
46450     logd.writer-563   (  555) [000] d..2 24573.202702: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13214 next_prio=110
46451    RenderThread-24437 (24151) [007] d..2 24573.202711: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
46452           <...>-13214 (-----) [000] ...1 24573.202722: tracing_mark_write: E|13131
46453           <...>-13214 (-----) [000] d..1 24573.202728: sched_waking: comm=id.nn.benchmark pid=13213 prio=110 target_cpu=000
46454           <...>-13214 (-----) [000] dn.2 24573.202752: sched_wakeup: comm=id.nn.benchmark pid=13213 prio=110 target_cpu=000
46455    RenderThread-24437 (24151) [007] .... 24573.202755: binder_transaction: transaction=1669841 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
46456           <...>-13214 (-----) [000] d..2 24573.202757: sched_switch: prev_comm=id.nn.benchmark prev_pid=13214 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13213 next_prio=110
46457    RenderThread-24437 (24151) [007] d..4 24573.202757: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
46458    RenderThread-24437 (24151) [007] d..5 24573.202767: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
46459           <...>-13213 (-----) [000] d..2 24573.202771: sched_switch: prev_comm=id.nn.benchmark prev_pid=13213 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13214 next_prio=110
46460    RenderThread-24437 (24151) [007] d..2 24573.202771: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
46461 id.nn.benchmark-13156 (13131) [005] d..2 24573.202772: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
46462<...>-23903 ( 23896) [005] .... 24573.202774: binder_transaction_received: transaction=1669841
46463           <...>-13214 (-----) [000] ...1 24573.202787: tracing_mark_write: E|13131
46464<...>-23903 ( 23896) [005] .... 24573.202795: binder_transaction: transaction=1669842 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
46465<...>-24151 ( 24151) [007] d..2 24573.202797: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
46466<...>-23903 ( 23896) [005] d..2 24573.202799: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
46467<...>-23903 ( 23896) [005] d..3 24573.202807: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
46468 id.nn.benchmark-13155 (13131) [007] d..2 24573.202813: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
46469    RenderThread-24437 (24151) [007] .... 24573.202816: binder_transaction_received: transaction=1669842
46470<...>-23903 ( 23896) [005] d..2 24573.202816: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
46471           <...>-13214 (-----) [000] d..1 24573.202986: sched_waking: comm=id.nn.benchmark pid=13213 prio=110 target_cpu=000
46472           <...>-13214 (-----) [000] dn.2 24573.202995: sched_wakeup: comm=id.nn.benchmark pid=13213 prio=110 target_cpu=000
46473           <...>-13214 (-----) [000] d..2 24573.203000: sched_switch: prev_comm=id.nn.benchmark prev_pid=13214 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13213 next_prio=110
46474           <...>-13213 (-----) [000] d..2 24573.203055: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
46475           <...>-13213 (-----) [000] d..3 24573.203064: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
46476           <...>-13213 (-----) [000] d..1 24573.203118: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
46477    RenderThread-24437 (24151) [007] dnh1 24573.203164: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
46478           <...>-13213 (-----) [000] d.h3 24573.203164: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
46479    RenderThread-24437 (24151) [007] d..2 24573.203170: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
46480           <...>-13213 (-----) [000] d.h3 24573.203172: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
46481           <...>-13131 (-----) [007] dnh1 24573.203176: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
46482           <...>-13131 (-----) [007] d..2 24573.203179: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
46483           <...>-13213 (-----) [000] d.h4 24573.203181: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
46484         sugov:4-560   (  560) [007] d..2 24573.203183: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
46485 id.nn.benchmark-13158 (13131) [003] d..2 24573.203188: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
46486           <...>-13131 (-----) [007] d..2 24573.203190: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
46487         sugov:0-559   (  559) [003] d..2 24573.203194: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
46488           <...>-13213 (-----) [000] d..1 24573.203241: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
46489    RenderThread-24437 (24151) [007] dnh1 24573.203255: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
46490    RenderThread-24437 (24151) [007] d..2 24573.203258: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
46491           <...>-13131 (-----) [007] ...1 24573.203276: tracing_mark_write: E|13131
46492           <...>-13131 (-----) [007] ...1 24573.203280: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
46493           <...>-13131 (-----) [007] ...1 24573.203283: tracing_mark_write: E|13131
46494           <...>-13131 (-----) [007] ...1 24573.203284: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
46495           <...>-13131 (-----) [007] ...1 24573.203286: tracing_mark_write: E|13131
46496           <...>-13213 (-----) [000] d..2 24573.203311: sched_switch: prev_comm=id.nn.benchmark prev_pid=13213 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13214 next_prio=110
46497           <...>-13214 (-----) [000] d..2 24573.203345: sched_switch: prev_comm=id.nn.benchmark prev_pid=13214 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
46498           <...>-13131 (-----) [007] ...1 24573.203350: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
46499           <...>-13131 (-----) [007] ...1 24573.203375: tracing_mark_write: E|13131
46500           <...>-13131 (-----) [007] ...1 24573.203377: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
46501           <...>-13131 (-----) [007] ...1 24573.203379: tracing_mark_write: E|13131
46502           <...>-13131 (-----) [007] ...1 24573.203381: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
46503           <...>-13131 (-----) [007] ...1 24573.203383: tracing_mark_write: E|13131
46504           <...>-13131 (-----) [007] ...1 24573.203385: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
46505     logd.writer-563   (  555) [000] d..2 24573.203429: 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
46506           <...>-13131 (-----) [007] ...1 24573.203451: tracing_mark_write: E|13131
46507           <...>-13131 (-----) [007] ...1 24573.203453: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
46508          <idle>-0     (-----) [000] d..2 24573.203457: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13215 next_prio=110
46509           <...>-13131 (-----) [007] d..2 24573.203458: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
46510           <...>-13215 (-----) [000] d..2 24573.203513: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
46511           <...>-13215 (-----) [000] d..3 24573.203522: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
46512    RenderThread-24437 (24151) [007] d..2 24573.203678: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
46513 id.nn.benchmark-13155 (13131) [007] d.h1 24573.203777: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
46514 id.nn.benchmark-13155 (13131) [007] d.h2 24573.203782: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
46515 id.nn.benchmark-13155 (13131) [007] dnh2 24573.203784: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
46516 id.nn.benchmark-13155 (13131) [007] d..2 24573.203788: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
46517           <...>-13215 (-----) [000] d..2 24573.203804: sched_switch: prev_comm=id.nn.benchmark prev_pid=13215 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
46518    RenderThread-24437 (24151) [007] .... 24573.203866: binder_transaction: transaction=1669843 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
46519    RenderThread-24437 (24151) [007] d..4 24573.203870: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
46520    RenderThread-24437 (24151) [007] d..5 24573.203881: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
46521    RenderThread-24437 (24151) [007] d..2 24573.203885: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
46522 id.nn.benchmark-13156 (13131) [005] d..2 24573.203887: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
46523<...>-23903 ( 23896) [005] .... 24573.203888: binder_transaction_received: transaction=1669843
46524     logd.writer-563   (  555) [000] d.h2 24573.203905: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
46525     logd.writer-563   (  555) [000] dnh3 24573.203916: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
46526     logd.writer-563   (  555) [000] d..2 24573.203928: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
46527<...>-23903 ( 23896) [005] .... 24573.203935: binder_transaction: transaction=1669844 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
46528<...>-23903 ( 23896) [005] d..2 24573.203936: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
46529<...>-23903 ( 23896) [005] d..3 24573.203944: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
46530 id.nn.benchmark-13155 (13131) [007] d..2 24573.203950: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
46531    RenderThread-24437 (24151) [007] .... 24573.203953: binder_transaction_received: transaction=1669844
46532<...>-23903 ( 23896) [005] d..2 24573.203953: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
46533 kgsl_worker_thr-246   (  246) [000] d..2 24573.203962: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
46534 kgsl_worker_thr-246   (  246) [000] d..3 24573.203972: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
46535    RenderThread-24437 (24151) [007] d..2 24573.203977: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
46536 kgsl_worker_thr-246   (  246) [000] d..2 24573.203984: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
46537  kworker/u16:15-18488 (18488) [000] d..2 24573.204011: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
46538     logd.writer-563   (  555) [000] d..2 24573.204142: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13216 next_prio=110
46539           <...>-13216 (-----) [000] d.h4 24573.204173: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
46540           <...>-13216 (-----) [000] d.h4 24573.204181: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
46541 id.nn.benchmark-13155 (13131) [007] dnh1 24573.204184: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
46542 id.nn.benchmark-13155 (13131) [007] d..2 24573.204187: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
46543         sugov:4-560   (  560) [007] d..2 24573.204191: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
46544           <...>-13216 (-----) [000] dnh5 24573.204191: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
46545           <...>-13216 (-----) [000] d..2 24573.204198: sched_switch: prev_comm=id.nn.benchmark prev_pid=13216 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
46546         sugov:0-559   (  559) [000] d..2 24573.204205: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13216 next_prio=110
46547           <...>-13154 (-----) [001] d.s2 24573.204232: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
46548           <...>-13154 (-----) [001] d.s3 24573.204249: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
46549           <...>-13216 (-----) [000] d..2 24573.204255: sched_switch: prev_comm=id.nn.benchmark prev_pid=13216 prev_prio=110 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
46550     rcu_preempt-7     (    7) [000] d..2 24573.204263: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
46551     rcu_preempt-7     (    7) [000] d..3 24573.204281: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
46552     rcu_preempt-7     (    7) [000] d..2 24573.204291: 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
46553         rcuop/2-29    (   29) [000] d..2 24573.204295: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
46554         rcuop/2-29    (   29) [000] d..3 24573.204305: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
46555         rcuop/2-29    (   29) [000] d..2 24573.204312: 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
46556         rcuop/3-37    (   37) [000] d..2 24573.204323: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13216 next_prio=110
46557           <...>-13216 (-----) [000] ...1 24573.204326: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
46558           <...>-13216 (-----) [000] ...1 24573.204332: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
46559           <...>-13216 (-----) [000] d..2 24573.204392: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
46560           <...>-13216 (-----) [000] d..3 24573.204400: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
46561           <...>-13216 (-----) [000] ...1 24573.204470: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
46562           <...>-13216 (-----) [000] ...1 24573.204475: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
46563           <...>-13216 (-----) [000] d.h1 24573.205992: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
46564 id.nn.benchmark-13155 (13131) [007] dnh1 24573.206015: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=007
46565 id.nn.benchmark-13155 (13131) [007] d..2 24573.206040: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
46566           <...>-13216 (-----) [000] d.h2 24573.206040: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
46567        DispSync-23904 (23896) [007] d..1 24573.206049: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
46568           <...>-13216 (-----) [000] d.h2 24573.206051: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
46569 id.nn.benchmark-13160 (13131) [004] dnh1 24573.206054: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
46570           <...>-13216 (-----) [000] dnh3 24573.206057: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
46571 id.nn.benchmark-13160 (13131) [004] d..2 24573.206057: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
46572         sugov:4-560   (  560) [004] d..2 24573.206061: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
46573           <...>-13154 (-----) [001] dnh1 24573.206061: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
46574        DispSync-23904 (23896) [007] d..2 24573.206062: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
46575           <...>-13216 (-----) [000] d..2 24573.206063: sched_switch: prev_comm=id.nn.benchmark prev_pid=13216 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
46576           <...>-13154 (-----) [001] d..2 24573.206066: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
46577         sugov:0-559   (  559) [000] d..2 24573.206071: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
46578   sfEventThread-23906 (23896) [001] d..3 24573.206089: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
46579   sfEventThread-23906 (23896) [001] d..4 24573.206101: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
46580 id.nn.benchmark-13158 (13131) [003] d..2 24573.206109: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
46581   sfEventThread-23906 (23896) [001] d..2 24573.206112: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
46582  surfaceflinger-23896 (23896) [003] d..1 24573.206336: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
46583  surfaceflinger-23896 (23896) [003] d..2 24573.206348: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
46584           <...>-13154 (-----) [001] d..2 24573.206356: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
46585           <...>-13157 (-----) [006] d..3 24573.206361: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
46586   sfEventThread-23906 (23896) [001] d..2 24573.206368: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
46587           <...>-13157 (-----) [006] d..2 24573.206368: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
46588 id.nn.benchmark-13159 (13131) [002] dnh1 24573.206372: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
46589 id.nn.benchmark-13160 (13131) [004] d..2 24573.206376: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
46590          <idle>-0     (-----) [006] d..1 24573.206376: cpu_idle: state=0 cpu_id=6
46591 id.nn.benchmark-13159 (13131) [002] d..2 24573.206378: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
46592          <idle>-0     (-----) [004] d..1 24573.206380: cpu_idle: state=0 cpu_id=4
46593          <idle>-0     (-----) [006] .n.1 24573.206404: cpu_idle: state=4294967295 cpu_id=6
46594          <idle>-0     (-----) [006] d..2 24573.206421: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
46595     migration/2-25    (   25) [002] d..2 24573.206438: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13216 next_prio=110
46596  surfaceflinger-23896 (23896) [003] ...1 24573.206469: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
46597  surfaceflinger-23896 (23896) [003] ...1 24573.206473: tracing_mark_write: E|23896
46598  surfaceflinger-23896 (23896) [003] .... 24573.206513: binder_transaction: transaction=1669845 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
46599  surfaceflinger-23896 (23896) [003] ...2 24573.206530: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
46600  surfaceflinger-23896 (23896) [003] d..4 24573.206537: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
46601  surfaceflinger-23896 (23896) [003] d..5 24573.206551: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
46602           <...>-13216 (-----) [002] d..2 24573.206559: sched_switch: prev_comm=id.nn.benchmark prev_pid=13216 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
46603  surfaceflinger-23896 (23896) [003] d..2 24573.206563: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
46604  HwBinder:598_3-633   (  598) [002] .... 24573.206565: binder_transaction_received: transaction=1669845
46605 id.nn.benchmark-13156 (13131) [005] d..3 24573.206569: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
46606          <idle>-0     (-----) [004] ...1 24573.206570: cpu_idle: state=4294967295 cpu_id=4
46607          <idle>-0     (-----) [004] d..1 24573.206571: cpu_idle: state=0 cpu_id=4
46608 id.nn.benchmark-13156 (13131) [005] d..2 24573.206576: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
46609           <...>-13154 (-----) [001] dnh1 24573.206579: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
46610          <idle>-0     (-----) [005] d..1 24573.206582: cpu_idle: state=0 cpu_id=5
46611           <...>-13154 (-----) [001] d..2 24573.206583: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
46612  HwBinder:598_3-633   (  598) [002] ...1 24573.206601: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
46613          <idle>-0     (-----) [005] .n.1 24573.206606: cpu_idle: state=4294967295 cpu_id=5
46614          <idle>-0     (-----) [005] d..2 24573.206627: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
46615     migration/1-17    (   17) [001] d.h3 24573.206628: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
46616     migration/1-17    (   17) [001] d.h3 24573.206635: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
46617          <idle>-0     (-----) [004] dnh2 24573.206640: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
46618          <idle>-0     (-----) [004] .n.1 24573.206642: cpu_idle: state=4294967295 cpu_id=4
46619          <idle>-0     (-----) [004] d..2 24573.206644: 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
46620     migration/1-17    (   17) [001] d.h4 24573.206645: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
46621         sugov:4-560   (  560) [004] d..3 24573.206649: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
46622     migration/1-17    (   17) [001] d..2 24573.206651: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
46623         sugov:4-560   (  560) [004] d..2 24573.206657: 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
46624          <idle>-0     (-----) [004] d..1 24573.206659: cpu_idle: state=0 cpu_id=4
46625 id.nn.benchmark-13158 (13131) [003] dnh1 24573.206661: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
46626         sugov:0-559   (  559) [001] d..2 24573.206664: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46627 id.nn.benchmark-13158 (13131) [003] d..2 24573.206666: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
46628          <idle>-0     (-----) [001] d..1 24573.206675: cpu_idle: state=0 cpu_id=1
46629  HwBinder:598_3-633   (  598) [002] ...1 24573.206676: tracing_mark_write: B|598|HWCSession::PresentDisplay::
46630          <idle>-0     (-----) [004] .n.1 24573.206690: cpu_idle: state=4294967295 cpu_id=4
46631          <idle>-0     (-----) [004] d..2 24573.206709: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
46632<...>-33 ( 33) [003] d..2 24573.206726: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13216 next_prio=110
46633           <...>-13216 (-----) [003] d..1 24573.206779: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=005
46634  HwBinder:598_3-633   (  598) [002] ...1 24573.206785: tracing_mark_write: B|598|HWDeviceDRM::Commit::
46635           <...>-13216 (-----) [003] d..1 24573.206791: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=006
46636           <...>-13154 (-----) [005] d.h1 24573.206792: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=005
46637  HwBinder:598_3-633   (  598) [002] ...1 24573.206792: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
46638           <...>-13216 (-----) [003] d..1 24573.206801: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=004
46639 id.nn.benchmark-13159 (13131) [006] d.h1 24573.206802: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=006
46640 id.nn.benchmark-13158 (13131) [004] d.h1 24573.206812: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=004
46641     logd.writer-563   (  555) [000] d..2 24573.206868: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
46642  HwBinder:598_3-633   (  598) [002] d..2 24573.207174: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
46643  HwBinder:598_3-633   (  598) [002] d..3 24573.207192: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
46644          <idle>-0     (-----) [001] .n.1 24573.207198: cpu_idle: state=4294967295 cpu_id=1
46645          <idle>-0     (-----) [001] d..2 24573.207203: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
46646  HwBinder:598_3-633   (  598) [002] ...1 24573.207251: tracing_mark_write: E|598
46647  HwBinder:598_3-633   (  598) [002] ...1 24573.207254: tracing_mark_write: E|598
46648  HwBinder:598_3-633   (  598) [002] ...1 24573.207294: tracing_mark_write: E|598
46649  HwBinder:598_3-633   (  598) [002] ...1 24573.207328: tracing_mark_write: E|598
46650  HwBinder:598_3-633   (  598) [002] .... 24573.207338: binder_transaction: transaction=1669846 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
46651  HwBinder:598_3-633   (  598) [002] d..2 24573.207350: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
46652  HwBinder:598_3-633   (  598) [002] d..3 24573.207360: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
46653  HwBinder:598_3-633   (  598) [002] .... 24573.207363: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
46654           <...>-13216 (-----) [003] d..2 24573.207369: sched_switch: prev_comm=id.nn.benchmark prev_pid=13216 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
46655  surfaceflinger-23896 (23896) [003] .... 24573.207375: binder_transaction_received: transaction=1669846
46656  HwBinder:598_3-633   (  598) [002] d..2 24573.207424: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
46657           <...>-13157 (-----) [002] d.h4 24573.207453: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
46658           <...>-13157 (-----) [002] d.h4 24573.207465: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
46659 id.nn.benchmark-13159 (13131) [006] dnh1 24573.207468: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
46660 id.nn.benchmark-13159 (13131) [006] d..2 24573.207471: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
46661           <...>-13157 (-----) [002] dnh5 24573.207474: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
46662         sugov:4-560   (  560) [006] d..2 24573.207475: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
46663           <...>-13157 (-----) [002] d..2 24573.207480: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
46664         sugov:0-559   (  559) [002] d..2 24573.207487: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
46665 id.nn.benchmark-13155 (13131) [007] d.s2 24573.207557: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
46666 crtc_commit:111-253   (  253) [001] d.h1 24573.207576: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
46667  surfaceflinger-23896 (23896) [003] d..2 24573.207651: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13216 next_prio=110
46668 crtc_commit:111-253   (  253) [001] d..2 24573.207829: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
46669  kworker/u16:15-18488 (18488) [001] d..2 24573.207930: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46670          <idle>-0     (-----) [001] d..1 24573.207937: cpu_idle: state=0 cpu_id=1
46671          <idle>-0     (-----) [001] ...1 24573.209436: cpu_idle: state=4294967295 cpu_id=1
46672          <idle>-0     (-----) [001] d..1 24573.209439: cpu_idle: state=0 cpu_id=1
46673 id.nn.benchmark-13155 (13131) [007] d.s2 24573.210885: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
46674 id.nn.benchmark-13160 (13131) [000] d.s1 24573.210892: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
46675           <...>-13216 (-----) [003] dnh1 24573.210909: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
46676          <idle>-0     (-----) [001] ...1 24573.210911: cpu_idle: state=4294967295 cpu_id=1
46677 id.nn.benchmark-13160 (13131) [000] d.s2 24573.210913: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
46678          <idle>-0     (-----) [001] d..1 24573.210914: cpu_idle: state=0 cpu_id=1
46679           <...>-13216 (-----) [003] d..2 24573.210919: sched_switch: prev_comm=id.nn.benchmark prev_pid=13216 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
46680  kworker/u16:15-18488 (18488) [003] .... 24573.211071: clk_set_rate: l3_cluster1_vote_clk 1478400000
46681  kworker/u16:15-18488 (18488) [003] .... 24573.211077: clk_set_rate: l3_clk 1478400000
46682  kworker/u16:15-18488 (18488) [003] d..2 24573.211190: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
46683     rcu_preempt-7     (    7) [003] d..2 24573.211197: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
46684     rcu_preempt-7     (    7) [003] d..3 24573.211220: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
46685     rcu_preempt-7     (    7) [003] d..2 24573.211229: 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
46686         rcuop/0-10    (   10) [003] d..2 24573.211263: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13216 next_prio=110
46687           <...>-13154 (-----) [005] d..2 24573.211335: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
46688 id.nn.benchmark-13158 (13131) [004] d..3 24573.211354: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
46689 id.nn.benchmark-13158 (13131) [004] d..2 24573.211361: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
46690 id.nn.benchmark-13160 (13131) [000] dnh1 24573.211364: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
46691          <idle>-0     (-----) [004] d..1 24573.211365: cpu_idle: state=0 cpu_id=4
46692 id.nn.benchmark-13159 (13131) [006] d..2 24573.211367: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
46693 id.nn.benchmark-13160 (13131) [000] d..2 24573.211370: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
46694          <idle>-0     (-----) [006] d..1 24573.211371: cpu_idle: state=0 cpu_id=6
46695 id.nn.benchmark-13155 (13131) [007] d..2 24573.211383: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
46696 id.nn.benchmark-13160 (13131) [007] d.h4 24573.211402: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
46697     migration/0-13    (   13) [000] d..2 24573.211407: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46698 id.nn.benchmark-13160 (13131) [007] d.h5 24573.211408: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
46699 id.nn.benchmark-13160 (13131) [007] d.h4 24573.211409: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
46700          <idle>-0     (-----) [006] .n.1 24573.211413: cpu_idle: state=4294967295 cpu_id=6
46701          <idle>-0     (-----) [006] d..2 24573.211416: 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
46702          <idle>-0     (-----) [000] d..1 24573.211420: cpu_idle: state=0 cpu_id=0
46703         sugov:4-560   (  560) [006] d..3 24573.211420: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
46704         sugov:4-560   (  560) [006] d..2 24573.211426: 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
46705          <idle>-0     (-----) [006] d..1 24573.211428: cpu_idle: state=0 cpu_id=6
46706          <idle>-0     (-----) [000] dnh2 24573.211429: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
46707           <...>-13157 (-----) [002] dnh1 24573.211430: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
46708          <idle>-0     (-----) [000] .n.1 24573.211433: cpu_idle: state=4294967295 cpu_id=0
46709           <...>-13157 (-----) [002] d..2 24573.211435: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
46710          <idle>-0     (-----) [000] d..2 24573.211438: 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
46711         sugov:0-559   (  559) [000] d..2 24573.211450: 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
46712          <idle>-0     (-----) [000] d..1 24573.211456: cpu_idle: state=0 cpu_id=0
46713           <...>-13216 (-----) [003] ...1 24573.211456: tracing_mark_write: E|13131
46714          <idle>-0     (-----) [006] .n.1 24573.211457: cpu_idle: state=4294967295 cpu_id=6
46715           <...>-13216 (-----) [003] ...1 24573.211461: tracing_mark_write: E|13131
46716          <idle>-0     (-----) [006] d..2 24573.211475: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
46717           <...>-13216 (-----) [003] ...1 24573.211478: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
46718           <...>-13216 (-----) [003] ...1 24573.211483: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
46719     migration/2-25    (   25) [002] d..2 24573.211485: 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
46720          <idle>-0     (-----) [002] d..1 24573.211496: cpu_idle: state=0 cpu_id=2
46721          <idle>-0     (-----) [004] ...1 24573.211558: cpu_idle: state=4294967295 cpu_id=4
46722          <idle>-0     (-----) [004] d..1 24573.211559: cpu_idle: state=0 cpu_id=4
46723           <...>-13216 (-----) [003] d..1 24573.211973: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
46724           <...>-13216 (-----) [003] d..1 24573.211990: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=007
46725          <idle>-0     (-----) [004] dnh2 24573.211992: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
46726          <idle>-0     (-----) [004] .n.1 24573.211994: cpu_idle: state=4294967295 cpu_id=4
46727          <idle>-0     (-----) [004] d..2 24573.211997: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
46728 id.nn.benchmark-13160 (13131) [007] d.h1 24573.212002: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=007
46729           <...>-13216 (-----) [003] d..1 24573.212002: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
46730           <...>-13216 (-----) [003] d..1 24573.212011: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=006
46731           <...>-13154 (-----) [004] dnh1 24573.212012: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
46732           <...>-13154 (-----) [004] d..2 24573.212015: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
46733           <...>-13157 (-----) [006] d.h1 24573.212021: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=006
46734          <idle>-0     (-----) [000] ...1 24573.212570: cpu_idle: state=4294967295 cpu_id=0
46735          <idle>-0     (-----) [000] d..1 24573.212573: cpu_idle: state=0 cpu_id=0
46736          <idle>-0     (-----) [000] d.h5 24573.213964: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
46737          <idle>-0     (-----) [000] dnh6 24573.213973: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
46738          <idle>-0     (-----) [000] dnh5 24573.213976: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
46739          <idle>-0     (-----) [000] dnh6 24573.213984: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
46740          <idle>-0     (-----) [001] .n.1 24573.213988: cpu_idle: state=4294967295 cpu_id=1
46741          <idle>-0     (-----) [000] .n.1 24573.213994: cpu_idle: state=4294967295 cpu_id=0
46742          <idle>-0     (-----) [001] d..2 24573.213995: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
46743          <idle>-0     (-----) [000] d..2 24573.213999: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
46744  crtc_event:111-254   (  254) [000] d..2 24573.214034: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
46745           <...>-13154 (-----) [000] d.h4 24573.214062: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
46746           <...>-13154 (-----) [000] d.h4 24573.214073: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
46747 id.nn.benchmark-13158 (13131) [004] dnh1 24573.214077: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
46748 id.nn.benchmark-13158 (13131) [004] d..2 24573.214079: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
46749         sugov:4-560   (  560) [004] d..2 24573.214082: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
46750           <...>-13154 (-----) [000] d.h5 24573.214085: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
46751          <idle>-0     (-----) [002] .n.1 24573.214090: cpu_idle: state=4294967295 cpu_id=2
46752          <idle>-0     (-----) [002] d..2 24573.214096: 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
46753 crtc_commit:111-253   (  253) [001] d..2 24573.214113: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
46754          <idle>-0     (-----) [001] d..1 24573.214118: cpu_idle: state=0 cpu_id=1
46755         sugov:0-559   (  559) [002] d..2 24573.214122: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
46756          <idle>-0     (-----) [001] d.s3 24573.214228: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
46757          <idle>-0     (-----) [001] dns4 24573.214240: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
46758          <idle>-0     (-----) [001] .n.1 24573.214245: cpu_idle: state=4294967295 cpu_id=1
46759          <idle>-0     (-----) [001] d..2 24573.214249: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
46760  crtc_event:111-254   (  254) [001] d..2 24573.214278: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
46761           <...>-13216 (-----) [003] ...1 24573.214534: tracing_mark_write: E|13131
46762           <...>-13216 (-----) [003] ...1 24573.214538: tracing_mark_write: E|13131
46763           <...>-13216 (-----) [003] ...1 24573.214561: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
46764           <...>-13216 (-----) [003] ...1 24573.214566: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
46765           <...>-13216 (-----) [003] ...1 24573.214906: tracing_mark_write: E|13131
46766           <...>-13216 (-----) [003] ...1 24573.214910: tracing_mark_write: E|13131
46767           <...>-13216 (-----) [003] ...1 24573.214922: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
46768           <...>-13216 (-----) [003] ...1 24573.214927: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
46769           <...>-13216 (-----) [003] ...1 24573.215164: tracing_mark_write: E|13131
46770           <...>-13216 (-----) [003] ...1 24573.215168: tracing_mark_write: E|13131
46771           <...>-13216 (-----) [003] ...1 24573.215179: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
46772           <...>-13216 (-----) [003] ...1 24573.215184: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
46773           <...>-13216 (-----) [003] ...1 24573.215585: tracing_mark_write: E|13131
46774           <...>-13216 (-----) [003] ...1 24573.215589: tracing_mark_write: E|13131
46775           <...>-13216 (-----) [003] ...1 24573.215601: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
46776           <...>-13216 (-----) [003] ...1 24573.215605: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
46777           <...>-13216 (-----) [003] ...1 24573.216002: tracing_mark_write: E|13131
46778           <...>-13216 (-----) [003] ...1 24573.216006: tracing_mark_write: E|13131
46779           <...>-13216 (-----) [003] ...1 24573.216026: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
46780           <...>-13216 (-----) [003] ...1 24573.216031: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
46781           <...>-13216 (-----) [003] d..2 24573.216088: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=005
46782 id.nn.benchmark-13156 (13131) [005] d..3 24573.216091: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
46783 id.nn.benchmark-13156 (13131) [005] d..2 24573.216098: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=D|K ==> next_comm=swapper/5 next_pid=0 next_prio=120
46784           <...>-13154 (-----) [000] dnh1 24573.216101: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
46785          <idle>-0     (-----) [005] d..1 24573.216102: cpu_idle: state=0 cpu_id=5
46786           <...>-13154 (-----) [000] d..2 24573.216108: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
46787          <idle>-0     (-----) [005] d.h2 24573.216114: sched_blocked_reason: pid=13156 iowait=1 caller=__lock_page_or_retry+0x26c/0x2c4
46788          <idle>-0     (-----) [005] dnh2 24573.216115: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=005
46789          <idle>-0     (-----) [005] .n.1 24573.216125: cpu_idle: state=4294967295 cpu_id=5
46790          <idle>-0     (-----) [005] d..2 24573.216128: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
46791     migration/0-13    (   13) [000] d.h3 24573.216155: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
46792     migration/0-13    (   13) [000] d.h3 24573.216162: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
46793 id.nn.benchmark-13158 (13131) [004] dnh1 24573.216165: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
46794 id.nn.benchmark-13158 (13131) [004] d..2 24573.216168: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
46795         sugov:4-560   (  560) [004] d..2 24573.216171: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
46796     migration/0-13    (   13) [000] d.h4 24573.216172: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
46797     migration/0-13    (   13) [000] d..2 24573.216178: 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
46798         sugov:0-559   (  559) [000] d..2 24573.216203: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
46799           <...>-13154 (-----) [000] d.h4 24573.216306: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
46800           <...>-13154 (-----) [000] d.h5 24573.216319: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
46801           <...>-13216 (-----) [003] d..2 24573.216329: sched_switch: prev_comm=id.nn.benchmark prev_pid=13216 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
46802 crtc_commit:111-253   (  253) [003] d..2 24573.216370: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13216 next_prio=110
46803           <...>-13216 (-----) [003] ...1 24573.216452: tracing_mark_write: E|13131
46804           <...>-13216 (-----) [003] ...1 24573.216456: tracing_mark_write: E|13131
46805           <...>-13216 (-----) [003] ...1 24573.216471: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
46806           <...>-13216 (-----) [003] ...1 24573.216475: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
46807           <...>-13154 (-----) [000] d.h4 24573.216595: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
46808           <...>-13154 (-----) [000] d.h5 24573.216608: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
46809           <...>-13216 (-----) [003] d..2 24573.216618: sched_switch: prev_comm=id.nn.benchmark prev_pid=13216 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
46810  crtc_event:111-254   (  254) [003] d..2 24573.216629: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13216 next_prio=110
46811           <...>-13216 (-----) [003] ...1 24573.216635: tracing_mark_write: E|13131
46812           <...>-13216 (-----) [003] ...1 24573.216639: tracing_mark_write: E|13131
46813           <...>-13216 (-----) [003] ...1 24573.216651: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
46814           <...>-13216 (-----) [003] ...1 24573.216656: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
46815           <...>-13216 (-----) [003] ...1 24573.216970: tracing_mark_write: E|13131
46816           <...>-13216 (-----) [003] ...1 24573.216973: tracing_mark_write: E|13131
46817           <...>-13216 (-----) [003] ...1 24573.216983: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
46818           <...>-13216 (-----) [003] ...1 24573.216987: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
46819           <...>-13216 (-----) [003] ...1 24573.217041: tracing_mark_write: E|13131
46820           <...>-13216 (-----) [003] ...1 24573.217044: tracing_mark_write: E|13131
46821           <...>-13216 (-----) [003] ...1 24573.217052: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
46822           <...>-13216 (-----) [003] ...1 24573.217056: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
46823           <...>-13216 (-----) [003] ...1 24573.217074: tracing_mark_write: E|13131
46824           <...>-13216 (-----) [003] ...1 24573.217077: tracing_mark_write: E|13131
46825           <...>-13216 (-----) [003] ...1 24573.217087: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
46826           <...>-13216 (-----) [003] ...1 24573.217090: tracing_mark_write: E|13131
46827           <...>-13216 (-----) [003] ...1 24573.217099: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
46828           <...>-13216 (-----) [003] ...1 24573.217103: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
46829           <...>-13216 (-----) [003] d.s1 24573.217577: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
46830 id.nn.benchmark-13160 (13131) [007] d.H2 24573.217583: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
46831           <...>-13216 (-----) [003] dns2 24573.217588: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
46832 id.nn.benchmark-13160 (13131) [007] d.H3 24573.217589: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
46833 id.nn.benchmark-13160 (13131) [007] d.H2 24573.217589: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
46834           <...>-13216 (-----) [003] d..2 24573.217594: sched_switch: prev_comm=id.nn.benchmark prev_pid=13216 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
46835 id.nn.benchmark-13158 (13131) [004] d..2 24573.217595: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
46836         sugov:4-560   (  560) [004] d..2 24573.217599: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
46837     rcu_preempt-7     (    7) [003] d..2 24573.217603: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13216 next_prio=110
46838 id.nn.benchmark-13160 (13131) [007] d.s2 24573.217605: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
46839           <...>-13216 (-----) [003] dnh3 24573.217610: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
46840 id.nn.benchmark-13160 (13131) [007] d.s2 24573.217611: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
46841           <...>-13216 (-----) [003] d..2 24573.217614: sched_switch: prev_comm=id.nn.benchmark prev_pid=13216 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
46842         sugov:0-559   (  559) [003] d.h3 24573.217620: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
46843         sugov:0-559   (  559) [003] d.h2 24573.217625: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
46844         sugov:0-559   (  559) [003] d..2 24573.217632: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
46845  kworker/u16:15-18488 (18488) [003] .... 24573.217708: clk_set_rate: l3_cluster0_vote_clk 300000000
46846  kworker/u16:15-18488 (18488) [003] d..2 24573.217719: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
46847     rcu_preempt-7     (    7) [003] d..2 24573.217722: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
46848     rcu_preempt-7     (    7) [003] d..3 24573.217736: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
46849     rcu_preempt-7     (    7) [003] d..2 24573.217744: 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
46850         rcuop/2-29    (   29) [003] d..2 24573.217747: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
46851         rcuop/2-29    (   29) [003] d..3 24573.217760: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
46852         rcuop/2-29    (   29) [003] d..2 24573.217766: 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
46853         rcuop/3-37    (   37) [003] d..2 24573.217776: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13216 next_prio=110
46854           <...>-13216 (-----) [003] ...1 24573.218193: tracing_mark_write: E|13131
46855           <...>-13216 (-----) [003] ...1 24573.218196: tracing_mark_write: E|13131
46856           <...>-13216 (-----) [003] ...1 24573.218206: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
46857           <...>-13216 (-----) [003] ...1 24573.218209: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
46858           <...>-13216 (-----) [003] ...1 24573.218293: tracing_mark_write: E|13131
46859           <...>-13216 (-----) [003] ...1 24573.218296: tracing_mark_write: E|13131
46860           <...>-13216 (-----) [003] d..2 24573.218340: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
46861           <...>-13216 (-----) [003] d..3 24573.218352: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
46862           <...>-13216 (-----) [003] ...1 24573.218372: tracing_mark_write: E|13131
46863           <...>-13216 (-----) [003] d..1 24573.218377: sched_waking: comm=id.nn.benchmark pid=13215 prio=110 target_cpu=000
46864 id.nn.benchmark-13158 (13131) [004] dnh1 24573.218399: sched_wakeup: comm=id.nn.benchmark pid=13215 prio=110 target_cpu=004
46865 id.nn.benchmark-13158 (13131) [004] d..2 24573.218423: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13215 next_prio=110
46866           <...>-13216 (-----) [003] d.h3 24573.218424: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
46867           <...>-13215 (-----) [004] d..2 24573.218431: sched_switch: prev_comm=id.nn.benchmark prev_pid=13215 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
46868           <...>-13216 (-----) [003] d.h3 24573.218432: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
46869 id.nn.benchmark-13158 (13131) [004] dnh1 24573.218435: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
46870 id.nn.benchmark-13158 (13131) [004] d..2 24573.218438: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
46871           <...>-13216 (-----) [003] dnh4 24573.218438: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
46872         sugov:4-560   (  560) [004] d..2 24573.218440: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
46873           <...>-13216 (-----) [003] d..2 24573.218444: sched_switch: prev_comm=id.nn.benchmark prev_pid=13216 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
46874 id.nn.benchmark-13160 (13131) [007] d.h1 24573.218444: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=007
46875         sugov:0-559   (  559) [003] d..2 24573.218450: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
46876 id.nn.benchmark-13160 (13131) [007] d.h2 24573.218452: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=004
46877 id.nn.benchmark-13158 (13131) [004] d..2 24573.218458: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
46878        DispSync-23904 (23896) [004] d..1 24573.218465: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
46879 id.nn.benchmark-13159 (13131) [001] dnh1 24573.218478: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
46880        DispSync-23904 (23896) [004] d..2 24573.218478: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
46881 id.nn.benchmark-13159 (13131) [001] d..2 24573.218484: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
46882     logd.writer-563   (  555) [003] d..2 24573.218494: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13216 next_prio=110
46883           <...>-13216 (-----) [003] ...1 24573.218512: tracing_mark_write: E|13131
46884  appEventThread-23905 (23896) [001] d..3 24573.218516: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
46885 id.nn.benchmark-13160 (13131) [007] dnh1 24573.218532: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
46886 id.nn.benchmark-13160 (13131) [007] d..2 24573.218535: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
46887  appEventThread-23905 (23896) [001] d..2 24573.218542: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
46888           <...>-13216 (-----) [003] d..1 24573.218708: sched_waking: comm=id.nn.benchmark pid=13215 prio=110 target_cpu=004
46889 id.nn.benchmark-13158 (13131) [004] dnh1 24573.218723: sched_wakeup: comm=id.nn.benchmark pid=13215 prio=110 target_cpu=004
46890<...>-24151 ( 24151) [007] .... 24573.218724: binder_transaction: transaction=1669847 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
46891 id.nn.benchmark-13158 (13131) [004] d..2 24573.218726: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13215 next_prio=110
46892<...>-24151 ( 24151) [007] d..4 24573.218728: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
46893<...>-24151 ( 24151) [007] d..5 24573.218744: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
46894 id.nn.benchmark-13156 (13131) [005] d..2 24573.218750: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
46895<...>-23903 ( 23896) [005] .... 24573.218753: binder_transaction_received: transaction=1669847
46896<...>-24151 ( 24151) [007] d..3 24573.218759: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
46897           <...>-13215 (-----) [004] d..2 24573.218764: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
46898<...>-23903 ( 23896) [005] d..1 24573.218765: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
46899<...>-24151 ( 24151) [007] d..4 24573.218769: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
46900<...>-23903 ( 23896) [005] d..2 24573.218782: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
46901           <...>-13216 (-----) [003] d..2 24573.218796: sched_switch: prev_comm=id.nn.benchmark prev_pid=13216 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
46902           <...>-13215 (-----) [004] d..1 24573.218799: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
46903 id.nn.benchmark-13158 (13131) [003] dnh3 24573.218802: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
46904 id.nn.benchmark-13158 (13131) [003] dnh3 24573.218805: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
46905           <...>-13215 (-----) [004] d..2 24573.218811: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
46906<...>-24151 ( 24151) [007] d..2 24573.218832: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
46907 id.nn.benchmark-13158 (13131) [003] d..2 24573.218838: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
46908           <...>-13131 (-----) [007] d..2 24573.218841: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
46909           <...>-13215 (-----) [004] d..1 24573.218860: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
46910<...>-24151 ( 24151) [007] d..2 24573.218861: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
46911  appEventThread-23905 (23896) [003] d..2 24573.218864: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
46912           <...>-13215 (-----) [004] d..2 24573.218868: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
46913           <...>-13215 (-----) [004] d..2 24573.218881: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=004
46914           <...>-13215 (-----) [004] d..3 24573.218886: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=004
46915           <...>-13215 (-----) [004] d..2 24573.218896: sched_switch: prev_comm=id.nn.benchmark prev_pid=13215 prev_prio=110 prev_state=x ==> next_comm=rcuop/4 next_pid=45 next_prio=120
46916         rcuop/4-45    (   45) [004] d..2 24573.218910: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
46917    RenderThread-24437 (24151) [007] d..1 24573.218912: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
46918    RenderThread-24437 (24151) [007] d..2 24573.218921: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
46919           <...>-13131 (-----) [004] ...1 24573.218922: tracing_mark_write: E|13131
46920           <...>-13131 (-----) [004] ...1 24573.218925: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
46921           <...>-13131 (-----) [004] ...1 24573.218928: tracing_mark_write: E|13131
46922           <...>-13131 (-----) [004] ...1 24573.218929: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
46923           <...>-13131 (-----) [004] ...1 24573.218931: tracing_mark_write: E|13131
46924    RenderThread-24437 (24151) [007] .... 24573.218947: binder_transaction: transaction=1669848 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
46925    RenderThread-24437 (24151) [007] d..4 24573.218949: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
46926     logd.writer-563   (  555) [003] d..2 24573.218952: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
46927    RenderThread-24437 (24151) [007] d..5 24573.218958: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
46928    RenderThread-24437 (24151) [007] d..2 24573.218962: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
46929 id.nn.benchmark-13156 (13131) [005] d..2 24573.218964: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
46930<...>-23903 ( 23896) [005] .... 24573.218966: binder_transaction_received: transaction=1669848
46931<...>-23903 ( 23896) [005] .... 24573.218986: binder_transaction: transaction=1669849 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
46932<...>-24151 ( 24151) [007] d..2 24573.218988: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
46933<...>-23903 ( 23896) [005] d..2 24573.218990: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
46934<...>-23903 ( 23896) [005] d..3 24573.218997: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
46935           <...>-13131 (-----) [004] ...1 24573.218998: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
46936 id.nn.benchmark-13160 (13131) [007] d..2 24573.219004: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
46937<...>-23903 ( 23896) [005] d..2 24573.219006: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
46938    RenderThread-24437 (24151) [007] .... 24573.219006: binder_transaction_received: transaction=1669849
46939           <...>-13131 (-----) [004] d..2 24573.219013: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
46940 id.nn.benchmark-13158 (13131) [003] d.h1 24573.219026: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
46941           <...>-13131 (-----) [004] ...1 24573.219028: tracing_mark_write: E|13131
46942           <...>-13131 (-----) [004] ...1 24573.219030: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
46943           <...>-13131 (-----) [004] ...1 24573.219033: tracing_mark_write: E|13131
46944           <...>-13131 (-----) [004] ...1 24573.219035: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
46945           <...>-13131 (-----) [004] ...1 24573.219036: tracing_mark_write: E|13131
46946           <...>-13131 (-----) [004] ...1 24573.219038: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
46947           <...>-13131 (-----) [004] ...1 24573.219095: tracing_mark_write: E|13131
46948           <...>-13131 (-----) [004] ...1 24573.219097: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
46949           <...>-13131 (-----) [004] d..2 24573.219101: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13217 next_prio=110
46950           <...>-13217 (-----) [004] d..2 24573.219247: sched_switch: prev_comm=id.nn.benchmark prev_pid=13217 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13218 next_prio=110
46951           <...>-13218 (-----) [004] ...1 24573.219259: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
46952           <...>-13218 (-----) [004] ...1 24573.219261: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
46953           <...>-13218 (-----) [004] ...1 24573.219312: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
46954           <...>-13218 (-----) [004] ...1 24573.219314: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
46955    RenderThread-24437 (24151) [007] d..2 24573.219604: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
46956 id.nn.benchmark-13160 (13131) [007] d.h1 24573.219702: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
46957 id.nn.benchmark-13160 (13131) [007] d.h2 24573.219708: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
46958 id.nn.benchmark-13160 (13131) [007] dnh2 24573.219709: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
46959 id.nn.benchmark-13160 (13131) [007] d..2 24573.219713: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
46960    RenderThread-24437 (24151) [007] .... 24573.219790: binder_transaction: transaction=1669850 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
46961    RenderThread-24437 (24151) [007] d..4 24573.219794: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
46962    RenderThread-24437 (24151) [007] d..5 24573.219806: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
46963    RenderThread-24437 (24151) [007] d..2 24573.219811: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
46964 id.nn.benchmark-13156 (13131) [005] d..2 24573.219812: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
46965<...>-23903 ( 23896) [005] .... 24573.219813: binder_transaction_received: transaction=1669850
46966           <...>-13154 (-----) [000] d.h2 24573.219828: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
46967           <...>-13218 (-----) [004] dnh1 24573.219854: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=004
46968<...>-23903 ( 23896) [005] .... 24573.219861: binder_transaction: transaction=1669851 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
46969<...>-23903 ( 23896) [005] d..2 24573.219862: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
46970           <...>-13154 (-----) [000] d.h2 24573.219881: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
46971           <...>-13218 (-----) [004] d..2 24573.219881: sched_switch: prev_comm=id.nn.benchmark prev_pid=13218 prev_prio=110 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
46972<...>-23903 ( 23896) [005] d..3 24573.219885: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
46973 id.nn.benchmark-13160 (13131) [007] d..2 24573.219890: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
46974<...>-23903 ( 23896) [005] d..2 24573.219893: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
46975    RenderThread-24437 (24151) [007] .... 24573.219893: binder_transaction_received: transaction=1669851
46976           <...>-13154 (-----) [000] d.h2 24573.219893: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
46977           <...>-13157 (-----) [006] dnh1 24573.219897: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
46978           <...>-13157 (-----) [006] d..2 24573.219900: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
46979           <...>-13154 (-----) [000] d.h3 24573.219901: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
46980         sugov:4-560   (  560) [006] d..2 24573.219904: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
46981 kgsl_worker_thr-246   (  246) [004] d..2 24573.219906: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
46982 id.nn.benchmark-13158 (13131) [003] d..2 24573.219910: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
46983    RenderThread-24437 (24151) [007] d..2 24573.219917: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
46984         sugov:0-559   (  559) [003] d..2 24573.219920: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
46985 kgsl_worker_thr-246   (  246) [004] d..3 24573.219928: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
46986 kgsl_worker_thr-246   (  246) [004] d..2 24573.219950: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
46987  kworker/u16:15-18488 (18488) [004] d..2 24573.219969: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13218 next_prio=110
46988           <...>-13218 (-----) [004] ...1 24573.220220: tracing_mark_write: E|13131
46989           <...>-13218 (-----) [004] ...1 24573.220222: tracing_mark_write: E|13131
46990           <...>-13218 (-----) [004] ...1 24573.220228: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
46991           <...>-13218 (-----) [004] ...1 24573.220229: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
46992           <...>-13218 (-----) [004] ...1 24573.220598: tracing_mark_write: E|13131
46993           <...>-13218 (-----) [004] ...1 24573.220599: tracing_mark_write: E|13131
46994           <...>-13218 (-----) [004] ...1 24573.220605: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
46995           <...>-13218 (-----) [004] ...1 24573.220607: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
46996           <...>-13218 (-----) [004] ...1 24573.220817: tracing_mark_write: E|13131
46997           <...>-13218 (-----) [004] ...1 24573.220818: tracing_mark_write: E|13131
46998           <...>-13218 (-----) [004] ...1 24573.220822: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
46999           <...>-13218 (-----) [004] ...1 24573.220823: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47000 id.nn.benchmark-13160 (13131) [007] d.s2 24573.220897: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
47001 id.nn.benchmark-13158 (13131) [003] d.h2 24573.220897: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
47002 id.nn.benchmark-13158 (13131) [003] dnh3 24573.220904: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
47003 id.nn.benchmark-13160 (13131) [007] d.s3 24573.220909: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
47004 id.nn.benchmark-13158 (13131) [003] d..2 24573.220915: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
47005           <...>-13218 (-----) [004] d..2 24573.220915: sched_switch: prev_comm=id.nn.benchmark prev_pid=13218 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
47006<...>-33 ( 33) [003] d.h3 24573.220963: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
47007<...>-33 ( 33) [003] d.h3 24573.220977: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
47008 id.nn.benchmark-13160 (13131) [007] dnh1 24573.220981: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
47009<...>-33 ( 33) [003] d.h4 24573.220983: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
47010 id.nn.benchmark-13160 (13131) [007] d..2 24573.220987: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
47011<...>-33 ( 33) [003] d..2 24573.220990: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
47012         sugov:4-560   (  560) [007] d..2 24573.220994: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
47013         sugov:0-559   (  559) [003] d..2 24573.220998: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
47014  kworker/u16:15-18488 (18488) [004] d..2 24573.221140: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13218 next_prio=110
47015     logd.writer-563   (  555) [003] d..2 24573.221363: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
47016           <...>-13218 (-----) [004] ...1 24573.221501: tracing_mark_write: E|13131
47017           <...>-13218 (-----) [004] ...1 24573.221502: tracing_mark_write: E|13131
47018           <...>-13218 (-----) [004] ...1 24573.221507: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47019           <...>-13218 (-----) [004] ...1 24573.221508: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47020           <...>-13218 (-----) [004] ...1 24573.221804: tracing_mark_write: E|13131
47021           <...>-13218 (-----) [004] ...1 24573.221805: tracing_mark_write: E|13131
47022           <...>-13218 (-----) [004] ...1 24573.221809: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47023           <...>-13218 (-----) [004] ...1 24573.221810: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47024           <...>-13218 (-----) [004] ...1 24573.222103: tracing_mark_write: E|13131
47025           <...>-13218 (-----) [004] ...1 24573.222104: tracing_mark_write: E|13131
47026           <...>-13218 (-----) [004] ...1 24573.222110: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47027           <...>-13218 (-----) [004] ...1 24573.222111: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47028           <...>-13218 (-----) [004] ...1 24573.222270: tracing_mark_write: E|13131
47029           <...>-13218 (-----) [004] ...1 24573.222271: tracing_mark_write: E|13131
47030           <...>-13218 (-----) [004] ...1 24573.222275: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47031           <...>-13218 (-----) [004] ...1 24573.222276: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47032           <...>-13218 (-----) [004] ...1 24573.222329: tracing_mark_write: E|13131
47033           <...>-13218 (-----) [004] ...1 24573.222330: tracing_mark_write: E|13131
47034           <...>-13218 (-----) [004] ...1 24573.222334: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
47035           <...>-13218 (-----) [004] ...1 24573.222335: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
47036           <...>-13218 (-----) [004] d.h1 24573.222444: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=004
47037           <...>-13218 (-----) [004] dnh2 24573.222449: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=004
47038           <...>-13218 (-----) [004] d..2 24573.222453: sched_switch: prev_comm=id.nn.benchmark prev_pid=13218 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
47039        DispSync-23904 (23896) [004] d..1 24573.222465: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
47040 id.nn.benchmark-13159 (13131) [001] dnh1 24573.222478: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
47041        DispSync-23904 (23896) [004] d..2 24573.222479: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13218 next_prio=110
47042 id.nn.benchmark-13159 (13131) [001] d..2 24573.222485: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
47043   sfEventThread-23906 (23896) [001] d..3 24573.222514: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
47044   sfEventThread-23906 (23896) [001] d..4 24573.222526: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
47045           <...>-13218 (-----) [004] ...1 24573.222532: tracing_mark_write: E|13131
47046           <...>-13218 (-----) [004] ...1 24573.222533: tracing_mark_write: E|13131
47047 id.nn.benchmark-13158 (13131) [003] d..2 24573.222537: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
47048           <...>-13218 (-----) [004] ...1 24573.222537: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
47049           <...>-13218 (-----) [004] ...1 24573.222539: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
47050   sfEventThread-23906 (23896) [001] d..2 24573.222539: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
47051           <...>-13218 (-----) [004] ...1 24573.222561: tracing_mark_write: E|13131
47052           <...>-13218 (-----) [004] ...1 24573.222562: tracing_mark_write: E|13131
47053           <...>-13218 (-----) [004] ...1 24573.222565: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
47054           <...>-13218 (-----) [004] ...1 24573.222566: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
47055           <...>-13218 (-----) [004] ...1 24573.222572: tracing_mark_write: E|13131
47056           <...>-13218 (-----) [004] ...1 24573.222573: tracing_mark_write: E|13131
47057           <...>-13218 (-----) [004] ...1 24573.222578: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
47058           <...>-13218 (-----) [004] ...1 24573.222579: tracing_mark_write: E|13131
47059           <...>-13218 (-----) [004] ...1 24573.222582: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
47060           <...>-13218 (-----) [004] ...1 24573.222584: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
47061  surfaceflinger-23896 (23896) [003] d..1 24573.222796: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
47062  surfaceflinger-23896 (23896) [003] d..2 24573.222809: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
47063 id.nn.benchmark-13159 (13131) [001] d..2 24573.222816: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
47064   sfEventThread-23906 (23896) [001] d..2 24573.222831: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
47065           <...>-13218 (-----) [004] ...1 24573.222889: tracing_mark_write: E|13131
47066           <...>-13218 (-----) [004] ...1 24573.222890: tracing_mark_write: E|13131
47067           <...>-13218 (-----) [004] ...1 24573.222893: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47068           <...>-13218 (-----) [004] ...1 24573.222894: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47069  surfaceflinger-23896 (23896) [003] ...1 24573.222936: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
47070  surfaceflinger-23896 (23896) [003] ...1 24573.222940: tracing_mark_write: E|23896
47071  surfaceflinger-23896 (23896) [003] .... 24573.222986: binder_transaction: transaction=1669852 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
47072  surfaceflinger-23896 (23896) [003] ...2 24573.223007: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
47073  surfaceflinger-23896 (23896) [003] d..4 24573.223015: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
47074           <...>-13218 (-----) [004] dnh1 24573.223039: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
47075           <...>-13218 (-----) [004] d..2 24573.223063: sched_switch: prev_comm=id.nn.benchmark prev_pid=13218 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
47076  surfaceflinger-23896 (23896) [003] d.h5 24573.223064: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
47077  surfaceflinger-23896 (23896) [003] d.h5 24573.223071: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
47078 id.nn.benchmark-13160 (13131) [007] dnh1 24573.223073: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
47079 id.nn.benchmark-13160 (13131) [007] d..2 24573.223076: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
47080         sugov:4-560   (  560) [007] d..2 24573.223079: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
47081  surfaceflinger-23896 (23896) [003] d.h6 24573.223084: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
47082  HwBinder:598_3-633   (  598) [004] .... 24573.223089: binder_transaction_received: transaction=1669852
47083           <...>-13154 (-----) [000] d..2 24573.223093: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
47084  surfaceflinger-23896 (23896) [003] d..2 24573.223096: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
47085         sugov:0-559   (  559) [000] d..2 24573.223103: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47086  HwBinder:598_3-633   (  598) [004] ...1 24573.223113: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
47087  HwBinder:598_3-633   (  598) [004] ...1 24573.223168: tracing_mark_write: B|598|HWCSession::PresentDisplay::
47088  HwBinder:598_3-633   (  598) [004] ...1 24573.223233: tracing_mark_write: B|598|HWDeviceDRM::Commit::
47089  HwBinder:598_3-633   (  598) [004] ...1 24573.223237: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
47090  HwBinder:598_3-633   (  598) [004] d..2 24573.223449: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
47091  HwBinder:598_3-633   (  598) [004] d..3 24573.223465: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
47092 id.nn.benchmark-13160 (13131) [007] d..2 24573.223483: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
47093  HwBinder:598_3-633   (  598) [004] ...1 24573.223509: tracing_mark_write: E|598
47094  HwBinder:598_3-633   (  598) [004] ...1 24573.223510: tracing_mark_write: E|598
47095  HwBinder:598_3-633   (  598) [004] ...1 24573.223531: tracing_mark_write: E|598
47096  HwBinder:598_3-633   (  598) [004] ...1 24573.223552: tracing_mark_write: E|598
47097  HwBinder:598_3-633   (  598) [004] .... 24573.223558: binder_transaction: transaction=1669853 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
47098  HwBinder:598_3-633   (  598) [004] d..2 24573.223564: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
47099  HwBinder:598_3-633   (  598) [004] .... 24573.223570: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
47100 id.nn.benchmark-13158 (13131) [003] dnh1 24573.223576: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
47101 id.nn.benchmark-13158 (13131) [003] d..2 24573.223582: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
47102  surfaceflinger-23896 (23896) [003] .... 24573.223586: binder_transaction_received: transaction=1669853
47103  HwBinder:598_3-633   (  598) [004] d..2 24573.223593: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13218 next_prio=110
47104           <...>-13218 (-----) [004] ...1 24573.223599: tracing_mark_write: E|13131
47105           <...>-13218 (-----) [004] ...1 24573.223601: tracing_mark_write: E|13131
47106           <...>-13218 (-----) [004] d..2 24573.223625: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
47107  surfaceflinger-23896 (23896) [003] d.h1 24573.223639: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
47108           <...>-13218 (-----) [004] ...1 24573.223641: tracing_mark_write: E|13131
47109           <...>-13218 (-----) [004] d..1 24573.223644: sched_waking: comm=id.nn.benchmark pid=13217 prio=110 target_cpu=004
47110           <...>-13218 (-----) [004] dn.2 24573.223649: sched_wakeup: comm=id.nn.benchmark pid=13217 prio=110 target_cpu=004
47111           <...>-13218 (-----) [004] d..2 24573.223652: sched_switch: prev_comm=id.nn.benchmark prev_pid=13218 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13217 next_prio=110
47112           <...>-13217 (-----) [004] d..2 24573.223659: sched_switch: prev_comm=id.nn.benchmark prev_pid=13217 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13218 next_prio=110
47113           <...>-13218 (-----) [004] ...1 24573.223665: tracing_mark_write: E|13131
47114           <...>-13218 (-----) [004] d..1 24573.223782: sched_waking: comm=id.nn.benchmark pid=13217 prio=110 target_cpu=004
47115           <...>-13218 (-----) [004] dn.2 24573.223786: sched_wakeup: comm=id.nn.benchmark pid=13217 prio=110 target_cpu=004
47116           <...>-13218 (-----) [004] d..2 24573.223788: sched_switch: prev_comm=id.nn.benchmark prev_pid=13218 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13217 next_prio=110
47117           <...>-13217 (-----) [004] d..1 24573.223838: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
47118           <...>-13217 (-----) [004] dn.2 24573.223844: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
47119           <...>-13217 (-----) [004] d..2 24573.223846: sched_switch: prev_comm=id.nn.benchmark prev_pid=13217 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
47120           <...>-13131 (-----) [004] d..2 24573.223852: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13217 next_prio=110
47121           <...>-13217 (-----) [004] d..1 24573.223876: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
47122           <...>-13217 (-----) [004] dn.2 24573.223879: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
47123           <...>-13217 (-----) [004] d..2 24573.223881: sched_switch: prev_comm=id.nn.benchmark prev_pid=13217 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
47124  surfaceflinger-23896 (23896) [003] d..2 24573.223882: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
47125           <...>-13131 (-----) [004] ...1 24573.223891: tracing_mark_write: E|13131
47126           <...>-13131 (-----) [004] ...1 24573.223893: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
47127           <...>-13131 (-----) [004] ...1 24573.223895: tracing_mark_write: E|13131
47128           <...>-13131 (-----) [004] ...1 24573.223896: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
47129           <...>-13131 (-----) [004] ...1 24573.223899: tracing_mark_write: E|13131
47130           <...>-13131 (-----) [004] ...1 24573.223961: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
47131           <...>-13131 (-----) [004] ...1 24573.223981: tracing_mark_write: E|13131
47132           <...>-13131 (-----) [004] ...1 24573.223983: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
47133           <...>-13131 (-----) [004] ...1 24573.223986: tracing_mark_write: E|13131
47134           <...>-13131 (-----) [004] ...1 24573.223987: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
47135           <...>-13131 (-----) [004] ...1 24573.223989: tracing_mark_write: E|13131
47136           <...>-13131 (-----) [004] ...1 24573.223991: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
47137           <...>-13131 (-----) [004] ...1 24573.224043: tracing_mark_write: E|13131
47138           <...>-13131 (-----) [004] ...1 24573.224045: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
47139           <...>-13131 (-----) [004] d..2 24573.224050: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13217 next_prio=110
47140 crtc_commit:111-253   (  253) [007] d..2 24573.224054: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
47141           <...>-13217 (-----) [004] d..2 24573.224082: sched_switch: prev_comm=id.nn.benchmark prev_pid=13217 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13218 next_prio=110
47142           <...>-13218 (-----) [004] d..2 24573.224095: sched_switch: prev_comm=id.nn.benchmark prev_pid=13218 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13219 next_prio=110
47143 id.nn.benchmark-13160 (13131) [007] d.s2 24573.224223: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
47144           <...>-13154 (-----) [000] d.h2 24573.224229: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
47145 id.nn.benchmark-13160 (13131) [007] d.s3 24573.224230: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
47146           <...>-13219 (-----) [004] d..2 24573.224233: sched_switch: prev_comm=id.nn.benchmark prev_pid=13219 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
47147           <...>-13154 (-----) [000] dnh3 24573.224235: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
47148 id.nn.benchmark-13158 (13131) [003] d.s1 24573.224238: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
47149 id.nn.benchmark-13160 (13131) [007] dnh1 24573.224259: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
47150           <...>-13154 (-----) [000] d..2 24573.224261: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
47151 id.nn.benchmark-13160 (13131) [007] d..2 24573.224262: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
47152 id.nn.benchmark-13158 (13131) [003] d.H3 24573.224289: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
47153 id.nn.benchmark-13158 (13131) [003] d.H3 24573.224306: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
47154  kworker/u16:15-18488 (18488) [004] dnh2 24573.224331: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
47155 id.nn.benchmark-13158 (13131) [003] d.H4 24573.224332: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
47156  kworker/u16:15-18488 (18488) [004] d..2 24573.224334: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
47157     rcu_preempt-7     (    7) [007] d..2 24573.224338: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
47158         sugov:4-560   (  560) [004] d..2 24573.224338: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
47159     migration/0-13    (   13) [000] d..2 24573.224339: 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
47160     rcu_preempt-7     (    7) [007] d..2 24573.224356: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
47161         sugov:0-559   (  559) [000] d..2 24573.224363: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
47162     logd.writer-563   (  555) [000] dnh3 24573.224371: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
47163     logd.writer-563   (  555) [000] d..2 24573.224376: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
47164  kworker/u16:15-18488 (18488) [004] d..2 24573.224381: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13219 next_prio=110
47165         rcuop/0-10    (   10) [000] d..2 24573.224408: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
47166 id.nn.benchmark-13158 (13131) [003] d.s2 24573.224415: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
47167           <...>-13219 (-----) [004] d..2 24573.224423: sched_switch: prev_comm=id.nn.benchmark prev_pid=13219 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47168           <...>-13154 (-----) [004] d.h1 24573.224440: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
47169           <...>-13154 (-----) [004] dnh1 24573.224441: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
47170           <...>-13154 (-----) [004] d..2 24573.224444: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
47171  kworker/u16:15-18488 (18488) [004] d..2 24573.224450: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47172     logd.writer-563   (  555) [000] d..2 24573.224555: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
47173     logd.writer-563   (  555) [000] dn.3 24573.224567: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
47174     logd.writer-563   (  555) [000] d..2 24573.224573: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=rcuop/0 next_pid=10 next_prio=120
47175         rcuop/0-10    (   10) [000] d..2 24573.224580: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13220 next_prio=110
47176           <...>-13220 (-----) [000] ...1 24573.224612: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
47177           <...>-13220 (-----) [000] ...1 24573.224616: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
47178           <...>-13220 (-----) [000] ...1 24573.224742: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47179           <...>-13220 (-----) [000] ...1 24573.224747: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47180           <...>-13220 (-----) [000] ...1 24573.226726: tracing_mark_write: E|13131
47181           <...>-13220 (-----) [000] ...1 24573.226730: tracing_mark_write: E|13131
47182           <...>-13220 (-----) [000] ...1 24573.226741: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47183           <...>-13220 (-----) [000] ...1 24573.226745: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47184           <...>-13220 (-----) [000] ...1 24573.227441: tracing_mark_write: E|13131
47185           <...>-13220 (-----) [000] ...1 24573.227445: tracing_mark_write: E|13131
47186           <...>-13220 (-----) [000] ...1 24573.227457: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47187           <...>-13220 (-----) [000] ...1 24573.227462: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47188 id.nn.benchmark-13160 (13131) [007] d.s2 24573.227556: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
47189 id.nn.benchmark-13160 (13131) [007] d.s3 24573.227567: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
47190           <...>-13154 (-----) [004] d..2 24573.227573: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
47191  kworker/u16:15-18488 (18488) [004] .... 24573.227669: clk_set_rate: l3_cluster0_vote_clk 1401600000
47192  kworker/u16:15-18488 (18488) [004] d..2 24573.227676: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47193           <...>-13220 (-----) [000] ...1 24573.227823: tracing_mark_write: E|13131
47194           <...>-13220 (-----) [000] ...1 24573.227827: tracing_mark_write: E|13131
47195           <...>-13220 (-----) [000] ...1 24573.227837: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47196           <...>-13220 (-----) [000] ...1 24573.227841: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47197           <...>-13220 (-----) [000] ...1 24573.228076: tracing_mark_write: E|13131
47198           <...>-13220 (-----) [000] ...1 24573.228079: tracing_mark_write: E|13131
47199           <...>-13220 (-----) [000] ...1 24573.228090: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47200           <...>-13220 (-----) [000] ...1 24573.228094: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47201           <...>-13220 (-----) [000] ...1 24573.228475: tracing_mark_write: E|13131
47202           <...>-13220 (-----) [000] ...1 24573.228479: tracing_mark_write: E|13131
47203           <...>-13220 (-----) [000] ...1 24573.228489: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47204           <...>-13220 (-----) [000] ...1 24573.228492: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47205           <...>-13220 (-----) [000] ...1 24573.228877: tracing_mark_write: E|13131
47206           <...>-13220 (-----) [000] ...1 24573.228881: tracing_mark_write: E|13131
47207           <...>-13220 (-----) [000] ...1 24573.228898: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47208           <...>-13220 (-----) [000] ...1 24573.228902: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47209           <...>-13220 (-----) [000] ...1 24573.229091: tracing_mark_write: E|13131
47210           <...>-13220 (-----) [000] ...1 24573.229094: tracing_mark_write: E|13131
47211           <...>-13220 (-----) [000] ...1 24573.229107: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47212           <...>-13220 (-----) [000] ...1 24573.229111: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47213           <...>-13220 (-----) [000] ...1 24573.229180: tracing_mark_write: E|13131
47214           <...>-13220 (-----) [000] ...1 24573.229184: tracing_mark_write: E|13131
47215           <...>-13220 (-----) [000] ...1 24573.229195: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
47216           <...>-13220 (-----) [000] ...1 24573.229199: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
47217           <...>-13220 (-----) [000] ...1 24573.229502: tracing_mark_write: E|13131
47218           <...>-13220 (-----) [000] ...1 24573.229505: tracing_mark_write: E|13131
47219           <...>-13220 (-----) [000] ...1 24573.229514: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
47220           <...>-13220 (-----) [000] ...1 24573.229518: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
47221           <...>-13220 (-----) [000] ...1 24573.229568: tracing_mark_write: E|13131
47222           <...>-13220 (-----) [000] ...1 24573.229571: tracing_mark_write: E|13131
47223           <...>-13220 (-----) [000] ...1 24573.229580: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
47224           <...>-13220 (-----) [000] ...1 24573.229585: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
47225           <...>-13220 (-----) [000] ...1 24573.229602: tracing_mark_write: E|13131
47226           <...>-13220 (-----) [000] ...1 24573.229605: tracing_mark_write: E|13131
47227           <...>-13220 (-----) [000] ...1 24573.229614: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
47228           <...>-13220 (-----) [000] ...1 24573.229617: tracing_mark_write: E|13131
47229           <...>-13220 (-----) [000] ...1 24573.229626: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
47230           <...>-13220 (-----) [000] ...1 24573.229631: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
47231           <...>-13220 (-----) [000] d.h4 24573.230433: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
47232           <...>-13220 (-----) [000] dnh5 24573.230452: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
47233           <...>-13220 (-----) [000] dnh4 24573.230456: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
47234           <...>-13154 (-----) [004] dnh1 24573.230473: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
47235           <...>-13154 (-----) [004] d..2 24573.230476: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
47236           <...>-13220 (-----) [000] d..2 24573.230482: sched_switch: prev_comm=id.nn.benchmark prev_pid=13220 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
47237  crtc_event:111-254   (  254) [000] d..2 24573.230499: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13220 next_prio=110
47238 crtc_commit:111-253   (  253) [004] d..2 24573.230573: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47239           <...>-13220 (-----) [000] ...1 24573.230635: tracing_mark_write: E|13131
47240           <...>-13220 (-----) [000] ...1 24573.230639: tracing_mark_write: E|13131
47241           <...>-13220 (-----) [000] ...1 24573.230648: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47242           <...>-13220 (-----) [000] ...1 24573.230652: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47243           <...>-13220 (-----) [000] ...1 24573.230735: tracing_mark_write: E|13131
47244           <...>-13220 (-----) [000] ...1 24573.230739: tracing_mark_write: E|13131
47245           <...>-13220 (-----) [000] ...1 24573.230787: tracing_mark_write: E|13131
47246           <...>-13220 (-----) [000] d..1 24573.230792: sched_waking: comm=id.nn.benchmark pid=13219 prio=110 target_cpu=004
47247           <...>-13154 (-----) [004] dnh1 24573.230808: sched_wakeup: comm=id.nn.benchmark pid=13219 prio=110 target_cpu=004
47248           <...>-13154 (-----) [004] d..2 24573.230810: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13219 next_prio=110
47249           <...>-13220 (-----) [000] ...1 24573.230816: tracing_mark_write: E|13131
47250           <...>-13219 (-----) [004] d..2 24573.230817: sched_switch: prev_comm=id.nn.benchmark prev_pid=13219 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47251 id.nn.benchmark-13160 (13131) [007] d.s1 24573.230889: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
47252           <...>-13154 (-----) [004] d.s2 24573.230891: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
47253 id.nn.benchmark-13160 (13131) [007] dns2 24573.230897: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
47254 id.nn.benchmark-13160 (13131) [007] dns2 24573.230898: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
47255 id.nn.benchmark-13160 (13131) [007] dns3 24573.230910: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
47256           <...>-13220 (-----) [000] dnh1 24573.230911: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
47257 id.nn.benchmark-13160 (13131) [007] dns2 24573.230913: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
47258           <...>-13154 (-----) [004] d..2 24573.230917: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
47259           <...>-13220 (-----) [000] d..2 24573.230917: sched_switch: prev_comm=id.nn.benchmark prev_pid=13220 prev_prio=110 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
47260 id.nn.benchmark-13160 (13131) [007] dns3 24573.230918: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
47261 id.nn.benchmark-13160 (13131) [007] d..2 24573.230921: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
47262     rcu_preempt-7     (    7) [007] d..2 24573.230923: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=004
47263     rcu_preempt-7     (    7) [007] d..3 24573.230931: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=004
47264     rcu_preempt-7     (    7) [007] d..2 24573.230932: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
47265  crtc_event:111-254   (  254) [000] d..2 24573.230933: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13220 next_prio=110
47266     rcu_preempt-7     (    7) [007] d..2 24573.230948: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/7:0 next_pid=12892 next_prio=120
47267           <...>-13220 (-----) [000] dnh1 24573.230952: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
47268           <...>-13220 (-----) [000] d..2 24573.230957: sched_switch: prev_comm=id.nn.benchmark prev_pid=13220 prev_prio=110 prev_state=R+ ==> next_comm=rcuop/2 next_pid=29 next_prio=120
47269         rcuop/2-29    (   29) [000] d..2 24573.230961: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
47270     kworker/7:0-12892 (12892) [007] d..2 24573.230975: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
47271         rcuop/2-29    (   29) [000] d..3 24573.230978: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
47272         rcuop/2-29    (   29) [000] d..2 24573.230985: 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
47273         rcuop/3-37    (   37) [000] d..2 24573.230998: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13220 next_prio=110
47274           <...>-13220 (-----) [000] d..1 24573.231119: sched_waking: comm=id.nn.benchmark pid=13219 prio=110 target_cpu=004
47275           <...>-13220 (-----) [000] dn.2 24573.231136: sched_wakeup: comm=id.nn.benchmark pid=13219 prio=110 target_cpu=000
47276           <...>-13220 (-----) [000] dnh3 24573.231169: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
47277  kworker/u16:15-18488 (18488) [004] d..2 24573.231171: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
47278           <...>-13220 (-----) [000] dnh3 24573.231180: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
47279         rcuop/4-45    (   45) [004] dnh1 24573.231183: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
47280           <...>-13220 (-----) [000] dnh4 24573.231186: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
47281         rcuop/4-45    (   45) [004] d..2 24573.231186: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
47282         sugov:4-560   (  560) [004] d..2 24573.231190: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
47283           <...>-13220 (-----) [000] d..2 24573.231192: sched_switch: prev_comm=id.nn.benchmark prev_pid=13220 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
47284         rcuop/4-45    (   45) [004] d..2 24573.231193: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47285         sugov:0-559   (  559) [000] d..2 24573.231199: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13219 next_prio=110
47286           <...>-13219 (-----) [000] d..1 24573.231295: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
47287           <...>-13154 (-----) [004] dnh1 24573.231310: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
47288           <...>-13154 (-----) [004] d..2 24573.231313: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
47289           <...>-13131 (-----) [004] d..2 24573.231318: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47290           <...>-13219 (-----) [000] d..1 24573.231356: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
47291           <...>-13154 (-----) [004] dnh1 24573.231380: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
47292           <...>-13154 (-----) [004] d..2 24573.231382: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
47293           <...>-13131 (-----) [004] ...1 24573.231395: tracing_mark_write: E|13131
47294           <...>-13131 (-----) [004] ...1 24573.231397: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
47295           <...>-13131 (-----) [004] ...1 24573.231399: tracing_mark_write: E|13131
47296           <...>-13131 (-----) [004] ...1 24573.231400: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
47297           <...>-13131 (-----) [004] ...1 24573.231402: tracing_mark_write: E|13131
47298           <...>-13219 (-----) [000] d..2 24573.231425: sched_switch: prev_comm=id.nn.benchmark prev_pid=13219 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13220 next_prio=110
47299           <...>-13220 (-----) [000] d..2 24573.231445: sched_switch: prev_comm=id.nn.benchmark prev_pid=13220 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
47300           <...>-13131 (-----) [004] ...1 24573.231462: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
47301           <...>-13131 (-----) [004] ...1 24573.231484: tracing_mark_write: E|13131
47302           <...>-13131 (-----) [004] ...1 24573.231486: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
47303           <...>-13131 (-----) [004] ...1 24573.231489: tracing_mark_write: E|13131
47304           <...>-13131 (-----) [004] ...1 24573.231490: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
47305           <...>-13131 (-----) [004] ...1 24573.231492: tracing_mark_write: E|13131
47306           <...>-13131 (-----) [004] ...1 24573.231494: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
47307           <...>-13131 (-----) [004] ...1 24573.231536: tracing_mark_write: E|13131
47308           <...>-13131 (-----) [004] ...1 24573.231537: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
47309           <...>-13131 (-----) [004] d..2 24573.231542: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47310     logd.writer-563   (  555) [000] d..2 24573.231746: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13221 next_prio=110
47311           <...>-13221 (-----) [000] d.h4 24573.231777: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
47312           <...>-13221 (-----) [000] d.h4 24573.231785: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
47313           <...>-13154 (-----) [004] dnh1 24573.231788: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
47314           <...>-13221 (-----) [000] dnh5 24573.231791: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
47315           <...>-13154 (-----) [004] d..2 24573.231791: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
47316         sugov:4-560   (  560) [004] d..2 24573.231795: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47317           <...>-13221 (-----) [000] d..2 24573.231797: sched_switch: prev_comm=id.nn.benchmark prev_pid=13221 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
47318         sugov:0-559   (  559) [000] d..2 24573.231804: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13221 next_prio=110
47319           <...>-13221 (-----) [000] d..2 24573.231858: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
47320           <...>-13221 (-----) [000] d..3 24573.231866: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
47321           <...>-13221 (-----) [000] d..2 24573.232149: sched_switch: prev_comm=id.nn.benchmark prev_pid=13221 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
47322     logd.writer-563   (  555) [000] d..2 24573.232317: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13222 next_prio=110
47323           <...>-13222 (-----) [000] ...1 24573.232344: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
47324           <...>-13222 (-----) [000] ...1 24573.232349: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
47325           <...>-13222 (-----) [000] d..2 24573.232404: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
47326           <...>-13222 (-----) [000] d..3 24573.232412: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
47327           <...>-13222 (-----) [000] ...1 24573.232478: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47328           <...>-13222 (-----) [000] ...1 24573.232484: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47329           <...>-13222 (-----) [000] d.h4 24573.232775: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
47330           <...>-13222 (-----) [000] dnh5 24573.232792: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
47331           <...>-13222 (-----) [000] dnh2 24573.232824: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
47332           <...>-13222 (-----) [000] dnh2 24573.232831: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
47333           <...>-13154 (-----) [004] dnh1 24573.232835: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
47334           <...>-13154 (-----) [004] d..2 24573.232837: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
47335         sugov:4-560   (  560) [004] d..2 24573.232840: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47336           <...>-13222 (-----) [000] dnh3 24573.232844: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
47337           <...>-13222 (-----) [000] d..2 24573.232850: sched_switch: prev_comm=id.nn.benchmark prev_pid=13222 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
47338 id.nn.benchmark-13159 (13131) [001] d..2 24573.232853: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
47339         sugov:0-559   (  559) [001] d..2 24573.232862: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
47340 crtc_commit:111-253   (  253) [000] d..2 24573.232899: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13222 next_prio=110
47341           <...>-13222 (-----) [000] d.h4 24573.233062: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
47342           <...>-13222 (-----) [000] dnh5 24573.233068: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
47343           <...>-13222 (-----) [000] d..2 24573.233082: sched_switch: prev_comm=id.nn.benchmark prev_pid=13222 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
47344  crtc_event:111-254   (  254) [000] d..2 24573.233091: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13222 next_prio=110
47345           <...>-13222 (-----) [000] ...1 24573.234786: tracing_mark_write: E|13131
47346           <...>-13222 (-----) [000] ...1 24573.234790: tracing_mark_write: E|13131
47347           <...>-13222 (-----) [000] ...1 24573.234802: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47348           <...>-13222 (-----) [000] ...1 24573.234806: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47349           <...>-13154 (-----) [004] d.h1 24573.234919: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=004
47350           <...>-13154 (-----) [004] d.h2 24573.234951: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
47351           <...>-13222 (-----) [000] dnh1 24573.234952: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
47352           <...>-13154 (-----) [004] dnh3 24573.234954: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
47353           <...>-13154 (-----) [004] dnh2 24573.234954: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
47354           <...>-13222 (-----) [000] d..2 24573.234960: sched_switch: prev_comm=id.nn.benchmark prev_pid=13222 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
47355           <...>-13154 (-----) [004] d..2 24573.234961: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
47356         sugov:4-560   (  560) [004] d..2 24573.234964: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47357 id.nn.benchmark-13159 (13131) [001] dnh1 24573.234965: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
47358 id.nn.benchmark-13159 (13131) [001] d..2 24573.234971: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
47359         sugov:0-559   (  559) [001] d..2 24573.234979: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
47360        DispSync-23904 (23896) [000] d..1 24573.234981: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
47361        DispSync-23904 (23896) [000] d..2 24573.234993: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
47362 id.nn.benchmark-13158 (13131) [003] d..2 24573.235003: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
47363        DispSync-23904 (23896) [000] d..2 24573.235008: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13222 next_prio=110
47364  appEventThread-23905 (23896) [003] d..3 24573.235047: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
47365 id.nn.benchmark-13160 (13131) [007] dnh1 24573.235063: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
47366 id.nn.benchmark-13160 (13131) [007] d..2 24573.235065: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
47367  appEventThread-23905 (23896) [003] d..2 24573.235074: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
47368<...>-24151 ( 24151) [007] .... 24573.235272: binder_transaction: transaction=1669854 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
47369<...>-24151 ( 24151) [007] d..4 24573.235278: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
47370<...>-24151 ( 24151) [007] d..5 24573.235293: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
47371 id.nn.benchmark-13156 (13131) [005] d..2 24573.235300: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
47372<...>-23903 ( 23896) [005] .... 24573.235303: binder_transaction_received: transaction=1669854
47373<...>-24151 ( 24151) [007] d..3 24573.235314: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
47374<...>-23903 ( 23896) [005] d..1 24573.235315: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
47375<...>-24151 ( 24151) [007] d..4 24573.235322: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
47376           <...>-13222 (-----) [000] dnh1 24573.235331: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
47377<...>-23903 ( 23896) [005] d..2 24573.235335: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
47378           <...>-13222 (-----) [000] d..2 24573.235339: sched_switch: prev_comm=id.nn.benchmark prev_pid=13222 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
47379  appEventThread-23905 (23896) [000] d..2 24573.235365: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13222 next_prio=110
47380<...>-24151 ( 24151) [007] d..2 24573.235388: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
47381    RenderThread-24437 (24151) [007] d..1 24573.235446: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
47382    RenderThread-24437 (24151) [007] d..2 24573.235455: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
47383    RenderThread-24437 (24151) [007] .... 24573.235487: binder_transaction: transaction=1669855 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
47384    RenderThread-24437 (24151) [007] d..4 24573.235490: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
47385    RenderThread-24437 (24151) [007] d..5 24573.235500: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
47386    RenderThread-24437 (24151) [007] d..2 24573.235504: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
47387 id.nn.benchmark-13156 (13131) [005] d..2 24573.235506: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
47388<...>-23903 ( 23896) [005] .... 24573.235508: binder_transaction_received: transaction=1669855
47389<...>-24151 ( 24151) [007] d..2 24573.235529: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
47390<...>-23903 ( 23896) [005] .... 24573.235533: binder_transaction: transaction=1669856 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
47391<...>-23903 ( 23896) [005] d..2 24573.235538: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
47392<...>-23903 ( 23896) [005] d..3 24573.235545: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
47393 id.nn.benchmark-13160 (13131) [007] d..2 24573.235552: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
47394<...>-23903 ( 23896) [005] d..2 24573.235554: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
47395    RenderThread-24437 (24151) [007] .... 24573.235555: binder_transaction_received: transaction=1669856
47396    RenderThread-24437 (24151) [007] d..2 24573.236176: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
47397           <...>-13222 (-----) [000] ...1 24573.236246: tracing_mark_write: E|13131
47398           <...>-13222 (-----) [000] ...1 24573.236250: tracing_mark_write: E|13131
47399           <...>-13222 (-----) [000] ...1 24573.236267: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47400           <...>-13222 (-----) [000] ...1 24573.236272: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47401 id.nn.benchmark-13160 (13131) [007] d.h1 24573.236274: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
47402 id.nn.benchmark-13160 (13131) [007] d.h2 24573.236280: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
47403 id.nn.benchmark-13160 (13131) [007] dnh2 24573.236281: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
47404 id.nn.benchmark-13160 (13131) [007] d..2 24573.236285: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
47405    RenderThread-24437 (24151) [007] .... 24573.236365: binder_transaction: transaction=1669857 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
47406    RenderThread-24437 (24151) [007] d..4 24573.236370: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
47407    RenderThread-24437 (24151) [007] d..5 24573.236381: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
47408    RenderThread-24437 (24151) [007] d..2 24573.236386: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
47409 id.nn.benchmark-13156 (13131) [005] d..2 24573.236387: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
47410<...>-23903 ( 23896) [005] .... 24573.236388: binder_transaction_received: transaction=1669857
47411           <...>-13222 (-----) [000] d.h2 24573.236402: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=004
47412           <...>-13222 (-----) [000] dnh3 24573.236421: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
47413<...>-23903 ( 23896) [005] .... 24573.236438: binder_transaction: transaction=1669858 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
47414<...>-23903 ( 23896) [005] d..2 24573.236440: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
47415           <...>-13222 (-----) [000] dnh2 24573.236455: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
47416<...>-23903 ( 23896) [005] d..3 24573.236459: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
47417           <...>-13222 (-----) [000] dnh2 24573.236463: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
47418 id.nn.benchmark-13160 (13131) [007] d..2 24573.236465: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
47419           <...>-13154 (-----) [004] dnh1 24573.236466: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
47420<...>-23903 ( 23896) [005] d..2 24573.236466: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
47421    RenderThread-24437 (24151) [007] .... 24573.236467: binder_transaction_received: transaction=1669858
47422           <...>-13154 (-----) [004] d..2 24573.236468: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
47423           <...>-13222 (-----) [000] dnh3 24573.236470: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
47424         sugov:4-560   (  560) [004] d..2 24573.236471: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47425           <...>-13222 (-----) [000] d..2 24573.236476: sched_switch: prev_comm=id.nn.benchmark prev_pid=13222 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
47426 id.nn.benchmark-13159 (13131) [001] d..2 24573.236479: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
47427         sugov:0-559   (  559) [001] d..2 24573.236486: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
47428    RenderThread-24437 (24151) [007] d..2 24573.236490: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
47429 kgsl_worker_thr-246   (  246) [000] d..2 24573.236512: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
47430           <...>-13154 (-----) [004] dnh1 24573.236539: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
47431           <...>-13154 (-----) [004] d..2 24573.236542: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
47432 kgsl_worker_thr-246   (  246) [000] d..2 24573.236549: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13222 next_prio=110
47433  kworker/u16:15-18488 (18488) [004] d..2 24573.236663: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47434           <...>-13222 (-----) [000] ...1 24573.236766: tracing_mark_write: E|13131
47435           <...>-13222 (-----) [000] ...1 24573.236770: tracing_mark_write: E|13131
47436           <...>-13222 (-----) [000] ...1 24573.236782: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47437           <...>-13222 (-----) [000] ...1 24573.236786: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47438           <...>-13222 (-----) [000] ...1 24573.237017: tracing_mark_write: E|13131
47439           <...>-13222 (-----) [000] ...1 24573.237021: tracing_mark_write: E|13131
47440           <...>-13222 (-----) [000] ...1 24573.237032: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47441           <...>-13222 (-----) [000] ...1 24573.237036: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47442           <...>-13222 (-----) [000] ...1 24573.237428: tracing_mark_write: E|13131
47443           <...>-13222 (-----) [000] ...1 24573.237432: tracing_mark_write: E|13131
47444           <...>-13222 (-----) [000] ...1 24573.237442: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47445           <...>-13222 (-----) [000] ...1 24573.237446: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47446 id.nn.benchmark-13160 (13131) [007] d.s1 24573.237560: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
47447           <...>-13157 (-----) [006] d.H2 24573.237604: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
47448           <...>-13222 (-----) [000] dnh1 24573.237606: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
47449 id.nn.benchmark-13160 (13131) [007] d.s2 24573.237608: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
47450           <...>-13157 (-----) [006] d.H3 24573.237611: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
47451           <...>-13222 (-----) [000] d..2 24573.237613: sched_switch: prev_comm=id.nn.benchmark prev_pid=13222 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
47452           <...>-13157 (-----) [006] d.H2 24573.237613: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
47453           <...>-13154 (-----) [004] d..2 24573.237618: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
47454     rcu_preempt-7     (    7) [000] d..2 24573.237618: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
47455 id.nn.benchmark-13160 (13131) [007] d.s3 24573.237620: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
47456         sugov:4-560   (  560) [004] d..2 24573.237623: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
47457     rcu_preempt-7     (    7) [000] d..3 24573.237630: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
47458     rcu_preempt-7     (    7) [000] dnh2 24573.237635: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
47459     rcu_preempt-7     (    7) [000] d..2 24573.237645: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
47460         sugov:0-559   (  559) [000] d..2 24573.237655: 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
47461         rcuop/0-10    (   10) [000] d..2 24573.237669: 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
47462     rcu_preempt-7     (    7) [000] d..2 24573.237678: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13222 next_prio=110
47463  kworker/u16:15-18488 (18488) [004] d..2 24573.237729: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47464           <...>-13222 (-----) [000] ...1 24573.237969: tracing_mark_write: E|13131
47465           <...>-13222 (-----) [000] ...1 24573.237973: tracing_mark_write: E|13131
47466           <...>-13222 (-----) [000] ...1 24573.237990: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47467           <...>-13222 (-----) [000] ...1 24573.237994: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47468           <...>-13222 (-----) [000] ...1 24573.238184: tracing_mark_write: E|13131
47469           <...>-13222 (-----) [000] ...1 24573.238188: tracing_mark_write: E|13131
47470           <...>-13222 (-----) [000] ...1 24573.238201: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47471           <...>-13222 (-----) [000] ...1 24573.238205: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47472           <...>-13222 (-----) [000] ...1 24573.238275: tracing_mark_write: E|13131
47473           <...>-13222 (-----) [000] ...1 24573.238278: tracing_mark_write: E|13131
47474           <...>-13222 (-----) [000] ...1 24573.238289: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
47475           <...>-13222 (-----) [000] ...1 24573.238293: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
47476           <...>-13222 (-----) [000] ...1 24573.238569: tracing_mark_write: E|13131
47477           <...>-13222 (-----) [000] ...1 24573.238573: tracing_mark_write: E|13131
47478           <...>-13222 (-----) [000] ...1 24573.238582: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
47479           <...>-13222 (-----) [000] ...1 24573.238586: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
47480           <...>-13222 (-----) [000] ...1 24573.238636: tracing_mark_write: E|13131
47481           <...>-13222 (-----) [000] ...1 24573.238639: tracing_mark_write: E|13131
47482           <...>-13222 (-----) [000] ...1 24573.238649: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
47483           <...>-13222 (-----) [000] ...1 24573.238652: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
47484           <...>-13222 (-----) [000] ...1 24573.238668: tracing_mark_write: E|13131
47485           <...>-13222 (-----) [000] ...1 24573.238670: tracing_mark_write: E|13131
47486           <...>-13222 (-----) [000] ...1 24573.238680: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
47487           <...>-13222 (-----) [000] ...1 24573.238683: tracing_mark_write: E|13131
47488           <...>-13222 (-----) [000] ...1 24573.238692: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
47489           <...>-13222 (-----) [000] ...1 24573.238696: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
47490           <...>-13222 (-----) [000] d.h1 24573.238935: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
47491           <...>-13222 (-----) [000] dnh2 24573.238945: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
47492           <...>-13222 (-----) [000] d..2 24573.238953: sched_switch: prev_comm=id.nn.benchmark prev_pid=13222 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
47493        DispSync-23904 (23896) [000] d..1 24573.238968: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
47494        DispSync-23904 (23896) [000] d..2 24573.238978: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
47495 id.nn.benchmark-13159 (13131) [001] d..2 24573.238987: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
47496        DispSync-23904 (23896) [000] d..2 24573.238990: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13222 next_prio=110
47497   sfEventThread-23906 (23896) [001] d..3 24573.239017: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
47498   sfEventThread-23906 (23896) [001] d..4 24573.239034: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
47499           <...>-13222 (-----) [000] d..2 24573.239042: sched_switch: prev_comm=id.nn.benchmark prev_pid=13222 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
47500   sfEventThread-23906 (23896) [001] d..2 24573.239047: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
47501  surfaceflinger-23896 (23896) [000] d..1 24573.239299: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
47502  surfaceflinger-23896 (23896) [000] d..2 24573.239310: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
47503 id.nn.benchmark-13159 (13131) [001] d..2 24573.239318: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
47504   sfEventThread-23906 (23896) [001] d..2 24573.239332: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
47505  surfaceflinger-23896 (23896) [000] ...1 24573.239432: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
47506  surfaceflinger-23896 (23896) [000] ...1 24573.239436: tracing_mark_write: E|23896
47507  surfaceflinger-23896 (23896) [000] .... 24573.239479: binder_transaction: transaction=1669859 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
47508  surfaceflinger-23896 (23896) [000] ...2 24573.239500: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
47509  surfaceflinger-23896 (23896) [000] d..4 24573.239507: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
47510           <...>-13154 (-----) [004] dnh1 24573.239523: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
47511           <...>-13154 (-----) [004] d..2 24573.239525: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
47512  surfaceflinger-23896 (23896) [000] d..2 24573.239529: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13222 next_prio=110
47513  HwBinder:598_3-633   (  598) [004] .... 24573.239530: binder_transaction_received: transaction=1669859
47514  HwBinder:598_3-633   (  598) [004] ...1 24573.239556: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
47515  HwBinder:598_3-633   (  598) [004] ...1 24573.239606: tracing_mark_write: B|598|HWCSession::PresentDisplay::
47516  HwBinder:598_3-633   (  598) [004] ...1 24573.239670: tracing_mark_write: B|598|HWDeviceDRM::Commit::
47517  HwBinder:598_3-633   (  598) [004] ...1 24573.239674: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
47518  HwBinder:598_3-633   (  598) [004] d..2 24573.239876: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
47519           <...>-13222 (-----) [000] dnh1 24573.239890: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
47520           <...>-13222 (-----) [000] d..2 24573.239896: sched_switch: prev_comm=id.nn.benchmark prev_pid=13222 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
47521  HwBinder:598_3-633   (  598) [004] ...1 24573.239911: tracing_mark_write: E|598
47522  HwBinder:598_3-633   (  598) [004] ...1 24573.239912: tracing_mark_write: E|598
47523  HwBinder:598_3-633   (  598) [004] ...1 24573.239934: tracing_mark_write: E|598
47524  HwBinder:598_3-633   (  598) [004] ...1 24573.239953: tracing_mark_write: E|598
47525  HwBinder:598_3-633   (  598) [004] .... 24573.239959: binder_transaction: transaction=1669860 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
47526  HwBinder:598_3-633   (  598) [004] d..2 24573.239965: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
47527  HwBinder:598_3-633   (  598) [004] .... 24573.239974: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
47528 id.nn.benchmark-13159 (13131) [001] dnh1 24573.239979: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
47529 id.nn.benchmark-13159 (13131) [001] d..2 24573.239983: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
47530  surfaceflinger-23896 (23896) [001] .... 24573.239988: binder_transaction_received: transaction=1669860
47531  HwBinder:598_3-633   (  598) [004] d..2 24573.239996: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47532  surfaceflinger-23896 (23896) [001] d..2 24573.240234: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
47533 crtc_commit:111-253   (  253) [000] d..2 24573.240499: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13222 next_prio=110
47534           <...>-13222 (-----) [000] ...1 24573.240728: tracing_mark_write: E|13131
47535           <...>-13222 (-----) [000] ...1 24573.240732: tracing_mark_write: E|13131
47536           <...>-13222 (-----) [000] ...1 24573.240744: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47537           <...>-13222 (-----) [000] ...1 24573.240749: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47538           <...>-13222 (-----) [000] ...1 24573.240835: tracing_mark_write: E|13131
47539           <...>-13222 (-----) [000] ...1 24573.240838: tracing_mark_write: E|13131
47540 id.nn.benchmark-13160 (13131) [007] d.s2 24573.240888: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
47541 id.nn.benchmark-13160 (13131) [007] d.s3 24573.240898: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
47542           <...>-13154 (-----) [004] d..2 24573.240905: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
47543           <...>-13222 (-----) [000] ...1 24573.240928: tracing_mark_write: E|13131
47544           <...>-13222 (-----) [000] d..1 24573.240934: sched_waking: comm=id.nn.benchmark pid=13221 prio=110 target_cpu=000
47545  kworker/u16:15-18488 (18488) [004] d.h3 24573.240982: sched_wakeup: comm=id.nn.benchmark pid=13221 prio=110 target_cpu=004
47546           <...>-13222 (-----) [000] d.h3 24573.240983: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
47547           <...>-13222 (-----) [000] d.h3 24573.240991: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
47548  kworker/u16:15-18488 (18488) [004] dnh1 24573.240995: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
47549           <...>-13222 (-----) [000] dnh4 24573.240997: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
47550  kworker/u16:15-18488 (18488) [004] d..2 24573.240997: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
47551         sugov:4-560   (  560) [004] d..2 24573.241001: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
47552           <...>-13222 (-----) [000] d..2 24573.241003: sched_switch: prev_comm=id.nn.benchmark prev_pid=13222 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
47553         sugov:0-559   (  559) [000] d..2 24573.241010: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13222 next_prio=110
47554           <...>-13222 (-----) [000] ...1 24573.241026: tracing_mark_write: E|13131
47555  kworker/u16:15-18488 (18488) [004] d..2 24573.241173: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13221 next_prio=110
47556           <...>-13221 (-----) [004] d..2 24573.241183: sched_switch: prev_comm=id.nn.benchmark prev_pid=13221 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47557           <...>-13222 (-----) [000] d..1 24573.241253: sched_waking: comm=id.nn.benchmark pid=13221 prio=110 target_cpu=004
47558           <...>-13222 (-----) [000] dn.2 24573.241282: sched_wakeup: comm=id.nn.benchmark pid=13221 prio=110 target_cpu=000
47559           <...>-13222 (-----) [000] d..2 24573.241307: sched_switch: prev_comm=id.nn.benchmark prev_pid=13222 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13221 next_prio=110
47560           <...>-13221 (-----) [000] d..1 24573.241413: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
47561           <...>-13154 (-----) [004] dnh1 24573.241429: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
47562           <...>-13154 (-----) [004] d..2 24573.241431: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
47563           <...>-13131 (-----) [004] d..2 24573.241436: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47564           <...>-13221 (-----) [000] d..1 24573.241479: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
47565           <...>-13154 (-----) [004] dnh1 24573.241502: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
47566           <...>-13154 (-----) [004] d..2 24573.241504: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
47567           <...>-13131 (-----) [004] ...1 24573.241518: tracing_mark_write: E|13131
47568           <...>-13131 (-----) [004] ...1 24573.241520: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
47569           <...>-13131 (-----) [004] ...1 24573.241523: tracing_mark_write: E|13131
47570           <...>-13131 (-----) [004] ...1 24573.241525: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
47571           <...>-13131 (-----) [004] ...1 24573.241527: tracing_mark_write: E|13131
47572           <...>-13221 (-----) [000] d..2 24573.241561: sched_switch: prev_comm=id.nn.benchmark prev_pid=13221 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13222 next_prio=110
47573           <...>-13222 (-----) [000] d..2 24573.241586: sched_switch: prev_comm=id.nn.benchmark prev_pid=13222 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
47574           <...>-13131 (-----) [004] ...1 24573.241589: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
47575           <...>-13131 (-----) [004] ...1 24573.241612: tracing_mark_write: E|13131
47576           <...>-13131 (-----) [004] ...1 24573.241614: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
47577           <...>-13131 (-----) [004] ...1 24573.241617: tracing_mark_write: E|13131
47578           <...>-13131 (-----) [004] ...1 24573.241618: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
47579           <...>-13131 (-----) [004] ...1 24573.241620: tracing_mark_write: E|13131
47580           <...>-13131 (-----) [004] ...1 24573.241622: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
47581           <...>-13131 (-----) [004] ...1 24573.241686: tracing_mark_write: E|13131
47582           <...>-13131 (-----) [004] ...1 24573.241688: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
47583           <...>-13131 (-----) [004] d..2 24573.241693: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47584     logd.writer-563   (  555) [000] d..2 24573.241845: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13223 next_prio=110
47585           <...>-13223 (-----) [000] d.h4 24573.241875: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
47586           <...>-13223 (-----) [000] d.h4 24573.241882: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
47587           <...>-13154 (-----) [004] dnh1 24573.241887: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
47588           <...>-13223 (-----) [000] dnh5 24573.241888: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
47589           <...>-13154 (-----) [004] d..2 24573.241890: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
47590         sugov:4-560   (  560) [004] d..2 24573.241894: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47591           <...>-13223 (-----) [000] d..2 24573.241894: sched_switch: prev_comm=id.nn.benchmark prev_pid=13223 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
47592         sugov:0-559   (  559) [000] d..2 24573.241901: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13223 next_prio=110
47593           <...>-13223 (-----) [000] d..2 24573.241957: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
47594           <...>-13223 (-----) [000] d..3 24573.241964: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
47595           <...>-13223 (-----) [000] d..2 24573.242251: sched_switch: prev_comm=id.nn.benchmark prev_pid=13223 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
47596     logd.writer-563   (  555) [000] d..2 24573.242441: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13224 next_prio=110
47597           <...>-13224 (-----) [000] d.h4 24573.242469: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
47598           <...>-13224 (-----) [000] d.h4 24573.242477: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
47599           <...>-13154 (-----) [004] dnh1 24573.242480: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
47600           <...>-13154 (-----) [004] d..2 24573.242483: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
47601           <...>-13224 (-----) [000] dnh5 24573.242483: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
47602         sugov:4-560   (  560) [004] d..2 24573.242485: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47603           <...>-13224 (-----) [000] d..2 24573.242489: sched_switch: prev_comm=id.nn.benchmark prev_pid=13224 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
47604         sugov:0-559   (  559) [000] d..2 24573.242495: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13224 next_prio=110
47605           <...>-13224 (-----) [000] ...1 24573.242521: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
47606           <...>-13224 (-----) [000] ...1 24573.242526: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
47607           <...>-13224 (-----) [000] d..2 24573.242582: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
47608           <...>-13224 (-----) [000] d..3 24573.242590: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
47609           <...>-13224 (-----) [000] ...1 24573.242656: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47610           <...>-13224 (-----) [000] ...1 24573.242661: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47611 id.nn.benchmark-13155 (13131) [002] d.s2 24573.244228: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
47612           <...>-13154 (-----) [004] dnh1 24573.244250: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
47613           <...>-13154 (-----) [004] d..2 24573.244274: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
47614 id.nn.benchmark-13155 (13131) [002] d.H3 24573.244275: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
47615     rcu_preempt-7     (    7) [004] d..2 24573.244277: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
47616 id.nn.benchmark-13155 (13131) [002] d.H3 24573.244288: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
47617     rcu_preempt-7     (    7) [004] d..3 24573.244289: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=004
47618     rcu_preempt-7     (    7) [004] dnh2 24573.244292: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
47619 id.nn.benchmark-13155 (13131) [002] d.H4 24573.244297: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
47620     rcu_preempt-7     (    7) [004] d..2 24573.244313: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
47621           <...>-13224 (-----) [000] d..2 24573.244315: sched_switch: prev_comm=id.nn.benchmark prev_pid=13224 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
47622         sugov:4-560   (  560) [004] d..2 24573.244316: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
47623         sugov:0-559   (  559) [000] d..2 24573.244324: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
47624         rcuop/0-10    (   10) [004] d..2 24573.244331: 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
47625     rcu_preempt-7     (    7) [004] d..2 24573.244332: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=004
47626     rcu_preempt-7     (    7) [004] d..3 24573.244337: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=004
47627     rcu_preempt-7     (    7) [004] d..2 24573.244337: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
47628     rcu_preempt-7     (    7) [004] d..3 24573.244347: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=004
47629     rcu_preempt-7     (    7) [004] d..2 24573.244364: 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
47630         rcuop/4-45    (   45) [004] d..2 24573.244375: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
47631         rcuop/2-29    (   29) [004] d..2 24573.244377: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
47632         rcuop/2-29    (   29) [004] d..3 24573.244387: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=004
47633         rcuop/2-29    (   29) [004] d..2 24573.244402: 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
47634         rcuop/3-37    (   37) [004] d..2 24573.244414: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47635     logd.writer-563   (  555) [000] d..2 24573.244430: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13224 next_prio=110
47636           <...>-13224 (-----) [000] ...1 24573.244849: tracing_mark_write: E|13131
47637           <...>-13224 (-----) [000] ...1 24573.244853: tracing_mark_write: E|13131
47638           <...>-13224 (-----) [000] ...1 24573.244865: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47639           <...>-13224 (-----) [000] ...1 24573.244869: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47640           <...>-13224 (-----) [000] ...1 24573.245560: tracing_mark_write: E|13131
47641           <...>-13224 (-----) [000] ...1 24573.245564: tracing_mark_write: E|13131
47642           <...>-13224 (-----) [000] ...1 24573.245577: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47643           <...>-13224 (-----) [000] ...1 24573.245581: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47644           <...>-13224 (-----) [000] ...1 24573.245913: tracing_mark_write: E|13131
47645           <...>-13224 (-----) [000] ...1 24573.245917: tracing_mark_write: E|13131
47646           <...>-13224 (-----) [000] ...1 24573.245928: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47647           <...>-13224 (-----) [000] ...1 24573.245933: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47648           <...>-13224 (-----) [000] ...1 24573.246165: tracing_mark_write: E|13131
47649           <...>-13224 (-----) [000] ...1 24573.246169: tracing_mark_write: E|13131
47650           <...>-13224 (-----) [000] ...1 24573.246179: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47651           <...>-13224 (-----) [000] ...1 24573.246182: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47652           <...>-13224 (-----) [000] ...1 24573.246584: tracing_mark_write: E|13131
47653           <...>-13224 (-----) [000] ...1 24573.246587: tracing_mark_write: E|13131
47654           <...>-13224 (-----) [000] ...1 24573.246598: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47655           <...>-13224 (-----) [000] ...1 24573.246602: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47656           <...>-13224 (-----) [000] d.h4 24573.246901: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
47657           <...>-13224 (-----) [000] dnh5 24573.246913: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
47658           <...>-13224 (-----) [000] dnh4 24573.246917: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
47659           <...>-13154 (-----) [004] dnh1 24573.246937: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
47660           <...>-13154 (-----) [004] d..2 24573.246940: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
47661           <...>-13224 (-----) [000] dnh2 24573.246968: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
47662           <...>-13224 (-----) [000] dnh2 24573.246979: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
47663 id.nn.benchmark-13156 (13131) [005] dnh1 24573.246983: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
47664 id.nn.benchmark-13156 (13131) [005] d..2 24573.246986: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
47665 crtc_commit:111-253   (  253) [004] d..2 24573.246988: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47666         sugov:4-560   (  560) [005] d..2 24573.246991: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
47667           <...>-13224 (-----) [000] dnh3 24573.246991: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
47668           <...>-13224 (-----) [000] d..2 24573.246998: sched_switch: prev_comm=id.nn.benchmark prev_pid=13224 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
47669 id.nn.benchmark-13159 (13131) [001] d..2 24573.247001: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
47670         sugov:0-559   (  559) [001] d..2 24573.247010: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
47671  crtc_event:111-254   (  254) [000] d..2 24573.247011: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
47672           <...>-13154 (-----) [004] dnh1 24573.247022: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
47673           <...>-13154 (-----) [004] d..2 24573.247025: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
47674  crtc_event:111-254   (  254) [000] d..2 24573.247025: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13224 next_prio=110
47675 crtc_commit:111-253   (  253) [004] d..2 24573.247079: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47676           <...>-13224 (-----) [000] ...1 24573.247202: tracing_mark_write: E|13131
47677           <...>-13224 (-----) [000] ...1 24573.247206: tracing_mark_write: E|13131
47678           <...>-13224 (-----) [000] ...1 24573.247224: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47679           <...>-13224 (-----) [000] ...1 24573.247228: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47680           <...>-13224 (-----) [000] ...1 24573.247418: tracing_mark_write: E|13131
47681           <...>-13224 (-----) [000] ...1 24573.247422: tracing_mark_write: E|13131
47682           <...>-13224 (-----) [000] ...1 24573.247434: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47683           <...>-13224 (-----) [000] ...1 24573.247438: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47684           <...>-13224 (-----) [000] ...1 24573.247506: tracing_mark_write: E|13131
47685           <...>-13224 (-----) [000] ...1 24573.247510: tracing_mark_write: E|13131
47686           <...>-13224 (-----) [000] ...1 24573.247520: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
47687           <...>-13224 (-----) [000] ...1 24573.247526: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
47688 id.nn.benchmark-13160 (13131) [007] d.s2 24573.247555: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
47689           <...>-13154 (-----) [004] d.s2 24573.247559: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
47690 id.nn.benchmark-13160 (13131) [007] d.s3 24573.247569: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
47691           <...>-13224 (-----) [000] dnh1 24573.247571: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
47692           <...>-13154 (-----) [004] d..2 24573.247575: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
47693           <...>-13224 (-----) [000] d..2 24573.247577: sched_switch: prev_comm=id.nn.benchmark prev_pid=13224 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
47694  crtc_event:111-254   (  254) [000] d..2 24573.247594: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13224 next_prio=110
47695  kworker/u16:15-18488 (18488) [004] d..2 24573.247674: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47696           <...>-13224 (-----) [000] ...1 24573.247867: tracing_mark_write: E|13131
47697           <...>-13224 (-----) [000] ...1 24573.247872: tracing_mark_write: E|13131
47698           <...>-13224 (-----) [000] ...1 24573.247881: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
47699           <...>-13224 (-----) [000] ...1 24573.247885: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
47700           <...>-13224 (-----) [000] ...1 24573.247934: tracing_mark_write: E|13131
47701           <...>-13224 (-----) [000] ...1 24573.247937: tracing_mark_write: E|13131
47702           <...>-13224 (-----) [000] ...1 24573.247947: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
47703           <...>-13224 (-----) [000] ...1 24573.247950: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
47704           <...>-13224 (-----) [000] ...1 24573.247966: tracing_mark_write: E|13131
47705           <...>-13224 (-----) [000] ...1 24573.247969: tracing_mark_write: E|13131
47706           <...>-13224 (-----) [000] ...1 24573.247979: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
47707           <...>-13224 (-----) [000] ...1 24573.247982: tracing_mark_write: E|13131
47708           <...>-13224 (-----) [000] ...1 24573.247993: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
47709           <...>-13224 (-----) [000] ...1 24573.247998: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
47710           <...>-13224 (-----) [000] ...1 24573.248852: tracing_mark_write: E|13131
47711           <...>-13224 (-----) [000] ...1 24573.248855: tracing_mark_write: E|13131
47712           <...>-13224 (-----) [000] ...1 24573.248862: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47713           <...>-13224 (-----) [000] ...1 24573.248865: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47714           <...>-13224 (-----) [000] ...1 24573.248949: tracing_mark_write: E|13131
47715           <...>-13224 (-----) [000] ...1 24573.248953: tracing_mark_write: E|13131
47716           <...>-13224 (-----) [000] d..2 24573.248988: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
47717           <...>-13224 (-----) [000] d..3 24573.248998: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
47718           <...>-13224 (-----) [000] ...1 24573.249015: tracing_mark_write: E|13131
47719           <...>-13224 (-----) [000] d..1 24573.249019: sched_waking: comm=id.nn.benchmark pid=13223 prio=110 target_cpu=000
47720           <...>-13154 (-----) [004] dnh1 24573.249043: sched_wakeup: comm=id.nn.benchmark pid=13223 prio=110 target_cpu=004
47721           <...>-13154 (-----) [004] d..2 24573.249067: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13223 next_prio=110
47722           <...>-13224 (-----) [000] d.h3 24573.249068: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
47723           <...>-13223 (-----) [004] d..2 24573.249073: sched_switch: prev_comm=id.nn.benchmark prev_pid=13223 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47724           <...>-13224 (-----) [000] d.h3 24573.249081: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
47725           <...>-13154 (-----) [004] dnh1 24573.249084: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
47726           <...>-13154 (-----) [004] d..2 24573.249086: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
47727         sugov:4-560   (  560) [004] d..2 24573.249089: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47728           <...>-13224 (-----) [000] d.h4 24573.249090: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
47729 id.nn.benchmark-13159 (13131) [001] d..2 24573.249098: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
47730           <...>-13224 (-----) [000] ...1 24573.249105: tracing_mark_write: E|13131
47731         sugov:0-559   (  559) [001] d..2 24573.249106: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
47732           <...>-13224 (-----) [000] d.h4 24573.249240: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
47733           <...>-13154 (-----) [004] dnh1 24573.249252: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
47734           <...>-13154 (-----) [004] d..2 24573.249254: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
47735 crtc_commit:111-253   (  253) [004] d..2 24573.249295: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47736           <...>-13224 (-----) [000] d..1 24573.249373: sched_waking: comm=id.nn.benchmark pid=13223 prio=110 target_cpu=004
47737           <...>-13154 (-----) [004] dnh1 24573.249386: sched_wakeup: comm=id.nn.benchmark pid=13223 prio=110 target_cpu=004
47738           <...>-13154 (-----) [004] d..2 24573.249389: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13223 next_prio=110
47739           <...>-13224 (-----) [000] d..2 24573.249432: sched_switch: prev_comm=id.nn.benchmark prev_pid=13224 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
47740           <...>-13223 (-----) [004] d..1 24573.249441: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
47741           <...>-13223 (-----) [004] dn.2 24573.249447: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
47742           <...>-13223 (-----) [004] d..2 24573.249449: sched_switch: prev_comm=id.nn.benchmark prev_pid=13223 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
47743           <...>-13131 (-----) [004] d..2 24573.249454: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13223 next_prio=110
47744           <...>-13223 (-----) [004] d..1 24573.249480: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
47745           <...>-13223 (-----) [004] dn.2 24573.249484: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
47746           <...>-13223 (-----) [004] d..2 24573.249486: sched_switch: prev_comm=id.nn.benchmark prev_pid=13223 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
47747           <...>-13131 (-----) [004] ...1 24573.249495: tracing_mark_write: E|13131
47748           <...>-13131 (-----) [004] ...1 24573.249498: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
47749           <...>-13131 (-----) [004] ...1 24573.249500: tracing_mark_write: E|13131
47750           <...>-13131 (-----) [004] ...1 24573.249502: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
47751           <...>-13131 (-----) [004] ...1 24573.249503: tracing_mark_write: E|13131
47752     logd.writer-563   (  555) [000] d.h4 24573.249529: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
47753     logd.writer-563   (  555) [000] dnh5 24573.249538: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
47754     logd.writer-563   (  555) [000] d..2 24573.249553: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
47755           <...>-13131 (-----) [004] ...1 24573.249562: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
47756  crtc_event:111-254   (  254) [000] d..2 24573.249563: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
47757           <...>-13131 (-----) [004] ...1 24573.249582: tracing_mark_write: E|13131
47758           <...>-13131 (-----) [004] ...1 24573.249584: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
47759           <...>-13131 (-----) [004] ...1 24573.249586: tracing_mark_write: E|13131
47760           <...>-13131 (-----) [004] ...1 24573.249588: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
47761           <...>-13131 (-----) [004] ...1 24573.249590: tracing_mark_write: E|13131
47762           <...>-13131 (-----) [004] ...1 24573.249591: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
47763           <...>-13131 (-----) [004] ...1 24573.249639: tracing_mark_write: E|13131
47764           <...>-13131 (-----) [004] ...1 24573.249641: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
47765     logd.writer-563   (  555) [000] d..2 24573.249643: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13223 next_prio=110
47766           <...>-13131 (-----) [004] d..2 24573.249646: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47767           <...>-13223 (-----) [000] d..2 24573.249697: sched_switch: prev_comm=id.nn.benchmark prev_pid=13223 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13225 next_prio=110
47768           <...>-13225 (-----) [000] d.h4 24573.249725: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
47769           <...>-13225 (-----) [000] d.h4 24573.249732: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
47770           <...>-13154 (-----) [004] dnh1 24573.249737: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
47771           <...>-13154 (-----) [004] d..2 24573.249740: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
47772           <...>-13225 (-----) [000] dnh5 24573.249742: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
47773         sugov:4-560   (  560) [004] d..2 24573.249744: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47774           <...>-13225 (-----) [000] d..2 24573.249751: sched_switch: prev_comm=id.nn.benchmark prev_pid=13225 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
47775         sugov:0-559   (  559) [000] d..2 24573.249758: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13225 next_prio=110
47776           <...>-13225 (-----) [000] d..2 24573.249814: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
47777           <...>-13225 (-----) [000] d..3 24573.249822: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
47778           <...>-13225 (-----) [000] d..2 24573.250100: sched_switch: prev_comm=id.nn.benchmark prev_pid=13225 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
47779     logd.writer-563   (  555) [000] d..2 24573.250279: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13226 next_prio=110
47780           <...>-13226 (-----) [000] d.h4 24573.250308: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
47781           <...>-13226 (-----) [000] d.h4 24573.250316: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
47782           <...>-13154 (-----) [004] dnh1 24573.250318: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
47783           <...>-13154 (-----) [004] d..2 24573.250321: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
47784           <...>-13226 (-----) [000] dnh5 24573.250322: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
47785         sugov:4-560   (  560) [004] d..2 24573.250323: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47786           <...>-13226 (-----) [000] d..2 24573.250328: sched_switch: prev_comm=id.nn.benchmark prev_pid=13226 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
47787         sugov:0-559   (  559) [000] d..2 24573.250334: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13226 next_prio=110
47788           <...>-13226 (-----) [000] ...1 24573.250360: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
47789           <...>-13226 (-----) [000] ...1 24573.250365: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
47790           <...>-13226 (-----) [000] d..2 24573.250422: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
47791           <...>-13226 (-----) [000] d..3 24573.250430: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
47792           <...>-13226 (-----) [000] ...1 24573.250494: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
47793           <...>-13226 (-----) [000] ...1 24573.250499: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
47794 id.nn.benchmark-13160 (13131) [007] d.s2 24573.250887: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
47795           <...>-13154 (-----) [004] d.s1 24573.250890: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
47796 id.nn.benchmark-13160 (13131) [007] d.s3 24573.250893: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
47797           <...>-13154 (-----) [004] dns2 24573.250897: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
47798           <...>-13154 (-----) [004] d..2 24573.250903: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
47799  kworker/u16:15-18488 (18488) [004] d..2 24573.251111: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
47800     rcu_preempt-7     (    7) [004] d..2 24573.251114: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=004
47801     rcu_preempt-7     (    7) [004] d..3 24573.251117: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=004
47802     rcu_preempt-7     (    7) [004] d..2 24573.251120: 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
47803         rcuop/0-10    (   10) [004] d..2 24573.251122: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
47804         rcuop/0-10    (   10) [004] d..3 24573.251133: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
47805         rcuop/0-10    (   10) [004] d.h3 24573.251151: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
47806         rcuop/0-10    (   10) [004] dnh4 24573.251154: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
47807         rcuop/0-10    (   10) [004] dnh3 24573.251155: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
47808         rcuop/0-10    (   10) [004] d..2 24573.251162: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
47809         sugov:4-560   (  560) [004] d..2 24573.251165: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
47810           <...>-13226 (-----) [000] dnh1 24573.251165: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
47811         rcuop/1-21    (   21) [004] d..2 24573.251170: 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
47812           <...>-13226 (-----) [000] d..2 24573.251172: sched_switch: prev_comm=id.nn.benchmark prev_pid=13226 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
47813         sugov:0-559   (  559) [000] d..2 24573.251180: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
47814         rcuop/0-10    (   10) [004] d..2 24573.251180: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
47815         rcuop/0-10    (   10) [004] d..3 24573.251184: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
47816         rcuop/0-10    (   10) [004] d..2 24573.251186: 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
47817     rcu_preempt-7     (    7) [004] d..2 24573.251190: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47818     logd.writer-563   (  555) [000] d..2 24573.251284: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13226 next_prio=110
47819           <...>-13226 (-----) [000] d.h1 24573.251400: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
47820           <...>-13226 (-----) [000] dnh2 24573.251409: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
47821           <...>-13226 (-----) [000] d..2 24573.251416: sched_switch: prev_comm=id.nn.benchmark prev_pid=13226 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
47822        DispSync-23904 (23896) [000] d..1 24573.251438: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
47823        DispSync-23904 (23896) [000] d..2 24573.251455: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
47824 id.nn.benchmark-13159 (13131) [001] d..2 24573.251462: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
47825        DispSync-23904 (23896) [000] d..2 24573.251470: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13226 next_prio=110
47826  appEventThread-23905 (23896) [001] d..3 24573.251504: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
47827  appEventThread-23905 (23896) [001] d..4 24573.251528: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
47828           <...>-13226 (-----) [000] d..2 24573.251536: sched_switch: prev_comm=id.nn.benchmark prev_pid=13226 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
47829  appEventThread-23905 (23896) [001] d..2 24573.251573: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
47830<...>-24151 ( 24151) [000] .... 24573.251832: binder_transaction: transaction=1669861 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
47831<...>-24151 ( 24151) [000] d..4 24573.251841: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
47832           <...>-13154 (-----) [004] dnh1 24573.251865: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
47833           <...>-13154 (-----) [004] d..2 24573.251868: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
47834<...>-23903 ( 23896) [004] .... 24573.251872: binder_transaction_received: transaction=1669861
47835<...>-23903 ( 23896) [004] d..1 24573.251890: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
47836<...>-24151 ( 24151) [000] d..3 24573.251891: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
47837<...>-23903 ( 23896) [004] d..2 24573.251911: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47838<...>-24151 ( 24151) [000] d..4 24573.251912: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
47839<...>-24151 ( 24151) [000] dnh2 24573.251917: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
47840<...>-24151 ( 24151) [000] dnh3 24573.251946: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
47841<...>-24151 ( 24151) [000] dnh3 24573.251953: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
47842           <...>-13154 (-----) [004] dnh1 24573.251956: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
47843           <...>-13154 (-----) [004] d..2 24573.251959: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
47844         sugov:4-560   (  560) [004] d..2 24573.251962: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47845<...>-24151 ( 24151) [000] dnh4 24573.251966: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
47846<...>-24151 ( 24151) [000] d..2 24573.251972: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
47847 id.nn.benchmark-13159 (13131) [001] d..2 24573.251973: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
47848         sugov:0-559   (  559) [001] d..2 24573.251980: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
47849  appEventThread-23905 (23896) [000] d..2 24573.251999: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
47850    RenderThread-24437 (24151) [000] d..2 24573.252026: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
47851<...>-24151 ( 24151) [000] d..3 24573.252123: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
47852<...>-24151 ( 24151) [000] d..4 24573.252134: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
47853<...>-24151 ( 24151) [000] d..2 24573.252143: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
47854    RenderThread-24437 (24151) [000] d..1 24573.252244: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
47855    RenderThread-24437 (24151) [000] d..2 24573.252253: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
47856    RenderThread-24437 (24151) [000] .... 24573.252300: binder_transaction: transaction=1669862 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
47857    RenderThread-24437 (24151) [000] d..4 24573.252305: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
47858           <...>-13154 (-----) [004] dnh1 24573.252318: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
47859           <...>-13154 (-----) [004] d..2 24573.252320: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
47860<...>-23903 ( 23896) [004] .... 24573.252322: binder_transaction_received: transaction=1669862
47861    RenderThread-24437 (24151) [000] d..2 24573.252322: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
47862<...>-23903 ( 23896) [004] .... 24573.252348: binder_transaction: transaction=1669863 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
47863<...>-23903 ( 23896) [004] d..2 24573.252353: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
47864<...>-24151 ( 24151) [000] d..2 24573.252363: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13226 next_prio=110
47865           <...>-13226 (-----) [000] dnh3 24573.252371: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
47866<...>-23903 ( 23896) [004] d..2 24573.252373: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47867           <...>-13226 (-----) [000] d..2 24573.252377: sched_switch: prev_comm=id.nn.benchmark prev_pid=13226 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
47868    RenderThread-24437 (24151) [000] .... 24573.252381: binder_transaction_received: transaction=1669863
47869           <...>-13157 (-----) [006] d..3 24573.253352: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
47870    RenderThread-24437 (24151) [000] d..2 24573.253354: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13226 next_prio=110
47871 id.nn.benchmark-13156 (13131) [005] d..2 24573.253356: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
47872           <...>-13157 (-----) [006] d..2 24573.253360: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
47873 id.nn.benchmark-13159 (13131) [001] dnh1 24573.253363: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
47874 id.nn.benchmark-13159 (13131) [001] d..2 24573.253367: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
47875          <idle>-0     (-----) [006] d..1 24573.253369: cpu_idle: state=0 cpu_id=6
47876          <idle>-0     (-----) [005] d..1 24573.253369: cpu_idle: state=0 cpu_id=5
47877 id.nn.benchmark-13160 (13131) [007] d..2 24573.253380: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
47878 id.nn.benchmark-13159 (13131) [007] d.h3 24573.253400: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
47879     migration/1-17    (   17) [001] d..2 24573.253403: 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
47880 id.nn.benchmark-13159 (13131) [007] d.h4 24573.253408: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
47881 id.nn.benchmark-13159 (13131) [007] d.h3 24573.253409: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
47882          <idle>-0     (-----) [006] .n.1 24573.253415: cpu_idle: state=4294967295 cpu_id=6
47883          <idle>-0     (-----) [001] d..1 24573.253416: cpu_idle: state=0 cpu_id=1
47884          <idle>-0     (-----) [006] d..2 24573.253420: 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
47885         sugov:4-560   (  560) [006] d..3 24573.253425: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
47886          <idle>-0     (-----) [001] dnh2 24573.253425: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
47887          <idle>-0     (-----) [001] .n.1 24573.253429: cpu_idle: state=4294967295 cpu_id=1
47888         sugov:4-560   (  560) [006] d..2 24573.253432: 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
47889          <idle>-0     (-----) [006] d..1 24573.253434: cpu_idle: state=0 cpu_id=6
47890          <idle>-0     (-----) [001] d..2 24573.253435: 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
47891 id.nn.benchmark-13155 (13131) [002] dnh1 24573.253435: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
47892 id.nn.benchmark-13155 (13131) [002] d..2 24573.253442: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
47893         sugov:0-559   (  559) [001] d..2 24573.253451: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
47894           <...>-13226 (-----) [000] d.h1 24573.253451: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
47895          <idle>-0     (-----) [001] d..1 24573.253455: cpu_idle: state=0 cpu_id=1
47896           <...>-13226 (-----) [000] d.h2 24573.253465: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
47897          <idle>-0     (-----) [006] .n.1 24573.253466: cpu_idle: state=4294967295 cpu_id=6
47898          <idle>-0     (-----) [006] d..2 24573.253469: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
47899           <...>-13226 (-----) [000] d.h2 24573.253471: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=001
47900          <idle>-0     (-----) [001] .n.1 24573.253475: cpu_idle: state=4294967295 cpu_id=1
47901          <idle>-0     (-----) [001] d..2 24573.253493: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
47902     migration/2-25    (   25) [002] d..2 24573.253504: 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
47903          <idle>-0     (-----) [002] d..1 24573.253517: cpu_idle: state=0 cpu_id=2
47904           <...>-13226 (-----) [000] d.h2 24573.253572: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
47905           <...>-13226 (-----) [000] d.h3 24573.253590: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
47906          <idle>-0     (-----) [002] .n.1 24573.253595: cpu_idle: state=4294967295 cpu_id=2
47907          <idle>-0     (-----) [002] d..2 24573.253601: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
47908 kgsl_worker_thr-246   (  246) [002] d..2 24573.253635: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
47909    RenderThread-24437 (24151) [001] .... 24573.253636: binder_transaction: transaction=1669864 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
47910    RenderThread-24437 (24151) [001] d..4 24573.253644: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
47911    RenderThread-24437 (24151) [001] d..5 24573.253661: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=001
47912 kgsl_worker_thr-246   (  246) [002] d..3 24573.253663: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
47913 kgsl_worker_thr-246   (  246) [002] d..2 24573.253691: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
47914    RenderThread-24437 (24151) [001] d..2 24573.253693: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
47915<...>-23903 ( 23896) [001] .... 24573.253697: binder_transaction_received: transaction=1669864
47916  kworker/u16:15-18488 (18488) [002] d..2 24573.253720: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
47917          <idle>-0     (-----) [002] d..1 24573.253727: cpu_idle: state=0 cpu_id=2
47918<...>-23903 ( 23896) [001] .... 24573.253791: binder_transaction: transaction=1669865 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
47919<...>-23903 ( 23896) [001] d..2 24573.253795: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=001
47920<...>-23903 ( 23896) [001] d..3 24573.253803: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=001
47921<...>-23903 ( 23896) [001] d..2 24573.253821: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
47922    RenderThread-24437 (24151) [001] .... 24573.253825: binder_transaction_received: transaction=1669865
47923    RenderThread-24437 (24151) [001] d..2 24573.253880: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
47924          <idle>-0     (-----) [001] d..1 24573.253889: cpu_idle: state=0 cpu_id=1
47925           <...>-13154 (-----) [004] d..3 24573.254116: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
47926           <...>-13154 (-----) [004] d..2 24573.254124: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
47927 id.nn.benchmark-13158 (13131) [003] dnh1 24573.254127: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
47928 id.nn.benchmark-13158 (13131) [003] d..2 24573.254134: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
47929          <idle>-0     (-----) [004] d..1 24573.254134: cpu_idle: state=0 cpu_id=4
47930          <idle>-0     (-----) [004] .n.1 24573.254158: cpu_idle: state=4294967295 cpu_id=4
47931          <idle>-0     (-----) [004] d..2 24573.254178: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
47932<...>-33 ( 33) [003] d.h3 24573.254179: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
47933<...>-33 ( 33) [003] d.h3 24573.254191: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
47934          <idle>-0     (-----) [005] dnh2 24573.254196: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
47935          <idle>-0     (-----) [005] .n.1 24573.254198: cpu_idle: state=4294967295 cpu_id=5
47936<...>-33 ( 33) [003] d.h4 24573.254200: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
47937          <idle>-0     (-----) [005] d..2 24573.254201: 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
47938          <idle>-0     (-----) [001] .n.1 24573.254205: cpu_idle: state=4294967295 cpu_id=1
47939         sugov:4-560   (  560) [005] d..2 24573.254206: 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
47940          <idle>-0     (-----) [005] d..1 24573.254208: cpu_idle: state=0 cpu_id=5
47941          <idle>-0     (-----) [001] d..2 24573.254210: 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
47942<...>-33 ( 33) [003] d..2 24573.254215: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
47943         sugov:0-559   (  559) [001] d..2 24573.254241: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
47944          <idle>-0     (-----) [001] d..1 24573.254247: cpu_idle: state=0 cpu_id=1
47945          <idle>-0     (-----) [003] d..1 24573.254248: cpu_idle: state=0 cpu_id=3
47946           <...>-13226 (-----) [000] d..1 24573.254335: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
47947           <...>-13226 (-----) [000] d..1 24573.254353: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=005
47948          <idle>-0     (-----) [005] dnh2 24573.254357: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
47949          <idle>-0     (-----) [005] .n.1 24573.254359: cpu_idle: state=4294967295 cpu_id=5
47950          <idle>-0     (-----) [005] dn.2 24573.254360: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=005
47951          <idle>-0     (-----) [005] d..2 24573.254362: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
47952           <...>-13226 (-----) [000] d..1 24573.254365: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=006
47953           <...>-13226 (-----) [000] d..1 24573.254375: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=007
47954 id.nn.benchmark-13155 (13131) [006] d.h1 24573.254376: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=006
47955 id.nn.benchmark-13159 (13131) [007] d.h1 24573.254387: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=007
47956          <idle>-0     (-----) [001] ...1 24573.255361: cpu_idle: state=4294967295 cpu_id=1
47957          <idle>-0     (-----) [001] d..1 24573.255364: cpu_idle: state=0 cpu_id=1
47958           <...>-13226 (-----) [000] d.h1 24573.255412: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
47959           <...>-13226 (-----) [000] d.h2 24573.255428: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
47960          <idle>-0     (-----) [003] .n.1 24573.255433: cpu_idle: state=4294967295 cpu_id=3
47961          <idle>-0     (-----) [003] d..2 24573.255439: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
47962        DispSync-23904 (23896) [003] d..1 24573.255452: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
47963        DispSync-23904 (23896) [003] d..2 24573.255462: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
47964          <idle>-0     (-----) [001] .n.1 24573.255467: cpu_idle: state=4294967295 cpu_id=1
47965          <idle>-0     (-----) [001] d..2 24573.255472: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
47966        DispSync-23904 (23896) [003] d..2 24573.255494: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
47967   sfEventThread-23906 (23896) [001] d..3 24573.255497: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
47968 id.nn.benchmark-13160 (13131) [003] d.h4 24573.255524: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
47969 id.nn.benchmark-13160 (13131) [003] d.h4 24573.255536: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
47970   sfEventThread-23906 (23896) [001] d..4 24573.255537: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
47971 id.nn.benchmark-13159 (13131) [007] dnh1 24573.255538: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
47972          <idle>-0     (-----) [002] .n.1 24573.255542: cpu_idle: state=4294967295 cpu_id=2
47973 id.nn.benchmark-13159 (13131) [007] d..2 24573.255542: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
47974         sugov:4-560   (  560) [007] d..2 24573.255546: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
47975 id.nn.benchmark-13160 (13131) [003] d.h5 24573.255548: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
47976          <idle>-0     (-----) [002] d..2 24573.255548: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
47977           <...>-13226 (-----) [000] d..2 24573.255557: sched_switch: prev_comm=id.nn.benchmark prev_pid=13226 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
47978         sugov:0-559   (  559) [000] d..2 24573.255565: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13226 next_prio=110
47979   sfEventThread-23906 (23896) [001] d..2 24573.255570: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
47980  surfaceflinger-23896 (23896) [002] d..2 24573.255768: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=004
47981 id.nn.benchmark-13158 (13131) [004] dnh1 24573.255797: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=004
47982 id.nn.benchmark-13158 (13131) [004] d..2 24573.255800: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
47983         rcuop/2-29    (   29) [004] d..2 24573.255804: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
47984  surfaceflinger-23896 (23896) [002] d..1 24573.255807: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
47985  surfaceflinger-23896 (23896) [002] d..2 24573.255822: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
47986           <...>-13226 (-----) [000] d..2 24573.255829: sched_switch: prev_comm=id.nn.benchmark prev_pid=13226 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
47987   sfEventThread-23906 (23896) [000] d..2 24573.255850: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13226 next_prio=110
47988  surfaceflinger-23896 (23896) [002] ...1 24573.255948: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
47989  surfaceflinger-23896 (23896) [002] ...1 24573.255952: tracing_mark_write: E|23896
47990  surfaceflinger-23896 (23896) [002] .... 24573.255991: binder_transaction: transaction=1669866 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
47991  surfaceflinger-23896 (23896) [002] ...2 24573.256010: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
47992  surfaceflinger-23896 (23896) [002] d..4 24573.256016: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
47993  surfaceflinger-23896 (23896) [002] d..5 24573.256036: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
47994           <...>-13226 (-----) [000] d..2 24573.256044: sched_switch: prev_comm=id.nn.benchmark prev_pid=13226 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
47995  surfaceflinger-23896 (23896) [002] d.h5 24573.256072: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
47996  surfaceflinger-23896 (23896) [002] d.h5 24573.256080: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
47997 id.nn.benchmark-13159 (13131) [007] dnh1 24573.256084: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
47998 id.nn.benchmark-13159 (13131) [007] d..2 24573.256086: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
47999         sugov:4-560   (  560) [007] d..2 24573.256089: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
48000  surfaceflinger-23896 (23896) [002] d.h6 24573.256092: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
48001  HwBinder:598_3-633   (  598) [000] .... 24573.256098: binder_transaction_received: transaction=1669866
48002           <...>-13157 (-----) [001] d..2 24573.256102: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
48003  surfaceflinger-23896 (23896) [002] d..2 24573.256110: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
48004         sugov:0-559   (  559) [001] d..2 24573.256111: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
48005          <idle>-0     (-----) [002] d..1 24573.256119: cpu_idle: state=0 cpu_id=2
48006  HwBinder:598_3-633   (  598) [000] ...1 24573.256137: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
48007  HwBinder:598_3-633   (  598) [000] ...1 24573.256219: tracing_mark_write: B|598|HWCSession::PresentDisplay::
48008  HwBinder:598_3-633   (  598) [000] ...1 24573.256336: tracing_mark_write: B|598|HWDeviceDRM::Commit::
48009  HwBinder:598_3-633   (  598) [000] ...1 24573.256343: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
48010  HwBinder:598_3-633   (  598) [000] d..2 24573.256719: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
48011  HwBinder:598_3-633   (  598) [000] d..3 24573.256741: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
48012          <idle>-0     (-----) [002] .n.1 24573.256746: cpu_idle: state=4294967295 cpu_id=2
48013          <idle>-0     (-----) [002] d..2 24573.256772: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
48014  HwBinder:598_3-633   (  598) [000] d.h3 24573.256772: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
48015  HwBinder:598_3-633   (  598) [000] d.h3 24573.256779: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
48016 id.nn.benchmark-13159 (13131) [007] dnh1 24573.256782: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
48017 id.nn.benchmark-13159 (13131) [007] d..2 24573.256784: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
48018  HwBinder:598_3-633   (  598) [000] d.h4 24573.256787: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
48019         sugov:4-560   (  560) [007] d..2 24573.256787: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
48020           <...>-13157 (-----) [001] d..2 24573.256794: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
48021         sugov:0-559   (  559) [001] d..2 24573.256800: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
48022  HwBinder:598_3-633   (  598) [000] ...1 24573.256845: tracing_mark_write: E|598
48023  HwBinder:598_3-633   (  598) [000] ...1 24573.256848: tracing_mark_write: E|598
48024  HwBinder:598_3-633   (  598) [000] ...1 24573.256886: tracing_mark_write: E|598
48025  HwBinder:598_3-633   (  598) [000] ...1 24573.256920: tracing_mark_write: E|598
48026  HwBinder:598_3-633   (  598) [000] .... 24573.256928: binder_transaction: transaction=1669867 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
48027  HwBinder:598_3-633   (  598) [000] d..2 24573.256940: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
48028  HwBinder:598_3-633   (  598) [000] d..3 24573.256955: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
48029  HwBinder:598_3-633   (  598) [000] .... 24573.256957: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
48030           <...>-13157 (-----) [001] d..2 24573.256962: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
48031  surfaceflinger-23896 (23896) [001] .... 24573.256966: binder_transaction_received: transaction=1669867
48032  HwBinder:598_3-633   (  598) [000] d..2 24573.256997: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13226 next_prio=110
48033  surfaceflinger-23896 (23896) [001] d..2 24573.257205: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
48034 crtc_commit:111-253   (  253) [002] d..2 24573.257379: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
48035          <idle>-0     (-----) [002] d..1 24573.257386: cpu_idle: state=0 cpu_id=2
48036 id.nn.benchmark-13159 (13131) [007] d.s2 24573.257556: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
48037 id.nn.benchmark-13158 (13131) [004] d.s1 24573.257556: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
48038 id.nn.benchmark-13158 (13131) [004] dns2 24573.257576: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
48039 id.nn.benchmark-13159 (13131) [007] d.s2 24573.257577: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
48040 id.nn.benchmark-13158 (13131) [004] d..2 24573.257579: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
48041          <idle>-0     (-----) [002] dnh2 24573.257580: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
48042 id.nn.benchmark-13159 (13131) [007] dns3 24573.257583: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
48043          <idle>-0     (-----) [002] .n.1 24573.257584: cpu_idle: state=4294967295 cpu_id=2
48044     rcu_preempt-7     (    7) [004] d..2 24573.257585: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
48045 id.nn.benchmark-13159 (13131) [007] d..2 24573.257586: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/7:0 next_pid=12892 next_prio=120
48046           <...>-13154 (-----) [005] d.H2 24573.257586: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
48047          <idle>-0     (-----) [002] d..2 24573.257591: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
48048           <...>-13154 (-----) [005] d.H3 24573.257593: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
48049     kworker/7:0-12892 (12892) [007] d..2 24573.257596: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
48050           <...>-13154 (-----) [005] d.H2 24573.257597: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
48051         sugov:4-560   (  560) [007] d..2 24573.257602: 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
48052     kworker/7:0-12892 (12892) [007] d..2 24573.257608: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
48053  kworker/u16:15-18488 (18488) [002] dnh3 24573.257611: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
48054  kworker/u16:15-18488 (18488) [002] d..2 24573.257617: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
48055         sugov:0-559   (  559) [002] d..2 24573.257623: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
48056  kworker/u16:15-18488 (18488) [002] d..2 24573.257696: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
48057          <idle>-0     (-----) [002] d..1 24573.257702: cpu_idle: state=0 cpu_id=2
48058 id.nn.benchmark-13155 (13131) [006] d..2 24573.258889: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
48059 id.nn.benchmark-13158 (13131) [004] d..3 24573.258940: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
48060 id.nn.benchmark-13158 (13131) [004] d..2 24573.258946: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
48061           <...>-13154 (-----) [005] d..2 24573.258948: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
48062           <...>-13157 (-----) [001] dnh1 24573.258949: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
48063          <idle>-0     (-----) [004] d..1 24573.258951: cpu_idle: state=0 cpu_id=4
48064          <idle>-0     (-----) [005] d..1 24573.258951: cpu_idle: state=0 cpu_id=5
48065           <...>-13157 (-----) [001] d..2 24573.258955: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
48066          <idle>-0     (-----) [004] .n.1 24573.258976: cpu_idle: state=4294967295 cpu_id=4
48067          <idle>-0     (-----) [004] d..2 24573.258999: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
48068     migration/1-17    (   17) [001] d.h3 24573.259000: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
48069 id.nn.benchmark-13159 (13131) [007] d..2 24573.259003: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
48070          <idle>-0     (-----) [007] d..1 24573.259010: cpu_idle: state=0 cpu_id=7
48071     migration/1-17    (   17) [001] d.h3 24573.259012: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
48072           <...>-13226 (-----) [000] ...1 24573.259013: tracing_mark_write: E|13131
48073          <idle>-0     (-----) [007] dnh2 24573.259017: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
48074           <...>-13226 (-----) [000] ...1 24573.259018: tracing_mark_write: E|13131
48075          <idle>-0     (-----) [007] .n.1 24573.259019: cpu_idle: state=4294967295 cpu_id=7
48076     migration/1-17    (   17) [001] d.h4 24573.259020: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
48077          <idle>-0     (-----) [007] d..2 24573.259022: 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
48078          <idle>-0     (-----) [002] .n.1 24573.259025: cpu_idle: state=4294967295 cpu_id=2
48079         sugov:4-560   (  560) [007] d..3 24573.259026: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
48080          <idle>-0     (-----) [002] d..2 24573.259030: 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
48081         sugov:4-560   (  560) [007] d..2 24573.259032: 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
48082     migration/1-17    (   17) [001] d..2 24573.259033: 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
48083          <idle>-0     (-----) [007] d..1 24573.259035: cpu_idle: state=0 cpu_id=7
48084 id.nn.benchmark-13160 (13131) [003] dnh1 24573.259036: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
48085           <...>-13226 (-----) [000] ...1 24573.259039: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48086          <idle>-0     (-----) [001] d..1 24573.259041: cpu_idle: state=0 cpu_id=1
48087 id.nn.benchmark-13160 (13131) [003] d..2 24573.259043: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
48088         sugov:0-559   (  559) [002] d..2 24573.259044: 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
48089           <...>-13226 (-----) [000] ...1 24573.259045: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48090          <idle>-0     (-----) [002] d..1 24573.259049: cpu_idle: state=0 cpu_id=2
48091          <idle>-0     (-----) [007] .n.1 24573.259064: cpu_idle: state=4294967295 cpu_id=7
48092          <idle>-0     (-----) [007] d..2 24573.259082: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
48093<...>-33 ( 33) [003] d..2 24573.259091: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
48094          <idle>-0     (-----) [003] d..1 24573.259101: cpu_idle: state=0 cpu_id=3
48095           <...>-13226 (-----) [000] d..1 24573.259536: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
48096           <...>-13226 (-----) [000] d..1 24573.259548: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
48097          <idle>-0     (-----) [005] dnh2 24573.259551: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
48098          <idle>-0     (-----) [005] .n.1 24573.259553: cpu_idle: state=4294967295 cpu_id=5
48099          <idle>-0     (-----) [005] d..2 24573.259556: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
48100           <...>-13226 (-----) [000] d..1 24573.259561: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
48101 id.nn.benchmark-13156 (13131) [006] d.h1 24573.259561: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
48102           <...>-13226 (-----) [000] d..1 24573.259570: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
48103           <...>-13157 (-----) [004] d.h1 24573.259572: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
48104 id.nn.benchmark-13160 (13131) [007] d.h1 24573.259580: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
48105          <idle>-0     (-----) [001] ...1 24573.260377: cpu_idle: state=4294967295 cpu_id=1
48106          <idle>-0     (-----) [001] d..1 24573.260379: cpu_idle: state=0 cpu_id=1
48107          <idle>-0     (-----) [002] ...1 24573.260607: cpu_idle: state=4294967295 cpu_id=2
48108          <idle>-0     (-----) [002] d..1 24573.260609: cpu_idle: state=0 cpu_id=2
48109           <...>-13157 (-----) [004] d.s2 24573.260890: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
48110          <idle>-0     (-----) [001] dnH2 24573.260911: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
48111          <idle>-0     (-----) [002] .n.1 24573.260935: cpu_idle: state=4294967295 cpu_id=2
48112          <idle>-0     (-----) [002] d..2 24573.260960: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
48113          <idle>-0     (-----) [001] dnH3 24573.260961: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
48114          <idle>-0     (-----) [001] dnH3 24573.260973: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
48115           <...>-13157 (-----) [004] dnh1 24573.260975: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
48116           <...>-13157 (-----) [004] d..2 24573.260979: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
48117         sugov:4-560   (  560) [004] d..2 24573.260983: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
48118          <idle>-0     (-----) [001] dnH4 24573.260985: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
48119          <idle>-0     (-----) [003] .n.1 24573.260990: cpu_idle: state=4294967295 cpu_id=3
48120          <idle>-0     (-----) [001] .n.1 24573.260994: cpu_idle: state=4294967295 cpu_id=1
48121          <idle>-0     (-----) [003] d..2 24573.260996: 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
48122          <idle>-0     (-----) [001] d..2 24573.261002: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
48123         sugov:0-559   (  559) [003] d..2 24573.261022: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
48124  kworker/u16:15-18488 (18488) [001] .... 24573.261180: clk_set_rate: l3_cluster1_vote_clk 300000000
48125  kworker/u16:15-18488 (18488) [001] .... 24573.261186: clk_set_rate: l3_clk 1401600000
48126  kworker/u16:15-18488 (18488) [001] d..2 24573.261412: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
48127           <...>-13226 (-----) [000] ...1 24573.261666: tracing_mark_write: E|13131
48128           <...>-13226 (-----) [000] ...1 24573.261670: tracing_mark_write: E|13131
48129           <...>-13226 (-----) [000] ...1 24573.261694: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48130           <...>-13226 (-----) [000] ...1 24573.261698: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48131           <...>-13226 (-----) [000] ...1 24573.262034: tracing_mark_write: E|13131
48132           <...>-13226 (-----) [000] ...1 24573.262038: tracing_mark_write: E|13131
48133           <...>-13226 (-----) [000] ...1 24573.262049: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48134           <...>-13226 (-----) [000] ...1 24573.262053: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48135           <...>-13226 (-----) [000] ...1 24573.262289: tracing_mark_write: E|13131
48136           <...>-13226 (-----) [000] ...1 24573.262293: tracing_mark_write: E|13131
48137           <...>-13226 (-----) [000] ...1 24573.262305: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48138           <...>-13226 (-----) [000] ...1 24573.262308: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48139           <...>-13226 (-----) [000] ...1 24573.262713: tracing_mark_write: E|13131
48140           <...>-13226 (-----) [000] ...1 24573.262717: tracing_mark_write: E|13131
48141           <...>-13226 (-----) [000] ...1 24573.262728: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48142           <...>-13226 (-----) [000] ...1 24573.262732: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48143           <...>-13226 (-----) [000] ...1 24573.263132: tracing_mark_write: E|13131
48144           <...>-13226 (-----) [000] ...1 24573.263136: tracing_mark_write: E|13131
48145           <...>-13226 (-----) [000] ...1 24573.263156: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48146           <...>-13226 (-----) [000] ...1 24573.263160: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48147           <...>-13226 (-----) [000] d..2 24573.263218: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
48148 id.nn.benchmark-13156 (13131) [006] d..3 24573.263221: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
48149 id.nn.benchmark-13156 (13131) [006] d..2 24573.263227: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=D|K ==> next_comm=swapper/6 next_pid=0 next_prio=120
48150 id.nn.benchmark-13155 (13131) [001] dnh1 24573.263231: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
48151          <idle>-0     (-----) [006] d..1 24573.263231: cpu_idle: state=0 cpu_id=6
48152 id.nn.benchmark-13155 (13131) [001] d..2 24573.263238: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
48153          <idle>-0     (-----) [006] d.h2 24573.263251: sched_blocked_reason: pid=13156 iowait=1 caller=__lock_page_or_retry+0x26c/0x2c4
48154          <idle>-0     (-----) [006] dnh2 24573.263252: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
48155          <idle>-0     (-----) [006] .n.1 24573.263257: cpu_idle: state=4294967295 cpu_id=6
48156          <idle>-0     (-----) [006] d..2 24573.263280: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
48157     migration/1-17    (   17) [001] d.h3 24573.263281: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
48158     migration/1-17    (   17) [001] d.h3 24573.263292: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
48159 id.nn.benchmark-13160 (13131) [007] dnh1 24573.263296: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
48160 id.nn.benchmark-13160 (13131) [007] d..2 24573.263299: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
48161     migration/1-17    (   17) [001] d.h4 24573.263302: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
48162         sugov:4-560   (  560) [007] d..2 24573.263303: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
48163     migration/1-17    (   17) [001] d..2 24573.263308: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
48164         sugov:0-559   (  559) [001] d..2 24573.263333: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
48165           <...>-13226 (-----) [000] d.h4 24573.263362: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
48166           <...>-13226 (-----) [000] dnh5 24573.263372: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
48167           <...>-13226 (-----) [000] dnh4 24573.263376: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
48168 id.nn.benchmark-13160 (13131) [007] dnh1 24573.263394: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
48169 id.nn.benchmark-13160 (13131) [007] d..2 24573.263397: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
48170           <...>-13226 (-----) [000] d..2 24573.263423: sched_switch: prev_comm=id.nn.benchmark prev_pid=13226 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
48171  crtc_event:111-254   (  254) [000] d..2 24573.263439: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13226 next_prio=110
48172 crtc_commit:111-253   (  253) [007] d..2 24573.263490: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
48173           <...>-13226 (-----) [000] ...1 24573.263533: tracing_mark_write: E|13131
48174           <...>-13226 (-----) [000] ...1 24573.263537: tracing_mark_write: E|13131
48175           <...>-13226 (-----) [000] ...1 24573.263553: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48176           <...>-13226 (-----) [000] ...1 24573.263557: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48177 id.nn.benchmark-13155 (13131) [001] d..2 24573.263579: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
48178           <...>-13226 (-----) [000] d..2 24573.263581: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
48179           <...>-13154 (-----) [005] d..3 24573.263582: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
48180 id.nn.benchmark-13156 (13131) [006] d..2 24573.263584: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=D|K ==> next_comm=swapper/6 next_pid=0 next_prio=120
48181          <idle>-0     (-----) [006] d..1 24573.263586: cpu_idle: state=0 cpu_id=6
48182           <...>-13154 (-----) [005] d..2 24573.263589: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=D|K ==> next_comm=swapper/5 next_pid=0 next_prio=120
48183          <idle>-0     (-----) [005] d..1 24573.263592: cpu_idle: state=0 cpu_id=5
48184          <idle>-0     (-----) [006] d.h2 24573.263596: sched_blocked_reason: pid=13156 iowait=1 caller=__lock_page_or_retry+0x26c/0x2c4
48185          <idle>-0     (-----) [006] dnh2 24573.263597: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
48186          <idle>-0     (-----) [006] .n.1 24573.263599: cpu_idle: state=4294967295 cpu_id=6
48187 id.nn.benchmark-13155 (13131) [001] dnh2 24573.263601: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
48188          <idle>-0     (-----) [006] d..2 24573.263602: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
48189          <idle>-0     (-----) [005] d.h2 24573.263603: sched_blocked_reason: pid=13154 iowait=1 caller=__lock_page_or_retry+0x26c/0x2c4
48190          <idle>-0     (-----) [005] dnh2 24573.263604: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
48191          <idle>-0     (-----) [005] .n.1 24573.263607: cpu_idle: state=4294967295 cpu_id=5
48192 id.nn.benchmark-13155 (13131) [001] d..2 24573.263607: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R+ ==> next_comm=migration/1 next_pid=17 next_prio=0
48193          <idle>-0     (-----) [005] d..2 24573.263610: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
48194     migration/1-17    (   17) [001] d..2 24573.263660: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
48195           <...>-13226 (-----) [000] ...1 24573.263737: tracing_mark_write: E|13131
48196           <...>-13226 (-----) [000] ...1 24573.263742: tracing_mark_write: E|13131
48197           <...>-13226 (-----) [000] ...1 24573.263755: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
48198           <...>-13226 (-----) [000] ...1 24573.263760: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
48199           <...>-13226 (-----) [000] ...1 24573.264081: tracing_mark_write: E|13131
48200           <...>-13226 (-----) [000] ...1 24573.264084: tracing_mark_write: E|13131
48201           <...>-13226 (-----) [000] ...1 24573.264094: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
48202           <...>-13226 (-----) [000] ...1 24573.264097: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
48203           <...>-13226 (-----) [000] ...1 24573.264156: tracing_mark_write: E|13131
48204           <...>-13226 (-----) [000] ...1 24573.264158: tracing_mark_write: E|13131
48205           <...>-13226 (-----) [000] ...1 24573.264168: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
48206           <...>-13226 (-----) [000] ...1 24573.264171: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
48207           <...>-13226 (-----) [000] ...1 24573.264189: tracing_mark_write: E|13131
48208           <...>-13226 (-----) [000] ...1 24573.264192: tracing_mark_write: E|13131
48209           <...>-13226 (-----) [000] ...1 24573.264203: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
48210           <...>-13226 (-----) [000] ...1 24573.264206: tracing_mark_write: E|13131
48211           <...>-13157 (-----) [004] d.s1 24573.264222: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
48212           <...>-13157 (-----) [004] dns2 24573.264231: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
48213           <...>-13157 (-----) [004] d..2 24573.264234: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
48214           <...>-13226 (-----) [000] ...1 24573.264237: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
48215     rcu_preempt-7     (    7) [004] d..2 24573.264237: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=004
48216           <...>-13226 (-----) [000] ...1 24573.264242: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
48217     rcu_preempt-7     (    7) [004] d..3 24573.264245: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=004
48218     rcu_preempt-7     (    7) [004] d..2 24573.264250: 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
48219         rcuop/0-10    (   10) [004] d..2 24573.264267: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
48220           <...>-13226 (-----) [000] ...1 24573.265094: tracing_mark_write: E|13131
48221           <...>-13226 (-----) [000] ...1 24573.265097: tracing_mark_write: E|13131
48222           <...>-13226 (-----) [000] ...1 24573.265105: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48223           <...>-13226 (-----) [000] ...1 24573.265110: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48224           <...>-13226 (-----) [000] ...1 24573.265193: tracing_mark_write: E|13131
48225           <...>-13226 (-----) [000] ...1 24573.265196: tracing_mark_write: E|13131
48226           <...>-13226 (-----) [000] d..2 24573.265255: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
48227           <...>-13226 (-----) [000] d..3 24573.265266: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
48228           <...>-13226 (-----) [000] ...1 24573.265288: tracing_mark_write: E|13131
48229           <...>-13226 (-----) [000] d..1 24573.265294: sched_waking: comm=id.nn.benchmark pid=13225 prio=110 target_cpu=000
48230 id.nn.benchmark-13160 (13131) [007] dnh1 24573.265319: sched_wakeup: comm=id.nn.benchmark pid=13225 prio=110 target_cpu=007
48231 id.nn.benchmark-13160 (13131) [007] d..2 24573.265344: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13225 next_prio=110
48232           <...>-13226 (-----) [000] d.h3 24573.265344: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
48233           <...>-13225 (-----) [007] d..2 24573.265356: sched_switch: prev_comm=id.nn.benchmark prev_pid=13225 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
48234           <...>-13226 (-----) [000] d.h3 24573.265356: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
48235           <...>-13157 (-----) [004] dnh1 24573.265359: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
48236           <...>-13157 (-----) [004] d..2 24573.265362: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
48237         sugov:4-560   (  560) [004] d..2 24573.265365: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
48238           <...>-13226 (-----) [000] dnh4 24573.265366: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
48239           <...>-13226 (-----) [000] d..2 24573.265372: sched_switch: prev_comm=id.nn.benchmark prev_pid=13226 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
48240         sugov:0-559   (  559) [000] d..2 24573.265379: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
48241     logd.writer-563   (  555) [000] d..2 24573.265451: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13226 next_prio=110
48242           <...>-13226 (-----) [000] ...1 24573.265470: tracing_mark_write: E|13131
48243           <...>-13226 (-----) [000] d.h4 24573.265714: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
48244           <...>-13226 (-----) [000] dnh5 24573.265730: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
48245           <...>-13226 (-----) [000] d..2 24573.265761: sched_switch: prev_comm=id.nn.benchmark prev_pid=13226 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
48246 crtc_commit:111-253   (  253) [000] d..2 24573.265802: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13226 next_prio=110
48247           <...>-13226 (-----) [000] d..1 24573.265869: sched_waking: comm=id.nn.benchmark pid=13225 prio=110 target_cpu=007
48248           <...>-13226 (-----) [000] dn.2 24573.265885: sched_wakeup: comm=id.nn.benchmark pid=13225 prio=110 target_cpu=000
48249           <...>-13226 (-----) [000] dnh3 24573.265911: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
48250           <...>-13226 (-----) [000] dnh3 24573.265922: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
48251 id.nn.benchmark-13160 (13131) [007] dnh1 24573.265926: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
48252 id.nn.benchmark-13160 (13131) [007] d..2 24573.265928: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
48253           <...>-13226 (-----) [000] dnh4 24573.265928: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
48254         sugov:4-560   (  560) [007] d..2 24573.265931: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
48255           <...>-13226 (-----) [000] d..2 24573.265934: sched_switch: prev_comm=id.nn.benchmark prev_pid=13226 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
48256         sugov:0-559   (  559) [000] d..2 24573.265940: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13225 next_prio=110
48257           <...>-13225 (-----) [000] d.h6 24573.265998: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
48258           <...>-13225 (-----) [000] dnh7 24573.266004: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
48259           <...>-13225 (-----) [000] d..2 24573.266017: sched_switch: prev_comm=id.nn.benchmark prev_pid=13225 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
48260  crtc_event:111-254   (  254) [000] d..2 24573.266026: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13225 next_prio=110
48261           <...>-13225 (-----) [000] d..2 24573.266085: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
48262           <...>-13225 (-----) [000] d..3 24573.266095: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
48263           <...>-13225 (-----) [000] d..1 24573.266152: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
48264           <...>-13157 (-----) [004] dnh1 24573.266175: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
48265           <...>-13157 (-----) [004] d..2 24573.266178: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
48266           <...>-13131 (-----) [004] d..2 24573.266186: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
48267           <...>-13225 (-----) [000] d..1 24573.266228: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
48268           <...>-13157 (-----) [004] dnh1 24573.266252: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
48269           <...>-13157 (-----) [004] d..2 24573.266254: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
48270           <...>-13131 (-----) [004] ...1 24573.266270: tracing_mark_write: E|13131
48271           <...>-13131 (-----) [004] ...1 24573.266272: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
48272           <...>-13131 (-----) [004] ...1 24573.266275: tracing_mark_write: E|13131
48273           <...>-13131 (-----) [004] ...1 24573.266277: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
48274           <...>-13131 (-----) [004] ...1 24573.266279: tracing_mark_write: E|13131
48275           <...>-13225 (-----) [000] d..2 24573.266311: sched_switch: prev_comm=id.nn.benchmark prev_pid=13225 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
48276           <...>-13131 (-----) [004] ...1 24573.266342: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
48277           <...>-13131 (-----) [004] ...1 24573.266366: tracing_mark_write: E|13131
48278           <...>-13131 (-----) [004] ...1 24573.266369: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
48279           <...>-13131 (-----) [004] ...1 24573.266372: tracing_mark_write: E|13131
48280           <...>-13131 (-----) [004] ...1 24573.266374: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
48281           <...>-13131 (-----) [004] ...1 24573.266376: tracing_mark_write: E|13131
48282           <...>-13131 (-----) [004] ...1 24573.266378: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
48283     logd.writer-563   (  555) [000] d..2 24573.266391: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13226 next_prio=110
48284           <...>-13131 (-----) [004] d..1 24573.266396: sched_waking: comm=id.nn.benchmark pid=13226 prio=110 target_cpu=000
48285           <...>-13226 (-----) [000] d..2 24573.266418: sched_switch: prev_comm=id.nn.benchmark prev_pid=13226 prev_prio=110 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
48286           <...>-13131 (-----) [004] d..2 24573.266445: sched_blocked_reason: pid=13226 iowait=0 caller=do_exit+0x908/0x11bc
48287           <...>-13131 (-----) [004] d..2 24573.266446: sched_wakeup: comm=id.nn.benchmark pid=13226 prio=110 target_cpu=004
48288           <...>-13157 (-----) [000] d.h4 24573.266447: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
48289           <...>-13131 (-----) [004] d..2 24573.266453: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=D|K ==> next_comm=id.nn.benchmark next_pid=13226 next_prio=110
48290           <...>-13226 (-----) [004] d..2 24573.266454: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
48291           <...>-13226 (-----) [004] d..3 24573.266459: sched_blocked_reason: pid=13131 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
48292           <...>-13226 (-----) [004] dn.3 24573.266460: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
48293           <...>-13157 (-----) [000] d.h4 24573.266461: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
48294           <...>-13226 (-----) [004] d..2 24573.266463: sched_switch: prev_comm=id.nn.benchmark prev_pid=13226 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
48295           <...>-13131 (-----) [004] dnh3 24573.266466: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
48296           <...>-13157 (-----) [000] dnh5 24573.266467: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
48297           <...>-13131 (-----) [004] d..2 24573.266469: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
48298           <...>-13157 (-----) [000] d..2 24573.266473: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
48299         sugov:4-560   (  560) [004] d..2 24573.266473: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
48300         sugov:0-559   (  559) [000] d..2 24573.266479: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
48301           <...>-13131 (-----) [004] ...1 24573.266521: tracing_mark_write: E|13131
48302           <...>-13131 (-----) [004] ...1 24573.266523: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
48303           <...>-13131 (-----) [004] d..2 24573.266527: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13226 next_prio=110
48304           <...>-13226 (-----) [004] d..2 24573.266538: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=004
48305           <...>-13226 (-----) [004] dn.3 24573.266544: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=004
48306           <...>-13226 (-----) [004] d..2 24573.266546: sched_switch: prev_comm=id.nn.benchmark prev_pid=13226 prev_prio=110 prev_state=R+ ==> next_comm=rcuop/4 next_pid=45 next_prio=120
48307         rcuop/4-45    (   45) [004] d..2 24573.266551: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13226 next_prio=110
48308           <...>-13226 (-----) [004] d..2 24573.266560: sched_switch: prev_comm=id.nn.benchmark prev_pid=13226 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13227 next_prio=110
48309           <...>-13227 (-----) [004] d..2 24573.266587: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
48310           <...>-13157 (-----) [000] d.h1 24573.266598: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
48311           <...>-13227 (-----) [004] d..2 24573.266727: sched_switch: prev_comm=id.nn.benchmark prev_pid=13227 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13228 next_prio=110
48312           <...>-13228 (-----) [004] ...1 24573.266738: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
48313           <...>-13228 (-----) [004] ...1 24573.266740: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
48314           <...>-13228 (-----) [004] ...1 24573.266794: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48315           <...>-13228 (-----) [004] ...1 24573.266796: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48316 id.nn.benchmark-13160 (13131) [007] d.s2 24573.267556: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
48317 id.nn.benchmark-13155 (13131) [001] d.h2 24573.267560: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
48318           <...>-13228 (-----) [004] d.s2 24573.267560: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
48319 id.nn.benchmark-13155 (13131) [001] dnh3 24573.267570: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
48320 id.nn.benchmark-13160 (13131) [007] dns3 24573.267572: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
48321           <...>-13228 (-----) [004] dns3 24573.267573: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
48322           <...>-13228 (-----) [004] d..2 24573.267593: sched_switch: prev_comm=id.nn.benchmark prev_pid=13228 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
48323 id.nn.benchmark-13160 (13131) [007] dnH3 24573.267594: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
48324 id.nn.benchmark-13155 (13131) [001] d..2 24573.267595: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
48325 id.nn.benchmark-13160 (13131) [007] dnH4 24573.267599: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
48326 id.nn.benchmark-13160 (13131) [007] dnH3 24573.267600: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
48327  crtc_event:111-254   (  254) [004] d..2 24573.267611: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13228 next_prio=110
48328 id.nn.benchmark-13160 (13131) [007] d..2 24573.267616: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
48329         sugov:4-560   (  560) [007] d..2 24573.267639: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
48330     migration/1-17    (   17) [001] d.h2 24573.267641: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
48331     migration/1-17    (   17) [001] d..2 24573.267647: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
48332         sugov:0-559   (  559) [001] d..2 24573.267668: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
48333  kworker/u16:15-18488 (18488) [007] d..2 24573.267734: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
48334 id.nn.benchmark-13159 (13131) [003] d.h1 24573.267870: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
48335 id.nn.benchmark-13159 (13131) [003] d.h2 24573.267887: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
48336     logd.writer-563   (  555) [001] d..2 24573.267895: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=DispSync next_pid=23904 next_prio=97
48337        DispSync-23904 (23896) [001] d..1 24573.267918: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
48338        DispSync-23904 (23896) [001] d..2 24573.267931: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
48339           <...>-13157 (-----) [000] d..2 24573.267939: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
48340        DispSync-23904 (23896) [001] d..2 24573.267945: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
48341  appEventThread-23905 (23896) [000] d..3 24573.267981: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
48342  appEventThread-23905 (23896) [000] d..4 24573.268003: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
48343     logd.writer-563   (  555) [001] d..2 24573.268010: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
48344  appEventThread-23905 (23896) [000] d..2 24573.268027: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
48345<...>-24151 ( 24151) [001] .... 24573.268297: binder_transaction: transaction=1669868 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
48346<...>-24151 ( 24151) [001] d..4 24573.268306: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=001
48347<...>-24151 ( 24151) [001] d..5 24573.268335: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=001
48348<...>-24151 ( 24151) [001] d..3 24573.268370: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=001
48349<...>-24151 ( 24151) [001] d..4 24573.268382: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=001
48350<...>-24151 ( 24151) [001] d..2 24573.268483: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
48351<...>-23903 ( 23896) [001] .... 24573.268490: binder_transaction_received: transaction=1669868
48352<...>-23903 ( 23896) [001] d..1 24573.268516: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
48353<...>-23903 ( 23896) [001] dn.2 24573.268529: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
48354<...>-23903 ( 23896) [001] d..2 24573.268534: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
48355  appEventThread-23905 (23896) [001] d..2 24573.268546: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
48356    RenderThread-24437 (24151) [001] d..1 24573.268656: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
48357    RenderThread-24437 (24151) [001] d..2 24573.268678: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
48358    RenderThread-24437 (24151) [001] .... 24573.268727: binder_transaction: transaction=1669869 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
48359    RenderThread-24437 (24151) [001] d..4 24573.268733: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=006
48360 id.nn.benchmark-13156 (13131) [006] dnh1 24573.268756: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=006
48361 id.nn.benchmark-13156 (13131) [006] d..2 24573.268759: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
48362    RenderThread-24437 (24151) [001] d..2 24573.268761: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
48363  Binder:23896_5-25989 (23896) [006] .... 24573.268763: binder_transaction_received: transaction=1669869
48364<...>-23903 ( 23896) [001] d..1 24573.268765: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
48365<...>-23903 ( 23896) [001] dn.2 24573.268771: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
48366<...>-23903 ( 23896) [001] d..2 24573.268776: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
48367  Binder:23896_5-25989 (23896) [006] .... 24573.268800: binder_transaction: transaction=1669870 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
48368  appEventThread-23905 (23896) [001] d..2 24573.268801: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
48369  Binder:23896_5-25989 (23896) [006] d..2 24573.268805: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=001
48370<...>-23903 ( 23896) [001] d.h2 24573.268819: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=001
48371<...>-23903 ( 23896) [001] d..2 24573.268826: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
48372    RenderThread-24437 (24151) [001] .... 24573.268831: binder_transaction_received: transaction=1669870
48373  Binder:23896_5-25989 (23896) [006] d..2 24573.268832: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
48374    RenderThread-24437 (24151) [001] d..2 24573.269787: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
48375<...>-24151 ( 24151) [001] d..2 24573.269840: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
48376     logd.writer-563   (  555) [001] d.h1 24573.269883: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=001
48377     logd.writer-563   (  555) [001] d.h2 24573.269893: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
48378     logd.writer-563   (  555) [001] dnh2 24573.269896: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=001
48379     logd.writer-563   (  555) [001] d..2 24573.269904: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=RenderThread next_pid=24437 next_prio=120
48380           <...>-13157 (-----) [000] d.h2 24573.270006: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
48381           <...>-13157 (-----) [000] d.h3 24573.270021: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
48382    RenderThread-24437 (24151) [001] d..2 24573.270031: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
48383 kgsl_worker_thr-246   (  246) [001] d..2 24573.270066: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
48384 id.nn.benchmark-13160 (13131) [007] dnh1 24573.270092: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
48385 id.nn.benchmark-13160 (13131) [007] d..2 24573.270094: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
48386 kgsl_worker_thr-246   (  246) [001] d..2 24573.270098: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
48387  kworker/u16:15-18488 (18488) [007] d..2 24573.270110: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
48388    RenderThread-24437 (24151) [001] .... 24573.270119: binder_transaction: transaction=1669871 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
48389    RenderThread-24437 (24151) [001] d..4 24573.270127: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=006
48390 id.nn.benchmark-13156 (13131) [006] dnh1 24573.270147: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=006
48391    RenderThread-24437 (24151) [001] d..2 24573.270149: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
48392 id.nn.benchmark-13156 (13131) [006] d..2 24573.270150: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
48393  Binder:23896_5-25989 (23896) [006] .... 24573.270151: binder_transaction_received: transaction=1669871
48394  Binder:23896_5-25989 (23896) [006] .... 24573.270203: binder_transaction: transaction=1669872 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
48395  Binder:23896_5-25989 (23896) [006] d..2 24573.270204: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=001
48396     logd.writer-563   (  555) [001] d..2 24573.270207: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
48397 id.nn.benchmark-13155 (13131) [001] d.h4 24573.270245: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
48398  Binder:23896_5-25989 (23896) [006] d..3 24573.270246: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
48399 id.nn.benchmark-13160 (13131) [007] d..2 24573.270252: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
48400    RenderThread-24437 (24151) [007] .... 24573.270255: binder_transaction_received: transaction=1669872
48401 id.nn.benchmark-13155 (13131) [001] d.h4 24573.270274: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
48402  Binder:23896_5-25989 (23896) [006] d..2 24573.270275: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
48403           <...>-13228 (-----) [004] dnh1 24573.270277: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
48404           <...>-13228 (-----) [004] d..2 24573.270280: sched_switch: prev_comm=id.nn.benchmark prev_pid=13228 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
48405 id.nn.benchmark-13155 (13131) [001] dnh5 24573.270280: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
48406         sugov:4-560   (  560) [004] d..2 24573.270283: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13228 next_prio=110
48407    RenderThread-24437 (24151) [007] d..2 24573.270285: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
48408 id.nn.benchmark-13155 (13131) [001] d..2 24573.270286: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
48409         sugov:0-559   (  559) [001] d..2 24573.270293: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
48410           <...>-13228 (-----) [004] ...1 24573.270403: tracing_mark_write: E|13131
48411           <...>-13228 (-----) [004] ...1 24573.270405: tracing_mark_write: E|13131
48412           <...>-13228 (-----) [004] ...1 24573.270413: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48413           <...>-13228 (-----) [004] ...1 24573.270415: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48414           <...>-13228 (-----) [004] ...1 24573.270791: tracing_mark_write: E|13131
48415           <...>-13228 (-----) [004] ...1 24573.270793: tracing_mark_write: E|13131
48416           <...>-13228 (-----) [004] ...1 24573.270799: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48417           <...>-13228 (-----) [004] ...1 24573.270800: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48418           <...>-13228 (-----) [004] d.s1 24573.270892: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
48419 id.nn.benchmark-13159 (13131) [003] d.h2 24573.270895: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
48420           <...>-13228 (-----) [004] dns2 24573.270900: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
48421 id.nn.benchmark-13159 (13131) [003] dnh3 24573.270900: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
48422           <...>-13228 (-----) [004] dns2 24573.270901: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
48423           <...>-13228 (-----) [004] dns3 24573.270907: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
48424 id.nn.benchmark-13159 (13131) [003] d..2 24573.270909: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
48425           <...>-13228 (-----) [004] d..2 24573.270911: sched_switch: prev_comm=id.nn.benchmark prev_pid=13228 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
48426 id.nn.benchmark-13160 (13131) [007] d..2 24573.270913: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
48427     rcu_preempt-7     (    7) [004] d..2 24573.270914: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=004
48428     rcu_preempt-7     (    7) [004] d..3 24573.270927: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=004
48429     rcu_preempt-7     (    7) [004] d..2 24573.270958: 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
48430<...>-33 ( 33) [003] d.h3 24573.270959: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
48431         rcuop/2-29    (   29) [004] d..2 24573.270965: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13228 next_prio=110
48432<...>-33 ( 33) [003] d.h3 24573.270967: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
48433           <...>-13228 (-----) [004] dnh1 24573.270970: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
48434           <...>-13228 (-----) [004] d..2 24573.270974: sched_switch: prev_comm=id.nn.benchmark prev_pid=13228 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
48435         sugov:4-560   (  560) [004] d..2 24573.270977: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
48436<...>-33 ( 33) [003] d.h4 24573.270977: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
48437<...>-33 ( 33) [003] d..2 24573.270985: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
48438         sugov:0-559   (  559) [003] d..2 24573.271012: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13228 next_prio=110
48439  kworker/u16:15-18488 (18488) [007] .... 24573.271112: clk_set_rate: l3_cluster1_vote_clk 1478400000
48440  kworker/u16:15-18488 (18488) [007] .... 24573.271115: clk_set_rate: l3_clk 1478400000
48441  kworker/u16:15-18488 (18488) [007] d..2 24573.271192: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
48442           <...>-13228 (-----) [003] ...1 24573.271219: tracing_mark_write: E|13131
48443           <...>-13228 (-----) [003] ...1 24573.271224: tracing_mark_write: E|13131
48444           <...>-13228 (-----) [003] ...1 24573.271237: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48445           <...>-13228 (-----) [003] ...1 24573.271241: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48446           <...>-13228 (-----) [003] ...1 24573.271473: tracing_mark_write: E|13131
48447           <...>-13228 (-----) [003] ...1 24573.271477: tracing_mark_write: E|13131
48448           <...>-13228 (-----) [003] ...1 24573.271488: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48449           <...>-13228 (-----) [003] ...1 24573.271492: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48450 id.nn.benchmark-13155 (13131) [001] d.h1 24573.271878: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
48451 id.nn.benchmark-13155 (13131) [001] d.h2 24573.271894: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
48452           <...>-13228 (-----) [003] d..2 24573.271905: sched_switch: prev_comm=id.nn.benchmark prev_pid=13228 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
48453        DispSync-23904 (23896) [003] d..1 24573.271918: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
48454        DispSync-23904 (23896) [003] d..2 24573.271929: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
48455           <...>-13157 (-----) [000] d..2 24573.271938: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
48456        DispSync-23904 (23896) [003] d..2 24573.271943: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13228 next_prio=110
48457           <...>-13228 (-----) [003] ...1 24573.271953: tracing_mark_write: E|13131
48458           <...>-13228 (-----) [003] ...1 24573.271957: tracing_mark_write: E|13131
48459           <...>-13228 (-----) [003] ...1 24573.271967: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48460   sfEventThread-23906 (23896) [000] d..3 24573.271968: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
48461           <...>-13228 (-----) [003] ...1 24573.271971: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48462   sfEventThread-23906 (23896) [000] d..4 24573.271986: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
48463           <...>-13228 (-----) [003] d..2 24573.271995: sched_switch: prev_comm=id.nn.benchmark prev_pid=13228 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
48464   sfEventThread-23906 (23896) [000] d..2 24573.271999: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
48465  surfaceflinger-23896 (23896) [003] d..2 24573.272218: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=004
48466 id.nn.benchmark-13159 (13131) [004] dnh1 24573.272245: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=004
48467 id.nn.benchmark-13159 (13131) [004] d..2 24573.272248: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
48468         rcuop/2-29    (   29) [004] d..2 24573.272251: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
48469  surfaceflinger-23896 (23896) [003] d..1 24573.272258: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
48470  surfaceflinger-23896 (23896) [003] d..2 24573.272268: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
48471           <...>-13157 (-----) [000] d..2 24573.272276: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
48472   sfEventThread-23906 (23896) [000] d..2 24573.272291: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
48473  surfaceflinger-23896 (23896) [003] ...1 24573.272400: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
48474  surfaceflinger-23896 (23896) [003] ...1 24573.272403: tracing_mark_write: E|23896
48475  surfaceflinger-23896 (23896) [003] .... 24573.272445: binder_transaction: transaction=1669873 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
48476  surfaceflinger-23896 (23896) [003] ...2 24573.272464: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
48477  surfaceflinger-23896 (23896) [003] d..4 24573.272470: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
48478 id.nn.benchmark-13159 (13131) [004] dnh1 24573.272493: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
48479 id.nn.benchmark-13159 (13131) [004] d..2 24573.272517: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
48480  surfaceflinger-23896 (23896) [003] d.h5 24573.272518: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
48481  surfaceflinger-23896 (23896) [003] d.h5 24573.272529: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
48482 id.nn.benchmark-13160 (13131) [007] dnh1 24573.272533: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
48483 id.nn.benchmark-13160 (13131) [007] d..2 24573.272536: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
48484         sugov:4-560   (  560) [007] d..2 24573.272540: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
48485  surfaceflinger-23896 (23896) [003] d.h6 24573.272541: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
48486  HwBinder:598_3-633   (  598) [004] .... 24573.272546: binder_transaction_received: transaction=1669873
48487           <...>-13157 (-----) [000] d..2 24573.272548: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
48488  surfaceflinger-23896 (23896) [003] d..2 24573.272552: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13228 next_prio=110
48489         sugov:0-559   (  559) [000] d..2 24573.272555: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
48490  HwBinder:598_3-633   (  598) [004] ...1 24573.272570: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
48491  HwBinder:598_3-633   (  598) [004] ...1 24573.272619: tracing_mark_write: B|598|HWCSession::PresentDisplay::
48492  HwBinder:598_3-633   (  598) [004] ...1 24573.272679: tracing_mark_write: B|598|HWDeviceDRM::Commit::
48493  HwBinder:598_3-633   (  598) [004] ...1 24573.272683: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
48494  HwBinder:598_3-633   (  598) [004] d..2 24573.272884: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
48495           <...>-13228 (-----) [003] dnh1 24573.272902: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
48496           <...>-13228 (-----) [003] d..2 24573.272910: sched_switch: prev_comm=id.nn.benchmark prev_pid=13228 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
48497  HwBinder:598_3-633   (  598) [004] ...1 24573.272923: tracing_mark_write: E|598
48498  HwBinder:598_3-633   (  598) [004] ...1 24573.272924: tracing_mark_write: E|598
48499  HwBinder:598_3-633   (  598) [004] ...1 24573.272946: tracing_mark_write: E|598
48500  HwBinder:598_3-633   (  598) [004] ...1 24573.272965: tracing_mark_write: E|598
48501  HwBinder:598_3-633   (  598) [004] .... 24573.272971: binder_transaction: transaction=1669874 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
48502  HwBinder:598_3-633   (  598) [004] d..2 24573.272977: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
48503  HwBinder:598_3-633   (  598) [004] .... 24573.272986: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
48504           <...>-13157 (-----) [000] dnh1 24573.272991: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
48505           <...>-13157 (-----) [000] d..2 24573.272996: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
48506  surfaceflinger-23896 (23896) [000] .... 24573.273001: binder_transaction_received: transaction=1669874
48507  HwBinder:598_3-633   (  598) [004] d..2 24573.273008: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
48508  surfaceflinger-23896 (23896) [000] d..2 24573.273261: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
48509 crtc_commit:111-253   (  253) [003] d..2 24573.273516: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13228 next_prio=110
48510           <...>-13228 (-----) [003] ...1 24573.273553: tracing_mark_write: E|13131
48511           <...>-13228 (-----) [003] ...1 24573.273557: tracing_mark_write: E|13131
48512           <...>-13228 (-----) [003] ...1 24573.273579: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48513           <...>-13228 (-----) [003] ...1 24573.273584: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48514           <...>-13228 (-----) [003] ...1 24573.273777: tracing_mark_write: E|13131
48515           <...>-13228 (-----) [003] ...1 24573.273780: tracing_mark_write: E|13131
48516           <...>-13228 (-----) [003] ...1 24573.273795: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48517           <...>-13228 (-----) [003] ...1 24573.273799: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48518           <...>-13228 (-----) [003] ...1 24573.273870: tracing_mark_write: E|13131
48519           <...>-13228 (-----) [003] ...1 24573.273874: tracing_mark_write: E|13131
48520           <...>-13228 (-----) [003] ...1 24573.273886: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
48521           <...>-13228 (-----) [003] ...1 24573.273890: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
48522           <...>-13228 (-----) [003] ...1 24573.274196: tracing_mark_write: E|13131
48523           <...>-13228 (-----) [003] ...1 24573.274200: tracing_mark_write: E|13131
48524           <...>-13228 (-----) [003] ...1 24573.274210: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
48525 id.nn.benchmark-13159 (13131) [004] d.s2 24573.274224: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
48526           <...>-13228 (-----) [003] ...1 24573.274236: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
48527 id.nn.benchmark-13159 (13131) [004] d.s3 24573.274237: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
48528 id.nn.benchmark-13160 (13131) [007] d..2 24573.274243: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
48529  kworker/u16:15-18488 (18488) [007] d..2 24573.274279: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
48530           <...>-13228 (-----) [003] ...1 24573.274284: tracing_mark_write: E|13131
48531           <...>-13228 (-----) [003] ...1 24573.274287: tracing_mark_write: E|13131
48532           <...>-13228 (-----) [003] ...1 24573.274297: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
48533           <...>-13228 (-----) [003] ...1 24573.274300: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
48534           <...>-13228 (-----) [003] ...1 24573.274317: tracing_mark_write: E|13131
48535           <...>-13228 (-----) [003] ...1 24573.274320: tracing_mark_write: E|13131
48536           <...>-13228 (-----) [003] ...1 24573.274331: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
48537           <...>-13228 (-----) [003] ...1 24573.274334: tracing_mark_write: E|13131
48538           <...>-13228 (-----) [003] ...1 24573.274344: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
48539           <...>-13228 (-----) [003] ...1 24573.274348: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
48540           <...>-13228 (-----) [003] ...1 24573.275201: tracing_mark_write: E|13131
48541           <...>-13228 (-----) [003] ...1 24573.275204: tracing_mark_write: E|13131
48542           <...>-13228 (-----) [003] ...1 24573.275212: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48543           <...>-13228 (-----) [003] ...1 24573.275216: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48544           <...>-13228 (-----) [003] ...1 24573.275300: tracing_mark_write: E|13131
48545           <...>-13228 (-----) [003] ...1 24573.275304: tracing_mark_write: E|13131
48546           <...>-13228 (-----) [003] d..2 24573.275354: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
48547           <...>-13228 (-----) [003] d..3 24573.275367: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
48548           <...>-13228 (-----) [003] ...1 24573.275389: tracing_mark_write: E|13131
48549           <...>-13228 (-----) [003] d..1 24573.275395: sched_waking: comm=id.nn.benchmark pid=13227 prio=110 target_cpu=004
48550 id.nn.benchmark-13159 (13131) [004] dnh1 24573.275411: sched_wakeup: comm=id.nn.benchmark pid=13227 prio=110 target_cpu=004
48551 id.nn.benchmark-13159 (13131) [004] d..2 24573.275415: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13227 next_prio=110
48552           <...>-13228 (-----) [003] ...1 24573.275421: tracing_mark_write: E|13131
48553           <...>-13227 (-----) [004] d..2 24573.275424: sched_switch: prev_comm=id.nn.benchmark prev_pid=13227 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
48554           <...>-13228 (-----) [003] d..1 24573.275639: sched_waking: comm=id.nn.benchmark pid=13227 prio=110 target_cpu=004
48555 id.nn.benchmark-13159 (13131) [004] dnh1 24573.275652: sched_wakeup: comm=id.nn.benchmark pid=13227 prio=110 target_cpu=004
48556 id.nn.benchmark-13159 (13131) [004] d..2 24573.275655: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13227 next_prio=110
48557           <...>-13228 (-----) [003] d..2 24573.275705: sched_switch: prev_comm=id.nn.benchmark prev_pid=13228 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
48558           <...>-13227 (-----) [004] d..1 24573.275723: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
48559           <...>-13227 (-----) [004] dn.2 24573.275729: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
48560           <...>-13227 (-----) [004] d..2 24573.275731: sched_switch: prev_comm=id.nn.benchmark prev_pid=13227 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
48561           <...>-13131 (-----) [004] d..2 24573.275737: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13227 next_prio=110
48562           <...>-13227 (-----) [004] d..1 24573.275768: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
48563           <...>-13227 (-----) [004] dn.2 24573.275772: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
48564           <...>-13227 (-----) [004] d..2 24573.275774: sched_switch: prev_comm=id.nn.benchmark prev_pid=13227 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
48565           <...>-13131 (-----) [004] ...1 24573.275782: tracing_mark_write: E|13131
48566           <...>-13131 (-----) [004] ...1 24573.275786: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
48567           <...>-13131 (-----) [004] ...1 24573.275789: tracing_mark_write: E|13131
48568           <...>-13131 (-----) [004] ...1 24573.275791: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
48569           <...>-13131 (-----) [004] ...1 24573.275793: tracing_mark_write: E|13131
48570     logd.writer-563   (  555) [003] d..2 24573.275808: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13227 next_prio=110
48571           <...>-13131 (-----) [004] ...1 24573.275855: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
48572           <...>-13227 (-----) [003] d..2 24573.275864: sched_switch: prev_comm=id.nn.benchmark prev_pid=13227 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
48573           <...>-13131 (-----) [004] d..2 24573.275870: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
48574 id.nn.benchmark-13159 (13131) [003] d.h4 24573.275897: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
48575           <...>-13131 (-----) [004] ...1 24573.275906: tracing_mark_write: E|13131
48576           <...>-13131 (-----) [004] ...1 24573.275909: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
48577 id.nn.benchmark-13159 (13131) [003] d.h4 24573.275909: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
48578           <...>-13131 (-----) [004] dnh1 24573.275913: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
48579           <...>-13131 (-----) [004] d..2 24573.275917: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
48580 id.nn.benchmark-13159 (13131) [003] d.h5 24573.275917: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
48581         sugov:4-560   (  560) [004] d..2 24573.275921: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
48582 id.nn.benchmark-13159 (13131) [003] d.h3 24573.275923: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
48583           <...>-13131 (-----) [004] ...1 24573.275925: tracing_mark_write: E|13131
48584           <...>-13157 (-----) [000] d..2 24573.275926: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
48585           <...>-13131 (-----) [004] ...1 24573.275927: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
48586           <...>-13131 (-----) [004] ...1 24573.275928: tracing_mark_write: E|13131
48587           <...>-13131 (-----) [004] ...1 24573.275930: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
48588         sugov:0-559   (  559) [000] d..2 24573.275934: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
48589           <...>-13131 (-----) [004] ...1 24573.275990: tracing_mark_write: E|13131
48590           <...>-13131 (-----) [004] ...1 24573.275992: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
48591           <...>-13131 (-----) [004] d..2 24573.275996: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13229 next_prio=110
48592           <...>-13229 (-----) [004] d..2 24573.276147: sched_switch: prev_comm=id.nn.benchmark prev_pid=13229 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13230 next_prio=110
48593           <...>-13230 (-----) [004] ...1 24573.276157: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
48594           <...>-13230 (-----) [004] ...1 24573.276159: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
48595           <...>-13230 (-----) [004] ...1 24573.276211: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48596           <...>-13230 (-----) [004] ...1 24573.276213: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48597           <...>-13230 (-----) [004] ...1 24573.277067: tracing_mark_write: E|13131
48598           <...>-13230 (-----) [004] ...1 24573.277068: tracing_mark_write: E|13131
48599           <...>-13230 (-----) [004] ...1 24573.277073: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48600           <...>-13230 (-----) [004] ...1 24573.277074: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48601           <...>-13230 (-----) [004] ...1 24573.277442: tracing_mark_write: E|13131
48602           <...>-13230 (-----) [004] ...1 24573.277443: tracing_mark_write: E|13131
48603           <...>-13230 (-----) [004] ...1 24573.277447: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48604           <...>-13230 (-----) [004] ...1 24573.277449: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48605           <...>-13230 (-----) [004] d.s1 24573.277560: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
48606           <...>-13230 (-----) [004] dns2 24573.277579: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
48607 id.nn.benchmark-13155 (13131) [001] d.h2 24573.277579: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
48608           <...>-13230 (-----) [004] dns2 24573.277581: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
48609           <...>-13154 (-----) [005] d.h2 24573.277586: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
48610 id.nn.benchmark-13158 (13131) [002] d.s2 24573.277586: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
48611 id.nn.benchmark-13155 (13131) [001] dnh3 24573.277587: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
48612           <...>-13230 (-----) [004] dns3 24573.277587: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
48613           <...>-13230 (-----) [004] d..2 24573.277591: sched_switch: prev_comm=id.nn.benchmark prev_pid=13230 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
48614 id.nn.benchmark-13160 (13131) [007] d..2 24573.277593: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
48615           <...>-13154 (-----) [005] d.h3 24573.277595: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
48616 id.nn.benchmark-13155 (13131) [001] d..2 24573.277597: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
48617 id.nn.benchmark-13158 (13131) [002] dns3 24573.277598: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
48618     rcu_preempt-7     (    7) [004] d..2 24573.277598: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
48619           <...>-13154 (-----) [005] d.h2 24573.277599: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
48620 id.nn.benchmark-13158 (13131) [002] dns2 24573.277601: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
48621 id.nn.benchmark-13158 (13131) [002] dns3 24573.277602: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
48622         sugov:4-560   (  560) [004] d..2 24573.277605: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
48623     rcu_preempt-7     (    7) [004] d..2 24573.277607: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=004
48624           <...>-13157 (-----) [000] dnh1 24573.277610: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
48625 id.nn.benchmark-13158 (13131) [002] d..2 24573.277612: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
48626           <...>-13157 (-----) [000] d..2 24573.277619: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
48627     kworker/2:0-12895 (12895) [002] d..2 24573.277625: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
48628     rcu_preempt-7     (    7) [004] d..3 24573.277625: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=004
48629     rcu_preempt-7     (    7) [004] d..2 24573.277626: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=004
48630         sugov:0-559   (  559) [000] d..2 24573.277652: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
48631     rcu_preempt-7     (    7) [004] d..3 24573.277653: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=004
48632     rcu_preempt-7     (    7) [004] d..2 24573.277659: 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
48633         rcuop/4-45    (   45) [004] d..2 24573.277666: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
48634         rcuop/0-10    (   10) [004] d..2 24573.277668: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
48635     migration/1-17    (   17) [001] d..2 24573.277670: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
48636         rcuop/0-10    (   10) [004] d..3 24573.277676: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
48637         rcuop/0-10    (   10) [004] d..2 24573.277680: 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
48638         rcuop/1-21    (   21) [004] d..2 24573.277686: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13230 next_prio=110
48639  kworker/u16:15-18488 (18488) [007] d..2 24573.277731: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
48640     logd.writer-563   (  555) [001] d..2 24573.278006: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
48641           <...>-13230 (-----) [004] ...1 24573.278148: tracing_mark_write: E|13131
48642           <...>-13230 (-----) [004] ...1 24573.278150: tracing_mark_write: E|13131
48643           <...>-13230 (-----) [004] ...1 24573.278154: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48644           <...>-13230 (-----) [004] ...1 24573.278156: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48645           <...>-13230 (-----) [004] ...1 24573.278321: tracing_mark_write: E|13131
48646           <...>-13230 (-----) [004] ...1 24573.278322: tracing_mark_write: E|13131
48647           <...>-13230 (-----) [004] ...1 24573.278325: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48648           <...>-13230 (-----) [004] ...1 24573.278326: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48649           <...>-13230 (-----) [004] ...1 24573.278617: tracing_mark_write: E|13131
48650           <...>-13230 (-----) [004] ...1 24573.278618: tracing_mark_write: E|13131
48651           <...>-13230 (-----) [004] ...1 24573.278621: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48652           <...>-13230 (-----) [004] ...1 24573.278622: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48653           <...>-13230 (-----) [004] ...1 24573.278913: tracing_mark_write: E|13131
48654           <...>-13230 (-----) [004] ...1 24573.278915: tracing_mark_write: E|13131
48655           <...>-13230 (-----) [004] ...1 24573.278921: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48656           <...>-13230 (-----) [004] ...1 24573.278922: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48657           <...>-13230 (-----) [004] ...1 24573.279081: tracing_mark_write: E|13131
48658           <...>-13230 (-----) [004] ...1 24573.279082: tracing_mark_write: E|13131
48659           <...>-13230 (-----) [004] ...1 24573.279086: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48660           <...>-13230 (-----) [004] ...1 24573.279087: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48661           <...>-13230 (-----) [004] ...1 24573.279139: tracing_mark_write: E|13131
48662           <...>-13230 (-----) [004] ...1 24573.279140: tracing_mark_write: E|13131
48663           <...>-13230 (-----) [004] ...1 24573.279144: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
48664           <...>-13230 (-----) [004] ...1 24573.279145: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
48665           <...>-13230 (-----) [004] ...1 24573.279275: tracing_mark_write: E|13131
48666           <...>-13230 (-----) [004] ...1 24573.279276: tracing_mark_write: E|13131
48667           <...>-13230 (-----) [004] ...1 24573.279279: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
48668           <...>-13230 (-----) [004] ...1 24573.279280: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
48669           <...>-13230 (-----) [004] ...1 24573.279301: tracing_mark_write: E|13131
48670           <...>-13230 (-----) [004] ...1 24573.279302: tracing_mark_write: E|13131
48671           <...>-13230 (-----) [004] ...1 24573.279305: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
48672           <...>-13230 (-----) [004] ...1 24573.279306: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
48673           <...>-13230 (-----) [004] ...1 24573.279311: tracing_mark_write: E|13131
48674           <...>-13230 (-----) [004] ...1 24573.279313: tracing_mark_write: E|13131
48675           <...>-13230 (-----) [004] ...1 24573.279316: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
48676           <...>-13230 (-----) [004] ...1 24573.279317: tracing_mark_write: E|13131
48677           <...>-13230 (-----) [004] ...1 24573.279321: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
48678           <...>-13230 (-----) [004] ...1 24573.279323: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
48679           <...>-13230 (-----) [004] ...1 24573.279628: tracing_mark_write: E|13131
48680           <...>-13230 (-----) [004] ...1 24573.279629: tracing_mark_write: E|13131
48681           <...>-13230 (-----) [004] ...1 24573.279632: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48682           <...>-13230 (-----) [004] ...1 24573.279633: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48683           <...>-13230 (-----) [004] ...1 24573.279702: tracing_mark_write: E|13131
48684           <...>-13230 (-----) [004] ...1 24573.279704: tracing_mark_write: E|13131
48685           <...>-13230 (-----) [004] d..2 24573.279719: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
48686           <...>-13230 (-----) [004] ...1 24573.279733: tracing_mark_write: E|13131
48687 id.nn.benchmark-13155 (13131) [001] d.h1 24573.279733: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
48688           <...>-13230 (-----) [004] d..1 24573.279735: sched_waking: comm=id.nn.benchmark pid=13229 prio=110 target_cpu=004
48689           <...>-13230 (-----) [004] dn.2 24573.279740: sched_wakeup: comm=id.nn.benchmark pid=13229 prio=110 target_cpu=004
48690           <...>-13230 (-----) [004] d..2 24573.279743: sched_switch: prev_comm=id.nn.benchmark prev_pid=13230 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13229 next_prio=110
48691           <...>-13229 (-----) [004] d..2 24573.279748: sched_switch: prev_comm=id.nn.benchmark prev_pid=13229 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13230 next_prio=110
48692           <...>-13230 (-----) [004] ...1 24573.279753: tracing_mark_write: E|13131
48693           <...>-13230 (-----) [004] d..1 24573.279853: sched_waking: comm=id.nn.benchmark pid=13229 prio=110 target_cpu=004
48694           <...>-13157 (-----) [000] d.h4 24573.279855: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
48695           <...>-13230 (-----) [004] dn.2 24573.279856: sched_wakeup: comm=id.nn.benchmark pid=13229 prio=110 target_cpu=004
48696           <...>-13230 (-----) [004] d..2 24573.279862: sched_switch: prev_comm=id.nn.benchmark prev_pid=13230 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13229 next_prio=110
48697           <...>-13157 (-----) [000] d.h4 24573.279870: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
48698           <...>-13229 (-----) [004] dnh1 24573.279871: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
48699           <...>-13229 (-----) [004] d..2 24573.279874: sched_switch: prev_comm=id.nn.benchmark prev_pid=13229 prev_prio=110 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
48700  crtc_event:111-254   (  254) [004] d..2 24573.279884: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13229 next_prio=110
48701 id.nn.benchmark-13160 (13131) [007] dnh1 24573.279890: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
48702 id.nn.benchmark-13160 (13131) [007] d..2 24573.279893: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
48703           <...>-13157 (-----) [000] d.h2 24573.279919: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
48704           <...>-13229 (-----) [004] d..1 24573.279923: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
48705           <...>-13157 (-----) [000] d.h2 24573.279926: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
48706           <...>-13229 (-----) [004] dn.2 24573.279929: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
48707           <...>-13157 (-----) [000] dnh3 24573.279932: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
48708           <...>-13229 (-----) [004] dnh2 24573.279932: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
48709           <...>-13229 (-----) [004] d..2 24573.279935: sched_switch: prev_comm=id.nn.benchmark prev_pid=13229 prev_prio=110 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
48710           <...>-13157 (-----) [000] d..2 24573.279938: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
48711         sugov:4-560   (  560) [004] d..2 24573.279939: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
48712         sugov:0-559   (  559) [000] d..2 24573.279945: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
48713           <...>-13131 (-----) [004] d..2 24573.279945: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13229 next_prio=110
48714           <...>-13229 (-----) [004] d..1 24573.279968: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
48715           <...>-13229 (-----) [004] dn.2 24573.279972: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
48716           <...>-13229 (-----) [004] d..2 24573.279974: sched_switch: prev_comm=id.nn.benchmark prev_pid=13229 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
48717           <...>-13131 (-----) [004] ...1 24573.279982: tracing_mark_write: E|13131
48718           <...>-13131 (-----) [004] ...1 24573.279984: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
48719           <...>-13131 (-----) [004] ...1 24573.279986: tracing_mark_write: E|13131
48720 crtc_commit:111-253   (  253) [007] d..2 24573.279986: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
48721           <...>-13131 (-----) [004] ...1 24573.279987: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
48722           <...>-13131 (-----) [004] ...1 24573.279989: tracing_mark_write: E|13131
48723           <...>-13131 (-----) [004] ...1 24573.280048: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
48724           <...>-13131 (-----) [004] ...1 24573.280067: tracing_mark_write: E|13131
48725           <...>-13131 (-----) [004] ...1 24573.280070: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
48726           <...>-13131 (-----) [004] ...1 24573.280072: tracing_mark_write: E|13131
48727           <...>-13131 (-----) [004] ...1 24573.280074: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
48728           <...>-13131 (-----) [004] ...1 24573.280077: tracing_mark_write: E|13131
48729           <...>-13131 (-----) [004] ...1 24573.280079: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
48730           <...>-13131 (-----) [004] ...1 24573.280121: tracing_mark_write: E|13131
48731           <...>-13131 (-----) [004] ...1 24573.280122: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
48732           <...>-13131 (-----) [004] d..2 24573.280127: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13229 next_prio=110
48733           <...>-13229 (-----) [004] d..2 24573.280153: sched_switch: prev_comm=id.nn.benchmark prev_pid=13229 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13230 next_prio=110
48734           <...>-13230 (-----) [004] d..2 24573.280164: sched_switch: prev_comm=id.nn.benchmark prev_pid=13230 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13231 next_prio=110
48735           <...>-13231 (-----) [004] d..2 24573.280309: sched_switch: prev_comm=id.nn.benchmark prev_pid=13231 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13232 next_prio=110
48736           <...>-13232 (-----) [004] ...1 24573.280318: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
48737           <...>-13232 (-----) [004] ...1 24573.280320: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
48738           <...>-13232 (-----) [004] ...1 24573.280370: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48739           <...>-13232 (-----) [004] ...1 24573.280372: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48740 id.nn.benchmark-13160 (13131) [007] d.s2 24573.280888: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
48741           <...>-13232 (-----) [004] dns2 24573.280892: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
48742 id.nn.benchmark-13158 (13131) [002] d.h2 24573.280894: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
48743 id.nn.benchmark-13160 (13131) [007] d.s3 24573.280895: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
48744           <...>-13232 (-----) [004] dns3 24573.280900: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
48745 id.nn.benchmark-13158 (13131) [002] dnh3 24573.280901: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
48746 id.nn.benchmark-13160 (13131) [007] d..2 24573.280903: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
48747           <...>-13232 (-----) [004] d..2 24573.280908: sched_switch: prev_comm=id.nn.benchmark prev_pid=13232 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
48748 id.nn.benchmark-13158 (13131) [002] d..2 24573.280911: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
48749  crtc_event:111-254   (  254) [004] d..2 24573.280920: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13232 next_prio=110
48750     migration/2-25    (   25) [002] d.h3 24573.280962: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
48751     migration/2-25    (   25) [002] d.h3 24573.280970: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
48752           <...>-13232 (-----) [004] dnh1 24573.280973: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
48753           <...>-13232 (-----) [004] d..2 24573.280976: sched_switch: prev_comm=id.nn.benchmark prev_pid=13232 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
48754         sugov:4-560   (  560) [004] d..2 24573.280980: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
48755     migration/2-25    (   25) [002] d.h4 24573.280980: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
48756     migration/2-25    (   25) [002] d..2 24573.280987: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
48757         sugov:0-559   (  559) [002] d..2 24573.281009: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
48758  kworker/u16:15-18488 (18488) [007] d..2 24573.281253: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
48759 id.nn.benchmark-13159 (13131) [003] d.s2 24573.281284: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
48760 id.nn.benchmark-13160 (13131) [007] d.h1 24573.281313: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
48761 id.nn.benchmark-13160 (13131) [007] dnh1 24573.281315: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
48762 id.nn.benchmark-13160 (13131) [007] d..2 24573.281317: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
48763  kworker/u16:15-18488 (18488) [007] d..2 24573.281323: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
48764     logd.writer-563   (  555) [002] d..2 24573.281341: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13232 next_prio=110
48765           <...>-13232 (-----) [002] ...1 24573.281679: tracing_mark_write: E|13131
48766           <...>-13232 (-----) [002] ...1 24573.281684: tracing_mark_write: E|13131
48767           <...>-13232 (-----) [002] ...1 24573.281699: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48768           <...>-13232 (-----) [002] ...1 24573.281703: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48769           <...>-13157 (-----) [000] d.h4 24573.282184: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
48770           <...>-13157 (-----) [000] d.h5 24573.282202: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
48771           <...>-13232 (-----) [002] d..2 24573.282214: sched_switch: prev_comm=id.nn.benchmark prev_pid=13232 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
48772           <...>-13157 (-----) [000] d.h2 24573.282239: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
48773           <...>-13157 (-----) [000] d.h2 24573.282245: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
48774 id.nn.benchmark-13158 (13131) [004] dnh1 24573.282248: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
48775 id.nn.benchmark-13158 (13131) [004] d..2 24573.282251: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
48776           <...>-13157 (-----) [000] dnh3 24573.282254: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
48777         sugov:4-560   (  560) [004] d..2 24573.282254: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
48778           <...>-13157 (-----) [000] d..2 24573.282260: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
48779 crtc_commit:111-253   (  253) [002] d..2 24573.282267: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13232 next_prio=110
48780         sugov:0-559   (  559) [000] d..2 24573.282268: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
48781           <...>-13157 (-----) [000] d.h4 24573.282467: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
48782           <...>-13157 (-----) [000] d.h5 24573.282484: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
48783           <...>-13232 (-----) [002] d..2 24573.282492: sched_switch: prev_comm=id.nn.benchmark prev_pid=13232 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
48784  crtc_event:111-254   (  254) [002] d..2 24573.282517: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13232 next_prio=110
48785           <...>-13232 (-----) [002] ...1 24573.282600: tracing_mark_write: E|13131
48786           <...>-13232 (-----) [002] ...1 24573.282604: tracing_mark_write: E|13131
48787           <...>-13232 (-----) [002] ...1 24573.282620: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48788           <...>-13232 (-----) [002] ...1 24573.282624: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48789           <...>-13232 (-----) [002] ...1 24573.282951: tracing_mark_write: E|13131
48790           <...>-13232 (-----) [002] ...1 24573.282955: tracing_mark_write: E|13131
48791           <...>-13232 (-----) [002] ...1 24573.282966: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48792           <...>-13232 (-----) [002] ...1 24573.282970: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48793           <...>-13232 (-----) [002] ...1 24573.283195: tracing_mark_write: E|13131
48794           <...>-13232 (-----) [002] ...1 24573.283198: tracing_mark_write: E|13131
48795           <...>-13232 (-----) [002] ...1 24573.283208: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48796           <...>-13232 (-----) [002] ...1 24573.283212: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48797           <...>-13232 (-----) [002] ...1 24573.283585: tracing_mark_write: E|13131
48798           <...>-13232 (-----) [002] ...1 24573.283588: tracing_mark_write: E|13131
48799           <...>-13232 (-----) [002] ...1 24573.283598: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48800           <...>-13232 (-----) [002] ...1 24573.283602: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48801           <...>-13232 (-----) [002] ...1 24573.283970: tracing_mark_write: E|13131
48802           <...>-13232 (-----) [002] ...1 24573.283974: tracing_mark_write: E|13131
48803           <...>-13232 (-----) [002] ...1 24573.283990: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48804           <...>-13232 (-----) [002] ...1 24573.283995: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48805           <...>-13232 (-----) [002] ...1 24573.284183: tracing_mark_write: E|13131
48806           <...>-13232 (-----) [002] ...1 24573.284186: tracing_mark_write: E|13131
48807           <...>-13232 (-----) [002] ...1 24573.284199: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48808           <...>-13232 (-----) [002] ...1 24573.284203: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48809 id.nn.benchmark-13158 (13131) [004] d.s1 24573.284223: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
48810 id.nn.benchmark-13158 (13131) [004] dns2 24573.284233: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
48811 id.nn.benchmark-13158 (13131) [004] d..2 24573.284236: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
48812     rcu_preempt-7     (    7) [004] d..2 24573.284239: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=004
48813     rcu_preempt-7     (    7) [004] d..3 24573.284247: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=004
48814     rcu_preempt-7     (    7) [004] d..2 24573.284252: 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
48815         rcuop/2-29    (   29) [004] d..2 24573.284254: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=004
48816         rcuop/2-29    (   29) [004] d..3 24573.284262: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=004
48817         rcuop/2-29    (   29) [004] d..2 24573.284265: 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
48818         rcuop/3-37    (   37) [004] d..2 24573.284271: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
48819           <...>-13232 (-----) [002] ...1 24573.284295: tracing_mark_write: E|13131
48820           <...>-13232 (-----) [002] ...1 24573.284299: tracing_mark_write: E|13131
48821           <...>-13232 (-----) [002] ...1 24573.284309: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
48822           <...>-13232 (-----) [002] ...1 24573.284314: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
48823 id.nn.benchmark-13159 (13131) [003] d.h1 24573.284344: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
48824 id.nn.benchmark-13159 (13131) [003] d.h2 24573.284360: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
48825           <...>-13232 (-----) [002] d..2 24573.284367: sched_switch: prev_comm=id.nn.benchmark prev_pid=13232 prev_prio=110 prev_state=R+ ==> next_comm=DispSync next_pid=23904 next_prio=97
48826        DispSync-23904 (23896) [002] d..1 24573.284392: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
48827        DispSync-23904 (23896) [002] d..2 24573.284406: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
48828 id.nn.benchmark-13155 (13131) [001] d..2 24573.284416: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
48829        DispSync-23904 (23896) [002] d..2 24573.284422: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13232 next_prio=110
48830  appEventThread-23905 (23896) [001] d..3 24573.284461: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
48831  appEventThread-23905 (23896) [001] d..4 24573.284483: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
48832           <...>-13232 (-----) [002] d..2 24573.284489: sched_switch: prev_comm=id.nn.benchmark prev_pid=13232 prev_prio=110 prev_state=R+ ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
48833  appEventThread-23905 (23896) [001] d..2 24573.284506: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
48834<...>-24151 ( 24151) [002] .... 24573.284783: binder_transaction: transaction=1669875 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
48835<...>-24151 ( 24151) [002] d..4 24573.284793: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=006
48836 id.nn.benchmark-13158 (13131) [004] dnh1 24573.284816: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
48837 id.nn.benchmark-13158 (13131) [004] d..2 24573.284818: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
48838  Binder:23896_5-25989 (23896) [004] .... 24573.284822: binder_transaction_received: transaction=1669875
48839  Binder:23896_5-25989 (23896) [004] d..1 24573.284840: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
48840<...>-24151 ( 24151) [002] d..3 24573.284842: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
48841  Binder:23896_5-25989 (23896) [004] d..2 24573.284861: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
48842<...>-24151 ( 24151) [002] d..4 24573.284862: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
48843<...>-24151 ( 24151) [002] dnh2 24573.284868: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
48844<...>-24151 ( 24151) [002] dnh3 24573.284898: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
48845<...>-24151 ( 24151) [002] dnh3 24573.284905: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
48846 id.nn.benchmark-13158 (13131) [004] dnh1 24573.284908: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
48847 id.nn.benchmark-13158 (13131) [004] d..2 24573.284911: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
48848<...>-24151 ( 24151) [002] dnh4 24573.284913: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
48849         sugov:4-560   (  560) [004] d..2 24573.284914: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
48850<...>-24151 ( 24151) [002] d..2 24573.284919: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
48851           <...>-13157 (-----) [000] d..2 24573.284921: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
48852         sugov:0-559   (  559) [000] d..2 24573.284930: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
48853  appEventThread-23905 (23896) [002] d..2 24573.284946: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
48854    RenderThread-24437 (24151) [002] d..2 24573.284972: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
48855<...>-24151 ( 24151) [002] d..3 24573.285071: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
48856<...>-24151 ( 24151) [002] d..4 24573.285081: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
48857<...>-24151 ( 24151) [002] d..2 24573.285090: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
48858    RenderThread-24437 (24151) [002] d..1 24573.285195: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
48859    RenderThread-24437 (24151) [002] d..2 24573.285205: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
48860    RenderThread-24437 (24151) [002] .... 24573.285254: binder_transaction: transaction=1669876 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
48861    RenderThread-24437 (24151) [002] d..4 24573.285259: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
48862 id.nn.benchmark-13158 (13131) [004] dnh1 24573.285273: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
48863 id.nn.benchmark-13158 (13131) [004] d..2 24573.285275: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
48864  Binder:23896_5-25989 (23896) [004] .... 24573.285277: binder_transaction_received: transaction=1669876
48865    RenderThread-24437 (24151) [002] d..2 24573.285277: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
48866  Binder:23896_5-25989 (23896) [004] .... 24573.285303: binder_transaction: transaction=1669877 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
48867  Binder:23896_5-25989 (23896) [004] d..2 24573.285309: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
48868<...>-24151 ( 24151) [002] d..2 24573.285319: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13232 next_prio=110
48869           <...>-13232 (-----) [002] dnh3 24573.285328: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
48870  Binder:23896_5-25989 (23896) [004] d..2 24573.285329: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
48871           <...>-13232 (-----) [002] d..2 24573.285333: sched_switch: prev_comm=id.nn.benchmark prev_pid=13232 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=24437 next_prio=120
48872    RenderThread-24437 (24151) [002] .... 24573.285337: binder_transaction_received: transaction=1669877
48873    RenderThread-24437 (24151) [002] d..2 24573.286315: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13232 next_prio=110
48874           <...>-13232 (-----) [002] d.h1 24573.286411: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
48875           <...>-13232 (-----) [002] d.h2 24573.286421: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
48876           <...>-13232 (-----) [002] dnh2 24573.286424: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
48877           <...>-13232 (-----) [002] d..2 24573.286431: sched_switch: prev_comm=id.nn.benchmark prev_pid=13232 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
48878           <...>-13157 (-----) [000] d.h2 24573.286533: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
48879           <...>-13157 (-----) [000] d.h3 24573.286549: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
48880    RenderThread-24437 (24151) [002] d..2 24573.286559: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
48881 kgsl_worker_thr-246   (  246) [002] d..2 24573.286596: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
48882 id.nn.benchmark-13160 (13131) [007] dnh1 24573.286624: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
48883 id.nn.benchmark-13160 (13131) [007] d..2 24573.286627: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
48884 kgsl_worker_thr-246   (  246) [002] d..2 24573.286630: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
48885  kworker/u16:15-18488 (18488) [007] d..2 24573.286644: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
48886    RenderThread-24437 (24151) [002] .... 24573.286649: binder_transaction: transaction=1669878 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
48887    RenderThread-24437 (24151) [002] d..4 24573.286656: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
48888 id.nn.benchmark-13158 (13131) [004] dnh1 24573.286670: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
48889 id.nn.benchmark-13158 (13131) [004] d..2 24573.286672: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
48890  Binder:23896_5-25989 (23896) [004] .... 24573.286673: binder_transaction_received: transaction=1669878
48891    RenderThread-24437 (24151) [002] d..2 24573.286674: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13232 next_prio=110
48892  Binder:23896_5-25989 (23896) [004] .... 24573.286724: binder_transaction: transaction=1669879 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
48893  Binder:23896_5-25989 (23896) [004] d..2 24573.286725: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
48894           <...>-13232 (-----) [002] dnh1 24573.286739: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
48895  Binder:23896_5-25989 (23896) [004] d..2 24573.286740: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
48896           <...>-13232 (-----) [002] d..2 24573.286745: sched_switch: prev_comm=id.nn.benchmark prev_pid=13232 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
48897    RenderThread-24437 (24151) [002] .... 24573.286749: binder_transaction_received: transaction=1669879
48898    RenderThread-24437 (24151) [002] d..2 24573.286794: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13232 next_prio=110
48899           <...>-13232 (-----) [002] ...1 24573.286855: tracing_mark_write: E|13131
48900           <...>-13232 (-----) [002] ...1 24573.286860: tracing_mark_write: E|13131
48901           <...>-13232 (-----) [002] ...1 24573.286874: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
48902           <...>-13232 (-----) [002] ...1 24573.286879: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
48903           <...>-13232 (-----) [002] ...1 24573.286935: tracing_mark_write: E|13131
48904           <...>-13232 (-----) [002] ...1 24573.286938: tracing_mark_write: E|13131
48905           <...>-13232 (-----) [002] ...1 24573.286949: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
48906           <...>-13232 (-----) [002] ...1 24573.286952: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
48907           <...>-13232 (-----) [002] ...1 24573.286969: tracing_mark_write: E|13131
48908           <...>-13232 (-----) [002] ...1 24573.286972: tracing_mark_write: E|13131
48909           <...>-13232 (-----) [002] ...1 24573.286984: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
48910           <...>-13232 (-----) [002] ...1 24573.286987: tracing_mark_write: E|13131
48911           <...>-13232 (-----) [002] ...1 24573.286997: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
48912           <...>-13232 (-----) [002] ...1 24573.287001: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
48913 id.nn.benchmark-13158 (13131) [004] d.s2 24573.287557: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
48914 id.nn.benchmark-13158 (13131) [004] d.s3 24573.287569: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
48915 id.nn.benchmark-13160 (13131) [007] d..2 24573.287575: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
48916  kworker/u16:15-18488 (18488) [007] d..2 24573.287670: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
48917           <...>-13232 (-----) [002] ...1 24573.287887: tracing_mark_write: E|13131
48918           <...>-13232 (-----) [002] ...1 24573.287891: tracing_mark_write: E|13131
48919           <...>-13232 (-----) [002] ...1 24573.287900: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
48920           <...>-13232 (-----) [002] ...1 24573.287905: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
48921           <...>-13232 (-----) [002] ...1 24573.287990: tracing_mark_write: E|13131
48922           <...>-13232 (-----) [002] ...1 24573.287993: tracing_mark_write: E|13131
48923           <...>-13232 (-----) [002] d..2 24573.288041: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
48924           <...>-13232 (-----) [002] d..3 24573.288050: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
48925           <...>-13232 (-----) [002] ...1 24573.288071: tracing_mark_write: E|13131
48926           <...>-13232 (-----) [002] d..1 24573.288075: sched_waking: comm=id.nn.benchmark pid=13231 prio=110 target_cpu=004
48927 id.nn.benchmark-13158 (13131) [004] dnh1 24573.288091: sched_wakeup: comm=id.nn.benchmark pid=13231 prio=110 target_cpu=004
48928 id.nn.benchmark-13158 (13131) [004] d..2 24573.288094: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13231 next_prio=110
48929           <...>-13232 (-----) [002] ...1 24573.288101: tracing_mark_write: E|13131
48930           <...>-13231 (-----) [004] d..2 24573.288101: sched_switch: prev_comm=id.nn.benchmark prev_pid=13231 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
48931           <...>-13232 (-----) [002] d..1 24573.288316: sched_waking: comm=id.nn.benchmark pid=13231 prio=110 target_cpu=004
48932 id.nn.benchmark-13158 (13131) [004] dnh1 24573.288329: sched_wakeup: comm=id.nn.benchmark pid=13231 prio=110 target_cpu=004
48933 id.nn.benchmark-13158 (13131) [004] d..2 24573.288331: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13231 next_prio=110
48934           <...>-13232 (-----) [002] d.h3 24573.288353: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
48935           <...>-13232 (-----) [002] dnh4 24573.288361: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
48936           <...>-13232 (-----) [002] d..2 24573.288370: sched_switch: prev_comm=id.nn.benchmark prev_pid=13232 prev_prio=110 prev_state=R+ ==> next_comm=DispSync next_pid=23904 next_prio=97
48937        DispSync-23904 (23896) [002] d..1 24573.288383: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
48938           <...>-13231 (-----) [004] d..1 24573.288390: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
48939        DispSync-23904 (23896) [002] d..2 24573.288394: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
48940           <...>-13231 (-----) [004] dn.2 24573.288396: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
48941           <...>-13231 (-----) [004] d..2 24573.288398: sched_switch: prev_comm=id.nn.benchmark prev_pid=13231 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
48942           <...>-13157 (-----) [000] d..2 24573.288402: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
48943           <...>-13131 (-----) [004] d..2 24573.288403: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13231 next_prio=110
48944        DispSync-23904 (23896) [002] d..2 24573.288406: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
48945   sfEventThread-23906 (23896) [000] d..3 24573.288429: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
48946           <...>-13231 (-----) [004] d..1 24573.288429: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
48947           <...>-13231 (-----) [004] dn.2 24573.288433: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
48948           <...>-13231 (-----) [004] d..2 24573.288435: sched_switch: prev_comm=id.nn.benchmark prev_pid=13231 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
48949           <...>-13131 (-----) [004] ...1 24573.288445: tracing_mark_write: E|13131
48950   sfEventThread-23906 (23896) [000] d..4 24573.288447: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
48951           <...>-13131 (-----) [004] ...1 24573.288447: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
48952           <...>-13131 (-----) [004] ...1 24573.288450: tracing_mark_write: E|13131
48953           <...>-13131 (-----) [004] ...1 24573.288451: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
48954           <...>-13131 (-----) [004] ...1 24573.288453: tracing_mark_write: E|13131
48955     logd.writer-563   (  555) [002] d..2 24573.288456: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
48956   sfEventThread-23906 (23896) [000] d..2 24573.288459: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
48957           <...>-13131 (-----) [004] ...1 24573.288516: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
48958           <...>-13131 (-----) [004] ...1 24573.288535: tracing_mark_write: E|13131
48959           <...>-13131 (-----) [004] ...1 24573.288537: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
48960           <...>-13131 (-----) [004] ...1 24573.288540: tracing_mark_write: E|13131
48961           <...>-13131 (-----) [004] ...1 24573.288542: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
48962           <...>-13131 (-----) [004] ...1 24573.288544: tracing_mark_write: E|13131
48963           <...>-13131 (-----) [004] ...1 24573.288546: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
48964           <...>-13131 (-----) [004] ...1 24573.288601: tracing_mark_write: E|13131
48965           <...>-13131 (-----) [004] ...1 24573.288603: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
48966           <...>-13131 (-----) [004] d..2 24573.288608: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13231 next_prio=110
48967           <...>-13231 (-----) [004] d..2 24573.288634: sched_switch: prev_comm=id.nn.benchmark prev_pid=13231 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
48968  surfaceflinger-23896 (23896) [002] d..1 24573.288683: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
48969  surfaceflinger-23896 (23896) [002] d..2 24573.288695: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
48970           <...>-13157 (-----) [000] d..2 24573.288702: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
48971   sfEventThread-23906 (23896) [000] d..2 24573.288717: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
48972  surfaceflinger-23896 (23896) [002] ...1 24573.288823: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
48973  surfaceflinger-23896 (23896) [002] ...1 24573.288826: tracing_mark_write: E|23896
48974  surfaceflinger-23896 (23896) [002] .... 24573.288870: binder_transaction: transaction=1669880 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
48975  surfaceflinger-23896 (23896) [002] ...2 24573.288890: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
48976  surfaceflinger-23896 (23896) [002] d..4 24573.288898: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
48977 id.nn.benchmark-13158 (13131) [004] dnh1 24573.288915: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
48978 id.nn.benchmark-13158 (13131) [004] d..2 24573.288918: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
48979  surfaceflinger-23896 (23896) [002] d..2 24573.288921: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13232 next_prio=110
48980  HwBinder:598_3-633   (  598) [004] .... 24573.288922: binder_transaction_received: transaction=1669880
48981           <...>-13232 (-----) [002] d..2 24573.288946: sched_switch: prev_comm=id.nn.benchmark prev_pid=13232 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
48982  HwBinder:598_3-633   (  598) [004] ...1 24573.288947: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
48983  HwBinder:598_3-633   (  598) [004] ...1 24573.288996: tracing_mark_write: B|598|HWCSession::PresentDisplay::
48984     logd.writer-563   (  555) [002] d..2 24573.289054: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13233 next_prio=110
48985  HwBinder:598_3-633   (  598) [004] ...1 24573.289057: tracing_mark_write: B|598|HWDeviceDRM::Commit::
48986  HwBinder:598_3-633   (  598) [004] ...1 24573.289061: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
48987           <...>-13233 (-----) [002] d.h4 24573.289088: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
48988           <...>-13233 (-----) [002] d.h4 24573.289100: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
48989 id.nn.benchmark-13160 (13131) [007] dnh1 24573.289103: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
48990 id.nn.benchmark-13160 (13131) [007] d..2 24573.289106: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
48991         sugov:4-560   (  560) [007] d..2 24573.289109: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
48992           <...>-13233 (-----) [002] dnh5 24573.289110: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
48993           <...>-13233 (-----) [002] d..2 24573.289116: sched_switch: prev_comm=id.nn.benchmark prev_pid=13233 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
48994         sugov:0-559   (  559) [002] d..2 24573.289122: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13233 next_prio=110
48995           <...>-13233 (-----) [002] d..2 24573.289181: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
48996           <...>-13233 (-----) [002] d..3 24573.289189: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
48997  HwBinder:598_3-633   (  598) [004] d..2 24573.289258: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
48998           <...>-13233 (-----) [002] dnh1 24573.289272: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
48999           <...>-13233 (-----) [002] d..2 24573.289279: sched_switch: prev_comm=id.nn.benchmark prev_pid=13233 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
49000  HwBinder:598_3-633   (  598) [004] ...1 24573.289293: tracing_mark_write: E|598
49001  HwBinder:598_3-633   (  598) [004] ...1 24573.289294: tracing_mark_write: E|598
49002  HwBinder:598_3-633   (  598) [004] ...1 24573.289316: tracing_mark_write: E|598
49003  HwBinder:598_3-633   (  598) [004] ...1 24573.289336: tracing_mark_write: E|598
49004  HwBinder:598_3-633   (  598) [004] .... 24573.289341: binder_transaction: transaction=1669881 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
49005  HwBinder:598_3-633   (  598) [004] d..2 24573.289346: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
49006  HwBinder:598_3-633   (  598) [004] .... 24573.289355: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
49007           <...>-13157 (-----) [000] dnh1 24573.289360: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
49008           <...>-13157 (-----) [000] d..2 24573.289364: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
49009  surfaceflinger-23896 (23896) [000] .... 24573.289369: binder_transaction_received: transaction=1669881
49010  HwBinder:598_3-633   (  598) [004] d..2 24573.289376: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49011  surfaceflinger-23896 (23896) [000] d..2 24573.289607: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
49012 crtc_commit:111-253   (  253) [002] d..2 24573.289888: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13233 next_prio=110
49013           <...>-13233 (-----) [002] d..2 24573.290136: sched_switch: prev_comm=id.nn.benchmark prev_pid=13233 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
49014     logd.writer-563   (  555) [002] d..2 24573.290319: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13234 next_prio=110
49015           <...>-13234 (-----) [002] ...1 24573.290346: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
49016           <...>-13234 (-----) [002] ...1 24573.290351: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
49017           <...>-13234 (-----) [002] d..2 24573.290411: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
49018           <...>-13234 (-----) [002] d..3 24573.290419: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
49019           <...>-13234 (-----) [002] ...1 24573.290492: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49020           <...>-13234 (-----) [002] ...1 24573.290497: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49021 id.nn.benchmark-13158 (13131) [004] d.s1 24573.290891: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
49022 id.nn.benchmark-13158 (13131) [004] dns2 24573.290901: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
49023 id.nn.benchmark-13158 (13131) [004] dns2 24573.290902: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
49024 id.nn.benchmark-13158 (13131) [004] dns3 24573.290912: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
49025 id.nn.benchmark-13158 (13131) [004] d..2 24573.290916: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
49026     rcu_preempt-7     (    7) [004] d..2 24573.290919: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=004
49027 id.nn.benchmark-13160 (13131) [007] d..2 24573.290919: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
49028     rcu_preempt-7     (    7) [004] d..3 24573.290926: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=004
49029     rcu_preempt-7     (    7) [004] d..2 24573.290927: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=004
49030     rcu_preempt-7     (    7) [004] d..3 24573.290934: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=004
49031     rcu_preempt-7     (    7) [004] d..2 24573.290938: 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
49032         rcuop/0-10    (   10) [004] d..2 24573.290941: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
49033         rcuop/0-10    (   10) [004] d..3 24573.290947: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
49034         rcuop/0-10    (   10) [004] d..2 24573.290960: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
49035         rcuop/4-45    (   45) [004] d..2 24573.290969: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
49036         rcuop/1-21    (   21) [004] d..2 24573.290975: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49037  kworker/u16:15-18488 (18488) [007] d..2 24573.291089: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
49038 id.nn.benchmark-13159 (13131) [003] d.s2 24573.291128: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
49039 id.nn.benchmark-13160 (13131) [007] d.h1 24573.291153: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
49040 id.nn.benchmark-13160 (13131) [007] dnh1 24573.291154: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
49041 id.nn.benchmark-13160 (13131) [007] d..2 24573.291157: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
49042  kworker/u16:15-18488 (18488) [007] d..2 24573.291278: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
49043           <...>-13234 (-----) [002] ...1 24573.292524: tracing_mark_write: E|13131
49044           <...>-13234 (-----) [002] ...1 24573.292529: tracing_mark_write: E|13131
49045           <...>-13234 (-----) [002] ...1 24573.292541: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49046           <...>-13234 (-----) [002] ...1 24573.292546: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49047           <...>-13234 (-----) [002] ...1 24573.293242: tracing_mark_write: E|13131
49048           <...>-13234 (-----) [002] ...1 24573.293246: tracing_mark_write: E|13131
49049           <...>-13234 (-----) [002] ...1 24573.293261: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49050           <...>-13234 (-----) [002] ...1 24573.293265: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49051           <...>-13234 (-----) [002] ...1 24573.293595: tracing_mark_write: E|13131
49052           <...>-13234 (-----) [002] ...1 24573.293598: tracing_mark_write: E|13131
49053           <...>-13234 (-----) [002] ...1 24573.293609: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49054           <...>-13234 (-----) [002] ...1 24573.293613: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49055           <...>-13234 (-----) [002] ...1 24573.293850: tracing_mark_write: E|13131
49056           <...>-13234 (-----) [002] ...1 24573.293854: tracing_mark_write: E|13131
49057           <...>-13234 (-----) [002] ...1 24573.293864: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49058           <...>-13234 (-----) [002] ...1 24573.293868: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49059           <...>-13234 (-----) [002] ...1 24573.294290: tracing_mark_write: E|13131
49060           <...>-13234 (-----) [002] ...1 24573.294294: tracing_mark_write: E|13131
49061           <...>-13234 (-----) [002] ...1 24573.294304: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49062           <...>-13234 (-----) [002] ...1 24573.294308: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49063           <...>-13234 (-----) [002] ...1 24573.294700: tracing_mark_write: E|13131
49064           <...>-13234 (-----) [002] ...1 24573.294704: tracing_mark_write: E|13131
49065           <...>-13234 (-----) [002] ...1 24573.294721: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49066           <...>-13234 (-----) [002] ...1 24573.294725: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49067           <...>-13234 (-----) [002] ...1 24573.294917: tracing_mark_write: E|13131
49068           <...>-13234 (-----) [002] ...1 24573.294921: tracing_mark_write: E|13131
49069           <...>-13234 (-----) [002] ...1 24573.294933: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49070           <...>-13234 (-----) [002] ...1 24573.294938: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49071           <...>-13234 (-----) [002] ...1 24573.295008: tracing_mark_write: E|13131
49072           <...>-13234 (-----) [002] ...1 24573.295011: tracing_mark_write: E|13131
49073           <...>-13234 (-----) [002] ...1 24573.295022: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
49074           <...>-13234 (-----) [002] ...1 24573.295027: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
49075           <...>-13234 (-----) [002] ...1 24573.295325: tracing_mark_write: E|13131
49076           <...>-13234 (-----) [002] ...1 24573.295328: tracing_mark_write: E|13131
49077           <...>-13234 (-----) [002] ...1 24573.295337: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
49078           <...>-13234 (-----) [002] ...1 24573.295341: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
49079           <...>-13234 (-----) [002] ...1 24573.295392: tracing_mark_write: E|13131
49080           <...>-13234 (-----) [002] ...1 24573.295395: tracing_mark_write: E|13131
49081           <...>-13234 (-----) [002] ...1 24573.295404: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
49082           <...>-13234 (-----) [002] ...1 24573.295408: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
49083           <...>-13234 (-----) [002] ...1 24573.295424: tracing_mark_write: E|13131
49084           <...>-13234 (-----) [002] ...1 24573.295428: tracing_mark_write: E|13131
49085           <...>-13234 (-----) [002] ...1 24573.295437: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
49086           <...>-13234 (-----) [002] ...1 24573.295441: tracing_mark_write: E|13131
49087           <...>-13234 (-----) [002] ...1 24573.295450: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
49088           <...>-13234 (-----) [002] ...1 24573.295454: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
49089           <...>-13234 (-----) [002] ...1 24573.296306: tracing_mark_write: E|13131
49090           <...>-13157 (-----) [000] d.h4 24573.296308: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
49091           <...>-13234 (-----) [002] ...1 24573.296309: tracing_mark_write: E|13131
49092           <...>-13234 (-----) [002] ...1 24573.296316: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49093           <...>-13157 (-----) [000] d.h5 24573.296322: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
49094           <...>-13234 (-----) [002] d..2 24573.296330: sched_switch: prev_comm=id.nn.benchmark prev_pid=13234 prev_prio=110 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
49095           <...>-13157 (-----) [000] d.h4 24573.296334: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
49096  crtc_event:111-254   (  254) [002] d..2 24573.296356: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13234 next_prio=110
49097 id.nn.benchmark-13158 (13131) [004] dnh1 24573.296357: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
49098           <...>-13234 (-----) [002] ...1 24573.296360: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49099 id.nn.benchmark-13158 (13131) [004] d..2 24573.296361: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
49100           <...>-13157 (-----) [000] d.h2 24573.296391: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
49101           <...>-13157 (-----) [000] d.h2 24573.296398: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
49102 id.nn.benchmark-13160 (13131) [007] dnh1 24573.296401: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
49103 id.nn.benchmark-13160 (13131) [007] d..2 24573.296404: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
49104           <...>-13157 (-----) [000] d.h3 24573.296405: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
49105         sugov:4-560   (  560) [007] d..2 24573.296409: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
49106           <...>-13234 (-----) [002] d..2 24573.296414: sched_switch: prev_comm=id.nn.benchmark prev_pid=13234 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
49107         sugov:0-559   (  559) [002] d..2 24573.296423: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13234 next_prio=110
49108 crtc_commit:111-253   (  253) [004] d..2 24573.296456: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49109           <...>-13234 (-----) [002] ...1 24573.296484: tracing_mark_write: E|13131
49110           <...>-13234 (-----) [002] ...1 24573.296488: tracing_mark_write: E|13131
49111           <...>-13234 (-----) [002] ...1 24573.296536: tracing_mark_write: E|13131
49112           <...>-13234 (-----) [002] d..1 24573.296542: sched_waking: comm=id.nn.benchmark pid=13233 prio=110 target_cpu=002
49113 id.nn.benchmark-13158 (13131) [004] dnh1 24573.296567: sched_wakeup: comm=id.nn.benchmark pid=13233 prio=110 target_cpu=004
49114 id.nn.benchmark-13158 (13131) [004] d..2 24573.296589: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13233 next_prio=110
49115           <...>-13233 (-----) [004] d..2 24573.296597: sched_switch: prev_comm=id.nn.benchmark prev_pid=13233 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49116           <...>-13234 (-----) [002] ...1 24573.296604: tracing_mark_write: E|13131
49117           <...>-13234 (-----) [002] d..1 24573.296808: sched_waking: comm=id.nn.benchmark pid=13233 prio=110 target_cpu=004
49118 id.nn.benchmark-13158 (13131) [004] dnh1 24573.296822: sched_wakeup: comm=id.nn.benchmark pid=13233 prio=110 target_cpu=004
49119 id.nn.benchmark-13158 (13131) [004] d..2 24573.296824: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13233 next_prio=110
49120           <...>-13234 (-----) [002] d..2 24573.296850: sched_switch: prev_comm=id.nn.benchmark prev_pid=13234 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
49121           <...>-13233 (-----) [004] d..1 24573.296881: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
49122           <...>-13233 (-----) [004] dn.2 24573.296888: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
49123           <...>-13233 (-----) [004] d..2 24573.296891: sched_switch: prev_comm=id.nn.benchmark prev_pid=13233 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
49124           <...>-13131 (-----) [004] d..2 24573.296897: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13233 next_prio=110
49125           <...>-13233 (-----) [004] d..1 24573.296923: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
49126           <...>-13233 (-----) [004] dn.2 24573.296926: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
49127           <...>-13233 (-----) [004] d..2 24573.296928: sched_switch: prev_comm=id.nn.benchmark prev_pid=13233 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
49128           <...>-13131 (-----) [004] ...1 24573.296937: tracing_mark_write: E|13131
49129           <...>-13131 (-----) [004] ...1 24573.296940: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
49130           <...>-13131 (-----) [004] ...1 24573.296942: tracing_mark_write: E|13131
49131           <...>-13131 (-----) [004] ...1 24573.296944: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
49132           <...>-13131 (-----) [004] ...1 24573.296945: tracing_mark_write: E|13131
49133           <...>-13131 (-----) [004] ...1 24573.297006: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
49134           <...>-13131 (-----) [004] ...1 24573.297026: tracing_mark_write: E|13131
49135           <...>-13131 (-----) [004] ...1 24573.297029: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
49136           <...>-13131 (-----) [004] ...1 24573.297031: tracing_mark_write: E|13131
49137           <...>-13131 (-----) [004] ...1 24573.297033: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
49138           <...>-13131 (-----) [004] ...1 24573.297035: tracing_mark_write: E|13131
49139           <...>-13131 (-----) [004] ...1 24573.297037: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
49140     logd.writer-563   (  555) [002] d..2 24573.297067: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13233 next_prio=110
49141           <...>-13131 (-----) [004] ...1 24573.297084: tracing_mark_write: E|13131
49142           <...>-13131 (-----) [004] ...1 24573.297085: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
49143           <...>-13131 (-----) [004] d..2 24573.297090: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49144           <...>-13233 (-----) [002] d..2 24573.297123: sched_switch: prev_comm=id.nn.benchmark prev_pid=13233 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13235 next_prio=110
49145           <...>-13235 (-----) [002] d.h4 24573.297151: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
49146           <...>-13235 (-----) [002] d.h4 24573.297164: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
49147 id.nn.benchmark-13158 (13131) [004] dnh1 24573.297167: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
49148           <...>-13235 (-----) [002] dnh5 24573.297170: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
49149 id.nn.benchmark-13158 (13131) [004] d..2 24573.297171: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
49150         sugov:4-560   (  560) [004] d..2 24573.297175: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49151           <...>-13235 (-----) [002] d..2 24573.297179: sched_switch: prev_comm=id.nn.benchmark prev_pid=13235 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
49152         sugov:0-559   (  559) [002] d..2 24573.297186: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13235 next_prio=110
49153           <...>-13235 (-----) [002] d..2 24573.297240: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
49154           <...>-13235 (-----) [002] d..3 24573.297247: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
49155           <...>-13235 (-----) [002] d..2 24573.297534: sched_switch: prev_comm=id.nn.benchmark prev_pid=13235 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
49156 id.nn.benchmark-13158 (13131) [004] d.s2 24573.297556: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
49157 id.nn.benchmark-13158 (13131) [004] dns3 24573.297581: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
49158 id.nn.benchmark-13158 (13131) [004] dns1 24573.297582: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
49159 id.nn.benchmark-13158 (13131) [004] dns2 24573.297591: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
49160 id.nn.benchmark-13158 (13131) [004] dns2 24573.297607: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
49161 id.nn.benchmark-13158 (13131) [004] dns3 24573.297613: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
49162 id.nn.benchmark-13158 (13131) [004] d..2 24573.297616: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
49163  crtc_event:111-254   (  254) [004] d..2 24573.297623: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
49164     rcu_preempt-7     (    7) [004] d..2 24573.297625: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=004
49165     rcu_preempt-7     (    7) [004] d..3 24573.297634: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=004
49166     rcu_preempt-7     (    7) [004] d..2 24573.297638: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
49167  kworker/u16:15-18488 (18488) [004] d..2 24573.297727: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
49168         rcuop/2-29    (   29) [004] d..2 24573.297729: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=004
49169         rcuop/2-29    (   29) [004] d..3 24573.297739: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=004
49170         rcuop/2-29    (   29) [004] d..2 24573.297743: 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
49171     logd.writer-563   (  555) [002] d..2 24573.297747: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13236 next_prio=110
49172         rcuop/3-37    (   37) [004] d..2 24573.297756: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49173           <...>-13236 (-----) [002] ...1 24573.297774: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
49174           <...>-13236 (-----) [002] ...1 24573.297779: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
49175           <...>-13236 (-----) [002] d..2 24573.297832: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
49176           <...>-13236 (-----) [002] d..3 24573.297841: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
49177           <...>-13236 (-----) [002] ...1 24573.297905: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49178           <...>-13236 (-----) [002] ...1 24573.297910: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49179           <...>-13157 (-----) [000] d.h4 24573.298648: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
49180           <...>-13157 (-----) [000] d.h5 24573.298666: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
49181           <...>-13236 (-----) [002] d..2 24573.298676: sched_switch: prev_comm=id.nn.benchmark prev_pid=13236 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
49182           <...>-13157 (-----) [000] d.h2 24573.298702: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
49183           <...>-13157 (-----) [000] d.h2 24573.298710: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
49184 id.nn.benchmark-13158 (13131) [004] dnh1 24573.298713: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
49185 id.nn.benchmark-13158 (13131) [004] d..2 24573.298716: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
49186         sugov:4-560   (  560) [004] d..2 24573.298719: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49187           <...>-13157 (-----) [000] dnh3 24573.298719: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
49188 crtc_commit:111-253   (  253) [002] d..2 24573.298725: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13236 next_prio=110
49189           <...>-13157 (-----) [000] d..2 24573.298725: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
49190         sugov:0-559   (  559) [000] d..2 24573.298732: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
49191           <...>-13157 (-----) [000] d.h4 24573.298934: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
49192           <...>-13157 (-----) [000] d.h5 24573.298949: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
49193           <...>-13236 (-----) [002] d..2 24573.298958: sched_switch: prev_comm=id.nn.benchmark prev_pid=13236 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
49194  crtc_event:111-254   (  254) [002] d..2 24573.298980: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13236 next_prio=110
49195           <...>-13236 (-----) [002] ...1 24573.299977: tracing_mark_write: E|13131
49196           <...>-13236 (-----) [002] ...1 24573.299981: tracing_mark_write: E|13131
49197           <...>-13236 (-----) [002] ...1 24573.299992: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49198           <...>-13236 (-----) [002] ...1 24573.299996: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49199           <...>-13236 (-----) [002] ...1 24573.300691: tracing_mark_write: E|13131
49200           <...>-13236 (-----) [002] ...1 24573.300695: tracing_mark_write: E|13131
49201           <...>-13236 (-----) [002] ...1 24573.300710: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49202           <...>-13236 (-----) [002] ...1 24573.300714: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49203           <...>-13236 (-----) [002] d.h1 24573.300817: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
49204           <...>-13236 (-----) [002] dnh2 24573.300827: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
49205           <...>-13236 (-----) [002] d..2 24573.300835: sched_switch: prev_comm=id.nn.benchmark prev_pid=13236 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
49206        DispSync-23904 (23896) [002] d..1 24573.300856: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
49207        DispSync-23904 (23896) [002] d..2 24573.300873: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
49208           <...>-13157 (-----) [000] d..2 24573.300882: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
49209 id.nn.benchmark-13158 (13131) [004] d.s2 24573.300888: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
49210 id.nn.benchmark-13158 (13131) [004] dns3 24573.300893: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
49211 id.nn.benchmark-13158 (13131) [004] d..2 24573.300897: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
49212        DispSync-23904 (23896) [002] d..2 24573.300905: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13236 next_prio=110
49213  appEventThread-23905 (23896) [000] d..3 24573.300938: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
49214  appEventThread-23905 (23896) [000] d..4 24573.300969: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
49215           <...>-13236 (-----) [002] d..2 24573.300978: sched_switch: prev_comm=id.nn.benchmark prev_pid=13236 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
49216  appEventThread-23905 (23896) [000] d..2 24573.300984: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
49217  kworker/u16:15-18488 (18488) [004] d..2 24573.301174: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49218 id.nn.benchmark-13159 (13131) [003] d.s2 24573.301211: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
49219 id.nn.benchmark-13158 (13131) [004] d.h1 24573.301225: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
49220 id.nn.benchmark-13158 (13131) [004] dnh1 24573.301226: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
49221 id.nn.benchmark-13158 (13131) [004] d..2 24573.301229: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
49222  kworker/u16:15-18488 (18488) [004] d..2 24573.301233: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49223<...>-24151 ( 24151) [002] .... 24573.301277: binder_transaction: transaction=1669882 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
49224<...>-24151 ( 24151) [002] d..4 24573.301287: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
49225 id.nn.benchmark-13158 (13131) [004] dnh1 24573.301304: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
49226 id.nn.benchmark-13158 (13131) [004] d..2 24573.301306: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
49227  Binder:23896_5-25989 (23896) [004] .... 24573.301310: binder_transaction_received: transaction=1669882
49228  Binder:23896_5-25989 (23896) [004] d..1 24573.301330: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
49229<...>-24151 ( 24151) [002] d..3 24573.301331: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
49230           <...>-13157 (-----) [000] dnh1 24573.301341: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
49231           <...>-13157 (-----) [000] d..2 24573.301346: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
49232  Binder:23896_5-25989 (23896) [004] d..2 24573.301348: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49233 id.nn.benchmark-13156 (13131) [006] dnh1 24573.301355: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
49234 id.nn.benchmark-13156 (13131) [006] d..2 24573.301382: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
49235<...>-24151 ( 24151) [002] d.h3 24573.301383: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
49236  appEventThread-23905 (23896) [000] d..2 24573.301384: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
49237<...>-24151 ( 24151) [002] d.h3 24573.301391: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
49238 id.nn.benchmark-13158 (13131) [004] dnh1 24573.301395: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
49239 id.nn.benchmark-13158 (13131) [004] d..2 24573.301399: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
49240<...>-24151 ( 24151) [002] d.h4 24573.301400: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
49241    RenderThread-24437 (24151) [006] d..2 24573.301401: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
49242         sugov:4-560   (  560) [004] d..2 24573.301403: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49243           <...>-13157 (-----) [000] d..2 24573.301407: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
49244         sugov:0-559   (  559) [000] d..2 24573.301413: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
49245<...>-24151 ( 24151) [002] d..3 24573.301496: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
49246 id.nn.benchmark-13156 (13131) [006] dnh1 24573.301511: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
49247 id.nn.benchmark-13156 (13131) [006] d..2 24573.301514: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
49248<...>-24151 ( 24151) [002] d..2 24573.301517: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13236 next_prio=110
49249    RenderThread-24437 (24151) [006] d..1 24573.301566: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
49250           <...>-13236 (-----) [002] dnh1 24573.301586: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
49251           <...>-13236 (-----) [002] d..2 24573.301592: sched_switch: prev_comm=id.nn.benchmark prev_pid=13236 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
49252    RenderThread-24437 (24151) [006] .... 24573.301609: binder_transaction: transaction=1669883 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
49253    RenderThread-24437 (24151) [006] d..4 24573.301612: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
49254    RenderThread-24437 (24151) [006] d..5 24573.301620: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
49255    RenderThread-24437 (24151) [006] d..2 24573.301624: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
49256 id.nn.benchmark-13158 (13131) [004] d..2 24573.301626: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
49257  Binder:23896_5-25989 (23896) [004] .... 24573.301628: binder_transaction_received: transaction=1669883
49258<...>-24151 ( 24151) [002] d..2 24573.301633: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13236 next_prio=110
49259  Binder:23896_5-25989 (23896) [004] .... 24573.301656: binder_transaction: transaction=1669884 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
49260  Binder:23896_5-25989 (23896) [004] d..2 24573.301661: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
49261  Binder:23896_5-25989 (23896) [004] d..3 24573.301669: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
49262 id.nn.benchmark-13156 (13131) [006] d..2 24573.301676: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
49263    RenderThread-24437 (24151) [006] .... 24573.301678: binder_transaction_received: transaction=1669884
49264  Binder:23896_5-25989 (23896) [004] d..2 24573.301680: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49265    RenderThread-24437 (24151) [006] d..2 24573.302283: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
49266           <...>-13236 (-----) [002] ...1 24573.302301: tracing_mark_write: E|13131
49267           <...>-13236 (-----) [002] ...1 24573.302305: tracing_mark_write: E|13131
49268           <...>-13236 (-----) [002] ...1 24573.302318: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49269           <...>-13236 (-----) [002] ...1 24573.302324: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49270 id.nn.benchmark-13156 (13131) [006] d.h1 24573.302380: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
49271 id.nn.benchmark-13156 (13131) [006] d.h2 24573.302385: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
49272 id.nn.benchmark-13156 (13131) [006] dnh2 24573.302387: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
49273 id.nn.benchmark-13156 (13131) [006] d..2 24573.302391: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
49274    RenderThread-24437 (24151) [006] .... 24573.302471: binder_transaction: transaction=1669885 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
49275    RenderThread-24437 (24151) [006] d..4 24573.302474: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
49276    RenderThread-24437 (24151) [006] d..5 24573.302482: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
49277    RenderThread-24437 (24151) [006] d..2 24573.302486: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
49278 id.nn.benchmark-13158 (13131) [004] d..2 24573.302488: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
49279  Binder:23896_5-25989 (23896) [004] .... 24573.302489: binder_transaction_received: transaction=1669885
49280           <...>-13157 (-----) [000] d.h2 24573.302506: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
49281           <...>-13157 (-----) [000] d.h3 24573.302519: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
49282           <...>-13236 (-----) [002] d..2 24573.302530: sched_switch: prev_comm=id.nn.benchmark prev_pid=13236 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
49283  Binder:23896_5-25989 (23896) [004] .... 24573.302542: binder_transaction: transaction=1669886 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
49284  Binder:23896_5-25989 (23896) [004] d..2 24573.302544: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
49285  Binder:23896_5-25989 (23896) [004] d..3 24573.302551: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
49286 id.nn.benchmark-13156 (13131) [006] d..2 24573.302557: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
49287  Binder:23896_5-25989 (23896) [004] d..2 24573.302559: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49288    RenderThread-24437 (24151) [006] .... 24573.302559: binder_transaction_received: transaction=1669886
49289 kgsl_worker_thr-246   (  246) [002] d..2 24573.302565: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
49290 id.nn.benchmark-13158 (13131) [004] dnh1 24573.302580: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
49291 id.nn.benchmark-13158 (13131) [004] d..2 24573.302582: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
49292    RenderThread-24437 (24151) [006] d..2 24573.302585: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
49293 kgsl_worker_thr-246   (  246) [002] d..2 24573.302589: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13236 next_prio=110
49294           <...>-13236 (-----) [002] ...1 24573.302628: tracing_mark_write: E|13131
49295           <...>-13236 (-----) [002] ...1 24573.302632: tracing_mark_write: E|13131
49296           <...>-13236 (-----) [002] ...1 24573.302643: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49297           <...>-13236 (-----) [002] ...1 24573.302647: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49298  kworker/u16:15-18488 (18488) [004] d..2 24573.302702: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49299           <...>-13236 (-----) [002] ...1 24573.303042: tracing_mark_write: E|13131
49300           <...>-13236 (-----) [002] ...1 24573.303046: tracing_mark_write: E|13131
49301           <...>-13236 (-----) [002] ...1 24573.303056: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49302           <...>-13236 (-----) [002] ...1 24573.303060: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49303           <...>-13236 (-----) [002] ...1 24573.303445: tracing_mark_write: E|13131
49304           <...>-13236 (-----) [002] ...1 24573.303449: tracing_mark_write: E|13131
49305           <...>-13236 (-----) [002] ...1 24573.303468: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49306           <...>-13236 (-----) [002] ...1 24573.303472: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49307           <...>-13236 (-----) [002] ...1 24573.303663: tracing_mark_write: E|13131
49308           <...>-13236 (-----) [002] ...1 24573.303666: tracing_mark_write: E|13131
49309           <...>-13236 (-----) [002] ...1 24573.303680: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49310           <...>-13236 (-----) [002] ...1 24573.303684: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49311           <...>-13236 (-----) [002] ...1 24573.303753: tracing_mark_write: E|13131
49312           <...>-13236 (-----) [002] ...1 24573.303756: tracing_mark_write: E|13131
49313           <...>-13236 (-----) [002] ...1 24573.303767: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
49314           <...>-13236 (-----) [002] ...1 24573.303771: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
49315           <...>-13236 (-----) [002] ...1 24573.304056: tracing_mark_write: E|13131
49316           <...>-13236 (-----) [002] ...1 24573.304060: tracing_mark_write: E|13131
49317           <...>-13236 (-----) [002] ...1 24573.304069: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
49318           <...>-13236 (-----) [002] ...1 24573.304073: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
49319           <...>-13236 (-----) [002] ...1 24573.304122: tracing_mark_write: E|13131
49320           <...>-13236 (-----) [002] ...1 24573.304125: tracing_mark_write: E|13131
49321           <...>-13236 (-----) [002] ...1 24573.304133: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
49322           <...>-13236 (-----) [002] ...1 24573.304137: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
49323           <...>-13236 (-----) [002] ...1 24573.304152: tracing_mark_write: E|13131
49324           <...>-13236 (-----) [002] ...1 24573.304155: tracing_mark_write: E|13131
49325           <...>-13236 (-----) [002] ...1 24573.304165: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
49326           <...>-13236 (-----) [002] ...1 24573.304168: tracing_mark_write: E|13131
49327           <...>-13236 (-----) [002] ...1 24573.304177: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
49328           <...>-13236 (-----) [002] ...1 24573.304182: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
49329 id.nn.benchmark-13158 (13131) [004] d.s1 24573.304225: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
49330 id.nn.benchmark-13158 (13131) [004] dns2 24573.304235: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
49331 id.nn.benchmark-13158 (13131) [004] dns2 24573.304238: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
49332 id.nn.benchmark-13158 (13131) [004] dns3 24573.304243: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
49333 id.nn.benchmark-13158 (13131) [004] d..2 24573.304247: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
49334     rcu_preempt-7     (    7) [004] d..2 24573.304250: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=004
49335     rcu_preempt-7     (    7) [004] d..3 24573.304258: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=004
49336     rcu_preempt-7     (    7) [004] d..2 24573.304259: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=004
49337     rcu_preempt-7     (    7) [004] d..3 24573.304266: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=004
49338     rcu_preempt-7     (    7) [004] d..2 24573.304271: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/4:0 next_pid=24269 next_prio=120
49339     kworker/4:0-24269 (24269) [004] d..2 24573.304279: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
49340     kworker/4:0-24269 (24269) [004] d..2 24573.304286: sched_waking: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
49341     kworker/4:0-24269 (24269) [004] d..3 24573.304292: sched_wakeup: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
49342 id.nn.benchmark-13155 (13131) [001] dnh1 24573.304294: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
49343     kworker/4:0-24269 (24269) [004] d..2 24573.304294: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
49344           <...>-13154 (-----) [005] d..2 24573.304299: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=kworker/5:0 next_pid=24254 next_prio=120
49345     kworker/4:0-24269 (24269) [004] d..3 24573.304300: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
49346 id.nn.benchmark-13155 (13131) [001] d..2 24573.304301: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
49347     kworker/4:0-24269 (24269) [004] d..2 24573.304302: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
49348 id.nn.benchmark-13156 (13131) [006] d..2 24573.304307: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
49349     kworker/5:0-24254 (24254) [005] d..2 24573.304308: sched_switch: prev_comm=kworker/5:0 prev_pid=24254 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
49350     kworker/4:0-24269 (24269) [004] d..3 24573.304309: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
49351     kworker/4:0-24269 (24269) [004] d..2 24573.304312: sched_switch: prev_comm=kworker/4:0 prev_pid=24269 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
49352     kworker/1:1-13091 (13091) [001] d..2 24573.304314: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
49353 id.nn.benchmark-13160 (13131) [007] d..2 24573.304315: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/7:0 next_pid=12892 next_prio=120
49354     kworker/6:0-21469 (21469) [006] d..2 24573.304316: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
49355     kworker/7:0-12892 (12892) [007] d..2 24573.304323: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
49356         rcuop/4-45    (   45) [004] d..2 24573.304333: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
49357         rcuop/0-10    (   10) [004] d..2 24573.304335: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
49358         rcuop/0-10    (   10) [004] d..3 24573.304344: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
49359         rcuop/0-10    (   10) [004] d..2 24573.304347: 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
49360         rcuop/1-21    (   21) [004] d..2 24573.304353: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49361           <...>-13236 (-----) [002] d.h1 24573.304827: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
49362           <...>-13236 (-----) [002] dnh2 24573.304837: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
49363           <...>-13236 (-----) [002] d..2 24573.304844: sched_switch: prev_comm=id.nn.benchmark prev_pid=13236 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
49364        DispSync-23904 (23896) [002] d..1 24573.304859: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
49365        DispSync-23904 (23896) [002] d..2 24573.304870: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
49366           <...>-13157 (-----) [000] d..2 24573.304878: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
49367        DispSync-23904 (23896) [002] d..2 24573.304882: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13236 next_prio=110
49368   sfEventThread-23906 (23896) [000] d..3 24573.304908: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
49369   sfEventThread-23906 (23896) [000] d..4 24573.304927: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
49370           <...>-13236 (-----) [002] d..2 24573.304934: sched_switch: prev_comm=id.nn.benchmark prev_pid=13236 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
49371   sfEventThread-23906 (23896) [000] d..2 24573.304940: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
49372  surfaceflinger-23896 (23896) [002] d..1 24573.305181: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
49373  surfaceflinger-23896 (23896) [002] d..2 24573.305192: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
49374           <...>-13157 (-----) [000] d..2 24573.305200: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
49375   sfEventThread-23906 (23896) [000] d..2 24573.305214: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
49376  surfaceflinger-23896 (23896) [002] ...1 24573.305325: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
49377  surfaceflinger-23896 (23896) [002] ...1 24573.305329: tracing_mark_write: E|23896
49378  surfaceflinger-23896 (23896) [002] .... 24573.305372: binder_transaction: transaction=1669887 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
49379  surfaceflinger-23896 (23896) [002] ...2 24573.305392: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
49380  surfaceflinger-23896 (23896) [002] d..4 24573.305398: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
49381 id.nn.benchmark-13158 (13131) [004] dnh1 24573.305413: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
49382 id.nn.benchmark-13158 (13131) [004] d..2 24573.305416: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
49383  surfaceflinger-23896 (23896) [002] d..2 24573.305420: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13236 next_prio=110
49384  HwBinder:598_3-633   (  598) [004] .... 24573.305420: binder_transaction_received: transaction=1669887
49385  HwBinder:598_3-633   (  598) [004] ...1 24573.305446: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
49386  HwBinder:598_3-633   (  598) [004] ...1 24573.305499: tracing_mark_write: B|598|HWCSession::PresentDisplay::
49387  HwBinder:598_3-633   (  598) [004] ...1 24573.305564: tracing_mark_write: B|598|HWDeviceDRM::Commit::
49388  HwBinder:598_3-633   (  598) [004] ...1 24573.305567: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
49389           <...>-13236 (-----) [002] ...1 24573.305616: tracing_mark_write: E|13131
49390           <...>-13236 (-----) [002] ...1 24573.305620: tracing_mark_write: E|13131
49391           <...>-13236 (-----) [002] ...1 24573.305631: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49392           <...>-13236 (-----) [002] ...1 24573.305635: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49393  HwBinder:598_3-633   (  598) [004] d..2 24573.305770: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
49394           <...>-13236 (-----) [002] dnh1 24573.305784: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
49395           <...>-13236 (-----) [002] d..2 24573.305791: sched_switch: prev_comm=id.nn.benchmark prev_pid=13236 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
49396  HwBinder:598_3-633   (  598) [004] ...1 24573.305804: tracing_mark_write: E|598
49397  HwBinder:598_3-633   (  598) [004] ...1 24573.305805: tracing_mark_write: E|598
49398  HwBinder:598_3-633   (  598) [004] ...1 24573.305826: tracing_mark_write: E|598
49399  HwBinder:598_3-633   (  598) [004] ...1 24573.305845: tracing_mark_write: E|598
49400  HwBinder:598_3-633   (  598) [004] .... 24573.305851: binder_transaction: transaction=1669888 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
49401  HwBinder:598_3-633   (  598) [004] d..2 24573.305856: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
49402  HwBinder:598_3-633   (  598) [004] .... 24573.305866: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
49403           <...>-13157 (-----) [000] dnh1 24573.305871: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
49404           <...>-13157 (-----) [000] d..2 24573.305877: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
49405  surfaceflinger-23896 (23896) [000] .... 24573.305881: binder_transaction_received: transaction=1669888
49406  HwBinder:598_3-633   (  598) [004] d..2 24573.305886: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49407  surfaceflinger-23896 (23896) [000] d..2 24573.306007: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=004
49408 id.nn.benchmark-13158 (13131) [004] dnh1 24573.306034: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=004
49409 id.nn.benchmark-13158 (13131) [004] d..2 24573.306037: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
49410         rcuop/0-10    (   10) [004] d..2 24573.306041: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49411  surfaceflinger-23896 (23896) [000] d..2 24573.306145: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
49412 crtc_commit:111-253   (  253) [002] d..2 24573.306401: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13236 next_prio=110
49413           <...>-13236 (-----) [002] ...1 24573.306409: tracing_mark_write: E|13131
49414           <...>-13236 (-----) [002] ...1 24573.306413: tracing_mark_write: E|13131
49415           <...>-13236 (-----) [002] ...1 24573.306486: tracing_mark_write: E|13131
49416           <...>-13236 (-----) [002] d..1 24573.306492: sched_waking: comm=id.nn.benchmark pid=13235 prio=110 target_cpu=002
49417 id.nn.benchmark-13158 (13131) [004] dnh1 24573.306517: sched_wakeup: comm=id.nn.benchmark pid=13235 prio=110 target_cpu=004
49418 id.nn.benchmark-13158 (13131) [004] d..2 24573.306545: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13235 next_prio=110
49419           <...>-13236 (-----) [002] d.h3 24573.306546: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
49420           <...>-13235 (-----) [004] d..2 24573.306554: sched_switch: prev_comm=id.nn.benchmark prev_pid=13235 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49421           <...>-13236 (-----) [002] d.h3 24573.306555: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
49422 id.nn.benchmark-13158 (13131) [004] dnh1 24573.306557: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
49423 id.nn.benchmark-13158 (13131) [004] d..2 24573.306559: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
49424         sugov:4-560   (  560) [004] d..2 24573.306564: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49425           <...>-13236 (-----) [002] dnh4 24573.306565: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
49426           <...>-13236 (-----) [002] d..2 24573.306571: sched_switch: prev_comm=id.nn.benchmark prev_pid=13236 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
49427         sugov:0-559   (  559) [002] d..2 24573.306579: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13236 next_prio=110
49428           <...>-13236 (-----) [002] ...1 24573.306595: tracing_mark_write: E|13131
49429           <...>-13236 (-----) [002] d..1 24573.306817: sched_waking: comm=id.nn.benchmark pid=13235 prio=110 target_cpu=004
49430           <...>-13236 (-----) [002] dn.2 24573.306833: sched_wakeup: comm=id.nn.benchmark pid=13235 prio=110 target_cpu=002
49431           <...>-13236 (-----) [002] d..2 24573.306858: sched_switch: prev_comm=id.nn.benchmark prev_pid=13236 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13235 next_prio=110
49432           <...>-13235 (-----) [002] d..1 24573.306967: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
49433 id.nn.benchmark-13158 (13131) [004] dnh1 24573.306982: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
49434 id.nn.benchmark-13158 (13131) [004] d..2 24573.306985: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
49435           <...>-13131 (-----) [004] d..2 24573.306990: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49436           <...>-13235 (-----) [002] d..1 24573.307034: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
49437 id.nn.benchmark-13158 (13131) [004] dnh1 24573.307058: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
49438 id.nn.benchmark-13158 (13131) [004] d..2 24573.307060: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
49439           <...>-13131 (-----) [004] ...1 24573.307075: tracing_mark_write: E|13131
49440           <...>-13131 (-----) [004] ...1 24573.307078: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
49441           <...>-13131 (-----) [004] ...1 24573.307081: tracing_mark_write: E|13131
49442           <...>-13131 (-----) [004] ...1 24573.307082: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
49443           <...>-13131 (-----) [004] ...1 24573.307085: tracing_mark_write: E|13131
49444           <...>-13235 (-----) [002] d..2 24573.307114: sched_switch: prev_comm=id.nn.benchmark prev_pid=13235 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13236 next_prio=110
49445           <...>-13236 (-----) [002] d..2 24573.307137: sched_switch: prev_comm=id.nn.benchmark prev_pid=13236 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
49446           <...>-13131 (-----) [004] ...1 24573.307148: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
49447           <...>-13131 (-----) [004] ...1 24573.307172: tracing_mark_write: E|13131
49448           <...>-13131 (-----) [004] ...1 24573.307174: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
49449           <...>-13131 (-----) [004] ...1 24573.307177: tracing_mark_write: E|13131
49450           <...>-13131 (-----) [004] ...1 24573.307179: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
49451           <...>-13131 (-----) [004] ...1 24573.307180: tracing_mark_write: E|13131
49452           <...>-13131 (-----) [004] ...1 24573.307182: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
49453           <...>-13131 (-----) [004] ...1 24573.307245: tracing_mark_write: E|13131
49454           <...>-13131 (-----) [004] ...1 24573.307247: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
49455           <...>-13131 (-----) [004] d..2 24573.307251: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49456     logd.writer-563   (  555) [002] d..2 24573.307399: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13237 next_prio=110
49457           <...>-13237 (-----) [002] d.h4 24573.307428: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
49458           <...>-13237 (-----) [002] d.h4 24573.307436: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
49459 id.nn.benchmark-13158 (13131) [004] dnh1 24573.307441: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
49460           <...>-13237 (-----) [002] dnh5 24573.307443: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
49461 id.nn.benchmark-13158 (13131) [004] d..2 24573.307444: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
49462         sugov:4-560   (  560) [004] d..2 24573.307447: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49463           <...>-13237 (-----) [002] d..2 24573.307449: sched_switch: prev_comm=id.nn.benchmark prev_pid=13237 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
49464         sugov:0-559   (  559) [002] d..2 24573.307457: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13237 next_prio=110
49465           <...>-13237 (-----) [002] d..2 24573.307515: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
49466           <...>-13237 (-----) [002] d..3 24573.307523: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
49467 id.nn.benchmark-13158 (13131) [004] d.s2 24573.307557: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
49468 id.nn.benchmark-13158 (13131) [004] dns3 24573.307561: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
49469 id.nn.benchmark-13158 (13131) [004] d..2 24573.307565: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
49470  kworker/u16:15-18488 (18488) [004] d..2 24573.307662: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49471           <...>-13237 (-----) [002] d..2 24573.307850: sched_switch: prev_comm=id.nn.benchmark prev_pid=13237 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
49472     logd.writer-563   (  555) [002] d..2 24573.308016: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13238 next_prio=110
49473           <...>-13238 (-----) [002] ...1 24573.308042: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
49474           <...>-13238 (-----) [002] ...1 24573.308046: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
49475           <...>-13238 (-----) [002] d..2 24573.308104: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
49476           <...>-13238 (-----) [002] d..3 24573.308112: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
49477           <...>-13238 (-----) [002] ...1 24573.308178: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49478           <...>-13238 (-----) [002] ...1 24573.308183: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49479           <...>-13238 (-----) [002] ...1 24573.310190: tracing_mark_write: E|13131
49480           <...>-13238 (-----) [002] ...1 24573.310194: tracing_mark_write: E|13131
49481           <...>-13238 (-----) [002] ...1 24573.310205: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49482           <...>-13238 (-----) [002] ...1 24573.310209: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49483 id.nn.benchmark-13158 (13131) [004] d.s1 24573.310889: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
49484 id.nn.benchmark-13158 (13131) [004] dns2 24573.310899: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
49485 id.nn.benchmark-13158 (13131) [004] dns2 24573.310901: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
49486 id.nn.benchmark-13158 (13131) [004] dns3 24573.310904: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
49487 id.nn.benchmark-13158 (13131) [004] d..2 24573.310907: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
49488     rcu_preempt-7     (    7) [004] d..2 24573.310909: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=004
49489     rcu_preempt-7     (    7) [004] d..3 24573.310917: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=004
49490     rcu_preempt-7     (    7) [004] d..2 24573.310921: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
49491           <...>-13238 (-----) [002] ...1 24573.310931: tracing_mark_write: E|13131
49492           <...>-13238 (-----) [002] ...1 24573.310935: tracing_mark_write: E|13131
49493           <...>-13238 (-----) [002] ...1 24573.310950: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49494           <...>-13238 (-----) [002] ...1 24573.310953: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49495  kworker/u16:15-18488 (18488) [004] d..2 24573.311125: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
49496         rcuop/2-29    (   29) [004] d..2 24573.311146: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49497           <...>-13238 (-----) [002] ...1 24573.311296: tracing_mark_write: E|13131
49498           <...>-13238 (-----) [002] ...1 24573.311300: tracing_mark_write: E|13131
49499           <...>-13238 (-----) [002] ...1 24573.311310: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49500           <...>-13238 (-----) [002] ...1 24573.311314: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49501           <...>-13238 (-----) [002] ...1 24573.311545: tracing_mark_write: E|13131
49502           <...>-13238 (-----) [002] ...1 24573.311549: tracing_mark_write: E|13131
49503           <...>-13238 (-----) [002] ...1 24573.311559: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49504           <...>-13238 (-----) [002] ...1 24573.311564: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49505           <...>-13238 (-----) [002] ...1 24573.311958: tracing_mark_write: E|13131
49506           <...>-13238 (-----) [002] ...1 24573.311962: tracing_mark_write: E|13131
49507           <...>-13238 (-----) [002] ...1 24573.311972: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49508           <...>-13238 (-----) [002] ...1 24573.311976: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49509           <...>-13238 (-----) [002] ...1 24573.312366: tracing_mark_write: E|13131
49510           <...>-13238 (-----) [002] ...1 24573.312371: tracing_mark_write: E|13131
49511           <...>-13238 (-----) [002] ...1 24573.312388: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49512           <...>-13238 (-----) [002] ...1 24573.312393: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49513           <...>-13238 (-----) [002] ...1 24573.312584: tracing_mark_write: E|13131
49514           <...>-13238 (-----) [002] ...1 24573.312588: tracing_mark_write: E|13131
49515           <...>-13238 (-----) [002] ...1 24573.312601: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49516           <...>-13238 (-----) [002] ...1 24573.312605: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49517           <...>-13238 (-----) [002] ...1 24573.312674: tracing_mark_write: E|13131
49518           <...>-13238 (-----) [002] ...1 24573.312677: tracing_mark_write: E|13131
49519           <...>-13238 (-----) [002] ...1 24573.312688: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
49520           <...>-13238 (-----) [002] ...1 24573.312694: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
49521           <...>-13157 (-----) [000] d.h4 24573.312770: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
49522           <...>-13157 (-----) [000] d.h4 24573.312795: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
49523 id.nn.benchmark-13158 (13131) [004] dnh1 24573.312797: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
49524 id.nn.benchmark-13158 (13131) [004] d..2 24573.312800: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
49525           <...>-13157 (-----) [000] d.h5 24573.312804: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
49526  crtc_event:111-254   (  254) [004] d..2 24573.312811: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49527           <...>-13238 (-----) [002] d..2 24573.312812: sched_switch: prev_comm=id.nn.benchmark prev_pid=13238 prev_prio=110 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
49528           <...>-13157 (-----) [000] d.h2 24573.312852: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
49529           <...>-13157 (-----) [000] d.h2 24573.312859: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
49530 id.nn.benchmark-13158 (13131) [004] dnh1 24573.312861: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
49531 id.nn.benchmark-13158 (13131) [004] d..2 24573.312864: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
49532         sugov:4-560   (  560) [004] d..2 24573.312867: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49533           <...>-13157 (-----) [000] dnh3 24573.312867: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
49534           <...>-13157 (-----) [000] d..2 24573.312874: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
49535         sugov:0-559   (  559) [000] d..2 24573.312881: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
49536 crtc_commit:111-253   (  253) [002] d..2 24573.312938: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13238 next_prio=110
49537           <...>-13238 (-----) [002] ...1 24573.313108: tracing_mark_write: E|13131
49538           <...>-13238 (-----) [002] ...1 24573.313112: tracing_mark_write: E|13131
49539           <...>-13238 (-----) [002] ...1 24573.313121: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
49540           <...>-13238 (-----) [002] ...1 24573.313125: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
49541           <...>-13238 (-----) [002] ...1 24573.313174: tracing_mark_write: E|13131
49542           <...>-13238 (-----) [002] ...1 24573.313177: tracing_mark_write: E|13131
49543           <...>-13238 (-----) [002] ...1 24573.313187: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
49544           <...>-13238 (-----) [002] ...1 24573.313191: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
49545           <...>-13238 (-----) [002] ...1 24573.313206: tracing_mark_write: E|13131
49546           <...>-13238 (-----) [002] ...1 24573.313209: tracing_mark_write: E|13131
49547           <...>-13238 (-----) [002] ...1 24573.313219: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
49548           <...>-13238 (-----) [002] ...1 24573.313223: tracing_mark_write: E|13131
49549           <...>-13238 (-----) [002] ...1 24573.313232: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
49550           <...>-13238 (-----) [002] ...1 24573.313238: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
49551           <...>-13238 (-----) [002] ...1 24573.314090: tracing_mark_write: E|13131
49552           <...>-13238 (-----) [002] ...1 24573.314092: tracing_mark_write: E|13131
49553           <...>-13238 (-----) [002] ...1 24573.314100: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49554           <...>-13238 (-----) [002] ...1 24573.314104: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49555           <...>-13238 (-----) [002] ...1 24573.314187: tracing_mark_write: E|13131
49556           <...>-13238 (-----) [002] ...1 24573.314190: tracing_mark_write: E|13131
49557           <...>-13238 (-----) [002] d.s2 24573.314232: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
49558 id.nn.benchmark-13158 (13131) [004] dnh1 24573.314246: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
49559 id.nn.benchmark-13158 (13131) [004] d..2 24573.314248: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
49560  crtc_event:111-254   (  254) [004] d..2 24573.314254: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49561           <...>-13238 (-----) [002] ...1 24573.314273: tracing_mark_write: E|13131
49562           <...>-13238 (-----) [002] d..1 24573.314277: sched_waking: comm=id.nn.benchmark pid=13237 prio=110 target_cpu=002
49563 id.nn.benchmark-13158 (13131) [004] dnh1 24573.314301: sched_wakeup: comm=id.nn.benchmark pid=13237 prio=110 target_cpu=004
49564 id.nn.benchmark-13158 (13131) [004] d..2 24573.314325: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13237 next_prio=110
49565           <...>-13238 (-----) [002] d.h3 24573.314326: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
49566           <...>-13237 (-----) [004] d..2 24573.314331: sched_switch: prev_comm=id.nn.benchmark prev_pid=13237 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49567           <...>-13238 (-----) [002] d.h3 24573.314334: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
49568 id.nn.benchmark-13158 (13131) [004] dnh1 24573.314336: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
49569 id.nn.benchmark-13158 (13131) [004] d..2 24573.314339: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
49570         sugov:4-560   (  560) [004] d..2 24573.314341: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49571           <...>-13238 (-----) [002] d.h4 24573.314342: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
49572           <...>-13157 (-----) [000] d..2 24573.314350: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
49573           <...>-13238 (-----) [002] ...1 24573.314358: tracing_mark_write: E|13131
49574         sugov:0-559   (  559) [000] d..2 24573.314359: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
49575           <...>-13238 (-----) [002] d..1 24573.314543: sched_waking: comm=id.nn.benchmark pid=13237 prio=110 target_cpu=004
49576           <...>-13238 (-----) [002] dn.2 24573.314560: sched_wakeup: comm=id.nn.benchmark pid=13237 prio=110 target_cpu=002
49577           <...>-13238 (-----) [002] d..2 24573.314585: sched_switch: prev_comm=id.nn.benchmark prev_pid=13238 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13237 next_prio=110
49578           <...>-13237 (-----) [002] d..1 24573.314675: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
49579 id.nn.benchmark-13158 (13131) [004] dnh1 24573.314690: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
49580 id.nn.benchmark-13158 (13131) [004] d..2 24573.314692: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
49581           <...>-13131 (-----) [004] d..2 24573.314696: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49582           <...>-13237 (-----) [002] d..1 24573.314735: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
49583 id.nn.benchmark-13158 (13131) [004] dnh1 24573.314761: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
49584 id.nn.benchmark-13158 (13131) [004] d..2 24573.314763: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
49585           <...>-13131 (-----) [004] ...1 24573.314774: tracing_mark_write: E|13131
49586           <...>-13131 (-----) [004] ...1 24573.314776: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
49587           <...>-13131 (-----) [004] ...1 24573.314779: tracing_mark_write: E|13131
49588           <...>-13131 (-----) [004] ...1 24573.314781: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
49589           <...>-13131 (-----) [004] ...1 24573.314782: tracing_mark_write: E|13131
49590           <...>-13237 (-----) [002] d..2 24573.314805: sched_switch: prev_comm=id.nn.benchmark prev_pid=13237 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13238 next_prio=110
49591           <...>-13238 (-----) [002] d..2 24573.314826: sched_switch: prev_comm=id.nn.benchmark prev_pid=13238 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
49592           <...>-13131 (-----) [004] ...1 24573.314842: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
49593           <...>-13131 (-----) [004] ...1 24573.314864: tracing_mark_write: E|13131
49594           <...>-13131 (-----) [004] ...1 24573.314866: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
49595           <...>-13131 (-----) [004] ...1 24573.314868: tracing_mark_write: E|13131
49596           <...>-13131 (-----) [004] ...1 24573.314870: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
49597           <...>-13131 (-----) [004] ...1 24573.314871: tracing_mark_write: E|13131
49598           <...>-13131 (-----) [004] ...1 24573.314873: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
49599           <...>-13131 (-----) [004] ...1 24573.314915: tracing_mark_write: E|13131
49600           <...>-13131 (-----) [004] ...1 24573.314917: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
49601           <...>-13131 (-----) [004] d..2 24573.314922: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49602     logd.writer-563   (  555) [002] d..2 24573.315042: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13239 next_prio=110
49603           <...>-13239 (-----) [002] d.h4 24573.315092: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
49604           <...>-13239 (-----) [002] d.h4 24573.315100: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
49605 id.nn.benchmark-13158 (13131) [004] dnh1 24573.315103: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
49606 id.nn.benchmark-13158 (13131) [004] d..2 24573.315107: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
49607           <...>-13239 (-----) [002] dnh5 24573.315110: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
49608         sugov:4-560   (  560) [004] d..2 24573.315111: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49609           <...>-13239 (-----) [002] d..2 24573.315116: sched_switch: prev_comm=id.nn.benchmark prev_pid=13239 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
49610           <...>-13157 (-----) [000] d.h4 24573.315121: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
49611         sugov:0-559   (  559) [002] d..2 24573.315124: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13239 next_prio=110
49612           <...>-13157 (-----) [000] d.h5 24573.315134: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
49613           <...>-13239 (-----) [002] d..2 24573.315139: sched_switch: prev_comm=id.nn.benchmark prev_pid=13239 prev_prio=110 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
49614 crtc_commit:111-253   (  253) [002] d..2 24573.315192: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13239 next_prio=110
49615           <...>-13239 (-----) [002] d..2 24573.315237: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
49616           <...>-13239 (-----) [002] d..3 24573.315245: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
49617           <...>-13157 (-----) [000] d.h4 24573.315404: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
49618 id.nn.benchmark-13158 (13131) [004] dnh1 24573.315415: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
49619 id.nn.benchmark-13158 (13131) [004] d..2 24573.315417: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
49620  crtc_event:111-254   (  254) [004] d..2 24573.315422: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49621           <...>-13239 (-----) [002] d..2 24573.315516: sched_switch: prev_comm=id.nn.benchmark prev_pid=13239 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
49622     logd.writer-563   (  555) [002] d..2 24573.315672: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13240 next_prio=110
49623           <...>-13240 (-----) [002] ...1 24573.315698: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
49624           <...>-13240 (-----) [002] ...1 24573.315702: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
49625           <...>-13240 (-----) [002] d..2 24573.315757: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
49626           <...>-13240 (-----) [002] d..3 24573.315765: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
49627           <...>-13240 (-----) [002] ...1 24573.315829: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49628           <...>-13240 (-----) [002] ...1 24573.315834: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49629           <...>-13240 (-----) [002] d.h1 24573.317292: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
49630 id.nn.benchmark-13158 (13131) [004] dnh1 24573.317315: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=004
49631 id.nn.benchmark-13158 (13131) [004] d..2 24573.317317: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
49632        DispSync-23904 (23896) [004] d..1 24573.317330: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
49633           <...>-13240 (-----) [002] d.h2 24573.317343: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
49634           <...>-13157 (-----) [000] dnh1 24573.317351: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
49635           <...>-13240 (-----) [002] d.h2 24573.317355: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
49636        DispSync-23904 (23896) [004] d..2 24573.317355: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49637           <...>-13157 (-----) [000] d..2 24573.317356: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
49638           <...>-13154 (-----) [005] dnh1 24573.317359: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
49639           <...>-13240 (-----) [002] dnh3 24573.317361: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
49640           <...>-13154 (-----) [005] d..2 24573.317362: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
49641         sugov:4-560   (  560) [005] d..2 24573.317365: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
49642           <...>-13240 (-----) [002] d..2 24573.317367: sched_switch: prev_comm=id.nn.benchmark prev_pid=13240 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
49643         sugov:0-559   (  559) [002] d..2 24573.317374: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13240 next_prio=110
49644  appEventThread-23905 (23896) [000] d..3 24573.317393: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
49645 id.nn.benchmark-13156 (13131) [006] dnh1 24573.317418: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
49646 id.nn.benchmark-13156 (13131) [006] d..2 24573.317440: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
49647  appEventThread-23905 (23896) [000] d..2 24573.317453: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
49648 id.nn.benchmark-13158 (13131) [004] d.s1 24573.317557: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
49649           <...>-13240 (-----) [002] dnh1 24573.317597: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
49650 id.nn.benchmark-13158 (13131) [004] d.s2 24573.317600: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
49651           <...>-13240 (-----) [002] d..2 24573.317603: sched_switch: prev_comm=id.nn.benchmark prev_pid=13240 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
49652     rcu_preempt-7     (    7) [002] d..2 24573.317607: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=004
49653 id.nn.benchmark-13158 (13131) [004] d.s3 24573.317609: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
49654 id.nn.benchmark-13160 (13131) [007] d..2 24573.317615: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
49655 id.nn.benchmark-13158 (13131) [004] dnh1 24573.317634: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=004
49656 id.nn.benchmark-13158 (13131) [004] d..2 24573.317637: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
49657     rcu_preempt-7     (    7) [002] d..2 24573.317639: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13240 next_prio=110
49658         rcuop/0-10    (   10) [004] d..2 24573.317642: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49659<...>-24151 ( 24151) [006] .... 24573.317656: binder_transaction: transaction=1669889 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
49660<...>-24151 ( 24151) [006] d..4 24573.317663: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
49661<...>-24151 ( 24151) [006] d..5 24573.317672: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
49662 id.nn.benchmark-13158 (13131) [004] d..2 24573.317678: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
49663  Binder:23896_5-25989 (23896) [004] .... 24573.317682: binder_transaction_received: transaction=1669889
49664<...>-24151 ( 24151) [006] d..3 24573.317693: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
49665  Binder:23896_5-25989 (23896) [004] d..1 24573.317699: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
49666<...>-24151 ( 24151) [006] d..4 24573.317700: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
49667  kworker/u16:15-18488 (18488) [007] d..2 24573.317703: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
49668           <...>-13240 (-----) [002] dnh1 24573.317714: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
49669           <...>-13240 (-----) [002] d..2 24573.317720: sched_switch: prev_comm=id.nn.benchmark prev_pid=13240 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
49670  Binder:23896_5-25989 (23896) [004] d..2 24573.317721: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49671  appEventThread-23905 (23896) [002] d..2 24573.317748: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13240 next_prio=110
49672<...>-24151 ( 24151) [006] d..2 24573.317764: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
49673    RenderThread-24437 (24151) [006] d..1 24573.317817: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
49674    RenderThread-24437 (24151) [006] d..2 24573.317828: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
49675 id.nn.benchmark-13160 (13131) [007] d..2 24573.317834: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
49676    RenderThread-24437 (24151) [006] .... 24573.317857: binder_transaction: transaction=1669890 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
49677    RenderThread-24437 (24151) [006] d..4 24573.317859: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
49678<...>-24151 ( 24151) [007] d..2 24573.317865: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
49679    RenderThread-24437 (24151) [006] d..5 24573.317867: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
49680    RenderThread-24437 (24151) [006] d..2 24573.317872: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
49681 id.nn.benchmark-13158 (13131) [004] d..2 24573.317873: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
49682  Binder:23896_5-25989 (23896) [004] .... 24573.317875: binder_transaction_received: transaction=1669890
49683  Binder:23896_5-25989 (23896) [004] .... 24573.317901: binder_transaction: transaction=1669891 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
49684  Binder:23896_5-25989 (23896) [004] d..2 24573.317906: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
49685  Binder:23896_5-25989 (23896) [004] d..3 24573.317915: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
49686 id.nn.benchmark-13156 (13131) [006] d..2 24573.317922: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
49687  Binder:23896_5-25989 (23896) [004] d..2 24573.317924: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49688    RenderThread-24437 (24151) [006] .... 24573.317924: binder_transaction_received: transaction=1669891
49689    RenderThread-24437 (24151) [006] d..2 24573.318525: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
49690           <...>-13240 (-----) [002] ...1 24573.318606: tracing_mark_write: E|13131
49691           <...>-13240 (-----) [002] ...1 24573.318611: tracing_mark_write: E|13131
49692 id.nn.benchmark-13156 (13131) [006] d.h1 24573.318624: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
49693           <...>-13240 (-----) [002] ...1 24573.318625: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49694           <...>-13240 (-----) [002] ...1 24573.318629: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49695 id.nn.benchmark-13156 (13131) [006] d.h2 24573.318630: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
49696 id.nn.benchmark-13156 (13131) [006] dnh2 24573.318631: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
49697 id.nn.benchmark-13156 (13131) [006] d..2 24573.318636: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
49698    RenderThread-24437 (24151) [006] .... 24573.318713: binder_transaction: transaction=1669892 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
49699    RenderThread-24437 (24151) [006] d..4 24573.318718: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
49700    RenderThread-24437 (24151) [006] d..5 24573.318726: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
49701    RenderThread-24437 (24151) [006] d..2 24573.318731: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
49702 id.nn.benchmark-13158 (13131) [004] d..2 24573.318732: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
49703  Binder:23896_5-25989 (23896) [004] .... 24573.318734: binder_transaction_received: transaction=1669892
49704           <...>-13157 (-----) [000] d.h2 24573.318749: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
49705           <...>-13157 (-----) [000] d.h3 24573.318762: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
49706           <...>-13240 (-----) [002] d..2 24573.318771: sched_switch: prev_comm=id.nn.benchmark prev_pid=13240 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
49707  Binder:23896_5-25989 (23896) [004] .... 24573.318785: binder_transaction: transaction=1669893 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
49708  Binder:23896_5-25989 (23896) [004] d..2 24573.318787: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
49709  Binder:23896_5-25989 (23896) [004] d..3 24573.318793: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
49710 id.nn.benchmark-13156 (13131) [006] d..2 24573.318800: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
49711  Binder:23896_5-25989 (23896) [004] d..2 24573.318801: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49712    RenderThread-24437 (24151) [006] .... 24573.318802: binder_transaction_received: transaction=1669893
49713 kgsl_worker_thr-246   (  246) [002] d..2 24573.318807: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
49714 id.nn.benchmark-13160 (13131) [007] dnh1 24573.318823: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
49715 id.nn.benchmark-13160 (13131) [007] d..2 24573.318826: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
49716    RenderThread-24437 (24151) [006] d..2 24573.318828: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
49717 kgsl_worker_thr-246   (  246) [002] d..2 24573.318830: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13240 next_prio=110
49718  kworker/u16:15-18488 (18488) [007] d..2 24573.318842: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
49719           <...>-13240 (-----) [002] ...1 24573.319405: tracing_mark_write: E|13131
49720           <...>-13240 (-----) [002] ...1 24573.319409: tracing_mark_write: E|13131
49721           <...>-13240 (-----) [002] ...1 24573.319428: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49722           <...>-13240 (-----) [002] ...1 24573.319432: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49723           <...>-13240 (-----) [002] ...1 24573.319765: tracing_mark_write: E|13131
49724           <...>-13240 (-----) [002] ...1 24573.319769: tracing_mark_write: E|13131
49725           <...>-13240 (-----) [002] ...1 24573.319780: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49726           <...>-13240 (-----) [002] ...1 24573.319784: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49727           <...>-13240 (-----) [002] ...1 24573.320011: tracing_mark_write: E|13131
49728           <...>-13240 (-----) [002] ...1 24573.320015: tracing_mark_write: E|13131
49729           <...>-13240 (-----) [002] ...1 24573.320025: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49730           <...>-13240 (-----) [002] ...1 24573.320029: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49731           <...>-13240 (-----) [002] ...1 24573.320423: tracing_mark_write: E|13131
49732           <...>-13240 (-----) [002] ...1 24573.320426: tracing_mark_write: E|13131
49733           <...>-13240 (-----) [002] ...1 24573.320436: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49734           <...>-13240 (-----) [002] ...1 24573.320440: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49735           <...>-13240 (-----) [002] ...1 24573.320824: tracing_mark_write: E|13131
49736           <...>-13240 (-----) [002] ...1 24573.320827: tracing_mark_write: E|13131
49737           <...>-13240 (-----) [002] ...1 24573.320845: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49738           <...>-13240 (-----) [002] ...1 24573.320849: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49739 id.nn.benchmark-13158 (13131) [004] d.s2 24573.320893: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
49740 id.nn.benchmark-13158 (13131) [004] d.s3 24573.320900: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
49741 id.nn.benchmark-13160 (13131) [007] d..2 24573.320907: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
49742           <...>-13240 (-----) [002] ...1 24573.321060: tracing_mark_write: E|13131
49743           <...>-13240 (-----) [002] ...1 24573.321064: tracing_mark_write: E|13131
49744           <...>-13240 (-----) [002] ...1 24573.321083: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49745           <...>-13240 (-----) [002] ...1 24573.321091: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49746  kworker/u16:15-18488 (18488) [007] d..2 24573.321119: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
49747           <...>-13240 (-----) [002] ...1 24573.321163: tracing_mark_write: E|13131
49748           <...>-13240 (-----) [002] ...1 24573.321166: tracing_mark_write: E|13131
49749           <...>-13240 (-----) [002] ...1 24573.321177: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
49750           <...>-13240 (-----) [002] ...1 24573.321181: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
49751 id.nn.benchmark-13158 (13131) [004] d.h1 24573.321291: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=004
49752 id.nn.benchmark-13158 (13131) [004] d.h2 24573.321325: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
49753           <...>-13240 (-----) [002] dnh1 24573.321327: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
49754 id.nn.benchmark-13158 (13131) [004] d.h3 24573.321331: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
49755 id.nn.benchmark-13158 (13131) [004] d.h2 24573.321332: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
49756           <...>-13240 (-----) [002] d..2 24573.321334: sched_switch: prev_comm=id.nn.benchmark prev_pid=13240 prev_prio=110 prev_state=R+ ==> next_comm=DispSync next_pid=23904 next_prio=97
49757           <...>-13154 (-----) [005] d..2 24573.321338: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
49758         sugov:4-560   (  560) [005] d..2 24573.321342: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
49759        DispSync-23904 (23896) [002] d..1 24573.321349: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
49760           <...>-13157 (-----) [000] dnh1 24573.321350: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
49761           <...>-13157 (-----) [000] d..2 24573.321360: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
49762        DispSync-23904 (23896) [002] d..2 24573.321372: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
49763         sugov:0-559   (  559) [000] d..2 24573.321373: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
49764 id.nn.benchmark-13155 (13131) [001] d..2 24573.321382: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
49765        DispSync-23904 (23896) [002] d..2 24573.321386: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13240 next_prio=110
49766   sfEventThread-23906 (23896) [001] d..3 24573.321414: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
49767   sfEventThread-23906 (23896) [001] d..4 24573.321433: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
49768           <...>-13240 (-----) [002] d..2 24573.321438: sched_switch: prev_comm=id.nn.benchmark prev_pid=13240 prev_prio=110 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
49769   sfEventThread-23906 (23896) [001] d..2 24573.321453: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
49770  surfaceflinger-23896 (23896) [002] d..1 24573.321689: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
49771  surfaceflinger-23896 (23896) [002] d..2 24573.321700: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
49772 id.nn.benchmark-13155 (13131) [001] d..2 24573.321708: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
49773   sfEventThread-23906 (23896) [001] d..2 24573.321723: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
49774  surfaceflinger-23896 (23896) [002] ...1 24573.321823: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
49775  surfaceflinger-23896 (23896) [002] ...1 24573.321826: tracing_mark_write: E|23896
49776  surfaceflinger-23896 (23896) [002] .... 24573.321871: binder_transaction: transaction=1669894 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
49777  surfaceflinger-23896 (23896) [002] ...2 24573.321891: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
49778  surfaceflinger-23896 (23896) [002] d..4 24573.321898: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
49779 id.nn.benchmark-13158 (13131) [004] dnh1 24573.321914: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
49780 id.nn.benchmark-13158 (13131) [004] d..2 24573.321917: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
49781  HwBinder:598_3-633   (  598) [004] .... 24573.321920: binder_transaction_received: transaction=1669894
49782  surfaceflinger-23896 (23896) [002] d..2 24573.321921: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13240 next_prio=110
49783  HwBinder:598_3-633   (  598) [004] ...1 24573.321946: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
49784  HwBinder:598_3-633   (  598) [004] ...1 24573.321993: tracing_mark_write: B|598|HWCSession::PresentDisplay::
49785           <...>-13240 (-----) [002] ...1 24573.322043: tracing_mark_write: E|13131
49786           <...>-13240 (-----) [002] ...1 24573.322048: tracing_mark_write: E|13131
49787  HwBinder:598_3-633   (  598) [004] ...1 24573.322055: tracing_mark_write: B|598|HWDeviceDRM::Commit::
49788  HwBinder:598_3-633   (  598) [004] ...1 24573.322060: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
49789           <...>-13240 (-----) [002] ...1 24573.322060: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
49790           <...>-13240 (-----) [002] ...1 24573.322064: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
49791           <...>-13240 (-----) [002] ...1 24573.322111: tracing_mark_write: E|13131
49792           <...>-13240 (-----) [002] ...1 24573.322115: tracing_mark_write: E|13131
49793           <...>-13240 (-----) [002] ...1 24573.322124: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
49794           <...>-13240 (-----) [002] ...1 24573.322127: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
49795           <...>-13240 (-----) [002] ...1 24573.322142: tracing_mark_write: E|13131
49796           <...>-13240 (-----) [002] ...1 24573.322145: tracing_mark_write: E|13131
49797           <...>-13240 (-----) [002] ...1 24573.322154: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
49798           <...>-13240 (-----) [002] ...1 24573.322157: tracing_mark_write: E|13131
49799           <...>-13240 (-----) [002] ...1 24573.322165: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
49800           <...>-13240 (-----) [002] ...1 24573.322170: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
49801  HwBinder:598_3-633   (  598) [004] d..2 24573.322259: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
49802           <...>-13240 (-----) [002] dnh1 24573.322273: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
49803           <...>-13240 (-----) [002] d..2 24573.322281: sched_switch: prev_comm=id.nn.benchmark prev_pid=13240 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
49804  HwBinder:598_3-633   (  598) [004] ...1 24573.322294: tracing_mark_write: E|598
49805  HwBinder:598_3-633   (  598) [004] ...1 24573.322296: tracing_mark_write: E|598
49806  HwBinder:598_3-633   (  598) [004] ...1 24573.322317: tracing_mark_write: E|598
49807  HwBinder:598_3-633   (  598) [004] ...1 24573.322337: tracing_mark_write: E|598
49808  HwBinder:598_3-633   (  598) [004] .... 24573.322342: binder_transaction: transaction=1669895 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
49809  HwBinder:598_3-633   (  598) [004] d..2 24573.322347: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
49810  HwBinder:598_3-633   (  598) [004] .... 24573.322356: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
49811           <...>-13157 (-----) [000] dnh1 24573.322360: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
49812           <...>-13157 (-----) [000] d..2 24573.322365: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
49813  surfaceflinger-23896 (23896) [000] .... 24573.322370: binder_transaction_received: transaction=1669895
49814  HwBinder:598_3-633   (  598) [004] d..2 24573.322377: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49815  surfaceflinger-23896 (23896) [000] d..2 24573.322606: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
49816 crtc_commit:111-253   (  253) [002] d..2 24573.322890: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13240 next_prio=110
49817           <...>-13240 (-----) [002] ...1 24573.323650: tracing_mark_write: E|13131
49818           <...>-13240 (-----) [002] ...1 24573.323653: tracing_mark_write: E|13131
49819           <...>-13240 (-----) [002] ...1 24573.323662: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49820           <...>-13240 (-----) [002] ...1 24573.323666: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49821           <...>-13240 (-----) [002] ...1 24573.323751: tracing_mark_write: E|13131
49822           <...>-13240 (-----) [002] ...1 24573.323754: tracing_mark_write: E|13131
49823           <...>-13240 (-----) [002] ...1 24573.323824: tracing_mark_write: E|13131
49824           <...>-13240 (-----) [002] d..1 24573.323829: sched_waking: comm=id.nn.benchmark pid=13239 prio=110 target_cpu=002
49825           <...>-13240 (-----) [002] dn.2 24573.323845: sched_wakeup: comm=id.nn.benchmark pid=13239 prio=110 target_cpu=002
49826           <...>-13240 (-----) [002] d..2 24573.323850: sched_switch: prev_comm=id.nn.benchmark prev_pid=13240 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13239 next_prio=110
49827           <...>-13239 (-----) [002] d..2 24573.323866: sched_switch: prev_comm=id.nn.benchmark prev_pid=13239 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13240 next_prio=110
49828           <...>-13240 (-----) [002] ...1 24573.323881: tracing_mark_write: E|13131
49829           <...>-13240 (-----) [002] d..1 24573.324099: sched_waking: comm=id.nn.benchmark pid=13239 prio=110 target_cpu=002
49830           <...>-13240 (-----) [002] dn.2 24573.324108: sched_wakeup: comm=id.nn.benchmark pid=13239 prio=110 target_cpu=002
49831           <...>-13240 (-----) [002] d..2 24573.324113: sched_switch: prev_comm=id.nn.benchmark prev_pid=13240 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13239 next_prio=110
49832 id.nn.benchmark-13158 (13131) [004] d.s2 24573.324225: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
49833           <...>-13239 (-----) [002] d.s1 24573.324230: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
49834 id.nn.benchmark-13158 (13131) [004] d.s3 24573.324233: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
49835 id.nn.benchmark-13160 (13131) [007] d..2 24573.324239: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
49836           <...>-13239 (-----) [002] dns2 24573.324241: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
49837           <...>-13239 (-----) [002] d..2 24573.324248: sched_switch: prev_comm=id.nn.benchmark prev_pid=13239 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
49838     rcu_preempt-7     (    7) [002] d..2 24573.324254: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=004
49839     rcu_preempt-7     (    7) [002] d..3 24573.324273: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
49840  kworker/u16:15-18488 (18488) [007] d..2 24573.324274: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
49841     rcu_preempt-7     (    7) [002] d.h3 24573.324302: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
49842     rcu_preempt-7     (    7) [002] d.h3 24573.324310: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
49843           <...>-13154 (-----) [005] dnh1 24573.324313: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
49844           <...>-13154 (-----) [005] d..2 24573.324315: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
49845     rcu_preempt-7     (    7) [002] d.h4 24573.324318: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
49846         sugov:4-560   (  560) [005] d..2 24573.324318: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
49847           <...>-13157 (-----) [000] d..2 24573.324327: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
49848     rcu_preempt-7     (    7) [002] d..2 24573.324329: 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
49849         sugov:0-559   (  559) [000] d..2 24573.324336: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
49850         rcuop/2-29    (   29) [002] d..2 24573.324365: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13239 next_prio=110
49851           <...>-13239 (-----) [002] d..1 24573.324374: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
49852 id.nn.benchmark-13158 (13131) [004] dnh1 24573.324387: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
49853 id.nn.benchmark-13158 (13131) [004] d..2 24573.324390: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
49854           <...>-13131 (-----) [004] d..2 24573.324397: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49855           <...>-13239 (-----) [002] d..1 24573.324441: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
49856           <...>-13239 (-----) [002] dn.2 24573.324457: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
49857           <...>-13239 (-----) [002] d..2 24573.324482: sched_switch: prev_comm=id.nn.benchmark prev_pid=13239 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
49858           <...>-13131 (-----) [002] ...1 24573.324502: tracing_mark_write: E|13131
49859           <...>-13131 (-----) [002] ...1 24573.324508: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
49860           <...>-13131 (-----) [002] ...1 24573.324513: tracing_mark_write: E|13131
49861           <...>-13131 (-----) [002] ...1 24573.324517: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
49862           <...>-13131 (-----) [002] ...1 24573.324522: tracing_mark_write: E|13131
49863           <...>-13131 (-----) [002] ...1 24573.324832: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
49864           <...>-13131 (-----) [002] ...1 24573.324868: tracing_mark_write: E|13131
49865           <...>-13131 (-----) [002] ...1 24573.324872: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
49866           <...>-13131 (-----) [002] ...1 24573.324878: tracing_mark_write: E|13131
49867           <...>-13131 (-----) [002] ...1 24573.324882: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
49868           <...>-13131 (-----) [002] ...1 24573.324887: tracing_mark_write: E|13131
49869           <...>-13131 (-----) [002] ...1 24573.324891: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
49870           <...>-13131 (-----) [002] ...1 24573.325004: tracing_mark_write: E|13131
49871           <...>-13131 (-----) [002] ...1 24573.325008: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
49872           <...>-13131 (-----) [002] d..2 24573.325017: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13239 next_prio=110
49873           <...>-13239 (-----) [002] d..2 24573.325080: sched_switch: prev_comm=id.nn.benchmark prev_pid=13239 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13240 next_prio=110
49874           <...>-13240 (-----) [002] d..2 24573.325104: sched_switch: prev_comm=id.nn.benchmark prev_pid=13240 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
49875     logd.writer-563   (  555) [002] d..2 24573.325331: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13241 next_prio=110
49876           <...>-13241 (-----) [002] d..2 24573.325384: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
49877           <...>-13241 (-----) [002] d..3 24573.325396: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
49878           <...>-13241 (-----) [002] d..2 24573.325684: sched_switch: prev_comm=id.nn.benchmark prev_pid=13241 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13242 next_prio=110
49879           <...>-13242 (-----) [002] ...1 24573.325706: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
49880           <...>-13242 (-----) [002] ...1 24573.325711: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
49881           <...>-13242 (-----) [002] ...1 24573.325829: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49882           <...>-13242 (-----) [002] ...1 24573.325834: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49883 id.nn.benchmark-13158 (13131) [004] d.s2 24573.327556: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
49884 id.nn.benchmark-13158 (13131) [004] d.s3 24573.327562: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
49885 id.nn.benchmark-13160 (13131) [007] d..2 24573.327569: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
49886  kworker/u16:15-18488 (18488) [007] d..2 24573.327656: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
49887           <...>-13242 (-----) [002] ...1 24573.327861: tracing_mark_write: E|13131
49888           <...>-13242 (-----) [002] ...1 24573.327865: tracing_mark_write: E|13131
49889           <...>-13242 (-----) [002] ...1 24573.327877: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49890           <...>-13242 (-----) [002] ...1 24573.327881: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49891           <...>-13242 (-----) [002] ...1 24573.328574: tracing_mark_write: E|13131
49892           <...>-13242 (-----) [002] ...1 24573.328578: tracing_mark_write: E|13131
49893           <...>-13242 (-----) [002] ...1 24573.328591: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49894           <...>-13242 (-----) [002] ...1 24573.328595: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49895           <...>-13242 (-----) [002] ...1 24573.328924: tracing_mark_write: E|13131
49896           <...>-13242 (-----) [002] ...1 24573.328928: tracing_mark_write: E|13131
49897           <...>-13242 (-----) [002] ...1 24573.328938: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49898           <...>-13242 (-----) [002] ...1 24573.328943: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49899           <...>-13157 (-----) [000] d.h4 24573.329242: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
49900           <...>-13157 (-----) [000] d.h4 24573.329259: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
49901 id.nn.benchmark-13158 (13131) [004] dnh1 24573.329260: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
49902 id.nn.benchmark-13158 (13131) [004] d..2 24573.329264: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
49903           <...>-13157 (-----) [000] d.h5 24573.329269: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
49904  crtc_event:111-254   (  254) [004] d..2 24573.329274: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49905           <...>-13242 (-----) [002] d..2 24573.329279: sched_switch: prev_comm=id.nn.benchmark prev_pid=13242 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
49906 crtc_commit:111-253   (  253) [002] d..2 24573.329404: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13242 next_prio=110
49907           <...>-13242 (-----) [002] ...1 24573.329412: tracing_mark_write: E|13131
49908           <...>-13242 (-----) [002] ...1 24573.329416: tracing_mark_write: E|13131
49909           <...>-13242 (-----) [002] ...1 24573.329426: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49910           <...>-13242 (-----) [002] ...1 24573.329430: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49911           <...>-13242 (-----) [002] ...1 24573.329829: tracing_mark_write: E|13131
49912           <...>-13242 (-----) [002] ...1 24573.329833: tracing_mark_write: E|13131
49913           <...>-13242 (-----) [002] ...1 24573.329844: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49914           <...>-13242 (-----) [002] ...1 24573.329848: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49915           <...>-13242 (-----) [002] ...1 24573.330239: tracing_mark_write: E|13131
49916           <...>-13242 (-----) [002] ...1 24573.330243: tracing_mark_write: E|13131
49917           <...>-13242 (-----) [002] ...1 24573.330260: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49918           <...>-13242 (-----) [002] ...1 24573.330264: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49919           <...>-13242 (-----) [002] ...1 24573.330455: tracing_mark_write: E|13131
49920           <...>-13242 (-----) [002] ...1 24573.330460: tracing_mark_write: E|13131
49921           <...>-13242 (-----) [002] ...1 24573.330473: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49922           <...>-13242 (-----) [002] ...1 24573.330477: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49923           <...>-13242 (-----) [002] ...1 24573.330545: tracing_mark_write: E|13131
49924           <...>-13242 (-----) [002] ...1 24573.330549: tracing_mark_write: E|13131
49925           <...>-13242 (-----) [002] ...1 24573.330559: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
49926           <...>-13242 (-----) [002] ...1 24573.330563: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
49927           <...>-13242 (-----) [002] ...1 24573.330843: tracing_mark_write: E|13131
49928           <...>-13242 (-----) [002] ...1 24573.330846: tracing_mark_write: E|13131
49929           <...>-13242 (-----) [002] ...1 24573.330855: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
49930           <...>-13242 (-----) [002] ...1 24573.330859: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
49931 id.nn.benchmark-13158 (13131) [004] d.s2 24573.330891: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
49932 id.nn.benchmark-13158 (13131) [004] d.s2 24573.330898: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
49933           <...>-13242 (-----) [002] d.s2 24573.330898: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
49934 id.nn.benchmark-13158 (13131) [004] d.s2 24573.330904: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
49935 id.nn.benchmark-13159 (13131) [003] dnh1 24573.330907: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
49936 id.nn.benchmark-13158 (13131) [004] d.s3 24573.330911: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
49937 id.nn.benchmark-13158 (13131) [004] d.s2 24573.330914: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
49938 id.nn.benchmark-13159 (13131) [003] d..2 24573.330914: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
49939           <...>-13242 (-----) [002] dnH2 24573.330916: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
49940 id.nn.benchmark-13160 (13131) [007] d..2 24573.330917: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
49941 id.nn.benchmark-13158 (13131) [004] dns3 24573.330918: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
49942           <...>-13242 (-----) [002] dns1 24573.330919: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
49943 id.nn.benchmark-13158 (13131) [004] dnH2 24573.330921: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
49944     kworker/3:1-12662 (12662) [003] d..2 24573.330932: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
49945 id.nn.benchmark-13158 (13131) [004] d..2 24573.330942: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
49946 id.nn.benchmark-13156 (13131) [006] dnh1 24573.330944: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=006
49947  crtc_event:111-254   (  254) [004] d..2 24573.330973: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/4:0 next_pid=24269 next_prio=120
49948           <...>-13242 (-----) [002] dnH3 24573.330974: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
49949 id.nn.benchmark-13156 (13131) [006] d..2 24573.330974: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
49950           <...>-13242 (-----) [002] dnH3 24573.330981: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
49951           <...>-13154 (-----) [005] dnh1 24573.330984: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
49952           <...>-13154 (-----) [005] d..2 24573.330986: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
49953           <...>-13242 (-----) [002] dnH4 24573.330989: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
49954         sugov:4-560   (  560) [005] d..2 24573.330990: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
49955     rcu_preempt-7     (    7) [006] d..2 24573.330997: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=004
49956           <...>-13157 (-----) [000] d..2 24573.330997: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
49957     kworker/4:0-24269 (24269) [004] d..2 24573.331001: sched_switch: prev_comm=kworker/4:0 prev_pid=24269 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49958           <...>-13242 (-----) [002] d..2 24573.331002: sched_switch: prev_comm=id.nn.benchmark prev_pid=13242 prev_prio=110 prev_state=R ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
49959         sugov:0-559   (  559) [000] d..2 24573.331006: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
49960     rcu_preempt-7     (    7) [006] d..3 24573.331011: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=004
49961     rcu_preempt-7     (    7) [006] d..2 24573.331016: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
49962 id.nn.benchmark-13158 (13131) [004] d..2 24573.331017: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
49963     kworker/2:0-12895 (12895) [002] d..2 24573.331022: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13242 next_prio=110
49964         rcuop/0-10    (   10) [004] d..2 24573.331025: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49965           <...>-13242 (-----) [002] ...1 24573.331050: tracing_mark_write: E|13131
49966           <...>-13242 (-----) [002] ...1 24573.331053: tracing_mark_write: E|13131
49967           <...>-13242 (-----) [002] ...1 24573.331064: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
49968           <...>-13242 (-----) [002] ...1 24573.331068: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
49969           <...>-13242 (-----) [002] ...1 24573.331082: tracing_mark_write: E|13131
49970           <...>-13242 (-----) [002] ...1 24573.331085: tracing_mark_write: E|13131
49971           <...>-13242 (-----) [002] ...1 24573.331094: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
49972           <...>-13242 (-----) [002] ...1 24573.331097: tracing_mark_write: E|13131
49973           <...>-13242 (-----) [002] ...1 24573.331104: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
49974           <...>-13242 (-----) [002] ...1 24573.331108: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
49975  kworker/u16:15-18488 (18488) [007] d..2 24573.331135: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
49976 id.nn.benchmark-13159 (13131) [003] d.s2 24573.331177: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
49977 id.nn.benchmark-13160 (13131) [007] d.h1 24573.331191: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
49978 id.nn.benchmark-13160 (13131) [007] dnh1 24573.331192: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
49979 id.nn.benchmark-13160 (13131) [007] d..2 24573.331195: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
49980  kworker/u16:15-18488 (18488) [007] d..2 24573.331357: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
49981           <...>-13157 (-----) [000] d.h4 24573.331575: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
49982           <...>-13157 (-----) [000] d.h5 24573.331585: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
49983           <...>-13242 (-----) [002] d..2 24573.331595: sched_switch: prev_comm=id.nn.benchmark prev_pid=13242 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
49984 crtc_commit:111-253   (  253) [002] d..2 24573.331644: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13242 next_prio=110
49985           <...>-13157 (-----) [000] d.h4 24573.331876: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
49986 id.nn.benchmark-13158 (13131) [004] dnh1 24573.331887: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
49987 id.nn.benchmark-13158 (13131) [004] d..2 24573.331889: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
49988  crtc_event:111-254   (  254) [004] d..2 24573.331893: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
49989           <...>-13242 (-----) [002] ...1 24573.332020: tracing_mark_write: E|13131
49990           <...>-13242 (-----) [002] ...1 24573.332024: tracing_mark_write: E|13131
49991           <...>-13242 (-----) [002] ...1 24573.332032: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
49992           <...>-13242 (-----) [002] ...1 24573.332036: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
49993           <...>-13242 (-----) [002] ...1 24573.332119: tracing_mark_write: E|13131
49994           <...>-13242 (-----) [002] ...1 24573.332122: tracing_mark_write: E|13131
49995           <...>-13242 (-----) [002] ...1 24573.332171: tracing_mark_write: E|13131
49996           <...>-13242 (-----) [002] d..1 24573.332176: sched_waking: comm=id.nn.benchmark pid=13241 prio=110 target_cpu=002
49997           <...>-13242 (-----) [002] dn.2 24573.332187: sched_wakeup: comm=id.nn.benchmark pid=13241 prio=110 target_cpu=002
49998           <...>-13242 (-----) [002] d..2 24573.332192: sched_switch: prev_comm=id.nn.benchmark prev_pid=13242 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13241 next_prio=110
49999           <...>-13241 (-----) [002] d..2 24573.332205: sched_switch: prev_comm=id.nn.benchmark prev_pid=13241 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13242 next_prio=110
50000           <...>-13242 (-----) [002] ...1 24573.332220: tracing_mark_write: E|13131
50001           <...>-13242 (-----) [002] d..1 24573.332409: sched_waking: comm=id.nn.benchmark pid=13241 prio=110 target_cpu=002
50002           <...>-13242 (-----) [002] dn.2 24573.332418: sched_wakeup: comm=id.nn.benchmark pid=13241 prio=110 target_cpu=002
50003           <...>-13242 (-----) [002] d..2 24573.332422: sched_switch: prev_comm=id.nn.benchmark prev_pid=13242 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13241 next_prio=110
50004           <...>-13241 (-----) [002] d..1 24573.332513: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
50005 id.nn.benchmark-13158 (13131) [004] dnh1 24573.332560: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
50006           <...>-13241 (-----) [002] d.h3 24573.332562: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
50007 id.nn.benchmark-13158 (13131) [004] d..2 24573.332562: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
50008           <...>-13131 (-----) [004] d..2 24573.332567: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50009           <...>-13241 (-----) [002] d.h3 24573.332570: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
50010           <...>-13154 (-----) [005] dnh1 24573.332572: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
50011           <...>-13154 (-----) [005] d..2 24573.332574: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
50012         sugov:4-560   (  560) [005] d..2 24573.332577: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
50013           <...>-13241 (-----) [002] d.h4 24573.332578: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
50014           <...>-13157 (-----) [000] d..2 24573.332587: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
50015         sugov:0-559   (  559) [000] d..2 24573.332594: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
50016           <...>-13241 (-----) [002] d..1 24573.332629: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
50017 id.nn.benchmark-13158 (13131) [004] dnh1 24573.332642: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
50018 id.nn.benchmark-13158 (13131) [004] d..2 24573.332644: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
50019           <...>-13131 (-----) [004] ...1 24573.332659: tracing_mark_write: E|13131
50020           <...>-13131 (-----) [004] ...1 24573.332661: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
50021           <...>-13131 (-----) [004] ...1 24573.332664: tracing_mark_write: E|13131
50022           <...>-13131 (-----) [004] ...1 24573.332665: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
50023           <...>-13241 (-----) [002] d..2 24573.332666: sched_switch: prev_comm=id.nn.benchmark prev_pid=13241 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13242 next_prio=110
50024           <...>-13131 (-----) [004] ...1 24573.332667: tracing_mark_write: E|13131
50025           <...>-13242 (-----) [002] d..2 24573.332686: sched_switch: prev_comm=id.nn.benchmark prev_pid=13242 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
50026           <...>-13131 (-----) [004] ...1 24573.332727: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
50027           <...>-13131 (-----) [004] ...1 24573.332751: tracing_mark_write: E|13131
50028           <...>-13131 (-----) [004] ...1 24573.332753: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
50029           <...>-13131 (-----) [004] ...1 24573.332756: tracing_mark_write: E|13131
50030           <...>-13131 (-----) [004] ...1 24573.332757: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
50031           <...>-13131 (-----) [004] ...1 24573.332759: tracing_mark_write: E|13131
50032           <...>-13131 (-----) [004] ...1 24573.332761: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
50033           <...>-13131 (-----) [004] ...1 24573.332808: tracing_mark_write: E|13131
50034           <...>-13131 (-----) [004] ...1 24573.332809: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
50035           <...>-13131 (-----) [004] d..2 24573.332814: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50036     logd.writer-563   (  555) [002] d..2 24573.333087: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13243 next_prio=110
50037           <...>-13243 (-----) [002] d.h4 24573.333117: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
50038           <...>-13243 (-----) [002] d.h4 24573.333125: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
50039           <...>-13154 (-----) [005] dnh1 24573.333127: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
50040           <...>-13154 (-----) [005] d..2 24573.333129: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
50041         sugov:4-560   (  560) [005] d..2 24573.333132: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
50042           <...>-13243 (-----) [002] dnh5 24573.333136: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
50043           <...>-13243 (-----) [002] d..2 24573.333142: sched_switch: prev_comm=id.nn.benchmark prev_pid=13243 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
50044         sugov:0-559   (  559) [002] d..2 24573.333148: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13243 next_prio=110
50045           <...>-13243 (-----) [002] d..2 24573.333203: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
50046           <...>-13243 (-----) [002] d..3 24573.333213: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
50047           <...>-13243 (-----) [002] d..2 24573.333492: sched_switch: prev_comm=id.nn.benchmark prev_pid=13243 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
50048     logd.writer-563   (  555) [002] d..2 24573.333662: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13244 next_prio=110
50049           <...>-13244 (-----) [002] ...1 24573.333688: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
50050           <...>-13244 (-----) [002] ...1 24573.333693: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
50051           <...>-13244 (-----) [002] d..2 24573.333748: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
50052           <...>-13244 (-----) [002] d..3 24573.333759: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
50053           <...>-13244 (-----) [002] d.h1 24573.333776: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
50054           <...>-13154 (-----) [005] dnh1 24573.333796: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=005
50055           <...>-13154 (-----) [005] d..2 24573.333798: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
50056        DispSync-23904 (23896) [005] d..1 24573.333809: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
50057           <...>-13244 (-----) [002] d.h2 24573.333826: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
50058        DispSync-23904 (23896) [005] d..2 24573.333833: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
50059           <...>-13244 (-----) [002] d.h2 24573.333842: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
50060 id.nn.benchmark-13158 (13131) [004] dnh1 24573.333846: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
50061           <...>-13244 (-----) [002] dnh3 24573.333848: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
50062 id.nn.benchmark-13158 (13131) [004] d..2 24573.333849: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
50063           <...>-13244 (-----) [002] dnh1 24573.333853: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
50064         sugov:4-560   (  560) [004] d..2 24573.333853: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50065           <...>-13244 (-----) [002] d..2 24573.333858: sched_switch: prev_comm=id.nn.benchmark prev_pid=13244 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
50066         sugov:0-559   (  559) [002] d..2 24573.333878: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13244 next_prio=110
50067           <...>-13157 (-----) [000] d..2 24573.333880: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
50068  appEventThread-23905 (23896) [000] d..3 24573.333919: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
50069           <...>-13244 (-----) [002] ...1 24573.333935: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50070 id.nn.benchmark-13156 (13131) [006] dnh1 24573.333939: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
50071           <...>-13244 (-----) [002] ...1 24573.333940: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50072 id.nn.benchmark-13156 (13131) [006] d..2 24573.333942: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
50073  appEventThread-23905 (23896) [000] d..2 24573.333949: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
50074<...>-24151 ( 24151) [006] .... 24573.334131: binder_transaction: transaction=1669896 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
50075<...>-24151 ( 24151) [006] d..4 24573.334136: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
50076<...>-24151 ( 24151) [006] d..5 24573.334146: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
50077 id.nn.benchmark-13158 (13131) [004] d..2 24573.334152: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
50078  Binder:23896_5-25989 (23896) [004] .... 24573.334156: binder_transaction_received: transaction=1669896
50079<...>-24151 ( 24151) [006] d..3 24573.334166: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
50080  Binder:23896_5-25989 (23896) [004] d..1 24573.334175: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
50081<...>-24151 ( 24151) [006] d..4 24573.334178: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
50082 id.nn.benchmark-13160 (13131) [007] d..2 24573.334184: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
50083           <...>-13157 (-----) [000] dnh1 24573.334186: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
50084           <...>-13157 (-----) [000] d..2 24573.334191: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
50085  Binder:23896_5-25989 (23896) [004] d..2 24573.334192: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50086    RenderThread-24437 (24151) [007] d..2 24573.334199: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
50087  appEventThread-23905 (23896) [000] d..2 24573.334207: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
50088<...>-24151 ( 24151) [006] d..3 24573.334253: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
50089<...>-24151 ( 24151) [006] d..4 24573.334261: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
50090<...>-24151 ( 24151) [006] d..2 24573.334267: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
50091 id.nn.benchmark-13160 (13131) [007] d..2 24573.334268: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
50092    RenderThread-24437 (24151) [007] d..1 24573.334319: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
50093    RenderThread-24437 (24151) [007] d..2 24573.334327: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
50094 id.nn.benchmark-13156 (13131) [006] d..2 24573.334333: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
50095<...>-24151 ( 24151) [006] d..2 24573.334354: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
50096    RenderThread-24437 (24151) [007] .... 24573.334358: binder_transaction: transaction=1669897 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
50097    RenderThread-24437 (24151) [007] d..4 24573.334360: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
50098    RenderThread-24437 (24151) [007] d..5 24573.334368: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
50099    RenderThread-24437 (24151) [007] d..2 24573.334372: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
50100 id.nn.benchmark-13158 (13131) [004] d..2 24573.334374: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
50101  Binder:23896_5-25989 (23896) [004] .... 24573.334376: binder_transaction_received: transaction=1669897
50102  Binder:23896_5-25989 (23896) [004] .... 24573.334402: binder_transaction: transaction=1669898 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
50103  Binder:23896_5-25989 (23896) [004] d..2 24573.334406: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
50104  Binder:23896_5-25989 (23896) [004] d..3 24573.334417: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
50105 id.nn.benchmark-13156 (13131) [006] d..2 24573.334424: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
50106    RenderThread-24437 (24151) [006] .... 24573.334426: binder_transaction_received: transaction=1669898
50107  Binder:23896_5-25989 (23896) [004] d..2 24573.334426: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50108    RenderThread-24437 (24151) [006] d..2 24573.335025: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
50109 id.nn.benchmark-13156 (13131) [006] d.h1 24573.335123: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
50110 id.nn.benchmark-13156 (13131) [006] d.h2 24573.335128: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
50111 id.nn.benchmark-13156 (13131) [006] dnh2 24573.335130: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
50112 id.nn.benchmark-13156 (13131) [006] d..2 24573.335134: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
50113    RenderThread-24437 (24151) [006] .... 24573.335210: binder_transaction: transaction=1669899 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
50114    RenderThread-24437 (24151) [006] d..4 24573.335214: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
50115    RenderThread-24437 (24151) [006] d..5 24573.335223: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
50116    RenderThread-24437 (24151) [006] d..2 24573.335227: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
50117 id.nn.benchmark-13158 (13131) [004] d..2 24573.335229: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
50118  Binder:23896_5-25989 (23896) [004] .... 24573.335230: binder_transaction_received: transaction=1669899
50119           <...>-13157 (-----) [000] d.h2 24573.335251: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
50120           <...>-13154 (-----) [005] dnh1 24573.335273: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
50121           <...>-13154 (-----) [005] d..2 24573.335275: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
50122  Binder:23896_5-25989 (23896) [004] .... 24573.335280: binder_transaction: transaction=1669900 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
50123  Binder:23896_5-25989 (23896) [004] d..2 24573.335281: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
50124 kgsl_worker_thr-246   (  246) [005] d..2 24573.335298: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
50125           <...>-13157 (-----) [000] d.h2 24573.335304: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
50126  Binder:23896_5-25989 (23896) [004] d..3 24573.335308: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
50127 kgsl_worker_thr-246   (  246) [005] d..3 24573.335309: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
50128           <...>-13157 (-----) [000] d.h2 24573.335311: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
50129 id.nn.benchmark-13156 (13131) [006] d..2 24573.335315: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
50130  Binder:23896_5-25989 (23896) [004] dnh1 24573.335315: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
50131 id.nn.benchmark-13160 (13131) [007] d..2 24573.335316: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
50132    RenderThread-24437 (24151) [006] .... 24573.335316: binder_transaction_received: transaction=1669900
50133 kgsl_worker_thr-246   (  246) [005] d..2 24573.335317: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
50134  Binder:23896_5-25989 (23896) [004] d..2 24573.335319: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
50135           <...>-13157 (-----) [000] d.h3 24573.335319: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
50136         sugov:4-560   (  560) [004] d..2 24573.335323: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
50137  Binder:23896_5-25989 (23896) [004] d..2 24573.335328: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50138           <...>-13244 (-----) [002] d..2 24573.335329: sched_switch: prev_comm=id.nn.benchmark prev_pid=13244 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
50139  kworker/u16:15-18488 (18488) [007] d..2 24573.335333: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
50140    RenderThread-24437 (24151) [006] d..2 24573.335337: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
50141         sugov:0-559   (  559) [002] d..2 24573.335338: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13244 next_prio=110
50142           <...>-13244 (-----) [002] ...1 24573.335943: tracing_mark_write: E|13131
50143           <...>-13244 (-----) [002] ...1 24573.335948: tracing_mark_write: E|13131
50144           <...>-13244 (-----) [002] ...1 24573.335962: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50145           <...>-13244 (-----) [002] ...1 24573.335966: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50146           <...>-13244 (-----) [002] ...1 24573.336663: tracing_mark_write: E|13131
50147           <...>-13244 (-----) [002] ...1 24573.336667: tracing_mark_write: E|13131
50148           <...>-13244 (-----) [002] ...1 24573.336682: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50149           <...>-13244 (-----) [002] ...1 24573.336686: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50150           <...>-13244 (-----) [002] ...1 24573.337016: tracing_mark_write: E|13131
50151           <...>-13244 (-----) [002] ...1 24573.337020: tracing_mark_write: E|13131
50152           <...>-13244 (-----) [002] ...1 24573.337030: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50153           <...>-13244 (-----) [002] ...1 24573.337034: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50154           <...>-13244 (-----) [002] ...1 24573.337264: tracing_mark_write: E|13131
50155           <...>-13244 (-----) [002] ...1 24573.337267: tracing_mark_write: E|13131
50156           <...>-13244 (-----) [002] ...1 24573.337278: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50157           <...>-13244 (-----) [002] ...1 24573.337282: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50158 id.nn.benchmark-13156 (13131) [006] d.s1 24573.337559: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=006
50159 id.nn.benchmark-13158 (13131) [004] d.s2 24573.337561: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
50160 id.nn.benchmark-13158 (13131) [004] d.s3 24573.337583: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
50161 id.nn.benchmark-13160 (13131) [007] d..2 24573.337590: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
50162 id.nn.benchmark-13156 (13131) [006] d.s2 24573.337592: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
50163           <...>-13154 (-----) [005] d.H2 24573.337593: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
50164           <...>-13154 (-----) [005] d.H3 24573.337599: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
50165           <...>-13154 (-----) [005] d.H2 24573.337599: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
50166 id.nn.benchmark-13158 (13131) [004] d..2 24573.337605: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
50167         sugov:4-560   (  560) [004] d..2 24573.337610: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50168           <...>-13244 (-----) [002] dnh1 24573.337611: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
50169           <...>-13244 (-----) [002] d..2 24573.337617: sched_switch: prev_comm=id.nn.benchmark prev_pid=13244 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
50170         sugov:0-559   (  559) [002] d..2 24573.337625: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13244 next_prio=110
50171  kworker/u16:15-18488 (18488) [007] d..2 24573.337688: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
50172     rcu_preempt-7     (    7) [007] d..2 24573.337691: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
50173     rcu_preempt-7     (    7) [007] d..3 24573.337705: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=006
50174 id.nn.benchmark-13156 (13131) [006] d..2 24573.337722: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
50175     rcu_preempt-7     (    7) [007] d..2 24573.337724: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
50176         rcuop/2-29    (   29) [006] d..2 24573.337743: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
50177           <...>-13244 (-----) [002] ...1 24573.337749: tracing_mark_write: E|13131
50178           <...>-13244 (-----) [002] ...1 24573.337752: tracing_mark_write: E|13131
50179           <...>-13244 (-----) [002] ...1 24573.337762: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50180           <...>-13154 (-----) [005] d.h1 24573.337763: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=005
50181           <...>-13244 (-----) [002] ...1 24573.337766: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50182           <...>-13154 (-----) [005] dnh2 24573.337766: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=005
50183           <...>-13154 (-----) [005] d..2 24573.337770: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
50184        DispSync-23904 (23896) [005] d..1 24573.337777: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
50185        DispSync-23904 (23896) [005] d..2 24573.337788: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
50186 id.nn.benchmark-13155 (13131) [001] dnh1 24573.337789: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
50187 id.nn.benchmark-13155 (13131) [001] d..2 24573.337796: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
50188   sfEventThread-23906 (23896) [001] d..3 24573.337827: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
50189   sfEventThread-23906 (23896) [001] d..4 24573.337839: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
50190           <...>-13157 (-----) [000] d..2 24573.337848: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
50191   sfEventThread-23906 (23896) [001] d..2 24573.337853: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
50192  surfaceflinger-23896 (23896) [000] d..1 24573.338095: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
50193  surfaceflinger-23896 (23896) [000] d..2 24573.338107: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
50194 id.nn.benchmark-13155 (13131) [001] d..2 24573.338115: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
50195   sfEventThread-23906 (23896) [001] d..2 24573.338131: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
50196  surfaceflinger-23896 (23896) [000] ...1 24573.338234: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
50197  surfaceflinger-23896 (23896) [000] ...1 24573.338238: tracing_mark_write: E|23896
50198  surfaceflinger-23896 (23896) [000] .... 24573.338285: binder_transaction: transaction=1669901 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
50199  surfaceflinger-23896 (23896) [000] ...2 24573.338307: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
50200  surfaceflinger-23896 (23896) [000] d..4 24573.338313: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
50201 id.nn.benchmark-13158 (13131) [004] dnh1 24573.338328: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
50202 id.nn.benchmark-13158 (13131) [004] d..2 24573.338331: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
50203  surfaceflinger-23896 (23896) [000] d..2 24573.338335: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
50204  HwBinder:598_3-633   (  598) [004] .... 24573.338335: binder_transaction_received: transaction=1669901
50205  HwBinder:598_3-633   (  598) [004] ...1 24573.338360: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
50206  HwBinder:598_3-633   (  598) [004] ...1 24573.338410: tracing_mark_write: B|598|HWCSession::PresentDisplay::
50207  HwBinder:598_3-633   (  598) [004] ...1 24573.338473: tracing_mark_write: B|598|HWDeviceDRM::Commit::
50208  HwBinder:598_3-633   (  598) [004] ...1 24573.338477: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
50209           <...>-13244 (-----) [002] ...1 24573.338590: tracing_mark_write: E|13131
50210           <...>-13244 (-----) [002] ...1 24573.338594: tracing_mark_write: E|13131
50211           <...>-13244 (-----) [002] ...1 24573.338611: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50212           <...>-13244 (-----) [002] ...1 24573.338615: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50213  HwBinder:598_3-633   (  598) [004] d..2 24573.338677: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
50214           <...>-13244 (-----) [002] dnh1 24573.338692: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
50215           <...>-13244 (-----) [002] d..2 24573.338699: sched_switch: prev_comm=id.nn.benchmark prev_pid=13244 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
50216  HwBinder:598_3-633   (  598) [004] ...1 24573.338713: tracing_mark_write: E|598
50217  HwBinder:598_3-633   (  598) [004] ...1 24573.338714: tracing_mark_write: E|598
50218  HwBinder:598_3-633   (  598) [004] ...1 24573.338736: tracing_mark_write: E|598
50219  HwBinder:598_3-633   (  598) [004] ...1 24573.338757: tracing_mark_write: E|598
50220  HwBinder:598_3-633   (  598) [004] .... 24573.338762: binder_transaction: transaction=1669902 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
50221  HwBinder:598_3-633   (  598) [004] d..2 24573.338767: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
50222  HwBinder:598_3-633   (  598) [004] .... 24573.338774: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
50223           <...>-13157 (-----) [000] dnh1 24573.338780: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
50224           <...>-13157 (-----) [000] d..2 24573.338786: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
50225  surfaceflinger-23896 (23896) [000] .... 24573.338791: binder_transaction_received: transaction=1669902
50226  HwBinder:598_3-633   (  598) [004] d..2 24573.338795: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50227  surfaceflinger-23896 (23896) [000] d..2 24573.339037: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
50228 crtc_commit:111-253   (  253) [002] d..2 24573.339308: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13244 next_prio=110
50229           <...>-13244 (-----) [002] ...1 24573.339430: tracing_mark_write: E|13131
50230           <...>-13244 (-----) [002] ...1 24573.339434: tracing_mark_write: E|13131
50231           <...>-13244 (-----) [002] ...1 24573.339449: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50232           <...>-13244 (-----) [002] ...1 24573.339453: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50233           <...>-13244 (-----) [002] ...1 24573.339526: tracing_mark_write: E|13131
50234           <...>-13244 (-----) [002] ...1 24573.339529: tracing_mark_write: E|13131
50235           <...>-13244 (-----) [002] ...1 24573.339540: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
50236           <...>-13244 (-----) [002] ...1 24573.339545: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
50237           <...>-13244 (-----) [002] ...1 24573.339850: tracing_mark_write: E|13131
50238           <...>-13244 (-----) [002] ...1 24573.339853: tracing_mark_write: E|13131
50239           <...>-13244 (-----) [002] ...1 24573.339863: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
50240           <...>-13244 (-----) [002] ...1 24573.339867: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
50241           <...>-13244 (-----) [002] ...1 24573.339920: tracing_mark_write: E|13131
50242           <...>-13244 (-----) [002] ...1 24573.339922: tracing_mark_write: E|13131
50243           <...>-13244 (-----) [002] ...1 24573.339931: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
50244           <...>-13244 (-----) [002] ...1 24573.339934: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
50245           <...>-13244 (-----) [002] ...1 24573.339952: tracing_mark_write: E|13131
50246           <...>-13244 (-----) [002] ...1 24573.339955: tracing_mark_write: E|13131
50247           <...>-13244 (-----) [002] ...1 24573.339965: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
50248           <...>-13244 (-----) [002] ...1 24573.339968: tracing_mark_write: E|13131
50249           <...>-13244 (-----) [002] ...1 24573.339978: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
50250           <...>-13244 (-----) [002] ...1 24573.339983: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
50251           <...>-13244 (-----) [002] ...1 24573.340836: tracing_mark_write: E|13131
50252           <...>-13244 (-----) [002] ...1 24573.340838: tracing_mark_write: E|13131
50253           <...>-13244 (-----) [002] ...1 24573.340846: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50254           <...>-13244 (-----) [002] ...1 24573.340850: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50255 id.nn.benchmark-13158 (13131) [004] d.s2 24573.340892: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
50256 id.nn.benchmark-13158 (13131) [004] d.s3 24573.340900: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
50257 id.nn.benchmark-13160 (13131) [007] d..2 24573.340902: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
50258  kworker/u16:15-18488 (18488) [007] d..2 24573.341209: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
50259           <...>-13244 (-----) [002] ...1 24573.341215: tracing_mark_write: E|13131
50260           <...>-13244 (-----) [002] ...1 24573.341219: tracing_mark_write: E|13131
50261 id.nn.benchmark-13159 (13131) [003] d.s2 24573.341249: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
50262 id.nn.benchmark-13160 (13131) [007] d.h1 24573.341262: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
50263 id.nn.benchmark-13160 (13131) [007] dnh1 24573.341264: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
50264 id.nn.benchmark-13160 (13131) [007] d..2 24573.341266: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
50265  kworker/u16:15-18488 (18488) [007] d..2 24573.341270: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
50266           <...>-13244 (-----) [002] ...1 24573.341284: tracing_mark_write: E|13131
50267           <...>-13244 (-----) [002] d..1 24573.341289: sched_waking: comm=id.nn.benchmark pid=13243 prio=110 target_cpu=002
50268           <...>-13244 (-----) [002] dn.2 24573.341302: sched_wakeup: comm=id.nn.benchmark pid=13243 prio=110 target_cpu=002
50269           <...>-13244 (-----) [002] d..2 24573.341307: sched_switch: prev_comm=id.nn.benchmark prev_pid=13244 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13243 next_prio=110
50270           <...>-13243 (-----) [002] d..2 24573.341321: sched_switch: prev_comm=id.nn.benchmark prev_pid=13243 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13244 next_prio=110
50271           <...>-13244 (-----) [002] ...1 24573.341337: tracing_mark_write: E|13131
50272           <...>-13244 (-----) [002] d..1 24573.341552: sched_waking: comm=id.nn.benchmark pid=13243 prio=110 target_cpu=002
50273           <...>-13244 (-----) [002] dn.2 24573.341561: sched_wakeup: comm=id.nn.benchmark pid=13243 prio=110 target_cpu=002
50274           <...>-13244 (-----) [002] d..2 24573.341566: sched_switch: prev_comm=id.nn.benchmark prev_pid=13244 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13243 next_prio=110
50275           <...>-13243 (-----) [002] d..1 24573.341664: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
50276 id.nn.benchmark-13158 (13131) [004] dnh1 24573.341680: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
50277 id.nn.benchmark-13158 (13131) [004] d..2 24573.341683: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
50278           <...>-13131 (-----) [004] d..2 24573.341690: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50279           <...>-13243 (-----) [002] d..1 24573.341730: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
50280 id.nn.benchmark-13158 (13131) [004] dnh1 24573.341743: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
50281 id.nn.benchmark-13158 (13131) [004] d..2 24573.341745: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
50282           <...>-13131 (-----) [004] ...1 24573.341760: tracing_mark_write: E|13131
50283           <...>-13131 (-----) [004] ...1 24573.341762: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
50284           <...>-13131 (-----) [004] ...1 24573.341765: tracing_mark_write: E|13131
50285           <...>-13131 (-----) [004] ...1 24573.341766: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
50286           <...>-13131 (-----) [004] ...1 24573.341769: tracing_mark_write: E|13131
50287           <...>-13243 (-----) [002] d..2 24573.341802: sched_switch: prev_comm=id.nn.benchmark prev_pid=13243 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13244 next_prio=110
50288           <...>-13244 (-----) [002] d..2 24573.341826: sched_switch: prev_comm=id.nn.benchmark prev_pid=13244 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
50289           <...>-13131 (-----) [004] ...1 24573.341831: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
50290           <...>-13131 (-----) [004] ...1 24573.341856: tracing_mark_write: E|13131
50291           <...>-13131 (-----) [004] ...1 24573.341858: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
50292           <...>-13131 (-----) [004] ...1 24573.341861: tracing_mark_write: E|13131
50293           <...>-13131 (-----) [004] ...1 24573.341862: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
50294           <...>-13131 (-----) [004] ...1 24573.341864: tracing_mark_write: E|13131
50295           <...>-13131 (-----) [004] ...1 24573.341866: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
50296           <...>-13131 (-----) [004] ...1 24573.341926: tracing_mark_write: E|13131
50297           <...>-13131 (-----) [004] ...1 24573.341927: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
50298           <...>-13131 (-----) [004] d..2 24573.341932: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50299     logd.writer-563   (  555) [002] d..2 24573.342075: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13245 next_prio=110
50300           <...>-13245 (-----) [002] d.h4 24573.342108: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
50301           <...>-13245 (-----) [002] d.h4 24573.342116: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
50302 id.nn.benchmark-13158 (13131) [004] dnh1 24573.342119: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
50303           <...>-13245 (-----) [002] dnh5 24573.342122: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
50304 id.nn.benchmark-13158 (13131) [004] d..2 24573.342122: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
50305         sugov:4-560   (  560) [004] d..2 24573.342126: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50306           <...>-13245 (-----) [002] d..2 24573.342128: sched_switch: prev_comm=id.nn.benchmark prev_pid=13245 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
50307         sugov:0-559   (  559) [002] d..2 24573.342135: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13245 next_prio=110
50308           <...>-13245 (-----) [002] d..2 24573.342190: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
50309           <...>-13245 (-----) [002] d..3 24573.342201: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
50310           <...>-13245 (-----) [002] d..2 24573.342487: sched_switch: prev_comm=id.nn.benchmark prev_pid=13245 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
50311     logd.writer-563   (  555) [002] d..2 24573.342654: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13246 next_prio=110
50312           <...>-13246 (-----) [002] ...1 24573.342680: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
50313           <...>-13246 (-----) [002] ...1 24573.342685: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
50314           <...>-13246 (-----) [002] d..2 24573.342741: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
50315           <...>-13246 (-----) [002] d..3 24573.342751: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
50316           <...>-13246 (-----) [002] ...1 24573.342815: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50317           <...>-13246 (-----) [002] ...1 24573.342820: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50318 id.nn.benchmark-13160 (13131) [007] d.s1 24573.344221: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
50319 id.nn.benchmark-13160 (13131) [007] dns2 24573.344225: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
50320 id.nn.benchmark-13160 (13131) [007] d..2 24573.344227: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
50321     rcu_preempt-7     (    7) [007] d..2 24573.344232: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
50322           <...>-13246 (-----) [002] ...1 24573.344814: tracing_mark_write: E|13131
50323           <...>-13246 (-----) [002] ...1 24573.344818: tracing_mark_write: E|13131
50324           <...>-13246 (-----) [002] ...1 24573.344829: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50325           <...>-13246 (-----) [002] ...1 24573.344833: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50326           <...>-13246 (-----) [002] ...1 24573.345531: tracing_mark_write: E|13131
50327           <...>-13246 (-----) [002] ...1 24573.345535: tracing_mark_write: E|13131
50328           <...>-13246 (-----) [002] ...1 24573.345549: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50329           <...>-13246 (-----) [002] ...1 24573.345553: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50330           <...>-13157 (-----) [000] d.h4 24573.345713: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
50331           <...>-13157 (-----) [000] d.h4 24573.345729: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
50332 id.nn.benchmark-13158 (13131) [004] dnh1 24573.345730: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
50333 id.nn.benchmark-13158 (13131) [004] d..2 24573.345733: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
50334           <...>-13157 (-----) [000] d.h5 24573.345738: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
50335  crtc_event:111-254   (  254) [004] d..2 24573.345743: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50336           <...>-13246 (-----) [002] d..2 24573.345749: sched_switch: prev_comm=id.nn.benchmark prev_pid=13246 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
50337 crtc_commit:111-253   (  253) [002] d..2 24573.345869: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13246 next_prio=110
50338           <...>-13246 (-----) [002] ...1 24573.346016: tracing_mark_write: E|13131
50339           <...>-13246 (-----) [002] ...1 24573.346020: tracing_mark_write: E|13131
50340           <...>-13246 (-----) [002] ...1 24573.346031: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50341           <...>-13246 (-----) [002] ...1 24573.346035: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50342           <...>-13246 (-----) [002] ...1 24573.346269: tracing_mark_write: E|13131
50343           <...>-13246 (-----) [002] ...1 24573.346273: tracing_mark_write: E|13131
50344           <...>-13246 (-----) [002] ...1 24573.346283: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50345           <...>-13246 (-----) [002] ...1 24573.346288: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50346           <...>-13246 (-----) [002] ...1 24573.346683: tracing_mark_write: E|13131
50347           <...>-13246 (-----) [002] ...1 24573.346686: tracing_mark_write: E|13131
50348           <...>-13246 (-----) [002] ...1 24573.346697: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50349           <...>-13246 (-----) [002] ...1 24573.346702: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50350           <...>-13246 (-----) [002] ...1 24573.347086: tracing_mark_write: E|13131
50351           <...>-13246 (-----) [002] ...1 24573.347090: tracing_mark_write: E|13131
50352           <...>-13246 (-----) [002] ...1 24573.347108: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50353           <...>-13246 (-----) [002] ...1 24573.347112: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50354           <...>-13246 (-----) [002] ...1 24573.347303: tracing_mark_write: E|13131
50355           <...>-13246 (-----) [002] ...1 24573.347306: tracing_mark_write: E|13131
50356           <...>-13246 (-----) [002] ...1 24573.347319: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50357           <...>-13246 (-----) [002] ...1 24573.347323: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50358           <...>-13246 (-----) [002] ...1 24573.347393: tracing_mark_write: E|13131
50359           <...>-13246 (-----) [002] ...1 24573.347396: tracing_mark_write: E|13131
50360           <...>-13246 (-----) [002] ...1 24573.347406: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
50361           <...>-13246 (-----) [002] ...1 24573.347411: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
50362 id.nn.benchmark-13158 (13131) [004] d.s2 24573.347557: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
50363 id.nn.benchmark-13158 (13131) [004] d.s3 24573.347565: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
50364           <...>-13246 (-----) [002] d.s2 24573.347566: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
50365           <...>-13157 (-----) [000] d.s2 24573.347566: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
50366 id.nn.benchmark-13160 (13131) [007] d..2 24573.347572: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
50367 id.nn.benchmark-13158 (13131) [004] dnh1 24573.347579: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
50368 id.nn.benchmark-13158 (13131) [004] d..2 24573.347581: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
50369  crtc_event:111-254   (  254) [004] d..2 24573.347589: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50370 id.nn.benchmark-13156 (13131) [006] dnh1 24573.347589: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=006
50371 id.nn.benchmark-13156 (13131) [006] d..2 24573.347592: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
50372     rcu_preempt-7     (    7) [006] d..2 24573.347595: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=004
50373     rcu_preempt-7     (    7) [006] d..3 24573.347610: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=004
50374     rcu_preempt-7     (    7) [006] d..2 24573.347614: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
50375 id.nn.benchmark-13158 (13131) [004] d..2 24573.347616: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
50376         rcuop/0-10    (   10) [004] d..2 24573.347623: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50377  kworker/u16:15-18488 (18488) [007] d..2 24573.347668: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
50378           <...>-13246 (-----) [002] ...1 24573.347717: tracing_mark_write: E|13131
50379           <...>-13246 (-----) [002] ...1 24573.347721: tracing_mark_write: E|13131
50380           <...>-13246 (-----) [002] ...1 24573.347730: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
50381           <...>-13246 (-----) [002] ...1 24573.347735: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
50382           <...>-13246 (-----) [002] ...1 24573.347781: tracing_mark_write: E|13131
50383           <...>-13246 (-----) [002] ...1 24573.347784: tracing_mark_write: E|13131
50384           <...>-13246 (-----) [002] ...1 24573.347792: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
50385           <...>-13246 (-----) [002] ...1 24573.347796: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
50386           <...>-13246 (-----) [002] ...1 24573.347813: tracing_mark_write: E|13131
50387           <...>-13246 (-----) [002] ...1 24573.347816: tracing_mark_write: E|13131
50388           <...>-13246 (-----) [002] ...1 24573.347825: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
50389           <...>-13246 (-----) [002] ...1 24573.347828: tracing_mark_write: E|13131
50390           <...>-13246 (-----) [002] ...1 24573.347837: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
50391           <...>-13246 (-----) [002] ...1 24573.347843: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
50392           <...>-13157 (-----) [000] d.h4 24573.348044: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
50393           <...>-13157 (-----) [000] d.h5 24573.348054: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
50394           <...>-13246 (-----) [002] d..2 24573.348064: sched_switch: prev_comm=id.nn.benchmark prev_pid=13246 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
50395 crtc_commit:111-253   (  253) [002] d..2 24573.348113: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13246 next_prio=110
50396           <...>-13157 (-----) [000] d.h4 24573.348346: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
50397 id.nn.benchmark-13158 (13131) [004] dnh1 24573.348358: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
50398 id.nn.benchmark-13158 (13131) [004] d..2 24573.348360: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
50399  crtc_event:111-254   (  254) [004] d..2 24573.348364: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50400           <...>-13246 (-----) [002] ...1 24573.348757: tracing_mark_write: E|13131
50401           <...>-13246 (-----) [002] ...1 24573.348760: tracing_mark_write: E|13131
50402           <...>-13246 (-----) [002] ...1 24573.348769: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50403           <...>-13246 (-----) [002] ...1 24573.348773: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50404           <...>-13246 (-----) [002] ...1 24573.348855: tracing_mark_write: E|13131
50405           <...>-13246 (-----) [002] ...1 24573.348858: tracing_mark_write: E|13131
50406           <...>-13246 (-----) [002] ...1 24573.348905: tracing_mark_write: E|13131
50407           <...>-13246 (-----) [002] d..1 24573.348909: sched_waking: comm=id.nn.benchmark pid=13245 prio=110 target_cpu=002
50408           <...>-13246 (-----) [002] dn.2 24573.348921: sched_wakeup: comm=id.nn.benchmark pid=13245 prio=110 target_cpu=002
50409           <...>-13246 (-----) [002] d..2 24573.348927: sched_switch: prev_comm=id.nn.benchmark prev_pid=13246 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13245 next_prio=110
50410           <...>-13245 (-----) [002] d..2 24573.348939: sched_switch: prev_comm=id.nn.benchmark prev_pid=13245 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13246 next_prio=110
50411           <...>-13246 (-----) [002] ...1 24573.348954: tracing_mark_write: E|13131
50412           <...>-13246 (-----) [002] d..1 24573.349138: sched_waking: comm=id.nn.benchmark pid=13245 prio=110 target_cpu=002
50413           <...>-13246 (-----) [002] dn.2 24573.349147: sched_wakeup: comm=id.nn.benchmark pid=13245 prio=110 target_cpu=002
50414           <...>-13246 (-----) [002] d..2 24573.349151: sched_switch: prev_comm=id.nn.benchmark prev_pid=13246 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13245 next_prio=110
50415           <...>-13245 (-----) [002] d..1 24573.349238: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
50416 id.nn.benchmark-13158 (13131) [004] dnh1 24573.349253: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
50417 id.nn.benchmark-13158 (13131) [004] d..2 24573.349255: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
50418           <...>-13131 (-----) [004] d..2 24573.349260: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50419           <...>-13245 (-----) [002] d..1 24573.349298: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
50420 id.nn.benchmark-13158 (13131) [004] dnh1 24573.349310: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
50421 id.nn.benchmark-13158 (13131) [004] d..2 24573.349312: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
50422           <...>-13131 (-----) [004] ...1 24573.349324: tracing_mark_write: E|13131
50423           <...>-13131 (-----) [004] ...1 24573.349326: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
50424           <...>-13131 (-----) [004] ...1 24573.349328: tracing_mark_write: E|13131
50425           <...>-13131 (-----) [004] ...1 24573.349330: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
50426           <...>-13131 (-----) [004] ...1 24573.349331: tracing_mark_write: E|13131
50427           <...>-13245 (-----) [002] d..2 24573.349354: sched_switch: prev_comm=id.nn.benchmark prev_pid=13245 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13246 next_prio=110
50428           <...>-13246 (-----) [002] d..2 24573.349374: sched_switch: prev_comm=id.nn.benchmark prev_pid=13246 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
50429           <...>-13131 (-----) [004] ...1 24573.349389: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
50430           <...>-13131 (-----) [004] ...1 24573.349412: tracing_mark_write: E|13131
50431           <...>-13131 (-----) [004] ...1 24573.349414: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
50432           <...>-13131 (-----) [004] ...1 24573.349416: tracing_mark_write: E|13131
50433           <...>-13131 (-----) [004] ...1 24573.349417: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
50434           <...>-13131 (-----) [004] ...1 24573.349419: tracing_mark_write: E|13131
50435           <...>-13131 (-----) [004] ...1 24573.349420: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
50436           <...>-13131 (-----) [004] ...1 24573.349464: tracing_mark_write: E|13131
50437           <...>-13131 (-----) [004] ...1 24573.349465: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
50438           <...>-13131 (-----) [004] d..2 24573.349470: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50439     logd.writer-563   (  555) [002] d..2 24573.349582: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13247 next_prio=110
50440           <...>-13247 (-----) [002] d.h4 24573.349618: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
50441           <...>-13247 (-----) [002] d.h4 24573.349626: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
50442 id.nn.benchmark-13158 (13131) [004] dnh1 24573.349630: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
50443           <...>-13247 (-----) [002] dnh5 24573.349632: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
50444 id.nn.benchmark-13158 (13131) [004] d..2 24573.349633: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
50445           <...>-13247 (-----) [002] d..2 24573.349638: sched_switch: prev_comm=id.nn.benchmark prev_pid=13247 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
50446         sugov:4-560   (  560) [004] d..2 24573.349638: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50447         sugov:0-559   (  559) [002] d..2 24573.349645: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13247 next_prio=110
50448           <...>-13247 (-----) [002] d..2 24573.349699: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
50449           <...>-13247 (-----) [002] d..3 24573.349709: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
50450           <...>-13247 (-----) [002] d..2 24573.349985: sched_switch: prev_comm=id.nn.benchmark prev_pid=13247 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
50451     logd.writer-563   (  555) [002] d..2 24573.350143: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13248 next_prio=110
50452           <...>-13248 (-----) [002] ...1 24573.350168: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
50453           <...>-13248 (-----) [002] ...1 24573.350173: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
50454           <...>-13154 (-----) [005] d.h1 24573.350221: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=005
50455           <...>-13248 (-----) [002] d..2 24573.350225: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
50456           <...>-13154 (-----) [005] d.h2 24573.350251: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
50457           <...>-13248 (-----) [002] d..3 24573.350253: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
50458           <...>-13154 (-----) [005] d.h3 24573.350256: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
50459           <...>-13154 (-----) [005] d.h2 24573.350257: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
50460           <...>-13248 (-----) [002] dnh2 24573.350259: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
50461 id.nn.benchmark-13158 (13131) [004] d..2 24573.350262: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
50462         sugov:4-560   (  560) [004] d..2 24573.350265: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50463           <...>-13248 (-----) [002] d..2 24573.350269: sched_switch: prev_comm=id.nn.benchmark prev_pid=13248 prev_prio=110 prev_state=R+ ==> next_comm=DispSync next_pid=23904 next_prio=97
50464           <...>-13157 (-----) [000] dnh1 24573.350273: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
50465           <...>-13157 (-----) [000] d..2 24573.350279: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
50466         sugov:0-559   (  559) [000] d..2 24573.350288: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
50467        DispSync-23904 (23896) [002] d..1 24573.350288: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
50468        DispSync-23904 (23896) [002] d..2 24573.350301: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
50469           <...>-13157 (-----) [000] d..2 24573.350308: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
50470        DispSync-23904 (23896) [002] d..2 24573.350316: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13248 next_prio=110
50471  appEventThread-23905 (23896) [000] d..3 24573.350346: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
50472 id.nn.benchmark-13156 (13131) [006] dnh1 24573.350363: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
50473 id.nn.benchmark-13156 (13131) [006] d..2 24573.350365: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
50474  appEventThread-23905 (23896) [000] d..2 24573.350371: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
50475           <...>-13248 (-----) [002] ...1 24573.350386: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50476           <...>-13248 (-----) [002] ...1 24573.350391: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50477<...>-24151 ( 24151) [006] .... 24573.350561: binder_transaction: transaction=1669903 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
50478<...>-24151 ( 24151) [006] d..4 24573.350567: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
50479<...>-24151 ( 24151) [006] d..5 24573.350577: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
50480 id.nn.benchmark-13158 (13131) [004] d..2 24573.350583: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
50481  Binder:23896_5-25989 (23896) [004] .... 24573.350586: binder_transaction_received: transaction=1669903
50482<...>-24151 ( 24151) [006] d..3 24573.350597: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
50483<...>-24151 ( 24151) [006] d..4 24573.350603: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
50484  Binder:23896_5-25989 (23896) [004] d..1 24573.350605: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
50485           <...>-13157 (-----) [000] dnh1 24573.350617: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
50486           <...>-13157 (-----) [000] d..2 24573.350622: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
50487  Binder:23896_5-25989 (23896) [004] d..2 24573.350622: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50488  appEventThread-23905 (23896) [000] d..2 24573.350638: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
50489<...>-24151 ( 24151) [006] d..2 24573.350669: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
50490    RenderThread-24437 (24151) [006] d..1 24573.350724: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
50491    RenderThread-24437 (24151) [006] d..2 24573.350735: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
50492 id.nn.benchmark-13160 (13131) [007] d..2 24573.350741: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
50493    RenderThread-24437 (24151) [006] .... 24573.350766: binder_transaction: transaction=1669904 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
50494    RenderThread-24437 (24151) [006] d..4 24573.350768: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
50495<...>-24151 ( 24151) [007] d..2 24573.350769: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
50496    RenderThread-24437 (24151) [006] d..5 24573.350776: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
50497    RenderThread-24437 (24151) [006] d..2 24573.350781: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
50498 id.nn.benchmark-13158 (13131) [004] d..2 24573.350781: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
50499  Binder:23896_5-25989 (23896) [004] .... 24573.350783: binder_transaction_received: transaction=1669904
50500  Binder:23896_5-25989 (23896) [004] .... 24573.350808: binder_transaction: transaction=1669905 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
50501  Binder:23896_5-25989 (23896) [004] d..2 24573.350813: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
50502  Binder:23896_5-25989 (23896) [004] d..3 24573.350820: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
50503 id.nn.benchmark-13156 (13131) [006] d..2 24573.350827: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
50504  Binder:23896_5-25989 (23896) [004] d..2 24573.350829: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50505    RenderThread-24437 (24151) [006] .... 24573.350829: binder_transaction_received: transaction=1669905
50506 id.nn.benchmark-13158 (13131) [004] d.s2 24573.350892: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
50507 id.nn.benchmark-13158 (13131) [004] d.s3 24573.350898: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
50508 id.nn.benchmark-13160 (13131) [007] d..2 24573.350904: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
50509  kworker/u16:15-18488 (18488) [007] d..2 24573.351099: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
50510    RenderThread-24437 (24151) [006] d..2 24573.351449: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
50511 id.nn.benchmark-13156 (13131) [006] d.h1 24573.351547: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
50512 id.nn.benchmark-13156 (13131) [006] d.h2 24573.351552: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
50513 id.nn.benchmark-13156 (13131) [006] dnh2 24573.351553: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
50514 id.nn.benchmark-13156 (13131) [006] d..2 24573.351557: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
50515    RenderThread-24437 (24151) [006] .... 24573.351633: binder_transaction: transaction=1669906 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
50516    RenderThread-24437 (24151) [006] d..4 24573.351637: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
50517    RenderThread-24437 (24151) [006] d..5 24573.351645: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
50518    RenderThread-24437 (24151) [006] d..2 24573.351649: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
50519 id.nn.benchmark-13158 (13131) [004] d..2 24573.351651: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
50520  Binder:23896_5-25989 (23896) [004] .... 24573.351653: binder_transaction_received: transaction=1669906
50521           <...>-13157 (-----) [000] d.h2 24573.351674: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
50522           <...>-13154 (-----) [005] dnh1 24573.351689: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
50523           <...>-13154 (-----) [005] d..2 24573.351692: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
50524  Binder:23896_5-25989 (23896) [004] .... 24573.351704: binder_transaction: transaction=1669907 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
50525  Binder:23896_5-25989 (23896) [004] d..2 24573.351706: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
50526 kgsl_worker_thr-246   (  246) [005] d..2 24573.351712: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
50527  Binder:23896_5-25989 (23896) [004] d..3 24573.351714: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
50528 kgsl_worker_thr-246   (  246) [005] d..3 24573.351719: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
50529 id.nn.benchmark-13156 (13131) [006] d..2 24573.351720: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
50530    RenderThread-24437 (24151) [006] .... 24573.351722: binder_transaction_received: transaction=1669907
50531  Binder:23896_5-25989 (23896) [004] d..2 24573.351723: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50532 id.nn.benchmark-13160 (13131) [007] d..2 24573.351725: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
50533 kgsl_worker_thr-246   (  246) [005] d..2 24573.351726: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
50534  kworker/u16:15-18488 (18488) [007] d..2 24573.351740: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
50535    RenderThread-24437 (24151) [006] d..2 24573.351744: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
50536           <...>-13248 (-----) [002] ...1 24573.352370: tracing_mark_write: E|13131
50537           <...>-13248 (-----) [002] ...1 24573.352374: tracing_mark_write: E|13131
50538           <...>-13248 (-----) [002] ...1 24573.352387: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50539           <...>-13248 (-----) [002] ...1 24573.352391: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50540           <...>-13248 (-----) [002] ...1 24573.353085: tracing_mark_write: E|13131
50541           <...>-13248 (-----) [002] ...1 24573.353089: tracing_mark_write: E|13131
50542           <...>-13248 (-----) [002] ...1 24573.353107: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50543           <...>-13248 (-----) [002] ...1 24573.353111: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50544           <...>-13248 (-----) [002] ...1 24573.353436: tracing_mark_write: E|13131
50545           <...>-13248 (-----) [002] ...1 24573.353440: tracing_mark_write: E|13131
50546           <...>-13248 (-----) [002] ...1 24573.353450: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50547           <...>-13248 (-----) [002] ...1 24573.353454: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50548           <...>-13248 (-----) [002] ...1 24573.353684: tracing_mark_write: E|13131
50549           <...>-13248 (-----) [002] ...1 24573.353687: tracing_mark_write: E|13131
50550           <...>-13248 (-----) [002] ...1 24573.353697: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50551           <...>-13248 (-----) [002] ...1 24573.353701: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50552           <...>-13248 (-----) [002] ...1 24573.354090: tracing_mark_write: E|13131
50553           <...>-13248 (-----) [002] ...1 24573.354093: tracing_mark_write: E|13131
50554           <...>-13248 (-----) [002] ...1 24573.354103: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50555           <...>-13248 (-----) [002] ...1 24573.354107: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50556 id.nn.benchmark-13156 (13131) [006] d.s1 24573.354224: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=006
50557           <...>-13248 (-----) [002] d.h1 24573.354231: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
50558 id.nn.benchmark-13156 (13131) [006] d.s2 24573.354237: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
50559 id.nn.benchmark-13160 (13131) [007] d..2 24573.354243: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
50560     rcu_preempt-7     (    7) [007] d..2 24573.354250: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
50561           <...>-13154 (-----) [005] dnh1 24573.354254: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=005
50562           <...>-13154 (-----) [005] d..2 24573.354281: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
50563           <...>-13248 (-----) [002] d.H2 24573.354282: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
50564        DispSync-23904 (23896) [005] d..1 24573.354287: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
50565           <...>-13248 (-----) [002] d.H2 24573.354290: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
50566 id.nn.benchmark-13158 (13131) [004] dnh1 24573.354293: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
50567 id.nn.benchmark-13158 (13131) [004] d..2 24573.354296: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
50568           <...>-13248 (-----) [002] d.H3 24573.354298: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
50569        DispSync-23904 (23896) [005] d..2 24573.354299: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
50570 id.nn.benchmark-13155 (13131) [001] dnh1 24573.354300: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
50571           <...>-13248 (-----) [002] d.s2 24573.354301: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
50572         sugov:4-560   (  560) [004] d..2 24573.354302: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50573           <...>-13157 (-----) [000] d..2 24573.354307: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
50574 id.nn.benchmark-13155 (13131) [001] d..2 24573.354307: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
50575 id.nn.benchmark-13160 (13131) [007] dnh1 24573.354315: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
50576         sugov:0-559   (  559) [000] d..2 24573.354317: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
50577 id.nn.benchmark-13160 (13131) [007] d..2 24573.354317: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
50578     rcu_preempt-7     (    7) [007] d..2 24573.354319: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=006
50579     rcu_preempt-7     (    7) [007] d..3 24573.354326: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=006
50580     rcu_preempt-7     (    7) [007] d..2 24573.354330: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
50581 id.nn.benchmark-13156 (13131) [006] d..2 24573.354333: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
50582   sfEventThread-23906 (23896) [001] d..3 24573.354334: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
50583   sfEventThread-23906 (23896) [001] d..4 24573.354345: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
50584           <...>-13157 (-----) [000] d..2 24573.354353: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
50585   sfEventThread-23906 (23896) [001] d..2 24573.354358: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
50586         rcuop/2-29    (   29) [006] d..2 24573.354366: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
50587  surfaceflinger-23896 (23896) [000] d..1 24573.354587: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
50588  surfaceflinger-23896 (23896) [000] d..2 24573.354598: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
50589 id.nn.benchmark-13155 (13131) [001] d..2 24573.354607: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
50590   sfEventThread-23906 (23896) [001] d..2 24573.354623: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
50591  surfaceflinger-23896 (23896) [000] ...1 24573.354717: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
50592  surfaceflinger-23896 (23896) [000] ...1 24573.354721: tracing_mark_write: E|23896
50593  surfaceflinger-23896 (23896) [000] .... 24573.354764: binder_transaction: transaction=1669908 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
50594  surfaceflinger-23896 (23896) [000] ...2 24573.354783: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
50595  surfaceflinger-23896 (23896) [000] d..4 24573.354790: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
50596 id.nn.benchmark-13158 (13131) [004] dnh1 24573.354803: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
50597 id.nn.benchmark-13158 (13131) [004] d..2 24573.354806: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
50598  HwBinder:598_3-633   (  598) [004] .... 24573.354810: binder_transaction_received: transaction=1669908
50599  surfaceflinger-23896 (23896) [000] d..2 24573.354811: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
50600  HwBinder:598_3-633   (  598) [004] ...1 24573.354834: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
50601  HwBinder:598_3-633   (  598) [004] ...1 24573.354883: tracing_mark_write: B|598|HWCSession::PresentDisplay::
50602  HwBinder:598_3-633   (  598) [004] ...1 24573.354945: tracing_mark_write: B|598|HWDeviceDRM::Commit::
50603  HwBinder:598_3-633   (  598) [004] ...1 24573.354949: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
50604           <...>-13248 (-----) [002] ...1 24573.355062: tracing_mark_write: E|13131
50605           <...>-13248 (-----) [002] ...1 24573.355066: tracing_mark_write: E|13131
50606           <...>-13248 (-----) [002] ...1 24573.355084: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50607           <...>-13248 (-----) [002] ...1 24573.355088: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50608  HwBinder:598_3-633   (  598) [004] d..2 24573.355146: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
50609           <...>-13248 (-----) [002] dnh1 24573.355160: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
50610           <...>-13248 (-----) [002] d..2 24573.355168: sched_switch: prev_comm=id.nn.benchmark prev_pid=13248 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
50611  HwBinder:598_3-633   (  598) [004] ...1 24573.355181: tracing_mark_write: E|598
50612  HwBinder:598_3-633   (  598) [004] ...1 24573.355183: tracing_mark_write: E|598
50613  HwBinder:598_3-633   (  598) [004] ...1 24573.355204: tracing_mark_write: E|598
50614  HwBinder:598_3-633   (  598) [004] ...1 24573.355223: tracing_mark_write: E|598
50615  HwBinder:598_3-633   (  598) [004] .... 24573.355228: binder_transaction: transaction=1669909 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
50616  HwBinder:598_3-633   (  598) [004] d..2 24573.355234: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
50617  HwBinder:598_3-633   (  598) [004] .... 24573.355240: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
50618           <...>-13157 (-----) [000] dnh1 24573.355245: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
50619           <...>-13157 (-----) [000] d..2 24573.355252: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
50620  surfaceflinger-23896 (23896) [000] .... 24573.355256: binder_transaction_received: transaction=1669909
50621  HwBinder:598_3-633   (  598) [004] d..2 24573.355261: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50622  surfaceflinger-23896 (23896) [000] d..2 24573.355496: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
50623 crtc_commit:111-253   (  253) [002] d..2 24573.355778: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13248 next_prio=110
50624           <...>-13248 (-----) [002] ...1 24573.355904: tracing_mark_write: E|13131
50625           <...>-13248 (-----) [002] ...1 24573.355908: tracing_mark_write: E|13131
50626           <...>-13248 (-----) [002] ...1 24573.355923: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50627           <...>-13248 (-----) [002] ...1 24573.355927: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50628           <...>-13248 (-----) [002] ...1 24573.355998: tracing_mark_write: E|13131
50629           <...>-13248 (-----) [002] ...1 24573.356001: tracing_mark_write: E|13131
50630           <...>-13248 (-----) [002] ...1 24573.356012: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
50631           <...>-13248 (-----) [002] ...1 24573.356017: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
50632           <...>-13248 (-----) [002] ...1 24573.356320: tracing_mark_write: E|13131
50633           <...>-13248 (-----) [002] ...1 24573.356324: tracing_mark_write: E|13131
50634           <...>-13248 (-----) [002] ...1 24573.356333: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
50635           <...>-13248 (-----) [002] ...1 24573.356337: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
50636           <...>-13248 (-----) [002] ...1 24573.356389: tracing_mark_write: E|13131
50637           <...>-13248 (-----) [002] ...1 24573.356392: tracing_mark_write: E|13131
50638           <...>-13248 (-----) [002] ...1 24573.356400: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
50639           <...>-13248 (-----) [002] ...1 24573.356404: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
50640           <...>-13248 (-----) [002] ...1 24573.356421: tracing_mark_write: E|13131
50641           <...>-13248 (-----) [002] ...1 24573.356424: tracing_mark_write: E|13131
50642           <...>-13248 (-----) [002] ...1 24573.356435: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
50643           <...>-13248 (-----) [002] ...1 24573.356438: tracing_mark_write: E|13131
50644           <...>-13248 (-----) [002] ...1 24573.356447: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
50645           <...>-13248 (-----) [002] ...1 24573.356451: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
50646           <...>-13248 (-----) [002] ...1 24573.357304: tracing_mark_write: E|13131
50647           <...>-13248 (-----) [002] ...1 24573.357306: tracing_mark_write: E|13131
50648           <...>-13248 (-----) [002] ...1 24573.357314: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50649           <...>-13248 (-----) [002] ...1 24573.357317: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50650           <...>-13248 (-----) [002] ...1 24573.357400: tracing_mark_write: E|13131
50651           <...>-13248 (-----) [002] ...1 24573.357403: tracing_mark_write: E|13131
50652           <...>-13248 (-----) [002] ...1 24573.357464: tracing_mark_write: E|13131
50653           <...>-13248 (-----) [002] d..1 24573.357469: sched_waking: comm=id.nn.benchmark pid=13247 prio=110 target_cpu=002
50654           <...>-13248 (-----) [002] dn.2 24573.357481: sched_wakeup: comm=id.nn.benchmark pid=13247 prio=110 target_cpu=002
50655           <...>-13248 (-----) [002] d..2 24573.357487: sched_switch: prev_comm=id.nn.benchmark prev_pid=13248 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13247 next_prio=110
50656           <...>-13247 (-----) [002] d..2 24573.357502: sched_switch: prev_comm=id.nn.benchmark prev_pid=13247 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13248 next_prio=110
50657           <...>-13248 (-----) [002] ...1 24573.357517: tracing_mark_write: E|13131
50658 id.nn.benchmark-13158 (13131) [004] d.s2 24573.357560: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
50659 id.nn.benchmark-13158 (13131) [004] d.s2 24573.357582: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
50660           <...>-13154 (-----) [005] d.H2 24573.357586: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
50661           <...>-13157 (-----) [000] dnh1 24573.357589: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
50662 id.nn.benchmark-13158 (13131) [004] dns3 24573.357590: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
50663           <...>-13154 (-----) [005] d.H3 24573.357592: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
50664           <...>-13154 (-----) [005] d.H2 24573.357593: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
50665 id.nn.benchmark-13158 (13131) [004] d..2 24573.357595: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
50666           <...>-13157 (-----) [000] d..2 24573.357595: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
50667 id.nn.benchmark-13160 (13131) [007] d..2 24573.357596: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
50668         sugov:4-560   (  560) [004] d..2 24573.357605: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50669     kworker/0:1-13012 (13012) [000] dnh2 24573.357641: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
50670     kworker/0:1-13012 (13012) [000] d..2 24573.357650: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
50671         sugov:0-559   (  559) [000] d..2 24573.357661: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
50672     kworker/0:1-13012 (13012) [000] d..2 24573.357672: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
50673  kworker/u16:15-18488 (18488) [007] d..2 24573.357723: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
50674           <...>-13248 (-----) [002] d..1 24573.357772: sched_waking: comm=id.nn.benchmark pid=13247 prio=110 target_cpu=002
50675           <...>-13248 (-----) [002] dn.2 24573.357781: sched_wakeup: comm=id.nn.benchmark pid=13247 prio=110 target_cpu=002
50676           <...>-13248 (-----) [002] d..2 24573.357786: sched_switch: prev_comm=id.nn.benchmark prev_pid=13248 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13247 next_prio=110
50677           <...>-13247 (-----) [002] d..1 24573.357886: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
50678 id.nn.benchmark-13158 (13131) [004] dnh1 24573.357902: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
50679 id.nn.benchmark-13158 (13131) [004] d..2 24573.357904: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
50680           <...>-13131 (-----) [004] d..2 24573.357911: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50681           <...>-13247 (-----) [002] d..1 24573.357951: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
50682 id.nn.benchmark-13158 (13131) [004] dnh1 24573.357963: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
50683 id.nn.benchmark-13158 (13131) [004] d..2 24573.357965: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
50684           <...>-13131 (-----) [004] ...1 24573.357979: tracing_mark_write: E|13131
50685           <...>-13131 (-----) [004] ...1 24573.357982: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
50686           <...>-13131 (-----) [004] ...1 24573.357984: tracing_mark_write: E|13131
50687           <...>-13131 (-----) [004] ...1 24573.357986: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
50688           <...>-13131 (-----) [004] ...1 24573.357988: tracing_mark_write: E|13131
50689           <...>-13247 (-----) [002] d..2 24573.358021: sched_switch: prev_comm=id.nn.benchmark prev_pid=13247 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13248 next_prio=110
50690           <...>-13248 (-----) [002] d..2 24573.358044: sched_switch: prev_comm=id.nn.benchmark prev_pid=13248 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
50691           <...>-13131 (-----) [004] ...1 24573.358050: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
50692           <...>-13131 (-----) [004] ...1 24573.358074: tracing_mark_write: E|13131
50693           <...>-13131 (-----) [004] ...1 24573.358076: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
50694           <...>-13131 (-----) [004] ...1 24573.358078: tracing_mark_write: E|13131
50695           <...>-13131 (-----) [004] ...1 24573.358080: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
50696           <...>-13131 (-----) [004] ...1 24573.358082: tracing_mark_write: E|13131
50697           <...>-13131 (-----) [004] ...1 24573.358084: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
50698           <...>-13131 (-----) [004] ...1 24573.358143: tracing_mark_write: E|13131
50699           <...>-13131 (-----) [004] ...1 24573.358145: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
50700           <...>-13131 (-----) [004] d..2 24573.358150: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50701     logd.writer-563   (  555) [002] d..2 24573.358296: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13249 next_prio=110
50702           <...>-13249 (-----) [002] d.h4 24573.358328: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
50703           <...>-13249 (-----) [002] d.h4 24573.358336: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
50704 id.nn.benchmark-13158 (13131) [004] dnh1 24573.358340: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
50705 id.nn.benchmark-13158 (13131) [004] d..2 24573.358343: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
50706           <...>-13249 (-----) [002] dnh5 24573.358347: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
50707         sugov:4-560   (  560) [004] d..2 24573.358347: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50708           <...>-13249 (-----) [002] d..2 24573.358353: sched_switch: prev_comm=id.nn.benchmark prev_pid=13249 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
50709         sugov:0-559   (  559) [002] d..2 24573.358360: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13249 next_prio=110
50710           <...>-13249 (-----) [002] d..2 24573.358415: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
50711           <...>-13249 (-----) [002] d..3 24573.358425: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
50712           <...>-13249 (-----) [002] d..2 24573.358701: sched_switch: prev_comm=id.nn.benchmark prev_pid=13249 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
50713     logd.writer-563   (  555) [002] d..2 24573.358870: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13250 next_prio=110
50714           <...>-13250 (-----) [002] ...1 24573.358897: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
50715           <...>-13250 (-----) [002] ...1 24573.358901: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
50716           <...>-13250 (-----) [002] d..2 24573.358956: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
50717           <...>-13250 (-----) [002] d..3 24573.358966: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
50718           <...>-13250 (-----) [002] ...1 24573.359030: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50719           <...>-13250 (-----) [002] ...1 24573.359036: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50720 id.nn.benchmark-13160 (13131) [007] d.s1 24573.360888: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
50721 id.nn.benchmark-13158 (13131) [004] d.s2 24573.360892: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
50722 id.nn.benchmark-13160 (13131) [007] dns2 24573.360893: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
50723 id.nn.benchmark-13160 (13131) [007] d..2 24573.360898: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
50724     rcu_preempt-7     (    7) [007] d..2 24573.360903: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
50725 id.nn.benchmark-13158 (13131) [004] d.s3 24573.360905: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
50726 id.nn.benchmark-13158 (13131) [004] d.s2 24573.360907: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
50727 id.nn.benchmark-13156 (13131) [006] d..2 24573.360912: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
50728 id.nn.benchmark-13158 (13131) [004] d.s3 24573.360913: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
50729 id.nn.benchmark-13160 (13131) [007] d..2 24573.360919: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
50730     rcu_preempt-7     (    7) [007] d..2 24573.360921: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=004
50731     rcu_preempt-7     (    7) [007] d..3 24573.360934: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=004
50732 id.nn.benchmark-13158 (13131) [004] d..2 24573.360937: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
50733     rcu_preempt-7     (    7) [007] d..2 24573.360938: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
50734         rcuop/0-10    (   10) [004] d..2 24573.360948: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50735           <...>-13250 (-----) [002] ...1 24573.361012: tracing_mark_write: E|13131
50736           <...>-13250 (-----) [002] ...1 24573.361016: tracing_mark_write: E|13131
50737           <...>-13250 (-----) [002] ...1 24573.361027: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50738           <...>-13250 (-----) [002] ...1 24573.361031: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50739  kworker/u16:15-18488 (18488) [006] d..2 24573.361123: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
50740           <...>-13250 (-----) [002] ...1 24573.361737: tracing_mark_write: E|13131
50741           <...>-13250 (-----) [002] ...1 24573.361741: tracing_mark_write: E|13131
50742           <...>-13250 (-----) [002] ...1 24573.361753: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50743           <...>-13250 (-----) [002] ...1 24573.361758: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50744           <...>-13250 (-----) [002] ...1 24573.362088: tracing_mark_write: E|13131
50745           <...>-13250 (-----) [002] ...1 24573.362092: tracing_mark_write: E|13131
50746           <...>-13250 (-----) [002] ...1 24573.362103: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50747           <...>-13250 (-----) [002] ...1 24573.362107: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50748           <...>-13157 (-----) [000] d.h4 24573.362184: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
50749           <...>-13157 (-----) [000] d.h4 24573.362198: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
50750 id.nn.benchmark-13158 (13131) [004] dnh1 24573.362200: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
50751 id.nn.benchmark-13158 (13131) [004] d..2 24573.362202: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
50752           <...>-13157 (-----) [000] d.h5 24573.362208: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
50753  crtc_event:111-254   (  254) [004] d..2 24573.362213: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50754           <...>-13250 (-----) [002] d..2 24573.362219: sched_switch: prev_comm=id.nn.benchmark prev_pid=13250 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
50755 crtc_commit:111-253   (  253) [002] d..2 24573.362343: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13250 next_prio=110
50756           <...>-13250 (-----) [002] ...1 24573.362473: tracing_mark_write: E|13131
50757           <...>-13250 (-----) [002] ...1 24573.362477: tracing_mark_write: E|13131
50758           <...>-13250 (-----) [002] ...1 24573.362487: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50759           <...>-13250 (-----) [002] ...1 24573.362491: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50760           <...>-13250 (-----) [002] ...1 24573.362889: tracing_mark_write: E|13131
50761           <...>-13250 (-----) [002] ...1 24573.362893: tracing_mark_write: E|13131
50762           <...>-13250 (-----) [002] ...1 24573.362903: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50763           <...>-13250 (-----) [002] ...1 24573.362907: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50764           <...>-13250 (-----) [002] ...1 24573.363300: tracing_mark_write: E|13131
50765           <...>-13250 (-----) [002] ...1 24573.363304: tracing_mark_write: E|13131
50766           <...>-13250 (-----) [002] ...1 24573.363320: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50767           <...>-13250 (-----) [002] ...1 24573.363324: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50768           <...>-13250 (-----) [002] ...1 24573.363513: tracing_mark_write: E|13131
50769           <...>-13250 (-----) [002] ...1 24573.363517: tracing_mark_write: E|13131
50770           <...>-13250 (-----) [002] ...1 24573.363529: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50771           <...>-13250 (-----) [002] ...1 24573.363533: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50772           <...>-13250 (-----) [002] ...1 24573.363601: tracing_mark_write: E|13131
50773           <...>-13250 (-----) [002] ...1 24573.363604: tracing_mark_write: E|13131
50774           <...>-13250 (-----) [002] ...1 24573.363614: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
50775           <...>-13250 (-----) [002] ...1 24573.363618: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
50776           <...>-13250 (-----) [002] ...1 24573.363881: tracing_mark_write: E|13131
50777           <...>-13250 (-----) [002] ...1 24573.363884: tracing_mark_write: E|13131
50778           <...>-13250 (-----) [002] ...1 24573.363893: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
50779           <...>-13250 (-----) [002] ...1 24573.363897: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
50780           <...>-13250 (-----) [002] ...1 24573.363941: tracing_mark_write: E|13131
50781           <...>-13250 (-----) [002] ...1 24573.363944: tracing_mark_write: E|13131
50782           <...>-13250 (-----) [002] ...1 24573.363952: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
50783           <...>-13250 (-----) [002] ...1 24573.363956: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
50784           <...>-13250 (-----) [002] ...1 24573.363971: tracing_mark_write: E|13131
50785           <...>-13250 (-----) [002] ...1 24573.363974: tracing_mark_write: E|13131
50786           <...>-13250 (-----) [002] ...1 24573.363983: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
50787           <...>-13250 (-----) [002] ...1 24573.363986: tracing_mark_write: E|13131
50788           <...>-13250 (-----) [002] ...1 24573.363995: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
50789           <...>-13250 (-----) [002] ...1 24573.364000: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
50790           <...>-13250 (-----) [002] d.s2 24573.364231: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
50791 id.nn.benchmark-13158 (13131) [004] dnh1 24573.364245: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
50792 id.nn.benchmark-13158 (13131) [004] d..2 24573.364247: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
50793  crtc_event:111-254   (  254) [004] d..2 24573.364255: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50794           <...>-13157 (-----) [000] d.h4 24573.364520: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
50795           <...>-13157 (-----) [000] d.h5 24573.364531: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
50796           <...>-13250 (-----) [002] d..2 24573.364540: sched_switch: prev_comm=id.nn.benchmark prev_pid=13250 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
50797 crtc_commit:111-253   (  253) [002] d..2 24573.364590: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13250 next_prio=110
50798           <...>-13157 (-----) [000] d.h4 24573.364824: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
50799 id.nn.benchmark-13158 (13131) [004] dnh1 24573.364835: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
50800 id.nn.benchmark-13158 (13131) [004] d..2 24573.364837: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
50801  crtc_event:111-254   (  254) [004] d..2 24573.364841: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50802           <...>-13250 (-----) [002] ...1 24573.364948: tracing_mark_write: E|13131
50803           <...>-13250 (-----) [002] ...1 24573.364951: tracing_mark_write: E|13131
50804           <...>-13250 (-----) [002] ...1 24573.364960: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50805           <...>-13250 (-----) [002] ...1 24573.364965: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50806           <...>-13250 (-----) [002] ...1 24573.365047: tracing_mark_write: E|13131
50807           <...>-13250 (-----) [002] ...1 24573.365051: tracing_mark_write: E|13131
50808           <...>-13250 (-----) [002] ...1 24573.365099: tracing_mark_write: E|13131
50809           <...>-13250 (-----) [002] d..1 24573.365104: sched_waking: comm=id.nn.benchmark pid=13249 prio=110 target_cpu=002
50810           <...>-13250 (-----) [002] dn.2 24573.365117: sched_wakeup: comm=id.nn.benchmark pid=13249 prio=110 target_cpu=002
50811           <...>-13250 (-----) [002] d..2 24573.365122: sched_switch: prev_comm=id.nn.benchmark prev_pid=13250 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13249 next_prio=110
50812           <...>-13249 (-----) [002] d..2 24573.365135: sched_switch: prev_comm=id.nn.benchmark prev_pid=13249 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13250 next_prio=110
50813           <...>-13250 (-----) [002] ...1 24573.365150: tracing_mark_write: E|13131
50814           <...>-13250 (-----) [002] d..1 24573.365339: sched_waking: comm=id.nn.benchmark pid=13249 prio=110 target_cpu=002
50815           <...>-13250 (-----) [002] dn.2 24573.365348: sched_wakeup: comm=id.nn.benchmark pid=13249 prio=110 target_cpu=002
50816           <...>-13250 (-----) [002] d..2 24573.365352: sched_switch: prev_comm=id.nn.benchmark prev_pid=13250 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13249 next_prio=110
50817           <...>-13249 (-----) [002] d..1 24573.365440: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
50818 id.nn.benchmark-13158 (13131) [004] dnh1 24573.365455: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
50819 id.nn.benchmark-13158 (13131) [004] d..2 24573.365458: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
50820           <...>-13131 (-----) [004] d..2 24573.365462: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50821           <...>-13249 (-----) [002] d..1 24573.365500: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
50822 id.nn.benchmark-13158 (13131) [004] dnh1 24573.365512: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
50823 id.nn.benchmark-13158 (13131) [004] d..2 24573.365514: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
50824           <...>-13131 (-----) [004] ...1 24573.365525: tracing_mark_write: E|13131
50825           <...>-13131 (-----) [004] ...1 24573.365527: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
50826           <...>-13131 (-----) [004] ...1 24573.365529: tracing_mark_write: E|13131
50827           <...>-13131 (-----) [004] ...1 24573.365531: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
50828           <...>-13131 (-----) [004] ...1 24573.365532: tracing_mark_write: E|13131
50829           <...>-13249 (-----) [002] d..2 24573.365557: sched_switch: prev_comm=id.nn.benchmark prev_pid=13249 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13250 next_prio=110
50830           <...>-13250 (-----) [002] d..2 24573.365577: sched_switch: prev_comm=id.nn.benchmark prev_pid=13250 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
50831           <...>-13131 (-----) [004] ...1 24573.365591: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
50832           <...>-13131 (-----) [004] ...1 24573.365612: tracing_mark_write: E|13131
50833           <...>-13131 (-----) [004] ...1 24573.365614: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
50834           <...>-13131 (-----) [004] ...1 24573.365617: tracing_mark_write: E|13131
50835           <...>-13131 (-----) [004] ...1 24573.365618: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
50836           <...>-13131 (-----) [004] ...1 24573.365620: tracing_mark_write: E|13131
50837           <...>-13131 (-----) [004] ...1 24573.365621: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
50838           <...>-13131 (-----) [004] ...1 24573.365663: tracing_mark_write: E|13131
50839           <...>-13131 (-----) [004] ...1 24573.365665: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
50840           <...>-13131 (-----) [004] d..2 24573.365670: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50841     logd.writer-563   (  555) [002] d..2 24573.365804: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13251 next_prio=110
50842           <...>-13251 (-----) [002] d.h4 24573.365840: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
50843           <...>-13251 (-----) [002] d.h4 24573.365847: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
50844 id.nn.benchmark-13158 (13131) [004] dnh1 24573.365851: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
50845           <...>-13251 (-----) [002] dnh5 24573.365854: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
50846 id.nn.benchmark-13158 (13131) [004] d..2 24573.365854: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
50847         sugov:4-560   (  560) [004] d..2 24573.365858: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50848           <...>-13251 (-----) [002] d..2 24573.365860: sched_switch: prev_comm=id.nn.benchmark prev_pid=13251 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
50849         sugov:0-559   (  559) [002] d..2 24573.365867: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13251 next_prio=110
50850           <...>-13251 (-----) [002] d..2 24573.365920: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
50851           <...>-13251 (-----) [002] d..3 24573.365930: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
50852           <...>-13251 (-----) [002] d..2 24573.366202: sched_switch: prev_comm=id.nn.benchmark prev_pid=13251 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
50853     logd.writer-563   (  555) [002] d..2 24573.366355: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13252 next_prio=110
50854           <...>-13252 (-----) [002] ...1 24573.366381: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
50855           <...>-13252 (-----) [002] ...1 24573.366385: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
50856           <...>-13252 (-----) [002] d..2 24573.366440: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
50857           <...>-13252 (-----) [002] d..3 24573.366450: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
50858           <...>-13252 (-----) [002] ...1 24573.366515: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50859           <...>-13252 (-----) [002] ...1 24573.366520: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50860           <...>-13154 (-----) [005] d.h1 24573.366693: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=005
50861           <...>-13154 (-----) [005] dnh2 24573.366697: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=005
50862           <...>-13154 (-----) [005] d..2 24573.366701: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
50863        DispSync-23904 (23896) [005] d..1 24573.366709: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
50864        DispSync-23904 (23896) [005] d..2 24573.366720: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
50865           <...>-13157 (-----) [000] dnh1 24573.366721: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
50866           <...>-13157 (-----) [000] d..2 24573.366727: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
50867  appEventThread-23905 (23896) [000] d..3 24573.366767: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
50868 id.nn.benchmark-13156 (13131) [006] dnh1 24573.366790: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
50869 id.nn.benchmark-13156 (13131) [006] d..2 24573.366792: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
50870  appEventThread-23905 (23896) [000] d..2 24573.366799: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
50871<...>-24151 ( 24151) [006] .... 24573.366989: binder_transaction: transaction=1669910 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
50872<...>-24151 ( 24151) [006] d..4 24573.366995: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
50873<...>-24151 ( 24151) [006] d..5 24573.367005: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
50874 id.nn.benchmark-13158 (13131) [004] d..2 24573.367012: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
50875  Binder:23896_5-25989 (23896) [004] .... 24573.367016: binder_transaction_received: transaction=1669910
50876<...>-24151 ( 24151) [006] d..3 24573.367025: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
50877  Binder:23896_5-25989 (23896) [004] d..1 24573.367034: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
50878<...>-24151 ( 24151) [006] d..4 24573.367037: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
50879 id.nn.benchmark-13160 (13131) [007] d..2 24573.367043: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
50880           <...>-13157 (-----) [000] dnh1 24573.367045: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
50881           <...>-13157 (-----) [000] d..2 24573.367051: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
50882  Binder:23896_5-25989 (23896) [004] d..2 24573.367052: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50883    RenderThread-24437 (24151) [007] d..2 24573.367060: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
50884  appEventThread-23905 (23896) [000] d..2 24573.367067: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
50885<...>-24151 ( 24151) [006] d..3 24573.367097: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
50886<...>-24151 ( 24151) [006] d..4 24573.367105: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
50887 id.nn.benchmark-13160 (13131) [007] d..2 24573.367110: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
50888<...>-24151 ( 24151) [006] d..2 24573.367112: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
50889    RenderThread-24437 (24151) [007] d..1 24573.367159: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
50890    RenderThread-24437 (24151) [007] d..2 24573.367167: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
50891 id.nn.benchmark-13156 (13131) [006] d..2 24573.367173: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
50892<...>-24151 ( 24151) [006] d..2 24573.367193: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
50893    RenderThread-24437 (24151) [007] .... 24573.367195: binder_transaction: transaction=1669911 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
50894    RenderThread-24437 (24151) [007] d..4 24573.367198: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
50895    RenderThread-24437 (24151) [007] d..5 24573.367205: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
50896    RenderThread-24437 (24151) [007] d..2 24573.367209: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
50897 id.nn.benchmark-13158 (13131) [004] d..2 24573.367211: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
50898  Binder:23896_5-25989 (23896) [004] .... 24573.367214: binder_transaction_received: transaction=1669911
50899  Binder:23896_5-25989 (23896) [004] .... 24573.367237: binder_transaction: transaction=1669912 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
50900  Binder:23896_5-25989 (23896) [004] d..2 24573.367242: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
50901  Binder:23896_5-25989 (23896) [004] d..3 24573.367252: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
50902 id.nn.benchmark-13156 (13131) [006] d..2 24573.367259: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
50903  Binder:23896_5-25989 (23896) [004] d..2 24573.367261: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50904    RenderThread-24437 (24151) [006] .... 24573.367261: binder_transaction_received: transaction=1669912
50905 id.nn.benchmark-13160 (13131) [007] d.s1 24573.367556: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
50906 id.nn.benchmark-13158 (13131) [004] d.s2 24573.367559: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
50907 id.nn.benchmark-13160 (13131) [007] dns2 24573.367560: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
50908 id.nn.benchmark-13160 (13131) [007] d..2 24573.367563: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
50909     rcu_preempt-7     (    7) [007] d..2 24573.367569: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
50910 id.nn.benchmark-13158 (13131) [004] d.s3 24573.367569: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=005
50911 id.nn.benchmark-13158 (13131) [004] d.s2 24573.367570: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
50912           <...>-13154 (-----) [005] d..2 24573.367575: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
50913 id.nn.benchmark-13158 (13131) [004] d.s3 24573.367576: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
50914 id.nn.benchmark-13160 (13131) [007] d..2 24573.367582: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
50915     rcu_preempt-7     (    7) [007] d..2 24573.367583: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=006
50916     rcu_preempt-7     (    7) [007] d..3 24573.367593: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=004
50917     rcu_preempt-7     (    7) [007] d..2 24573.367597: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
50918 id.nn.benchmark-13158 (13131) [004] d..2 24573.367600: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
50919         rcuop/2-29    (   29) [004] d..2 24573.367625: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50920  kworker/u16:15-18488 (18488) [005] d..2 24573.367669: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
50921    RenderThread-24437 (24151) [006] d..2 24573.367875: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
50922 id.nn.benchmark-13156 (13131) [006] d.h1 24573.367974: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
50923 id.nn.benchmark-13156 (13131) [006] d.h2 24573.367980: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
50924 id.nn.benchmark-13156 (13131) [006] dnh2 24573.367981: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
50925 id.nn.benchmark-13156 (13131) [006] d..2 24573.367985: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
50926    RenderThread-24437 (24151) [006] .... 24573.368061: binder_transaction: transaction=1669913 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
50927    RenderThread-24437 (24151) [006] d..4 24573.368064: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
50928    RenderThread-24437 (24151) [006] d..5 24573.368072: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
50929    RenderThread-24437 (24151) [006] d..2 24573.368076: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
50930 id.nn.benchmark-13158 (13131) [004] d..2 24573.368078: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
50931  Binder:23896_5-25989 (23896) [004] .... 24573.368079: binder_transaction_received: transaction=1669913
50932           <...>-13157 (-----) [000] d.h2 24573.368102: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
50933           <...>-13154 (-----) [005] dnh1 24573.368116: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
50934           <...>-13154 (-----) [005] d..2 24573.368118: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
50935  Binder:23896_5-25989 (23896) [004] .... 24573.368132: binder_transaction: transaction=1669914 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
50936  Binder:23896_5-25989 (23896) [004] d..2 24573.368134: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
50937 kgsl_worker_thr-246   (  246) [005] d..2 24573.368139: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=005
50938  Binder:23896_5-25989 (23896) [004] d..3 24573.368142: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
50939 kgsl_worker_thr-246   (  246) [005] d..3 24573.368148: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
50940 id.nn.benchmark-13156 (13131) [006] d..2 24573.368149: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
50941    RenderThread-24437 (24151) [006] .... 24573.368151: binder_transaction_received: transaction=1669914
50942  Binder:23896_5-25989 (23896) [004] d..2 24573.368151: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
50943 kgsl_worker_thr-246   (  246) [005] d..2 24573.368154: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
50944 id.nn.benchmark-13160 (13131) [007] d..2 24573.368155: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
50945    RenderThread-24437 (24151) [006] d..2 24573.368175: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
50946  kworker/u16:15-18488 (18488) [007] d..2 24573.368273: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
50947           <...>-13252 (-----) [002] ...1 24573.368523: tracing_mark_write: E|13131
50948           <...>-13252 (-----) [002] ...1 24573.368529: tracing_mark_write: E|13131
50949           <...>-13252 (-----) [002] ...1 24573.368542: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50950           <...>-13252 (-----) [002] ...1 24573.368547: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50951           <...>-13252 (-----) [002] ...1 24573.369239: tracing_mark_write: E|13131
50952           <...>-13252 (-----) [002] ...1 24573.369244: tracing_mark_write: E|13131
50953           <...>-13252 (-----) [002] ...1 24573.369259: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50954           <...>-13252 (-----) [002] ...1 24573.369263: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50955           <...>-13252 (-----) [002] ...1 24573.369593: tracing_mark_write: E|13131
50956           <...>-13252 (-----) [002] ...1 24573.369597: tracing_mark_write: E|13131
50957           <...>-13252 (-----) [002] ...1 24573.369607: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50958           <...>-13252 (-----) [002] ...1 24573.369611: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50959           <...>-13252 (-----) [002] ...1 24573.369842: tracing_mark_write: E|13131
50960           <...>-13252 (-----) [002] ...1 24573.369846: tracing_mark_write: E|13131
50961           <...>-13252 (-----) [002] ...1 24573.369856: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50962           <...>-13252 (-----) [002] ...1 24573.369860: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50963           <...>-13252 (-----) [002] ...1 24573.370251: tracing_mark_write: E|13131
50964           <...>-13252 (-----) [002] ...1 24573.370254: tracing_mark_write: E|13131
50965           <...>-13252 (-----) [002] ...1 24573.370264: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50966           <...>-13252 (-----) [002] ...1 24573.370268: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50967           <...>-13252 (-----) [002] ...1 24573.370653: tracing_mark_write: E|13131
50968           <...>-13252 (-----) [002] ...1 24573.370657: tracing_mark_write: E|13131
50969           <...>-13252 (-----) [002] ...1 24573.370675: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50970           <...>-13252 (-----) [002] ...1 24573.370679: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50971           <...>-13154 (-----) [005] d.h1 24573.370696: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=005
50972           <...>-13154 (-----) [005] dnh2 24573.370701: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=005
50973           <...>-13154 (-----) [005] d..2 24573.370705: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
50974        DispSync-23904 (23896) [005] d..1 24573.370710: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
50975        DispSync-23904 (23896) [005] d..2 24573.370721: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
50976 id.nn.benchmark-13155 (13131) [001] dnh1 24573.370724: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
50977 id.nn.benchmark-13155 (13131) [001] d..2 24573.370732: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
50978   sfEventThread-23906 (23896) [001] d..3 24573.370761: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
50979   sfEventThread-23906 (23896) [001] d..4 24573.370775: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
50980           <...>-13157 (-----) [000] d..2 24573.370784: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
50981   sfEventThread-23906 (23896) [001] d..2 24573.370788: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
50982 id.nn.benchmark-13158 (13131) [004] d.s2 24573.370892: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
50983 id.nn.benchmark-13158 (13131) [004] d.s3 24573.370900: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
50984 id.nn.benchmark-13160 (13131) [007] d..2 24573.370907: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
50985           <...>-13252 (-----) [002] ...1 24573.370966: tracing_mark_write: E|13131
50986           <...>-13252 (-----) [002] ...1 24573.370974: tracing_mark_write: E|13131
50987           <...>-13252 (-----) [002] ...1 24573.370987: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
50988           <...>-13252 (-----) [002] ...1 24573.370990: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
50989  surfaceflinger-23896 (23896) [000] d..1 24573.371053: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
50990           <...>-13252 (-----) [002] ...1 24573.371060: tracing_mark_write: E|13131
50991           <...>-13252 (-----) [002] ...1 24573.371063: tracing_mark_write: E|13131
50992  surfaceflinger-23896 (23896) [000] d..2 24573.371064: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
50993           <...>-13252 (-----) [002] ...1 24573.371073: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
50994 id.nn.benchmark-13155 (13131) [001] d..2 24573.371073: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
50995           <...>-13252 (-----) [002] ...1 24573.371076: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
50996   sfEventThread-23906 (23896) [001] d..2 24573.371090: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
50997  kworker/u16:15-18488 (18488) [007] d..2 24573.371115: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
50998  surfaceflinger-23896 (23896) [000] ...1 24573.371180: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
50999  surfaceflinger-23896 (23896) [000] ...1 24573.371184: tracing_mark_write: E|23896
51000  surfaceflinger-23896 (23896) [000] .... 24573.371225: binder_transaction: transaction=1669915 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
51001  surfaceflinger-23896 (23896) [000] ...2 24573.371244: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
51002  surfaceflinger-23896 (23896) [000] d..4 24573.371251: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
51003 id.nn.benchmark-13158 (13131) [004] dnh1 24573.371266: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
51004 id.nn.benchmark-13158 (13131) [004] d..2 24573.371269: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
51005  surfaceflinger-23896 (23896) [000] d..2 24573.371272: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
51006  HwBinder:598_3-633   (  598) [004] .... 24573.371274: binder_transaction_received: transaction=1669915
51007  HwBinder:598_3-633   (  598) [004] ...1 24573.371300: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
51008           <...>-13252 (-----) [002] ...1 24573.371346: tracing_mark_write: E|13131
51009  HwBinder:598_3-633   (  598) [004] ...1 24573.371348: tracing_mark_write: B|598|HWCSession::PresentDisplay::
51010           <...>-13252 (-----) [002] ...1 24573.371349: tracing_mark_write: E|13131
51011           <...>-13252 (-----) [002] ...1 24573.371358: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
51012           <...>-13252 (-----) [002] ...1 24573.371362: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
51013  HwBinder:598_3-633   (  598) [004] ...1 24573.371409: tracing_mark_write: B|598|HWDeviceDRM::Commit::
51014           <...>-13252 (-----) [002] ...1 24573.371409: tracing_mark_write: E|13131
51015  HwBinder:598_3-633   (  598) [004] ...1 24573.371412: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
51016           <...>-13252 (-----) [002] ...1 24573.371412: tracing_mark_write: E|13131
51017           <...>-13252 (-----) [002] ...1 24573.371421: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
51018           <...>-13252 (-----) [002] ...1 24573.371424: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
51019           <...>-13252 (-----) [002] ...1 24573.371439: tracing_mark_write: E|13131
51020           <...>-13252 (-----) [002] ...1 24573.371442: tracing_mark_write: E|13131
51021           <...>-13252 (-----) [002] ...1 24573.371452: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
51022           <...>-13252 (-----) [002] ...1 24573.371455: tracing_mark_write: E|13131
51023           <...>-13252 (-----) [002] ...1 24573.371463: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
51024           <...>-13252 (-----) [002] ...1 24573.371467: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
51025  HwBinder:598_3-633   (  598) [004] d..2 24573.371614: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
51026           <...>-13252 (-----) [002] dnh1 24573.371629: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
51027           <...>-13252 (-----) [002] d..2 24573.371636: sched_switch: prev_comm=id.nn.benchmark prev_pid=13252 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
51028  HwBinder:598_3-633   (  598) [004] ...1 24573.371649: tracing_mark_write: E|598
51029  HwBinder:598_3-633   (  598) [004] ...1 24573.371651: tracing_mark_write: E|598
51030  HwBinder:598_3-633   (  598) [004] ...1 24573.371672: tracing_mark_write: E|598
51031  HwBinder:598_3-633   (  598) [004] ...1 24573.371692: tracing_mark_write: E|598
51032  HwBinder:598_3-633   (  598) [004] .... 24573.371697: binder_transaction: transaction=1669916 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
51033  HwBinder:598_3-633   (  598) [004] d..2 24573.371703: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
51034  HwBinder:598_3-633   (  598) [004] .... 24573.371709: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
51035           <...>-13157 (-----) [000] dnh1 24573.371714: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
51036           <...>-13157 (-----) [000] d..2 24573.371720: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
51037  surfaceflinger-23896 (23896) [000] .... 24573.371724: binder_transaction_received: transaction=1669916
51038  HwBinder:598_3-633   (  598) [004] d..2 24573.371730: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
51039  surfaceflinger-23896 (23896) [000] d..2 24573.371995: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
51040 crtc_commit:111-253   (  253) [002] d..2 24573.372245: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13252 next_prio=110
51041           <...>-13252 (-----) [002] ...1 24573.372947: tracing_mark_write: E|13131
51042           <...>-13252 (-----) [002] ...1 24573.372951: tracing_mark_write: E|13131
51043           <...>-13252 (-----) [002] ...1 24573.372960: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51044           <...>-13252 (-----) [002] ...1 24573.372964: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51045           <...>-13252 (-----) [002] ...1 24573.373048: tracing_mark_write: E|13131
51046           <...>-13252 (-----) [002] ...1 24573.373051: tracing_mark_write: E|13131
51047           <...>-13252 (-----) [002] ...1 24573.373116: tracing_mark_write: E|13131
51048           <...>-13252 (-----) [002] d..1 24573.373121: sched_waking: comm=id.nn.benchmark pid=13251 prio=110 target_cpu=002
51049           <...>-13252 (-----) [002] dn.2 24573.373135: sched_wakeup: comm=id.nn.benchmark pid=13251 prio=110 target_cpu=002
51050           <...>-13252 (-----) [002] d..2 24573.373140: sched_switch: prev_comm=id.nn.benchmark prev_pid=13252 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13251 next_prio=110
51051           <...>-13251 (-----) [002] d..2 24573.373155: sched_switch: prev_comm=id.nn.benchmark prev_pid=13251 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13252 next_prio=110
51052           <...>-13252 (-----) [002] ...1 24573.373170: tracing_mark_write: E|13131
51053           <...>-13252 (-----) [002] d..1 24573.373388: sched_waking: comm=id.nn.benchmark pid=13251 prio=110 target_cpu=002
51054           <...>-13252 (-----) [002] dn.2 24573.373397: sched_wakeup: comm=id.nn.benchmark pid=13251 prio=110 target_cpu=002
51055           <...>-13252 (-----) [002] d..2 24573.373401: sched_switch: prev_comm=id.nn.benchmark prev_pid=13252 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13251 next_prio=110
51056           <...>-13251 (-----) [002] d..1 24573.373500: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
51057 id.nn.benchmark-13158 (13131) [004] dnh1 24573.373518: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
51058 id.nn.benchmark-13158 (13131) [004] d..2 24573.373522: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
51059           <...>-13131 (-----) [004] d..2 24573.373528: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
51060           <...>-13251 (-----) [002] d..1 24573.373564: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
51061 id.nn.benchmark-13158 (13131) [004] dnh1 24573.373577: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
51062 id.nn.benchmark-13158 (13131) [004] d..2 24573.373580: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
51063           <...>-13131 (-----) [004] ...1 24573.373594: tracing_mark_write: E|13131
51064           <...>-13131 (-----) [004] ...1 24573.373596: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
51065           <...>-13131 (-----) [004] ...1 24573.373599: tracing_mark_write: E|13131
51066           <...>-13131 (-----) [004] ...1 24573.373600: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
51067           <...>-13131 (-----) [004] ...1 24573.373603: tracing_mark_write: E|13131
51068           <...>-13251 (-----) [002] d..2 24573.373631: sched_switch: prev_comm=id.nn.benchmark prev_pid=13251 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13252 next_prio=110
51069           <...>-13252 (-----) [002] d..2 24573.373655: sched_switch: prev_comm=id.nn.benchmark prev_pid=13252 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
51070           <...>-13131 (-----) [004] ...1 24573.373665: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
51071           <...>-13131 (-----) [004] ...1 24573.373689: tracing_mark_write: E|13131
51072           <...>-13131 (-----) [004] ...1 24573.373692: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
51073           <...>-13131 (-----) [004] ...1 24573.373694: tracing_mark_write: E|13131
51074           <...>-13131 (-----) [004] ...1 24573.373695: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
51075           <...>-13131 (-----) [004] ...1 24573.373697: tracing_mark_write: E|13131
51076           <...>-13131 (-----) [004] ...1 24573.373699: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
51077           <...>-13131 (-----) [004] ...1 24573.373757: tracing_mark_write: E|13131
51078           <...>-13131 (-----) [004] ...1 24573.373759: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
51079           <...>-13131 (-----) [004] d..2 24573.373764: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
51080     logd.writer-563   (  555) [002] d..2 24573.373906: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13253 next_prio=110
51081           <...>-13253 (-----) [002] d.h4 24573.373948: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
51082           <...>-13253 (-----) [002] d.h4 24573.373956: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
51083 id.nn.benchmark-13158 (13131) [004] dnh1 24573.373960: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
51084 id.nn.benchmark-13158 (13131) [004] d..2 24573.373963: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
51085           <...>-13253 (-----) [002] dnh5 24573.373963: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
51086           <...>-13253 (-----) [002] d..2 24573.373969: sched_switch: prev_comm=id.nn.benchmark prev_pid=13253 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
51087         sugov:4-560   (  560) [004] d..2 24573.373969: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
51088         sugov:0-559   (  559) [002] d..2 24573.373978: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13253 next_prio=110
51089           <...>-13253 (-----) [002] d..2 24573.374033: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
51090           <...>-13253 (-----) [002] d..3 24573.374043: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
51091 id.nn.benchmark-13158 (13131) [004] d.s2 24573.374224: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
51092 id.nn.benchmark-13158 (13131) [004] d.s3 24573.374231: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
51093           <...>-13253 (-----) [002] d.s2 24573.374234: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
51094 id.nn.benchmark-13160 (13131) [007] d..2 24573.374240: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
51095 id.nn.benchmark-13156 (13131) [006] dnh1 24573.374256: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=006
51096 id.nn.benchmark-13156 (13131) [006] d..2 24573.374259: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
51097     rcu_preempt-7     (    7) [006] d..2 24573.374262: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=004
51098     rcu_preempt-7     (    7) [006] d..3 24573.374276: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=004
51099     rcu_preempt-7     (    7) [006] d..2 24573.374281: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
51100 id.nn.benchmark-13158 (13131) [004] d..2 24573.374282: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
51101         rcuop/0-10    (   10) [004] d..2 24573.374289: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
51102  kworker/u16:15-18488 (18488) [007] d..2 24573.374357: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
51103           <...>-13253 (-----) [002] d..2 24573.374365: sched_switch: prev_comm=id.nn.benchmark prev_pid=13253 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
51104 id.nn.benchmark-13159 (13131) [003] d.s2 24573.374391: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
51105 id.nn.benchmark-13160 (13131) [007] d.h1 24573.374405: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
51106 id.nn.benchmark-13160 (13131) [007] dnh1 24573.374407: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
51107 id.nn.benchmark-13160 (13131) [007] d..2 24573.374409: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
51108  kworker/u16:15-18488 (18488) [007] d..2 24573.374414: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
51109     logd.writer-563   (  555) [002] d..2 24573.374529: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13254 next_prio=110
51110           <...>-13254 (-----) [002] ...1 24573.374555: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
51111           <...>-13254 (-----) [002] ...1 24573.374560: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
51112           <...>-13254 (-----) [002] d..2 24573.374617: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
51113           <...>-13254 (-----) [002] d..3 24573.374627: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
51114           <...>-13254 (-----) [002] ...1 24573.374695: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51115           <...>-13254 (-----) [002] ...1 24573.374700: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51116           <...>-13254 (-----) [002] ...1 24573.376671: tracing_mark_write: E|13131
51117           <...>-13254 (-----) [002] ...1 24573.376675: tracing_mark_write: E|13131
51118           <...>-13254 (-----) [002] ...1 24573.376686: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51119           <...>-13254 (-----) [002] ...1 24573.376690: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51120           <...>-13254 (-----) [002] ...1 24573.377389: tracing_mark_write: E|13131
51121           <...>-13254 (-----) [002] ...1 24573.377393: tracing_mark_write: E|13131
51122           <...>-13254 (-----) [002] ...1 24573.377405: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51123           <...>-13254 (-----) [002] ...1 24573.377409: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51124 id.nn.benchmark-13158 (13131) [004] d.s2 24573.377557: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
51125 id.nn.benchmark-13158 (13131) [004] d.s3 24573.377564: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
51126 id.nn.benchmark-13160 (13131) [007] d..2 24573.377584: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
51127 id.nn.benchmark-13156 (13131) [006] d.H2 24573.377592: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
51128 id.nn.benchmark-13156 (13131) [006] dnH3 24573.377600: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
51129 id.nn.benchmark-13156 (13131) [006] dnH2 24573.377601: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
51130 id.nn.benchmark-13156 (13131) [006] d..2 24573.377609: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
51131           <...>-13254 (-----) [002] dnh1 24573.377613: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
51132         sugov:4-560   (  560) [006] d..2 24573.377614: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
51133           <...>-13254 (-----) [002] d..2 24573.377619: sched_switch: prev_comm=id.nn.benchmark prev_pid=13254 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
51134         sugov:0-559   (  559) [002] d..2 24573.377628: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13254 next_prio=110
51135  kworker/u16:15-18488 (18488) [007] d..2 24573.377677: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
51136           <...>-13254 (-----) [002] ...1 24573.377824: tracing_mark_write: E|13131
51137           <...>-13254 (-----) [002] ...1 24573.377829: tracing_mark_write: E|13131
51138           <...>-13254 (-----) [002] ...1 24573.377840: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51139           <...>-13254 (-----) [002] ...1 24573.377844: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51140           <...>-13254 (-----) [002] ...1 24573.378079: tracing_mark_write: E|13131
51141           <...>-13254 (-----) [002] ...1 24573.378082: tracing_mark_write: E|13131
51142           <...>-13254 (-----) [002] ...1 24573.378092: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51143           <...>-13254 (-----) [002] ...1 24573.378096: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51144           <...>-13254 (-----) [002] ...1 24573.378491: tracing_mark_write: E|13131
51145           <...>-13254 (-----) [002] ...1 24573.378495: tracing_mark_write: E|13131
51146           <...>-13254 (-----) [002] ...1 24573.378504: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51147           <...>-13254 (-----) [002] ...1 24573.378508: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51148           <...>-13157 (-----) [000] d.h4 24573.378658: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
51149           <...>-13157 (-----) [000] d.h4 24573.378678: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
51150           <...>-13154 (-----) [005] dnh1 24573.378679: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=005
51151           <...>-13154 (-----) [005] d..2 24573.378682: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
51152           <...>-13157 (-----) [000] d.h5 24573.378688: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
51153  crtc_event:111-254   (  254) [005] d..2 24573.378693: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
51154           <...>-13254 (-----) [002] d..2 24573.378698: sched_switch: prev_comm=id.nn.benchmark prev_pid=13254 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
51155 crtc_commit:111-253   (  253) [002] d..2 24573.378819: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13254 next_prio=110
51156           <...>-13254 (-----) [002] ...1 24573.379024: tracing_mark_write: E|13131
51157           <...>-13254 (-----) [002] ...1 24573.379028: tracing_mark_write: E|13131
51158           <...>-13254 (-----) [002] ...1 24573.379044: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51159           <...>-13254 (-----) [002] ...1 24573.379049: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51160           <...>-13254 (-----) [002] ...1 24573.379239: tracing_mark_write: E|13131
51161           <...>-13254 (-----) [002] ...1 24573.379243: tracing_mark_write: E|13131
51162           <...>-13254 (-----) [002] ...1 24573.379255: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51163           <...>-13254 (-----) [002] ...1 24573.379259: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51164           <...>-13254 (-----) [002] ...1 24573.379328: tracing_mark_write: E|13131
51165           <...>-13254 (-----) [002] ...1 24573.379332: tracing_mark_write: E|13131
51166           <...>-13254 (-----) [002] ...1 24573.379342: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
51167           <...>-13254 (-----) [002] ...1 24573.379347: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
51168           <...>-13254 (-----) [002] ...1 24573.379628: tracing_mark_write: E|13131
51169           <...>-13254 (-----) [002] ...1 24573.379632: tracing_mark_write: E|13131
51170           <...>-13254 (-----) [002] ...1 24573.379640: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
51171           <...>-13254 (-----) [002] ...1 24573.379644: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
51172           <...>-13254 (-----) [002] ...1 24573.379691: tracing_mark_write: E|13131
51173           <...>-13254 (-----) [002] ...1 24573.379694: tracing_mark_write: E|13131
51174           <...>-13254 (-----) [002] ...1 24573.379702: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
51175           <...>-13254 (-----) [002] ...1 24573.379706: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
51176           <...>-13254 (-----) [002] ...1 24573.379722: tracing_mark_write: E|13131
51177           <...>-13254 (-----) [002] ...1 24573.379725: tracing_mark_write: E|13131
51178           <...>-13254 (-----) [002] ...1 24573.379735: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
51179           <...>-13254 (-----) [002] ...1 24573.379738: tracing_mark_write: E|13131
51180           <...>-13254 (-----) [002] ...1 24573.379748: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
51181           <...>-13254 (-----) [002] ...1 24573.379752: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
51182           <...>-13254 (-----) [002] ...1 24573.380605: tracing_mark_write: E|13131
51183           <...>-13254 (-----) [002] ...1 24573.380608: tracing_mark_write: E|13131
51184           <...>-13254 (-----) [002] ...1 24573.380616: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51185           <...>-13254 (-----) [002] ...1 24573.380619: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51186           <...>-13254 (-----) [002] ...1 24573.380703: tracing_mark_write: E|13131
51187           <...>-13254 (-----) [002] ...1 24573.380706: tracing_mark_write: E|13131
51188           <...>-13254 (-----) [002] ...1 24573.380754: tracing_mark_write: E|13131
51189           <...>-13254 (-----) [002] d..1 24573.380758: sched_waking: comm=id.nn.benchmark pid=13253 prio=110 target_cpu=002
51190           <...>-13254 (-----) [002] dn.2 24573.380772: sched_wakeup: comm=id.nn.benchmark pid=13253 prio=110 target_cpu=002
51191           <...>-13254 (-----) [002] d..2 24573.380778: sched_switch: prev_comm=id.nn.benchmark prev_pid=13254 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13253 next_prio=110
51192           <...>-13253 (-----) [002] d..2 24573.380790: sched_switch: prev_comm=id.nn.benchmark prev_pid=13253 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13254 next_prio=110
51193           <...>-13254 (-----) [002] ...1 24573.380805: tracing_mark_write: E|13131
51194 id.nn.benchmark-13158 (13131) [004] d.s2 24573.380891: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
51195 id.nn.benchmark-13156 (13131) [006] d.s1 24573.380892: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=006
51196 id.nn.benchmark-13156 (13131) [006] dns2 24573.380897: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=006
51197 id.nn.benchmark-13158 (13131) [004] d.s3 24573.380897: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
51198 id.nn.benchmark-13156 (13131) [006] d..2 24573.380899: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
51199 id.nn.benchmark-13158 (13131) [004] d.s2 24573.380900: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
51200           <...>-13254 (-----) [002] d.s2 24573.380901: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=005
51201 id.nn.benchmark-13160 (13131) [007] d..2 24573.380903: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
51202 id.nn.benchmark-13158 (13131) [004] dns3 24573.380904: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
51203     rcu_preempt-7     (    7) [006] d..2 24573.380905: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
51204 id.nn.benchmark-13158 (13131) [004] d..2 24573.380907: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=kworker/4:0 next_pid=24269 next_prio=120
51205           <...>-13154 (-----) [005] dnh1 24573.380918: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=005
51206           <...>-13154 (-----) [005] d..2 24573.380920: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
51207  crtc_event:111-254   (  254) [005] d..2 24573.380927: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
51208     kworker/4:0-24269 (24269) [004] d..2 24573.380931: sched_switch: prev_comm=kworker/4:0 prev_pid=24269 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
51209           <...>-13157 (-----) [000] d.h4 24573.381007: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
51210           <...>-13157 (-----) [000] d.h5 24573.381017: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
51211           <...>-13254 (-----) [002] d..2 24573.381024: sched_switch: prev_comm=id.nn.benchmark prev_pid=13254 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
51212 crtc_commit:111-253   (  253) [002] d..2 24573.381076: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13254 next_prio=110
51213           <...>-13254 (-----) [002] d..1 24573.381112: sched_waking: comm=id.nn.benchmark pid=13253 prio=110 target_cpu=002
51214           <...>-13254 (-----) [002] dn.2 24573.381121: sched_wakeup: comm=id.nn.benchmark pid=13253 prio=110 target_cpu=002
51215           <...>-13254 (-----) [002] d..2 24573.381125: sched_switch: prev_comm=id.nn.benchmark prev_pid=13254 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13253 next_prio=110
51216  kworker/u16:15-18488 (18488) [007] d..2 24573.381151: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
51217           <...>-13253 (-----) [002] d..1 24573.381213: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
51218           <...>-13154 (-----) [005] dnh1 24573.381235: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
51219           <...>-13154 (-----) [005] d..2 24573.381237: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
51220           <...>-13131 (-----) [005] d..2 24573.381243: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
51221           <...>-13253 (-----) [002] d..1 24573.381280: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
51222           <...>-13154 (-----) [005] dnh1 24573.381292: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
51223           <...>-13154 (-----) [005] d..2 24573.381295: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
51224           <...>-13157 (-----) [000] d.h4 24573.381298: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=005
51225           <...>-13131 (-----) [005] ...1 24573.381309: tracing_mark_write: E|13131
51226           <...>-13131 (-----) [005] ...1 24573.381311: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
51227           <...>-13131 (-----) [005] ...1 24573.381314: tracing_mark_write: E|13131
51228 id.nn.benchmark-13156 (13131) [006] dnh1 24573.381315: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=006
51229           <...>-13131 (-----) [005] ...1 24573.381316: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
51230           <...>-13131 (-----) [005] ...1 24573.381317: tracing_mark_write: E|13131
51231 id.nn.benchmark-13156 (13131) [006] d..2 24573.381317: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
51232  crtc_event:111-254   (  254) [006] d..2 24573.381323: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
51233           <...>-13253 (-----) [002] d..2 24573.381337: sched_switch: prev_comm=id.nn.benchmark prev_pid=13253 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13254 next_prio=110
51234           <...>-13254 (-----) [002] d..2 24573.381358: sched_switch: prev_comm=id.nn.benchmark prev_pid=13254 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
51235           <...>-13131 (-----) [005] ...1 24573.381377: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
51236           <...>-13131 (-----) [005] ...1 24573.381400: tracing_mark_write: E|13131
51237           <...>-13131 (-----) [005] ...1 24573.381402: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
51238           <...>-13131 (-----) [005] ...1 24573.381405: tracing_mark_write: E|13131
51239           <...>-13131 (-----) [005] ...1 24573.381407: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
51240           <...>-13131 (-----) [005] ...1 24573.381408: tracing_mark_write: E|13131
51241           <...>-13131 (-----) [005] ...1 24573.381410: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
51242           <...>-13131 (-----) [005] ...1 24573.381458: tracing_mark_write: E|13131
51243           <...>-13131 (-----) [005] ...1 24573.381460: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
51244           <...>-13131 (-----) [005] d..2 24573.381466: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
51245     logd.writer-563   (  555) [002] d..2 24573.381568: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13255 next_prio=110
51246           <...>-13255 (-----) [002] d.h4 24573.381600: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
51247           <...>-13255 (-----) [002] d.h4 24573.381608: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
51248 id.nn.benchmark-13156 (13131) [006] dnh1 24573.381611: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
51249 id.nn.benchmark-13156 (13131) [006] d..2 24573.381613: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
51250           <...>-13255 (-----) [002] dnh5 24573.381614: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
51251         sugov:4-560   (  560) [006] d..2 24573.381616: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
51252           <...>-13255 (-----) [002] d..2 24573.381620: sched_switch: prev_comm=id.nn.benchmark prev_pid=13255 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
51253         sugov:0-559   (  559) [002] d..2 24573.381628: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13255 next_prio=110
51254           <...>-13255 (-----) [002] d..2 24573.381683: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
51255           <...>-13255 (-----) [002] d..3 24573.381693: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
51256           <...>-13255 (-----) [002] d..2 24573.381967: sched_switch: prev_comm=id.nn.benchmark prev_pid=13255 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
51257     logd.writer-563   (  555) [002] d..2 24573.382122: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13256 next_prio=110
51258           <...>-13256 (-----) [002] ...1 24573.382148: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
51259           <...>-13256 (-----) [002] ...1 24573.382153: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
51260           <...>-13256 (-----) [002] d..2 24573.382208: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
51261           <...>-13256 (-----) [002] d..3 24573.382219: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
51262           <...>-13256 (-----) [002] ...1 24573.382284: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51263           <...>-13256 (-----) [002] ...1 24573.382289: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51264           <...>-13154 (-----) [005] d.h1 24573.383167: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=005
51265           <...>-13154 (-----) [005] dnh2 24573.383171: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=005
51266           <...>-13154 (-----) [005] d..2 24573.383176: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
51267        DispSync-23904 (23896) [005] d..1 24573.383188: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
51268           <...>-13157 (-----) [000] dnh1 24573.383200: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
51269        DispSync-23904 (23896) [005] d..2 24573.383200: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
51270           <...>-13157 (-----) [000] d..2 24573.383206: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
51271  appEventThread-23905 (23896) [000] d..3 24573.383245: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
51272 id.nn.benchmark-13156 (13131) [006] dnh1 24573.383262: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
51273 id.nn.benchmark-13156 (13131) [006] d..2 24573.383264: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
51274  appEventThread-23905 (23896) [000] d..2 24573.383272: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
51275<...>-24151 ( 24151) [006] .... 24573.383462: binder_transaction: transaction=1669917 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
51276<...>-24151 ( 24151) [006] d..4 24573.383468: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
51277<...>-24151 ( 24151) [006] d..5 24573.383482: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
51278           <...>-13154 (-----) [005] d..2 24573.383488: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
51279  Binder:23896_5-25989 (23896) [005] .... 24573.383492: binder_transaction_received: transaction=1669917
51280<...>-24151 ( 24151) [006] d..3 24573.383503: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
51281  Binder:23896_5-25989 (23896) [005] d..1 24573.383509: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
51282<...>-24151 ( 24151) [006] d..4 24573.383516: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
51283           <...>-13157 (-----) [000] dnh1 24573.383519: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
51284 id.nn.benchmark-13160 (13131) [007] d..2 24573.383522: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
51285           <...>-13157 (-----) [000] d..2 24573.383524: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
51286  Binder:23896_5-25989 (23896) [005] d..2 24573.383526: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
51287    RenderThread-24437 (24151) [007] d..2 24573.383538: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
51288  appEventThread-23905 (23896) [000] d..2 24573.383540: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
51289<...>-24151 ( 24151) [006] d..3 24573.383578: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
51290<...>-24151 ( 24151) [006] d..4 24573.383586: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
51291 id.nn.benchmark-13160 (13131) [007] d..2 24573.383592: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
51292<...>-24151 ( 24151) [006] d..2 24573.383593: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
51293    RenderThread-24437 (24151) [007] d..1 24573.383637: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
51294    RenderThread-24437 (24151) [007] d..2 24573.383645: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
51295 id.nn.benchmark-13156 (13131) [006] d..2 24573.383651: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
51296<...>-24151 ( 24151) [006] d..2 24573.383672: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
51297    RenderThread-24437 (24151) [007] .... 24573.383674: binder_transaction: transaction=1669918 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
51298    RenderThread-24437 (24151) [007] d..4 24573.383677: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
51299    RenderThread-24437 (24151) [007] d..5 24573.383684: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
51300    RenderThread-24437 (24151) [007] d..2 24573.383689: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
51301           <...>-13154 (-----) [005] d..2 24573.383690: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
51302  Binder:23896_5-25989 (23896) [005] .... 24573.383692: binder_transaction_received: transaction=1669918
51303  Binder:23896_5-25989 (23896) [005] .... 24573.383717: binder_transaction: transaction=1669919 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
51304  Binder:23896_5-25989 (23896) [005] d..2 24573.383722: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
51305  Binder:23896_5-25989 (23896) [005] d..3 24573.383733: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
51306 id.nn.benchmark-13156 (13131) [006] d..2 24573.383739: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
51307    RenderThread-24437 (24151) [006] .... 24573.383742: binder_transaction_received: transaction=1669919
51308  Binder:23896_5-25989 (23896) [005] d..2 24573.383742: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
51309 id.nn.benchmark-13159 (13131) [003] d.s2 24573.384241: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=006
51310 id.nn.benchmark-13160 (13131) [007] dnh1 24573.384260: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
51311 id.nn.benchmark-13160 (13131) [007] d..2 24573.384263: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
51312     rcu_preempt-7     (    7) [007] d..2 24573.384265: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=004
51313     rcu_preempt-7     (    7) [007] d..3 24573.384276: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=005
51314     rcu_preempt-7     (    7) [007] d..2 24573.384281: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
51315           <...>-13154 (-----) [005] d..2 24573.384282: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
51316         rcuop/2-29    (   29) [005] d..2 24573.384311: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
51317    RenderThread-24437 (24151) [006] d..2 24573.384362: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
51318 id.nn.benchmark-13156 (13131) [006] d.h1 24573.384461: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
51319 id.nn.benchmark-13156 (13131) [006] d.h2 24573.384467: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
51320 id.nn.benchmark-13156 (13131) [006] dnh2 24573.384469: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
51321 id.nn.benchmark-13156 (13131) [006] d..2 24573.384473: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
51322    RenderThread-24437 (24151) [006] .... 24573.384557: binder_transaction: transaction=1669920 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
51323    RenderThread-24437 (24151) [006] d..4 24573.384562: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
51324    RenderThread-24437 (24151) [006] d..5 24573.384571: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
51325    RenderThread-24437 (24151) [006] d..2 24573.384575: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
51326           <...>-13154 (-----) [005] d..2 24573.384577: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
51327  Binder:23896_5-25989 (23896) [005] .... 24573.384578: binder_transaction_received: transaction=1669920
51328           <...>-13157 (-----) [000] d.h2 24573.384589: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
51329           <...>-13256 (-----) [002] ...1 24573.384603: tracing_mark_write: E|13131
51330           <...>-13256 (-----) [002] ...1 24573.384608: tracing_mark_write: E|13131
51331 id.nn.benchmark-13160 (13131) [007] dnh1 24573.384610: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
51332 id.nn.benchmark-13160 (13131) [007] d..2 24573.384613: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
51333           <...>-13256 (-----) [002] ...1 24573.384622: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51334           <...>-13256 (-----) [002] ...1 24573.384626: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51335 kgsl_worker_thr-246   (  246) [007] d..2 24573.384636: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
51336  Binder:23896_5-25989 (23896) [005] .... 24573.384637: binder_transaction: transaction=1669921 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
51337  Binder:23896_5-25989 (23896) [005] d..2 24573.384639: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
51338 kgsl_worker_thr-246   (  246) [007] d..3 24573.384648: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
51339  Binder:23896_5-25989 (23896) [005] d..3 24573.384653: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
51340 id.nn.benchmark-13156 (13131) [006] d..2 24573.384653: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
51341 kgsl_worker_thr-246   (  246) [007] d..2 24573.384658: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
51342    RenderThread-24437 (24151) [007] .... 24573.384661: binder_transaction_received: transaction=1669921
51343  Binder:23896_5-25989 (23896) [005] d..2 24573.384662: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
51344  kworker/u16:15-18488 (18488) [006] d..2 24573.384671: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
51345    RenderThread-24437 (24151) [007] d..2 24573.384689: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
51346           <...>-13256 (-----) [002] ...1 24573.385337: tracing_mark_write: E|13131
51347           <...>-13256 (-----) [002] ...1 24573.385341: tracing_mark_write: E|13131
51348           <...>-13256 (-----) [002] ...1 24573.385357: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51349           <...>-13256 (-----) [002] ...1 24573.385361: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51350           <...>-13256 (-----) [002] ...1 24573.385690: tracing_mark_write: E|13131
51351           <...>-13256 (-----) [002] ...1 24573.385694: tracing_mark_write: E|13131
51352           <...>-13256 (-----) [002] ...1 24573.385705: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51353           <...>-13256 (-----) [002] ...1 24573.385709: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51354           <...>-13256 (-----) [002] ...1 24573.385940: tracing_mark_write: E|13131
51355           <...>-13256 (-----) [002] ...1 24573.385944: tracing_mark_write: E|13131
51356           <...>-13256 (-----) [002] ...1 24573.385954: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51357           <...>-13256 (-----) [002] ...1 24573.385958: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51358           <...>-13256 (-----) [002] ...1 24573.386353: tracing_mark_write: E|13131
51359           <...>-13256 (-----) [002] ...1 24573.386357: tracing_mark_write: E|13131
51360           <...>-13256 (-----) [002] ...1 24573.386367: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51361           <...>-13256 (-----) [002] ...1 24573.386371: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51362           <...>-13256 (-----) [002] ...1 24573.386757: tracing_mark_write: E|13131
51363           <...>-13256 (-----) [002] ...1 24573.386760: tracing_mark_write: E|13131
51364           <...>-13256 (-----) [002] ...1 24573.386778: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51365           <...>-13256 (-----) [002] ...1 24573.386782: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51366           <...>-13256 (-----) [002] ...1 24573.386972: tracing_mark_write: E|13131
51367           <...>-13256 (-----) [002] ...1 24573.386975: tracing_mark_write: E|13131
51368           <...>-13256 (-----) [002] ...1 24573.386988: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51369           <...>-13256 (-----) [002] ...1 24573.386992: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51370           <...>-13256 (-----) [002] ...1 24573.387062: tracing_mark_write: E|13131
51371           <...>-13256 (-----) [002] ...1 24573.387066: tracing_mark_write: E|13131
51372           <...>-13256 (-----) [002] ...1 24573.387077: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
51373           <...>-13256 (-----) [002] ...1 24573.387081: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
51374           <...>-13154 (-----) [005] d.h1 24573.387173: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=005
51375           <...>-13154 (-----) [005] dnh2 24573.387178: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=005
51376           <...>-13154 (-----) [005] d..2 24573.387183: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
51377        DispSync-23904 (23896) [005] d..1 24573.387190: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
51378        DispSync-23904 (23896) [005] d..2 24573.387202: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
51379 id.nn.benchmark-13155 (13131) [001] dnh1 24573.387204: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
51380 id.nn.benchmark-13155 (13131) [001] d..2 24573.387212: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
51381   sfEventThread-23906 (23896) [001] d..3 24573.387240: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
51382   sfEventThread-23906 (23896) [001] d..4 24573.387252: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
51383           <...>-13157 (-----) [000] d..2 24573.387262: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
51384   sfEventThread-23906 (23896) [001] d..2 24573.387266: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
51385           <...>-13256 (-----) [002] ...1 24573.387354: tracing_mark_write: E|13131
51386           <...>-13256 (-----) [002] ...1 24573.387357: tracing_mark_write: E|13131
51387           <...>-13256 (-----) [002] ...1 24573.387366: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
51388           <...>-13256 (-----) [002] ...1 24573.387370: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
51389           <...>-13256 (-----) [002] ...1 24573.387414: tracing_mark_write: E|13131
51390           <...>-13256 (-----) [002] ...1 24573.387417: tracing_mark_write: E|13131
51391           <...>-13256 (-----) [002] ...1 24573.387425: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
51392           <...>-13256 (-----) [002] ...1 24573.387430: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
51393           <...>-13256 (-----) [002] ...1 24573.387444: tracing_mark_write: E|13131
51394           <...>-13256 (-----) [002] ...1 24573.387447: tracing_mark_write: E|13131
51395           <...>-13256 (-----) [002] ...1 24573.387457: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
51396           <...>-13256 (-----) [002] ...1 24573.387459: tracing_mark_write: E|13131
51397           <...>-13256 (-----) [002] ...1 24573.387467: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
51398           <...>-13256 (-----) [002] ...1 24573.387471: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
51399  surfaceflinger-23896 (23896) [000] d..1 24573.387499: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
51400  surfaceflinger-23896 (23896) [000] d..2 24573.387511: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
51401 id.nn.benchmark-13155 (13131) [001] d..2 24573.387518: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
51402   sfEventThread-23906 (23896) [001] d..2 24573.387532: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
51403 id.nn.benchmark-13158 (13131) [004] d.s2 24573.387554: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
51404 id.nn.benchmark-13158 (13131) [004] d.s3 24573.387566: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
51405 id.nn.benchmark-13160 (13131) [007] d..2 24573.387572: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
51406  kworker/u16:15-18488 (18488) [007] d..2 24573.387668: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
51407  surfaceflinger-23896 (23896) [000] ...1 24573.387678: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
51408  surfaceflinger-23896 (23896) [000] ...1 24573.387682: tracing_mark_write: E|23896
51409  surfaceflinger-23896 (23896) [000] .... 24573.387726: binder_transaction: transaction=1669922 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
51410  surfaceflinger-23896 (23896) [000] ...2 24573.387747: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
51411  surfaceflinger-23896 (23896) [000] d..4 24573.387755: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
51412 id.nn.benchmark-13158 (13131) [004] dnh1 24573.387771: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
51413 id.nn.benchmark-13158 (13131) [004] d..2 24573.387774: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
51414  surfaceflinger-23896 (23896) [000] d..2 24573.387776: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
51415  HwBinder:598_3-633   (  598) [004] .... 24573.387778: binder_transaction_received: transaction=1669922
51416  HwBinder:598_3-633   (  598) [004] ...1 24573.387804: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
51417  HwBinder:598_3-633   (  598) [004] ...1 24573.387856: tracing_mark_write: B|598|HWCSession::PresentDisplay::
51418  HwBinder:598_3-633   (  598) [004] ...1 24573.387919: tracing_mark_write: B|598|HWDeviceDRM::Commit::
51419  HwBinder:598_3-633   (  598) [004] ...1 24573.387923: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
51420  HwBinder:598_3-633   (  598) [004] d..2 24573.388130: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
51421           <...>-13256 (-----) [002] dnh1 24573.388144: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
51422           <...>-13256 (-----) [002] d..2 24573.388151: sched_switch: prev_comm=id.nn.benchmark prev_pid=13256 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
51423  HwBinder:598_3-633   (  598) [004] ...1 24573.388166: tracing_mark_write: E|598
51424  HwBinder:598_3-633   (  598) [004] ...1 24573.388167: tracing_mark_write: E|598
51425  HwBinder:598_3-633   (  598) [004] ...1 24573.388189: tracing_mark_write: E|598
51426  HwBinder:598_3-633   (  598) [004] ...1 24573.388208: tracing_mark_write: E|598
51427  HwBinder:598_3-633   (  598) [004] .... 24573.388213: binder_transaction: transaction=1669923 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
51428  HwBinder:598_3-633   (  598) [004] d..2 24573.388219: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
51429  HwBinder:598_3-633   (  598) [004] .... 24573.388224: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
51430           <...>-13157 (-----) [000] dnh1 24573.388230: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
51431           <...>-13157 (-----) [000] d..2 24573.388236: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
51432  surfaceflinger-23896 (23896) [000] .... 24573.388240: binder_transaction_received: transaction=1669923
51433  HwBinder:598_3-633   (  598) [004] d..2 24573.388245: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
51434  surfaceflinger-23896 (23896) [000] d..2 24573.388474: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
51435 crtc_commit:111-253   (  253) [002] d..2 24573.388760: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13256 next_prio=110
51436           <...>-13256 (-----) [002] ...1 24573.388978: tracing_mark_write: E|13131
51437           <...>-13256 (-----) [002] ...1 24573.388982: tracing_mark_write: E|13131
51438           <...>-13256 (-----) [002] ...1 24573.388993: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51439           <...>-13256 (-----) [002] ...1 24573.388997: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51440           <...>-13256 (-----) [002] ...1 24573.389081: tracing_mark_write: E|13131
51441           <...>-13256 (-----) [002] ...1 24573.389084: tracing_mark_write: E|13131
51442           <...>-13256 (-----) [002] ...1 24573.389150: tracing_mark_write: E|13131
51443           <...>-13256 (-----) [002] d..1 24573.389156: sched_waking: comm=id.nn.benchmark pid=13255 prio=110 target_cpu=002
51444           <...>-13256 (-----) [002] dn.2 24573.389170: sched_wakeup: comm=id.nn.benchmark pid=13255 prio=110 target_cpu=002
51445           <...>-13256 (-----) [002] d..2 24573.389176: sched_switch: prev_comm=id.nn.benchmark prev_pid=13256 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13255 next_prio=110
51446           <...>-13255 (-----) [002] d..2 24573.389191: sched_switch: prev_comm=id.nn.benchmark prev_pid=13255 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13256 next_prio=110
51447           <...>-13256 (-----) [002] ...1 24573.389207: tracing_mark_write: E|13131
51448           <...>-13256 (-----) [002] d..1 24573.389425: sched_waking: comm=id.nn.benchmark pid=13255 prio=110 target_cpu=002
51449           <...>-13256 (-----) [002] dn.2 24573.389434: sched_wakeup: comm=id.nn.benchmark pid=13255 prio=110 target_cpu=002
51450           <...>-13256 (-----) [002] d..2 24573.389438: sched_switch: prev_comm=id.nn.benchmark prev_pid=13256 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13255 next_prio=110
51451           <...>-13255 (-----) [002] d..1 24573.389536: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
51452           <...>-13154 (-----) [005] dnh1 24573.389552: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
51453           <...>-13154 (-----) [005] d..2 24573.389555: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
51454           <...>-13131 (-----) [005] d..2 24573.389561: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
51455           <...>-13255 (-----) [002] d..1 24573.389603: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
51456           <...>-13154 (-----) [005] dnh1 24573.389616: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
51457           <...>-13154 (-----) [005] d..2 24573.389618: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
51458           <...>-13131 (-----) [005] ...1 24573.389633: tracing_mark_write: E|13131
51459           <...>-13131 (-----) [005] ...1 24573.389636: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
51460           <...>-13131 (-----) [005] ...1 24573.389638: tracing_mark_write: E|13131
51461           <...>-13131 (-----) [005] ...1 24573.389640: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
51462           <...>-13131 (-----) [005] ...1 24573.389642: tracing_mark_write: E|13131
51463           <...>-13255 (-----) [002] d..2 24573.389674: sched_switch: prev_comm=id.nn.benchmark prev_pid=13255 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13256 next_prio=110
51464           <...>-13256 (-----) [002] d..2 24573.389696: sched_switch: prev_comm=id.nn.benchmark prev_pid=13256 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
51465           <...>-13131 (-----) [005] ...1 24573.389704: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
51466           <...>-13131 (-----) [005] ...1 24573.389728: tracing_mark_write: E|13131
51467           <...>-13131 (-----) [005] ...1 24573.389730: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
51468           <...>-13131 (-----) [005] ...1 24573.389732: tracing_mark_write: E|13131
51469           <...>-13131 (-----) [005] ...1 24573.389734: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
51470           <...>-13131 (-----) [005] ...1 24573.389736: tracing_mark_write: E|13131
51471           <...>-13131 (-----) [005] ...1 24573.389738: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
51472           <...>-13131 (-----) [005] ...1 24573.389800: tracing_mark_write: E|13131
51473           <...>-13131 (-----) [005] ...1 24573.389802: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
51474           <...>-13131 (-----) [005] d..2 24573.389806: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
51475     logd.writer-563   (  555) [002] d..2 24573.389938: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13257 next_prio=110
51476           <...>-13257 (-----) [002] d.h4 24573.389978: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
51477           <...>-13257 (-----) [002] d.h4 24573.389987: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
51478 id.nn.benchmark-13156 (13131) [006] dnh1 24573.389990: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
51479 id.nn.benchmark-13156 (13131) [006] d..2 24573.389993: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
51480           <...>-13257 (-----) [002] dnh5 24573.389994: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
51481           <...>-13257 (-----) [002] d..2 24573.390000: sched_switch: prev_comm=id.nn.benchmark prev_pid=13257 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
51482         sugov:4-560   (  560) [006] d..2 24573.390000: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
51483         sugov:0-559   (  559) [002] d..2 24573.390009: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13257 next_prio=110
51484           <...>-13257 (-----) [002] d..2 24573.390065: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
51485           <...>-13257 (-----) [002] d..3 24573.390075: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
51486           <...>-13257 (-----) [002] d..2 24573.390359: sched_switch: prev_comm=id.nn.benchmark prev_pid=13257 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
51487     logd.writer-563   (  555) [002] d..2 24573.390519: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13258 next_prio=110
51488           <...>-13258 (-----) [002] ...1 24573.390545: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
51489           <...>-13258 (-----) [002] ...1 24573.390550: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
51490           <...>-13258 (-----) [002] d..2 24573.390607: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
51491           <...>-13258 (-----) [002] d..3 24573.390618: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
51492           <...>-13258 (-----) [002] ...1 24573.390684: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51493           <...>-13258 (-----) [002] ...1 24573.390689: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51494 id.nn.benchmark-13158 (13131) [004] d.s2 24573.390892: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
51495 id.nn.benchmark-13158 (13131) [004] d.s3 24573.390900: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
51496           <...>-13157 (-----) [000] d.s2 24573.390903: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
51497 id.nn.benchmark-13160 (13131) [007] d..2 24573.390905: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
51498 id.nn.benchmark-13156 (13131) [006] dnh1 24573.390923: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=006
51499 id.nn.benchmark-13156 (13131) [006] d..2 24573.390926: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
51500     rcu_preempt-7     (    7) [006] d..2 24573.390929: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=004
51501     rcu_preempt-7     (    7) [006] d..3 24573.390944: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=004
51502     rcu_preempt-7     (    7) [006] d..2 24573.390949: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
51503 id.nn.benchmark-13158 (13131) [004] d..2 24573.390950: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
51504         rcuop/0-10    (   10) [004] d..2 24573.390957: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
51505  kworker/u16:15-18488 (18488) [007] d..2 24573.391126: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
51506           <...>-13258 (-----) [002] ...1 24573.392716: tracing_mark_write: E|13131
51507           <...>-13258 (-----) [002] ...1 24573.392720: tracing_mark_write: E|13131
51508           <...>-13258 (-----) [002] ...1 24573.392731: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51509           <...>-13258 (-----) [002] ...1 24573.392735: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51510           <...>-13258 (-----) [002] ...1 24573.393435: tracing_mark_write: E|13131
51511           <...>-13258 (-----) [002] ...1 24573.393439: tracing_mark_write: E|13131
51512           <...>-13258 (-----) [002] ...1 24573.393455: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51513           <...>-13258 (-----) [002] ...1 24573.393459: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51514           <...>-13258 (-----) [002] ...1 24573.393788: tracing_mark_write: E|13131
51515           <...>-13258 (-----) [002] ...1 24573.393791: tracing_mark_write: E|13131
51516           <...>-13258 (-----) [002] ...1 24573.393801: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51517           <...>-13258 (-----) [002] ...1 24573.393805: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51518           <...>-13258 (-----) [002] ...1 24573.394039: tracing_mark_write: E|13131
51519           <...>-13258 (-----) [002] ...1 24573.394042: tracing_mark_write: E|13131
51520           <...>-13258 (-----) [002] ...1 24573.394052: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51521           <...>-13258 (-----) [002] ...1 24573.394056: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51522           <...>-13258 (-----) [002] ...1 24573.394469: tracing_mark_write: E|13131
51523           <...>-13258 (-----) [002] ...1 24573.394472: tracing_mark_write: E|13131
51524           <...>-13258 (-----) [002] ...1 24573.394482: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51525           <...>-13258 (-----) [002] ...1 24573.394487: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51526           <...>-13258 (-----) [002] ...1 24573.394877: tracing_mark_write: E|13131
51527           <...>-13258 (-----) [002] ...1 24573.394881: tracing_mark_write: E|13131
51528           <...>-13258 (-----) [002] ...1 24573.394898: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51529           <...>-13258 (-----) [002] ...1 24573.394903: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51530           <...>-13258 (-----) [002] ...1 24573.395094: tracing_mark_write: E|13131
51531           <...>-13258 (-----) [002] ...1 24573.395098: tracing_mark_write: E|13131
51532           <...>-13258 (-----) [002] ...1 24573.395110: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51533           <...>-13258 (-----) [002] ...1 24573.395114: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51534           <...>-13157 (-----) [000] d.h4 24573.395137: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=006
51535           <...>-13157 (-----) [000] d.h4 24573.395152: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
51536 id.nn.benchmark-13156 (13131) [006] dnh1 24573.395154: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=006
51537 id.nn.benchmark-13156 (13131) [006] d..2 24573.395158: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
51538           <...>-13157 (-----) [000] d.h5 24573.395162: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
51539  crtc_event:111-254   (  254) [006] d..2 24573.395168: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
51540           <...>-13258 (-----) [002] d..2 24573.395172: sched_switch: prev_comm=id.nn.benchmark prev_pid=13258 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
51541 crtc_commit:111-253   (  253) [002] d..2 24573.395297: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13258 next_prio=110
51542           <...>-13258 (-----) [002] ...1 24573.395320: tracing_mark_write: E|13131
51543           <...>-13258 (-----) [002] ...1 24573.395324: tracing_mark_write: E|13131
51544           <...>-13258 (-----) [002] ...1 24573.395335: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
51545           <...>-13258 (-----) [002] ...1 24573.395339: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
51546           <...>-13258 (-----) [002] ...1 24573.395626: tracing_mark_write: E|13131
51547           <...>-13258 (-----) [002] ...1 24573.395630: tracing_mark_write: E|13131
51548           <...>-13258 (-----) [002] ...1 24573.395639: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
51549           <...>-13258 (-----) [002] ...1 24573.395644: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
51550           <...>-13258 (-----) [002] ...1 24573.395692: tracing_mark_write: E|13131
51551           <...>-13258 (-----) [002] ...1 24573.395695: tracing_mark_write: E|13131
51552           <...>-13258 (-----) [002] ...1 24573.395704: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
51553           <...>-13258 (-----) [002] ...1 24573.395707: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
51554           <...>-13258 (-----) [002] ...1 24573.395723: tracing_mark_write: E|13131
51555           <...>-13258 (-----) [002] ...1 24573.395727: tracing_mark_write: E|13131
51556           <...>-13258 (-----) [002] ...1 24573.395737: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
51557           <...>-13258 (-----) [002] ...1 24573.395740: tracing_mark_write: E|13131
51558           <...>-13258 (-----) [002] ...1 24573.395749: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
51559           <...>-13258 (-----) [002] ...1 24573.395753: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
51560           <...>-13258 (-----) [002] ...1 24573.396606: tracing_mark_write: E|13131
51561           <...>-13258 (-----) [002] ...1 24573.396609: tracing_mark_write: E|13131
51562           <...>-13258 (-----) [002] ...1 24573.396617: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51563           <...>-13258 (-----) [002] ...1 24573.396620: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51564           <...>-13258 (-----) [002] ...1 24573.396703: tracing_mark_write: E|13131
51565           <...>-13258 (-----) [002] ...1 24573.396706: tracing_mark_write: E|13131
51566           <...>-13258 (-----) [002] ...1 24573.396753: tracing_mark_write: E|13131
51567           <...>-13258 (-----) [002] d..1 24573.396757: sched_waking: comm=id.nn.benchmark pid=13257 prio=110 target_cpu=002
51568           <...>-13258 (-----) [002] dn.2 24573.396772: sched_wakeup: comm=id.nn.benchmark pid=13257 prio=110 target_cpu=002
51569           <...>-13258 (-----) [002] d..2 24573.396777: sched_switch: prev_comm=id.nn.benchmark prev_pid=13258 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13257 next_prio=110
51570           <...>-13257 (-----) [002] d..2 24573.396789: sched_switch: prev_comm=id.nn.benchmark prev_pid=13257 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13258 next_prio=110
51571           <...>-13258 (-----) [002] ...1 24573.396804: tracing_mark_write: E|13131
51572           <...>-13258 (-----) [002] d..1 24573.396994: sched_waking: comm=id.nn.benchmark pid=13257 prio=110 target_cpu=002
51573           <...>-13258 (-----) [002] dn.2 24573.397002: sched_wakeup: comm=id.nn.benchmark pid=13257 prio=110 target_cpu=002
51574           <...>-13258 (-----) [002] d..2 24573.397007: sched_switch: prev_comm=id.nn.benchmark prev_pid=13258 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13257 next_prio=110
51575           <...>-13257 (-----) [002] d..1 24573.397094: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
51576           <...>-13154 (-----) [005] dnh1 24573.397110: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
51577           <...>-13154 (-----) [005] d..2 24573.397113: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
51578           <...>-13131 (-----) [005] d..2 24573.397118: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
51579           <...>-13257 (-----) [002] d..1 24573.397155: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
51580           <...>-13154 (-----) [005] dnh1 24573.397169: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
51581           <...>-13154 (-----) [005] d..2 24573.397171: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
51582           <...>-13131 (-----) [005] ...1 24573.397183: tracing_mark_write: E|13131
51583           <...>-13131 (-----) [005] ...1 24573.397185: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
51584           <...>-13131 (-----) [005] ...1 24573.397187: tracing_mark_write: E|13131
51585           <...>-13131 (-----) [005] ...1 24573.397189: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
51586           <...>-13131 (-----) [005] ...1 24573.397190: tracing_mark_write: E|13131
51587           <...>-13257 (-----) [002] d..2 24573.397216: sched_switch: prev_comm=id.nn.benchmark prev_pid=13257 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13258 next_prio=110
51588           <...>-13258 (-----) [002] d..2 24573.397236: sched_switch: prev_comm=id.nn.benchmark prev_pid=13258 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
51589           <...>-13131 (-----) [005] ...1 24573.397250: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
51590           <...>-13131 (-----) [005] ...1 24573.397272: tracing_mark_write: E|13131
51591           <...>-13131 (-----) [005] ...1 24573.397274: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
51592           <...>-13131 (-----) [005] ...1 24573.397277: tracing_mark_write: E|13131
51593           <...>-13131 (-----) [005] ...1 24573.397278: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
51594           <...>-13131 (-----) [005] ...1 24573.397280: tracing_mark_write: E|13131
51595           <...>-13131 (-----) [005] ...1 24573.397281: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
51596           <...>-13131 (-----) [005] ...1 24573.397330: tracing_mark_write: E|13131
51597           <...>-13131 (-----) [005] ...1 24573.397332: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
51598           <...>-13131 (-----) [005] d..2 24573.397337: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
51599     logd.writer-563   (  555) [002] d..2 24573.397462: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13259 next_prio=110
51600           <...>-13157 (-----) [000] d.h4 24573.397479: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
51601           <...>-13259 (-----) [002] dnh4 24573.397502: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
51602           <...>-13157 (-----) [000] d.h5 24573.397505: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
51603           <...>-13259 (-----) [002] dnh4 24573.397511: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
51604 id.nn.benchmark-13156 (13131) [006] dnh1 24573.397514: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
51605 id.nn.benchmark-13156 (13131) [006] d..2 24573.397516: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
51606         sugov:4-560   (  560) [006] d..2 24573.397520: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
51607           <...>-13259 (-----) [002] dnh5 24573.397526: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
51608           <...>-13157 (-----) [000] d..2 24573.397535: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
51609           <...>-13259 (-----) [002] d..2 24573.397536: sched_switch: prev_comm=id.nn.benchmark prev_pid=13259 prev_prio=110 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
51610         sugov:0-559   (  559) [000] d..2 24573.397551: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
51611 id.nn.benchmark-13158 (13131) [004] d.s2 24573.397554: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
51612 crtc_commit:111-253   (  253) [002] d.s2 24573.397567: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=006
51613 id.nn.benchmark-13156 (13131) [006] dnh1 24573.397591: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=006
51614 id.nn.benchmark-13156 (13131) [006] d..2 24573.397606: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
51615 crtc_commit:111-253   (  253) [002] d.H2 24573.397608: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
51616  crtc_event:111-254   (  254) [006] d..2 24573.397613: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
51617           <...>-13157 (-----) [000] d.s4 24573.397621: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=006
51618           <...>-13157 (-----) [000] d.s5 24573.397638: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
51619 crtc_commit:111-253   (  253) [002] d..2 24573.397663: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
51620  kworker/u16:15-18488 (18488) [002] d..2 24573.397751: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
51621     rcu_preempt-7     (    7) [002] d..2 24573.397755: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=005
51622           <...>-13157 (-----) [000] d.h4 24573.397777: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=006
51623           <...>-13154 (-----) [005] dnh1 24573.397785: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=005
51624           <...>-13154 (-----) [005] d..2 24573.397788: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
51625     rcu_preempt-7     (    7) [002] d..2 24573.397793: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13259 next_prio=110
51626           <...>-13157 (-----) [000] d.h5 24573.397799: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
51627           <...>-13259 (-----) [002] d..2 24573.397807: sched_switch: prev_comm=id.nn.benchmark prev_pid=13259 prev_prio=110 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
51628         rcuop/2-29    (   29) [005] d..2 24573.397812: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
51629  crtc_event:111-254   (  254) [002] d..2 24573.397833: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13259 next_prio=110
51630           <...>-13259 (-----) [002] d..2 24573.397885: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
51631           <...>-13259 (-----) [002] d..3 24573.397895: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
51632           <...>-13259 (-----) [002] d..2 24573.398174: sched_switch: prev_comm=id.nn.benchmark prev_pid=13259 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
51633     logd.writer-563   (  555) [002] d..2 24573.398328: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13260 next_prio=110
51634           <...>-13260 (-----) [002] ...1 24573.398354: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
51635           <...>-13260 (-----) [002] ...1 24573.398358: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
51636           <...>-13260 (-----) [002] d..2 24573.398412: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
51637           <...>-13260 (-----) [002] d..3 24573.398422: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
51638           <...>-13260 (-----) [002] ...1 24573.398487: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51639           <...>-13260 (-----) [002] ...1 24573.398492: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51640           <...>-13154 (-----) [005] d.h1 24573.399641: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=005
51641           <...>-13154 (-----) [005] dnh2 24573.399645: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=005
51642           <...>-13154 (-----) [005] d..2 24573.399649: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
51643        DispSync-23904 (23896) [005] d..1 24573.399662: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
51644           <...>-13157 (-----) [000] dnh1 24573.399673: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
51645        DispSync-23904 (23896) [005] d..2 24573.399674: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
51646           <...>-13157 (-----) [000] d..2 24573.399679: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
51647  appEventThread-23905 (23896) [000] d..3 24573.399720: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
51648 id.nn.benchmark-13156 (13131) [006] dnh1 24573.399736: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
51649 id.nn.benchmark-13156 (13131) [006] d..2 24573.399738: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
51650  appEventThread-23905 (23896) [000] d..2 24573.399747: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
51651<...>-24151 ( 24151) [006] .... 24573.399929: binder_transaction: transaction=1669924 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
51652<...>-24151 ( 24151) [006] d..4 24573.399935: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
51653<...>-24151 ( 24151) [006] d..5 24573.399949: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
51654 id.nn.benchmark-13158 (13131) [004] d..2 24573.399955: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
51655  Binder:23896_5-25989 (23896) [004] .... 24573.399958: binder_transaction_received: transaction=1669924
51656<...>-24151 ( 24151) [006] d..3 24573.399969: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
51657<...>-24151 ( 24151) [006] d..4 24573.399977: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
51658  Binder:23896_5-25989 (23896) [004] d..1 24573.399977: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
51659 id.nn.benchmark-13160 (13131) [007] d..2 24573.399983: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
51660           <...>-13157 (-----) [000] dnh1 24573.399988: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
51661           <...>-13157 (-----) [000] d..2 24573.399993: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
51662  Binder:23896_5-25989 (23896) [004] d..2 24573.399994: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
51663    RenderThread-24437 (24151) [007] d..2 24573.399998: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
51664  appEventThread-23905 (23896) [000] d..2 24573.400010: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
51665<...>-24151 ( 24151) [006] d..3 24573.400036: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
51666<...>-24151 ( 24151) [006] d..4 24573.400044: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
51667<...>-24151 ( 24151) [006] d..2 24573.400050: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
51668 id.nn.benchmark-13160 (13131) [007] d..2 24573.400051: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
51669    RenderThread-24437 (24151) [007] d..1 24573.400096: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
51670    RenderThread-24437 (24151) [007] d..2 24573.400104: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
51671 id.nn.benchmark-13156 (13131) [006] d..2 24573.400111: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
51672    RenderThread-24437 (24151) [007] .... 24573.400131: binder_transaction: transaction=1669925 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
51673<...>-24151 ( 24151) [006] d..2 24573.400132: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
51674    RenderThread-24437 (24151) [007] d..4 24573.400134: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
51675    RenderThread-24437 (24151) [007] d..5 24573.400141: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
51676    RenderThread-24437 (24151) [007] d..2 24573.400145: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
51677 id.nn.benchmark-13158 (13131) [004] d..2 24573.400147: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
51678  Binder:23896_5-25989 (23896) [004] .... 24573.400149: binder_transaction_received: transaction=1669925
51679  Binder:23896_5-25989 (23896) [004] .... 24573.400174: binder_transaction: transaction=1669926 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
51680  Binder:23896_5-25989 (23896) [004] d..2 24573.400179: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
51681  Binder:23896_5-25989 (23896) [004] d..3 24573.400190: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
51682 id.nn.benchmark-13156 (13131) [006] d..2 24573.400196: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=24437 next_prio=120
51683  Binder:23896_5-25989 (23896) [004] d..2 24573.400199: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
51684    RenderThread-24437 (24151) [006] .... 24573.400199: binder_transaction_received: transaction=1669926
51685    RenderThread-24437 (24151) [006] d..2 24573.400800: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
51686 id.nn.benchmark-13156 (13131) [006] d.h1 24573.400890: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
51687 id.nn.benchmark-13158 (13131) [004] d.s2 24573.400894: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
51688 id.nn.benchmark-13156 (13131) [006] d.h2 24573.400895: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
51689 id.nn.benchmark-13156 (13131) [006] dnh2 24573.400897: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
51690 id.nn.benchmark-13156 (13131) [006] d..2 24573.400902: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
51691 id.nn.benchmark-13158 (13131) [004] d.s3 24573.400907: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
51692 id.nn.benchmark-13158 (13131) [004] d.H3 24573.400930: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
51693 id.nn.benchmark-13160 (13131) [007] d..2 24573.400930: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
51694 id.nn.benchmark-13158 (13131) [004] d.H4 24573.400939: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
51695 id.nn.benchmark-13158 (13131) [004] d.H3 24573.400940: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
51696           <...>-13154 (-----) [005] d..2 24573.400946: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
51697           <...>-13157 (-----) [000] dnh1 24573.400950: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
51698         sugov:4-560   (  560) [005] d..2 24573.400950: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
51699           <...>-13157 (-----) [000] d..2 24573.400956: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
51700         sugov:0-559   (  559) [000] d..2 24573.400965: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
51701    RenderThread-24437 (24151) [006] .... 24573.400981: binder_transaction: transaction=1669927 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
51702    RenderThread-24437 (24151) [006] d..4 24573.400989: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
51703    RenderThread-24437 (24151) [006] d..5 24573.400998: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
51704 id.nn.benchmark-13158 (13131) [004] d..2 24573.401004: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
51705    RenderThread-24437 (24151) [006] d..2 24573.401005: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
51706  Binder:23896_5-25989 (23896) [004] .... 24573.401006: binder_transaction_received: transaction=1669927
51707           <...>-13157 (-----) [000] d.h2 24573.401025: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
51708           <...>-13260 (-----) [002] ...1 24573.401029: tracing_mark_write: E|13131
51709           <...>-13260 (-----) [002] ...1 24573.401033: tracing_mark_write: E|13131
51710           <...>-13154 (-----) [005] dnh1 24573.401046: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
51711           <...>-13260 (-----) [002] ...1 24573.401048: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51712           <...>-13154 (-----) [005] d..2 24573.401051: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
51713           <...>-13260 (-----) [002] ...1 24573.401052: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51714  Binder:23896_5-25989 (23896) [004] .... 24573.401071: binder_transaction: transaction=1669928 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
51715  Binder:23896_5-25989 (23896) [004] d..2 24573.401073: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
51716 kgsl_worker_thr-246   (  246) [005] d..2 24573.401078: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
51717  Binder:23896_5-25989 (23896) [004] d..3 24573.401080: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
51718 id.nn.benchmark-13156 (13131) [006] d..2 24573.401086: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
51719  Binder:23896_5-25989 (23896) [004] d..2 24573.401088: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
51720    RenderThread-24437 (24151) [006] .... 24573.401089: binder_transaction_received: transaction=1669928
51721 kgsl_worker_thr-246   (  246) [005] d..3 24573.401092: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=005
51722    RenderThread-24437 (24151) [006] d..2 24573.401113: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
51723 kgsl_worker_thr-246   (  246) [005] d..2 24573.401114: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
51724  kworker/u16:15-18488 (18488) [007] d..2 24573.401124: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
51725  kworker/u16:10-23868 (23868) [005] d..2 24573.401206: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
51726           <...>-13260 (-----) [002] ...1 24573.401786: tracing_mark_write: E|13131
51727           <...>-13260 (-----) [002] ...1 24573.401790: tracing_mark_write: E|13131
51728           <...>-13260 (-----) [002] ...1 24573.401808: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51729           <...>-13260 (-----) [002] ...1 24573.401812: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51730           <...>-13260 (-----) [002] ...1 24573.402146: tracing_mark_write: E|13131
51731           <...>-13260 (-----) [002] ...1 24573.402150: tracing_mark_write: E|13131
51732           <...>-13260 (-----) [002] ...1 24573.402160: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51733           <...>-13260 (-----) [002] ...1 24573.402164: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51734           <...>-13260 (-----) [002] ...1 24573.402391: tracing_mark_write: E|13131
51735           <...>-13260 (-----) [002] ...1 24573.402395: tracing_mark_write: E|13131
51736           <...>-13260 (-----) [002] ...1 24573.402405: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51737           <...>-13260 (-----) [002] ...1 24573.402408: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51738           <...>-13260 (-----) [002] ...1 24573.402800: tracing_mark_write: E|13131
51739           <...>-13260 (-----) [002] ...1 24573.402804: tracing_mark_write: E|13131
51740           <...>-13260 (-----) [002] ...1 24573.402814: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51741           <...>-13260 (-----) [002] ...1 24573.402818: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51742           <...>-13260 (-----) [002] ...1 24573.403204: tracing_mark_write: E|13131
51743           <...>-13260 (-----) [002] ...1 24573.403207: tracing_mark_write: E|13131
51744           <...>-13260 (-----) [002] ...1 24573.403226: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51745           <...>-13260 (-----) [002] ...1 24573.403230: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51746           <...>-13260 (-----) [002] ...1 24573.403420: tracing_mark_write: E|13131
51747           <...>-13260 (-----) [002] ...1 24573.403424: tracing_mark_write: E|13131
51748           <...>-13260 (-----) [002] ...1 24573.403437: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51749           <...>-13260 (-----) [002] ...1 24573.403441: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51750           <...>-13260 (-----) [002] ...1 24573.403509: tracing_mark_write: E|13131
51751           <...>-13260 (-----) [002] ...1 24573.403512: tracing_mark_write: E|13131
51752           <...>-13260 (-----) [002] ...1 24573.403523: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
51753           <...>-13260 (-----) [002] ...1 24573.403528: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
51754           <...>-13154 (-----) [005] d.h1 24573.403645: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=005
51755           <...>-13154 (-----) [005] dnh2 24573.403649: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=005
51756           <...>-13154 (-----) [005] d..2 24573.403653: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
51757        DispSync-23904 (23896) [005] d..1 24573.403659: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
51758        DispSync-23904 (23896) [005] d..2 24573.403669: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
51759 id.nn.benchmark-13155 (13131) [001] dnh1 24573.403672: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
51760 id.nn.benchmark-13155 (13131) [001] d..2 24573.403680: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
51761   sfEventThread-23906 (23896) [001] d..3 24573.403707: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
51762   sfEventThread-23906 (23896) [001] d..4 24573.403719: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
51763           <...>-13157 (-----) [000] d..2 24573.403729: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
51764   sfEventThread-23906 (23896) [001] d..2 24573.403733: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
51765           <...>-13260 (-----) [002] ...1 24573.403804: tracing_mark_write: E|13131
51766           <...>-13260 (-----) [002] ...1 24573.403808: tracing_mark_write: E|13131
51767           <...>-13260 (-----) [002] ...1 24573.403817: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
51768           <...>-13260 (-----) [002] ...1 24573.403821: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
51769           <...>-13260 (-----) [002] ...1 24573.403866: tracing_mark_write: E|13131
51770           <...>-13260 (-----) [002] ...1 24573.403869: tracing_mark_write: E|13131
51771           <...>-13260 (-----) [002] ...1 24573.403877: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
51772           <...>-13260 (-----) [002] ...1 24573.403881: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
51773           <...>-13260 (-----) [002] ...1 24573.403896: tracing_mark_write: E|13131
51774           <...>-13260 (-----) [002] ...1 24573.403898: tracing_mark_write: E|13131
51775           <...>-13260 (-----) [002] ...1 24573.403907: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
51776           <...>-13260 (-----) [002] ...1 24573.403910: tracing_mark_write: E|13131
51777           <...>-13260 (-----) [002] ...1 24573.403918: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
51778           <...>-13260 (-----) [002] ...1 24573.403922: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
51779  surfaceflinger-23896 (23896) [000] d..1 24573.403962: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
51780  surfaceflinger-23896 (23896) [000] d..2 24573.403974: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
51781 id.nn.benchmark-13155 (13131) [001] d..2 24573.403981: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
51782   sfEventThread-23906 (23896) [001] d..2 24573.403995: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
51783  surfaceflinger-23896 (23896) [000] ...1 24573.404102: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
51784  surfaceflinger-23896 (23896) [000] ...1 24573.404106: tracing_mark_write: E|23896
51785  surfaceflinger-23896 (23896) [000] .... 24573.404149: binder_transaction: transaction=1669929 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
51786  surfaceflinger-23896 (23896) [000] ...2 24573.404170: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
51787  surfaceflinger-23896 (23896) [000] d..4 24573.404178: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
51788 id.nn.benchmark-13158 (13131) [004] dnh1 24573.404194: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
51789 id.nn.benchmark-13158 (13131) [004] d..2 24573.404197: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
51790  surfaceflinger-23896 (23896) [000] d..2 24573.404199: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
51791  HwBinder:598_3-633   (  598) [004] .... 24573.404201: binder_transaction_received: transaction=1669929
51792           <...>-13260 (-----) [002] d.s1 24573.404232: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
51793  HwBinder:598_3-633   (  598) [004] ...1 24573.404236: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
51794 id.nn.benchmark-13160 (13131) [007] dnh1 24573.404256: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
51795  HwBinder:598_3-633   (  598) [004] ...1 24573.404281: tracing_mark_write: B|598|HWCSession::PresentDisplay::
51796 id.nn.benchmark-13160 (13131) [007] d..2 24573.404281: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
51797           <...>-13260 (-----) [002] d.H3 24573.404283: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
51798           <...>-13260 (-----) [002] d.H3 24573.404290: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
51799           <...>-13154 (-----) [005] dnh1 24573.404293: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
51800           <...>-13154 (-----) [005] d..2 24573.404296: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
51801           <...>-13260 (-----) [002] d.H4 24573.404299: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
51802         sugov:4-560   (  560) [005] d..2 24573.404300: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
51803     rcu_preempt-7     (    7) [007] d..2 24573.404303: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=004
51804           <...>-13157 (-----) [000] d..2 24573.404307: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
51805         sugov:0-559   (  559) [000] d..2 24573.404315: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
51806 id.nn.benchmark-13159 (13131) [003] dnh1 24573.404337: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
51807     rcu_preempt-7     (    7) [007] d..2 24573.404338: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
51808  HwBinder:598_3-633   (  598) [004] ...1 24573.404341: tracing_mark_write: B|598|HWDeviceDRM::Commit::
51809 id.nn.benchmark-13159 (13131) [003] d..2 24573.404344: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
51810  HwBinder:598_3-633   (  598) [004] ...1 24573.404344: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
51811         rcuop/0-10    (   10) [003] d..2 24573.404357: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
51812  HwBinder:598_3-633   (  598) [004] d..2 24573.404547: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
51813           <...>-13260 (-----) [002] dnh1 24573.404561: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
51814           <...>-13260 (-----) [002] d..2 24573.404567: sched_switch: prev_comm=id.nn.benchmark prev_pid=13260 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
51815  HwBinder:598_3-633   (  598) [004] ...1 24573.404582: tracing_mark_write: E|598
51816  HwBinder:598_3-633   (  598) [004] ...1 24573.404583: tracing_mark_write: E|598
51817  HwBinder:598_3-633   (  598) [004] ...1 24573.404604: tracing_mark_write: E|598
51818  HwBinder:598_3-633   (  598) [004] ...1 24573.404623: tracing_mark_write: E|598
51819  HwBinder:598_3-633   (  598) [004] .... 24573.404628: binder_transaction: transaction=1669930 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
51820  HwBinder:598_3-633   (  598) [004] d..2 24573.404633: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
51821  HwBinder:598_3-633   (  598) [004] .... 24573.404639: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
51822           <...>-13157 (-----) [000] dnh1 24573.404644: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
51823           <...>-13157 (-----) [000] d..2 24573.404649: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
51824  surfaceflinger-23896 (23896) [000] .... 24573.404653: binder_transaction_received: transaction=1669930
51825  HwBinder:598_3-633   (  598) [004] d..2 24573.404659: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
51826  surfaceflinger-23896 (23896) [000] d..2 24573.404888: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
51827 crtc_commit:111-253   (  253) [002] d..2 24573.405175: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13260 next_prio=110
51828           <...>-13260 (-----) [002] ...1 24573.405488: tracing_mark_write: E|13131
51829           <...>-13260 (-----) [002] ...1 24573.405491: tracing_mark_write: E|13131
51830           <...>-13260 (-----) [002] ...1 24573.405502: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51831           <...>-13260 (-----) [002] ...1 24573.405506: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51832           <...>-13260 (-----) [002] ...1 24573.405590: tracing_mark_write: E|13131
51833           <...>-13260 (-----) [002] ...1 24573.405593: tracing_mark_write: E|13131
51834           <...>-13260 (-----) [002] ...1 24573.405657: tracing_mark_write: E|13131
51835           <...>-13260 (-----) [002] d..1 24573.405662: sched_waking: comm=id.nn.benchmark pid=13259 prio=110 target_cpu=002
51836           <...>-13260 (-----) [002] dn.2 24573.405675: sched_wakeup: comm=id.nn.benchmark pid=13259 prio=110 target_cpu=002
51837           <...>-13260 (-----) [002] d..2 24573.405681: sched_switch: prev_comm=id.nn.benchmark prev_pid=13260 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13259 next_prio=110
51838           <...>-13259 (-----) [002] d..2 24573.405697: sched_switch: prev_comm=id.nn.benchmark prev_pid=13259 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13260 next_prio=110
51839           <...>-13260 (-----) [002] ...1 24573.405712: tracing_mark_write: E|13131
51840           <...>-13260 (-----) [002] d..1 24573.405930: sched_waking: comm=id.nn.benchmark pid=13259 prio=110 target_cpu=002
51841           <...>-13260 (-----) [002] dn.2 24573.405938: sched_wakeup: comm=id.nn.benchmark pid=13259 prio=110 target_cpu=002
51842           <...>-13260 (-----) [002] d..2 24573.405943: sched_switch: prev_comm=id.nn.benchmark prev_pid=13260 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13259 next_prio=110
51843           <...>-13259 (-----) [002] d..1 24573.406043: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
51844 id.nn.benchmark-13158 (13131) [004] dnh1 24573.406066: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
51845 id.nn.benchmark-13158 (13131) [004] d..2 24573.406070: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
51846           <...>-13131 (-----) [004] d..2 24573.406076: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
51847           <...>-13259 (-----) [002] d..1 24573.406115: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
51848 id.nn.benchmark-13158 (13131) [004] dnh1 24573.406127: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
51849 id.nn.benchmark-13158 (13131) [004] d..2 24573.406129: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
51850           <...>-13131 (-----) [004] ...1 24573.406145: tracing_mark_write: E|13131
51851           <...>-13131 (-----) [004] ...1 24573.406148: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
51852           <...>-13131 (-----) [004] ...1 24573.406151: tracing_mark_write: E|13131
51853           <...>-13131 (-----) [004] ...1 24573.406152: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
51854           <...>-13131 (-----) [004] ...1 24573.406155: tracing_mark_write: E|13131
51855           <...>-13259 (-----) [002] d..2 24573.406184: sched_switch: prev_comm=id.nn.benchmark prev_pid=13259 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13260 next_prio=110
51856           <...>-13260 (-----) [002] d..2 24573.406206: sched_switch: prev_comm=id.nn.benchmark prev_pid=13260 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
51857           <...>-13131 (-----) [004] ...1 24573.406217: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
51858           <...>-13131 (-----) [004] ...1 24573.406242: tracing_mark_write: E|13131
51859           <...>-13131 (-----) [004] ...1 24573.406244: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
51860           <...>-13131 (-----) [004] ...1 24573.406247: tracing_mark_write: E|13131
51861           <...>-13131 (-----) [004] ...1 24573.406248: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
51862           <...>-13131 (-----) [004] ...1 24573.406250: tracing_mark_write: E|13131
51863           <...>-13131 (-----) [004] ...1 24573.406252: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
51864           <...>-13131 (-----) [004] ...1 24573.406316: tracing_mark_write: E|13131
51865           <...>-13131 (-----) [004] ...1 24573.406317: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
51866           <...>-13131 (-----) [004] d..2 24573.406323: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
51867     logd.writer-563   (  555) [002] d..2 24573.407268: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13261 next_prio=110
51868           <...>-13261 (-----) [002] d.h4 24573.407301: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
51869           <...>-13261 (-----) [002] d.h4 24573.407309: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
51870           <...>-13154 (-----) [005] dnh1 24573.407312: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
51871           <...>-13154 (-----) [005] d..2 24573.407315: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
51872         sugov:4-560   (  560) [005] d..2 24573.407318: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
51873           <...>-13261 (-----) [002] dnh5 24573.407320: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
51874           <...>-13261 (-----) [002] d..2 24573.407326: sched_switch: prev_comm=id.nn.benchmark prev_pid=13261 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
51875         sugov:0-559   (  559) [002] d..2 24573.407332: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13261 next_prio=110
51876           <...>-13261 (-----) [002] d..2 24573.407392: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
51877           <...>-13261 (-----) [002] d..3 24573.407402: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
51878 id.nn.benchmark-13158 (13131) [004] d.s2 24573.407559: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=005
51879 id.nn.benchmark-13158 (13131) [004] d.s3 24573.407570: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
51880 id.nn.benchmark-13160 (13131) [007] d..2 24573.407576: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
51881  kworker/u16:10-23868 (23868) [007] d..2 24573.407672: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
51882           <...>-13261 (-----) [002] d..2 24573.407724: sched_switch: prev_comm=id.nn.benchmark prev_pid=13261 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
51883     logd.writer-563   (  555) [002] d..2 24573.407905: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13262 next_prio=110
51884           <...>-13262 (-----) [002] ...1 24573.407932: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
51885           <...>-13262 (-----) [002] ...1 24573.407937: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
51886           <...>-13262 (-----) [002] d..2 24573.407995: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
51887           <...>-13262 (-----) [002] d..3 24573.408006: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
51888           <...>-13262 (-----) [002] ...1 24573.408072: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51889           <...>-13262 (-----) [002] ...1 24573.408077: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51890           <...>-13262 (-----) [002] ...1 24573.410054: tracing_mark_write: E|13131
51891           <...>-13262 (-----) [002] ...1 24573.410058: tracing_mark_write: E|13131
51892           <...>-13262 (-----) [002] ...1 24573.410069: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51893           <...>-13262 (-----) [002] ...1 24573.410073: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51894           <...>-13262 (-----) [002] ...1 24573.410770: tracing_mark_write: E|13131
51895           <...>-13262 (-----) [002] ...1 24573.410774: tracing_mark_write: E|13131
51896           <...>-13262 (-----) [002] ...1 24573.410788: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51897           <...>-13262 (-----) [002] ...1 24573.410792: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51898 id.nn.benchmark-13158 (13131) [004] d.s2 24573.410890: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
51899 id.nn.benchmark-13158 (13131) [004] d.s3 24573.410897: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
51900           <...>-13157 (-----) [000] d.s2 24573.410900: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
51901 id.nn.benchmark-13160 (13131) [007] d..2 24573.410903: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
51902 id.nn.benchmark-13156 (13131) [006] dnh1 24573.410923: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=006
51903 id.nn.benchmark-13156 (13131) [006] d..2 24573.410928: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
51904     rcu_preempt-7     (    7) [006] d..2 24573.410930: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=005
51905     rcu_preempt-7     (    7) [006] d..3 24573.410938: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=005
51906     rcu_preempt-7     (    7) [006] d..2 24573.410943: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
51907           <...>-13154 (-----) [005] d..2 24573.410944: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
51908         rcuop/2-29    (   29) [005] d..2 24573.410971: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
51909  kworker/u16:10-23868 (23868) [007] d..2 24573.411123: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
51910           <...>-13262 (-----) [002] ...1 24573.411179: tracing_mark_write: E|13131
51911           <...>-13262 (-----) [002] ...1 24573.411183: tracing_mark_write: E|13131
51912           <...>-13262 (-----) [002] ...1 24573.411195: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51913           <...>-13262 (-----) [002] ...1 24573.411199: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51914           <...>-13262 (-----) [002] ...1 24573.411433: tracing_mark_write: E|13131
51915           <...>-13262 (-----) [002] ...1 24573.411437: tracing_mark_write: E|13131
51916           <...>-13262 (-----) [002] ...1 24573.411448: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51917           <...>-13262 (-----) [002] ...1 24573.411452: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51918           <...>-13157 (-----) [000] d.h4 24573.411609: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
51919           <...>-13157 (-----) [000] d.h4 24573.411633: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
51920           <...>-13154 (-----) [005] dnh1 24573.411635: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=005
51921           <...>-13154 (-----) [005] d..2 24573.411637: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
51922           <...>-13157 (-----) [000] d.h5 24573.411642: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
51923  crtc_event:111-254   (  254) [005] d..2 24573.411648: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
51924           <...>-13262 (-----) [002] d..2 24573.411653: sched_switch: prev_comm=id.nn.benchmark prev_pid=13262 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
51925           <...>-13157 (-----) [000] d.h2 24573.411682: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
51926           <...>-13157 (-----) [000] d.h2 24573.411690: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
51927           <...>-13154 (-----) [005] dnh1 24573.411692: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
51928           <...>-13154 (-----) [005] d..2 24573.411695: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
51929           <...>-13157 (-----) [000] dnh3 24573.411698: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
51930         sugov:4-560   (  560) [005] d..2 24573.411699: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
51931           <...>-13157 (-----) [000] d..2 24573.411705: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
51932         sugov:0-559   (  559) [000] d..2 24573.411712: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
51933 crtc_commit:111-253   (  253) [002] d..2 24573.411775: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13262 next_prio=110
51934           <...>-13262 (-----) [002] ...1 24573.411977: tracing_mark_write: E|13131
51935           <...>-13262 (-----) [002] ...1 24573.411980: tracing_mark_write: E|13131
51936           <...>-13262 (-----) [002] ...1 24573.411991: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51937           <...>-13262 (-----) [002] ...1 24573.411995: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51938           <...>-13262 (-----) [002] ...1 24573.412384: tracing_mark_write: E|13131
51939           <...>-13262 (-----) [002] ...1 24573.412388: tracing_mark_write: E|13131
51940           <...>-13262 (-----) [002] ...1 24573.412408: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51941           <...>-13262 (-----) [002] ...1 24573.412412: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51942           <...>-13262 (-----) [002] ...1 24573.412605: tracing_mark_write: E|13131
51943           <...>-13262 (-----) [002] ...1 24573.412609: tracing_mark_write: E|13131
51944           <...>-13262 (-----) [002] ...1 24573.412622: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51945           <...>-13262 (-----) [002] ...1 24573.412626: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51946           <...>-13262 (-----) [002] ...1 24573.412695: tracing_mark_write: E|13131
51947           <...>-13262 (-----) [002] ...1 24573.412698: tracing_mark_write: E|13131
51948           <...>-13262 (-----) [002] ...1 24573.412708: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
51949           <...>-13262 (-----) [002] ...1 24573.412712: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
51950           <...>-13262 (-----) [002] ...1 24573.413002: tracing_mark_write: E|13131
51951           <...>-13262 (-----) [002] ...1 24573.413005: tracing_mark_write: E|13131
51952           <...>-13262 (-----) [002] ...1 24573.413014: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
51953           <...>-13262 (-----) [002] ...1 24573.413018: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
51954           <...>-13262 (-----) [002] ...1 24573.413068: tracing_mark_write: E|13131
51955           <...>-13262 (-----) [002] ...1 24573.413071: tracing_mark_write: E|13131
51956           <...>-13262 (-----) [002] ...1 24573.413079: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
51957           <...>-13262 (-----) [002] ...1 24573.413083: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
51958           <...>-13262 (-----) [002] ...1 24573.413100: tracing_mark_write: E|13131
51959           <...>-13262 (-----) [002] ...1 24573.413103: tracing_mark_write: E|13131
51960           <...>-13262 (-----) [002] ...1 24573.413114: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
51961           <...>-13262 (-----) [002] ...1 24573.413117: tracing_mark_write: E|13131
51962           <...>-13262 (-----) [002] ...1 24573.413126: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
51963           <...>-13262 (-----) [002] ...1 24573.413132: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
51964           <...>-13157 (-----) [000] d.h4 24573.413944: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
51965           <...>-13157 (-----) [000] d.h5 24573.413954: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
51966           <...>-13262 (-----) [002] d..2 24573.413964: sched_switch: prev_comm=id.nn.benchmark prev_pid=13262 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
51967 crtc_commit:111-253   (  253) [002] d..2 24573.414013: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13262 next_prio=110
51968           <...>-13262 (-----) [002] ...1 24573.414045: tracing_mark_write: E|13131
51969           <...>-13262 (-----) [002] ...1 24573.414049: tracing_mark_write: E|13131
51970           <...>-13262 (-----) [002] ...1 24573.414057: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
51971           <...>-13262 (-----) [002] ...1 24573.414061: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
51972           <...>-13262 (-----) [002] ...1 24573.414143: tracing_mark_write: E|13131
51973           <...>-13262 (-----) [002] ...1 24573.414147: tracing_mark_write: E|13131
51974           <...>-13262 (-----) [002] ...1 24573.414197: tracing_mark_write: E|13131
51975           <...>-13262 (-----) [002] d..1 24573.414201: sched_waking: comm=id.nn.benchmark pid=13261 prio=110 target_cpu=002
51976           <...>-13262 (-----) [002] dn.2 24573.414213: sched_wakeup: comm=id.nn.benchmark pid=13261 prio=110 target_cpu=002
51977           <...>-13262 (-----) [002] dns3 24573.414228: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=005
51978           <...>-13154 (-----) [005] dnh1 24573.414241: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=005
51979           <...>-13154 (-----) [005] d..2 24573.414244: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
51980           <...>-13262 (-----) [002] d..2 24573.414245: sched_switch: prev_comm=id.nn.benchmark prev_pid=13262 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13261 next_prio=110
51981  crtc_event:111-254   (  254) [005] d..2 24573.414249: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
51982           <...>-13157 (-----) [000] d.h4 24573.414258: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=005
51983           <...>-13261 (-----) [002] d..2 24573.414258: sched_switch: prev_comm=id.nn.benchmark prev_pid=13261 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13262 next_prio=110
51984           <...>-13154 (-----) [005] dnh1 24573.414269: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=005
51985           <...>-13154 (-----) [005] d..2 24573.414271: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
51986           <...>-13262 (-----) [002] ...1 24573.414274: tracing_mark_write: E|13131
51987  crtc_event:111-254   (  254) [005] d..2 24573.414275: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
51988           <...>-13262 (-----) [002] d..1 24573.414460: sched_waking: comm=id.nn.benchmark pid=13261 prio=110 target_cpu=002
51989           <...>-13262 (-----) [002] dn.2 24573.414469: sched_wakeup: comm=id.nn.benchmark pid=13261 prio=110 target_cpu=002
51990           <...>-13262 (-----) [002] d..2 24573.414474: sched_switch: prev_comm=id.nn.benchmark prev_pid=13262 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13261 next_prio=110
51991           <...>-13261 (-----) [002] d..1 24573.414561: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
51992 id.nn.benchmark-13158 (13131) [004] dnh1 24573.414576: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
51993 id.nn.benchmark-13158 (13131) [004] d..2 24573.414579: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
51994           <...>-13131 (-----) [004] d..2 24573.414584: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
51995           <...>-13261 (-----) [002] d..1 24573.414621: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
51996 id.nn.benchmark-13158 (13131) [004] dnh1 24573.414634: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
51997 id.nn.benchmark-13158 (13131) [004] d..2 24573.414636: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
51998           <...>-13131 (-----) [004] ...1 24573.414648: tracing_mark_write: E|13131
51999           <...>-13131 (-----) [004] ...1 24573.414650: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
52000           <...>-13131 (-----) [004] ...1 24573.414652: tracing_mark_write: E|13131
52001           <...>-13131 (-----) [004] ...1 24573.414653: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
52002           <...>-13131 (-----) [004] ...1 24573.414655: tracing_mark_write: E|13131
52003           <...>-13261 (-----) [002] d..2 24573.414679: sched_switch: prev_comm=id.nn.benchmark prev_pid=13261 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13262 next_prio=110
52004           <...>-13262 (-----) [002] d..2 24573.414699: sched_switch: prev_comm=id.nn.benchmark prev_pid=13262 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
52005           <...>-13131 (-----) [004] ...1 24573.414714: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
52006           <...>-13131 (-----) [004] ...1 24573.414735: tracing_mark_write: E|13131
52007           <...>-13131 (-----) [004] ...1 24573.414737: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
52008           <...>-13131 (-----) [004] ...1 24573.414740: tracing_mark_write: E|13131
52009           <...>-13131 (-----) [004] ...1 24573.414741: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
52010           <...>-13131 (-----) [004] ...1 24573.414743: tracing_mark_write: E|13131
52011           <...>-13131 (-----) [004] ...1 24573.414744: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
52012           <...>-13131 (-----) [004] ...1 24573.414787: tracing_mark_write: E|13131
52013           <...>-13131 (-----) [004] ...1 24573.414788: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
52014           <...>-13131 (-----) [004] d..2 24573.414793: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
52015     logd.writer-563   (  555) [002] d..2 24573.414916: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13263 next_prio=110
52016           <...>-13263 (-----) [002] d.h4 24573.414949: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
52017           <...>-13263 (-----) [002] d.h4 24573.414957: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
52018           <...>-13154 (-----) [005] dnh1 24573.414959: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
52019           <...>-13154 (-----) [005] d..2 24573.414961: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
52020         sugov:4-560   (  560) [005] d..2 24573.414964: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
52021           <...>-13263 (-----) [002] dnh5 24573.414967: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
52022           <...>-13263 (-----) [002] d..2 24573.414973: sched_switch: prev_comm=id.nn.benchmark prev_pid=13263 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
52023         sugov:0-559   (  559) [002] d..2 24573.414980: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13263 next_prio=110
52024           <...>-13263 (-----) [002] d..2 24573.415034: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
52025           <...>-13263 (-----) [002] d..3 24573.415044: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
52026           <...>-13263 (-----) [002] d..2 24573.415322: sched_switch: prev_comm=id.nn.benchmark prev_pid=13263 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
52027     logd.writer-563   (  555) [002] d..2 24573.415479: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13264 next_prio=110
52028           <...>-13264 (-----) [002] ...1 24573.415505: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
52029           <...>-13264 (-----) [002] ...1 24573.415510: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
52030           <...>-13264 (-----) [002] d..2 24573.415564: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
52031           <...>-13264 (-----) [002] d..3 24573.415575: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
52032           <...>-13264 (-----) [002] ...1 24573.415639: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52033           <...>-13264 (-----) [002] ...1 24573.415644: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52034           <...>-13154 (-----) [005] d.h1 24573.416112: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=005
52035           <...>-13154 (-----) [005] dnh2 24573.416115: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=005
52036           <...>-13154 (-----) [005] d..2 24573.416119: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
52037        DispSync-23904 (23896) [005] d..1 24573.416127: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
52038        DispSync-23904 (23896) [005] d..2 24573.416138: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
52039           <...>-13157 (-----) [000] dnh1 24573.416138: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
52040           <...>-13157 (-----) [000] d..2 24573.416144: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
52041  appEventThread-23905 (23896) [000] d..3 24573.416185: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
52042 id.nn.benchmark-13156 (13131) [006] dnh1 24573.416200: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
52043 id.nn.benchmark-13156 (13131) [006] d..2 24573.416202: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
52044  appEventThread-23905 (23896) [000] d..2 24573.416210: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
52045<...>-24151 ( 24151) [006] .... 24573.416397: binder_transaction: transaction=1669931 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
52046<...>-24151 ( 24151) [006] d..4 24573.416402: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
52047<...>-24151 ( 24151) [006] d..5 24573.416412: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
52048 id.nn.benchmark-13158 (13131) [004] d..2 24573.416417: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
52049  Binder:23896_5-25989 (23896) [004] .... 24573.416421: binder_transaction_received: transaction=1669931
52050<...>-24151 ( 24151) [006] d..3 24573.416433: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
52051  Binder:23896_5-25989 (23896) [004] d..1 24573.416439: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
52052<...>-24151 ( 24151) [006] d..4 24573.416445: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
52053           <...>-13157 (-----) [000] dnh1 24573.416450: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
52054 id.nn.benchmark-13160 (13131) [007] d..2 24573.416452: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
52055           <...>-13157 (-----) [000] d..2 24573.416455: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
52056  Binder:23896_5-25989 (23896) [004] d..2 24573.416456: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
52057    RenderThread-24437 (24151) [007] d..2 24573.416467: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
52058  appEventThread-23905 (23896) [000] d..2 24573.416471: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
52059<...>-24151 ( 24151) [006] d..3 24573.416505: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
52060<...>-24151 ( 24151) [006] d..4 24573.416512: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
52061 id.nn.benchmark-13160 (13131) [007] d..2 24573.416518: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
52062<...>-24151 ( 24151) [006] d..2 24573.416519: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
52063    RenderThread-24437 (24151) [007] d..1 24573.416562: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
52064    RenderThread-24437 (24151) [007] d..2 24573.416570: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
52065 id.nn.benchmark-13156 (13131) [006] d..2 24573.416577: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
52066<...>-24151 ( 24151) [006] d..2 24573.416598: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
52067    RenderThread-24437 (24151) [007] .... 24573.416599: binder_transaction: transaction=1669932 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
52068    RenderThread-24437 (24151) [007] d..4 24573.416601: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
52069    RenderThread-24437 (24151) [007] d..5 24573.416609: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
52070    RenderThread-24437 (24151) [007] d..2 24573.416613: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
52071 id.nn.benchmark-13158 (13131) [004] d..2 24573.416615: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
52072  Binder:23896_5-25989 (23896) [004] .... 24573.416617: binder_transaction_received: transaction=1669932
52073  Binder:23896_5-25989 (23896) [004] .... 24573.416640: binder_transaction: transaction=1669933 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
52074  Binder:23896_5-25989 (23896) [004] d..2 24573.416645: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
52075  Binder:23896_5-25989 (23896) [004] d..3 24573.416655: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
52076 id.nn.benchmark-13156 (13131) [006] d..2 24573.416661: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
52077    RenderThread-24437 (24151) [006] .... 24573.416664: binder_transaction_received: transaction=1669933
52078  Binder:23896_5-25989 (23896) [004] d..2 24573.416664: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
52079    RenderThread-24437 (24151) [006] d..2 24573.417268: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
52080 id.nn.benchmark-13156 (13131) [006] d.h1 24573.417367: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
52081 id.nn.benchmark-13156 (13131) [006] d.h2 24573.417372: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
52082 id.nn.benchmark-13156 (13131) [006] dnh2 24573.417374: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
52083 id.nn.benchmark-13156 (13131) [006] d..2 24573.417378: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
52084    RenderThread-24437 (24151) [006] .... 24573.417457: binder_transaction: transaction=1669934 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
52085    RenderThread-24437 (24151) [006] d..4 24573.417461: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
52086    RenderThread-24437 (24151) [006] d..5 24573.417469: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
52087    RenderThread-24437 (24151) [006] d..2 24573.417474: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
52088 id.nn.benchmark-13158 (13131) [004] d..2 24573.417477: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
52089  Binder:23896_5-25989 (23896) [004] .... 24573.417479: binder_transaction_received: transaction=1669934
52090           <...>-13157 (-----) [000] d.h2 24573.417492: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
52091           <...>-13154 (-----) [005] dnh1 24573.417507: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
52092           <...>-13154 (-----) [005] d..2 24573.417510: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
52093 kgsl_worker_thr-246   (  246) [005] d..2 24573.417531: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
52094  Binder:23896_5-25989 (23896) [004] .... 24573.417532: binder_transaction: transaction=1669935 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
52095  Binder:23896_5-25989 (23896) [004] d..2 24573.417534: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
52096 kgsl_worker_thr-246   (  246) [005] d..3 24573.417539: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
52097  Binder:23896_5-25989 (23896) [004] d..3 24573.417542: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
52098 kgsl_worker_thr-246   (  246) [005] d..2 24573.417548: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
52099 id.nn.benchmark-13160 (13131) [007] d..2 24573.417550: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
52100 id.nn.benchmark-13156 (13131) [006] dns1 24573.417559: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=006
52101  Binder:23896_5-25989 (23896) [004] d..2 24573.417587: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
52102 id.nn.benchmark-13156 (13131) [006] dns2 24573.417587: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
52103 id.nn.benchmark-13156 (13131) [006] d..2 24573.417591: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
52104           <...>-13154 (-----) [005] d..2 24573.417593: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
52105    RenderThread-24437 (24151) [006] .... 24573.417593: binder_transaction_received: transaction=1669935
52106  kworker/u16:10-23868 (23868) [007] d.H4 24573.417595: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
52107     rcu_preempt-7     (    7) [005] d..2 24573.417600: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
52108  kworker/u16:10-23868 (23868) [007] d.H5 24573.417607: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
52109  kworker/u16:10-23868 (23868) [007] d.H4 24573.417608: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
52110 id.nn.benchmark-13158 (13131) [004] d..2 24573.417614: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
52111  kworker/u16:10-23868 (23868) [007] d.s4 24573.417614: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
52112    RenderThread-24437 (24151) [006] d..2 24573.417615: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
52113         sugov:4-560   (  560) [004] d..2 24573.417619: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
52114           <...>-13264 (-----) [002] dnh1 24573.417620: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
52115  kworker/u16:10-23868 (23868) [007] d.s5 24573.417625: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=006
52116           <...>-13264 (-----) [002] d..2 24573.417626: sched_switch: prev_comm=id.nn.benchmark prev_pid=13264 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
52117  kworker/u16:10-23868 (23868) [007] d..2 24573.417628: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
52118 id.nn.benchmark-13156 (13131) [006] d..2 24573.417632: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
52119     rcu_preempt-7     (    7) [006] d..2 24573.417634: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
52120         sugov:0-559   (  559) [002] d..2 24573.417636: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13264 next_prio=110
52121  kworker/u16:10-23868 (23868) [007] d..3 24573.417638: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=005
52122           <...>-13154 (-----) [005] d..2 24573.417644: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
52123     rcu_preempt-7     (    7) [006] d..2 24573.417646: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
52124 id.nn.benchmark-13159 (13131) [003] dnh1 24573.417649: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
52125 id.nn.benchmark-13159 (13131) [003] d..2 24573.417655: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
52126  kworker/u16:10-23868 (23868) [007] d..2 24573.417655: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
52127         rcuop/0-10    (   10) [003] d..2 24573.417666: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
52128           <...>-13264 (-----) [002] ...1 24573.417701: tracing_mark_write: E|13131
52129           <...>-13264 (-----) [002] ...1 24573.417713: tracing_mark_write: E|13131
52130           <...>-13264 (-----) [002] ...1 24573.417728: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52131           <...>-13264 (-----) [002] ...1 24573.417733: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52132  kworker/u16:15-18488 (18488) [005] d..2 24573.417740: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
52133           <...>-13157 (-----) [000] d.h1 24573.418237: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
52134           <...>-13157 (-----) [000] dnh2 24573.418245: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
52135           <...>-13157 (-----) [000] d..2 24573.418253: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
52136 irq/79-1436400.-24613 (24613) [000] d..2 24573.418407: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
52137 id.nn.benchmark-13159 (13131) [003] d.s2 24573.418429: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
52138 id.nn.benchmark-13159 (13131) [003] d.s3 24573.418437: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
52139           <...>-13157 (-----) [000] d..2 24573.418446: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
52140 irq/79-1436400.-24613 (24613) [000] d..2 24573.418463: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
52141           <...>-13264 (-----) [002] ...1 24573.418662: tracing_mark_write: E|13131
52142           <...>-13264 (-----) [002] ...1 24573.418666: tracing_mark_write: E|13131
52143           <...>-13264 (-----) [002] ...1 24573.418682: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52144           <...>-13264 (-----) [002] ...1 24573.418686: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52145           <...>-13264 (-----) [002] ...1 24573.419016: tracing_mark_write: E|13131
52146           <...>-13264 (-----) [002] ...1 24573.419020: tracing_mark_write: E|13131
52147           <...>-13264 (-----) [002] ...1 24573.419031: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52148           <...>-13264 (-----) [002] ...1 24573.419035: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52149           <...>-13264 (-----) [002] ...1 24573.419262: tracing_mark_write: E|13131
52150           <...>-13264 (-----) [002] ...1 24573.419265: tracing_mark_write: E|13131
52151           <...>-13264 (-----) [002] ...1 24573.419276: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52152           <...>-13264 (-----) [002] ...1 24573.419279: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52153           <...>-13264 (-----) [002] ...1 24573.419666: tracing_mark_write: E|13131
52154           <...>-13264 (-----) [002] ...1 24573.419670: tracing_mark_write: E|13131
52155           <...>-13264 (-----) [002] ...1 24573.419680: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52156           <...>-13264 (-----) [002] ...1 24573.419684: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52157           <...>-13264 (-----) [002] ...1 24573.420067: tracing_mark_write: E|13131
52158           <...>-13264 (-----) [002] ...1 24573.420071: tracing_mark_write: E|13131
52159           <...>-13264 (-----) [002] ...1 24573.420089: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52160           <...>-13264 (-----) [002] ...1 24573.420093: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52161           <...>-13154 (-----) [005] d.h1 24573.420116: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=005
52162           <...>-13154 (-----) [005] dnh2 24573.420120: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=005
52163           <...>-13154 (-----) [005] d..2 24573.420124: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
52164        DispSync-23904 (23896) [005] d..1 24573.420130: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
52165        DispSync-23904 (23896) [005] d..2 24573.420140: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
52166 id.nn.benchmark-13155 (13131) [001] dnh1 24573.420143: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
52167 id.nn.benchmark-13155 (13131) [001] d..2 24573.420150: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
52168   sfEventThread-23906 (23896) [001] d..3 24573.420177: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
52169   sfEventThread-23906 (23896) [001] d..4 24573.420188: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
52170           <...>-13157 (-----) [000] d..2 24573.420198: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
52171   sfEventThread-23906 (23896) [001] d..2 24573.420202: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
52172           <...>-13264 (-----) [002] ...1 24573.420339: tracing_mark_write: E|13131
52173           <...>-13264 (-----) [002] ...1 24573.420343: tracing_mark_write: E|13131
52174           <...>-13264 (-----) [002] ...1 24573.420355: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52175           <...>-13264 (-----) [002] ...1 24573.420359: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52176           <...>-13264 (-----) [002] ...1 24573.420428: tracing_mark_write: E|13131
52177           <...>-13264 (-----) [002] ...1 24573.420431: tracing_mark_write: E|13131
52178  surfaceflinger-23896 (23896) [000] d..1 24573.420434: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
52179           <...>-13264 (-----) [002] ...1 24573.420442: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
52180  surfaceflinger-23896 (23896) [000] d..2 24573.420445: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
52181           <...>-13264 (-----) [002] ...1 24573.420445: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
52182 id.nn.benchmark-13155 (13131) [001] d..2 24573.420454: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
52183   sfEventThread-23906 (23896) [001] d..2 24573.420471: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
52184  surfaceflinger-23896 (23896) [000] ...1 24573.420561: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
52185  surfaceflinger-23896 (23896) [000] ...1 24573.420565: tracing_mark_write: E|23896
52186  surfaceflinger-23896 (23896) [000] .... 24573.420606: binder_transaction: transaction=1669936 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
52187  surfaceflinger-23896 (23896) [000] ...2 24573.420624: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
52188  surfaceflinger-23896 (23896) [000] d..4 24573.420631: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
52189 id.nn.benchmark-13158 (13131) [004] dnh1 24573.420646: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
52190 id.nn.benchmark-13158 (13131) [004] d..2 24573.420650: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
52191  surfaceflinger-23896 (23896) [000] d..2 24573.420653: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
52192  HwBinder:598_3-633   (  598) [004] .... 24573.420653: binder_transaction_received: transaction=1669936
52193  HwBinder:598_3-633   (  598) [004] ...1 24573.420678: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
52194           <...>-13264 (-----) [002] ...1 24573.420714: tracing_mark_write: E|13131
52195           <...>-13264 (-----) [002] ...1 24573.420717: tracing_mark_write: E|13131
52196           <...>-13264 (-----) [002] ...1 24573.420727: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
52197  HwBinder:598_3-633   (  598) [004] ...1 24573.420728: tracing_mark_write: B|598|HWCSession::PresentDisplay::
52198           <...>-13264 (-----) [002] ...1 24573.420730: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
52199           <...>-13264 (-----) [002] ...1 24573.420776: tracing_mark_write: E|13131
52200           <...>-13264 (-----) [002] ...1 24573.420779: tracing_mark_write: E|13131
52201           <...>-13264 (-----) [002] ...1 24573.420788: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
52202  HwBinder:598_3-633   (  598) [004] ...1 24573.420789: tracing_mark_write: B|598|HWDeviceDRM::Commit::
52203           <...>-13264 (-----) [002] ...1 24573.420791: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
52204  HwBinder:598_3-633   (  598) [004] ...1 24573.420793: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
52205           <...>-13264 (-----) [002] ...1 24573.420806: tracing_mark_write: E|13131
52206           <...>-13264 (-----) [002] ...1 24573.420809: tracing_mark_write: E|13131
52207           <...>-13264 (-----) [002] ...1 24573.420818: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
52208           <...>-13264 (-----) [002] ...1 24573.420821: tracing_mark_write: E|13131
52209           <...>-13264 (-----) [002] ...1 24573.420829: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
52210           <...>-13264 (-----) [002] ...1 24573.420833: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
52211  HwBinder:598_3-633   (  598) [004] d.s2 24573.420894: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=005
52212  HwBinder:598_3-633   (  598) [004] d.s3 24573.420907: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
52213 id.nn.benchmark-13160 (13131) [007] d..2 24573.420913: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
52214  HwBinder:598_3-633   (  598) [004] d..2 24573.421044: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
52215           <...>-13264 (-----) [002] dnh1 24573.421057: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
52216           <...>-13264 (-----) [002] d..2 24573.421063: sched_switch: prev_comm=id.nn.benchmark prev_pid=13264 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
52217  HwBinder:598_3-633   (  598) [004] ...1 24573.421080: tracing_mark_write: E|598
52218  HwBinder:598_3-633   (  598) [004] ...1 24573.421081: tracing_mark_write: E|598
52219  HwBinder:598_3-633   (  598) [004] ...1 24573.421103: tracing_mark_write: E|598
52220  HwBinder:598_3-633   (  598) [004] ...1 24573.421122: tracing_mark_write: E|598
52221  kworker/u16:15-18488 (18488) [007] d..2 24573.421125: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
52222  HwBinder:598_3-633   (  598) [004] .... 24573.421128: binder_transaction: transaction=1669937 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
52223  HwBinder:598_3-633   (  598) [004] d..2 24573.421133: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
52224  HwBinder:598_3-633   (  598) [004] .... 24573.421139: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
52225           <...>-13157 (-----) [000] dnh1 24573.421144: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
52226           <...>-13157 (-----) [000] d..2 24573.421149: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
52227  surfaceflinger-23896 (23896) [000] .... 24573.421153: binder_transaction_received: transaction=1669937
52228  HwBinder:598_3-633   (  598) [004] d..2 24573.421161: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
52229  surfaceflinger-23896 (23896) [000] d..2 24573.421400: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
52230 crtc_commit:111-253   (  253) [002] d..2 24573.421682: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13264 next_prio=110
52231           <...>-13264 (-----) [002] ...1 24573.422342: tracing_mark_write: E|13131
52232           <...>-13264 (-----) [002] ...1 24573.422346: tracing_mark_write: E|13131
52233           <...>-13264 (-----) [002] ...1 24573.422355: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52234           <...>-13264 (-----) [002] ...1 24573.422359: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52235           <...>-13264 (-----) [002] ...1 24573.422442: tracing_mark_write: E|13131
52236           <...>-13264 (-----) [002] ...1 24573.422445: tracing_mark_write: E|13131
52237           <...>-13264 (-----) [002] ...1 24573.422515: tracing_mark_write: E|13131
52238           <...>-13264 (-----) [002] d..1 24573.422520: sched_waking: comm=id.nn.benchmark pid=13263 prio=110 target_cpu=002
52239           <...>-13264 (-----) [002] dn.2 24573.422536: sched_wakeup: comm=id.nn.benchmark pid=13263 prio=110 target_cpu=002
52240           <...>-13264 (-----) [002] d..2 24573.422541: sched_switch: prev_comm=id.nn.benchmark prev_pid=13264 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13263 next_prio=110
52241           <...>-13263 (-----) [002] d..2 24573.422557: sched_switch: prev_comm=id.nn.benchmark prev_pid=13263 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13264 next_prio=110
52242           <...>-13264 (-----) [002] ...1 24573.422573: tracing_mark_write: E|13131
52243           <...>-13264 (-----) [002] d..1 24573.422794: sched_waking: comm=id.nn.benchmark pid=13263 prio=110 target_cpu=002
52244           <...>-13264 (-----) [002] dn.2 24573.422802: sched_wakeup: comm=id.nn.benchmark pid=13263 prio=110 target_cpu=002
52245           <...>-13264 (-----) [002] d..2 24573.422807: sched_switch: prev_comm=id.nn.benchmark prev_pid=13264 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13263 next_prio=110
52246           <...>-13263 (-----) [002] d..1 24573.422909: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
52247 id.nn.benchmark-13158 (13131) [004] dnh1 24573.422927: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
52248 id.nn.benchmark-13158 (13131) [004] d..2 24573.422930: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
52249           <...>-13131 (-----) [004] d..2 24573.422937: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
52250           <...>-13263 (-----) [002] d..1 24573.422975: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
52251 id.nn.benchmark-13158 (13131) [004] dnh1 24573.422987: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
52252 id.nn.benchmark-13158 (13131) [004] d..2 24573.422989: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
52253           <...>-13131 (-----) [004] ...1 24573.423004: tracing_mark_write: E|13131
52254           <...>-13131 (-----) [004] ...1 24573.423006: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
52255           <...>-13131 (-----) [004] ...1 24573.423009: tracing_mark_write: E|13131
52256           <...>-13131 (-----) [004] ...1 24573.423010: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
52257           <...>-13131 (-----) [004] ...1 24573.423012: tracing_mark_write: E|13131
52258           <...>-13263 (-----) [002] d..2 24573.423043: sched_switch: prev_comm=id.nn.benchmark prev_pid=13263 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13264 next_prio=110
52259           <...>-13264 (-----) [002] d..2 24573.423068: sched_switch: prev_comm=id.nn.benchmark prev_pid=13264 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
52260           <...>-13131 (-----) [004] ...1 24573.423075: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
52261           <...>-13131 (-----) [004] ...1 24573.423098: tracing_mark_write: E|13131
52262           <...>-13131 (-----) [004] ...1 24573.423101: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
52263           <...>-13131 (-----) [004] ...1 24573.423103: tracing_mark_write: E|13131
52264           <...>-13131 (-----) [004] ...1 24573.423105: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
52265           <...>-13131 (-----) [004] ...1 24573.423107: tracing_mark_write: E|13131
52266           <...>-13131 (-----) [004] ...1 24573.423109: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
52267           <...>-13131 (-----) [004] ...1 24573.423170: tracing_mark_write: E|13131
52268           <...>-13131 (-----) [004] ...1 24573.423171: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
52269           <...>-13131 (-----) [004] d..2 24573.423177: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
52270     logd.writer-563   (  555) [002] d..2 24573.423334: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13265 next_prio=110
52271           <...>-13265 (-----) [002] d.h4 24573.423369: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
52272           <...>-13265 (-----) [002] d.h4 24573.423377: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
52273 id.nn.benchmark-13158 (13131) [004] dnh1 24573.423381: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
52274           <...>-13265 (-----) [002] dnh5 24573.423384: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
52275 id.nn.benchmark-13158 (13131) [004] d..2 24573.423384: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
52276         sugov:4-560   (  560) [004] d..2 24573.423389: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
52277           <...>-13265 (-----) [002] d..2 24573.423389: sched_switch: prev_comm=id.nn.benchmark prev_pid=13265 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
52278         sugov:0-559   (  559) [002] d..2 24573.423397: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13265 next_prio=110
52279           <...>-13265 (-----) [002] d..2 24573.423453: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
52280           <...>-13265 (-----) [002] d..3 24573.423463: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
52281           <...>-13265 (-----) [002] d..2 24573.423753: sched_switch: prev_comm=id.nn.benchmark prev_pid=13265 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
52282     logd.writer-563   (  555) [002] d..2 24573.423925: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13266 next_prio=110
52283           <...>-13266 (-----) [002] ...1 24573.423951: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
52284           <...>-13266 (-----) [002] ...1 24573.423956: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
52285           <...>-13266 (-----) [002] d..2 24573.424013: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
52286           <...>-13266 (-----) [002] d..3 24573.424023: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
52287           <...>-13266 (-----) [002] ...1 24573.424090: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52288           <...>-13266 (-----) [002] ...1 24573.424096: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52289 id.nn.benchmark-13158 (13131) [004] d.s2 24573.424226: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
52290 id.nn.benchmark-13158 (13131) [004] d.s3 24573.424232: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
52291 id.nn.benchmark-13158 (13131) [004] d.s2 24573.424233: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=006
52292 id.nn.benchmark-13160 (13131) [007] d..2 24573.424238: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
52293 id.nn.benchmark-13158 (13131) [004] d.s3 24573.424239: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=006
52294 id.nn.benchmark-13156 (13131) [006] d..2 24573.424245: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
52295     rcu_preempt-7     (    7) [006] d..2 24573.424248: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=005
52296     rcu_preempt-7     (    7) [006] d..3 24573.424256: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=005
52297     rcu_preempt-7     (    7) [006] d..2 24573.424261: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
52298           <...>-13154 (-----) [005] d..2 24573.424262: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
52299  kworker/u16:15-18488 (18488) [007] d..2 24573.424272: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
52300         rcuop/2-29    (   29) [005] d..2 24573.424280: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
52301           <...>-13266 (-----) [002] ...1 24573.426090: tracing_mark_write: E|13131
52302           <...>-13266 (-----) [002] ...1 24573.426094: tracing_mark_write: E|13131
52303           <...>-13266 (-----) [002] ...1 24573.426105: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52304           <...>-13266 (-----) [002] ...1 24573.426110: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52305           <...>-13266 (-----) [002] ...1 24573.426807: tracing_mark_write: E|13131
52306           <...>-13266 (-----) [002] ...1 24573.426811: tracing_mark_write: E|13131
52307           <...>-13266 (-----) [002] ...1 24573.426824: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52308           <...>-13266 (-----) [002] ...1 24573.426828: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52309           <...>-13266 (-----) [002] ...1 24573.427158: tracing_mark_write: E|13131
52310           <...>-13266 (-----) [002] ...1 24573.427163: tracing_mark_write: E|13131
52311           <...>-13266 (-----) [002] ...1 24573.427173: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52312           <...>-13266 (-----) [002] ...1 24573.427177: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52313           <...>-13266 (-----) [002] ...1 24573.427413: tracing_mark_write: E|13131
52314           <...>-13266 (-----) [002] ...1 24573.427417: tracing_mark_write: E|13131
52315           <...>-13266 (-----) [002] ...1 24573.427427: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52316           <...>-13266 (-----) [002] ...1 24573.427432: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52317 id.nn.benchmark-13158 (13131) [004] d.s2 24573.427557: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
52318 id.nn.benchmark-13158 (13131) [004] d.s3 24573.427563: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
52319 id.nn.benchmark-13160 (13131) [007] d..2 24573.427569: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
52320  kworker/u16:15-18488 (18488) [007] d..2 24573.427661: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
52321           <...>-13266 (-----) [002] ...1 24573.427859: tracing_mark_write: E|13131
52322           <...>-13266 (-----) [002] ...1 24573.427863: tracing_mark_write: E|13131
52323           <...>-13266 (-----) [002] ...1 24573.427873: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52324           <...>-13266 (-----) [002] ...1 24573.427877: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52325           <...>-13157 (-----) [000] d.h4 24573.428098: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=005
52326           <...>-13157 (-----) [000] d.h4 24573.428113: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
52327           <...>-13154 (-----) [005] dnh1 24573.428114: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=005
52328           <...>-13154 (-----) [005] d..2 24573.428117: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
52329           <...>-13157 (-----) [000] d.h5 24573.428123: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
52330  crtc_event:111-254   (  254) [005] d..2 24573.428126: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
52331           <...>-13266 (-----) [002] d..2 24573.428133: sched_switch: prev_comm=id.nn.benchmark prev_pid=13266 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
52332 crtc_commit:111-253   (  253) [002] d..2 24573.428259: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13266 next_prio=110
52333           <...>-13266 (-----) [002] ...1 24573.428411: tracing_mark_write: E|13131
52334           <...>-13266 (-----) [002] ...1 24573.428415: tracing_mark_write: E|13131
52335           <...>-13266 (-----) [002] ...1 24573.428433: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52336           <...>-13266 (-----) [002] ...1 24573.428437: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52337           <...>-13266 (-----) [002] ...1 24573.428632: tracing_mark_write: E|13131
52338           <...>-13266 (-----) [002] ...1 24573.428636: tracing_mark_write: E|13131
52339           <...>-13266 (-----) [002] ...1 24573.428649: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52340           <...>-13266 (-----) [002] ...1 24573.428653: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52341           <...>-13266 (-----) [002] ...1 24573.428722: tracing_mark_write: E|13131
52342           <...>-13266 (-----) [002] ...1 24573.428725: tracing_mark_write: E|13131
52343           <...>-13266 (-----) [002] ...1 24573.428736: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
52344           <...>-13266 (-----) [002] ...1 24573.428740: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
52345           <...>-13266 (-----) [002] ...1 24573.429021: tracing_mark_write: E|13131
52346           <...>-13266 (-----) [002] ...1 24573.429025: tracing_mark_write: E|13131
52347           <...>-13266 (-----) [002] ...1 24573.429033: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
52348           <...>-13266 (-----) [002] ...1 24573.429037: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
52349           <...>-13266 (-----) [002] ...1 24573.429082: tracing_mark_write: E|13131
52350           <...>-13266 (-----) [002] ...1 24573.429085: tracing_mark_write: E|13131
52351           <...>-13266 (-----) [002] ...1 24573.429095: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
52352           <...>-13266 (-----) [002] ...1 24573.429099: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
52353           <...>-13266 (-----) [002] ...1 24573.429113: tracing_mark_write: E|13131
52354           <...>-13266 (-----) [002] ...1 24573.429116: tracing_mark_write: E|13131
52355           <...>-13266 (-----) [002] ...1 24573.429125: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
52356           <...>-13266 (-----) [002] ...1 24573.429129: tracing_mark_write: E|13131
52357           <...>-13266 (-----) [002] ...1 24573.429138: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
52358           <...>-13266 (-----) [002] ...1 24573.429142: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
52359           <...>-13266 (-----) [002] ...1 24573.429994: tracing_mark_write: E|13131
52360           <...>-13266 (-----) [002] ...1 24573.429997: tracing_mark_write: E|13131
52361           <...>-13266 (-----) [002] ...1 24573.430004: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52362           <...>-13266 (-----) [002] ...1 24573.430008: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52363           <...>-13266 (-----) [002] ...1 24573.430091: tracing_mark_write: E|13131
52364           <...>-13266 (-----) [002] ...1 24573.430094: tracing_mark_write: E|13131
52365           <...>-13266 (-----) [002] ...1 24573.430145: tracing_mark_write: E|13131
52366           <...>-13266 (-----) [002] d..1 24573.430150: sched_waking: comm=id.nn.benchmark pid=13265 prio=110 target_cpu=002
52367           <...>-13266 (-----) [002] dn.2 24573.430163: sched_wakeup: comm=id.nn.benchmark pid=13265 prio=110 target_cpu=002
52368           <...>-13266 (-----) [002] d..2 24573.430168: sched_switch: prev_comm=id.nn.benchmark prev_pid=13266 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13265 next_prio=110
52369           <...>-13265 (-----) [002] d..2 24573.430181: sched_switch: prev_comm=id.nn.benchmark prev_pid=13265 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13266 next_prio=110
52370           <...>-13266 (-----) [002] ...1 24573.430195: tracing_mark_write: E|13131
52371           <...>-13266 (-----) [002] d..1 24573.430399: sched_waking: comm=id.nn.benchmark pid=13265 prio=110 target_cpu=002
52372           <...>-13266 (-----) [002] dn.2 24573.430408: sched_wakeup: comm=id.nn.benchmark pid=13265 prio=110 target_cpu=002
52373           <...>-13266 (-----) [002] d..2 24573.430413: sched_switch: prev_comm=id.nn.benchmark prev_pid=13266 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13265 next_prio=110
52374           <...>-13157 (-----) [000] d.h4 24573.430438: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
52375           <...>-13157 (-----) [000] d.h5 24573.430448: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
52376           <...>-13265 (-----) [002] d..2 24573.430454: sched_switch: prev_comm=id.nn.benchmark prev_pid=13265 prev_prio=110 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
52377 crtc_commit:111-253   (  253) [002] d..2 24573.430507: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13265 next_prio=110
52378           <...>-13265 (-----) [002] d..1 24573.430564: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
52379 id.nn.benchmark-13158 (13131) [004] dnh1 24573.430579: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
52380 id.nn.benchmark-13158 (13131) [004] d..2 24573.430582: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
52381           <...>-13131 (-----) [004] d..2 24573.430587: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
52382           <...>-13265 (-----) [002] d..1 24573.430625: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
52383 id.nn.benchmark-13158 (13131) [004] dnh1 24573.430638: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
52384 id.nn.benchmark-13158 (13131) [004] d..2 24573.430640: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
52385           <...>-13131 (-----) [004] ...1 24573.430651: tracing_mark_write: E|13131
52386           <...>-13131 (-----) [004] ...1 24573.430653: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
52387           <...>-13131 (-----) [004] ...1 24573.430655: tracing_mark_write: E|13131
52388           <...>-13131 (-----) [004] ...1 24573.430656: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
52389           <...>-13131 (-----) [004] ...1 24573.430658: tracing_mark_write: E|13131
52390           <...>-13265 (-----) [002] d..2 24573.430684: sched_switch: prev_comm=id.nn.benchmark prev_pid=13265 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13266 next_prio=110
52391           <...>-13266 (-----) [002] d..2 24573.430705: sched_switch: prev_comm=id.nn.benchmark prev_pid=13266 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
52392           <...>-13131 (-----) [004] ...1 24573.430717: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
52393           <...>-13157 (-----) [000] d.h4 24573.430738: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=005
52394           <...>-13131 (-----) [004] ...1 24573.430738: tracing_mark_write: E|13131
52395           <...>-13131 (-----) [004] ...1 24573.430740: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
52396           <...>-13131 (-----) [004] ...1 24573.430742: tracing_mark_write: E|13131
52397           <...>-13131 (-----) [004] ...1 24573.430743: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
52398           <...>-13131 (-----) [004] ...1 24573.430745: tracing_mark_write: E|13131
52399           <...>-13131 (-----) [004] ...1 24573.430746: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
52400           <...>-13154 (-----) [005] dnh1 24573.430749: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=005
52401           <...>-13154 (-----) [005] d..2 24573.430751: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
52402  crtc_event:111-254   (  254) [005] d..2 24573.430754: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
52403           <...>-13131 (-----) [004] ...1 24573.430791: tracing_mark_write: E|13131
52404           <...>-13131 (-----) [004] ...1 24573.430793: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
52405           <...>-13131 (-----) [004] d..2 24573.430798: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
52406 id.nn.benchmark-13158 (13131) [004] d.s2 24573.430892: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
52407 id.nn.benchmark-13158 (13131) [004] d.s3 24573.430899: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
52408 id.nn.benchmark-13158 (13131) [004] d.s2 24573.430901: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
52409     logd.writer-563   (  555) [002] d.s2 24573.430904: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=005
52410 id.nn.benchmark-13160 (13131) [007] d..2 24573.430905: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
52411 id.nn.benchmark-13158 (13131) [004] dns3 24573.430905: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
52412 id.nn.benchmark-13158 (13131) [004] d..2 24573.430909: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=kworker/4:0 next_pid=24269 next_prio=120
52413     logd.writer-563   (  555) [002] d.s2 24573.430916: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=006
52414           <...>-13154 (-----) [005] dnh1 24573.430917: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=005
52415           <...>-13154 (-----) [005] d..2 24573.430919: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
52416  crtc_event:111-254   (  254) [005] d..2 24573.430925: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
52417     kworker/4:0-24269 (24269) [004] d..2 24573.430937: sched_switch: prev_comm=kworker/4:0 prev_pid=24269 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
52418     logd.writer-563   (  555) [002] dns3 24573.430937: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
52419     logd.writer-563   (  555) [002] dnH3 24573.430974: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
52420     logd.writer-563   (  555) [002] dnH3 24573.430986: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
52421           <...>-13154 (-----) [005] dnh1 24573.430989: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
52422           <...>-13154 (-----) [005] d..2 24573.430991: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
52423     logd.writer-563   (  555) [002] dnH4 24573.430992: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
52424         sugov:4-560   (  560) [005] d..2 24573.430995: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
52425     logd.writer-563   (  555) [002] d..2 24573.431004: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
52426         sugov:0-559   (  559) [002] d..2 24573.431015: 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
52427     rcu_preempt-7     (    7) [002] d..2 24573.431019: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
52428     rcu_preempt-7     (    7) [002] d..3 24573.431032: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
52429 id.nn.benchmark-13159 (13131) [003] d..2 24573.431041: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
52430     rcu_preempt-7     (    7) [002] d..2 24573.431041: 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
52431         rcuop/0-10    (   10) [003] d..2 24573.431054: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
52432     logd.writer-563   (  555) [002] d..2 24573.431092: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
52433  kworker/u16:15-18488 (18488) [007] d..2 24573.431167: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13267 next_prio=110
52434           <...>-13267 (-----) [007] d..2 24573.431204: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
52435 id.nn.benchmark-13160 (13131) [002] d.h1 24573.431217: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
52436           <...>-13267 (-----) [007] d..2 24573.431343: sched_switch: prev_comm=id.nn.benchmark prev_pid=13267 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13268 next_prio=110
52437           <...>-13268 (-----) [007] ...1 24573.431354: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
52438           <...>-13268 (-----) [007] ...1 24573.431356: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
52439           <...>-13268 (-----) [007] ...1 24573.431407: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52440           <...>-13268 (-----) [007] ...1 24573.431409: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52441           <...>-13268 (-----) [007] ...1 24573.432265: tracing_mark_write: E|13131
52442           <...>-13268 (-----) [007] ...1 24573.432266: tracing_mark_write: E|13131
52443           <...>-13268 (-----) [007] ...1 24573.432270: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52444           <...>-13268 (-----) [007] ...1 24573.432272: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52445           <...>-13154 (-----) [005] d.h1 24573.432587: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=005
52446           <...>-13154 (-----) [005] d.h2 24573.432598: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=007
52447           <...>-13268 (-----) [007] d..2 24573.432607: sched_switch: prev_comm=id.nn.benchmark prev_pid=13268 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
52448        DispSync-23904 (23896) [007] d..1 24573.432624: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
52449           <...>-13157 (-----) [000] dnh1 24573.432639: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
52450        DispSync-23904 (23896) [007] d..2 24573.432640: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13268 next_prio=110
52451           <...>-13157 (-----) [000] d..2 24573.432646: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
52452  appEventThread-23905 (23896) [000] d..3 24573.432689: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
52453           <...>-13268 (-----) [007] dnh1 24573.432713: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
52454           <...>-13268 (-----) [007] d..2 24573.432715: sched_switch: prev_comm=id.nn.benchmark prev_pid=13268 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
52455  appEventThread-23905 (23896) [000] d..2 24573.432723: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
52456<...>-24151 ( 24151) [007] .... 24573.432920: binder_transaction: transaction=1669938 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
52457<...>-24151 ( 24151) [007] d..4 24573.432927: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
52458<...>-24151 ( 24151) [007] d..5 24573.432938: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
52459<...>-24151 ( 24151) [007] d..3 24573.432959: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
52460<...>-24151 ( 24151) [007] d..4 24573.432969: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
52461<...>-24151 ( 24151) [007] d..2 24573.433039: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
52462  Binder:23896_5-25989 (23896) [007] .... 24573.433044: binder_transaction_received: transaction=1669938
52463  Binder:23896_5-25989 (23896) [007] d..1 24573.433061: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
52464           <...>-13157 (-----) [000] dnh1 24573.433072: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
52465           <...>-13157 (-----) [000] d..2 24573.433078: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
52466  Binder:23896_5-25989 (23896) [007] d..2 24573.433079: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
52467  appEventThread-23905 (23896) [000] d..2 24573.433095: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
52468    RenderThread-24437 (24151) [007] d..1 24573.433135: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
52469    RenderThread-24437 (24151) [007] d..2 24573.433141: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
52470    RenderThread-24437 (24151) [007] .... 24573.433171: binder_transaction: transaction=1669939 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
52471    RenderThread-24437 (24151) [007] d..4 24573.433174: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
52472    RenderThread-24437 (24151) [007] d..5 24573.433178: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
52473    RenderThread-24437 (24151) [007] d..2 24573.433182: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
52474  Binder:23896_5-25989 (23896) [007] .... 24573.433184: binder_transaction_received: transaction=1669939
52475  Binder:23896_5-25989 (23896) [007] .... 24573.433211: binder_transaction: transaction=1669940 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
52476  Binder:23896_5-25989 (23896) [007] d..2 24573.433216: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
52477  Binder:23896_5-25989 (23896) [007] d..3 24573.433220: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
52478  Binder:23896_5-25989 (23896) [007] d..2 24573.433228: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
52479    RenderThread-24437 (24151) [007] .... 24573.433230: binder_transaction_received: transaction=1669940
52480    RenderThread-24437 (24151) [007] d..2 24573.433846: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
52481<...>-24151 ( 24151) [007] d..2 24573.433879: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13268 next_prio=110
52482           <...>-13268 (-----) [007] ...1 24573.433888: tracing_mark_write: E|13131
52483           <...>-13268 (-----) [007] ...1 24573.433890: tracing_mark_write: E|13131
52484           <...>-13268 (-----) [007] ...1 24573.433901: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52485           <...>-13268 (-----) [007] ...1 24573.433903: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52486           <...>-13268 (-----) [007] d.h1 24573.433945: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
52487           <...>-13268 (-----) [007] d.h2 24573.433952: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
52488           <...>-13268 (-----) [007] dnh2 24573.433953: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
52489           <...>-13268 (-----) [007] d..2 24573.433958: sched_switch: prev_comm=id.nn.benchmark prev_pid=13268 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
52490    RenderThread-24437 (24151) [007] .... 24573.434041: binder_transaction: transaction=1669941 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
52491    RenderThread-24437 (24151) [007] d..4 24573.434045: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
52492    RenderThread-24437 (24151) [007] d..5 24573.434051: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
52493    RenderThread-24437 (24151) [007] d..2 24573.434055: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
52494  Binder:23896_5-25989 (23896) [007] .... 24573.434057: binder_transaction_received: transaction=1669941
52495           <...>-13157 (-----) [000] d.h2 24573.434070: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
52496  Binder:23896_5-25989 (23896) [007] dnh1 24573.434089: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
52497  Binder:23896_5-25989 (23896) [007] d..2 24573.434092: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
52498 kgsl_worker_thr-246   (  246) [007] d..2 24573.434116: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
52499 kgsl_worker_thr-246   (  246) [007] d..3 24573.434120: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
52500 kgsl_worker_thr-246   (  246) [007] d..2 24573.434127: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
52501           <...>-13157 (-----) [000] d.h2 24573.434227: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
52502           <...>-13157 (-----) [000] dnh3 24573.434234: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
52503           <...>-13157 (-----) [000] d..2 24573.434242: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
52504  kworker/u16:15-18488 (18488) [007] d..2 24573.434263: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
52505     migration/0-13    (   13) [000] d.h3 24573.434299: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
52506  Binder:23896_5-25989 (23896) [007] .... 24573.434300: binder_transaction: transaction=1669942 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
52507  Binder:23896_5-25989 (23896) [007] d..2 24573.434302: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
52508  Binder:23896_5-25989 (23896) [007] d..3 24573.434309: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
52509     migration/0-13    (   13) [000] d.h3 24573.434311: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
52510  Binder:23896_5-25989 (23896) [007] dnh1 24573.434315: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
52511  Binder:23896_5-25989 (23896) [007] d..2 24573.434318: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
52512     migration/0-13    (   13) [000] d.h4 24573.434322: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
52513         sugov:4-560   (  560) [007] d..2 24573.434322: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
52514     migration/0-13    (   13) [000] d..2 24573.434329: 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
52515  Binder:23896_5-25989 (23896) [007] d..2 24573.434330: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
52516    RenderThread-24437 (24151) [007] .... 24573.434331: binder_transaction_received: transaction=1669942
52517         sugov:0-559   (  559) [000] d..2 24573.434356: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
52518    RenderThread-24437 (24151) [007] d..2 24573.434357: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13268 next_prio=110
52519     logd.writer-563   (  555) [000] d..2 24573.434678: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
52520           <...>-13268 (-----) [007] ...1 24573.434860: tracing_mark_write: E|13131
52521           <...>-13268 (-----) [007] ...1 24573.434862: tracing_mark_write: E|13131
52522           <...>-13268 (-----) [007] ...1 24573.434867: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52523           <...>-13268 (-----) [007] ...1 24573.434869: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52524           <...>-13268 (-----) [007] ...1 24573.435035: tracing_mark_write: E|13131
52525           <...>-13268 (-----) [007] ...1 24573.435036: tracing_mark_write: E|13131
52526           <...>-13268 (-----) [007] ...1 24573.435040: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52527           <...>-13268 (-----) [007] ...1 24573.435042: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52528           <...>-13268 (-----) [007] ...1 24573.435336: tracing_mark_write: E|13131
52529           <...>-13268 (-----) [007] ...1 24573.435337: tracing_mark_write: E|13131
52530           <...>-13268 (-----) [007] ...1 24573.435340: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52531           <...>-13268 (-----) [007] ...1 24573.435342: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52532           <...>-13268 (-----) [007] ...1 24573.435634: tracing_mark_write: E|13131
52533           <...>-13268 (-----) [007] ...1 24573.435635: tracing_mark_write: E|13131
52534           <...>-13268 (-----) [007] ...1 24573.435642: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52535           <...>-13268 (-----) [007] ...1 24573.435643: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52536 id.nn.benchmark-13155 (13131) [001] d..2 24573.435669: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
52537           <...>-13154 (-----) [005] d..3 24573.435675: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
52538           <...>-13154 (-----) [005] d..2 24573.435682: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=D|K ==> next_comm=swapper/5 next_pid=0 next_prio=120
52539           <...>-13157 (-----) [000] dnh1 24573.435685: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
52540           <...>-13157 (-----) [000] d..2 24573.435691: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
52541          <idle>-0     (-----) [005] d..1 24573.435700: cpu_idle: state=0 cpu_id=5
52542          <idle>-0     (-----) [005] dnh2 24573.435711: sched_blocked_reason: pid=13154 iowait=1 caller=__lock_page_or_retry+0x26c/0x2c4
52543          <idle>-0     (-----) [005] dnh2 24573.435712: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
52544     migration/0-13    (   13) [000] d.h3 24573.435737: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
52545          <idle>-0     (-----) [005] .n.1 24573.435739: cpu_idle: state=4294967295 cpu_id=5
52546          <idle>-0     (-----) [005] d..2 24573.435745: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
52547     migration/0-13    (   13) [000] d.h3 24573.435746: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
52548           <...>-13268 (-----) [007] dnh1 24573.435749: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
52549     migration/0-13    (   13) [000] d.h4 24573.435751: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
52550           <...>-13268 (-----) [007] d..2 24573.435754: sched_switch: prev_comm=id.nn.benchmark prev_pid=13268 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
52551     migration/0-13    (   13) [000] d..2 24573.435758: 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
52552         sugov:4-560   (  560) [007] d..2 24573.435758: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13268 next_prio=110
52553         sugov:0-559   (  559) [000] d..2 24573.435772: 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
52554          <idle>-0     (-----) [000] d..1 24573.435793: cpu_idle: state=0 cpu_id=0
52555           <...>-13268 (-----) [007] d.h1 24573.436596: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=007
52556           <...>-13268 (-----) [007] d.h2 24573.436628: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
52557          <idle>-0     (-----) [000] dnh2 24573.436630: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
52558           <...>-13268 (-----) [007] dnh3 24573.436631: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
52559           <...>-13268 (-----) [007] dnh2 24573.436632: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
52560          <idle>-0     (-----) [000] .n.1 24573.436634: cpu_idle: state=4294967295 cpu_id=0
52561          <idle>-0     (-----) [000] d..2 24573.436640: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
52562           <...>-13268 (-----) [007] d..2 24573.436642: sched_switch: prev_comm=id.nn.benchmark prev_pid=13268 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
52563         sugov:4-560   (  560) [007] d..2 24573.436645: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13268 next_prio=110
52564 id.nn.benchmark-13155 (13131) [001] dnh1 24573.436647: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
52565        DispSync-23904 (23896) [000] d..1 24573.436653: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
52566 id.nn.benchmark-13155 (13131) [001] d..2 24573.436654: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
52567         sugov:0-559   (  559) [001] d..2 24573.436664: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
52568        DispSync-23904 (23896) [000] d..2 24573.436674: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
52569 id.nn.benchmark-13160 (13131) [002] d..2 24573.436684: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
52570        DispSync-23904 (23896) [000] d..2 24573.436691: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52571          <idle>-0     (-----) [000] d..1 24573.436699: cpu_idle: state=0 cpu_id=0
52572   sfEventThread-23906 (23896) [002] d..3 24573.436718: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
52573   sfEventThread-23906 (23896) [002] d..4 24573.436731: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
52574          <idle>-0     (-----) [000] .n.1 24573.436736: cpu_idle: state=4294967295 cpu_id=0
52575          <idle>-0     (-----) [000] d..2 24573.436741: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
52576   sfEventThread-23906 (23896) [002] d..2 24573.436746: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
52577  surfaceflinger-23896 (23896) [000] d..1 24573.436979: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
52578  surfaceflinger-23896 (23896) [000] d..2 24573.436990: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
52579 id.nn.benchmark-13160 (13131) [002] d..2 24573.436997: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
52580   sfEventThread-23906 (23896) [002] d..2 24573.437011: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
52581  surfaceflinger-23896 (23896) [000] ...1 24573.437110: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
52582  surfaceflinger-23896 (23896) [000] ...1 24573.437113: tracing_mark_write: E|23896
52583  surfaceflinger-23896 (23896) [000] .... 24573.437156: binder_transaction: transaction=1669943 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
52584  surfaceflinger-23896 (23896) [000] ...2 24573.437177: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
52585  surfaceflinger-23896 (23896) [000] d..4 24573.437185: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
52586           <...>-13268 (-----) [007] dnh1 24573.437204: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
52587           <...>-13268 (-----) [007] d..2 24573.437207: sched_switch: prev_comm=id.nn.benchmark prev_pid=13268 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
52588  HwBinder:598_3-633   (  598) [007] .... 24573.437211: binder_transaction_received: transaction=1669943
52589  surfaceflinger-23896 (23896) [000] d..2 24573.437216: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52590          <idle>-0     (-----) [000] d..1 24573.437225: cpu_idle: state=0 cpu_id=0
52591  HwBinder:598_3-633   (  598) [007] ...1 24573.437236: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
52592  HwBinder:598_3-633   (  598) [007] ...1 24573.437290: tracing_mark_write: B|598|HWCSession::PresentDisplay::
52593  HwBinder:598_3-633   (  598) [007] ...1 24573.437355: tracing_mark_write: B|598|HWDeviceDRM::Commit::
52594  HwBinder:598_3-633   (  598) [007] ...1 24573.437359: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
52595 id.nn.benchmark-13158 (13131) [004] d.s2 24573.437555: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
52596 id.nn.benchmark-13158 (13131) [004] d.s3 24573.437576: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
52597 id.nn.benchmark-13155 (13131) [001] d.h2 24573.437576: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
52598  HwBinder:598_3-633   (  598) [007] d..2 24573.437581: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
52599 id.nn.benchmark-13160 (13131) [002] d.s1 24573.437582: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
52600 id.nn.benchmark-13155 (13131) [001] dnh3 24573.437582: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
52601 id.nn.benchmark-13156 (13131) [006] d.h2 24573.437584: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
52602 id.nn.benchmark-13156 (13131) [006] dnh3 24573.437592: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
52603 id.nn.benchmark-13155 (13131) [001] d..2 24573.437592: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
52604 id.nn.benchmark-13156 (13131) [006] dnh2 24573.437592: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
52605          <idle>-0     (-----) [000] ...1 24573.437594: cpu_idle: state=4294967295 cpu_id=0
52606 id.nn.benchmark-13160 (13131) [002] d.s2 24573.437607: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
52607          <idle>-0     (-----) [000] dnh3 24573.437611: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
52608 id.nn.benchmark-13156 (13131) [006] d..2 24573.437611: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
52609          <idle>-0     (-----) [000] dnh3 24573.437613: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
52610         sugov:4-560   (  560) [006] d..2 24573.437618: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
52611  HwBinder:598_3-633   (  598) [007] ...1 24573.437625: tracing_mark_write: E|598
52612  HwBinder:598_3-633   (  598) [007] ...1 24573.437627: tracing_mark_write: E|598
52613  HwBinder:598_3-633   (  598) [007] ...1 24573.437649: tracing_mark_write: E|598
52614          <idle>-0     (-----) [000] d..2 24573.437661: 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
52615     migration/1-17    (   17) [001] d..2 24573.437664: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
52616  HwBinder:598_3-633   (  598) [007] ...1 24573.437669: tracing_mark_write: E|598
52617  HwBinder:598_3-633   (  598) [007] .... 24573.437676: binder_transaction: transaction=1669944 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
52618  HwBinder:598_3-633   (  598) [007] d..2 24573.437681: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
52619           <...>-13157 (-----) [005] d..2 24573.437697: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
52620  HwBinder:598_3-633   (  598) [007] .... 24573.437728: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
52621         sugov:0-559   (  559) [000] d..2 24573.437729: 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
52622           <...>-13154 (-----) [001] dnh1 24573.437732: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
52623           <...>-13154 (-----) [001] d..2 24573.437737: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
52624  surfaceflinger-23896 (23896) [001] .... 24573.437742: binder_transaction_received: transaction=1669944
52625     rcu_preempt-7     (    7) [000] d..2 24573.437748: 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
52626  HwBinder:598_3-633   (  598) [007] d..2 24573.437749: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
52627          <idle>-0     (-----) [000] d..1 24573.437754: cpu_idle: state=0 cpu_id=0
52628  kworker/u16:15-18488 (18488) [007] .... 24573.437826: clk_set_rate: l3_cluster0_vote_clk 300000000
52629  kworker/u16:15-18488 (18488) [007] d..2 24573.437834: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13268 next_prio=110
52630  surfaceflinger-23896 (23896) [001] d..2 24573.438003: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
52631           <...>-13268 (-----) [007] ...1 24573.438126: tracing_mark_write: E|13131
52632           <...>-13268 (-----) [007] ...1 24573.438127: tracing_mark_write: E|13131
52633           <...>-13268 (-----) [007] ...1 24573.438135: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52634           <...>-13268 (-----) [007] ...1 24573.438137: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52635 crtc_commit:111-253   (  253) [005] d..2 24573.438261: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
52636 id.nn.benchmark-13158 (13131) [004] d..2 24573.439914: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
52637           <...>-13268 (-----) [007] ...1 24573.439933: tracing_mark_write: E|13131
52638           <...>-13268 (-----) [007] ...1 24573.439934: tracing_mark_write: E|13131
52639           <...>-13268 (-----) [007] ...1 24573.439939: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
52640           <...>-13268 (-----) [007] ...1 24573.439941: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
52641           <...>-13268 (-----) [007] ...1 24573.440098: tracing_mark_write: E|13131
52642           <...>-13268 (-----) [007] ...1 24573.440100: tracing_mark_write: E|13131
52643           <...>-13268 (-----) [007] ...1 24573.440103: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
52644           <...>-13268 (-----) [007] ...1 24573.440105: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
52645           <...>-13268 (-----) [007] ...1 24573.440128: tracing_mark_write: E|13131
52646           <...>-13268 (-----) [007] ...1 24573.440130: tracing_mark_write: E|13131
52647           <...>-13268 (-----) [007] ...1 24573.440132: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
52648           <...>-13268 (-----) [007] ...1 24573.440134: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
52649           <...>-13268 (-----) [007] ...1 24573.440140: tracing_mark_write: E|13131
52650           <...>-13268 (-----) [007] ...1 24573.440141: tracing_mark_write: E|13131
52651           <...>-13268 (-----) [007] ...1 24573.440145: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
52652           <...>-13268 (-----) [007] ...1 24573.440147: tracing_mark_write: E|13131
52653           <...>-13268 (-----) [007] ...1 24573.440151: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
52654           <...>-13268 (-----) [007] ...1 24573.440153: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
52655           <...>-13268 (-----) [007] ...1 24573.440459: tracing_mark_write: E|13131
52656           <...>-13268 (-----) [007] ...1 24573.440460: tracing_mark_write: E|13131
52657           <...>-13268 (-----) [007] ...1 24573.440462: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52658           <...>-13268 (-----) [007] ...1 24573.440463: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52659           <...>-13268 (-----) [007] d..1 24573.440471: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
52660           <...>-13268 (-----) [007] d..2 24573.440478: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
52661 id.nn.benchmark-13155 (13131) [004] d.s2 24573.440891: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
52662 id.nn.benchmark-13159 (13131) [003] d.h2 24573.440892: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
52663 id.nn.benchmark-13159 (13131) [003] dnh3 24573.440899: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
52664 id.nn.benchmark-13155 (13131) [004] d.s3 24573.440901: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
52665          <idle>-0     (-----) [000] ...1 24573.440903: cpu_idle: state=4294967295 cpu_id=0
52666          <idle>-0     (-----) [000] d..1 24573.440905: cpu_idle: state=0 cpu_id=0
52667 id.nn.benchmark-13159 (13131) [003] d..2 24573.440907: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
52668           <...>-13268 (-----) [007] d..2 24573.440907: sched_switch: prev_comm=id.nn.benchmark prev_pid=13268 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
52669<...>-33 ( 33) [003] d.h3 24573.440951: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
52670<...>-33 ( 33) [003] d.h3 24573.440964: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
52671           <...>-13157 (-----) [005] dnh1 24573.440966: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
52672           <...>-13157 (-----) [005] d..2 24573.440968: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
52673         sugov:4-560   (  560) [005] d..2 24573.440972: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
52674<...>-33 ( 33) [003] d.h4 24573.440972: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
52675          <idle>-0     (-----) [000] .n.1 24573.440976: cpu_idle: state=4294967295 cpu_id=0
52676          <idle>-0     (-----) [000] d..2 24573.440982: 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
52677<...>-33 ( 33) [003] d..2 24573.440988: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
52678         sugov:0-559   (  559) [000] d..2 24573.440994: 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
52679          <idle>-0     (-----) [000] d..1 24573.440997: cpu_idle: state=0 cpu_id=0
52680          <idle>-0     (-----) [003] d..1 24573.441001: cpu_idle: state=0 cpu_id=3
52681  kworker/u16:15-18488 (18488) [007] d..2 24573.441091: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13268 next_prio=110
52682          <idle>-0     (-----) [000] d.s2 24573.444233: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
52683          <idle>-0     (-----) [000] dns3 24573.444243: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
52684          <idle>-0     (-----) [000] dns2 24573.444248: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
52685          <idle>-0     (-----) [000] dns3 24573.444256: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
52686          <idle>-0     (-----) [000] .n.1 24573.444260: cpu_idle: state=4294967295 cpu_id=0
52687          <idle>-0     (-----) [000] d..2 24573.444265: 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
52688     ksoftirqd/0-3     (    3) [000] d..2 24573.444276: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
52689     rcu_preempt-7     (    7) [000] d..2 24573.444281: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=005
52690           <...>-13157 (-----) [005] dnh1 24573.444312: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=005
52691           <...>-13157 (-----) [005] d..2 24573.444314: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
52692     rcu_preempt-7     (    7) [000] d..2 24573.444323: 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
52693          <idle>-0     (-----) [000] d..1 24573.444329: cpu_idle: state=0 cpu_id=0
52694         rcuop/2-29    (   29) [005] d..2 24573.444342: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
52695          <idle>-0     (-----) [000] d.h5 24573.444579: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=005
52696          <idle>-0     (-----) [000] dnh6 24573.444594: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
52697          <idle>-0     (-----) [000] dnh5 24573.444599: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
52698          <idle>-0     (-----) [000] dnh6 24573.444610: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
52699          <idle>-0     (-----) [003] .n.1 24573.444616: cpu_idle: state=4294967295 cpu_id=3
52700          <idle>-0     (-----) [003] d..2 24573.444622: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
52701          <idle>-0     (-----) [000] dnh3 24573.444652: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
52702          <idle>-0     (-----) [000] dnh3 24573.444659: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
52703           <...>-13157 (-----) [005] dnh1 24573.444661: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
52704           <...>-13157 (-----) [005] d..2 24573.444664: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
52705         sugov:4-560   (  560) [005] d..2 24573.444667: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
52706          <idle>-0     (-----) [000] dnh4 24573.444669: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
52707          <idle>-0     (-----) [000] .n.1 24573.444673: cpu_idle: state=4294967295 cpu_id=0
52708           <...>-13154 (-----) [001] d..2 24573.444678: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
52709          <idle>-0     (-----) [000] d..2 24573.444679: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
52710  crtc_event:111-254   (  254) [000] d..2 24573.444687: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
52711 crtc_commit:111-253   (  253) [003] d..2 24573.444696: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
52712         sugov:0-559   (  559) [001] d..2 24573.444702: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52713  crtc_event:111-254   (  254) [000] d..3 24573.444713: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
52714          <idle>-0     (-----) [001] d..2 24573.444718: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
52715  crtc_event:111-254   (  254) [000] d..2 24573.444729: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52716          <idle>-0     (-----) [000] d..1 24573.444734: cpu_idle: state=0 cpu_id=0
52717 crtc_commit:111-253   (  253) [001] d..2 24573.444793: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
52718          <idle>-0     (-----) [001] d..1 24573.444800: cpu_idle: state=0 cpu_id=1
52719 id.nn.benchmark-13156 (13131) [006] d..2 24573.444937: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
52720           <...>-13268 (-----) [007] ...1 24573.444963: tracing_mark_write: E|13131
52721           <...>-13268 (-----) [007] ...1 24573.444964: tracing_mark_write: E|13131
52722 id.nn.benchmark-13155 (13131) [004] d..2 24573.444986: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
52723           <...>-13268 (-----) [007] d..2 24573.444998: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
52724           <...>-13157 (-----) [005] d..3 24573.445001: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
52725           <...>-13157 (-----) [005] d..2 24573.445009: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
52726 id.nn.benchmark-13160 (13131) [002] dnh1 24573.445012: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
52727          <idle>-0     (-----) [005] d..1 24573.445012: cpu_idle: state=0 cpu_id=5
52728          <idle>-0     (-----) [000] dnh2 24573.445014: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
52729           <...>-13268 (-----) [007] ...1 24573.445016: tracing_mark_write: E|13131
52730          <idle>-0     (-----) [000] .n.1 24573.445017: cpu_idle: state=4294967295 cpu_id=0
52731 id.nn.benchmark-13160 (13131) [002] d..2 24573.445018: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
52732           <...>-13268 (-----) [007] d..1 24573.445019: sched_waking: comm=id.nn.benchmark pid=13267 prio=110 target_cpu=007
52733          <idle>-0     (-----) [000] d..2 24573.445023: 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
52734          <idle>-0     (-----) [005] .n.1 24573.445039: cpu_idle: state=4294967295 cpu_id=5
52735          <idle>-0     (-----) [005] d..2 24573.445050: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
52736          <idle>-0     (-----) [001] dnh2 24573.445052: sched_wakeup: comm=id.nn.benchmark pid=13267 prio=110 target_cpu=001
52737           <...>-13268 (-----) [007] ...1 24573.445054: tracing_mark_write: E|13131
52738          <idle>-0     (-----) [001] .n.1 24573.445056: cpu_idle: state=4294967295 cpu_id=1
52739     migration/2-25    (   25) [002] d..2 24573.445059: 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
52740          <idle>-0     (-----) [001] d..2 24573.445060: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13267 next_prio=110
52741     logd.writer-563   (  555) [000] d..2 24573.445070: 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
52742          <idle>-0     (-----) [002] d..1 24573.445074: cpu_idle: state=0 cpu_id=2
52743          <idle>-0     (-----) [000] d..1 24573.445077: cpu_idle: state=0 cpu_id=0
52744           <...>-13267 (-----) [001] d..2 24573.445081: sched_switch: prev_comm=id.nn.benchmark prev_pid=13267 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52745          <idle>-0     (-----) [001] d..1 24573.445119: cpu_idle: state=0 cpu_id=1
52746           <...>-13268 (-----) [007] d..1 24573.445185: sched_waking: comm=id.nn.benchmark pid=13267 prio=110 target_cpu=001
52747          <idle>-0     (-----) [000] dnh2 24573.445201: sched_wakeup: comm=id.nn.benchmark pid=13267 prio=110 target_cpu=000
52748          <idle>-0     (-----) [000] .n.1 24573.445205: cpu_idle: state=4294967295 cpu_id=0
52749          <idle>-0     (-----) [000] d..2 24573.445210: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13267 next_prio=110
52750           <...>-13268 (-----) [007] d..2 24573.445215: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
52751           <...>-13268 (-----) [007] d..3 24573.445229: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
52752 id.nn.benchmark-13158 (13131) [006] d..2 24573.445235: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
52753         rcuop/6-61    (   61) [006] d..2 24573.445240: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
52754           <...>-13268 (-----) [007] d..3 24573.445243: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
52755           <...>-13268 (-----) [007] d..2 24573.445250: sched_switch: prev_comm=id.nn.benchmark prev_pid=13268 prev_prio=110 prev_state=x ==> next_comm=swapper/7 next_pid=0 next_prio=120
52756           <...>-13154 (-----) [003] dnh1 24573.445253: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
52757           <...>-13154 (-----) [003] d..2 24573.445258: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
52758          <idle>-0     (-----) [007] d..1 24573.445263: cpu_idle: state=0 cpu_id=7
52759           <...>-13267 (-----) [000] d..2 24573.445274: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
52760          <idle>-0     (-----) [007] .n.1 24573.445278: cpu_idle: state=4294967295 cpu_id=7
52761          <idle>-0     (-----) [007] d..2 24573.445301: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
52762<...>-33 ( 33) [003] d.h3 24573.445301: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
52763           <...>-13267 (-----) [000] d..3 24573.445302: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
52764<...>-33 ( 33) [003] d.h3 24573.445313: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
52765 id.nn.benchmark-13159 (13131) [004] dnh1 24573.445316: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
52766 id.nn.benchmark-13159 (13131) [004] d..2 24573.445319: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
52767<...>-33 ( 33) [003] d.h4 24573.445321: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
52768         sugov:4-560   (  560) [004] d..2 24573.445323: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
52769          <idle>-0     (-----) [001] .n.1 24573.445325: cpu_idle: state=4294967295 cpu_id=1
52770          <idle>-0     (-----) [001] d..2 24573.445329: 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
52771<...>-33 ( 33) [003] d..2 24573.445338: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
52772         sugov:0-559   (  559) [001] d..2 24573.445341: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52773          <idle>-0     (-----) [001] d..1 24573.445344: cpu_idle: state=0 cpu_id=1
52774           <...>-13267 (-----) [000] d..1 24573.445356: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
52775           <...>-13267 (-----) [000] d..2 24573.445377: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
52776          <idle>-0     (-----) [001] .n.1 24573.445381: cpu_idle: state=4294967295 cpu_id=1
52777          <idle>-0     (-----) [001] d..2 24573.445403: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
52778     logd.writer-563   (  555) [003] d..2 24573.445411: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
52779           <...>-13131 (-----) [001] d..2 24573.445418: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52780          <idle>-0     (-----) [003] d..1 24573.445420: cpu_idle: state=0 cpu_id=3
52781          <idle>-0     (-----) [001] d..1 24573.445422: cpu_idle: state=0 cpu_id=1
52782           <...>-13267 (-----) [000] d..1 24573.445467: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
52783           <...>-13267 (-----) [000] d..2 24573.445478: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
52784          <idle>-0     (-----) [001] .n.1 24573.445482: cpu_idle: state=4294967295 cpu_id=1
52785          <idle>-0     (-----) [001] d..2 24573.445487: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
52786           <...>-13131 (-----) [001] ...1 24573.445513: tracing_mark_write: E|13131
52787           <...>-13267 (-----) [000] d..2 24573.445517: sched_switch: prev_comm=id.nn.benchmark prev_pid=13267 prev_prio=110 prev_state=x ==> next_comm=swapper/0 next_pid=0 next_prio=120
52788           <...>-13131 (-----) [001] ...1 24573.445519: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
52789           <...>-13131 (-----) [001] ...1 24573.445525: tracing_mark_write: E|13131
52790           <...>-13131 (-----) [001] ...1 24573.445529: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
52791          <idle>-0     (-----) [000] d..1 24573.445529: cpu_idle: state=0 cpu_id=0
52792           <...>-13131 (-----) [001] ...1 24573.445533: tracing_mark_write: E|13131
52793           <...>-13131 (-----) [001] ...1 24573.445844: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
52794           <...>-13131 (-----) [001] d..2 24573.445872: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
52795           <...>-13131 (-----) [001] d..3 24573.445885: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
52796           <...>-13131 (-----) [001] ...1 24573.445902: tracing_mark_write: E|13131
52797           <...>-13131 (-----) [001] ...1 24573.445906: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
52798           <...>-13131 (-----) [001] ...1 24573.445912: tracing_mark_write: E|13131
52799           <...>-13131 (-----) [001] ...1 24573.445916: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
52800           <...>-13131 (-----) [001] ...1 24573.445922: tracing_mark_write: E|13131
52801           <...>-13131 (-----) [001] ...1 24573.445927: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
52802          <idle>-0     (-----) [000] .n.1 24573.446043: cpu_idle: state=4294967295 cpu_id=0
52803           <...>-13131 (-----) [001] ...1 24573.446047: tracing_mark_write: E|13131
52804          <idle>-0     (-----) [000] d..2 24573.446050: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13269 next_prio=110
52805           <...>-13131 (-----) [001] ...1 24573.446051: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
52806           <...>-13131 (-----) [001] d..2 24573.446060: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
52807           <...>-13269 (-----) [000] d..2 24573.446105: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
52808     logd.writer-563   (  555) [001] d..2 24573.446114: 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
52809          <idle>-0     (-----) [001] d..1 24573.446123: cpu_idle: state=0 cpu_id=1
52810           <...>-13269 (-----) [000] d..3 24573.446127: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
52811          <idle>-0     (-----) [001] .n.1 24573.446412: cpu_idle: state=4294967295 cpu_id=1
52812          <idle>-0     (-----) [001] d..2 24573.446418: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13270 next_prio=110
52813           <...>-13269 (-----) [000] d..2 24573.446435: sched_switch: prev_comm=id.nn.benchmark prev_pid=13269 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
52814           <...>-13270 (-----) [001] ...1 24573.446446: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
52815           <...>-13270 (-----) [001] ...1 24573.446451: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
52816           <...>-13270 (-----) [001] ...1 24573.446569: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
52817           <...>-13270 (-----) [001] ...1 24573.446574: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
52818     logd.writer-563   (  555) [000] d..2 24573.446685: 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
52819          <idle>-0     (-----) [000] d..1 24573.446694: cpu_idle: state=0 cpu_id=0
52820          <idle>-0     (-----) [000] d.h5 24573.446928: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
52821          <idle>-0     (-----) [000] dnh6 24573.446940: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
52822          <idle>-0     (-----) [000] .n.1 24573.446949: cpu_idle: state=4294967295 cpu_id=0
52823          <idle>-0     (-----) [000] d..2 24573.446955: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
52824 crtc_commit:111-253   (  253) [000] d..2 24573.446999: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52825          <idle>-0     (-----) [000] d..1 24573.447005: cpu_idle: state=0 cpu_id=0
52826          <idle>-0     (-----) [000] d.h5 24573.447219: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
52827          <idle>-0     (-----) [000] dnh6 24573.447225: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
52828          <idle>-0     (-----) [000] .n.1 24573.447235: cpu_idle: state=4294967295 cpu_id=0
52829          <idle>-0     (-----) [000] d..2 24573.447240: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
52830  crtc_event:111-254   (  254) [000] d..2 24573.447252: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52831          <idle>-0     (-----) [000] d..1 24573.447257: cpu_idle: state=0 cpu_id=0
52832 id.nn.benchmark-13159 (13131) [004] d.s2 24573.447552: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
52833           <...>-13270 (-----) [001] d.s2 24573.447567: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
52834 id.nn.benchmark-13159 (13131) [004] d.h2 24573.447589: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
52835 id.nn.benchmark-13160 (13131) [005] d..2 24573.447589: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
52836           <...>-13270 (-----) [001] d.s3 24573.447592: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
52837          <idle>-0     (-----) [005] d..1 24573.447592: cpu_idle: state=0 cpu_id=5
52838          <idle>-0     (-----) [000] .n.1 24573.447596: cpu_idle: state=4294967295 cpu_id=0
52839 id.nn.benchmark-13159 (13131) [004] d.h3 24573.447597: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
52840           <...>-13270 (-----) [001] dnH2 24573.447598: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
52841          <idle>-0     (-----) [000] d..2 24573.447601: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
52842          <idle>-0     (-----) [005] .n.1 24573.447602: cpu_idle: state=4294967295 cpu_id=5
52843          <idle>-0     (-----) [005] d..2 24573.447605: 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
52844           <...>-13270 (-----) [001] d..2 24573.447607: sched_switch: prev_comm=id.nn.benchmark prev_pid=13270 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
52845         sugov:4-560   (  560) [005] d..2 24573.447610: 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
52846          <idle>-0     (-----) [005] d..1 24573.447612: cpu_idle: state=0 cpu_id=5
52847  crtc_event:111-254   (  254) [000] d..2 24573.447617: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52848          <idle>-0     (-----) [000] d..1 24573.447627: cpu_idle: state=0 cpu_id=0
52849          <idle>-0     (-----) [000] ...1 24573.447635: cpu_idle: state=4294967295 cpu_id=0
52850          <idle>-0     (-----) [000] d..1 24573.447637: cpu_idle: state=0 cpu_id=0
52851  kworker/u16:15-18488 (18488) [001] .... 24573.447646: clk_set_rate: l3_cluster0_vote_clk 403200000
52852  kworker/u16:15-18488 (18488) [001] d..2 24573.447656: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13270 next_prio=110
52853           <...>-13154 (-----) [007] d..2 24573.447732: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
52854          <idle>-0     (-----) [007] d..1 24573.447735: cpu_idle: state=0 cpu_id=7
52855          <idle>-0     (-----) [005] ...1 24573.447801: cpu_idle: state=4294967295 cpu_id=5
52856          <idle>-0     (-----) [005] d..1 24573.447802: cpu_idle: state=0 cpu_id=5
52857          <idle>-0     (-----) [007] ...1 24573.447925: cpu_idle: state=4294967295 cpu_id=7
52858          <idle>-0     (-----) [007] d..1 24573.447926: cpu_idle: state=0 cpu_id=7
52859           <...>-13270 (-----) [001] d..1 24573.448353: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=007
52860           <...>-13270 (-----) [001] d..1 24573.448370: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=004
52861          <idle>-0     (-----) [005] dnh2 24573.448372: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
52862          <idle>-0     (-----) [005] .n.1 24573.448374: cpu_idle: state=4294967295 cpu_id=5
52863          <idle>-0     (-----) [005] d..2 24573.448377: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
52864           <...>-13270 (-----) [001] d..1 24573.448384: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
52865          <idle>-0     (-----) [007] dnh2 24573.448387: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=007
52866          <idle>-0     (-----) [007] .n.1 24573.448389: cpu_idle: state=4294967295 cpu_id=7
52867          <idle>-0     (-----) [007] d..2 24573.448392: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
52868           <...>-13270 (-----) [001] d..1 24573.448394: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
52869 id.nn.benchmark-13158 (13131) [006] dnh1 24573.448396: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
52870 id.nn.benchmark-13158 (13131) [006] d..2 24573.448398: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
52871           <...>-13270 (-----) [001] d..1 24573.448408: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=005
52872 id.nn.benchmark-13159 (13131) [004] dnh1 24573.448409: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=004
52873 id.nn.benchmark-13159 (13131) [004] d..2 24573.448411: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
52874           <...>-13154 (-----) [005] d.h1 24573.448419: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=005
52875          <idle>-0     (-----) [000] d.h2 24573.449083: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
52876          <idle>-0     (-----) [000] dnh3 24573.449089: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
52877          <idle>-0     (-----) [000] .n.1 24573.449094: cpu_idle: state=4294967295 cpu_id=0
52878          <idle>-0     (-----) [000] d..2 24573.449097: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
52879        DispSync-23904 (23896) [000] d..1 24573.449113: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
52880        DispSync-23904 (23896) [000] d..2 24573.449127: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
52881          <idle>-0     (-----) [002] .n.1 24573.449133: cpu_idle: state=4294967295 cpu_id=2
52882          <idle>-0     (-----) [002] d..2 24573.449140: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
52883        DispSync-23904 (23896) [000] d..2 24573.449160: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
52884  appEventThread-23905 (23896) [002] d..3 24573.449173: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
52885 id.nn.benchmark-13160 (13131) [000] d.h4 24573.449190: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
52886 id.nn.benchmark-13160 (13131) [000] d.h4 24573.449205: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
52887 id.nn.benchmark-13155 (13131) [007] dnh1 24573.449206: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
52888 id.nn.benchmark-13155 (13131) [007] d..2 24573.449209: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
52889  appEventThread-23905 (23896) [002] d..4 24573.449210: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
52890         sugov:4-560   (  560) [007] d..2 24573.449213: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
52891          <idle>-0     (-----) [003] .n.1 24573.449215: cpu_idle: state=4294967295 cpu_id=3
52892 id.nn.benchmark-13160 (13131) [000] d.h5 24573.449217: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
52893          <idle>-0     (-----) [003] d..2 24573.449242: 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
52894         sugov:0-559   (  559) [003] d..2 24573.449251: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
52895  appEventThread-23905 (23896) [002] d..2 24573.449272: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
52896<...>-24151 ( 24151) [003] .... 24573.449507: binder_transaction: transaction=1669945 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
52897<...>-24151 ( 24151) [003] d..4 24573.449515: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
52898 id.nn.benchmark-13155 (13131) [007] dnh1 24573.449533: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
52899 id.nn.benchmark-13155 (13131) [007] d..2 24573.449535: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
52900  Binder:23896_5-25989 (23896) [007] .... 24573.449539: binder_transaction_received: transaction=1669945
52901<...>-24151 ( 24151) [003] d..3 24573.449554: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
52902  Binder:23896_5-25989 (23896) [007] d..1 24573.449555: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
52903  Binder:23896_5-25989 (23896) [007] d.h1 24573.449568: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
52904<...>-24151 ( 24151) [003] dnh1 24573.449571: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
52905  Binder:23896_5-25989 (23896) [007] d..2 24573.449579: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
52906<...>-24151 ( 24151) [003] d..2 24573.449579: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
52907    RenderThread-24437 (24151) [007] d..2 24573.449596: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
52908  appEventThread-23905 (23896) [003] d..2 24573.449603: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
52909<...>-24151 ( 24151) [003] d..3 24573.449702: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
52910 id.nn.benchmark-13155 (13131) [007] dnh1 24573.449717: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
52911 id.nn.benchmark-13155 (13131) [007] d..2 24573.449720: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
52912<...>-24151 ( 24151) [003] d..2 24573.449728: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
52913          <idle>-0     (-----) [003] d..1 24573.449736: cpu_idle: state=0 cpu_id=3
52914    RenderThread-24437 (24151) [007] d..1 24573.449768: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
52915          <idle>-0     (-----) [003] dnh2 24573.449784: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
52916          <idle>-0     (-----) [003] .n.1 24573.449787: cpu_idle: state=4294967295 cpu_id=3
52917          <idle>-0     (-----) [003] d..2 24573.449793: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
52918    RenderThread-24437 (24151) [007] .... 24573.449802: binder_transaction: transaction=1669946 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
52919    RenderThread-24437 (24151) [007] d..4 24573.449805: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
52920    RenderThread-24437 (24151) [007] d..5 24573.449810: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
52921    RenderThread-24437 (24151) [007] d..2 24573.449814: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
52922  Binder:23896_5-25989 (23896) [007] .... 24573.449816: binder_transaction_received: transaction=1669946
52923<...>-24151 ( 24151) [003] d..2 24573.449838: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
52924  Binder:23896_5-25989 (23896) [007] .... 24573.449842: binder_transaction: transaction=1669947 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
52925          <idle>-0     (-----) [003] d..1 24573.449845: cpu_idle: state=0 cpu_id=3
52926  Binder:23896_5-25989 (23896) [007] d..2 24573.449846: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
52927  Binder:23896_5-25989 (23896) [007] d.h3 24573.449877: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
52928          <idle>-0     (-----) [003] dnh2 24573.449879: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=003
52929  Binder:23896_5-25989 (23896) [007] dnh4 24573.449880: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
52930  Binder:23896_5-25989 (23896) [007] dnh3 24573.449881: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
52931          <idle>-0     (-----) [003] .n.1 24573.449882: cpu_idle: state=4294967295 cpu_id=3
52932          <idle>-0     (-----) [003] dn.2 24573.449887: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
52933  Binder:23896_5-25989 (23896) [007] d..2 24573.449890: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
52934          <idle>-0     (-----) [003] d..2 24573.449893: 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
52935         sugov:4-560   (  560) [007] d..2 24573.449894: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
52936         sugov:0-559   (  559) [003] d..2 24573.449901: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
52937  Binder:23896_5-25989 (23896) [007] d..2 24573.449904: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
52938    RenderThread-24437 (24151) [003] .... 24573.449905: binder_transaction_received: transaction=1669947
52939    RenderThread-24437 (24151) [003] d..2 24573.450825: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
52940          <idle>-0     (-----) [003] d..1 24573.450833: cpu_idle: state=0 cpu_id=3
52941           <...>-13157 (-----) [004] d.s2 24573.450888: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
52942 id.nn.benchmark-13160 (13131) [000] d.s1 24573.450898: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
52943 id.nn.benchmark-13159 (13131) [002] d.h2 24573.450901: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
52944           <...>-13270 (-----) [001] dnh1 24573.450904: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
52945 id.nn.benchmark-13159 (13131) [002] dnh3 24573.450907: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
52946 id.nn.benchmark-13160 (13131) [000] d.s2 24573.450914: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
52947          <idle>-0     (-----) [003] d.H2 24573.450917: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=003
52948 id.nn.benchmark-13159 (13131) [002] d..2 24573.450917: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
52949           <...>-13270 (-----) [001] d..2 24573.450919: sched_switch: prev_comm=id.nn.benchmark prev_pid=13270 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
52950          <idle>-0     (-----) [003] d.H3 24573.450924: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
52951          <idle>-0     (-----) [003] dnH3 24573.450927: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=003
52952          <idle>-0     (-----) [003] .n.1 24573.450936: cpu_idle: state=4294967295 cpu_id=3
52953     migration/2-25    (   25) [002] d.h3 24573.450959: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
52954          <idle>-0     (-----) [003] d..2 24573.450962: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
52955     migration/2-25    (   25) [002] d.h3 24573.450971: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
52956           <...>-13157 (-----) [004] dnh1 24573.450974: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
52957           <...>-13157 (-----) [004] d..2 24573.450976: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
52958         sugov:4-560   (  560) [004] d..2 24573.450980: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
52959     migration/2-25    (   25) [002] d.h4 24573.450981: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
52960     migration/2-25    (   25) [002] d..2 24573.450991: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
52961         sugov:0-559   (  559) [002] d..2 24573.451018: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
52962 id.nn.benchmark-13160 (13131) [000] d.h2 24573.451038: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
52963 id.nn.benchmark-13160 (13131) [000] d.h3 24573.451057: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
52964    RenderThread-24437 (24151) [003] d..2 24573.451063: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
52965 kgsl_worker_thr-246   (  246) [003] d..2 24573.451098: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
52966 id.nn.benchmark-13155 (13131) [007] dnh1 24573.451130: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
52967 id.nn.benchmark-13155 (13131) [007] d..2 24573.451133: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
52968 kgsl_worker_thr-246   (  246) [003] d..2 24573.451135: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
52969  kworker/u16:10-23868 (23868) [007] d..2 24573.451151: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
52970  kworker/u16:15-18488 (18488) [001] d..2 24573.451190: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
52971     rcu_preempt-7     (    7) [001] d..2 24573.451199: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13270 next_prio=110
52972    RenderThread-24437 (24151) [003] d.s2 24573.451226: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
52973    RenderThread-24437 (24151) [003] d.s3 24573.451242: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
52974    RenderThread-24437 (24151) [003] d.s3 24573.451248: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
52975    RenderThread-24437 (24151) [003] .... 24573.451252: binder_transaction: transaction=1669948 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
52976           <...>-13270 (-----) [001] d..2 24573.451256: sched_switch: prev_comm=id.nn.benchmark prev_pid=13270 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
52977    RenderThread-24437 (24151) [003] d..4 24573.451259: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
52978    RenderThread-24437 (24151) [003] d..5 24573.451273: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=003
52979    RenderThread-24437 (24151) [003] d..2 24573.451303: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
52980  Binder:23896_5-25989 (23896) [003] .... 24573.451307: binder_transaction_received: transaction=1669948
52981  Binder:23896_5-25989 (23896) [003] .... 24573.451401: binder_transaction: transaction=1669949 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
52982  Binder:23896_5-25989 (23896) [003] d..2 24573.451405: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=003
52983  Binder:23896_5-25989 (23896) [003] d..3 24573.451412: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=003
52984  Binder:23896_5-25989 (23896) [003] d..2 24573.451431: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
52985    RenderThread-24437 (24151) [003] .... 24573.451434: binder_transaction_received: transaction=1669949
52986  kworker/u16:15-18488 (18488) [001] d..2 24573.451442: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13270 next_prio=110
52987    RenderThread-24437 (24151) [003] d..2 24573.451491: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
52988          <idle>-0     (-----) [003] d..1 24573.451500: cpu_idle: state=0 cpu_id=3
52989           <...>-13154 (-----) [005] d..2 24573.452932: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
52990 id.nn.benchmark-13156 (13131) [006] d..3 24573.452938: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
52991 id.nn.benchmark-13156 (13131) [006] d..2 24573.452946: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
52992 id.nn.benchmark-13160 (13131) [000] dnh1 24573.452948: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
52993 id.nn.benchmark-13160 (13131) [000] d..2 24573.452954: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
52994          <idle>-0     (-----) [006] d..1 24573.452954: cpu_idle: state=0 cpu_id=6
52995          <idle>-0     (-----) [006] .n.1 24573.452977: cpu_idle: state=4294967295 cpu_id=6
52996          <idle>-0     (-----) [006] d..2 24573.452996: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
52997     migration/0-13    (   13) [000] d.h3 24573.452996: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
52998           <...>-13157 (-----) [004] d..2 24573.452999: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
52999     migration/0-13    (   13) [000] d.h3 24573.453007: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
53000          <idle>-0     (-----) [004] d..1 24573.453008: cpu_idle: state=0 cpu_id=4
53001          <idle>-0     (-----) [004] dnh2 24573.453014: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
53002          <idle>-0     (-----) [004] .n.1 24573.453016: cpu_idle: state=4294967295 cpu_id=4
53003     migration/0-13    (   13) [000] d.h4 24573.453019: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
53004          <idle>-0     (-----) [004] d..2 24573.453019: 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
53005         sugov:4-560   (  560) [004] d..3 24573.453024: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
53006          <idle>-0     (-----) [003] .n.1 24573.453024: cpu_idle: state=4294967295 cpu_id=3
53007          <idle>-0     (-----) [003] d..2 24573.453030: 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
53008         sugov:4-560   (  560) [004] d..2 24573.453030: 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
53009     migration/0-13    (   13) [000] d..2 24573.453032: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53010          <idle>-0     (-----) [004] d..1 24573.453032: cpu_idle: state=0 cpu_id=4
53011 id.nn.benchmark-13159 (13131) [002] dnh1 24573.453033: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
53012 id.nn.benchmark-13159 (13131) [002] d..2 24573.453037: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
53013          <idle>-0     (-----) [000] d..1 24573.453039: cpu_idle: state=0 cpu_id=0
53014           <...>-13270 (-----) [001] ...1 24573.453052: tracing_mark_write: E|13131
53015         sugov:0-559   (  559) [003] d..2 24573.453053: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
53016           <...>-13270 (-----) [001] ...1 24573.453056: tracing_mark_write: E|13131
53017     migration/2-25    (   25) [002] d..2 24573.453056: 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
53018          <idle>-0     (-----) [002] d..1 24573.453066: cpu_idle: state=0 cpu_id=2
53019           <...>-13270 (-----) [001] ...1 24573.453072: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53020           <...>-13270 (-----) [001] ...1 24573.453077: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53021          <idle>-0     (-----) [000] d.h2 24573.453079: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
53022          <idle>-0     (-----) [000] dnh3 24573.453085: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
53023          <idle>-0     (-----) [000] .n.1 24573.453089: cpu_idle: state=4294967295 cpu_id=0
53024          <idle>-0     (-----) [000] d..2 24573.453094: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
53025        DispSync-23904 (23896) [000] d..1 24573.453104: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
53026        DispSync-23904 (23896) [000] d..2 24573.453114: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
53027          <idle>-0     (-----) [002] .n.1 24573.453119: cpu_idle: state=4294967295 cpu_id=2
53028          <idle>-0     (-----) [002] d..2 24573.453124: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
53029        DispSync-23904 (23896) [000] d..2 24573.453130: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53030          <idle>-0     (-----) [000] d..1 24573.453137: cpu_idle: state=0 cpu_id=0
53031   sfEventThread-23906 (23896) [002] d..3 24573.453146: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
53032   sfEventThread-23906 (23896) [002] d..4 24573.453162: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
53033          <idle>-0     (-----) [000] .n.1 24573.453167: cpu_idle: state=4294967295 cpu_id=0
53034          <idle>-0     (-----) [000] d..2 24573.453172: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
53035   sfEventThread-23906 (23896) [002] d..2 24573.453179: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
53036          <idle>-0     (-----) [002] d..1 24573.453186: cpu_idle: state=0 cpu_id=2
53037          <idle>-0     (-----) [004] ...1 24573.453223: cpu_idle: state=4294967295 cpu_id=4
53038          <idle>-0     (-----) [004] d..1 24573.453224: cpu_idle: state=0 cpu_id=4
53039 id.nn.benchmark-13155 (13131) [007] d..3 24573.453237: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
53040 id.nn.benchmark-13155 (13131) [007] d..2 24573.453243: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
53041 id.nn.benchmark-13159 (13131) [003] dnh1 24573.453247: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
53042          <idle>-0     (-----) [007] d..1 24573.453248: cpu_idle: state=0 cpu_id=7
53043 id.nn.benchmark-13159 (13131) [003] d..2 24573.453252: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
53044          <idle>-0     (-----) [007] .n.1 24573.453274: cpu_idle: state=4294967295 cpu_id=7
53045          <idle>-0     (-----) [007] d..2 24573.453292: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
53046<...>-33 ( 33) [003] d..2 24573.453300: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
53047          <idle>-0     (-----) [003] d..1 24573.453307: cpu_idle: state=0 cpu_id=3
53048  surfaceflinger-23896 (23896) [000] d..1 24573.453378: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
53049  surfaceflinger-23896 (23896) [000] d..2 24573.453390: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
53050          <idle>-0     (-----) [002] .n.1 24573.453395: cpu_idle: state=4294967295 cpu_id=2
53051          <idle>-0     (-----) [002] d..2 24573.453400: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
53052   sfEventThread-23906 (23896) [002] d..2 24573.453418: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
53053          <idle>-0     (-----) [002] d..1 24573.453423: cpu_idle: state=0 cpu_id=2
53054  surfaceflinger-23896 (23896) [000] ...1 24573.453549: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
53055  surfaceflinger-23896 (23896) [000] ...1 24573.453553: tracing_mark_write: E|23896
53056           <...>-13270 (-----) [001] d..1 24573.453556: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
53057           <...>-13270 (-----) [001] d..1 24573.453572: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=007
53058          <idle>-0     (-----) [004] dnh2 24573.453575: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
53059          <idle>-0     (-----) [004] .n.1 24573.453577: cpu_idle: state=4294967295 cpu_id=4
53060          <idle>-0     (-----) [004] d..2 24573.453579: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
53061           <...>-13270 (-----) [001] d..1 24573.453582: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
53062 id.nn.benchmark-13159 (13131) [007] d.h1 24573.453584: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=007
53063  surfaceflinger-23896 (23896) [000] .... 24573.453589: binder_transaction: transaction=1669950 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
53064           <...>-13270 (-----) [001] d..1 24573.453591: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=004
53065 id.nn.benchmark-13160 (13131) [006] d.h1 24573.453593: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
53066           <...>-13154 (-----) [004] d.h1 24573.453602: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=004
53067  surfaceflinger-23896 (23896) [000] ...2 24573.453606: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
53068  surfaceflinger-23896 (23896) [000] d..4 24573.453612: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
53069  surfaceflinger-23896 (23896) [000] d..5 24573.453632: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
53070          <idle>-0     (-----) [002] .n.1 24573.453636: cpu_idle: state=4294967295 cpu_id=2
53071          <idle>-0     (-----) [002] d..2 24573.453663: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
53072  surfaceflinger-23896 (23896) [000] d.h5 24573.453663: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
53073 id.nn.benchmark-13159 (13131) [007] dnh1 24573.453678: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
53074  HwBinder:598_3-633   (  598) [002] .... 24573.453678: binder_transaction_received: transaction=1669950
53075 id.nn.benchmark-13159 (13131) [007] d..2 24573.453680: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
53076         sugov:4-560   (  560) [007] d..2 24573.453684: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
53077  surfaceflinger-23896 (23896) [000] d..2 24573.453702: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
53078  HwBinder:598_3-633   (  598) [002] ...1 24573.453713: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
53079 id.nn.benchmark-13159 (13131) [000] d.h4 24573.453729: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
53080 id.nn.benchmark-13159 (13131) [000] d.h5 24573.453738: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
53081          <idle>-0     (-----) [003] .n.1 24573.453742: cpu_idle: state=4294967295 cpu_id=3
53082          <idle>-0     (-----) [003] d..2 24573.453747: 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
53083         sugov:0-559   (  559) [003] d..2 24573.453772: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
53084  HwBinder:598_3-633   (  598) [002] ...1 24573.453788: tracing_mark_write: B|598|HWCSession::PresentDisplay::
53085  HwBinder:598_3-633   (  598) [002] ...1 24573.453900: tracing_mark_write: B|598|HWDeviceDRM::Commit::
53086  HwBinder:598_3-633   (  598) [002] ...1 24573.453906: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
53087 id.nn.benchmark-13159 (13131) [000] d.h2 24573.454228: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
53088 id.nn.benchmark-13159 (13131) [000] dnh3 24573.454232: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
53089 id.nn.benchmark-13159 (13131) [000] d..2 24573.454242: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
53090     migration/0-13    (   13) [000] d.h3 24573.454281: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
53091     migration/0-13    (   13) [000] d.h3 24573.454289: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
53092 id.nn.benchmark-13155 (13131) [007] dnh1 24573.454292: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
53093 id.nn.benchmark-13155 (13131) [007] d..2 24573.454295: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
53094  HwBinder:598_3-633   (  598) [002] d..2 24573.454295: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
53095         sugov:4-560   (  560) [007] d..2 24573.454298: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
53096     migration/0-13    (   13) [000] d.h4 24573.454298: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
53097     migration/0-13    (   13) [000] d..2 24573.454308: 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
53098  HwBinder:598_3-633   (  598) [002] d..3 24573.454320: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
53099           <...>-13270 (-----) [001] d..2 24573.454329: sched_switch: prev_comm=id.nn.benchmark prev_pid=13270 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
53100         sugov:0-559   (  559) [000] d..2 24573.454338: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
53101  HwBinder:598_3-633   (  598) [002] ...1 24573.454377: tracing_mark_write: E|598
53102  HwBinder:598_3-633   (  598) [002] ...1 24573.454381: tracing_mark_write: E|598
53103  HwBinder:598_3-633   (  598) [002] ...1 24573.454417: tracing_mark_write: E|598
53104  HwBinder:598_3-633   (  598) [002] ...1 24573.454449: tracing_mark_write: E|598
53105  HwBinder:598_3-633   (  598) [002] .... 24573.454458: binder_transaction: transaction=1669951 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
53106  HwBinder:598_3-633   (  598) [002] d..2 24573.454469: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
53107  HwBinder:598_3-633   (  598) [002] d..3 24573.454480: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
53108  HwBinder:598_3-633   (  598) [002] .... 24573.454482: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
53109 id.nn.benchmark-13155 (13131) [000] d..2 24573.454487: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
53110  surfaceflinger-23896 (23896) [000] .... 24573.454492: binder_transaction_received: transaction=1669951
53111  HwBinder:598_3-633   (  598) [002] d..2 24573.454543: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
53112  surfaceflinger-23896 (23896) [000] d..2 24573.454730: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
53113 crtc_commit:111-253   (  253) [001] d..2 24573.454921: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13270 next_prio=110
53114           <...>-13270 (-----) [001] ...1 24573.454932: tracing_mark_write: E|13131
53115           <...>-13270 (-----) [001] ...1 24573.454936: tracing_mark_write: E|13131
53116           <...>-13270 (-----) [001] ...1 24573.454958: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53117           <...>-13270 (-----) [001] ...1 24573.454962: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53118           <...>-13270 (-----) [001] ...1 24573.455296: tracing_mark_write: E|13131
53119           <...>-13270 (-----) [001] ...1 24573.455300: tracing_mark_write: E|13131
53120           <...>-13270 (-----) [001] ...1 24573.455312: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53121           <...>-13270 (-----) [001] ...1 24573.455316: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53122           <...>-13270 (-----) [001] ...1 24573.455558: tracing_mark_write: E|13131
53123           <...>-13270 (-----) [001] ...1 24573.455562: tracing_mark_write: E|13131
53124           <...>-13270 (-----) [001] ...1 24573.455573: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53125           <...>-13270 (-----) [001] ...1 24573.455577: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53126           <...>-13270 (-----) [001] ...1 24573.455972: tracing_mark_write: E|13131
53127           <...>-13270 (-----) [001] ...1 24573.455976: tracing_mark_write: E|13131
53128           <...>-13270 (-----) [001] ...1 24573.455986: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53129           <...>-13270 (-----) [001] ...1 24573.455991: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53130           <...>-13270 (-----) [001] ...1 24573.456385: tracing_mark_write: E|13131
53131           <...>-13270 (-----) [001] ...1 24573.456388: tracing_mark_write: E|13131
53132           <...>-13270 (-----) [001] ...1 24573.456407: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53133           <...>-13270 (-----) [001] ...1 24573.456411: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53134           <...>-13270 (-----) [001] ...1 24573.456607: tracing_mark_write: E|13131
53135           <...>-13270 (-----) [001] ...1 24573.456610: tracing_mark_write: E|13131
53136           <...>-13270 (-----) [001] ...1 24573.456624: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53137           <...>-13270 (-----) [001] ...1 24573.456628: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53138           <...>-13270 (-----) [001] ...1 24573.456698: tracing_mark_write: E|13131
53139           <...>-13270 (-----) [001] ...1 24573.456702: tracing_mark_write: E|13131
53140           <...>-13270 (-----) [001] ...1 24573.456714: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
53141           <...>-13270 (-----) [001] ...1 24573.456719: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
53142           <...>-13270 (-----) [001] ...1 24573.457033: tracing_mark_write: E|13131
53143           <...>-13270 (-----) [001] ...1 24573.457036: tracing_mark_write: E|13131
53144           <...>-13270 (-----) [001] ...1 24573.457046: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
53145           <...>-13270 (-----) [001] ...1 24573.457049: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
53146           <...>-13270 (-----) [001] ...1 24573.457105: tracing_mark_write: E|13131
53147           <...>-13270 (-----) [001] ...1 24573.457108: tracing_mark_write: E|13131
53148           <...>-13270 (-----) [001] ...1 24573.457117: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
53149           <...>-13270 (-----) [001] ...1 24573.457120: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
53150           <...>-13270 (-----) [001] ...1 24573.457138: tracing_mark_write: E|13131
53151           <...>-13270 (-----) [001] ...1 24573.457141: tracing_mark_write: E|13131
53152           <...>-13270 (-----) [001] ...1 24573.457152: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
53153           <...>-13270 (-----) [001] ...1 24573.457155: tracing_mark_write: E|13131
53154           <...>-13270 (-----) [001] ...1 24573.457164: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
53155           <...>-13270 (-----) [001] ...1 24573.457168: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
53156           <...>-13154 (-----) [004] d.s2 24573.457557: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
53157           <...>-13157 (-----) [003] d.s2 24573.457565: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
53158           <...>-13270 (-----) [001] dnH1 24573.457586: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
53159 id.nn.benchmark-13158 (13131) [005] d.h2 24573.457588: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
53160           <...>-13157 (-----) [003] d.s3 24573.457591: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
53161 id.nn.benchmark-13158 (13131) [005] d.h3 24573.457594: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
53162 id.nn.benchmark-13158 (13131) [005] d.h2 24573.457595: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
53163           <...>-13270 (-----) [001] d..2 24573.457598: sched_switch: prev_comm=id.nn.benchmark prev_pid=13270 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
53164 id.nn.benchmark-13159 (13131) [007] d..2 24573.457600: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
53165         sugov:4-560   (  560) [007] d..2 24573.457603: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
53166  kworker/u16:15-18488 (18488) [001] dnh3 24573.457612: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
53167  kworker/u16:15-18488 (18488) [001] d..2 24573.457617: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
53168         sugov:0-559   (  559) [001] d..2 24573.457624: 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
53169     rcu_preempt-7     (    7) [001] d..2 24573.457630: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
53170     rcu_preempt-7     (    7) [001] d..3 24573.457647: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
53171     rcu_preempt-7     (    7) [001] d..2 24573.457659: 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
53172         rcuop/0-10    (   10) [001] d..2 24573.457673: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
53173  kworker/u16:15-18488 (18488) [001] .... 24573.457746: clk_set_rate: l3_cluster0_vote_clk 1401600000
53174  kworker/u16:15-18488 (18488) [001] d..2 24573.457758: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13270 next_prio=110
53175           <...>-13270 (-----) [001] ...1 24573.458238: tracing_mark_write: E|13131
53176           <...>-13270 (-----) [001] ...1 24573.458241: tracing_mark_write: E|13131
53177           <...>-13270 (-----) [001] ...1 24573.458251: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53178           <...>-13270 (-----) [001] ...1 24573.458255: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53179           <...>-13270 (-----) [001] ...1 24573.458339: tracing_mark_write: E|13131
53180           <...>-13270 (-----) [001] ...1 24573.458342: tracing_mark_write: E|13131
53181           <...>-13270 (-----) [001] d..2 24573.458390: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
53182           <...>-13270 (-----) [001] d..3 24573.458403: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
53183           <...>-13270 (-----) [001] ...1 24573.458425: tracing_mark_write: E|13131
53184           <...>-13270 (-----) [001] d..1 24573.458430: sched_waking: comm=id.nn.benchmark pid=13269 prio=110 target_cpu=000
53185 id.nn.benchmark-13159 (13131) [007] dnh1 24573.458452: sched_wakeup: comm=id.nn.benchmark pid=13269 prio=110 target_cpu=007
53186 id.nn.benchmark-13159 (13131) [007] d..2 24573.458476: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13269 next_prio=110
53187           <...>-13270 (-----) [001] d.h3 24573.458477: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
53188           <...>-13269 (-----) [007] d..2 24573.458485: sched_switch: prev_comm=id.nn.benchmark prev_pid=13269 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
53189           <...>-13270 (-----) [001] d.h3 24573.458492: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
53190 id.nn.benchmark-13160 (13131) [006] dnh1 24573.458495: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
53191           <...>-13270 (-----) [001] dnh4 24573.458498: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
53192 id.nn.benchmark-13160 (13131) [006] d..2 24573.458498: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
53193         sugov:4-560   (  560) [006] d..2 24573.458502: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
53194           <...>-13270 (-----) [001] d..2 24573.458504: sched_switch: prev_comm=id.nn.benchmark prev_pid=13270 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
53195         sugov:0-559   (  559) [001] d..2 24573.458511: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
53196     logd.writer-563   (  555) [001] d..2 24573.458573: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13270 next_prio=110
53197           <...>-13270 (-----) [001] ...1 24573.458592: tracing_mark_write: E|13131
53198           <...>-13270 (-----) [001] d..1 24573.458802: sched_waking: comm=id.nn.benchmark pid=13269 prio=110 target_cpu=007
53199           <...>-13270 (-----) [001] dn.2 24573.458834: sched_wakeup: comm=id.nn.benchmark pid=13269 prio=110 target_cpu=001
53200           <...>-13270 (-----) [001] d..2 24573.458859: sched_switch: prev_comm=id.nn.benchmark prev_pid=13270 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13269 next_prio=110
53201           <...>-13269 (-----) [001] d..2 24573.458911: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
53202           <...>-13269 (-----) [001] d..3 24573.458922: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
53203           <...>-13269 (-----) [001] d..1 24573.458977: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
53204 id.nn.benchmark-13159 (13131) [007] dnh1 24573.459019: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
53205           <...>-13269 (-----) [001] d.h3 24573.459021: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
53206 id.nn.benchmark-13159 (13131) [007] d..2 24573.459021: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
53207           <...>-13131 (-----) [007] d..2 24573.459027: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
53208           <...>-13269 (-----) [001] d.h3 24573.459034: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
53209 id.nn.benchmark-13159 (13131) [007] dnh1 24573.459037: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
53210 id.nn.benchmark-13159 (13131) [007] d..2 24573.459039: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
53211           <...>-13269 (-----) [001] dnh4 24573.459040: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
53212         sugov:4-560   (  560) [007] d..2 24573.459042: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
53213           <...>-13269 (-----) [001] d..2 24573.459045: sched_switch: prev_comm=id.nn.benchmark prev_pid=13269 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
53214         sugov:0-559   (  559) [001] d..2 24573.459052: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13269 next_prio=110
53215           <...>-13269 (-----) [001] d..1 24573.459111: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
53216 id.nn.benchmark-13159 (13131) [007] dnh1 24573.459123: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
53217 id.nn.benchmark-13159 (13131) [007] d..2 24573.459125: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
53218           <...>-13131 (-----) [007] ...1 24573.459141: tracing_mark_write: E|13131
53219           <...>-13131 (-----) [007] ...1 24573.459144: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
53220           <...>-13131 (-----) [007] ...1 24573.459147: tracing_mark_write: E|13131
53221           <...>-13131 (-----) [007] ...1 24573.459149: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
53222           <...>-13131 (-----) [007] ...1 24573.459151: tracing_mark_write: E|13131
53223           <...>-13269 (-----) [001] d..2 24573.459177: sched_switch: prev_comm=id.nn.benchmark prev_pid=13269 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
53224           <...>-13131 (-----) [007] ...1 24573.459213: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
53225           <...>-13131 (-----) [007] d..2 24573.459232: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
53226     logd.writer-563   (  555) [001] d..2 24573.459236: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13270 next_prio=110
53227           <...>-13270 (-----) [001] d.h2 24573.459251: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
53228           <...>-13131 (-----) [007] ...1 24573.459254: tracing_mark_write: E|13131
53229           <...>-13131 (-----) [007] ...1 24573.459256: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
53230           <...>-13131 (-----) [007] ...1 24573.459259: tracing_mark_write: E|13131
53231           <...>-13131 (-----) [007] ...1 24573.459260: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
53232           <...>-13131 (-----) [007] ...1 24573.459262: tracing_mark_write: E|13131
53233           <...>-13131 (-----) [007] ...1 24573.459264: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
53234           <...>-13270 (-----) [001] d..2 24573.459277: sched_switch: prev_comm=id.nn.benchmark prev_pid=13270 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
53235     logd.writer-563   (  555) [001] d..2 24573.459328: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
53236           <...>-13131 (-----) [007] ...1 24573.459335: tracing_mark_write: E|13131
53237           <...>-13131 (-----) [007] ...1 24573.459337: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
53238           <...>-13131 (-----) [007] d..2 24573.459353: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13271 next_prio=110
53239           <...>-13271 (-----) [007] d..2 24573.459376: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
53240 id.nn.benchmark-13159 (13131) [001] d.h1 24573.459387: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
53241           <...>-13271 (-----) [007] d..2 24573.459513: sched_switch: prev_comm=id.nn.benchmark prev_pid=13271 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13272 next_prio=110
53242           <...>-13272 (-----) [007] ...1 24573.459524: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
53243           <...>-13272 (-----) [007] ...1 24573.459526: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
53244           <...>-13272 (-----) [007] ...1 24573.459580: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53245           <...>-13272 (-----) [007] ...1 24573.459582: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53246           <...>-13272 (-----) [007] ...1 24573.460437: tracing_mark_write: E|13131
53247           <...>-13272 (-----) [007] ...1 24573.460439: tracing_mark_write: E|13131
53248           <...>-13272 (-----) [007] ...1 24573.460443: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53249           <...>-13272 (-----) [007] ...1 24573.460444: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53250           <...>-13272 (-----) [007] ...1 24573.460809: tracing_mark_write: E|13131
53251           <...>-13272 (-----) [007] ...1 24573.460810: tracing_mark_write: E|13131
53252           <...>-13272 (-----) [007] ...1 24573.460816: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53253           <...>-13272 (-----) [007] ...1 24573.460817: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53254           <...>-13154 (-----) [004] d.s2 24573.460889: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
53255 id.nn.benchmark-13155 (13131) [000] d.h2 24573.460897: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
53256 id.nn.benchmark-13155 (13131) [000] dnh3 24573.460904: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
53257           <...>-13154 (-----) [004] d.s3 24573.460907: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
53258           <...>-13154 (-----) [004] d.H3 24573.460928: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
53259 id.nn.benchmark-13160 (13131) [006] d..2 24573.460929: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
53260 id.nn.benchmark-13155 (13131) [000] d..2 24573.460930: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
53261 id.nn.benchmark-13159 (13131) [001] dnh1 24573.460940: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
53262 id.nn.benchmark-13159 (13131) [001] d..2 24573.460946: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
53263         sugov:0-559   (  559) [001] d..2 24573.460955: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
53264     migration/0-13    (   13) [000] d.h5 24573.461060: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
53265     migration/0-13    (   13) [000] d.h6 24573.461069: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
53266     migration/0-13    (   13) [000] d.h5 24573.461073: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
53267           <...>-13272 (-----) [007] dnh1 24573.461090: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
53268           <...>-13272 (-----) [007] d..2 24573.461093: sched_switch: prev_comm=id.nn.benchmark prev_pid=13272 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
53269     migration/0-13    (   13) [000] d.h3 24573.461111: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
53270  kworker/u16:15-18488 (18488) [006] dnh3 24573.461125: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
53271  kworker/u16:15-18488 (18488) [006] d..2 24573.461127: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
53272     migration/0-13    (   13) [000] d..2 24573.461130: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
53273         sugov:4-560   (  560) [006] d..2 24573.461131: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
53274  crtc_event:111-254   (  254) [000] d..2 24573.461166: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
53275 crtc_commit:111-253   (  253) [007] d..2 24573.461188: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
53276  kworker/u16:15-18488 (18488) [006] d..2 24573.461296: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
53277           <...>-13157 (-----) [003] d.s2 24573.461337: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
53278 id.nn.benchmark-13160 (13131) [006] d.h1 24573.461367: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
53279 id.nn.benchmark-13160 (13131) [006] dnh1 24573.461368: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
53280 id.nn.benchmark-13160 (13131) [006] d..2 24573.461371: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
53281  kworker/u16:15-18488 (18488) [006] d..2 24573.461376: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
53282     logd.writer-563   (  555) [000] d..2 24573.461476: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13272 next_prio=110
53283           <...>-13272 (-----) [000] d.h4 24573.461505: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
53284           <...>-13272 (-----) [000] d.h4 24573.461516: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
53285 id.nn.benchmark-13155 (13131) [007] dnh1 24573.461519: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
53286 id.nn.benchmark-13155 (13131) [007] d..2 24573.461522: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
53287         sugov:4-560   (  560) [007] d..2 24573.461526: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
53288           <...>-13272 (-----) [000] dnh5 24573.461526: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
53289           <...>-13272 (-----) [000] d..2 24573.461532: sched_switch: prev_comm=id.nn.benchmark prev_pid=13272 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
53290         sugov:0-559   (  559) [000] d..2 24573.461539: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13272 next_prio=110
53291           <...>-13272 (-----) [000] ...1 24573.461552: tracing_mark_write: E|13131
53292           <...>-13272 (-----) [000] ...1 24573.461557: tracing_mark_write: E|13131
53293           <...>-13272 (-----) [000] ...1 24573.461570: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53294           <...>-13272 (-----) [000] ...1 24573.461575: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53295           <...>-13272 (-----) [000] ...1 24573.461807: tracing_mark_write: E|13131
53296           <...>-13272 (-----) [000] ...1 24573.461811: tracing_mark_write: E|13131
53297           <...>-13272 (-----) [000] ...1 24573.461822: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53298           <...>-13272 (-----) [000] ...1 24573.461825: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53299           <...>-13272 (-----) [000] ...1 24573.462211: tracing_mark_write: E|13131
53300           <...>-13272 (-----) [000] ...1 24573.462215: tracing_mark_write: E|13131
53301           <...>-13272 (-----) [000] ...1 24573.462224: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53302           <...>-13272 (-----) [000] ...1 24573.462229: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53303           <...>-13272 (-----) [000] ...1 24573.462606: tracing_mark_write: E|13131
53304           <...>-13272 (-----) [000] ...1 24573.462610: tracing_mark_write: E|13131
53305           <...>-13272 (-----) [000] ...1 24573.462627: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53306           <...>-13272 (-----) [000] ...1 24573.462632: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53307           <...>-13272 (-----) [000] ...1 24573.462823: tracing_mark_write: E|13131
53308           <...>-13272 (-----) [000] ...1 24573.462827: tracing_mark_write: E|13131
53309           <...>-13272 (-----) [000] ...1 24573.462839: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53310           <...>-13272 (-----) [000] ...1 24573.462843: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53311           <...>-13272 (-----) [000] ...1 24573.462911: tracing_mark_write: E|13131
53312           <...>-13272 (-----) [000] ...1 24573.462915: tracing_mark_write: E|13131
53313           <...>-13272 (-----) [000] ...1 24573.462925: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
53314           <...>-13272 (-----) [000] ...1 24573.462930: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
53315           <...>-13272 (-----) [000] ...1 24573.463190: tracing_mark_write: E|13131
53316           <...>-13272 (-----) [000] ...1 24573.463194: tracing_mark_write: E|13131
53317           <...>-13272 (-----) [000] ...1 24573.463203: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
53318           <...>-13272 (-----) [000] ...1 24573.463206: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
53319           <...>-13272 (-----) [000] ...1 24573.463251: tracing_mark_write: E|13131
53320           <...>-13272 (-----) [000] ...1 24573.463254: tracing_mark_write: E|13131
53321           <...>-13272 (-----) [000] ...1 24573.463262: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
53322           <...>-13272 (-----) [000] ...1 24573.463266: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
53323           <...>-13272 (-----) [000] ...1 24573.463281: tracing_mark_write: E|13131
53324           <...>-13272 (-----) [000] ...1 24573.463284: tracing_mark_write: E|13131
53325           <...>-13272 (-----) [000] ...1 24573.463294: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
53326           <...>-13272 (-----) [000] ...1 24573.463297: tracing_mark_write: E|13131
53327           <...>-13272 (-----) [000] ...1 24573.463305: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
53328           <...>-13272 (-----) [000] ...1 24573.463311: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
53329           <...>-13272 (-----) [000] d.h4 24573.463403: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
53330           <...>-13272 (-----) [000] dnh5 24573.463419: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
53331           <...>-13272 (-----) [000] dnh2 24573.463451: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
53332           <...>-13272 (-----) [000] dnh2 24573.463459: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
53333 id.nn.benchmark-13155 (13131) [007] dnh1 24573.463462: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
53334 id.nn.benchmark-13155 (13131) [007] d..2 24573.463465: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
53335         sugov:4-560   (  560) [007] d..2 24573.463468: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
53336           <...>-13272 (-----) [000] dnh3 24573.463470: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
53337           <...>-13272 (-----) [000] d..2 24573.463477: sched_switch: prev_comm=id.nn.benchmark prev_pid=13272 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
53338 id.nn.benchmark-13159 (13131) [001] d..2 24573.463479: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
53339         sugov:0-559   (  559) [001] d..2 24573.463487: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
53340 crtc_commit:111-253   (  253) [000] d..2 24573.463527: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13272 next_prio=110
53341           <...>-13272 (-----) [000] d.h4 24573.463693: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
53342           <...>-13272 (-----) [000] dnh5 24573.463700: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
53343           <...>-13272 (-----) [000] d..2 24573.463714: sched_switch: prev_comm=id.nn.benchmark prev_pid=13272 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
53344  crtc_event:111-254   (  254) [000] d..2 24573.463723: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13272 next_prio=110
53345 id.nn.benchmark-13155 (13131) [007] d.s2 24573.464222: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
53346 id.nn.benchmark-13159 (13131) [001] d.s1 24573.464233: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
53347           <...>-13272 (-----) [000] dnh1 24573.464234: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
53348           <...>-13272 (-----) [000] d..2 24573.464239: sched_switch: prev_comm=id.nn.benchmark prev_pid=13272 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
53349 id.nn.benchmark-13159 (13131) [001] d.s2 24573.464247: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
53350  crtc_event:111-254   (  254) [000] d..2 24573.464255: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
53351     rcu_preempt-7     (    7) [000] d..2 24573.464259: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
53352     rcu_preempt-7     (    7) [000] d..2 24573.464284: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=005
53353 id.nn.benchmark-13160 (13131) [006] dnh1 24573.464288: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
53354 id.nn.benchmark-13160 (13131) [006] d..2 24573.464290: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
53355         rcuop/6-61    (   61) [006] d..2 24573.464305: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=006
53356 id.nn.benchmark-13158 (13131) [005] dnh1 24573.464308: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=005
53357 id.nn.benchmark-13158 (13131) [005] d..2 24573.464311: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
53358     rcu_preempt-7     (    7) [000] d..2 24573.464312: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13272 next_prio=110
53359         rcuop/6-61    (   61) [006] d..3 24573.464317: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=006
53360         rcuop/6-61    (   61) [006] d..2 24573.464320: 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
53361         rcuop/2-29    (   29) [005] d..2 24573.464329: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
53362         rcuop/7-69    (   69) [006] d..2 24573.464330: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
53363           <...>-13272 (-----) [000] ...1 24573.464563: tracing_mark_write: E|13131
53364           <...>-13272 (-----) [000] ...1 24573.464566: tracing_mark_write: E|13131
53365           <...>-13272 (-----) [000] ...1 24573.464575: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53366           <...>-13272 (-----) [000] ...1 24573.464580: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53367           <...>-13272 (-----) [000] ...1 24573.464663: tracing_mark_write: E|13131
53368           <...>-13272 (-----) [000] ...1 24573.464666: tracing_mark_write: E|13131
53369           <...>-13272 (-----) [000] d..2 24573.464702: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
53370           <...>-13272 (-----) [000] d..3 24573.464710: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
53371           <...>-13272 (-----) [000] ...1 24573.464729: tracing_mark_write: E|13131
53372           <...>-13272 (-----) [000] d..1 24573.464733: sched_waking: comm=id.nn.benchmark pid=13271 prio=110 target_cpu=007
53373 id.nn.benchmark-13155 (13131) [007] dnh1 24573.464747: sched_wakeup: comm=id.nn.benchmark pid=13271 prio=110 target_cpu=007
53374 id.nn.benchmark-13155 (13131) [007] d..2 24573.464749: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13271 next_prio=110
53375           <...>-13272 (-----) [000] ...1 24573.464756: tracing_mark_write: E|13131
53376           <...>-13271 (-----) [007] d..2 24573.464756: sched_switch: prev_comm=id.nn.benchmark prev_pid=13271 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
53377           <...>-13272 (-----) [000] d..1 24573.464942: sched_waking: comm=id.nn.benchmark pid=13271 prio=110 target_cpu=007
53378 id.nn.benchmark-13155 (13131) [007] dnh1 24573.464955: sched_wakeup: comm=id.nn.benchmark pid=13271 prio=110 target_cpu=007
53379 id.nn.benchmark-13155 (13131) [007] d..2 24573.464957: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13271 next_prio=110
53380           <...>-13272 (-----) [000] d..2 24573.464994: sched_switch: prev_comm=id.nn.benchmark prev_pid=13272 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
53381           <...>-13271 (-----) [007] d..1 24573.465009: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
53382           <...>-13271 (-----) [007] dn.2 24573.465015: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
53383           <...>-13271 (-----) [007] d..2 24573.465018: sched_switch: prev_comm=id.nn.benchmark prev_pid=13271 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
53384           <...>-13131 (-----) [007] d..2 24573.465023: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13271 next_prio=110
53385           <...>-13271 (-----) [007] d..1 24573.465049: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
53386           <...>-13271 (-----) [007] dn.2 24573.465052: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
53387           <...>-13271 (-----) [007] d..2 24573.465054: sched_switch: prev_comm=id.nn.benchmark prev_pid=13271 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
53388           <...>-13131 (-----) [007] ...1 24573.465063: tracing_mark_write: E|13131
53389           <...>-13131 (-----) [007] ...1 24573.465065: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
53390           <...>-13131 (-----) [007] ...1 24573.465066: tracing_mark_write: E|13131
53391           <...>-13131 (-----) [007] ...1 24573.465068: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
53392           <...>-13131 (-----) [007] ...1 24573.465069: tracing_mark_write: E|13131
53393     logd.writer-563   (  555) [000] d..2 24573.465074: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13271 next_prio=110
53394           <...>-13271 (-----) [000] d..2 24573.465120: sched_switch: prev_comm=id.nn.benchmark prev_pid=13271 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
53395           <...>-13131 (-----) [007] ...1 24573.465129: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
53396           <...>-13131 (-----) [007] d..2 24573.465141: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
53397 id.nn.benchmark-13155 (13131) [000] d.h4 24573.465150: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
53398 id.nn.benchmark-13155 (13131) [000] d.h4 24573.465158: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
53399           <...>-13131 (-----) [007] ...1 24573.465159: tracing_mark_write: E|13131
53400           <...>-13131 (-----) [007] dnh3 24573.465159: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
53401           <...>-13131 (-----) [007] d..2 24573.465166: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
53402 id.nn.benchmark-13155 (13131) [000] d.h5 24573.465167: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
53403         sugov:4-560   (  560) [007] d..2 24573.465170: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
53404 id.nn.benchmark-13155 (13131) [000] d.h3 24573.465172: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
53405           <...>-13131 (-----) [007] ...1 24573.465173: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
53406           <...>-13131 (-----) [007] ...1 24573.465175: tracing_mark_write: E|13131
53407 id.nn.benchmark-13159 (13131) [001] d..2 24573.465175: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
53408           <...>-13131 (-----) [007] ...1 24573.465177: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
53409           <...>-13131 (-----) [007] ...1 24573.465178: tracing_mark_write: E|13131
53410           <...>-13131 (-----) [007] ...1 24573.465179: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
53411         sugov:0-559   (  559) [001] d..2 24573.465183: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
53412           <...>-13131 (-----) [007] ...1 24573.465224: tracing_mark_write: E|13131
53413           <...>-13131 (-----) [007] ...1 24573.465226: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
53414           <...>-13131 (-----) [007] d..2 24573.465231: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13273 next_prio=110
53415           <...>-13273 (-----) [007] d..2 24573.465367: sched_switch: prev_comm=id.nn.benchmark prev_pid=13273 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13274 next_prio=110
53416           <...>-13274 (-----) [007] ...1 24573.465376: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
53417           <...>-13274 (-----) [007] ...1 24573.465378: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
53418           <...>-13274 (-----) [007] ...1 24573.465424: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53419           <...>-13274 (-----) [007] ...1 24573.465426: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53420 id.nn.benchmark-13155 (13131) [000] d.h1 24573.465541: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
53421           <...>-13274 (-----) [007] dnh1 24573.465561: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=007
53422           <...>-13274 (-----) [007] d..2 24573.465580: sched_switch: prev_comm=id.nn.benchmark prev_pid=13274 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
53423        DispSync-23904 (23896) [007] d..1 24573.465595: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
53424           <...>-13157 (-----) [003] dnh1 24573.465609: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
53425        DispSync-23904 (23896) [007] d..2 24573.465611: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13274 next_prio=110
53426           <...>-13157 (-----) [003] d..2 24573.465616: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
53427  appEventThread-23905 (23896) [003] d..3 24573.465660: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
53428           <...>-13274 (-----) [007] dnh1 24573.465685: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
53429           <...>-13274 (-----) [007] d..2 24573.465712: sched_switch: prev_comm=id.nn.benchmark prev_pid=13274 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
53430  appEventThread-23905 (23896) [003] d.h3 24573.465713: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
53431  appEventThread-23905 (23896) [003] d.h4 24573.465722: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
53432 id.nn.benchmark-13159 (13131) [001] d..2 24573.465729: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
53433         sugov:0-559   (  559) [001] d..2 24573.465734: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
53434  appEventThread-23905 (23896) [003] d..2 24573.465739: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
53435<...>-24151 ( 24151) [007] .... 24573.465915: binder_transaction: transaction=1669952 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
53436<...>-24151 ( 24151) [007] d..4 24573.465922: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=003
53437<...>-24151 ( 24151) [007] d..5 24573.465937: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
53438<...>-24151 ( 24151) [007] d..3 24573.465976: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=003
53439<...>-24151 ( 24151) [007] d..4 24573.465989: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
53440<...>-24151 ( 24151) [007] d..2 24573.466071: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
53441  Binder:23896_5-25989 (23896) [007] .... 24573.466076: binder_transaction_received: transaction=1669952
53442  Binder:23896_5-25989 (23896) [007] d..1 24573.466094: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
53443           <...>-13157 (-----) [003] dnh1 24573.466105: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
53444           <...>-13157 (-----) [003] d..2 24573.466110: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
53445  Binder:23896_5-25989 (23896) [007] d..2 24573.466111: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
53446  appEventThread-23905 (23896) [003] d..2 24573.466128: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
53447    RenderThread-24437 (24151) [007] d..1 24573.466167: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
53448    RenderThread-24437 (24151) [007] d..2 24573.466173: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
53449    RenderThread-24437 (24151) [007] .... 24573.466204: binder_transaction: transaction=1669953 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
53450    RenderThread-24437 (24151) [007] d..4 24573.466206: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
53451    RenderThread-24437 (24151) [007] d..5 24573.466210: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
53452    RenderThread-24437 (24151) [007] d..2 24573.466214: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
53453  Binder:23896_5-25989 (23896) [007] .... 24573.466216: binder_transaction_received: transaction=1669953
53454  Binder:23896_5-25989 (23896) [007] .... 24573.466244: binder_transaction: transaction=1669954 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
53455  Binder:23896_5-25989 (23896) [007] d..2 24573.466249: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
53456  Binder:23896_5-25989 (23896) [007] d..3 24573.466253: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
53457  Binder:23896_5-25989 (23896) [007] d..2 24573.466261: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
53458    RenderThread-24437 (24151) [007] .... 24573.466263: binder_transaction_received: transaction=1669954
53459    RenderThread-24437 (24151) [007] d..2 24573.466886: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
53460<...>-24151 ( 24151) [007] d..2 24573.466920: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13274 next_prio=110
53461           <...>-13274 (-----) [007] d.h1 24573.466985: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
53462           <...>-13274 (-----) [007] d.h2 24573.466990: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
53463           <...>-13274 (-----) [007] dnh2 24573.466992: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
53464           <...>-13274 (-----) [007] d..2 24573.466996: sched_switch: prev_comm=id.nn.benchmark prev_pid=13274 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
53465    RenderThread-24437 (24151) [007] .... 24573.467079: binder_transaction: transaction=1669955 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
53466    RenderThread-24437 (24151) [007] d..4 24573.467083: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
53467    RenderThread-24437 (24151) [007] d..5 24573.467090: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
53468    RenderThread-24437 (24151) [007] d..2 24573.467094: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
53469  Binder:23896_5-25989 (23896) [007] .... 24573.467096: binder_transaction_received: transaction=1669955
53470 id.nn.benchmark-13155 (13131) [000] d.h2 24573.467111: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
53471  Binder:23896_5-25989 (23896) [007] dnh1 24573.467132: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
53472  Binder:23896_5-25989 (23896) [007] d..2 24573.467136: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
53473 kgsl_worker_thr-246   (  246) [007] d..2 24573.467160: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
53474 id.nn.benchmark-13155 (13131) [000] d.h2 24573.467161: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
53475 id.nn.benchmark-13155 (13131) [000] d.h3 24573.467169: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
53476 kgsl_worker_thr-246   (  246) [007] d..3 24573.467171: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
53477 id.nn.benchmark-13159 (13131) [001] d..2 24573.467176: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
53478 id.nn.benchmark-13160 (13131) [006] d..2 24573.467177: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
53479 kgsl_worker_thr-246   (  246) [007] d..2 24573.467179: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
53480         sugov:0-559   (  559) [001] d..2 24573.467181: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
53481  kworker/u16:15-18488 (18488) [006] d..2 24573.467193: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
53482  Binder:23896_5-25989 (23896) [007] .... 24573.467208: binder_transaction: transaction=1669956 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
53483  Binder:23896_5-25989 (23896) [007] d..2 24573.467210: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
53484  Binder:23896_5-25989 (23896) [007] d..3 24573.467214: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
53485  Binder:23896_5-25989 (23896) [007] d..2 24573.467223: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
53486    RenderThread-24437 (24151) [007] .... 24573.467224: binder_transaction_received: transaction=1669956
53487    RenderThread-24437 (24151) [007] d..2 24573.467249: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13274 next_prio=110
53488           <...>-13154 (-----) [004] d.s2 24573.467555: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
53489 id.nn.benchmark-13159 (13131) [001] d.h2 24573.467562: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
53490           <...>-13154 (-----) [004] d.s3 24573.467564: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
53491 id.nn.benchmark-13159 (13131) [001] dnh3 24573.467569: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
53492 id.nn.benchmark-13160 (13131) [006] d..2 24573.467570: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
53493 id.nn.benchmark-13159 (13131) [001] d..2 24573.467578: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
53494     migration/1-17    (   17) [001] d.h3 24573.467626: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
53495           <...>-13274 (-----) [007] dnh1 24573.467638: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
53496           <...>-13274 (-----) [007] d..2 24573.467642: sched_switch: prev_comm=id.nn.benchmark prev_pid=13274 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
53497         sugov:4-560   (  560) [007] d..2 24573.467647: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
53498     migration/1-17    (   17) [001] d..2 24573.467660: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
53499  kworker/u16:15-18488 (18488) [006] d..2 24573.467820: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
53500           <...>-13157 (-----) [003] d.s2 24573.467847: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
53501 id.nn.benchmark-13160 (13131) [006] d.h1 24573.467872: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
53502 id.nn.benchmark-13160 (13131) [006] dnh1 24573.467873: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
53503 id.nn.benchmark-13160 (13131) [006] d..2 24573.467876: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
53504  kworker/u16:15-18488 (18488) [006] d..2 24573.467880: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
53505     logd.writer-563   (  555) [001] d..2 24573.467981: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13274 next_prio=110
53506           <...>-13274 (-----) [001] d.h4 24573.468010: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
53507           <...>-13274 (-----) [001] dnh5 24573.468016: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
53508           <...>-13274 (-----) [001] d..2 24573.468023: sched_switch: prev_comm=id.nn.benchmark prev_pid=13274 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
53509         sugov:0-559   (  559) [001] d..2 24573.468030: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13274 next_prio=110
53510           <...>-13274 (-----) [001] ...1 24573.468108: tracing_mark_write: E|13131
53511           <...>-13274 (-----) [001] ...1 24573.468112: tracing_mark_write: E|13131
53512           <...>-13274 (-----) [001] ...1 24573.468129: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53513           <...>-13274 (-----) [001] ...1 24573.468134: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53514           <...>-13274 (-----) [001] ...1 24573.468840: tracing_mark_write: E|13131
53515           <...>-13274 (-----) [001] ...1 24573.468844: tracing_mark_write: E|13131
53516           <...>-13274 (-----) [001] ...1 24573.468860: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53517           <...>-13274 (-----) [001] ...1 24573.468864: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53518           <...>-13274 (-----) [001] ...1 24573.469195: tracing_mark_write: E|13131
53519           <...>-13274 (-----) [001] ...1 24573.469198: tracing_mark_write: E|13131
53520           <...>-13274 (-----) [001] ...1 24573.469209: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53521           <...>-13274 (-----) [001] ...1 24573.469213: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53522           <...>-13274 (-----) [001] ...1 24573.469449: tracing_mark_write: E|13131
53523           <...>-13274 (-----) [001] ...1 24573.469453: tracing_mark_write: E|13131
53524           <...>-13274 (-----) [001] ...1 24573.469463: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53525           <...>-13274 (-----) [001] ...1 24573.469468: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53526 id.nn.benchmark-13159 (13131) [007] d.h1 24573.469539: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=007
53527 id.nn.benchmark-13159 (13131) [007] d.h2 24573.469571: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
53528           <...>-13274 (-----) [001] dnh1 24573.469572: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
53529 id.nn.benchmark-13159 (13131) [007] dnh3 24573.469574: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
53530 id.nn.benchmark-13159 (13131) [007] dnh2 24573.469575: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
53531           <...>-13274 (-----) [001] d..2 24573.469580: sched_switch: prev_comm=id.nn.benchmark prev_pid=13274 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
53532 id.nn.benchmark-13159 (13131) [007] d..2 24573.469592: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
53533         sugov:4-560   (  560) [007] d..2 24573.469595: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
53534        DispSync-23904 (23896) [001] d..1 24573.469595: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
53535 id.nn.benchmark-13155 (13131) [000] dnh1 24573.469596: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
53536 id.nn.benchmark-13155 (13131) [000] d..2 24573.469603: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
53537        DispSync-23904 (23896) [001] d..2 24573.469607: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
53538         sugov:0-559   (  559) [000] d..2 24573.469611: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
53539 id.nn.benchmark-13156 (13131) [002] d..2 24573.469618: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
53540        DispSync-23904 (23896) [001] d..2 24573.469622: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13274 next_prio=110
53541 id.nn.benchmark-13155 (13131) [000] d.h1 24573.469640: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
53542 id.nn.benchmark-13155 (13131) [000] dnh2 24573.469647: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
53543   sfEventThread-23906 (23896) [002] d..3 24573.469652: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
53544 id.nn.benchmark-13155 (13131) [000] d..2 24573.469654: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
53545   sfEventThread-23906 (23896) [002] d..4 24573.469673: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
53546           <...>-13274 (-----) [001] d..2 24573.469682: sched_switch: prev_comm=id.nn.benchmark prev_pid=13274 prev_prio=110 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
53547   sfEventThread-23906 (23896) [002] d..2 24573.469688: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
53548 irq/79-1436400.-24613 (24613) [000] d..2 24573.469759: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
53549           <...>-13154 (-----) [004] d..3 24573.469761: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
53550           <...>-13154 (-----) [004] d..2 24573.469768: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
53551 id.nn.benchmark-13155 (13131) [000] dnh1 24573.469771: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
53552 id.nn.benchmark-13155 (13131) [000] d..2 24573.469776: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
53553           <...>-13157 (-----) [003] d.s2 24573.469777: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
53554          <idle>-0     (-----) [004] d..1 24573.469781: cpu_idle: state=0 cpu_id=4
53555           <...>-13157 (-----) [003] d.s3 24573.469787: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
53556          <idle>-0     (-----) [004] .n.1 24573.469808: cpu_idle: state=4294967295 cpu_id=4
53557          <idle>-0     (-----) [004] d..2 24573.469825: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
53558     migration/0-13    (   13) [000] d..2 24573.469828: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
53559 irq/79-1436400.-24613 (24613) [000] d..2 24573.469852: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53560          <idle>-0     (-----) [000] d..1 24573.469867: cpu_idle: state=0 cpu_id=0
53561  surfaceflinger-23896 (23896) [001] d..1 24573.469933: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
53562  surfaceflinger-23896 (23896) [001] d..2 24573.469950: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
53563          <idle>-0     (-----) [000] .n.1 24573.469955: cpu_idle: state=4294967295 cpu_id=0
53564          <idle>-0     (-----) [000] d..2 24573.469960: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
53565   sfEventThread-23906 (23896) [000] d..2 24573.469987: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53566          <idle>-0     (-----) [000] d..1 24573.469991: cpu_idle: state=0 cpu_id=0
53567  surfaceflinger-23896 (23896) [001] ...1 24573.470082: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
53568  surfaceflinger-23896 (23896) [001] ...1 24573.470086: tracing_mark_write: E|23896
53569  surfaceflinger-23896 (23896) [001] .... 24573.470131: binder_transaction: transaction=1669957 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
53570  surfaceflinger-23896 (23896) [001] ...2 24573.470155: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
53571  surfaceflinger-23896 (23896) [001] d..4 24573.470162: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
53572  surfaceflinger-23896 (23896) [001] d..5 24573.470181: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
53573          <idle>-0     (-----) [000] .n.1 24573.470185: cpu_idle: state=4294967295 cpu_id=0
53574          <idle>-0     (-----) [000] d..2 24573.470189: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
53575  surfaceflinger-23896 (23896) [001] d..2 24573.470193: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13274 next_prio=110
53576  HwBinder:598_3-633   (  598) [000] .... 24573.470197: binder_transaction_received: transaction=1669957
53577           <...>-13274 (-----) [001] d..1 24573.470200: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
53578 id.nn.benchmark-13155 (13131) [004] d.h1 24573.470213: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
53579  HwBinder:598_3-633   (  598) [000] ...1 24573.470239: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
53580  HwBinder:598_3-633   (  598) [000] ...1 24573.470325: tracing_mark_write: B|598|HWCSession::PresentDisplay::
53581  HwBinder:598_3-633   (  598) [000] ...1 24573.470443: tracing_mark_write: B|598|HWDeviceDRM::Commit::
53582  HwBinder:598_3-633   (  598) [000] ...1 24573.470450: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
53583  HwBinder:598_3-633   (  598) [000] d..2 24573.470857: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
53584  HwBinder:598_3-633   (  598) [000] d..3 24573.470875: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
53585 id.nn.benchmark-13158 (13131) [005] d.s2 24573.470890: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
53586  HwBinder:598_3-633   (  598) [000] d.s1 24573.470898: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
53587 id.nn.benchmark-13158 (13131) [005] d.s3 24573.470904: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
53588           <...>-13274 (-----) [001] d..2 24573.470904: sched_switch: prev_comm=id.nn.benchmark prev_pid=13274 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
53589  HwBinder:598_3-633   (  598) [000] d.s2 24573.470909: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
53590 id.nn.benchmark-13160 (13131) [006] d..2 24573.470910: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
53591  HwBinder:598_3-633   (  598) [000] ...1 24573.470982: tracing_mark_write: E|598
53592  HwBinder:598_3-633   (  598) [000] ...1 24573.470985: tracing_mark_write: E|598
53593  HwBinder:598_3-633   (  598) [000] ...1 24573.471025: tracing_mark_write: E|598
53594  HwBinder:598_3-633   (  598) [000] ...1 24573.471061: tracing_mark_write: E|598
53595  HwBinder:598_3-633   (  598) [000] .... 24573.471071: binder_transaction: transaction=1669958 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
53596  HwBinder:598_3-633   (  598) [000] d..2 24573.471083: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
53597  HwBinder:598_3-633   (  598) [000] d..3 24573.471098: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
53598  HwBinder:598_3-633   (  598) [000] .... 24573.471101: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
53599 id.nn.benchmark-13156 (13131) [002] d..2 24573.471106: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
53600  surfaceflinger-23896 (23896) [002] .... 24573.471112: binder_transaction_received: transaction=1669958
53601  kworker/u16:15-18488 (18488) [006] d..2 24573.471113: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
53602  HwBinder:598_3-633   (  598) [000] d..2 24573.471141: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
53603     rcu_preempt-7     (    7) [000] d..2 24573.471147: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
53604     rcu_preempt-7     (    7) [000] d..3 24573.471164: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
53605     rcu_preempt-7     (    7) [000] d..2 24573.471195: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
53606           <...>-13154 (-----) [000] d.h4 24573.471225: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
53607           <...>-13154 (-----) [000] d.h4 24573.471237: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
53608 id.nn.benchmark-13155 (13131) [004] dnh1 24573.471240: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
53609           <...>-13154 (-----) [000] dnh5 24573.471242: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
53610 id.nn.benchmark-13155 (13131) [004] d..2 24573.471244: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
53611         sugov:4-560   (  560) [004] d..2 24573.471248: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
53612           <...>-13154 (-----) [000] d..2 24573.471248: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
53613  surfaceflinger-23896 (23896) [002] d..2 24573.471250: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=005
53614         sugov:0-559   (  559) [000] d..2 24573.471255: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
53615 id.nn.benchmark-13158 (13131) [005] dnh1 24573.471277: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=005
53616 id.nn.benchmark-13158 (13131) [005] d..2 24573.471280: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
53617         rcuop/2-29    (   29) [005] d..2 24573.471283: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
53618  surfaceflinger-23896 (23896) [002] d..2 24573.471401: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
53619 crtc_commit:111-253   (  253) [001] d..2 24573.471522: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcuop/0 next_pid=10 next_prio=120
53620         rcuop/0-10    (   10) [001] d..2 24573.471527: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
53621 id.nn.benchmark-13155 (13131) [004] dnh1 24573.471554: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
53622 id.nn.benchmark-13155 (13131) [004] d..2 24573.471556: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
53623         rcuop/1-21    (   21) [004] d..2 24573.471562: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
53624         rcuop/0-10    (   10) [001] d..2 24573.471583: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13274 next_prio=110
53625           <...>-13274 (-----) [001] ...1 24573.471595: tracing_mark_write: E|13131
53626           <...>-13274 (-----) [001] ...1 24573.471599: tracing_mark_write: E|13131
53627           <...>-13274 (-----) [001] ...1 24573.471613: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53628           <...>-13274 (-----) [001] ...1 24573.471617: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53629           <...>-13274 (-----) [001] ...1 24573.472013: tracing_mark_write: E|13131
53630           <...>-13274 (-----) [001] ...1 24573.472017: tracing_mark_write: E|13131
53631           <...>-13274 (-----) [001] ...1 24573.472036: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53632           <...>-13274 (-----) [001] ...1 24573.472040: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53633 id.nn.benchmark-13156 (13131) [002] d..2 24573.472101: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=004
53634 id.nn.benchmark-13155 (13131) [004] d..3 24573.472103: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
53635 id.nn.benchmark-13155 (13131) [004] d..2 24573.472109: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=D|K ==> next_comm=swapper/4 next_pid=0 next_prio=120
53636           <...>-13154 (-----) [000] dnh1 24573.472113: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
53637          <idle>-0     (-----) [004] d..1 24573.472114: cpu_idle: state=0 cpu_id=4
53638           <...>-13154 (-----) [000] d..2 24573.472119: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
53639          <idle>-0     (-----) [004] d.h2 24573.472124: sched_blocked_reason: pid=13155 iowait=1 caller=__lock_page_or_retry+0x26c/0x2c4
53640          <idle>-0     (-----) [004] dnh2 24573.472125: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=004
53641          <idle>-0     (-----) [004] .n.1 24573.472135: cpu_idle: state=4294967295 cpu_id=4
53642          <idle>-0     (-----) [004] d..2 24573.472138: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
53643     migration/0-13    (   13) [000] d.h3 24573.472163: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
53644     migration/0-13    (   13) [000] d.h3 24573.472174: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
53645 id.nn.benchmark-13159 (13131) [007] dnh1 24573.472177: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
53646 id.nn.benchmark-13159 (13131) [007] d..2 24573.472180: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
53647     migration/0-13    (   13) [000] d.h4 24573.472180: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
53648         sugov:4-560   (  560) [007] d..2 24573.472183: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
53649     migration/0-13    (   13) [000] d..2 24573.472187: 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
53650         sugov:0-559   (  559) [000] d..2 24573.472212: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
53651           <...>-13274 (-----) [001] ...1 24573.472354: tracing_mark_write: E|13131
53652           <...>-13274 (-----) [001] ...1 24573.472358: tracing_mark_write: E|13131
53653           <...>-13274 (-----) [001] ...1 24573.472372: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53654           <...>-13274 (-----) [001] ...1 24573.472376: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53655           <...>-13274 (-----) [001] ...1 24573.472448: tracing_mark_write: E|13131
53656           <...>-13274 (-----) [001] ...1 24573.472452: tracing_mark_write: E|13131
53657           <...>-13274 (-----) [001] ...1 24573.472464: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
53658           <...>-13274 (-----) [001] ...1 24573.472469: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
53659           <...>-13274 (-----) [001] ...1 24573.472776: tracing_mark_write: E|13131
53660           <...>-13274 (-----) [001] ...1 24573.472780: tracing_mark_write: E|13131
53661           <...>-13274 (-----) [001] ...1 24573.472789: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
53662           <...>-13274 (-----) [001] ...1 24573.472793: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
53663           <...>-13274 (-----) [001] ...1 24573.472846: tracing_mark_write: E|13131
53664           <...>-13274 (-----) [001] ...1 24573.472848: tracing_mark_write: E|13131
53665           <...>-13274 (-----) [001] ...1 24573.472857: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
53666           <...>-13274 (-----) [001] ...1 24573.472860: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
53667           <...>-13274 (-----) [001] ...1 24573.472877: tracing_mark_write: E|13131
53668           <...>-13274 (-----) [001] ...1 24573.472879: tracing_mark_write: E|13131
53669           <...>-13274 (-----) [001] ...1 24573.472891: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
53670           <...>-13274 (-----) [001] ...1 24573.472894: tracing_mark_write: E|13131
53671           <...>-13274 (-----) [001] ...1 24573.472903: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
53672           <...>-13274 (-----) [001] ...1 24573.472907: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
53673           <...>-13274 (-----) [001] ...1 24573.473759: tracing_mark_write: E|13131
53674           <...>-13274 (-----) [001] ...1 24573.473762: tracing_mark_write: E|13131
53675           <...>-13274 (-----) [001] ...1 24573.473770: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53676           <...>-13274 (-----) [001] ...1 24573.473773: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53677           <...>-13274 (-----) [001] ...1 24573.473856: tracing_mark_write: E|13131
53678           <...>-13274 (-----) [001] ...1 24573.473859: tracing_mark_write: E|13131
53679           <...>-13274 (-----) [001] d..2 24573.473911: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
53680           <...>-13274 (-----) [001] d..3 24573.473920: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
53681           <...>-13274 (-----) [001] ...1 24573.473942: tracing_mark_write: E|13131
53682           <...>-13274 (-----) [001] d..1 24573.473947: sched_waking: comm=id.nn.benchmark pid=13273 prio=110 target_cpu=007
53683 id.nn.benchmark-13159 (13131) [007] dnh1 24573.473970: sched_wakeup: comm=id.nn.benchmark pid=13273 prio=110 target_cpu=007
53684 id.nn.benchmark-13159 (13131) [007] d..2 24573.473972: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13273 next_prio=110
53685           <...>-13274 (-----) [001] ...1 24573.473980: tracing_mark_write: E|13131
53686           <...>-13273 (-----) [007] d..2 24573.473982: sched_switch: prev_comm=id.nn.benchmark prev_pid=13273 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
53687           <...>-13274 (-----) [001] d..1 24573.474202: sched_waking: comm=id.nn.benchmark pid=13273 prio=110 target_cpu=007
53688 id.nn.benchmark-13158 (13131) [005] d.s2 24573.474221: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
53689 id.nn.benchmark-13159 (13131) [007] dnH1 24573.474222: sched_wakeup: comm=id.nn.benchmark pid=13273 prio=110 target_cpu=007
53690 id.nn.benchmark-13159 (13131) [007] d..2 24573.474225: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13273 next_prio=110
53691 id.nn.benchmark-13158 (13131) [005] d.s3 24573.474232: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
53692 id.nn.benchmark-13160 (13131) [006] d..2 24573.474238: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
53693           <...>-13274 (-----) [001] d..2 24573.474240: sched_switch: prev_comm=id.nn.benchmark prev_pid=13274 prev_prio=110 prev_state=D ==> next_comm=logd.writer next_pid=563 next_prio=130
53694           <...>-13273 (-----) [007] d..1 24573.474241: sched_waking: comm=id.nn.benchmark pid=13274 prio=110 target_cpu=001
53695     logd.writer-563   (  555) [001] d.h1 24573.474262: sched_blocked_reason: pid=13274 iowait=0 caller=do_exit+0x908/0x11bc
53696     logd.writer-563   (  555) [001] d.h1 24573.474265: sched_wakeup: comm=id.nn.benchmark pid=13274 prio=110 target_cpu=001
53697  kworker/u16:15-18488 (18488) [006] d..2 24573.474271: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
53698           <...>-13273 (-----) [007] d..1 24573.474310: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
53699           <...>-13273 (-----) [007] dn.2 24573.474319: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
53700           <...>-13273 (-----) [007] d..2 24573.474322: sched_switch: prev_comm=id.nn.benchmark prev_pid=13273 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
53701           <...>-13131 (-----) [007] d..2 24573.474328: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13273 next_prio=110
53702     logd.writer-563   (  555) [001] d..2 24573.474337: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13274 next_prio=110
53703           <...>-13273 (-----) [007] d..1 24573.474358: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
53704           <...>-13273 (-----) [007] dn.2 24573.474365: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
53705           <...>-13273 (-----) [007] d..2 24573.474367: sched_switch: prev_comm=id.nn.benchmark prev_pid=13273 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
53706           <...>-13131 (-----) [007] ...1 24573.474377: tracing_mark_write: E|13131
53707           <...>-13131 (-----) [007] ...1 24573.474380: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
53708           <...>-13131 (-----) [007] ...1 24573.474382: tracing_mark_write: E|13131
53709           <...>-13131 (-----) [007] ...1 24573.474384: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
53710           <...>-13131 (-----) [007] ...1 24573.474386: tracing_mark_write: E|13131
53711           <...>-13274 (-----) [001] d..2 24573.474406: sched_switch: prev_comm=id.nn.benchmark prev_pid=13274 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13273 next_prio=110
53712           <...>-13131 (-----) [007] ...1 24573.474450: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
53713           <...>-13273 (-----) [001] d..2 24573.474457: sched_switch: prev_comm=id.nn.benchmark prev_pid=13273 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
53714           <...>-13131 (-----) [007] d..2 24573.474464: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
53715 id.nn.benchmark-13159 (13131) [001] d.h4 24573.474488: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
53716 id.nn.benchmark-13159 (13131) [001] d.h4 24573.474496: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
53717           <...>-13131 (-----) [007] dnh1 24573.474500: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
53718           <...>-13131 (-----) [007] d..2 24573.474504: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
53719 id.nn.benchmark-13159 (13131) [001] d.h5 24573.474504: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
53720         sugov:4-560   (  560) [007] d..2 24573.474509: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
53721           <...>-13131 (-----) [007] ...1 24573.474510: tracing_mark_write: E|13131
53722 id.nn.benchmark-13159 (13131) [001] d.h3 24573.474510: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
53723           <...>-13131 (-----) [007] ...1 24573.474512: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
53724           <...>-13154 (-----) [000] d..2 24573.474513: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
53725           <...>-13131 (-----) [007] ...1 24573.474515: tracing_mark_write: E|13131
53726           <...>-13131 (-----) [007] ...1 24573.474517: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
53727           <...>-13131 (-----) [007] ...1 24573.474519: tracing_mark_write: E|13131
53728           <...>-13131 (-----) [007] ...1 24573.474521: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
53729         sugov:0-559   (  559) [000] d..2 24573.474522: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
53730           <...>-13131 (-----) [007] ...1 24573.474585: tracing_mark_write: E|13131
53731           <...>-13131 (-----) [007] ...1 24573.474587: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
53732           <...>-13131 (-----) [007] d..2 24573.474591: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13275 next_prio=110
53733           <...>-13275 (-----) [007] d..2 24573.474740: sched_switch: prev_comm=id.nn.benchmark prev_pid=13275 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13276 next_prio=110
53734           <...>-13276 (-----) [007] ...1 24573.474750: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
53735           <...>-13276 (-----) [007] ...1 24573.474752: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
53736           <...>-13276 (-----) [007] ...1 24573.474804: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53737           <...>-13276 (-----) [007] ...1 24573.474806: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53738           <...>-13276 (-----) [007] ...1 24573.475661: tracing_mark_write: E|13131
53739           <...>-13276 (-----) [007] ...1 24573.475662: tracing_mark_write: E|13131
53740           <...>-13276 (-----) [007] ...1 24573.475666: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53741           <...>-13276 (-----) [007] ...1 24573.475668: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53742           <...>-13276 (-----) [007] ...1 24573.476036: tracing_mark_write: E|13131
53743           <...>-13276 (-----) [007] ...1 24573.476037: tracing_mark_write: E|13131
53744           <...>-13276 (-----) [007] ...1 24573.476042: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53745           <...>-13276 (-----) [007] ...1 24573.476043: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53746           <...>-13276 (-----) [007] ...1 24573.476253: tracing_mark_write: E|13131
53747           <...>-13276 (-----) [007] ...1 24573.476254: tracing_mark_write: E|13131
53748           <...>-13276 (-----) [007] ...1 24573.476257: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53749           <...>-13276 (-----) [007] ...1 24573.476258: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53750           <...>-13276 (-----) [007] ...1 24573.476422: tracing_mark_write: E|13131
53751           <...>-13276 (-----) [007] ...1 24573.476424: tracing_mark_write: E|13131
53752           <...>-13276 (-----) [007] ...1 24573.476427: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53753           <...>-13276 (-----) [007] ...1 24573.476428: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53754           <...>-13276 (-----) [007] ...1 24573.476722: tracing_mark_write: E|13131
53755           <...>-13276 (-----) [007] ...1 24573.476723: tracing_mark_write: E|13131
53756           <...>-13276 (-----) [007] ...1 24573.476725: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53757           <...>-13276 (-----) [007] ...1 24573.476727: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53758           <...>-13276 (-----) [007] ...1 24573.477013: tracing_mark_write: E|13131
53759           <...>-13276 (-----) [007] ...1 24573.477015: tracing_mark_write: E|13131
53760           <...>-13276 (-----) [007] ...1 24573.477020: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53761           <...>-13276 (-----) [007] ...1 24573.477021: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53762           <...>-13276 (-----) [007] ...1 24573.477178: tracing_mark_write: E|13131
53763           <...>-13276 (-----) [007] ...1 24573.477179: tracing_mark_write: E|13131
53764           <...>-13276 (-----) [007] ...1 24573.477183: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53765           <...>-13276 (-----) [007] ...1 24573.477184: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53766           <...>-13276 (-----) [007] ...1 24573.477235: tracing_mark_write: E|13131
53767           <...>-13276 (-----) [007] ...1 24573.477236: tracing_mark_write: E|13131
53768           <...>-13276 (-----) [007] ...1 24573.477239: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
53769           <...>-13276 (-----) [007] ...1 24573.477241: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
53770           <...>-13276 (-----) [007] ...1 24573.477355: tracing_mark_write: E|13131
53771           <...>-13276 (-----) [007] ...1 24573.477356: tracing_mark_write: E|13131
53772           <...>-13276 (-----) [007] ...1 24573.477359: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
53773           <...>-13276 (-----) [007] ...1 24573.477361: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
53774           <...>-13276 (-----) [007] ...1 24573.477378: tracing_mark_write: E|13131
53775           <...>-13276 (-----) [007] ...1 24573.477379: tracing_mark_write: E|13131
53776           <...>-13276 (-----) [007] ...1 24573.477381: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
53777           <...>-13276 (-----) [007] ...1 24573.477383: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
53778           <...>-13276 (-----) [007] ...1 24573.477387: tracing_mark_write: E|13131
53779           <...>-13276 (-----) [007] ...1 24573.477388: tracing_mark_write: E|13131
53780           <...>-13276 (-----) [007] ...1 24573.477392: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
53781           <...>-13276 (-----) [007] ...1 24573.477393: tracing_mark_write: E|13131
53782           <...>-13276 (-----) [007] ...1 24573.477396: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
53783           <...>-13276 (-----) [007] ...1 24573.477398: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
53784           <...>-13154 (-----) [000] d.h4 24573.477531: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
53785 id.nn.benchmark-13158 (13131) [005] d.s2 24573.477555: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
53786           <...>-13154 (-----) [000] d.h4 24573.477557: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
53787           <...>-13276 (-----) [007] dnH1 24573.477561: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
53788 id.nn.benchmark-13158 (13131) [005] d.s3 24573.477583: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
53789 id.nn.benchmark-13156 (13131) [002] d.h2 24573.477584: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
53790           <...>-13276 (-----) [007] d..2 24573.477587: sched_switch: prev_comm=id.nn.benchmark prev_pid=13276 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
53791 id.nn.benchmark-13156 (13131) [002] dnh3 24573.477591: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
53792 id.nn.benchmark-13160 (13131) [006] d.H2 24573.477594: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
53793 id.nn.benchmark-13155 (13131) [004] dnh1 24573.477599: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
53794 id.nn.benchmark-13156 (13131) [002] d..2 24573.477601: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
53795  crtc_event:111-254   (  254) [007] d..2 24573.477601: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
53796 id.nn.benchmark-13160 (13131) [006] d.H3 24573.477606: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
53797 id.nn.benchmark-13155 (13131) [004] d..2 24573.477609: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
53798 id.nn.benchmark-13160 (13131) [006] d.H2 24573.477610: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
53799         sugov:4-560   (  560) [004] d..2 24573.477625: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
53800     migration/2-25    (   25) [002] d..2 24573.477629: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
53801 id.nn.benchmark-13160 (13131) [006] d.s2 24573.477632: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
53802 crtc_commit:111-253   (  253) [002] dnh3 24573.477654: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
53803 crtc_commit:111-253   (  253) [002] d..2 24573.477662: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
53804         sugov:0-559   (  559) [002] d.h3 24573.477667: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
53805 id.nn.benchmark-13155 (13131) [004] d..2 24573.477705: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
53806         sugov:0-559   (  559) [002] d..2 24573.477710: 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
53807     rcu_preempt-7     (    7) [002] d..2 24573.477719: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
53808 id.nn.benchmark-13160 (13131) [006] dnh1 24573.477747: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
53809 id.nn.benchmark-13160 (13131) [006] d..2 24573.477750: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
53810         rcuop/6-61    (   61) [006] d..2 24573.477752: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=006
53811         rcuop/6-61    (   61) [006] d..3 24573.477762: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=006
53812         rcuop/6-61    (   61) [006] d..2 24573.477764: 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
53813     rcu_preempt-7     (    7) [002] d..2 24573.477770: 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
53814         rcuop/7-69    (   69) [006] d..2 24573.477773: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
53815 crtc_commit:111-253   (  253) [004] d..2 24573.477800: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
53816  kworker/u16:15-18488 (18488) [007] d..2 24573.477804: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13276 next_prio=110
53817           <...>-13276 (-----) [007] ...1 24573.477966: tracing_mark_write: E|13131
53818           <...>-13276 (-----) [007] ...1 24573.477967: tracing_mark_write: E|13131
53819           <...>-13276 (-----) [007] ...1 24573.477970: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53820           <...>-13276 (-----) [007] ...1 24573.477972: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53821     logd.writer-563   (  555) [002] d..2 24573.478116: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
53822 id.nn.benchmark-13156 (13131) [002] d.h4 24573.478145: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
53823 id.nn.benchmark-13156 (13131) [002] d.h4 24573.478157: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
53824           <...>-13276 (-----) [007] dnh1 24573.478161: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
53825 id.nn.benchmark-13156 (13131) [002] dnh5 24573.478163: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
53826           <...>-13276 (-----) [007] d..2 24573.478164: sched_switch: prev_comm=id.nn.benchmark prev_pid=13276 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
53827         sugov:4-560   (  560) [007] d..2 24573.478167: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13276 next_prio=110
53828 id.nn.benchmark-13156 (13131) [002] d..2 24573.478169: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
53829         sugov:0-559   (  559) [002] d..2 24573.478175: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
53830           <...>-13276 (-----) [007] ...1 24573.478244: tracing_mark_write: E|13131
53831           <...>-13276 (-----) [007] ...1 24573.478245: tracing_mark_write: E|13131
53832           <...>-13276 (-----) [007] d..2 24573.478264: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
53833 id.nn.benchmark-13156 (13131) [002] d.h1 24573.478277: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
53834           <...>-13276 (-----) [007] ...1 24573.478278: tracing_mark_write: E|13131
53835           <...>-13276 (-----) [007] d..1 24573.478280: sched_waking: comm=id.nn.benchmark pid=13275 prio=110 target_cpu=007
53836           <...>-13276 (-----) [007] dn.2 24573.478284: sched_wakeup: comm=id.nn.benchmark pid=13275 prio=110 target_cpu=007
53837           <...>-13276 (-----) [007] d..2 24573.478286: sched_switch: prev_comm=id.nn.benchmark prev_pid=13276 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13275 next_prio=110
53838           <...>-13275 (-----) [007] d..2 24573.478292: sched_switch: prev_comm=id.nn.benchmark prev_pid=13275 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13276 next_prio=110
53839           <...>-13276 (-----) [007] ...1 24573.478298: tracing_mark_write: E|13131
53840           <...>-13276 (-----) [007] d..1 24573.478396: sched_waking: comm=id.nn.benchmark pid=13275 prio=110 target_cpu=007
53841           <...>-13276 (-----) [007] dn.2 24573.478400: sched_wakeup: comm=id.nn.benchmark pid=13275 prio=110 target_cpu=007
53842           <...>-13276 (-----) [007] d..2 24573.478402: sched_switch: prev_comm=id.nn.benchmark prev_pid=13276 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13275 next_prio=110
53843           <...>-13275 (-----) [007] d..1 24573.478445: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
53844           <...>-13275 (-----) [007] dn.2 24573.478451: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
53845           <...>-13275 (-----) [007] d..2 24573.478453: sched_switch: prev_comm=id.nn.benchmark prev_pid=13275 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
53846           <...>-13131 (-----) [007] d..2 24573.478458: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13275 next_prio=110
53847           <...>-13275 (-----) [007] d..1 24573.478480: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
53848           <...>-13275 (-----) [007] dn.2 24573.478484: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
53849           <...>-13275 (-----) [007] d..2 24573.478486: sched_switch: prev_comm=id.nn.benchmark prev_pid=13275 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
53850           <...>-13131 (-----) [007] ...1 24573.478493: tracing_mark_write: E|13131
53851           <...>-13131 (-----) [007] ...1 24573.478495: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
53852           <...>-13131 (-----) [007] ...1 24573.478497: tracing_mark_write: E|13131
53853           <...>-13131 (-----) [007] ...1 24573.478499: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
53854           <...>-13131 (-----) [007] ...1 24573.478501: tracing_mark_write: E|13131
53855           <...>-13131 (-----) [007] ...1 24573.478559: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
53856           <...>-13131 (-----) [007] ...1 24573.478579: tracing_mark_write: E|13131
53857           <...>-13131 (-----) [007] ...1 24573.478581: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
53858           <...>-13131 (-----) [007] ...1 24573.478584: tracing_mark_write: E|13131
53859           <...>-13131 (-----) [007] ...1 24573.478586: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
53860           <...>-13131 (-----) [007] ...1 24573.478587: tracing_mark_write: E|13131
53861           <...>-13131 (-----) [007] ...1 24573.478589: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
53862           <...>-13131 (-----) [007] ...1 24573.478628: tracing_mark_write: E|13131
53863           <...>-13131 (-----) [007] ...1 24573.478630: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
53864           <...>-13131 (-----) [007] d..2 24573.478635: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13275 next_prio=110
53865           <...>-13275 (-----) [007] d..2 24573.478650: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
53866           <...>-13275 (-----) [007] d..3 24573.478659: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
53867 id.nn.benchmark-13160 (13131) [006] d..2 24573.478665: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
53868         rcuop/6-61    (   61) [006] d..2 24573.478668: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
53869           <...>-13275 (-----) [007] d..2 24573.478670: sched_switch: prev_comm=id.nn.benchmark prev_pid=13275 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13276 next_prio=110
53870           <...>-13276 (-----) [007] d..2 24573.478681: sched_switch: prev_comm=id.nn.benchmark prev_pid=13276 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13277 next_prio=110
53871           <...>-13277 (-----) [007] d..2 24573.478820: sched_switch: prev_comm=id.nn.benchmark prev_pid=13277 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13278 next_prio=110
53872           <...>-13278 (-----) [007] ...1 24573.478830: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
53873           <...>-13278 (-----) [007] ...1 24573.478831: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
53874           <...>-13278 (-----) [007] ...1 24573.478878: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53875           <...>-13278 (-----) [007] ...1 24573.478880: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53876           <...>-13278 (-----) [007] ...1 24573.479728: tracing_mark_write: E|13131
53877           <...>-13278 (-----) [007] ...1 24573.479729: tracing_mark_write: E|13131
53878           <...>-13278 (-----) [007] ...1 24573.479733: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53879           <...>-13278 (-----) [007] ...1 24573.479735: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53880           <...>-13154 (-----) [000] d.h4 24573.479878: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
53881           <...>-13278 (-----) [007] dnh1 24573.479898: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
53882           <...>-13278 (-----) [007] d..2 24573.479902: sched_switch: prev_comm=id.nn.benchmark prev_pid=13278 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
53883 crtc_commit:111-253   (  253) [007] d..2 24573.479932: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13278 next_prio=110
53884           <...>-13154 (-----) [000] d.h4 24573.480172: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
53885           <...>-13278 (-----) [007] dnh1 24573.480184: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
53886           <...>-13278 (-----) [007] d..2 24573.480187: sched_switch: prev_comm=id.nn.benchmark prev_pid=13278 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
53887  crtc_event:111-254   (  254) [007] d..2 24573.480193: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13278 next_prio=110
53888           <...>-13278 (-----) [007] ...1 24573.480235: tracing_mark_write: E|13131
53889           <...>-13278 (-----) [007] ...1 24573.480238: tracing_mark_write: E|13131
53890           <...>-13278 (-----) [007] ...1 24573.480243: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53891           <...>-13278 (-----) [007] ...1 24573.480245: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53892           <...>-13278 (-----) [007] ...1 24573.480453: tracing_mark_write: E|13131
53893           <...>-13278 (-----) [007] ...1 24573.480454: tracing_mark_write: E|13131
53894           <...>-13278 (-----) [007] ...1 24573.480457: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53895           <...>-13278 (-----) [007] ...1 24573.480459: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53896           <...>-13278 (-----) [007] ...1 24573.480620: tracing_mark_write: E|13131
53897           <...>-13278 (-----) [007] ...1 24573.480621: tracing_mark_write: E|13131
53898           <...>-13278 (-----) [007] ...1 24573.480624: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53899           <...>-13278 (-----) [007] ...1 24573.480625: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53900 id.nn.benchmark-13158 (13131) [005] d.s2 24573.480888: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
53901 id.nn.benchmark-13155 (13131) [004] d.s2 24573.480890: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
53902           <...>-13154 (-----) [000] d.h2 24573.480895: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
53903 id.nn.benchmark-13158 (13131) [005] d.s3 24573.480897: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
53904 id.nn.benchmark-13155 (13131) [004] d.s3 24573.480898: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
53905           <...>-13154 (-----) [000] dnh3 24573.480902: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
53906           <...>-13278 (-----) [007] d..2 24573.480904: sched_switch: prev_comm=id.nn.benchmark prev_pid=13278 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
53907           <...>-13154 (-----) [000] d..2 24573.480912: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
53908  crtc_event:111-254   (  254) [007] d..2 24573.480912: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
53909     migration/0-13    (   13) [000] d.h3 24573.480961: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
53910     migration/0-13    (   13) [000] d.h3 24573.480973: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
53911 id.nn.benchmark-13155 (13131) [004] dnh1 24573.480975: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
53912 id.nn.benchmark-13155 (13131) [004] d..2 24573.480978: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
53913         sugov:4-560   (  560) [004] d..2 24573.480982: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
53914     migration/0-13    (   13) [000] d.h4 24573.480983: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
53915     migration/0-13    (   13) [000] d..2 24573.480990: 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
53916         sugov:0-559   (  559) [000] d..2 24573.481012: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
53917  kworker/u16:15-18488 (18488) [007] d..2 24573.481134: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13278 next_prio=110
53918     logd.writer-563   (  555) [000] d..2 24573.481362: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
53919           <...>-13278 (-----) [007] ...1 24573.481422: tracing_mark_write: E|13131
53920           <...>-13278 (-----) [007] ...1 24573.481423: tracing_mark_write: E|13131
53921           <...>-13278 (-----) [007] ...1 24573.481427: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53922           <...>-13278 (-----) [007] ...1 24573.481428: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53923           <...>-13278 (-----) [007] ...1 24573.481716: tracing_mark_write: E|13131
53924           <...>-13278 (-----) [007] ...1 24573.481717: tracing_mark_write: E|13131
53925           <...>-13278 (-----) [007] ...1 24573.481723: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
53926           <...>-13278 (-----) [007] ...1 24573.481724: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
53927 id.nn.benchmark-13156 (13131) [002] d..2 24573.481752: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=004
53928 id.nn.benchmark-13155 (13131) [004] d..3 24573.481754: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
53929 id.nn.benchmark-13155 (13131) [004] d..2 24573.481761: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=D|K ==> next_comm=swapper/4 next_pid=0 next_prio=120
53930           <...>-13154 (-----) [000] dnh1 24573.481764: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
53931          <idle>-0     (-----) [004] d..1 24573.481770: cpu_idle: state=0 cpu_id=4
53932           <...>-13154 (-----) [000] d..2 24573.481771: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
53933          <idle>-0     (-----) [004] d.h2 24573.481786: sched_blocked_reason: pid=13155 iowait=1 caller=__lock_page_or_retry+0x26c/0x2c4
53934          <idle>-0     (-----) [004] dnh2 24573.481787: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=004
53935          <idle>-0     (-----) [004] .n.1 24573.481792: cpu_idle: state=4294967295 cpu_id=4
53936          <idle>-0     (-----) [004] d..2 24573.481815: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
53937     migration/0-13    (   13) [000] d.h3 24573.481816: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
53938     migration/0-13    (   13) [000] d.h3 24573.481828: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
53939           <...>-13278 (-----) [007] dnh1 24573.481832: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
53940     migration/0-13    (   13) [000] d.h4 24573.481834: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
53941           <...>-13278 (-----) [007] d..2 24573.481836: sched_switch: prev_comm=id.nn.benchmark prev_pid=13278 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
53942     migration/0-13    (   13) [000] d..2 24573.481840: 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
53943         sugov:4-560   (  560) [007] d..2 24573.481840: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13278 next_prio=110
53944         sugov:0-559   (  559) [000] d..2 24573.481853: 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
53945          <idle>-0     (-----) [000] d..1 24573.481867: cpu_idle: state=0 cpu_id=0
53946 id.nn.benchmark-13159 (13131) [001] d.h1 24573.482018: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
53947 id.nn.benchmark-13159 (13131) [001] d.h2 24573.482036: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
53948          <idle>-0     (-----) [000] .n.1 24573.482041: cpu_idle: state=4294967295 cpu_id=0
53949          <idle>-0     (-----) [000] d..2 24573.482047: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
53950        DispSync-23904 (23896) [000] d..1 24573.482069: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
53951        DispSync-23904 (23896) [000] d..2 24573.482082: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
53952           <...>-13157 (-----) [003] d..2 24573.482091: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
53953        DispSync-23904 (23896) [000] d..2 24573.482101: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53954          <idle>-0     (-----) [000] d..1 24573.482107: cpu_idle: state=0 cpu_id=0
53955  appEventThread-23905 (23896) [003] d..3 24573.482134: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
53956  appEventThread-23905 (23896) [003] d..4 24573.482156: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
53957          <idle>-0     (-----) [000] .n.1 24573.482160: cpu_idle: state=4294967295 cpu_id=0
53958          <idle>-0     (-----) [000] d..2 24573.482183: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
53959  appEventThread-23905 (23896) [003] d..2 24573.482194: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
53960<...>-24151 ( 24151) [000] .... 24573.482486: binder_transaction: transaction=1669959 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
53961<...>-24151 ( 24151) [000] d..4 24573.482497: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
53962           <...>-13278 (-----) [007] dnh1 24573.482515: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
53963           <...>-13278 (-----) [007] d..2 24573.482518: sched_switch: prev_comm=id.nn.benchmark prev_pid=13278 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
53964  Binder:23896_5-25989 (23896) [007] .... 24573.482522: binder_transaction_received: transaction=1669959
53965<...>-24151 ( 24151) [000] d..3 24573.482542: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
53966  Binder:23896_5-25989 (23896) [007] d..1 24573.482544: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
53967  Binder:23896_5-25989 (23896) [007] d.h1 24573.482558: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
53968<...>-24151 ( 24151) [000] dnh1 24573.482561: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
53969<...>-24151 ( 24151) [000] d..2 24573.482569: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
53970  Binder:23896_5-25989 (23896) [007] d..2 24573.482570: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
53971    RenderThread-24437 (24151) [007] d..2 24573.482589: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13278 next_prio=110
53972  appEventThread-23905 (23896) [000] d..2 24573.482597: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
53973<...>-24151 ( 24151) [000] d..3 24573.482696: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
53974           <...>-13278 (-----) [007] dnh1 24573.482710: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
53975           <...>-13278 (-----) [007] d..2 24573.482713: sched_switch: prev_comm=id.nn.benchmark prev_pid=13278 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
53976<...>-24151 ( 24151) [000] d..2 24573.482721: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53977          <idle>-0     (-----) [000] d..1 24573.482729: cpu_idle: state=0 cpu_id=0
53978    RenderThread-24437 (24151) [007] d..1 24573.482765: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
53979          <idle>-0     (-----) [000] dnh2 24573.482781: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
53980          <idle>-0     (-----) [000] .n.1 24573.482785: cpu_idle: state=4294967295 cpu_id=0
53981          <idle>-0     (-----) [000] d..2 24573.482791: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
53982    RenderThread-24437 (24151) [007] .... 24573.482804: binder_transaction: transaction=1669960 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
53983    RenderThread-24437 (24151) [007] d..4 24573.482806: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
53984    RenderThread-24437 (24151) [007] d..5 24573.482811: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
53985    RenderThread-24437 (24151) [007] d..2 24573.482815: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
53986  Binder:23896_5-25989 (23896) [007] .... 24573.482817: binder_transaction_received: transaction=1669960
53987<...>-24151 ( 24151) [000] d..2 24573.482834: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53988          <idle>-0     (-----) [000] d..1 24573.482841: cpu_idle: state=0 cpu_id=0
53989  Binder:23896_5-25989 (23896) [007] .... 24573.482848: binder_transaction: transaction=1669961 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
53990  Binder:23896_5-25989 (23896) [007] d..2 24573.482853: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
53991  Binder:23896_5-25989 (23896) [007] d.h3 24573.482884: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
53992          <idle>-0     (-----) [000] dnh2 24573.482886: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
53993  Binder:23896_5-25989 (23896) [007] dnh4 24573.482887: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
53994  Binder:23896_5-25989 (23896) [007] dnh3 24573.482888: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
53995          <idle>-0     (-----) [000] .n.1 24573.482889: cpu_idle: state=4294967295 cpu_id=0
53996          <idle>-0     (-----) [000] dn.2 24573.482893: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
53997  Binder:23896_5-25989 (23896) [007] d..2 24573.482897: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
53998          <idle>-0     (-----) [000] d..2 24573.482900: 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
53999         sugov:4-560   (  560) [007] d..2 24573.482901: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
54000         sugov:0-559   (  559) [000] d..2 24573.482908: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
54001  Binder:23896_5-25989 (23896) [007] d..2 24573.482910: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13278 next_prio=110
54002    RenderThread-24437 (24151) [000] .... 24573.482912: binder_transaction_received: transaction=1669961
54003    RenderThread-24437 (24151) [000] d..2 24573.483924: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
54004          <idle>-0     (-----) [000] d..1 24573.483931: cpu_idle: state=0 cpu_id=0
54005          <idle>-0     (-----) [000] d.h2 24573.484017: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
54006          <idle>-0     (-----) [000] d.h3 24573.484023: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
54007          <idle>-0     (-----) [000] dnh3 24573.484026: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
54008          <idle>-0     (-----) [000] .n.1 24573.484030: cpu_idle: state=4294967295 cpu_id=0
54009          <idle>-0     (-----) [000] d..2 24573.484036: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
54010    RenderThread-24437 (24151) [000] d.h2 24573.484141: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
54011    RenderThread-24437 (24151) [000] dnh3 24573.484160: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
54012    RenderThread-24437 (24151) [000] dnh2 24573.484195: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
54013    RenderThread-24437 (24151) [000] dnh2 24573.484202: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
54014           <...>-13278 (-----) [007] dnh1 24573.484206: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
54015           <...>-13278 (-----) [007] d..2 24573.484209: sched_switch: prev_comm=id.nn.benchmark prev_pid=13278 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
54016         sugov:4-560   (  560) [007] d..2 24573.484212: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13278 next_prio=110
54017    RenderThread-24437 (24151) [000] dnh3 24573.484215: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
54018 id.nn.benchmark-13159 (13131) [001] dnh2 24573.484227: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
54019 id.nn.benchmark-13159 (13131) [001] dnh3 24573.484232: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
54020 id.nn.benchmark-13156 (13131) [002] d.s1 24573.484233: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
54021    RenderThread-24437 (24151) [000] d..2 24573.484237: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
54022 id.nn.benchmark-13159 (13131) [001] d..2 24573.484244: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
54023 id.nn.benchmark-13156 (13131) [002] d.s2 24573.484248: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
54024 kgsl_worker_thr-246   (  246) [000] d..2 24573.484272: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
54025     migration/1-17    (   17) [001] d..2 24573.484287: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
54026           <...>-13278 (-----) [007] dnh1 24573.484310: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
54027           <...>-13278 (-----) [007] d..2 24573.484312: sched_switch: prev_comm=id.nn.benchmark prev_pid=13278 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
54028         sugov:0-559   (  559) [001] d..2 24573.484314: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
54029 kgsl_worker_thr-246   (  246) [000] d..2 24573.484315: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
54030  kworker/u16:15-18488 (18488) [007] d..2 24573.484335: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
54031     rcu_preempt-7     (    7) [000] d..2 24573.484337: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
54032    RenderThread-24437 (24151) [000] .... 24573.484391: binder_transaction: transaction=1669962 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
54033    RenderThread-24437 (24151) [000] d..4 24573.484399: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
54034    RenderThread-24437 (24151) [000] d..5 24573.484414: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
54035    RenderThread-24437 (24151) [000] d..2 24573.484444: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
54036  Binder:23896_5-25989 (23896) [000] .... 24573.484448: binder_transaction_received: transaction=1669962
54037  Binder:23896_5-25989 (23896) [000] .... 24573.484554: binder_transaction: transaction=1669963 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
54038  Binder:23896_5-25989 (23896) [000] d..2 24573.484558: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
54039  Binder:23896_5-25989 (23896) [000] d..3 24573.484566: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
54040  Binder:23896_5-25989 (23896) [000] d..2 24573.484585: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
54041    RenderThread-24437 (24151) [000] .... 24573.484588: binder_transaction_received: transaction=1669963
54042    RenderThread-24437 (24151) [000] d..2 24573.484652: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13278 next_prio=110
54043           <...>-13278 (-----) [000] ...1 24573.484689: tracing_mark_write: E|13131
54044           <...>-13278 (-----) [000] ...1 24573.484694: tracing_mark_write: E|13131
54045           <...>-13278 (-----) [000] ...1 24573.484711: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54046           <...>-13278 (-----) [000] ...1 24573.484715: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54047           <...>-13278 (-----) [000] ...1 24573.484792: tracing_mark_write: E|13131
54048           <...>-13278 (-----) [000] ...1 24573.484795: tracing_mark_write: E|13131
54049           <...>-13278 (-----) [000] ...1 24573.484806: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
54050           <...>-13278 (-----) [000] ...1 24573.484811: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
54051           <...>-13278 (-----) [000] ...1 24573.485116: tracing_mark_write: E|13131
54052           <...>-13278 (-----) [000] ...1 24573.485120: tracing_mark_write: E|13131
54053           <...>-13278 (-----) [000] ...1 24573.485129: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
54054           <...>-13278 (-----) [000] ...1 24573.485132: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
54055           <...>-13278 (-----) [000] ...1 24573.485187: tracing_mark_write: E|13131
54056           <...>-13278 (-----) [000] ...1 24573.485190: tracing_mark_write: E|13131
54057           <...>-13278 (-----) [000] ...1 24573.485199: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
54058           <...>-13278 (-----) [000] ...1 24573.485202: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
54059           <...>-13278 (-----) [000] ...1 24573.485218: tracing_mark_write: E|13131
54060           <...>-13278 (-----) [000] ...1 24573.485220: tracing_mark_write: E|13131
54061           <...>-13278 (-----) [000] ...1 24573.485231: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
54062           <...>-13278 (-----) [000] ...1 24573.485234: tracing_mark_write: E|13131
54063           <...>-13278 (-----) [000] ...1 24573.485242: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
54064           <...>-13278 (-----) [000] ...1 24573.485246: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
54065 id.nn.benchmark-13160 (13131) [006] d..3 24573.485963: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
54066 id.nn.benchmark-13158 (13131) [005] d..2 24573.485968: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
54067 id.nn.benchmark-13160 (13131) [006] d..2 24573.485970: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
54068           <...>-13154 (-----) [001] dnh1 24573.485973: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
54069          <idle>-0     (-----) [005] d..1 24573.485976: cpu_idle: state=0 cpu_id=5
54070          <idle>-0     (-----) [006] d..1 24573.485978: cpu_idle: state=0 cpu_id=6
54071           <...>-13154 (-----) [001] d..2 24573.485979: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
54072          <idle>-0     (-----) [006] .n.1 24573.486000: cpu_idle: state=4294967295 cpu_id=6
54073          <idle>-0     (-----) [006] d..2 24573.486021: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
54074     migration/1-17    (   17) [001] d.h3 24573.486022: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
54075           <...>-13278 (-----) [000] d.h1 24573.486025: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
54076     migration/1-17    (   17) [001] d.h3 24573.486034: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
54077          <idle>-0     (-----) [005] dnh2 24573.486039: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
54078          <idle>-0     (-----) [005] .n.1 24573.486041: cpu_idle: state=4294967295 cpu_id=5
54079           <...>-13278 (-----) [000] d.h2 24573.486042: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
54080          <idle>-0     (-----) [005] d..2 24573.486044: 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
54081     migration/1-17    (   17) [001] d.h4 24573.486046: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
54082         sugov:4-560   (  560) [005] d..3 24573.486059: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
54083           <...>-13278 (-----) [000] d..2 24573.486064: sched_switch: prev_comm=id.nn.benchmark prev_pid=13278 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
54084         sugov:4-560   (  560) [005] d..2 24573.486067: 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
54085     migration/1-17    (   17) [001] d..2 24573.486067: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=DispSync next_pid=23904 next_prio=97
54086          <idle>-0     (-----) [005] d..1 24573.486069: cpu_idle: state=0 cpu_id=5
54087 id.nn.benchmark-13156 (13131) [002] dnh1 24573.486069: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
54088         sugov:0-559   (  559) [000] d..2 24573.486075: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13278 next_prio=110
54089 id.nn.benchmark-13156 (13131) [002] d..2 24573.486076: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
54090        DispSync-23904 (23896) [001] d..1 24573.486081: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
54091        DispSync-23904 (23896) [001] d..2 24573.486097: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
54092          <idle>-0     (-----) [005] .n.1 24573.486100: cpu_idle: state=4294967295 cpu_id=5
54093          <idle>-0     (-----) [005] d..2 24573.486119: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
54094     migration/2-25    (   25) [002] d..2 24573.486123: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=sfEventThread next_pid=23906 next_prio=97
54095        DispSync-23904 (23896) [001] d..2 24573.486136: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54096          <idle>-0     (-----) [001] d..1 24573.486153: cpu_idle: state=0 cpu_id=1
54097   sfEventThread-23906 (23896) [002] d..3 24573.486154: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
54098           <...>-13278 (-----) [000] ...1 24573.486158: tracing_mark_write: E|13131
54099           <...>-13278 (-----) [000] ...1 24573.486162: tracing_mark_write: E|13131
54100           <...>-13278 (-----) [000] ...1 24573.486170: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54101   sfEventThread-23906 (23896) [002] d..4 24573.486172: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
54102           <...>-13278 (-----) [000] ...1 24573.486174: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54103          <idle>-0     (-----) [001] .n.1 24573.486178: cpu_idle: state=4294967295 cpu_id=1
54104          <idle>-0     (-----) [001] d..2 24573.486184: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
54105           <...>-13278 (-----) [000] d..1 24573.486191: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
54106   sfEventThread-23906 (23896) [002] d..2 24573.486191: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
54107           <...>-13278 (-----) [000] d..1 24573.486203: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=006
54108 id.nn.benchmark-13156 (13131) [005] d.h1 24573.486203: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
54109          <idle>-0     (-----) [002] d..1 24573.486205: cpu_idle: state=0 cpu_id=2
54110           <...>-13154 (-----) [006] d.h1 24573.486214: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=006
54111  surfaceflinger-23896 (23896) [001] d..1 24573.486420: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
54112  surfaceflinger-23896 (23896) [001] d..2 24573.486432: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
54113          <idle>-0     (-----) [002] .n.1 24573.486437: cpu_idle: state=4294967295 cpu_id=2
54114          <idle>-0     (-----) [002] d..2 24573.486443: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
54115   sfEventThread-23906 (23896) [002] d..2 24573.486477: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
54116  surfaceflinger-23896 (23896) [001] ...1 24573.486553: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
54117  surfaceflinger-23896 (23896) [001] ...1 24573.486557: tracing_mark_write: E|23896
54118  surfaceflinger-23896 (23896) [001] .... 24573.486598: binder_transaction: transaction=1669964 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
54119  surfaceflinger-23896 (23896) [001] ...2 24573.486617: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
54120  surfaceflinger-23896 (23896) [001] d..4 24573.486624: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
54121  surfaceflinger-23896 (23896) [001] d..5 24573.486636: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
54122           <...>-13278 (-----) [000] d..2 24573.486645: sched_switch: prev_comm=id.nn.benchmark prev_pid=13278 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
54123  surfaceflinger-23896 (23896) [001] d..2 24573.486653: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54124  HwBinder:598_3-633   (  598) [000] .... 24573.486653: binder_transaction_received: transaction=1669964
54125          <idle>-0     (-----) [001] d..1 24573.486661: cpu_idle: state=0 cpu_id=1
54126  HwBinder:598_3-633   (  598) [000] ...1 24573.486693: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
54127  HwBinder:598_3-633   (  598) [000] ...1 24573.486780: tracing_mark_write: B|598|HWCSession::PresentDisplay::
54128  HwBinder:598_3-633   (  598) [000] ...1 24573.486898: tracing_mark_write: B|598|HWDeviceDRM::Commit::
54129  HwBinder:598_3-633   (  598) [000] ...1 24573.486905: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
54130  HwBinder:598_3-633   (  598) [000] d..2 24573.487291: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
54131  HwBinder:598_3-633   (  598) [000] d..3 24573.487313: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
54132          <idle>-0     (-----) [001] .n.1 24573.487318: cpu_idle: state=4294967295 cpu_id=1
54133          <idle>-0     (-----) [001] d..2 24573.487342: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
54134  HwBinder:598_3-633   (  598) [000] d.h3 24573.487343: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
54135  HwBinder:598_3-633   (  598) [000] d.h3 24573.487353: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
54136 id.nn.benchmark-13159 (13131) [007] dnh1 24573.487357: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
54137 id.nn.benchmark-13159 (13131) [007] d..2 24573.487359: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
54138         sugov:4-560   (  560) [007] d..2 24573.487363: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
54139  HwBinder:598_3-633   (  598) [000] d.h4 24573.487365: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
54140 id.nn.benchmark-13158 (13131) [002] d..2 24573.487375: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
54141         sugov:0-559   (  559) [002] d..2 24573.487383: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
54142  HwBinder:598_3-633   (  598) [000] ...1 24573.487424: tracing_mark_write: E|598
54143  HwBinder:598_3-633   (  598) [000] ...1 24573.487427: tracing_mark_write: E|598
54144  HwBinder:598_3-633   (  598) [000] ...1 24573.487465: tracing_mark_write: E|598
54145  HwBinder:598_3-633   (  598) [000] ...1 24573.487499: tracing_mark_write: E|598
54146  HwBinder:598_3-633   (  598) [000] .... 24573.487508: binder_transaction: transaction=1669965 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
54147  HwBinder:598_3-633   (  598) [000] d..2 24573.487519: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
54148  HwBinder:598_3-633   (  598) [000] d..3 24573.487533: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
54149  HwBinder:598_3-633   (  598) [000] .... 24573.487536: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
54150 id.nn.benchmark-13158 (13131) [002] d..2 24573.487541: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
54151 id.nn.benchmark-13155 (13131) [004] d.s2 24573.487555: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
54152  surfaceflinger-23896 (23896) [002] .... 24573.487564: binder_transaction_received: transaction=1669965
54153 id.nn.benchmark-13155 (13131) [004] d.s3 24573.487568: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
54154 id.nn.benchmark-13155 (13131) [004] d.s2 24573.487569: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
54155 id.nn.benchmark-13159 (13131) [007] d..2 24573.487574: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
54156  HwBinder:598_3-633   (  598) [000] d.h1 24573.487583: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
54157  HwBinder:598_3-633   (  598) [000] d..2 24573.487611: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
54158     rcu_preempt-7     (    7) [000] d..2 24573.487616: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
54159     rcu_preempt-7     (    7) [000] d..3 24573.487628: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
54160     rcu_preempt-7     (    7) [000] d..2 24573.487630: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=005
54161 id.nn.benchmark-13156 (13131) [005] dnh1 24573.487655: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=005
54162 id.nn.benchmark-13156 (13131) [005] d..2 24573.487657: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
54163     rcu_preempt-7     (    7) [000] d..2 24573.487660: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13278 next_prio=110
54164         rcuop/2-29    (   29) [005] d..2 24573.487664: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
54165  kworker/u16:15-18488 (18488) [007] d..2 24573.487672: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
54166  surfaceflinger-23896 (23896) [002] d..2 24573.487820: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
54167 crtc_commit:111-253   (  253) [001] d..2 24573.487970: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcuop/0 next_pid=10 next_prio=120
54168         rcuop/0-10    (   10) [001] d..2 24573.487975: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
54169 id.nn.benchmark-13155 (13131) [004] dnh1 24573.488003: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
54170 id.nn.benchmark-13155 (13131) [004] d..2 24573.488006: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
54171         rcuop/1-21    (   21) [004] d..2 24573.488024: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
54172         rcuop/0-10    (   10) [001] d..2 24573.488034: 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
54173          <idle>-0     (-----) [001] d..1 24573.488042: cpu_idle: state=0 cpu_id=1
54174          <idle>-0     (-----) [001] ...1 24573.489261: cpu_idle: state=4294967295 cpu_id=1
54175          <idle>-0     (-----) [001] d..1 24573.489264: cpu_idle: state=0 cpu_id=1
54176           <...>-13154 (-----) [006] d..2 24573.490626: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
54177 id.nn.benchmark-13156 (13131) [005] d..3 24573.490640: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
54178 id.nn.benchmark-13156 (13131) [005] d..2 24573.490647: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
54179          <idle>-0     (-----) [005] d..1 24573.490649: cpu_idle: state=0 cpu_id=5
54180 id.nn.benchmark-13158 (13131) [002] dnh1 24573.490651: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
54181 id.nn.benchmark-13158 (13131) [002] d..2 24573.490656: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
54182           <...>-13278 (-----) [000] ...1 24573.490659: tracing_mark_write: E|13131
54183           <...>-13278 (-----) [000] ...1 24573.490663: tracing_mark_write: E|13131
54184 id.nn.benchmark-13155 (13131) [004] d..2 24573.490675: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
54185          <idle>-0     (-----) [005] .n.1 24573.490677: cpu_idle: state=4294967295 cpu_id=5
54186          <idle>-0     (-----) [004] d..1 24573.490678: cpu_idle: state=0 cpu_id=4
54187          <idle>-0     (-----) [005] d..2 24573.490699: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
54188     migration/2-25    (   25) [002] d.h3 24573.490700: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
54189     migration/2-25    (   25) [002] d.h3 24573.490712: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
54190           <...>-13278 (-----) [000] d..2 24573.490716: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
54191          <idle>-0     (-----) [004] dnh2 24573.490717: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
54192          <idle>-0     (-----) [004] .n.1 24573.490720: cpu_idle: state=4294967295 cpu_id=4
54193          <idle>-0     (-----) [004] d..2 24573.490722: 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
54194     migration/2-25    (   25) [002] d.h4 24573.490724: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
54195           <...>-13278 (-----) [000] d..3 24573.490726: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
54196         sugov:4-560   (  560) [004] d..2 24573.490728: 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
54197          <idle>-0     (-----) [001] .n.1 24573.490728: cpu_idle: state=4294967295 cpu_id=1
54198          <idle>-0     (-----) [004] d..1 24573.490730: cpu_idle: state=0 cpu_id=4
54199          <idle>-0     (-----) [001] d..2 24573.490733: 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
54200     migration/2-25    (   25) [002] d..2 24573.490742: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
54201         sugov:0-559   (  559) [001] d..2 24573.490746: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54202           <...>-13278 (-----) [000] ...1 24573.490748: tracing_mark_write: E|13131
54203          <idle>-0     (-----) [001] d..1 24573.490751: cpu_idle: state=0 cpu_id=1
54204           <...>-13278 (-----) [000] d..1 24573.490754: sched_waking: comm=id.nn.benchmark pid=13277 prio=110 target_cpu=007
54205 id.nn.benchmark-13159 (13131) [007] d..3 24573.490757: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
54206           <...>-13157 (-----) [003] dnh1 24573.490768: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
54207 id.nn.benchmark-13159 (13131) [007] d..2 24573.490770: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
54208           <...>-13157 (-----) [003] d..2 24573.490774: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
54209           <...>-13278 (-----) [000] d..2 24573.490774: sched_wakeup: comm=id.nn.benchmark pid=13277 prio=110 target_cpu=001
54210          <idle>-0     (-----) [001] .n.1 24573.490779: cpu_idle: state=4294967295 cpu_id=1
54211          <idle>-0     (-----) [007] d..1 24573.490780: cpu_idle: state=0 cpu_id=7
54212          <idle>-0     (-----) [001] d..2 24573.490804: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13277 next_prio=110
54213     logd.writer-563   (  555) [002] d..2 24573.490812: 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
54214          <idle>-0     (-----) [007] .n.1 24573.490817: cpu_idle: state=4294967295 cpu_id=7
54215           <...>-13278 (-----) [000] ...1 24573.490821: tracing_mark_write: E|13131
54216          <idle>-0     (-----) [002] d..1 24573.490822: cpu_idle: state=0 cpu_id=2
54217          <idle>-0     (-----) [007] d..2 24573.490835: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
54218           <...>-13277 (-----) [001] d..2 24573.490843: sched_switch: prev_comm=id.nn.benchmark prev_pid=13277 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54219<...>-33 ( 33) [003] d..2 24573.490846: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
54220          <idle>-0     (-----) [001] d..1 24573.490850: cpu_idle: state=0 cpu_id=1
54221          <idle>-0     (-----) [003] d..1 24573.490859: cpu_idle: state=0 cpu_id=3
54222 id.nn.benchmark-13158 (13131) [005] d.s2 24573.490889: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
54223          <idle>-0     (-----) [004] ...1 24573.490941: cpu_idle: state=4294967295 cpu_id=4
54224          <idle>-0     (-----) [004] d..1 24573.490942: cpu_idle: state=0 cpu_id=4
54225          <idle>-0     (-----) [001] dnh2 24573.490944: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
54226          <idle>-0     (-----) [001] .n.1 24573.490948: cpu_idle: state=4294967295 cpu_id=1
54227          <idle>-0     (-----) [001] d..2 24573.490954: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
54228           <...>-13278 (-----) [000] d..1 24573.491071: sched_waking: comm=id.nn.benchmark pid=13277 prio=110 target_cpu=001
54229           <...>-13278 (-----) [000] d..2 24573.491087: sched_wakeup: comm=id.nn.benchmark pid=13277 prio=110 target_cpu=002
54230          <idle>-0     (-----) [002] .n.1 24573.491093: cpu_idle: state=4294967295 cpu_id=2
54231          <idle>-0     (-----) [002] d..2 24573.491100: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13277 next_prio=110
54232  kworker/u16:15-18488 (18488) [001] d..2 24573.491125: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54233          <idle>-0     (-----) [001] d..1 24573.491132: cpu_idle: state=0 cpu_id=1
54234           <...>-13278 (-----) [000] d..2 24573.491156: sched_switch: prev_comm=id.nn.benchmark prev_pid=13278 prev_prio=110 prev_state=x ==> next_comm=swapper/0 next_pid=0 next_prio=120
54235           <...>-13277 (-----) [002] d..2 24573.491158: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
54236           <...>-13277 (-----) [002] d..3 24573.491166: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
54237          <idle>-0     (-----) [000] d..1 24573.491171: cpu_idle: state=0 cpu_id=0
54238           <...>-13277 (-----) [002] d..1 24573.491223: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
54239           <...>-13277 (-----) [002] d..2 24573.491245: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
54240          <idle>-0     (-----) [000] .n.1 24573.491250: cpu_idle: state=4294967295 cpu_id=0
54241           <...>-13277 (-----) [002] d.h3 24573.491274: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
54242          <idle>-0     (-----) [000] d..2 24573.491275: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
54243           <...>-13277 (-----) [002] d.h3 24573.491281: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
54244          <idle>-0     (-----) [004] dnh2 24573.491285: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
54245          <idle>-0     (-----) [004] .n.1 24573.491287: cpu_idle: state=4294967295 cpu_id=4
54246           <...>-13277 (-----) [002] d.h4 24573.491289: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
54247          <idle>-0     (-----) [004] d..2 24573.491290: 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
54248          <idle>-0     (-----) [001] .n.1 24573.491295: cpu_idle: state=4294967295 cpu_id=1
54249         sugov:4-560   (  560) [004] d..2 24573.491295: 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
54250          <idle>-0     (-----) [004] d..1 24573.491298: cpu_idle: state=0 cpu_id=4
54251          <idle>-0     (-----) [001] d..2 24573.491300: 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
54252           <...>-13131 (-----) [000] d..2 24573.491303: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
54253         sugov:0-559   (  559) [001] d..2 24573.491312: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54254          <idle>-0     (-----) [001] d..1 24573.491317: cpu_idle: state=0 cpu_id=1
54255           <...>-13277 (-----) [002] d..1 24573.491357: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
54256     logd.writer-563   (  555) [000] d..2 24573.491370: 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
54257           <...>-13277 (-----) [002] d..2 24573.491371: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
54258          <idle>-0     (-----) [001] .n.1 24573.491376: cpu_idle: state=4294967295 cpu_id=1
54259          <idle>-0     (-----) [000] d..1 24573.491376: cpu_idle: state=0 cpu_id=0
54260          <idle>-0     (-----) [001] d..2 24573.491381: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
54261           <...>-13131 (-----) [001] ...1 24573.491406: tracing_mark_write: E|13131
54262           <...>-13131 (-----) [001] ...1 24573.491412: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
54263           <...>-13277 (-----) [002] d..2 24573.491412: sched_switch: prev_comm=id.nn.benchmark prev_pid=13277 prev_prio=110 prev_state=x ==> next_comm=swapper/2 next_pid=0 next_prio=120
54264           <...>-13131 (-----) [001] ...1 24573.491418: tracing_mark_write: E|13131
54265           <...>-13131 (-----) [001] ...1 24573.491421: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
54266          <idle>-0     (-----) [002] d..1 24573.491425: cpu_idle: state=0 cpu_id=2
54267           <...>-13131 (-----) [001] ...1 24573.491426: tracing_mark_write: E|13131
54268          <idle>-0     (-----) [004] ...1 24573.491488: cpu_idle: state=4294967295 cpu_id=4
54269          <idle>-0     (-----) [004] d..1 24573.491489: cpu_idle: state=0 cpu_id=4
54270           <...>-13131 (-----) [001] ...1 24573.491736: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
54271           <...>-13131 (-----) [001] d..2 24573.491764: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
54272           <...>-13131 (-----) [001] d..3 24573.491777: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
54273           <...>-13131 (-----) [001] ...1 24573.491794: tracing_mark_write: E|13131
54274           <...>-13131 (-----) [001] ...1 24573.491798: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
54275           <...>-13131 (-----) [001] ...1 24573.491803: tracing_mark_write: E|13131
54276           <...>-13131 (-----) [001] ...1 24573.491808: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
54277           <...>-13131 (-----) [001] ...1 24573.491812: tracing_mark_write: E|13131
54278           <...>-13131 (-----) [001] ...1 24573.491816: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
54279          <idle>-0     (-----) [000] .n.1 24573.491934: cpu_idle: state=4294967295 cpu_id=0
54280           <...>-13131 (-----) [001] ...1 24573.491937: tracing_mark_write: E|13131
54281          <idle>-0     (-----) [000] d..2 24573.491940: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13279 next_prio=110
54282           <...>-13131 (-----) [001] ...1 24573.491941: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
54283           <...>-13131 (-----) [001] d..2 24573.491950: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
54284     logd.writer-563   (  555) [001] d..2 24573.491994: 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
54285           <...>-13279 (-----) [000] d..2 24573.491997: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
54286          <idle>-0     (-----) [001] d..1 24573.492005: cpu_idle: state=0 cpu_id=1
54287          <idle>-0     (-----) [003] ...1 24573.492007: cpu_idle: state=4294967295 cpu_id=3
54288          <idle>-0     (-----) [003] d..1 24573.492009: cpu_idle: state=0 cpu_id=3
54289           <...>-13279 (-----) [000] d..3 24573.492010: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
54290          <idle>-0     (-----) [001] .n.1 24573.492287: cpu_idle: state=4294967295 cpu_id=1
54291          <idle>-0     (-----) [001] d..2 24573.492294: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13280 next_prio=110
54292           <...>-13279 (-----) [000] d..2 24573.492309: sched_switch: prev_comm=id.nn.benchmark prev_pid=13279 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
54293           <...>-13280 (-----) [001] ...1 24573.492323: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
54294           <...>-13280 (-----) [001] ...1 24573.492328: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
54295           <...>-13280 (-----) [001] ...1 24573.492445: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54296           <...>-13280 (-----) [001] ...1 24573.492451: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54297     logd.writer-563   (  555) [000] d..2 24573.492564: 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
54298          <idle>-0     (-----) [000] d..1 24573.492572: cpu_idle: state=0 cpu_id=0
54299          <idle>-0     (-----) [002] ...1 24573.492626: cpu_idle: state=4294967295 cpu_id=2
54300          <idle>-0     (-----) [002] d..1 24573.492629: cpu_idle: state=0 cpu_id=2
54301           <...>-13157 (-----) [007] d..2 24573.493350: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
54302          <idle>-0     (-----) [007] d..1 24573.493353: cpu_idle: state=0 cpu_id=7
54303          <idle>-0     (-----) [007] ...1 24573.493543: cpu_idle: state=4294967295 cpu_id=7
54304          <idle>-0     (-----) [007] d..1 24573.493544: cpu_idle: state=0 cpu_id=7
54305 id.nn.benchmark-13158 (13131) [005] d..2 24573.493558: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
54306          <idle>-0     (-----) [005] d..1 24573.493561: cpu_idle: state=0 cpu_id=5
54307          <idle>-0     (-----) [005] ...1 24573.493751: cpu_idle: state=4294967295 cpu_id=5
54308          <idle>-0     (-----) [005] d..1 24573.493752: cpu_idle: state=0 cpu_id=5
54309          <idle>-0     (-----) [000] d.h5 24573.494007: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
54310          <idle>-0     (-----) [000] dnh6 24573.494025: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
54311          <idle>-0     (-----) [000] dnh5 24573.494028: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
54312          <idle>-0     (-----) [000] dnh6 24573.494040: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
54313          <idle>-0     (-----) [003] .n.1 24573.494044: cpu_idle: state=4294967295 cpu_id=3
54314          <idle>-0     (-----) [003] d..2 24573.494051: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
54315          <idle>-0     (-----) [000] dnh3 24573.494080: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
54316          <idle>-0     (-----) [000] dnh3 24573.494087: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
54317          <idle>-0     (-----) [004] dnh2 24573.494091: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
54318          <idle>-0     (-----) [004] .n.1 24573.494093: cpu_idle: state=4294967295 cpu_id=4
54319          <idle>-0     (-----) [004] d..2 24573.494095: 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
54320          <idle>-0     (-----) [000] dnh4 24573.494098: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
54321         sugov:4-560   (  560) [004] d..2 24573.494100: 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
54322           <...>-13280 (-----) [001] d..1 24573.494100: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=006
54323          <idle>-0     (-----) [004] d..1 24573.494102: cpu_idle: state=0 cpu_id=4
54324          <idle>-0     (-----) [000] .n.1 24573.494102: cpu_idle: state=4294967295 cpu_id=0
54325          <idle>-0     (-----) [002] .n.1 24573.494103: cpu_idle: state=4294967295 cpu_id=2
54326          <idle>-0     (-----) [000] d..2 24573.494107: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
54327          <idle>-0     (-----) [002] d..2 24573.494109: 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
54328 crtc_commit:111-253   (  253) [003] d..2 24573.494113: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
54329           <...>-13280 (-----) [001] d..1 24573.494118: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=004
54330  crtc_event:111-254   (  254) [000] d..2 24573.494118: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
54331          <idle>-0     (-----) [003] d..1 24573.494119: cpu_idle: state=0 cpu_id=3
54332          <idle>-0     (-----) [004] dnh2 24573.494122: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
54333         sugov:0-559   (  559) [002] d..2 24573.494123: 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
54334          <idle>-0     (-----) [004] .n.1 24573.494124: cpu_idle: state=4294967295 cpu_id=4
54335  crtc_event:111-254   (  254) [000] d..3 24573.494127: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
54336          <idle>-0     (-----) [002] d..1 24573.494128: cpu_idle: state=0 cpu_id=2
54337          <idle>-0     (-----) [004] d..2 24573.494129: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
54338          <idle>-0     (-----) [003] .n.1 24573.494132: cpu_idle: state=4294967295 cpu_id=3
54339           <...>-13280 (-----) [001] d..1 24573.494133: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=005
54340          <idle>-0     (-----) [003] d..2 24573.494137: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
54341          <idle>-0     (-----) [005] dnh2 24573.494137: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
54342  crtc_event:111-254   (  254) [000] d..2 24573.494138: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54343          <idle>-0     (-----) [000] d..1 24573.494143: cpu_idle: state=0 cpu_id=0
54344          <idle>-0     (-----) [005] .n.1 24573.494143: cpu_idle: state=4294967295 cpu_id=5
54345          <idle>-0     (-----) [005] d..2 24573.494146: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
54346           <...>-13280 (-----) [001] d..1 24573.494146: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=007
54347          <idle>-0     (-----) [007] dnh2 24573.494150: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=007
54348          <idle>-0     (-----) [007] .n.1 24573.494152: cpu_idle: state=4294967295 cpu_id=7
54349          <idle>-0     (-----) [007] dn.2 24573.494154: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=007
54350           <...>-13280 (-----) [001] d..1 24573.494154: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
54351          <idle>-0     (-----) [007] d..2 24573.494158: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
54352           <...>-13280 (-----) [001] d..1 24573.494163: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
54353 id.nn.benchmark-13155 (13131) [005] d.h1 24573.494165: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
54354 id.nn.benchmark-13156 (13131) [007] d.h1 24573.494173: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
54355 crtc_commit:111-253   (  253) [003] d..2 24573.494215: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
54356          <idle>-0     (-----) [000] d.s2 24573.494249: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
54357 id.nn.benchmark-13159 (13131) [003] d.s4 24573.494257: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
54358          <idle>-0     (-----) [000] dns3 24573.494258: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
54359          <idle>-0     (-----) [000] .n.1 24573.494270: cpu_idle: state=4294967295 cpu_id=0
54360 id.nn.benchmark-13159 (13131) [003] d.s5 24573.494272: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
54361          <idle>-0     (-----) [000] d..2 24573.494275: 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
54362          <idle>-0     (-----) [002] .n.1 24573.494314: cpu_idle: state=4294967295 cpu_id=2
54363          <idle>-0     (-----) [002] d..2 24573.494321: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
54364     rcu_preempt-7     (    7) [000] d..2 24573.494323: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
54365  crtc_event:111-254   (  254) [002] d..2 24573.494332: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
54366           <...>-13280 (-----) [001] ...1 24573.494678: tracing_mark_write: E|13131
54367           <...>-13280 (-----) [001] ...1 24573.494683: tracing_mark_write: E|13131
54368           <...>-13280 (-----) [001] ...1 24573.494695: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54369           <...>-13280 (-----) [001] ...1 24573.494699: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54370           <...>-13280 (-----) [001] ...1 24573.495396: tracing_mark_write: E|13131
54371           <...>-13280 (-----) [001] ...1 24573.495400: tracing_mark_write: E|13131
54372           <...>-13280 (-----) [001] ...1 24573.495415: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54373           <...>-13280 (-----) [001] ...1 24573.495419: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54374           <...>-13280 (-----) [001] ...1 24573.495750: tracing_mark_write: E|13131
54375           <...>-13280 (-----) [001] ...1 24573.495754: tracing_mark_write: E|13131
54376           <...>-13280 (-----) [001] ...1 24573.495766: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54377           <...>-13280 (-----) [001] ...1 24573.495771: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54378           <...>-13280 (-----) [001] ...1 24573.496013: tracing_mark_write: E|13131
54379           <...>-13280 (-----) [001] ...1 24573.496017: tracing_mark_write: E|13131
54380           <...>-13280 (-----) [001] ...1 24573.496027: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54381           <...>-13280 (-----) [001] ...1 24573.496031: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54382           <...>-13157 (-----) [000] d.h4 24573.496351: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
54383           <...>-13157 (-----) [000] d.h5 24573.496367: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
54384           <...>-13280 (-----) [001] d..2 24573.496378: sched_switch: prev_comm=id.nn.benchmark prev_pid=13280 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
54385 crtc_commit:111-253   (  253) [001] d..2 24573.496428: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13280 next_prio=110
54386           <...>-13280 (-----) [001] ...1 24573.496536: tracing_mark_write: E|13131
54387           <...>-13280 (-----) [001] ...1 24573.496540: tracing_mark_write: E|13131
54388           <...>-13280 (-----) [001] ...1 24573.496549: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54389           <...>-13280 (-----) [001] ...1 24573.496553: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54390           <...>-13157 (-----) [000] d.h4 24573.496648: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
54391           <...>-13157 (-----) [000] d.h5 24573.496661: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
54392           <...>-13280 (-----) [001] d..2 24573.496668: sched_switch: prev_comm=id.nn.benchmark prev_pid=13280 prev_prio=110 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
54393  crtc_event:111-254   (  254) [001] d..2 24573.496683: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13280 next_prio=110
54394           <...>-13280 (-----) [001] ...1 24573.496970: tracing_mark_write: E|13131
54395           <...>-13280 (-----) [001] ...1 24573.496974: tracing_mark_write: E|13131
54396           <...>-13280 (-----) [001] ...1 24573.496991: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54397           <...>-13280 (-----) [001] ...1 24573.496995: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54398           <...>-13280 (-----) [001] ...1 24573.497183: tracing_mark_write: E|13131
54399           <...>-13280 (-----) [001] ...1 24573.497187: tracing_mark_write: E|13131
54400           <...>-13280 (-----) [001] ...1 24573.497199: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54401           <...>-13280 (-----) [001] ...1 24573.497203: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54402           <...>-13280 (-----) [001] ...1 24573.497272: tracing_mark_write: E|13131
54403           <...>-13280 (-----) [001] ...1 24573.497276: tracing_mark_write: E|13131
54404           <...>-13280 (-----) [001] ...1 24573.497285: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
54405           <...>-13280 (-----) [001] ...1 24573.497290: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
54406           <...>-13154 (-----) [004] d.s2 24573.497556: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
54407           <...>-13280 (-----) [001] dnH1 24573.497586: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
54408 id.nn.benchmark-13160 (13131) [006] d.H2 24573.497586: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
54409           <...>-13280 (-----) [001] d..2 24573.497594: sched_switch: prev_comm=id.nn.benchmark prev_pid=13280 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
54410 id.nn.benchmark-13160 (13131) [006] d.H3 24573.497596: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
54411 id.nn.benchmark-13160 (13131) [006] d.H2 24573.497596: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
54412 id.nn.benchmark-13156 (13131) [007] d..2 24573.497602: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
54413         sugov:4-560   (  560) [007] d..2 24573.497607: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
54414  kworker/u16:15-18488 (18488) [001] dnh3 24573.497609: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
54415  kworker/u16:15-18488 (18488) [001] d..2 24573.497615: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
54416         sugov:0-559   (  559) [001] d..2 24573.497622: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
54417  kworker/u16:15-18488 (18488) [001] .... 24573.497696: clk_set_rate: l3_cluster0_vote_clk 940800000
54418  kworker/u16:15-18488 (18488) [001] d..2 24573.497710: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13280 next_prio=110
54419           <...>-13280 (-----) [001] ...1 24573.497743: tracing_mark_write: E|13131
54420           <...>-13280 (-----) [001] ...1 24573.497747: tracing_mark_write: E|13131
54421           <...>-13280 (-----) [001] ...1 24573.497757: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
54422           <...>-13280 (-----) [001] ...1 24573.497761: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
54423           <...>-13280 (-----) [001] ...1 24573.497811: tracing_mark_write: E|13131
54424           <...>-13280 (-----) [001] ...1 24573.497814: tracing_mark_write: E|13131
54425           <...>-13280 (-----) [001] ...1 24573.497824: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
54426           <...>-13280 (-----) [001] ...1 24573.497827: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
54427           <...>-13280 (-----) [001] ...1 24573.497844: tracing_mark_write: E|13131
54428           <...>-13280 (-----) [001] ...1 24573.497847: tracing_mark_write: E|13131
54429           <...>-13280 (-----) [001] ...1 24573.497856: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
54430           <...>-13280 (-----) [001] ...1 24573.497859: tracing_mark_write: E|13131
54431           <...>-13280 (-----) [001] ...1 24573.497867: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
54432           <...>-13280 (-----) [001] ...1 24573.497872: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
54433           <...>-13280 (-----) [001] d.h1 24573.498513: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
54434           <...>-13280 (-----) [001] dnh2 24573.498522: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
54435           <...>-13280 (-----) [001] d..2 24573.498530: sched_switch: prev_comm=id.nn.benchmark prev_pid=13280 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
54436        DispSync-23904 (23896) [001] d..1 24573.498550: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
54437        DispSync-23904 (23896) [001] d..2 24573.498561: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
54438           <...>-13157 (-----) [000] d..2 24573.498570: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
54439        DispSync-23904 (23896) [001] d..2 24573.498577: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13280 next_prio=110
54440  appEventThread-23905 (23896) [000] d..3 24573.498616: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
54441 id.nn.benchmark-13156 (13131) [007] dnh1 24573.498641: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
54442 id.nn.benchmark-13156 (13131) [007] d..2 24573.498666: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
54443  appEventThread-23905 (23896) [000] d.h3 24573.498667: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
54444  appEventThread-23905 (23896) [000] d.h3 24573.498675: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
54445<...>-24151 ( 24151) [007] dnh1 24573.498678: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
54446<...>-24151 ( 24151) [007] d..2 24573.498681: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
54447  appEventThread-23905 (23896) [000] d.h4 24573.498683: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
54448         sugov:4-560   (  560) [007] d..2 24573.498684: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
54449           <...>-13280 (-----) [001] d..2 24573.498691: sched_switch: prev_comm=id.nn.benchmark prev_pid=13280 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
54450         sugov:0-559   (  559) [001] d..2 24573.498697: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13280 next_prio=110
54451  appEventThread-23905 (23896) [000] d..2 24573.498699: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
54452           <...>-13280 (-----) [001] ...1 24573.498813: tracing_mark_write: E|13131
54453           <...>-13280 (-----) [001] ...1 24573.498817: tracing_mark_write: E|13131
54454           <...>-13280 (-----) [001] ...1 24573.498825: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54455           <...>-13280 (-----) [001] ...1 24573.498829: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54456<...>-24151 ( 24151) [007] .... 24573.498866: binder_transaction: transaction=1669966 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
54457<...>-24151 ( 24151) [007] d..4 24573.498872: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
54458<...>-24151 ( 24151) [007] d..5 24573.498886: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
54459<...>-24151 ( 24151) [007] d..3 24573.498920: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
54460<...>-24151 ( 24151) [007] d..4 24573.498931: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
54461<...>-24151 ( 24151) [007] d..2 24573.499010: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
54462  Binder:23896_5-25989 (23896) [007] .... 24573.499014: binder_transaction_received: transaction=1669966
54463  Binder:23896_5-25989 (23896) [007] d..1 24573.499031: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
54464           <...>-13280 (-----) [001] dnh1 24573.499045: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
54465  Binder:23896_5-25989 (23896) [007] d..2 24573.499051: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
54466           <...>-13280 (-----) [001] d..2 24573.499052: sched_switch: prev_comm=id.nn.benchmark prev_pid=13280 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
54467  appEventThread-23905 (23896) [001] d..2 24573.499075: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13280 next_prio=110
54468    RenderThread-24437 (24151) [007] d..1 24573.499104: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
54469    RenderThread-24437 (24151) [007] d..2 24573.499110: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
54470    RenderThread-24437 (24151) [007] .... 24573.499138: binder_transaction: transaction=1669967 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
54471    RenderThread-24437 (24151) [007] d..4 24573.499140: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
54472    RenderThread-24437 (24151) [007] d..5 24573.499152: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
54473    RenderThread-24437 (24151) [007] d..2 24573.499156: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
54474  Binder:23896_5-25989 (23896) [007] .... 24573.499158: binder_transaction_received: transaction=1669967
54475  Binder:23896_5-25989 (23896) [007] .... 24573.499183: binder_transaction: transaction=1669968 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
54476  Binder:23896_5-25989 (23896) [007] d..2 24573.499188: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
54477  Binder:23896_5-25989 (23896) [007] d..3 24573.499193: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
54478  Binder:23896_5-25989 (23896) [007] d..2 24573.499203: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
54479    RenderThread-24437 (24151) [007] .... 24573.499204: binder_transaction_received: transaction=1669968
54480    RenderThread-24437 (24151) [007] d..2 24573.499792: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
54481<...>-24151 ( 24151) [007] d..2 24573.499824: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
54482           <...>-13280 (-----) [001] ...1 24573.499856: tracing_mark_write: E|13131
54483           <...>-13280 (-----) [001] ...1 24573.499860: tracing_mark_write: E|13131
54484 id.nn.benchmark-13156 (13131) [007] d.h1 24573.499891: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
54485 id.nn.benchmark-13156 (13131) [007] d.h2 24573.499897: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
54486           <...>-13280 (-----) [001] d..2 24573.499898: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
54487 id.nn.benchmark-13156 (13131) [007] dnh2 24573.499899: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
54488 id.nn.benchmark-13156 (13131) [007] d..2 24573.499903: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
54489           <...>-13280 (-----) [001] d..3 24573.499911: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
54490           <...>-13280 (-----) [001] ...1 24573.499930: tracing_mark_write: E|13131
54491           <...>-13280 (-----) [001] d..1 24573.499935: sched_waking: comm=id.nn.benchmark pid=13279 prio=110 target_cpu=000
54492    RenderThread-24437 (24151) [007] d.h1 24573.499958: sched_wakeup: comm=id.nn.benchmark pid=13279 prio=110 target_cpu=007
54493           <...>-13280 (-----) [001] d.h3 24573.499982: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
54494           <...>-13280 (-----) [001] d.h3 24573.499993: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
54495 id.nn.benchmark-13155 (13131) [005] dnh1 24573.499997: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
54496           <...>-13280 (-----) [001] dnh4 24573.499999: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
54497 id.nn.benchmark-13155 (13131) [005] d..2 24573.499999: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
54498         sugov:4-560   (  560) [005] d..2 24573.500003: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
54499           <...>-13280 (-----) [001] d..2 24573.500005: sched_switch: prev_comm=id.nn.benchmark prev_pid=13280 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
54500    RenderThread-24437 (24151) [007] .... 24573.500008: binder_transaction: transaction=1669969 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
54501         sugov:0-559   (  559) [001] d..2 24573.500012: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
54502    RenderThread-24437 (24151) [007] d..4 24573.500012: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
54503           <...>-13157 (-----) [000] d.h2 24573.500017: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
54504    RenderThread-24437 (24151) [007] d..5 24573.500020: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
54505    RenderThread-24437 (24151) [007] d..2 24573.500024: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
54506  Binder:23896_5-25989 (23896) [007] .... 24573.500026: binder_transaction_received: transaction=1669969
54507           <...>-13157 (-----) [000] d.h3 24573.500033: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
54508     logd.writer-563   (  555) [001] d..2 24573.500039: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
54509 kgsl_worker_thr-246   (  246) [001] d..2 24573.500077: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
54510  Binder:23896_5-25989 (23896) [007] .... 24573.500083: binder_transaction: transaction=1669970 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
54511  Binder:23896_5-25989 (23896) [007] d..2 24573.500085: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
54512 kgsl_worker_thr-246   (  246) [001] d..3 24573.500087: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
54513  Binder:23896_5-25989 (23896) [007] d..3 24573.500090: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
54514  Binder:23896_5-25989 (23896) [007] d..2 24573.500099: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
54515    RenderThread-24437 (24151) [007] .... 24573.500100: binder_transaction_received: transaction=1669970
54516 kgsl_worker_thr-246   (  246) [001] d..2 24573.500100: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
54517    RenderThread-24437 (24151) [007] d..2 24573.500126: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13279 next_prio=110
54518           <...>-13279 (-----) [007] d..2 24573.500136: sched_switch: prev_comm=id.nn.benchmark prev_pid=13279 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
54519  kworker/u16:15-18488 (18488) [001] d..2 24573.500272: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
54520     logd.writer-563   (  555) [001] d..2 24573.500303: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13280 next_prio=110
54521           <...>-13280 (-----) [001] ...1 24573.500325: tracing_mark_write: E|13131
54522           <...>-13280 (-----) [001] d..1 24573.500538: sched_waking: comm=id.nn.benchmark pid=13279 prio=110 target_cpu=007
54523 id.nn.benchmark-13156 (13131) [007] dnh1 24573.500552: sched_wakeup: comm=id.nn.benchmark pid=13279 prio=110 target_cpu=007
54524 id.nn.benchmark-13156 (13131) [007] d..2 24573.500555: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13279 next_prio=110
54525           <...>-13279 (-----) [007] d..2 24573.500593: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
54526           <...>-13280 (-----) [001] d..2 24573.500624: sched_switch: prev_comm=id.nn.benchmark prev_pid=13280 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
54527           <...>-13279 (-----) [007] d..1 24573.500627: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=001
54528 id.nn.benchmark-13156 (13131) [001] d.h3 24573.500631: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
54529           <...>-13279 (-----) [007] dn.2 24573.500638: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
54530           <...>-13279 (-----) [007] d..2 24573.500641: sched_switch: prev_comm=id.nn.benchmark prev_pid=13279 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
54531 id.nn.benchmark-13156 (13131) [001] d.h4 24573.500665: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
54532           <...>-13131 (-----) [007] d..2 24573.500665: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13279 next_prio=110
54533 id.nn.benchmark-13156 (13131) [001] d.h4 24573.500677: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
54534           <...>-13279 (-----) [007] dnh1 24573.500681: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
54535 id.nn.benchmark-13156 (13131) [001] dnh5 24573.500683: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
54536           <...>-13279 (-----) [007] d..2 24573.500683: sched_switch: prev_comm=id.nn.benchmark prev_pid=13279 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
54537         sugov:4-560   (  560) [007] d..2 24573.500687: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13279 next_prio=110
54538 id.nn.benchmark-13156 (13131) [001] d..2 24573.500693: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
54539         sugov:0-559   (  559) [001] d..2 24573.500700: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
54540           <...>-13279 (-----) [007] d..1 24573.500705: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
54541           <...>-13279 (-----) [007] dn.2 24573.500708: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
54542           <...>-13279 (-----) [007] d..2 24573.500710: sched_switch: prev_comm=id.nn.benchmark prev_pid=13279 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
54543           <...>-13131 (-----) [007] ...1 24573.500721: tracing_mark_write: E|13131
54544           <...>-13131 (-----) [007] ...1 24573.500724: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
54545           <...>-13131 (-----) [007] ...1 24573.500726: tracing_mark_write: E|13131
54546           <...>-13131 (-----) [007] ...1 24573.500727: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
54547           <...>-13131 (-----) [007] ...1 24573.500729: tracing_mark_write: E|13131
54548     logd.writer-563   (  555) [001] d..2 24573.500754: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
54549           <...>-13131 (-----) [007] ...1 24573.500791: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
54550           <...>-13131 (-----) [007] d..2 24573.500804: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
54551 id.nn.benchmark-13156 (13131) [001] d.h1 24573.500817: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
54552           <...>-13131 (-----) [007] ...1 24573.500819: tracing_mark_write: E|13131
54553           <...>-13131 (-----) [007] ...1 24573.500821: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
54554           <...>-13131 (-----) [007] ...1 24573.500824: tracing_mark_write: E|13131
54555           <...>-13131 (-----) [007] ...1 24573.500826: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
54556           <...>-13131 (-----) [007] ...1 24573.500828: tracing_mark_write: E|13131
54557           <...>-13131 (-----) [007] ...1 24573.500829: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
54558           <...>-13154 (-----) [004] d.s2 24573.500886: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
54559 id.nn.benchmark-13159 (13131) [003] d.h2 24573.500893: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
54560           <...>-13131 (-----) [007] ...1 24573.500897: tracing_mark_write: E|13131
54561 id.nn.benchmark-13158 (13131) [002] d.s2 24573.500898: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
54562           <...>-13131 (-----) [007] ...1 24573.500898: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
54563 id.nn.benchmark-13159 (13131) [003] dnh3 24573.500900: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
54564           <...>-13131 (-----) [007] d..2 24573.500903: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13279 next_prio=110
54565 id.nn.benchmark-13159 (13131) [003] d..2 24573.500907: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
54566           <...>-13154 (-----) [004] d.s3 24573.500907: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
54567           <...>-13279 (-----) [007] d..2 24573.500910: sched_switch: prev_comm=id.nn.benchmark prev_pid=13279 prev_prio=110 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
54568 id.nn.benchmark-13155 (13131) [005] dnh1 24573.500918: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
54569 id.nn.benchmark-13155 (13131) [005] d..2 24573.500920: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
54570     rcu_preempt-7     (    7) [005] d..2 24573.500923: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
54571     rcu_preempt-7     (    7) [005] d..3 24573.500963: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
54572     rcu_preempt-7     (    7) [005] d..2 24573.500968: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
54573 id.nn.benchmark-13160 (13131) [006] d..2 24573.500969: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
54574         rcuop/6-61    (   61) [006] d..2 24573.500972: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=006
54575<...>-33 ( 33) [003] d..2 24573.500979: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
54576         rcuop/6-61    (   61) [006] d..3 24573.500983: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=006
54577         rcuop/6-61    (   61) [006] d..2 24573.500987: 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
54578         rcuop/7-69    (   69) [006] d..2 24573.500996: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
54579     logd.writer-563   (  555) [003] d..2 24573.501040: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13281 next_prio=110
54580           <...>-13281 (-----) [003] d..2 24573.501126: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
54581           <...>-13281 (-----) [003] d..3 24573.501134: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
54582  kworker/u16:15-18488 (18488) [007] d..2 24573.501171: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13279 next_prio=110
54583           <...>-13279 (-----) [007] d..2 24573.501191: sched_switch: prev_comm=id.nn.benchmark prev_pid=13279 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
54584           <...>-13281 (-----) [003] d..2 24573.501450: sched_switch: prev_comm=id.nn.benchmark prev_pid=13281 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
54585     logd.writer-563   (  555) [003] d..2 24573.501640: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13282 next_prio=110
54586           <...>-13282 (-----) [003] ...1 24573.501668: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
54587           <...>-13282 (-----) [003] ...1 24573.501673: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
54588           <...>-13282 (-----) [003] d..2 24573.501730: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
54589           <...>-13282 (-----) [003] d..3 24573.501738: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
54590           <...>-13282 (-----) [003] ...1 24573.501804: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54591           <...>-13282 (-----) [003] ...1 24573.501811: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54592 id.nn.benchmark-13156 (13131) [001] d.h1 24573.502492: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
54593 id.nn.benchmark-13156 (13131) [001] d.h2 24573.502507: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
54594           <...>-13282 (-----) [003] d..2 24573.502518: sched_switch: prev_comm=id.nn.benchmark prev_pid=13282 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
54595        DispSync-23904 (23896) [003] d..1 24573.502533: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
54596        DispSync-23904 (23896) [003] d..2 24573.502545: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
54597 id.nn.benchmark-13158 (13131) [002] d..2 24573.502553: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
54598        DispSync-23904 (23896) [003] d..2 24573.502559: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13282 next_prio=110
54599   sfEventThread-23906 (23896) [002] d..3 24573.502581: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
54600   sfEventThread-23906 (23896) [002] d..4 24573.502599: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
54601           <...>-13157 (-----) [000] d..2 24573.502608: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
54602   sfEventThread-23906 (23896) [002] d..2 24573.502613: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
54603  surfaceflinger-23896 (23896) [000] d..1 24573.502847: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
54604  surfaceflinger-23896 (23896) [000] d..2 24573.502863: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
54605           <...>-13282 (-----) [003] d..2 24573.502871: sched_switch: prev_comm=id.nn.benchmark prev_pid=13282 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
54606   sfEventThread-23906 (23896) [003] d..2 24573.502889: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13282 next_prio=110
54607  surfaceflinger-23896 (23896) [000] ...1 24573.502980: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
54608  surfaceflinger-23896 (23896) [000] ...1 24573.502984: tracing_mark_write: E|23896
54609  surfaceflinger-23896 (23896) [000] .... 24573.503024: binder_transaction: transaction=1669971 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
54610  surfaceflinger-23896 (23896) [000] ...2 24573.503044: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
54611  surfaceflinger-23896 (23896) [000] d..4 24573.503051: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
54612 id.nn.benchmark-13159 (13131) [007] dnh1 24573.503073: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
54613 id.nn.benchmark-13159 (13131) [007] d..2 24573.503097: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
54614  surfaceflinger-23896 (23896) [000] d.h5 24573.503097: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
54615  surfaceflinger-23896 (23896) [000] d.h5 24573.503109: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
54616 id.nn.benchmark-13155 (13131) [005] dnh1 24573.503112: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
54617 id.nn.benchmark-13155 (13131) [005] d..2 24573.503114: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
54618         sugov:4-560   (  560) [005] d..2 24573.503117: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
54619  surfaceflinger-23896 (23896) [000] d.h6 24573.503121: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
54620  HwBinder:598_3-633   (  598) [007] .... 24573.503126: binder_transaction_received: transaction=1669971
54621           <...>-13282 (-----) [003] d..2 24573.503130: sched_switch: prev_comm=id.nn.benchmark prev_pid=13282 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
54622  surfaceflinger-23896 (23896) [000] d..2 24573.503133: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
54623         sugov:0-559   (  559) [003] d..2 24573.503137: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13282 next_prio=110
54624  HwBinder:598_3-633   (  598) [007] ...1 24573.503150: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
54625  HwBinder:598_3-633   (  598) [007] ...1 24573.503200: tracing_mark_write: B|598|HWCSession::PresentDisplay::
54626  HwBinder:598_3-633   (  598) [007] ...1 24573.503264: tracing_mark_write: B|598|HWDeviceDRM::Commit::
54627  HwBinder:598_3-633   (  598) [007] ...1 24573.503268: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
54628 id.nn.benchmark-13160 (13131) [006] d..3 24573.503350: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
54629 id.nn.benchmark-13160 (13131) [006] d..2 24573.503358: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
54630 id.nn.benchmark-13158 (13131) [002] dnh1 24573.503361: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
54631 id.nn.benchmark-13158 (13131) [002] d..2 24573.503366: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
54632          <idle>-0     (-----) [006] d..1 24573.503368: cpu_idle: state=0 cpu_id=6
54633           <...>-13154 (-----) [004] d..3 24573.503383: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
54634          <idle>-0     (-----) [006] .n.1 24573.503390: cpu_idle: state=4294967295 cpu_id=6
54635           <...>-13157 (-----) [000] dnh1 24573.503408: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
54636           <...>-13154 (-----) [004] d..2 24573.503408: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
54637          <idle>-0     (-----) [006] d..2 24573.503409: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
54638          <idle>-0     (-----) [004] d..1 24573.503413: cpu_idle: state=0 cpu_id=4
54639           <...>-13157 (-----) [000] d..2 24573.503413: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
54640     migration/2-25    (   25) [002] d..2 24573.503424: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
54641 id.nn.benchmark-13155 (13131) [005] d..2 24573.503426: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
54642     migration/0-13    (   13) [000] d..2 24573.503444: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54643          <idle>-0     (-----) [000] d..1 24573.503456: cpu_idle: state=0 cpu_id=0
54644  HwBinder:598_3-633   (  598) [007] d..2 24573.503460: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
54645          <idle>-0     (-----) [000] dnh2 24573.503480: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
54646          <idle>-0     (-----) [000] .n.1 24573.503484: cpu_idle: state=4294967295 cpu_id=0
54647          <idle>-0     (-----) [000] d..2 24573.503490: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
54648  HwBinder:598_3-633   (  598) [007] ...1 24573.503500: tracing_mark_write: E|598
54649  HwBinder:598_3-633   (  598) [007] ...1 24573.503502: tracing_mark_write: E|598
54650  HwBinder:598_3-633   (  598) [007] ...1 24573.503524: tracing_mark_write: E|598
54651  HwBinder:598_3-633   (  598) [007] ...1 24573.503544: tracing_mark_write: E|598
54652  HwBinder:598_3-633   (  598) [007] .... 24573.503550: binder_transaction: transaction=1669972 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
54653  HwBinder:598_3-633   (  598) [007] d..2 24573.503555: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
54654     logd.writer-563   (  555) [002] d..2 24573.503558: 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
54655           <...>-13282 (-----) [003] d..1 24573.503558: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
54656  HwBinder:598_3-633   (  598) [007] .... 24573.503566: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
54657           <...>-13282 (-----) [003] d..1 24573.503569: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
54658          <idle>-0     (-----) [002] d..1 24573.503569: cpu_idle: state=0 cpu_id=2
54659          <idle>-0     (-----) [004] dnh2 24573.503573: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
54660          <idle>-0     (-----) [004] .n.1 24573.503575: cpu_idle: state=4294967295 cpu_id=4
54661          <idle>-0     (-----) [004] d..2 24573.503578: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
54662          <idle>-0     (-----) [002] dnh2 24573.503579: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
54663           <...>-13157 (-----) [005] d.h1 24573.503581: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
54664           <...>-13282 (-----) [003] d..1 24573.503582: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=006
54665          <idle>-0     (-----) [002] .n.1 24573.503583: cpu_idle: state=4294967295 cpu_id=2
54666          <idle>-0     (-----) [002] d..2 24573.503589: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
54667  HwBinder:598_3-633   (  598) [007] d..2 24573.503589: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
54668  surfaceflinger-23896 (23896) [002] .... 24573.503593: binder_transaction_received: transaction=1669972
54669 id.nn.benchmark-13158 (13131) [006] d.h1 24573.503594: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=006
54670  surfaceflinger-23896 (23896) [002] d..2 24573.503867: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
54671 id.nn.benchmark-13160 (13131) [002] d.h4 24573.503897: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
54672 id.nn.benchmark-13160 (13131) [002] d.h4 24573.503909: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
54673 id.nn.benchmark-13159 (13131) [007] dnh1 24573.503913: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
54674 id.nn.benchmark-13159 (13131) [007] d..2 24573.503916: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
54675 id.nn.benchmark-13160 (13131) [002] d.h5 24573.503917: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
54676         sugov:4-560   (  560) [007] d..2 24573.503920: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
54677           <...>-13282 (-----) [003] d..2 24573.503926: sched_switch: prev_comm=id.nn.benchmark prev_pid=13282 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
54678         sugov:0-559   (  559) [003] d..2 24573.503934: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13282 next_prio=110
54679 crtc_commit:111-253   (  253) [000] d..2 24573.504118: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
54680 id.nn.benchmark-13159 (13131) [007] d.s2 24573.504227: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
54681 id.nn.benchmark-13159 (13131) [007] dns3 24573.504233: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
54682 id.nn.benchmark-13159 (13131) [007] d..2 24573.504236: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/7:0 next_pid=12892 next_prio=120
54683     kworker/7:0-12892 (12892) [007] d..2 24573.504247: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
54684           <...>-13282 (-----) [003] ...1 24573.504489: tracing_mark_write: E|13131
54685           <...>-13282 (-----) [003] ...1 24573.504493: tracing_mark_write: E|13131
54686           <...>-13282 (-----) [003] ...1 24573.504508: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54687           <...>-13282 (-----) [003] ...1 24573.504513: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54688           <...>-13282 (-----) [003] ...1 24573.505212: tracing_mark_write: E|13131
54689           <...>-13282 (-----) [003] ...1 24573.505216: tracing_mark_write: E|13131
54690           <...>-13282 (-----) [003] ...1 24573.505237: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54691           <...>-13282 (-----) [003] ...1 24573.505241: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54692           <...>-13282 (-----) [003] ...1 24573.505579: tracing_mark_write: E|13131
54693           <...>-13282 (-----) [003] ...1 24573.505583: tracing_mark_write: E|13131
54694           <...>-13282 (-----) [003] ...1 24573.505596: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54695           <...>-13282 (-----) [003] ...1 24573.505600: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54696           <...>-13282 (-----) [003] ...1 24573.505844: tracing_mark_write: E|13131
54697           <...>-13282 (-----) [003] ...1 24573.505847: tracing_mark_write: E|13131
54698           <...>-13282 (-----) [003] ...1 24573.505858: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54699           <...>-13282 (-----) [003] ...1 24573.505862: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54700           <...>-13282 (-----) [003] ...1 24573.506261: tracing_mark_write: E|13131
54701           <...>-13282 (-----) [003] ...1 24573.506265: tracing_mark_write: E|13131
54702           <...>-13282 (-----) [003] ...1 24573.506276: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54703           <...>-13282 (-----) [003] ...1 24573.506280: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54704           <...>-13282 (-----) [003] ...1 24573.506677: tracing_mark_write: E|13131
54705           <...>-13282 (-----) [003] ...1 24573.506681: tracing_mark_write: E|13131
54706           <...>-13282 (-----) [003] ...1 24573.506698: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54707           <...>-13282 (-----) [003] ...1 24573.506703: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54708           <...>-13282 (-----) [003] ...1 24573.506897: tracing_mark_write: E|13131
54709           <...>-13282 (-----) [003] ...1 24573.506900: tracing_mark_write: E|13131
54710           <...>-13282 (-----) [003] ...1 24573.506913: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54711           <...>-13282 (-----) [003] ...1 24573.506918: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54712           <...>-13282 (-----) [003] ...1 24573.506990: tracing_mark_write: E|13131
54713           <...>-13282 (-----) [003] ...1 24573.506994: tracing_mark_write: E|13131
54714           <...>-13282 (-----) [003] ...1 24573.507006: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
54715           <...>-13282 (-----) [003] ...1 24573.507010: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
54716           <...>-13282 (-----) [003] ...1 24573.507318: tracing_mark_write: E|13131
54717           <...>-13282 (-----) [003] ...1 24573.507321: tracing_mark_write: E|13131
54718           <...>-13282 (-----) [003] ...1 24573.507330: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
54719           <...>-13282 (-----) [003] ...1 24573.507334: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
54720           <...>-13282 (-----) [003] ...1 24573.507389: tracing_mark_write: E|13131
54721           <...>-13282 (-----) [003] ...1 24573.507392: tracing_mark_write: E|13131
54722           <...>-13282 (-----) [003] ...1 24573.507401: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
54723           <...>-13282 (-----) [003] ...1 24573.507404: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
54724           <...>-13282 (-----) [003] ...1 24573.507423: tracing_mark_write: E|13131
54725           <...>-13282 (-----) [003] ...1 24573.507426: tracing_mark_write: E|13131
54726           <...>-13282 (-----) [003] ...1 24573.507437: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
54727           <...>-13282 (-----) [003] ...1 24573.507440: tracing_mark_write: E|13131
54728           <...>-13282 (-----) [003] ...1 24573.507449: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
54729           <...>-13282 (-----) [003] ...1 24573.507455: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
54730 id.nn.benchmark-13159 (13131) [007] d.s2 24573.507555: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
54731           <...>-13157 (-----) [005] d.s1 24573.507557: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
54732           <...>-13157 (-----) [005] dns2 24573.507567: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
54733 id.nn.benchmark-13159 (13131) [007] dns3 24573.507567: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
54734           <...>-13157 (-----) [005] d..2 24573.507570: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
54735 id.nn.benchmark-13159 (13131) [007] d..2 24573.507571: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
54736     rcu_preempt-7     (    7) [005] d..2 24573.507572: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
54737     rcu_preempt-7     (    7) [005] d..2 24573.507582: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=005
54738           <...>-13282 (-----) [003] dnh1 24573.507589: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
54739     rcu_preempt-7     (    7) [005] d..3 24573.507591: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=005
54740     rcu_preempt-7     (    7) [005] d..2 24573.507595: 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
54741           <...>-13282 (-----) [003] d..2 24573.507595: sched_switch: prev_comm=id.nn.benchmark prev_pid=13282 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
54742         rcuop/0-10    (   10) [003] d..2 24573.507600: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
54743         rcuop/2-29    (   29) [005] d..2 24573.507602: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
54744           <...>-13154 (-----) [004] dnh1 24573.507628: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
54745           <...>-13154 (-----) [004] d..2 24573.507631: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
54746         rcuop/0-10    (   10) [003] d..2 24573.507635: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13282 next_prio=110
54747         rcuop/1-21    (   21) [004] d..2 24573.507648: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
54748  kworker/u16:15-18488 (18488) [007] .... 24573.507664: clk_set_rate: l3_cluster0_vote_clk 1401600000
54749  kworker/u16:15-18488 (18488) [007] d..2 24573.507670: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
54750           <...>-13282 (-----) [003] ...1 24573.508397: tracing_mark_write: E|13131
54751           <...>-13282 (-----) [003] ...1 24573.508401: tracing_mark_write: E|13131
54752           <...>-13282 (-----) [003] ...1 24573.508410: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54753           <...>-13282 (-----) [003] ...1 24573.508414: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54754           <...>-13282 (-----) [003] ...1 24573.508498: tracing_mark_write: E|13131
54755           <...>-13282 (-----) [003] ...1 24573.508502: tracing_mark_write: E|13131
54756           <...>-13282 (-----) [003] d..2 24573.508539: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
54757           <...>-13282 (-----) [003] d..3 24573.508552: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
54758           <...>-13282 (-----) [003] ...1 24573.508570: tracing_mark_write: E|13131
54759           <...>-13282 (-----) [003] d..1 24573.508575: sched_waking: comm=id.nn.benchmark pid=13281 prio=110 target_cpu=003
54760           <...>-13157 (-----) [005] dnh1 24573.508597: sched_wakeup: comm=id.nn.benchmark pid=13281 prio=110 target_cpu=005
54761           <...>-13157 (-----) [005] d..2 24573.508623: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13281 next_prio=110
54762           <...>-13282 (-----) [003] d.h3 24573.508624: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
54763           <...>-13281 (-----) [005] d..2 24573.508630: sched_switch: prev_comm=id.nn.benchmark prev_pid=13281 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
54764           <...>-13282 (-----) [003] d.h3 24573.508631: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
54765 id.nn.benchmark-13159 (13131) [007] dnh1 24573.508635: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
54766           <...>-13282 (-----) [003] dnh4 24573.508637: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
54767 id.nn.benchmark-13159 (13131) [007] d..2 24573.508638: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
54768         sugov:4-560   (  560) [007] d..2 24573.508641: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
54769           <...>-13282 (-----) [003] d..2 24573.508643: sched_switch: prev_comm=id.nn.benchmark prev_pid=13282 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
54770         sugov:0-559   (  559) [003] d..2 24573.508651: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
54771     logd.writer-563   (  555) [003] d..2 24573.508694: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13282 next_prio=110
54772           <...>-13282 (-----) [003] ...1 24573.508713: tracing_mark_write: E|13131
54773           <...>-13282 (-----) [003] d..1 24573.508918: sched_waking: comm=id.nn.benchmark pid=13281 prio=110 target_cpu=005
54774           <...>-13157 (-----) [005] dnh1 24573.508931: sched_wakeup: comm=id.nn.benchmark pid=13281 prio=110 target_cpu=005
54775           <...>-13157 (-----) [005] d..2 24573.508934: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13281 next_prio=110
54776           <...>-13281 (-----) [005] d..2 24573.508970: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
54777           <...>-13282 (-----) [003] d..2 24573.508980: sched_switch: prev_comm=id.nn.benchmark prev_pid=13282 prev_prio=110 prev_state=x ==> next_comm=swapper/3 next_pid=0 next_prio=120
54778          <idle>-0     (-----) [003] dnh3 24573.508989: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
54779          <idle>-0     (-----) [003] d..2 24573.509000: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=563 next_prio=130
54780           <...>-13281 (-----) [005] d..1 24573.509008: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
54781           <...>-13281 (-----) [005] d..2 24573.509016: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
54782 id.nn.benchmark-13159 (13131) [007] d..2 24573.509022: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
54783           <...>-13131 (-----) [007] d..2 24573.509028: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
54784           <...>-13281 (-----) [005] d..1 24573.509046: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
54785           <...>-13281 (-----) [005] d..2 24573.509055: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
54786     logd.writer-563   (  555) [003] d..2 24573.509056: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
54787 id.nn.benchmark-13159 (13131) [007] d..2 24573.509061: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
54788           <...>-13281 (-----) [005] d..2 24573.509068: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=004
54789          <idle>-0     (-----) [003] d..1 24573.509070: cpu_idle: state=0 cpu_id=3
54790           <...>-13131 (-----) [007] ...1 24573.509075: tracing_mark_write: E|13131
54791           <...>-13131 (-----) [007] ...1 24573.509077: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
54792           <...>-13281 (-----) [005] d..3 24573.509080: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=004
54793           <...>-13131 (-----) [007] ...1 24573.509080: tracing_mark_write: E|13131
54794           <...>-13131 (-----) [007] ...1 24573.509081: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
54795           <...>-13131 (-----) [007] ...1 24573.509083: tracing_mark_write: E|13131
54796           <...>-13154 (-----) [004] d..2 24573.509086: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/4 next_pid=45 next_prio=120
54797           <...>-13281 (-----) [005] d..2 24573.509090: sched_switch: prev_comm=id.nn.benchmark prev_pid=13281 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
54798         rcuop/4-45    (   45) [004] d..2 24573.509091: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
54799           <...>-13131 (-----) [007] ...1 24573.509143: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
54800           <...>-13131 (-----) [007] d..2 24573.509161: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
54801           <...>-13131 (-----) [007] ...1 24573.509178: tracing_mark_write: E|13131
54802          <idle>-0     (-----) [003] dnh2 24573.509178: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
54803           <...>-13131 (-----) [007] ...1 24573.509179: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
54804           <...>-13131 (-----) [007] ...1 24573.509182: tracing_mark_write: E|13131
54805          <idle>-0     (-----) [003] .n.1 24573.509182: cpu_idle: state=4294967295 cpu_id=3
54806           <...>-13131 (-----) [007] ...1 24573.509183: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
54807           <...>-13131 (-----) [007] ...1 24573.509185: tracing_mark_write: E|13131
54808           <...>-13131 (-----) [007] ...1 24573.509186: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
54809          <idle>-0     (-----) [003] d..2 24573.509188: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=563 next_prio=130
54810     logd.writer-563   (  555) [003] d..2 24573.509221: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
54811          <idle>-0     (-----) [003] d..1 24573.509227: cpu_idle: state=0 cpu_id=3
54812           <...>-13131 (-----) [007] ...1 24573.509243: tracing_mark_write: E|13131
54813          <idle>-0     (-----) [003] .n.1 24573.509244: cpu_idle: state=4294967295 cpu_id=3
54814           <...>-13131 (-----) [007] ...1 24573.509244: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
54815           <...>-13131 (-----) [007] d..2 24573.509249: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
54816          <idle>-0     (-----) [003] d..2 24573.509250: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13283 next_prio=110
54817           <...>-13283 (-----) [003] d..2 24573.509308: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
54818           <...>-13283 (-----) [003] d..3 24573.509316: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
54819           <...>-13283 (-----) [003] d..2 24573.509628: sched_switch: prev_comm=id.nn.benchmark prev_pid=13283 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
54820     logd.writer-563   (  555) [003] d..2 24573.509810: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13284 next_prio=110
54821           <...>-13284 (-----) [003] ...1 24573.509838: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
54822           <...>-13284 (-----) [003] ...1 24573.509842: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
54823           <...>-13284 (-----) [003] d..2 24573.509903: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
54824           <...>-13284 (-----) [003] d..3 24573.509911: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
54825           <...>-13284 (-----) [003] ...1 24573.509978: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54826           <...>-13284 (-----) [003] ...1 24573.509983: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54827 id.nn.benchmark-13155 (13131) [000] d.h4 24573.510485: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
54828 id.nn.benchmark-13155 (13131) [000] d.h5 24573.510504: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
54829 id.nn.benchmark-13155 (13131) [000] d.h4 24573.510509: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
54830           <...>-13284 (-----) [003] d..2 24573.510515: sched_switch: prev_comm=id.nn.benchmark prev_pid=13284 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
54831           <...>-13157 (-----) [005] dnh1 24573.510529: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
54832           <...>-13157 (-----) [005] d..2 24573.510532: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
54833  crtc_event:111-254   (  254) [003] d..2 24573.510536: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13284 next_prio=110
54834 id.nn.benchmark-13155 (13131) [000] d.h2 24573.510562: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
54835 id.nn.benchmark-13155 (13131) [000] d.h2 24573.510568: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
54836 id.nn.benchmark-13159 (13131) [007] dnh1 24573.510573: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
54837 id.nn.benchmark-13159 (13131) [007] d..2 24573.510576: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
54838 id.nn.benchmark-13155 (13131) [000] d.h3 24573.510576: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
54839         sugov:4-560   (  560) [007] d..2 24573.510580: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
54840           <...>-13284 (-----) [003] d..2 24573.510584: sched_switch: prev_comm=id.nn.benchmark prev_pid=13284 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
54841         sugov:0-559   (  559) [003] d..2 24573.510591: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13284 next_prio=110
54842 crtc_commit:111-253   (  253) [005] d..2 24573.510626: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
54843           <...>-13157 (-----) [005] d.s2 24573.510888: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
54844 id.nn.benchmark-13159 (13131) [007] d.s2 24573.510891: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
54845 id.nn.benchmark-13159 (13131) [007] dns3 24573.510898: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
54846 id.nn.benchmark-13159 (13131) [007] d..2 24573.510902: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
54847           <...>-13284 (-----) [003] dnh1 24573.510903: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
54848           <...>-13284 (-----) [003] d..2 24573.510908: sched_switch: prev_comm=id.nn.benchmark prev_pid=13284 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
54849  crtc_event:111-254   (  254) [003] d..2 24573.510920: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13284 next_prio=110
54850  kworker/u16:15-18488 (18488) [007] d..2 24573.511107: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
54851           <...>-13284 (-----) [003] ...1 24573.512078: tracing_mark_write: E|13131
54852           <...>-13284 (-----) [003] ...1 24573.512082: tracing_mark_write: E|13131
54853           <...>-13284 (-----) [003] ...1 24573.512093: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54854           <...>-13284 (-----) [003] ...1 24573.512098: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54855 id.nn.benchmark-13155 (13131) [000] d.h4 24573.512821: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
54856           <...>-13157 (-----) [005] dnh1 24573.512835: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
54857           <...>-13157 (-----) [005] d..2 24573.512838: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
54858 crtc_commit:111-253   (  253) [005] d..2 24573.512865: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
54859           <...>-13284 (-----) [003] ...1 24573.512875: tracing_mark_write: E|13131
54860           <...>-13284 (-----) [003] ...1 24573.512879: tracing_mark_write: E|13131
54861           <...>-13284 (-----) [003] ...1 24573.512895: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54862           <...>-13284 (-----) [003] ...1 24573.512899: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54863 id.nn.benchmark-13155 (13131) [000] d.h4 24573.513126: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
54864 id.nn.benchmark-13155 (13131) [000] d.h5 24573.513136: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
54865           <...>-13284 (-----) [003] d..2 24573.513147: sched_switch: prev_comm=id.nn.benchmark prev_pid=13284 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
54866  crtc_event:111-254   (  254) [003] d..2 24573.513160: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13284 next_prio=110
54867           <...>-13284 (-----) [003] ...1 24573.513304: tracing_mark_write: E|13131
54868           <...>-13284 (-----) [003] ...1 24573.513307: tracing_mark_write: E|13131
54869           <...>-13284 (-----) [003] ...1 24573.513318: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54870           <...>-13284 (-----) [003] ...1 24573.513322: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54871           <...>-13284 (-----) [003] ...1 24573.513547: tracing_mark_write: E|13131
54872           <...>-13284 (-----) [003] ...1 24573.513551: tracing_mark_write: E|13131
54873           <...>-13284 (-----) [003] ...1 24573.513561: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54874           <...>-13284 (-----) [003] ...1 24573.513566: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54875           <...>-13284 (-----) [003] ...1 24573.513945: tracing_mark_write: E|13131
54876           <...>-13284 (-----) [003] ...1 24573.513949: tracing_mark_write: E|13131
54877           <...>-13284 (-----) [003] ...1 24573.513959: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54878           <...>-13284 (-----) [003] ...1 24573.513963: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54879           <...>-13157 (-----) [005] d.s1 24573.514221: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
54880           <...>-13157 (-----) [005] dns2 24573.514232: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
54881           <...>-13157 (-----) [005] d..2 24573.514235: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
54882     rcu_preempt-7     (    7) [005] d..2 24573.514237: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
54883     rcu_preempt-7     (    7) [005] d..3 24573.514248: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
54884     rcu_preempt-7     (    7) [005] d..2 24573.514252: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
54885 id.nn.benchmark-13158 (13131) [006] d..2 24573.514254: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
54886         rcuop/6-61    (   61) [006] d..2 24573.514257: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=006
54887         rcuop/6-61    (   61) [006] d..3 24573.514266: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=006
54888         rcuop/6-61    (   61) [006] d..2 24573.514269: 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
54889         rcuop/7-69    (   69) [006] d..2 24573.514282: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
54890           <...>-13284 (-----) [003] ...1 24573.514361: tracing_mark_write: E|13131
54891           <...>-13284 (-----) [003] ...1 24573.514365: tracing_mark_write: E|13131
54892           <...>-13284 (-----) [003] ...1 24573.514382: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54893           <...>-13284 (-----) [003] ...1 24573.514386: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54894           <...>-13284 (-----) [003] ...1 24573.514575: tracing_mark_write: E|13131
54895           <...>-13284 (-----) [003] ...1 24573.514579: tracing_mark_write: E|13131
54896           <...>-13284 (-----) [003] ...1 24573.514591: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54897           <...>-13284 (-----) [003] ...1 24573.514595: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54898           <...>-13284 (-----) [003] ...1 24573.514664: tracing_mark_write: E|13131
54899           <...>-13284 (-----) [003] ...1 24573.514667: tracing_mark_write: E|13131
54900           <...>-13284 (-----) [003] ...1 24573.514676: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
54901           <...>-13284 (-----) [003] ...1 24573.514681: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
54902           <...>-13284 (-----) [003] ...1 24573.514936: tracing_mark_write: E|13131
54903           <...>-13284 (-----) [003] ...1 24573.514939: tracing_mark_write: E|13131
54904           <...>-13284 (-----) [003] ...1 24573.514948: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
54905           <...>-13284 (-----) [003] ...1 24573.514952: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
54906           <...>-13284 (-----) [003] d.h1 24573.514961: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
54907           <...>-13284 (-----) [003] dnh2 24573.514971: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
54908           <...>-13284 (-----) [003] d..2 24573.514979: sched_switch: prev_comm=id.nn.benchmark prev_pid=13284 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
54909        DispSync-23904 (23896) [003] d..1 24573.514999: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
54910        DispSync-23904 (23896) [003] d..2 24573.515010: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
54911 id.nn.benchmark-13156 (13131) [001] d..2 24573.515021: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
54912        DispSync-23904 (23896) [003] d..2 24573.515026: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13284 next_prio=110
54913  appEventThread-23905 (23896) [001] d..3 24573.515065: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
54914           <...>-13284 (-----) [003] ...1 24573.515066: tracing_mark_write: E|13131
54915           <...>-13284 (-----) [003] ...1 24573.515070: tracing_mark_write: E|13131
54916           <...>-13284 (-----) [003] ...1 24573.515080: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
54917 id.nn.benchmark-13159 (13131) [007] dnh1 24573.515082: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
54918           <...>-13284 (-----) [003] ...1 24573.515083: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
54919 id.nn.benchmark-13159 (13131) [007] d..2 24573.515084: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
54920  appEventThread-23905 (23896) [001] d..2 24573.515094: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
54921           <...>-13284 (-----) [003] ...1 24573.515097: tracing_mark_write: E|13131
54922           <...>-13284 (-----) [003] ...1 24573.515100: tracing_mark_write: E|13131
54923           <...>-13284 (-----) [003] ...1 24573.515108: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
54924           <...>-13284 (-----) [003] ...1 24573.515111: tracing_mark_write: E|13131
54925           <...>-13284 (-----) [003] ...1 24573.515118: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
54926           <...>-13284 (-----) [003] ...1 24573.515122: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
54927<...>-24151 ( 24151) [007] .... 24573.515289: binder_transaction: transaction=1669973 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
54928<...>-24151 ( 24151) [007] d..4 24573.515295: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
54929<...>-24151 ( 24151) [007] d..5 24573.515306: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
54930<...>-24151 ( 24151) [007] d..3 24573.515328: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
54931<...>-24151 ( 24151) [007] d..4 24573.515334: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
54932<...>-24151 ( 24151) [007] d..2 24573.515401: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
54933  Binder:23896_5-25989 (23896) [007] .... 24573.515406: binder_transaction_received: transaction=1669973
54934  Binder:23896_5-25989 (23896) [007] d..1 24573.515424: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
54935           <...>-13284 (-----) [003] dnh1 24573.515440: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
54936  Binder:23896_5-25989 (23896) [007] d..2 24573.515445: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
54937           <...>-13284 (-----) [003] d..2 24573.515447: sched_switch: prev_comm=id.nn.benchmark prev_pid=13284 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
54938  appEventThread-23905 (23896) [003] d..2 24573.515473: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13284 next_prio=110
54939    RenderThread-24437 (24151) [007] d..1 24573.515503: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
54940    RenderThread-24437 (24151) [007] d..2 24573.515509: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
54941    RenderThread-24437 (24151) [007] .... 24573.515540: binder_transaction: transaction=1669974 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
54942    RenderThread-24437 (24151) [007] d..4 24573.515542: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
54943    RenderThread-24437 (24151) [007] d..5 24573.515549: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
54944    RenderThread-24437 (24151) [007] d..2 24573.515553: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
54945  Binder:23896_5-25989 (23896) [007] .... 24573.515555: binder_transaction_received: transaction=1669974
54946  Binder:23896_5-25989 (23896) [007] .... 24573.515585: binder_transaction: transaction=1669975 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
54947  Binder:23896_5-25989 (23896) [007] d..2 24573.515590: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
54948  Binder:23896_5-25989 (23896) [007] d..3 24573.515595: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
54949  Binder:23896_5-25989 (23896) [007] d..2 24573.515604: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
54950    RenderThread-24437 (24151) [007] .... 24573.515605: binder_transaction_received: transaction=1669975
54951           <...>-13284 (-----) [003] ...1 24573.516016: tracing_mark_write: E|13131
54952           <...>-13284 (-----) [003] ...1 24573.516020: tracing_mark_write: E|13131
54953           <...>-13284 (-----) [003] ...1 24573.516028: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
54954           <...>-13284 (-----) [003] ...1 24573.516032: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
54955    RenderThread-24437 (24151) [007] d..2 24573.516217: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
54956<...>-24151 ( 24151) [007] d..2 24573.516250: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
54957           <...>-13284 (-----) [003] ...1 24573.516280: tracing_mark_write: E|13131
54958           <...>-13284 (-----) [003] ...1 24573.516283: tracing_mark_write: E|13131
54959 id.nn.benchmark-13159 (13131) [007] d.h1 24573.516315: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
54960 id.nn.benchmark-13159 (13131) [007] d.h2 24573.516321: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
54961 id.nn.benchmark-13159 (13131) [007] dnh2 24573.516323: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
54962 id.nn.benchmark-13159 (13131) [007] d..2 24573.516327: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
54963           <...>-13284 (-----) [003] ...1 24573.516334: tracing_mark_write: E|13131
54964           <...>-13284 (-----) [003] d..1 24573.516339: sched_waking: comm=id.nn.benchmark pid=13283 prio=110 target_cpu=003
54965           <...>-13157 (-----) [005] dnh1 24573.516363: sched_wakeup: comm=id.nn.benchmark pid=13283 prio=110 target_cpu=005
54966           <...>-13157 (-----) [005] d..2 24573.516392: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13283 next_prio=110
54967           <...>-13284 (-----) [003] d.h3 24573.516393: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
54968           <...>-13283 (-----) [005] d..2 24573.516399: sched_switch: prev_comm=id.nn.benchmark prev_pid=13283 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
54969           <...>-13284 (-----) [003] d.h3 24573.516401: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
54970    RenderThread-24437 (24151) [007] dnh1 24573.516405: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
54971           <...>-13284 (-----) [003] dnh4 24573.516407: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
54972    RenderThread-24437 (24151) [007] d..2 24573.516410: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
54973           <...>-13284 (-----) [003] d..2 24573.516414: sched_switch: prev_comm=id.nn.benchmark prev_pid=13284 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
54974         sugov:4-560   (  560) [007] d..2 24573.516416: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
54975         sugov:0-559   (  559) [003] d..2 24573.516421: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13284 next_prio=110
54976    RenderThread-24437 (24151) [007] .... 24573.516423: binder_transaction: transaction=1669976 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
54977    RenderThread-24437 (24151) [007] d..4 24573.516427: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
54978    RenderThread-24437 (24151) [007] d..5 24573.516435: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
54979           <...>-13284 (-----) [003] ...1 24573.516438: tracing_mark_write: E|13131
54980    RenderThread-24437 (24151) [007] d..2 24573.516438: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
54981  Binder:23896_5-25989 (23896) [007] .... 24573.516440: binder_transaction_received: transaction=1669976
54982 id.nn.benchmark-13155 (13131) [000] d.h2 24573.516442: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
54983 id.nn.benchmark-13155 (13131) [000] d.h3 24573.516459: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
54984           <...>-13284 (-----) [003] d..2 24573.516496: sched_switch: prev_comm=id.nn.benchmark prev_pid=13284 prev_prio=110 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
54985  Binder:23896_5-25989 (23896) [007] .... 24573.516499: binder_transaction: transaction=1669977 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
54986  Binder:23896_5-25989 (23896) [007] d..2 24573.516501: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
54987  Binder:23896_5-25989 (23896) [007] d..3 24573.516506: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
54988  Binder:23896_5-25989 (23896) [007] d..2 24573.516515: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
54989    RenderThread-24437 (24151) [007] .... 24573.516516: binder_transaction_received: transaction=1669977
54990 kgsl_worker_thr-246   (  246) [003] d..2 24573.516532: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
54991    RenderThread-24437 (24151) [007] d..2 24573.516540: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
54992 id.nn.benchmark-13159 (13131) [007] dnh1 24573.516553: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
54993 id.nn.benchmark-13159 (13131) [007] d..2 24573.516556: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
54994 kgsl_worker_thr-246   (  246) [003] d..2 24573.516563: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13284 next_prio=110
54995  kworker/u16:15-18488 (18488) [007] d..2 24573.516594: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
54996           <...>-13284 (-----) [003] d..1 24573.516723: sched_waking: comm=id.nn.benchmark pid=13283 prio=110 target_cpu=005
54997           <...>-13157 (-----) [005] dnh1 24573.516736: sched_wakeup: comm=id.nn.benchmark pid=13283 prio=110 target_cpu=005
54998           <...>-13157 (-----) [005] d..2 24573.516738: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13283 next_prio=110
54999           <...>-13284 (-----) [003] d..2 24573.516765: sched_switch: prev_comm=id.nn.benchmark prev_pid=13284 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
55000           <...>-13283 (-----) [005] d..1 24573.516798: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
55001           <...>-13283 (-----) [005] d..2 24573.516807: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
55002 id.nn.benchmark-13159 (13131) [007] d..2 24573.516813: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
55003           <...>-13131 (-----) [007] d..2 24573.516820: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
55004           <...>-13283 (-----) [005] d..1 24573.516836: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
55005           <...>-13283 (-----) [005] d..2 24573.516844: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
55006 id.nn.benchmark-13159 (13131) [007] d..2 24573.516850: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
55007           <...>-13131 (-----) [007] ...1 24573.516864: tracing_mark_write: E|13131
55008           <...>-13131 (-----) [007] ...1 24573.516866: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
55009           <...>-13283 (-----) [005] d..2 24573.516869: sched_switch: prev_comm=id.nn.benchmark prev_pid=13283 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
55010           <...>-13131 (-----) [007] ...1 24573.516869: tracing_mark_write: E|13131
55011           <...>-13131 (-----) [007] ...1 24573.516870: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
55012           <...>-13131 (-----) [007] ...1 24573.516872: tracing_mark_write: E|13131
55013           <...>-13131 (-----) [007] ...1 24573.516934: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
55014           <...>-13131 (-----) [007] d..2 24573.516953: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
55015     logd.writer-563   (  555) [003] d..2 24573.516970: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
55016           <...>-13131 (-----) [007] ...1 24573.516988: tracing_mark_write: E|13131
55017          <idle>-0     (-----) [003] dnh2 24573.516989: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
55018           <...>-13131 (-----) [007] ...1 24573.516989: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
55019           <...>-13131 (-----) [007] ...1 24573.516992: tracing_mark_write: E|13131
55020           <...>-13131 (-----) [007] ...1 24573.516993: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
55021           <...>-13131 (-----) [007] ...1 24573.516995: tracing_mark_write: E|13131
55022           <...>-13131 (-----) [007] ...1 24573.516997: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
55023          <idle>-0     (-----) [003] d..2 24573.516998: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=563 next_prio=130
55024     logd.writer-563   (  555) [003] d..2 24573.517031: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
55025          <idle>-0     (-----) [003] d..1 24573.517044: cpu_idle: state=0 cpu_id=3
55026           <...>-13131 (-----) [007] ...1 24573.517050: tracing_mark_write: E|13131
55027          <idle>-0     (-----) [003] .n.1 24573.517052: cpu_idle: state=4294967295 cpu_id=3
55028           <...>-13131 (-----) [007] ...1 24573.517052: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
55029           <...>-13131 (-----) [007] d..2 24573.517057: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
55030          <idle>-0     (-----) [003] d..2 24573.517058: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13285 next_prio=110
55031           <...>-13285 (-----) [003] d..2 24573.517115: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
55032           <...>-13285 (-----) [003] d..3 24573.517123: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
55033           <...>-13285 (-----) [003] d..2 24573.517426: sched_switch: prev_comm=id.nn.benchmark prev_pid=13285 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
55034 id.nn.benchmark-13159 (13131) [007] d.s2 24573.517560: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
55035 id.nn.benchmark-13159 (13131) [007] dns3 24573.517579: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
55036 id.nn.benchmark-13159 (13131) [007] d..2 24573.517583: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
55037           <...>-13154 (-----) [004] d.h2 24573.517586: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
55038     logd.writer-563   (  555) [003] d..2 24573.517588: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13286 next_prio=110
55039           <...>-13154 (-----) [004] d.h3 24573.517596: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
55040           <...>-13154 (-----) [004] d.h2 24573.517596: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
55041           <...>-13157 (-----) [005] d..2 24573.517603: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
55042         sugov:4-560   (  560) [005] d..2 24573.517607: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
55043           <...>-13286 (-----) [003] dnh1 24573.517608: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
55044           <...>-13286 (-----) [003] d..2 24573.517614: sched_switch: prev_comm=id.nn.benchmark prev_pid=13286 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
55045         sugov:0-559   (  559) [003] d..2 24573.517623: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13286 next_prio=110
55046           <...>-13286 (-----) [003] ...1 24573.517638: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
55047           <...>-13286 (-----) [003] ...1 24573.517642: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
55048           <...>-13286 (-----) [003] ...1 24573.517772: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55049           <...>-13286 (-----) [003] ...1 24573.517776: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55050  kworker/u16:15-18488 (18488) [007] d..2 24573.517803: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
55051           <...>-13286 (-----) [003] d.s2 24573.517835: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
55052 id.nn.benchmark-13159 (13131) [007] d.h1 24573.517860: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
55053 id.nn.benchmark-13159 (13131) [007] dnh1 24573.517861: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
55054 id.nn.benchmark-13159 (13131) [007] d..2 24573.517863: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
55055  kworker/u16:15-18488 (18488) [007] d..2 24573.517869: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
55056           <...>-13286 (-----) [003] d.h1 24573.518965: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
55057           <...>-13286 (-----) [003] dnh2 24573.518975: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
55058           <...>-13286 (-----) [003] d..2 24573.518983: sched_switch: prev_comm=id.nn.benchmark prev_pid=13286 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
55059        DispSync-23904 (23896) [003] d..1 24573.518999: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
55060        DispSync-23904 (23896) [003] d..2 24573.519014: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
55061 id.nn.benchmark-13155 (13131) [000] d..2 24573.519023: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
55062        DispSync-23904 (23896) [003] d..2 24573.519027: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13286 next_prio=110
55063   sfEventThread-23906 (23896) [000] d..3 24573.519051: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
55064   sfEventThread-23906 (23896) [000] d..4 24573.519069: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
55065           <...>-13286 (-----) [003] d..2 24573.519076: sched_switch: prev_comm=id.nn.benchmark prev_pid=13286 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
55066   sfEventThread-23906 (23896) [000] d..2 24573.519082: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
55067  surfaceflinger-23896 (23896) [003] d..1 24573.519324: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
55068  surfaceflinger-23896 (23896) [003] d..2 24573.519335: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
55069 id.nn.benchmark-13155 (13131) [000] d..2 24573.519343: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
55070   sfEventThread-23906 (23896) [000] d..2 24573.519358: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
55071  surfaceflinger-23896 (23896) [003] ...1 24573.519464: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
55072  surfaceflinger-23896 (23896) [003] ...1 24573.519468: tracing_mark_write: E|23896
55073  surfaceflinger-23896 (23896) [003] .... 24573.519512: binder_transaction: transaction=1669978 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
55074  surfaceflinger-23896 (23896) [003] ...2 24573.519533: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
55075  surfaceflinger-23896 (23896) [003] d..4 24573.519539: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
55076           <...>-13157 (-----) [005] dnh1 24573.519560: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=005
55077           <...>-13157 (-----) [005] d..2 24573.519562: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
55078  HwBinder:598_3-633   (  598) [005] .... 24573.519566: binder_transaction_received: transaction=1669978
55079  surfaceflinger-23896 (23896) [003] d..2 24573.519567: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13286 next_prio=110
55080  HwBinder:598_3-633   (  598) [005] ...1 24573.519591: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
55081  HwBinder:598_3-633   (  598) [005] ...1 24573.519642: tracing_mark_write: B|598|HWCSession::PresentDisplay::
55082  HwBinder:598_3-633   (  598) [005] ...1 24573.519705: tracing_mark_write: B|598|HWDeviceDRM::Commit::
55083  HwBinder:598_3-633   (  598) [005] ...1 24573.519710: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
55084  HwBinder:598_3-633   (  598) [005] d..2 24573.519906: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
55085  HwBinder:598_3-633   (  598) [005] d..3 24573.519917: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
55086 id.nn.benchmark-13159 (13131) [007] d..2 24573.519923: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
55087  HwBinder:598_3-633   (  598) [005] ...1 24573.519947: tracing_mark_write: E|598
55088  HwBinder:598_3-633   (  598) [005] ...1 24573.519948: tracing_mark_write: E|598
55089  HwBinder:598_3-633   (  598) [005] ...1 24573.519971: tracing_mark_write: E|598
55090  HwBinder:598_3-633   (  598) [005] ...1 24573.519992: tracing_mark_write: E|598
55091  HwBinder:598_3-633   (  598) [005] .... 24573.519998: binder_transaction: transaction=1669979 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
55092  HwBinder:598_3-633   (  598) [005] d..2 24573.520004: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
55093  HwBinder:598_3-633   (  598) [005] .... 24573.520010: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
55094           <...>-13286 (-----) [003] dnh1 24573.520016: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
55095           <...>-13286 (-----) [003] d..2 24573.520023: sched_switch: prev_comm=id.nn.benchmark prev_pid=13286 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
55096  surfaceflinger-23896 (23896) [003] .... 24573.520028: binder_transaction_received: transaction=1669979
55097  HwBinder:598_3-633   (  598) [005] d..2 24573.520033: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
55098  surfaceflinger-23896 (23896) [003] d..2 24573.520278: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13286 next_prio=110
55099 crtc_commit:111-253   (  253) [007] d..2 24573.520487: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
55100           <...>-13286 (-----) [003] ...1 24573.520634: tracing_mark_write: E|13131
55101           <...>-13286 (-----) [003] ...1 24573.520639: tracing_mark_write: E|13131
55102           <...>-13286 (-----) [003] ...1 24573.520652: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55103           <...>-13286 (-----) [003] ...1 24573.520656: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55104 id.nn.benchmark-13159 (13131) [007] d.s2 24573.520890: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
55105           <...>-13157 (-----) [005] d.s1 24573.520890: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
55106 id.nn.benchmark-13159 (13131) [007] dns3 24573.520900: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
55107           <...>-13157 (-----) [005] dns2 24573.520902: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
55108 id.nn.benchmark-13159 (13131) [007] d..2 24573.520904: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
55109           <...>-13157 (-----) [005] d..2 24573.520905: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
55110     rcu_preempt-7     (    7) [005] d..2 24573.520908: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=004
55111     rcu_preempt-7     (    7) [005] d..3 24573.520920: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=004
55112     rcu_preempt-7     (    7) [005] d..2 24573.520921: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
55113           <...>-13154 (-----) [004] d..2 24573.520923: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/4 next_pid=45 next_prio=120
55114     rcu_preempt-7     (    7) [005] d..2 24573.520927: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=005
55115           <...>-13286 (-----) [003] dnh1 24573.520935: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
55116     rcu_preempt-7     (    7) [005] d..3 24573.520935: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=005
55117         rcuop/4-45    (   45) [004] d..2 24573.520937: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=007
55118           <...>-13286 (-----) [003] d..2 24573.520941: sched_switch: prev_comm=id.nn.benchmark prev_pid=13286 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
55119     rcu_preempt-7     (    7) [005] d..2 24573.520943: 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
55120         rcuop/0-10    (   10) [003] d..2 24573.520946: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
55121         rcuop/4-45    (   45) [004] d..3 24573.520948: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=007
55122         rcuop/2-29    (   29) [005] d..2 24573.520948: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=004
55123         rcuop/4-45    (   45) [004] d..2 24573.520954: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
55124         rcuop/2-29    (   29) [005] d..3 24573.520960: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=004
55125           <...>-13154 (-----) [004] d..2 24573.520966: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/3 next_pid=37 next_prio=120
55126         rcuop/3-37    (   37) [004] d..2 24573.520970: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
55127           <...>-13154 (-----) [004] dnh3 24573.520974: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
55128           <...>-13154 (-----) [004] d..2 24573.520976: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
55129         rcuop/2-29    (   29) [005] d..2 24573.520977: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
55130         rcuop/1-21    (   21) [004] d..2 24573.520985: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
55131         rcuop/0-10    (   10) [003] d..2 24573.520990: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13286 next_prio=110
55132  kworker/u16:15-18488 (18488) [007] d..2 24573.521130: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
55133         rcuop/5-53    (   53) [007] d..2 24573.521140: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
55134           <...>-13286 (-----) [003] ...1 24573.521479: tracing_mark_write: E|13131
55135           <...>-13286 (-----) [003] ...1 24573.521484: tracing_mark_write: E|13131
55136           <...>-13286 (-----) [003] ...1 24573.521503: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55137           <...>-13286 (-----) [003] ...1 24573.521507: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55138           <...>-13286 (-----) [003] ...1 24573.521839: tracing_mark_write: E|13131
55139           <...>-13286 (-----) [003] ...1 24573.521843: tracing_mark_write: E|13131
55140           <...>-13286 (-----) [003] ...1 24573.521855: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55141           <...>-13286 (-----) [003] ...1 24573.521859: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55142           <...>-13286 (-----) [003] ...1 24573.522097: tracing_mark_write: E|13131
55143           <...>-13286 (-----) [003] ...1 24573.522101: tracing_mark_write: E|13131
55144           <...>-13286 (-----) [003] ...1 24573.522112: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55145           <...>-13286 (-----) [003] ...1 24573.522116: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55146           <...>-13286 (-----) [003] ...1 24573.522519: tracing_mark_write: E|13131
55147           <...>-13286 (-----) [003] ...1 24573.522523: tracing_mark_write: E|13131
55148           <...>-13286 (-----) [003] ...1 24573.522533: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55149           <...>-13286 (-----) [003] ...1 24573.522538: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55150           <...>-13286 (-----) [003] ...1 24573.522929: tracing_mark_write: E|13131
55151           <...>-13286 (-----) [003] ...1 24573.522934: tracing_mark_write: E|13131
55152           <...>-13286 (-----) [003] ...1 24573.522952: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55153           <...>-13286 (-----) [003] ...1 24573.522956: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55154           <...>-13286 (-----) [003] ...1 24573.523149: tracing_mark_write: E|13131
55155           <...>-13286 (-----) [003] ...1 24573.523153: tracing_mark_write: E|13131
55156           <...>-13286 (-----) [003] ...1 24573.523166: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55157           <...>-13286 (-----) [003] ...1 24573.523170: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55158           <...>-13286 (-----) [003] ...1 24573.523242: tracing_mark_write: E|13131
55159           <...>-13286 (-----) [003] ...1 24573.523245: tracing_mark_write: E|13131
55160           <...>-13286 (-----) [003] ...1 24573.523256: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
55161           <...>-13286 (-----) [003] ...1 24573.523260: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
55162           <...>-13286 (-----) [003] ...1 24573.523567: tracing_mark_write: E|13131
55163           <...>-13286 (-----) [003] ...1 24573.523571: tracing_mark_write: E|13131
55164           <...>-13286 (-----) [003] ...1 24573.523580: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
55165           <...>-13286 (-----) [003] ...1 24573.523584: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
55166           <...>-13286 (-----) [003] ...1 24573.523639: tracing_mark_write: E|13131
55167           <...>-13286 (-----) [003] ...1 24573.523642: tracing_mark_write: E|13131
55168           <...>-13286 (-----) [003] ...1 24573.523651: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
55169           <...>-13286 (-----) [003] ...1 24573.523654: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
55170           <...>-13286 (-----) [003] ...1 24573.523671: tracing_mark_write: E|13131
55171           <...>-13286 (-----) [003] ...1 24573.523674: tracing_mark_write: E|13131
55172           <...>-13286 (-----) [003] ...1 24573.523684: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
55173           <...>-13286 (-----) [003] ...1 24573.523687: tracing_mark_write: E|13131
55174           <...>-13286 (-----) [003] ...1 24573.523696: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
55175           <...>-13286 (-----) [003] ...1 24573.523700: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
55176 id.nn.benchmark-13159 (13131) [007] d.s2 24573.524224: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
55177 id.nn.benchmark-13159 (13131) [007] dns3 24573.524233: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
55178 id.nn.benchmark-13159 (13131) [007] d..2 24573.524236: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
55179  kworker/u16:15-18488 (18488) [007] d..2 24573.524270: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
55180           <...>-13286 (-----) [003] ...1 24573.524576: tracing_mark_write: E|13131
55181           <...>-13286 (-----) [003] ...1 24573.524579: tracing_mark_write: E|13131
55182           <...>-13286 (-----) [003] ...1 24573.524587: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55183           <...>-13286 (-----) [003] ...1 24573.524591: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55184           <...>-13286 (-----) [003] ...1 24573.524675: tracing_mark_write: E|13131
55185           <...>-13286 (-----) [003] ...1 24573.524678: tracing_mark_write: E|13131
55186           <...>-13286 (-----) [003] ...1 24573.524729: tracing_mark_write: E|13131
55187           <...>-13286 (-----) [003] d..1 24573.524733: sched_waking: comm=id.nn.benchmark pid=13285 prio=110 target_cpu=003
55188           <...>-13157 (-----) [005] dnh1 24573.524761: sched_wakeup: comm=id.nn.benchmark pid=13285 prio=110 target_cpu=005
55189           <...>-13157 (-----) [005] d..2 24573.524789: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13285 next_prio=110
55190           <...>-13286 (-----) [003] d.h3 24573.524790: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
55191           <...>-13285 (-----) [005] d..2 24573.524796: sched_switch: prev_comm=id.nn.benchmark prev_pid=13285 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
55192           <...>-13286 (-----) [003] d.h3 24573.524799: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
55193           <...>-13157 (-----) [005] dnh1 24573.524803: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
55194           <...>-13157 (-----) [005] d..2 24573.524805: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
55195           <...>-13286 (-----) [003] dnh4 24573.524806: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
55196         sugov:4-560   (  560) [005] d..2 24573.524810: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
55197           <...>-13286 (-----) [003] d..2 24573.524812: sched_switch: prev_comm=id.nn.benchmark prev_pid=13286 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
55198         sugov:0-559   (  559) [003] d..2 24573.524821: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
55199     logd.writer-563   (  555) [003] d..2 24573.525058: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13286 next_prio=110
55200           <...>-13286 (-----) [003] ...1 24573.525078: tracing_mark_write: E|13131
55201           <...>-13286 (-----) [003] d..1 24573.525277: sched_waking: comm=id.nn.benchmark pid=13285 prio=110 target_cpu=005
55202           <...>-13286 (-----) [003] dn.2 24573.525307: sched_wakeup: comm=id.nn.benchmark pid=13285 prio=110 target_cpu=003
55203           <...>-13286 (-----) [003] dnh3 24573.525334: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
55204           <...>-13286 (-----) [003] dnh3 24573.525342: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
55205           <...>-13157 (-----) [005] dnh1 24573.525345: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
55206           <...>-13157 (-----) [005] d..2 24573.525348: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
55207           <...>-13286 (-----) [003] dnh4 24573.525348: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
55208         sugov:4-560   (  560) [005] d..2 24573.525351: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
55209           <...>-13286 (-----) [003] d..2 24573.525353: sched_switch: prev_comm=id.nn.benchmark prev_pid=13286 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
55210         sugov:0-559   (  559) [003] d..2 24573.525361: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13285 next_prio=110
55211           <...>-13285 (-----) [003] d..2 24573.525415: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
55212           <...>-13285 (-----) [003] d..3 24573.525424: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
55213           <...>-13285 (-----) [003] d..1 24573.525477: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
55214 id.nn.benchmark-13159 (13131) [007] dnh1 24573.525499: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
55215 id.nn.benchmark-13159 (13131) [007] d..2 24573.525501: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
55216           <...>-13131 (-----) [007] d..2 24573.525507: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
55217           <...>-13285 (-----) [003] d..1 24573.525550: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
55218 id.nn.benchmark-13159 (13131) [007] dnh1 24573.525567: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
55219 id.nn.benchmark-13159 (13131) [007] d..2 24573.525569: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
55220           <...>-13131 (-----) [007] ...1 24573.525583: tracing_mark_write: E|13131
55221           <...>-13131 (-----) [007] ...1 24573.525585: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
55222           <...>-13131 (-----) [007] ...1 24573.525588: tracing_mark_write: E|13131
55223           <...>-13131 (-----) [007] ...1 24573.525589: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
55224           <...>-13131 (-----) [007] ...1 24573.525591: tracing_mark_write: E|13131
55225           <...>-13285 (-----) [003] d..2 24573.525617: sched_switch: prev_comm=id.nn.benchmark prev_pid=13285 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13286 next_prio=110
55226           <...>-13286 (-----) [003] d..2 24573.525645: sched_switch: prev_comm=id.nn.benchmark prev_pid=13286 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
55227           <...>-13131 (-----) [007] ...1 24573.525651: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
55228           <...>-13131 (-----) [007] ...1 24573.525676: tracing_mark_write: E|13131
55229           <...>-13131 (-----) [007] ...1 24573.525677: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
55230           <...>-13131 (-----) [007] ...1 24573.525680: tracing_mark_write: E|13131
55231           <...>-13131 (-----) [007] ...1 24573.525681: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
55232           <...>-13131 (-----) [007] ...1 24573.525683: tracing_mark_write: E|13131
55233           <...>-13131 (-----) [007] ...1 24573.525684: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
55234           <...>-13131 (-----) [007] ...1 24573.525743: tracing_mark_write: E|13131
55235     logd.writer-563   (  555) [003] d..2 24573.525743: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
55236           <...>-13131 (-----) [007] ...1 24573.525744: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
55237           <...>-13131 (-----) [007] d..2 24573.525749: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13287 next_prio=110
55238           <...>-13287 (-----) [007] d..2 24573.525772: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
55239 id.nn.benchmark-13159 (13131) [003] d.h1 24573.525784: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
55240           <...>-13287 (-----) [007] d..2 24573.525907: sched_switch: prev_comm=id.nn.benchmark prev_pid=13287 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13288 next_prio=110
55241           <...>-13288 (-----) [007] ...1 24573.525918: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
55242           <...>-13288 (-----) [007] ...1 24573.525919: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
55243           <...>-13288 (-----) [007] ...1 24573.525971: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55244           <...>-13288 (-----) [007] ...1 24573.525973: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55245           <...>-13288 (-----) [007] ...1 24573.526827: tracing_mark_write: E|13131
55246           <...>-13288 (-----) [007] ...1 24573.526828: tracing_mark_write: E|13131
55247           <...>-13288 (-----) [007] ...1 24573.526832: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55248           <...>-13288 (-----) [007] ...1 24573.526834: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55249 id.nn.benchmark-13155 (13131) [000] d.h4 24573.526962: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
55250 id.nn.benchmark-13155 (13131) [000] d.h4 24573.526987: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
55251           <...>-13288 (-----) [007] dnh1 24573.526989: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
55252           <...>-13288 (-----) [007] d..2 24573.526996: sched_switch: prev_comm=id.nn.benchmark prev_pid=13288 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
55253  crtc_event:111-254   (  254) [007] d..2 24573.527008: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13288 next_prio=110
55254           <...>-13157 (-----) [005] dnh1 24573.527008: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
55255           <...>-13157 (-----) [005] d..2 24573.527011: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
55256 id.nn.benchmark-13155 (13131) [000] d.h2 24573.527037: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
55257 id.nn.benchmark-13155 (13131) [000] d.h2 24573.527048: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
55258           <...>-13288 (-----) [007] dnh1 24573.527052: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
55259           <...>-13288 (-----) [007] d..2 24573.527054: sched_switch: prev_comm=id.nn.benchmark prev_pid=13288 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
55260 id.nn.benchmark-13155 (13131) [000] d.h3 24573.527056: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
55261         sugov:4-560   (  560) [007] d..2 24573.527058: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13288 next_prio=110
55262 id.nn.benchmark-13159 (13131) [003] d..2 24573.527065: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
55263         sugov:0-559   (  559) [003] d..2 24573.527075: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
55264 crtc_commit:111-253   (  253) [005] d..2 24573.527104: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
55265           <...>-13288 (-----) [007] ...1 24573.527281: tracing_mark_write: E|13131
55266           <...>-13288 (-----) [007] ...1 24573.527282: tracing_mark_write: E|13131
55267           <...>-13288 (-----) [007] ...1 24573.527287: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55268           <...>-13288 (-----) [007] ...1 24573.527289: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55269           <...>-13288 (-----) [007] ...1 24573.527502: tracing_mark_write: E|13131
55270           <...>-13288 (-----) [007] ...1 24573.527503: tracing_mark_write: E|13131
55271           <...>-13288 (-----) [007] ...1 24573.527507: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55272           <...>-13288 (-----) [007] ...1 24573.527508: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55273           <...>-13288 (-----) [007] d.s2 24573.527560: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
55274 id.nn.benchmark-13160 (13131) [002] d.h2 24573.527561: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
55275           <...>-13288 (-----) [007] dns3 24573.527569: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
55276 id.nn.benchmark-13160 (13131) [002] dnh3 24573.527569: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
55277           <...>-13288 (-----) [007] d..2 24573.527573: sched_switch: prev_comm=id.nn.benchmark prev_pid=13288 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
55278 id.nn.benchmark-13160 (13131) [002] dns2 24573.527574: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
55279           <...>-13157 (-----) [005] dnh1 24573.527587: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
55280 id.nn.benchmark-13160 (13131) [002] d..2 24573.527589: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
55281           <...>-13157 (-----) [005] d..2 24573.527589: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
55282     rcu_preempt-7     (    7) [005] d..2 24573.527591: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
55283     rcu_preempt-7     (    7) [005] d..3 24573.527602: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
55284     rcu_preempt-7     (    7) [005] d..2 24573.527606: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
55285 id.nn.benchmark-13158 (13131) [006] d..2 24573.527608: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
55286         rcuop/6-61    (   61) [006] d..2 24573.527610: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=006
55287         rcuop/6-61    (   61) [006] d..3 24573.527635: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=006
55288         rcuop/6-61    (   61) [006] d..2 24573.527638: 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
55289     migration/2-25    (   25) [002] d.h3 24573.527638: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
55290         rcuop/7-69    (   69) [006] d..2 24573.527647: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
55291     migration/2-25    (   25) [002] d.h3 24573.527650: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
55292           <...>-13157 (-----) [005] dnh1 24573.527653: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
55293           <...>-13157 (-----) [005] d..2 24573.527657: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
55294     migration/2-25    (   25) [002] d.h4 24573.527660: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
55295         sugov:4-560   (  560) [005] d..2 24573.527660: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
55296     migration/2-25    (   25) [002] d..2 24573.527673: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
55297         sugov:0-559   (  559) [002] d..2 24573.527700: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
55298  kworker/u16:15-18488 (18488) [007] d..2 24573.527706: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13288 next_prio=110
55299     logd.writer-563   (  555) [002] d..2 24573.528001: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
55300           <...>-13288 (-----) [007] ...1 24573.528161: tracing_mark_write: E|13131
55301           <...>-13288 (-----) [007] ...1 24573.528162: tracing_mark_write: E|13131
55302           <...>-13288 (-----) [007] ...1 24573.528166: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55303           <...>-13288 (-----) [007] ...1 24573.528167: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55304           <...>-13288 (-----) [007] ...1 24573.528459: tracing_mark_write: E|13131
55305           <...>-13288 (-----) [007] ...1 24573.528460: tracing_mark_write: E|13131
55306           <...>-13288 (-----) [007] ...1 24573.528463: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55307           <...>-13288 (-----) [007] ...1 24573.528464: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55308           <...>-13288 (-----) [007] ...1 24573.528754: tracing_mark_write: E|13131
55309           <...>-13288 (-----) [007] ...1 24573.528755: tracing_mark_write: E|13131
55310           <...>-13288 (-----) [007] ...1 24573.528761: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55311           <...>-13288 (-----) [007] ...1 24573.528762: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55312           <...>-13288 (-----) [007] ...1 24573.528919: tracing_mark_write: E|13131
55313           <...>-13288 (-----) [007] ...1 24573.528921: tracing_mark_write: E|13131
55314           <...>-13288 (-----) [007] ...1 24573.528925: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55315           <...>-13288 (-----) [007] ...1 24573.528926: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55316           <...>-13288 (-----) [007] ...1 24573.528980: tracing_mark_write: E|13131
55317           <...>-13288 (-----) [007] ...1 24573.528981: tracing_mark_write: E|13131
55318           <...>-13288 (-----) [007] ...1 24573.528985: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
55319           <...>-13288 (-----) [007] ...1 24573.528986: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
55320           <...>-13288 (-----) [007] ...1 24573.529110: tracing_mark_write: E|13131
55321           <...>-13288 (-----) [007] ...1 24573.529111: tracing_mark_write: E|13131
55322           <...>-13288 (-----) [007] ...1 24573.529115: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
55323           <...>-13288 (-----) [007] ...1 24573.529117: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
55324           <...>-13288 (-----) [007] ...1 24573.529135: tracing_mark_write: E|13131
55325           <...>-13288 (-----) [007] ...1 24573.529136: tracing_mark_write: E|13131
55326           <...>-13288 (-----) [007] ...1 24573.529140: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
55327           <...>-13288 (-----) [007] ...1 24573.529141: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
55328           <...>-13288 (-----) [007] ...1 24573.529146: tracing_mark_write: E|13131
55329           <...>-13288 (-----) [007] ...1 24573.529147: tracing_mark_write: E|13131
55330           <...>-13288 (-----) [007] ...1 24573.529152: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
55331           <...>-13288 (-----) [007] ...1 24573.529153: tracing_mark_write: E|13131
55332           <...>-13288 (-----) [007] ...1 24573.529157: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
55333           <...>-13288 (-----) [007] ...1 24573.529159: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
55334 id.nn.benchmark-13155 (13131) [000] d.h4 24573.529300: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
55335           <...>-13288 (-----) [007] dnh1 24573.529318: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
55336           <...>-13288 (-----) [007] d..2 24573.529322: sched_switch: prev_comm=id.nn.benchmark prev_pid=13288 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
55337 crtc_commit:111-253   (  253) [007] d..2 24573.529352: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13288 next_prio=110
55338           <...>-13288 (-----) [007] ...1 24573.529503: tracing_mark_write: E|13131
55339           <...>-13288 (-----) [007] ...1 24573.529504: tracing_mark_write: E|13131
55340           <...>-13288 (-----) [007] ...1 24573.529508: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55341           <...>-13288 (-----) [007] ...1 24573.529509: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55342 id.nn.benchmark-13155 (13131) [000] d.h4 24573.529604: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
55343           <...>-13288 (-----) [007] dnh1 24573.529616: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
55344           <...>-13288 (-----) [007] d..2 24573.529618: sched_switch: prev_comm=id.nn.benchmark prev_pid=13288 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
55345  crtc_event:111-254   (  254) [007] d..2 24573.529624: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13288 next_prio=110
55346           <...>-13288 (-----) [007] ...1 24573.529651: tracing_mark_write: E|13131
55347           <...>-13288 (-----) [007] ...1 24573.529652: tracing_mark_write: E|13131
55348           <...>-13288 (-----) [007] d..2 24573.529668: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
55349 id.nn.benchmark-13160 (13131) [002] d.h1 24573.529682: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
55350           <...>-13288 (-----) [007] ...1 24573.529683: tracing_mark_write: E|13131
55351           <...>-13288 (-----) [007] d..1 24573.529685: sched_waking: comm=id.nn.benchmark pid=13287 prio=110 target_cpu=007
55352           <...>-13288 (-----) [007] dn.2 24573.529689: sched_wakeup: comm=id.nn.benchmark pid=13287 prio=110 target_cpu=007
55353           <...>-13288 (-----) [007] d..2 24573.529692: sched_switch: prev_comm=id.nn.benchmark prev_pid=13288 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13287 next_prio=110
55354           <...>-13287 (-----) [007] d..2 24573.529698: sched_switch: prev_comm=id.nn.benchmark prev_pid=13287 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13288 next_prio=110
55355           <...>-13288 (-----) [007] ...1 24573.529703: tracing_mark_write: E|13131
55356           <...>-13288 (-----) [007] d..1 24573.529803: sched_waking: comm=id.nn.benchmark pid=13287 prio=110 target_cpu=007
55357           <...>-13288 (-----) [007] dn.2 24573.529807: sched_wakeup: comm=id.nn.benchmark pid=13287 prio=110 target_cpu=007
55358           <...>-13288 (-----) [007] d..2 24573.529810: sched_switch: prev_comm=id.nn.benchmark prev_pid=13288 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13287 next_prio=110
55359           <...>-13287 (-----) [007] d..1 24573.529855: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
55360           <...>-13287 (-----) [007] dn.2 24573.529860: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
55361           <...>-13287 (-----) [007] d..2 24573.529863: sched_switch: prev_comm=id.nn.benchmark prev_pid=13287 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
55362           <...>-13131 (-----) [007] d..2 24573.529868: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13287 next_prio=110
55363           <...>-13287 (-----) [007] d..1 24573.529889: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
55364           <...>-13287 (-----) [007] dn.2 24573.529892: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
55365           <...>-13287 (-----) [007] d..2 24573.529894: sched_switch: prev_comm=id.nn.benchmark prev_pid=13287 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
55366           <...>-13131 (-----) [007] ...1 24573.529901: tracing_mark_write: E|13131
55367           <...>-13131 (-----) [007] ...1 24573.529904: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
55368           <...>-13131 (-----) [007] ...1 24573.529905: tracing_mark_write: E|13131
55369           <...>-13131 (-----) [007] ...1 24573.529907: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
55370           <...>-13131 (-----) [007] ...1 24573.529909: tracing_mark_write: E|13131
55371           <...>-13131 (-----) [007] ...1 24573.529968: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
55372           <...>-13131 (-----) [007] ...1 24573.529986: tracing_mark_write: E|13131
55373           <...>-13131 (-----) [007] ...1 24573.529988: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
55374           <...>-13131 (-----) [007] ...1 24573.529990: tracing_mark_write: E|13131
55375           <...>-13131 (-----) [007] ...1 24573.529992: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
55376           <...>-13131 (-----) [007] ...1 24573.529994: tracing_mark_write: E|13131
55377           <...>-13131 (-----) [007] ...1 24573.529995: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
55378           <...>-13131 (-----) [007] ...1 24573.530037: tracing_mark_write: E|13131
55379           <...>-13131 (-----) [007] ...1 24573.530039: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
55380           <...>-13131 (-----) [007] d..2 24573.530044: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13287 next_prio=110
55381           <...>-13287 (-----) [007] d..2 24573.530059: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
55382           <...>-13287 (-----) [007] d..3 24573.530069: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
55383 id.nn.benchmark-13158 (13131) [006] d..2 24573.530075: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
55384         rcuop/6-61    (   61) [006] d..2 24573.530078: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
55385           <...>-13287 (-----) [007] d..2 24573.530080: sched_switch: prev_comm=id.nn.benchmark prev_pid=13287 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13288 next_prio=110
55386           <...>-13288 (-----) [007] d..2 24573.530091: sched_switch: prev_comm=id.nn.benchmark prev_pid=13288 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13289 next_prio=110
55387           <...>-13289 (-----) [007] d..2 24573.530229: sched_switch: prev_comm=id.nn.benchmark prev_pid=13289 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13290 next_prio=110
55388           <...>-13290 (-----) [007] ...1 24573.530238: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
55389           <...>-13290 (-----) [007] ...1 24573.530240: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
55390           <...>-13290 (-----) [007] ...1 24573.530288: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55391           <...>-13290 (-----) [007] ...1 24573.530289: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55392           <...>-13157 (-----) [005] d.s2 24573.530888: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
55393 id.nn.benchmark-13155 (13131) [000] d.h2 24573.530893: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
55394           <...>-13290 (-----) [007] dns2 24573.530894: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
55395           <...>-13157 (-----) [005] d.s3 24573.530896: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
55396 id.nn.benchmark-13155 (13131) [000] dnh3 24573.530900: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
55397           <...>-13290 (-----) [007] dns3 24573.530903: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
55398           <...>-13290 (-----) [007] dns2 24573.530906: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
55399 id.nn.benchmark-13155 (13131) [000] d..2 24573.530909: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
55400           <...>-13290 (-----) [007] dns3 24573.530912: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
55401           <...>-13290 (-----) [007] d..2 24573.530930: sched_switch: prev_comm=id.nn.benchmark prev_pid=13290 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
55402     migration/0-13    (   13) [000] d.h3 24573.530956: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
55403  crtc_event:111-254   (  254) [007] d..2 24573.530957: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
55404     migration/0-13    (   13) [000] d.h3 24573.530964: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
55405           <...>-13157 (-----) [005] dnh1 24573.530967: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
55406           <...>-13157 (-----) [005] d..2 24573.530969: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
55407         sugov:4-560   (  560) [005] d..2 24573.530973: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
55408     migration/0-13    (   13) [000] d.h4 24573.530975: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
55409     migration/0-13    (   13) [000] d..2 24573.530986: 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
55410         sugov:0-559   (  559) [000] d..2 24573.531012: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
55411     logd.writer-563   (  555) [000] d..2 24573.531149: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
55412     logd.writer-563   (  555) [000] dn.3 24573.531168: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
55413     logd.writer-563   (  555) [000] d..2 24573.531174: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=rcuop/0 next_pid=10 next_prio=120
55414         rcuop/0-10    (   10) [000] d..2 24573.531182: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
55415  kworker/u16:15-18488 (18488) [007] d..2 24573.531199: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=kworker/7:0 next_pid=12892 next_prio=120
55416     kworker/7:0-12892 (12892) [007] d..2 24573.531225: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
55417     logd.writer-563   (  555) [000] d..2 24573.531376: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13290 next_prio=110
55418 id.nn.benchmark-13159 (13131) [003] d.h1 24573.531437: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
55419 id.nn.benchmark-13159 (13131) [003] d.h2 24573.531454: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
55420           <...>-13290 (-----) [000] d..2 24573.531464: sched_switch: prev_comm=id.nn.benchmark prev_pid=13290 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
55421        DispSync-23904 (23896) [000] d..1 24573.531484: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
55422        DispSync-23904 (23896) [000] d..2 24573.531496: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
55423 id.nn.benchmark-13159 (13131) [003] d..2 24573.531505: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
55424        DispSync-23904 (23896) [000] d..2 24573.531511: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13290 next_prio=110
55425  appEventThread-23905 (23896) [003] d..3 24573.531550: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
55426 id.nn.benchmark-13155 (13131) [007] dnh1 24573.531568: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
55427 id.nn.benchmark-13155 (13131) [007] d..2 24573.531571: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
55428  appEventThread-23905 (23896) [003] d..2 24573.531578: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
55429           <...>-13290 (-----) [000] ...1 24573.531620: tracing_mark_write: E|13131
55430           <...>-13290 (-----) [000] ...1 24573.531625: tracing_mark_write: E|13131
55431           <...>-13290 (-----) [000] ...1 24573.531637: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55432           <...>-13290 (-----) [000] ...1 24573.531641: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55433<...>-24151 ( 24151) [007] .... 24573.531769: binder_transaction: transaction=1669980 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
55434<...>-24151 ( 24151) [007] d..4 24573.531776: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
55435<...>-24151 ( 24151) [007] d..5 24573.531784: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
55436<...>-24151 ( 24151) [007] d..3 24573.531806: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
55437<...>-24151 ( 24151) [007] d..4 24573.531812: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
55438<...>-24151 ( 24151) [007] d..2 24573.531880: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
55439  Binder:23896_5-25989 (23896) [007] .... 24573.531884: binder_transaction_received: transaction=1669980
55440  Binder:23896_5-25989 (23896) [007] d..1 24573.531901: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
55441           <...>-13290 (-----) [000] dnh1 24573.531918: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
55442  Binder:23896_5-25989 (23896) [007] d..2 24573.531921: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
55443           <...>-13290 (-----) [000] d..2 24573.531926: sched_switch: prev_comm=id.nn.benchmark prev_pid=13290 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
55444  appEventThread-23905 (23896) [000] d..2 24573.531952: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13290 next_prio=110
55445    RenderThread-24437 (24151) [007] d..1 24573.531977: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
55446    RenderThread-24437 (24151) [007] d..2 24573.531983: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
55447    RenderThread-24437 (24151) [007] .... 24573.532014: binder_transaction: transaction=1669981 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
55448    RenderThread-24437 (24151) [007] d..4 24573.532017: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
55449    RenderThread-24437 (24151) [007] d..5 24573.532024: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
55450    RenderThread-24437 (24151) [007] d..2 24573.532028: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
55451  Binder:23896_5-25989 (23896) [007] .... 24573.532030: binder_transaction_received: transaction=1669981
55452  Binder:23896_5-25989 (23896) [007] .... 24573.532059: binder_transaction: transaction=1669982 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
55453  Binder:23896_5-25989 (23896) [007] d..2 24573.532064: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
55454  Binder:23896_5-25989 (23896) [007] d..3 24573.532069: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
55455  Binder:23896_5-25989 (23896) [007] d..2 24573.532078: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
55456    RenderThread-24437 (24151) [007] .... 24573.532080: binder_transaction_received: transaction=1669982
55457    RenderThread-24437 (24151) [007] d..2 24573.532686: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
55458<...>-24151 ( 24151) [007] d..2 24573.532721: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
55459 id.nn.benchmark-13155 (13131) [007] d.h1 24573.532785: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
55460 id.nn.benchmark-13155 (13131) [007] d.h2 24573.532790: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
55461 id.nn.benchmark-13155 (13131) [007] dnh2 24573.532792: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
55462 id.nn.benchmark-13155 (13131) [007] d..2 24573.532796: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
55463    RenderThread-24437 (24151) [007] .... 24573.532878: binder_transaction: transaction=1669983 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
55464    RenderThread-24437 (24151) [007] d..4 24573.532882: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
55465    RenderThread-24437 (24151) [007] d..5 24573.532888: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
55466    RenderThread-24437 (24151) [007] d..2 24573.532892: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
55467  Binder:23896_5-25989 (23896) [007] .... 24573.532895: binder_transaction_received: transaction=1669983
55468           <...>-13290 (-----) [000] d.h2 24573.532911: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
55469           <...>-13290 (-----) [000] dnh3 24573.532927: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
55470           <...>-13290 (-----) [000] d..2 24573.532939: sched_switch: prev_comm=id.nn.benchmark prev_pid=13290 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
55471  Binder:23896_5-25989 (23896) [007] .... 24573.532954: binder_transaction: transaction=1669984 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
55472  Binder:23896_5-25989 (23896) [007] d..2 24573.532956: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
55473  Binder:23896_5-25989 (23896) [007] d..3 24573.532961: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
55474  Binder:23896_5-25989 (23896) [007] d..2 24573.532969: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
55475    RenderThread-24437 (24151) [007] .... 24573.532970: binder_transaction_received: transaction=1669984
55476 kgsl_worker_thr-246   (  246) [000] d..2 24573.532974: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
55477    RenderThread-24437 (24151) [007] d..2 24573.532994: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
55478 id.nn.benchmark-13155 (13131) [007] dnh1 24573.533000: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
55479 id.nn.benchmark-13155 (13131) [007] d..2 24573.533003: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
55480 kgsl_worker_thr-246   (  246) [000] d..2 24573.533009: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13290 next_prio=110
55481  kworker/u16:15-18488 (18488) [007] d..2 24573.533021: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
55482           <...>-13290 (-----) [000] ...1 24573.533049: tracing_mark_write: E|13131
55483           <...>-13290 (-----) [000] ...1 24573.533054: tracing_mark_write: E|13131
55484           <...>-13290 (-----) [000] ...1 24573.533075: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55485           <...>-13290 (-----) [000] ...1 24573.533079: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55486           <...>-13290 (-----) [000] ...1 24573.533415: tracing_mark_write: E|13131
55487           <...>-13290 (-----) [000] ...1 24573.533418: tracing_mark_write: E|13131
55488           <...>-13290 (-----) [000] ...1 24573.533429: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55489           <...>-13290 (-----) [000] ...1 24573.533433: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55490           <...>-13290 (-----) [000] ...1 24573.533662: tracing_mark_write: E|13131
55491           <...>-13290 (-----) [000] ...1 24573.533665: tracing_mark_write: E|13131
55492           <...>-13290 (-----) [000] ...1 24573.533676: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55493           <...>-13290 (-----) [000] ...1 24573.533680: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55494           <...>-13290 (-----) [000] ...1 24573.534067: tracing_mark_write: E|13131
55495           <...>-13290 (-----) [000] ...1 24573.534070: tracing_mark_write: E|13131
55496           <...>-13290 (-----) [000] ...1 24573.534080: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55497           <...>-13290 (-----) [000] ...1 24573.534084: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55498           <...>-13157 (-----) [005] d.s1 24573.534221: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
55499           <...>-13157 (-----) [005] dns2 24573.534229: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
55500           <...>-13157 (-----) [005] d..2 24573.534232: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
55501 id.nn.benchmark-13159 (13131) [003] d.s2 24573.534237: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
55502     rcu_preempt-7     (    7) [005] d..2 24573.534237: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
55503           <...>-13157 (-----) [005] dnh1 24573.534262: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
55504           <...>-13157 (-----) [005] d..2 24573.534264: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
55505     rcu_preempt-7     (    7) [005] d..2 24573.534265: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=005
55506     rcu_preempt-7     (    7) [005] d..3 24573.534273: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=005
55507     rcu_preempt-7     (    7) [005] d..2 24573.534274: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=004
55508     rcu_preempt-7     (    7) [005] d..3 24573.534283: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=004
55509     rcu_preempt-7     (    7) [005] d..2 24573.534286: 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
55510         rcuop/2-29    (   29) [005] d..2 24573.534288: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=004
55511           <...>-13154 (-----) [004] d..2 24573.534290: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/4 next_pid=45 next_prio=120
55512         rcuop/4-45    (   45) [004] d..2 24573.534293: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=007
55513         rcuop/2-29    (   29) [005] d..3 24573.534299: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=004
55514         rcuop/2-29    (   29) [005] d..2 24573.534302: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
55515         rcuop/4-45    (   45) [004] d..3 24573.534306: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=007
55516         rcuop/4-45    (   45) [004] d..2 24573.534309: 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
55517 id.nn.benchmark-13155 (13131) [007] d..2 24573.534312: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcuop/5 next_pid=53 next_prio=120
55518         rcuop/5-53    (   53) [007] d..2 24573.534323: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
55519         rcuop/3-37    (   37) [004] d..2 24573.534326: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
55520           <...>-13290 (-----) [000] ...1 24573.534509: tracing_mark_write: E|13131
55521           <...>-13290 (-----) [000] ...1 24573.534513: tracing_mark_write: E|13131
55522           <...>-13290 (-----) [000] ...1 24573.534531: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55523           <...>-13290 (-----) [000] ...1 24573.534535: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55524           <...>-13290 (-----) [000] ...1 24573.534725: tracing_mark_write: E|13131
55525           <...>-13290 (-----) [000] ...1 24573.534728: tracing_mark_write: E|13131
55526           <...>-13290 (-----) [000] ...1 24573.534741: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55527           <...>-13290 (-----) [000] ...1 24573.534746: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55528           <...>-13290 (-----) [000] ...1 24573.534816: tracing_mark_write: E|13131
55529           <...>-13290 (-----) [000] ...1 24573.534819: tracing_mark_write: E|13131
55530           <...>-13290 (-----) [000] ...1 24573.534830: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
55531           <...>-13290 (-----) [000] ...1 24573.534834: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
55532           <...>-13290 (-----) [000] ...1 24573.535136: tracing_mark_write: E|13131
55533           <...>-13290 (-----) [000] ...1 24573.535139: tracing_mark_write: E|13131
55534           <...>-13290 (-----) [000] ...1 24573.535149: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
55535           <...>-13290 (-----) [000] ...1 24573.535153: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
55536           <...>-13290 (-----) [000] ...1 24573.535199: tracing_mark_write: E|13131
55537           <...>-13290 (-----) [000] ...1 24573.535202: tracing_mark_write: E|13131
55538           <...>-13290 (-----) [000] ...1 24573.535212: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
55539           <...>-13290 (-----) [000] ...1 24573.535215: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
55540           <...>-13290 (-----) [000] ...1 24573.535232: tracing_mark_write: E|13131
55541           <...>-13290 (-----) [000] ...1 24573.535234: tracing_mark_write: E|13131
55542           <...>-13290 (-----) [000] ...1 24573.535244: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
55543           <...>-13290 (-----) [000] ...1 24573.535247: tracing_mark_write: E|13131
55544           <...>-13290 (-----) [000] ...1 24573.535255: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
55545           <...>-13290 (-----) [000] ...1 24573.535259: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
55546           <...>-13290 (-----) [000] d.h1 24573.535439: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
55547           <...>-13290 (-----) [000] dnh2 24573.535448: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
55548           <...>-13290 (-----) [000] d..2 24573.535456: sched_switch: prev_comm=id.nn.benchmark prev_pid=13290 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
55549        DispSync-23904 (23896) [000] d..1 24573.535469: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
55550        DispSync-23904 (23896) [000] d..2 24573.535485: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
55551 id.nn.benchmark-13156 (13131) [001] d..2 24573.535496: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
55552        DispSync-23904 (23896) [000] d..2 24573.535497: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13290 next_prio=110
55553   sfEventThread-23906 (23896) [001] d..3 24573.535527: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
55554   sfEventThread-23906 (23896) [001] d..4 24573.535545: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
55555           <...>-13290 (-----) [000] d..2 24573.535553: sched_switch: prev_comm=id.nn.benchmark prev_pid=13290 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
55556   sfEventThread-23906 (23896) [001] d..2 24573.535559: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
55557  surfaceflinger-23896 (23896) [000] d..1 24573.535800: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
55558  surfaceflinger-23896 (23896) [000] d..2 24573.535811: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
55559 id.nn.benchmark-13156 (13131) [001] d..2 24573.535820: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
55560   sfEventThread-23906 (23896) [001] d..2 24573.535834: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
55561  surfaceflinger-23896 (23896) [000] ...1 24573.535941: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
55562  surfaceflinger-23896 (23896) [000] ...1 24573.535945: tracing_mark_write: E|23896
55563  surfaceflinger-23896 (23896) [000] .... 24573.535987: binder_transaction: transaction=1669985 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
55564  surfaceflinger-23896 (23896) [000] ...2 24573.536008: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
55565  surfaceflinger-23896 (23896) [000] d..4 24573.536015: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=005
55566 id.nn.benchmark-13155 (13131) [007] dnh1 24573.536034: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
55567 id.nn.benchmark-13155 (13131) [007] d..2 24573.536037: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
55568  surfaceflinger-23896 (23896) [000] d..2 24573.536041: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13290 next_prio=110
55569  HwBinder:598_3-633   (  598) [007] .... 24573.536042: binder_transaction_received: transaction=1669985
55570  HwBinder:598_3-633   (  598) [007] ...1 24573.536067: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
55571  HwBinder:598_3-633   (  598) [007] ...1 24573.536121: tracing_mark_write: B|598|HWCSession::PresentDisplay::
55572  HwBinder:598_3-633   (  598) [007] ...1 24573.536191: tracing_mark_write: B|598|HWDeviceDRM::Commit::
55573  HwBinder:598_3-633   (  598) [007] ...1 24573.536194: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
55574  HwBinder:598_3-633   (  598) [007] d..2 24573.536398: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
55575  HwBinder:598_3-633   (  598) [007] d.h3 24573.536436: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
55576           <...>-13290 (-----) [000] dnh1 24573.536437: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
55577  HwBinder:598_3-633   (  598) [007] d.h4 24573.536442: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
55578           <...>-13290 (-----) [000] d..2 24573.536443: sched_switch: prev_comm=id.nn.benchmark prev_pid=13290 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
55579  HwBinder:598_3-633   (  598) [007] d.h3 24573.536443: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
55580           <...>-13157 (-----) [005] d..2 24573.536449: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
55581         sugov:4-560   (  560) [005] d..2 24573.536453: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
55582 id.nn.benchmark-13156 (13131) [001] dnh1 24573.536458: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
55583 id.nn.benchmark-13156 (13131) [001] d..2 24573.536463: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
55584         sugov:0-559   (  559) [001] d..2 24573.536471: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
55585  HwBinder:598_3-633   (  598) [007] ...1 24573.536480: tracing_mark_write: E|598
55586  HwBinder:598_3-633   (  598) [007] ...1 24573.536481: tracing_mark_write: E|598
55587  HwBinder:598_3-633   (  598) [007] ...1 24573.536504: tracing_mark_write: E|598
55588  HwBinder:598_3-633   (  598) [007] ...1 24573.536525: tracing_mark_write: E|598
55589  HwBinder:598_3-633   (  598) [007] .... 24573.536530: binder_transaction: transaction=1669986 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
55590  HwBinder:598_3-633   (  598) [007] d..2 24573.536536: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
55591  HwBinder:598_3-633   (  598) [007] .... 24573.536546: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
55592 id.nn.benchmark-13156 (13131) [001] dnh1 24573.536550: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
55593 id.nn.benchmark-13156 (13131) [001] d..2 24573.536554: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
55594  surfaceflinger-23896 (23896) [001] .... 24573.536559: binder_transaction_received: transaction=1669986
55595  HwBinder:598_3-633   (  598) [007] d..2 24573.536567: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
55596  surfaceflinger-23896 (23896) [001] d..2 24573.536806: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
55597 crtc_commit:111-253   (  253) [000] d..2 24573.537050: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13290 next_prio=110
55598           <...>-13290 (-----) [000] ...1 24573.537318: tracing_mark_write: E|13131
55599           <...>-13290 (-----) [000] ...1 24573.537322: tracing_mark_write: E|13131
55600           <...>-13290 (-----) [000] ...1 24573.537333: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55601           <...>-13290 (-----) [000] ...1 24573.537337: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55602           <...>-13290 (-----) [000] ...1 24573.537421: tracing_mark_write: E|13131
55603           <...>-13290 (-----) [000] ...1 24573.537424: tracing_mark_write: E|13131
55604           <...>-13290 (-----) [000] d..2 24573.537477: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
55605           <...>-13290 (-----) [000] d..3 24573.537486: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
55606           <...>-13290 (-----) [000] ...1 24573.537509: tracing_mark_write: E|13131
55607           <...>-13290 (-----) [000] d..1 24573.537514: sched_waking: comm=id.nn.benchmark pid=13289 prio=110 target_cpu=007
55608 id.nn.benchmark-13155 (13131) [007] dnh1 24573.537531: sched_wakeup: comm=id.nn.benchmark pid=13289 prio=110 target_cpu=007
55609 id.nn.benchmark-13155 (13131) [007] d..2 24573.537534: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13289 next_prio=110
55610           <...>-13290 (-----) [000] ...1 24573.537540: tracing_mark_write: E|13131
55611           <...>-13289 (-----) [007] d..2 24573.537543: sched_switch: prev_comm=id.nn.benchmark prev_pid=13289 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
55612 id.nn.benchmark-13155 (13131) [007] d.s2 24573.537559: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
55613 id.nn.benchmark-13155 (13131) [007] dns3 24573.537578: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
55614 id.nn.benchmark-13155 (13131) [007] d..2 24573.537581: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
55615           <...>-13157 (-----) [005] d.H2 24573.537585: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
55616           <...>-13157 (-----) [005] d.H3 24573.537593: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
55617           <...>-13157 (-----) [005] d.H2 24573.537594: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
55618  kworker/u16:15-18488 (18488) [007] d..2 24573.537600: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
55619         sugov:4-560   (  560) [007] d..2 24573.537604: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
55620 id.nn.benchmark-13156 (13131) [001] dnh1 24573.537605: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
55621 id.nn.benchmark-13156 (13131) [001] d..2 24573.537611: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
55622         sugov:0-559   (  559) [001] d..2 24573.537618: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
55623  kworker/u16:15-18488 (18488) [007] d..2 24573.537719: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
55624           <...>-13290 (-----) [000] d..1 24573.537802: sched_waking: comm=id.nn.benchmark pid=13289 prio=110 target_cpu=007
55625 id.nn.benchmark-13155 (13131) [007] dnh1 24573.537817: sched_wakeup: comm=id.nn.benchmark pid=13289 prio=110 target_cpu=007
55626 id.nn.benchmark-13155 (13131) [007] d..2 24573.537819: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13289 next_prio=110
55627           <...>-13290 (-----) [000] d..2 24573.537874: sched_switch: prev_comm=id.nn.benchmark prev_pid=13290 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
55628           <...>-13289 (-----) [007] d..1 24573.537884: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
55629           <...>-13289 (-----) [007] dn.2 24573.537890: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
55630           <...>-13289 (-----) [007] d..2 24573.537893: sched_switch: prev_comm=id.nn.benchmark prev_pid=13289 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
55631           <...>-13131 (-----) [007] d..2 24573.537899: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13289 next_prio=110
55632           <...>-13289 (-----) [007] d..1 24573.537928: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
55633           <...>-13289 (-----) [007] dn.2 24573.537932: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
55634           <...>-13289 (-----) [007] d..2 24573.537934: sched_switch: prev_comm=id.nn.benchmark prev_pid=13289 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
55635           <...>-13131 (-----) [007] ...1 24573.537944: tracing_mark_write: E|13131
55636           <...>-13131 (-----) [007] ...1 24573.537947: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
55637           <...>-13131 (-----) [007] ...1 24573.537950: tracing_mark_write: E|13131
55638           <...>-13131 (-----) [007] ...1 24573.537952: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
55639           <...>-13131 (-----) [007] ...1 24573.537954: tracing_mark_write: E|13131
55640     logd.writer-563   (  555) [000] d..2 24573.538004: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13289 next_prio=110
55641           <...>-13131 (-----) [007] ...1 24573.538018: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
55642           <...>-13131 (-----) [007] d..2 24573.538032: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
55643           <...>-13131 (-----) [007] ...1 24573.538047: tracing_mark_write: E|13131
55644           <...>-13131 (-----) [007] ...1 24573.538050: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
55645           <...>-13131 (-----) [007] ...1 24573.538053: tracing_mark_write: E|13131
55646           <...>-13131 (-----) [007] ...1 24573.538054: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
55647           <...>-13131 (-----) [007] ...1 24573.538056: tracing_mark_write: E|13131
55648           <...>-13289 (-----) [000] d..2 24573.538057: sched_switch: prev_comm=id.nn.benchmark prev_pid=13289 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
55649           <...>-13131 (-----) [007] ...1 24573.538058: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
55650 id.nn.benchmark-13155 (13131) [000] d.h3 24573.538063: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
55651 id.nn.benchmark-13155 (13131) [000] d.h4 24573.538092: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
55652 id.nn.benchmark-13155 (13131) [000] d.h4 24573.538099: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
55653           <...>-13131 (-----) [007] dnh1 24573.538104: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
55654 id.nn.benchmark-13155 (13131) [000] d.h5 24573.538107: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
55655           <...>-13131 (-----) [007] d..2 24573.538108: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
55656         sugov:4-560   (  560) [007] d..2 24573.538112: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
55657 id.nn.benchmark-13156 (13131) [001] d..2 24573.538114: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
55658         sugov:0-559   (  559) [001] d..2 24573.538120: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
55659           <...>-13131 (-----) [007] ...1 24573.538133: tracing_mark_write: E|13131
55660           <...>-13131 (-----) [007] ...1 24573.538135: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
55661           <...>-13131 (-----) [007] d..2 24573.538139: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13291 next_prio=110
55662           <...>-13291 (-----) [007] d..2 24573.538286: sched_switch: prev_comm=id.nn.benchmark prev_pid=13291 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13292 next_prio=110
55663           <...>-13292 (-----) [007] ...1 24573.538297: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
55664           <...>-13292 (-----) [007] ...1 24573.538298: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
55665           <...>-13292 (-----) [007] ...1 24573.538350: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55666           <...>-13292 (-----) [007] ...1 24573.538352: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55667           <...>-13292 (-----) [007] ...1 24573.539200: tracing_mark_write: E|13131
55668           <...>-13292 (-----) [007] ...1 24573.539201: tracing_mark_write: E|13131
55669           <...>-13292 (-----) [007] ...1 24573.539206: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55670           <...>-13292 (-----) [007] ...1 24573.539207: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55671 id.nn.benchmark-13156 (13131) [001] d.h1 24573.539277: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=001
55672           <...>-13292 (-----) [007] dnh1 24573.539301: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=007
55673 id.nn.benchmark-13156 (13131) [001] d.h2 24573.539325: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
55674           <...>-13292 (-----) [007] d..2 24573.539326: sched_switch: prev_comm=id.nn.benchmark prev_pid=13292 prev_prio=110 prev_state=R ==> next_comm=bluetooth@1.0-s next_pid=24508 next_prio=98
55675 id.nn.benchmark-13156 (13131) [001] d.h2 24573.539339: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
55676           <...>-13154 (-----) [004] dnh1 24573.539342: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
55677 id.nn.benchmark-13156 (13131) [001] dnh3 24573.539344: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
55678           <...>-13154 (-----) [004] d..2 24573.539345: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
55679         sugov:4-560   (  560) [004] d..2 24573.539349: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
55680 id.nn.benchmark-13156 (13131) [001] d..2 24573.539350: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
55681 bluetooth@1.0-s-24508 (  759) [007] d..2 24573.539354: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13292 next_prio=110
55682         sugov:0-559   (  559) [001] d..2 24573.539357: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
55683           <...>-13292 (-----) [007] ...1 24573.539637: tracing_mark_write: E|13131
55684           <...>-13292 (-----) [007] ...1 24573.539638: tracing_mark_write: E|13131
55685           <...>-13292 (-----) [007] ...1 24573.539644: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55686           <...>-13292 (-----) [007] ...1 24573.539646: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55687           <...>-13292 (-----) [007] ...1 24573.539858: tracing_mark_write: E|13131
55688           <...>-13292 (-----) [007] ...1 24573.539859: tracing_mark_write: E|13131
55689           <...>-13292 (-----) [007] ...1 24573.539863: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55690           <...>-13292 (-----) [007] ...1 24573.539864: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55691           <...>-13292 (-----) [007] ...1 24573.540029: tracing_mark_write: E|13131
55692           <...>-13292 (-----) [007] ...1 24573.540030: tracing_mark_write: E|13131
55693           <...>-13292 (-----) [007] ...1 24573.540033: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55694           <...>-13292 (-----) [007] ...1 24573.540034: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55695           <...>-13292 (-----) [007] ...1 24573.540327: tracing_mark_write: E|13131
55696           <...>-13292 (-----) [007] ...1 24573.540328: tracing_mark_write: E|13131
55697           <...>-13292 (-----) [007] ...1 24573.540331: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55698           <...>-13292 (-----) [007] ...1 24573.540332: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55699           <...>-13292 (-----) [007] ...1 24573.540622: tracing_mark_write: E|13131
55700           <...>-13292 (-----) [007] ...1 24573.540623: tracing_mark_write: E|13131
55701           <...>-13292 (-----) [007] ...1 24573.540630: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55702           <...>-13292 (-----) [007] ...1 24573.540631: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55703           <...>-13292 (-----) [007] ...1 24573.540789: tracing_mark_write: E|13131
55704           <...>-13292 (-----) [007] ...1 24573.540791: tracing_mark_write: E|13131
55705           <...>-13292 (-----) [007] ...1 24573.540794: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55706           <...>-13292 (-----) [007] ...1 24573.540795: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55707           <...>-13292 (-----) [007] ...1 24573.540851: tracing_mark_write: E|13131
55708           <...>-13292 (-----) [007] ...1 24573.540852: tracing_mark_write: E|13131
55709           <...>-13292 (-----) [007] ...1 24573.540855: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
55710           <...>-13292 (-----) [007] ...1 24573.540857: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
55711           <...>-13292 (-----) [007] d.s2 24573.540894: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
55712 id.nn.benchmark-13160 (13131) [002] d.h2 24573.540897: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
55713           <...>-13292 (-----) [007] dns3 24573.540904: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
55714 id.nn.benchmark-13160 (13131) [002] dnh3 24573.540905: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
55715           <...>-13292 (-----) [007] d..2 24573.540909: sched_switch: prev_comm=id.nn.benchmark prev_pid=13292 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
55716 id.nn.benchmark-13160 (13131) [002] d..2 24573.540915: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
55717     migration/2-25    (   25) [002] d.h3 24573.540963: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
55718     migration/2-25    (   25) [002] d.h3 24573.540974: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
55719  kworker/u16:15-18488 (18488) [007] dnh1 24573.540978: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
55720  kworker/u16:15-18488 (18488) [007] d..2 24573.540981: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
55721         sugov:4-560   (  560) [007] d..2 24573.540985: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
55722     migration/2-25    (   25) [002] d.h4 24573.540985: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
55723     migration/2-25    (   25) [002] d..2 24573.540992: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
55724         sugov:0-559   (  559) [002] d..2 24573.541016: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
55725  kworker/u16:15-18488 (18488) [007] d..2 24573.541142: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13292 next_prio=110
55726           <...>-13292 (-----) [007] ...1 24573.541261: tracing_mark_write: E|13131
55727           <...>-13292 (-----) [007] ...1 24573.541263: tracing_mark_write: E|13131
55728           <...>-13292 (-----) [007] ...1 24573.541267: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
55729           <...>-13292 (-----) [007] ...1 24573.541268: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
55730           <...>-13292 (-----) [007] ...1 24573.541287: tracing_mark_write: E|13131
55731           <...>-13292 (-----) [007] ...1 24573.541288: tracing_mark_write: E|13131
55732           <...>-13292 (-----) [007] ...1 24573.541291: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
55733           <...>-13292 (-----) [007] ...1 24573.541292: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
55734           <...>-13292 (-----) [007] ...1 24573.541298: tracing_mark_write: E|13131
55735           <...>-13292 (-----) [007] ...1 24573.541299: tracing_mark_write: E|13131
55736           <...>-13292 (-----) [007] ...1 24573.541303: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
55737           <...>-13292 (-----) [007] ...1 24573.541304: tracing_mark_write: E|13131
55738           <...>-13292 (-----) [007] ...1 24573.541308: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
55739           <...>-13292 (-----) [007] ...1 24573.541309: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
55740     logd.writer-563   (  555) [002] d..2 24573.541364: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
55741           <...>-13292 (-----) [007] ...1 24573.541615: tracing_mark_write: E|13131
55742           <...>-13292 (-----) [007] ...1 24573.541616: tracing_mark_write: E|13131
55743           <...>-13292 (-----) [007] ...1 24573.541619: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55744           <...>-13292 (-----) [007] ...1 24573.541620: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55745           <...>-13292 (-----) [007] ...1 24573.541693: tracing_mark_write: E|13131
55746           <...>-13292 (-----) [007] ...1 24573.541694: tracing_mark_write: E|13131
55747           <...>-13292 (-----) [007] d..2 24573.541711: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
55748 id.nn.benchmark-13160 (13131) [002] d.h1 24573.541725: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
55749           <...>-13292 (-----) [007] ...1 24573.541727: tracing_mark_write: E|13131
55750           <...>-13292 (-----) [007] d..1 24573.541730: sched_waking: comm=id.nn.benchmark pid=13291 prio=110 target_cpu=007
55751           <...>-13292 (-----) [007] dn.2 24573.541735: sched_wakeup: comm=id.nn.benchmark pid=13291 prio=110 target_cpu=007
55752           <...>-13292 (-----) [007] d..2 24573.541738: sched_switch: prev_comm=id.nn.benchmark prev_pid=13292 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13291 next_prio=110
55753           <...>-13291 (-----) [007] d..2 24573.541745: sched_switch: prev_comm=id.nn.benchmark prev_pid=13291 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13292 next_prio=110
55754           <...>-13292 (-----) [007] ...1 24573.541750: tracing_mark_write: E|13131
55755           <...>-13292 (-----) [007] d..1 24573.541852: sched_waking: comm=id.nn.benchmark pid=13291 prio=110 target_cpu=007
55756           <...>-13292 (-----) [007] dn.2 24573.541856: sched_wakeup: comm=id.nn.benchmark pid=13291 prio=110 target_cpu=007
55757           <...>-13292 (-----) [007] d..2 24573.541858: sched_switch: prev_comm=id.nn.benchmark prev_pid=13292 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13291 next_prio=110
55758           <...>-13291 (-----) [007] d..1 24573.541901: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
55759           <...>-13291 (-----) [007] dn.2 24573.541906: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
55760           <...>-13291 (-----) [007] d..2 24573.541908: sched_switch: prev_comm=id.nn.benchmark prev_pid=13291 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
55761           <...>-13131 (-----) [007] d..2 24573.541913: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13291 next_prio=110
55762           <...>-13291 (-----) [007] d..1 24573.541934: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
55763           <...>-13291 (-----) [007] dn.2 24573.541937: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
55764           <...>-13291 (-----) [007] d..2 24573.541939: sched_switch: prev_comm=id.nn.benchmark prev_pid=13291 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
55765           <...>-13131 (-----) [007] ...1 24573.541947: tracing_mark_write: E|13131
55766           <...>-13131 (-----) [007] ...1 24573.541949: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
55767           <...>-13131 (-----) [007] ...1 24573.541951: tracing_mark_write: E|13131
55768           <...>-13131 (-----) [007] ...1 24573.541952: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
55769           <...>-13131 (-----) [007] ...1 24573.541954: tracing_mark_write: E|13131
55770           <...>-13131 (-----) [007] ...1 24573.542013: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
55771           <...>-13131 (-----) [007] ...1 24573.542033: tracing_mark_write: E|13131
55772           <...>-13131 (-----) [007] ...1 24573.542035: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
55773           <...>-13131 (-----) [007] ...1 24573.542038: tracing_mark_write: E|13131
55774           <...>-13131 (-----) [007] ...1 24573.542039: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
55775           <...>-13131 (-----) [007] ...1 24573.542041: tracing_mark_write: E|13131
55776           <...>-13131 (-----) [007] ...1 24573.542042: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
55777           <...>-13131 (-----) [007] ...1 24573.542085: tracing_mark_write: E|13131
55778           <...>-13131 (-----) [007] ...1 24573.542086: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
55779           <...>-13131 (-----) [007] d..2 24573.542092: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13291 next_prio=110
55780           <...>-13291 (-----) [007] d..2 24573.542115: sched_switch: prev_comm=id.nn.benchmark prev_pid=13291 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13292 next_prio=110
55781           <...>-13292 (-----) [007] d..2 24573.542125: sched_switch: prev_comm=id.nn.benchmark prev_pid=13292 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13293 next_prio=110
55782           <...>-13293 (-----) [007] d..2 24573.542267: sched_switch: prev_comm=id.nn.benchmark prev_pid=13293 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13294 next_prio=110
55783           <...>-13294 (-----) [007] ...1 24573.542277: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
55784           <...>-13294 (-----) [007] ...1 24573.542279: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
55785           <...>-13294 (-----) [007] ...1 24573.542330: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55786           <...>-13294 (-----) [007] ...1 24573.542331: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55787           <...>-13294 (-----) [007] ...1 24573.543184: tracing_mark_write: E|13131
55788           <...>-13294 (-----) [007] ...1 24573.543185: tracing_mark_write: E|13131
55789           <...>-13294 (-----) [007] ...1 24573.543189: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55790           <...>-13294 (-----) [007] ...1 24573.543191: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55791 id.nn.benchmark-13155 (13131) [000] d.h4 24573.543445: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
55792 id.nn.benchmark-13155 (13131) [000] d.h4 24573.543463: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
55793           <...>-13294 (-----) [007] dnh1 24573.543466: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
55794 id.nn.benchmark-13155 (13131) [000] dnh5 24573.543470: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
55795           <...>-13294 (-----) [007] d..2 24573.543471: sched_switch: prev_comm=id.nn.benchmark prev_pid=13294 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
55796  crtc_event:111-254   (  254) [007] d..2 24573.543482: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13294 next_prio=110
55797 id.nn.benchmark-13155 (13131) [000] d..2 24573.543485: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
55798 crtc_commit:111-253   (  253) [000] d..2 24573.543607: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
55799           <...>-13294 (-----) [007] ...1 24573.543808: tracing_mark_write: E|13131
55800           <...>-13294 (-----) [007] ...1 24573.543810: tracing_mark_write: E|13131
55801           <...>-13294 (-----) [007] ...1 24573.543816: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55802           <...>-13294 (-----) [007] ...1 24573.543817: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55803           <...>-13294 (-----) [007] ...1 24573.544029: tracing_mark_write: E|13131
55804           <...>-13294 (-----) [007] ...1 24573.544030: tracing_mark_write: E|13131
55805           <...>-13294 (-----) [007] ...1 24573.544034: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55806           <...>-13294 (-----) [007] ...1 24573.544035: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55807           <...>-13294 (-----) [007] ...1 24573.544197: tracing_mark_write: E|13131
55808           <...>-13294 (-----) [007] ...1 24573.544198: tracing_mark_write: E|13131
55809           <...>-13294 (-----) [007] ...1 24573.544202: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55810           <...>-13294 (-----) [007] ...1 24573.544203: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55811           <...>-13157 (-----) [005] d.s1 24573.544220: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
55812 id.nn.benchmark-13155 (13131) [000] d.h2 24573.544230: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
55813           <...>-13157 (-----) [005] d.s2 24573.544233: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
55814 id.nn.benchmark-13155 (13131) [000] dnh3 24573.544237: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
55815           <...>-13294 (-----) [007] d..2 24573.544239: sched_switch: prev_comm=id.nn.benchmark prev_pid=13294 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
55816 id.nn.benchmark-13155 (13131) [000] dns2 24573.544242: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
55817     rcu_preempt-7     (    7) [007] d..2 24573.544247: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13294 next_prio=110
55818 id.nn.benchmark-13155 (13131) [000] dns2 24573.544252: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
55819           <...>-13294 (-----) [007] dnh1 24573.544256: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
55820           <...>-13294 (-----) [007] d..2 24573.544259: sched_switch: prev_comm=id.nn.benchmark prev_pid=13294 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
55821  crtc_event:111-254   (  254) [007] d..2 24573.544267: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13294 next_prio=110
55822           <...>-13294 (-----) [007] dnh1 24573.544274: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
55823 id.nn.benchmark-13155 (13131) [000] d..2 24573.544275: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
55824           <...>-13294 (-----) [007] d..2 24573.544276: sched_switch: prev_comm=id.nn.benchmark prev_pid=13294 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
55825     rcu_preempt-7     (    7) [007] d..2 24573.544278: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
55826     rcu_preempt-7     (    7) [007] d..2 24573.544293: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
55827     migration/0-13    (   13) [000] d.h2 24573.544300: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
55828     rcu_preempt-7     (    7) [007] d..3 24573.544306: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
55829 id.nn.benchmark-13158 (13131) [006] d..2 24573.544331: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
55830     migration/0-13    (   13) [000] d.h3 24573.544332: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
55831     rcu_preempt-7     (    7) [007] d..2 24573.544333: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13294 next_prio=110
55832         rcuop/6-61    (   61) [006] d..2 24573.544333: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=006
55833     migration/0-13    (   13) [000] d.h3 24573.544340: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
55834           <...>-13294 (-----) [007] dnh1 24573.544343: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
55835         rcuop/6-61    (   61) [006] d..3 24573.544344: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=006
55836           <...>-13294 (-----) [007] d..2 24573.544346: sched_switch: prev_comm=id.nn.benchmark prev_pid=13294 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
55837         rcuop/6-61    (   61) [006] d..2 24573.544348: 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
55838         sugov:4-560   (  560) [007] d..2 24573.544349: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
55839     migration/0-13    (   13) [000] d.h4 24573.544351: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
55840         rcuop/7-69    (   69) [006] d..2 24573.544356: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
55841     migration/0-13    (   13) [000] d..2 24573.544359: 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
55842         sugov:0-559   (  559) [000] d..2 24573.544366: 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
55843         rcuop/0-10    (   10) [000] d..2 24573.544391: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
55844     logd.writer-563   (  555) [000] d..2 24573.544723: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13294 next_prio=110
55845           <...>-13294 (-----) [000] ...1 24573.545039: tracing_mark_write: E|13131
55846           <...>-13294 (-----) [000] ...1 24573.545044: tracing_mark_write: E|13131
55847           <...>-13294 (-----) [000] ...1 24573.545055: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55848           <...>-13294 (-----) [000] ...1 24573.545060: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55849           <...>-13294 (-----) [000] ...1 24573.545430: tracing_mark_write: E|13131
55850           <...>-13294 (-----) [000] ...1 24573.545434: tracing_mark_write: E|13131
55851           <...>-13294 (-----) [000] ...1 24573.545450: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55852           <...>-13294 (-----) [000] ...1 24573.545454: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55853 id.nn.benchmark-13156 (13131) [001] d..2 24573.545510: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=007
55854 id.nn.benchmark-13155 (13131) [007] d..3 24573.545515: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
55855 id.nn.benchmark-13155 (13131) [007] d..2 24573.545523: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=D|K ==> next_comm=swapper/7 next_pid=0 next_prio=120
55856 id.nn.benchmark-13156 (13131) [001] dnh2 24573.545538: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
55857          <idle>-0     (-----) [007] d..1 24573.545542: cpu_idle: state=0 cpu_id=7
55858 id.nn.benchmark-13156 (13131) [001] d..2 24573.545544: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R+ ==> next_comm=migration/1 next_pid=17 next_prio=0
55859          <idle>-0     (-----) [007] d.h2 24573.545551: sched_blocked_reason: pid=13155 iowait=1 caller=__lock_page_or_retry+0x26c/0x2c4
55860          <idle>-0     (-----) [007] dnh2 24573.545552: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=007
55861          <idle>-0     (-----) [007] .n.1 24573.545563: cpu_idle: state=4294967295 cpu_id=7
55862          <idle>-0     (-----) [007] d..2 24573.545568: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
55863     migration/1-17    (   17) [001] d.h3 24573.545592: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
55864     migration/1-17    (   17) [001] d.h3 24573.545600: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
55865 id.nn.benchmark-13155 (13131) [007] dnh1 24573.545603: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
55866 id.nn.benchmark-13155 (13131) [007] d..2 24573.545605: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
55867         sugov:4-560   (  560) [007] d..2 24573.545609: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
55868     migration/1-17    (   17) [001] d.h4 24573.545611: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
55869     migration/1-17    (   17) [001] d..2 24573.545617: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
55870         sugov:0-559   (  559) [001] d..2 24573.545644: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
55871           <...>-13294 (-----) [000] ...1 24573.545690: tracing_mark_write: E|13131
55872           <...>-13294 (-----) [000] ...1 24573.545694: tracing_mark_write: E|13131
55873           <...>-13294 (-----) [000] ...1 24573.545705: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55874           <...>-13294 (-----) [000] ...1 24573.545709: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55875           <...>-13294 (-----) [000] d.h4 24573.545784: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
55876           <...>-13294 (-----) [000] dnh5 24573.545793: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
55877           <...>-13294 (-----) [000] d..2 24573.545806: sched_switch: prev_comm=id.nn.benchmark prev_pid=13294 prev_prio=110 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
55878 crtc_commit:111-253   (  253) [000] d..2 24573.545857: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13294 next_prio=110
55879           <...>-13294 (-----) [000] ...1 24573.545927: tracing_mark_write: E|13131
55880           <...>-13294 (-----) [000] ...1 24573.545931: tracing_mark_write: E|13131
55881           <...>-13294 (-----) [000] ...1 24573.545941: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
55882           <...>-13294 (-----) [000] ...1 24573.545945: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
55883           <...>-13294 (-----) [000] d.h4 24573.546082: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
55884           <...>-13294 (-----) [000] dnh5 24573.546097: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
55885           <...>-13294 (-----) [000] dnh2 24573.546133: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
55886           <...>-13294 (-----) [000] dnh2 24573.546140: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
55887 id.nn.benchmark-13156 (13131) [007] dnh1 24573.546143: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
55888 id.nn.benchmark-13156 (13131) [007] d..2 24573.546146: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
55889           <...>-13294 (-----) [000] dnh3 24573.546148: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
55890         sugov:4-560   (  560) [007] d..2 24573.546149: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
55891           <...>-13294 (-----) [000] d..2 24573.546154: sched_switch: prev_comm=id.nn.benchmark prev_pid=13294 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
55892 id.nn.benchmark-13155 (13131) [001] d..2 24573.546157: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
55893  crtc_event:111-254   (  254) [000] d..2 24573.546165: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13294 next_prio=110
55894         sugov:0-559   (  559) [001] d..2 24573.546166: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
55895           <...>-13294 (-----) [000] ...1 24573.546372: tracing_mark_write: E|13131
55896           <...>-13294 (-----) [000] ...1 24573.546376: tracing_mark_write: E|13131
55897           <...>-13294 (-----) [000] ...1 24573.546385: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
55898           <...>-13294 (-----) [000] ...1 24573.546389: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
55899           <...>-13294 (-----) [000] ...1 24573.546436: tracing_mark_write: E|13131
55900           <...>-13294 (-----) [000] ...1 24573.546439: tracing_mark_write: E|13131
55901           <...>-13294 (-----) [000] ...1 24573.546448: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
55902           <...>-13294 (-----) [000] ...1 24573.546451: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
55903           <...>-13294 (-----) [000] ...1 24573.546467: tracing_mark_write: E|13131
55904           <...>-13294 (-----) [000] ...1 24573.546470: tracing_mark_write: E|13131
55905           <...>-13294 (-----) [000] ...1 24573.546478: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
55906           <...>-13294 (-----) [000] ...1 24573.546482: tracing_mark_write: E|13131
55907           <...>-13294 (-----) [000] ...1 24573.546490: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
55908           <...>-13294 (-----) [000] ...1 24573.546494: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
55909           <...>-13294 (-----) [000] ...1 24573.547347: tracing_mark_write: E|13131
55910           <...>-13294 (-----) [000] ...1 24573.547350: tracing_mark_write: E|13131
55911           <...>-13294 (-----) [000] ...1 24573.547357: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
55912           <...>-13294 (-----) [000] ...1 24573.547361: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
55913           <...>-13294 (-----) [000] ...1 24573.547443: tracing_mark_write: E|13131
55914           <...>-13294 (-----) [000] ...1 24573.547446: tracing_mark_write: E|13131
55915           <...>-13294 (-----) [000] d..2 24573.547480: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
55916           <...>-13294 (-----) [000] d..3 24573.547489: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
55917           <...>-13294 (-----) [000] ...1 24573.547507: tracing_mark_write: E|13131
55918           <...>-13294 (-----) [000] d..1 24573.547512: sched_waking: comm=id.nn.benchmark pid=13293 prio=110 target_cpu=007
55919 id.nn.benchmark-13156 (13131) [007] dnh1 24573.547526: sched_wakeup: comm=id.nn.benchmark pid=13293 prio=110 target_cpu=007
55920 id.nn.benchmark-13156 (13131) [007] d..2 24573.547528: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13293 next_prio=110
55921           <...>-13293 (-----) [007] d..2 24573.547535: sched_switch: prev_comm=id.nn.benchmark prev_pid=13293 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
55922           <...>-13294 (-----) [000] ...1 24573.547535: tracing_mark_write: E|13131
55923           <...>-13154 (-----) [004] d.s2 24573.547556: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
55924           <...>-13154 (-----) [004] d.s3 24573.547563: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
55925 id.nn.benchmark-13156 (13131) [007] d..2 24573.547569: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
55926  kworker/u16:15-18488 (18488) [007] d..2 24573.547694: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
55927           <...>-13294 (-----) [000] d..1 24573.547746: sched_waking: comm=id.nn.benchmark pid=13293 prio=110 target_cpu=007
55928 id.nn.benchmark-13156 (13131) [007] dnh1 24573.547760: sched_wakeup: comm=id.nn.benchmark pid=13293 prio=110 target_cpu=007
55929 id.nn.benchmark-13156 (13131) [007] d..2 24573.547762: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13293 next_prio=110
55930           <...>-13294 (-----) [000] d..2 24573.547800: sched_switch: prev_comm=id.nn.benchmark prev_pid=13294 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
55931           <...>-13293 (-----) [007] d..1 24573.547812: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
55932           <...>-13293 (-----) [007] dn.2 24573.547819: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
55933           <...>-13293 (-----) [007] d..2 24573.547821: sched_switch: prev_comm=id.nn.benchmark prev_pid=13293 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
55934           <...>-13131 (-----) [007] d..2 24573.547826: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13293 next_prio=110
55935           <...>-13293 (-----) [007] d..1 24573.547852: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
55936           <...>-13293 (-----) [007] dn.2 24573.547856: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
55937           <...>-13293 (-----) [007] d..2 24573.547858: sched_switch: prev_comm=id.nn.benchmark prev_pid=13293 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
55938           <...>-13131 (-----) [007] ...1 24573.547866: tracing_mark_write: E|13131
55939           <...>-13131 (-----) [007] ...1 24573.547868: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
55940           <...>-13131 (-----) [007] ...1 24573.547870: tracing_mark_write: E|13131
55941           <...>-13131 (-----) [007] ...1 24573.547872: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
55942           <...>-13131 (-----) [007] ...1 24573.547873: tracing_mark_write: E|13131
55943     logd.writer-563   (  555) [000] d..2 24573.547883: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13293 next_prio=110
55944           <...>-13293 (-----) [000] d.h1 24573.547909: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
55945           <...>-13293 (-----) [000] dnh2 24573.547918: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
55946           <...>-13293 (-----) [000] d..2 24573.547925: sched_switch: prev_comm=id.nn.benchmark prev_pid=13293 prev_prio=110 prev_state=R+ ==> next_comm=DispSync next_pid=23904 next_prio=97
55947           <...>-13131 (-----) [007] ...1 24573.547932: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
55948           <...>-13131 (-----) [007] d..2 24573.547944: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
55949        DispSync-23904 (23896) [000] d..1 24573.547947: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
55950           <...>-13131 (-----) [007] ...1 24573.547959: tracing_mark_write: E|13131
55951           <...>-13131 (-----) [007] ...1 24573.547962: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
55952        DispSync-23904 (23896) [000] d..2 24573.547963: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
55953           <...>-13131 (-----) [007] ...1 24573.547964: tracing_mark_write: E|13131
55954           <...>-13131 (-----) [007] ...1 24573.547965: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
55955           <...>-13131 (-----) [007] ...1 24573.547967: tracing_mark_write: E|13131
55956           <...>-13131 (-----) [007] ...1 24573.547968: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
55957        DispSync-23904 (23896) [000] d.h2 24573.547970: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
55958 id.nn.benchmark-13155 (13131) [001] d..2 24573.547972: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
55959        DispSync-23904 (23896) [000] d..2 24573.547989: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13293 next_prio=110
55960           <...>-13293 (-----) [000] d..2 24573.548000: sched_switch: prev_comm=id.nn.benchmark prev_pid=13293 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
55961           <...>-13131 (-----) [007] ...1 24573.548011: tracing_mark_write: E|13131
55962           <...>-13131 (-----) [007] ...1 24573.548012: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
55963  appEventThread-23905 (23896) [001] d..3 24573.548016: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
55964           <...>-13131 (-----) [007] d..2 24573.548017: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
55965 id.nn.benchmark-13156 (13131) [007] dnh1 24573.548033: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
55966 id.nn.benchmark-13156 (13131) [007] d..2 24573.548036: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
55967  appEventThread-23905 (23896) [001] d..2 24573.548044: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
55968     logd.writer-563   (  555) [000] d..2 24573.548055: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13295 next_prio=110
55969           <...>-13295 (-----) [000] d.h4 24573.548085: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
55970           <...>-13295 (-----) [000] d.h4 24573.548093: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
55971<...>-24151 ( 24151) [007] dnh1 24573.548097: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
55972<...>-24151 ( 24151) [007] d..2 24573.548102: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
55973           <...>-13295 (-----) [000] dnh5 24573.548102: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
55974         sugov:4-560   (  560) [007] d..2 24573.548106: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
55975           <...>-13295 (-----) [000] d..2 24573.548108: sched_switch: prev_comm=id.nn.benchmark prev_pid=13295 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
55976         sugov:0-559   (  559) [000] d..2 24573.548115: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13295 next_prio=110
55977           <...>-13295 (-----) [000] d..2 24573.548169: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
55978           <...>-13295 (-----) [000] d..3 24573.548177: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
55979<...>-24151 ( 24151) [007] .... 24573.548254: binder_transaction: transaction=1669987 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
55980<...>-24151 ( 24151) [007] d..4 24573.548261: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
55981<...>-24151 ( 24151) [007] d..5 24573.548269: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
55982<...>-24151 ( 24151) [007] d..3 24573.548291: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
55983<...>-24151 ( 24151) [007] d..4 24573.548297: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
55984<...>-24151 ( 24151) [007] d..2 24573.548364: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
55985  Binder:23896_5-25989 (23896) [007] .... 24573.548369: binder_transaction_received: transaction=1669987
55986  Binder:23896_5-25989 (23896) [007] d..1 24573.548388: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
55987 id.nn.benchmark-13155 (13131) [001] dnh1 24573.548400: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
55988 id.nn.benchmark-13155 (13131) [001] d..2 24573.548404: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
55989  Binder:23896_5-25989 (23896) [007] d..2 24573.548405: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
55990  appEventThread-23905 (23896) [001] d..2 24573.548421: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
55991           <...>-13295 (-----) [000] d..2 24573.548445: sched_switch: prev_comm=id.nn.benchmark prev_pid=13295 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
55992    RenderThread-24437 (24151) [007] d..1 24573.548463: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
55993    RenderThread-24437 (24151) [007] d..2 24573.548469: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
55994    RenderThread-24437 (24151) [007] .... 24573.548500: binder_transaction: transaction=1669988 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
55995    RenderThread-24437 (24151) [007] d..4 24573.548502: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
55996    RenderThread-24437 (24151) [007] d..5 24573.548506: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
55997    RenderThread-24437 (24151) [007] d..2 24573.548510: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
55998  Binder:23896_5-25989 (23896) [007] .... 24573.548512: binder_transaction_received: transaction=1669988
55999  Binder:23896_5-25989 (23896) [007] .... 24573.548542: binder_transaction: transaction=1669989 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
56000  Binder:23896_5-25989 (23896) [007] d..2 24573.548547: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
56001  Binder:23896_5-25989 (23896) [007] d..3 24573.548552: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
56002  Binder:23896_5-25989 (23896) [007] d..2 24573.548562: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
56003    RenderThread-24437 (24151) [007] .... 24573.548563: binder_transaction_received: transaction=1669989
56004     logd.writer-563   (  555) [000] d..2 24573.548612: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
56005<...>-24151 ( 24151) [000] d.h4 24573.548643: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
56006<...>-24151 ( 24151) [000] d.h4 24573.548651: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
56007    RenderThread-24437 (24151) [007] dnh1 24573.548656: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
56008<...>-24151 ( 24151) [000] dnh5 24573.548657: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
56009    RenderThread-24437 (24151) [007] d..2 24573.548660: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
56010<...>-24151 ( 24151) [000] d..2 24573.548664: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
56011         sugov:4-560   (  560) [007] d..2 24573.548664: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
56012         sugov:0-559   (  559) [000] d..2 24573.548670: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
56013<...>-24151 ( 24151) [000] d..2 24573.548737: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13296 next_prio=110
56014           <...>-13296 (-----) [000] ...1 24573.548786: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
56015           <...>-13296 (-----) [000] ...1 24573.548791: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
56016           <...>-13296 (-----) [000] d..2 24573.548847: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
56017           <...>-13296 (-----) [000] d..3 24573.548856: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
56018           <...>-13296 (-----) [000] ...1 24573.548920: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56019           <...>-13296 (-----) [000] ...1 24573.548925: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56020    RenderThread-24437 (24151) [007] d..2 24573.549188: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
56021 id.nn.benchmark-13156 (13131) [007] d.h1 24573.549287: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
56022 id.nn.benchmark-13156 (13131) [007] d.h2 24573.549292: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
56023 id.nn.benchmark-13156 (13131) [007] dnh2 24573.549293: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
56024 id.nn.benchmark-13156 (13131) [007] d..2 24573.549297: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
56025    RenderThread-24437 (24151) [007] .... 24573.549376: binder_transaction: transaction=1669990 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
56026    RenderThread-24437 (24151) [007] d..4 24573.549380: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
56027    RenderThread-24437 (24151) [007] d..5 24573.549386: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
56028    RenderThread-24437 (24151) [007] d..2 24573.549390: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
56029  Binder:23896_5-25989 (23896) [007] .... 24573.549392: binder_transaction_received: transaction=1669990
56030           <...>-13296 (-----) [000] d.h2 24573.549416: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
56031  Binder:23896_5-25989 (23896) [007] dnh1 24573.549441: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
56032  Binder:23896_5-25989 (23896) [007] d..2 24573.549445: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
56033 kgsl_worker_thr-246   (  246) [007] d..2 24573.549467: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
56034           <...>-13296 (-----) [000] d.h2 24573.549469: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
56035 kgsl_worker_thr-246   (  246) [007] d..3 24573.549473: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
56036 kgsl_worker_thr-246   (  246) [007] d..2 24573.549480: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
56037           <...>-13296 (-----) [000] d.h2 24573.549480: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
56038           <...>-13154 (-----) [004] dnh1 24573.549483: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
56039           <...>-13154 (-----) [004] d..2 24573.549486: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
56040           <...>-13296 (-----) [000] dnh3 24573.549486: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
56041         sugov:4-560   (  560) [004] d..2 24573.549489: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
56042           <...>-13296 (-----) [000] d..2 24573.549493: sched_switch: prev_comm=id.nn.benchmark prev_pid=13296 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
56043  kworker/u16:15-18488 (18488) [007] d..2 24573.549499: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
56044         sugov:0-559   (  559) [000] d..2 24573.549500: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
56045  Binder:23896_5-25989 (23896) [007] .... 24573.549517: binder_transaction: transaction=1669991 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
56046  Binder:23896_5-25989 (23896) [007] d..2 24573.549519: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
56047  Binder:23896_5-25989 (23896) [007] d..3 24573.549523: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
56048  Binder:23896_5-25989 (23896) [007] d..2 24573.549530: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
56049    RenderThread-24437 (24151) [007] .... 24573.549532: binder_transaction_received: transaction=1669991
56050    RenderThread-24437 (24151) [007] d..2 24573.549558: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
56051     logd.writer-563   (  555) [000] d..2 24573.549613: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13296 next_prio=110
56052           <...>-13154 (-----) [004] d.s2 24573.550888: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
56053 id.nn.benchmark-13156 (13131) [007] d.s1 24573.550891: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
56054           <...>-13154 (-----) [004] d.s3 24573.550900: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
56055 id.nn.benchmark-13156 (13131) [007] dns2 24573.550902: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
56056 id.nn.benchmark-13156 (13131) [007] d..2 24573.550908: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
56057  kworker/u16:15-18488 (18488) [007] d..2 24573.551119: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
56058     rcu_preempt-7     (    7) [007] d..2 24573.551122: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=005
56059     rcu_preempt-7     (    7) [007] d..3 24573.551133: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=005
56060     rcu_preempt-7     (    7) [007] d..2 24573.551138: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
56061           <...>-13157 (-----) [005] d..2 24573.551140: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
56062         rcuop/2-29    (   29) [005] d..2 24573.551142: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=004
56063         rcuop/2-29    (   29) [005] d..3 24573.551153: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=004
56064         rcuop/2-29    (   29) [005] d..2 24573.551158: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
56065           <...>-13154 (-----) [004] d..2 24573.551159: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/3 next_pid=37 next_prio=120
56066         rcuop/3-37    (   37) [004] d..2 24573.551176: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
56067           <...>-13296 (-----) [000] ...1 24573.551228: tracing_mark_write: E|13131
56068           <...>-13296 (-----) [000] ...1 24573.551232: tracing_mark_write: E|13131
56069           <...>-13296 (-----) [000] ...1 24573.551245: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56070           <...>-13296 (-----) [000] ...1 24573.551250: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56071           <...>-13296 (-----) [000] d.h1 24573.551928: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
56072           <...>-13296 (-----) [000] dnh2 24573.551938: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
56073           <...>-13296 (-----) [000] d..2 24573.551946: sched_switch: prev_comm=id.nn.benchmark prev_pid=13296 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
56074        DispSync-23904 (23896) [000] d..1 24573.551961: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
56075        DispSync-23904 (23896) [000] d..2 24573.551972: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
56076 id.nn.benchmark-13155 (13131) [001] d..2 24573.551982: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
56077        DispSync-23904 (23896) [000] d..2 24573.551985: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13296 next_prio=110
56078   sfEventThread-23906 (23896) [001] d..3 24573.552009: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
56079           <...>-13296 (-----) [000] ...1 24573.552018: tracing_mark_write: E|13131
56080           <...>-13296 (-----) [000] ...1 24573.552022: tracing_mark_write: E|13131
56081   sfEventThread-23906 (23896) [001] d..4 24573.552027: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
56082           <...>-13296 (-----) [000] d..2 24573.552035: sched_switch: prev_comm=id.nn.benchmark prev_pid=13296 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
56083   sfEventThread-23906 (23896) [001] d..2 24573.552040: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
56084  surfaceflinger-23896 (23896) [000] d..1 24573.552288: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
56085  surfaceflinger-23896 (23896) [000] d..2 24573.552300: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
56086 id.nn.benchmark-13155 (13131) [001] d..2 24573.552307: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
56087   sfEventThread-23906 (23896) [001] d..2 24573.552320: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
56088  surfaceflinger-23896 (23896) [000] ...1 24573.552429: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
56089  surfaceflinger-23896 (23896) [000] ...1 24573.552433: tracing_mark_write: E|23896
56090  surfaceflinger-23896 (23896) [000] .... 24573.552478: binder_transaction: transaction=1669992 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
56091  surfaceflinger-23896 (23896) [000] ...2 24573.552500: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
56092  surfaceflinger-23896 (23896) [000] d..4 24573.552508: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
56093 id.nn.benchmark-13156 (13131) [007] dnh1 24573.552524: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
56094 id.nn.benchmark-13156 (13131) [007] d..2 24573.552528: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
56095  surfaceflinger-23896 (23896) [000] d..2 24573.552530: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13296 next_prio=110
56096  HwBinder:598_3-633   (  598) [007] .... 24573.552533: binder_transaction_received: transaction=1669992
56097           <...>-13296 (-----) [000] ...1 24573.552551: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56098           <...>-13296 (-----) [000] ...1 24573.552556: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56099  HwBinder:598_3-633   (  598) [007] ...1 24573.552559: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
56100  HwBinder:598_3-633   (  598) [007] ...1 24573.552610: tracing_mark_write: B|598|HWCSession::PresentDisplay::
56101  HwBinder:598_3-633   (  598) [007] ...1 24573.552675: tracing_mark_write: B|598|HWDeviceDRM::Commit::
56102  HwBinder:598_3-633   (  598) [007] ...1 24573.552678: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
56103  HwBinder:598_3-633   (  598) [007] d..2 24573.552881: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
56104           <...>-13296 (-----) [000] dnh1 24573.552896: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
56105           <...>-13296 (-----) [000] d..2 24573.552903: sched_switch: prev_comm=id.nn.benchmark prev_pid=13296 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
56106  HwBinder:598_3-633   (  598) [007] ...1 24573.552916: tracing_mark_write: E|598
56107  HwBinder:598_3-633   (  598) [007] ...1 24573.552917: tracing_mark_write: E|598
56108  HwBinder:598_3-633   (  598) [007] ...1 24573.552939: tracing_mark_write: E|598
56109  HwBinder:598_3-633   (  598) [007] ...1 24573.552960: tracing_mark_write: E|598
56110  HwBinder:598_3-633   (  598) [007] .... 24573.552965: binder_transaction: transaction=1669993 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
56111  HwBinder:598_3-633   (  598) [007] d..2 24573.552970: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
56112  HwBinder:598_3-633   (  598) [007] .... 24573.552979: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
56113 id.nn.benchmark-13155 (13131) [001] dnh1 24573.552984: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
56114 id.nn.benchmark-13155 (13131) [001] d..2 24573.552990: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
56115  surfaceflinger-23896 (23896) [001] .... 24573.552995: binder_transaction_received: transaction=1669993
56116  HwBinder:598_3-633   (  598) [007] d..2 24573.553001: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
56117  surfaceflinger-23896 (23896) [001] d..2 24573.553244: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
56118 crtc_commit:111-253   (  253) [000] d..2 24573.553513: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13296 next_prio=110
56119           <...>-13296 (-----) [000] ...1 24573.553523: tracing_mark_write: E|13131
56120           <...>-13296 (-----) [000] ...1 24573.553527: tracing_mark_write: E|13131
56121           <...>-13296 (-----) [000] ...1 24573.553539: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56122           <...>-13296 (-----) [000] ...1 24573.553543: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56123           <...>-13296 (-----) [000] ...1 24573.553778: tracing_mark_write: E|13131
56124           <...>-13296 (-----) [000] ...1 24573.553782: tracing_mark_write: E|13131
56125           <...>-13296 (-----) [000] ...1 24573.553792: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56126           <...>-13296 (-----) [000] ...1 24573.553796: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56127           <...>-13296 (-----) [000] ...1 24573.554193: tracing_mark_write: E|13131
56128           <...>-13296 (-----) [000] ...1 24573.554197: tracing_mark_write: E|13131
56129           <...>-13296 (-----) [000] ...1 24573.554207: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56130           <...>-13296 (-----) [000] ...1 24573.554211: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56131           <...>-13296 (-----) [000] ...1 24573.554625: tracing_mark_write: E|13131
56132           <...>-13296 (-----) [000] ...1 24573.554629: tracing_mark_write: E|13131
56133           <...>-13296 (-----) [000] ...1 24573.554647: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56134           <...>-13296 (-----) [000] ...1 24573.554651: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56135           <...>-13296 (-----) [000] ...1 24573.554840: tracing_mark_write: E|13131
56136           <...>-13296 (-----) [000] ...1 24573.554844: tracing_mark_write: E|13131
56137           <...>-13296 (-----) [000] ...1 24573.554857: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56138           <...>-13296 (-----) [000] ...1 24573.554862: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56139           <...>-13296 (-----) [000] ...1 24573.554933: tracing_mark_write: E|13131
56140           <...>-13296 (-----) [000] ...1 24573.554936: tracing_mark_write: E|13131
56141           <...>-13296 (-----) [000] ...1 24573.554948: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
56142           <...>-13296 (-----) [000] ...1 24573.554952: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
56143           <...>-13296 (-----) [000] ...1 24573.555258: tracing_mark_write: E|13131
56144           <...>-13296 (-----) [000] ...1 24573.555261: tracing_mark_write: E|13131
56145           <...>-13296 (-----) [000] ...1 24573.555271: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
56146           <...>-13296 (-----) [000] ...1 24573.555275: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
56147           <...>-13296 (-----) [000] ...1 24573.555332: tracing_mark_write: E|13131
56148           <...>-13296 (-----) [000] ...1 24573.555335: tracing_mark_write: E|13131
56149           <...>-13296 (-----) [000] ...1 24573.555344: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
56150           <...>-13296 (-----) [000] ...1 24573.555348: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
56151           <...>-13296 (-----) [000] ...1 24573.555366: tracing_mark_write: E|13131
56152           <...>-13296 (-----) [000] ...1 24573.555369: tracing_mark_write: E|13131
56153           <...>-13296 (-----) [000] ...1 24573.555379: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
56154           <...>-13296 (-----) [000] ...1 24573.555382: tracing_mark_write: E|13131
56155           <...>-13296 (-----) [000] ...1 24573.555392: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
56156           <...>-13296 (-----) [000] ...1 24573.555397: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
56157           <...>-13296 (-----) [000] ...1 24573.556249: tracing_mark_write: E|13131
56158           <...>-13296 (-----) [000] ...1 24573.556252: tracing_mark_write: E|13131
56159           <...>-13296 (-----) [000] ...1 24573.556260: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56160           <...>-13296 (-----) [000] ...1 24573.556264: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56161           <...>-13296 (-----) [000] ...1 24573.556347: tracing_mark_write: E|13131
56162           <...>-13296 (-----) [000] ...1 24573.556350: tracing_mark_write: E|13131
56163           <...>-13296 (-----) [000] d..2 24573.556393: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
56164           <...>-13296 (-----) [000] d..3 24573.556404: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
56165           <...>-13296 (-----) [000] ...1 24573.556423: tracing_mark_write: E|13131
56166           <...>-13296 (-----) [000] d..1 24573.556428: sched_waking: comm=id.nn.benchmark pid=13295 prio=110 target_cpu=000
56167 id.nn.benchmark-13156 (13131) [007] dnh1 24573.556455: sched_wakeup: comm=id.nn.benchmark pid=13295 prio=110 target_cpu=007
56168 id.nn.benchmark-13156 (13131) [007] d..2 24573.556486: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13295 next_prio=110
56169           <...>-13296 (-----) [000] d.h3 24573.556487: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
56170           <...>-13295 (-----) [007] d..2 24573.556498: sched_switch: prev_comm=id.nn.benchmark prev_pid=13295 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
56171           <...>-13296 (-----) [000] d.h3 24573.556499: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
56172 id.nn.benchmark-13156 (13131) [007] dnh1 24573.556502: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
56173 id.nn.benchmark-13156 (13131) [007] d..2 24573.556504: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
56174           <...>-13296 (-----) [000] dnh4 24573.556505: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
56175         sugov:4-560   (  560) [007] d..2 24573.556508: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
56176           <...>-13296 (-----) [000] d..2 24573.556511: sched_switch: prev_comm=id.nn.benchmark prev_pid=13296 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
56177         sugov:0-559   (  559) [000] d..2 24573.556519: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
56178     logd.writer-563   (  555) [000] d..2 24573.556570: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13296 next_prio=110
56179           <...>-13296 (-----) [000] ...1 24573.556589: tracing_mark_write: E|13131
56180           <...>-13296 (-----) [000] d..1 24573.556800: sched_waking: comm=id.nn.benchmark pid=13295 prio=110 target_cpu=007
56181 id.nn.benchmark-13156 (13131) [007] dnh1 24573.556814: sched_wakeup: comm=id.nn.benchmark pid=13295 prio=110 target_cpu=007
56182 id.nn.benchmark-13156 (13131) [007] d..2 24573.556817: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13295 next_prio=110
56183           <...>-13295 (-----) [007] d..2 24573.556852: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
56184           <...>-13295 (-----) [007] d..1 24573.556887: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
56185           <...>-13295 (-----) [007] dn.2 24573.556893: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
56186           <...>-13296 (-----) [000] d..2 24573.556895: sched_switch: prev_comm=id.nn.benchmark prev_pid=13296 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
56187           <...>-13295 (-----) [007] d..2 24573.556896: sched_switch: prev_comm=id.nn.benchmark prev_pid=13295 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
56188 id.nn.benchmark-13156 (13131) [000] d.h3 24573.556901: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
56189           <...>-13131 (-----) [007] d..2 24573.556902: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13295 next_prio=110
56190           <...>-13295 (-----) [007] d..1 24573.556932: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
56191           <...>-13295 (-----) [007] dn.2 24573.556935: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
56192           <...>-13295 (-----) [007] d..2 24573.556937: sched_switch: prev_comm=id.nn.benchmark prev_pid=13295 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
56193           <...>-13131 (-----) [007] ...1 24573.556948: tracing_mark_write: E|13131
56194           <...>-13131 (-----) [007] ...1 24573.556950: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
56195           <...>-13131 (-----) [007] ...1 24573.556953: tracing_mark_write: E|13131
56196           <...>-13131 (-----) [007] ...1 24573.556955: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
56197           <...>-13131 (-----) [007] ...1 24573.556957: tracing_mark_write: E|13131
56198           <...>-13131 (-----) [007] ...1 24573.557020: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
56199           <...>-13131 (-----) [007] ...1 24573.557039: tracing_mark_write: E|13131
56200           <...>-13131 (-----) [007] ...1 24573.557041: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
56201           <...>-13131 (-----) [007] ...1 24573.557044: tracing_mark_write: E|13131
56202           <...>-13131 (-----) [007] ...1 24573.557046: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
56203           <...>-13131 (-----) [007] ...1 24573.557048: tracing_mark_write: E|13131
56204           <...>-13131 (-----) [007] ...1 24573.557049: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
56205           <...>-13131 (-----) [007] ...1 24573.557106: tracing_mark_write: E|13131
56206           <...>-13131 (-----) [007] ...1 24573.557108: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
56207           <...>-13131 (-----) [007] d..2 24573.557113: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13295 next_prio=110
56208           <...>-13295 (-----) [007] d..2 24573.557133: sched_switch: prev_comm=id.nn.benchmark prev_pid=13295 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13297 next_prio=110
56209           <...>-13297 (-----) [007] d..2 24573.557284: sched_switch: prev_comm=id.nn.benchmark prev_pid=13297 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13298 next_prio=110
56210           <...>-13298 (-----) [007] ...1 24573.557294: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
56211           <...>-13298 (-----) [007] ...1 24573.557296: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
56212           <...>-13298 (-----) [007] ...1 24573.557347: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56213           <...>-13298 (-----) [007] ...1 24573.557349: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56214           <...>-13154 (-----) [004] d.s2 24573.557556: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
56215           <...>-13298 (-----) [007] d.s1 24573.557560: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
56216 id.nn.benchmark-13160 (13131) [002] d.h2 24573.557562: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
56217           <...>-13154 (-----) [004] d.s3 24573.557563: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
56218           <...>-13298 (-----) [007] dns2 24573.557582: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
56219 id.nn.benchmark-13160 (13131) [002] dnh3 24573.557587: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
56220           <...>-13298 (-----) [007] d..2 24573.557589: sched_switch: prev_comm=id.nn.benchmark prev_pid=13298 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
56221 id.nn.benchmark-13158 (13131) [006] d.h2 24573.557591: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
56222 id.nn.benchmark-13158 (13131) [006] d.h3 24573.557597: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
56223 id.nn.benchmark-13158 (13131) [006] d.h2 24573.557597: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
56224 id.nn.benchmark-13160 (13131) [002] d..2 24573.557598: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
56225  kworker/u16:15-18488 (18488) [007] d..2 24573.557603: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
56226         sugov:4-560   (  560) [007] d..2 24573.557606: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
56227 id.nn.benchmark-13156 (13131) [000] dnh1 24573.557608: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
56228     rcu_preempt-7     (    7) [007] d..2 24573.557609: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
56229 id.nn.benchmark-13156 (13131) [000] d..2 24573.557615: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
56230     rcu_preempt-7     (    7) [007] d..2 24573.557623: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
56231         sugov:0-559   (  559) [000] d..2 24573.557626: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
56232     rcu_preempt-7     (    7) [007] d..3 24573.557649: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
56233     migration/2-25    (   25) [002] d.h2 24573.557652: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
56234     rcu_preempt-7     (    7) [007] d..2 24573.557654: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
56235 id.nn.benchmark-13158 (13131) [006] d..2 24573.557655: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
56236         rcuop/6-61    (   61) [006] d..2 24573.557658: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=006
56237     migration/2-25    (   25) [002] d..2 24573.557659: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
56238         rcuop/0-10    (   10) [002] d..2 24573.557664: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
56239         rcuop/6-61    (   61) [006] d..3 24573.557666: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=006
56240         rcuop/6-61    (   61) [006] d..2 24573.557670: 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
56241         rcuop/7-69    (   69) [006] d..2 24573.557688: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
56242           <...>-13154 (-----) [004] dnh1 24573.557689: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
56243           <...>-13154 (-----) [004] d..2 24573.557691: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
56244         rcuop/1-21    (   21) [004] d..2 24573.557697: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
56245         rcuop/0-10    (   10) [002] d..2 24573.557738: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
56246  kworker/u16:15-18488 (18488) [007] d..2 24573.557739: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
56247     logd.writer-563   (  555) [002] d..2 24573.558066: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13298 next_prio=110
56248           <...>-13298 (-----) [002] d.h4 24573.558096: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
56249           <...>-13298 (-----) [002] d.h4 24573.558104: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
56250 id.nn.benchmark-13160 (13131) [007] dnh1 24573.558107: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
56251 id.nn.benchmark-13160 (13131) [007] d..2 24573.558110: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
56252         sugov:4-560   (  560) [007] d..2 24573.558113: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
56253           <...>-13298 (-----) [002] dnh5 24573.558114: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
56254           <...>-13298 (-----) [002] d..2 24573.558119: sched_switch: prev_comm=id.nn.benchmark prev_pid=13298 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
56255         sugov:0-559   (  559) [002] d..2 24573.558126: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13298 next_prio=110
56256           <...>-13298 (-----) [002] ...1 24573.559501: tracing_mark_write: E|13131
56257           <...>-13298 (-----) [002] ...1 24573.559505: tracing_mark_write: E|13131
56258           <...>-13298 (-----) [002] ...1 24573.559516: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56259           <...>-13298 (-----) [002] ...1 24573.559521: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56260 id.nn.benchmark-13156 (13131) [000] d.h4 24573.559917: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
56261 id.nn.benchmark-13156 (13131) [000] d.h5 24573.559935: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
56262 id.nn.benchmark-13156 (13131) [000] d.h4 24573.559938: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
56263           <...>-13298 (-----) [002] d..2 24573.559946: sched_switch: prev_comm=id.nn.benchmark prev_pid=13298 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
56264 id.nn.benchmark-13160 (13131) [007] dnh1 24573.559958: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
56265 id.nn.benchmark-13160 (13131) [007] d..2 24573.559960: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
56266  crtc_event:111-254   (  254) [002] d..2 24573.559966: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13298 next_prio=110
56267 id.nn.benchmark-13156 (13131) [000] d.h2 24573.559990: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
56268 id.nn.benchmark-13156 (13131) [000] d.h2 24573.560001: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
56269           <...>-13154 (-----) [004] dnh1 24573.560005: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
56270           <...>-13154 (-----) [004] d..2 24573.560008: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
56271 id.nn.benchmark-13156 (13131) [000] d.h3 24573.560009: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
56272         sugov:4-560   (  560) [004] d..2 24573.560011: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
56273           <...>-13298 (-----) [002] d..2 24573.560014: sched_switch: prev_comm=id.nn.benchmark prev_pid=13298 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
56274         sugov:0-559   (  559) [002] d..2 24573.560024: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13298 next_prio=110
56275 crtc_commit:111-253   (  253) [007] d..2 24573.560053: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
56276           <...>-13298 (-----) [002] ...1 24573.560263: tracing_mark_write: E|13131
56277           <...>-13298 (-----) [002] ...1 24573.560267: tracing_mark_write: E|13131
56278           <...>-13298 (-----) [002] ...1 24573.560283: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56279           <...>-13298 (-----) [002] ...1 24573.560287: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56280           <...>-13298 (-----) [002] ...1 24573.560622: tracing_mark_write: E|13131
56281           <...>-13298 (-----) [002] ...1 24573.560626: tracing_mark_write: E|13131
56282           <...>-13298 (-----) [002] ...1 24573.560636: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56283           <...>-13298 (-----) [002] ...1 24573.560640: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56284           <...>-13298 (-----) [002] ...1 24573.560866: tracing_mark_write: E|13131
56285           <...>-13298 (-----) [002] ...1 24573.560869: tracing_mark_write: E|13131
56286           <...>-13298 (-----) [002] ...1 24573.560879: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56287           <...>-13154 (-----) [004] d.s2 24573.560888: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
56288 id.nn.benchmark-13160 (13131) [007] d.s2 24573.560891: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
56289           <...>-13154 (-----) [004] d.s3 24573.560900: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
56290           <...>-13298 (-----) [002] dnh2 24573.560907: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
56291 id.nn.benchmark-13160 (13131) [007] d..2 24573.560907: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
56292           <...>-13298 (-----) [002] d..2 24573.560912: sched_switch: prev_comm=id.nn.benchmark prev_pid=13298 prev_prio=110 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
56293  crtc_event:111-254   (  254) [002] d..2 24573.560925: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13298 next_prio=110
56294           <...>-13298 (-----) [002] ...1 24573.560931: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56295  kworker/u16:15-18488 (18488) [007] d..2 24573.561113: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
56296           <...>-13298 (-----) [002] ...1 24573.561325: tracing_mark_write: E|13131
56297           <...>-13298 (-----) [002] ...1 24573.561329: tracing_mark_write: E|13131
56298           <...>-13298 (-----) [002] ...1 24573.561339: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56299           <...>-13298 (-----) [002] ...1 24573.561343: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56300           <...>-13298 (-----) [002] ...1 24573.561723: tracing_mark_write: E|13131
56301           <...>-13298 (-----) [002] ...1 24573.561728: tracing_mark_write: E|13131
56302           <...>-13298 (-----) [002] ...1 24573.561745: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56303           <...>-13298 (-----) [002] ...1 24573.561750: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56304           <...>-13298 (-----) [002] ...1 24573.561938: tracing_mark_write: E|13131
56305           <...>-13298 (-----) [002] ...1 24573.561942: tracing_mark_write: E|13131
56306           <...>-13298 (-----) [002] ...1 24573.561955: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56307           <...>-13298 (-----) [002] ...1 24573.561960: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56308           <...>-13298 (-----) [002] ...1 24573.562028: tracing_mark_write: E|13131
56309           <...>-13298 (-----) [002] ...1 24573.562031: tracing_mark_write: E|13131
56310           <...>-13298 (-----) [002] ...1 24573.562042: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
56311           <...>-13298 (-----) [002] ...1 24573.562047: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
56312 id.nn.benchmark-13156 (13131) [000] d.h4 24573.562266: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
56313 id.nn.benchmark-13156 (13131) [000] d.h5 24573.562284: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
56314           <...>-13298 (-----) [002] d..2 24573.562291: sched_switch: prev_comm=id.nn.benchmark prev_pid=13298 prev_prio=110 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
56315 id.nn.benchmark-13156 (13131) [000] d.h2 24573.562325: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
56316 id.nn.benchmark-13156 (13131) [000] d.h2 24573.562335: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
56317 id.nn.benchmark-13160 (13131) [007] dnh1 24573.562339: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
56318 id.nn.benchmark-13160 (13131) [007] d..2 24573.562343: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
56319 id.nn.benchmark-13156 (13131) [000] dnh3 24573.562344: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
56320         sugov:4-560   (  560) [007] d..2 24573.562347: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
56321 crtc_commit:111-253   (  253) [002] d..2 24573.562349: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13298 next_prio=110
56322 id.nn.benchmark-13156 (13131) [000] d..2 24573.562350: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
56323         sugov:0-559   (  559) [000] d..2 24573.562357: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
56324           <...>-13298 (-----) [002] ...1 24573.562391: tracing_mark_write: E|13131
56325           <...>-13298 (-----) [002] ...1 24573.562395: tracing_mark_write: E|13131
56326           <...>-13298 (-----) [002] ...1 24573.562405: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
56327           <...>-13298 (-----) [002] ...1 24573.562408: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
56328           <...>-13298 (-----) [002] ...1 24573.562452: tracing_mark_write: E|13131
56329           <...>-13298 (-----) [002] ...1 24573.562456: tracing_mark_write: E|13131
56330           <...>-13298 (-----) [002] ...1 24573.562465: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
56331           <...>-13298 (-----) [002] ...1 24573.562468: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
56332           <...>-13298 (-----) [002] ...1 24573.562483: tracing_mark_write: E|13131
56333           <...>-13298 (-----) [002] ...1 24573.562487: tracing_mark_write: E|13131
56334           <...>-13298 (-----) [002] ...1 24573.562497: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
56335           <...>-13298 (-----) [002] ...1 24573.562500: tracing_mark_write: E|13131
56336           <...>-13298 (-----) [002] ...1 24573.562508: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
56337           <...>-13298 (-----) [002] ...1 24573.562513: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
56338 id.nn.benchmark-13156 (13131) [000] d.h4 24573.562564: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
56339 id.nn.benchmark-13156 (13131) [000] d.h5 24573.562572: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
56340           <...>-13298 (-----) [002] d..2 24573.562582: sched_switch: prev_comm=id.nn.benchmark prev_pid=13298 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
56341  crtc_event:111-254   (  254) [002] d..2 24573.562593: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13298 next_prio=110
56342           <...>-13298 (-----) [002] ...1 24573.563386: tracing_mark_write: E|13131
56343           <...>-13298 (-----) [002] ...1 24573.563390: tracing_mark_write: E|13131
56344           <...>-13298 (-----) [002] ...1 24573.563398: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56345           <...>-13298 (-----) [002] ...1 24573.563401: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56346           <...>-13298 (-----) [002] ...1 24573.563484: tracing_mark_write: E|13131
56347           <...>-13298 (-----) [002] ...1 24573.563487: tracing_mark_write: E|13131
56348           <...>-13298 (-----) [002] d..2 24573.563522: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
56349           <...>-13298 (-----) [002] d..3 24573.563532: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
56350           <...>-13298 (-----) [002] ...1 24573.563549: tracing_mark_write: E|13131
56351           <...>-13298 (-----) [002] d..1 24573.563553: sched_waking: comm=id.nn.benchmark pid=13297 prio=110 target_cpu=007
56352 id.nn.benchmark-13160 (13131) [007] dnh1 24573.563569: sched_wakeup: comm=id.nn.benchmark pid=13297 prio=110 target_cpu=007
56353 id.nn.benchmark-13160 (13131) [007] d..2 24573.563572: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13297 next_prio=110
56354           <...>-13298 (-----) [002] ...1 24573.563578: tracing_mark_write: E|13131
56355           <...>-13297 (-----) [007] d..2 24573.563579: sched_switch: prev_comm=id.nn.benchmark prev_pid=13297 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
56356           <...>-13298 (-----) [002] d..1 24573.563767: sched_waking: comm=id.nn.benchmark pid=13297 prio=110 target_cpu=007
56357 id.nn.benchmark-13160 (13131) [007] dnh1 24573.563780: sched_wakeup: comm=id.nn.benchmark pid=13297 prio=110 target_cpu=007
56358 id.nn.benchmark-13160 (13131) [007] d..2 24573.563782: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13297 next_prio=110
56359           <...>-13298 (-----) [002] d..2 24573.563822: sched_switch: prev_comm=id.nn.benchmark prev_pid=13298 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
56360           <...>-13297 (-----) [007] d..1 24573.563834: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
56361           <...>-13297 (-----) [007] dn.2 24573.563839: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
56362           <...>-13297 (-----) [007] d..2 24573.563842: sched_switch: prev_comm=id.nn.benchmark prev_pid=13297 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
56363           <...>-13131 (-----) [007] d..2 24573.563847: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13297 next_prio=110
56364           <...>-13297 (-----) [007] d..1 24573.563872: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
56365           <...>-13297 (-----) [007] dn.2 24573.563875: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
56366           <...>-13297 (-----) [007] d..2 24573.563877: sched_switch: prev_comm=id.nn.benchmark prev_pid=13297 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
56367           <...>-13131 (-----) [007] ...1 24573.563885: tracing_mark_write: E|13131
56368           <...>-13131 (-----) [007] ...1 24573.563888: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
56369           <...>-13131 (-----) [007] ...1 24573.563890: tracing_mark_write: E|13131
56370           <...>-13131 (-----) [007] ...1 24573.563891: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
56371           <...>-13131 (-----) [007] ...1 24573.563893: tracing_mark_write: E|13131
56372     logd.writer-563   (  555) [002] d..2 24573.563921: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13297 next_prio=110
56373           <...>-13131 (-----) [007] ...1 24573.563954: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
56374           <...>-13131 (-----) [007] d..2 24573.563965: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
56375           <...>-13297 (-----) [002] d..2 24573.563971: sched_switch: prev_comm=id.nn.benchmark prev_pid=13297 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
56376           <...>-13131 (-----) [007] ...1 24573.563980: tracing_mark_write: E|13131
56377           <...>-13131 (-----) [007] ...1 24573.563982: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
56378           <...>-13131 (-----) [007] ...1 24573.563984: tracing_mark_write: E|13131
56379           <...>-13131 (-----) [007] ...1 24573.563985: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
56380           <...>-13131 (-----) [007] ...1 24573.563987: tracing_mark_write: E|13131
56381           <...>-13131 (-----) [007] ...1 24573.563989: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
56382 id.nn.benchmark-13160 (13131) [002] d.h3 24573.564002: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
56383 id.nn.benchmark-13160 (13131) [002] d.h4 24573.564005: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
56384 id.nn.benchmark-13160 (13131) [002] d.h4 24573.564013: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
56385           <...>-13131 (-----) [007] dnh1 24573.564018: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
56386 id.nn.benchmark-13160 (13131) [002] d.h5 24573.564021: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
56387           <...>-13131 (-----) [007] d..2 24573.564022: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
56388         sugov:4-560   (  560) [007] d..2 24573.564027: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
56389 id.nn.benchmark-13156 (13131) [000] d..2 24573.564030: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
56390         sugov:0-559   (  559) [000] d..2 24573.564038: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
56391           <...>-13131 (-----) [007] ...1 24573.564044: tracing_mark_write: E|13131
56392           <...>-13131 (-----) [007] ...1 24573.564046: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
56393           <...>-13131 (-----) [007] d..2 24573.564050: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13299 next_prio=110
56394           <...>-13299 (-----) [007] d..2 24573.564185: sched_switch: prev_comm=id.nn.benchmark prev_pid=13299 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13300 next_prio=110
56395           <...>-13300 (-----) [007] ...1 24573.564194: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
56396           <...>-13300 (-----) [007] ...1 24573.564196: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
56397           <...>-13300 (-----) [007] d.s1 24573.564222: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
56398           <...>-13300 (-----) [007] dns2 24573.564226: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
56399 id.nn.benchmark-13159 (13131) [003] d.h2 24573.564227: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
56400           <...>-13300 (-----) [007] d..2 24573.564229: sched_switch: prev_comm=id.nn.benchmark prev_pid=13300 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
56401     rcu_preempt-7     (    7) [007] d..2 24573.564236: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13300 next_prio=110
56402 id.nn.benchmark-13159 (13131) [003] dnh3 24573.564236: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
56403 id.nn.benchmark-13159 (13131) [003] d..2 24573.564245: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
56404           <...>-13300 (-----) [007] ...1 24573.564270: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56405           <...>-13300 (-----) [007] ...1 24573.564271: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56406<...>-33 ( 33) [003] d..2 24573.564304: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
56407 id.nn.benchmark-13156 (13131) [000] d.h1 24573.564376: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
56408 id.nn.benchmark-13156 (13131) [000] d.h2 24573.564391: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
56409     logd.writer-563   (  555) [003] d..2 24573.564398: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=DispSync next_pid=23904 next_prio=97
56410        DispSync-23904 (23896) [003] d..1 24573.564420: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
56411        DispSync-23904 (23896) [003] d..2 24573.564433: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
56412 id.nn.benchmark-13155 (13131) [001] d..2 24573.564442: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
56413        DispSync-23904 (23896) [003] d..2 24573.564448: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
56414  appEventThread-23905 (23896) [001] d..3 24573.564482: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
56415           <...>-13300 (-----) [007] dnh1 24573.564507: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
56416           <...>-13300 (-----) [007] d..2 24573.564532: sched_switch: prev_comm=id.nn.benchmark prev_pid=13300 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
56417  appEventThread-23905 (23896) [001] d.h3 24573.564532: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
56418  appEventThread-23905 (23896) [001] d.h3 24573.564541: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
56419<...>-24151 ( 24151) [007] dnh1 24573.564544: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
56420<...>-24151 ( 24151) [007] d..2 24573.564548: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
56421         sugov:4-560   (  560) [007] d..2 24573.564552: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
56422  appEventThread-23905 (23896) [001] d.h4 24573.564553: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
56423     logd.writer-563   (  555) [003] d..2 24573.564559: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
56424         sugov:0-559   (  559) [003] d..2 24573.564572: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
56425  appEventThread-23905 (23896) [001] d..2 24573.564577: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
56426     logd.writer-563   (  555) [003] d..2 24573.564684: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13300 next_prio=110
56427<...>-24151 ( 24151) [007] .... 24573.564749: binder_transaction: transaction=1669994 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
56428<...>-24151 ( 24151) [007] d..4 24573.564755: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
56429<...>-24151 ( 24151) [007] d..5 24573.564763: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
56430<...>-24151 ( 24151) [007] d..3 24573.564784: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
56431<...>-24151 ( 24151) [007] d..4 24573.564790: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
56432<...>-24151 ( 24151) [007] d..2 24573.564857: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
56433  Binder:23896_5-25989 (23896) [007] .... 24573.564862: binder_transaction_received: transaction=1669994
56434  Binder:23896_5-25989 (23896) [007] d..1 24573.564881: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
56435           <...>-13300 (-----) [003] dnh1 24573.564897: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
56436  Binder:23896_5-25989 (23896) [007] d..2 24573.564902: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
56437           <...>-13300 (-----) [003] d..2 24573.564903: sched_switch: prev_comm=id.nn.benchmark prev_pid=13300 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
56438  appEventThread-23905 (23896) [003] d..2 24573.564929: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13300 next_prio=110
56439    RenderThread-24437 (24151) [007] d..1 24573.564961: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
56440    RenderThread-24437 (24151) [007] d..2 24573.564967: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
56441    RenderThread-24437 (24151) [007] .... 24573.564999: binder_transaction: transaction=1669995 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
56442    RenderThread-24437 (24151) [007] d..4 24573.565002: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
56443    RenderThread-24437 (24151) [007] d..5 24573.565006: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
56444    RenderThread-24437 (24151) [007] d..2 24573.565010: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
56445  Binder:23896_5-25989 (23896) [007] .... 24573.565012: binder_transaction_received: transaction=1669995
56446  Binder:23896_5-25989 (23896) [007] .... 24573.565040: binder_transaction: transaction=1669996 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
56447  Binder:23896_5-25989 (23896) [007] d..2 24573.565045: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
56448  Binder:23896_5-25989 (23896) [007] d..3 24573.565050: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
56449  Binder:23896_5-25989 (23896) [007] d..2 24573.565059: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
56450    RenderThread-24437 (24151) [007] .... 24573.565060: binder_transaction_received: transaction=1669996
56451    RenderThread-24437 (24151) [007] d..2 24573.565668: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
56452<...>-24151 ( 24151) [007] d..2 24573.565704: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
56453 id.nn.benchmark-13159 (13131) [007] d.h1 24573.565767: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
56454 id.nn.benchmark-13159 (13131) [007] d.h2 24573.565773: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
56455 id.nn.benchmark-13159 (13131) [007] dnh2 24573.565775: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
56456 id.nn.benchmark-13159 (13131) [007] d..2 24573.565779: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
56457    RenderThread-24437 (24151) [007] .... 24573.565865: binder_transaction: transaction=1669997 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
56458    RenderThread-24437 (24151) [007] d..4 24573.565870: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
56459    RenderThread-24437 (24151) [007] d..5 24573.565876: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
56460    RenderThread-24437 (24151) [007] d..2 24573.565880: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
56461  Binder:23896_5-25989 (23896) [007] .... 24573.565882: binder_transaction_received: transaction=1669997
56462 id.nn.benchmark-13156 (13131) [000] d.h2 24573.565892: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
56463 id.nn.benchmark-13156 (13131) [000] d.h3 24573.565911: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
56464           <...>-13300 (-----) [003] d..2 24573.565922: sched_switch: prev_comm=id.nn.benchmark prev_pid=13300 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
56465  Binder:23896_5-25989 (23896) [007] .... 24573.565942: binder_transaction: transaction=1669998 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
56466  Binder:23896_5-25989 (23896) [007] d..2 24573.565944: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
56467 id.nn.benchmark-13156 (13131) [000] d.h2 24573.565949: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
56468  Binder:23896_5-25989 (23896) [007] d..3 24573.565953: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
56469 id.nn.benchmark-13156 (13131) [000] d.h2 24573.565956: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
56470 kgsl_worker_thr-246   (  246) [003] d..2 24573.565958: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
56471  Binder:23896_5-25989 (23896) [007] dnh1 24573.565960: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
56472 id.nn.benchmark-13156 (13131) [000] dnh3 24573.565965: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
56473  Binder:23896_5-25989 (23896) [007] d..2 24573.565966: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
56474         sugov:4-560   (  560) [007] d..2 24573.565970: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
56475 id.nn.benchmark-13156 (13131) [000] d..2 24573.565972: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
56476  Binder:23896_5-25989 (23896) [007] d..2 24573.565976: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
56477    RenderThread-24437 (24151) [007] .... 24573.565977: binder_transaction_received: transaction=1669998
56478         sugov:0-559   (  559) [000] d..2 24573.565979: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
56479    RenderThread-24437 (24151) [007] d.h1 24573.565989: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
56480 kgsl_worker_thr-246   (  246) [003] d..2 24573.565999: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13300 next_prio=110
56481    RenderThread-24437 (24151) [007] d..2 24573.566009: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
56482  kworker/u16:15-18488 (18488) [007] d..2 24573.566131: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
56483           <...>-13300 (-----) [003] ...1 24573.566199: tracing_mark_write: E|13131
56484           <...>-13300 (-----) [003] ...1 24573.566203: tracing_mark_write: E|13131
56485           <...>-13300 (-----) [003] ...1 24573.566219: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56486           <...>-13300 (-----) [003] ...1 24573.566224: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56487           <...>-13300 (-----) [003] ...1 24573.566934: tracing_mark_write: E|13131
56488           <...>-13300 (-----) [003] ...1 24573.566938: tracing_mark_write: E|13131
56489           <...>-13300 (-----) [003] ...1 24573.566958: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56490           <...>-13300 (-----) [003] ...1 24573.566963: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56491           <...>-13300 (-----) [003] ...1 24573.567295: tracing_mark_write: E|13131
56492           <...>-13300 (-----) [003] ...1 24573.567299: tracing_mark_write: E|13131
56493           <...>-13300 (-----) [003] ...1 24573.567312: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56494           <...>-13300 (-----) [003] ...1 24573.567316: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56495           <...>-13154 (-----) [004] d.s2 24573.567555: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
56496 id.nn.benchmark-13156 (13131) [000] d.s2 24573.567565: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
56497           <...>-13154 (-----) [004] d.s3 24573.567566: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
56498 id.nn.benchmark-13159 (13131) [007] d..2 24573.567572: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
56499           <...>-13300 (-----) [003] ...1 24573.567574: tracing_mark_write: E|13131
56500           <...>-13300 (-----) [003] ...1 24573.567578: tracing_mark_write: E|13131
56501           <...>-13300 (-----) [003] ...1 24573.567589: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56502  kworker/u16:15-18488 (18488) [007] d.h3 24573.567591: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
56503           <...>-13300 (-----) [003] ...1 24573.567593: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56504  kworker/u16:15-18488 (18488) [007] d..2 24573.567801: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
56505     rcu_preempt-7     (    7) [007] d..2 24573.567804: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=005
56506     rcu_preempt-7     (    7) [007] d..3 24573.567818: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=005
56507           <...>-13157 (-----) [005] d..2 24573.567820: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
56508     rcu_preempt-7     (    7) [007] d..2 24573.567826: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
56509         rcuop/2-29    (   29) [005] d..2 24573.567830: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
56510           <...>-13300 (-----) [003] d.s2 24573.567832: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
56511 id.nn.benchmark-13159 (13131) [007] d.h1 24573.567858: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
56512 id.nn.benchmark-13159 (13131) [007] dnh1 24573.567859: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
56513 id.nn.benchmark-13159 (13131) [007] d..2 24573.567862: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
56514  kworker/u16:15-18488 (18488) [007] d..2 24573.567867: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
56515           <...>-13300 (-----) [003] ...1 24573.568046: tracing_mark_write: E|13131
56516           <...>-13300 (-----) [003] ...1 24573.568050: tracing_mark_write: E|13131
56517           <...>-13300 (-----) [003] ...1 24573.568061: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56518           <...>-13300 (-----) [003] ...1 24573.568065: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56519           <...>-13300 (-----) [003] d.h1 24573.568382: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
56520           <...>-13300 (-----) [003] dnh2 24573.568392: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
56521           <...>-13300 (-----) [003] d..2 24573.568400: sched_switch: prev_comm=id.nn.benchmark prev_pid=13300 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
56522        DispSync-23904 (23896) [003] d..1 24573.568414: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
56523        DispSync-23904 (23896) [003] d..2 24573.568425: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
56524 id.nn.benchmark-13155 (13131) [001] d..2 24573.568434: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
56525        DispSync-23904 (23896) [003] d..2 24573.568439: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13300 next_prio=110
56526   sfEventThread-23906 (23896) [001] d..3 24573.568466: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
56527   sfEventThread-23906 (23896) [001] d..4 24573.568484: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
56528           <...>-13300 (-----) [003] d..2 24573.568493: sched_switch: prev_comm=id.nn.benchmark prev_pid=13300 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
56529   sfEventThread-23906 (23896) [001] d..2 24573.568498: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
56530  surfaceflinger-23896 (23896) [003] d..1 24573.568754: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
56531  surfaceflinger-23896 (23896) [003] d..2 24573.568766: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
56532 id.nn.benchmark-13155 (13131) [001] d..2 24573.568773: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
56533   sfEventThread-23906 (23896) [001] d..2 24573.568789: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
56534  surfaceflinger-23896 (23896) [003] ...1 24573.568898: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
56535  surfaceflinger-23896 (23896) [003] ...1 24573.568901: tracing_mark_write: E|23896
56536  surfaceflinger-23896 (23896) [003] .... 24573.568946: binder_transaction: transaction=1669999 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
56537  surfaceflinger-23896 (23896) [003] ...2 24573.568968: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
56538  surfaceflinger-23896 (23896) [003] d..4 24573.568975: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
56539 id.nn.benchmark-13159 (13131) [007] dnh1 24573.568990: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
56540 id.nn.benchmark-13159 (13131) [007] d..2 24573.568993: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
56541  surfaceflinger-23896 (23896) [003] d..2 24573.568998: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13300 next_prio=110
56542  HwBinder:598_3-633   (  598) [007] .... 24573.568998: binder_transaction_received: transaction=1669999
56543  HwBinder:598_3-633   (  598) [007] ...1 24573.569025: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
56544           <...>-13300 (-----) [003] ...1 24573.569037: tracing_mark_write: E|13131
56545           <...>-13300 (-----) [003] ...1 24573.569042: tracing_mark_write: E|13131
56546           <...>-13300 (-----) [003] ...1 24573.569060: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56547           <...>-13300 (-----) [003] ...1 24573.569064: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56548  HwBinder:598_3-633   (  598) [007] ...1 24573.569078: tracing_mark_write: B|598|HWCSession::PresentDisplay::
56549  HwBinder:598_3-633   (  598) [007] ...1 24573.569142: tracing_mark_write: B|598|HWDeviceDRM::Commit::
56550  HwBinder:598_3-633   (  598) [007] ...1 24573.569146: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
56551           <...>-13300 (-----) [003] ...1 24573.569256: tracing_mark_write: E|13131
56552           <...>-13300 (-----) [003] ...1 24573.569260: tracing_mark_write: E|13131
56553           <...>-13300 (-----) [003] ...1 24573.569273: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56554           <...>-13300 (-----) [003] ...1 24573.569277: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56555           <...>-13300 (-----) [003] ...1 24573.569348: tracing_mark_write: E|13131
56556  HwBinder:598_3-633   (  598) [007] d..2 24573.569348: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
56557           <...>-13300 (-----) [003] ...1 24573.569351: tracing_mark_write: E|13131
56558           <...>-13300 (-----) [003] dnh1 24573.569366: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
56559           <...>-13300 (-----) [003] d..2 24573.569374: sched_switch: prev_comm=id.nn.benchmark prev_pid=13300 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
56560  HwBinder:598_3-633   (  598) [007] ...1 24573.569387: tracing_mark_write: E|598
56561  HwBinder:598_3-633   (  598) [007] ...1 24573.569388: tracing_mark_write: E|598
56562  HwBinder:598_3-633   (  598) [007] ...1 24573.569411: tracing_mark_write: E|598
56563  HwBinder:598_3-633   (  598) [007] ...1 24573.569432: tracing_mark_write: E|598
56564  HwBinder:598_3-633   (  598) [007] .... 24573.569438: binder_transaction: transaction=1670000 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
56565  HwBinder:598_3-633   (  598) [007] d..2 24573.569444: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
56566  HwBinder:598_3-633   (  598) [007] .... 24573.569454: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
56567 id.nn.benchmark-13156 (13131) [000] dnh1 24573.569460: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
56568 id.nn.benchmark-13156 (13131) [000] d..2 24573.569467: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
56569  surfaceflinger-23896 (23896) [000] .... 24573.569473: binder_transaction_received: transaction=1670000
56570  HwBinder:598_3-633   (  598) [007] d..2 24573.569478: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
56571  surfaceflinger-23896 (23896) [000] d..2 24573.569739: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
56572 crtc_commit:111-253   (  253) [003] d..2 24573.569985: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13300 next_prio=110
56573           <...>-13300 (-----) [003] ...1 24573.569993: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
56574           <...>-13300 (-----) [003] ...1 24573.569998: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
56575           <...>-13300 (-----) [003] ...1 24573.570295: tracing_mark_write: E|13131
56576           <...>-13300 (-----) [003] ...1 24573.570299: tracing_mark_write: E|13131
56577           <...>-13300 (-----) [003] ...1 24573.570310: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
56578           <...>-13300 (-----) [003] ...1 24573.570314: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
56579           <...>-13300 (-----) [003] ...1 24573.570367: tracing_mark_write: E|13131
56580           <...>-13300 (-----) [003] ...1 24573.570370: tracing_mark_write: E|13131
56581           <...>-13300 (-----) [003] ...1 24573.570378: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
56582           <...>-13300 (-----) [003] ...1 24573.570382: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
56583           <...>-13300 (-----) [003] ...1 24573.570397: tracing_mark_write: E|13131
56584           <...>-13300 (-----) [003] ...1 24573.570400: tracing_mark_write: E|13131
56585           <...>-13300 (-----) [003] ...1 24573.570410: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
56586           <...>-13300 (-----) [003] ...1 24573.570413: tracing_mark_write: E|13131
56587           <...>-13300 (-----) [003] ...1 24573.570423: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
56588           <...>-13300 (-----) [003] ...1 24573.570428: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
56589           <...>-13154 (-----) [004] d.s2 24573.570888: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
56590           <...>-13154 (-----) [004] d.s3 24573.570898: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
56591 id.nn.benchmark-13159 (13131) [007] d..2 24573.570904: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
56592  kworker/u16:15-18488 (18488) [007] d..2 24573.571127: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
56593           <...>-13300 (-----) [003] ...1 24573.571312: tracing_mark_write: E|13131
56594           <...>-13300 (-----) [003] ...1 24573.571316: tracing_mark_write: E|13131
56595           <...>-13300 (-----) [003] ...1 24573.571325: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56596           <...>-13300 (-----) [003] ...1 24573.571329: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56597           <...>-13300 (-----) [003] ...1 24573.571413: tracing_mark_write: E|13131
56598           <...>-13300 (-----) [003] ...1 24573.571416: tracing_mark_write: E|13131
56599           <...>-13300 (-----) [003] d..2 24573.571468: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
56600           <...>-13300 (-----) [003] d..3 24573.571477: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
56601           <...>-13300 (-----) [003] ...1 24573.571499: tracing_mark_write: E|13131
56602           <...>-13300 (-----) [003] d..1 24573.571505: sched_waking: comm=id.nn.benchmark pid=13299 prio=110 target_cpu=007
56603 id.nn.benchmark-13159 (13131) [007] dnh1 24573.571522: sched_wakeup: comm=id.nn.benchmark pid=13299 prio=110 target_cpu=007
56604 id.nn.benchmark-13159 (13131) [007] d..2 24573.571525: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13299 next_prio=110
56605           <...>-13300 (-----) [003] ...1 24573.571531: tracing_mark_write: E|13131
56606           <...>-13299 (-----) [007] d..2 24573.571534: sched_switch: prev_comm=id.nn.benchmark prev_pid=13299 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
56607           <...>-13300 (-----) [003] d..1 24573.571753: sched_waking: comm=id.nn.benchmark pid=13299 prio=110 target_cpu=007
56608 id.nn.benchmark-13159 (13131) [007] dnh1 24573.571766: sched_wakeup: comm=id.nn.benchmark pid=13299 prio=110 target_cpu=007
56609 id.nn.benchmark-13159 (13131) [007] d..2 24573.571768: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13299 next_prio=110
56610           <...>-13300 (-----) [003] d..2 24573.571819: sched_switch: prev_comm=id.nn.benchmark prev_pid=13300 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
56611           <...>-13299 (-----) [007] d..1 24573.571840: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
56612           <...>-13299 (-----) [007] dn.2 24573.571847: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
56613           <...>-13299 (-----) [007] d..2 24573.571849: sched_switch: prev_comm=id.nn.benchmark prev_pid=13299 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
56614           <...>-13131 (-----) [007] d..2 24573.571856: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13299 next_prio=110
56615           <...>-13299 (-----) [007] d..1 24573.571887: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
56616           <...>-13299 (-----) [007] dn.2 24573.571890: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
56617           <...>-13299 (-----) [007] d..2 24573.571892: sched_switch: prev_comm=id.nn.benchmark prev_pid=13299 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
56618           <...>-13131 (-----) [007] ...1 24573.571902: tracing_mark_write: E|13131
56619           <...>-13131 (-----) [007] ...1 24573.571905: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
56620           <...>-13131 (-----) [007] ...1 24573.571907: tracing_mark_write: E|13131
56621           <...>-13131 (-----) [007] ...1 24573.571909: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
56622           <...>-13131 (-----) [007] ...1 24573.571911: tracing_mark_write: E|13131
56623     logd.writer-563   (  555) [003] d..2 24573.571935: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13299 next_prio=110
56624           <...>-13131 (-----) [007] ...1 24573.571974: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
56625           <...>-13131 (-----) [007] d..2 24573.571987: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
56626           <...>-13299 (-----) [003] d..2 24573.571996: sched_switch: prev_comm=id.nn.benchmark prev_pid=13299 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
56627           <...>-13131 (-----) [007] ...1 24573.572005: tracing_mark_write: E|13131
56628           <...>-13131 (-----) [007] ...1 24573.572007: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
56629           <...>-13131 (-----) [007] ...1 24573.572009: tracing_mark_write: E|13131
56630           <...>-13131 (-----) [007] ...1 24573.572011: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
56631           <...>-13131 (-----) [007] ...1 24573.572013: tracing_mark_write: E|13131
56632           <...>-13131 (-----) [007] ...1 24573.572015: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
56633 id.nn.benchmark-13159 (13131) [003] d.h3 24573.572029: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
56634 id.nn.benchmark-13159 (13131) [003] d.h4 24573.572033: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
56635 id.nn.benchmark-13159 (13131) [003] d.h4 24573.572041: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
56636           <...>-13131 (-----) [007] dnh1 24573.572045: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
56637           <...>-13131 (-----) [007] d..2 24573.572049: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
56638 id.nn.benchmark-13159 (13131) [003] d.h5 24573.572049: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
56639         sugov:4-560   (  560) [007] d..2 24573.572054: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
56640 id.nn.benchmark-13156 (13131) [000] d..2 24573.572058: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
56641         sugov:0-559   (  559) [000] d..2 24573.572067: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
56642           <...>-13131 (-----) [007] ...1 24573.572089: tracing_mark_write: E|13131
56643           <...>-13131 (-----) [007] ...1 24573.572090: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
56644           <...>-13131 (-----) [007] d..2 24573.572094: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13301 next_prio=110
56645           <...>-13301 (-----) [007] d..2 24573.572251: sched_switch: prev_comm=id.nn.benchmark prev_pid=13301 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13302 next_prio=110
56646           <...>-13302 (-----) [007] ...1 24573.572261: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
56647           <...>-13302 (-----) [007] ...1 24573.572263: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
56648           <...>-13302 (-----) [007] ...1 24573.572318: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56649           <...>-13302 (-----) [007] ...1 24573.572319: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56650           <...>-13302 (-----) [007] ...1 24573.573179: tracing_mark_write: E|13131
56651           <...>-13302 (-----) [007] ...1 24573.573180: tracing_mark_write: E|13131
56652           <...>-13302 (-----) [007] ...1 24573.573184: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56653           <...>-13302 (-----) [007] ...1 24573.573186: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56654           <...>-13302 (-----) [007] ...1 24573.573555: tracing_mark_write: E|13131
56655           <...>-13302 (-----) [007] ...1 24573.573556: tracing_mark_write: E|13131
56656           <...>-13302 (-----) [007] ...1 24573.573561: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56657           <...>-13302 (-----) [007] ...1 24573.573563: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56658           <...>-13302 (-----) [007] ...1 24573.573775: tracing_mark_write: E|13131
56659           <...>-13302 (-----) [007] ...1 24573.573776: tracing_mark_write: E|13131
56660           <...>-13302 (-----) [007] ...1 24573.573779: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56661           <...>-13302 (-----) [007] ...1 24573.573781: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56662           <...>-13302 (-----) [007] ...1 24573.573947: tracing_mark_write: E|13131
56663           <...>-13302 (-----) [007] ...1 24573.573948: tracing_mark_write: E|13131
56664           <...>-13302 (-----) [007] ...1 24573.573951: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56665           <...>-13302 (-----) [007] ...1 24573.573952: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56666           <...>-13154 (-----) [004] d.s2 24573.574222: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
56667           <...>-13302 (-----) [007] d.s1 24573.574226: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
56668 id.nn.benchmark-13159 (13131) [003] d.h2 24573.574231: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
56669           <...>-13154 (-----) [004] d.s3 24573.574231: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
56670           <...>-13302 (-----) [007] dns2 24573.574235: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
56671 id.nn.benchmark-13159 (13131) [003] dnh3 24573.574237: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
56672           <...>-13302 (-----) [007] d..2 24573.574245: sched_switch: prev_comm=id.nn.benchmark prev_pid=13302 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
56673 id.nn.benchmark-13159 (13131) [003] d..2 24573.574249: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
56674<...>-33 ( 33) [003] d.h3 24573.574299: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
56675  kworker/u16:15-18488 (18488) [007] d..2 24573.574299: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
56676     rcu_preempt-7     (    7) [007] d..2 24573.574302: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
56677<...>-33 ( 33) [003] d.h3 24573.574308: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
56678<...>-33 ( 33) [003] d.h4 24573.574318: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
56679     rcu_preempt-7     (    7) [007] dnh2 24573.574319: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
56680     rcu_preempt-7     (    7) [007] d..2 24573.574322: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
56681<...>-33 ( 33) [003] d.h2 24573.574325: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
56682         sugov:4-560   (  560) [007] d..2 24573.574326: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
56683     rcu_preempt-7     (    7) [007] d..2 24573.574327: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
56684<...>-33 ( 33) [003] d..2 24573.574331: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
56685     rcu_preempt-7     (    7) [007] d..3 24573.574338: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
56686         sugov:0-559   (  559) [003] d..2 24573.574339: 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
56687     rcu_preempt-7     (    7) [007] d..2 24573.574343: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13302 next_prio=110
56688         rcuop/0-10    (   10) [003] d..2 24573.574343: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
56689 id.nn.benchmark-13158 (13131) [006] d..2 24573.574344: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
56690         rcuop/6-61    (   61) [006] d..2 24573.574347: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=006
56691         rcuop/6-61    (   61) [006] d..3 24573.574356: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=006
56692         rcuop/6-61    (   61) [006] d..2 24573.574360: 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
56693           <...>-13154 (-----) [004] dnh1 24573.574368: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
56694         rcuop/7-69    (   69) [006] d..2 24573.574371: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
56695           <...>-13154 (-----) [004] d..2 24573.574371: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
56696         rcuop/1-21    (   21) [004] d..2 24573.574377: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
56697         rcuop/0-10    (   10) [003] d..2 24573.574406: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
56698     logd.writer-563   (  555) [003] d..2 24573.574760: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
56699           <...>-13302 (-----) [007] ...1 24573.574824: tracing_mark_write: E|13131
56700           <...>-13302 (-----) [007] ...1 24573.574826: tracing_mark_write: E|13131
56701           <...>-13302 (-----) [007] ...1 24573.574830: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56702           <...>-13302 (-----) [007] ...1 24573.574832: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56703           <...>-13302 (-----) [007] ...1 24573.575127: tracing_mark_write: E|13131
56704           <...>-13302 (-----) [007] ...1 24573.575128: tracing_mark_write: E|13131
56705           <...>-13302 (-----) [007] ...1 24573.575135: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56706           <...>-13302 (-----) [007] ...1 24573.575136: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56707           <...>-13302 (-----) [007] ...1 24573.575297: tracing_mark_write: E|13131
56708           <...>-13302 (-----) [007] ...1 24573.575298: tracing_mark_write: E|13131
56709           <...>-13302 (-----) [007] ...1 24573.575303: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56710           <...>-13302 (-----) [007] ...1 24573.575304: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56711           <...>-13302 (-----) [007] ...1 24573.575361: tracing_mark_write: E|13131
56712           <...>-13302 (-----) [007] ...1 24573.575362: tracing_mark_write: E|13131
56713           <...>-13302 (-----) [007] ...1 24573.575365: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
56714           <...>-13302 (-----) [007] ...1 24573.575367: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
56715           <...>-13302 (-----) [007] ...1 24573.575499: tracing_mark_write: E|13131
56716           <...>-13302 (-----) [007] ...1 24573.575500: tracing_mark_write: E|13131
56717           <...>-13302 (-----) [007] ...1 24573.575503: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
56718           <...>-13302 (-----) [007] ...1 24573.575505: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
56719           <...>-13302 (-----) [007] ...1 24573.575523: tracing_mark_write: E|13131
56720           <...>-13302 (-----) [007] ...1 24573.575524: tracing_mark_write: E|13131
56721           <...>-13302 (-----) [007] ...1 24573.575527: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
56722           <...>-13302 (-----) [007] ...1 24573.575528: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
56723           <...>-13302 (-----) [007] ...1 24573.575534: tracing_mark_write: E|13131
56724           <...>-13302 (-----) [007] ...1 24573.575535: tracing_mark_write: E|13131
56725           <...>-13302 (-----) [007] ...1 24573.575539: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
56726           <...>-13302 (-----) [007] ...1 24573.575540: tracing_mark_write: E|13131
56727           <...>-13302 (-----) [007] ...1 24573.575545: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
56728           <...>-13302 (-----) [007] ...1 24573.575547: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
56729           <...>-13302 (-----) [007] ...1 24573.575852: tracing_mark_write: E|13131
56730           <...>-13302 (-----) [007] ...1 24573.575854: tracing_mark_write: E|13131
56731           <...>-13302 (-----) [007] ...1 24573.575856: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56732           <...>-13302 (-----) [007] ...1 24573.575857: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56733           <...>-13302 (-----) [007] ...1 24573.575927: tracing_mark_write: E|13131
56734           <...>-13302 (-----) [007] ...1 24573.575928: tracing_mark_write: E|13131
56735           <...>-13302 (-----) [007] d..2 24573.575944: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
56736 id.nn.benchmark-13159 (13131) [003] d.h1 24573.575959: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
56737           <...>-13302 (-----) [007] ...1 24573.575959: tracing_mark_write: E|13131
56738           <...>-13302 (-----) [007] d..1 24573.575961: sched_waking: comm=id.nn.benchmark pid=13301 prio=110 target_cpu=007
56739           <...>-13302 (-----) [007] dn.2 24573.575966: sched_wakeup: comm=id.nn.benchmark pid=13301 prio=110 target_cpu=007
56740           <...>-13302 (-----) [007] d..2 24573.575968: sched_switch: prev_comm=id.nn.benchmark prev_pid=13302 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13301 next_prio=110
56741           <...>-13301 (-----) [007] d..2 24573.575974: sched_switch: prev_comm=id.nn.benchmark prev_pid=13301 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13302 next_prio=110
56742           <...>-13302 (-----) [007] ...1 24573.575979: tracing_mark_write: E|13131
56743           <...>-13302 (-----) [007] d..1 24573.576082: sched_waking: comm=id.nn.benchmark pid=13301 prio=110 target_cpu=007
56744           <...>-13302 (-----) [007] dn.2 24573.576086: sched_wakeup: comm=id.nn.benchmark pid=13301 prio=110 target_cpu=007
56745           <...>-13302 (-----) [007] d..2 24573.576088: sched_switch: prev_comm=id.nn.benchmark prev_pid=13302 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13301 next_prio=110
56746           <...>-13301 (-----) [007] d..1 24573.576131: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
56747           <...>-13301 (-----) [007] dn.2 24573.576136: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
56748           <...>-13301 (-----) [007] d..2 24573.576138: sched_switch: prev_comm=id.nn.benchmark prev_pid=13301 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
56749           <...>-13131 (-----) [007] d..2 24573.576143: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13301 next_prio=110
56750           <...>-13301 (-----) [007] d..1 24573.576165: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
56751           <...>-13301 (-----) [007] dn.2 24573.576169: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
56752           <...>-13301 (-----) [007] d..2 24573.576171: sched_switch: prev_comm=id.nn.benchmark prev_pid=13301 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
56753           <...>-13131 (-----) [007] ...1 24573.576178: tracing_mark_write: E|13131
56754           <...>-13131 (-----) [007] ...1 24573.576180: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
56755           <...>-13131 (-----) [007] ...1 24573.576182: tracing_mark_write: E|13131
56756           <...>-13131 (-----) [007] ...1 24573.576184: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
56757           <...>-13131 (-----) [007] ...1 24573.576185: tracing_mark_write: E|13131
56758           <...>-13131 (-----) [007] ...1 24573.576246: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
56759           <...>-13131 (-----) [007] ...1 24573.576263: tracing_mark_write: E|13131
56760           <...>-13131 (-----) [007] ...1 24573.576265: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
56761           <...>-13131 (-----) [007] ...1 24573.576267: tracing_mark_write: E|13131
56762           <...>-13131 (-----) [007] ...1 24573.576268: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
56763           <...>-13131 (-----) [007] ...1 24573.576270: tracing_mark_write: E|13131
56764           <...>-13131 (-----) [007] ...1 24573.576272: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
56765           <...>-13131 (-----) [007] ...1 24573.576313: tracing_mark_write: E|13131
56766           <...>-13131 (-----) [007] ...1 24573.576315: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
56767           <...>-13131 (-----) [007] d..2 24573.576319: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13301 next_prio=110
56768           <...>-13301 (-----) [007] d..2 24573.576335: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
56769           <...>-13301 (-----) [007] d..3 24573.576344: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
56770 id.nn.benchmark-13158 (13131) [006] d..2 24573.576350: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
56771         rcuop/6-61    (   61) [006] d..2 24573.576353: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
56772           <...>-13301 (-----) [007] d..2 24573.576354: sched_switch: prev_comm=id.nn.benchmark prev_pid=13301 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13302 next_prio=110
56773           <...>-13302 (-----) [007] d..2 24573.576366: sched_switch: prev_comm=id.nn.benchmark prev_pid=13302 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13303 next_prio=110
56774 id.nn.benchmark-13156 (13131) [000] d.h4 24573.576398: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
56775 id.nn.benchmark-13156 (13131) [000] d.h4 24573.576423: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
56776           <...>-13303 (-----) [007] dnh1 24573.576424: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
56777           <...>-13303 (-----) [007] d..2 24573.576430: sched_switch: prev_comm=id.nn.benchmark prev_pid=13303 prev_prio=110 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
56778 id.nn.benchmark-13156 (13131) [000] d.h5 24573.576433: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
56779  crtc_event:111-254   (  254) [007] d..2 24573.576441: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13303 next_prio=110
56780 id.nn.benchmark-13159 (13131) [003] d..2 24573.576442: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
56781 id.nn.benchmark-13156 (13131) [000] d.h2 24573.576469: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
56782 id.nn.benchmark-13156 (13131) [000] d.h2 24573.576476: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
56783           <...>-13303 (-----) [007] dnh1 24573.576480: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
56784           <...>-13303 (-----) [007] d..2 24573.576484: sched_switch: prev_comm=id.nn.benchmark prev_pid=13303 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
56785 id.nn.benchmark-13156 (13131) [000] dnh3 24573.576485: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
56786         sugov:4-560   (  560) [007] d..2 24573.576487: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13303 next_prio=110
56787 id.nn.benchmark-13156 (13131) [000] d..2 24573.576491: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
56788         sugov:0-559   (  559) [000] d..2 24573.576499: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
56789           <...>-13303 (-----) [007] d..2 24573.576539: sched_switch: prev_comm=id.nn.benchmark prev_pid=13303 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13304 next_prio=110
56790           <...>-13304 (-----) [007] ...1 24573.576548: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
56791           <...>-13304 (-----) [007] ...1 24573.576550: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
56792 crtc_commit:111-253   (  253) [003] d..2 24573.576562: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
56793           <...>-13304 (-----) [007] ...1 24573.576603: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56794           <...>-13304 (-----) [007] ...1 24573.576605: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56795           <...>-13304 (-----) [007] ...1 24573.577456: tracing_mark_write: E|13131
56796           <...>-13304 (-----) [007] ...1 24573.577457: tracing_mark_write: E|13131
56797           <...>-13304 (-----) [007] ...1 24573.577462: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56798           <...>-13304 (-----) [007] ...1 24573.577463: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56799           <...>-13154 (-----) [004] d.s2 24573.577557: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
56800           <...>-13154 (-----) [004] d.s3 24573.577565: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
56801 id.nn.benchmark-13160 (13131) [002] d.h2 24573.577583: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
56802           <...>-13304 (-----) [007] d..2 24573.577583: sched_switch: prev_comm=id.nn.benchmark prev_pid=13304 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
56803           <...>-13157 (-----) [005] d.h2 24573.577590: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
56804 id.nn.benchmark-13160 (13131) [002] dnh3 24573.577592: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
56805 id.nn.benchmark-13159 (13131) [003] d.s2 24573.577593: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
56806           <...>-13157 (-----) [005] d.h3 24573.577596: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
56807  kworker/u16:15-18488 (18488) [007] d..2 24573.577602: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
56808 id.nn.benchmark-13160 (13131) [002] d..2 24573.577602: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
56809           <...>-13157 (-----) [005] d.h2 24573.577603: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
56810         sugov:4-560   (  560) [007] d..2 24573.577609: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
56811 id.nn.benchmark-13158 (13131) [006] dnh1 24573.577614: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=006
56812 id.nn.benchmark-13156 (13131) [000] dnh1 24573.577614: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
56813 id.nn.benchmark-13158 (13131) [006] d..2 24573.577617: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
56814 id.nn.benchmark-13156 (13131) [000] d..2 24573.577623: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
56815  crtc_event:111-254   (  254) [006] d..2 24573.577625: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
56816         sugov:0-559   (  559) [000] d..2 24573.577651: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
56817     migration/2-25    (   25) [002] d..2 24573.577668: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
56818  kworker/u16:15-18488 (18488) [007] d..2 24573.577719: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13304 next_prio=110
56819     logd.writer-563   (  555) [002] d..2 24573.577994: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
56820           <...>-13304 (-----) [007] ...1 24573.578243: tracing_mark_write: E|13131
56821           <...>-13304 (-----) [007] ...1 24573.578244: tracing_mark_write: E|13131
56822           <...>-13304 (-----) [007] ...1 24573.578250: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56823           <...>-13304 (-----) [007] ...1 24573.578252: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56824           <...>-13304 (-----) [007] ...1 24573.578462: tracing_mark_write: E|13131
56825           <...>-13304 (-----) [007] ...1 24573.578463: tracing_mark_write: E|13131
56826           <...>-13304 (-----) [007] ...1 24573.578466: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56827           <...>-13304 (-----) [007] ...1 24573.578467: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56828           <...>-13304 (-----) [007] ...1 24573.578629: tracing_mark_write: E|13131
56829           <...>-13304 (-----) [007] ...1 24573.578630: tracing_mark_write: E|13131
56830           <...>-13304 (-----) [007] ...1 24573.578633: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56831           <...>-13304 (-----) [007] ...1 24573.578634: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56832 id.nn.benchmark-13156 (13131) [000] d.h4 24573.578750: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
56833           <...>-13304 (-----) [007] dnh1 24573.578772: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
56834           <...>-13304 (-----) [007] d..2 24573.578775: sched_switch: prev_comm=id.nn.benchmark prev_pid=13304 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
56835 id.nn.benchmark-13156 (13131) [000] d.h2 24573.578799: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
56836 crtc_commit:111-253   (  253) [007] d..2 24573.578810: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13304 next_prio=110
56837 id.nn.benchmark-13156 (13131) [000] d.h2 24573.578810: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
56838           <...>-13154 (-----) [004] dnh1 24573.578814: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
56839 id.nn.benchmark-13156 (13131) [000] dnh3 24573.578816: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
56840           <...>-13154 (-----) [004] d..2 24573.578817: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
56841         sugov:4-560   (  560) [004] d..2 24573.578820: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
56842 id.nn.benchmark-13156 (13131) [000] d..2 24573.578822: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
56843         sugov:0-559   (  559) [000] d..2 24573.578829: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
56844 id.nn.benchmark-13156 (13131) [000] d.h4 24573.579044: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=006
56845           <...>-13304 (-----) [007] dnh1 24573.579060: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
56846           <...>-13304 (-----) [007] d..2 24573.579063: sched_switch: prev_comm=id.nn.benchmark prev_pid=13304 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
56847  crtc_event:111-254   (  254) [007] d..2 24573.579068: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13304 next_prio=110
56848           <...>-13304 (-----) [007] ...1 24573.579156: tracing_mark_write: E|13131
56849           <...>-13304 (-----) [007] ...1 24573.579157: tracing_mark_write: E|13131
56850           <...>-13304 (-----) [007] ...1 24573.579160: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56851           <...>-13304 (-----) [007] ...1 24573.579162: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56852           <...>-13304 (-----) [007] ...1 24573.579451: tracing_mark_write: E|13131
56853           <...>-13304 (-----) [007] ...1 24573.579452: tracing_mark_write: E|13131
56854           <...>-13304 (-----) [007] ...1 24573.579458: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56855           <...>-13304 (-----) [007] ...1 24573.579460: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56856           <...>-13304 (-----) [007] ...1 24573.579618: tracing_mark_write: E|13131
56857           <...>-13304 (-----) [007] ...1 24573.579619: tracing_mark_write: E|13131
56858           <...>-13304 (-----) [007] ...1 24573.579623: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56859           <...>-13304 (-----) [007] ...1 24573.579624: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56860           <...>-13304 (-----) [007] ...1 24573.579678: tracing_mark_write: E|13131
56861           <...>-13304 (-----) [007] ...1 24573.579679: tracing_mark_write: E|13131
56862           <...>-13304 (-----) [007] ...1 24573.579683: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
56863           <...>-13304 (-----) [007] ...1 24573.579684: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
56864           <...>-13304 (-----) [007] ...1 24573.579841: tracing_mark_write: E|13131
56865           <...>-13304 (-----) [007] ...1 24573.579842: tracing_mark_write: E|13131
56866           <...>-13304 (-----) [007] ...1 24573.579846: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
56867           <...>-13304 (-----) [007] ...1 24573.579847: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
56868           <...>-13304 (-----) [007] ...1 24573.579869: tracing_mark_write: E|13131
56869           <...>-13304 (-----) [007] ...1 24573.579871: tracing_mark_write: E|13131
56870           <...>-13304 (-----) [007] ...1 24573.579874: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
56871           <...>-13304 (-----) [007] ...1 24573.579875: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
56872           <...>-13304 (-----) [007] ...1 24573.579881: tracing_mark_write: E|13131
56873           <...>-13304 (-----) [007] ...1 24573.579883: tracing_mark_write: E|13131
56874           <...>-13304 (-----) [007] ...1 24573.579886: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
56875           <...>-13304 (-----) [007] ...1 24573.579887: tracing_mark_write: E|13131
56876           <...>-13304 (-----) [007] ...1 24573.579890: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
56877           <...>-13304 (-----) [007] ...1 24573.579892: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
56878           <...>-13304 (-----) [007] ...1 24573.580197: tracing_mark_write: E|13131
56879           <...>-13304 (-----) [007] ...1 24573.580198: tracing_mark_write: E|13131
56880           <...>-13304 (-----) [007] ...1 24573.580201: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56881           <...>-13304 (-----) [007] ...1 24573.580202: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56882           <...>-13304 (-----) [007] ...1 24573.580272: tracing_mark_write: E|13131
56883           <...>-13304 (-----) [007] ...1 24573.580273: tracing_mark_write: E|13131
56884           <...>-13304 (-----) [007] d..2 24573.580289: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
56885 id.nn.benchmark-13160 (13131) [002] d.h1 24573.580304: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
56886           <...>-13304 (-----) [007] ...1 24573.580305: tracing_mark_write: E|13131
56887           <...>-13304 (-----) [007] d..1 24573.580307: sched_waking: comm=id.nn.benchmark pid=13303 prio=110 target_cpu=007
56888           <...>-13304 (-----) [007] dn.2 24573.580312: sched_wakeup: comm=id.nn.benchmark pid=13303 prio=110 target_cpu=007
56889           <...>-13304 (-----) [007] d..2 24573.580315: sched_switch: prev_comm=id.nn.benchmark prev_pid=13304 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13303 next_prio=110
56890           <...>-13303 (-----) [007] d..2 24573.580321: sched_switch: prev_comm=id.nn.benchmark prev_pid=13303 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13304 next_prio=110
56891           <...>-13304 (-----) [007] ...1 24573.580326: tracing_mark_write: E|13131
56892           <...>-13304 (-----) [007] d..1 24573.580424: sched_waking: comm=id.nn.benchmark pid=13303 prio=110 target_cpu=007
56893           <...>-13304 (-----) [007] dn.2 24573.580428: sched_wakeup: comm=id.nn.benchmark pid=13303 prio=110 target_cpu=007
56894           <...>-13304 (-----) [007] d..2 24573.580431: sched_switch: prev_comm=id.nn.benchmark prev_pid=13304 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13303 next_prio=110
56895           <...>-13303 (-----) [007] d..1 24573.580475: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
56896           <...>-13303 (-----) [007] dn.2 24573.580481: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
56897           <...>-13303 (-----) [007] d..2 24573.580484: sched_switch: prev_comm=id.nn.benchmark prev_pid=13303 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
56898           <...>-13131 (-----) [007] d..2 24573.580489: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13303 next_prio=110
56899           <...>-13303 (-----) [007] d..1 24573.580512: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
56900           <...>-13303 (-----) [007] dn.2 24573.580515: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
56901           <...>-13303 (-----) [007] d..2 24573.580517: sched_switch: prev_comm=id.nn.benchmark prev_pid=13303 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
56902           <...>-13131 (-----) [007] ...1 24573.580525: tracing_mark_write: E|13131
56903           <...>-13131 (-----) [007] ...1 24573.580527: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
56904           <...>-13131 (-----) [007] ...1 24573.580528: tracing_mark_write: E|13131
56905           <...>-13131 (-----) [007] ...1 24573.580530: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
56906           <...>-13131 (-----) [007] ...1 24573.580532: tracing_mark_write: E|13131
56907           <...>-13131 (-----) [007] ...1 24573.580590: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
56908           <...>-13131 (-----) [007] ...1 24573.580606: tracing_mark_write: E|13131
56909           <...>-13131 (-----) [007] ...1 24573.580608: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
56910           <...>-13131 (-----) [007] ...1 24573.580610: tracing_mark_write: E|13131
56911           <...>-13131 (-----) [007] ...1 24573.580612: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
56912           <...>-13131 (-----) [007] ...1 24573.580614: tracing_mark_write: E|13131
56913           <...>-13131 (-----) [007] ...1 24573.580616: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
56914           <...>-13131 (-----) [007] ...1 24573.580658: tracing_mark_write: E|13131
56915           <...>-13131 (-----) [007] ...1 24573.580659: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
56916           <...>-13131 (-----) [007] d..2 24573.580663: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13303 next_prio=110
56917           <...>-13303 (-----) [007] d..2 24573.580688: sched_switch: prev_comm=id.nn.benchmark prev_pid=13303 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13304 next_prio=110
56918           <...>-13304 (-----) [007] d..2 24573.580700: sched_switch: prev_comm=id.nn.benchmark prev_pid=13304 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13305 next_prio=110
56919           <...>-13305 (-----) [007] d..2 24573.580838: sched_switch: prev_comm=id.nn.benchmark prev_pid=13305 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13306 next_prio=110
56920           <...>-13306 (-----) [007] ...1 24573.580848: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
56921 id.nn.benchmark-13159 (13131) [003] d.h1 24573.580849: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
56922           <...>-13306 (-----) [007] ...1 24573.580850: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
56923           <...>-13306 (-----) [007] dnh1 24573.580872: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=007
56924           <...>-13154 (-----) [004] d.s2 24573.580898: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
56925           <...>-13154 (-----) [004] d.s3 24573.580903: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
56926           <...>-13306 (-----) [007] dns1 24573.580904: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
56927 id.nn.benchmark-13156 (13131) [000] d.h2 24573.580905: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
56928 id.nn.benchmark-13156 (13131) [000] dnh3 24573.580911: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
56929           <...>-13306 (-----) [007] dns2 24573.580914: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
56930 id.nn.benchmark-13159 (13131) [003] d.H2 24573.580914: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
56931           <...>-13306 (-----) [007] d..2 24573.580918: sched_switch: prev_comm=id.nn.benchmark prev_pid=13306 prev_prio=110 prev_state=R+ ==> next_comm=DispSync next_pid=23904 next_prio=97
56932 id.nn.benchmark-13156 (13131) [000] d..2 24573.580921: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
56933 id.nn.benchmark-13159 (13131) [003] d.H2 24573.580922: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
56934           <...>-13154 (-----) [004] dnh1 24573.580925: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
56935           <...>-13154 (-----) [004] d..2 24573.580927: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
56936         sugov:4-560   (  560) [004] d..2 24573.580930: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
56937 id.nn.benchmark-13159 (13131) [003] d.H3 24573.580930: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
56938        DispSync-23904 (23896) [007] d..1 24573.580932: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
56939 id.nn.benchmark-13159 (13131) [003] dnH1 24573.580945: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
56940        DispSync-23904 (23896) [007] d..2 24573.580948: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
56941     migration/0-13    (   13) [000] d..2 24573.580973: 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
56942 id.nn.benchmark-13159 (13131) [003] d..2 24573.580980: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
56943         sugov:0-559   (  559) [000] d..2 24573.580995: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
56944  appEventThread-23905 (23896) [003] d..3 24573.581023: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
56945  kworker/u16:15-18488 (18488) [007] d.h3 24573.581040: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
56946  appEventThread-23905 (23896) [003] d..2 24573.581051: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
56947  kworker/u16:15-18488 (18488) [007] d..2 24573.581162: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
56948     rcu_preempt-7     (    7) [007] d..2 24573.581164: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=005
56949     rcu_preempt-7     (    7) [007] d..3 24573.581176: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=005
56950     rcu_preempt-7     (    7) [007] d..2 24573.581180: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
56951           <...>-13157 (-----) [005] d..2 24573.581182: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
56952         rcuop/2-29    (   29) [005] d..2 24573.581184: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=004
56953         rcuop/2-29    (   29) [005] d..3 24573.581195: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=004
56954           <...>-13154 (-----) [004] d..2 24573.581201: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/3 next_pid=37 next_prio=120
56955         rcuop/3-37    (   37) [004] d..2 24573.581207: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
56956         rcuop/2-29    (   29) [005] d..2 24573.581209: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
56957<...>-24151 ( 24151) [007] .... 24573.581382: binder_transaction: transaction=1670001 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
56958<...>-24151 ( 24151) [007] d..4 24573.581388: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
56959<...>-24151 ( 24151) [007] d..5 24573.581396: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
56960<...>-24151 ( 24151) [007] d..3 24573.581416: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
56961<...>-24151 ( 24151) [007] d..4 24573.581422: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
56962<...>-24151 ( 24151) [007] d..2 24573.581489: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
56963  Binder:23896_5-25989 (23896) [007] .... 24573.581493: binder_transaction_received: transaction=1670001
56964  Binder:23896_5-25989 (23896) [007] d..1 24573.581510: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
56965     logd.writer-563   (  555) [000] dnh1 24573.581527: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
56966  Binder:23896_5-25989 (23896) [007] d..2 24573.581530: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
56967     logd.writer-563   (  555) [000] d..2 24573.581535: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
56968  appEventThread-23905 (23896) [000] d..2 24573.581564: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
56969    RenderThread-24437 (24151) [007] d..1 24573.581587: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
56970    RenderThread-24437 (24151) [007] d..2 24573.581592: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
56971    RenderThread-24437 (24151) [007] .... 24573.581623: binder_transaction: transaction=1670002 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
56972    RenderThread-24437 (24151) [007] d..4 24573.581625: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
56973    RenderThread-24437 (24151) [007] d..5 24573.581629: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
56974    RenderThread-24437 (24151) [007] d..2 24573.581633: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
56975  Binder:23896_5-25989 (23896) [007] .... 24573.581635: binder_transaction_received: transaction=1670002
56976  Binder:23896_5-25989 (23896) [007] .... 24573.581663: binder_transaction: transaction=1670003 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
56977  Binder:23896_5-25989 (23896) [007] d..2 24573.581668: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
56978  Binder:23896_5-25989 (23896) [007] d..3 24573.581674: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
56979  Binder:23896_5-25989 (23896) [007] d..2 24573.581682: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
56980    RenderThread-24437 (24151) [007] .... 24573.581684: binder_transaction_received: transaction=1670003
56981     logd.writer-563   (  555) [000] d..2 24573.581965: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
56982<...>-24151 ( 24151) [000] d.h4 24573.581995: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
56983<...>-24151 ( 24151) [000] d.h4 24573.582007: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
56984    RenderThread-24437 (24151) [007] dnh1 24573.582012: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
56985<...>-24151 ( 24151) [000] dnh5 24573.582013: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
56986    RenderThread-24437 (24151) [007] d..2 24573.582017: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
56987<...>-24151 ( 24151) [000] d..2 24573.582019: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
56988         sugov:4-560   (  560) [007] d..2 24573.582022: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
56989         sugov:0-559   (  559) [000] d..2 24573.582026: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
56990<...>-24151 ( 24151) [000] d..2 24573.582095: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13306 next_prio=110
56991           <...>-13306 (-----) [000] d..2 24573.582127: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
56992           <...>-13306 (-----) [000] d..3 24573.582134: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
56993           <...>-13306 (-----) [000] ...1 24573.582218: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
56994           <...>-13306 (-----) [000] ...1 24573.582224: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
56995    RenderThread-24437 (24151) [007] d..2 24573.582312: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
56996 id.nn.benchmark-13156 (13131) [007] d.h1 24573.582411: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
56997 id.nn.benchmark-13156 (13131) [007] d.h2 24573.582416: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
56998 id.nn.benchmark-13156 (13131) [007] dnh2 24573.582418: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
56999 id.nn.benchmark-13156 (13131) [007] d..2 24573.582422: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
57000    RenderThread-24437 (24151) [007] .... 24573.582499: binder_transaction: transaction=1670004 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
57001    RenderThread-24437 (24151) [007] d..4 24573.582503: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
57002    RenderThread-24437 (24151) [007] d..5 24573.582508: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
57003    RenderThread-24437 (24151) [007] d..2 24573.582512: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
57004  Binder:23896_5-25989 (23896) [007] .... 24573.582514: binder_transaction_received: transaction=1670004
57005           <...>-13306 (-----) [000] d.h2 24573.582539: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
57006           <...>-13306 (-----) [000] dnh3 24573.582554: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
57007           <...>-13306 (-----) [000] d..2 24573.582566: sched_switch: prev_comm=id.nn.benchmark prev_pid=13306 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
57008  Binder:23896_5-25989 (23896) [007] .... 24573.582573: binder_transaction: transaction=1670005 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
57009  Binder:23896_5-25989 (23896) [007] d..2 24573.582575: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
57010  Binder:23896_5-25989 (23896) [007] d..3 24573.582580: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
57011  Binder:23896_5-25989 (23896) [007] d..2 24573.582588: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
57012    RenderThread-24437 (24151) [007] .... 24573.582590: binder_transaction_received: transaction=1670005
57013 kgsl_worker_thr-246   (  246) [000] d..2 24573.582600: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
57014    RenderThread-24437 (24151) [007] d..2 24573.582613: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
57015 id.nn.benchmark-13156 (13131) [007] dnh1 24573.582626: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
57016 id.nn.benchmark-13156 (13131) [007] d..2 24573.582630: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
57017 kgsl_worker_thr-246   (  246) [000] d..2 24573.582634: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13306 next_prio=110
57018  kworker/u16:15-18488 (18488) [007] d..2 24573.582648: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
57019           <...>-13306 (-----) [000] ...1 24573.584375: tracing_mark_write: E|13131
57020           <...>-13306 (-----) [000] ...1 24573.584379: tracing_mark_write: E|13131
57021           <...>-13306 (-----) [000] ...1 24573.584392: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57022           <...>-13306 (-----) [000] ...1 24573.584397: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57023 id.nn.benchmark-13156 (13131) [007] d.h1 24573.584841: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=007
57024 id.nn.benchmark-13156 (13131) [007] d.h2 24573.584872: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
57025           <...>-13306 (-----) [000] dnh1 24573.584873: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
57026 id.nn.benchmark-13156 (13131) [007] dnh3 24573.584875: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
57027 id.nn.benchmark-13156 (13131) [007] dnh2 24573.584876: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
57028           <...>-13306 (-----) [000] d..2 24573.584881: sched_switch: prev_comm=id.nn.benchmark prev_pid=13306 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
57029 id.nn.benchmark-13156 (13131) [007] d..2 24573.584893: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
57030        DispSync-23904 (23896) [000] d..1 24573.584896: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
57031         sugov:4-560   (  560) [007] d..2 24573.584897: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
57032 id.nn.benchmark-13155 (13131) [001] dnh1 24573.584898: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
57033 id.nn.benchmark-13155 (13131) [001] d..2 24573.584909: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
57034        DispSync-23904 (23896) [000] d..2 24573.584921: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
57035         sugov:0-559   (  559) [001] d..2 24573.584921: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
57036 id.nn.benchmark-13160 (13131) [002] d..2 24573.584930: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
57037        DispSync-23904 (23896) [000] d..2 24573.584934: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
57038   sfEventThread-23906 (23896) [002] d..3 24573.584962: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
57039   sfEventThread-23906 (23896) [002] d..4 24573.584975: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
57040     logd.writer-563   (  555) [000] d..2 24573.584982: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
57041   sfEventThread-23906 (23896) [002] d..2 24573.584997: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
57042  surfaceflinger-23896 (23896) [000] d..1 24573.585228: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
57043  surfaceflinger-23896 (23896) [000] d..2 24573.585239: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
57044 id.nn.benchmark-13160 (13131) [002] d..2 24573.585247: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
57045   sfEventThread-23906 (23896) [002] d..2 24573.585261: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
57046  surfaceflinger-23896 (23896) [000] ...1 24573.585366: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
57047  surfaceflinger-23896 (23896) [000] ...1 24573.585370: tracing_mark_write: E|23896
57048  surfaceflinger-23896 (23896) [000] .... 24573.585415: binder_transaction: transaction=1670006 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
57049  surfaceflinger-23896 (23896) [000] ...2 24573.585436: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
57050  surfaceflinger-23896 (23896) [000] d..4 24573.585444: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
57051 id.nn.benchmark-13156 (13131) [007] dnh1 24573.585458: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
57052 id.nn.benchmark-13156 (13131) [007] d..2 24573.585461: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
57053  HwBinder:598_3-633   (  598) [007] .... 24573.585466: binder_transaction_received: transaction=1670006
57054  surfaceflinger-23896 (23896) [000] d..2 24573.585466: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13306 next_prio=110
57055  HwBinder:598_3-633   (  598) [007] ...1 24573.585490: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
57056  HwBinder:598_3-633   (  598) [007] ...1 24573.585539: tracing_mark_write: B|598|HWCSession::PresentDisplay::
57057  HwBinder:598_3-633   (  598) [007] ...1 24573.585605: tracing_mark_write: B|598|HWDeviceDRM::Commit::
57058  HwBinder:598_3-633   (  598) [007] ...1 24573.585608: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
57059  HwBinder:598_3-633   (  598) [007] d..2 24573.585809: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
57060  HwBinder:598_3-633   (  598) [007] d.h3 24573.585841: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
57061           <...>-13306 (-----) [000] dnh1 24573.585843: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
57062  HwBinder:598_3-633   (  598) [007] d.h4 24573.585850: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
57063  HwBinder:598_3-633   (  598) [007] d.h3 24573.585850: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
57064           <...>-13306 (-----) [000] d..2 24573.585851: sched_switch: prev_comm=id.nn.benchmark prev_pid=13306 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
57065           <...>-13154 (-----) [004] d..2 24573.585855: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
57066         sugov:4-560   (  560) [004] d..2 24573.585859: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
57067 id.nn.benchmark-13155 (13131) [001] dnh1 24573.585860: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
57068 id.nn.benchmark-13155 (13131) [001] d..2 24573.585866: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
57069         sugov:0-559   (  559) [001] d..2 24573.585873: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
57070  HwBinder:598_3-633   (  598) [007] ...1 24573.585883: tracing_mark_write: E|598
57071  HwBinder:598_3-633   (  598) [007] ...1 24573.585885: tracing_mark_write: E|598
57072  HwBinder:598_3-633   (  598) [007] ...1 24573.585907: tracing_mark_write: E|598
57073  HwBinder:598_3-633   (  598) [007] ...1 24573.585926: tracing_mark_write: E|598
57074  HwBinder:598_3-633   (  598) [007] .... 24573.585932: binder_transaction: transaction=1670007 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
57075  HwBinder:598_3-633   (  598) [007] d..2 24573.585937: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
57076  HwBinder:598_3-633   (  598) [007] .... 24573.585946: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
57077 id.nn.benchmark-13155 (13131) [001] dnh1 24573.585951: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
57078 id.nn.benchmark-13155 (13131) [001] d..2 24573.585955: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
57079  surfaceflinger-23896 (23896) [001] .... 24573.585960: binder_transaction_received: transaction=1670007
57080  HwBinder:598_3-633   (  598) [007] d..2 24573.585968: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
57081  surfaceflinger-23896 (23896) [001] d..2 24573.586201: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
57082 crtc_commit:111-253   (  253) [000] d..2 24573.586460: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13306 next_prio=110
57083           <...>-13306 (-----) [000] ...1 24573.586472: tracing_mark_write: E|13131
57084           <...>-13306 (-----) [000] ...1 24573.586476: tracing_mark_write: E|13131
57085           <...>-13306 (-----) [000] ...1 24573.586498: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57086           <...>-13306 (-----) [000] ...1 24573.586504: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57087           <...>-13306 (-----) [000] ...1 24573.586841: tracing_mark_write: E|13131
57088           <...>-13306 (-----) [000] ...1 24573.586845: tracing_mark_write: E|13131
57089           <...>-13306 (-----) [000] ...1 24573.586856: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57090           <...>-13306 (-----) [000] ...1 24573.586860: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57091           <...>-13306 (-----) [000] ...1 24573.587099: tracing_mark_write: E|13131
57092           <...>-13306 (-----) [000] ...1 24573.587102: tracing_mark_write: E|13131
57093           <...>-13306 (-----) [000] ...1 24573.587112: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57094           <...>-13306 (-----) [000] ...1 24573.587117: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57095           <...>-13306 (-----) [000] ...1 24573.587508: tracing_mark_write: E|13131
57096           <...>-13306 (-----) [000] ...1 24573.587512: tracing_mark_write: E|13131
57097           <...>-13306 (-----) [000] ...1 24573.587521: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57098           <...>-13306 (-----) [000] ...1 24573.587525: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57099           <...>-13154 (-----) [004] d.s2 24573.587554: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
57100 id.nn.benchmark-13156 (13131) [007] d.s1 24573.587557: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
57101           <...>-13154 (-----) [004] d.s3 24573.587569: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
57102 id.nn.benchmark-13156 (13131) [007] dns2 24573.587571: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
57103 id.nn.benchmark-13156 (13131) [007] d..2 24573.587577: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
57104  kworker/u16:15-18488 (18488) [007] d..2 24573.587678: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
57105     rcu_preempt-7     (    7) [007] d..2 24573.587684: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
57106           <...>-13306 (-----) [000] ...1 24573.587949: tracing_mark_write: E|13131
57107           <...>-13306 (-----) [000] ...1 24573.587953: tracing_mark_write: E|13131
57108           <...>-13306 (-----) [000] ...1 24573.587971: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57109           <...>-13306 (-----) [000] ...1 24573.587975: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57110           <...>-13306 (-----) [000] ...1 24573.588166: tracing_mark_write: E|13131
57111           <...>-13306 (-----) [000] ...1 24573.588170: tracing_mark_write: E|13131
57112           <...>-13306 (-----) [000] ...1 24573.588183: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57113           <...>-13306 (-----) [000] ...1 24573.588187: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57114           <...>-13306 (-----) [000] ...1 24573.588260: tracing_mark_write: E|13131
57115           <...>-13306 (-----) [000] ...1 24573.588263: tracing_mark_write: E|13131
57116           <...>-13306 (-----) [000] ...1 24573.588276: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
57117           <...>-13306 (-----) [000] ...1 24573.588280: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
57118           <...>-13306 (-----) [000] ...1 24573.588596: tracing_mark_write: E|13131
57119           <...>-13306 (-----) [000] ...1 24573.588600: tracing_mark_write: E|13131
57120           <...>-13306 (-----) [000] ...1 24573.588609: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
57121           <...>-13306 (-----) [000] ...1 24573.588613: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
57122           <...>-13306 (-----) [000] ...1 24573.588668: tracing_mark_write: E|13131
57123           <...>-13306 (-----) [000] ...1 24573.588671: tracing_mark_write: E|13131
57124           <...>-13306 (-----) [000] ...1 24573.588680: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
57125           <...>-13306 (-----) [000] ...1 24573.588684: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
57126           <...>-13306 (-----) [000] ...1 24573.588701: tracing_mark_write: E|13131
57127           <...>-13306 (-----) [000] ...1 24573.588704: tracing_mark_write: E|13131
57128           <...>-13306 (-----) [000] ...1 24573.588715: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
57129           <...>-13306 (-----) [000] ...1 24573.588718: tracing_mark_write: E|13131
57130           <...>-13306 (-----) [000] ...1 24573.588727: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
57131           <...>-13306 (-----) [000] ...1 24573.588732: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
57132           <...>-13306 (-----) [000] ...1 24573.589586: tracing_mark_write: E|13131
57133           <...>-13306 (-----) [000] ...1 24573.589588: tracing_mark_write: E|13131
57134           <...>-13306 (-----) [000] ...1 24573.589597: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57135           <...>-13306 (-----) [000] ...1 24573.589601: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57136           <...>-13306 (-----) [000] ...1 24573.589684: tracing_mark_write: E|13131
57137           <...>-13306 (-----) [000] ...1 24573.589687: tracing_mark_write: E|13131
57138           <...>-13306 (-----) [000] ...1 24573.589746: tracing_mark_write: E|13131
57139           <...>-13306 (-----) [000] d..1 24573.589752: sched_waking: comm=id.nn.benchmark pid=13305 prio=110 target_cpu=007
57140 id.nn.benchmark-13156 (13131) [007] dnh1 24573.589769: sched_wakeup: comm=id.nn.benchmark pid=13305 prio=110 target_cpu=007
57141 id.nn.benchmark-13156 (13131) [007] d..2 24573.589772: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13305 next_prio=110
57142           <...>-13306 (-----) [000] ...1 24573.589778: tracing_mark_write: E|13131
57143           <...>-13305 (-----) [007] d..2 24573.589781: sched_switch: prev_comm=id.nn.benchmark prev_pid=13305 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
57144           <...>-13306 (-----) [000] d..1 24573.589992: sched_waking: comm=id.nn.benchmark pid=13305 prio=110 target_cpu=007
57145 id.nn.benchmark-13156 (13131) [007] dnh1 24573.590005: sched_wakeup: comm=id.nn.benchmark pid=13305 prio=110 target_cpu=007
57146 id.nn.benchmark-13156 (13131) [007] d..2 24573.590007: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13305 next_prio=110
57147           <...>-13306 (-----) [000] d..2 24573.590041: sched_switch: prev_comm=id.nn.benchmark prev_pid=13306 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
57148           <...>-13305 (-----) [007] d..1 24573.590069: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
57149           <...>-13305 (-----) [007] dn.2 24573.590075: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
57150           <...>-13305 (-----) [007] d..2 24573.590078: sched_switch: prev_comm=id.nn.benchmark prev_pid=13305 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
57151           <...>-13131 (-----) [007] d..2 24573.590084: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13305 next_prio=110
57152           <...>-13305 (-----) [007] d..1 24573.590114: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
57153           <...>-13305 (-----) [007] dn.2 24573.590118: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
57154           <...>-13305 (-----) [007] d..2 24573.590120: sched_switch: prev_comm=id.nn.benchmark prev_pid=13305 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
57155           <...>-13131 (-----) [007] ...1 24573.590131: tracing_mark_write: E|13131
57156           <...>-13131 (-----) [007] ...1 24573.590134: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
57157           <...>-13131 (-----) [007] ...1 24573.590137: tracing_mark_write: E|13131
57158           <...>-13131 (-----) [007] ...1 24573.590138: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
57159           <...>-13131 (-----) [007] ...1 24573.590140: tracing_mark_write: E|13131
57160           <...>-13131 (-----) [007] ...1 24573.590204: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
57161           <...>-13131 (-----) [007] ...1 24573.590225: tracing_mark_write: E|13131
57162           <...>-13131 (-----) [007] ...1 24573.590228: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
57163           <...>-13131 (-----) [007] ...1 24573.590230: tracing_mark_write: E|13131
57164           <...>-13131 (-----) [007] ...1 24573.590232: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
57165           <...>-13131 (-----) [007] ...1 24573.590234: tracing_mark_write: E|13131
57166           <...>-13131 (-----) [007] ...1 24573.590236: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
57167     logd.writer-563   (  555) [000] d..2 24573.590285: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13305 next_prio=110
57168           <...>-13131 (-----) [007] ...1 24573.590298: tracing_mark_write: E|13131
57169           <...>-13131 (-----) [007] ...1 24573.590300: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
57170           <...>-13131 (-----) [007] d..2 24573.590305: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
57171           <...>-13305 (-----) [000] d..2 24573.590352: sched_switch: prev_comm=id.nn.benchmark prev_pid=13305 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13307 next_prio=110
57172           <...>-13307 (-----) [000] d.h4 24573.590384: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
57173           <...>-13307 (-----) [000] d.h4 24573.590397: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
57174 id.nn.benchmark-13156 (13131) [007] dnh1 24573.590401: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
57175 id.nn.benchmark-13156 (13131) [007] d..2 24573.590404: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
57176           <...>-13307 (-----) [000] dnh5 24573.590407: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
57177         sugov:4-560   (  560) [007] d..2 24573.590409: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
57178           <...>-13307 (-----) [000] d..2 24573.590416: sched_switch: prev_comm=id.nn.benchmark prev_pid=13307 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
57179         sugov:0-559   (  559) [000] d..2 24573.590423: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13307 next_prio=110
57180           <...>-13307 (-----) [000] d..2 24573.590481: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
57181           <...>-13307 (-----) [000] d..3 24573.590489: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
57182           <...>-13307 (-----) [000] d..2 24573.590792: sched_switch: prev_comm=id.nn.benchmark prev_pid=13307 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
57183           <...>-13154 (-----) [004] d.s2 24573.590887: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
57184 id.nn.benchmark-13159 (13131) [003] d.s2 24573.590895: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
57185           <...>-13154 (-----) [004] d.s3 24573.590896: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
57186 id.nn.benchmark-13156 (13131) [007] d..2 24573.590903: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
57187  kworker/u16:15-18488 (18488) [007] d.h3 24573.590921: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
57188     logd.writer-563   (  555) [000] d..2 24573.590993: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13308 next_prio=110
57189           <...>-13308 (-----) [000] ...1 24573.591020: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
57190           <...>-13308 (-----) [000] ...1 24573.591025: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
57191           <...>-13308 (-----) [000] d..2 24573.591080: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
57192           <...>-13308 (-----) [000] d..3 24573.591089: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
57193  kworker/u16:15-18488 (18488) [007] d..2 24573.591090: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
57194     rcu_preempt-7     (    7) [007] d..2 24573.591093: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
57195     rcu_preempt-7     (    7) [007] d..3 24573.591106: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
57196     rcu_preempt-7     (    7) [007] d..2 24573.591107: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
57197 id.nn.benchmark-13158 (13131) [006] d..2 24573.591113: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
57198         rcuop/6-61    (   61) [006] d..2 24573.591120: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=006
57199     rcu_preempt-7     (    7) [007] d..2 24573.591123: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
57200           <...>-13308 (-----) [000] dnh1 24573.591127: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
57201 id.nn.benchmark-13159 (13131) [003] d.s2 24573.591134: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
57202           <...>-13308 (-----) [000] d..2 24573.591139: sched_switch: prev_comm=id.nn.benchmark prev_pid=13308 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
57203 id.nn.benchmark-13156 (13131) [007] d.h1 24573.591159: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
57204         rcuop/6-61    (   61) [006] d.h3 24573.591160: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
57205 id.nn.benchmark-13156 (13131) [007] dnh1 24573.591160: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
57206         rcuop/0-10    (   10) [000] d.h3 24573.591161: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=000
57207 id.nn.benchmark-13156 (13131) [007] d..2 24573.591165: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
57208         rcuop/6-61    (   61) [006] d.h4 24573.591168: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
57209  kworker/u16:15-18488 (18488) [007] d..2 24573.591171: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
57210         rcuop/0-10    (   10) [000] d..2 24573.591172: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/7 next_pid=69 next_prio=120
57211         rcuop/6-61    (   61) [006] d.h3 24573.591172: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
57212         sugov:4-560   (  560) [007] d..2 24573.591178: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
57213         rcuop/6-61    (   61) [006] d..2 24573.591181: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
57214         rcuop/7-69    (   69) [000] dnh1 24573.591184: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
57215         rcuop/7-69    (   69) [000] d..2 24573.591190: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
57216         sugov:0-559   (  559) [000] d..2 24573.591197: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=rcuop/7 next_pid=69 next_prio=120
57217         rcuop/7-69    (   69) [000] d..2 24573.591203: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13308 next_prio=110
57218           <...>-13308 (-----) [000] ...1 24573.591238: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57219           <...>-13308 (-----) [000] ...1 24573.591243: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57220  kworker/u16:15-18488 (18488) [007] d..2 24573.591305: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
57221           <...>-13308 (-----) [000] d.h4 24573.592880: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
57222           <...>-13308 (-----) [000] dnh5 24573.592899: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
57223           <...>-13308 (-----) [000] dnh4 24573.592903: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
57224 id.nn.benchmark-13156 (13131) [007] dnh1 24573.592919: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
57225 id.nn.benchmark-13156 (13131) [007] d..2 24573.592922: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
57226           <...>-13308 (-----) [000] dnh2 24573.592951: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
57227           <...>-13308 (-----) [000] dnh2 24573.592961: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
57228           <...>-13154 (-----) [004] dnh1 24573.592964: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
57229           <...>-13154 (-----) [004] d..2 24573.592967: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
57230 crtc_commit:111-253   (  253) [007] d..2 24573.592968: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
57231         sugov:4-560   (  560) [004] d..2 24573.592970: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
57232           <...>-13308 (-----) [000] dnh3 24573.592972: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
57233           <...>-13308 (-----) [000] d..2 24573.592979: sched_switch: prev_comm=id.nn.benchmark prev_pid=13308 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
57234 id.nn.benchmark-13155 (13131) [001] d..2 24573.592981: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
57235         sugov:0-559   (  559) [001] d..2 24573.592990: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
57236  crtc_event:111-254   (  254) [000] d..2 24573.592991: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
57237 id.nn.benchmark-13156 (13131) [007] dnh1 24573.593003: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
57238  crtc_event:111-254   (  254) [000] d..2 24573.593005: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13308 next_prio=110
57239 id.nn.benchmark-13156 (13131) [007] d..2 24573.593005: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
57240 crtc_commit:111-253   (  253) [007] d..2 24573.593058: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
57241           <...>-13308 (-----) [000] ...1 24573.593439: tracing_mark_write: E|13131
57242           <...>-13308 (-----) [000] ...1 24573.593443: tracing_mark_write: E|13131
57243           <...>-13308 (-----) [000] ...1 24573.593455: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57244           <...>-13308 (-----) [000] ...1 24573.593460: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57245           <...>-13308 (-----) [000] ...1 24573.594156: tracing_mark_write: E|13131
57246           <...>-13308 (-----) [000] ...1 24573.594160: tracing_mark_write: E|13131
57247           <...>-13308 (-----) [000] ...1 24573.594175: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57248           <...>-13308 (-----) [000] ...1 24573.594180: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57249 id.nn.benchmark-13156 (13131) [007] d.s2 24573.594225: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
57250           <...>-13308 (-----) [000] dnh1 24573.594238: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
57251           <...>-13308 (-----) [000] d..2 24573.594244: sched_switch: prev_comm=id.nn.benchmark prev_pid=13308 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
57252  crtc_event:111-254   (  254) [000] d..2 24573.594257: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13308 next_prio=110
57253           <...>-13308 (-----) [000] ...1 24573.594559: tracing_mark_write: E|13131
57254           <...>-13308 (-----) [000] ...1 24573.594562: tracing_mark_write: E|13131
57255           <...>-13308 (-----) [000] ...1 24573.594574: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57256           <...>-13308 (-----) [000] ...1 24573.594578: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57257           <...>-13308 (-----) [000] ...1 24573.594806: tracing_mark_write: E|13131
57258           <...>-13308 (-----) [000] ...1 24573.594810: tracing_mark_write: E|13131
57259           <...>-13308 (-----) [000] ...1 24573.594819: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57260           <...>-13308 (-----) [000] ...1 24573.594823: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57261           <...>-13308 (-----) [000] d.h4 24573.595223: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
57262           <...>-13308 (-----) [000] dnh5 24573.595240: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
57263           <...>-13308 (-----) [000] dnh2 24573.595274: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
57264           <...>-13308 (-----) [000] dnh2 24573.595285: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
57265 id.nn.benchmark-13156 (13131) [007] dnh1 24573.595289: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
57266 id.nn.benchmark-13156 (13131) [007] d..2 24573.595292: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
57267           <...>-13308 (-----) [000] dnh3 24573.595293: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
57268         sugov:4-560   (  560) [007] d..2 24573.595296: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
57269           <...>-13308 (-----) [000] d..2 24573.595299: sched_switch: prev_comm=id.nn.benchmark prev_pid=13308 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
57270 id.nn.benchmark-13155 (13131) [001] d..2 24573.595302: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
57271         sugov:0-559   (  559) [001] d..2 24573.595311: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
57272 crtc_commit:111-253   (  253) [000] d..2 24573.595350: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13308 next_prio=110
57273           <...>-13308 (-----) [000] ...1 24573.595413: tracing_mark_write: E|13131
57274           <...>-13308 (-----) [000] ...1 24573.595416: tracing_mark_write: E|13131
57275           <...>-13308 (-----) [000] ...1 24573.595427: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57276           <...>-13308 (-----) [000] ...1 24573.595431: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57277           <...>-13308 (-----) [000] d.h4 24573.595521: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
57278           <...>-13308 (-----) [000] dnh5 24573.595529: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
57279           <...>-13308 (-----) [000] d..2 24573.595544: sched_switch: prev_comm=id.nn.benchmark prev_pid=13308 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
57280  crtc_event:111-254   (  254) [000] d..2 24573.595553: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13308 next_prio=110
57281           <...>-13308 (-----) [000] ...1 24573.595897: tracing_mark_write: E|13131
57282           <...>-13308 (-----) [000] ...1 24573.595901: tracing_mark_write: E|13131
57283           <...>-13308 (-----) [000] ...1 24573.595916: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57284           <...>-13308 (-----) [000] ...1 24573.595922: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57285           <...>-13308 (-----) [000] ...1 24573.596108: tracing_mark_write: E|13131
57286           <...>-13308 (-----) [000] ...1 24573.596112: tracing_mark_write: E|13131
57287           <...>-13308 (-----) [000] ...1 24573.596124: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57288           <...>-13308 (-----) [000] ...1 24573.596128: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57289           <...>-13308 (-----) [000] ...1 24573.596195: tracing_mark_write: E|13131
57290           <...>-13308 (-----) [000] ...1 24573.596199: tracing_mark_write: E|13131
57291           <...>-13308 (-----) [000] ...1 24573.596208: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
57292           <...>-13308 (-----) [000] ...1 24573.596212: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
57293           <...>-13308 (-----) [000] ...1 24573.596450: tracing_mark_write: E|13131
57294           <...>-13308 (-----) [000] ...1 24573.596454: tracing_mark_write: E|13131
57295           <...>-13308 (-----) [000] ...1 24573.596463: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
57296           <...>-13308 (-----) [000] ...1 24573.596467: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
57297           <...>-13308 (-----) [000] ...1 24573.596506: tracing_mark_write: E|13131
57298           <...>-13308 (-----) [000] ...1 24573.596509: tracing_mark_write: E|13131
57299           <...>-13308 (-----) [000] ...1 24573.596518: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
57300           <...>-13308 (-----) [000] ...1 24573.596521: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
57301           <...>-13308 (-----) [000] ...1 24573.596535: tracing_mark_write: E|13131
57302           <...>-13308 (-----) [000] ...1 24573.596538: tracing_mark_write: E|13131
57303           <...>-13308 (-----) [000] ...1 24573.596547: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
57304           <...>-13308 (-----) [000] ...1 24573.596550: tracing_mark_write: E|13131
57305           <...>-13308 (-----) [000] ...1 24573.596557: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
57306           <...>-13308 (-----) [000] ...1 24573.596561: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
57307           <...>-13308 (-----) [000] d.h1 24573.597335: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
57308           <...>-13308 (-----) [000] dnh2 24573.597343: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
57309           <...>-13308 (-----) [000] d..2 24573.597351: sched_switch: prev_comm=id.nn.benchmark prev_pid=13308 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
57310        DispSync-23904 (23896) [000] d..1 24573.597373: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
57311        DispSync-23904 (23896) [000] d..2 24573.597389: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
57312 id.nn.benchmark-13155 (13131) [001] d..2 24573.597398: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
57313        DispSync-23904 (23896) [000] d..2 24573.597404: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13308 next_prio=110
57314  appEventThread-23905 (23896) [001] d..3 24573.597444: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
57315 id.nn.benchmark-13156 (13131) [007] dnh1 24573.597470: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
57316           <...>-13308 (-----) [000] ...1 24573.597494: tracing_mark_write: E|13131
57317 id.nn.benchmark-13156 (13131) [007] d..2 24573.597495: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
57318  appEventThread-23905 (23896) [001] d.h3 24573.597496: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
57319           <...>-13308 (-----) [000] ...1 24573.597498: tracing_mark_write: E|13131
57320  appEventThread-23905 (23896) [001] d.h3 24573.597504: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
57321           <...>-13308 (-----) [000] ...1 24573.597507: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57322<...>-24151 ( 24151) [007] dnh1 24573.597507: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
57323           <...>-13308 (-----) [000] ...1 24573.597510: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57324<...>-24151 ( 24151) [007] d..2 24573.597511: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
57325         sugov:4-560   (  560) [007] d..2 24573.597514: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
57326  appEventThread-23905 (23896) [001] d.h4 24573.597516: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
57327           <...>-13308 (-----) [000] d..2 24573.597525: sched_switch: prev_comm=id.nn.benchmark prev_pid=13308 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
57328  appEventThread-23905 (23896) [001] d..2 24573.597532: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
57329         sugov:0-559   (  559) [000] d..2 24573.597533: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13308 next_prio=110
57330           <...>-13154 (-----) [004] d.s2 24573.597554: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
57331<...>-24151 ( 24151) [007] d.s1 24573.597558: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
57332 id.nn.benchmark-13160 (13131) [002] d.h2 24573.597563: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
57333           <...>-13154 (-----) [004] d.s3 24573.597575: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
57334<...>-24151 ( 24151) [007] d.s2 24573.597577: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
57335 id.nn.benchmark-13160 (13131) [002] dnh3 24573.597579: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
57336 id.nn.benchmark-13160 (13131) [002] d..2 24573.597589: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
57337     migration/2-25    (   25) [002] d..2 24573.597653: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
57338<...>-24151 ( 24151) [007] .... 24573.597737: binder_transaction: transaction=1670008 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
57339<...>-24151 ( 24151) [007] d..4 24573.597743: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
57340           <...>-13308 (-----) [000] dnh1 24573.597775: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
57341           <...>-13308 (-----) [000] d..2 24573.597780: sched_switch: prev_comm=id.nn.benchmark prev_pid=13308 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
57342  Binder:23896_5-25989 (23896) [000] .... 24573.597788: binder_transaction_received: transaction=1670008
57343<...>-24151 ( 24151) [007] d..3 24573.597791: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
57344  Binder:23896_5-25989 (23896) [000] d.h1 24573.597820: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
57345  Binder:23896_5-25989 (23896) [000] d..1 24573.597831: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
57346     logd.writer-563   (  555) [002] d..2 24573.597835: 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
57347  Binder:23896_5-25989 (23896) [000] d..2 24573.597866: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
57348     rcu_preempt-7     (    7) [002] d..2 24573.597874: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
57349<...>-24151 ( 24151) [007] d..2 24573.597886: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
57350  Binder:23896_5-25989 (23896) [000] d..2 24573.597888: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
57351  appEventThread-23905 (23896) [002] d..2 24573.597900: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
57352     rcu_preempt-7     (    7) [002] d..2 24573.597904: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=005
57353           <...>-13157 (-----) [005] dnh1 24573.597931: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=005
57354           <...>-13157 (-----) [005] d..2 24573.597934: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
57355         rcuop/2-29    (   29) [005] d..2 24573.597935: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=004
57356         rcuop/2-29    (   29) [005] d..3 24573.597946: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=004
57357         rcuop/2-29    (   29) [005] d..2 24573.597950: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
57358           <...>-13154 (-----) [004] d..2 24573.597952: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/3 next_pid=37 next_prio=120
57359     rcu_preempt-7     (    7) [002] d..2 24573.597954: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
57360         rcuop/3-37    (   37) [004] d..2 24573.597979: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
57361    RenderThread-24437 (24151) [000] d..1 24573.598010: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
57362  kworker/u16:15-18488 (18488) [007] d..2 24573.598017: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
57363 id.nn.benchmark-13160 (13131) [007] dnh1 24573.598026: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
57364 id.nn.benchmark-13160 (13131) [007] d..2 24573.598029: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
57365<...>-24151 ( 24151) [007] d..2 24573.598051: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
57366    RenderThread-24437 (24151) [000] .... 24573.598069: binder_transaction: transaction=1670009 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
57367    RenderThread-24437 (24151) [000] d..4 24573.598074: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
57368    RenderThread-24437 (24151) [000] d..5 24573.598096: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
57369    RenderThread-24437 (24151) [000] d..2 24573.598104: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
57370  Binder:23896_5-25989 (23896) [000] .... 24573.598108: binder_transaction_received: transaction=1670009
57371  Binder:23896_5-25989 (23896) [000] .... 24573.598158: binder_transaction: transaction=1670010 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
57372  Binder:23896_5-25989 (23896) [000] d..2 24573.598167: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
57373  Binder:23896_5-25989 (23896) [000] d..3 24573.598188: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
57374  Binder:23896_5-25989 (23896) [000] d..2 24573.598208: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
57375    RenderThread-24437 (24151) [000] .... 24573.598211: binder_transaction_received: transaction=1670010
57376    RenderThread-24437 (24151) [000] d..2 24573.599189: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13308 next_prio=110
57377           <...>-13308 (-----) [000] ...1 24573.599204: tracing_mark_write: E|13131
57378           <...>-13308 (-----) [000] ...1 24573.599208: tracing_mark_write: E|13131
57379           <...>-13308 (-----) [000] d..2 24573.599248: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
57380           <...>-13308 (-----) [000] d..3 24573.599260: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
57381           <...>-13308 (-----) [000] d.h3 24573.599284: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
57382           <...>-13308 (-----) [000] d.h4 24573.599284: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
57383           <...>-13308 (-----) [000] d.h4 24573.599284: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
57384           <...>-13308 (-----) [000] dnh5 24573.599284: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
57385           <...>-13308 (-----) [000] .n.1 24573.599284: tracing_mark_write: E|13131
57386 id.nn.benchmark-13160 (13131) [007] d.h1 24573.599306: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
57387 id.nn.benchmark-13160 (13131) [007] dnh1 24573.599307: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
57388 id.nn.benchmark-13160 (13131) [007] d..2 24573.599331: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
57389    RenderThread-24437 (24151) [007] dnh1 24573.599344: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
57390    RenderThread-24437 (24151) [007] d..2 24573.599346: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
57391         sugov:4-560   (  560) [007] d..2 24573.599350: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
57392           <...>-13308 (-----) [000] d..2 24573.599353: sched_switch: prev_comm=id.nn.benchmark prev_pid=13308 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
57393         sugov:0-559   (  559) [000] d..2 24573.599360: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13308 next_prio=110
57394           <...>-13308 (-----) [000] d..1 24573.599365: sched_waking: comm=id.nn.benchmark pid=13307 prio=110 target_cpu=000
57395    RenderThread-24437 (24151) [007] d.h1 24573.599402: sched_wakeup: comm=id.nn.benchmark pid=13307 prio=110 target_cpu=007
57396           <...>-13308 (-----) [000] d.h3 24573.599419: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
57397    RenderThread-24437 (24151) [007] dnh1 24573.599439: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
57398    RenderThread-24437 (24151) [007] d..2 24573.599443: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
57399 kgsl_worker_thr-246   (  246) [007] d..2 24573.599467: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
57400 kgsl_worker_thr-246   (  246) [007] d..3 24573.599471: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
57401           <...>-13308 (-----) [000] ...1 24573.599476: tracing_mark_write: E|13131
57402 kgsl_worker_thr-246   (  246) [007] d..2 24573.599476: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
57403  kworker/u16:15-18488 (18488) [007] d..2 24573.599493: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
57404    RenderThread-24437 (24151) [007] .... 24573.599500: binder_transaction: transaction=1670011 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
57405    RenderThread-24437 (24151) [007] d..4 24573.599503: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
57406    RenderThread-24437 (24151) [007] d..5 24573.599513: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
57407    RenderThread-24437 (24151) [007] d..2 24573.599547: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
57408  Binder:23896_5-25989 (23896) [007] .... 24573.599554: binder_transaction_received: transaction=1670011
57409  Binder:23896_5-25989 (23896) [007] .... 24573.599616: binder_transaction: transaction=1670012 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
57410  Binder:23896_5-25989 (23896) [007] d..2 24573.599618: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
57411  Binder:23896_5-25989 (23896) [007] d..3 24573.599624: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
57412  Binder:23896_5-25989 (23896) [007] d..2 24573.599632: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
57413    RenderThread-24437 (24151) [007] .... 24573.599633: binder_transaction_received: transaction=1670012
57414    RenderThread-24437 (24151) [007] d..2 24573.599658: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13307 next_prio=110
57415           <...>-13307 (-----) [007] d..2 24573.599668: sched_switch: prev_comm=id.nn.benchmark prev_pid=13307 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
57416           <...>-13308 (-----) [000] d..1 24573.599671: sched_waking: comm=id.nn.benchmark pid=13307 prio=110 target_cpu=007
57417 id.nn.benchmark-13160 (13131) [007] dnh1 24573.599685: sched_wakeup: comm=id.nn.benchmark pid=13307 prio=110 target_cpu=007
57418 id.nn.benchmark-13160 (13131) [007] d..2 24573.599688: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13307 next_prio=110
57419           <...>-13308 (-----) [000] d..2 24573.599730: sched_switch: prev_comm=id.nn.benchmark prev_pid=13308 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
57420           <...>-13307 (-----) [007] d..1 24573.599747: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
57421           <...>-13307 (-----) [007] dn.2 24573.599754: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
57422           <...>-13307 (-----) [007] d..2 24573.599757: sched_switch: prev_comm=id.nn.benchmark prev_pid=13307 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
57423           <...>-13131 (-----) [007] d..2 24573.599763: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13307 next_prio=110
57424           <...>-13307 (-----) [007] d..1 24573.599790: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
57425           <...>-13307 (-----) [007] dn.2 24573.599793: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
57426           <...>-13307 (-----) [007] d..2 24573.599795: sched_switch: prev_comm=id.nn.benchmark prev_pid=13307 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
57427           <...>-13131 (-----) [007] ...1 24573.599805: tracing_mark_write: E|13131
57428           <...>-13131 (-----) [007] ...1 24573.599808: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
57429           <...>-13131 (-----) [007] ...1 24573.599810: tracing_mark_write: E|13131
57430           <...>-13131 (-----) [007] ...1 24573.599812: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
57431           <...>-13131 (-----) [007] ...1 24573.599814: tracing_mark_write: E|13131
57432     logd.writer-563   (  555) [000] d..2 24573.599826: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13307 next_prio=110
57433           <...>-13307 (-----) [000] d..2 24573.599866: sched_switch: prev_comm=id.nn.benchmark prev_pid=13307 prev_prio=110 prev_state=x ==> next_comm=swapper/0 next_pid=0 next_prio=120
57434           <...>-13131 (-----) [007] ...1 24573.599877: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
57435           <...>-13131 (-----) [007] d..2 24573.599891: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
57436          <idle>-0     (-----) [000] d..1 24573.599898: cpu_idle: state=0 cpu_id=0
57437           <...>-13131 (-----) [007] ...1 24573.599906: tracing_mark_write: E|13131
57438           <...>-13131 (-----) [007] ...1 24573.599908: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
57439           <...>-13131 (-----) [007] ...1 24573.599911: tracing_mark_write: E|13131
57440          <idle>-0     (-----) [000] dnh2 24573.599912: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
57441           <...>-13131 (-----) [007] ...1 24573.599913: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
57442           <...>-13131 (-----) [007] ...1 24573.599914: tracing_mark_write: E|13131
57443           <...>-13131 (-----) [007] ...1 24573.599916: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
57444          <idle>-0     (-----) [000] .n.1 24573.599917: cpu_idle: state=4294967295 cpu_id=0
57445          <idle>-0     (-----) [000] d..2 24573.599925: 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
57446           <...>-13131 (-----) [007] ...1 24573.599970: tracing_mark_write: E|13131
57447           <...>-13131 (-----) [007] ...1 24573.599971: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
57448           <...>-13131 (-----) [007] d..2 24573.599980: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
57449     logd.writer-563   (  555) [000] d..2 24573.599982: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13309 next_prio=110
57450           <...>-13309 (-----) [000] d.h4 24573.600011: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
57451           <...>-13309 (-----) [000] d.h4 24573.600019: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
57452 id.nn.benchmark-13160 (13131) [007] dnh1 24573.600023: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
57453           <...>-13309 (-----) [000] dnh5 24573.600025: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
57454 id.nn.benchmark-13160 (13131) [007] d..2 24573.600026: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
57455         sugov:4-560   (  560) [007] d..2 24573.600030: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
57456           <...>-13309 (-----) [000] d..2 24573.600030: sched_switch: prev_comm=id.nn.benchmark prev_pid=13309 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
57457         sugov:0-559   (  559) [000] d..2 24573.600037: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13309 next_prio=110
57458           <...>-13309 (-----) [000] d..2 24573.600094: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
57459           <...>-13309 (-----) [000] d..3 24573.600101: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
57460           <...>-13309 (-----) [000] d..2 24573.600392: sched_switch: prev_comm=id.nn.benchmark prev_pid=13309 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
57461     logd.writer-563   (  555) [000] d..2 24573.600569: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13310 next_prio=110
57462           <...>-13310 (-----) [000] d.h4 24573.600598: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
57463           <...>-13310 (-----) [000] d.h4 24573.600606: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
57464 id.nn.benchmark-13160 (13131) [007] dnh1 24573.600609: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
57465 id.nn.benchmark-13160 (13131) [007] d..2 24573.600611: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
57466           <...>-13310 (-----) [000] dnh5 24573.600612: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
57467         sugov:4-560   (  560) [007] d..2 24573.600614: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
57468           <...>-13310 (-----) [000] d..2 24573.600617: sched_switch: prev_comm=id.nn.benchmark prev_pid=13310 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
57469         sugov:0-559   (  559) [000] d..2 24573.600624: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13310 next_prio=110
57470           <...>-13310 (-----) [000] ...1 24573.600651: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
57471           <...>-13310 (-----) [000] ...1 24573.600655: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
57472           <...>-13310 (-----) [000] d..2 24573.600713: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
57473           <...>-13310 (-----) [000] d..3 24573.600722: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
57474           <...>-13310 (-----) [000] ...1 24573.600789: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57475           <...>-13310 (-----) [000] ...1 24573.600794: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57476           <...>-13154 (-----) [004] d.s2 24573.600888: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
57477           <...>-13154 (-----) [004] d.s3 24573.600894: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
57478 id.nn.benchmark-13155 (13131) [001] d.h2 24573.600895: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
57479 id.nn.benchmark-13160 (13131) [007] d..2 24573.600897: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
57480 id.nn.benchmark-13155 (13131) [001] dnh3 24573.600902: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
57481 id.nn.benchmark-13155 (13131) [001] d..2 24573.600910: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
57482     migration/1-17    (   17) [001] d..2 24573.600968: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
57483     logd.writer-563   (  555) [001] d..2 24573.601112: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
57484  kworker/u16:15-18488 (18488) [007] d..2 24573.601118: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
57485 id.nn.benchmark-13155 (13131) [001] d.h4 24573.601142: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
57486 id.nn.benchmark-13155 (13131) [001] d.h4 24573.601150: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
57487 id.nn.benchmark-13160 (13131) [007] dnh1 24573.601152: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
57488 id.nn.benchmark-13160 (13131) [007] d..2 24573.601155: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
57489         sugov:4-560   (  560) [007] d..2 24573.601158: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
57490 id.nn.benchmark-13155 (13131) [001] d.h5 24573.601158: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
57491           <...>-13310 (-----) [000] d..2 24573.601167: sched_switch: prev_comm=id.nn.benchmark prev_pid=13310 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
57492         sugov:0-559   (  559) [000] d..2 24573.601176: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13310 next_prio=110
57493           <...>-13310 (-----) [000] d.h1 24573.601330: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
57494           <...>-13310 (-----) [000] dnh2 24573.601338: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
57495           <...>-13310 (-----) [000] d..2 24573.601345: sched_switch: prev_comm=id.nn.benchmark prev_pid=13310 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
57496        DispSync-23904 (23896) [000] d..1 24573.601361: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
57497        DispSync-23904 (23896) [000] d..2 24573.601371: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
57498 id.nn.benchmark-13156 (13131) [002] d..2 24573.601380: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
57499        DispSync-23904 (23896) [000] d..2 24573.601384: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13310 next_prio=110
57500   sfEventThread-23906 (23896) [002] d..3 24573.601408: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
57501   sfEventThread-23906 (23896) [002] d..4 24573.601425: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
57502           <...>-13310 (-----) [000] d..2 24573.601433: sched_switch: prev_comm=id.nn.benchmark prev_pid=13310 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
57503   sfEventThread-23906 (23896) [002] d..2 24573.601439: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
57504  surfaceflinger-23896 (23896) [000] d..1 24573.601682: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
57505  surfaceflinger-23896 (23896) [000] d..2 24573.601694: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
57506 id.nn.benchmark-13156 (13131) [002] d..2 24573.601702: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
57507   sfEventThread-23906 (23896) [002] d..2 24573.601715: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
57508  surfaceflinger-23896 (23896) [000] ...1 24573.601825: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
57509  surfaceflinger-23896 (23896) [000] ...1 24573.601828: tracing_mark_write: E|23896
57510  surfaceflinger-23896 (23896) [000] .... 24573.601870: binder_transaction: transaction=1670013 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
57511  surfaceflinger-23896 (23896) [000] ...2 24573.601890: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
57512  surfaceflinger-23896 (23896) [000] d..4 24573.601897: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
57513 id.nn.benchmark-13160 (13131) [007] dnh1 24573.601911: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
57514 id.nn.benchmark-13160 (13131) [007] d..2 24573.601914: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
57515  surfaceflinger-23896 (23896) [000] d..2 24573.601919: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13310 next_prio=110
57516  HwBinder:598_3-633   (  598) [007] .... 24573.601919: binder_transaction_received: transaction=1670013
57517  HwBinder:598_3-633   (  598) [007] ...1 24573.601944: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
57518  HwBinder:598_3-633   (  598) [007] ...1 24573.601997: tracing_mark_write: B|598|HWCSession::PresentDisplay::
57519 id.nn.benchmark-13158 (13131) [006] d..2 24573.602028: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
57520  HwBinder:598_3-633   (  598) [007] ...1 24573.602062: tracing_mark_write: B|598|HWDeviceDRM::Commit::
57521  HwBinder:598_3-633   (  598) [007] ...1 24573.602066: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
57522           <...>-13154 (-----) [004] d..3 24573.602087: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
57523           <...>-13157 (-----) [005] d..2 24573.602092: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
57524           <...>-13154 (-----) [004] d..2 24573.602094: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
57525 id.nn.benchmark-13155 (13131) [001] dnh1 24573.602096: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
57526 id.nn.benchmark-13155 (13131) [001] d..2 24573.602101: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
57527          <idle>-0     (-----) [004] d..1 24573.602102: cpu_idle: state=0 cpu_id=4
57528          <idle>-0     (-----) [005] d..1 24573.602102: cpu_idle: state=0 cpu_id=5
57529          <idle>-0     (-----) [004] .n.1 24573.602122: cpu_idle: state=4294967295 cpu_id=4
57530          <idle>-0     (-----) [004] d..2 24573.602141: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
57531     migration/1-17    (   17) [001] d.h3 24573.602142: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
57532     migration/1-17    (   17) [001] d.h3 24573.602153: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
57533          <idle>-0     (-----) [005] dnh2 24573.602159: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
57534          <idle>-0     (-----) [005] .n.1 24573.602161: cpu_idle: state=4294967295 cpu_id=5
57535     migration/1-17    (   17) [001] d.h4 24573.602162: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
57536          <idle>-0     (-----) [005] d..2 24573.602164: 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
57537     migration/1-17    (   17) [001] d..2 24573.602169: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
57538         sugov:4-560   (  560) [005] d..2 24573.602172: 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
57539          <idle>-0     (-----) [005] d..1 24573.602175: cpu_idle: state=0 cpu_id=5
57540         sugov:0-559   (  559) [001] d..2 24573.602181: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
57541          <idle>-0     (-----) [001] d..1 24573.602197: cpu_idle: state=0 cpu_id=1
57542  HwBinder:598_3-633   (  598) [007] d..2 24573.602259: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
57543          <idle>-0     (-----) [001] dnh2 24573.602279: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
57544          <idle>-0     (-----) [001] .n.1 24573.602283: cpu_idle: state=4294967295 cpu_id=1
57545          <idle>-0     (-----) [001] d..2 24573.602288: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
57546  HwBinder:598_3-633   (  598) [007] ...1 24573.602298: tracing_mark_write: E|598
57547  HwBinder:598_3-633   (  598) [007] ...1 24573.602299: tracing_mark_write: E|598
57548  HwBinder:598_3-633   (  598) [007] ...1 24573.602320: tracing_mark_write: E|598
57549  HwBinder:598_3-633   (  598) [007] ...1 24573.602340: tracing_mark_write: E|598
57550  HwBinder:598_3-633   (  598) [007] .... 24573.602345: binder_transaction: transaction=1670014 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
57551  HwBinder:598_3-633   (  598) [007] d..2 24573.602351: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
57552  HwBinder:598_3-633   (  598) [007] .... 24573.602357: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
57553           <...>-13310 (-----) [000] dnh1 24573.602364: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
57554          <idle>-0     (-----) [005] ...1 24573.602364: cpu_idle: state=4294967295 cpu_id=5
57555          <idle>-0     (-----) [005] d..1 24573.602365: cpu_idle: state=0 cpu_id=5
57556           <...>-13310 (-----) [000] d..2 24573.602371: sched_switch: prev_comm=id.nn.benchmark prev_pid=13310 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
57557  surfaceflinger-23896 (23896) [000] .... 24573.602375: binder_transaction_received: transaction=1670014
57558  HwBinder:598_3-633   (  598) [007] d..3 24573.602381: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
57559  HwBinder:598_3-633   (  598) [007] d..2 24573.602388: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
57560 id.nn.benchmark-13156 (13131) [002] dnh1 24573.602390: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
57561 id.nn.benchmark-13156 (13131) [002] d..2 24573.602395: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
57562          <idle>-0     (-----) [007] d..1 24573.602398: cpu_idle: state=0 cpu_id=7
57563          <idle>-0     (-----) [007] .n.1 24573.602417: cpu_idle: state=4294967295 cpu_id=7
57564          <idle>-0     (-----) [007] d..2 24573.602434: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
57565     migration/2-25    (   25) [002] d..2 24573.602444: 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
57566          <idle>-0     (-----) [002] d..1 24573.602457: cpu_idle: state=0 cpu_id=2
57567  surfaceflinger-23896 (23896) [000] d..2 24573.602620: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13310 next_prio=110
57568 crtc_commit:111-253   (  253) [001] d..2 24573.602897: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
57569          <idle>-0     (-----) [001] d..1 24573.602905: cpu_idle: state=0 cpu_id=1
57570           <...>-13310 (-----) [000] d..1 24573.603325: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
57571           <...>-13310 (-----) [000] d..1 24573.603345: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
57572          <idle>-0     (-----) [005] dnh2 24573.603345: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
57573          <idle>-0     (-----) [005] .n.1 24573.603347: cpu_idle: state=4294967295 cpu_id=5
57574          <idle>-0     (-----) [005] d..2 24573.603351: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
57575           <...>-13310 (-----) [000] d..1 24573.603356: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=006
57576           <...>-13154 (-----) [005] d.h1 24573.603357: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
57577 id.nn.benchmark-13160 (13131) [006] d.h1 24573.603367: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=006
57578          <idle>-0     (-----) [001] ...1 24573.604043: cpu_idle: state=4294967295 cpu_id=1
57579          <idle>-0     (-----) [001] d..1 24573.604046: cpu_idle: state=0 cpu_id=1
57580          <idle>-0     (-----) [002] d.s2 24573.604231: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
57581          <idle>-0     (-----) [002] dns3 24573.604240: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
57582          <idle>-0     (-----) [002] .n.1 24573.604250: cpu_idle: state=4294967295 cpu_id=2
57583          <idle>-0     (-----) [002] d..2 24573.604256: 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
57584          <idle>-0     (-----) [001] dnH3 24573.604286: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
57585     rcu_preempt-7     (    7) [002] d..2 24573.604303: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
57586          <idle>-0     (-----) [001] dnH3 24573.604305: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
57587 id.nn.benchmark-13160 (13131) [006] dnh1 24573.604327: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
57588 id.nn.benchmark-13160 (13131) [006] d..2 24573.604330: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
57589         sugov:4-560   (  560) [006] d..2 24573.604333: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
57590          <idle>-0     (-----) [001] dnH4 24573.604337: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
57591          <idle>-0     (-----) [001] .n.1 24573.604343: cpu_idle: state=4294967295 cpu_id=1
57592           <...>-13310 (-----) [000] d..2 24573.604346: sched_switch: prev_comm=id.nn.benchmark prev_pid=13310 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
57593          <idle>-0     (-----) [001] d..2 24573.604351: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
57594         sugov:0-559   (  559) [000] d..2 24573.604355: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13310 next_prio=110
57595           <...>-13310 (-----) [000] ...1 24573.604680: tracing_mark_write: E|13131
57596           <...>-13310 (-----) [000] ...1 24573.604684: tracing_mark_write: E|13131
57597           <...>-13310 (-----) [000] ...1 24573.604701: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57598           <...>-13310 (-----) [000] ...1 24573.604706: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57599           <...>-13310 (-----) [000] ...1 24573.605409: tracing_mark_write: E|13131
57600           <...>-13310 (-----) [000] ...1 24573.605412: tracing_mark_write: E|13131
57601           <...>-13310 (-----) [000] ...1 24573.605431: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57602           <...>-13310 (-----) [000] ...1 24573.605435: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57603           <...>-13310 (-----) [000] ...1 24573.605767: tracing_mark_write: E|13131
57604           <...>-13310 (-----) [000] ...1 24573.605770: tracing_mark_write: E|13131
57605           <...>-13310 (-----) [000] ...1 24573.605782: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57606           <...>-13310 (-----) [000] ...1 24573.605786: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57607           <...>-13310 (-----) [000] ...1 24573.606020: tracing_mark_write: E|13131
57608           <...>-13310 (-----) [000] ...1 24573.606024: tracing_mark_write: E|13131
57609           <...>-13310 (-----) [000] ...1 24573.606035: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57610           <...>-13310 (-----) [000] ...1 24573.606039: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57611           <...>-13310 (-----) [000] ...1 24573.606435: tracing_mark_write: E|13131
57612           <...>-13310 (-----) [000] ...1 24573.606438: tracing_mark_write: E|13131
57613           <...>-13310 (-----) [000] ...1 24573.606449: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57614           <...>-13310 (-----) [000] ...1 24573.606452: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57615           <...>-13310 (-----) [000] ...1 24573.606847: tracing_mark_write: E|13131
57616           <...>-13310 (-----) [000] ...1 24573.606851: tracing_mark_write: E|13131
57617           <...>-13310 (-----) [000] ...1 24573.606868: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57618           <...>-13310 (-----) [000] ...1 24573.606872: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57619           <...>-13310 (-----) [000] ...1 24573.607063: tracing_mark_write: E|13131
57620           <...>-13310 (-----) [000] ...1 24573.607066: tracing_mark_write: E|13131
57621           <...>-13310 (-----) [000] ...1 24573.607079: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57622           <...>-13310 (-----) [000] ...1 24573.607083: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57623           <...>-13310 (-----) [000] ...1 24573.607158: tracing_mark_write: E|13131
57624           <...>-13310 (-----) [000] ...1 24573.607162: tracing_mark_write: E|13131
57625           <...>-13310 (-----) [000] ...1 24573.607172: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
57626           <...>-13310 (-----) [000] ...1 24573.607176: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
57627           <...>-13310 (-----) [000] ...1 24573.607484: tracing_mark_write: E|13131
57628           <...>-13310 (-----) [000] ...1 24573.607488: tracing_mark_write: E|13131
57629           <...>-13310 (-----) [000] ...1 24573.607496: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
57630           <...>-13310 (-----) [000] ...1 24573.607500: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
57631 id.nn.benchmark-13155 (13131) [004] d.s2 24573.607555: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
57632           <...>-13157 (-----) [001] d.s2 24573.607566: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
57633 id.nn.benchmark-13155 (13131) [004] d.s3 24573.607570: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
57634 id.nn.benchmark-13156 (13131) [007] d..2 24573.607576: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
57635           <...>-13310 (-----) [000] ...1 24573.607578: tracing_mark_write: E|13131
57636           <...>-13157 (-----) [001] d.s3 24573.607584: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
57637           <...>-13310 (-----) [000] d..2 24573.607591: sched_switch: prev_comm=id.nn.benchmark prev_pid=13310 prev_prio=110 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
57638     rcu_preempt-7     (    7) [000] d..2 24573.607603: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
57639 id.nn.benchmark-13160 (13131) [006] dnh1 24573.607630: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
57640     rcu_preempt-7     (    7) [000] d..2 24573.607631: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
57641 id.nn.benchmark-13160 (13131) [006] d..2 24573.607633: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
57642     rcu_preempt-7     (    7) [000] d..3 24573.607643: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
57643         rcuop/6-61    (   61) [006] d..2 24573.607645: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=000
57644         rcuop/6-61    (   61) [006] d..2 24573.607656: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
57645     rcu_preempt-7     (    7) [000] d..2 24573.607658: 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
57646         rcuop/0-10    (   10) [000] d.h3 24573.607666: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=000
57647         rcuop/0-10    (   10) [000] d..2 24573.607669: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
57648 id.nn.benchmark-13155 (13131) [004] dnh1 24573.607694: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
57649 id.nn.benchmark-13155 (13131) [004] d..2 24573.607697: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
57650         rcuop/1-21    (   21) [004] d..2 24573.607703: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
57651  kworker/u16:15-18488 (18488) [007] d..2 24573.607715: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
57652         rcuop/0-10    (   10) [000] d..2 24573.607724: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/7 next_pid=69 next_prio=120
57653         rcuop/7-69    (   69) [000] d..2 24573.607760: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13310 next_prio=110
57654           <...>-13310 (-----) [000] ...1 24573.607764: tracing_mark_write: E|13131
57655           <...>-13310 (-----) [000] ...1 24573.607776: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
57656           <...>-13310 (-----) [000] ...1 24573.607780: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
57657           <...>-13310 (-----) [000] ...1 24573.607797: tracing_mark_write: E|13131
57658           <...>-13310 (-----) [000] ...1 24573.607800: tracing_mark_write: E|13131
57659           <...>-13310 (-----) [000] ...1 24573.607810: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
57660           <...>-13310 (-----) [000] ...1 24573.607813: tracing_mark_write: E|13131
57661           <...>-13310 (-----) [000] ...1 24573.607823: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
57662           <...>-13310 (-----) [000] ...1 24573.607828: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
57663           <...>-13310 (-----) [000] ...1 24573.608681: tracing_mark_write: E|13131
57664           <...>-13310 (-----) [000] ...1 24573.608685: tracing_mark_write: E|13131
57665           <...>-13310 (-----) [000] ...1 24573.608692: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57666           <...>-13310 (-----) [000] ...1 24573.608696: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57667           <...>-13310 (-----) [000] ...1 24573.608779: tracing_mark_write: E|13131
57668           <...>-13310 (-----) [000] ...1 24573.608783: tracing_mark_write: E|13131
57669           <...>-13310 (-----) [000] d..2 24573.608827: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
57670           <...>-13310 (-----) [000] d..3 24573.608841: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
57671           <...>-13310 (-----) [000] ...1 24573.608861: tracing_mark_write: E|13131
57672           <...>-13310 (-----) [000] d..1 24573.608866: sched_waking: comm=id.nn.benchmark pid=13309 prio=110 target_cpu=000
57673 id.nn.benchmark-13160 (13131) [006] dnh1 24573.608890: sched_wakeup: comm=id.nn.benchmark pid=13309 prio=110 target_cpu=006
57674 id.nn.benchmark-13160 (13131) [006] d..2 24573.608916: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13309 next_prio=110
57675           <...>-13310 (-----) [000] d.h3 24573.608917: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
57676           <...>-13309 (-----) [006] d..2 24573.608923: sched_switch: prev_comm=id.nn.benchmark prev_pid=13309 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
57677           <...>-13310 (-----) [000] d.h3 24573.608925: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
57678 id.nn.benchmark-13160 (13131) [006] dnh1 24573.608928: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
57679 id.nn.benchmark-13160 (13131) [006] d..2 24573.608930: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
57680           <...>-13310 (-----) [000] dnh4 24573.608931: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
57681         sugov:4-560   (  560) [006] d..2 24573.608934: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
57682           <...>-13310 (-----) [000] d..2 24573.608937: sched_switch: prev_comm=id.nn.benchmark prev_pid=13310 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
57683         sugov:0-559   (  559) [000] d..2 24573.608944: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
57684     logd.writer-563   (  555) [000] d..2 24573.608999: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13310 next_prio=110
57685           <...>-13310 (-----) [000] ...1 24573.609018: tracing_mark_write: E|13131
57686           <...>-13310 (-----) [000] d..1 24573.609226: sched_waking: comm=id.nn.benchmark pid=13309 prio=110 target_cpu=006
57687 id.nn.benchmark-13160 (13131) [006] dnh1 24573.609239: sched_wakeup: comm=id.nn.benchmark pid=13309 prio=110 target_cpu=006
57688 id.nn.benchmark-13160 (13131) [006] d..2 24573.609241: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13309 next_prio=110
57689           <...>-13309 (-----) [006] d..2 24573.609279: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
57690           <...>-13309 (-----) [006] d..1 24573.609312: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
57691           <...>-13309 (-----) [006] d..2 24573.609321: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
57692 id.nn.benchmark-13156 (13131) [007] d..2 24573.609327: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
57693           <...>-13131 (-----) [007] d..2 24573.609333: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
57694           <...>-13309 (-----) [006] d..1 24573.609350: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
57695           <...>-13310 (-----) [000] d.h4 24573.609354: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
57696           <...>-13309 (-----) [006] d..2 24573.609358: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
57697 id.nn.benchmark-13156 (13131) [007] d..2 24573.609364: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
57698           <...>-13310 (-----) [000] dnh5 24573.609364: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
57699           <...>-13310 (-----) [000] dnh4 24573.609368: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
57700           <...>-13309 (-----) [006] d..2 24573.609369: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
57701           <...>-13131 (-----) [007] ...1 24573.609378: tracing_mark_write: E|13131
57702           <...>-13309 (-----) [006] dn.3 24573.609380: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
57703           <...>-13131 (-----) [007] ...1 24573.609380: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
57704           <...>-13131 (-----) [007] ...1 24573.609383: tracing_mark_write: E|13131
57705           <...>-13309 (-----) [006] d..2 24573.609383: sched_switch: prev_comm=id.nn.benchmark prev_pid=13309 prev_prio=110 prev_state=R+ ==> next_comm=rcuop/6 next_pid=61 next_prio=120
57706           <...>-13131 (-----) [007] ...1 24573.609384: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
57707           <...>-13131 (-----) [007] ...1 24573.609386: tracing_mark_write: E|13131
57708         rcuop/6-61    (   61) [006] dnh1 24573.609387: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
57709         rcuop/6-61    (   61) [006] d..2 24573.609390: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
57710           <...>-13310 (-----) [000] dnh1 24573.609396: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
57711           <...>-13310 (-----) [000] dnh2 24573.609423: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
57712           <...>-13310 (-----) [000] dnh2 24573.609433: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
57713 crtc_commit:111-253   (  253) [006] d..2 24573.609436: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcuop/6 next_pid=61 next_prio=120
57714 id.nn.benchmark-13155 (13131) [004] dnh1 24573.609438: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
57715         rcuop/6-61    (   61) [006] d..2 24573.609439: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13309 next_prio=110
57716 id.nn.benchmark-13155 (13131) [004] d..2 24573.609441: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
57717         sugov:4-560   (  560) [004] d..2 24573.609444: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
57718           <...>-13310 (-----) [000] dnh3 24573.609445: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
57719           <...>-13131 (-----) [007] ...1 24573.609448: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
57720           <...>-13310 (-----) [000] d..2 24573.609451: sched_switch: prev_comm=id.nn.benchmark prev_pid=13310 prev_prio=110 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
57721           <...>-13309 (-----) [006] d..2 24573.609451: sched_switch: prev_comm=id.nn.benchmark prev_pid=13309 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
57722           <...>-13157 (-----) [001] d..2 24573.609453: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
57723         sugov:0-559   (  559) [001] d..2 24573.609462: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
57724  crtc_event:111-254   (  254) [000] d..2 24573.609462: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
57725           <...>-13131 (-----) [007] ...1 24573.609471: tracing_mark_write: E|13131
57726           <...>-13131 (-----) [007] ...1 24573.609473: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
57727 id.nn.benchmark-13160 (13131) [006] dnh1 24573.609474: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
57728           <...>-13131 (-----) [007] ...1 24573.609475: tracing_mark_write: E|13131
57729  crtc_event:111-254   (  254) [000] d..2 24573.609476: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13310 next_prio=110
57730 id.nn.benchmark-13160 (13131) [006] d..2 24573.609477: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
57731           <...>-13131 (-----) [007] ...1 24573.609477: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
57732           <...>-13131 (-----) [007] ...1 24573.609479: tracing_mark_write: E|13131
57733           <...>-13131 (-----) [007] ...1 24573.609480: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
57734           <...>-13310 (-----) [000] d..2 24573.609485: sched_switch: prev_comm=id.nn.benchmark prev_pid=13310 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
57735 crtc_commit:111-253   (  253) [006] d..2 24573.609529: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
57736           <...>-13131 (-----) [007] ...1 24573.609536: tracing_mark_write: E|13131
57737           <...>-13131 (-----) [007] ...1 24573.609538: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
57738           <...>-13131 (-----) [007] d..2 24573.609542: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
57739     logd.writer-563   (  555) [000] d..2 24573.609575: 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
57740          <idle>-0     (-----) [000] d..1 24573.609592: cpu_idle: state=0 cpu_id=0
57741 id.nn.benchmark-13160 (13131) [006] d.s2 24573.610886: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
57742 id.nn.benchmark-13155 (13131) [004] d.s2 24573.610887: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
57743          <idle>-0     (-----) [000] dnh2 24573.610900: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
57744          <idle>-0     (-----) [000] dnh2 24573.610903: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
57745 id.nn.benchmark-13155 (13131) [004] d.H3 24573.610921: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
57746          <idle>-0     (-----) [000] .n.1 24573.610922: cpu_idle: state=4294967295 cpu_id=0
57747          <idle>-0     (-----) [000] d..2 24573.610928: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
57748 id.nn.benchmark-13155 (13131) [004] d.H4 24573.610929: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
57749 id.nn.benchmark-13155 (13131) [004] d.H3 24573.610930: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
57750 id.nn.benchmark-13160 (13131) [006] d..2 24573.610935: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
57751         sugov:4-560   (  560) [006] d..2 24573.610939: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
57752           <...>-13157 (-----) [001] dnh1 24573.610939: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
57753  crtc_event:111-254   (  254) [000] d..2 24573.610940: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
57754           <...>-13157 (-----) [001] d..2 24573.610944: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
57755         sugov:0-559   (  559) [001] d..2 24573.610950: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
57756  kworker/u16:15-18488 (18488) [000] d..2 24573.611161: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
57757          <idle>-0     (-----) [000] d..1 24573.611167: cpu_idle: state=0 cpu_id=0
57758 id.nn.benchmark-13159 (13131) [003] d.s2 24573.611196: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
57759 id.nn.benchmark-13159 (13131) [003] d.s3 24573.611206: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
57760 id.nn.benchmark-13159 (13131) [003] d.s3 24573.611213: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
57761          <idle>-0     (-----) [000] .n.1 24573.611218: cpu_idle: state=4294967295 cpu_id=0
57762          <idle>-0     (-----) [000] d..2 24573.611224: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
57763  kworker/u16:15-18488 (18488) [000] d..2 24573.611423: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57764          <idle>-0     (-----) [000] d..1 24573.611427: cpu_idle: state=0 cpu_id=0
57765          <idle>-0     (-----) [000] d.h5 24573.611704: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
57766          <idle>-0     (-----) [000] dnh6 24573.611718: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
57767          <idle>-0     (-----) [000] dnh3 24573.611758: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
57768          <idle>-0     (-----) [000] dnh3 24573.611766: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
57769 id.nn.benchmark-13160 (13131) [006] dnh1 24573.611768: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
57770 id.nn.benchmark-13160 (13131) [006] d..2 24573.611771: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
57771          <idle>-0     (-----) [000] dnh4 24573.611773: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
57772         sugov:4-560   (  560) [006] d..2 24573.611774: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
57773          <idle>-0     (-----) [000] .n.1 24573.611777: cpu_idle: state=4294967295 cpu_id=0
57774           <...>-13157 (-----) [001] d..2 24573.611781: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
57775          <idle>-0     (-----) [000] d..2 24573.611782: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
57776         sugov:0-559   (  559) [001] d..2 24573.611788: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
57777 crtc_commit:111-253   (  253) [000] d..2 24573.611834: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57778          <idle>-0     (-----) [000] d..1 24573.611839: cpu_idle: state=0 cpu_id=0
57779          <idle>-0     (-----) [000] d.h5 24573.611999: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
57780          <idle>-0     (-----) [000] dnh6 24573.612005: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
57781          <idle>-0     (-----) [000] .n.1 24573.612015: cpu_idle: state=4294967295 cpu_id=0
57782          <idle>-0     (-----) [000] d..2 24573.612018: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
57783  crtc_event:111-254   (  254) [000] d..2 24573.612030: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57784          <idle>-0     (-----) [000] d..1 24573.612034: cpu_idle: state=0 cpu_id=0
57785           <...>-13154 (-----) [005] d..2 24573.613187: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13311 next_prio=110
57786           <...>-13311 (-----) [005] d..2 24573.613223: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
57787          <idle>-0     (-----) [000] dnh2 24573.613239: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
57788 id.nn.benchmark-13155 (13131) [004] d..3 24573.613240: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
57789          <idle>-0     (-----) [000] .n.1 24573.613242: cpu_idle: state=4294967295 cpu_id=0
57790          <idle>-0     (-----) [000] d..2 24573.613246: 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
57791 id.nn.benchmark-13155 (13131) [004] d..2 24573.613247: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
57792           <...>-13157 (-----) [001] dnh1 24573.613250: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
57793          <idle>-0     (-----) [004] d..1 24573.613252: cpu_idle: state=0 cpu_id=4
57794           <...>-13157 (-----) [001] d..2 24573.613255: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
57795          <idle>-0     (-----) [004] .n.1 24573.613277: cpu_idle: state=4294967295 cpu_id=4
57796          <idle>-0     (-----) [004] d..2 24573.613298: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
57797     migration/1-17    (   17) [001] d.h3 24573.613299: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
57798     migration/1-17    (   17) [001] d.h3 24573.613311: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
57799           <...>-13311 (-----) [005] dnh2 24573.613315: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
57800     migration/1-17    (   17) [001] d.h4 24573.613316: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
57801           <...>-13311 (-----) [005] d..2 24573.613320: sched_switch: prev_comm=id.nn.benchmark prev_pid=13311 prev_prio=110 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
57802     migration/1-17    (   17) [001] d..2 24573.613322: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
57803         sugov:4-560   (  560) [005] d..2 24573.613324: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13311 next_prio=110
57804         sugov:0-559   (  559) [001] d..2 24573.613334: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
57805           <...>-13311 (-----) [005] d..1 24573.613342: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
57806          <idle>-0     (-----) [001] d..1 24573.613344: cpu_idle: state=0 cpu_id=1
57807     logd.writer-563   (  555) [000] d..2 24573.613352: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
57808          <idle>-0     (-----) [000] d..1 24573.613358: cpu_idle: state=0 cpu_id=0
57809           <...>-13311 (-----) [005] d..3 24573.613364: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
57810          <idle>-0     (-----) [000] d.h2 24573.613366: sched_blocked_reason: pid=563 iowait=0 caller=proc_pid_cmdline_read+0x63c/0x668
57811          <idle>-0     (-----) [000] dnh2 24573.613368: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
57812           <...>-13311 (-----) [005] d..2 24573.613370: sched_switch: prev_comm=id.nn.benchmark prev_pid=13311 prev_prio=110 prev_state=D|K ==> next_comm=swapper/5 next_pid=0 next_prio=120
57813          <idle>-0     (-----) [000] .n.1 24573.613372: cpu_idle: state=4294967295 cpu_id=0
57814 id.nn.benchmark-13158 (13131) [002] dnh1 24573.613374: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
57815          <idle>-0     (-----) [005] d..1 24573.613375: cpu_idle: state=0 cpu_id=5
57816          <idle>-0     (-----) [000] d..2 24573.613377: 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
57817     logd.writer-563   (  555) [000] d..1 24573.613379: sched_waking: comm=id.nn.benchmark pid=13311 prio=110 target_cpu=005
57818 id.nn.benchmark-13158 (13131) [002] d..2 24573.613380: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
57819     logd.writer-563   (  555) [000] d..2 24573.613393: sched_blocked_reason: pid=13311 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
57820     logd.writer-563   (  555) [000] d..2 24573.613398: sched_wakeup: comm=id.nn.benchmark pid=13311 prio=110 target_cpu=001
57821 id.nn.benchmark-13156 (13131) [007] d..2 24573.613399: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
57822          <idle>-0     (-----) [001] .n.1 24573.613403: cpu_idle: state=4294967295 cpu_id=1
57823          <idle>-0     (-----) [007] d..1 24573.613406: cpu_idle: state=0 cpu_id=7
57824          <idle>-0     (-----) [005] .n.1 24573.613406: cpu_idle: state=4294967295 cpu_id=5
57825          <idle>-0     (-----) [005] d..2 24573.613423: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
57826          <idle>-0     (-----) [001] d..2 24573.613424: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13311 next_prio=110
57827     migration/2-25    (   25) [002] d..2 24573.613432: 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
57828           <...>-13311 (-----) [001] d..1 24573.613435: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
57829     logd.writer-563   (  555) [000] d..2 24573.613436: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
57830          <idle>-0     (-----) [000] d..1 24573.613440: cpu_idle: state=0 cpu_id=0
57831           <...>-13311 (-----) [001] d..2 24573.613442: sched_blocked_reason: pid=563 iowait=0 caller=__access_remote_vm+0x2a8/0x2b8
57832          <idle>-0     (-----) [002] d..1 24573.613442: cpu_idle: state=0 cpu_id=2
57833           <...>-13311 (-----) [001] d..2 24573.613447: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
57834          <idle>-0     (-----) [000] .n.1 24573.613451: cpu_idle: state=4294967295 cpu_id=0
57835          <idle>-0     (-----) [000] d..2 24573.613456: 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
57836           <...>-13311 (-----) [001] d..2 24573.613461: sched_switch: prev_comm=id.nn.benchmark prev_pid=13311 prev_prio=110 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
57837     logd.writer-563   (  555) [000] d..1 24573.613462: sched_waking: comm=id.nn.benchmark pid=13311 prio=110 target_cpu=001
57838     logd.writer-563   (  555) [000] d..2 24573.613467: sched_blocked_reason: pid=13311 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
57839          <idle>-0     (-----) [001] d..1 24573.613467: cpu_idle: state=0 cpu_id=1
57840     logd.writer-563   (  555) [000] d..2 24573.613473: sched_wakeup: comm=id.nn.benchmark pid=13311 prio=110 target_cpu=001
57841          <idle>-0     (-----) [001] .n.1 24573.613477: cpu_idle: state=4294967295 cpu_id=1
57842     logd.writer-563   (  555) [000] d..2 24573.613482: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
57843          <idle>-0     (-----) [001] d..2 24573.613483: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13311 next_prio=110
57844          <idle>-0     (-----) [000] d..1 24573.613486: cpu_idle: state=0 cpu_id=0
57845           <...>-13311 (-----) [001] d..1 24573.613487: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
57846           <...>-13311 (-----) [001] d..2 24573.613492: sched_blocked_reason: pid=563 iowait=0 caller=__access_remote_vm+0x2a8/0x2b8
57847           <...>-13311 (-----) [001] d..2 24573.613496: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
57848          <idle>-0     (-----) [000] .n.1 24573.613501: cpu_idle: state=4294967295 cpu_id=0
57849          <idle>-0     (-----) [000] d..2 24573.613506: 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
57850     logd.writer-563   (  555) [000] d..1 24573.613509: sched_waking: comm=id.nn.benchmark pid=13311 prio=110 target_cpu=001
57851           <...>-13311 (-----) [001] d..2 24573.613515: sched_switch: prev_comm=id.nn.benchmark prev_pid=13311 prev_prio=110 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
57852     logd.writer-563   (  555) [000] d..2 24573.613520: sched_blocked_reason: pid=13311 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
57853          <idle>-0     (-----) [001] d..1 24573.613521: cpu_idle: state=0 cpu_id=1
57854          <idle>-0     (-----) [001] .n.1 24573.613523: cpu_idle: state=4294967295 cpu_id=1
57855     logd.writer-563   (  555) [000] d..2 24573.613524: sched_wakeup: comm=id.nn.benchmark pid=13311 prio=110 target_cpu=001
57856          <idle>-0     (-----) [001] d..2 24573.613532: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13311 next_prio=110
57857 id.nn.benchmark-13160 (13131) [006] d..3 24573.613541: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
57858 id.nn.benchmark-13160 (13131) [006] d..2 24573.613548: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
57859 id.nn.benchmark-13159 (13131) [003] dnh1 24573.613551: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
57860 id.nn.benchmark-13159 (13131) [003] d..2 24573.613556: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
57861          <idle>-0     (-----) [006] d..1 24573.613556: cpu_idle: state=0 cpu_id=6
57862          <idle>-0     (-----) [002] .n.1 24573.613579: cpu_idle: state=4294967295 cpu_id=2
57863          <idle>-0     (-----) [006] .n.1 24573.613581: cpu_idle: state=4294967295 cpu_id=6
57864          <idle>-0     (-----) [006] d..2 24573.613599: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
57865          <idle>-0     (-----) [002] d..2 24573.613600: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13312 next_prio=110
57866          <idle>-0     (-----) [007] ...1 24573.613600: cpu_idle: state=4294967295 cpu_id=7
57867          <idle>-0     (-----) [007] d..1 24573.613602: cpu_idle: state=0 cpu_id=7
57868     logd.writer-563   (  555) [000] d..2 24573.613607: 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
57869           <...>-13311 (-----) [001] d..2 24573.613609: sched_switch: prev_comm=id.nn.benchmark prev_pid=13311 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
57870<...>-33 ( 33) [003] d..2 24573.613611: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
57871          <idle>-0     (-----) [000] d..1 24573.613612: cpu_idle: state=0 cpu_id=0
57872          <idle>-0     (-----) [001] d..1 24573.613619: cpu_idle: state=0 cpu_id=1
57873          <idle>-0     (-----) [003] d..1 24573.613627: cpu_idle: state=0 cpu_id=3
57874           <...>-13312 (-----) [002] ...1 24573.613631: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
57875           <...>-13312 (-----) [002] ...1 24573.613635: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
57876           <...>-13312 (-----) [002] d..2 24573.613699: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
57877           <...>-13312 (-----) [002] d..3 24573.613712: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
57878           <...>-13312 (-----) [002] ...1 24573.613780: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
57879           <...>-13312 (-----) [002] ...1 24573.613785: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
57880          <idle>-0     (-----) [000] d.h2 24573.613796: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
57881          <idle>-0     (-----) [000] dnh3 24573.613803: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
57882          <idle>-0     (-----) [000] .n.1 24573.613808: cpu_idle: state=4294967295 cpu_id=0
57883          <idle>-0     (-----) [000] d..2 24573.613811: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
57884        DispSync-23904 (23896) [000] d..1 24573.613830: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
57885        DispSync-23904 (23896) [000] d..2 24573.613847: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
57886          <idle>-0     (-----) [003] .n.1 24573.613852: cpu_idle: state=4294967295 cpu_id=3
57887          <idle>-0     (-----) [003] d..2 24573.613858: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
57888        DispSync-23904 (23896) [000] d..2 24573.613873: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
57889  appEventThread-23905 (23896) [003] d..3 24573.613894: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
57890  appEventThread-23905 (23896) [003] d..4 24573.613914: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
57891          <idle>-0     (-----) [001] .n.1 24573.613919: cpu_idle: state=4294967295 cpu_id=1
57892  appEventThread-23905 (23896) [003] d.h3 24573.613942: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
57893          <idle>-0     (-----) [001] d..2 24573.613944: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
57894  appEventThread-23905 (23896) [003] d.h3 24573.613953: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
57895          <idle>-0     (-----) [007] dnh2 24573.613958: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
57896          <idle>-0     (-----) [007] .n.1 24573.613960: cpu_idle: state=4294967295 cpu_id=7
57897  appEventThread-23905 (23896) [003] d.h4 24573.613962: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
57898          <idle>-0     (-----) [007] d..2 24573.613963: 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
57899         sugov:4-560   (  560) [007] d..2 24573.613969: 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
57900          <idle>-0     (-----) [007] d..1 24573.613971: cpu_idle: state=0 cpu_id=7
57901<...>-24151 ( 24151) [001] d..2 24573.613973: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
57902     logd.writer-563   (  555) [000] d..2 24573.613979: 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
57903         sugov:0-559   (  559) [001] d..2 24573.613981: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
57904  appEventThread-23905 (23896) [003] d..2 24573.613983: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
57905          <idle>-0     (-----) [000] d..1 24573.613985: cpu_idle: state=0 cpu_id=0
57906          <idle>-0     (-----) [003] d..1 24573.613991: cpu_idle: state=0 cpu_id=3
57907          <idle>-0     (-----) [000] d.s2 24573.614230: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
57908          <idle>-0     (-----) [000] dns3 24573.614239: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
57909          <idle>-0     (-----) [000] .n.1 24573.614249: cpu_idle: state=4294967295 cpu_id=0
57910          <idle>-0     (-----) [000] d..2 24573.614254: 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
57911     rcu_preempt-7     (    7) [000] d..2 24573.614268: 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
57912          <idle>-0     (-----) [000] d..1 24573.614273: cpu_idle: state=0 cpu_id=0
57913<...>-24151 ( 24151) [001] .... 24573.614274: binder_transaction: transaction=1670015 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
57914<...>-24151 ( 24151) [001] d..4 24573.614285: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
57915<...>-24151 ( 24151) [001] d..5 24573.614306: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
57916          <idle>-0     (-----) [000] .n.1 24573.614311: cpu_idle: state=4294967295 cpu_id=0
57917          <idle>-0     (-----) [000] d..2 24573.614332: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
57918  Binder:23896_5-25989 (23896) [000] .... 24573.614339: binder_transaction_received: transaction=1670015
57919<...>-24151 ( 24151) [001] d..3 24573.614361: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
57920  Binder:23896_5-25989 (23896) [000] d..1 24573.614368: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
57921<...>-24151 ( 24151) [001] d..4 24573.614382: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=003
57922          <idle>-0     (-----) [003] .n.1 24573.614387: cpu_idle: state=4294967295 cpu_id=3
57923  Binder:23896_5-25989 (23896) [000] dn.2 24573.614389: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
57924          <idle>-0     (-----) [003] d..2 24573.614394: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
57925  Binder:23896_5-25989 (23896) [000] d..2 24573.614416: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
57926  appEventThread-23905 (23896) [000] d..2 24573.614428: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
57927  Binder:23896_5-25989 (23896) [000] d..1 24573.614431: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
57928    RenderThread-24437 (24151) [003] d..2 24573.614433: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
57929  Binder:23896_5-25989 (23896) [000] d..2 24573.614443: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
57930          <idle>-0     (-----) [003] d..2 24573.614447: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
57931  Binder:23896_5-25989 (23896) [000] d..2 24573.614472: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57932  appEventThread-23905 (23896) [003] d..2 24573.614477: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
57933          <idle>-0     (-----) [000] d..1 24573.614478: cpu_idle: state=0 cpu_id=0
57934          <idle>-0     (-----) [003] d..1 24573.614482: cpu_idle: state=0 cpu_id=3
57935<...>-24151 ( 24151) [001] d..3 24573.614504: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=003
57936<...>-24151 ( 24151) [001] d..4 24573.614515: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=003
57937          <idle>-0     (-----) [003] .n.1 24573.614520: cpu_idle: state=4294967295 cpu_id=3
57938          <idle>-0     (-----) [003] d..2 24573.614526: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
57939<...>-24151 ( 24151) [001] d..2 24573.614531: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
57940          <idle>-0     (-----) [001] d..1 24573.614540: cpu_idle: state=0 cpu_id=1
57941    RenderThread-24437 (24151) [003] d..1 24573.614629: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
57942    RenderThread-24437 (24151) [003] d..2 24573.614640: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
57943          <idle>-0     (-----) [001] .n.1 24573.614646: cpu_idle: state=4294967295 cpu_id=1
57944          <idle>-0     (-----) [001] d..2 24573.614652: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
57945    RenderThread-24437 (24151) [003] .... 24573.614692: binder_transaction: transaction=1670016 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
57946<...>-24151 ( 24151) [001] d..2 24573.614695: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
57947    RenderThread-24437 (24151) [003] d..4 24573.614697: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
57948          <idle>-0     (-----) [001] d..1 24573.614703: cpu_idle: state=0 cpu_id=1
57949    RenderThread-24437 (24151) [003] d..5 24573.614708: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=003
57950    RenderThread-24437 (24151) [003] d..2 24573.614716: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
57951  Binder:23896_5-25989 (23896) [003] .... 24573.614721: binder_transaction_received: transaction=1670016
57952  Binder:23896_5-25989 (23896) [003] .... 24573.614772: binder_transaction: transaction=1670017 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
57953  Binder:23896_5-25989 (23896) [003] d..2 24573.614782: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=003
57954  Binder:23896_5-25989 (23896) [003] d..3 24573.614789: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=003
57955  Binder:23896_5-25989 (23896) [003] d..2 24573.614808: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
57956    RenderThread-24437 (24151) [003] .... 24573.614812: binder_transaction_received: transaction=1670017
57957           <...>-13312 (-----) [002] d..1 24573.615446: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
57958           <...>-13312 (-----) [002] d..1 24573.615464: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=004
57959          <idle>-0     (-----) [007] dnh2 24573.615467: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=007
57960          <idle>-0     (-----) [007] .n.1 24573.615469: cpu_idle: state=4294967295 cpu_id=7
57961          <idle>-0     (-----) [007] d..2 24573.615472: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
57962           <...>-13312 (-----) [002] d..1 24573.615475: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=007
57963           <...>-13157 (-----) [004] dnh1 24573.615476: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=004
57964           <...>-13157 (-----) [004] d..2 24573.615479: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
57965           <...>-13154 (-----) [007] d.h1 24573.615486: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=007
57966           <...>-13312 (-----) [002] d..1 24573.615486: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=006
57967 id.nn.benchmark-13159 (13131) [006] d.h1 24573.615497: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=006
57968          <idle>-0     (-----) [001] ...1 24573.615813: cpu_idle: state=4294967295 cpu_id=1
57969          <idle>-0     (-----) [001] d..1 24573.615816: cpu_idle: state=0 cpu_id=1
57970    RenderThread-24437 (24151) [003] d..2 24573.615826: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
57971 id.nn.benchmark-13160 (13131) [003] d.h4 24573.615859: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
57972 id.nn.benchmark-13160 (13131) [003] d.h4 24573.615871: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
57973 id.nn.benchmark-13159 (13131) [006] dnh1 24573.615873: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
57974 id.nn.benchmark-13159 (13131) [006] d..2 24573.615876: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
57975 id.nn.benchmark-13160 (13131) [003] d.h5 24573.615879: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
57976         sugov:4-560   (  560) [006] d..2 24573.615880: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
57977          <idle>-0     (-----) [001] .n.1 24573.615883: cpu_idle: state=4294967295 cpu_id=1
57978          <idle>-0     (-----) [001] d..2 24573.615889: 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
57979 id.nn.benchmark-13160 (13131) [003] d.h1 24573.615898: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=003
57980 id.nn.benchmark-13160 (13131) [003] d.h2 24573.615909: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
57981 id.nn.benchmark-13160 (13131) [003] d.h2 24573.615915: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
57982         sugov:0-559   (  559) [001] d..2 24573.615917: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
57983          <idle>-0     (-----) [000] .n.1 24573.615920: cpu_idle: state=4294967295 cpu_id=0
57984          <idle>-0     (-----) [000] d..2 24573.615944: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
57985    RenderThread-24437 (24151) [000] d.h2 24573.616024: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
57986    RenderThread-24437 (24151) [000] dnh3 24573.616042: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
57987    RenderThread-24437 (24151) [000] d..2 24573.616074: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
57988 kgsl_worker_thr-246   (  246) [000] d..2 24573.616110: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
57989 kgsl_worker_thr-246   (  246) [000] d..3 24573.616120: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
57990 kgsl_worker_thr-246   (  246) [000] d..2 24573.616129: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
57991  kworker/u16:15-18488 (18488) [000] d..2 24573.616156: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
57992    RenderThread-24437 (24151) [000] .... 24573.616254: binder_transaction: transaction=1670018 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
57993    RenderThread-24437 (24151) [000] d..4 24573.616262: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=003
57994    RenderThread-24437 (24151) [000] d..5 24573.616273: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
57995    RenderThread-24437 (24151) [000] d..2 24573.616281: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
57996  Binder:23896_5-25989 (23896) [000] .... 24573.616285: binder_transaction_received: transaction=1670018
57997  Binder:23896_5-25989 (23896) [000] .... 24573.616393: binder_transaction: transaction=1670019 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
57998  Binder:23896_5-25989 (23896) [000] d..2 24573.616396: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
57999  Binder:23896_5-25989 (23896) [000] d..3 24573.616404: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
58000  Binder:23896_5-25989 (23896) [000] d..2 24573.616422: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
58001    RenderThread-24437 (24151) [000] .... 24573.616426: binder_transaction_received: transaction=1670019
58002    RenderThread-24437 (24151) [000] d..2 24573.616478: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58003          <idle>-0     (-----) [000] d..1 24573.616486: cpu_idle: state=0 cpu_id=0
58004 id.nn.benchmark-13155 (13131) [004] d.s2 24573.617555: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
58005           <...>-13157 (-----) [001] d.s2 24573.617580: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
58006          <idle>-0     (-----) [000] dnh2 24573.617581: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
58007 id.nn.benchmark-13158 (13131) [005] d.h2 24573.617585: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
58008          <idle>-0     (-----) [000] .n.1 24573.617590: cpu_idle: state=4294967295 cpu_id=0
58009           <...>-13157 (-----) [001] d.s3 24573.617591: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
58010 id.nn.benchmark-13158 (13131) [005] d.h3 24573.617592: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
58011 id.nn.benchmark-13158 (13131) [005] d.h2 24573.617592: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
58012          <idle>-0     (-----) [000] d..2 24573.617598: 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
58013 id.nn.benchmark-13159 (13131) [006] d..2 24573.617598: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
58014         sugov:4-560   (  560) [006] d..2 24573.617601: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
58015     rcu_preempt-7     (    7) [000] d..2 24573.617602: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=005
58016 id.nn.benchmark-13158 (13131) [005] dnh1 24573.617631: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=005
58017     rcu_preempt-7     (    7) [000] dnh2 24573.617632: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
58018 id.nn.benchmark-13158 (13131) [005] d..2 24573.617634: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
58019     rcu_preempt-7     (    7) [000] d..2 24573.617638: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
58020         rcuop/2-29    (   29) [005] d..2 24573.617640: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
58021         sugov:0-559   (  559) [000] d..2 24573.617645: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
58022  kworker/u16:15-18488 (18488) [000] .... 24573.617729: clk_set_rate: l3_cluster0_vote_clk 576000000
58023  kworker/u16:15-18488 (18488) [000] d.h1 24573.617801: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
58024  kworker/u16:15-18488 (18488) [000] dnh2 24573.617810: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
58025  kworker/u16:15-18488 (18488) [000] d..2 24573.617817: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=DispSync next_pid=23904 next_prio=97
58026        DispSync-23904 (23896) [000] d..1 24573.617828: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
58027        DispSync-23904 (23896) [000] d..2 24573.617838: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
58028           <...>-13312 (-----) [002] d..2 24573.617847: sched_switch: prev_comm=id.nn.benchmark prev_pid=13312 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
58029        DispSync-23904 (23896) [000] d..2 24573.617850: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
58030     rcu_preempt-7     (    7) [000] d..2 24573.617859: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
58031   sfEventThread-23906 (23896) [002] d..3 24573.617874: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
58032   sfEventThread-23906 (23896) [002] d..4 24573.617887: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
58033  kworker/u16:15-18488 (18488) [000] d..2 24573.617892: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
58034   sfEventThread-23906 (23896) [002] d..2 24573.617906: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13312 next_prio=110
58035  surfaceflinger-23896 (23896) [000] d..1 24573.618132: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
58036  surfaceflinger-23896 (23896) [000] d..2 24573.618144: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
58037           <...>-13312 (-----) [002] d..2 24573.618151: sched_switch: prev_comm=id.nn.benchmark prev_pid=13312 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
58038   sfEventThread-23906 (23896) [002] d..2 24573.618166: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13312 next_prio=110
58039  surfaceflinger-23896 (23896) [000] ...1 24573.618269: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
58040  surfaceflinger-23896 (23896) [000] ...1 24573.618272: tracing_mark_write: E|23896
58041  surfaceflinger-23896 (23896) [000] .... 24573.618316: binder_transaction: transaction=1670020 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
58042  surfaceflinger-23896 (23896) [000] ...2 24573.618334: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
58043  surfaceflinger-23896 (23896) [000] d..4 24573.618340: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
58044  surfaceflinger-23896 (23896) [000] d..5 24573.618361: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
58045           <...>-13312 (-----) [002] d..2 24573.618369: sched_switch: prev_comm=id.nn.benchmark prev_pid=13312 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
58046  surfaceflinger-23896 (23896) [000] d.h5 24573.618398: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
58047  surfaceflinger-23896 (23896) [000] d.h5 24573.618405: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
58048 id.nn.benchmark-13159 (13131) [006] dnh1 24573.618409: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
58049 id.nn.benchmark-13159 (13131) [006] d..2 24573.618411: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
58050         sugov:4-560   (  560) [006] d..2 24573.618414: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
58051  surfaceflinger-23896 (23896) [000] d.h6 24573.618417: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
58052  HwBinder:598_3-633   (  598) [002] .... 24573.618423: binder_transaction_received: transaction=1670020
58053           <...>-13157 (-----) [001] d..2 24573.618425: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
58054  surfaceflinger-23896 (23896) [000] d..2 24573.618428: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
58055         sugov:0-559   (  559) [001] d..2 24573.618433: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
58056  HwBinder:598_3-633   (  598) [002] ...1 24573.618459: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
58057  kworker/u16:15-18488 (18488) [000] d..2 24573.618482: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
58058          <idle>-0     (-----) [000] d..1 24573.618489: cpu_idle: state=0 cpu_id=0
58059 id.nn.benchmark-13160 (13131) [003] d.s2 24573.618499: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
58060 id.nn.benchmark-13160 (13131) [003] d.s3 24573.618506: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
58061 id.nn.benchmark-13160 (13131) [003] d.s3 24573.618512: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
58062          <idle>-0     (-----) [000] .n.1 24573.618517: cpu_idle: state=4294967295 cpu_id=0
58063          <idle>-0     (-----) [000] d..2 24573.618523: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
58064  HwBinder:598_3-633   (  598) [002] ...1 24573.618536: tracing_mark_write: B|598|HWCSession::PresentDisplay::
58065  kworker/u16:15-18488 (18488) [000] d..2 24573.618539: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58066          <idle>-0     (-----) [000] d..1 24573.618544: cpu_idle: state=0 cpu_id=0
58067  HwBinder:598_3-633   (  598) [002] ...1 24573.618650: tracing_mark_write: B|598|HWDeviceDRM::Commit::
58068  HwBinder:598_3-633   (  598) [002] ...1 24573.618658: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
58069  HwBinder:598_3-633   (  598) [002] d..2 24573.619041: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
58070  HwBinder:598_3-633   (  598) [002] d..3 24573.619055: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
58071          <idle>-0     (-----) [000] .n.1 24573.619059: cpu_idle: state=4294967295 cpu_id=0
58072          <idle>-0     (-----) [000] d..2 24573.619064: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
58073  HwBinder:598_3-633   (  598) [002] ...1 24573.619111: tracing_mark_write: E|598
58074  HwBinder:598_3-633   (  598) [002] ...1 24573.619114: tracing_mark_write: E|598
58075  HwBinder:598_3-633   (  598) [002] ...1 24573.619152: tracing_mark_write: E|598
58076  HwBinder:598_3-633   (  598) [002] ...1 24573.619185: tracing_mark_write: E|598
58077  HwBinder:598_3-633   (  598) [002] .... 24573.619193: binder_transaction: transaction=1670021 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
58078  HwBinder:598_3-633   (  598) [002] d..2 24573.619205: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
58079  HwBinder:598_3-633   (  598) [002] d..3 24573.619220: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
58080  HwBinder:598_3-633   (  598) [002] .... 24573.619222: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
58081           <...>-13157 (-----) [001] d..2 24573.619227: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
58082  surfaceflinger-23896 (23896) [001] .... 24573.619233: binder_transaction_received: transaction=1670021
58083  HwBinder:598_3-633   (  598) [002] d..2 24573.619262: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13312 next_prio=110
58084  surfaceflinger-23896 (23896) [001] d..2 24573.619482: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
58085 crtc_commit:111-253   (  253) [000] d..2 24573.619666: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
58086          <idle>-0     (-----) [000] d..1 24573.619672: cpu_idle: state=0 cpu_id=0
58087           <...>-13154 (-----) [007] d..2 24573.620014: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
58088 id.nn.benchmark-13155 (13131) [004] d..3 24573.620031: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
58089 id.nn.benchmark-13155 (13131) [004] d..2 24573.620037: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
58090          <idle>-0     (-----) [004] d..1 24573.620041: cpu_idle: state=0 cpu_id=4
58091           <...>-13157 (-----) [001] dnh1 24573.620041: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
58092 id.nn.benchmark-13159 (13131) [006] d..2 24573.620044: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
58093           <...>-13157 (-----) [001] d..2 24573.620047: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
58094          <idle>-0     (-----) [006] d..1 24573.620047: cpu_idle: state=0 cpu_id=6
58095          <idle>-0     (-----) [004] .n.1 24573.620070: cpu_idle: state=4294967295 cpu_id=4
58096          <idle>-0     (-----) [004] d..2 24573.620091: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
58097     migration/1-17    (   17) [001] d.h3 24573.620092: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
58098 id.nn.benchmark-13158 (13131) [005] d..2 24573.620095: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
58099          <idle>-0     (-----) [005] d..1 24573.620099: cpu_idle: state=0 cpu_id=5
58100     migration/1-17    (   17) [001] d.h3 24573.620101: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
58101          <idle>-0     (-----) [006] dnh2 24573.620105: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
58102          <idle>-0     (-----) [006] .n.1 24573.620108: cpu_idle: state=4294967295 cpu_id=6
58103          <idle>-0     (-----) [006] d..2 24573.620110: 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
58104     migration/1-17    (   17) [001] d.h4 24573.620113: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
58105         sugov:4-560   (  560) [006] d..2 24573.620115: 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
58106          <idle>-0     (-----) [000] .n.1 24573.620118: cpu_idle: state=4294967295 cpu_id=0
58107          <idle>-0     (-----) [006] d..1 24573.620118: cpu_idle: state=0 cpu_id=6
58108          <idle>-0     (-----) [000] d..2 24573.620123: 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
58109     migration/1-17    (   17) [001] d..2 24573.620126: 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
58110         sugov:0-559   (  559) [000] d..2 24573.620134: 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
58111          <idle>-0     (-----) [001] d..1 24573.620135: cpu_idle: state=0 cpu_id=1
58112           <...>-13312 (-----) [002] ...1 24573.620136: tracing_mark_write: E|13131
58113          <idle>-0     (-----) [000] d..1 24573.620139: cpu_idle: state=0 cpu_id=0
58114           <...>-13312 (-----) [002] ...1 24573.620141: tracing_mark_write: E|13131
58115           <...>-13312 (-----) [002] ...1 24573.620160: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58116           <...>-13312 (-----) [002] ...1 24573.620166: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58117          <idle>-0     (-----) [006] ...1 24573.620308: cpu_idle: state=4294967295 cpu_id=6
58118          <idle>-0     (-----) [006] d..1 24573.620309: cpu_idle: state=0 cpu_id=6
58119           <...>-13312 (-----) [002] d..1 24573.620673: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=007
58120           <...>-13312 (-----) [002] d..1 24573.620691: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=004
58121          <idle>-0     (-----) [005] dnh2 24573.620693: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
58122          <idle>-0     (-----) [005] .n.1 24573.620696: cpu_idle: state=4294967295 cpu_id=5
58123          <idle>-0     (-----) [005] d..2 24573.620699: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
58124           <...>-13312 (-----) [002] d..1 24573.620708: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
58125          <idle>-0     (-----) [006] dnh2 24573.620709: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
58126          <idle>-0     (-----) [006] .n.1 24573.620712: cpu_idle: state=4294967295 cpu_id=6
58127          <idle>-0     (-----) [006] d..2 24573.620714: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
58128           <...>-13312 (-----) [002] d..1 24573.620717: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=006
58129           <...>-13154 (-----) [005] dnh1 24573.620719: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
58130           <...>-13154 (-----) [005] d..2 24573.620722: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
58131 id.nn.benchmark-13155 (13131) [006] d.h1 24573.620729: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=006
58132           <...>-13157 (-----) [004] d.s2 24573.620889: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
58133          <idle>-0     (-----) [000] ...1 24573.620905: cpu_idle: state=4294967295 cpu_id=0
58134          <idle>-0     (-----) [000] d..1 24573.620908: cpu_idle: state=0 cpu_id=0
58135           <...>-13312 (-----) [002] dnh1 24573.620908: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
58136           <...>-13312 (-----) [002] d..2 24573.620914: sched_switch: prev_comm=id.nn.benchmark prev_pid=13312 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
58137  kworker/u16:15-18488 (18488) [002] d..2 24573.621231: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13312 next_prio=110
58138 id.nn.benchmark-13160 (13131) [003] d.s2 24573.621260: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
58139 id.nn.benchmark-13160 (13131) [003] d.s3 24573.621270: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
58140 id.nn.benchmark-13160 (13131) [003] d.s3 24573.621276: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
58141           <...>-13312 (-----) [002] d..2 24573.621284: sched_switch: prev_comm=id.nn.benchmark prev_pid=13312 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
58142  kworker/u16:15-18488 (18488) [002] d..2 24573.621295: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13312 next_prio=110
58143          <idle>-0     (-----) [001] ...1 24573.621458: cpu_idle: state=4294967295 cpu_id=1
58144          <idle>-0     (-----) [001] d..1 24573.621461: cpu_idle: state=0 cpu_id=1
58145           <...>-13157 (-----) [004] d.s2 24573.624221: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
58146          <idle>-0     (-----) [000] d.s2 24573.624234: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
58147           <...>-13312 (-----) [002] dnh1 24573.624235: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
58148           <...>-13312 (-----) [002] d..2 24573.624240: sched_switch: prev_comm=id.nn.benchmark prev_pid=13312 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
58149          <idle>-0     (-----) [000] dns3 24573.624243: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
58150          <idle>-0     (-----) [000] dns2 24573.624250: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
58151          <idle>-0     (-----) [000] dns3 24573.624257: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
58152          <idle>-0     (-----) [000] .n.1 24573.624261: cpu_idle: state=4294967295 cpu_id=0
58153          <idle>-0     (-----) [000] d..2 24573.624266: 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
58154     ksoftirqd/0-3     (    3) [000] d..2 24573.624276: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
58155  kworker/u16:15-18488 (18488) [002] d..2 24573.624281: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13312 next_prio=110
58156     rcu_preempt-7     (    7) [000] d..2 24573.624305: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
58157 id.nn.benchmark-13159 (13131) [000] d.h4 24573.624336: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
58158 id.nn.benchmark-13159 (13131) [000] d.h4 24573.624344: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
58159 id.nn.benchmark-13155 (13131) [006] dnh1 24573.624348: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
58160 id.nn.benchmark-13155 (13131) [006] d..2 24573.624351: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
58161         sugov:4-560   (  560) [006] d..2 24573.624354: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
58162 id.nn.benchmark-13159 (13131) [000] d.h5 24573.624357: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
58163          <idle>-0     (-----) [001] .n.1 24573.624361: cpu_idle: state=4294967295 cpu_id=1
58164          <idle>-0     (-----) [001] d..2 24573.624368: 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
58165         sugov:0-559   (  559) [001] d..2 24573.624394: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
58166           <...>-13312 (-----) [002] ...1 24573.624600: tracing_mark_write: E|13131
58167           <...>-13312 (-----) [002] ...1 24573.624604: tracing_mark_write: E|13131
58168           <...>-13312 (-----) [002] ...1 24573.624629: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58169           <...>-13312 (-----) [002] ...1 24573.624634: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58170           <...>-13312 (-----) [002] ...1 24573.624974: tracing_mark_write: E|13131
58171           <...>-13312 (-----) [002] ...1 24573.624979: tracing_mark_write: E|13131
58172           <...>-13312 (-----) [002] ...1 24573.624990: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58173           <...>-13312 (-----) [002] ...1 24573.624994: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58174           <...>-13312 (-----) [002] ...1 24573.625233: tracing_mark_write: E|13131
58175           <...>-13312 (-----) [002] ...1 24573.625237: tracing_mark_write: E|13131
58176           <...>-13312 (-----) [002] ...1 24573.625247: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58177           <...>-13312 (-----) [002] ...1 24573.625251: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58178           <...>-13312 (-----) [002] ...1 24573.625648: tracing_mark_write: E|13131
58179           <...>-13312 (-----) [002] ...1 24573.625652: tracing_mark_write: E|13131
58180           <...>-13312 (-----) [002] ...1 24573.625662: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58181           <...>-13312 (-----) [002] ...1 24573.625666: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58182 id.nn.benchmark-13159 (13131) [000] d.h4 24573.625826: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
58183 id.nn.benchmark-13159 (13131) [000] d.h5 24573.625843: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
58184 id.nn.benchmark-13159 (13131) [000] d.h4 24573.625847: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
58185           <...>-13312 (-----) [002] d..2 24573.625854: sched_switch: prev_comm=id.nn.benchmark prev_pid=13312 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
58186 id.nn.benchmark-13155 (13131) [006] dnh1 24573.625865: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
58187 id.nn.benchmark-13155 (13131) [006] d..2 24573.625868: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
58188  crtc_event:111-254   (  254) [002] d..2 24573.625873: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13312 next_prio=110
58189 id.nn.benchmark-13159 (13131) [000] d.h2 24573.625898: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
58190 id.nn.benchmark-13159 (13131) [000] d.h2 24573.625908: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
58191 id.nn.benchmark-13156 (13131) [007] dnh1 24573.625911: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
58192 id.nn.benchmark-13156 (13131) [007] d..2 24573.625914: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
58193         sugov:4-560   (  560) [007] d..2 24573.625918: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
58194 id.nn.benchmark-13159 (13131) [000] d.h3 24573.625920: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
58195           <...>-13312 (-----) [002] d..2 24573.625928: sched_switch: prev_comm=id.nn.benchmark prev_pid=13312 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
58196         sugov:0-559   (  559) [002] d..2 24573.625935: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13312 next_prio=110
58197 crtc_commit:111-253   (  253) [006] d..2 24573.625949: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
58198           <...>-13312 (-----) [002] ...1 24573.626172: tracing_mark_write: E|13131
58199           <...>-13312 (-----) [002] ...1 24573.626175: tracing_mark_write: E|13131
58200           <...>-13312 (-----) [002] ...1 24573.626196: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58201           <...>-13312 (-----) [002] ...1 24573.626200: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58202           <...>-13312 (-----) [002] ...1 24573.626393: tracing_mark_write: E|13131
58203           <...>-13312 (-----) [002] ...1 24573.626397: tracing_mark_write: E|13131
58204           <...>-13312 (-----) [002] ...1 24573.626412: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58205           <...>-13312 (-----) [002] ...1 24573.626416: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58206           <...>-13312 (-----) [002] ...1 24573.626490: tracing_mark_write: E|13131
58207           <...>-13312 (-----) [002] ...1 24573.626494: tracing_mark_write: E|13131
58208           <...>-13312 (-----) [002] ...1 24573.626506: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
58209           <...>-13312 (-----) [002] ...1 24573.626511: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
58210           <...>-13312 (-----) [002] ...1 24573.626832: tracing_mark_write: E|13131
58211           <...>-13312 (-----) [002] ...1 24573.626836: tracing_mark_write: E|13131
58212           <...>-13312 (-----) [002] ...1 24573.626845: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
58213           <...>-13312 (-----) [002] ...1 24573.626849: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
58214           <...>-13312 (-----) [002] ...1 24573.626906: tracing_mark_write: E|13131
58215           <...>-13312 (-----) [002] ...1 24573.626909: tracing_mark_write: E|13131
58216           <...>-13312 (-----) [002] ...1 24573.626918: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
58217           <...>-13312 (-----) [002] ...1 24573.626921: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
58218           <...>-13312 (-----) [002] ...1 24573.626939: tracing_mark_write: E|13131
58219           <...>-13312 (-----) [002] ...1 24573.626942: tracing_mark_write: E|13131
58220           <...>-13312 (-----) [002] ...1 24573.626954: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
58221           <...>-13312 (-----) [002] ...1 24573.626957: tracing_mark_write: E|13131
58222           <...>-13312 (-----) [002] ...1 24573.626966: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
58223           <...>-13312 (-----) [002] ...1 24573.626971: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
58224 id.nn.benchmark-13158 (13131) [005] d.s2 24573.627553: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
58225           <...>-13157 (-----) [004] d.s2 24573.627553: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
58226 id.nn.benchmark-13155 (13131) [006] d.s2 24573.627555: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
58227           <...>-13157 (-----) [004] d.s2 24573.627566: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
58228           <...>-13157 (-----) [004] dns3 24573.627571: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
58229           <...>-13157 (-----) [004] d..2 24573.627573: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=kworker/4:0 next_pid=24269 next_prio=120
58230           <...>-13312 (-----) [002] dnH1 24573.627574: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
58231           <...>-13312 (-----) [002] dnH1 24573.627577: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
58232           <...>-13312 (-----) [002] dnH1 24573.627579: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
58233     kworker/4:0-24269 (24269) [004] d..2 24573.627583: sched_switch: prev_comm=kworker/4:0 prev_pid=24269 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
58234           <...>-13312 (-----) [002] d..2 24573.627586: sched_switch: prev_comm=id.nn.benchmark prev_pid=13312 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
58235  crtc_event:111-254   (  254) [002] d..2 24573.627599: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
58236     rcu_preempt-7     (    7) [002] d..2 24573.627603: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
58237     rcu_preempt-7     (    7) [002] d..2 24573.627629: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
58238 id.nn.benchmark-13155 (13131) [006] dnh1 24573.627632: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
58239 id.nn.benchmark-13155 (13131) [006] d..2 24573.627635: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
58240     rcu_preempt-7     (    7) [002] d..3 24573.627645: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
58241         rcuop/6-61    (   61) [006] d..2 24573.627649: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
58242     rcu_preempt-7     (    7) [002] d..2 24573.627652: 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
58243         rcuop/0-10    (   10) [002] d..2 24573.627656: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
58244         rcuop/6-61    (   61) [006] d..2 24573.627662: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
58245           <...>-13157 (-----) [004] dnh1 24573.627680: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
58246           <...>-13157 (-----) [004] d..2 24573.627682: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
58247         rcuop/0-10    (   10) [002] d.h2 24573.627682: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
58248         rcuop/1-21    (   21) [004] d..2 24573.627687: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
58249         rcuop/0-10    (   10) [002] d..2 24573.627718: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
58250  kworker/u16:15-18488 (18488) [002] .... 24573.627799: clk_set_rate: l3_cluster0_vote_clk 1401600000
58251  kworker/u16:15-18488 (18488) [002] d..2 24573.627810: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
58252     rcu_preempt-7     (    7) [002] d..2 24573.627818: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13312 next_prio=110
58253           <...>-13312 (-----) [002] ...1 24573.628101: tracing_mark_write: E|13131
58254           <...>-13312 (-----) [002] ...1 24573.628105: tracing_mark_write: E|13131
58255           <...>-13312 (-----) [002] ...1 24573.628126: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58256           <...>-13312 (-----) [002] ...1 24573.628130: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58257 id.nn.benchmark-13159 (13131) [000] d.h4 24573.628180: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
58258 id.nn.benchmark-13159 (13131) [000] d.h5 24573.628197: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
58259           <...>-13312 (-----) [002] d..2 24573.628206: sched_switch: prev_comm=id.nn.benchmark prev_pid=13312 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
58260 id.nn.benchmark-13159 (13131) [000] d.h2 24573.628231: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
58261 id.nn.benchmark-13159 (13131) [000] d.h2 24573.628241: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
58262 id.nn.benchmark-13155 (13131) [006] dnh1 24573.628244: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
58263 crtc_commit:111-253   (  253) [002] d..2 24573.628246: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13312 next_prio=110
58264 id.nn.benchmark-13155 (13131) [006] d..2 24573.628247: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
58265         sugov:4-560   (  560) [006] d..2 24573.628250: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
58266 id.nn.benchmark-13159 (13131) [000] d.h3 24573.628255: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
58267           <...>-13312 (-----) [002] d..2 24573.628264: sched_switch: prev_comm=id.nn.benchmark prev_pid=13312 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
58268         sugov:0-559   (  559) [002] d..2 24573.628271: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13312 next_prio=110
58269           <...>-13312 (-----) [002] ...1 24573.628326: tracing_mark_write: E|13131
58270           <...>-13312 (-----) [002] ...1 24573.628330: tracing_mark_write: E|13131
58271           <...>-13312 (-----) [002] d..2 24573.628388: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
58272           <...>-13312 (-----) [002] d..3 24573.628402: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
58273           <...>-13312 (-----) [002] ...1 24573.628426: tracing_mark_write: E|13131
58274           <...>-13312 (-----) [002] d..1 24573.628431: sched_waking: comm=id.nn.benchmark pid=13311 prio=110 target_cpu=001
58275 id.nn.benchmark-13155 (13131) [006] dnh1 24573.628453: sched_wakeup: comm=id.nn.benchmark pid=13311 prio=110 target_cpu=006
58276 id.nn.benchmark-13155 (13131) [006] d..2 24573.628473: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13311 next_prio=110
58277 id.nn.benchmark-13159 (13131) [000] d.h4 24573.628475: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
58278           <...>-13311 (-----) [006] d..2 24573.628482: sched_switch: prev_comm=id.nn.benchmark prev_pid=13311 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
58279 id.nn.benchmark-13159 (13131) [000] d.h5 24573.628483: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
58280           <...>-13312 (-----) [002] d..2 24573.628492: sched_switch: prev_comm=id.nn.benchmark prev_pid=13312 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
58281  crtc_event:111-254   (  254) [002] d..2 24573.628503: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
58282     logd.writer-563   (  555) [002] d..2 24573.628573: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13312 next_prio=110
58283           <...>-13312 (-----) [002] ...1 24573.628582: tracing_mark_write: E|13131
58284           <...>-13312 (-----) [002] d..1 24573.628802: sched_waking: comm=id.nn.benchmark pid=13311 prio=110 target_cpu=006
58285           <...>-13312 (-----) [002] dn.2 24573.628830: sched_wakeup: comm=id.nn.benchmark pid=13311 prio=110 target_cpu=002
58286           <...>-13312 (-----) [002] dnh3 24573.628856: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
58287           <...>-13312 (-----) [002] dnh3 24573.628864: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
58288 id.nn.benchmark-13155 (13131) [006] dnh1 24573.628867: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
58289           <...>-13312 (-----) [002] dnh4 24573.628869: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
58290 id.nn.benchmark-13155 (13131) [006] d..2 24573.628869: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
58291         sugov:4-560   (  560) [006] d..2 24573.628872: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
58292           <...>-13312 (-----) [002] d..2 24573.628875: sched_switch: prev_comm=id.nn.benchmark prev_pid=13312 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
58293         sugov:0-559   (  559) [002] d..2 24573.628882: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13311 next_prio=110
58294           <...>-13311 (-----) [002] d..2 24573.628938: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
58295           <...>-13311 (-----) [002] d..3 24573.628948: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
58296           <...>-13311 (-----) [002] d..1 24573.629003: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
58297 id.nn.benchmark-13156 (13131) [007] dnh1 24573.629025: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
58298 id.nn.benchmark-13156 (13131) [007] d..2 24573.629028: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
58299           <...>-13131 (-----) [007] d..2 24573.629033: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
58300           <...>-13311 (-----) [002] d..1 24573.629079: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
58301 id.nn.benchmark-13156 (13131) [007] dnh1 24573.629098: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
58302 id.nn.benchmark-13156 (13131) [007] d..2 24573.629100: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
58303           <...>-13131 (-----) [007] ...1 24573.629114: tracing_mark_write: E|13131
58304           <...>-13131 (-----) [007] ...1 24573.629116: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
58305           <...>-13131 (-----) [007] ...1 24573.629119: tracing_mark_write: E|13131
58306           <...>-13131 (-----) [007] ...1 24573.629120: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
58307           <...>-13131 (-----) [007] ...1 24573.629122: tracing_mark_write: E|13131
58308           <...>-13311 (-----) [002] d..2 24573.629133: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=005
58309 id.nn.benchmark-13158 (13131) [005] dnh1 24573.629156: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=005
58310 id.nn.benchmark-13158 (13131) [005] d..2 24573.629159: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
58311         rcuop/2-29    (   29) [005] d..2 24573.629163: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
58312           <...>-13311 (-----) [002] d..2 24573.629178: sched_switch: prev_comm=id.nn.benchmark prev_pid=13311 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13312 next_prio=110
58313           <...>-13131 (-----) [007] ...1 24573.629185: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
58314           <...>-13131 (-----) [007] ...1 24573.629207: tracing_mark_write: E|13131
58315           <...>-13131 (-----) [007] ...1 24573.629210: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
58316           <...>-13131 (-----) [007] ...1 24573.629212: tracing_mark_write: E|13131
58317           <...>-13312 (-----) [002] d..2 24573.629214: sched_switch: prev_comm=id.nn.benchmark prev_pid=13312 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
58318           <...>-13131 (-----) [007] ...1 24573.629214: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
58319           <...>-13131 (-----) [007] ...1 24573.629216: tracing_mark_write: E|13131
58320           <...>-13131 (-----) [007] ...1 24573.629218: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
58321           <...>-13131 (-----) [007] ...1 24573.629284: tracing_mark_write: E|13131
58322           <...>-13131 (-----) [007] ...1 24573.629285: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
58323           <...>-13131 (-----) [007] d..2 24573.629290: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
58324     logd.writer-563   (  555) [002] d..2 24573.629308: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13313 next_prio=110
58325           <...>-13313 (-----) [002] d..2 24573.629388: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
58326           <...>-13313 (-----) [002] d..3 24573.629397: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
58327           <...>-13313 (-----) [002] d..2 24573.629697: sched_switch: prev_comm=id.nn.benchmark prev_pid=13313 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
58328     logd.writer-563   (  555) [002] d..2 24573.629888: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13314 next_prio=110
58329           <...>-13314 (-----) [002] ...1 24573.629914: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
58330           <...>-13314 (-----) [002] ...1 24573.629919: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
58331           <...>-13314 (-----) [002] d..2 24573.629978: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
58332           <...>-13314 (-----) [002] d..3 24573.629986: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
58333           <...>-13314 (-----) [002] ...1 24573.630051: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58334           <...>-13314 (-----) [002] ...1 24573.630056: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58335 id.nn.benchmark-13159 (13131) [000] d.h1 24573.630262: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
58336 id.nn.benchmark-13159 (13131) [000] d.h2 24573.630275: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
58337           <...>-13314 (-----) [002] d..2 24573.630285: sched_switch: prev_comm=id.nn.benchmark prev_pid=13314 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
58338        DispSync-23904 (23896) [002] d..1 24573.630304: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
58339        DispSync-23904 (23896) [002] d..2 24573.630317: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
58340 id.nn.benchmark-13160 (13131) [003] d..2 24573.630327: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
58341        DispSync-23904 (23896) [002] d..2 24573.630331: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13314 next_prio=110
58342  appEventThread-23905 (23896) [003] d..3 24573.630370: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
58343 id.nn.benchmark-13155 (13131) [006] dnh1 24573.630394: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
58344 id.nn.benchmark-13155 (13131) [006] d..2 24573.630418: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
58345  appEventThread-23905 (23896) [003] d.h3 24573.630419: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
58346  appEventThread-23905 (23896) [003] d.h3 24573.630431: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
58347 id.nn.benchmark-13156 (13131) [007] dnh1 24573.630434: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
58348 id.nn.benchmark-13156 (13131) [007] d..2 24573.630437: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
58349  appEventThread-23905 (23896) [003] d.h4 24573.630439: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
58350         sugov:4-560   (  560) [007] d..2 24573.630441: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
58351           <...>-13314 (-----) [002] d..2 24573.630447: sched_switch: prev_comm=id.nn.benchmark prev_pid=13314 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
58352         sugov:0-559   (  559) [002] d..2 24573.630455: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13314 next_prio=110
58353  appEventThread-23905 (23896) [003] d..2 24573.630456: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
58354<...>-24151 ( 24151) [006] .... 24573.630593: binder_transaction: transaction=1670022 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
58355<...>-24151 ( 24151) [006] d..4 24573.630599: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
58356<...>-24151 ( 24151) [006] d..5 24573.630616: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
58357 id.nn.benchmark-13156 (13131) [007] d..2 24573.630633: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
58358  Binder:23896_5-25989 (23896) [007] .... 24573.630636: binder_transaction_received: transaction=1670022
58359<...>-24151 ( 24151) [006] d..3 24573.630650: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
58360  Binder:23896_5-25989 (23896) [007] d..1 24573.630654: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
58361<...>-24151 ( 24151) [006] d..4 24573.630663: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
58362           <...>-13314 (-----) [002] dnh1 24573.630679: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
58363  Binder:23896_5-25989 (23896) [007] d..2 24573.630680: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
58364           <...>-13314 (-----) [002] d..2 24573.630684: sched_switch: prev_comm=id.nn.benchmark prev_pid=13314 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
58365    RenderThread-24437 (24151) [007] d..2 24573.630700: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
58366  appEventThread-23905 (23896) [002] d..2 24573.630709: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13314 next_prio=110
58367<...>-24151 ( 24151) [006] d..3 24573.630734: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
58368<...>-24151 ( 24151) [006] d..4 24573.630742: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
58369<...>-24151 ( 24151) [006] d..2 24573.630748: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
58370 id.nn.benchmark-13156 (13131) [007] d..2 24573.630749: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
58371    RenderThread-24437 (24151) [007] d..1 24573.630801: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
58372    RenderThread-24437 (24151) [007] d..2 24573.630809: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
58373 id.nn.benchmark-13155 (13131) [006] d..2 24573.630816: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
58374<...>-24151 ( 24151) [006] d..2 24573.630836: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
58375    RenderThread-24437 (24151) [007] .... 24573.630837: binder_transaction: transaction=1670023 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
58376    RenderThread-24437 (24151) [007] d..4 24573.630839: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
58377    RenderThread-24437 (24151) [007] d..5 24573.630845: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
58378    RenderThread-24437 (24151) [007] d..2 24573.630849: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
58379  Binder:23896_5-25989 (23896) [007] .... 24573.630851: binder_transaction_received: transaction=1670023
58380           <...>-13157 (-----) [004] d.s2 24573.630889: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
58381  Binder:23896_5-25989 (23896) [007] .... 24573.630894: binder_transaction: transaction=1670024 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
58382  Binder:23896_5-25989 (23896) [007] d..2 24573.630898: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
58383           <...>-13157 (-----) [004] d.s3 24573.630904: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
58384  Binder:23896_5-25989 (23896) [007] d..3 24573.630905: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
58385           <...>-13157 (-----) [004] d.s2 24573.630906: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
58386           <...>-13157 (-----) [004] dns3 24573.630908: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
58387 id.nn.benchmark-13155 (13131) [006] d..2 24573.630910: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
58388           <...>-13157 (-----) [004] dnH3 24573.630927: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
58389  Binder:23896_5-25989 (23896) [007] d..2 24573.630928: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
58390    RenderThread-24437 (24151) [007] .... 24573.630930: binder_transaction_received: transaction=1670024
58391           <...>-13157 (-----) [004] dnH4 24573.630937: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
58392           <...>-13157 (-----) [004] dnH3 24573.630938: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
58393  kworker/u16:15-18488 (18488) [006] d..2 24573.630944: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
58394           <...>-13157 (-----) [004] d..2 24573.630945: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=kworker/4:0 next_pid=24269 next_prio=120
58395           <...>-13314 (-----) [002] dnh1 24573.630948: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
58396         sugov:4-560   (  560) [006] d..2 24573.630948: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
58397           <...>-13314 (-----) [002] d..2 24573.630953: sched_switch: prev_comm=id.nn.benchmark prev_pid=13314 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
58398         sugov:0-559   (  559) [002] d..2 24573.630960: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13314 next_prio=110
58399     kworker/4:0-24269 (24269) [004] d..2 24573.630970: sched_switch: prev_comm=kworker/4:0 prev_pid=24269 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
58400  kworker/u16:15-18488 (18488) [006] d..2 24573.631085: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
58401 id.nn.benchmark-13160 (13131) [003] d.s2 24573.631120: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
58402 id.nn.benchmark-13155 (13131) [006] d.h1 24573.631134: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
58403 id.nn.benchmark-13155 (13131) [006] dnh1 24573.631135: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
58404 id.nn.benchmark-13155 (13131) [006] d..2 24573.631138: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
58405  kworker/u16:15-18488 (18488) [006] d..2 24573.631259: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
58406    RenderThread-24437 (24151) [007] d..2 24573.631540: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
58407 id.nn.benchmark-13156 (13131) [007] d.h1 24573.631638: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
58408 id.nn.benchmark-13156 (13131) [007] d.h2 24573.631646: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
58409 id.nn.benchmark-13156 (13131) [007] dnh2 24573.631647: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
58410 id.nn.benchmark-13156 (13131) [007] d..2 24573.631651: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
58411    RenderThread-24437 (24151) [007] .... 24573.631729: binder_transaction: transaction=1670025 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
58412    RenderThread-24437 (24151) [007] d..4 24573.631732: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
58413    RenderThread-24437 (24151) [007] d..5 24573.631740: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
58414    RenderThread-24437 (24151) [007] d..2 24573.631744: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
58415  Binder:23896_5-25989 (23896) [007] .... 24573.631745: binder_transaction_received: transaction=1670025
58416 id.nn.benchmark-13159 (13131) [000] d.h2 24573.631764: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
58417 id.nn.benchmark-13159 (13131) [000] d.h3 24573.631779: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
58418           <...>-13314 (-----) [002] d..2 24573.631789: sched_switch: prev_comm=id.nn.benchmark prev_pid=13314 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
58419  Binder:23896_5-25989 (23896) [007] .... 24573.631802: binder_transaction: transaction=1670026 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
58420  Binder:23896_5-25989 (23896) [007] d..2 24573.631804: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
58421  Binder:23896_5-25989 (23896) [007] d..3 24573.631812: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
58422  Binder:23896_5-25989 (23896) [007] d..2 24573.631820: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
58423    RenderThread-24437 (24151) [007] .... 24573.631822: binder_transaction_received: transaction=1670026
58424 kgsl_worker_thr-246   (  246) [002] d..2 24573.631823: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
58425 id.nn.benchmark-13155 (13131) [006] dnh1 24573.631838: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
58426 id.nn.benchmark-13155 (13131) [006] d..2 24573.631840: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
58427    RenderThread-24437 (24151) [007] d..2 24573.631844: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
58428 kgsl_worker_thr-246   (  246) [002] d..2 24573.631846: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13314 next_prio=110
58429  kworker/u16:15-18488 (18488) [006] d..2 24573.631959: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
58430           <...>-13314 (-----) [002] ...1 24573.632258: tracing_mark_write: E|13131
58431           <...>-13314 (-----) [002] ...1 24573.632262: tracing_mark_write: E|13131
58432           <...>-13314 (-----) [002] ...1 24573.632278: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58433           <...>-13314 (-----) [002] ...1 24573.632283: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58434           <...>-13314 (-----) [002] ...1 24573.632979: tracing_mark_write: E|13131
58435           <...>-13314 (-----) [002] ...1 24573.632983: tracing_mark_write: E|13131
58436           <...>-13314 (-----) [002] ...1 24573.633001: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58437           <...>-13314 (-----) [002] ...1 24573.633005: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58438           <...>-13314 (-----) [002] ...1 24573.633337: tracing_mark_write: E|13131
58439           <...>-13314 (-----) [002] ...1 24573.633341: tracing_mark_write: E|13131
58440           <...>-13314 (-----) [002] ...1 24573.633351: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58441           <...>-13314 (-----) [002] ...1 24573.633355: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58442           <...>-13314 (-----) [002] ...1 24573.633593: tracing_mark_write: E|13131
58443           <...>-13314 (-----) [002] ...1 24573.633596: tracing_mark_write: E|13131
58444           <...>-13314 (-----) [002] ...1 24573.633606: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58445           <...>-13314 (-----) [002] ...1 24573.633610: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58446 id.nn.benchmark-13155 (13131) [006] d..2 24573.633826: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=004
58447           <...>-13157 (-----) [004] d..3 24573.633832: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
58448           <...>-13157 (-----) [004] d..2 24573.633841: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=D|K ==> next_comm=swapper/4 next_pid=0 next_prio=120
58449 id.nn.benchmark-13159 (13131) [000] dnh1 24573.633845: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
58450 id.nn.benchmark-13155 (13131) [006] d..3 24573.633846: sched_blocked_reason: pid=13157 iowait=1 caller=__lock_page_or_retry+0x26c/0x2c4
58451 id.nn.benchmark-13155 (13131) [006] d..3 24573.633850: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=004
58452 id.nn.benchmark-13159 (13131) [000] d..2 24573.633852: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
58453          <idle>-0     (-----) [004] d..2 24573.633853: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
58454     migration/0-13    (   13) [000] d.h3 24573.633903: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
58455     migration/0-13    (   13) [000] d.h3 24573.633911: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
58456 id.nn.benchmark-13155 (13131) [006] dnh1 24573.633915: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
58457 id.nn.benchmark-13155 (13131) [006] d..2 24573.633919: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
58458     migration/0-13    (   13) [000] d.h4 24573.633922: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
58459         sugov:4-560   (  560) [006] d..2 24573.633923: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
58460     migration/0-13    (   13) [000] d..2 24573.633930: 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
58461         sugov:0-559   (  559) [000] d..2 24573.633952: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
58462     logd.writer-563   (  555) [000] d..2 24573.634163: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
58463           <...>-13314 (-----) [002] d.h1 24573.634230: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
58464 id.nn.benchmark-13160 (13131) [003] d.s2 24573.634234: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
58465           <...>-13314 (-----) [002] dnh2 24573.634240: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
58466 id.nn.benchmark-13160 (13131) [003] d.s3 24573.634244: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
58467           <...>-13314 (-----) [002] d..2 24573.634255: sched_switch: prev_comm=id.nn.benchmark prev_pid=13314 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
58468        DispSync-23904 (23896) [002] d..1 24573.634269: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
58469        DispSync-23904 (23896) [002] d..2 24573.634284: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
58470 id.nn.benchmark-13159 (13131) [000] d..2 24573.634293: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
58471        DispSync-23904 (23896) [002] d..2 24573.634297: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
58472     rcu_preempt-7     (    7) [002] d..2 24573.634302: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
58473     rcu_preempt-7     (    7) [002] d..3 24573.634313: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
58474     rcu_preempt-7     (    7) [002] d..2 24573.634314: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
58475   sfEventThread-23906 (23896) [000] d..3 24573.634328: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
58476 id.nn.benchmark-13155 (13131) [006] dnh1 24573.634340: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
58477 id.nn.benchmark-13155 (13131) [006] d..2 24573.634342: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
58478   sfEventThread-23906 (23896) [000] d..4 24573.634344: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
58479     rcu_preempt-7     (    7) [002] d..2 24573.634350: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
58480         rcuop/6-61    (   61) [006] d..2 24573.634355: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
58481   sfEventThread-23906 (23896) [000] d..2 24573.634365: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
58482  surfaceflinger-23896 (23896) [002] d..1 24573.634603: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
58483  surfaceflinger-23896 (23896) [002] d..2 24573.634614: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
58484 id.nn.benchmark-13159 (13131) [000] d..2 24573.634622: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
58485   sfEventThread-23906 (23896) [000] d..2 24573.634638: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
58486  surfaceflinger-23896 (23896) [002] ...1 24573.634739: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
58487  surfaceflinger-23896 (23896) [002] ...1 24573.634742: tracing_mark_write: E|23896
58488  surfaceflinger-23896 (23896) [002] .... 24573.634786: binder_transaction: transaction=1670027 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
58489  surfaceflinger-23896 (23896) [002] ...2 24573.634807: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
58490  surfaceflinger-23896 (23896) [002] d..4 24573.634813: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
58491 id.nn.benchmark-13155 (13131) [006] dnh1 24573.634836: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=006
58492 id.nn.benchmark-13155 (13131) [006] d..2 24573.634860: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
58493  surfaceflinger-23896 (23896) [002] d.h5 24573.634861: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
58494  surfaceflinger-23896 (23896) [002] d.h5 24573.634873: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
58495 id.nn.benchmark-13156 (13131) [007] dnh1 24573.634877: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
58496 id.nn.benchmark-13156 (13131) [007] d..2 24573.634880: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
58497  surfaceflinger-23896 (23896) [002] d.h6 24573.634881: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
58498         sugov:4-560   (  560) [007] d..2 24573.634885: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
58499  HwBinder:598_3-633   (  598) [006] .... 24573.634886: binder_transaction_received: transaction=1670027
58500 id.nn.benchmark-13159 (13131) [000] d..2 24573.634888: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
58501  surfaceflinger-23896 (23896) [002] d..2 24573.634893: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
58502         sugov:0-559   (  559) [000] d..2 24573.634895: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
58503         rcuop/0-10    (   10) [002] d..2 24573.634897: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
58504  HwBinder:598_3-633   (  598) [006] ...1 24573.634912: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
58505           <...>-13157 (-----) [004] dnh1 24573.634921: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
58506           <...>-13157 (-----) [004] d..2 24573.634924: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
58507         rcuop/1-21    (   21) [004] d..2 24573.634929: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
58508         rcuop/0-10    (   10) [002] d..2 24573.634937: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13314 next_prio=110
58509           <...>-13314 (-----) [002] ...1 24573.634950: tracing_mark_write: E|13131
58510           <...>-13314 (-----) [002] ...1 24573.634955: tracing_mark_write: E|13131
58511  HwBinder:598_3-633   (  598) [006] ...1 24573.634963: tracing_mark_write: B|598|HWCSession::PresentDisplay::
58512           <...>-13314 (-----) [002] ...1 24573.634967: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58513           <...>-13314 (-----) [002] ...1 24573.634971: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58514  HwBinder:598_3-633   (  598) [006] ...1 24573.635027: tracing_mark_write: B|598|HWDeviceDRM::Commit::
58515  HwBinder:598_3-633   (  598) [006] ...1 24573.635031: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
58516  HwBinder:598_3-633   (  598) [006] d..2 24573.635232: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
58517           <...>-13314 (-----) [002] dnh1 24573.635246: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
58518           <...>-13314 (-----) [002] d..2 24573.635254: sched_switch: prev_comm=id.nn.benchmark prev_pid=13314 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
58519  HwBinder:598_3-633   (  598) [006] ...1 24573.635267: tracing_mark_write: E|598
58520  HwBinder:598_3-633   (  598) [006] ...1 24573.635268: tracing_mark_write: E|598
58521  HwBinder:598_3-633   (  598) [006] ...1 24573.635290: tracing_mark_write: E|598
58522  HwBinder:598_3-633   (  598) [006] ...1 24573.635310: tracing_mark_write: E|598
58523  HwBinder:598_3-633   (  598) [006] .... 24573.635316: binder_transaction: transaction=1670028 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
58524  HwBinder:598_3-633   (  598) [006] d..2 24573.635322: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
58525  HwBinder:598_3-633   (  598) [006] .... 24573.635331: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
58526 id.nn.benchmark-13159 (13131) [000] dnh1 24573.635336: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
58527 id.nn.benchmark-13159 (13131) [000] d..2 24573.635341: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
58528  surfaceflinger-23896 (23896) [000] .... 24573.635346: binder_transaction_received: transaction=1670028
58529  HwBinder:598_3-633   (  598) [006] d..2 24573.635353: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
58530  surfaceflinger-23896 (23896) [000] d..2 24573.635594: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
58531 crtc_commit:111-253   (  253) [002] d..2 24573.635864: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13314 next_prio=110
58532           <...>-13314 (-----) [002] ...1 24573.635979: tracing_mark_write: E|13131
58533           <...>-13314 (-----) [002] ...1 24573.635983: tracing_mark_write: E|13131
58534           <...>-13314 (-----) [002] ...1 24573.636002: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58535           <...>-13314 (-----) [002] ...1 24573.636006: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58536           <...>-13314 (-----) [002] ...1 24573.636198: tracing_mark_write: E|13131
58537           <...>-13314 (-----) [002] ...1 24573.636201: tracing_mark_write: E|13131
58538           <...>-13314 (-----) [002] ...1 24573.636215: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58539           <...>-13314 (-----) [002] ...1 24573.636220: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58540           <...>-13314 (-----) [002] d..2 24573.636243: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=007
58541 id.nn.benchmark-13156 (13131) [007] d..3 24573.636247: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
58542 id.nn.benchmark-13156 (13131) [007] d..2 24573.636254: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=D|K ==> next_comm=swapper/7 next_pid=0 next_prio=120
58543 id.nn.benchmark-13159 (13131) [000] dnh1 24573.636258: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
58544 id.nn.benchmark-13159 (13131) [000] d..2 24573.636264: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
58545          <idle>-0     (-----) [007] d..1 24573.636268: cpu_idle: state=0 cpu_id=7
58546          <idle>-0     (-----) [007] dnh2 24573.636284: sched_blocked_reason: pid=13156 iowait=1 caller=__lock_page_or_retry+0x26c/0x2c4
58547          <idle>-0     (-----) [007] dnh2 24573.636285: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=007
58548          <idle>-0     (-----) [007] .n.1 24573.636290: cpu_idle: state=4294967295 cpu_id=7
58549          <idle>-0     (-----) [007] d..2 24573.636312: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
58550     migration/0-13    (   13) [000] d.h3 24573.636313: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
58551     migration/0-13    (   13) [000] d.h3 24573.636325: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
58552 id.nn.benchmark-13155 (13131) [006] dnh1 24573.636329: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
58553     migration/0-13    (   13) [000] d.h4 24573.636331: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
58554 id.nn.benchmark-13155 (13131) [006] d..2 24573.636332: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
58555         sugov:4-560   (  560) [006] d..2 24573.636336: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
58556     migration/0-13    (   13) [000] d..2 24573.636338: 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
58557         sugov:0-559   (  559) [000] d..2 24573.636364: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
58558           <...>-13314 (-----) [002] ...1 24573.636435: tracing_mark_write: E|13131
58559           <...>-13314 (-----) [002] ...1 24573.636439: tracing_mark_write: E|13131
58560           <...>-13314 (-----) [002] ...1 24573.636450: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
58561           <...>-13314 (-----) [002] ...1 24573.636455: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
58562           <...>-13314 (-----) [002] ...1 24573.636763: tracing_mark_write: E|13131
58563           <...>-13314 (-----) [002] ...1 24573.636767: tracing_mark_write: E|13131
58564           <...>-13314 (-----) [002] ...1 24573.636776: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
58565           <...>-13314 (-----) [002] ...1 24573.636780: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
58566           <...>-13314 (-----) [002] ...1 24573.636834: tracing_mark_write: E|13131
58567           <...>-13314 (-----) [002] ...1 24573.636837: tracing_mark_write: E|13131
58568           <...>-13314 (-----) [002] ...1 24573.636846: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
58569           <...>-13314 (-----) [002] ...1 24573.636849: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
58570           <...>-13314 (-----) [002] ...1 24573.636867: tracing_mark_write: E|13131
58571           <...>-13314 (-----) [002] ...1 24573.636870: tracing_mark_write: E|13131
58572           <...>-13314 (-----) [002] ...1 24573.636881: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
58573           <...>-13314 (-----) [002] ...1 24573.636884: tracing_mark_write: E|13131
58574           <...>-13314 (-----) [002] ...1 24573.636893: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
58575           <...>-13314 (-----) [002] ...1 24573.636898: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
58576 id.nn.benchmark-13158 (13131) [005] d.s2 24573.637554: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
58577           <...>-13157 (-----) [004] d.h2 24573.637599: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
58578           <...>-13314 (-----) [002] dnH1 24573.637601: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
58579           <...>-13157 (-----) [004] d.h3 24573.637608: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
58580           <...>-13157 (-----) [004] d.h2 24573.637608: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
58581           <...>-13314 (-----) [002] d..2 24573.637610: sched_switch: prev_comm=id.nn.benchmark prev_pid=13314 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
58582 id.nn.benchmark-13159 (13131) [007] d..2 24573.637614: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
58583         sugov:4-560   (  560) [007] d..2 24573.637617: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
58584  kworker/u16:15-18488 (18488) [002] dnh3 24573.637624: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
58585  kworker/u16:15-18488 (18488) [002] d..2 24573.637629: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
58586         sugov:0-559   (  559) [002] d..2 24573.637636: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
58587  kworker/u16:15-18488 (18488) [002] d..2 24573.637720: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13314 next_prio=110
58588           <...>-13314 (-----) [002] ...1 24573.637929: tracing_mark_write: E|13131
58589           <...>-13314 (-----) [002] ...1 24573.637932: tracing_mark_write: E|13131
58590           <...>-13314 (-----) [002] ...1 24573.637942: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58591           <...>-13314 (-----) [002] ...1 24573.637945: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58592           <...>-13314 (-----) [002] ...1 24573.638030: tracing_mark_write: E|13131
58593           <...>-13314 (-----) [002] ...1 24573.638033: tracing_mark_write: E|13131
58594           <...>-13314 (-----) [002] d..2 24573.638085: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
58595           <...>-13314 (-----) [002] d..3 24573.638098: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
58596           <...>-13314 (-----) [002] ...1 24573.638121: tracing_mark_write: E|13131
58597           <...>-13314 (-----) [002] d..1 24573.638126: sched_waking: comm=id.nn.benchmark pid=13313 prio=110 target_cpu=002
58598 id.nn.benchmark-13159 (13131) [007] dnh1 24573.638149: sched_wakeup: comm=id.nn.benchmark pid=13313 prio=110 target_cpu=007
58599 id.nn.benchmark-13159 (13131) [007] d..2 24573.638173: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13313 next_prio=110
58600           <...>-13314 (-----) [002] d.h3 24573.638174: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
58601           <...>-13313 (-----) [007] d..2 24573.638182: sched_switch: prev_comm=id.nn.benchmark prev_pid=13313 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
58602           <...>-13314 (-----) [002] d.h3 24573.638183: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
58603 id.nn.benchmark-13159 (13131) [007] dnh3 24573.638185: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
58604 id.nn.benchmark-13159 (13131) [007] d..2 24573.638187: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
58605           <...>-13314 (-----) [002] dnh4 24573.638189: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
58606         sugov:4-560   (  560) [007] d..2 24573.638190: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
58607           <...>-13314 (-----) [002] d..2 24573.638194: sched_switch: prev_comm=id.nn.benchmark prev_pid=13314 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
58608         sugov:0-559   (  559) [002] d..2 24573.638201: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
58609     logd.writer-563   (  555) [002] d..2 24573.638246: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13314 next_prio=110
58610           <...>-13314 (-----) [002] ...1 24573.638266: tracing_mark_write: E|13131
58611           <...>-13314 (-----) [002] d..1 24573.638484: sched_waking: comm=id.nn.benchmark pid=13313 prio=110 target_cpu=007
58612 id.nn.benchmark-13159 (13131) [007] dnh1 24573.638498: sched_wakeup: comm=id.nn.benchmark pid=13313 prio=110 target_cpu=007
58613 id.nn.benchmark-13159 (13131) [007] d..2 24573.638500: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13313 next_prio=110
58614           <...>-13313 (-----) [007] d..2 24573.638538: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
58615           <...>-13314 (-----) [002] d.h2 24573.638554: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
58616           <...>-13314 (-----) [002] d..2 24573.638561: sched_switch: prev_comm=id.nn.benchmark prev_pid=13314 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
58617           <...>-13313 (-----) [007] d..1 24573.638574: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
58618           <...>-13313 (-----) [007] dn.2 24573.638580: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
58619           <...>-13313 (-----) [007] d..2 24573.638583: sched_switch: prev_comm=id.nn.benchmark prev_pid=13313 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
58620           <...>-13131 (-----) [007] d..2 24573.638590: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13313 next_prio=110
58621           <...>-13313 (-----) [007] d..1 24573.638618: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
58622           <...>-13313 (-----) [007] dn.2 24573.638622: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
58623           <...>-13313 (-----) [007] d..2 24573.638624: sched_switch: prev_comm=id.nn.benchmark prev_pid=13313 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
58624           <...>-13131 (-----) [007] ...1 24573.638635: tracing_mark_write: E|13131
58625     logd.writer-563   (  555) [002] d..2 24573.638635: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13313 next_prio=110
58626           <...>-13131 (-----) [007] ...1 24573.638638: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
58627           <...>-13131 (-----) [007] ...1 24573.638640: tracing_mark_write: E|13131
58628           <...>-13131 (-----) [007] ...1 24573.638642: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
58629           <...>-13131 (-----) [007] ...1 24573.638644: tracing_mark_write: E|13131
58630           <...>-13313 (-----) [002] d..2 24573.638686: sched_switch: prev_comm=id.nn.benchmark prev_pid=13313 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
58631           <...>-13131 (-----) [007] ...1 24573.638708: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
58632 id.nn.benchmark-13159 (13131) [002] d.h4 24573.638712: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
58633 id.nn.benchmark-13159 (13131) [002] d.h4 24573.638720: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
58634           <...>-13131 (-----) [007] dnh1 24573.638725: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
58635 id.nn.benchmark-13159 (13131) [002] dnh5 24573.638726: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
58636           <...>-13131 (-----) [007] d..2 24573.638729: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
58637 id.nn.benchmark-13159 (13131) [002] d..2 24573.638733: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
58638         sugov:4-560   (  560) [007] d..2 24573.638734: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
58639           <...>-13131 (-----) [007] d..2 24573.638735: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
58640         sugov:0-559   (  559) [002] d..2 24573.638742: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
58641 id.nn.benchmark-13159 (13131) [002] d.h3 24573.638747: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
58642           <...>-13131 (-----) [007] ...1 24573.638751: tracing_mark_write: E|13131
58643           <...>-13131 (-----) [007] ...1 24573.638753: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
58644           <...>-13131 (-----) [007] ...1 24573.638756: tracing_mark_write: E|13131
58645           <...>-13131 (-----) [007] ...1 24573.638758: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
58646           <...>-13131 (-----) [007] ...1 24573.638760: tracing_mark_write: E|13131
58647           <...>-13131 (-----) [007] ...1 24573.638761: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
58648           <...>-13131 (-----) [007] ...1 24573.638823: tracing_mark_write: E|13131
58649           <...>-13131 (-----) [007] ...1 24573.638825: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
58650           <...>-13131 (-----) [007] d..2 24573.638829: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13315 next_prio=110
58651           <...>-13315 (-----) [007] d..2 24573.638982: sched_switch: prev_comm=id.nn.benchmark prev_pid=13315 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13316 next_prio=110
58652           <...>-13316 (-----) [007] ...1 24573.638992: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
58653           <...>-13316 (-----) [007] ...1 24573.638994: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
58654           <...>-13316 (-----) [007] ...1 24573.639047: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58655           <...>-13316 (-----) [007] ...1 24573.639049: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58656           <...>-13316 (-----) [007] ...1 24573.639905: tracing_mark_write: E|13131
58657           <...>-13316 (-----) [007] ...1 24573.639906: tracing_mark_write: E|13131
58658           <...>-13316 (-----) [007] ...1 24573.639910: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58659           <...>-13316 (-----) [007] ...1 24573.639911: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58660           <...>-13316 (-----) [007] ...1 24573.640282: tracing_mark_write: E|13131
58661           <...>-13316 (-----) [007] ...1 24573.640283: tracing_mark_write: E|13131
58662           <...>-13316 (-----) [007] ...1 24573.640288: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58663           <...>-13316 (-----) [007] ...1 24573.640289: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58664           <...>-13316 (-----) [007] ...1 24573.640498: tracing_mark_write: E|13131
58665           <...>-13316 (-----) [007] ...1 24573.640499: tracing_mark_write: E|13131
58666           <...>-13316 (-----) [007] ...1 24573.640502: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58667           <...>-13316 (-----) [007] ...1 24573.640503: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58668           <...>-13316 (-----) [007] ...1 24573.640669: tracing_mark_write: E|13131
58669           <...>-13316 (-----) [007] ...1 24573.640670: tracing_mark_write: E|13131
58670           <...>-13316 (-----) [007] ...1 24573.640673: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58671           <...>-13316 (-----) [007] ...1 24573.640674: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58672 id.nn.benchmark-13158 (13131) [005] d.s2 24573.640889: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
58673           <...>-13154 (-----) [001] d.h2 24573.640895: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
58674           <...>-13154 (-----) [001] dnh3 24573.640904: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
58675 id.nn.benchmark-13159 (13131) [002] d.s1 24573.640905: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
58676 id.nn.benchmark-13158 (13131) [005] d.s3 24573.640907: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
58677           <...>-13154 (-----) [001] d..2 24573.640914: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
58678           <...>-13157 (-----) [004] d..2 24573.640914: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
58679 id.nn.benchmark-13155 (13131) [006] dnh1 24573.640938: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=006
58680 id.nn.benchmark-13158 (13131) [005] d.H3 24573.640939: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
58681 id.nn.benchmark-13155 (13131) [006] d..2 24573.640942: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
58682 id.nn.benchmark-13158 (13131) [005] d.H4 24573.640945: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
58683 id.nn.benchmark-13158 (13131) [005] d.H3 24573.640965: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
58684           <...>-13316 (-----) [007] d..2 24573.640968: sched_switch: prev_comm=id.nn.benchmark prev_pid=13316 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
58685     rcu_preempt-7     (    7) [006] d..2 24573.640973: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
58686         sugov:4-560   (  560) [007] d..2 24573.640982: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13316 next_prio=110
58687 id.nn.benchmark-13158 (13131) [005] d.s2 24573.641010: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=006
58688     migration/1-17    (   17) [001] d.h2 24573.641012: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
58689     migration/1-17    (   17) [001] d..2 24573.641019: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
58690 id.nn.benchmark-13158 (13131) [005] d.s3 24573.641023: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=006
58691 id.nn.benchmark-13155 (13131) [006] d..2 24573.641026: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
58692     rcu_preempt-7     (    7) [006] d..2 24573.641033: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=005
58693         sugov:0-559   (  559) [001] d..2 24573.641041: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
58694     rcu_preempt-7     (    7) [006] d..3 24573.641047: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=005
58695     rcu_preempt-7     (    7) [006] d..2 24573.641051: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
58696 id.nn.benchmark-13158 (13131) [005] d..2 24573.641053: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
58697         rcuop/2-29    (   29) [005] d..2 24573.641064: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
58698  kworker/u16:15-18488 (18488) [004] d..2 24573.641195: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
58699     logd.writer-563   (  555) [001] d..2 24573.641378: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
58700           <...>-13316 (-----) [007] ...1 24573.641494: tracing_mark_write: E|13131
58701           <...>-13316 (-----) [007] ...1 24573.641495: tracing_mark_write: E|13131
58702           <...>-13316 (-----) [007] ...1 24573.641499: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58703           <...>-13316 (-----) [007] ...1 24573.641500: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58704           <...>-13316 (-----) [007] ...1 24573.641790: tracing_mark_write: E|13131
58705           <...>-13316 (-----) [007] ...1 24573.641792: tracing_mark_write: E|13131
58706           <...>-13316 (-----) [007] ...1 24573.641797: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58707           <...>-13316 (-----) [007] ...1 24573.641799: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58708           <...>-13316 (-----) [007] ...1 24573.641958: tracing_mark_write: E|13131
58709           <...>-13316 (-----) [007] ...1 24573.641959: tracing_mark_write: E|13131
58710           <...>-13316 (-----) [007] ...1 24573.641963: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58711           <...>-13316 (-----) [007] ...1 24573.641964: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58712           <...>-13316 (-----) [007] ...1 24573.642018: tracing_mark_write: E|13131
58713           <...>-13316 (-----) [007] ...1 24573.642019: tracing_mark_write: E|13131
58714           <...>-13316 (-----) [007] ...1 24573.642022: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
58715           <...>-13316 (-----) [007] ...1 24573.642023: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
58716           <...>-13316 (-----) [007] ...1 24573.642147: tracing_mark_write: E|13131
58717           <...>-13316 (-----) [007] ...1 24573.642148: tracing_mark_write: E|13131
58718           <...>-13316 (-----) [007] ...1 24573.642151: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
58719           <...>-13316 (-----) [007] ...1 24573.642152: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
58720           <...>-13316 (-----) [007] ...1 24573.642169: tracing_mark_write: E|13131
58721           <...>-13316 (-----) [007] ...1 24573.642170: tracing_mark_write: E|13131
58722           <...>-13316 (-----) [007] ...1 24573.642173: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
58723           <...>-13316 (-----) [007] ...1 24573.642174: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
58724           <...>-13316 (-----) [007] ...1 24573.642179: tracing_mark_write: E|13131
58725           <...>-13316 (-----) [007] ...1 24573.642180: tracing_mark_write: E|13131
58726           <...>-13316 (-----) [007] ...1 24573.642184: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
58727           <...>-13316 (-----) [007] ...1 24573.642185: tracing_mark_write: E|13131
58728           <...>-13316 (-----) [007] ...1 24573.642188: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
58729           <...>-13316 (-----) [007] ...1 24573.642189: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
58730 id.nn.benchmark-13156 (13131) [000] d.h4 24573.642314: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
58731 id.nn.benchmark-13156 (13131) [000] d.h4 24573.642337: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
58732           <...>-13316 (-----) [007] dnh1 24573.642339: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
58733           <...>-13316 (-----) [007] d..2 24573.642343: sched_switch: prev_comm=id.nn.benchmark prev_pid=13316 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
58734           <...>-13157 (-----) [004] dnh1 24573.642352: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
58735  crtc_event:111-254   (  254) [007] d..2 24573.642354: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13316 next_prio=110
58736           <...>-13157 (-----) [004] d..2 24573.642355: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
58737 id.nn.benchmark-13156 (13131) [000] d.h2 24573.642381: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
58738 id.nn.benchmark-13156 (13131) [000] d.h2 24573.642388: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
58739           <...>-13316 (-----) [007] dnh1 24573.642392: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
58740           <...>-13316 (-----) [007] d..2 24573.642394: sched_switch: prev_comm=id.nn.benchmark prev_pid=13316 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
58741 id.nn.benchmark-13156 (13131) [000] d.h3 24573.642396: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
58742         sugov:4-560   (  560) [007] d..2 24573.642397: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13316 next_prio=110
58743           <...>-13154 (-----) [001] d..2 24573.642406: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
58744         sugov:0-559   (  559) [001] d..2 24573.642415: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
58745 crtc_commit:111-253   (  253) [004] d..2 24573.642447: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
58746           <...>-13316 (-----) [007] ...1 24573.642523: tracing_mark_write: E|13131
58747           <...>-13316 (-----) [007] ...1 24573.642524: tracing_mark_write: E|13131
58748           <...>-13316 (-----) [007] ...1 24573.642527: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58749           <...>-13316 (-----) [007] ...1 24573.642528: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58750           <...>-13316 (-----) [007] ...1 24573.642598: tracing_mark_write: E|13131
58751           <...>-13316 (-----) [007] ...1 24573.642599: tracing_mark_write: E|13131
58752           <...>-13316 (-----) [007] d..2 24573.642615: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
58753           <...>-13154 (-----) [001] d.h1 24573.642627: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
58754           <...>-13316 (-----) [007] ...1 24573.642629: tracing_mark_write: E|13131
58755           <...>-13316 (-----) [007] d..1 24573.642631: sched_waking: comm=id.nn.benchmark pid=13315 prio=110 target_cpu=007
58756           <...>-13316 (-----) [007] dn.2 24573.642636: sched_wakeup: comm=id.nn.benchmark pid=13315 prio=110 target_cpu=007
58757           <...>-13316 (-----) [007] d..2 24573.642639: sched_switch: prev_comm=id.nn.benchmark prev_pid=13316 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13315 next_prio=110
58758           <...>-13315 (-----) [007] d..2 24573.642645: sched_switch: prev_comm=id.nn.benchmark prev_pid=13315 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13316 next_prio=110
58759           <...>-13316 (-----) [007] ...1 24573.642650: tracing_mark_write: E|13131
58760           <...>-13316 (-----) [007] d..1 24573.642750: sched_waking: comm=id.nn.benchmark pid=13315 prio=110 target_cpu=007
58761           <...>-13316 (-----) [007] dn.2 24573.642753: sched_wakeup: comm=id.nn.benchmark pid=13315 prio=110 target_cpu=007
58762           <...>-13316 (-----) [007] d..2 24573.642756: sched_switch: prev_comm=id.nn.benchmark prev_pid=13316 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13315 next_prio=110
58763           <...>-13315 (-----) [007] d..1 24573.642799: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
58764           <...>-13315 (-----) [007] dn.2 24573.642804: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
58765           <...>-13315 (-----) [007] d..2 24573.642807: sched_switch: prev_comm=id.nn.benchmark prev_pid=13315 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
58766           <...>-13131 (-----) [007] d..2 24573.642812: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13315 next_prio=110
58767           <...>-13315 (-----) [007] d..1 24573.642834: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
58768           <...>-13315 (-----) [007] dn.2 24573.642838: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
58769           <...>-13315 (-----) [007] d..2 24573.642840: sched_switch: prev_comm=id.nn.benchmark prev_pid=13315 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
58770           <...>-13131 (-----) [007] ...1 24573.642847: tracing_mark_write: E|13131
58771           <...>-13131 (-----) [007] ...1 24573.642849: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
58772           <...>-13131 (-----) [007] ...1 24573.642851: tracing_mark_write: E|13131
58773           <...>-13131 (-----) [007] ...1 24573.642853: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
58774           <...>-13131 (-----) [007] ...1 24573.642855: tracing_mark_write: E|13131
58775           <...>-13131 (-----) [007] ...1 24573.642914: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
58776           <...>-13131 (-----) [007] ...1 24573.642934: tracing_mark_write: E|13131
58777           <...>-13131 (-----) [007] ...1 24573.642936: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
58778           <...>-13131 (-----) [007] ...1 24573.642939: tracing_mark_write: E|13131
58779           <...>-13131 (-----) [007] ...1 24573.642940: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
58780           <...>-13131 (-----) [007] ...1 24573.642942: tracing_mark_write: E|13131
58781           <...>-13131 (-----) [007] ...1 24573.642944: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
58782           <...>-13131 (-----) [007] ...1 24573.642986: tracing_mark_write: E|13131
58783           <...>-13131 (-----) [007] ...1 24573.642988: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
58784           <...>-13131 (-----) [007] d..2 24573.642992: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13315 next_prio=110
58785           <...>-13315 (-----) [007] d..2 24573.643007: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
58786           <...>-13315 (-----) [007] d..3 24573.643018: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
58787 id.nn.benchmark-13155 (13131) [006] d..2 24573.643025: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
58788           <...>-13315 (-----) [007] d..2 24573.643029: sched_switch: prev_comm=id.nn.benchmark prev_pid=13315 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13316 next_prio=110
58789         rcuop/6-61    (   61) [006] d..2 24573.643030: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
58790           <...>-13316 (-----) [007] d..2 24573.643041: sched_switch: prev_comm=id.nn.benchmark prev_pid=13316 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13317 next_prio=110
58791           <...>-13317 (-----) [007] d..2 24573.643181: sched_switch: prev_comm=id.nn.benchmark prev_pid=13317 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13318 next_prio=110
58792           <...>-13318 (-----) [007] ...1 24573.643191: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
58793           <...>-13318 (-----) [007] ...1 24573.643193: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
58794           <...>-13318 (-----) [007] ...1 24573.643241: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58795           <...>-13318 (-----) [007] ...1 24573.643243: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58796           <...>-13318 (-----) [007] ...1 24573.644092: tracing_mark_write: E|13131
58797           <...>-13318 (-----) [007] ...1 24573.644094: tracing_mark_write: E|13131
58798           <...>-13318 (-----) [007] ...1 24573.644098: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58799           <...>-13318 (-----) [007] ...1 24573.644099: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58800           <...>-13157 (-----) [004] d.s2 24573.644223: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
58801           <...>-13157 (-----) [004] d.s3 24573.644230: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
58802 id.nn.benchmark-13159 (13131) [002] d.h2 24573.644233: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
58803           <...>-13318 (-----) [007] d..2 24573.644234: sched_switch: prev_comm=id.nn.benchmark prev_pid=13318 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
58804 id.nn.benchmark-13159 (13131) [002] dnh3 24573.644239: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
58805  crtc_event:111-254   (  254) [007] d..2 24573.644247: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13318 next_prio=110
58806 id.nn.benchmark-13159 (13131) [002] d..2 24573.644249: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
58807     migration/2-25    (   25) [002] d.h3 24573.644297: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
58808     migration/2-25    (   25) [002] d.h3 24573.644305: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
58809           <...>-13318 (-----) [007] dnh1 24573.644308: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
58810           <...>-13318 (-----) [007] d..2 24573.644312: sched_switch: prev_comm=id.nn.benchmark prev_pid=13318 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
58811     migration/2-25    (   25) [002] d.h4 24573.644314: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
58812         sugov:4-560   (  560) [007] d..2 24573.644316: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
58813     migration/2-25    (   25) [002] d..2 24573.644321: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
58814         sugov:0-559   (  559) [002] d..2 24573.644342: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
58815 id.nn.benchmark-13156 (13131) [000] d.h4 24573.644662: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
58816 id.nn.benchmark-13156 (13131) [000] d.h5 24573.644687: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
58817     logd.writer-563   (  555) [002] d..2 24573.644694: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
58818 crtc_commit:111-253   (  253) [002] d..2 24573.644749: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13318 next_prio=110
58819           <...>-13318 (-----) [002] ...1 24573.644921: tracing_mark_write: E|13131
58820           <...>-13318 (-----) [002] ...1 24573.644925: tracing_mark_write: E|13131
58821           <...>-13318 (-----) [002] ...1 24573.644939: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58822           <...>-13318 (-----) [002] ...1 24573.644944: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58823 id.nn.benchmark-13156 (13131) [000] d.h4 24573.644952: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
58824 id.nn.benchmark-13156 (13131) [000] d.h5 24573.644966: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
58825           <...>-13318 (-----) [002] d..2 24573.644976: sched_switch: prev_comm=id.nn.benchmark prev_pid=13318 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
58826 id.nn.benchmark-13156 (13131) [000] d.h2 24573.645000: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
58827  crtc_event:111-254   (  254) [002] d..2 24573.645003: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13318 next_prio=110
58828 id.nn.benchmark-13156 (13131) [000] d.h2 24573.645007: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
58829 id.nn.benchmark-13159 (13131) [007] dnh1 24573.645010: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
58830 id.nn.benchmark-13159 (13131) [007] d..2 24573.645012: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
58831 id.nn.benchmark-13156 (13131) [000] d.h3 24573.645014: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
58832         sugov:4-560   (  560) [007] d..2 24573.645015: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
58833           <...>-13318 (-----) [002] d..2 24573.645023: sched_switch: prev_comm=id.nn.benchmark prev_pid=13318 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
58834         sugov:0-559   (  559) [002] d..2 24573.645029: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13318 next_prio=110
58835           <...>-13318 (-----) [002] ...1 24573.645326: tracing_mark_write: E|13131
58836           <...>-13318 (-----) [002] ...1 24573.645330: tracing_mark_write: E|13131
58837           <...>-13318 (-----) [002] ...1 24573.645341: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58838           <...>-13318 (-----) [002] ...1 24573.645345: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58839           <...>-13318 (-----) [002] ...1 24573.645570: tracing_mark_write: E|13131
58840           <...>-13318 (-----) [002] ...1 24573.645574: tracing_mark_write: E|13131
58841           <...>-13318 (-----) [002] ...1 24573.645584: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58842           <...>-13318 (-----) [002] ...1 24573.645588: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58843           <...>-13318 (-----) [002] ...1 24573.645958: tracing_mark_write: E|13131
58844           <...>-13318 (-----) [002] ...1 24573.645962: tracing_mark_write: E|13131
58845           <...>-13318 (-----) [002] ...1 24573.645972: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58846           <...>-13318 (-----) [002] ...1 24573.645976: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58847           <...>-13318 (-----) [002] ...1 24573.646344: tracing_mark_write: E|13131
58848           <...>-13318 (-----) [002] ...1 24573.646347: tracing_mark_write: E|13131
58849           <...>-13318 (-----) [002] ...1 24573.646364: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58850           <...>-13318 (-----) [002] ...1 24573.646369: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58851           <...>-13157 (-----) [004] d.h1 24573.646389: sched_waking: comm=main pid=13122 prio=120 target_cpu=004
58852           <...>-13157 (-----) [004] dnh2 24573.646396: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=004
58853           <...>-13157 (-----) [004] d..2 24573.646401: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=main next_pid=13122 next_prio=120
58854 Shutdown thread-13122 (13122) [004] .... 24573.646499: binder_transaction: transaction=1670029 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x5f504e47
58855 Shutdown thread-13122 (13122) [004] d..4 24573.646504: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=003
58856 Shutdown thread-13122 (13122) [004] d..5 24573.646522: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
58857 Shutdown thread-13122 (13122) [004] d.h5 24573.646543: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
58858 id.nn.benchmark-13159 (13131) [007] d..2 24573.646543: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
58859 Shutdown thread-13122 (13122) [004] d.h6 24573.646551: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
58860 Shutdown thread-13122 (13122) [004] d.h5 24573.646551: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
58861           <...>-13318 (-----) [002] ...1 24573.646556: tracing_mark_write: E|13131
58862  Binder:23968_1-23981 (23968) [007] d..2 24573.646561: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
58863 Shutdown thread-13122 (13122) [004] d..2 24573.646563: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
58864           <...>-13318 (-----) [002] dnh2 24573.646563: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
58865         sugov:4-560   (  560) [007] d..2 24573.646564: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
58866  Binder:23968_1-23981 (23968) [007] .... 24573.646568: binder_transaction_received: transaction=1670029
58867           <...>-13318 (-----) [002] d..2 24573.646570: sched_switch: prev_comm=id.nn.benchmark prev_pid=13318 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
58868         sugov:0-559   (  559) [002] d..2 24573.646578: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13318 next_prio=110
58869           <...>-13318 (-----) [002] ...1 24573.646584: tracing_mark_write: E|13131
58870           <...>-13318 (-----) [002] ...1 24573.646596: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58871  Binder:23968_1-23981 (23968) [007] .... 24573.646597: binder_transaction: transaction=1670030 dest_node=0 dest_proc=13122 dest_thread=13122 reply=1 flags=0x0 code=0x0
58872           <...>-13318 (-----) [002] ...1 24573.646600: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58873  Binder:23968_1-23981 (23968) [007] d..2 24573.646600: sched_waking: comm=main pid=13122 prio=120 target_cpu=004
58874  Binder:23968_1-23981 (23968) [007] d..3 24573.646608: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=004
58875           <...>-13157 (-----) [004] d..2 24573.646614: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=main next_pid=13122 next_prio=120
58876 Shutdown thread-13122 (13122) [004] .... 24573.646617: binder_transaction_received: transaction=1670030
58877  Binder:23968_1-23981 (23968) [007] d..2 24573.646620: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
58878 Shutdown thread-13122 (13122) [004] d..2 24573.646638: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
58879           <...>-13318 (-----) [002] ...1 24573.646667: tracing_mark_write: E|13131
58880           <...>-13318 (-----) [002] ...1 24573.646671: tracing_mark_write: E|13131
58881           <...>-13318 (-----) [002] ...1 24573.646680: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
58882           <...>-13318 (-----) [002] ...1 24573.646684: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
58883           <...>-13318 (-----) [002] d.h1 24573.646743: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
58884           <...>-13318 (-----) [002] dnh2 24573.646753: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
58885           <...>-13318 (-----) [002] d..2 24573.646761: sched_switch: prev_comm=id.nn.benchmark prev_pid=13318 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
58886        DispSync-23904 (23896) [002] d..1 24573.646781: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
58887        DispSync-23904 (23896) [002] d..2 24573.646798: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
58888 id.nn.benchmark-13156 (13131) [000] d..2 24573.646809: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
58889        DispSync-23904 (23896) [002] d..2 24573.646813: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13318 next_prio=110
58890  appEventThread-23905 (23896) [000] d..3 24573.646852: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
58891 id.nn.benchmark-13155 (13131) [006] dnh1 24573.646878: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
58892 id.nn.benchmark-13155 (13131) [006] d..2 24573.646881: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
58893  appEventThread-23905 (23896) [000] d..2 24573.646888: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
58894           <...>-13318 (-----) [002] ...1 24573.647038: tracing_mark_write: E|13131
58895           <...>-13318 (-----) [002] ...1 24573.647043: tracing_mark_write: E|13131
58896           <...>-13318 (-----) [002] ...1 24573.647052: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
58897           <...>-13318 (-----) [002] ...1 24573.647056: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
58898<...>-24151 ( 24151) [006] .... 24573.647060: binder_transaction: transaction=1670031 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
58899<...>-24151 ( 24151) [006] d..4 24573.647065: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
58900<...>-24151 ( 24151) [006] d..5 24573.647076: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
58901 id.nn.benchmark-13159 (13131) [007] d..2 24573.647083: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
58902  Binder:23896_5-25989 (23896) [007] .... 24573.647085: binder_transaction_received: transaction=1670031
58903<...>-24151 ( 24151) [006] d..3 24573.647092: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
58904<...>-24151 ( 24151) [006] d..4 24573.647098: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
58905  Binder:23896_5-25989 (23896) [007] d..1 24573.647101: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
58906           <...>-13318 (-----) [002] ...1 24573.647102: tracing_mark_write: E|13131
58907           <...>-13318 (-----) [002] ...1 24573.647105: tracing_mark_write: E|13131
58908           <...>-13318 (-----) [002] dnh1 24573.647116: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
58909  Binder:23896_5-25989 (23896) [007] d..2 24573.647120: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
58910           <...>-13318 (-----) [002] d..2 24573.647124: sched_switch: prev_comm=id.nn.benchmark prev_pid=13318 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
58911    RenderThread-24437 (24151) [007] d..2 24573.647137: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
58912  appEventThread-23905 (23896) [002] d..2 24573.647149: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13318 next_prio=110
58913           <...>-13318 (-----) [002] ...1 24573.647156: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
58914<...>-24151 ( 24151) [006] d..3 24573.647158: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
58915           <...>-13318 (-----) [002] ...1 24573.647160: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
58916<...>-24151 ( 24151) [006] d..4 24573.647166: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
58917<...>-24151 ( 24151) [006] d..2 24573.647172: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
58918 id.nn.benchmark-13159 (13131) [007] d..2 24573.647173: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
58919           <...>-13318 (-----) [002] ...1 24573.647176: tracing_mark_write: E|13131
58920           <...>-13318 (-----) [002] ...1 24573.647179: tracing_mark_write: E|13131
58921           <...>-13318 (-----) [002] ...1 24573.647188: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
58922           <...>-13318 (-----) [002] ...1 24573.647191: tracing_mark_write: E|13131
58923           <...>-13318 (-----) [002] ...1 24573.647198: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
58924           <...>-13318 (-----) [002] ...1 24573.647202: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
58925    RenderThread-24437 (24151) [007] d..1 24573.647226: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
58926    RenderThread-24437 (24151) [007] d..2 24573.647237: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
58927 id.nn.benchmark-13155 (13131) [006] d..2 24573.647244: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
58928<...>-24151 ( 24151) [006] d..2 24573.647265: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
58929    RenderThread-24437 (24151) [007] .... 24573.647268: binder_transaction: transaction=1670032 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
58930    RenderThread-24437 (24151) [007] d..4 24573.647270: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
58931    RenderThread-24437 (24151) [007] d..5 24573.647274: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
58932    RenderThread-24437 (24151) [007] d..2 24573.647278: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
58933  Binder:23896_5-25989 (23896) [007] .... 24573.647280: binder_transaction_received: transaction=1670032
58934  Binder:23896_5-25989 (23896) [007] .... 24573.647309: binder_transaction: transaction=1670033 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
58935  Binder:23896_5-25989 (23896) [007] d..2 24573.647314: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
58936  Binder:23896_5-25989 (23896) [007] d..3 24573.647318: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
58937  Binder:23896_5-25989 (23896) [007] d..2 24573.647327: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
58938    RenderThread-24437 (24151) [007] .... 24573.647328: binder_transaction_received: transaction=1670033
58939 id.nn.benchmark-13158 (13131) [005] d.s2 24573.647554: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
58940 id.nn.benchmark-13155 (13131) [006] d.s1 24573.647557: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=006
58941 id.nn.benchmark-13158 (13131) [005] d.s3 24573.647567: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
58942 id.nn.benchmark-13155 (13131) [006] dns2 24573.647567: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=006
58943 id.nn.benchmark-13155 (13131) [006] d..2 24573.647570: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
58944           <...>-13157 (-----) [004] d..2 24573.647572: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
58945     rcu_preempt-7     (    7) [006] d..2 24573.647577: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
58946  kworker/u16:15-18488 (18488) [004] d..2 24573.647668: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
58947    RenderThread-24437 (24151) [007] d..2 24573.647964: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
58948 id.nn.benchmark-13159 (13131) [007] d.h1 24573.648063: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
58949 id.nn.benchmark-13159 (13131) [007] d.h2 24573.648070: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
58950 id.nn.benchmark-13159 (13131) [007] dnh2 24573.648071: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
58951 id.nn.benchmark-13159 (13131) [007] d..2 24573.648075: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
58952           <...>-13318 (-----) [002] ...1 24573.648084: tracing_mark_write: E|13131
58953           <...>-13318 (-----) [002] ...1 24573.648087: tracing_mark_write: E|13131
58954           <...>-13318 (-----) [002] ...1 24573.648096: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
58955           <...>-13318 (-----) [002] ...1 24573.648099: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
58956    RenderThread-24437 (24151) [007] .... 24573.648155: binder_transaction: transaction=1670034 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
58957    RenderThread-24437 (24151) [007] d..4 24573.648159: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
58958    RenderThread-24437 (24151) [007] d..5 24573.648164: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
58959    RenderThread-24437 (24151) [007] d..2 24573.648168: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
58960  Binder:23896_5-25989 (23896) [007] .... 24573.648169: binder_transaction_received: transaction=1670034
58961 id.nn.benchmark-13156 (13131) [000] d.h2 24573.648194: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
58962 id.nn.benchmark-13156 (13131) [000] d.h3 24573.648207: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
58963           <...>-13318 (-----) [002] d..2 24573.648217: sched_switch: prev_comm=id.nn.benchmark prev_pid=13318 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
58964  Binder:23896_5-25989 (23896) [007] .... 24573.648229: binder_transaction: transaction=1670035 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
58965  Binder:23896_5-25989 (23896) [007] d..2 24573.648231: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
58966  Binder:23896_5-25989 (23896) [007] d..3 24573.648236: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
58967  Binder:23896_5-25989 (23896) [007] d..2 24573.648244: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
58968    RenderThread-24437 (24151) [007] .... 24573.648245: binder_transaction_received: transaction=1670035
58969 kgsl_worker_thr-246   (  246) [002] d..2 24573.648252: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
58970    RenderThread-24437 (24151) [007] d..2 24573.648267: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
58971           <...>-13157 (-----) [004] dnh1 24573.648278: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
58972           <...>-13157 (-----) [004] d..2 24573.648280: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
58973 kgsl_worker_thr-246   (  246) [002] d..2 24573.648287: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13318 next_prio=110
58974  kworker/u16:15-18488 (18488) [004] d..2 24573.648297: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
58975           <...>-13318 (-----) [002] ...1 24573.648299: tracing_mark_write: E|13131
58976           <...>-13318 (-----) [002] ...1 24573.648303: tracing_mark_write: E|13131
58977           <...>-13318 (-----) [002] d..2 24573.648348: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
58978           <...>-13318 (-----) [002] d..3 24573.648355: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
58979           <...>-13318 (-----) [002] ...1 24573.648377: tracing_mark_write: E|13131
58980           <...>-13318 (-----) [002] d..1 24573.648382: sched_waking: comm=id.nn.benchmark pid=13317 prio=110 target_cpu=007
58981 id.nn.benchmark-13159 (13131) [007] dnh1 24573.648398: sched_wakeup: comm=id.nn.benchmark pid=13317 prio=110 target_cpu=007
58982 id.nn.benchmark-13159 (13131) [007] d..2 24573.648401: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13317 next_prio=110
58983           <...>-13318 (-----) [002] ...1 24573.648408: tracing_mark_write: E|13131
58984           <...>-13317 (-----) [007] d..2 24573.648409: sched_switch: prev_comm=id.nn.benchmark prev_pid=13317 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
58985           <...>-13318 (-----) [002] d..1 24573.648617: sched_waking: comm=id.nn.benchmark pid=13317 prio=110 target_cpu=007
58986 id.nn.benchmark-13159 (13131) [007] dnh1 24573.648631: sched_wakeup: comm=id.nn.benchmark pid=13317 prio=110 target_cpu=007
58987 id.nn.benchmark-13159 (13131) [007] d..2 24573.648633: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13317 next_prio=110
58988           <...>-13318 (-----) [002] d..2 24573.648680: sched_switch: prev_comm=id.nn.benchmark prev_pid=13318 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
58989           <...>-13317 (-----) [007] d..1 24573.648695: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
58990           <...>-13317 (-----) [007] dn.2 24573.648701: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
58991           <...>-13317 (-----) [007] d..2 24573.648704: sched_switch: prev_comm=id.nn.benchmark prev_pid=13317 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
58992           <...>-13131 (-----) [007] d..2 24573.648710: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13317 next_prio=110
58993           <...>-13317 (-----) [007] d..1 24573.648739: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
58994           <...>-13317 (-----) [007] dn.2 24573.648742: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
58995           <...>-13317 (-----) [007] d..2 24573.648744: sched_switch: prev_comm=id.nn.benchmark prev_pid=13317 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
58996           <...>-13131 (-----) [007] ...1 24573.648754: tracing_mark_write: E|13131
58997           <...>-13131 (-----) [007] ...1 24573.648756: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
58998           <...>-13131 (-----) [007] ...1 24573.648759: tracing_mark_write: E|13131
58999           <...>-13131 (-----) [007] ...1 24573.648760: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
59000           <...>-13131 (-----) [007] ...1 24573.648762: tracing_mark_write: E|13131
59001     logd.writer-563   (  555) [002] d..2 24573.648786: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13317 next_prio=110
59002           <...>-13131 (-----) [007] ...1 24573.648824: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
59003           <...>-13317 (-----) [002] d..2 24573.648836: sched_switch: prev_comm=id.nn.benchmark prev_pid=13317 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
59004           <...>-13131 (-----) [007] d..2 24573.648838: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
59005 id.nn.benchmark-13159 (13131) [002] d.h3 24573.648869: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
59006           <...>-13131 (-----) [007] ...1 24573.648871: tracing_mark_write: E|13131
59007 id.nn.benchmark-13159 (13131) [002] d.h4 24573.648872: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
59008           <...>-13131 (-----) [007] ...1 24573.648873: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
59009           <...>-13131 (-----) [007] ...1 24573.648876: tracing_mark_write: E|13131
59010           <...>-13131 (-----) [007] ...1 24573.648878: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
59011           <...>-13131 (-----) [007] ...1 24573.648880: tracing_mark_write: E|13131
59012 id.nn.benchmark-13159 (13131) [002] d.h4 24573.648880: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
59013           <...>-13131 (-----) [007] dnh1 24573.648884: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
59014 id.nn.benchmark-13159 (13131) [002] dnh5 24573.648886: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
59015           <...>-13131 (-----) [007] d..2 24573.648888: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
59016         sugov:4-560   (  560) [007] d..2 24573.648893: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
59017 id.nn.benchmark-13159 (13131) [002] d..2 24573.648895: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
59018           <...>-13131 (-----) [007] ...1 24573.648895: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
59019         sugov:0-559   (  559) [002] d..2 24573.648902: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
59020           <...>-13131 (-----) [007] ...1 24573.648950: tracing_mark_write: E|13131
59021           <...>-13131 (-----) [007] ...1 24573.648952: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
59022           <...>-13131 (-----) [007] d..2 24573.648956: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13319 next_prio=110
59023           <...>-13319 (-----) [007] d..2 24573.649104: sched_switch: prev_comm=id.nn.benchmark prev_pid=13319 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13320 next_prio=110
59024           <...>-13320 (-----) [007] ...1 24573.649114: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
59025           <...>-13320 (-----) [007] ...1 24573.649116: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
59026           <...>-13320 (-----) [007] ...1 24573.649168: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59027           <...>-13320 (-----) [007] ...1 24573.649170: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59028 id.nn.benchmark-13155 (13131) [006] d..2 24573.649732: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
59029 id.nn.benchmark-13158 (13131) [005] d..3 24573.649738: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
59030 id.nn.benchmark-13158 (13131) [005] d..2 24573.649747: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=D|K ==> next_comm=swapper/5 next_pid=0 next_prio=120
59031 id.nn.benchmark-13156 (13131) [000] dnh1 24573.649749: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
59032 id.nn.benchmark-13155 (13131) [006] d..3 24573.649752: sched_blocked_reason: pid=13158 iowait=1 caller=__lock_page_or_retry+0x26c/0x2c4
59033 id.nn.benchmark-13156 (13131) [000] d..2 24573.649755: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
59034 id.nn.benchmark-13155 (13131) [006] d..3 24573.649756: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
59035          <idle>-0     (-----) [005] d..2 24573.649764: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
59036     migration/0-13    (   13) [000] d.h3 24573.649803: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
59037     migration/0-13    (   13) [000] d.h3 24573.649811: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
59038           <...>-13320 (-----) [007] dnh1 24573.649815: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
59039           <...>-13320 (-----) [007] d..2 24573.649820: sched_switch: prev_comm=id.nn.benchmark prev_pid=13320 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
59040     migration/0-13    (   13) [000] d.h4 24573.649821: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
59041         sugov:4-560   (  560) [007] d..2 24573.649824: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13320 next_prio=110
59042     migration/0-13    (   13) [000] d..2 24573.649828: 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
59043         sugov:0-559   (  559) [000] d..2 24573.649849: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
59044     logd.writer-563   (  555) [000] d..2 24573.650147: 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
59045          <idle>-0     (-----) [000] d..1 24573.650171: cpu_idle: state=0 cpu_id=0
59046 id.nn.benchmark-13159 (13131) [002] d.h1 24573.650750: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
59047 id.nn.benchmark-13159 (13131) [002] d.h2 24573.650766: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
59048          <idle>-0     (-----) [000] .n.1 24573.650775: cpu_idle: state=4294967295 cpu_id=0
59049          <idle>-0     (-----) [000] d..2 24573.650782: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
59050        DispSync-23904 (23896) [000] d..1 24573.650797: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
59051        DispSync-23904 (23896) [000] d..2 24573.650814: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
59052           <...>-13154 (-----) [001] d..2 24573.650824: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
59053        DispSync-23904 (23896) [000] d..2 24573.650832: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59054          <idle>-0     (-----) [000] d..1 24573.650839: cpu_idle: state=0 cpu_id=0
59055   sfEventThread-23906 (23896) [001] d..3 24573.650856: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
59056   sfEventThread-23906 (23896) [001] d..4 24573.650870: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
59057          <idle>-0     (-----) [000] .n.1 24573.650876: cpu_idle: state=4294967295 cpu_id=0
59058          <idle>-0     (-----) [000] d..2 24573.650886: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
59059           <...>-13157 (-----) [004] d.s2 24573.650891: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
59060 id.nn.benchmark-13159 (13131) [002] d.h2 24573.650894: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
59061   sfEventThread-23906 (23896) [001] d.s2 24573.650897: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=006
59062 id.nn.benchmark-13159 (13131) [002] dnh3 24573.650900: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
59063           <...>-13157 (-----) [004] dns3 24573.650901: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
59064           <...>-13157 (-----) [004] d..2 24573.650904: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
59065 id.nn.benchmark-13159 (13131) [002] d..2 24573.650910: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
59066 id.nn.benchmark-13155 (13131) [006] dnh1 24573.650924: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=006
59067 id.nn.benchmark-13155 (13131) [006] d..2 24573.650927: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
59068   sfEventThread-23906 (23896) [001] d..2 24573.650928: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
59069     rcu_preempt-7     (    7) [006] d..2 24573.650930: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
59070     migration/2-25    (   25) [002] d.h3 24573.650957: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
59071     rcu_preempt-7     (    7) [006] d..2 24573.650963: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
59072     migration/2-25    (   25) [002] d.h3 24573.650965: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
59073           <...>-13320 (-----) [007] dnh1 24573.650967: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
59074           <...>-13320 (-----) [007] d..2 24573.650969: sched_switch: prev_comm=id.nn.benchmark prev_pid=13320 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
59075         sugov:4-560   (  560) [007] d..2 24573.650973: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
59076     migration/2-25    (   25) [002] d.h4 24573.650975: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
59077     migration/2-25    (   25) [002] d.h2 24573.650980: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
59078     migration/2-25    (   25) [002] d..2 24573.650990: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
59079         sugov:0-559   (  559) [002] d..2 24573.650999: 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
59080         rcuop/0-10    (   10) [002] d..2 24573.651033: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
59081  kworker/u16:15-18488 (18488) [004] d..2 24573.651156: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
59082  surfaceflinger-23896 (23896) [000] d..1 24573.651168: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
59083  surfaceflinger-23896 (23896) [000] d..2 24573.651179: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
59084           <...>-13154 (-----) [001] d..2 24573.651187: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
59085   sfEventThread-23906 (23896) [001] d..2 24573.651203: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
59086  surfaceflinger-23896 (23896) [000] ...1 24573.651312: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
59087  surfaceflinger-23896 (23896) [000] ...1 24573.651316: tracing_mark_write: E|23896
59088  surfaceflinger-23896 (23896) [000] .... 24573.651365: binder_transaction: transaction=1670036 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
59089  surfaceflinger-23896 (23896) [000] ...2 24573.651387: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
59090  surfaceflinger-23896 (23896) [000] d..4 24573.651394: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=006
59091 id.nn.benchmark-13159 (13131) [007] dnh1 24573.651414: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
59092 id.nn.benchmark-13159 (13131) [007] d..2 24573.651416: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
59093  HwBinder:598_3-633   (  598) [007] .... 24573.651421: binder_transaction_received: transaction=1670036
59094  surfaceflinger-23896 (23896) [000] d..2 24573.651442: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13320 next_prio=110
59095  HwBinder:598_3-633   (  598) [007] ...1 24573.651447: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
59096           <...>-13320 (-----) [000] d.h4 24573.651472: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
59097           <...>-13320 (-----) [000] d.h4 24573.651483: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
59098           <...>-13157 (-----) [004] dnh1 24573.651487: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
59099           <...>-13157 (-----) [004] d..2 24573.651490: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
59100           <...>-13320 (-----) [000] dnh5 24573.651493: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
59101         sugov:4-560   (  560) [004] d..2 24573.651494: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
59102           <...>-13320 (-----) [000] d..2 24573.651499: sched_switch: prev_comm=id.nn.benchmark prev_pid=13320 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
59103  HwBinder:598_3-633   (  598) [007] ...1 24573.651499: tracing_mark_write: B|598|HWCSession::PresentDisplay::
59104         sugov:0-559   (  559) [000] d..2 24573.651505: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13320 next_prio=110
59105           <...>-13320 (-----) [000] ...1 24573.651518: tracing_mark_write: E|13131
59106           <...>-13320 (-----) [000] ...1 24573.651523: tracing_mark_write: E|13131
59107           <...>-13320 (-----) [000] ...1 24573.651536: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59108           <...>-13320 (-----) [000] ...1 24573.651541: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59109  HwBinder:598_3-633   (  598) [007] ...1 24573.651566: tracing_mark_write: B|598|HWDeviceDRM::Commit::
59110  HwBinder:598_3-633   (  598) [007] ...1 24573.651570: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
59111  HwBinder:598_3-633   (  598) [007] d..2 24573.651775: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
59112           <...>-13320 (-----) [000] dnh1 24573.651792: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
59113           <...>-13320 (-----) [000] d..2 24573.651799: sched_switch: prev_comm=id.nn.benchmark prev_pid=13320 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
59114  HwBinder:598_3-633   (  598) [007] ...1 24573.651813: tracing_mark_write: E|598
59115  HwBinder:598_3-633   (  598) [007] ...1 24573.651814: tracing_mark_write: E|598
59116  HwBinder:598_3-633   (  598) [007] ...1 24573.651836: tracing_mark_write: E|598
59117  HwBinder:598_3-633   (  598) [007] ...1 24573.651857: tracing_mark_write: E|598
59118  HwBinder:598_3-633   (  598) [007] .... 24573.651863: binder_transaction: transaction=1670037 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
59119  HwBinder:598_3-633   (  598) [007] d..2 24573.651869: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
59120  HwBinder:598_3-633   (  598) [007] .... 24573.651878: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
59121           <...>-13154 (-----) [001] dnh1 24573.651883: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
59122           <...>-13154 (-----) [001] d..2 24573.651888: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
59123  surfaceflinger-23896 (23896) [001] .... 24573.651892: binder_transaction_received: transaction=1670037
59124  HwBinder:598_3-633   (  598) [007] d..2 24573.651900: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
59125  surfaceflinger-23896 (23896) [001] d..2 24573.652144: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
59126 crtc_commit:111-253   (  253) [000] d..2 24573.652410: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13320 next_prio=110
59127           <...>-13320 (-----) [000] ...1 24573.652891: tracing_mark_write: E|13131
59128           <...>-13320 (-----) [000] ...1 24573.652895: tracing_mark_write: E|13131
59129           <...>-13320 (-----) [000] ...1 24573.652916: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59130           <...>-13320 (-----) [000] ...1 24573.652920: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59131           <...>-13320 (-----) [000] ...1 24573.653252: tracing_mark_write: E|13131
59132           <...>-13320 (-----) [000] ...1 24573.653255: tracing_mark_write: E|13131
59133           <...>-13320 (-----) [000] ...1 24573.653266: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59134           <...>-13320 (-----) [000] ...1 24573.653270: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59135           <...>-13320 (-----) [000] ...1 24573.653510: tracing_mark_write: E|13131
59136           <...>-13320 (-----) [000] ...1 24573.653513: tracing_mark_write: E|13131
59137           <...>-13320 (-----) [000] ...1 24573.653523: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59138           <...>-13320 (-----) [000] ...1 24573.653527: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59139           <...>-13320 (-----) [000] ...1 24573.653914: tracing_mark_write: E|13131
59140           <...>-13320 (-----) [000] ...1 24573.653918: tracing_mark_write: E|13131
59141           <...>-13320 (-----) [000] ...1 24573.653928: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59142           <...>-13320 (-----) [000] ...1 24573.653932: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59143           <...>-13320 (-----) [000] ...1 24573.654347: tracing_mark_write: E|13131
59144           <...>-13320 (-----) [000] ...1 24573.654351: tracing_mark_write: E|13131
59145           <...>-13320 (-----) [000] ...1 24573.654368: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59146           <...>-13320 (-----) [000] ...1 24573.654372: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59147 id.nn.benchmark-13156 (13131) [002] d..2 24573.654428: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
59148 id.nn.benchmark-13155 (13131) [006] d..3 24573.654433: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
59149 id.nn.benchmark-13155 (13131) [006] d..2 24573.654440: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=D|K ==> next_comm=swapper/6 next_pid=0 next_prio=120
59150           <...>-13154 (-----) [001] dnh1 24573.654444: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
59151          <idle>-0     (-----) [006] d..1 24573.654449: cpu_idle: state=0 cpu_id=6
59152           <...>-13154 (-----) [001] d..2 24573.654450: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
59153          <idle>-0     (-----) [006] d.h2 24573.654457: sched_blocked_reason: pid=13155 iowait=1 caller=__lock_page_or_retry+0x26c/0x2c4
59154          <idle>-0     (-----) [006] dnh2 24573.654458: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
59155          <idle>-0     (-----) [006] .n.1 24573.654470: cpu_idle: state=4294967295 cpu_id=6
59156          <idle>-0     (-----) [006] d..2 24573.654474: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
59157     migration/1-17    (   17) [001] d.h3 24573.654500: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
59158     migration/1-17    (   17) [001] d.h3 24573.654513: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
59159 id.nn.benchmark-13159 (13131) [007] dnh1 24573.654517: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
59160 id.nn.benchmark-13159 (13131) [007] d..2 24573.654520: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
59161     migration/1-17    (   17) [001] d.h4 24573.654523: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
59162         sugov:4-560   (  560) [007] d..2 24573.654525: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
59163     migration/1-17    (   17) [001] d..2 24573.654529: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
59164         sugov:0-559   (  559) [001] d..2 24573.654555: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
59165           <...>-13320 (-----) [000] ...1 24573.654701: tracing_mark_write: E|13131
59166           <...>-13320 (-----) [000] ...1 24573.654705: tracing_mark_write: E|13131
59167           <...>-13320 (-----) [000] ...1 24573.654717: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59168           <...>-13320 (-----) [000] ...1 24573.654721: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59169           <...>-13320 (-----) [000] ...1 24573.654793: tracing_mark_write: E|13131
59170           <...>-13320 (-----) [000] ...1 24573.654796: tracing_mark_write: E|13131
59171           <...>-13320 (-----) [000] ...1 24573.654807: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
59172           <...>-13320 (-----) [000] ...1 24573.654811: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
59173           <...>-13320 (-----) [000] ...1 24573.655099: tracing_mark_write: E|13131
59174           <...>-13320 (-----) [000] ...1 24573.655103: tracing_mark_write: E|13131
59175           <...>-13320 (-----) [000] ...1 24573.655112: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
59176           <...>-13320 (-----) [000] ...1 24573.655115: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
59177           <...>-13320 (-----) [000] ...1 24573.655168: tracing_mark_write: E|13131
59178           <...>-13320 (-----) [000] ...1 24573.655171: tracing_mark_write: E|13131
59179           <...>-13320 (-----) [000] ...1 24573.655180: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
59180           <...>-13320 (-----) [000] ...1 24573.655183: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
59181           <...>-13320 (-----) [000] ...1 24573.655200: tracing_mark_write: E|13131
59182           <...>-13320 (-----) [000] ...1 24573.655203: tracing_mark_write: E|13131
59183           <...>-13320 (-----) [000] ...1 24573.655212: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
59184           <...>-13320 (-----) [000] ...1 24573.655215: tracing_mark_write: E|13131
59185           <...>-13320 (-----) [000] ...1 24573.655223: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
59186           <...>-13320 (-----) [000] ...1 24573.655228: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
59187           <...>-13320 (-----) [000] ...1 24573.656079: tracing_mark_write: E|13131
59188           <...>-13320 (-----) [000] ...1 24573.656082: tracing_mark_write: E|13131
59189           <...>-13320 (-----) [000] ...1 24573.656091: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59190           <...>-13320 (-----) [000] ...1 24573.656094: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59191           <...>-13320 (-----) [000] ...1 24573.656177: tracing_mark_write: E|13131
59192           <...>-13320 (-----) [000] ...1 24573.656180: tracing_mark_write: E|13131
59193           <...>-13320 (-----) [000] d..2 24573.656224: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
59194           <...>-13320 (-----) [000] d..3 24573.656233: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
59195           <...>-13320 (-----) [000] ...1 24573.656252: tracing_mark_write: E|13131
59196           <...>-13320 (-----) [000] d..1 24573.656257: sched_waking: comm=id.nn.benchmark pid=13319 prio=110 target_cpu=007
59197 id.nn.benchmark-13159 (13131) [007] dnh1 24573.656272: sched_wakeup: comm=id.nn.benchmark pid=13319 prio=110 target_cpu=007
59198 id.nn.benchmark-13159 (13131) [007] d..2 24573.656275: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13319 next_prio=110
59199           <...>-13320 (-----) [000] ...1 24573.656282: tracing_mark_write: E|13131
59200           <...>-13319 (-----) [007] d..2 24573.656283: sched_switch: prev_comm=id.nn.benchmark prev_pid=13319 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
59201           <...>-13320 (-----) [000] d..1 24573.656479: sched_waking: comm=id.nn.benchmark pid=13319 prio=110 target_cpu=007
59202 id.nn.benchmark-13159 (13131) [007] dnh1 24573.656493: sched_wakeup: comm=id.nn.benchmark pid=13319 prio=110 target_cpu=007
59203 id.nn.benchmark-13159 (13131) [007] d..2 24573.656495: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13319 next_prio=110
59204           <...>-13320 (-----) [000] d..2 24573.656540: sched_switch: prev_comm=id.nn.benchmark prev_pid=13320 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
59205           <...>-13319 (-----) [007] d..1 24573.656554: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
59206           <...>-13319 (-----) [007] dn.2 24573.656560: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
59207           <...>-13319 (-----) [007] d..2 24573.656562: sched_switch: prev_comm=id.nn.benchmark prev_pid=13319 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
59208           <...>-13131 (-----) [007] d..2 24573.656568: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13319 next_prio=110
59209           <...>-13319 (-----) [007] d..1 24573.656595: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
59210           <...>-13319 (-----) [007] dn.2 24573.656599: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
59211           <...>-13319 (-----) [007] d..2 24573.656601: sched_switch: prev_comm=id.nn.benchmark prev_pid=13319 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
59212           <...>-13131 (-----) [007] ...1 24573.656610: tracing_mark_write: E|13131
59213           <...>-13131 (-----) [007] ...1 24573.656613: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
59214           <...>-13131 (-----) [007] ...1 24573.656616: tracing_mark_write: E|13131
59215           <...>-13131 (-----) [007] ...1 24573.656618: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
59216           <...>-13131 (-----) [007] ...1 24573.656620: tracing_mark_write: E|13131
59217     logd.writer-563   (  555) [000] d..2 24573.656645: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13319 next_prio=110
59218           <...>-13131 (-----) [007] ...1 24573.656682: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
59219           <...>-13131 (-----) [007] d..2 24573.656694: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
59220           <...>-13319 (-----) [000] d..2 24573.656697: sched_switch: prev_comm=id.nn.benchmark prev_pid=13319 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
59221 id.nn.benchmark-13159 (13131) [000] d.h3 24573.656730: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
59222           <...>-13131 (-----) [007] ...1 24573.656732: tracing_mark_write: E|13131
59223           <...>-13131 (-----) [007] ...1 24573.656733: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
59224 id.nn.benchmark-13159 (13131) [000] d.h4 24573.656733: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
59225           <...>-13131 (-----) [007] ...1 24573.656735: tracing_mark_write: E|13131
59226           <...>-13131 (-----) [007] ...1 24573.656737: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
59227           <...>-13131 (-----) [007] ...1 24573.656739: tracing_mark_write: E|13131
59228           <...>-13131 (-----) [007] ...1 24573.656740: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
59229 id.nn.benchmark-13159 (13131) [000] d.h4 24573.656741: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
59230           <...>-13131 (-----) [007] dnh1 24573.656745: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
59231           <...>-13131 (-----) [007] d..2 24573.656749: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
59232 id.nn.benchmark-13159 (13131) [000] d.h5 24573.656749: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
59233         sugov:4-560   (  560) [007] d..2 24573.656753: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
59234           <...>-13154 (-----) [001] d..2 24573.656759: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
59235         sugov:0-559   (  559) [001] d..2 24573.656767: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
59236           <...>-13131 (-----) [007] ...1 24573.656807: tracing_mark_write: E|13131
59237           <...>-13131 (-----) [007] ...1 24573.656809: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
59238           <...>-13131 (-----) [007] d..2 24573.656813: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13321 next_prio=110
59239           <...>-13321 (-----) [007] d..2 24573.656953: sched_switch: prev_comm=id.nn.benchmark prev_pid=13321 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13322 next_prio=110
59240           <...>-13322 (-----) [007] ...1 24573.656963: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
59241           <...>-13322 (-----) [007] ...1 24573.656965: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
59242           <...>-13322 (-----) [007] ...1 24573.657014: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59243           <...>-13322 (-----) [007] ...1 24573.657015: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59244           <...>-13157 (-----) [004] d.s2 24573.657553: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
59245 id.nn.benchmark-13155 (13131) [006] d.s1 24573.657554: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=006
59246 id.nn.benchmark-13160 (13131) [003] d.h2 24573.657562: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
59247           <...>-13157 (-----) [004] d.s3 24573.657567: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
59248 id.nn.benchmark-13155 (13131) [006] d.s2 24573.657584: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
59249           <...>-13322 (-----) [007] d..2 24573.657588: sched_switch: prev_comm=id.nn.benchmark prev_pid=13322 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
59250 id.nn.benchmark-13160 (13131) [003] dnh3 24573.657590: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
59251 id.nn.benchmark-13158 (13131) [005] d.H2 24573.657595: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
59252 id.nn.benchmark-13160 (13131) [003] d..2 24573.657598: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
59253 id.nn.benchmark-13158 (13131) [005] d.H3 24573.657601: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
59254 id.nn.benchmark-13158 (13131) [005] d.H2 24573.657602: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
59255  kworker/u16:15-18488 (18488) [007] d..2 24573.657604: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
59256           <...>-13154 (-----) [001] dnh1 24573.657612: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
59257         sugov:4-560   (  560) [007] d..2 24573.657616: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
59258           <...>-13154 (-----) [001] d..2 24573.657618: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
59259           <...>-13157 (-----) [004] d..2 24573.657619: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
59260     rcu_preempt-7     (    7) [007] d..2 24573.657619: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
59261         sugov:0-559   (  559) [001] d..2 24573.657625: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
59262 id.nn.benchmark-13155 (13131) [006] d..3 24573.657645: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
59263     rcu_preempt-7     (    7) [007] d..3 24573.657649: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
59264     rcu_preempt-7     (    7) [007] d..2 24573.657650: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=005
59265 id.nn.benchmark-13155 (13131) [006] d..2 24573.657653: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=D|K ==> next_comm=rcuop/6 next_pid=61 next_prio=120
59266 id.nn.benchmark-13159 (13131) [000] dnh1 24573.657657: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
59267           <...>-13157 (-----) [004] d..3 24573.657658: sched_blocked_reason: pid=13155 iowait=1 caller=__lock_page_or_retry+0x26c/0x2c4
59268           <...>-13157 (-----) [004] d..3 24573.657659: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
59269     rcu_preempt-7     (    7) [007] d..3 24573.657662: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=005
59270         rcuop/6-61    (   61) [006] d..2 24573.657664: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=000
59271     rcu_preempt-7     (    7) [007] d..2 24573.657667: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
59272 id.nn.benchmark-13158 (13131) [005] d..2 24573.657668: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
59273<...>-33 ( 33) [003] d..2 24573.657670: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
59274 id.nn.benchmark-13159 (13131) [000] d..2 24573.657671: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
59275         rcuop/6-61    (   61) [006] d..2 24573.657682: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
59276     logd.writer-563   (  555) [003] dnh1 24573.657687: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=003
59277     logd.writer-563   (  555) [003] d..2 24573.657692: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=rcuop/7 next_pid=69 next_prio=120
59278         rcuop/2-29    (   29) [005] d..2 24573.657693: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
59279         rcuop/7-69    (   69) [003] d..2 24573.657719: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
59280     migration/0-13    (   13) [000] d..2 24573.657739: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
59281  kworker/u16:15-18488 (18488) [007] .... 24573.657773: clk_set_rate: l3_cluster0_vote_clk 1305600000
59282  kworker/u16:15-18488 (18488) [007] d..2 24573.657780: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59283     logd.writer-563   (  555) [003] d..2 24573.658032: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
59284 id.nn.benchmark-13159 (13131) [000] d..2 24573.658040: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13322 next_prio=110
59285          <idle>-0     (-----) [003] d..1 24573.658048: cpu_idle: state=0 cpu_id=3
59286           <...>-13322 (-----) [000] d..1 24573.658063: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=000
59287           <...>-13322 (-----) [000] d..2 24573.658071: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=000
59288           <...>-13322 (-----) [000] d.h4 24573.658790: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
59289           <...>-13322 (-----) [000] d.h5 24573.658809: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
59290           <...>-13322 (-----) [000] d.h4 24573.658813: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
59291          <idle>-0     (-----) [003] .n.1 24573.658815: cpu_idle: state=4294967295 cpu_id=3
59292          <idle>-0     (-----) [003] d..2 24573.658823: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
59293 id.nn.benchmark-13160 (13131) [007] dnh1 24573.658831: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
59294 id.nn.benchmark-13160 (13131) [007] d..2 24573.658834: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
59295           <...>-13322 (-----) [000] d.h2 24573.658863: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
59296           <...>-13322 (-----) [000] d.h2 24573.658873: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
59297           <...>-13157 (-----) [004] dnh1 24573.658877: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
59298  crtc_event:111-254   (  254) [003] d..2 24573.658877: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
59299           <...>-13157 (-----) [004] d..2 24573.658880: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
59300           <...>-13322 (-----) [000] dnh3 24573.658882: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
59301         sugov:4-560   (  560) [004] d..2 24573.658884: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
59302           <...>-13322 (-----) [000] d..2 24573.658888: sched_switch: prev_comm=id.nn.benchmark prev_pid=13322 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
59303         sugov:0-559   (  559) [000] d..2 24573.658896: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13322 next_prio=110
59304           <...>-13322 (-----) [000] ...1 24573.658906: tracing_mark_write: E|13131
59305           <...>-13322 (-----) [000] ...1 24573.658910: tracing_mark_write: E|13131
59306           <...>-13322 (-----) [000] ...1 24573.658922: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59307           <...>-13322 (-----) [000] ...1 24573.658926: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59308 crtc_commit:111-253   (  253) [007] d..2 24573.658929: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59309           <...>-13322 (-----) [000] ...1 24573.659629: tracing_mark_write: E|13131
59310           <...>-13322 (-----) [000] ...1 24573.659633: tracing_mark_write: E|13131
59311           <...>-13322 (-----) [000] ...1 24573.659650: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59312           <...>-13322 (-----) [000] ...1 24573.659654: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59313           <...>-13322 (-----) [000] ...1 24573.659983: tracing_mark_write: E|13131
59314           <...>-13322 (-----) [000] ...1 24573.659987: tracing_mark_write: E|13131
59315           <...>-13322 (-----) [000] ...1 24573.659998: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59316           <...>-13322 (-----) [000] ...1 24573.660002: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59317           <...>-13322 (-----) [000] ...1 24573.660232: tracing_mark_write: E|13131
59318           <...>-13322 (-----) [000] ...1 24573.660236: tracing_mark_write: E|13131
59319           <...>-13322 (-----) [000] ...1 24573.660246: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59320           <...>-13322 (-----) [000] ...1 24573.660250: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59321           <...>-13322 (-----) [000] ...1 24573.660637: tracing_mark_write: E|13131
59322           <...>-13322 (-----) [000] ...1 24573.660641: tracing_mark_write: E|13131
59323           <...>-13322 (-----) [000] ...1 24573.660651: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59324           <...>-13322 (-----) [000] ...1 24573.660655: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59325           <...>-13157 (-----) [004] d.s2 24573.660890: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
59326 id.nn.benchmark-13160 (13131) [007] d.s2 24573.660893: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
59327           <...>-13157 (-----) [004] d.s3 24573.660902: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
59328           <...>-13322 (-----) [000] dnh1 24573.660909: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
59329 id.nn.benchmark-13160 (13131) [007] d..2 24573.660910: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
59330           <...>-13322 (-----) [000] d..2 24573.660915: sched_switch: prev_comm=id.nn.benchmark prev_pid=13322 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
59331  crtc_event:111-254   (  254) [000] d..2 24573.660929: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13322 next_prio=110
59332  kworker/u16:15-18488 (18488) [007] d..2 24573.661129: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59333           <...>-13322 (-----) [000] d.h4 24573.661137: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
59334           <...>-13322 (-----) [000] dnh5 24573.661152: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
59335           <...>-13322 (-----) [000] dnh2 24573.661186: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
59336           <...>-13322 (-----) [000] dnh2 24573.661197: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
59337 id.nn.benchmark-13160 (13131) [007] dnh1 24573.661200: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
59338 id.nn.benchmark-13160 (13131) [007] d..2 24573.661203: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
59339         sugov:4-560   (  560) [007] d..2 24573.661207: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59340           <...>-13322 (-----) [000] dnh3 24573.661209: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
59341           <...>-13322 (-----) [000] d..2 24573.661215: sched_switch: prev_comm=id.nn.benchmark prev_pid=13322 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
59342           <...>-13154 (-----) [001] d..2 24573.661218: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
59343         sugov:0-559   (  559) [001] d..2 24573.661226: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
59344 crtc_commit:111-253   (  253) [000] d..2 24573.661266: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13322 next_prio=110
59345           <...>-13322 (-----) [000] ...1 24573.661306: tracing_mark_write: E|13131
59346           <...>-13322 (-----) [000] ...1 24573.661310: tracing_mark_write: E|13131
59347           <...>-13322 (-----) [000] ...1 24573.661327: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59348           <...>-13322 (-----) [000] ...1 24573.661332: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59349           <...>-13322 (-----) [000] d.h4 24573.661430: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
59350           <...>-13322 (-----) [000] dnh5 24573.661438: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
59351           <...>-13322 (-----) [000] d..2 24573.661452: sched_switch: prev_comm=id.nn.benchmark prev_pid=13322 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
59352  crtc_event:111-254   (  254) [000] d..2 24573.661462: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13322 next_prio=110
59353           <...>-13322 (-----) [000] ...1 24573.661615: tracing_mark_write: E|13131
59354           <...>-13322 (-----) [000] ...1 24573.661619: tracing_mark_write: E|13131
59355           <...>-13322 (-----) [000] ...1 24573.661632: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59356           <...>-13322 (-----) [000] ...1 24573.661636: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59357           <...>-13322 (-----) [000] ...1 24573.661704: tracing_mark_write: E|13131
59358           <...>-13322 (-----) [000] ...1 24573.661708: tracing_mark_write: E|13131
59359           <...>-13322 (-----) [000] ...1 24573.661717: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
59360           <...>-13322 (-----) [000] ...1 24573.661722: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
59361           <...>-13322 (-----) [000] ...1 24573.661974: tracing_mark_write: E|13131
59362           <...>-13322 (-----) [000] ...1 24573.661977: tracing_mark_write: E|13131
59363           <...>-13322 (-----) [000] ...1 24573.661986: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
59364           <...>-13322 (-----) [000] ...1 24573.661990: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
59365           <...>-13322 (-----) [000] ...1 24573.662034: tracing_mark_write: E|13131
59366           <...>-13322 (-----) [000] ...1 24573.662037: tracing_mark_write: E|13131
59367           <...>-13322 (-----) [000] ...1 24573.662047: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
59368           <...>-13322 (-----) [000] ...1 24573.662050: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
59369           <...>-13322 (-----) [000] ...1 24573.662065: tracing_mark_write: E|13131
59370           <...>-13322 (-----) [000] ...1 24573.662067: tracing_mark_write: E|13131
59371           <...>-13322 (-----) [000] ...1 24573.662076: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
59372           <...>-13322 (-----) [000] ...1 24573.662079: tracing_mark_write: E|13131
59373           <...>-13322 (-----) [000] ...1 24573.662088: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
59374           <...>-13322 (-----) [000] ...1 24573.662092: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
59375           <...>-13322 (-----) [000] ...1 24573.662944: tracing_mark_write: E|13131
59376           <...>-13322 (-----) [000] ...1 24573.662947: tracing_mark_write: E|13131
59377           <...>-13322 (-----) [000] ...1 24573.662954: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59378           <...>-13322 (-----) [000] ...1 24573.662958: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59379           <...>-13322 (-----) [000] ...1 24573.663041: tracing_mark_write: E|13131
59380           <...>-13322 (-----) [000] ...1 24573.663044: tracing_mark_write: E|13131
59381           <...>-13322 (-----) [000] d..2 24573.663080: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
59382           <...>-13322 (-----) [000] d..3 24573.663093: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
59383           <...>-13322 (-----) [000] ...1 24573.663111: tracing_mark_write: E|13131
59384           <...>-13322 (-----) [000] d..1 24573.663115: sched_waking: comm=id.nn.benchmark pid=13321 prio=110 target_cpu=007
59385 id.nn.benchmark-13160 (13131) [007] dnh1 24573.663131: sched_wakeup: comm=id.nn.benchmark pid=13321 prio=110 target_cpu=007
59386 id.nn.benchmark-13160 (13131) [007] d..2 24573.663134: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13321 next_prio=110
59387           <...>-13322 (-----) [000] ...1 24573.663141: tracing_mark_write: E|13131
59388           <...>-13321 (-----) [007] d..2 24573.663141: sched_switch: prev_comm=id.nn.benchmark prev_pid=13321 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59389           <...>-13322 (-----) [000] d.h1 24573.663222: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
59390           <...>-13322 (-----) [000] dnh2 24573.663231: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
59391           <...>-13322 (-----) [000] d..2 24573.663238: sched_switch: prev_comm=id.nn.benchmark prev_pid=13322 prev_prio=110 prev_state=R+ ==> next_comm=DispSync next_pid=23904 next_prio=97
59392        DispSync-23904 (23896) [000] d..1 24573.663258: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
59393        DispSync-23904 (23896) [000] d..2 24573.663270: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
59394 id.nn.benchmark-13156 (13131) [002] d..2 24573.663281: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
59395        DispSync-23904 (23896) [000] d..2 24573.663285: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
59396     logd.writer-563   (  555) [000] d..2 24573.663324: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13322 next_prio=110
59397  appEventThread-23905 (23896) [002] d..3 24573.663327: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
59398 id.nn.benchmark-13160 (13131) [007] dnh1 24573.663349: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
59399 id.nn.benchmark-13160 (13131) [007] d..2 24573.663351: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
59400  appEventThread-23905 (23896) [002] d..2 24573.663361: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
59401           <...>-13322 (-----) [000] d..1 24573.663431: sched_waking: comm=id.nn.benchmark pid=13321 prio=110 target_cpu=007
59402<...>-24151 ( 24151) [007] d.h1 24573.663447: sched_wakeup: comm=id.nn.benchmark pid=13321 prio=110 target_cpu=007
59403           <...>-13322 (-----) [000] d..2 24573.663507: sched_switch: prev_comm=id.nn.benchmark prev_pid=13322 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13321 next_prio=110
59404           <...>-13321 (-----) [000] d.h4 24573.663535: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
59405           <...>-13321 (-----) [000] d.h4 24573.663542: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
59406<...>-24151 ( 24151) [007] dnh1 24573.663546: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
59407<...>-24151 ( 24151) [007] d..2 24573.663550: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
59408           <...>-13321 (-----) [000] dnh5 24573.663552: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
59409         sugov:4-560   (  560) [007] d..2 24573.663554: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
59410           <...>-13321 (-----) [000] d..2 24573.663561: sched_switch: prev_comm=id.nn.benchmark prev_pid=13321 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
59411         sugov:0-559   (  559) [000] d..2 24573.663568: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13321 next_prio=110
59412<...>-24151 ( 24151) [007] .... 24573.663573: binder_transaction: transaction=1670038 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
59413<...>-24151 ( 24151) [007] d..4 24573.663579: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
59414<...>-24151 ( 24151) [007] d..5 24573.663585: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
59415<...>-24151 ( 24151) [007] d..3 24573.663611: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
59416           <...>-13321 (-----) [000] d..2 24573.663614: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
59417<...>-24151 ( 24151) [007] d..4 24573.663617: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
59418           <...>-13321 (-----) [000] d..3 24573.663621: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
59419           <...>-13321 (-----) [000] d..1 24573.663669: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
59420<...>-24151 ( 24151) [007] d..2 24573.663683: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
59421  Binder:23896_5-25989 (23896) [007] d.h3 24573.663689: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
59422  Binder:23896_5-25989 (23896) [007] .... 24573.663692: binder_transaction_received: transaction=1670038
59423  Binder:23896_5-25989 (23896) [007] d..1 24573.663711: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
59424           <...>-13321 (-----) [000] dnh2 24573.663727: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
59425  Binder:23896_5-25989 (23896) [007] d..2 24573.663732: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
59426           <...>-13321 (-----) [000] d..2 24573.663734: sched_switch: prev_comm=id.nn.benchmark prev_pid=13321 prev_prio=110 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
59427  appEventThread-23905 (23896) [000] d..2 24573.663760: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13321 next_prio=110
59428    RenderThread-24437 (24151) [007] d..1 24573.663790: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
59429    RenderThread-24437 (24151) [007] d..2 24573.663796: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
59430           <...>-13321 (-----) [000] d..2 24573.663807: sched_switch: prev_comm=id.nn.benchmark prev_pid=13321 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
59431    RenderThread-24437 (24151) [007] .... 24573.663829: binder_transaction: transaction=1670039 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
59432    RenderThread-24437 (24151) [007] d..4 24573.663832: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
59433    RenderThread-24437 (24151) [007] d..5 24573.663836: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
59434    RenderThread-24437 (24151) [007] d..2 24573.663840: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
59435           <...>-13131 (-----) [007] ...1 24573.663858: tracing_mark_write: E|13131
59436           <...>-13131 (-----) [007] ...1 24573.663861: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
59437           <...>-13131 (-----) [007] ...1 24573.663863: tracing_mark_write: E|13131
59438           <...>-13131 (-----) [007] ...1 24573.663865: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
59439           <...>-13131 (-----) [007] ...1 24573.663867: tracing_mark_write: E|13131
59440     logd.writer-563   (  555) [000] d..2 24573.663882: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
59441  Binder:23896_5-25989 (23896) [000] .... 24573.663909: binder_transaction_received: transaction=1670039
59442           <...>-13131 (-----) [007] ...1 24573.663928: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
59443           <...>-13131 (-----) [007] d..2 24573.663943: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
59444  Binder:23896_5-25989 (23896) [000] d.h1 24573.663958: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
59445           <...>-13131 (-----) [007] ...1 24573.663958: tracing_mark_write: E|13131
59446           <...>-13131 (-----) [007] ...1 24573.663960: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
59447           <...>-13131 (-----) [007] ...1 24573.663962: tracing_mark_write: E|13131
59448           <...>-13131 (-----) [007] ...1 24573.663964: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
59449           <...>-13131 (-----) [007] ...1 24573.663966: tracing_mark_write: E|13131
59450           <...>-13131 (-----) [007] ...1 24573.663967: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
59451  Binder:23896_5-25989 (23896) [000] .... 24573.663969: binder_transaction: transaction=1670040 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
59452  Binder:23896_5-25989 (23896) [000] d..2 24573.663978: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
59453           <...>-13131 (-----) [007] d.h2 24573.663993: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
59454  Binder:23896_5-25989 (23896) [000] d..2 24573.664008: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
59455           <...>-13131 (-----) [007] ...1 24573.664020: tracing_mark_write: E|13131
59456           <...>-13131 (-----) [007] ...1 24573.664022: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
59457           <...>-13131 (-----) [007] d..2 24573.664026: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
59458    RenderThread-24437 (24151) [007] .... 24573.664029: binder_transaction_received: transaction=1670040
59459     logd.writer-563   (  555) [000] d..2 24573.664060: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13323 next_prio=110
59460           <...>-13323 (-----) [000] d.h4 24573.664089: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
59461           <...>-13323 (-----) [000] d.h4 24573.664097: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
59462    RenderThread-24437 (24151) [007] dnh1 24573.664101: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
59463           <...>-13323 (-----) [000] dnh5 24573.664102: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
59464    RenderThread-24437 (24151) [007] d..2 24573.664105: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
59465           <...>-13323 (-----) [000] d..2 24573.664108: sched_switch: prev_comm=id.nn.benchmark prev_pid=13323 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
59466         sugov:4-560   (  560) [007] d..2 24573.664109: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
59467         sugov:0-559   (  559) [000] d..2 24573.664115: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13323 next_prio=110
59468           <...>-13323 (-----) [000] d..2 24573.664168: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
59469           <...>-13323 (-----) [000] d..3 24573.664176: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
59470    RenderThread-24437 (24151) [007] d.s1 24573.664224: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
59471    RenderThread-24437 (24151) [007] d.s2 24573.664235: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
59472           <...>-13323 (-----) [000] d..2 24573.664484: sched_switch: prev_comm=id.nn.benchmark prev_pid=13323 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
59473     logd.writer-563   (  555) [000] d..2 24573.664654: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13324 next_prio=110
59474           <...>-13324 (-----) [000] ...1 24573.664687: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
59475           <...>-13324 (-----) [000] ...1 24573.664691: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
59476    RenderThread-24437 (24151) [007] d..2 24573.664692: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
59477     rcu_preempt-7     (    7) [007] d..2 24573.664695: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
59478     rcu_preempt-7     (    7) [007] d..2 24573.664710: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
59479           <...>-13324 (-----) [000] dnh1 24573.664716: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
59480           <...>-13324 (-----) [000] d..2 24573.664722: sched_switch: prev_comm=id.nn.benchmark prev_pid=13324 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
59481         rcuop/0-10    (   10) [000] d..2 24573.664727: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
59482<...>-24151 ( 24151) [007] d..2 24573.664749: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59483           <...>-13157 (-----) [004] dnh1 24573.664755: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
59484           <...>-13157 (-----) [004] d..2 24573.664757: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
59485         rcuop/0-10    (   10) [000] d..2 24573.664762: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13324 next_prio=110
59486         rcuop/1-21    (   21) [004] d..2 24573.664764: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
59487 id.nn.benchmark-13160 (13131) [007] d.h1 24573.664791: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
59488 id.nn.benchmark-13160 (13131) [007] d.h2 24573.664796: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
59489 id.nn.benchmark-13160 (13131) [007] dnh2 24573.664797: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
59490 id.nn.benchmark-13160 (13131) [007] d..2 24573.664801: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
59491           <...>-13324 (-----) [000] d..2 24573.664806: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
59492           <...>-13324 (-----) [000] d..3 24573.664813: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
59493           <...>-13324 (-----) [000] ...1 24573.664878: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59494    RenderThread-24437 (24151) [007] .... 24573.664883: binder_transaction: transaction=1670041 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
59495           <...>-13324 (-----) [000] ...1 24573.664884: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59496    RenderThread-24437 (24151) [007] d..4 24573.664888: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
59497    RenderThread-24437 (24151) [007] d..2 24573.664904: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59498           <...>-13324 (-----) [000] d.h2 24573.664918: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
59499           <...>-13324 (-----) [000] dnh3 24573.664934: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
59500           <...>-13324 (-----) [000] dnh1 24573.664946: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
59501           <...>-13324 (-----) [000] d..2 24573.664951: sched_switch: prev_comm=id.nn.benchmark prev_pid=13324 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
59502 kgsl_worker_thr-246   (  246) [000] d..2 24573.664987: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
59503 id.nn.benchmark-13160 (13131) [007] dnh1 24573.665013: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
59504 id.nn.benchmark-13160 (13131) [007] d..2 24573.665015: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
59505 kgsl_worker_thr-246   (  246) [000] d..2 24573.665021: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
59506  Binder:23896_5-25989 (23896) [000] .... 24573.665026: binder_transaction_received: transaction=1670041
59507  kworker/u16:15-18488 (18488) [007] d..2 24573.665033: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59508  Binder:23896_5-25989 (23896) [000] .... 24573.665136: binder_transaction: transaction=1670042 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
59509  Binder:23896_5-25989 (23896) [000] d..2 24573.665141: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
59510 id.nn.benchmark-13160 (13131) [007] dnh1 24573.665155: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
59511 id.nn.benchmark-13160 (13131) [007] d..2 24573.665157: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
59512    RenderThread-24437 (24151) [007] .... 24573.665159: binder_transaction_received: transaction=1670042
59513  Binder:23896_5-25989 (23896) [000] d..2 24573.665172: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13324 next_prio=110
59514    RenderThread-24437 (24151) [007] d..2 24573.665184: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59515           <...>-13324 (-----) [000] ...1 24573.667171: tracing_mark_write: E|13131
59516           <...>-13324 (-----) [000] ...1 24573.667176: tracing_mark_write: E|13131
59517           <...>-13324 (-----) [000] ...1 24573.667189: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59518           <...>-13324 (-----) [000] ...1 24573.667193: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59519           <...>-13324 (-----) [000] d.h1 24573.667216: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
59520           <...>-13324 (-----) [000] dnh2 24573.667226: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
59521           <...>-13324 (-----) [000] d..2 24573.667234: sched_switch: prev_comm=id.nn.benchmark prev_pid=13324 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
59522        DispSync-23904 (23896) [000] d..1 24573.667249: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
59523        DispSync-23904 (23896) [000] d..2 24573.667260: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
59524           <...>-13154 (-----) [001] d..2 24573.667270: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
59525        DispSync-23904 (23896) [000] d..2 24573.667273: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13324 next_prio=110
59526   sfEventThread-23906 (23896) [001] d..3 24573.667300: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
59527   sfEventThread-23906 (23896) [001] d..4 24573.667317: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
59528           <...>-13324 (-----) [000] d..2 24573.667326: sched_switch: prev_comm=id.nn.benchmark prev_pid=13324 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
59529   sfEventThread-23906 (23896) [001] d..2 24573.667331: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
59530           <...>-13157 (-----) [004] d.s2 24573.667554: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
59531           <...>-13157 (-----) [004] d.s3 24573.667565: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
59532 id.nn.benchmark-13160 (13131) [007] d..2 24573.667573: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
59533  surfaceflinger-23896 (23896) [000] d..1 24573.667604: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
59534  surfaceflinger-23896 (23896) [000] d..2 24573.667615: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
59535           <...>-13154 (-----) [001] d..2 24573.667625: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
59536   sfEventThread-23906 (23896) [001] d..2 24573.667640: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
59537  kworker/u16:15-18488 (18488) [007] .... 24573.667667: clk_set_rate: l3_cluster0_vote_clk 1401600000
59538  kworker/u16:15-18488 (18488) [007] d..2 24573.667711: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59539  surfaceflinger-23896 (23896) [000] ...1 24573.667738: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
59540  surfaceflinger-23896 (23896) [000] ...1 24573.667742: tracing_mark_write: E|23896
59541  surfaceflinger-23896 (23896) [000] .... 24573.667787: binder_transaction: transaction=1670043 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
59542  surfaceflinger-23896 (23896) [000] ...2 24573.667806: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
59543  surfaceflinger-23896 (23896) [000] d..4 24573.667814: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
59544 id.nn.benchmark-13160 (13131) [007] dnh1 24573.667830: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
59545 id.nn.benchmark-13160 (13131) [007] d..2 24573.667834: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
59546  surfaceflinger-23896 (23896) [000] d..2 24573.667836: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13324 next_prio=110
59547  HwBinder:598_3-633   (  598) [007] .... 24573.667839: binder_transaction_received: transaction=1670043
59548  HwBinder:598_3-633   (  598) [007] ...1 24573.667864: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
59549  HwBinder:598_3-633   (  598) [007] ...1 24573.667917: tracing_mark_write: B|598|HWCSession::PresentDisplay::
59550  HwBinder:598_3-633   (  598) [007] ...1 24573.667980: tracing_mark_write: B|598|HWDeviceDRM::Commit::
59551  HwBinder:598_3-633   (  598) [007] ...1 24573.667984: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
59552  HwBinder:598_3-633   (  598) [007] d..2 24573.668182: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
59553           <...>-13324 (-----) [000] dnh1 24573.668196: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
59554           <...>-13324 (-----) [000] d..2 24573.668204: sched_switch: prev_comm=id.nn.benchmark prev_pid=13324 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
59555  HwBinder:598_3-633   (  598) [007] ...1 24573.668217: tracing_mark_write: E|598
59556  HwBinder:598_3-633   (  598) [007] ...1 24573.668218: tracing_mark_write: E|598
59557  HwBinder:598_3-633   (  598) [007] ...1 24573.668240: tracing_mark_write: E|598
59558  HwBinder:598_3-633   (  598) [007] ...1 24573.668260: tracing_mark_write: E|598
59559  HwBinder:598_3-633   (  598) [007] .... 24573.668266: binder_transaction: transaction=1670044 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
59560  HwBinder:598_3-633   (  598) [007] d..2 24573.668271: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
59561  HwBinder:598_3-633   (  598) [007] .... 24573.668281: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
59562           <...>-13154 (-----) [001] dnh1 24573.668286: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
59563           <...>-13154 (-----) [001] d..2 24573.668290: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
59564  surfaceflinger-23896 (23896) [001] .... 24573.668295: binder_transaction_received: transaction=1670044
59565  HwBinder:598_3-633   (  598) [007] d..2 24573.668303: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59566  surfaceflinger-23896 (23896) [001] d..2 24573.668543: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
59567 crtc_commit:111-253   (  253) [000] d..2 24573.668811: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13324 next_prio=110
59568           <...>-13324 (-----) [000] ...1 24573.669116: tracing_mark_write: E|13131
59569           <...>-13324 (-----) [000] ...1 24573.669120: tracing_mark_write: E|13131
59570           <...>-13324 (-----) [000] ...1 24573.669143: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59571           <...>-13324 (-----) [000] ...1 24573.669148: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59572           <...>-13324 (-----) [000] ...1 24573.669483: tracing_mark_write: E|13131
59573           <...>-13324 (-----) [000] ...1 24573.669486: tracing_mark_write: E|13131
59574           <...>-13324 (-----) [000] ...1 24573.669498: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59575           <...>-13324 (-----) [000] ...1 24573.669502: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59576           <...>-13324 (-----) [000] ...1 24573.669741: tracing_mark_write: E|13131
59577           <...>-13324 (-----) [000] ...1 24573.669744: tracing_mark_write: E|13131
59578           <...>-13324 (-----) [000] ...1 24573.669754: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59579           <...>-13324 (-----) [000] ...1 24573.669758: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59580           <...>-13324 (-----) [000] ...1 24573.670158: tracing_mark_write: E|13131
59581           <...>-13324 (-----) [000] ...1 24573.670161: tracing_mark_write: E|13131
59582           <...>-13324 (-----) [000] ...1 24573.670172: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59583           <...>-13324 (-----) [000] ...1 24573.670176: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59584           <...>-13324 (-----) [000] ...1 24573.670571: tracing_mark_write: E|13131
59585           <...>-13324 (-----) [000] ...1 24573.670574: tracing_mark_write: E|13131
59586           <...>-13324 (-----) [000] ...1 24573.670593: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59587           <...>-13324 (-----) [000] ...1 24573.670597: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59588           <...>-13324 (-----) [000] ...1 24573.670788: tracing_mark_write: E|13131
59589           <...>-13324 (-----) [000] ...1 24573.670792: tracing_mark_write: E|13131
59590           <...>-13324 (-----) [000] ...1 24573.670805: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59591           <...>-13324 (-----) [000] ...1 24573.670810: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59592           <...>-13157 (-----) [004] d.s2 24573.670887: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
59593 id.nn.benchmark-13160 (13131) [007] d.s1 24573.670890: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
59594           <...>-13157 (-----) [004] d.s3 24573.670899: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
59595 id.nn.benchmark-13160 (13131) [007] dns2 24573.670901: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
59596           <...>-13324 (-----) [000] ...1 24573.670903: tracing_mark_write: E|13131
59597           <...>-13324 (-----) [000] ...1 24573.670907: tracing_mark_write: E|13131
59598 id.nn.benchmark-13160 (13131) [007] d..2 24573.670908: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
59599           <...>-13324 (-----) [000] ...1 24573.670927: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
59600           <...>-13324 (-----) [000] ...1 24573.670935: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
59601  kworker/u16:15-18488 (18488) [007] d..2 24573.671097: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
59602     rcu_preempt-7     (    7) [007] d..2 24573.671099: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=005
59603     rcu_preempt-7     (    7) [007] d..3 24573.671111: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=005
59604     rcu_preempt-7     (    7) [007] d..2 24573.671112: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
59605 id.nn.benchmark-13158 (13131) [005] d..2 24573.671117: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
59606     rcu_preempt-7     (    7) [007] d..3 24573.671122: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
59607     rcu_preempt-7     (    7) [007] d..2 24573.671126: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59608 id.nn.benchmark-13155 (13131) [006] d..2 24573.671129: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
59609         rcuop/6-61    (   61) [006] d..2 24573.671132: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=003
59610         rcuop/2-29    (   29) [005] d..2 24573.671137: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
59611 id.nn.benchmark-13159 (13131) [003] d.s2 24573.671138: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
59612         rcuop/6-61    (   61) [006] d..2 24573.671145: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
59613           <...>-13324 (-----) [000] dnh1 24573.671151: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=000
59614           <...>-13324 (-----) [000] d..2 24573.671158: sched_switch: prev_comm=id.nn.benchmark prev_pid=13324 prev_prio=110 prev_state=R ==> next_comm=rcuop/7 next_pid=69 next_prio=120
59615 id.nn.benchmark-13160 (13131) [007] d.h1 24573.671164: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
59616 id.nn.benchmark-13160 (13131) [007] dnh1 24573.671165: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
59617 id.nn.benchmark-13160 (13131) [007] d..2 24573.671168: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
59618         rcuop/7-69    (   69) [000] d..2 24573.671179: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13324 next_prio=110
59619           <...>-13324 (-----) [000] ...1 24573.671266: tracing_mark_write: E|13131
59620           <...>-13324 (-----) [000] ...1 24573.671270: tracing_mark_write: E|13131
59621           <...>-13324 (-----) [000] ...1 24573.671279: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
59622           <...>-13324 (-----) [000] ...1 24573.671282: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
59623  kworker/u16:15-18488 (18488) [007] d..2 24573.671291: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59624           <...>-13324 (-----) [000] ...1 24573.671332: tracing_mark_write: E|13131
59625           <...>-13324 (-----) [000] ...1 24573.671335: tracing_mark_write: E|13131
59626           <...>-13324 (-----) [000] ...1 24573.671343: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
59627           <...>-13324 (-----) [000] ...1 24573.671347: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
59628           <...>-13324 (-----) [000] ...1 24573.671364: tracing_mark_write: E|13131
59629           <...>-13324 (-----) [000] ...1 24573.671367: tracing_mark_write: E|13131
59630           <...>-13324 (-----) [000] ...1 24573.671377: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
59631           <...>-13324 (-----) [000] ...1 24573.671381: tracing_mark_write: E|13131
59632           <...>-13324 (-----) [000] ...1 24573.671389: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
59633           <...>-13324 (-----) [000] ...1 24573.671394: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
59634           <...>-13324 (-----) [000] ...1 24573.672248: tracing_mark_write: E|13131
59635           <...>-13324 (-----) [000] ...1 24573.672252: tracing_mark_write: E|13131
59636           <...>-13324 (-----) [000] ...1 24573.672260: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59637           <...>-13324 (-----) [000] ...1 24573.672264: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59638           <...>-13324 (-----) [000] ...1 24573.672347: tracing_mark_write: E|13131
59639           <...>-13324 (-----) [000] ...1 24573.672350: tracing_mark_write: E|13131
59640           <...>-13324 (-----) [000] ...1 24573.672410: tracing_mark_write: E|13131
59641           <...>-13324 (-----) [000] d..1 24573.672415: sched_waking: comm=id.nn.benchmark pid=13323 prio=110 target_cpu=000
59642 id.nn.benchmark-13160 (13131) [007] dnh1 24573.672442: sched_wakeup: comm=id.nn.benchmark pid=13323 prio=110 target_cpu=007
59643 id.nn.benchmark-13160 (13131) [007] d..2 24573.672473: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13323 next_prio=110
59644           <...>-13324 (-----) [000] d.h3 24573.672474: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
59645           <...>-13323 (-----) [007] d..2 24573.672481: sched_switch: prev_comm=id.nn.benchmark prev_pid=13323 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59646           <...>-13324 (-----) [000] d.h3 24573.672483: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
59647 id.nn.benchmark-13160 (13131) [007] dnh1 24573.672486: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
59648 id.nn.benchmark-13160 (13131) [007] d..2 24573.672489: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
59649           <...>-13324 (-----) [000] dnh4 24573.672489: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
59650         sugov:4-560   (  560) [007] d..2 24573.672494: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59651           <...>-13324 (-----) [000] d..2 24573.672496: sched_switch: prev_comm=id.nn.benchmark prev_pid=13324 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
59652         sugov:0-559   (  559) [000] d..2 24573.672505: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13324 next_prio=110
59653           <...>-13324 (-----) [000] ...1 24573.672520: tracing_mark_write: E|13131
59654           <...>-13324 (-----) [000] d..1 24573.672732: sched_waking: comm=id.nn.benchmark pid=13323 prio=110 target_cpu=007
59655 id.nn.benchmark-13160 (13131) [007] dnh1 24573.672745: sched_wakeup: comm=id.nn.benchmark pid=13323 prio=110 target_cpu=007
59656 id.nn.benchmark-13160 (13131) [007] d..2 24573.672747: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13323 next_prio=110
59657           <...>-13324 (-----) [000] d..2 24573.672775: sched_switch: prev_comm=id.nn.benchmark prev_pid=13324 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
59658           <...>-13323 (-----) [007] d..1 24573.672810: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
59659           <...>-13323 (-----) [007] dn.2 24573.672817: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
59660           <...>-13323 (-----) [007] d..2 24573.672820: sched_switch: prev_comm=id.nn.benchmark prev_pid=13323 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
59661           <...>-13131 (-----) [007] d..2 24573.672826: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13323 next_prio=110
59662           <...>-13323 (-----) [007] d..1 24573.672856: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
59663           <...>-13323 (-----) [007] dn.2 24573.672859: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
59664           <...>-13323 (-----) [007] d..2 24573.672861: sched_switch: prev_comm=id.nn.benchmark prev_pid=13323 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
59665           <...>-13131 (-----) [007] ...1 24573.672871: tracing_mark_write: E|13131
59666           <...>-13131 (-----) [007] ...1 24573.672874: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
59667           <...>-13131 (-----) [007] ...1 24573.672876: tracing_mark_write: E|13131
59668           <...>-13131 (-----) [007] ...1 24573.672878: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
59669           <...>-13131 (-----) [007] ...1 24573.672880: tracing_mark_write: E|13131
59670           <...>-13131 (-----) [007] ...1 24573.672942: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
59671           <...>-13131 (-----) [007] ...1 24573.672962: tracing_mark_write: E|13131
59672           <...>-13131 (-----) [007] ...1 24573.672964: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
59673           <...>-13131 (-----) [007] ...1 24573.672967: tracing_mark_write: E|13131
59674           <...>-13131 (-----) [007] ...1 24573.672969: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
59675           <...>-13131 (-----) [007] ...1 24573.672971: tracing_mark_write: E|13131
59676           <...>-13131 (-----) [007] ...1 24573.672972: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
59677     logd.writer-563   (  555) [000] d..2 24573.673007: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13323 next_prio=110
59678           <...>-13131 (-----) [007] ...1 24573.673026: tracing_mark_write: E|13131
59679           <...>-13131 (-----) [007] ...1 24573.673028: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
59680           <...>-13131 (-----) [007] d..2 24573.673032: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59681           <...>-13323 (-----) [000] d..2 24573.673071: sched_switch: prev_comm=id.nn.benchmark prev_pid=13323 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13325 next_prio=110
59682           <...>-13325 (-----) [000] d.h4 24573.673100: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
59683           <...>-13325 (-----) [000] d.h4 24573.673109: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
59684 id.nn.benchmark-13160 (13131) [007] dnh1 24573.673113: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
59685           <...>-13325 (-----) [000] dnh5 24573.673115: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
59686 id.nn.benchmark-13160 (13131) [007] d..2 24573.673116: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
59687         sugov:4-560   (  560) [007] d..2 24573.673120: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59688           <...>-13325 (-----) [000] d..2 24573.673124: sched_switch: prev_comm=id.nn.benchmark prev_pid=13325 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
59689         sugov:0-559   (  559) [000] d..2 24573.673131: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13325 next_prio=110
59690           <...>-13325 (-----) [000] d..2 24573.673188: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
59691           <...>-13325 (-----) [000] d..3 24573.673196: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
59692           <...>-13325 (-----) [000] d..2 24573.673493: sched_switch: prev_comm=id.nn.benchmark prev_pid=13325 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
59693     logd.writer-563   (  555) [000] d..2 24573.673662: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13326 next_prio=110
59694           <...>-13326 (-----) [000] ...1 24573.673688: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
59695           <...>-13326 (-----) [000] ...1 24573.673693: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
59696           <...>-13326 (-----) [000] d..2 24573.673750: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
59697           <...>-13326 (-----) [000] d..3 24573.673759: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
59698           <...>-13326 (-----) [000] ...1 24573.673823: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59699           <...>-13326 (-----) [000] ...1 24573.673827: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59700           <...>-13157 (-----) [004] d.s2 24573.674221: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
59701           <...>-13157 (-----) [004] d.s3 24573.674231: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
59702 id.nn.benchmark-13160 (13131) [007] d..2 24573.674236: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
59703  kworker/u16:15-18488 (18488) [007] d..2 24573.674273: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59704           <...>-13326 (-----) [000] d.h4 24573.675267: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
59705           <...>-13326 (-----) [000] dnh5 24573.675279: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
59706           <...>-13326 (-----) [000] dnh4 24573.675282: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
59707 id.nn.benchmark-13160 (13131) [007] dnh1 24573.675301: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
59708 id.nn.benchmark-13160 (13131) [007] d..2 24573.675304: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
59709           <...>-13326 (-----) [000] dnh2 24573.675333: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
59710           <...>-13326 (-----) [000] dnh2 24573.675345: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
59711           <...>-13157 (-----) [004] dnh1 24573.675348: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
59712 crtc_commit:111-253   (  253) [007] d..2 24573.675350: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59713           <...>-13157 (-----) [004] d..2 24573.675352: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
59714         sugov:4-560   (  560) [004] d..2 24573.675355: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
59715           <...>-13326 (-----) [000] dnh3 24573.675356: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
59716           <...>-13326 (-----) [000] d..2 24573.675363: sched_switch: prev_comm=id.nn.benchmark prev_pid=13326 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
59717           <...>-13154 (-----) [001] d..2 24573.675365: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
59718         sugov:0-559   (  559) [001] d..2 24573.675375: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
59719  crtc_event:111-254   (  254) [000] d..2 24573.675376: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
59720 id.nn.benchmark-13160 (13131) [007] dnh1 24573.675386: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
59721 id.nn.benchmark-13160 (13131) [007] d..2 24573.675389: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
59722  crtc_event:111-254   (  254) [000] d..2 24573.675390: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13326 next_prio=110
59723 crtc_commit:111-253   (  253) [007] d..2 24573.675442: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59724           <...>-13326 (-----) [000] ...1 24573.676012: tracing_mark_write: E|13131
59725           <...>-13326 (-----) [000] ...1 24573.676016: tracing_mark_write: E|13131
59726           <...>-13326 (-----) [000] ...1 24573.676027: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59727           <...>-13326 (-----) [000] ...1 24573.676031: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59728           <...>-13326 (-----) [000] ...1 24573.676726: tracing_mark_write: E|13131
59729           <...>-13326 (-----) [000] ...1 24573.676730: tracing_mark_write: E|13131
59730           <...>-13326 (-----) [000] ...1 24573.676746: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59731           <...>-13326 (-----) [000] ...1 24573.676750: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59732           <...>-13326 (-----) [000] ...1 24573.677080: tracing_mark_write: E|13131
59733           <...>-13326 (-----) [000] ...1 24573.677084: tracing_mark_write: E|13131
59734           <...>-13326 (-----) [000] ...1 24573.677094: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59735           <...>-13326 (-----) [000] ...1 24573.677098: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59736           <...>-13326 (-----) [000] ...1 24573.677322: tracing_mark_write: E|13131
59737           <...>-13326 (-----) [000] ...1 24573.677327: tracing_mark_write: E|13131
59738           <...>-13326 (-----) [000] ...1 24573.677336: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59739           <...>-13326 (-----) [000] ...1 24573.677340: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59740 id.nn.benchmark-13160 (13131) [007] d.s2 24573.677568: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
59741 id.nn.benchmark-13160 (13131) [007] d.s1 24573.677588: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
59742           <...>-13157 (-----) [004] d.H2 24573.677596: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
59743           <...>-13157 (-----) [004] dnH3 24573.677599: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
59744           <...>-13157 (-----) [004] dnH2 24573.677600: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
59745           <...>-13326 (-----) [000] d.h4 24573.677616: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
59746           <...>-13157 (-----) [004] dns2 24573.677620: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
59747           <...>-13326 (-----) [000] dnh5 24573.677637: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
59748           <...>-13157 (-----) [004] d..2 24573.677652: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
59749         sugov:4-560   (  560) [004] d..2 24573.677655: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
59750           <...>-13326 (-----) [000] dnH1 24573.677674: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
59751           <...>-13326 (-----) [000] dnH1 24573.677676: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
59752           <...>-13326 (-----) [000] dnH1 24573.677679: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
59753           <...>-13326 (-----) [000] dnH1 24573.677680: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
59754           <...>-13326 (-----) [000] d..2 24573.677688: sched_switch: prev_comm=id.nn.benchmark prev_pid=13326 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
59755           <...>-13154 (-----) [001] d..2 24573.677712: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
59756 id.nn.benchmark-13160 (13131) [007] d..2 24573.677738: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
59757         sugov:0-559   (  559) [000] d..2 24573.677743: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
59758  crtc_event:111-254   (  254) [007] d..2 24573.677746: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59759 crtc_commit:111-253   (  253) [001] d..2 24573.677768: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
59760  kworker/u16:15-18488 (18488) [000] d..2 24573.677840: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
59761     rcu_preempt-7     (    7) [000] d..2 24573.677851: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13326 next_prio=110
59762           <...>-13326 (-----) [000] d.h6 24573.677909: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
59763           <...>-13326 (-----) [000] dnh7 24573.677922: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
59764           <...>-13326 (-----) [000] d..2 24573.677953: sched_switch: prev_comm=id.nn.benchmark prev_pid=13326 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
59765  crtc_event:111-254   (  254) [000] d..2 24573.677962: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13326 next_prio=110
59766           <...>-13326 (-----) [000] ...1 24573.678155: tracing_mark_write: E|13131
59767           <...>-13326 (-----) [000] ...1 24573.678160: tracing_mark_write: E|13131
59768           <...>-13326 (-----) [000] ...1 24573.678170: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59769           <...>-13326 (-----) [000] ...1 24573.678174: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59770           <...>-13326 (-----) [000] ...1 24573.678553: tracing_mark_write: E|13131
59771           <...>-13326 (-----) [000] ...1 24573.678557: tracing_mark_write: E|13131
59772           <...>-13326 (-----) [000] ...1 24573.678574: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59773           <...>-13326 (-----) [000] ...1 24573.678578: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59774           <...>-13326 (-----) [000] ...1 24573.678766: tracing_mark_write: E|13131
59775           <...>-13326 (-----) [000] ...1 24573.678769: tracing_mark_write: E|13131
59776           <...>-13326 (-----) [000] ...1 24573.678782: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59777           <...>-13326 (-----) [000] ...1 24573.678786: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59778           <...>-13326 (-----) [000] ...1 24573.678854: tracing_mark_write: E|13131
59779           <...>-13326 (-----) [000] ...1 24573.678857: tracing_mark_write: E|13131
59780           <...>-13326 (-----) [000] ...1 24573.678867: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
59781           <...>-13326 (-----) [000] ...1 24573.678871: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
59782           <...>-13326 (-----) [000] ...1 24573.679128: tracing_mark_write: E|13131
59783           <...>-13326 (-----) [000] ...1 24573.679131: tracing_mark_write: E|13131
59784           <...>-13326 (-----) [000] ...1 24573.679140: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
59785           <...>-13326 (-----) [000] ...1 24573.679144: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
59786           <...>-13326 (-----) [000] ...1 24573.679187: tracing_mark_write: E|13131
59787           <...>-13326 (-----) [000] ...1 24573.679190: tracing_mark_write: E|13131
59788           <...>-13326 (-----) [000] ...1 24573.679199: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
59789           <...>-13326 (-----) [000] ...1 24573.679202: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
59790           <...>-13326 (-----) [000] ...1 24573.679217: tracing_mark_write: E|13131
59791           <...>-13326 (-----) [000] ...1 24573.679220: tracing_mark_write: E|13131
59792           <...>-13326 (-----) [000] ...1 24573.679229: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
59793           <...>-13326 (-----) [000] ...1 24573.679232: tracing_mark_write: E|13131
59794           <...>-13326 (-----) [000] ...1 24573.679240: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
59795           <...>-13326 (-----) [000] ...1 24573.679244: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
59796           <...>-13326 (-----) [000] d.h1 24573.679684: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
59797           <...>-13326 (-----) [000] dnh2 24573.679694: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
59798           <...>-13326 (-----) [000] d..2 24573.679702: sched_switch: prev_comm=id.nn.benchmark prev_pid=13326 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
59799        DispSync-23904 (23896) [000] d..1 24573.679724: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
59800        DispSync-23904 (23896) [000] d..2 24573.679740: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
59801           <...>-13154 (-----) [001] d..2 24573.679750: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
59802        DispSync-23904 (23896) [000] d..2 24573.679756: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13326 next_prio=110
59803  appEventThread-23905 (23896) [001] d..3 24573.679796: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
59804  appEventThread-23905 (23896) [001] d..4 24573.679821: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
59805           <...>-13326 (-----) [000] d..2 24573.679829: sched_switch: prev_comm=id.nn.benchmark prev_pid=13326 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
59806  appEventThread-23905 (23896) [001] d.h3 24573.679856: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
59807  appEventThread-23905 (23896) [001] d.h3 24573.679864: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
59808           <...>-13157 (-----) [004] dnh1 24573.679867: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
59809           <...>-13157 (-----) [004] d..2 24573.679869: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
59810  appEventThread-23905 (23896) [001] d.h4 24573.679872: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
59811         sugov:4-560   (  560) [004] d..2 24573.679872: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
59812<...>-24151 ( 24151) [000] d..2 24573.679881: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
59813  appEventThread-23905 (23896) [001] d..2 24573.679888: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
59814         sugov:0-559   (  559) [000] d..2 24573.679890: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
59815<...>-24151 ( 24151) [000] .... 24573.680150: binder_transaction: transaction=1670045 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
59816<...>-24151 ( 24151) [000] d..4 24573.680160: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
59817 id.nn.benchmark-13160 (13131) [007] dnh1 24573.680185: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
59818 id.nn.benchmark-13160 (13131) [007] d..2 24573.680206: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
59819  Binder:23896_5-25989 (23896) [007] .... 24573.680210: binder_transaction_received: transaction=1670045
59820  Binder:23896_5-25989 (23896) [007] d..1 24573.680231: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
59821<...>-24151 ( 24151) [000] d..3 24573.680236: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
59822  Binder:23896_5-25989 (23896) [007] d..2 24573.680253: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59823 id.nn.benchmark-13155 (13131) [006] dnh1 24573.680255: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
59824<...>-24151 ( 24151) [000] dnh2 24573.680256: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
59825 id.nn.benchmark-13155 (13131) [006] d..2 24573.680258: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
59826<...>-24151 ( 24151) [000] d..2 24573.680263: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
59827    RenderThread-24437 (24151) [006] d..2 24573.680280: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
59828  appEventThread-23905 (23896) [000] d..2 24573.680289: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
59829<...>-24151 ( 24151) [000] d..3 24573.680390: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
59830 id.nn.benchmark-13160 (13131) [007] dnh1 24573.680409: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
59831 id.nn.benchmark-13160 (13131) [007] d..2 24573.680411: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
59832<...>-24151 ( 24151) [000] d..2 24573.680415: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13326 next_prio=110
59833    RenderThread-24437 (24151) [007] d..1 24573.680468: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
59834           <...>-13326 (-----) [000] dnh1 24573.680483: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
59835           <...>-13326 (-----) [000] d..2 24573.680488: sched_switch: prev_comm=id.nn.benchmark prev_pid=13326 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
59836    RenderThread-24437 (24151) [007] .... 24573.680505: binder_transaction: transaction=1670046 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
59837    RenderThread-24437 (24151) [007] d..4 24573.680507: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
59838    RenderThread-24437 (24151) [007] d..5 24573.680518: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
59839    RenderThread-24437 (24151) [007] d..2 24573.680522: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59840           <...>-13157 (-----) [004] d..2 24573.680523: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
59841<...>-24151 ( 24151) [000] d..2 24573.680526: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13326 next_prio=110
59842  Binder:23896_5-25989 (23896) [004] .... 24573.680527: binder_transaction_received: transaction=1670046
59843  Binder:23896_5-25989 (23896) [004] .... 24573.680560: binder_transaction: transaction=1670047 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
59844  Binder:23896_5-25989 (23896) [004] d..2 24573.680565: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
59845  Binder:23896_5-25989 (23896) [004] d.h3 24573.680597: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
59846           <...>-13326 (-----) [000] dnh1 24573.680598: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
59847  Binder:23896_5-25989 (23896) [004] dnh4 24573.680600: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
59848  Binder:23896_5-25989 (23896) [004] dnh3 24573.680601: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
59849           <...>-13326 (-----) [000] d..2 24573.680603: sched_switch: prev_comm=id.nn.benchmark prev_pid=13326 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
59850    RenderThread-24437 (24151) [000] .... 24573.680608: binder_transaction_received: transaction=1670047
59851  Binder:23896_5-25989 (23896) [004] d..2 24573.680612: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
59852    RenderThread-24437 (24151) [000] dnh1 24573.680614: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
59853         sugov:4-560   (  560) [004] d..2 24573.680616: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
59854    RenderThread-24437 (24151) [000] d..2 24573.680619: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
59855         sugov:0-559   (  559) [000] d..2 24573.680626: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
59856  Binder:23896_5-25989 (23896) [004] d..2 24573.680627: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
59857 id.nn.benchmark-13155 (13131) [006] d.s2 24573.680887: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
59858           <...>-13157 (-----) [004] d.s2 24573.680890: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
59859 id.nn.benchmark-13155 (13131) [006] d.s3 24573.680906: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
59860           <...>-13157 (-----) [004] d.s3 24573.680911: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
59861 id.nn.benchmark-13160 (13131) [007] d..2 24573.680914: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
59862     rcu_preempt-7     (    7) [007] d..2 24573.680916: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
59863     rcu_preempt-7     (    7) [007] d..2 24573.680938: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
59864    RenderThread-24437 (24151) [000] d.h1 24573.680941: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
59865  kworker/u16:15-18488 (18488) [007] d..2 24573.681139: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59866    RenderThread-24437 (24151) [000] d..2 24573.681680: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=rcuop/0 next_pid=10 next_prio=120
59867         rcuop/0-10    (   10) [000] d..2 24573.681686: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
59868           <...>-13157 (-----) [004] dnh1 24573.681718: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
59869           <...>-13157 (-----) [004] d..2 24573.681721: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
59870         rcuop/1-21    (   21) [004] d..2 24573.681727: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
59871         rcuop/0-10    (   10) [000] d..2 24573.681761: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13326 next_prio=110
59872           <...>-13326 (-----) [000] d.h1 24573.681776: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
59873           <...>-13326 (-----) [000] d.h2 24573.681785: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
59874           <...>-13326 (-----) [000] dnh2 24573.681788: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
59875           <...>-13326 (-----) [000] d..2 24573.681795: sched_switch: prev_comm=id.nn.benchmark prev_pid=13326 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
59876    RenderThread-24437 (24151) [000] d.h3 24573.681898: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
59877    RenderThread-24437 (24151) [000] dnh4 24573.681909: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
59878    RenderThread-24437 (24151) [000] d..2 24573.681922: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
59879 kgsl_worker_thr-246   (  246) [000] d..2 24573.681957: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
59880 id.nn.benchmark-13160 (13131) [007] dnh1 24573.681970: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
59881 id.nn.benchmark-13160 (13131) [007] d..2 24573.681973: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
59882 kgsl_worker_thr-246   (  246) [000] d..2 24573.681975: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
59883  kworker/u16:15-18488 (18488) [007] d..2 24573.681988: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59884    RenderThread-24437 (24151) [000] .... 24573.682030: binder_transaction: transaction=1670048 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
59885    RenderThread-24437 (24151) [000] d..4 24573.682038: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
59886 id.nn.benchmark-13160 (13131) [007] dnh1 24573.682057: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
59887 id.nn.benchmark-13160 (13131) [007] d..2 24573.682059: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
59888    RenderThread-24437 (24151) [000] d..2 24573.682061: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13326 next_prio=110
59889  Binder:23896_5-25989 (23896) [007] .... 24573.682061: binder_transaction_received: transaction=1670048
59890  Binder:23896_5-25989 (23896) [007] .... 24573.682124: binder_transaction: transaction=1670049 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
59891  Binder:23896_5-25989 (23896) [007] d..2 24573.682126: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
59892           <...>-13326 (-----) [000] dnh1 24573.682140: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
59893  Binder:23896_5-25989 (23896) [007] d..2 24573.682142: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59894           <...>-13326 (-----) [000] d..2 24573.682146: sched_switch: prev_comm=id.nn.benchmark prev_pid=13326 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
59895    RenderThread-24437 (24151) [000] .... 24573.682149: binder_transaction_received: transaction=1670049
59896    RenderThread-24437 (24151) [000] d..2 24573.682192: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13326 next_prio=110
59897           <...>-13326 (-----) [000] ...1 24573.682368: tracing_mark_write: E|13131
59898           <...>-13326 (-----) [000] ...1 24573.682372: tracing_mark_write: E|13131
59899           <...>-13326 (-----) [000] ...1 24573.682386: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59900           <...>-13326 (-----) [000] ...1 24573.682390: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59901           <...>-13326 (-----) [000] ...1 24573.682477: tracing_mark_write: E|13131
59902           <...>-13326 (-----) [000] ...1 24573.682480: tracing_mark_write: E|13131
59903           <...>-13326 (-----) [000] ...1 24573.682543: tracing_mark_write: E|13131
59904           <...>-13326 (-----) [000] d..1 24573.682548: sched_waking: comm=id.nn.benchmark pid=13325 prio=110 target_cpu=000
59905           <...>-13326 (-----) [000] dn.2 24573.682562: sched_wakeup: comm=id.nn.benchmark pid=13325 prio=110 target_cpu=000
59906           <...>-13326 (-----) [000] d..2 24573.682567: sched_switch: prev_comm=id.nn.benchmark prev_pid=13326 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13325 next_prio=110
59907           <...>-13325 (-----) [000] d..2 24573.682581: sched_switch: prev_comm=id.nn.benchmark prev_pid=13325 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13326 next_prio=110
59908           <...>-13326 (-----) [000] ...1 24573.682597: tracing_mark_write: E|13131
59909           <...>-13326 (-----) [000] d..1 24573.682813: sched_waking: comm=id.nn.benchmark pid=13325 prio=110 target_cpu=000
59910           <...>-13326 (-----) [000] dn.2 24573.682822: sched_wakeup: comm=id.nn.benchmark pid=13325 prio=110 target_cpu=000
59911           <...>-13326 (-----) [000] d..2 24573.682826: sched_switch: prev_comm=id.nn.benchmark prev_pid=13326 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13325 next_prio=110
59912           <...>-13325 (-----) [000] d..1 24573.682923: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
59913           <...>-13325 (-----) [000] dn.2 24573.682943: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
59914           <...>-13325 (-----) [000] dnh3 24573.682973: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
59915           <...>-13325 (-----) [000] dnh3 24573.682980: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
59916           <...>-13157 (-----) [004] dnh1 24573.682984: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
59917           <...>-13325 (-----) [000] dnh4 24573.682986: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
59918           <...>-13157 (-----) [004] d..2 24573.682986: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
59919         sugov:4-560   (  560) [004] d..2 24573.682990: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
59920           <...>-13325 (-----) [000] d..2 24573.682991: sched_switch: prev_comm=id.nn.benchmark prev_pid=13325 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
59921         sugov:0-559   (  559) [000] d..2 24573.682999: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
59922           <...>-13131 (-----) [000] d..2 24573.683011: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13325 next_prio=110
59923           <...>-13325 (-----) [000] d..1 24573.683067: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
59924           <...>-13325 (-----) [000] dn.2 24573.683076: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
59925           <...>-13325 (-----) [000] d..2 24573.683080: sched_switch: prev_comm=id.nn.benchmark prev_pid=13325 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
59926           <...>-13131 (-----) [000] ...1 24573.683099: tracing_mark_write: E|13131
59927           <...>-13131 (-----) [000] ...1 24573.683104: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
59928           <...>-13131 (-----) [000] ...1 24573.683109: tracing_mark_write: E|13131
59929           <...>-13131 (-----) [000] ...1 24573.683113: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
59930           <...>-13131 (-----) [000] ...1 24573.683118: tracing_mark_write: E|13131
59931           <...>-13131 (-----) [000] ...1 24573.683424: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
59932           <...>-13131 (-----) [000] ...1 24573.683459: tracing_mark_write: E|13131
59933           <...>-13131 (-----) [000] ...1 24573.683464: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
59934           <...>-13131 (-----) [000] ...1 24573.683469: tracing_mark_write: E|13131
59935           <...>-13131 (-----) [000] ...1 24573.683474: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
59936           <...>-13131 (-----) [000] ...1 24573.683478: tracing_mark_write: E|13131
59937           <...>-13131 (-----) [000] ...1 24573.683482: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
59938           <...>-13131 (-----) [000] ...1 24573.683587: tracing_mark_write: E|13131
59939           <...>-13131 (-----) [000] ...1 24573.683592: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
59940           <...>-13131 (-----) [000] d..2 24573.683601: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13325 next_prio=110
59941           <...>-13325 (-----) [000] d..2 24573.683656: sched_switch: prev_comm=id.nn.benchmark prev_pid=13325 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13326 next_prio=110
59942           <...>-13326 (-----) [000] d..2 24573.683678: sched_switch: prev_comm=id.nn.benchmark prev_pid=13326 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
59943     logd.writer-563   (  555) [000] d.h2 24573.683694: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
59944 id.nn.benchmark-13160 (13131) [007] dnh1 24573.683715: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=007
59945 id.nn.benchmark-13160 (13131) [007] d..2 24573.683740: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
59946     logd.writer-563   (  555) [000] d.h3 24573.683740: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
59947     logd.writer-563   (  555) [000] d.h3 24573.683747: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
59948        DispSync-23904 (23896) [007] d..1 24573.683747: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
59949           <...>-13157 (-----) [004] dnh1 24573.683750: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
59950           <...>-13157 (-----) [004] d..2 24573.683752: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
59951     logd.writer-563   (  555) [000] dnh4 24573.683754: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
59952         sugov:4-560   (  560) [004] d..2 24573.683755: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
59953        DispSync-23904 (23896) [007] d..2 24573.683758: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59954           <...>-13154 (-----) [001] dnh1 24573.683759: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
59955     logd.writer-563   (  555) [000] d..2 24573.683761: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
59956           <...>-13154 (-----) [001] d..2 24573.683764: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
59957         sugov:0-559   (  559) [000] d..2 24573.683768: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
59958   sfEventThread-23906 (23896) [001] d..3 24573.683786: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
59959   sfEventThread-23906 (23896) [001] d..4 24573.683802: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
59960     logd.writer-563   (  555) [000] d..2 24573.683810: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
59961   sfEventThread-23906 (23896) [001] d..2 24573.683814: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
59962  surfaceflinger-23896 (23896) [000] d..1 24573.684049: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
59963  surfaceflinger-23896 (23896) [000] d..2 24573.684061: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
59964           <...>-13154 (-----) [001] d..2 24573.684068: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
59965   sfEventThread-23906 (23896) [001] d..2 24573.684082: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
59966  surfaceflinger-23896 (23896) [000] ...1 24573.684191: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
59967  surfaceflinger-23896 (23896) [000] ...1 24573.684194: tracing_mark_write: E|23896
59968  surfaceflinger-23896 (23896) [000] .... 24573.684253: binder_transaction: transaction=1670050 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
59969  surfaceflinger-23896 (23896) [000] ...2 24573.684273: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
59970  surfaceflinger-23896 (23896) [000] d..4 24573.684280: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
59971 id.nn.benchmark-13160 (13131) [007] dnh1 24573.684295: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
59972 id.nn.benchmark-13160 (13131) [007] d..2 24573.684298: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
59973  surfaceflinger-23896 (23896) [000] d..2 24573.684301: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13327 next_prio=110
59974  HwBinder:598_3-633   (  598) [007] .... 24573.684301: binder_transaction_received: transaction=1670050
59975  HwBinder:598_3-633   (  598) [007] ...1 24573.684325: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
59976  HwBinder:598_3-633   (  598) [007] ...1 24573.684376: tracing_mark_write: B|598|HWCSession::PresentDisplay::
59977  HwBinder:598_3-633   (  598) [007] ...1 24573.684438: tracing_mark_write: B|598|HWDeviceDRM::Commit::
59978  HwBinder:598_3-633   (  598) [007] ...1 24573.684442: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
59979           <...>-13327 (-----) [000] d..2 24573.684635: sched_switch: prev_comm=id.nn.benchmark prev_pid=13327 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
59980  HwBinder:598_3-633   (  598) [007] d..2 24573.684636: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
59981           <...>-13154 (-----) [001] dnh1 24573.684648: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
59982           <...>-13154 (-----) [001] d..2 24573.684653: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
59983  HwBinder:598_3-633   (  598) [007] ...1 24573.684670: tracing_mark_write: E|598
59984  HwBinder:598_3-633   (  598) [007] ...1 24573.684671: tracing_mark_write: E|598
59985  HwBinder:598_3-633   (  598) [007] ...1 24573.684693: tracing_mark_write: E|598
59986  HwBinder:598_3-633   (  598) [007] ...1 24573.684712: tracing_mark_write: E|598
59987  HwBinder:598_3-633   (  598) [007] .... 24573.684717: binder_transaction: transaction=1670051 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
59988  HwBinder:598_3-633   (  598) [007] d..2 24573.684722: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
59989  HwBinder:598_3-633   (  598) [007] .... 24573.684728: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
59990     logd.writer-563   (  555) [000] dnh4 24573.684734: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
59991     logd.writer-563   (  555) [000] d..2 24573.684742: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
59992  surfaceflinger-23896 (23896) [000] .... 24573.684747: binder_transaction_received: transaction=1670051
59993  HwBinder:598_3-633   (  598) [007] d..2 24573.684748: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
59994  surfaceflinger-23896 (23896) [000] d..2 24573.684991: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13328 next_prio=110
59995           <...>-13328 (-----) [000] ...1 24573.685020: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
59996           <...>-13328 (-----) [000] ...1 24573.685025: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
59997           <...>-13328 (-----) [000] ...1 24573.685143: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
59998           <...>-13328 (-----) [000] ...1 24573.685148: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
59999 crtc_commit:111-253   (  253) [001] d..2 24573.685254: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
60000           <...>-13328 (-----) [000] ...1 24573.687137: tracing_mark_write: E|13131
60001           <...>-13328 (-----) [000] ...1 24573.687141: tracing_mark_write: E|13131
60002           <...>-13328 (-----) [000] ...1 24573.687153: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60003           <...>-13328 (-----) [000] ...1 24573.687157: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60004           <...>-13157 (-----) [004] d.s2 24573.687555: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
60005 id.nn.benchmark-13160 (13131) [007] d.s1 24573.687559: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
60006           <...>-13157 (-----) [004] d.s3 24573.687564: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
60007 id.nn.benchmark-13160 (13131) [007] dns2 24573.687573: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=006
60008 id.nn.benchmark-13160 (13131) [007] d..2 24573.687579: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
60009 id.nn.benchmark-13155 (13131) [006] d..2 24573.687580: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
60010     rcu_preempt-7     (    7) [006] d..2 24573.687583: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=005
60011     rcu_preempt-7     (    7) [006] d..3 24573.687591: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=005
60012     rcu_preempt-7     (    7) [006] d..2 24573.687596: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
60013 id.nn.benchmark-13158 (13131) [005] d..2 24573.687598: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
60014         rcuop/2-29    (   29) [005] d..2 24573.687600: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=004
60015         rcuop/2-29    (   29) [005] d..3 24573.687613: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=004
60016         rcuop/2-29    (   29) [005] d..2 24573.687616: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
60017           <...>-13157 (-----) [004] d..2 24573.687619: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcuop/3 next_pid=37 next_prio=120
60018         rcuop/3-37    (   37) [004] d..2 24573.687625: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
60019  kworker/u16:15-18488 (18488) [007] d..2 24573.687673: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60020           <...>-13328 (-----) [000] ...1 24573.687887: tracing_mark_write: E|13131
60021           <...>-13328 (-----) [000] ...1 24573.687891: tracing_mark_write: E|13131
60022           <...>-13328 (-----) [000] ...1 24573.687908: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60023           <...>-13328 (-----) [000] ...1 24573.687912: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60024           <...>-13328 (-----) [000] ...1 24573.688250: tracing_mark_write: E|13131
60025           <...>-13328 (-----) [000] ...1 24573.688253: tracing_mark_write: E|13131
60026           <...>-13328 (-----) [000] ...1 24573.688264: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60027           <...>-13328 (-----) [000] ...1 24573.688268: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60028           <...>-13328 (-----) [000] ...1 24573.688501: tracing_mark_write: E|13131
60029           <...>-13328 (-----) [000] ...1 24573.688505: tracing_mark_write: E|13131
60030           <...>-13328 (-----) [000] ...1 24573.688516: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60031           <...>-13328 (-----) [000] ...1 24573.688520: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60032           <...>-13328 (-----) [000] ...1 24573.688918: tracing_mark_write: E|13131
60033           <...>-13328 (-----) [000] ...1 24573.688922: tracing_mark_write: E|13131
60034           <...>-13328 (-----) [000] ...1 24573.688932: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60035           <...>-13328 (-----) [000] ...1 24573.688936: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60036           <...>-13328 (-----) [000] ...1 24573.689330: tracing_mark_write: E|13131
60037           <...>-13328 (-----) [000] ...1 24573.689334: tracing_mark_write: E|13131
60038           <...>-13328 (-----) [000] ...1 24573.689351: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60039           <...>-13328 (-----) [000] ...1 24573.689355: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60040           <...>-13328 (-----) [000] ...1 24573.689545: tracing_mark_write: E|13131
60041           <...>-13328 (-----) [000] ...1 24573.689549: tracing_mark_write: E|13131
60042           <...>-13328 (-----) [000] ...1 24573.689563: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60043           <...>-13328 (-----) [000] ...1 24573.689566: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60044           <...>-13328 (-----) [000] ...1 24573.689638: tracing_mark_write: E|13131
60045           <...>-13328 (-----) [000] ...1 24573.689641: tracing_mark_write: E|13131
60046           <...>-13328 (-----) [000] ...1 24573.689652: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
60047           <...>-13328 (-----) [000] ...1 24573.689657: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
60048           <...>-13328 (-----) [000] ...1 24573.689957: tracing_mark_write: E|13131
60049           <...>-13328 (-----) [000] ...1 24573.689961: tracing_mark_write: E|13131
60050           <...>-13328 (-----) [000] ...1 24573.689970: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
60051           <...>-13328 (-----) [000] ...1 24573.689974: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
60052           <...>-13328 (-----) [000] ...1 24573.690026: tracing_mark_write: E|13131
60053           <...>-13328 (-----) [000] ...1 24573.690029: tracing_mark_write: E|13131
60054           <...>-13328 (-----) [000] ...1 24573.690037: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
60055           <...>-13328 (-----) [000] ...1 24573.690041: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
60056           <...>-13328 (-----) [000] ...1 24573.690058: tracing_mark_write: E|13131
60057           <...>-13328 (-----) [000] ...1 24573.690061: tracing_mark_write: E|13131
60058           <...>-13328 (-----) [000] ...1 24573.690072: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
60059           <...>-13328 (-----) [000] ...1 24573.690075: tracing_mark_write: E|13131
60060           <...>-13328 (-----) [000] ...1 24573.690084: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
60061           <...>-13328 (-----) [000] ...1 24573.690088: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
60062           <...>-13157 (-----) [004] d.s2 24573.690889: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
60063           <...>-13157 (-----) [004] d.s3 24573.690895: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
60064 id.nn.benchmark-13160 (13131) [007] d..2 24573.690901: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
60065           <...>-13328 (-----) [000] ...1 24573.690972: tracing_mark_write: E|13131
60066           <...>-13328 (-----) [000] ...1 24573.690976: tracing_mark_write: E|13131
60067           <...>-13328 (-----) [000] ...1 24573.690985: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60068           <...>-13328 (-----) [000] ...1 24573.690989: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60069  kworker/u16:15-18488 (18488) [007] d..2 24573.691109: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60070           <...>-13328 (-----) [000] ...1 24573.691136: tracing_mark_write: E|13131
60071           <...>-13328 (-----) [000] ...1 24573.691139: tracing_mark_write: E|13131
60072           <...>-13328 (-----) [000] ...1 24573.691188: tracing_mark_write: E|13131
60073           <...>-13328 (-----) [000] d..1 24573.691193: sched_waking: comm=id.nn.benchmark pid=13327 prio=110 target_cpu=000
60074           <...>-13328 (-----) [000] dn.2 24573.691206: sched_wakeup: comm=id.nn.benchmark pid=13327 prio=110 target_cpu=000
60075           <...>-13328 (-----) [000] d..2 24573.691212: sched_switch: prev_comm=id.nn.benchmark prev_pid=13328 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13327 next_prio=110
60076           <...>-13327 (-----) [000] d..2 24573.691226: sched_switch: prev_comm=id.nn.benchmark prev_pid=13327 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
60077     logd.writer-563   (  555) [000] d..2 24573.691632: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13328 next_prio=110
60078           <...>-13328 (-----) [000] ...1 24573.691652: tracing_mark_write: E|13131
60079           <...>-13328 (-----) [000] d.h4 24573.691743: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
60080           <...>-13328 (-----) [000] dnh5 24573.691755: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
60081           <...>-13328 (-----) [000] dnh4 24573.691759: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
60082           <...>-13328 (-----) [000] dnh5 24573.691768: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
60083           <...>-13154 (-----) [001] d..2 24573.691777: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
60084           <...>-13328 (-----) [000] d..2 24573.691783: sched_switch: prev_comm=id.nn.benchmark prev_pid=13328 prev_prio=110 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
60085  crtc_event:111-254   (  254) [000] d..2 24573.691799: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13328 next_prio=110
60086 crtc_commit:111-253   (  253) [001] d..2 24573.691919: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
60087           <...>-13328 (-----) [000] d..1 24573.691978: sched_waking: comm=id.nn.benchmark pid=13327 prio=110 target_cpu=000
60088           <...>-13328 (-----) [000] dn.2 24573.691987: sched_wakeup: comm=id.nn.benchmark pid=13327 prio=110 target_cpu=000
60089           <...>-13328 (-----) [000] d..2 24573.691991: sched_switch: prev_comm=id.nn.benchmark prev_pid=13328 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13327 next_prio=110
60090           <...>-13327 (-----) [000] d..2 24573.692039: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
60091           <...>-13327 (-----) [000] d..3 24573.692049: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
60092           <...>-13327 (-----) [000] d..1 24573.692103: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
60093 id.nn.benchmark-13160 (13131) [007] dnh1 24573.692130: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
60094 id.nn.benchmark-13160 (13131) [007] d..2 24573.692159: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
60095           <...>-13327 (-----) [000] d.h3 24573.692160: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
60096           <...>-13131 (-----) [007] d..2 24573.692165: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60097           <...>-13327 (-----) [000] d.h3 24573.692168: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
60098           <...>-13157 (-----) [004] dnh1 24573.692170: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
60099           <...>-13157 (-----) [004] d..2 24573.692173: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
60100           <...>-13327 (-----) [000] dnh4 24573.692174: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
60101         sugov:4-560   (  560) [004] d..2 24573.692177: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
60102           <...>-13327 (-----) [000] d..2 24573.692180: sched_switch: prev_comm=id.nn.benchmark prev_pid=13327 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
60103         sugov:0-559   (  559) [000] d..2 24573.692188: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13327 next_prio=110
60104           <...>-13327 (-----) [000] d..1 24573.692242: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
60105           <...>-13327 (-----) [000] dn.2 24573.692258: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
60106           <...>-13327 (-----) [000] d..2 24573.692284: sched_switch: prev_comm=id.nn.benchmark prev_pid=13327 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
60107           <...>-13131 (-----) [000] ...1 24573.692303: tracing_mark_write: E|13131
60108           <...>-13131 (-----) [000] ...1 24573.692308: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
60109           <...>-13131 (-----) [000] ...1 24573.692314: tracing_mark_write: E|13131
60110           <...>-13131 (-----) [000] ...1 24573.692317: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
60111           <...>-13131 (-----) [000] ...1 24573.692322: tracing_mark_write: E|13131
60112           <...>-13131 (-----) [000] ...1 24573.692636: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
60113           <...>-13131 (-----) [000] ...1 24573.692672: tracing_mark_write: E|13131
60114           <...>-13131 (-----) [000] ...1 24573.692677: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
60115           <...>-13131 (-----) [000] ...1 24573.692682: tracing_mark_write: E|13131
60116           <...>-13131 (-----) [000] ...1 24573.692687: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
60117           <...>-13131 (-----) [000] ...1 24573.692691: tracing_mark_write: E|13131
60118           <...>-13131 (-----) [000] ...1 24573.692696: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
60119           <...>-13131 (-----) [000] ...1 24573.692793: tracing_mark_write: E|13131
60120           <...>-13131 (-----) [000] ...1 24573.692797: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
60121           <...>-13131 (-----) [000] d..2 24573.692807: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13327 next_prio=110
60122           <...>-13327 (-----) [000] d..2 24573.692860: sched_switch: prev_comm=id.nn.benchmark prev_pid=13327 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13328 next_prio=110
60123           <...>-13328 (-----) [000] d..2 24573.692888: sched_switch: prev_comm=id.nn.benchmark prev_pid=13328 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13329 next_prio=110
60124           <...>-13329 (-----) [000] d..2 24573.693220: sched_switch: prev_comm=id.nn.benchmark prev_pid=13329 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13330 next_prio=110
60125           <...>-13330 (-----) [000] ...1 24573.693242: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
60126           <...>-13330 (-----) [000] ...1 24573.693246: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
60127           <...>-13330 (-----) [000] ...1 24573.693364: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60128           <...>-13330 (-----) [000] ...1 24573.693369: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60129           <...>-13330 (-----) [000] d.h4 24573.694090: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
60130           <...>-13330 (-----) [000] d.h5 24573.694102: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
60131           <...>-13154 (-----) [001] d..2 24573.694109: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
60132 crtc_commit:111-253   (  253) [001] d..2 24573.694155: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
60133 id.nn.benchmark-13155 (13131) [006] d.s1 24573.694220: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=006
60134           <...>-13154 (-----) [001] d.s2 24573.694230: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
60135 id.nn.benchmark-13155 (13131) [006] d.s2 24573.694230: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
60136 id.nn.benchmark-13160 (13131) [007] d..2 24573.694236: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
60137     rcu_preempt-7     (    7) [007] d..2 24573.694242: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60138 id.nn.benchmark-13155 (13131) [006] dnh1 24573.694253: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=006
60139 id.nn.benchmark-13155 (13131) [006] d..2 24573.694278: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
60140           <...>-13154 (-----) [001] d.H3 24573.694278: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
60141           <...>-13154 (-----) [001] d.H3 24573.694285: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
60142  crtc_event:111-254   (  254) [006] d..2 24573.694286: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
60143           <...>-13157 (-----) [004] dnh1 24573.694288: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
60144           <...>-13157 (-----) [004] d..2 24573.694290: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
60145           <...>-13154 (-----) [001] d.H4 24573.694293: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
60146         sugov:4-560   (  560) [004] d..2 24573.694293: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
60147           <...>-13330 (-----) [000] d..2 24573.694301: sched_switch: prev_comm=id.nn.benchmark prev_pid=13330 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
60148         sugov:0-559   (  559) [000] d..2 24573.694310: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13330 next_prio=110
60149           <...>-13330 (-----) [000] d.h4 24573.694381: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=006
60150 id.nn.benchmark-13160 (13131) [007] dnh1 24573.694398: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
60151 id.nn.benchmark-13160 (13131) [007] d..2 24573.694401: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
60152  crtc_event:111-254   (  254) [007] d..2 24573.694407: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60153           <...>-13330 (-----) [000] ...1 24573.695572: tracing_mark_write: E|13131
60154           <...>-13330 (-----) [000] ...1 24573.695576: tracing_mark_write: E|13131
60155           <...>-13330 (-----) [000] ...1 24573.695587: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60156           <...>-13330 (-----) [000] ...1 24573.695591: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60157 id.nn.benchmark-13160 (13131) [007] d.h1 24573.696140: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=007
60158 id.nn.benchmark-13160 (13131) [007] dnh2 24573.696145: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=007
60159 id.nn.benchmark-13160 (13131) [007] d..2 24573.696149: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
60160        DispSync-23904 (23896) [007] d..1 24573.696162: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
60161           <...>-13330 (-----) [000] dnh1 24573.696175: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
60162        DispSync-23904 (23896) [007] d..2 24573.696175: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60163           <...>-13330 (-----) [000] d..2 24573.696183: sched_switch: prev_comm=id.nn.benchmark prev_pid=13330 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
60164  appEventThread-23905 (23896) [000] d..3 24573.696228: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
60165  appEventThread-23905 (23896) [000] d..4 24573.696241: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
60166  appEventThread-23905 (23896) [000] d..2 24573.696256: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
60167<...>-24151 ( 24151) [000] .... 24573.696537: binder_transaction: transaction=1670052 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
60168<...>-24151 ( 24151) [000] d..4 24573.696545: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
60169 id.nn.benchmark-13160 (13131) [007] dnh1 24573.696562: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
60170 id.nn.benchmark-13160 (13131) [007] d..2 24573.696565: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
60171  Binder:23896_5-25989 (23896) [007] .... 24573.696568: binder_transaction_received: transaction=1670052
60172  Binder:23896_5-25989 (23896) [007] d..1 24573.696583: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
60173<...>-24151 ( 24151) [000] d..3 24573.696587: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
60174  Binder:23896_5-25989 (23896) [007] d..2 24573.696602: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60175 id.nn.benchmark-13155 (13131) [006] dnh1 24573.696609: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
60176<...>-24151 ( 24151) [000] dnh2 24573.696612: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
60177 id.nn.benchmark-13155 (13131) [006] d..2 24573.696612: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
60178<...>-24151 ( 24151) [000] dnh3 24573.696643: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
60179    RenderThread-24437 (24151) [006] d..2 24573.696643: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
60180<...>-24151 ( 24151) [000] dnh3 24573.696650: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
60181           <...>-13157 (-----) [004] dnh1 24573.696653: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
60182           <...>-13157 (-----) [004] d..2 24573.696656: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
60183         sugov:4-560   (  560) [004] d..2 24573.696659: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
60184<...>-24151 ( 24151) [000] dnh4 24573.696662: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
60185<...>-24151 ( 24151) [000] d..2 24573.696669: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
60186           <...>-13154 (-----) [001] d..2 24573.696671: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
60187         sugov:0-559   (  559) [001] d..2 24573.696680: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
60188  appEventThread-23905 (23896) [000] d..2 24573.696693: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
60189<...>-24151 ( 24151) [000] d..3 24573.696790: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
60190 id.nn.benchmark-13160 (13131) [007] dnh1 24573.696809: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
60191 id.nn.benchmark-13160 (13131) [007] d..2 24573.696812: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
60192<...>-24151 ( 24151) [000] d..2 24573.696816: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13330 next_prio=110
60193    RenderThread-24437 (24151) [007] d..1 24573.696862: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
60194           <...>-13330 (-----) [000] dnh1 24573.696879: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
60195           <...>-13330 (-----) [000] d..2 24573.696885: sched_switch: prev_comm=id.nn.benchmark prev_pid=13330 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
60196    RenderThread-24437 (24151) [007] .... 24573.696899: binder_transaction: transaction=1670053 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
60197    RenderThread-24437 (24151) [007] d..4 24573.696902: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
60198    RenderThread-24437 (24151) [007] d..5 24573.696912: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
60199    RenderThread-24437 (24151) [007] d..2 24573.696917: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60200           <...>-13157 (-----) [004] d..2 24573.696918: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
60201  Binder:23896_5-25989 (23896) [004] .... 24573.696921: binder_transaction_received: transaction=1670053
60202<...>-24151 ( 24151) [000] d..2 24573.696926: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13330 next_prio=110
60203  Binder:23896_5-25989 (23896) [004] .... 24573.696946: binder_transaction: transaction=1670054 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
60204  Binder:23896_5-25989 (23896) [004] d..2 24573.696950: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
60205  Binder:23896_5-25989 (23896) [004] d..3 24573.696958: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
60206 id.nn.benchmark-13160 (13131) [007] d..2 24573.696964: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
60207    RenderThread-24437 (24151) [007] .... 24573.696966: binder_transaction_received: transaction=1670054
60208  Binder:23896_5-25989 (23896) [004] d..2 24573.696967: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
60209           <...>-13330 (-----) [000] ...1 24573.697004: tracing_mark_write: E|13131
60210           <...>-13330 (-----) [000] ...1 24573.697009: tracing_mark_write: E|13131
60211           <...>-13330 (-----) [000] ...1 24573.697025: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60212           <...>-13330 (-----) [000] ...1 24573.697029: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60213           <...>-13157 (-----) [004] d.s2 24573.697558: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
60214    RenderThread-24437 (24151) [007] d..2 24573.697566: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60215           <...>-13157 (-----) [004] d.s3 24573.697591: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
60216           <...>-13157 (-----) [004] d.s2 24573.697592: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
60217 id.nn.benchmark-13155 (13131) [006] dnh2 24573.697597: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
60218           <...>-13157 (-----) [004] d.s3 24573.697598: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
60219 id.nn.benchmark-13155 (13131) [006] dnh3 24573.697603: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
60220 id.nn.benchmark-13155 (13131) [006] dnh2 24573.697604: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
60221 id.nn.benchmark-13160 (13131) [007] d..2 24573.697604: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
60222     rcu_preempt-7     (    7) [007] d..2 24573.697607: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
60223           <...>-13157 (-----) [004] d..2 24573.697610: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
60224 id.nn.benchmark-13155 (13131) [006] d..2 24573.697613: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
60225           <...>-13154 (-----) [001] dnh1 24573.697614: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
60226         sugov:4-560   (  560) [004] d..2 24573.697615: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
60227           <...>-13154 (-----) [001] d..2 24573.697620: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
60228     rcu_preempt-7     (    7) [007] d..3 24573.697624: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=005
60229         sugov:0-559   (  559) [001] d..2 24573.697627: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
60230 id.nn.benchmark-13158 (13131) [005] d..2 24573.697630: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
60231         rcuop/0-10    (   10) [005] d..2 24573.697633: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
60232     rcu_preempt-7     (    7) [007] d..2 24573.697648: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60233 id.nn.benchmark-13160 (13131) [007] d.h3 24573.697650: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
60234 id.nn.benchmark-13160 (13131) [007] d.h4 24573.697654: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
60235 id.nn.benchmark-13160 (13131) [007] dnh4 24573.697655: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
60236         rcuop/0-10    (   10) [005] d..3 24573.697656: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
60237 id.nn.benchmark-13160 (13131) [007] d..2 24573.697659: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
60238           <...>-13157 (-----) [004] d..2 24573.697662: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
60239         rcuop/1-21    (   21) [004] d..2 24573.697668: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
60240         rcuop/0-10    (   10) [005] d..2 24573.697672: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
60241         rcuop/0-10    (   10) [005] d..3 24573.697681: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
60242         rcuop/0-10    (   10) [005] d..2 24573.697684: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
60243           <...>-13157 (-----) [004] d..2 24573.697687: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
60244     rcu_preempt-7     (    7) [004] d..2 24573.697691: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
60245  kworker/u16:15-18488 (18488) [006] d..2 24573.697714: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
60246    RenderThread-24437 (24151) [007] .... 24573.697740: binder_transaction: transaction=1670055 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
60247    RenderThread-24437 (24151) [007] d..4 24573.697745: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
60248    RenderThread-24437 (24151) [007] d..5 24573.697754: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
60249    RenderThread-24437 (24151) [007] d..2 24573.697758: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60250           <...>-13157 (-----) [004] d..2 24573.697759: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
60251  Binder:23896_5-25989 (23896) [004] .... 24573.697761: binder_transaction_received: transaction=1670055
60252           <...>-13330 (-----) [000] d.h2 24573.697775: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
60253 id.nn.benchmark-13158 (13131) [005] dnh1 24573.697799: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
60254 id.nn.benchmark-13158 (13131) [005] d..2 24573.697802: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
60255  Binder:23896_5-25989 (23896) [004] .... 24573.697814: binder_transaction: transaction=1670056 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
60256  Binder:23896_5-25989 (23896) [004] d..2 24573.697816: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
60257 kgsl_worker_thr-246   (  246) [005] d..2 24573.697824: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
60258  Binder:23896_5-25989 (23896) [004] d..3 24573.697827: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
60259           <...>-13330 (-----) [000] ...1 24573.697829: tracing_mark_write: E|13131
60260 kgsl_worker_thr-246   (  246) [005] d..3 24573.697830: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
60261           <...>-13330 (-----) [000] ...1 24573.697833: tracing_mark_write: E|13131
60262 id.nn.benchmark-13160 (13131) [007] d..2 24573.697834: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
60263    RenderThread-24437 (24151) [007] .... 24573.697836: binder_transaction_received: transaction=1670056
60264  Binder:23896_5-25989 (23896) [004] d..2 24573.697836: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
60265 id.nn.benchmark-13155 (13131) [006] d..2 24573.697837: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
60266 kgsl_worker_thr-246   (  246) [005] d..2 24573.697838: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
60267           <...>-13330 (-----) [000] ...1 24573.697845: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60268           <...>-13330 (-----) [000] ...1 24573.697849: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60269    RenderThread-24437 (24151) [007] d..2 24573.697857: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60270  kworker/u16:15-18488 (18488) [006] d..2 24573.697953: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
60271           <...>-13330 (-----) [000] ...1 24573.698078: tracing_mark_write: E|13131
60272           <...>-13330 (-----) [000] ...1 24573.698082: tracing_mark_write: E|13131
60273           <...>-13330 (-----) [000] ...1 24573.698093: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60274           <...>-13330 (-----) [000] ...1 24573.698097: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60275           <...>-13330 (-----) [000] ...1 24573.698492: tracing_mark_write: E|13131
60276           <...>-13330 (-----) [000] ...1 24573.698495: tracing_mark_write: E|13131
60277           <...>-13330 (-----) [000] ...1 24573.698506: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60278           <...>-13330 (-----) [000] ...1 24573.698509: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60279           <...>-13330 (-----) [000] ...1 24573.698894: tracing_mark_write: E|13131
60280           <...>-13330 (-----) [000] ...1 24573.698898: tracing_mark_write: E|13131
60281           <...>-13330 (-----) [000] ...1 24573.698916: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60282           <...>-13330 (-----) [000] ...1 24573.698920: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60283           <...>-13330 (-----) [000] ...1 24573.699110: tracing_mark_write: E|13131
60284           <...>-13330 (-----) [000] ...1 24573.699113: tracing_mark_write: E|13131
60285           <...>-13330 (-----) [000] ...1 24573.699126: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60286           <...>-13330 (-----) [000] ...1 24573.699130: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60287           <...>-13330 (-----) [000] ...1 24573.699201: tracing_mark_write: E|13131
60288           <...>-13330 (-----) [000] ...1 24573.699205: tracing_mark_write: E|13131
60289           <...>-13330 (-----) [000] ...1 24573.699215: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
60290           <...>-13330 (-----) [000] ...1 24573.699219: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
60291           <...>-13330 (-----) [000] ...1 24573.699500: tracing_mark_write: E|13131
60292           <...>-13330 (-----) [000] ...1 24573.699503: tracing_mark_write: E|13131
60293           <...>-13330 (-----) [000] ...1 24573.699513: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
60294           <...>-13330 (-----) [000] ...1 24573.699517: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
60295           <...>-13330 (-----) [000] ...1 24573.699563: tracing_mark_write: E|13131
60296           <...>-13330 (-----) [000] ...1 24573.699566: tracing_mark_write: E|13131
60297           <...>-13330 (-----) [000] ...1 24573.699576: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
60298           <...>-13330 (-----) [000] ...1 24573.699580: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
60299           <...>-13330 (-----) [000] ...1 24573.699594: tracing_mark_write: E|13131
60300           <...>-13330 (-----) [000] ...1 24573.699597: tracing_mark_write: E|13131
60301           <...>-13330 (-----) [000] ...1 24573.699606: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
60302           <...>-13330 (-----) [000] ...1 24573.699609: tracing_mark_write: E|13131
60303           <...>-13330 (-----) [000] ...1 24573.699618: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
60304           <...>-13330 (-----) [000] ...1 24573.699622: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
60305 id.nn.benchmark-13160 (13131) [007] d.h1 24573.700146: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=007
60306 id.nn.benchmark-13160 (13131) [007] dnh2 24573.700152: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=007
60307 id.nn.benchmark-13160 (13131) [007] d..2 24573.700156: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
60308        DispSync-23904 (23896) [007] d..1 24573.700164: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
60309        DispSync-23904 (23896) [007] d..2 24573.700175: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60310           <...>-13154 (-----) [001] dnh1 24573.700176: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
60311           <...>-13154 (-----) [001] d..2 24573.700182: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
60312   sfEventThread-23906 (23896) [001] d..3 24573.700211: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
60313   sfEventThread-23906 (23896) [001] d..4 24573.700223: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
60314           <...>-13330 (-----) [000] d..2 24573.700234: sched_switch: prev_comm=id.nn.benchmark prev_pid=13330 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
60315   sfEventThread-23906 (23896) [001] d..2 24573.700236: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
60316  surfaceflinger-23896 (23896) [000] d..1 24573.700480: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
60317  surfaceflinger-23896 (23896) [000] d..2 24573.700491: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
60318           <...>-13154 (-----) [001] d..2 24573.700500: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
60319   sfEventThread-23906 (23896) [001] d..2 24573.700514: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
60320  surfaceflinger-23896 (23896) [000] ...1 24573.700619: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
60321  surfaceflinger-23896 (23896) [000] ...1 24573.700623: tracing_mark_write: E|23896
60322  surfaceflinger-23896 (23896) [000] .... 24573.700663: binder_transaction: transaction=1670057 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
60323  surfaceflinger-23896 (23896) [000] ...2 24573.700682: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
60324  surfaceflinger-23896 (23896) [000] d..4 24573.700688: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
60325 id.nn.benchmark-13160 (13131) [007] dnh1 24573.700704: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
60326 id.nn.benchmark-13160 (13131) [007] d..2 24573.700707: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
60327  surfaceflinger-23896 (23896) [000] d..2 24573.700711: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13330 next_prio=110
60328  HwBinder:598_3-633   (  598) [007] .... 24573.700711: binder_transaction_received: transaction=1670057
60329  HwBinder:598_3-633   (  598) [007] ...1 24573.700735: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
60330  HwBinder:598_3-633   (  598) [007] ...1 24573.700786: tracing_mark_write: B|598|HWCSession::PresentDisplay::
60331  HwBinder:598_3-633   (  598) [007] ...1 24573.700870: tracing_mark_write: B|598|HWDeviceDRM::Commit::
60332  HwBinder:598_3-633   (  598) [007] ...1 24573.700874: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
60333           <...>-13157 (-----) [004] d.s2 24573.700889: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
60334           <...>-13157 (-----) [004] d.s3 24573.700895: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
60335 id.nn.benchmark-13155 (13131) [006] d..2 24573.700898: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
60336           <...>-13330 (-----) [000] ...1 24573.700990: tracing_mark_write: E|13131
60337           <...>-13330 (-----) [000] ...1 24573.700994: tracing_mark_write: E|13131
60338           <...>-13330 (-----) [000] ...1 24573.701004: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60339           <...>-13330 (-----) [000] ...1 24573.701008: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60340  HwBinder:598_3-633   (  598) [007] d..2 24573.701097: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
60341           <...>-13154 (-----) [001] dnh1 24573.701110: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
60342           <...>-13154 (-----) [001] d..2 24573.701116: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
60343  HwBinder:598_3-633   (  598) [007] ...1 24573.701130: tracing_mark_write: E|598
60344  HwBinder:598_3-633   (  598) [007] ...1 24573.701131: tracing_mark_write: E|598
60345  HwBinder:598_3-633   (  598) [007] ...1 24573.701153: tracing_mark_write: E|598
60346  HwBinder:598_3-633   (  598) [007] ...1 24573.701171: tracing_mark_write: E|598
60347  HwBinder:598_3-633   (  598) [007] .... 24573.701177: binder_transaction: transaction=1670058 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
60348  HwBinder:598_3-633   (  598) [007] d..2 24573.701182: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
60349  HwBinder:598_3-633   (  598) [007] .... 24573.701188: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
60350           <...>-13330 (-----) [000] dnh1 24573.701193: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
60351  kworker/u16:15-18488 (18488) [006] d..2 24573.701198: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
60352           <...>-13330 (-----) [000] d..2 24573.701200: sched_switch: prev_comm=id.nn.benchmark prev_pid=13330 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
60353  surfaceflinger-23896 (23896) [000] .... 24573.701205: binder_transaction_received: transaction=1670058
60354  HwBinder:598_3-633   (  598) [007] d..2 24573.701209: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60355 id.nn.benchmark-13159 (13131) [003] d.s2 24573.701238: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
60356 id.nn.benchmark-13160 (13131) [007] d.h1 24573.701259: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
60357 id.nn.benchmark-13160 (13131) [007] dnh1 24573.701261: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
60358 id.nn.benchmark-13160 (13131) [007] d..2 24573.701263: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
60359  kworker/u16:15-18488 (18488) [007] d..2 24573.701272: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60360  surfaceflinger-23896 (23896) [000] d..2 24573.701439: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13330 next_prio=110
60361           <...>-13330 (-----) [000] ...1 24573.701451: tracing_mark_write: E|13131
60362           <...>-13330 (-----) [000] ...1 24573.701455: tracing_mark_write: E|13131
60363           <...>-13330 (-----) [000] ...1 24573.701524: tracing_mark_write: E|13131
60364           <...>-13330 (-----) [000] d..1 24573.701529: sched_waking: comm=id.nn.benchmark pid=13329 prio=110 target_cpu=000
60365           <...>-13330 (-----) [000] dn.2 24573.701542: sched_wakeup: comm=id.nn.benchmark pid=13329 prio=110 target_cpu=000
60366           <...>-13330 (-----) [000] d..2 24573.701547: sched_switch: prev_comm=id.nn.benchmark prev_pid=13330 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13329 next_prio=110
60367           <...>-13329 (-----) [000] d..2 24573.701562: sched_switch: prev_comm=id.nn.benchmark prev_pid=13329 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13330 next_prio=110
60368           <...>-13330 (-----) [000] ...1 24573.701578: tracing_mark_write: E|13131
60369 crtc_commit:111-253   (  253) [001] d..2 24573.701742: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
60370           <...>-13330 (-----) [000] d..1 24573.701781: sched_waking: comm=id.nn.benchmark pid=13329 prio=110 target_cpu=000
60371           <...>-13330 (-----) [000] dn.2 24573.701789: sched_wakeup: comm=id.nn.benchmark pid=13329 prio=110 target_cpu=000
60372           <...>-13330 (-----) [000] d..2 24573.701794: sched_switch: prev_comm=id.nn.benchmark prev_pid=13330 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13329 next_prio=110
60373           <...>-13329 (-----) [000] d..1 24573.701895: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
60374           <...>-13157 (-----) [004] dnh1 24573.701920: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
60375           <...>-13157 (-----) [004] d..2 24573.701947: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
60376           <...>-13329 (-----) [000] d.h3 24573.701948: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
60377           <...>-13131 (-----) [004] d..2 24573.701954: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
60378           <...>-13329 (-----) [000] d.h3 24573.701956: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
60379           <...>-13157 (-----) [004] dnh1 24573.701959: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
60380           <...>-13157 (-----) [004] d..2 24573.701961: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
60381           <...>-13329 (-----) [000] d.h4 24573.701964: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
60382         sugov:4-560   (  560) [004] d..2 24573.701965: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
60383           <...>-13154 (-----) [001] d..2 24573.701972: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
60384         sugov:0-559   (  559) [001] d..2 24573.701979: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
60385           <...>-13329 (-----) [000] d..1 24573.702022: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
60386           <...>-13329 (-----) [000] dn.2 24573.702038: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
60387           <...>-13329 (-----) [000] d..2 24573.702062: sched_switch: prev_comm=id.nn.benchmark prev_pid=13329 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
60388           <...>-13131 (-----) [000] ...1 24573.702082: tracing_mark_write: E|13131
60389           <...>-13131 (-----) [000] ...1 24573.702088: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
60390           <...>-13131 (-----) [000] ...1 24573.702094: tracing_mark_write: E|13131
60391           <...>-13131 (-----) [000] ...1 24573.702097: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
60392           <...>-13131 (-----) [000] ...1 24573.702103: tracing_mark_write: E|13131
60393           <...>-13131 (-----) [000] ...1 24573.702416: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
60394           <...>-13131 (-----) [000] ...1 24573.702453: tracing_mark_write: E|13131
60395           <...>-13131 (-----) [000] ...1 24573.702457: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
60396           <...>-13131 (-----) [000] ...1 24573.702462: tracing_mark_write: E|13131
60397           <...>-13131 (-----) [000] ...1 24573.702466: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
60398           <...>-13131 (-----) [000] ...1 24573.702471: tracing_mark_write: E|13131
60399           <...>-13131 (-----) [000] ...1 24573.702474: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
60400           <...>-13131 (-----) [000] ...1 24573.702589: tracing_mark_write: E|13131
60401           <...>-13131 (-----) [000] ...1 24573.702593: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
60402           <...>-13131 (-----) [000] d..2 24573.702602: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13329 next_prio=110
60403           <...>-13329 (-----) [000] d..2 24573.702638: sched_switch: prev_comm=id.nn.benchmark prev_pid=13329 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13330 next_prio=110
60404           <...>-13330 (-----) [000] d..2 24573.702660: sched_switch: prev_comm=id.nn.benchmark prev_pid=13330 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
60405     logd.writer-563   (  555) [000] d..2 24573.703113: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13331 next_prio=110
60406           <...>-13331 (-----) [000] d..2 24573.703166: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
60407           <...>-13331 (-----) [000] d..3 24573.703177: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
60408           <...>-13331 (-----) [000] d..2 24573.703467: sched_switch: prev_comm=id.nn.benchmark prev_pid=13331 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13332 next_prio=110
60409           <...>-13332 (-----) [000] ...1 24573.703489: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
60410           <...>-13332 (-----) [000] ...1 24573.703494: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
60411           <...>-13332 (-----) [000] ...1 24573.703613: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60412           <...>-13332 (-----) [000] ...1 24573.703618: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60413           <...>-13157 (-----) [004] d.s1 24573.704220: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
60414           <...>-13157 (-----) [004] d.s2 24573.704230: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
60415 id.nn.benchmark-13160 (13131) [007] d..2 24573.704240: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
60416     rcu_preempt-7     (    7) [007] d..2 24573.704246: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60417           <...>-13332 (-----) [000] ...1 24573.705605: tracing_mark_write: E|13131
60418           <...>-13332 (-----) [000] ...1 24573.705609: tracing_mark_write: E|13131
60419           <...>-13332 (-----) [000] ...1 24573.705620: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60420           <...>-13332 (-----) [000] ...1 24573.705624: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60421           <...>-13332 (-----) [000] ...1 24573.706324: tracing_mark_write: E|13131
60422           <...>-13332 (-----) [000] ...1 24573.706327: tracing_mark_write: E|13131
60423           <...>-13332 (-----) [000] ...1 24573.706340: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60424           <...>-13332 (-----) [000] ...1 24573.706344: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60425           <...>-13332 (-----) [000] ...1 24573.706671: tracing_mark_write: E|13131
60426           <...>-13332 (-----) [000] ...1 24573.706674: tracing_mark_write: E|13131
60427           <...>-13332 (-----) [000] ...1 24573.706685: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60428           <...>-13332 (-----) [000] ...1 24573.706689: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60429           <...>-13332 (-----) [000] ...1 24573.706913: tracing_mark_write: E|13131
60430           <...>-13332 (-----) [000] ...1 24573.706917: tracing_mark_write: E|13131
60431           <...>-13332 (-----) [000] ...1 24573.706928: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60432           <...>-13332 (-----) [000] ...1 24573.706932: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60433           <...>-13332 (-----) [000] ...1 24573.707327: tracing_mark_write: E|13131
60434           <...>-13332 (-----) [000] ...1 24573.707331: tracing_mark_write: E|13131
60435           <...>-13332 (-----) [000] ...1 24573.707341: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60436           <...>-13332 (-----) [000] ...1 24573.707345: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60437           <...>-13157 (-----) [004] d.s2 24573.707556: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
60438           <...>-13157 (-----) [004] d.s3 24573.707562: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
60439           <...>-13154 (-----) [001] d.s2 24573.707568: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
60440 id.nn.benchmark-13160 (13131) [007] d..2 24573.707569: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
60441 id.nn.benchmark-13155 (13131) [006] dnh1 24573.707589: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=006
60442 id.nn.benchmark-13155 (13131) [006] d..2 24573.707592: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
60443     rcu_preempt-7     (    7) [006] d..2 24573.707594: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=005
60444     rcu_preempt-7     (    7) [006] d..3 24573.707601: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=005
60445     rcu_preempt-7     (    7) [006] d..2 24573.707605: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
60446 id.nn.benchmark-13158 (13131) [005] d..2 24573.707608: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
60447         rcuop/0-10    (   10) [005] d..2 24573.707632: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=006
60448         rcuop/0-10    (   10) [005] d..3 24573.707638: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=006
60449         rcuop/0-10    (   10) [005] d..2 24573.707642: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
60450 id.nn.benchmark-13155 (13131) [006] d..2 24573.707645: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
60451     rcu_preempt-7     (    7) [006] d..2 24573.707649: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
60452  kworker/u16:15-18488 (18488) [007] d..2 24573.707659: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60453           <...>-13332 (-----) [000] ...1 24573.707780: tracing_mark_write: E|13131
60454           <...>-13332 (-----) [000] ...1 24573.707784: tracing_mark_write: E|13131
60455           <...>-13332 (-----) [000] ...1 24573.707800: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60456           <...>-13332 (-----) [000] ...1 24573.707804: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60457           <...>-13332 (-----) [000] ...1 24573.707993: tracing_mark_write: E|13131
60458           <...>-13332 (-----) [000] ...1 24573.707996: tracing_mark_write: E|13131
60459           <...>-13332 (-----) [000] ...1 24573.708008: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60460           <...>-13332 (-----) [000] ...1 24573.708012: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60461           <...>-13332 (-----) [000] ...1 24573.708080: tracing_mark_write: E|13131
60462           <...>-13332 (-----) [000] ...1 24573.708084: tracing_mark_write: E|13131
60463           <...>-13332 (-----) [000] ...1 24573.708095: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
60464           <...>-13332 (-----) [000] ...1 24573.708100: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
60465           <...>-13332 (-----) [000] d.h4 24573.708216: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
60466           <...>-13332 (-----) [000] d.h4 24573.708233: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
60467 id.nn.benchmark-13160 (13131) [007] dnh1 24573.708235: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
60468 id.nn.benchmark-13160 (13131) [007] d..2 24573.708237: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
60469           <...>-13332 (-----) [000] d.h5 24573.708243: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
60470  crtc_event:111-254   (  254) [007] d..2 24573.708248: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60471           <...>-13154 (-----) [001] d..2 24573.708252: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
60472 crtc_commit:111-253   (  253) [001] d..2 24573.708362: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
60473           <...>-13332 (-----) [000] ...1 24573.708485: tracing_mark_write: E|13131
60474           <...>-13332 (-----) [000] ...1 24573.708489: tracing_mark_write: E|13131
60475           <...>-13332 (-----) [000] ...1 24573.708498: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
60476           <...>-13332 (-----) [000] ...1 24573.708502: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
60477           <...>-13332 (-----) [000] ...1 24573.708547: tracing_mark_write: E|13131
60478           <...>-13332 (-----) [000] ...1 24573.708550: tracing_mark_write: E|13131
60479           <...>-13332 (-----) [000] ...1 24573.708558: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
60480           <...>-13332 (-----) [000] ...1 24573.708562: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
60481           <...>-13332 (-----) [000] ...1 24573.708578: tracing_mark_write: E|13131
60482           <...>-13332 (-----) [000] ...1 24573.708581: tracing_mark_write: E|13131
60483           <...>-13332 (-----) [000] ...1 24573.708590: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
60484           <...>-13332 (-----) [000] ...1 24573.708593: tracing_mark_write: E|13131
60485           <...>-13332 (-----) [000] ...1 24573.708602: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
60486           <...>-13332 (-----) [000] ...1 24573.708606: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
60487           <...>-13332 (-----) [000] ...1 24573.709458: tracing_mark_write: E|13131
60488           <...>-13332 (-----) [000] ...1 24573.709460: tracing_mark_write: E|13131
60489           <...>-13332 (-----) [000] ...1 24573.709469: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60490           <...>-13332 (-----) [000] ...1 24573.709472: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60491           <...>-13332 (-----) [000] ...1 24573.709555: tracing_mark_write: E|13131
60492           <...>-13332 (-----) [000] ...1 24573.709558: tracing_mark_write: E|13131
60493           <...>-13332 (-----) [000] ...1 24573.709607: tracing_mark_write: E|13131
60494           <...>-13332 (-----) [000] d..1 24573.709611: sched_waking: comm=id.nn.benchmark pid=13331 prio=110 target_cpu=000
60495           <...>-13332 (-----) [000] dn.2 24573.709624: sched_wakeup: comm=id.nn.benchmark pid=13331 prio=110 target_cpu=000
60496           <...>-13332 (-----) [000] d..2 24573.709629: sched_switch: prev_comm=id.nn.benchmark prev_pid=13332 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13331 next_prio=110
60497           <...>-13331 (-----) [000] d..2 24573.709641: sched_switch: prev_comm=id.nn.benchmark prev_pid=13331 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13332 next_prio=110
60498           <...>-13332 (-----) [000] ...1 24573.709656: tracing_mark_write: E|13131
60499           <...>-13332 (-----) [000] d..1 24573.709843: sched_waking: comm=id.nn.benchmark pid=13331 prio=110 target_cpu=000
60500           <...>-13332 (-----) [000] dn.2 24573.709853: sched_wakeup: comm=id.nn.benchmark pid=13331 prio=110 target_cpu=000
60501           <...>-13332 (-----) [000] d..2 24573.709858: sched_switch: prev_comm=id.nn.benchmark prev_pid=13332 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13331 next_prio=110
60502           <...>-13331 (-----) [000] d..1 24573.709948: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
60503           <...>-13157 (-----) [004] dnh1 24573.709973: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
60504           <...>-13157 (-----) [004] d..2 24573.709975: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
60505           <...>-13131 (-----) [004] d..2 24573.710005: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
60506           <...>-13331 (-----) [000] d.h3 24573.710006: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
60507           <...>-13331 (-----) [000] d.h3 24573.710015: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
60508           <...>-13157 (-----) [004] dnh1 24573.710018: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
60509           <...>-13157 (-----) [004] d..2 24573.710020: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
60510           <...>-13331 (-----) [000] d.h4 24573.710024: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
60511         sugov:4-560   (  560) [004] d..2 24573.710024: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
60512           <...>-13154 (-----) [001] d..2 24573.710032: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
60513         sugov:0-559   (  559) [001] d..2 24573.710040: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
60514           <...>-13331 (-----) [000] d..1 24573.710077: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
60515           <...>-13157 (-----) [004] dnh1 24573.710089: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
60516           <...>-13157 (-----) [004] d..2 24573.710091: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
60517           <...>-13131 (-----) [004] ...1 24573.710106: tracing_mark_write: E|13131
60518           <...>-13131 (-----) [004] ...1 24573.710109: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
60519           <...>-13131 (-----) [004] ...1 24573.710111: tracing_mark_write: E|13131
60520           <...>-13131 (-----) [004] ...1 24573.710113: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
60521           <...>-13131 (-----) [004] ...1 24573.710115: tracing_mark_write: E|13131
60522           <...>-13331 (-----) [000] d..2 24573.710119: sched_switch: prev_comm=id.nn.benchmark prev_pid=13331 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13332 next_prio=110
60523           <...>-13332 (-----) [000] d..2 24573.710138: sched_switch: prev_comm=id.nn.benchmark prev_pid=13332 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
60524           <...>-13131 (-----) [004] ...1 24573.710173: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
60525           <...>-13131 (-----) [004] ...1 24573.710199: tracing_mark_write: E|13131
60526           <...>-13131 (-----) [004] ...1 24573.710201: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
60527           <...>-13131 (-----) [004] ...1 24573.710203: tracing_mark_write: E|13131
60528           <...>-13131 (-----) [004] ...1 24573.710205: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
60529           <...>-13131 (-----) [004] ...1 24573.710207: tracing_mark_write: E|13131
60530           <...>-13131 (-----) [004] ...1 24573.710208: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
60531           <...>-13131 (-----) [004] ...1 24573.710255: tracing_mark_write: E|13131
60532           <...>-13131 (-----) [004] ...1 24573.710257: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
60533           <...>-13131 (-----) [004] d..2 24573.710262: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
60534     logd.writer-563   (  555) [000] d.h4 24573.710565: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
60535     logd.writer-563   (  555) [000] d.h5 24573.710579: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
60536           <...>-13154 (-----) [001] d..2 24573.710585: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
60537 crtc_commit:111-253   (  253) [001] d..2 24573.710629: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
60538     logd.writer-563   (  555) [000] d..2 24573.710648: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13333 next_prio=110
60539           <...>-13333 (-----) [000] d.h4 24573.710679: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
60540           <...>-13333 (-----) [000] d.h4 24573.710687: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
60541           <...>-13157 (-----) [004] dnh1 24573.710690: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
60542           <...>-13157 (-----) [004] d..2 24573.710694: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
60543           <...>-13333 (-----) [000] dnh5 24573.710697: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
60544         sugov:4-560   (  560) [004] d..2 24573.710698: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
60545           <...>-13333 (-----) [000] d..2 24573.710704: sched_switch: prev_comm=id.nn.benchmark prev_pid=13333 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
60546         sugov:0-559   (  559) [000] d..2 24573.710711: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13333 next_prio=110
60547           <...>-13333 (-----) [000] d..2 24573.710765: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
60548           <...>-13333 (-----) [000] d..3 24573.710775: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
60549           <...>-13333 (-----) [000] d.h4 24573.710856: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
60550 id.nn.benchmark-13160 (13131) [007] dnh1 24573.710868: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
60551 id.nn.benchmark-13160 (13131) [007] d..2 24573.710870: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
60552  crtc_event:111-254   (  254) [007] d..2 24573.710874: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60553           <...>-13157 (-----) [004] d.s2 24573.710891: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
60554           <...>-13157 (-----) [004] d.s3 24573.710898: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
60555           <...>-13154 (-----) [001] d.s2 24573.710899: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
60556 id.nn.benchmark-13160 (13131) [007] d..2 24573.710905: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
60557  kworker/u16:15-18488 (18488) [007] dnh3 24573.710912: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
60558  kworker/u16:15-18488 (18488) [007] d..2 24573.710915: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
60559  crtc_event:111-254   (  254) [007] d..2 24573.710921: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
60560  kworker/u16:15-18488 (18488) [007] d..2 24573.711075: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60561 id.nn.benchmark-13159 (13131) [003] d.s2 24573.711112: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
60562 id.nn.benchmark-13160 (13131) [007] d.h1 24573.711125: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
60563 id.nn.benchmark-13160 (13131) [007] dnh1 24573.711127: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
60564 id.nn.benchmark-13160 (13131) [007] d..2 24573.711129: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
60565           <...>-13333 (-----) [000] d..2 24573.711156: sched_switch: prev_comm=id.nn.benchmark prev_pid=13333 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
60566  kworker/u16:15-18488 (18488) [007] d..2 24573.711247: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60567     logd.writer-563   (  555) [000] d..2 24573.711330: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13334 next_prio=110
60568           <...>-13334 (-----) [000] ...1 24573.711357: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
60569           <...>-13334 (-----) [000] ...1 24573.711362: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
60570           <...>-13334 (-----) [000] d..2 24573.711417: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
60571           <...>-13334 (-----) [000] d..3 24573.711428: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
60572           <...>-13334 (-----) [000] ...1 24573.711492: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60573           <...>-13334 (-----) [000] ...1 24573.711497: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60574 id.nn.benchmark-13160 (13131) [007] d.h1 24573.712613: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=007
60575 id.nn.benchmark-13160 (13131) [007] dnh2 24573.712618: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=007
60576 id.nn.benchmark-13160 (13131) [007] d..2 24573.712621: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
60577        DispSync-23904 (23896) [007] d..1 24573.712634: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
60578        DispSync-23904 (23896) [007] d..2 24573.712647: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60579           <...>-13334 (-----) [000] dnh1 24573.712648: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
60580           <...>-13334 (-----) [000] d..2 24573.712656: sched_switch: prev_comm=id.nn.benchmark prev_pid=13334 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
60581  appEventThread-23905 (23896) [000] d..3 24573.712700: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
60582 id.nn.benchmark-13155 (13131) [006] dnh1 24573.712726: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
60583 id.nn.benchmark-13155 (13131) [006] d..2 24573.712752: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
60584  appEventThread-23905 (23896) [000] d.h3 24573.712753: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
60585  appEventThread-23905 (23896) [000] d.h3 24573.712760: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
60586           <...>-13157 (-----) [004] dnh1 24573.712763: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
60587           <...>-13157 (-----) [004] d..2 24573.712766: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
60588         sugov:4-560   (  560) [004] d..2 24573.712769: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
60589  appEventThread-23905 (23896) [000] d.h4 24573.712772: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
60590           <...>-13154 (-----) [001] d..2 24573.712781: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
60591  appEventThread-23905 (23896) [000] d..2 24573.712788: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13334 next_prio=110
60592         sugov:0-559   (  559) [001] d..2 24573.712789: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
60593<...>-24151 ( 24151) [006] .... 24573.712935: binder_transaction: transaction=1670059 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
60594<...>-24151 ( 24151) [006] d..4 24573.712940: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
60595<...>-24151 ( 24151) [006] d..5 24573.712950: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
60596           <...>-13157 (-----) [004] d..2 24573.712956: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
60597  Binder:23896_5-25989 (23896) [004] .... 24573.712960: binder_transaction_received: transaction=1670059
60598<...>-24151 ( 24151) [006] d..3 24573.712972: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
60599  Binder:23896_5-25989 (23896) [004] d..1 24573.712975: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
60600<...>-24151 ( 24151) [006] d..4 24573.712980: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
60601 id.nn.benchmark-13160 (13131) [007] d..2 24573.712986: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
60602           <...>-13334 (-----) [000] dnh1 24573.712987: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
60603           <...>-13334 (-----) [000] d..2 24573.712993: sched_switch: prev_comm=id.nn.benchmark prev_pid=13334 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
60604  Binder:23896_5-25989 (23896) [004] d..2 24573.712994: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
60605    RenderThread-24437 (24151) [007] d..2 24573.713008: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60606  appEventThread-23905 (23896) [000] d..2 24573.713011: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13334 next_prio=110
60607<...>-24151 ( 24151) [006] d..3 24573.713035: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
60608<...>-24151 ( 24151) [006] d..4 24573.713043: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
60609<...>-24151 ( 24151) [006] d..2 24573.713048: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
60610 id.nn.benchmark-13160 (13131) [007] d..2 24573.713049: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
60611    RenderThread-24437 (24151) [007] d..1 24573.713100: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
60612    RenderThread-24437 (24151) [007] d..2 24573.713108: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
60613 id.nn.benchmark-13155 (13131) [006] d..2 24573.713114: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
60614<...>-24151 ( 24151) [006] d..2 24573.713135: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
60615    RenderThread-24437 (24151) [007] .... 24573.713139: binder_transaction: transaction=1670060 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
60616    RenderThread-24437 (24151) [007] d..4 24573.713141: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
60617    RenderThread-24437 (24151) [007] d..5 24573.713149: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
60618    RenderThread-24437 (24151) [007] d..2 24573.713153: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60619           <...>-13157 (-----) [004] d..2 24573.713155: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
60620  Binder:23896_5-25989 (23896) [004] .... 24573.713157: binder_transaction_received: transaction=1670060
60621  Binder:23896_5-25989 (23896) [004] .... 24573.713181: binder_transaction: transaction=1670061 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
60622  Binder:23896_5-25989 (23896) [004] d..2 24573.713186: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
60623  Binder:23896_5-25989 (23896) [004] d..3 24573.713193: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
60624 id.nn.benchmark-13160 (13131) [007] d..2 24573.713199: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
60625    RenderThread-24437 (24151) [007] .... 24573.713201: binder_transaction_received: transaction=1670061
60626  Binder:23896_5-25989 (23896) [004] d..2 24573.713202: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
60627    RenderThread-24437 (24151) [007] d..2 24573.713788: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60628 id.nn.benchmark-13160 (13131) [007] d.h1 24573.713887: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
60629 id.nn.benchmark-13160 (13131) [007] d.h2 24573.713892: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
60630 id.nn.benchmark-13160 (13131) [007] dnh2 24573.713894: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
60631 id.nn.benchmark-13160 (13131) [007] d..2 24573.713897: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
60632    RenderThread-24437 (24151) [007] .... 24573.713974: binder_transaction: transaction=1670062 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
60633    RenderThread-24437 (24151) [007] d..4 24573.713978: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
60634    RenderThread-24437 (24151) [007] d..5 24573.713985: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
60635    RenderThread-24437 (24151) [007] d..2 24573.713989: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60636           <...>-13157 (-----) [004] d..2 24573.713992: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
60637  Binder:23896_5-25989 (23896) [004] .... 24573.713994: binder_transaction_received: transaction=1670062
60638           <...>-13334 (-----) [000] d.h2 24573.714014: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
60639 id.nn.benchmark-13158 (13131) [005] dnh1 24573.714029: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
60640 id.nn.benchmark-13158 (13131) [005] d..2 24573.714032: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
60641           <...>-13334 (-----) [000] ...1 24573.714042: tracing_mark_write: E|13131
60642           <...>-13334 (-----) [000] ...1 24573.714046: tracing_mark_write: E|13131
60643  Binder:23896_5-25989 (23896) [004] .... 24573.714048: binder_transaction: transaction=1670063 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
60644  Binder:23896_5-25989 (23896) [004] d..2 24573.714050: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
60645 kgsl_worker_thr-246   (  246) [005] d..2 24573.714051: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
60646  Binder:23896_5-25989 (23896) [004] d..3 24573.714057: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
60647 kgsl_worker_thr-246   (  246) [005] d..3 24573.714059: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
60648           <...>-13334 (-----) [000] ...1 24573.714060: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60649 id.nn.benchmark-13160 (13131) [007] d..2 24573.714063: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
60650           <...>-13334 (-----) [000] ...1 24573.714065: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60651 kgsl_worker_thr-246   (  246) [005] d..2 24573.714065: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
60652    RenderThread-24437 (24151) [007] .... 24573.714065: binder_transaction_received: transaction=1670063
60653  Binder:23896_5-25989 (23896) [004] d..2 24573.714067: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
60654    RenderThread-24437 (24151) [007] d..2 24573.714088: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
60655  kworker/u16:15-18488 (18488) [007] d..2 24573.714107: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60656 id.nn.benchmark-13155 (13131) [006] d.s1 24573.714225: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=006
60657 id.nn.benchmark-13155 (13131) [006] d.s2 24573.714237: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
60658 id.nn.benchmark-13160 (13131) [007] d..2 24573.714243: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
60659     rcu_preempt-7     (    7) [007] d..2 24573.714246: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=005
60660     rcu_preempt-7     (    7) [007] d..3 24573.714257: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=006
60661     rcu_preempt-7     (    7) [007] d..2 24573.714260: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60662 id.nn.benchmark-13155 (13131) [006] d..2 24573.714263: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
60663         rcuop/0-10    (   10) [006] d..2 24573.714282: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
60664         rcuop/0-10    (   10) [006] d..3 24573.714287: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
60665         rcuop/0-10    (   10) [006] d..2 24573.714290: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
60666 id.nn.benchmark-13160 (13131) [007] d..2 24573.714293: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
60667     rcu_preempt-7     (    7) [007] d..2 24573.714297: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60668           <...>-13334 (-----) [000] ...1 24573.714789: tracing_mark_write: E|13131
60669           <...>-13334 (-----) [000] ...1 24573.714793: tracing_mark_write: E|13131
60670           <...>-13334 (-----) [000] ...1 24573.714812: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60671           <...>-13334 (-----) [000] ...1 24573.714816: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60672           <...>-13334 (-----) [000] ...1 24573.715146: tracing_mark_write: E|13131
60673           <...>-13334 (-----) [000] ...1 24573.715149: tracing_mark_write: E|13131
60674           <...>-13334 (-----) [000] ...1 24573.715161: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60675           <...>-13334 (-----) [000] ...1 24573.715164: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60676           <...>-13334 (-----) [000] ...1 24573.715386: tracing_mark_write: E|13131
60677           <...>-13334 (-----) [000] ...1 24573.715390: tracing_mark_write: E|13131
60678           <...>-13334 (-----) [000] ...1 24573.715400: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60679           <...>-13334 (-----) [000] ...1 24573.715403: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60680           <...>-13334 (-----) [000] ...1 24573.715791: tracing_mark_write: E|13131
60681           <...>-13334 (-----) [000] ...1 24573.715794: tracing_mark_write: E|13131
60682           <...>-13334 (-----) [000] ...1 24573.715804: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60683           <...>-13334 (-----) [000] ...1 24573.715808: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60684           <...>-13334 (-----) [000] ...1 24573.716189: tracing_mark_write: E|13131
60685           <...>-13334 (-----) [000] ...1 24573.716193: tracing_mark_write: E|13131
60686           <...>-13334 (-----) [000] ...1 24573.716209: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60687           <...>-13334 (-----) [000] ...1 24573.716214: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60688           <...>-13334 (-----) [000] ...1 24573.716403: tracing_mark_write: E|13131
60689           <...>-13334 (-----) [000] ...1 24573.716407: tracing_mark_write: E|13131
60690           <...>-13334 (-----) [000] ...1 24573.716421: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60691           <...>-13334 (-----) [000] ...1 24573.716425: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60692           <...>-13334 (-----) [000] ...1 24573.716495: tracing_mark_write: E|13131
60693           <...>-13334 (-----) [000] ...1 24573.716498: tracing_mark_write: E|13131
60694           <...>-13334 (-----) [000] ...1 24573.716509: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
60695           <...>-13334 (-----) [000] ...1 24573.716513: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
60696 id.nn.benchmark-13160 (13131) [007] d.h1 24573.716619: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=007
60697 id.nn.benchmark-13160 (13131) [007] dnh2 24573.716624: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=007
60698 id.nn.benchmark-13160 (13131) [007] d..2 24573.716628: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
60699        DispSync-23904 (23896) [007] d..1 24573.716637: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
60700        DispSync-23904 (23896) [007] d..2 24573.716650: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60701           <...>-13154 (-----) [001] dnh1 24573.716650: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
60702           <...>-13154 (-----) [001] d..2 24573.716657: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
60703   sfEventThread-23906 (23896) [001] d..3 24573.716686: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
60704   sfEventThread-23906 (23896) [001] d..4 24573.716698: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
60705           <...>-13334 (-----) [000] d..2 24573.716705: sched_switch: prev_comm=id.nn.benchmark prev_pid=13334 prev_prio=110 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
60706   sfEventThread-23906 (23896) [001] d..2 24573.716720: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
60707  surfaceflinger-23896 (23896) [000] d..1 24573.716960: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
60708  surfaceflinger-23896 (23896) [000] d..2 24573.716971: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
60709           <...>-13154 (-----) [001] d..2 24573.716978: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
60710   sfEventThread-23906 (23896) [001] d..2 24573.716993: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
60711  surfaceflinger-23896 (23896) [000] ...1 24573.717093: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
60712  surfaceflinger-23896 (23896) [000] ...1 24573.717096: tracing_mark_write: E|23896
60713  surfaceflinger-23896 (23896) [000] .... 24573.717139: binder_transaction: transaction=1670064 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
60714  surfaceflinger-23896 (23896) [000] ...2 24573.717159: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
60715  surfaceflinger-23896 (23896) [000] d..4 24573.717165: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
60716 id.nn.benchmark-13160 (13131) [007] dnh1 24573.717179: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
60717 id.nn.benchmark-13160 (13131) [007] d..2 24573.717182: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
60718  HwBinder:598_3-633   (  598) [007] .... 24573.717186: binder_transaction_received: transaction=1670064
60719  surfaceflinger-23896 (23896) [000] d..2 24573.717186: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13334 next_prio=110
60720  HwBinder:598_3-633   (  598) [007] ...1 24573.717209: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
60721  HwBinder:598_3-633   (  598) [007] ...1 24573.717257: tracing_mark_write: B|598|HWCSession::PresentDisplay::
60722           <...>-13334 (-----) [000] ...1 24573.717283: tracing_mark_write: E|13131
60723           <...>-13334 (-----) [000] ...1 24573.717288: tracing_mark_write: E|13131
60724           <...>-13334 (-----) [000] ...1 24573.717300: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
60725           <...>-13334 (-----) [000] ...1 24573.717304: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
60726  HwBinder:598_3-633   (  598) [007] ...1 24573.717318: tracing_mark_write: B|598|HWDeviceDRM::Commit::
60727  HwBinder:598_3-633   (  598) [007] ...1 24573.717321: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
60728           <...>-13334 (-----) [000] ...1 24573.717352: tracing_mark_write: E|13131
60729           <...>-13334 (-----) [000] ...1 24573.717355: tracing_mark_write: E|13131
60730           <...>-13334 (-----) [000] ...1 24573.717363: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
60731           <...>-13334 (-----) [000] ...1 24573.717367: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
60732           <...>-13334 (-----) [000] ...1 24573.717381: tracing_mark_write: E|13131
60733           <...>-13334 (-----) [000] ...1 24573.717384: tracing_mark_write: E|13131
60734           <...>-13334 (-----) [000] ...1 24573.717394: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
60735           <...>-13334 (-----) [000] ...1 24573.717396: tracing_mark_write: E|13131
60736           <...>-13334 (-----) [000] ...1 24573.717404: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
60737           <...>-13334 (-----) [000] ...1 24573.717408: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
60738  HwBinder:598_3-633   (  598) [007] d..2 24573.717515: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
60739           <...>-13154 (-----) [001] dnh1 24573.717528: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
60740           <...>-13154 (-----) [001] d..2 24573.717532: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
60741           <...>-13157 (-----) [004] d.s2 24573.717555: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
60742  HwBinder:598_3-633   (  598) [007] ...1 24573.717564: tracing_mark_write: E|598
60743  HwBinder:598_3-633   (  598) [007] ...1 24573.717565: tracing_mark_write: E|598
60744           <...>-13157 (-----) [004] d.s3 24573.717567: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
60745  HwBinder:598_3-633   (  598) [007] ...1 24573.717586: tracing_mark_write: E|598
60746 id.nn.benchmark-13155 (13131) [006] d..2 24573.717587: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
60747 id.nn.benchmark-13158 (13131) [005] d.h2 24573.717594: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
60748 id.nn.benchmark-13158 (13131) [005] d.h3 24573.717600: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
60749 id.nn.benchmark-13158 (13131) [005] d.h2 24573.717601: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
60750  HwBinder:598_3-633   (  598) [007] ...1 24573.717605: tracing_mark_write: E|598
60751           <...>-13157 (-----) [004] d..2 24573.717607: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
60752  HwBinder:598_3-633   (  598) [007] .... 24573.717611: binder_transaction: transaction=1670065 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
60753         sugov:4-560   (  560) [004] d..2 24573.717613: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
60754  HwBinder:598_3-633   (  598) [007] d..2 24573.717617: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
60755           <...>-13334 (-----) [000] dnh1 24573.717617: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
60756           <...>-13334 (-----) [000] d..2 24573.717625: sched_switch: prev_comm=id.nn.benchmark prev_pid=13334 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
60757  HwBinder:598_3-633   (  598) [007] .... 24573.717634: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
60758         sugov:0-559   (  559) [000] d..2 24573.717635: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13334 next_prio=110
60759 id.nn.benchmark-13156 (13131) [002] dnh1 24573.717640: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
60760 id.nn.benchmark-13156 (13131) [002] d..2 24573.717650: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
60761  HwBinder:598_3-633   (  598) [007] d..2 24573.717655: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60762  surfaceflinger-23896 (23896) [002] .... 24573.717660: binder_transaction_received: transaction=1670065
60763  surfaceflinger-23896 (23896) [002] d..2 24573.717798: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=005
60764  kworker/u16:15-18488 (18488) [006] d..2 24573.717803: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
60765 id.nn.benchmark-13159 (13131) [003] d.s2 24573.717828: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
60766 id.nn.benchmark-13158 (13131) [005] dnh1 24573.717828: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=005
60767 id.nn.benchmark-13158 (13131) [005] d..2 24573.717831: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
60768         rcuop/2-29    (   29) [005] d..2 24573.717836: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
60769 id.nn.benchmark-13160 (13131) [007] d.h1 24573.717848: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
60770 id.nn.benchmark-13160 (13131) [007] dnh1 24573.717850: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
60771 id.nn.benchmark-13160 (13131) [007] d..2 24573.717852: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
60772  kworker/u16:15-18488 (18488) [007] d..2 24573.717860: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60773  surfaceflinger-23896 (23896) [002] d..2 24573.717947: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
60774 crtc_commit:111-253   (  253) [001] d..2 24573.718163: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
60775           <...>-13334 (-----) [000] ...1 24573.718341: tracing_mark_write: E|13131
60776           <...>-13334 (-----) [000] ...1 24573.718344: tracing_mark_write: E|13131
60777           <...>-13334 (-----) [000] ...1 24573.718354: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60778           <...>-13334 (-----) [000] ...1 24573.718358: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60779           <...>-13334 (-----) [000] ...1 24573.718442: tracing_mark_write: E|13131
60780           <...>-13334 (-----) [000] ...1 24573.718445: tracing_mark_write: E|13131
60781           <...>-13334 (-----) [000] ...1 24573.718515: tracing_mark_write: E|13131
60782           <...>-13334 (-----) [000] d..1 24573.718520: sched_waking: comm=id.nn.benchmark pid=13333 prio=110 target_cpu=000
60783           <...>-13334 (-----) [000] dn.2 24573.718533: sched_wakeup: comm=id.nn.benchmark pid=13333 prio=110 target_cpu=000
60784           <...>-13334 (-----) [000] d..2 24573.718538: sched_switch: prev_comm=id.nn.benchmark prev_pid=13334 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13333 next_prio=110
60785           <...>-13333 (-----) [000] d..2 24573.718552: sched_switch: prev_comm=id.nn.benchmark prev_pid=13333 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13334 next_prio=110
60786           <...>-13334 (-----) [000] ...1 24573.718568: tracing_mark_write: E|13131
60787           <...>-13334 (-----) [000] d..1 24573.718785: sched_waking: comm=id.nn.benchmark pid=13333 prio=110 target_cpu=000
60788           <...>-13334 (-----) [000] dn.2 24573.718793: sched_wakeup: comm=id.nn.benchmark pid=13333 prio=110 target_cpu=000
60789           <...>-13334 (-----) [000] d..2 24573.718798: sched_switch: prev_comm=id.nn.benchmark prev_pid=13334 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13333 next_prio=110
60790           <...>-13333 (-----) [000] d..1 24573.718899: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
60791           <...>-13157 (-----) [004] dnh1 24573.718915: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
60792           <...>-13157 (-----) [004] d..2 24573.718918: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
60793           <...>-13131 (-----) [004] d..2 24573.718924: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
60794           <...>-13333 (-----) [000] d..1 24573.718966: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
60795           <...>-13157 (-----) [004] dnh1 24573.718978: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
60796           <...>-13157 (-----) [004] d..2 24573.718980: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
60797           <...>-13131 (-----) [004] ...1 24573.718995: tracing_mark_write: E|13131
60798           <...>-13131 (-----) [004] ...1 24573.718997: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
60799           <...>-13131 (-----) [004] ...1 24573.719000: tracing_mark_write: E|13131
60800           <...>-13131 (-----) [004] ...1 24573.719001: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
60801           <...>-13131 (-----) [004] ...1 24573.719004: tracing_mark_write: E|13131
60802           <...>-13333 (-----) [000] d..2 24573.719038: sched_switch: prev_comm=id.nn.benchmark prev_pid=13333 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13334 next_prio=110
60803           <...>-13334 (-----) [000] d..2 24573.719063: sched_switch: prev_comm=id.nn.benchmark prev_pid=13334 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
60804           <...>-13131 (-----) [004] ...1 24573.719066: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
60805           <...>-13131 (-----) [004] ...1 24573.719089: tracing_mark_write: E|13131
60806           <...>-13131 (-----) [004] ...1 24573.719092: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
60807           <...>-13131 (-----) [004] ...1 24573.719095: tracing_mark_write: E|13131
60808           <...>-13131 (-----) [004] ...1 24573.719096: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
60809           <...>-13131 (-----) [004] ...1 24573.719098: tracing_mark_write: E|13131
60810           <...>-13131 (-----) [004] ...1 24573.719100: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
60811           <...>-13131 (-----) [004] ...1 24573.719160: tracing_mark_write: E|13131
60812           <...>-13131 (-----) [004] ...1 24573.719161: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
60813           <...>-13131 (-----) [004] d..2 24573.719166: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
60814     logd.writer-563   (  555) [000] d..2 24573.719327: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13335 next_prio=110
60815           <...>-13335 (-----) [000] d.h4 24573.719360: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
60816           <...>-13335 (-----) [000] d.h4 24573.719367: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
60817           <...>-13157 (-----) [004] dnh1 24573.719371: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
60818           <...>-13335 (-----) [000] dnh5 24573.719374: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
60819           <...>-13157 (-----) [004] d..2 24573.719374: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
60820         sugov:4-560   (  560) [004] d..2 24573.719378: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
60821           <...>-13335 (-----) [000] d..2 24573.719380: sched_switch: prev_comm=id.nn.benchmark prev_pid=13335 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
60822         sugov:0-559   (  559) [000] d..2 24573.719387: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13335 next_prio=110
60823           <...>-13335 (-----) [000] d..2 24573.719443: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
60824           <...>-13335 (-----) [000] d..3 24573.719454: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
60825           <...>-13335 (-----) [000] d..2 24573.719744: sched_switch: prev_comm=id.nn.benchmark prev_pid=13335 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
60826     logd.writer-563   (  555) [000] d..2 24573.719913: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13336 next_prio=110
60827           <...>-13336 (-----) [000] ...1 24573.719940: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
60828           <...>-13336 (-----) [000] ...1 24573.719944: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
60829           <...>-13336 (-----) [000] d..2 24573.720001: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
60830           <...>-13336 (-----) [000] d..3 24573.720011: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
60831           <...>-13336 (-----) [000] ...1 24573.720076: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60832           <...>-13336 (-----) [000] ...1 24573.720081: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60833 id.nn.benchmark-13160 (13131) [007] d.s1 24573.720889: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
60834           <...>-13157 (-----) [004] d.s2 24573.720892: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
60835 id.nn.benchmark-13160 (13131) [007] dns2 24573.720895: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
60836           <...>-13157 (-----) [004] d.s3 24573.720897: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
60837 id.nn.benchmark-13160 (13131) [007] d..2 24573.720900: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
60838     rcu_preempt-7     (    7) [007] d..2 24573.720905: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
60839  kworker/u16:15-18488 (18488) [007] d..2 24573.721186: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60840 id.nn.benchmark-13159 (13131) [003] d.s2 24573.721224: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
60841 id.nn.benchmark-13160 (13131) [007] d.h1 24573.721236: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
60842 id.nn.benchmark-13160 (13131) [007] dnh1 24573.721237: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
60843 id.nn.benchmark-13160 (13131) [007] d..2 24573.721239: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
60844  kworker/u16:15-18488 (18488) [007] d..2 24573.721243: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60845           <...>-13336 (-----) [000] ...1 24573.722098: tracing_mark_write: E|13131
60846           <...>-13336 (-----) [000] ...1 24573.722102: tracing_mark_write: E|13131
60847           <...>-13336 (-----) [000] ...1 24573.722114: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60848           <...>-13336 (-----) [000] ...1 24573.722118: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60849           <...>-13336 (-----) [000] ...1 24573.722816: tracing_mark_write: E|13131
60850           <...>-13336 (-----) [000] ...1 24573.722819: tracing_mark_write: E|13131
60851           <...>-13336 (-----) [000] ...1 24573.722835: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60852           <...>-13336 (-----) [000] ...1 24573.722839: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60853           <...>-13336 (-----) [000] ...1 24573.723174: tracing_mark_write: E|13131
60854           <...>-13336 (-----) [000] ...1 24573.723177: tracing_mark_write: E|13131
60855           <...>-13336 (-----) [000] ...1 24573.723188: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60856           <...>-13336 (-----) [000] ...1 24573.723192: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60857           <...>-13336 (-----) [000] ...1 24573.723424: tracing_mark_write: E|13131
60858           <...>-13336 (-----) [000] ...1 24573.723427: tracing_mark_write: E|13131
60859           <...>-13336 (-----) [000] ...1 24573.723437: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60860           <...>-13336 (-----) [000] ...1 24573.723441: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60861           <...>-13336 (-----) [000] ...1 24573.723837: tracing_mark_write: E|13131
60862           <...>-13336 (-----) [000] ...1 24573.723840: tracing_mark_write: E|13131
60863           <...>-13336 (-----) [000] ...1 24573.723850: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60864           <...>-13336 (-----) [000] ...1 24573.723854: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60865           <...>-13157 (-----) [004] d.s2 24573.724223: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
60866           <...>-13157 (-----) [004] d.s3 24573.724230: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
60867 id.nn.benchmark-13156 (13131) [002] d.s2 24573.724231: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
60868 id.nn.benchmark-13160 (13131) [007] d..2 24573.724238: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
60869 id.nn.benchmark-13155 (13131) [006] dnh1 24573.724253: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=006
60870 id.nn.benchmark-13155 (13131) [006] d..2 24573.724256: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
60871     rcu_preempt-7     (    7) [006] d..2 24573.724258: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=006
60872     rcu_preempt-7     (    7) [006] d..3 24573.724269: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=005
60873  kworker/u16:15-18488 (18488) [007] d..2 24573.724273: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60874     rcu_preempt-7     (    7) [006] d..2 24573.724274: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
60875 id.nn.benchmark-13158 (13131) [005] d..2 24573.724275: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
60876           <...>-13336 (-----) [000] ...1 24573.724284: tracing_mark_write: E|13131
60877           <...>-13336 (-----) [000] ...1 24573.724288: tracing_mark_write: E|13131
60878         rcuop/0-10    (   10) [005] d..2 24573.724296: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
60879           <...>-13336 (-----) [000] ...1 24573.724304: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60880           <...>-13336 (-----) [000] ...1 24573.724308: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60881           <...>-13336 (-----) [000] ...1 24573.724501: tracing_mark_write: E|13131
60882           <...>-13336 (-----) [000] ...1 24573.724505: tracing_mark_write: E|13131
60883           <...>-13336 (-----) [000] ...1 24573.724518: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60884           <...>-13336 (-----) [000] ...1 24573.724523: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60885           <...>-13336 (-----) [000] ...1 24573.724591: tracing_mark_write: E|13131
60886           <...>-13336 (-----) [000] ...1 24573.724594: tracing_mark_write: E|13131
60887           <...>-13336 (-----) [000] ...1 24573.724605: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
60888           <...>-13336 (-----) [000] ...1 24573.724609: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
60889           <...>-13336 (-----) [000] d.h4 24573.724695: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
60890           <...>-13336 (-----) [000] d.h4 24573.724712: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
60891 id.nn.benchmark-13160 (13131) [007] dnh1 24573.724714: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
60892 id.nn.benchmark-13160 (13131) [007] d..2 24573.724717: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
60893           <...>-13336 (-----) [000] d.h5 24573.724721: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
60894  crtc_event:111-254   (  254) [007] d..2 24573.724729: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60895           <...>-13154 (-----) [001] d..2 24573.724731: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
60896 crtc_commit:111-253   (  253) [001] d..2 24573.724841: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
60897           <...>-13336 (-----) [000] ...1 24573.725001: tracing_mark_write: E|13131
60898           <...>-13336 (-----) [000] ...1 24573.725004: tracing_mark_write: E|13131
60899           <...>-13336 (-----) [000] ...1 24573.725014: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
60900           <...>-13336 (-----) [000] ...1 24573.725018: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
60901           <...>-13336 (-----) [000] ...1 24573.725065: tracing_mark_write: E|13131
60902           <...>-13336 (-----) [000] ...1 24573.725068: tracing_mark_write: E|13131
60903           <...>-13336 (-----) [000] ...1 24573.725077: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
60904           <...>-13336 (-----) [000] ...1 24573.725081: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
60905           <...>-13336 (-----) [000] ...1 24573.725097: tracing_mark_write: E|13131
60906           <...>-13336 (-----) [000] ...1 24573.725100: tracing_mark_write: E|13131
60907           <...>-13336 (-----) [000] ...1 24573.725111: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
60908           <...>-13336 (-----) [000] ...1 24573.725114: tracing_mark_write: E|13131
60909           <...>-13336 (-----) [000] ...1 24573.725124: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
60910           <...>-13336 (-----) [000] ...1 24573.725128: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
60911           <...>-13336 (-----) [000] ...1 24573.725981: tracing_mark_write: E|13131
60912           <...>-13336 (-----) [000] ...1 24573.725984: tracing_mark_write: E|13131
60913           <...>-13336 (-----) [000] ...1 24573.725991: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60914           <...>-13336 (-----) [000] ...1 24573.725995: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60915           <...>-13336 (-----) [000] ...1 24573.726078: tracing_mark_write: E|13131
60916           <...>-13336 (-----) [000] ...1 24573.726082: tracing_mark_write: E|13131
60917           <...>-13336 (-----) [000] ...1 24573.726133: tracing_mark_write: E|13131
60918           <...>-13336 (-----) [000] d..1 24573.726139: sched_waking: comm=id.nn.benchmark pid=13335 prio=110 target_cpu=000
60919           <...>-13336 (-----) [000] dn.2 24573.726152: sched_wakeup: comm=id.nn.benchmark pid=13335 prio=110 target_cpu=000
60920           <...>-13336 (-----) [000] d..2 24573.726157: sched_switch: prev_comm=id.nn.benchmark prev_pid=13336 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13335 next_prio=110
60921           <...>-13335 (-----) [000] d..2 24573.726170: sched_switch: prev_comm=id.nn.benchmark prev_pid=13335 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13336 next_prio=110
60922           <...>-13336 (-----) [000] ...1 24573.726185: tracing_mark_write: E|13131
60923           <...>-13336 (-----) [000] d..1 24573.726372: sched_waking: comm=id.nn.benchmark pid=13335 prio=110 target_cpu=000
60924           <...>-13336 (-----) [000] dn.2 24573.726380: sched_wakeup: comm=id.nn.benchmark pid=13335 prio=110 target_cpu=000
60925           <...>-13336 (-----) [000] d..2 24573.726385: sched_switch: prev_comm=id.nn.benchmark prev_pid=13336 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13335 next_prio=110
60926           <...>-13335 (-----) [000] d..1 24573.726474: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
60927           <...>-13157 (-----) [004] dnh1 24573.726489: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
60928           <...>-13157 (-----) [004] d..2 24573.726491: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
60929           <...>-13131 (-----) [004] d..2 24573.726496: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
60930           <...>-13335 (-----) [000] d..1 24573.726534: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
60931           <...>-13157 (-----) [004] dnh1 24573.726546: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
60932           <...>-13157 (-----) [004] d..2 24573.726549: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
60933           <...>-13131 (-----) [004] ...1 24573.726561: tracing_mark_write: E|13131
60934           <...>-13131 (-----) [004] ...1 24573.726562: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
60935           <...>-13131 (-----) [004] ...1 24573.726564: tracing_mark_write: E|13131
60936           <...>-13131 (-----) [004] ...1 24573.726566: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
60937           <...>-13131 (-----) [004] ...1 24573.726567: tracing_mark_write: E|13131
60938           <...>-13335 (-----) [000] d..2 24573.726595: sched_switch: prev_comm=id.nn.benchmark prev_pid=13335 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13336 next_prio=110
60939           <...>-13336 (-----) [000] d..2 24573.726615: sched_switch: prev_comm=id.nn.benchmark prev_pid=13336 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
60940           <...>-13131 (-----) [004] ...1 24573.726626: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
60941           <...>-13131 (-----) [004] ...1 24573.726648: tracing_mark_write: E|13131
60942           <...>-13131 (-----) [004] ...1 24573.726650: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
60943           <...>-13131 (-----) [004] ...1 24573.726652: tracing_mark_write: E|13131
60944           <...>-13131 (-----) [004] ...1 24573.726654: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
60945           <...>-13131 (-----) [004] ...1 24573.726655: tracing_mark_write: E|13131
60946           <...>-13131 (-----) [004] ...1 24573.726657: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
60947           <...>-13131 (-----) [004] ...1 24573.726704: tracing_mark_write: E|13131
60948           <...>-13131 (-----) [004] ...1 24573.726706: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
60949           <...>-13131 (-----) [004] d..2 24573.726711: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
60950     logd.writer-563   (  555) [000] d..2 24573.726845: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13337 next_prio=110
60951           <...>-13337 (-----) [000] d.h4 24573.726881: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
60952           <...>-13337 (-----) [000] d.h4 24573.726889: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
60953           <...>-13157 (-----) [004] dnh1 24573.726892: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
60954           <...>-13337 (-----) [000] dnh5 24573.726895: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
60955           <...>-13157 (-----) [004] d..2 24573.726895: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
60956         sugov:4-560   (  560) [004] d..2 24573.726900: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
60957           <...>-13337 (-----) [000] d..2 24573.726901: sched_switch: prev_comm=id.nn.benchmark prev_pid=13337 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
60958         sugov:0-559   (  559) [000] d..2 24573.726909: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13337 next_prio=110
60959           <...>-13337 (-----) [000] d.h4 24573.727036: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
60960           <...>-13337 (-----) [000] dnh5 24573.727048: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
60961           <...>-13337 (-----) [000] d..2 24573.727060: sched_switch: prev_comm=id.nn.benchmark prev_pid=13337 prev_prio=110 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
60962 crtc_commit:111-253   (  253) [000] d..2 24573.727112: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13337 next_prio=110
60963           <...>-13337 (-----) [000] d..2 24573.727117: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
60964           <...>-13337 (-----) [000] d..3 24573.727124: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
60965           <...>-13337 (-----) [000] d.h4 24573.727327: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
60966 id.nn.benchmark-13160 (13131) [007] dnh1 24573.727341: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
60967 id.nn.benchmark-13160 (13131) [007] d..2 24573.727344: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
60968  crtc_event:111-254   (  254) [007] d..2 24573.727347: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60969           <...>-13337 (-----) [000] d..2 24573.727484: sched_switch: prev_comm=id.nn.benchmark prev_pid=13337 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
60970           <...>-13157 (-----) [004] d.s2 24573.727557: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
60971           <...>-13157 (-----) [004] d.s3 24573.727564: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
60972           <...>-13154 (-----) [001] d.s2 24573.727565: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
60973 id.nn.benchmark-13160 (13131) [007] d..2 24573.727570: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
60974 id.nn.benchmark-13158 (13131) [005] dnh1 24573.727584: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=005
60975 id.nn.benchmark-13158 (13131) [005] d..2 24573.727586: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
60976  crtc_event:111-254   (  254) [005] d..2 24573.727593: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
60977  kworker/u16:15-18488 (18488) [007] d..2 24573.727658: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60978     logd.writer-563   (  555) [000] d..2 24573.727683: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13338 next_prio=110
60979           <...>-13338 (-----) [000] ...1 24573.727711: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
60980           <...>-13338 (-----) [000] ...1 24573.727715: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
60981           <...>-13338 (-----) [000] d..2 24573.727771: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
60982           <...>-13338 (-----) [000] d..3 24573.727782: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
60983           <...>-13338 (-----) [000] ...1 24573.727845: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
60984           <...>-13338 (-----) [000] ...1 24573.727850: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
60985 id.nn.benchmark-13160 (13131) [007] d.h1 24573.729088: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=007
60986 id.nn.benchmark-13160 (13131) [007] dnh2 24573.729093: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=007
60987 id.nn.benchmark-13160 (13131) [007] d..2 24573.729097: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
60988        DispSync-23904 (23896) [007] d..1 24573.729110: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
60989        DispSync-23904 (23896) [007] d..2 24573.729124: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
60990           <...>-13338 (-----) [000] dnh1 24573.729124: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
60991           <...>-13338 (-----) [000] d..2 24573.729132: sched_switch: prev_comm=id.nn.benchmark prev_pid=13338 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
60992  appEventThread-23905 (23896) [000] d..3 24573.729176: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
60993 id.nn.benchmark-13155 (13131) [006] dnh1 24573.729193: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
60994 id.nn.benchmark-13155 (13131) [006] d..2 24573.729196: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
60995  appEventThread-23905 (23896) [000] d..2 24573.729204: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13338 next_prio=110
60996<...>-24151 ( 24151) [006] .... 24573.729368: binder_transaction: transaction=1670066 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
60997<...>-24151 ( 24151) [006] d..4 24573.729374: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
60998<...>-24151 ( 24151) [006] d..5 24573.729385: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
60999           <...>-13157 (-----) [004] d..2 24573.729390: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
61000  Binder:23896_5-25989 (23896) [004] .... 24573.729394: binder_transaction_received: transaction=1670066
61001<...>-24151 ( 24151) [006] d..3 24573.729405: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
61002  Binder:23896_5-25989 (23896) [004] d..1 24573.729410: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
61003<...>-24151 ( 24151) [006] d..4 24573.729413: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
61004 id.nn.benchmark-13160 (13131) [007] d..2 24573.729419: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
61005           <...>-13338 (-----) [000] dnh1 24573.729422: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
61006  Binder:23896_5-25989 (23896) [004] d..2 24573.729428: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
61007           <...>-13338 (-----) [000] d..2 24573.729428: sched_switch: prev_comm=id.nn.benchmark prev_pid=13338 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
61008    RenderThread-24437 (24151) [007] d..2 24573.729439: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
61009  appEventThread-23905 (23896) [000] d..2 24573.729448: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13338 next_prio=110
61010<...>-24151 ( 24151) [006] d..3 24573.729471: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
61011<...>-24151 ( 24151) [006] d..4 24573.729478: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
61012<...>-24151 ( 24151) [006] d..2 24573.729484: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
61013 id.nn.benchmark-13160 (13131) [007] d..2 24573.729485: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
61014    RenderThread-24437 (24151) [007] d..1 24573.729535: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
61015    RenderThread-24437 (24151) [007] d..2 24573.729544: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
61016 id.nn.benchmark-13155 (13131) [006] d..2 24573.729550: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
61017<...>-24151 ( 24151) [006] d..2 24573.729571: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
61018    RenderThread-24437 (24151) [007] .... 24573.729576: binder_transaction: transaction=1670067 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
61019    RenderThread-24437 (24151) [007] d..4 24573.729578: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
61020    RenderThread-24437 (24151) [007] d..5 24573.729586: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
61021    RenderThread-24437 (24151) [007] d..2 24573.729590: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
61022           <...>-13157 (-----) [004] d..2 24573.729592: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
61023  Binder:23896_5-25989 (23896) [004] .... 24573.729594: binder_transaction_received: transaction=1670067
61024  Binder:23896_5-25989 (23896) [004] .... 24573.729619: binder_transaction: transaction=1670068 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
61025  Binder:23896_5-25989 (23896) [004] d..2 24573.729623: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
61026  Binder:23896_5-25989 (23896) [004] d..3 24573.729635: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
61027 id.nn.benchmark-13155 (13131) [006] d..2 24573.729641: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
61028  Binder:23896_5-25989 (23896) [004] d..2 24573.729643: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
61029    RenderThread-24437 (24151) [006] .... 24573.729644: binder_transaction_received: transaction=1670068
61030    RenderThread-24437 (24151) [006] d..2 24573.730254: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
61031 id.nn.benchmark-13155 (13131) [006] d.h1 24573.730354: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
61032 id.nn.benchmark-13155 (13131) [006] d.h2 24573.730359: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
61033 id.nn.benchmark-13155 (13131) [006] dnh2 24573.730361: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
61034 id.nn.benchmark-13155 (13131) [006] d..2 24573.730365: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
61035    RenderThread-24437 (24151) [006] .... 24573.730443: binder_transaction: transaction=1670069 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
61036    RenderThread-24437 (24151) [006] d..4 24573.730447: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
61037    RenderThread-24437 (24151) [006] d..5 24573.730456: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
61038    RenderThread-24437 (24151) [006] d..2 24573.730461: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
61039           <...>-13157 (-----) [004] d..2 24573.730463: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
61040  Binder:23896_5-25989 (23896) [004] .... 24573.730464: binder_transaction_received: transaction=1670069
61041           <...>-13338 (-----) [000] d.h2 24573.730481: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
61042 id.nn.benchmark-13158 (13131) [005] dnh1 24573.730497: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
61043 id.nn.benchmark-13158 (13131) [005] d..2 24573.730500: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
61044           <...>-13338 (-----) [000] ...1 24573.730510: tracing_mark_write: E|13131
61045           <...>-13338 (-----) [000] ...1 24573.730514: tracing_mark_write: E|13131
61046  Binder:23896_5-25989 (23896) [004] .... 24573.730517: binder_transaction: transaction=1670070 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
61047  Binder:23896_5-25989 (23896) [004] d..2 24573.730519: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
61048 kgsl_worker_thr-246   (  246) [005] d..2 24573.730519: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
61049  Binder:23896_5-25989 (23896) [004] d..3 24573.730526: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
61050 kgsl_worker_thr-246   (  246) [005] d..3 24573.730527: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
61051           <...>-13338 (-----) [000] ...1 24573.730528: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
61052           <...>-13338 (-----) [000] ...1 24573.730532: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
61053 id.nn.benchmark-13155 (13131) [006] d..2 24573.730533: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
61054 kgsl_worker_thr-246   (  246) [005] d..2 24573.730534: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
61055 id.nn.benchmark-13160 (13131) [007] d..2 24573.730535: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
61056    RenderThread-24437 (24151) [006] .... 24573.730535: binder_transaction_received: transaction=1670070
61057  Binder:23896_5-25989 (23896) [004] d..2 24573.730536: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
61058  kworker/u16:15-18488 (18488) [007] d..2 24573.730554: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
61059    RenderThread-24437 (24151) [006] d..2 24573.730557: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
61060 id.nn.benchmark-13155 (13131) [006] d.s1 24573.730890: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=006
61061           <...>-13157 (-----) [004] d.s2 24573.730892: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
61062           <...>-13157 (-----) [004] d.s3 24573.730900: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
61063 id.nn.benchmark-13155 (13131) [006] d.s2 24573.730902: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
61064           <...>-13157 (-----) [004] d.s2 24573.730905: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
61065 id.nn.benchmark-13160 (13131) [007] d..2 24573.730908: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
61066           <...>-13157 (-----) [004] dns3 24573.730909: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
61067           <...>-13157 (-----) [004] d..2 24573.730912: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=kworker/4:0 next_pid=24269 next_prio=120
61068     kworker/4:0-24269 (24269) [004] d..2 24573.730940: sched_switch: prev_comm=kworker/4:0 prev_pid=24269 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
61069  kworker/u16:15-18488 (18488) [007] d..2 24573.731113: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61070     rcu_preempt-7     (    7) [007] d..2 24573.731116: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=005
61071     rcu_preempt-7     (    7) [007] d..3 24573.731130: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=005
61072     rcu_preempt-7     (    7) [007] d..2 24573.731134: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
61073 id.nn.benchmark-13158 (13131) [005] d..2 24573.731136: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
61074         rcuop/2-29    (   29) [005] d..2 24573.731141: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
61075           <...>-13338 (-----) [000] ...1 24573.731278: tracing_mark_write: E|13131
61076           <...>-13338 (-----) [000] ...1 24573.731282: tracing_mark_write: E|13131
61077           <...>-13338 (-----) [000] ...1 24573.731300: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
61078           <...>-13338 (-----) [000] ...1 24573.731305: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
61079           <...>-13338 (-----) [000] ...1 24573.731637: tracing_mark_write: E|13131
61080           <...>-13338 (-----) [000] ...1 24573.731641: tracing_mark_write: E|13131
61081           <...>-13338 (-----) [000] ...1 24573.731651: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
61082           <...>-13338 (-----) [000] ...1 24573.731655: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
61083           <...>-13338 (-----) [000] ...1 24573.731882: tracing_mark_write: E|13131
61084           <...>-13338 (-----) [000] ...1 24573.731886: tracing_mark_write: E|13131
61085           <...>-13338 (-----) [000] ...1 24573.731896: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
61086           <...>-13338 (-----) [000] ...1 24573.731900: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
61087           <...>-13338 (-----) [000] ...1 24573.732291: tracing_mark_write: E|13131
61088           <...>-13338 (-----) [000] ...1 24573.732295: tracing_mark_write: E|13131
61089           <...>-13338 (-----) [000] ...1 24573.732305: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
61090           <...>-13338 (-----) [000] ...1 24573.732309: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
61091           <...>-13338 (-----) [000] ...1 24573.732695: tracing_mark_write: E|13131
61092           <...>-13338 (-----) [000] ...1 24573.732699: tracing_mark_write: E|13131
61093           <...>-13338 (-----) [000] ...1 24573.732716: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
61094           <...>-13338 (-----) [000] ...1 24573.732720: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
61095 id.nn.benchmark-13156 (13131) [002] d..2 24573.732776: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
61096 id.nn.benchmark-13155 (13131) [006] d..3 24573.732785: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
61097 id.nn.benchmark-13155 (13131) [006] d..2 24573.732795: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=D|K ==> next_comm=swapper/6 next_pid=0 next_prio=120
61098 id.nn.benchmark-13156 (13131) [002] dnh2 24573.732810: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
61099          <idle>-0     (-----) [006] d..1 24573.732812: cpu_idle: state=0 cpu_id=6
61100 id.nn.benchmark-13156 (13131) [002] d..2 24573.732817: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R+ ==> next_comm=migration/2 next_pid=25 next_prio=0
61101          <idle>-0     (-----) [006] d.h2 24573.732821: sched_blocked_reason: pid=13155 iowait=1 caller=__lock_page_or_retry+0x26c/0x2c4
61102          <idle>-0     (-----) [006] dnh2 24573.732822: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
61103          <idle>-0     (-----) [006] .n.1 24573.732825: cpu_idle: state=4294967295 cpu_id=6
61104          <idle>-0     (-----) [006] d..2 24573.732840: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
61105     migration/2-25    (   25) [002] d.h3 24573.732880: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
61106     migration/2-25    (   25) [002] d.h3 24573.732888: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
61107           <...>-13157 (-----) [004] dnh1 24573.732892: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
61108           <...>-13157 (-----) [004] d..2 24573.732896: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
61109     migration/2-25    (   25) [002] d.h4 24573.732898: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
61110         sugov:4-560   (  560) [004] d..2 24573.732902: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
61111     migration/2-25    (   25) [002] d..2 24573.732906: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
61112         sugov:0-559   (  559) [002] d..2 24573.732931: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
61113 id.nn.benchmark-13160 (13131) [007] d.h1 24573.733093: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=007
61114           <...>-13338 (-----) [000] dnh1 24573.733123: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
61115           <...>-13338 (-----) [000] d..2 24573.733131: sched_switch: prev_comm=id.nn.benchmark prev_pid=13338 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
61116     logd.writer-563   (  555) [002] d..2 24573.733139: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
61117        DispSync-23904 (23896) [000] d..1 24573.733145: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
61118        DispSync-23904 (23896) [000] d..2 24573.733173: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
61119           <...>-13154 (-----) [001] d..2 24573.733183: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
61120        DispSync-23904 (23896) [000] d..2 24573.733186: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13338 next_prio=110
61121   sfEventThread-23906 (23896) [001] d..3 24573.733214: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
61122   sfEventThread-23906 (23896) [001] d..4 24573.733231: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
61123           <...>-13338 (-----) [000] d..2 24573.733238: sched_switch: prev_comm=id.nn.benchmark prev_pid=13338 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
61124   sfEventThread-23906 (23896) [001] d..2 24573.733245: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
61125  surfaceflinger-23896 (23896) [000] d..1 24573.733486: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
61126  surfaceflinger-23896 (23896) [000] d..2 24573.733498: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
61127           <...>-13154 (-----) [001] d..2 24573.733505: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
61128   sfEventThread-23906 (23896) [001] d..2 24573.733519: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
61129  surfaceflinger-23896 (23896) [000] ...1 24573.733624: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
61130  surfaceflinger-23896 (23896) [000] ...1 24573.733628: tracing_mark_write: E|23896
61131  surfaceflinger-23896 (23896) [000] .... 24573.733673: binder_transaction: transaction=1670071 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
61132  surfaceflinger-23896 (23896) [000] ...2 24573.733693: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
61133  surfaceflinger-23896 (23896) [000] d..4 24573.733701: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
61134 id.nn.benchmark-13160 (13131) [007] dnh1 24573.733715: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
61135 id.nn.benchmark-13160 (13131) [007] d..2 24573.733718: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
61136  surfaceflinger-23896 (23896) [000] d..2 24573.733722: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13338 next_prio=110
61137  HwBinder:598_3-633   (  598) [007] .... 24573.733722: binder_transaction_received: transaction=1670071
61138           <...>-13338 (-----) [000] ...1 24573.733733: tracing_mark_write: E|13131
61139           <...>-13338 (-----) [000] ...1 24573.733738: tracing_mark_write: E|13131
61140  HwBinder:598_3-633   (  598) [007] ...1 24573.733747: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
61141           <...>-13338 (-----) [000] ...1 24573.733752: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
61142           <...>-13338 (-----) [000] ...1 24573.733756: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
61143  HwBinder:598_3-633   (  598) [007] ...1 24573.733796: tracing_mark_write: B|598|HWCSession::PresentDisplay::
61144           <...>-13338 (-----) [000] ...1 24573.733829: tracing_mark_write: E|13131
61145           <...>-13338 (-----) [000] ...1 24573.733833: tracing_mark_write: E|13131
61146           <...>-13338 (-----) [000] ...1 24573.733843: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
61147           <...>-13338 (-----) [000] ...1 24573.733847: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
61148  HwBinder:598_3-633   (  598) [007] ...1 24573.733886: tracing_mark_write: B|598|HWDeviceDRM::Commit::
61149  HwBinder:598_3-633   (  598) [007] ...1 24573.733891: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
61150  HwBinder:598_3-633   (  598) [007] d..2 24573.734084: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
61151           <...>-13338 (-----) [000] dnh1 24573.734098: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
61152           <...>-13338 (-----) [000] d..2 24573.734106: sched_switch: prev_comm=id.nn.benchmark prev_pid=13338 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
61153  HwBinder:598_3-633   (  598) [007] ...1 24573.734118: tracing_mark_write: E|598
61154  HwBinder:598_3-633   (  598) [007] ...1 24573.734119: tracing_mark_write: E|598
61155  HwBinder:598_3-633   (  598) [007] ...1 24573.734141: tracing_mark_write: E|598
61156  HwBinder:598_3-633   (  598) [007] ...1 24573.734161: tracing_mark_write: E|598
61157  HwBinder:598_3-633   (  598) [007] .... 24573.734166: binder_transaction: transaction=1670072 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
61158  HwBinder:598_3-633   (  598) [007] d..2 24573.734172: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
61159  HwBinder:598_3-633   (  598) [007] .... 24573.734181: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
61160           <...>-13154 (-----) [001] dnh1 24573.734186: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
61161           <...>-13154 (-----) [001] d..2 24573.734192: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
61162  surfaceflinger-23896 (23896) [001] .... 24573.734197: binder_transaction_received: transaction=1670072
61163  HwBinder:598_3-633   (  598) [007] d..2 24573.734203: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
61164  surfaceflinger-23896 (23896) [001] d..2 24573.734468: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
61165 crtc_commit:111-253   (  253) [000] d..2 24573.734734: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13338 next_prio=110
61166           <...>-13338 (-----) [000] ...1 24573.734774: tracing_mark_write: E|13131
61167           <...>-13338 (-----) [000] ...1 24573.734778: tracing_mark_write: E|13131
61168           <...>-13338 (-----) [000] ...1 24573.734790: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
61169           <...>-13338 (-----) [000] ...1 24573.734794: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
61170           <...>-13338 (-----) [000] ...1 24573.734848: tracing_mark_write: E|13131
61171           <...>-13338 (-----) [000] ...1 24573.734851: tracing_mark_write: E|13131
61172           <...>-13338 (-----) [000] ...1 24573.734860: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
61173           <...>-13338 (-----) [000] ...1 24573.734863: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
61174           <...>-13338 (-----) [000] ...1 24573.734881: tracing_mark_write: E|13131
61175           <...>-13338 (-----) [000] ...1 24573.734884: tracing_mark_write: E|13131
61176           <...>-13338 (-----) [000] ...1 24573.734896: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
61177           <...>-13338 (-----) [000] ...1 24573.734899: tracing_mark_write: E|13131
61178           <...>-13338 (-----) [000] ...1 24573.734908: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
61179           <...>-13338 (-----) [000] ...1 24573.734912: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
61180           <...>-13338 (-----) [000] ...1 24573.735765: tracing_mark_write: E|13131
61181           <...>-13338 (-----) [000] ...1 24573.735768: tracing_mark_write: E|13131
61182           <...>-13338 (-----) [000] ...1 24573.735776: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
61183           <...>-13338 (-----) [000] ...1 24573.735780: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
61184           <...>-13338 (-----) [000] ...1 24573.735864: tracing_mark_write: E|13131
61185           <...>-13338 (-----) [000] ...1 24573.735867: tracing_mark_write: E|13131
61186           <...>-13338 (-----) [000] d..2 24573.735915: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
61187           <...>-13338 (-----) [000] d..3 24573.735927: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
61188           <...>-13338 (-----) [000] ...1 24573.735948: tracing_mark_write: E|13131
61189           <...>-13338 (-----) [000] d..1 24573.735954: sched_waking: comm=id.nn.benchmark pid=13337 prio=110 target_cpu=000
61190           <...>-13338 (-----) [000] dn.2 24573.735964: sched_wakeup: comm=id.nn.benchmark pid=13337 prio=110 target_cpu=000
61191           <...>-13338 (-----) [000] d..2 24573.735969: sched_switch: prev_comm=id.nn.benchmark prev_pid=13338 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13337 next_prio=110
61192           <...>-13337 (-----) [000] d..2 24573.735985: sched_switch: prev_comm=id.nn.benchmark prev_pid=13337 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13338 next_prio=110
61193           <...>-13338 (-----) [000] ...1 24573.736000: tracing_mark_write: E|13131
61194           <...>-13338 (-----) [000] d..1 24573.736211: sched_waking: comm=id.nn.benchmark pid=13337 prio=110 target_cpu=000
61195           <...>-13338 (-----) [000] dn.2 24573.736220: sched_wakeup: comm=id.nn.benchmark pid=13337 prio=110 target_cpu=000
61196           <...>-13338 (-----) [000] d..2 24573.736224: sched_switch: prev_comm=id.nn.benchmark prev_pid=13338 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13337 next_prio=110
61197           <...>-13337 (-----) [000] d..1 24573.736323: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
61198           <...>-13337 (-----) [000] dn.2 24573.736344: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
61199           <...>-13337 (-----) [000] dnh3 24573.736376: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
61200           <...>-13337 (-----) [000] dnh3 24573.736384: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
61201           <...>-13157 (-----) [004] dnh1 24573.736386: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
61202           <...>-13157 (-----) [004] d..2 24573.736389: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
61203         sugov:4-560   (  560) [004] d..2 24573.736392: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
61204           <...>-13337 (-----) [000] dnh4 24573.736394: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
61205           <...>-13337 (-----) [000] d..2 24573.736400: sched_switch: prev_comm=id.nn.benchmark prev_pid=13337 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
61206         sugov:0-559   (  559) [000] d..2 24573.736407: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
61207           <...>-13131 (-----) [000] d..2 24573.736420: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13337 next_prio=110
61208           <...>-13337 (-----) [000] d..1 24573.736476: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
61209           <...>-13337 (-----) [000] dn.2 24573.736484: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
61210           <...>-13337 (-----) [000] d..2 24573.736489: sched_switch: prev_comm=id.nn.benchmark prev_pid=13337 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
61211           <...>-13131 (-----) [000] ...1 24573.736507: tracing_mark_write: E|13131
61212           <...>-13131 (-----) [000] ...1 24573.736512: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
61213           <...>-13131 (-----) [000] ...1 24573.736518: tracing_mark_write: E|13131
61214           <...>-13131 (-----) [000] ...1 24573.736522: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
61215           <...>-13131 (-----) [000] ...1 24573.736528: tracing_mark_write: E|13131
61216           <...>-13131 (-----) [000] ...1 24573.736838: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
61217           <...>-13131 (-----) [000] ...1 24573.736876: tracing_mark_write: E|13131
61218           <...>-13131 (-----) [000] ...1 24573.736880: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
61219           <...>-13131 (-----) [000] ...1 24573.736887: tracing_mark_write: E|13131
61220           <...>-13131 (-----) [000] ...1 24573.736892: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
61221           <...>-13131 (-----) [000] ...1 24573.736896: tracing_mark_write: E|13131
61222           <...>-13131 (-----) [000] ...1 24573.736901: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
61223           <...>-13131 (-----) [000] ...1 24573.737017: tracing_mark_write: E|13131
61224           <...>-13131 (-----) [000] ...1 24573.737021: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
61225           <...>-13131 (-----) [000] d..2 24573.737030: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13337 next_prio=110
61226           <...>-13337 (-----) [000] d..2 24573.737091: sched_switch: prev_comm=id.nn.benchmark prev_pid=13337 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13338 next_prio=110
61227           <...>-13338 (-----) [000] d..2 24573.737121: sched_switch: prev_comm=id.nn.benchmark prev_pid=13338 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13339 next_prio=110
61228           <...>-13339 (-----) [000] d..2 24573.737455: sched_switch: prev_comm=id.nn.benchmark prev_pid=13339 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13340 next_prio=110
61229           <...>-13340 (-----) [000] ...1 24573.737477: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
61230           <...>-13340 (-----) [000] ...1 24573.737481: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
61231           <...>-13157 (-----) [004] d.s2 24573.737553: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
61232 id.nn.benchmark-13160 (13131) [007] d.s1 24573.737556: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
61233           <...>-13340 (-----) [000] dnh1 24573.737591: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
61234 id.nn.benchmark-13158 (13131) [005] d.h2 24573.737592: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
61235           <...>-13340 (-----) [000] dnh1 24573.737594: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
61236 id.nn.benchmark-13158 (13131) [005] d.h3 24573.737598: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
61237 id.nn.benchmark-13158 (13131) [005] d.h2 24573.737612: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
61238           <...>-13157 (-----) [004] d..2 24573.737617: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
61239           <...>-13340 (-----) [000] d..2 24573.737618: sched_switch: prev_comm=id.nn.benchmark prev_pid=13340 prev_prio=110 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61240         sugov:4-560   (  560) [004] d..2 24573.737621: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
61241     rcu_preempt-7     (    7) [000] dnh3 24573.737623: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
61242     rcu_preempt-7     (    7) [000] d..2 24573.737628: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
61243         sugov:0-559   (  559) [000] d..2 24573.737635: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
61244  kworker/u16:15-18488 (18488) [000] d..2 24573.737731: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61245     rcu_preempt-7     (    7) [000] d..2 24573.737741: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13340 next_prio=110
61246           <...>-13340 (-----) [000] ...1 24573.737802: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
61247           <...>-13340 (-----) [000] ...1 24573.737807: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
61248           <...>-13340 (-----) [000] ...1 24573.739758: tracing_mark_write: E|13131
61249           <...>-13340 (-----) [000] ...1 24573.739761: tracing_mark_write: E|13131
61250           <...>-13340 (-----) [000] ...1 24573.739772: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
61251           <...>-13340 (-----) [000] ...1 24573.739776: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
61252           <...>-13340 (-----) [000] ...1 24573.740471: tracing_mark_write: E|13131
61253           <...>-13340 (-----) [000] ...1 24573.740475: tracing_mark_write: E|13131
61254           <...>-13340 (-----) [000] ...1 24573.740488: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
61255           <...>-13340 (-----) [000] ...1 24573.740493: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
61256           <...>-13340 (-----) [000] ...1 24573.740820: tracing_mark_write: E|13131
61257           <...>-13340 (-----) [000] ...1 24573.740824: tracing_mark_write: E|13131
61258           <...>-13340 (-----) [000] ...1 24573.740834: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
61259           <...>-13340 (-----) [000] ...1 24573.740838: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
61260           <...>-13157 (-----) [004] d.s2 24573.740888: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
61261           <...>-13154 (-----) [001] d.s2 24573.740896: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
61262           <...>-13340 (-----) [000] dnh1 24573.740906: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
61263           <...>-13154 (-----) [001] d.s3 24573.740911: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
61264           <...>-13340 (-----) [000] d..2 24573.740918: sched_switch: prev_comm=id.nn.benchmark prev_pid=13340 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
61265  kworker/u16:15-18488 (18488) [000] d.h6 24573.741158: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=005
61266  kworker/u16:15-18488 (18488) [000] dnh7 24573.741176: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
61267  kworker/u16:15-18488 (18488) [000] dnh6 24573.741180: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
61268  kworker/u16:15-18488 (18488) [000] dnh7 24573.741194: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
61269           <...>-13154 (-----) [001] d..2 24573.741202: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
61270  kworker/u16:15-18488 (18488) [000] dnh4 24573.741228: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
61271  kworker/u16:15-18488 (18488) [000] dnh4 24573.741235: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
61272           <...>-13157 (-----) [004] dnh1 24573.741239: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
61273           <...>-13157 (-----) [004] d..2 24573.741242: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
61274         sugov:4-560   (  560) [004] d..2 24573.741245: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
61275  kworker/u16:15-18488 (18488) [000] dnh5 24573.741246: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
61276  kworker/u16:15-18488 (18488) [000] d..2 24573.741252: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
61277 id.nn.benchmark-13156 (13131) [002] d..2 24573.741255: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
61278 crtc_commit:111-253   (  253) [001] d..2 24573.741260: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
61279  crtc_event:111-254   (  254) [000] d..2 24573.741263: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
61280         sugov:0-559   (  559) [002] d..2 24573.741266: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
61281  crtc_event:111-254   (  254) [000] d..3 24573.741272: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
61282  crtc_event:111-254   (  254) [000] d..2 24573.741279: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61283           <...>-13154 (-----) [001] d..2 24573.741280: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
61284     rcu_preempt-7     (    7) [000] d..2 24573.741283: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=005
61285 id.nn.benchmark-13158 (13131) [005] dnh1 24573.741314: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=005
61286 id.nn.benchmark-13158 (13131) [005] d..2 24573.741317: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
61287     rcu_preempt-7     (    7) [000] d..2 24573.741319: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
61288         rcuop/0-10    (   10) [005] d..2 24573.741335: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
61289 crtc_commit:111-253   (  253) [001] d..2 24573.741343: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
61290  kworker/u16:15-18488 (18488) [000] d..2 24573.741413: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13340 next_prio=110
61291     logd.writer-563   (  555) [002] d..2 24573.741616: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
61292           <...>-13340 (-----) [000] ...1 24573.741758: tracing_mark_write: E|13131
61293           <...>-13340 (-----) [000] ...1 24573.741762: tracing_mark_write: E|13131
61294           <...>-13340 (-----) [000] ...1 24573.741773: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
61295           <...>-13340 (-----) [000] ...1 24573.741777: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
61296           <...>-13340 (-----) [000] ...1 24573.742167: tracing_mark_write: E|13131
61297           <...>-13340 (-----) [000] ...1 24573.742171: tracing_mark_write: E|13131
61298           <...>-13340 (-----) [000] ...1 24573.742181: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
61299           <...>-13340 (-----) [000] ...1 24573.742185: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
61300           <...>-13340 (-----) [000] ...1 24573.742567: tracing_mark_write: E|13131
61301           <...>-13340 (-----) [000] ...1 24573.742571: tracing_mark_write: E|13131
61302           <...>-13340 (-----) [000] ...1 24573.742589: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
61303           <...>-13340 (-----) [000] ...1 24573.742593: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
61304           <...>-13340 (-----) [000] ...1 24573.742783: tracing_mark_write: E|13131
61305           <...>-13340 (-----) [000] ...1 24573.742786: tracing_mark_write: E|13131
61306           <...>-13340 (-----) [000] ...1 24573.742799: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
61307           <...>-13340 (-----) [000] ...1 24573.742803: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
61308           <...>-13340 (-----) [000] ...1 24573.742874: tracing_mark_write: E|13131
61309           <...>-13340 (-----) [000] ...1 24573.742877: tracing_mark_write: E|13131
61310           <...>-13340 (-----) [000] ...1 24573.742887: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
61311           <...>-13340 (-----) [000] ...1 24573.742891: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
61312           <...>-13340 (-----) [000] ...1 24573.743162: tracing_mark_write: E|13131
61313           <...>-13340 (-----) [000] ...1 24573.743165: tracing_mark_write: E|13131
61314           <...>-13340 (-----) [000] ...1 24573.743174: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
61315           <...>-13340 (-----) [000] ...1 24573.743178: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
61316           <...>-13340 (-----) [000] ...1 24573.743225: tracing_mark_write: E|13131
61317           <...>-13340 (-----) [000] ...1 24573.743228: tracing_mark_write: E|13131
61318           <...>-13340 (-----) [000] ...1 24573.743237: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
61319           <...>-13340 (-----) [000] ...1 24573.743241: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
61320           <...>-13340 (-----) [000] ...1 24573.743256: tracing_mark_write: E|13131
61321           <...>-13340 (-----) [000] ...1 24573.743259: tracing_mark_write: E|13131
61322           <...>-13340 (-----) [000] ...1 24573.743271: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
61323           <...>-13340 (-----) [000] ...1 24573.743274: tracing_mark_write: E|13131
61324           <...>-13340 (-----) [000] ...1 24573.743282: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
61325           <...>-13340 (-----) [000] ...1 24573.743287: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
61326           <...>-13340 (-----) [000] d.h4 24573.743513: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
61327           <...>-13340 (-----) [000] dnh5 24573.743526: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
61328           <...>-13340 (-----) [000] d..2 24573.743539: sched_switch: prev_comm=id.nn.benchmark prev_pid=13340 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
61329 crtc_commit:111-253   (  253) [000] d..2 24573.743584: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13340 next_prio=110
61330           <...>-13340 (-----) [000] d.h4 24573.743793: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
61331           <...>-13340 (-----) [000] dnh5 24573.743799: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
61332           <...>-13340 (-----) [000] d..2 24573.743813: sched_switch: prev_comm=id.nn.benchmark prev_pid=13340 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
61333  crtc_event:111-254   (  254) [000] d..2 24573.743822: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13340 next_prio=110
61334           <...>-13154 (-----) [001] d.s2 24573.744231: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
61335           <...>-13154 (-----) [001] d.s3 24573.744243: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
61336           <...>-13340 (-----) [000] d..2 24573.744251: sched_switch: prev_comm=id.nn.benchmark prev_pid=13340 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
61337  crtc_event:111-254   (  254) [000] d..2 24573.744262: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13340 next_prio=110
61338           <...>-13340 (-----) [000] ...1 24573.744421: tracing_mark_write: E|13131
61339           <...>-13340 (-----) [000] ...1 24573.744425: tracing_mark_write: E|13131
61340           <...>-13340 (-----) [000] ...1 24573.744434: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
61341           <...>-13340 (-----) [000] ...1 24573.744438: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
61342           <...>-13340 (-----) [000] ...1 24573.744521: tracing_mark_write: E|13131
61343           <...>-13340 (-----) [000] ...1 24573.744524: tracing_mark_write: E|13131
61344           <...>-13340 (-----) [000] d..2 24573.744558: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
61345           <...>-13340 (-----) [000] d..3 24573.744571: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
61346           <...>-13340 (-----) [000] ...1 24573.744589: tracing_mark_write: E|13131
61347           <...>-13340 (-----) [000] d..1 24573.744593: sched_waking: comm=id.nn.benchmark pid=13339 prio=110 target_cpu=000
61348           <...>-13340 (-----) [000] dn.2 24573.744604: sched_wakeup: comm=id.nn.benchmark pid=13339 prio=110 target_cpu=000
61349           <...>-13340 (-----) [000] d..2 24573.744609: sched_switch: prev_comm=id.nn.benchmark prev_pid=13340 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13339 next_prio=110
61350           <...>-13339 (-----) [000] d..2 24573.744622: sched_switch: prev_comm=id.nn.benchmark prev_pid=13339 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13340 next_prio=110
61351           <...>-13340 (-----) [000] ...1 24573.744637: tracing_mark_write: E|13131
61352           <...>-13340 (-----) [000] d..1 24573.744830: sched_waking: comm=id.nn.benchmark pid=13339 prio=110 target_cpu=000
61353           <...>-13340 (-----) [000] dn.2 24573.744838: sched_wakeup: comm=id.nn.benchmark pid=13339 prio=110 target_cpu=000
61354           <...>-13340 (-----) [000] d..2 24573.744843: sched_switch: prev_comm=id.nn.benchmark prev_pid=13340 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13339 next_prio=110
61355           <...>-13339 (-----) [000] d..1 24573.744933: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
61356           <...>-13157 (-----) [004] dnh1 24573.744956: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
61357           <...>-13157 (-----) [004] d..2 24573.744981: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
61358           <...>-13339 (-----) [000] d.h3 24573.744982: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
61359           <...>-13131 (-----) [004] d..2 24573.744987: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
61360           <...>-13339 (-----) [000] d.h3 24573.744990: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
61361           <...>-13157 (-----) [004] dnh1 24573.744993: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
61362           <...>-13157 (-----) [004] d..2 24573.744995: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
61363         sugov:4-560   (  560) [004] d..2 24573.744998: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
61364           <...>-13339 (-----) [000] d.h4 24573.744998: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
61365 id.nn.benchmark-13156 (13131) [002] d..2 24573.745007: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
61366         sugov:0-559   (  559) [002] d..2 24573.745016: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
61367           <...>-13339 (-----) [000] d..1 24573.745051: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
61368           <...>-13339 (-----) [000] dn.2 24573.745067: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
61369           <...>-13339 (-----) [000] d..2 24573.745091: sched_switch: prev_comm=id.nn.benchmark prev_pid=13339 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
61370           <...>-13131 (-----) [000] ...1 24573.745110: tracing_mark_write: E|13131
61371           <...>-13131 (-----) [000] ...1 24573.745115: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
61372           <...>-13131 (-----) [000] ...1 24573.745120: tracing_mark_write: E|13131
61373           <...>-13131 (-----) [000] ...1 24573.745124: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
61374           <...>-13131 (-----) [000] ...1 24573.745128: tracing_mark_write: E|13131
61375           <...>-13131 (-----) [000] ...1 24573.745433: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
61376           <...>-13131 (-----) [000] ...1 24573.745469: tracing_mark_write: E|13131
61377           <...>-13131 (-----) [000] ...1 24573.745474: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
61378           <...>-13131 (-----) [000] ...1 24573.745479: tracing_mark_write: E|13131
61379           <...>-13131 (-----) [000] ...1 24573.745483: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
61380           <...>-13131 (-----) [000] ...1 24573.745487: tracing_mark_write: E|13131
61381           <...>-13131 (-----) [000] ...1 24573.745491: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
61382           <...>-13131 (-----) [000] ...1 24573.745573: tracing_mark_write: E|13131
61383           <...>-13131 (-----) [000] ...1 24573.745577: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
61384           <...>-13131 (-----) [000] d..2 24573.745586: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13339 next_prio=110
61385           <...>-13339 (-----) [000] d.h3 24573.745592: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
61386 id.nn.benchmark-13155 (13131) [006] dnh1 24573.745612: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=006
61387 id.nn.benchmark-13155 (13131) [006] d..2 24573.745636: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
61388           <...>-13339 (-----) [000] d.h4 24573.745636: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
61389           <...>-13339 (-----) [000] d.h4 24573.745643: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
61390           <...>-13157 (-----) [004] dnh1 24573.745646: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
61391           <...>-13157 (-----) [004] d..2 24573.745648: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
61392        DispSync-23904 (23896) [006] d..1 24573.745650: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
61393         sugov:4-560   (  560) [004] d..2 24573.745650: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
61394           <...>-13339 (-----) [000] d.h5 24573.745651: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
61395 id.nn.benchmark-13156 (13131) [002] d..2 24573.745658: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
61396           <...>-13339 (-----) [000] dnh1 24573.745663: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
61397         sugov:0-559   (  559) [002] d..2 24573.745664: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
61398        DispSync-23904 (23896) [006] d..2 24573.745666: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
61399           <...>-13339 (-----) [000] d..2 24573.745668: sched_switch: prev_comm=id.nn.benchmark prev_pid=13339 prev_prio=110 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
61400  appEventThread-23905 (23896) [000] d..3 24573.745712: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
61401 id.nn.benchmark-13155 (13131) [006] dnh1 24573.745729: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
61402 id.nn.benchmark-13155 (13131) [006] d..2 24573.745732: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
61403  appEventThread-23905 (23896) [000] d..2 24573.745739: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13339 next_prio=110
61404           <...>-13339 (-----) [000] d..2 24573.745786: sched_switch: prev_comm=id.nn.benchmark prev_pid=13339 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13340 next_prio=110
61405           <...>-13340 (-----) [000] d..2 24573.745815: sched_switch: prev_comm=id.nn.benchmark prev_pid=13340 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
61406     logd.writer-563   (  555) [000] d..2 24573.745897: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13341 next_prio=110
61407<...>-24151 ( 24151) [006] .... 24573.745926: binder_transaction: transaction=1670073 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
61408<...>-24151 ( 24151) [006] d..4 24573.745931: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
61409           <...>-13341 (-----) [000] dnh1 24573.745964: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
61410           <...>-13341 (-----) [000] d..2 24573.745971: sched_switch: prev_comm=id.nn.benchmark prev_pid=13341 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
61411  Binder:23896_5-25989 (23896) [000] .... 24573.745978: binder_transaction_received: transaction=1670073
61412<...>-24151 ( 24151) [006] d..3 24573.745982: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
61413  Binder:23896_5-25989 (23896) [000] d.h1 24573.746010: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
61414  Binder:23896_5-25989 (23896) [000] d..1 24573.746021: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
61415  Binder:23896_5-25989 (23896) [000] dn.2 24573.746028: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
61416  Binder:23896_5-25989 (23896) [000] d..2 24573.746032: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
61417  appEventThread-23905 (23896) [000] d..2 24573.746043: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
61418<...>-24151 ( 24151) [006] d..2 24573.746074: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
61419    RenderThread-24437 (24151) [000] d..1 24573.746170: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
61420    RenderThread-24437 (24151) [000] d..2 24573.746190: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
61421    RenderThread-24437 (24151) [000] d.h3 24573.746219: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
61422    RenderThread-24437 (24151) [000] d.h3 24573.746227: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
61423           <...>-13157 (-----) [004] dnh1 24573.746230: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
61424           <...>-13157 (-----) [004] d..2 24573.746232: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
61425         sugov:4-560   (  560) [004] d..2 24573.746235: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
61426    RenderThread-24437 (24151) [000] dnh4 24573.746236: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
61427    RenderThread-24437 (24151) [000] d..2 24573.746241: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
61428         sugov:0-559   (  559) [000] d..2 24573.746249: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
61429  Binder:23896_5-25989 (23896) [000] d..1 24573.746255: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
61430  Binder:23896_5-25989 (23896) [000] dn.2 24573.746260: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
61431  Binder:23896_5-25989 (23896) [000] d..2 24573.746264: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
61432  appEventThread-23905 (23896) [000] d..2 24573.746287: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
61433  Binder:23896_5-25989 (23896) [000] d..2 24573.746308: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
61434    RenderThread-24437 (24151) [000] .... 24573.746360: binder_transaction: transaction=1670074 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
61435    RenderThread-24437 (24151) [000] d..4 24573.746364: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
61436    RenderThread-24437 (24151) [000] d..5 24573.746374: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
61437    RenderThread-24437 (24151) [000] d..2 24573.746382: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
61438  Binder:23896_5-25989 (23896) [000] .... 24573.746385: binder_transaction_received: transaction=1670074
61439  Binder:23896_5-25989 (23896) [000] .... 24573.746433: binder_transaction: transaction=1670075 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
61440  Binder:23896_5-25989 (23896) [000] d..2 24573.746440: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
61441  Binder:23896_5-25989 (23896) [000] d..3 24573.746449: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
61442  Binder:23896_5-25989 (23896) [000] d..2 24573.746468: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
61443    RenderThread-24437 (24151) [000] .... 24573.746472: binder_transaction_received: transaction=1670075
61444    RenderThread-24437 (24151) [000] d..2 24573.747449: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
61445<...>-24151 ( 24151) [000] d..2 24573.747501: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13341 next_prio=110
61446           <...>-13341 (-----) [000] d..2 24573.747509: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
61447           <...>-13341 (-----) [000] d..3 24573.747515: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
61448           <...>-13341 (-----) [000] d.h1 24573.747546: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
61449           <...>-13157 (-----) [004] d.s2 24573.747552: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
61450           <...>-13157 (-----) [004] d.s3 24573.747570: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
61451 id.nn.benchmark-13155 (13131) [006] dnh1 24573.747572: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
61452 id.nn.benchmark-13155 (13131) [006] dnh1 24573.747574: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
61453 id.nn.benchmark-13155 (13131) [006] d..2 24573.747580: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
61454           <...>-13341 (-----) [000] d.H2 24573.747608: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
61455           <...>-13341 (-----) [000] d.H2 24573.747616: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
61456           <...>-13157 (-----) [004] dnh1 24573.747619: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
61457           <...>-13157 (-----) [004] d..2 24573.747621: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
61458           <...>-13341 (-----) [000] dnH3 24573.747622: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
61459         sugov:4-560   (  560) [004] d..2 24573.747624: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
61460           <...>-13341 (-----) [000] dns1 24573.747630: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
61461 id.nn.benchmark-13158 (13131) [005] dnh1 24573.747664: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
61462 id.nn.benchmark-13158 (13131) [005] d..2 24573.747666: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61463           <...>-13341 (-----) [000] dnH3 24573.747683: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
61464           <...>-13157 (-----) [004] dnh1 24573.747699: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=004
61465           <...>-13157 (-----) [004] d..2 24573.747701: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
61466 kgsl_worker_thr-246   (  246) [004] d..2 24573.747706: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
61467     rcu_preempt-7     (    7) [005] d..2 24573.747708: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
61468           <...>-13341 (-----) [000] d..2 24573.747709: sched_switch: prev_comm=id.nn.benchmark prev_pid=13341 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
61469         sugov:0-559   (  559) [000] d..2 24573.747716: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13341 next_prio=110
61470  kworker/u16:15-18488 (18488) [006] d..2 24573.747720: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
61471    RenderThread-24437 (24151) [006] d..1 24573.747733: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=004
61472    RenderThread-24437 (24151) [006] d..2 24573.747739: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=004
61473           <...>-13157 (-----) [004] d..2 24573.747744: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
61474 kgsl_worker_thr-246   (  246) [004] d..2 24573.747765: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
61475 kgsl_worker_thr-246   (  246) [004] d..3 24573.747774: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=005
61476 kgsl_worker_thr-246   (  246) [004] d..2 24573.747778: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
61477 id.nn.benchmark-13158 (13131) [005] d..2 24573.747780: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
61478  kworker/u16:15-18488 (18488) [005] d..2 24573.747796: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
61479    RenderThread-24437 (24151) [006] .... 24573.747809: binder_transaction: transaction=1670076 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
61480    RenderThread-24437 (24151) [006] d..4 24573.747813: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
61481    RenderThread-24437 (24151) [006] d..5 24573.747827: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
61482           <...>-13157 (-----) [004] d..2 24573.747843: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
61483  Binder:23896_5-25989 (23896) [004] .... 24573.747845: binder_transaction_received: transaction=1670076
61484    RenderThread-24437 (24151) [006] d..2 24573.747846: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
61485  Binder:23896_5-25989 (23896) [004] .... 24573.747903: binder_transaction: transaction=1670077 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
61486  Binder:23896_5-25989 (23896) [004] d..2 24573.747905: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
61487  Binder:23896_5-25989 (23896) [004] d..3 24573.747914: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
61488 id.nn.benchmark-13155 (13131) [006] d..2 24573.747920: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
61489    RenderThread-24437 (24151) [006] .... 24573.747922: binder_transaction_received: transaction=1670077
61490  Binder:23896_5-25989 (23896) [004] d..2 24573.747924: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
61491    RenderThread-24437 (24151) [006] d..2 24573.747945: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
61492           <...>-13341 (-----) [000] d..2 24573.748004: sched_switch: prev_comm=id.nn.benchmark prev_pid=13341 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
61493     logd.writer-563   (  555) [000] d..2 24573.748177: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13342 next_prio=110
61494           <...>-13342 (-----) [000] ...1 24573.748206: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
61495           <...>-13342 (-----) [000] ...1 24573.748210: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
61496           <...>-13342 (-----) [000] d..2 24573.748272: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
61497           <...>-13342 (-----) [000] d..3 24573.748280: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
61498           <...>-13342 (-----) [000] ...1 24573.748348: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
61499           <...>-13342 (-----) [000] ...1 24573.748354: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
61500 id.nn.benchmark-13160 (13131) [007] d..3 24573.748918: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
61501 id.nn.benchmark-13160 (13131) [007] d..2 24573.748927: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
61502           <...>-13154 (-----) [001] dnh1 24573.748929: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
61503           <...>-13154 (-----) [001] d..2 24573.748935: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
61504          <idle>-0     (-----) [007] d..1 24573.748941: cpu_idle: state=0 cpu_id=7
61505          <idle>-0     (-----) [007] .n.1 24573.748965: cpu_idle: state=4294967295 cpu_id=7
61506          <idle>-0     (-----) [007] d..2 24573.748986: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
61507     migration/1-17    (   17) [001] d.h3 24573.748987: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
61508 id.nn.benchmark-13158 (13131) [005] d..2 24573.748997: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
61509     migration/1-17    (   17) [001] d.h3 24573.748999: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
61510          <idle>-0     (-----) [005] dnh2 24573.749005: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
61511     migration/1-17    (   17) [001] d.h4 24573.749009: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
61512          <idle>-0     (-----) [005] d..2 24573.749009: 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
61513     migration/1-17    (   17) [001] d..2 24573.749016: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
61514         sugov:4-560   (  560) [005] d..2 24573.749019: 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
61515          <idle>-0     (-----) [005] d..1 24573.749024: cpu_idle: state=0 cpu_id=5
61516         sugov:0-559   (  559) [001] d..2 24573.749038: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
61517           <...>-13157 (-----) [004] d..3 24573.749145: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
61518           <...>-13157 (-----) [004] d..2 24573.749153: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
61519     logd.writer-563   (  555) [001] d..2 24573.749156: 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
61520 id.nn.benchmark-13156 (13131) [002] dnh1 24573.749156: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
61521 id.nn.benchmark-13156 (13131) [002] d..2 24573.749161: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
61522          <idle>-0     (-----) [004] d..1 24573.749162: cpu_idle: state=0 cpu_id=4
61523          <idle>-0     (-----) [001] d..1 24573.749171: cpu_idle: state=0 cpu_id=1
61524          <idle>-0     (-----) [004] .n.1 24573.749184: cpu_idle: state=4294967295 cpu_id=4
61525          <idle>-0     (-----) [004] d..2 24573.749201: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
61526     migration/2-25    (   25) [002] d..2 24573.749213: 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
61527          <idle>-0     (-----) [002] d..1 24573.749228: cpu_idle: state=0 cpu_id=2
61528 id.nn.benchmark-13155 (13131) [006] d.h1 24573.749565: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=006
61529 id.nn.benchmark-13155 (13131) [006] d.h2 24573.749596: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
61530          <idle>-0     (-----) [002] dnh2 24573.749597: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
61531          <idle>-0     (-----) [002] .n.1 24573.749601: cpu_idle: state=4294967295 cpu_id=2
61532 id.nn.benchmark-13155 (13131) [006] d.h3 24573.749601: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
61533 id.nn.benchmark-13155 (13131) [006] d.h2 24573.749602: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
61534          <idle>-0     (-----) [005] .n.1 24573.749606: cpu_idle: state=4294967295 cpu_id=5
61535          <idle>-0     (-----) [002] d..2 24573.749607: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
61536          <idle>-0     (-----) [005] d..2 24573.749609: 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
61537         sugov:4-560   (  560) [005] d..3 24573.749613: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
61538          <idle>-0     (-----) [001] dnh2 24573.749616: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
61539        DispSync-23904 (23896) [002] d..1 24573.749619: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
61540          <idle>-0     (-----) [001] .n.1 24573.749620: cpu_idle: state=4294967295 cpu_id=1
61541         sugov:4-560   (  560) [005] d..2 24573.749621: 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
61542          <idle>-0     (-----) [005] d..1 24573.749623: cpu_idle: state=0 cpu_id=5
61543 id.nn.benchmark-13159 (13131) [003] dnh1 24573.749625: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
61544          <idle>-0     (-----) [001] d..2 24573.749626: 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
61545 id.nn.benchmark-13159 (13131) [003] d..2 24573.749631: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
61546        DispSync-23904 (23896) [002] d..2 24573.749637: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
61547         sugov:0-559   (  559) [001] d..2 24573.749643: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
61548           <...>-13342 (-----) [000] d..2 24573.749649: sched_switch: prev_comm=id.nn.benchmark prev_pid=13342 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
61549          <idle>-0     (-----) [001] d..1 24573.749649: cpu_idle: state=0 cpu_id=1
61550          <idle>-0     (-----) [005] .n.1 24573.749654: cpu_idle: state=4294967295 cpu_id=5
61551          <idle>-0     (-----) [005] d..2 24573.749675: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
61552        DispSync-23904 (23896) [002] d..2 24573.749675: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
61553   sfEventThread-23906 (23896) [000] d..3 24573.749678: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
61554          <idle>-0     (-----) [002] d..1 24573.749683: cpu_idle: state=0 cpu_id=2
61555 id.nn.benchmark-13155 (13131) [006] d..2 24573.749685: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
61556   sfEventThread-23906 (23896) [000] d..4 24573.749691: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
61557<...>-33 ( 33) [003] d..2 24573.749692: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13342 next_prio=110
61558          <idle>-0     (-----) [006] d..1 24573.749693: cpu_idle: state=0 cpu_id=6
61559          <idle>-0     (-----) [001] .n.1 24573.749695: cpu_idle: state=4294967295 cpu_id=1
61560          <idle>-0     (-----) [001] d..2 24573.749701: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
61561   sfEventThread-23906 (23896) [000] d..2 24573.749712: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61562          <idle>-0     (-----) [000] d..1 24573.749728: cpu_idle: state=0 cpu_id=0
61563          <idle>-0     (-----) [006] ...1 24573.749883: cpu_idle: state=4294967295 cpu_id=6
61564          <idle>-0     (-----) [006] d..1 24573.749885: cpu_idle: state=0 cpu_id=6
61565  surfaceflinger-23896 (23896) [001] d..1 24573.749927: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
61566  surfaceflinger-23896 (23896) [001] d..2 24573.749939: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
61567          <idle>-0     (-----) [000] .n.1 24573.749945: cpu_idle: state=4294967295 cpu_id=0
61568          <idle>-0     (-----) [000] d..2 24573.749950: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
61569   sfEventThread-23906 (23896) [000] d..2 24573.749969: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61570          <idle>-0     (-----) [000] d..1 24573.749974: cpu_idle: state=0 cpu_id=0
61571  surfaceflinger-23896 (23896) [001] ...1 24573.750062: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
61572  surfaceflinger-23896 (23896) [001] ...1 24573.750066: tracing_mark_write: E|23896
61573           <...>-13342 (-----) [003] d..1 24573.750087: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
61574           <...>-13342 (-----) [003] d..1 24573.750101: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=004
61575          <idle>-0     (-----) [006] dnh2 24573.750102: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
61576          <idle>-0     (-----) [006] .n.1 24573.750104: cpu_idle: state=4294967295 cpu_id=6
61577  surfaceflinger-23896 (23896) [001] .... 24573.750104: binder_transaction: transaction=1670078 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
61578          <idle>-0     (-----) [006] d..2 24573.750108: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
61579           <...>-13342 (-----) [003] d..1 24573.750110: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
61580 id.nn.benchmark-13156 (13131) [004] d.h1 24573.750113: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=004
61581           <...>-13342 (-----) [003] d..1 24573.750119: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=007
61582 id.nn.benchmark-13159 (13131) [005] d.h1 24573.750121: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
61583  surfaceflinger-23896 (23896) [001] ...2 24573.750123: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
61584  surfaceflinger-23896 (23896) [001] d..4 24573.750129: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
61585           <...>-13154 (-----) [007] d.h1 24573.750131: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=007
61586  surfaceflinger-23896 (23896) [001] d..5 24573.750151: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
61587          <idle>-0     (-----) [002] .n.1 24573.750157: cpu_idle: state=4294967295 cpu_id=2
61588          <idle>-0     (-----) [002] d..2 24573.750180: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
61589  surfaceflinger-23896 (23896) [001] d.h5 24573.750181: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
61590  surfaceflinger-23896 (23896) [001] d.h5 24573.750188: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
61591 id.nn.benchmark-13159 (13131) [005] dnh1 24573.750191: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
61592 id.nn.benchmark-13159 (13131) [005] d..2 24573.750193: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
61593         sugov:4-560   (  560) [005] d..2 24573.750196: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
61594  surfaceflinger-23896 (23896) [001] d.h6 24573.750199: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
61595          <idle>-0     (-----) [000] .n.1 24573.750204: cpu_idle: state=4294967295 cpu_id=0
61596  HwBinder:598_3-633   (  598) [002] .... 24573.750205: binder_transaction_received: transaction=1670078
61597          <idle>-0     (-----) [000] d..2 24573.750209: 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
61598  surfaceflinger-23896 (23896) [001] d..2 24573.750230: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
61599         sugov:0-559   (  559) [000] d..2 24573.750233: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
61600  HwBinder:598_3-633   (  598) [002] ...1 24573.750239: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
61601  HwBinder:598_3-633   (  598) [002] ...1 24573.750316: tracing_mark_write: B|598|HWCSession::PresentDisplay::
61602  HwBinder:598_3-633   (  598) [002] ...1 24573.750430: tracing_mark_write: B|598|HWDeviceDRM::Commit::
61603  HwBinder:598_3-633   (  598) [002] ...1 24573.750438: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
61604  HwBinder:598_3-633   (  598) [002] d..2 24573.750826: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
61605  HwBinder:598_3-633   (  598) [002] d..3 24573.750844: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
61606           <...>-13342 (-----) [003] d..2 24573.750853: sched_switch: prev_comm=id.nn.benchmark prev_pid=13342 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
61607           <...>-13154 (-----) [007] d.s2 24573.750890: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=005
61608 crtc_commit:111-253   (  253) [003] d.s2 24573.750897: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
61609           <...>-13154 (-----) [007] d.s2 24573.750905: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
61610  HwBinder:598_3-633   (  598) [002] d.h1 24573.750910: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
61611           <...>-13154 (-----) [007] dns3 24573.750910: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
61612           <...>-13154 (-----) [007] dnH3 24573.750935: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
61613 crtc_commit:111-253   (  253) [003] d.s3 24573.750936: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
61614  HwBinder:598_3-633   (  598) [002] ...1 24573.750941: tracing_mark_write: E|598
61615  HwBinder:598_3-633   (  598) [002] ...1 24573.750944: tracing_mark_write: E|598
61616           <...>-13154 (-----) [007] dnH4 24573.750964: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
61617           <...>-13154 (-----) [007] dnH3 24573.750965: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
61618 id.nn.benchmark-13156 (13131) [004] d..2 24573.750970: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
61619           <...>-13154 (-----) [007] d..2 24573.750973: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=kworker/7:0 next_pid=12892 next_prio=120
61620         sugov:4-560   (  560) [004] d..2 24573.750974: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
61621 id.nn.benchmark-13160 (13131) [000] dnh1 24573.750975: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
61622 id.nn.benchmark-13160 (13131) [000] d..2 24573.750981: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
61623  HwBinder:598_3-633   (  598) [002] ...1 24573.750983: tracing_mark_write: E|598
61624     kworker/7:0-12892 (12892) [007] d..2 24573.750984: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
61625         sugov:0-559   (  559) [000] d..2 24573.750989: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
61626  HwBinder:598_3-633   (  598) [002] ...1 24573.751019: tracing_mark_write: E|598
61627  HwBinder:598_3-633   (  598) [002] .... 24573.751028: binder_transaction: transaction=1670079 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
61628  HwBinder:598_3-633   (  598) [002] d..2 24573.751039: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
61629  HwBinder:598_3-633   (  598) [002] d..3 24573.751050: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
61630  HwBinder:598_3-633   (  598) [002] .... 24573.751052: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
61631           <...>-13157 (-----) [001] d..2 24573.751058: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
61632  surfaceflinger-23896 (23896) [001] .... 24573.751063: binder_transaction_received: transaction=1670079
61633  HwBinder:598_3-633   (  598) [002] d..2 24573.751090: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
61634  kworker/u16:15-18488 (18488) [002] d..2 24573.751305: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61635     rcu_preempt-7     (    7) [002] d..2 24573.751310: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=005
61636  surfaceflinger-23896 (23896) [001] d..2 24573.751316: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
61637     rcu_preempt-7     (    7) [002] d..3 24573.751330: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
61638 crtc_commit:111-253   (  253) [003] d.s1 24573.751334: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
61639 crtc_commit:111-253   (  253) [003] d.s2 24573.751360: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
61640     rcu_preempt-7     (    7) [002] d..2 24573.751362: 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
61641         rcuop/2-29    (   29) [002] d..2 24573.751378: 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
61642          <idle>-0     (-----) [002] d..1 24573.751387: cpu_idle: state=0 cpu_id=2
61643 crtc_commit:111-253   (  253) [003] d..2 24573.751604: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
61644     ksoftirqd/3-34    (   34) [003] d.s2 24573.751616: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
61645     ksoftirqd/3-34    (   34) [003] d.s3 24573.751639: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
61646     ksoftirqd/3-34    (   34) [003] d.s3 24573.751645: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
61647          <idle>-0     (-----) [002] .n.1 24573.751649: cpu_idle: state=4294967295 cpu_id=2
61648     ksoftirqd/3-34    (   34) [003] d..2 24573.751653: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13342 next_prio=110
61649          <idle>-0     (-----) [002] d..2 24573.751656: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
61650  kworker/u16:15-18488 (18488) [002] d..2 24573.751859: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
61651          <idle>-0     (-----) [002] d..1 24573.751864: cpu_idle: state=0 cpu_id=2
61652          <idle>-0     (-----) [002] ...1 24573.754239: cpu_idle: state=4294967295 cpu_id=2
61653          <idle>-0     (-----) [002] d..1 24573.754241: cpu_idle: state=0 cpu_id=2
61654 id.nn.benchmark-13156 (13131) [004] d..3 24573.754668: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
61655 id.nn.benchmark-13155 (13131) [006] d..2 24573.754671: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
61656 id.nn.benchmark-13156 (13131) [004] d..2 24573.754676: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
61657 id.nn.benchmark-13160 (13131) [000] dnh1 24573.754679: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
61658          <idle>-0     (-----) [004] d..1 24573.754679: cpu_idle: state=0 cpu_id=4
61659 id.nn.benchmark-13160 (13131) [000] d..2 24573.754683: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
61660          <idle>-0     (-----) [004] .n.1 24573.754707: cpu_idle: state=4294967295 cpu_id=4
61661           <...>-13342 (-----) [003] ...1 24573.754727: tracing_mark_write: E|13131
61662          <idle>-0     (-----) [004] d..2 24573.754728: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
61663     migration/0-13    (   13) [000] d.h3 24573.754730: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
61664           <...>-13342 (-----) [003] ...1 24573.754732: tracing_mark_write: E|13131
61665     migration/0-13    (   13) [000] d.h3 24573.754741: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
61666           <...>-13154 (-----) [007] dnh1 24573.754744: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
61667           <...>-13154 (-----) [007] d..2 24573.754747: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
61668           <...>-13342 (-----) [003] ...1 24573.754749: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
61669         sugov:4-560   (  560) [007] d..2 24573.754751: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
61670     migration/0-13    (   13) [000] d.h4 24573.754753: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
61671           <...>-13342 (-----) [003] ...1 24573.754754: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
61672 id.nn.benchmark-13158 (13131) [005] d..2 24573.754756: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
61673          <idle>-0     (-----) [002] .n.1 24573.754757: cpu_idle: state=4294967295 cpu_id=2
61674           <...>-13154 (-----) [007] d..3 24573.754759: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
61675          <idle>-0     (-----) [005] d..1 24573.754760: cpu_idle: state=0 cpu_id=5
61676          <idle>-0     (-----) [002] d..2 24573.754763: 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
61677           <...>-13154 (-----) [007] d..2 24573.754766: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
61678     migration/0-13    (   13) [000] d..2 24573.754766: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61679           <...>-13157 (-----) [001] dnh1 24573.754769: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
61680          <idle>-0     (-----) [007] d..1 24573.754770: cpu_idle: state=0 cpu_id=7
61681           <...>-13157 (-----) [001] d..2 24573.754774: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
61682          <idle>-0     (-----) [000] d..1 24573.754775: cpu_idle: state=0 cpu_id=0
61683         sugov:0-559   (  559) [002] d..2 24573.754783: 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
61684          <idle>-0     (-----) [002] d..1 24573.754786: cpu_idle: state=0 cpu_id=2
61685          <idle>-0     (-----) [007] .n.1 24573.754795: cpu_idle: state=4294967295 cpu_id=7
61686          <idle>-0     (-----) [007] d..2 24573.754814: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
61687     migration/1-17    (   17) [001] d..2 24573.754823: 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
61688          <idle>-0     (-----) [001] d..1 24573.754834: cpu_idle: state=0 cpu_id=1
61689           <...>-13342 (-----) [003] d..1 24573.755247: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=007
61690           <...>-13342 (-----) [003] d..1 24573.755265: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
61691          <idle>-0     (-----) [005] dnh2 24573.755268: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
61692          <idle>-0     (-----) [005] .n.1 24573.755270: cpu_idle: state=4294967295 cpu_id=5
61693          <idle>-0     (-----) [005] d..2 24573.755273: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
61694           <...>-13342 (-----) [003] d..1 24573.755275: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=004
61695 id.nn.benchmark-13159 (13131) [006] d.h1 24573.755278: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
61696           <...>-13342 (-----) [003] d..1 24573.755289: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
61697           <...>-13154 (-----) [005] d.h1 24573.755290: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=005
61698           <...>-13154 (-----) [005] d.h1 24573.755300: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
61699          <idle>-0     (-----) [000] d.h2 24573.756048: sched_waking: comm=DeviceStorageMo pid=24094 prio=130 target_cpu=000
61700          <idle>-0     (-----) [000] dnh3 24573.756061: sched_wakeup: comm=DeviceStorageMo pid=24094 prio=130 target_cpu=000
61701          <idle>-0     (-----) [000] .n.1 24573.756066: cpu_idle: state=4294967295 cpu_id=0
61702          <idle>-0     (-----) [000] d..2 24573.756073: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DeviceStorageMo next_pid=24094 next_prio=130
61703          <idle>-0     (-----) [001] ...1 24573.756279: cpu_idle: state=4294967295 cpu_id=1
61704          <idle>-0     (-----) [001] d..1 24573.756282: cpu_idle: state=0 cpu_id=1
61705<...>-24094 ( 23968) [000] d..2 24573.756790: sched_switch: prev_comm=DeviceStorageMo prev_pid=24094 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
61706 id.nn.benchmark-13158 (13131) [000] d.h4 24573.756822: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
61707 id.nn.benchmark-13158 (13131) [000] d.h4 24573.756834: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
61708           <...>-13154 (-----) [005] dnh1 24573.756837: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
61709           <...>-13154 (-----) [005] d..2 24573.756840: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
61710 id.nn.benchmark-13158 (13131) [000] d.h5 24573.756842: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
61711         sugov:4-560   (  560) [005] d..2 24573.756844: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
61712          <idle>-0     (-----) [002] .n.1 24573.756847: cpu_idle: state=4294967295 cpu_id=2
61713          <idle>-0     (-----) [002] d..2 24573.756851: 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
61714         sugov:0-559   (  559) [002] d..2 24573.756876: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
61715           <...>-13154 (-----) [002] d.s1 24573.757577: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
61716           <...>-13157 (-----) [007] d.H2 24573.757583: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
61717           <...>-13157 (-----) [007] d.H3 24573.757589: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
61718           <...>-13157 (-----) [007] d.H2 24573.757590: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
61719          <idle>-0     (-----) [001] ...1 24573.757591: cpu_idle: state=4294967295 cpu_id=1
61720          <idle>-0     (-----) [001] d..1 24573.757594: cpu_idle: state=0 cpu_id=1
61721           <...>-13154 (-----) [002] d.s2 24573.757594: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61722 id.nn.benchmark-13156 (13131) [005] d..2 24573.757595: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
61723         sugov:4-560   (  560) [005] d..2 24573.757598: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
61724           <...>-13157 (-----) [007] d.s2 24573.757599: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
61725           <...>-13342 (-----) [003] d..2 24573.757604: sched_switch: prev_comm=id.nn.benchmark prev_pid=13342 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61726          <idle>-0     (-----) [001] dnh2 24573.757608: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
61727     rcu_preempt-7     (    7) [003] d..2 24573.757614: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13342 next_prio=110
61728          <idle>-0     (-----) [001] dnh2 24573.757617: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
61729          <idle>-0     (-----) [001] .n.1 24573.757620: cpu_idle: state=4294967295 cpu_id=1
61730          <idle>-0     (-----) [001] d..2 24573.757626: 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
61731         sugov:0-559   (  559) [001] d..2 24573.757633: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
61732 id.nn.benchmark-13158 (13131) [000] d.H4 24573.757649: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
61733 id.nn.benchmark-13158 (13131) [000] d.H5 24573.757667: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
61734 id.nn.benchmark-13158 (13131) [000] d.H4 24573.757670: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
61735 id.nn.benchmark-13158 (13131) [000] d.H5 24573.757679: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
61736           <...>-13342 (-----) [003] d..2 24573.757687: sched_switch: prev_comm=id.nn.benchmark prev_pid=13342 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
61737  kworker/u16:15-18488 (18488) [001] d..2 24573.757693: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
61738  crtc_event:111-254   (  254) [001] d..2 24573.757709: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
61739  kworker/u16:15-18488 (18488) [001] .... 24573.757781: clk_set_rate: l3_cluster0_vote_clk 1209600000
61740 crtc_commit:111-253   (  253) [003] d..2 24573.757810: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13342 next_prio=110
61741  kworker/u16:15-18488 (18488) [001] d..2 24573.757812: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
61742           <...>-13342 (-----) [003] ...1 24573.758068: tracing_mark_write: E|13131
61743           <...>-13342 (-----) [003] ...1 24573.758071: tracing_mark_write: E|13131
61744           <...>-13342 (-----) [003] ...1 24573.758097: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
61745           <...>-13342 (-----) [003] ...1 24573.758103: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
61746           <...>-13342 (-----) [003] ...1 24573.758439: tracing_mark_write: E|13131
61747           <...>-13342 (-----) [003] ...1 24573.758443: tracing_mark_write: E|13131
61748           <...>-13342 (-----) [003] ...1 24573.758458: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
61749           <...>-13342 (-----) [003] ...1 24573.758462: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
61750           <...>-13342 (-----) [003] ...1 24573.758705: tracing_mark_write: E|13131
61751           <...>-13342 (-----) [003] ...1 24573.758709: tracing_mark_write: E|13131
61752           <...>-13342 (-----) [003] ...1 24573.758721: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
61753           <...>-13342 (-----) [003] ...1 24573.758726: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
61754           <...>-13342 (-----) [003] ...1 24573.759127: tracing_mark_write: E|13131
61755           <...>-13342 (-----) [003] ...1 24573.759132: tracing_mark_write: E|13131
61756           <...>-13342 (-----) [003] ...1 24573.759143: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
61757           <...>-13342 (-----) [003] ...1 24573.759147: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
61758           <...>-13342 (-----) [003] ...1 24573.759548: tracing_mark_write: E|13131
61759           <...>-13342 (-----) [003] ...1 24573.759552: tracing_mark_write: E|13131
61760           <...>-13342 (-----) [003] ...1 24573.759573: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
61761           <...>-13342 (-----) [003] ...1 24573.759578: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
61762           <...>-13342 (-----) [003] ...1 24573.759772: tracing_mark_write: E|13131
61763           <...>-13342 (-----) [003] ...1 24573.759775: tracing_mark_write: E|13131
61764           <...>-13342 (-----) [003] ...1 24573.759789: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
61765           <...>-13342 (-----) [003] ...1 24573.759793: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
61766           <...>-13342 (-----) [003] ...1 24573.759867: tracing_mark_write: E|13131
61767           <...>-13342 (-----) [003] ...1 24573.759870: tracing_mark_write: E|13131
61768           <...>-13342 (-----) [003] ...1 24573.759883: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
61769           <...>-13342 (-----) [003] ...1 24573.759888: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
61770 id.nn.benchmark-13158 (13131) [000] d.h4 24573.759971: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
61771 id.nn.benchmark-13158 (13131) [000] d.h5 24573.759981: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
61772           <...>-13342 (-----) [003] d..2 24573.759989: sched_switch: prev_comm=id.nn.benchmark prev_pid=13342 prev_prio=110 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
61773 crtc_commit:111-253   (  253) [003] d..2 24573.760035: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13342 next_prio=110
61774 id.nn.benchmark-13158 (13131) [000] d.h4 24573.760262: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
61775 id.nn.benchmark-13158 (13131) [000] d.h5 24573.760274: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
61776           <...>-13342 (-----) [003] d..2 24573.760280: sched_switch: prev_comm=id.nn.benchmark prev_pid=13342 prev_prio=110 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
61777  crtc_event:111-254   (  254) [003] d..2 24573.760294: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13342 next_prio=110
61778           <...>-13342 (-----) [003] ...1 24573.760297: tracing_mark_write: E|13131
61779           <...>-13342 (-----) [003] ...1 24573.760302: tracing_mark_write: E|13131
61780           <...>-13342 (-----) [003] ...1 24573.760313: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
61781           <...>-13342 (-----) [003] ...1 24573.760317: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
61782           <...>-13342 (-----) [003] ...1 24573.760375: tracing_mark_write: E|13131
61783           <...>-13342 (-----) [003] ...1 24573.760378: tracing_mark_write: E|13131
61784           <...>-13342 (-----) [003] ...1 24573.760387: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
61785           <...>-13342 (-----) [003] ...1 24573.760391: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
61786           <...>-13342 (-----) [003] ...1 24573.760411: tracing_mark_write: E|13131
61787           <...>-13342 (-----) [003] ...1 24573.760414: tracing_mark_write: E|13131
61788           <...>-13342 (-----) [003] ...1 24573.760424: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
61789           <...>-13342 (-----) [003] ...1 24573.760427: tracing_mark_write: E|13131
61790           <...>-13342 (-----) [003] ...1 24573.760437: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
61791           <...>-13342 (-----) [003] ...1 24573.760441: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
61792           <...>-13157 (-----) [007] d.s2 24573.760889: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
61793           <...>-13342 (-----) [003] d.s2 24573.760899: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
61794 id.nn.benchmark-13155 (13131) [001] d.s2 24573.760899: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61795           <...>-13342 (-----) [003] dns3 24573.760907: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
61796 id.nn.benchmark-13155 (13131) [001] d.s3 24573.760911: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61797           <...>-13342 (-----) [003] dnH2 24573.760918: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
61798           <...>-13342 (-----) [003] d..2 24573.760924: sched_switch: prev_comm=id.nn.benchmark prev_pid=13342 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
61799  crtc_event:111-254   (  254) [003] d..2 24573.760934: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61800     rcu_preempt-7     (    7) [003] d..2 24573.760938: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=005
61801 id.nn.benchmark-13156 (13131) [005] dnh1 24573.760969: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=005
61802 id.nn.benchmark-13156 (13131) [005] d..2 24573.760972: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
61803     rcu_preempt-7     (    7) [003] d..2 24573.760974: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
61804         rcuop/0-10    (   10) [005] d..2 24573.760975: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
61805         rcuop/0-10    (   10) [005] d..3 24573.760988: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
61806 id.nn.benchmark-13160 (13131) [004] d..2 24573.760994: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
61807         rcuop/1-21    (   21) [004] d..2 24573.761003: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
61808         rcuop/0-10    (   10) [005] d..2 24573.761017: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
61809  kworker/u16:15-18488 (18488) [003] .... 24573.761144: clk_set_rate: l3_cluster1_vote_clk 300000000
61810  kworker/u16:15-18488 (18488) [003] .... 24573.761149: clk_set_rate: l3_clk 1209600000
61811  kworker/u16:15-18488 (18488) [003] d..2 24573.761453: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13342 next_prio=110
61812           <...>-13342 (-----) [003] d.s2 24573.761483: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
61813           <...>-13342 (-----) [003] d.s3 24573.761492: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
61814           <...>-13342 (-----) [003] dns3 24573.761495: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
61815           <...>-13342 (-----) [003] d..2 24573.761501: sched_switch: prev_comm=id.nn.benchmark prev_pid=13342 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
61816  kworker/u16:15-18488 (18488) [003] d..2 24573.761512: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13342 next_prio=110
61817           <...>-13342 (-----) [003] ...1 24573.761929: tracing_mark_write: E|13131
61818           <...>-13342 (-----) [003] ...1 24573.761933: tracing_mark_write: E|13131
61819           <...>-13342 (-----) [003] ...1 24573.761944: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
61820           <...>-13342 (-----) [003] ...1 24573.761948: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
61821           <...>-13342 (-----) [003] ...1 24573.762033: tracing_mark_write: E|13131
61822           <...>-13342 (-----) [003] ...1 24573.762036: tracing_mark_write: E|13131
61823           <...>-13154 (-----) [002] d.h1 24573.762049: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
61824           <...>-13154 (-----) [002] d.h2 24573.762066: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
61825           <...>-13342 (-----) [003] d..2 24573.762075: sched_switch: prev_comm=id.nn.benchmark prev_pid=13342 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
61826        DispSync-23904 (23896) [003] d..1 24573.762092: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
61827        DispSync-23904 (23896) [003] d..2 24573.762105: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
61828 id.nn.benchmark-13158 (13131) [000] d..2 24573.762115: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
61829        DispSync-23904 (23896) [003] d..2 24573.762120: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13342 next_prio=110
61830           <...>-13342 (-----) [003] d..2 24573.762143: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
61831           <...>-13342 (-----) [003] d..3 24573.762155: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
61832  appEventThread-23905 (23896) [000] d..3 24573.762155: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
61833           <...>-13342 (-----) [003] ...1 24573.762177: tracing_mark_write: E|13131
61834 id.nn.benchmark-13159 (13131) [006] dnh1 24573.762181: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
61835           <...>-13342 (-----) [003] d..1 24573.762183: sched_waking: comm=id.nn.benchmark pid=13341 prio=110 target_cpu=000
61836 id.nn.benchmark-13159 (13131) [006] d..2 24573.762207: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
61837  appEventThread-23905 (23896) [000] d.h3 24573.762210: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
61838  appEventThread-23905 (23896) [000] d.h3 24573.762220: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
61839 id.nn.benchmark-13156 (13131) [005] dnh1 24573.762222: sched_wakeup: comm=id.nn.benchmark pid=13341 prio=110 target_cpu=005
61840 id.nn.benchmark-13156 (13131) [005] dnh1 24573.762223: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
61841 id.nn.benchmark-13156 (13131) [005] d..2 24573.762225: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
61842         sugov:4-560   (  560) [005] d..2 24573.762249: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13341 next_prio=110
61843  appEventThread-23905 (23896) [000] d.h4 24573.762251: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
61844           <...>-13341 (-----) [005] d..2 24573.762257: sched_switch: prev_comm=id.nn.benchmark prev_pid=13341 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
61845 id.nn.benchmark-13155 (13131) [001] d..2 24573.762260: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
61846           <...>-13342 (-----) [003] ...1 24573.762265: tracing_mark_write: E|13131
61847  appEventThread-23905 (23896) [000] d..2 24573.762268: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
61848         sugov:0-559   (  559) [001] d..2 24573.762269: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
61849<...>-24151 ( 24151) [006] .... 24573.762370: binder_transaction: transaction=1670080 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
61850<...>-24151 ( 24151) [006] d..4 24573.762374: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
61851<...>-24151 ( 24151) [006] d..5 24573.762391: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
61852 id.nn.benchmark-13156 (13131) [005] d..2 24573.762396: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
61853  Binder:23896_5-25989 (23896) [005] .... 24573.762400: binder_transaction_received: transaction=1670080
61854<...>-24151 ( 24151) [006] d..3 24573.762408: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
61855<...>-24151 ( 24151) [006] d..4 24573.762414: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
61856  Binder:23896_5-25989 (23896) [005] d..1 24573.762416: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
61857 id.nn.benchmark-13158 (13131) [000] dnh1 24573.762427: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
61858 id.nn.benchmark-13158 (13131) [000] d..2 24573.762433: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
61859  Binder:23896_5-25989 (23896) [005] d..2 24573.762434: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
61860  appEventThread-23905 (23896) [000] d..2 24573.762451: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
61861           <...>-13342 (-----) [003] d..1 24573.762469: sched_waking: comm=id.nn.benchmark pid=13341 prio=110 target_cpu=005
61862<...>-24151 ( 24151) [006] d..2 24573.762472: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
61863 id.nn.benchmark-13156 (13131) [005] dnh1 24573.762485: sched_wakeup: comm=id.nn.benchmark pid=13341 prio=110 target_cpu=005
61864 id.nn.benchmark-13156 (13131) [005] d..2 24573.762488: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13341 next_prio=110
61865    RenderThread-24437 (24151) [006] d..1 24573.762523: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
61866    RenderThread-24437 (24151) [006] d..2 24573.762528: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
61867           <...>-13342 (-----) [003] d..2 24573.762544: sched_switch: prev_comm=id.nn.benchmark prev_pid=13342 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
61868    RenderThread-24437 (24151) [006] .... 24573.762554: binder_transaction: transaction=1670081 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
61869    RenderThread-24437 (24151) [006] d..4 24573.762557: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
61870           <...>-13341 (-----) [005] d..1 24573.762562: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
61871    RenderThread-24437 (24151) [006] d..5 24573.762567: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
61872    RenderThread-24437 (24151) [006] d..2 24573.762576: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
61873           <...>-13341 (-----) [005] dn.2 24573.762581: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
61874<...>-24151 ( 24151) [006] d..2 24573.762601: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
61875           <...>-13341 (-----) [005] d..2 24573.762602: sched_switch: prev_comm=id.nn.benchmark prev_pid=13341 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
61876  Binder:23896_5-25989 (23896) [005] .... 24573.762604: binder_transaction_received: transaction=1670081
61877           <...>-13131 (-----) [006] d..2 24573.762611: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
61878<...>-24151 ( 24151) [006] d..2 24573.762630: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
61879  Binder:23896_5-25989 (23896) [005] .... 24573.762631: binder_transaction: transaction=1670082 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
61880  Binder:23896_5-25989 (23896) [005] d..2 24573.762635: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
61881  Binder:23896_5-25989 (23896) [005] d..3 24573.762643: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
61882 id.nn.benchmark-13159 (13131) [006] d..2 24573.762649: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
61883    RenderThread-24437 (24151) [006] .... 24573.762652: binder_transaction_received: transaction=1670082
61884  Binder:23896_5-25989 (23896) [005] d..2 24573.762662: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
61885     logd.writer-563   (  555) [003] d..2 24573.762665: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13341 next_prio=110
61886           <...>-13341 (-----) [003] d..1 24573.762758: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
61887    RenderThread-24437 (24151) [006] dnh1 24573.762781: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
61888    RenderThread-24437 (24151) [006] d..2 24573.762785: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
61889           <...>-13131 (-----) [006] ...1 24573.762803: tracing_mark_write: E|13131
61890           <...>-13131 (-----) [006] ...1 24573.762806: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
61891           <...>-13131 (-----) [006] ...1 24573.762809: tracing_mark_write: E|13131
61892           <...>-13131 (-----) [006] ...1 24573.762811: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
61893           <...>-13131 (-----) [006] ...1 24573.762813: tracing_mark_write: E|13131
61894           <...>-13341 (-----) [003] d..2 24573.762823: sched_switch: prev_comm=id.nn.benchmark prev_pid=13341 prev_prio=110 prev_state=x ==> next_comm=swapper/3 next_pid=0 next_prio=120
61895          <idle>-0     (-----) [003] d..1 24573.762842: cpu_idle: state=0 cpu_id=3
61896           <...>-13131 (-----) [006] ...1 24573.762882: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
61897           <...>-13131 (-----) [006] d..2 24573.762902: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
61898          <idle>-0     (-----) [003] dnh2 24573.762920: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
61899           <...>-13131 (-----) [006] ...1 24573.762920: tracing_mark_write: E|13131
61900           <...>-13131 (-----) [006] ...1 24573.762922: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
61901          <idle>-0     (-----) [003] .n.1 24573.762924: cpu_idle: state=4294967295 cpu_id=3
61902           <...>-13131 (-----) [006] ...1 24573.762925: tracing_mark_write: E|13131
61903           <...>-13131 (-----) [006] ...1 24573.762928: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
61904           <...>-13131 (-----) [006] ...1 24573.762930: tracing_mark_write: E|13131
61905          <idle>-0     (-----) [003] d..2 24573.762930: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=563 next_prio=130
61906           <...>-13131 (-----) [006] ...1 24573.762932: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
61907     logd.writer-563   (  555) [003] d..2 24573.762981: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61908          <idle>-0     (-----) [003] d..1 24573.762989: cpu_idle: state=0 cpu_id=3
61909           <...>-13131 (-----) [006] ...1 24573.763006: tracing_mark_write: E|13131
61910          <idle>-0     (-----) [003] .n.1 24573.763007: cpu_idle: state=4294967295 cpu_id=3
61911           <...>-13131 (-----) [006] ...1 24573.763007: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
61912           <...>-13131 (-----) [006] d..2 24573.763012: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
61913          <idle>-0     (-----) [003] d..2 24573.763014: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13343 next_prio=110
61914           <...>-13343 (-----) [003] d..2 24573.763075: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
61915           <...>-13343 (-----) [003] d..3 24573.763083: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
61916           <...>-13343 (-----) [003] d..2 24573.763373: sched_switch: prev_comm=id.nn.benchmark prev_pid=13343 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
61917    RenderThread-24437 (24151) [006] d..2 24573.763511: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
61918     logd.writer-563   (  555) [003] d..2 24573.763572: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61919          <idle>-0     (-----) [003] d..1 24573.763584: cpu_idle: state=0 cpu_id=3
61920 id.nn.benchmark-13159 (13131) [006] d.h1 24573.763610: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
61921 id.nn.benchmark-13159 (13131) [006] d.h2 24573.763642: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
61922          <idle>-0     (-----) [003] d.h2 24573.763644: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
61923          <idle>-0     (-----) [003] dnh2 24573.763647: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=003
61924 id.nn.benchmark-13159 (13131) [006] dnh3 24573.763649: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
61925 id.nn.benchmark-13159 (13131) [006] dnh2 24573.763650: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
61926          <idle>-0     (-----) [003] .n.1 24573.763651: cpu_idle: state=4294967295 cpu_id=3
61927          <idle>-0     (-----) [003] d..2 24573.763658: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
61928 id.nn.benchmark-13159 (13131) [006] d..2 24573.763663: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
61929    RenderThread-24437 (24151) [003] dnh3 24573.763666: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
61930         sugov:4-560   (  560) [006] d..2 24573.763667: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
61931    RenderThread-24437 (24151) [003] d..2 24573.763671: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
61932         sugov:0-559   (  559) [003] d..2 24573.763678: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
61933 id.nn.benchmark-13158 (13131) [000] d.h2 24573.763739: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=004
61934 id.nn.benchmark-13158 (13131) [000] d.h3 24573.763758: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
61935    RenderThread-24437 (24151) [003] d..2 24573.763768: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
61936 kgsl_worker_thr-246   (  246) [003] d..2 24573.763804: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
61937 kgsl_worker_thr-246   (  246) [003] d..3 24573.763815: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
61938 kgsl_worker_thr-246   (  246) [003] d..2 24573.763824: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
61939  kworker/u16:15-18488 (18488) [003] d..2 24573.764004: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
61940    RenderThread-24437 (24151) [003] .... 24573.764077: binder_transaction: transaction=1670083 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
61941    RenderThread-24437 (24151) [003] d..4 24573.764085: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
61942    RenderThread-24437 (24151) [003] d..5 24573.764100: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=003
61943    RenderThread-24437 (24151) [003] d..2 24573.764132: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
61944  Binder:23896_5-25989 (23896) [003] .... 24573.764137: binder_transaction_received: transaction=1670083
61945  Binder:23896_5-25989 (23896) [003] .... 24573.764292: binder_transaction: transaction=1670084 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
61946  Binder:23896_5-25989 (23896) [003] d..2 24573.764296: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=003
61947  Binder:23896_5-25989 (23896) [003] d..3 24573.764303: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=003
61948  Binder:23896_5-25989 (23896) [003] d..2 24573.764323: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
61949    RenderThread-24437 (24151) [003] .... 24573.764327: binder_transaction_received: transaction=1670084
61950    RenderThread-24437 (24151) [003] d..2 24573.764389: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61951          <idle>-0     (-----) [003] d..1 24573.764396: cpu_idle: state=0 cpu_id=3
61952 id.nn.benchmark-13158 (13131) [000] d.h1 24573.764779: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
61953 id.nn.benchmark-13158 (13131) [000] dnh2 24573.764787: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
61954 id.nn.benchmark-13158 (13131) [000] d..2 24573.764794: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
61955 irq/79-1436400.-24613 (24613) [000] d..2 24573.764928: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
61956          <idle>-0     (-----) [003] d.s3 24573.764957: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
61957          <idle>-0     (-----) [003] d.s4 24573.764966: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
61958          <idle>-0     (-----) [003] ...1 24573.764972: cpu_idle: state=4294967295 cpu_id=3
61959 id.nn.benchmark-13158 (13131) [000] d..2 24573.764974: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
61960          <idle>-0     (-----) [003] d..1 24573.764975: cpu_idle: state=0 cpu_id=3
61961 irq/79-1436400.-24613 (24613) [000] d..2 24573.764990: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
61962          <idle>-0     (-----) [003] d.h2 24573.766050: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
61963          <idle>-0     (-----) [003] dnh3 24573.766056: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
61964          <idle>-0     (-----) [003] .n.1 24573.766060: cpu_idle: state=4294967295 cpu_id=3
61965          <idle>-0     (-----) [003] d..2 24573.766064: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
61966        DispSync-23904 (23896) [003] d..1 24573.766079: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
61967        DispSync-23904 (23896) [003] d..2 24573.766089: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
61968 id.nn.benchmark-13158 (13131) [000] d..2 24573.766096: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
61969        DispSync-23904 (23896) [003] d..2 24573.766108: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61970          <idle>-0     (-----) [003] d..1 24573.766113: cpu_idle: state=0 cpu_id=3
61971   sfEventThread-23906 (23896) [000] d..3 24573.766122: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
61972   sfEventThread-23906 (23896) [000] d..4 24573.766139: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
61973          <idle>-0     (-----) [003] .n.1 24573.766144: cpu_idle: state=4294967295 cpu_id=3
61974          <idle>-0     (-----) [003] d..2 24573.766148: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
61975   sfEventThread-23906 (23896) [000] d..2 24573.766151: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
61976  surfaceflinger-23896 (23896) [003] d..1 24573.766379: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
61977  surfaceflinger-23896 (23896) [003] d..2 24573.766390: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
61978 id.nn.benchmark-13158 (13131) [000] d..2 24573.766398: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
61979   sfEventThread-23906 (23896) [000] d..2 24573.766411: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
61980 id.nn.benchmark-13160 (13131) [004] d..3 24573.766421: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
61981           <...>-13157 (-----) [007] d..2 24573.766423: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13344 next_prio=110
61982 id.nn.benchmark-13160 (13131) [004] d..2 24573.766429: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
61983 id.nn.benchmark-13158 (13131) [000] dnh1 24573.766432: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
61984          <idle>-0     (-----) [004] d..1 24573.766433: cpu_idle: state=0 cpu_id=4
61985 id.nn.benchmark-13158 (13131) [000] d..2 24573.766437: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
61986           <...>-13344 (-----) [007] ...1 24573.766442: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
61987           <...>-13344 (-----) [007] ...1 24573.766444: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
61988          <idle>-0     (-----) [004] .n.1 24573.766462: cpu_idle: state=4294967295 cpu_id=4
61989           <...>-13344 (-----) [007] d..2 24573.766479: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
61990          <idle>-0     (-----) [004] d..2 24573.766483: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
61991     migration/0-13    (   13) [000] d.h3 24573.766484: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
61992     migration/0-13    (   13) [000] d.h3 24573.766496: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
61993  surfaceflinger-23896 (23896) [003] d.h1 24573.766499: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
61994           <...>-13344 (-----) [007] dnh1 24573.766501: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
61995           <...>-13344 (-----) [007] d..2 24573.766505: sched_switch: prev_comm=id.nn.benchmark prev_pid=13344 prev_prio=110 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
61996         sugov:4-560   (  560) [007] d..2 24573.766509: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13344 next_prio=110
61997     migration/0-13    (   13) [000] d.h4 24573.766509: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
61998     migration/0-13    (   13) [000] d..2 24573.766517: 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
61999  surfaceflinger-23896 (23896) [003] ...1 24573.766523: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
62000  surfaceflinger-23896 (23896) [003] ...1 24573.766527: tracing_mark_write: E|23896
62001         sugov:0-559   (  559) [000] d..2 24573.766530: 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
62002           <...>-13344 (-----) [007] ...1 24573.766539: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62003           <...>-13344 (-----) [007] ...1 24573.766541: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62004          <idle>-0     (-----) [000] d..1 24573.766541: cpu_idle: state=0 cpu_id=0
62005  surfaceflinger-23896 (23896) [003] .... 24573.766566: binder_transaction: transaction=1670085 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
62006  surfaceflinger-23896 (23896) [003] ...2 24573.766584: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
62007  surfaceflinger-23896 (23896) [003] d..4 24573.766590: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
62008  surfaceflinger-23896 (23896) [003] d..5 24573.766608: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
62009          <idle>-0     (-----) [000] .n.1 24573.766613: cpu_idle: state=4294967295 cpu_id=0
62010  surfaceflinger-23896 (23896) [003] d..2 24573.766619: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
62011          <idle>-0     (-----) [000] d..2 24573.766620: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
62012  HwBinder:598_3-633   (  598) [000] .... 24573.766627: binder_transaction_received: transaction=1670085
62013  HwBinder:598_3-633   (  598) [000] ...1 24573.766665: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
62014 id.nn.benchmark-13156 (13131) [005] d..3 24573.766687: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
62015 id.nn.benchmark-13156 (13131) [005] d..2 24573.766695: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
62016 id.nn.benchmark-13155 (13131) [001] dnh1 24573.766697: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
62017          <idle>-0     (-----) [005] d..1 24573.766701: cpu_idle: state=0 cpu_id=5
62018 id.nn.benchmark-13155 (13131) [001] d..2 24573.766702: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
62019          <idle>-0     (-----) [005] .n.1 24573.766726: cpu_idle: state=4294967295 cpu_id=5
62020  HwBinder:598_3-633   (  598) [000] ...1 24573.766741: tracing_mark_write: B|598|HWCSession::PresentDisplay::
62021          <idle>-0     (-----) [005] d..2 24573.766743: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
62022     migration/1-17    (   17) [001] d..2 24573.766754: 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
62023     logd.writer-563   (  555) [003] d..2 24573.766757: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
62024          <idle>-0     (-----) [003] d..1 24573.766764: cpu_idle: state=0 cpu_id=3
62025          <idle>-0     (-----) [001] d..1 24573.766764: cpu_idle: state=0 cpu_id=1
62026  HwBinder:598_3-633   (  598) [000] ...1 24573.766852: tracing_mark_write: B|598|HWDeviceDRM::Commit::
62027  HwBinder:598_3-633   (  598) [000] ...1 24573.766859: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
62028           <...>-13344 (-----) [007] d..1 24573.767094: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=005
62029           <...>-13344 (-----) [007] d..2 24573.767104: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=007
62030           <...>-13344 (-----) [007] d..1 24573.767106: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=007
62031           <...>-13344 (-----) [007] dn.2 24573.767109: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=007
62032           <...>-13344 (-----) [007] d..2 24573.767111: sched_switch: prev_comm=id.nn.benchmark prev_pid=13344 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
62033           <...>-13157 (-----) [007] d..2 24573.767118: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
62034  HwBinder:598_3-633   (  598) [000] d..2 24573.767238: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
62035  HwBinder:598_3-633   (  598) [000] d..3 24573.767252: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
62036          <idle>-0     (-----) [003] .n.1 24573.767258: cpu_idle: state=4294967295 cpu_id=3
62037          <idle>-0     (-----) [003] d..2 24573.767263: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
62038  HwBinder:598_3-633   (  598) [000] ...1 24573.767313: tracing_mark_write: E|598
62039  HwBinder:598_3-633   (  598) [000] ...1 24573.767316: tracing_mark_write: E|598
62040  HwBinder:598_3-633   (  598) [000] ...1 24573.767359: tracing_mark_write: E|598
62041  HwBinder:598_3-633   (  598) [000] ...1 24573.767395: tracing_mark_write: E|598
62042  HwBinder:598_3-633   (  598) [000] .... 24573.767406: binder_transaction: transaction=1670086 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
62043  HwBinder:598_3-633   (  598) [000] d..2 24573.767419: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
62044  HwBinder:598_3-633   (  598) [000] d..3 24573.767434: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
62045  HwBinder:598_3-633   (  598) [000] .... 24573.767437: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
62046          <idle>-0     (-----) [001] .n.1 24573.767439: cpu_idle: state=4294967295 cpu_id=1
62047          <idle>-0     (-----) [001] d..2 24573.767445: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
62048  surfaceflinger-23896 (23896) [001] .... 24573.767452: binder_transaction_received: transaction=1670086
62049  HwBinder:598_3-633   (  598) [000] d..2 24573.767502: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13344 next_prio=110
62050           <...>-13344 (-----) [000] d.h4 24573.767533: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
62051           <...>-13344 (-----) [000] d.h4 24573.767541: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
62052 id.nn.benchmark-13156 (13131) [007] dnh1 24573.767544: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
62053           <...>-13344 (-----) [000] dnh5 24573.767546: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
62054 id.nn.benchmark-13156 (13131) [007] dns2 24573.767558: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
62055 crtc_commit:111-253   (  253) [003] d.s1 24573.767565: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
62056           <...>-13344 (-----) [000] d..2 24573.767570: sched_switch: prev_comm=id.nn.benchmark prev_pid=13344 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
62057         sugov:0-559   (  559) [000] d..2 24573.767577: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13344 next_prio=110
62058  surfaceflinger-23896 (23896) [001] d.h1 24573.767582: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
62059           <...>-13344 (-----) [000] d..1 24573.767583: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=007
62060 crtc_commit:111-253   (  253) [003] d.s2 24573.767591: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
62061 id.nn.benchmark-13156 (13131) [007] d..2 24573.767596: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
62062           <...>-13344 (-----) [000] d..1 24573.767597: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=004
62063         sugov:4-560   (  560) [007] d.h3 24573.767599: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=007
62064         sugov:4-560   (  560) [007] d..2 24573.767603: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
62065 id.nn.benchmark-13158 (13131) [004] d.h1 24573.767609: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=004
62066  surfaceflinger-23896 (23896) [001] d..2 24573.767748: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
62067  kworker/u16:15-18488 (18488) [001] .... 24573.767842: clk_set_rate: l3_cluster0_vote_clk 1132800000
62068  kworker/u16:15-18488 (18488) [001] .... 24573.767848: clk_set_rate: l3_clk 1132800000
62069  kworker/u16:15-18488 (18488) [001] d..2 24573.767882: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
62070     rcu_preempt-7     (    7) [001] d..2 24573.767887: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
62071     rcu_preempt-7     (    7) [001] d..3 24573.767909: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
62072     rcu_preempt-7     (    7) [001] d..2 24573.767940: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
62073 crtc_commit:111-253   (  253) [003] d..2 24573.767942: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcuop/2 next_pid=29 next_prio=120
62074         rcuop/2-29    (   29) [003] d..2 24573.767991: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
62075           <...>-13344 (-----) [000] ...1 24573.768349: tracing_mark_write: E|13131
62076           <...>-13344 (-----) [000] ...1 24573.768354: tracing_mark_write: E|13131
62077           <...>-13344 (-----) [000] ...1 24573.768371: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62078           <...>-13344 (-----) [000] ...1 24573.768376: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62079           <...>-13344 (-----) [000] ...1 24573.769098: tracing_mark_write: E|13131
62080           <...>-13344 (-----) [000] ...1 24573.769102: tracing_mark_write: E|13131
62081           <...>-13344 (-----) [000] ...1 24573.769123: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62082           <...>-13344 (-----) [000] ...1 24573.769128: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62083           <...>-13344 (-----) [000] ...1 24573.769462: tracing_mark_write: E|13131
62084           <...>-13344 (-----) [000] ...1 24573.769466: tracing_mark_write: E|13131
62085           <...>-13344 (-----) [000] ...1 24573.769478: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62086           <...>-13344 (-----) [000] ...1 24573.769482: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62087           <...>-13344 (-----) [000] ...1 24573.769725: tracing_mark_write: E|13131
62088           <...>-13344 (-----) [000] ...1 24573.769729: tracing_mark_write: E|13131
62089           <...>-13344 (-----) [000] ...1 24573.769739: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62090           <...>-13344 (-----) [000] ...1 24573.769743: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62091           <...>-13344 (-----) [000] ...1 24573.770148: tracing_mark_write: E|13131
62092           <...>-13344 (-----) [000] ...1 24573.770152: tracing_mark_write: E|13131
62093           <...>-13344 (-----) [000] ...1 24573.770162: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62094           <...>-13344 (-----) [000] ...1 24573.770166: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62095           <...>-13344 (-----) [000] ...1 24573.770565: tracing_mark_write: E|13131
62096           <...>-13344 (-----) [000] ...1 24573.770569: tracing_mark_write: E|13131
62097           <...>-13344 (-----) [000] ...1 24573.770587: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62098           <...>-13344 (-----) [000] ...1 24573.770592: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62099           <...>-13344 (-----) [000] ...1 24573.770785: tracing_mark_write: E|13131
62100           <...>-13344 (-----) [000] ...1 24573.770789: tracing_mark_write: E|13131
62101           <...>-13344 (-----) [000] ...1 24573.770803: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62102           <...>-13344 (-----) [000] ...1 24573.770807: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62103           <...>-13157 (-----) [007] d.s2 24573.770890: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
62104           <...>-13344 (-----) [000] dnh1 24573.770908: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
62105           <...>-13344 (-----) [000] d..2 24573.770915: sched_switch: prev_comm=id.nn.benchmark prev_pid=13344 prev_prio=110 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
62106  kworker/u16:15-18488 (18488) [000] .... 24573.771094: clk_set_rate: l3_cluster1_vote_clk 1478400000
62107  kworker/u16:15-18488 (18488) [000] .... 24573.771098: clk_set_rate: l3_clk 1478400000
62108  kworker/u16:15-18488 (18488) [000] d..2 24573.771203: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13344 next_prio=110
62109           <...>-13344 (-----) [000] ...1 24573.771206: tracing_mark_write: E|13131
62110           <...>-13344 (-----) [000] ...1 24573.771212: tracing_mark_write: E|13131
62111           <...>-13344 (-----) [000] ...1 24573.771224: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
62112           <...>-13344 (-----) [000] ...1 24573.771230: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
62113           <...>-13344 (-----) [000] ...1 24573.771546: tracing_mark_write: E|13131
62114           <...>-13344 (-----) [000] ...1 24573.771550: tracing_mark_write: E|13131
62115           <...>-13344 (-----) [000] ...1 24573.771559: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
62116           <...>-13344 (-----) [000] ...1 24573.771563: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
62117           <...>-13344 (-----) [000] ...1 24573.771619: tracing_mark_write: E|13131
62118           <...>-13344 (-----) [000] ...1 24573.771622: tracing_mark_write: E|13131
62119           <...>-13344 (-----) [000] ...1 24573.771630: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
62120           <...>-13344 (-----) [000] ...1 24573.771634: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
62121           <...>-13344 (-----) [000] ...1 24573.771651: tracing_mark_write: E|13131
62122           <...>-13344 (-----) [000] ...1 24573.771653: tracing_mark_write: E|13131
62123           <...>-13344 (-----) [000] ...1 24573.771665: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
62124           <...>-13344 (-----) [000] ...1 24573.771668: tracing_mark_write: E|13131
62125           <...>-13344 (-----) [000] ...1 24573.771678: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
62126           <...>-13344 (-----) [000] ...1 24573.771682: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
62127           <...>-13344 (-----) [000] ...1 24573.772534: tracing_mark_write: E|13131
62128           <...>-13344 (-----) [000] ...1 24573.772537: tracing_mark_write: E|13131
62129           <...>-13344 (-----) [000] ...1 24573.772545: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62130           <...>-13344 (-----) [000] ...1 24573.772548: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62131           <...>-13344 (-----) [000] ...1 24573.772633: tracing_mark_write: E|13131
62132           <...>-13344 (-----) [000] ...1 24573.772636: tracing_mark_write: E|13131
62133           <...>-13344 (-----) [000] d..2 24573.772680: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
62134           <...>-13344 (-----) [000] d..3 24573.772694: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
62135           <...>-13344 (-----) [000] ...1 24573.772712: tracing_mark_write: E|13131
62136           <...>-13344 (-----) [000] d..1 24573.772717: sched_waking: comm=id.nn.benchmark pid=13343 prio=110 target_cpu=003
62137 id.nn.benchmark-13159 (13131) [006] dnh1 24573.772741: sched_wakeup: comm=id.nn.benchmark pid=13343 prio=110 target_cpu=006
62138 id.nn.benchmark-13159 (13131) [006] d..2 24573.772767: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13343 next_prio=110
62139           <...>-13344 (-----) [000] d.h3 24573.772768: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
62140           <...>-13343 (-----) [006] d..2 24573.772775: sched_switch: prev_comm=id.nn.benchmark prev_pid=13343 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
62141           <...>-13344 (-----) [000] d.h3 24573.772783: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
62142 id.nn.benchmark-13159 (13131) [006] dnh1 24573.772786: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
62143 id.nn.benchmark-13159 (13131) [006] d..2 24573.772789: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
62144           <...>-13344 (-----) [000] dnh4 24573.772789: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
62145         sugov:4-560   (  560) [006] d..2 24573.772793: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
62146           <...>-13344 (-----) [000] d..2 24573.772795: sched_switch: prev_comm=id.nn.benchmark prev_pid=13344 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
62147         sugov:0-559   (  559) [000] d..2 24573.772803: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
62148     logd.writer-563   (  555) [000] d..2 24573.772855: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13344 next_prio=110
62149           <...>-13344 (-----) [000] ...1 24573.772874: tracing_mark_write: E|13131
62150           <...>-13344 (-----) [000] d..1 24573.773086: sched_waking: comm=id.nn.benchmark pid=13343 prio=110 target_cpu=006
62151 id.nn.benchmark-13159 (13131) [006] dnh1 24573.773100: sched_wakeup: comm=id.nn.benchmark pid=13343 prio=110 target_cpu=006
62152 id.nn.benchmark-13159 (13131) [006] d..2 24573.773102: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13343 next_prio=110
62153           <...>-13343 (-----) [006] d..2 24573.773136: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
62154           <...>-13344 (-----) [000] d.h2 24573.773156: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
62155           <...>-13344 (-----) [000] d..2 24573.773163: sched_switch: prev_comm=id.nn.benchmark prev_pid=13344 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
62156           <...>-13343 (-----) [006] d..1 24573.773170: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
62157           <...>-13343 (-----) [006] dn.2 24573.773176: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
62158           <...>-13343 (-----) [006] d..2 24573.773178: sched_switch: prev_comm=id.nn.benchmark prev_pid=13343 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
62159           <...>-13131 (-----) [006] d..2 24573.773185: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13343 next_prio=110
62160           <...>-13343 (-----) [006] d..1 24573.773214: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
62161           <...>-13343 (-----) [006] dn.2 24573.773217: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
62162           <...>-13343 (-----) [006] d..2 24573.773219: sched_switch: prev_comm=id.nn.benchmark prev_pid=13343 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
62163           <...>-13131 (-----) [006] ...1 24573.773230: tracing_mark_write: E|13131
62164           <...>-13131 (-----) [006] ...1 24573.773232: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
62165     logd.writer-563   (  555) [000] d..2 24573.773234: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13343 next_prio=110
62166           <...>-13131 (-----) [006] ...1 24573.773235: tracing_mark_write: E|13131
62167           <...>-13131 (-----) [006] ...1 24573.773236: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
62168           <...>-13131 (-----) [006] ...1 24573.773238: tracing_mark_write: E|13131
62169           <...>-13343 (-----) [000] d..2 24573.773285: sched_switch: prev_comm=id.nn.benchmark prev_pid=13343 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
62170           <...>-13131 (-----) [006] ...1 24573.773302: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
62171 id.nn.benchmark-13159 (13131) [000] d.h4 24573.773313: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
62172           <...>-13131 (-----) [006] d..2 24573.773315: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
62173 id.nn.benchmark-13159 (13131) [000] d.h4 24573.773321: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
62174           <...>-13131 (-----) [006] dnh1 24573.773325: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
62175 id.nn.benchmark-13159 (13131) [000] dnh5 24573.773327: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
62176           <...>-13131 (-----) [006] d..2 24573.773329: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
62177 id.nn.benchmark-13159 (13131) [000] dnh3 24573.773333: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
62178         sugov:4-560   (  560) [006] d..2 24573.773333: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
62179 id.nn.benchmark-13159 (13131) [000] d..2 24573.773340: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
62180           <...>-13131 (-----) [006] ...1 24573.773342: tracing_mark_write: E|13131
62181           <...>-13131 (-----) [006] ...1 24573.773344: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
62182           <...>-13131 (-----) [006] ...1 24573.773346: tracing_mark_write: E|13131
62183         sugov:0-559   (  559) [000] d..2 24573.773347: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
62184           <...>-13131 (-----) [006] ...1 24573.773348: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
62185           <...>-13131 (-----) [006] ...1 24573.773350: tracing_mark_write: E|13131
62186           <...>-13131 (-----) [006] ...1 24573.773351: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
62187           <...>-13131 (-----) [006] ...1 24573.773406: tracing_mark_write: E|13131
62188           <...>-13131 (-----) [006] ...1 24573.773408: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
62189           <...>-13131 (-----) [006] d..2 24573.773412: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13345 next_prio=110
62190           <...>-13345 (-----) [006] d..2 24573.773556: sched_switch: prev_comm=id.nn.benchmark prev_pid=13345 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13346 next_prio=110
62191           <...>-13346 (-----) [006] ...1 24573.773566: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
62192           <...>-13346 (-----) [006] ...1 24573.773568: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
62193           <...>-13346 (-----) [006] ...1 24573.773619: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62194           <...>-13346 (-----) [006] ...1 24573.773621: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62195 id.nn.benchmark-13159 (13131) [000] d.h4 24573.774098: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
62196 id.nn.benchmark-13159 (13131) [000] d.h4 24573.774116: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
62197           <...>-13346 (-----) [006] dnh1 24573.774120: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=006
62198           <...>-13346 (-----) [006] d..2 24573.774125: sched_switch: prev_comm=id.nn.benchmark prev_pid=13346 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
62199           <...>-13157 (-----) [007] dnh1 24573.774132: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
62200           <...>-13157 (-----) [007] d..2 24573.774135: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
62201  crtc_event:111-254   (  254) [006] d..2 24573.774137: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13346 next_prio=110
62202 id.nn.benchmark-13159 (13131) [000] d.h2 24573.774160: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
62203 id.nn.benchmark-13159 (13131) [000] d.h2 24573.774167: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
62204           <...>-13346 (-----) [006] dnh1 24573.774170: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
62205 id.nn.benchmark-13159 (13131) [000] dnh3 24573.774172: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
62206           <...>-13346 (-----) [006] d..2 24573.774172: sched_switch: prev_comm=id.nn.benchmark prev_pid=13346 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
62207         sugov:4-560   (  560) [006] d..2 24573.774175: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13346 next_prio=110
62208 id.nn.benchmark-13159 (13131) [000] d..2 24573.774178: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
62209         sugov:0-559   (  559) [000] d..2 24573.774184: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
62210 crtc_commit:111-253   (  253) [007] d.s3 24573.774223: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
62211 id.nn.benchmark-13159 (13131) [000] d.h2 24573.774227: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
62212 id.nn.benchmark-13156 (13131) [001] d.s1 24573.774235: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
62213 crtc_commit:111-253   (  253) [007] d.s4 24573.774236: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
62214 id.nn.benchmark-13159 (13131) [000] dnh3 24573.774237: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
62215 id.nn.benchmark-13158 (13131) [004] d..2 24573.774253: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
62216 id.nn.benchmark-13159 (13131) [000] d..2 24573.774259: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
62217 crtc_commit:111-253   (  253) [007] d.h1 24573.774266: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
62218  kworker/u16:15-18488 (18488) [004] d..2 24573.774298: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
62219 crtc_commit:111-253   (  253) [007] d..2 24573.774299: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
62220     rcu_preempt-7     (    7) [007] d..2 24573.774324: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
62221     migration/0-13    (   13) [000] d..2 24573.774326: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
62222     logd.writer-563   (  555) [000] d..2 24573.774620: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
62223           <...>-13346 (-----) [006] ...1 24573.774937: tracing_mark_write: E|13131
62224           <...>-13346 (-----) [006] ...1 24573.774939: tracing_mark_write: E|13131
62225           <...>-13346 (-----) [006] ...1 24573.774943: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62226           <...>-13346 (-----) [006] ...1 24573.774945: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62227           <...>-13346 (-----) [006] ...1 24573.775314: tracing_mark_write: E|13131
62228           <...>-13346 (-----) [006] ...1 24573.775316: tracing_mark_write: E|13131
62229           <...>-13346 (-----) [006] ...1 24573.775322: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62230           <...>-13346 (-----) [006] ...1 24573.775324: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62231           <...>-13346 (-----) [006] ...1 24573.775535: tracing_mark_write: E|13131
62232           <...>-13346 (-----) [006] ...1 24573.775536: tracing_mark_write: E|13131
62233           <...>-13346 (-----) [006] ...1 24573.775539: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62234           <...>-13346 (-----) [006] ...1 24573.775541: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62235           <...>-13346 (-----) [006] ...1 24573.775705: tracing_mark_write: E|13131
62236           <...>-13346 (-----) [006] ...1 24573.775706: tracing_mark_write: E|13131
62237           <...>-13346 (-----) [006] ...1 24573.775709: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62238           <...>-13346 (-----) [006] ...1 24573.775710: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62239           <...>-13346 (-----) [006] ...1 24573.775997: tracing_mark_write: E|13131
62240           <...>-13346 (-----) [006] ...1 24573.775998: tracing_mark_write: E|13131
62241           <...>-13346 (-----) [006] ...1 24573.776001: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62242           <...>-13346 (-----) [006] ...1 24573.776002: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62243           <...>-13346 (-----) [006] ...1 24573.776289: tracing_mark_write: E|13131
62244           <...>-13346 (-----) [006] ...1 24573.776290: tracing_mark_write: E|13131
62245           <...>-13346 (-----) [006] ...1 24573.776295: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62246           <...>-13346 (-----) [006] ...1 24573.776296: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62247 id.nn.benchmark-13159 (13131) [000] d.h4 24573.776445: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
62248           <...>-13346 (-----) [006] ...1 24573.776453: tracing_mark_write: E|13131
62249           <...>-13346 (-----) [006] ...1 24573.776454: tracing_mark_write: E|13131
62250           <...>-13346 (-----) [006] ...1 24573.776458: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62251           <...>-13346 (-----) [006] ...1 24573.776459: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62252           <...>-13346 (-----) [006] dnh1 24573.776464: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
62253           <...>-13346 (-----) [006] d..2 24573.776468: sched_switch: prev_comm=id.nn.benchmark prev_pid=13346 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
62254 crtc_commit:111-253   (  253) [006] d..2 24573.776497: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13346 next_prio=110
62255           <...>-13346 (-----) [006] ...1 24573.776550: tracing_mark_write: E|13131
62256           <...>-13346 (-----) [006] ...1 24573.776551: tracing_mark_write: E|13131
62257           <...>-13346 (-----) [006] ...1 24573.776555: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
62258           <...>-13346 (-----) [006] ...1 24573.776556: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
62259           <...>-13346 (-----) [006] ...1 24573.776671: tracing_mark_write: E|13131
62260           <...>-13346 (-----) [006] ...1 24573.776672: tracing_mark_write: E|13131
62261           <...>-13346 (-----) [006] ...1 24573.776674: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
62262           <...>-13346 (-----) [006] ...1 24573.776675: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
62263           <...>-13346 (-----) [006] ...1 24573.776692: tracing_mark_write: E|13131
62264           <...>-13346 (-----) [006] ...1 24573.776693: tracing_mark_write: E|13131
62265           <...>-13346 (-----) [006] ...1 24573.776695: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
62266           <...>-13346 (-----) [006] ...1 24573.776696: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
62267           <...>-13346 (-----) [006] ...1 24573.776701: tracing_mark_write: E|13131
62268           <...>-13346 (-----) [006] ...1 24573.776702: tracing_mark_write: E|13131
62269           <...>-13346 (-----) [006] ...1 24573.776705: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
62270           <...>-13346 (-----) [006] ...1 24573.776706: tracing_mark_write: E|13131
62271           <...>-13346 (-----) [006] ...1 24573.776709: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
62272           <...>-13346 (-----) [006] ...1 24573.776711: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
62273 id.nn.benchmark-13159 (13131) [000] d.h4 24573.776733: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=006
62274           <...>-13346 (-----) [006] dnh1 24573.776744: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=006
62275           <...>-13346 (-----) [006] d..2 24573.776748: sched_switch: prev_comm=id.nn.benchmark prev_pid=13346 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
62276  crtc_event:111-254   (  254) [006] d..2 24573.776754: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13346 next_prio=110
62277           <...>-13346 (-----) [006] ...1 24573.777029: tracing_mark_write: E|13131
62278           <...>-13346 (-----) [006] ...1 24573.777030: tracing_mark_write: E|13131
62279           <...>-13346 (-----) [006] ...1 24573.777033: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62280           <...>-13346 (-----) [006] ...1 24573.777035: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62281           <...>-13346 (-----) [006] ...1 24573.777105: tracing_mark_write: E|13131
62282           <...>-13346 (-----) [006] ...1 24573.777106: tracing_mark_write: E|13131
62283           <...>-13346 (-----) [006] d..2 24573.777122: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
62284           <...>-13346 (-----) [006] ...1 24573.777137: tracing_mark_write: E|13131
62285 id.nn.benchmark-13159 (13131) [000] d.h1 24573.777137: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
62286           <...>-13346 (-----) [006] d..1 24573.777139: sched_waking: comm=id.nn.benchmark pid=13345 prio=110 target_cpu=006
62287           <...>-13346 (-----) [006] dn.2 24573.777144: sched_wakeup: comm=id.nn.benchmark pid=13345 prio=110 target_cpu=006
62288           <...>-13346 (-----) [006] d..2 24573.777146: sched_switch: prev_comm=id.nn.benchmark prev_pid=13346 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13345 next_prio=110
62289           <...>-13345 (-----) [006] d..2 24573.777152: sched_switch: prev_comm=id.nn.benchmark prev_pid=13345 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13346 next_prio=110
62290           <...>-13346 (-----) [006] ...1 24573.777158: tracing_mark_write: E|13131
62291           <...>-13346 (-----) [006] d..1 24573.777255: sched_waking: comm=id.nn.benchmark pid=13345 prio=110 target_cpu=006
62292           <...>-13346 (-----) [006] dn.2 24573.777259: sched_wakeup: comm=id.nn.benchmark pid=13345 prio=110 target_cpu=006
62293           <...>-13346 (-----) [006] d..2 24573.777261: sched_switch: prev_comm=id.nn.benchmark prev_pid=13346 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13345 next_prio=110
62294           <...>-13345 (-----) [006] d..1 24573.777306: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
62295           <...>-13345 (-----) [006] dn.2 24573.777312: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
62296           <...>-13345 (-----) [006] d..2 24573.777315: sched_switch: prev_comm=id.nn.benchmark prev_pid=13345 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
62297           <...>-13131 (-----) [006] d..2 24573.777320: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13345 next_prio=110
62298           <...>-13345 (-----) [006] d..1 24573.777341: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
62299           <...>-13345 (-----) [006] dn.2 24573.777344: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
62300           <...>-13345 (-----) [006] d..2 24573.777347: sched_switch: prev_comm=id.nn.benchmark prev_pid=13345 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
62301           <...>-13131 (-----) [006] ...1 24573.777354: tracing_mark_write: E|13131
62302           <...>-13131 (-----) [006] ...1 24573.777356: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
62303           <...>-13131 (-----) [006] ...1 24573.777358: tracing_mark_write: E|13131
62304           <...>-13131 (-----) [006] ...1 24573.777359: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
62305           <...>-13131 (-----) [006] ...1 24573.777361: tracing_mark_write: E|13131
62306           <...>-13131 (-----) [006] ...1 24573.777420: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
62307           <...>-13131 (-----) [006] ...1 24573.777440: tracing_mark_write: E|13131
62308           <...>-13131 (-----) [006] ...1 24573.777441: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
62309           <...>-13131 (-----) [006] ...1 24573.777444: tracing_mark_write: E|13131
62310           <...>-13131 (-----) [006] ...1 24573.777445: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
62311           <...>-13131 (-----) [006] ...1 24573.777447: tracing_mark_write: E|13131
62312           <...>-13131 (-----) [006] ...1 24573.777449: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
62313           <...>-13131 (-----) [006] ...1 24573.777489: tracing_mark_write: E|13131
62314           <...>-13131 (-----) [006] ...1 24573.777491: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
62315           <...>-13131 (-----) [006] d..2 24573.777495: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13345 next_prio=110
62316           <...>-13345 (-----) [006] d..2 24573.777512: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
62317           <...>-13345 (-----) [006] dn.3 24573.777519: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
62318           <...>-13345 (-----) [006] d..2 24573.777522: sched_switch: prev_comm=id.nn.benchmark prev_pid=13345 prev_prio=110 prev_state=R+ ==> next_comm=rcuop/6 next_pid=61 next_prio=120
62319         rcuop/6-61    (   61) [006] d..2 24573.777527: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13345 next_prio=110
62320           <...>-13345 (-----) [006] d..2 24573.777536: sched_switch: prev_comm=id.nn.benchmark prev_pid=13345 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13346 next_prio=110
62321           <...>-13346 (-----) [006] d..2 24573.777550: sched_switch: prev_comm=id.nn.benchmark prev_pid=13346 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13347 next_prio=110
62322 id.nn.benchmark-13158 (13131) [004] d.s2 24573.777555: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
62323           <...>-13157 (-----) [007] d.s2 24573.777557: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=006
62324 id.nn.benchmark-13159 (13131) [000] d.h2 24573.777563: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
62325           <...>-13157 (-----) [007] d.s3 24573.777564: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=006
62326           <...>-13157 (-----) [007] d.s2 24573.777566: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
62327 id.nn.benchmark-13158 (13131) [004] d.s3 24573.777570: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
62328 id.nn.benchmark-13159 (13131) [000] dnh3 24573.777589: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
62329           <...>-13157 (-----) [007] dns3 24573.777591: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
62330 id.nn.benchmark-13158 (13131) [004] d..2 24573.777594: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
62331           <...>-13157 (-----) [007] d..2 24573.777597: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
62332     rcu_preempt-7     (    7) [007] d..2 24573.777599: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=005
62333 id.nn.benchmark-13159 (13131) [000] d..2 24573.777600: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
62334           <...>-13347 (-----) [006] dnH4 24573.777601: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
62335     rcu_preempt-7     (    7) [007] d..3 24573.777606: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=005
62336           <...>-13347 (-----) [006] dnH5 24573.777611: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
62337 id.nn.benchmark-13155 (13131) [005] d..2 24573.777615: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
62338     rcu_preempt-7     (    7) [007] d..2 24573.777616: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
62339           <...>-13347 (-----) [006] dnH4 24573.777616: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
62340         sugov:4-560   (  560) [005] d..2 24573.777620: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
62341         rcuop/0-10    (   10) [005] d..2 24573.777623: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
62342         rcuop/0-10    (   10) [005] d..3 24573.777647: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
62343           <...>-13347 (-----) [006] d..2 24573.777650: sched_switch: prev_comm=id.nn.benchmark prev_pid=13347 prev_prio=110 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
62344     migration/0-13    (   13) [000] d.h2 24573.777652: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
62345  crtc_event:111-254   (  254) [006] d..2 24573.777657: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13347 next_prio=110
62346     migration/0-13    (   13) [000] d..2 24573.777660: 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
62347         rcuop/0-10    (   10) [005] d..2 24573.777666: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
62348         sugov:0-559   (  559) [000] d..2 24573.777669: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
62349  kworker/u16:15-18488 (18488) [004] .... 24573.777720: clk_set_rate: l3_cluster0_vote_clk 1401600000
62350  kworker/u16:15-18488 (18488) [004] d..2 24573.777725: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
62351         rcuop/1-21    (   21) [004] d..2 24573.777732: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
62352           <...>-13347 (-----) [006] d..2 24573.777793: sched_switch: prev_comm=id.nn.benchmark prev_pid=13347 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
62353     logd.writer-563   (  555) [000] d..2 24573.777896: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13348 next_prio=110
62354           <...>-13348 (-----) [000] ...1 24573.777948: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
62355           <...>-13348 (-----) [000] ...1 24573.777953: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
62356           <...>-13348 (-----) [000] d..2 24573.778011: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
62357           <...>-13348 (-----) [000] d..3 24573.778019: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
62358           <...>-13348 (-----) [000] ...1 24573.778084: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62359           <...>-13348 (-----) [000] ...1 24573.778089: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62360 id.nn.benchmark-13160 (13131) [003] d.h1 24573.778516: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
62361 id.nn.benchmark-13159 (13131) [006] dnh1 24573.778539: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=006
62362 id.nn.benchmark-13159 (13131) [006] d..2 24573.778562: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
62363 id.nn.benchmark-13160 (13131) [003] d.h2 24573.778563: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
62364 id.nn.benchmark-13160 (13131) [003] d.h2 24573.778574: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
62365        DispSync-23904 (23896) [006] d..1 24573.778577: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
62366 id.nn.benchmark-13158 (13131) [004] dnh1 24573.778578: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
62367 id.nn.benchmark-13158 (13131) [004] d..2 24573.778580: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
62368 id.nn.benchmark-13160 (13131) [003] d.h3 24573.778582: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
62369         sugov:4-560   (  560) [004] d..2 24573.778584: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
62370           <...>-13348 (-----) [000] d..2 24573.778596: sched_switch: prev_comm=id.nn.benchmark prev_pid=13348 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
62371 id.nn.benchmark-13156 (13131) [001] dnh1 24573.778599: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
62372        DispSync-23904 (23896) [006] d..2 24573.778601: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
62373 id.nn.benchmark-13156 (13131) [001] d..2 24573.778605: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
62374         sugov:0-559   (  559) [000] d..2 24573.778606: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
62375  appEventThread-23905 (23896) [001] d..3 24573.778647: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
62376 id.nn.benchmark-13159 (13131) [006] dnh1 24573.778665: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
62377 id.nn.benchmark-13159 (13131) [006] d..2 24573.778668: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
62378  appEventThread-23905 (23896) [001] d..2 24573.778675: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
62379     logd.writer-563   (  555) [000] d..2 24573.778707: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13348 next_prio=110
62380<...>-24151 ( 24151) [006] .... 24573.778876: binder_transaction: transaction=1670087 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
62381<...>-24151 ( 24151) [006] d..4 24573.778882: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=003
62382           <...>-13348 (-----) [000] dnh1 24573.778902: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
62383           <...>-13348 (-----) [000] d..2 24573.778908: sched_switch: prev_comm=id.nn.benchmark prev_pid=13348 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
62384  Binder:23896_5-25989 (23896) [000] .... 24573.778915: binder_transaction_received: transaction=1670087
62385<...>-24151 ( 24151) [006] d..3 24573.778915: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=003
62386  Binder:23896_5-25989 (23896) [000] d.h1 24573.778933: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
62387  Binder:23896_5-25989 (23896) [000] d..1 24573.778951: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
62388  Binder:23896_5-25989 (23896) [000] dn.2 24573.778964: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
62389  Binder:23896_5-25989 (23896) [000] d..2 24573.778969: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
62390  appEventThread-23905 (23896) [000] d..2 24573.778980: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
62391<...>-24151 ( 24151) [006] d..2 24573.778990: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
62392    RenderThread-24437 (24151) [000] d..1 24573.779100: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
62393 id.nn.benchmark-13159 (13131) [006] dnh1 24573.779116: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
62394 id.nn.benchmark-13159 (13131) [006] d..2 24573.779118: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
62395<...>-24151 ( 24151) [006] d..2 24573.779140: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
62396    RenderThread-24437 (24151) [000] .... 24573.779161: binder_transaction: transaction=1670088 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
62397    RenderThread-24437 (24151) [000] d..4 24573.779167: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=001
62398 id.nn.benchmark-13159 (13131) [006] dnh1 24573.779191: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
62399 id.nn.benchmark-13159 (13131) [006] d..2 24573.779216: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
62400    RenderThread-24437 (24151) [000] d.h5 24573.779217: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
62401    RenderThread-24437 (24151) [000] d.h5 24573.779229: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
62402<...>-23903 ( 23896) [006] dnh2 24573.779232: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
62403    RenderThread-24437 (24151) [000] dnh6 24573.779235: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
62404<...>-23903 ( 23896) [006] d..2 24573.779240: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
62405    RenderThread-24437 (24151) [000] d..2 24573.779242: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
62406         sugov:4-560   (  560) [006] d..2 24573.779244: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
62407<...>-23903 ( 23896) [006] .... 24573.779246: binder_transaction_received: transaction=1670088
62408         sugov:0-559   (  559) [000] d..2 24573.779249: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
62409  Binder:23896_5-25989 (23896) [000] d..1 24573.779254: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
62410  Binder:23896_5-25989 (23896) [000] dn.2 24573.779260: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
62411  Binder:23896_5-25989 (23896) [000] d..2 24573.779264: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
62412<...>-23903 ( 23896) [006] .... 24573.779282: binder_transaction: transaction=1670089 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
62413  appEventThread-23905 (23896) [000] d..2 24573.779288: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
62414<...>-23903 ( 23896) [006] d..2 24573.779298: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
62415  Binder:23896_5-25989 (23896) [000] d..2 24573.779307: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
62416    RenderThread-24437 (24151) [000] .... 24573.779312: binder_transaction_received: transaction=1670089
62417    RenderThread-24437 (24151) [000] d..2 24573.780282: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13348 next_prio=110
62418           <...>-13348 (-----) [000] d.h1 24573.780378: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
62419           <...>-13348 (-----) [000] d.h2 24573.780388: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
62420           <...>-13348 (-----) [000] dnh2 24573.780392: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
62421           <...>-13348 (-----) [000] d..2 24573.780399: sched_switch: prev_comm=id.nn.benchmark prev_pid=13348 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
62422    RenderThread-24437 (24151) [000] d.h2 24573.780503: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
62423    RenderThread-24437 (24151) [000] dnh3 24573.780518: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
62424    RenderThread-24437 (24151) [000] d..2 24573.780530: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
62425 kgsl_worker_thr-246   (  246) [000] d..2 24573.780565: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
62426 kgsl_worker_thr-246   (  246) [000] d..3 24573.780593: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
62427 kgsl_worker_thr-246   (  246) [000] d.h2 24573.780620: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
62428 kgsl_worker_thr-246   (  246) [000] d.h2 24573.780627: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
62429 id.nn.benchmark-13159 (13131) [006] dnh1 24573.780632: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
62430 id.nn.benchmark-13159 (13131) [006] d..2 24573.780635: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
62431         sugov:4-560   (  560) [006] d..2 24573.780639: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
62432 kgsl_worker_thr-246   (  246) [000] d.h3 24573.780640: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
62433 id.nn.benchmark-13156 (13131) [001] d..2 24573.780648: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
62434 kgsl_worker_thr-246   (  246) [000] d..2 24573.780650: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
62435         sugov:0-559   (  559) [001] d..2 24573.780655: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
62436  kworker/u16:15-18488 (18488) [000] d..2 24573.780678: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
62437    RenderThread-24437 (24151) [000] .... 24573.780729: binder_transaction: transaction=1670090 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
62438    RenderThread-24437 (24151) [000] d..4 24573.780736: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
62439    RenderThread-24437 (24151) [000] d..5 24573.780758: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
62440    RenderThread-24437 (24151) [000] d..2 24573.780765: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
62441  Binder:23896_5-25989 (23896) [000] .... 24573.780770: binder_transaction_received: transaction=1670090
62442  Binder:23896_5-25989 (23896) [000] .... 24573.780873: binder_transaction: transaction=1670091 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
62443  Binder:23896_5-25989 (23896) [000] d..2 24573.780877: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
62444           <...>-13157 (-----) [007] d.s2 24573.780886: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
62445  Binder:23896_5-25989 (23896) [000] d..3 24573.780888: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
62446  Binder:23896_5-25989 (23896) [000] d.H2 24573.780909: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
62447  Binder:23896_5-25989 (23896) [000] d..2 24573.780932: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
62448  kworker/u16:15-18488 (18488) [000] d..2 24573.781187: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
62449    RenderThread-24437 (24151) [000] .... 24573.781191: binder_transaction_received: transaction=1670091
62450    RenderThread-24437 (24151) [000] d..2 24573.781238: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13348 next_prio=110
62451 id.nn.benchmark-13155 (13131) [005] d..3 24573.781582: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
62452 id.nn.benchmark-13155 (13131) [005] d..2 24573.781589: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
62453 id.nn.benchmark-13156 (13131) [001] dnh1 24573.781592: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
62454 id.nn.benchmark-13156 (13131) [001] d..2 24573.781597: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
62455          <idle>-0     (-----) [005] d..1 24573.781599: cpu_idle: state=0 cpu_id=5
62456           <...>-13157 (-----) [007] d..2 24573.781610: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
62457 id.nn.benchmark-13156 (13131) [007] d.h4 24573.781629: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
62458     migration/1-17    (   17) [001] d..2 24573.781631: 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
62459 id.nn.benchmark-13156 (13131) [007] d.h5 24573.781637: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
62460 id.nn.benchmark-13156 (13131) [007] d.h4 24573.781637: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
62461          <idle>-0     (-----) [005] .n.1 24573.781642: cpu_idle: state=4294967295 cpu_id=5
62462          <idle>-0     (-----) [001] d..1 24573.781644: cpu_idle: state=0 cpu_id=1
62463          <idle>-0     (-----) [005] d..2 24573.781647: 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
62464         sugov:4-560   (  560) [005] d..3 24573.781652: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
62465          <idle>-0     (-----) [001] dnh2 24573.781653: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
62466          <idle>-0     (-----) [001] .n.1 24573.781657: cpu_idle: state=4294967295 cpu_id=1
62467         sugov:4-560   (  560) [005] d..2 24573.781659: 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
62468          <idle>-0     (-----) [005] d..1 24573.781661: cpu_idle: state=0 cpu_id=5
62469          <idle>-0     (-----) [001] d..2 24573.781663: 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
62470           <...>-13154 (-----) [002] dnh1 24573.781663: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
62471           <...>-13154 (-----) [002] d..2 24573.781670: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
62472         sugov:0-559   (  559) [001] d..2 24573.781679: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
62473          <idle>-0     (-----) [001] d..1 24573.781685: cpu_idle: state=0 cpu_id=1
62474          <idle>-0     (-----) [005] .n.1 24573.781694: cpu_idle: state=4294967295 cpu_id=5
62475          <idle>-0     (-----) [005] d..2 24573.781712: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
62476 id.nn.benchmark-13158 (13131) [004] d..3 24573.781715: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
62477 id.nn.benchmark-13158 (13131) [004] d..2 24573.781723: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
62478 id.nn.benchmark-13160 (13131) [003] dnh1 24573.781724: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
62479     migration/2-25    (   25) [002] d..2 24573.781725: 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
62480          <idle>-0     (-----) [004] d..1 24573.781728: cpu_idle: state=0 cpu_id=4
62481 id.nn.benchmark-13160 (13131) [003] d..2 24573.781730: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
62482          <idle>-0     (-----) [002] d..1 24573.781737: cpu_idle: state=0 cpu_id=2
62483          <idle>-0     (-----) [004] .n.1 24573.781754: cpu_idle: state=4294967295 cpu_id=4
62484          <idle>-0     (-----) [004] d..2 24573.781770: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
62485<...>-33 ( 33) [003] d..2 24573.781781: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
62486          <idle>-0     (-----) [003] d..1 24573.781792: cpu_idle: state=0 cpu_id=3
62487           <...>-13348 (-----) [000] d..1 24573.782142: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
62488           <...>-13348 (-----) [000] d..1 24573.782156: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=007
62489           <...>-13154 (-----) [005] d.h1 24573.782157: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
62490           <...>-13348 (-----) [000] d..1 24573.782166: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
62491 id.nn.benchmark-13156 (13131) [007] d.h1 24573.782167: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=007
62492 id.nn.benchmark-13160 (13131) [004] d.h1 24573.782177: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
62493 id.nn.benchmark-13159 (13131) [006] d.h1 24573.782518: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=006
62494 id.nn.benchmark-13159 (13131) [006] d.h2 24573.782551: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
62495          <idle>-0     (-----) [003] dnh2 24573.782552: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
62496          <idle>-0     (-----) [003] .n.1 24573.782556: cpu_idle: state=4294967295 cpu_id=3
62497 id.nn.benchmark-13159 (13131) [006] dnh3 24573.782557: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
62498 id.nn.benchmark-13159 (13131) [006] d..2 24573.782560: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
62499          <idle>-0     (-----) [003] d..2 24573.782561: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
62500         sugov:4-560   (  560) [006] d..2 24573.782563: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
62501        DispSync-23904 (23896) [003] d..1 24573.782575: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
62502        DispSync-23904 (23896) [003] d..2 24573.782590: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
62503          <idle>-0     (-----) [002] .n.1 24573.782596: cpu_idle: state=4294967295 cpu_id=2
62504          <idle>-0     (-----) [002] d..2 24573.782602: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
62505        DispSync-23904 (23896) [003] d..2 24573.782622: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
62506   sfEventThread-23906 (23896) [002] d..3 24573.782634: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
62507 id.nn.benchmark-13155 (13131) [003] d.h4 24573.782652: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
62508   sfEventThread-23906 (23896) [002] d..4 24573.782660: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
62509 id.nn.benchmark-13155 (13131) [003] d.h5 24573.782664: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
62510          <idle>-0     (-----) [001] .n.1 24573.782665: cpu_idle: state=4294967295 cpu_id=1
62511          <idle>-0     (-----) [001] d..2 24573.782670: 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
62512   sfEventThread-23906 (23896) [002] d..2 24573.782695: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
62513         sugov:0-559   (  559) [001] d..2 24573.782716: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
62514  surfaceflinger-23896 (23896) [002] d..1 24573.782938: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
62515  surfaceflinger-23896 (23896) [002] d..2 24573.782953: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
62516           <...>-13348 (-----) [000] d..2 24573.782963: sched_switch: prev_comm=id.nn.benchmark prev_pid=13348 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
62517   sfEventThread-23906 (23896) [000] d..2 24573.782983: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13348 next_prio=110
62518  surfaceflinger-23896 (23896) [002] ...1 24573.783077: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
62519  surfaceflinger-23896 (23896) [002] ...1 24573.783082: tracing_mark_write: E|23896
62520  surfaceflinger-23896 (23896) [002] .... 24573.783125: binder_transaction: transaction=1670092 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
62521  surfaceflinger-23896 (23896) [002] ...2 24573.783146: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
62522  surfaceflinger-23896 (23896) [002] d..4 24573.783153: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
62523  surfaceflinger-23896 (23896) [002] d..5 24573.783166: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
62524           <...>-13348 (-----) [000] d..2 24573.783174: sched_switch: prev_comm=id.nn.benchmark prev_pid=13348 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
62525  HwBinder:598_3-633   (  598) [000] .... 24573.783181: binder_transaction_received: transaction=1670092
62526  surfaceflinger-23896 (23896) [002] d..2 24573.783182: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
62527          <idle>-0     (-----) [002] d..1 24573.783191: cpu_idle: state=0 cpu_id=2
62528  HwBinder:598_3-633   (  598) [000] ...1 24573.783219: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
62529  HwBinder:598_3-633   (  598) [000] ...1 24573.783304: tracing_mark_write: B|598|HWCSession::PresentDisplay::
62530  HwBinder:598_3-633   (  598) [000] ...1 24573.783422: tracing_mark_write: B|598|HWDeviceDRM::Commit::
62531  HwBinder:598_3-633   (  598) [000] ...1 24573.783430: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
62532  HwBinder:598_3-633   (  598) [000] d..2 24573.783819: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
62533  HwBinder:598_3-633   (  598) [000] d..3 24573.783841: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
62534          <idle>-0     (-----) [002] .n.1 24573.783846: cpu_idle: state=4294967295 cpu_id=2
62535  HwBinder:598_3-633   (  598) [000] d.h3 24573.783870: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
62536          <idle>-0     (-----) [002] d..2 24573.783870: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
62537  HwBinder:598_3-633   (  598) [000] d.h3 24573.783881: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
62538           <...>-13154 (-----) [005] dnh1 24573.783885: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
62539           <...>-13154 (-----) [005] d..2 24573.783887: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
62540  HwBinder:598_3-633   (  598) [000] d.h4 24573.783889: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
62541         sugov:4-560   (  560) [005] d..2 24573.783891: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
62542           <...>-13157 (-----) [001] d..2 24573.783898: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
62543         sugov:0-559   (  559) [001] d..2 24573.783906: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
62544  HwBinder:598_3-633   (  598) [000] ...1 24573.783946: tracing_mark_write: E|598
62545  HwBinder:598_3-633   (  598) [000] ...1 24573.783949: tracing_mark_write: E|598
62546  HwBinder:598_3-633   (  598) [000] ...1 24573.783988: tracing_mark_write: E|598
62547  HwBinder:598_3-633   (  598) [000] ...1 24573.784020: tracing_mark_write: E|598
62548  HwBinder:598_3-633   (  598) [000] .... 24573.784030: binder_transaction: transaction=1670093 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
62549  HwBinder:598_3-633   (  598) [000] d..2 24573.784041: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
62550  HwBinder:598_3-633   (  598) [000] d..3 24573.784056: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
62551  HwBinder:598_3-633   (  598) [000] .... 24573.784058: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
62552           <...>-13157 (-----) [001] d..2 24573.784063: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
62553  surfaceflinger-23896 (23896) [001] .... 24573.784068: binder_transaction_received: transaction=1670093
62554  HwBinder:598_3-633   (  598) [000] d..2 24573.784099: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13348 next_prio=110
62555 id.nn.benchmark-13156 (13131) [007] d.s1 24573.784223: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
62556 id.nn.benchmark-13156 (13131) [007] dns2 24573.784232: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
62557 id.nn.benchmark-13156 (13131) [007] d..2 24573.784236: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
62558     rcu_preempt-7     (    7) [007] d..2 24573.784241: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
62559  surfaceflinger-23896 (23896) [001] d..2 24573.784330: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
62560 crtc_commit:111-253   (  253) [002] d..2 24573.784498: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
62561          <idle>-0     (-----) [002] d..1 24573.784505: cpu_idle: state=0 cpu_id=2
62562           <...>-13154 (-----) [005] d..2 24573.786689: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
62563 id.nn.benchmark-13156 (13131) [007] d..3 24573.786702: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
62564 id.nn.benchmark-13160 (13131) [004] d..2 24573.786706: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
62565 id.nn.benchmark-13156 (13131) [007] d..2 24573.786709: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
62566          <idle>-0     (-----) [004] d..1 24573.786710: cpu_idle: state=0 cpu_id=4
62567           <...>-13157 (-----) [001] dnh1 24573.786713: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
62568          <idle>-0     (-----) [007] d..1 24573.786716: cpu_idle: state=0 cpu_id=7
62569           <...>-13157 (-----) [001] d..2 24573.786718: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
62570          <idle>-0     (-----) [007] .n.1 24573.786741: cpu_idle: state=4294967295 cpu_id=7
62571          <idle>-0     (-----) [007] d..2 24573.786762: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
62572     migration/1-17    (   17) [001] d.h3 24573.786763: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
62573 id.nn.benchmark-13159 (13131) [006] d..2 24573.786767: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
62574     migration/1-17    (   17) [001] d.h3 24573.786775: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
62575          <idle>-0     (-----) [006] d..1 24573.786776: cpu_idle: state=0 cpu_id=6
62576          <idle>-0     (-----) [006] dnh2 24573.786782: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
62577          <idle>-0     (-----) [006] .n.1 24573.786784: cpu_idle: state=4294967295 cpu_id=6
62578          <idle>-0     (-----) [006] d..2 24573.786787: 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
62579     migration/1-17    (   17) [001] d.h4 24573.786788: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
62580          <idle>-0     (-----) [002] .n.1 24573.786792: cpu_idle: state=4294967295 cpu_id=2
62581         sugov:4-560   (  560) [006] d..2 24573.786793: 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
62582          <idle>-0     (-----) [006] d..1 24573.786795: cpu_idle: state=0 cpu_id=6
62583          <idle>-0     (-----) [002] d..2 24573.786798: 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
62584     migration/1-17    (   17) [001] d..2 24573.786800: 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
62585         sugov:0-559   (  559) [002] d..2 24573.786810: 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
62586          <idle>-0     (-----) [001] d..1 24573.786810: cpu_idle: state=0 cpu_id=1
62587           <...>-13348 (-----) [000] ...1 24573.786811: tracing_mark_write: E|13131
62588          <idle>-0     (-----) [002] d..1 24573.786815: cpu_idle: state=0 cpu_id=2
62589           <...>-13348 (-----) [000] ...1 24573.786816: tracing_mark_write: E|13131
62590           <...>-13348 (-----) [000] ...1 24573.786836: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62591           <...>-13348 (-----) [000] ...1 24573.786842: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62592          <idle>-0     (-----) [004] ...1 24573.786901: cpu_idle: state=4294967295 cpu_id=4
62593          <idle>-0     (-----) [004] d..1 24573.786902: cpu_idle: state=0 cpu_id=4
62594           <...>-13348 (-----) [000] d..1 24573.787324: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
62595           <...>-13348 (-----) [000] d..1 24573.787343: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=007
62596          <idle>-0     (-----) [004] dnh2 24573.787344: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
62597          <idle>-0     (-----) [004] .n.1 24573.787347: cpu_idle: state=4294967295 cpu_id=4
62598          <idle>-0     (-----) [004] d..2 24573.787350: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
62599           <...>-13348 (-----) [000] d..1 24573.787359: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=006
62600          <idle>-0     (-----) [006] dnh2 24573.787361: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
62601          <idle>-0     (-----) [006] .n.1 24573.787365: cpu_idle: state=4294967295 cpu_id=6
62602          <idle>-0     (-----) [006] dn.2 24573.787366: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=006
62603          <idle>-0     (-----) [006] d..2 24573.787368: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
62604           <...>-13348 (-----) [000] d..1 24573.787370: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=004
62605           <...>-13154 (-----) [004] d.h1 24573.787381: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=004
62606 id.nn.benchmark-13156 (13131) [006] d.s2 24573.787556: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
62607           <...>-13154 (-----) [004] d.s2 24573.787556: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
62608           <...>-13154 (-----) [004] d.s3 24573.787569: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
62609           <...>-13157 (-----) [007] d..2 24573.787575: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
62610          <idle>-0     (-----) [001] dnH2 24573.787575: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
62611     rcu_preempt-7     (    7) [007] d..2 24573.787576: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
62612     rcu_preempt-7     (    7) [007] d..2 24573.787613: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
62613          <idle>-0     (-----) [002] .n.1 24573.787621: cpu_idle: state=4294967295 cpu_id=2
62614     rcu_preempt-7     (    7) [007] d.h3 24573.787622: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
62615          <idle>-0     (-----) [001] dnH2 24573.787623: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
62616          <idle>-0     (-----) [001] dnH2 24573.787625: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=001
62617          <idle>-0     (-----) [002] d..2 24573.787628: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
62618     rcu_preempt-7     (    7) [007] d.h4 24573.787628: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
62619     rcu_preempt-7     (    7) [007] d.h3 24573.787628: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
62620 id.nn.benchmark-13156 (13131) [006] d..2 24573.787634: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
62621         sugov:4-560   (  560) [006] d..2 24573.787657: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
62622     rcu_preempt-7     (    7) [007] d..2 24573.787658: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
62623          <idle>-0     (-----) [001] dnH2 24573.787661: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
62624          <idle>-0     (-----) [001] .n.1 24573.787671: cpu_idle: state=4294967295 cpu_id=1
62625          <idle>-0     (-----) [001] d..2 24573.787677: 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
62626         sugov:0-559   (  559) [001] d..2 24573.787685: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
62627  kworker/u16:15-18488 (18488) [001] d..2 24573.787772: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
62628         rcuop/2-29    (   29) [001] d..2 24573.787777: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=004
62629         rcuop/2-29    (   29) [001] d..3 24573.787796: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
62630         rcuop/2-29    (   29) [001] d..2 24573.787824: 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
62631         rcuop/6-61    (   61) [001] d..2 24573.787834: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
62632         rcuop/3-37    (   37) [001] d..2 24573.787883: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
62633           <...>-13348 (-----) [000] ...1 24573.788133: tracing_mark_write: E|13131
62634           <...>-13348 (-----) [000] ...1 24573.788137: tracing_mark_write: E|13131
62635           <...>-13348 (-----) [000] ...1 24573.788159: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62636           <...>-13348 (-----) [000] ...1 24573.788164: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62637           <...>-13348 (-----) [000] ...1 24573.788498: tracing_mark_write: E|13131
62638           <...>-13348 (-----) [000] ...1 24573.788501: tracing_mark_write: E|13131
62639           <...>-13348 (-----) [000] ...1 24573.788513: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62640           <...>-13348 (-----) [000] ...1 24573.788518: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62641           <...>-13348 (-----) [000] ...1 24573.788751: tracing_mark_write: E|13131
62642           <...>-13348 (-----) [000] ...1 24573.788754: tracing_mark_write: E|13131
62643           <...>-13348 (-----) [000] ...1 24573.788765: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62644           <...>-13348 (-----) [000] ...1 24573.788769: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62645           <...>-13348 (-----) [000] ...1 24573.789166: tracing_mark_write: E|13131
62646           <...>-13348 (-----) [000] ...1 24573.789169: tracing_mark_write: E|13131
62647           <...>-13348 (-----) [000] ...1 24573.789180: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62648           <...>-13348 (-----) [000] ...1 24573.789183: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62649           <...>-13348 (-----) [000] ...1 24573.789579: tracing_mark_write: E|13131
62650           <...>-13348 (-----) [000] ...1 24573.789584: tracing_mark_write: E|13131
62651           <...>-13348 (-----) [000] ...1 24573.789605: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62652           <...>-13348 (-----) [000] ...1 24573.789609: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62653           <...>-13348 (-----) [000] ...1 24573.789802: tracing_mark_write: E|13131
62654           <...>-13348 (-----) [000] ...1 24573.789805: tracing_mark_write: E|13131
62655           <...>-13348 (-----) [000] ...1 24573.789819: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62656           <...>-13348 (-----) [000] ...1 24573.789823: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62657           <...>-13348 (-----) [000] d..2 24573.789846: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
62658 id.nn.benchmark-13156 (13131) [006] d..3 24573.789849: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
62659 id.nn.benchmark-13156 (13131) [006] d..2 24573.789855: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=D|K ==> next_comm=swapper/6 next_pid=0 next_prio=120
62660 id.nn.benchmark-13160 (13131) [001] dnh1 24573.789859: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
62661          <idle>-0     (-----) [006] d..1 24573.789859: cpu_idle: state=0 cpu_id=6
62662 id.nn.benchmark-13160 (13131) [001] d..2 24573.789865: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
62663          <idle>-0     (-----) [006] d.h2 24573.789871: sched_blocked_reason: pid=13156 iowait=1 caller=__lock_page_or_retry+0x26c/0x2c4
62664          <idle>-0     (-----) [006] dnh2 24573.789872: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
62665          <idle>-0     (-----) [006] .n.1 24573.789882: cpu_idle: state=4294967295 cpu_id=6
62666          <idle>-0     (-----) [006] d..2 24573.789886: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
62667     migration/1-17    (   17) [001] d.h3 24573.789910: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
62668           <...>-13348 (-----) [000] ...1 24573.789916: tracing_mark_write: E|13131
62669           <...>-13348 (-----) [000] ...1 24573.789920: tracing_mark_write: E|13131
62670     migration/1-17    (   17) [001] d.h3 24573.789922: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
62671           <...>-13154 (-----) [004] dnh1 24573.789926: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
62672     migration/1-17    (   17) [001] d.h4 24573.789927: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
62673           <...>-13154 (-----) [004] d..2 24573.789928: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
62674         sugov:4-560   (  560) [004] d..2 24573.789932: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
62675           <...>-13348 (-----) [000] ...1 24573.789932: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
62676     migration/1-17    (   17) [001] d..2 24573.789934: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
62677           <...>-13348 (-----) [000] ...1 24573.789937: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
62678         sugov:0-559   (  559) [001] d..2 24573.789958: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
62679           <...>-13348 (-----) [000] ...1 24573.790253: tracing_mark_write: E|13131
62680           <...>-13348 (-----) [000] ...1 24573.790256: tracing_mark_write: E|13131
62681           <...>-13348 (-----) [000] ...1 24573.790266: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
62682           <...>-13348 (-----) [000] ...1 24573.790270: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
62683           <...>-13348 (-----) [000] ...1 24573.790326: tracing_mark_write: E|13131
62684           <...>-13348 (-----) [000] ...1 24573.790329: tracing_mark_write: E|13131
62685           <...>-13348 (-----) [000] ...1 24573.790338: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
62686           <...>-13348 (-----) [000] ...1 24573.790341: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
62687           <...>-13348 (-----) [000] ...1 24573.790360: tracing_mark_write: E|13131
62688           <...>-13348 (-----) [000] ...1 24573.790363: tracing_mark_write: E|13131
62689           <...>-13348 (-----) [000] ...1 24573.790373: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
62690           <...>-13348 (-----) [000] ...1 24573.790377: tracing_mark_write: E|13131
62691           <...>-13348 (-----) [000] ...1 24573.790388: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
62692           <...>-13348 (-----) [000] ...1 24573.790393: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
62693           <...>-13348 (-----) [000] d.h4 24573.790570: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=006
62694           <...>-13348 (-----) [000] dnh5 24573.790589: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
62695           <...>-13348 (-----) [000] dnh4 24573.790592: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
62696           <...>-13154 (-----) [004] dnh1 24573.790608: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
62697           <...>-13154 (-----) [004] d..2 24573.790610: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
62698           <...>-13348 (-----) [000] dnh2 24573.790638: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
62699           <...>-13348 (-----) [000] dnh2 24573.790648: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
62700 id.nn.benchmark-13156 (13131) [006] dnh1 24573.790652: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
62701 id.nn.benchmark-13156 (13131) [006] d..2 24573.790654: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
62702 crtc_commit:111-253   (  253) [004] d..2 24573.790656: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
62703           <...>-13348 (-----) [000] dnh3 24573.790656: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
62704         sugov:4-560   (  560) [006] d..2 24573.790658: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
62705           <...>-13348 (-----) [000] d..2 24573.790663: sched_switch: prev_comm=id.nn.benchmark prev_pid=13348 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
62706 id.nn.benchmark-13160 (13131) [001] d..2 24573.790664: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
62707         sugov:0-559   (  559) [001] d..2 24573.790671: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
62708  crtc_event:111-254   (  254) [000] d..2 24573.790675: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
62709           <...>-13154 (-----) [004] dnh1 24573.790687: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
62710  crtc_event:111-254   (  254) [000] d..2 24573.790688: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13348 next_prio=110
62711           <...>-13154 (-----) [004] d..2 24573.790689: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
62712 crtc_commit:111-253   (  253) [004] d..2 24573.790741: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
62713 id.nn.benchmark-13158 (13131) [005] d.s2 24573.790888: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
62714           <...>-13154 (-----) [004] d.s2 24573.790889: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
62715           <...>-13348 (-----) [000] dnh1 24573.790902: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
62716           <...>-13348 (-----) [000] dnh1 24573.790905: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
62717           <...>-13348 (-----) [000] d..2 24573.790910: sched_switch: prev_comm=id.nn.benchmark prev_pid=13348 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
62718  crtc_event:111-254   (  254) [000] d..2 24573.790922: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
62719  kworker/u16:15-18488 (18488) [000] .... 24573.791097: clk_set_rate: l3_cluster1_vote_clk 300000000
62720  kworker/u16:15-18488 (18488) [000] .... 24573.791101: clk_set_rate: l3_clk 1401600000
62721  kworker/u16:15-18488 (18488) [000] d..2 24573.791324: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13348 next_prio=110
62722           <...>-13348 (-----) [000] ...1 24573.791895: tracing_mark_write: E|13131
62723           <...>-13348 (-----) [000] ...1 24573.791898: tracing_mark_write: E|13131
62724           <...>-13348 (-----) [000] ...1 24573.791908: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62725           <...>-13348 (-----) [000] ...1 24573.791913: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62726           <...>-13348 (-----) [000] ...1 24573.791998: tracing_mark_write: E|13131
62727           <...>-13348 (-----) [000] ...1 24573.792002: tracing_mark_write: E|13131
62728           <...>-13348 (-----) [000] d..2 24573.792063: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
62729           <...>-13348 (-----) [000] d..3 24573.792073: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
62730           <...>-13348 (-----) [000] ...1 24573.792096: tracing_mark_write: E|13131
62731           <...>-13348 (-----) [000] d..1 24573.792102: sched_waking: comm=id.nn.benchmark pid=13347 prio=110 target_cpu=006
62732 id.nn.benchmark-13156 (13131) [006] dnh1 24573.792124: sched_wakeup: comm=id.nn.benchmark pid=13347 prio=110 target_cpu=006
62733 id.nn.benchmark-13156 (13131) [006] d..2 24573.792127: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13347 next_prio=110
62734           <...>-13348 (-----) [000] ...1 24573.792135: tracing_mark_write: E|13131
62735           <...>-13347 (-----) [006] d..2 24573.792136: sched_switch: prev_comm=id.nn.benchmark prev_pid=13347 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
62736           <...>-13348 (-----) [000] d..1 24573.792364: sched_waking: comm=id.nn.benchmark pid=13347 prio=110 target_cpu=006
62737 id.nn.benchmark-13156 (13131) [006] dnh1 24573.792383: sched_wakeup: comm=id.nn.benchmark pid=13347 prio=110 target_cpu=006
62738 id.nn.benchmark-13156 (13131) [006] d..2 24573.792386: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13347 next_prio=110
62739           <...>-13348 (-----) [000] d..2 24573.792445: sched_switch: prev_comm=id.nn.benchmark prev_pid=13348 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
62740           <...>-13347 (-----) [006] d..1 24573.792452: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
62741           <...>-13347 (-----) [006] dn.2 24573.792461: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
62742           <...>-13347 (-----) [006] d..2 24573.792464: sched_switch: prev_comm=id.nn.benchmark prev_pid=13347 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
62743           <...>-13131 (-----) [006] d..2 24573.792472: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13347 next_prio=110
62744           <...>-13347 (-----) [006] d..1 24573.792501: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
62745           <...>-13347 (-----) [006] dn.2 24573.792507: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
62746           <...>-13347 (-----) [006] d..2 24573.792510: sched_switch: prev_comm=id.nn.benchmark prev_pid=13347 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
62747           <...>-13131 (-----) [006] ...1 24573.792519: tracing_mark_write: E|13131
62748           <...>-13131 (-----) [006] ...1 24573.792522: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
62749           <...>-13131 (-----) [006] ...1 24573.792525: tracing_mark_write: E|13131
62750           <...>-13131 (-----) [006] ...1 24573.792526: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
62751           <...>-13131 (-----) [006] ...1 24573.792529: tracing_mark_write: E|13131
62752     logd.writer-563   (  555) [000] d..2 24573.792563: 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
62753          <idle>-0     (-----) [000] d..1 24573.792579: cpu_idle: state=0 cpu_id=0
62754           <...>-13131 (-----) [006] ...1 24573.792592: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
62755           <...>-13131 (-----) [006] d..2 24573.792608: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
62756           <...>-13131 (-----) [006] ...1 24573.792623: tracing_mark_write: E|13131
62757          <idle>-0     (-----) [000] dnh2 24573.792624: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
62758           <...>-13131 (-----) [006] ...1 24573.792625: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
62759           <...>-13131 (-----) [006] ...1 24573.792628: tracing_mark_write: E|13131
62760          <idle>-0     (-----) [000] .n.1 24573.792629: cpu_idle: state=4294967295 cpu_id=0
62761           <...>-13131 (-----) [006] ...1 24573.792631: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
62762           <...>-13131 (-----) [006] ...1 24573.792632: tracing_mark_write: E|13131
62763           <...>-13131 (-----) [006] ...1 24573.792634: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
62764          <idle>-0     (-----) [000] d..2 24573.792635: 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
62765     logd.writer-563   (  555) [000] d..2 24573.792667: 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
62766          <idle>-0     (-----) [000] d..1 24573.792675: cpu_idle: state=0 cpu_id=0
62767           <...>-13131 (-----) [006] ...1 24573.792697: tracing_mark_write: E|13131
62768           <...>-13131 (-----) [006] ...1 24573.792698: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
62769          <idle>-0     (-----) [000] .n.1 24573.792699: cpu_idle: state=4294967295 cpu_id=0
62770           <...>-13131 (-----) [006] d..2 24573.792703: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13347 next_prio=110
62771          <idle>-0     (-----) [000] d..2 24573.792705: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13349 next_prio=110
62772           <...>-13347 (-----) [006] d..2 24573.792725: sched_switch: prev_comm=id.nn.benchmark prev_pid=13347 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
62773           <...>-13349 (-----) [000] d..2 24573.792765: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
62774           <...>-13349 (-----) [000] d..3 24573.792773: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
62775           <...>-13349 (-----) [000] d.h4 24573.792910: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
62776           <...>-13154 (-----) [004] dnh1 24573.792924: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
62777           <...>-13154 (-----) [004] d..2 24573.792927: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
62778 crtc_commit:111-253   (  253) [004] d..2 24573.792951: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
62779           <...>-13349 (-----) [000] d.h4 24573.793208: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
62780           <...>-13154 (-----) [004] dnh1 24573.793229: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
62781           <...>-13154 (-----) [004] d..2 24573.793231: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
62782  crtc_event:111-254   (  254) [004] d..2 24573.793236: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
62783           <...>-13349 (-----) [000] d.h2 24573.793262: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
62784           <...>-13349 (-----) [000] d.h2 24573.793273: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
62785           <...>-13154 (-----) [004] dnh1 24573.793276: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
62786           <...>-13154 (-----) [004] d..2 24573.793279: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
62787           <...>-13349 (-----) [000] d.h3 24573.793281: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
62788         sugov:4-560   (  560) [004] d..2 24573.793281: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
62789 id.nn.benchmark-13160 (13131) [001] d..2 24573.793290: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
62790         sugov:0-559   (  559) [001] d..2 24573.793297: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
62791           <...>-13349 (-----) [000] d..2 24573.793299: sched_switch: prev_comm=id.nn.benchmark prev_pid=13349 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
62792     logd.writer-563   (  555) [000] d..2 24573.793494: 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
62793          <idle>-0     (-----) [000] d..1 24573.793505: cpu_idle: state=0 cpu_id=0
62794           <...>-13157 (-----) [007] d.s1 24573.794220: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
62795           <...>-13157 (-----) [007] dns2 24573.794229: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
62796           <...>-13157 (-----) [007] d..2 24573.794231: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
62797     rcu_preempt-7     (    7) [007] d..2 24573.794233: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=005
62798     rcu_preempt-7     (    7) [007] d..3 24573.794243: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=005
62799     rcu_preempt-7     (    7) [007] d..2 24573.794247: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
62800 id.nn.benchmark-13158 (13131) [005] d..2 24573.794250: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
62801         rcuop/0-10    (   10) [005] d..2 24573.794252: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
62802         rcuop/0-10    (   10) [005] d..3 24573.794265: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
62803           <...>-13154 (-----) [004] d..2 24573.794270: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
62804         rcuop/1-21    (   21) [004] d..2 24573.794276: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
62805         rcuop/0-10    (   10) [005] d..2 24573.794282: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
62806          <idle>-0     (-----) [000] ...1 24573.794881: cpu_idle: state=4294967295 cpu_id=0
62807          <idle>-0     (-----) [000] d..1 24573.794883: cpu_idle: state=0 cpu_id=0
62808 id.nn.benchmark-13155 (13131) [003] d.h1 24573.794991: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
62809 id.nn.benchmark-13155 (13131) [003] d.h2 24573.795007: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
62810          <idle>-0     (-----) [000] .n.1 24573.795011: cpu_idle: state=4294967295 cpu_id=0
62811          <idle>-0     (-----) [000] d..2 24573.795018: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
62812        DispSync-23904 (23896) [000] d..1 24573.795039: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
62813        DispSync-23904 (23896) [000] d..2 24573.795057: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
62814 id.nn.benchmark-13160 (13131) [001] d..2 24573.795066: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
62815        DispSync-23904 (23896) [000] d..2 24573.795077: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
62816          <idle>-0     (-----) [000] d..1 24573.795083: cpu_idle: state=0 cpu_id=0
62817  appEventThread-23905 (23896) [001] d..3 24573.795103: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
62818  appEventThread-23905 (23896) [001] d..4 24573.795125: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
62819          <idle>-0     (-----) [000] .n.1 24573.795130: cpu_idle: state=4294967295 cpu_id=0
62820  appEventThread-23905 (23896) [001] d.h3 24573.795155: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
62821          <idle>-0     (-----) [000] d..2 24573.795156: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
62822  appEventThread-23905 (23896) [001] d.h3 24573.795162: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
62823           <...>-13154 (-----) [004] dnh1 24573.795165: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
62824           <...>-13154 (-----) [004] d..2 24573.795167: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
62825         sugov:4-560   (  560) [004] d..2 24573.795170: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
62826  appEventThread-23905 (23896) [001] d.h4 24573.795175: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
62827<...>-24151 ( 24151) [000] d..2 24573.795185: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
62828  appEventThread-23905 (23896) [001] d..2 24573.795190: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
62829         sugov:0-559   (  559) [000] d..2 24573.795193: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
62830<...>-24151 ( 24151) [000] .... 24573.795448: binder_transaction: transaction=1670094 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
62831<...>-24151 ( 24151) [000] d..4 24573.795457: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
62832<...>-24151 ( 24151) [000] d..5 24573.795481: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
62833<...>-24151 ( 24151) [000] d..3 24573.795513: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
62834<...>-24151 ( 24151) [000] d..4 24573.795533: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
62835<...>-24151 ( 24151) [000] d..2 24573.795629: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
62836  Binder:23896_5-25989 (23896) [000] .... 24573.795636: binder_transaction_received: transaction=1670094
62837  Binder:23896_5-25989 (23896) [000] d..1 24573.795661: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
62838  Binder:23896_5-25989 (23896) [000] dn.2 24573.795674: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
62839  Binder:23896_5-25989 (23896) [000] d..2 24573.795679: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
62840  appEventThread-23905 (23896) [000] d..2 24573.795691: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
62841    RenderThread-24437 (24151) [000] d..1 24573.795799: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
62842    RenderThread-24437 (24151) [000] d..2 24573.795821: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
62843    RenderThread-24437 (24151) [000] .... 24573.795867: binder_transaction: transaction=1670095 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
62844    RenderThread-24437 (24151) [000] d..4 24573.795872: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
62845 id.nn.benchmark-13156 (13131) [006] dnh1 24573.795894: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
62846 id.nn.benchmark-13156 (13131) [006] d..2 24573.795897: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
62847    RenderThread-24437 (24151) [000] d..2 24573.795899: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
62848<...>-23903 ( 23896) [006] .... 24573.795901: binder_transaction_received: transaction=1670095
62849  Binder:23896_5-25989 (23896) [000] d..1 24573.795904: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
62850  Binder:23896_5-25989 (23896) [000] dn.2 24573.795910: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
62851  Binder:23896_5-25989 (23896) [000] d..2 24573.795915: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
62852<...>-23903 ( 23896) [006] .... 24573.795932: binder_transaction: transaction=1670096 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
62853<...>-23903 ( 23896) [006] d..2 24573.795936: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
62854  appEventThread-23905 (23896) [000] d..2 24573.795940: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
62855  Binder:23896_5-25989 (23896) [000] d.h3 24573.795958: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
62856  Binder:23896_5-25989 (23896) [000] d..2 24573.795967: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
62857<...>-23903 ( 23896) [006] d..2 24573.795971: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
62858    RenderThread-24437 (24151) [000] .... 24573.795971: binder_transaction_received: transaction=1670096
62859           <...>-13157 (-----) [007] d..3 24573.796408: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
62860           <...>-13157 (-----) [007] d..2 24573.796415: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
62861 id.nn.benchmark-13159 (13131) [002] dnh1 24573.796419: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
62862          <idle>-0     (-----) [007] d..1 24573.796421: cpu_idle: state=0 cpu_id=7
62863 id.nn.benchmark-13158 (13131) [005] d..2 24573.796423: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
62864 id.nn.benchmark-13159 (13131) [002] d..2 24573.796426: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
62865          <idle>-0     (-----) [005] d..1 24573.796430: cpu_idle: state=0 cpu_id=5
62866           <...>-13154 (-----) [004] d..2 24573.796443: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13350 next_prio=110
62867          <idle>-0     (-----) [007] .n.1 24573.796449: cpu_idle: state=4294967295 cpu_id=7
62868           <...>-13350 (-----) [004] ...1 24573.796462: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
62869           <...>-13350 (-----) [004] ...1 24573.796464: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
62870          <idle>-0     (-----) [007] d..2 24573.796472: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
62871     migration/2-25    (   25) [002] d.h3 24573.796473: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
62872     migration/2-25    (   25) [002] d.h3 24573.796486: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
62873          <idle>-0     (-----) [005] dnh2 24573.796491: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
62874          <idle>-0     (-----) [005] .n.1 24573.796493: cpu_idle: state=4294967295 cpu_id=5
62875     migration/2-25    (   25) [002] d.h4 24573.796495: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
62876          <idle>-0     (-----) [005] d..2 24573.796496: 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
62877           <...>-13350 (-----) [004] d..2 24573.796497: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
62878         sugov:4-560   (  560) [005] d..3 24573.796500: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
62879     migration/2-25    (   25) [002] d..2 24573.796502: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
62880         sugov:4-560   (  560) [005] d..2 24573.796507: 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
62881          <idle>-0     (-----) [005] d..1 24573.796509: cpu_idle: state=0 cpu_id=5
62882 id.nn.benchmark-13160 (13131) [001] dnh1 24573.796510: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
62883 id.nn.benchmark-13160 (13131) [001] d..2 24573.796515: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
62884    RenderThread-24437 (24151) [000] d.h1 24573.796516: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
62885         sugov:0-559   (  559) [002] d..2 24573.796518: 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
62886          <idle>-0     (-----) [002] d..1 24573.796527: cpu_idle: state=0 cpu_id=2
62887          <idle>-0     (-----) [005] .n.1 24573.796536: cpu_idle: state=4294967295 cpu_id=5
62888           <...>-13350 (-----) [004] ...1 24573.796537: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
62889           <...>-13350 (-----) [004] ...1 24573.796539: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
62890          <idle>-0     (-----) [005] d..2 24573.796554: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
62891     migration/1-17    (   17) [001] d..2 24573.796569: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
62892 id.nn.benchmark-13156 (13131) [006] d..3 24573.796828: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
62893 id.nn.benchmark-13156 (13131) [006] d..2 24573.796835: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
62894 id.nn.benchmark-13155 (13131) [003] dnh1 24573.796838: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
62895          <idle>-0     (-----) [006] d..1 24573.796842: cpu_idle: state=0 cpu_id=6
62896 id.nn.benchmark-13155 (13131) [003] d..2 24573.796844: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
62897          <idle>-0     (-----) [006] .n.1 24573.796866: cpu_idle: state=4294967295 cpu_id=6
62898          <idle>-0     (-----) [006] d..2 24573.796884: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
62899<...>-33 ( 33) [003] d..2 24573.796900: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
62900    RenderThread-24437 (24151) [000] d..2 24573.796924: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
62901          <idle>-0     (-----) [000] d..1 24573.796932: cpu_idle: state=0 cpu_id=0
62902<...>-24151 ( 24151) [003] d..2 24573.796965: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
62903          <idle>-0     (-----) [003] d..1 24573.796978: cpu_idle: state=0 cpu_id=3
62904          <idle>-0     (-----) [000] d.h2 24573.797016: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
62905          <idle>-0     (-----) [000] d.h3 24573.797023: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
62906          <idle>-0     (-----) [000] dnh3 24573.797026: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
62907          <idle>-0     (-----) [000] .n.1 24573.797031: cpu_idle: state=4294967295 cpu_id=0
62908          <idle>-0     (-----) [000] d..2 24573.797037: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
62909           <...>-13350 (-----) [004] d..1 24573.797075: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
62910           <...>-13350 (-----) [004] dn.2 24573.797082: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
62911           <...>-13350 (-----) [004] d..2 24573.797085: sched_switch: prev_comm=id.nn.benchmark prev_pid=13350 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
62912           <...>-13154 (-----) [004] d..2 24573.797090: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13350 next_prio=110
62913           <...>-13350 (-----) [004] d..1 24573.797092: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
62914           <...>-13350 (-----) [004] dn.2 24573.797094: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
62915           <...>-13350 (-----) [004] d..2 24573.797096: sched_switch: prev_comm=id.nn.benchmark prev_pid=13350 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
62916    RenderThread-24437 (24151) [000] d.h2 24573.797134: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
62917    RenderThread-24437 (24151) [000] d.h3 24573.797152: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
62918          <idle>-0     (-----) [002] .n.1 24573.797157: cpu_idle: state=4294967295 cpu_id=2
62919          <idle>-0     (-----) [002] d..2 24573.797163: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
62920 kgsl_worker_thr-246   (  246) [002] d..2 24573.797199: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
62921    RenderThread-24437 (24151) [000] .... 24573.797218: binder_transaction: transaction=1670097 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
62922 kgsl_worker_thr-246   (  246) [002] d..3 24573.797220: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
62923    RenderThread-24437 (24151) [000] d..4 24573.797226: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
62924 kgsl_worker_thr-246   (  246) [002] d..2 24573.797229: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
62925    RenderThread-24437 (24151) [000] d..5 24573.797242: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
62926    RenderThread-24437 (24151) [000] d.h5 24573.797271: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
62927    RenderThread-24437 (24151) [000] d.h5 24573.797283: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
62928           <...>-13154 (-----) [004] dnh1 24573.797292: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
62929           <...>-13154 (-----) [004] d..2 24573.797295: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
62930         sugov:4-560   (  560) [004] d..2 24573.797299: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
62931    RenderThread-24437 (24151) [000] d.h6 24573.797299: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
62932  kworker/u16:15-18488 (18488) [002] d..2 24573.797304: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
62933    RenderThread-24437 (24151) [000] d..2 24573.797332: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
62934<...>-23903 ( 23896) [000] .... 24573.797337: binder_transaction_received: transaction=1670097
62935         sugov:0-559   (  559) [002] d..2 24573.797337: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13350 next_prio=110
62936           <...>-13350 (-----) [002] d..1 24573.797344: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
62937     logd.writer-563   (  555) [001] d..2 24573.797352: 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
62938           <...>-13350 (-----) [002] d..1 24573.797354: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=007
62939 id.nn.benchmark-13155 (13131) [006] d.h1 24573.797357: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
62940           <...>-13350 (-----) [002] d..1 24573.797363: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
62941 id.nn.benchmark-13159 (13131) [007] d.h1 24573.797365: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=007
62942          <idle>-0     (-----) [001] d..1 24573.797365: cpu_idle: state=0 cpu_id=1
62943 id.nn.benchmark-13160 (13131) [005] d.h1 24573.797373: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=005
62944<...>-23903 ( 23896) [000] .... 24573.797436: binder_transaction: transaction=1670098 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
62945<...>-23903 ( 23896) [000] d..2 24573.797440: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
62946<...>-23903 ( 23896) [000] d..3 24573.797448: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
62947<...>-23903 ( 23896) [000] d..2 24573.797468: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
62948    RenderThread-24437 (24151) [000] .... 24573.797472: binder_transaction_received: transaction=1670098
62949    RenderThread-24437 (24151) [000] d..2 24573.797542: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
62950           <...>-13154 (-----) [004] d.s2 24573.797582: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
62951           <...>-13350 (-----) [002] dnh1 24573.797594: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
62952           <...>-13350 (-----) [002] d..2 24573.797617: sched_switch: prev_comm=id.nn.benchmark prev_pid=13350 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
62953  kworker/u16:15-18488 (18488) [002] .... 24573.797665: clk_set_rate: l3_cluster0_vote_clk 1209600000
62954  kworker/u16:15-18488 (18488) [002] .... 24573.797670: clk_set_rate: l3_clk 1209600000
62955  kworker/u16:15-18488 (18488) [002] d..2 24573.797697: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13350 next_prio=110
62956          <idle>-0     (-----) [003] ...1 24573.798559: cpu_idle: state=4294967295 cpu_id=3
62957          <idle>-0     (-----) [003] d..1 24573.798562: cpu_idle: state=0 cpu_id=3
62958          <idle>-0     (-----) [001] ...1 24573.798856: cpu_idle: state=4294967295 cpu_id=1
62959          <idle>-0     (-----) [001] d..1 24573.798860: cpu_idle: state=0 cpu_id=1
62960 id.nn.benchmark-13156 (13131) [000] d.h1 24573.799000: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
62961 id.nn.benchmark-13156 (13131) [000] d.h2 24573.799017: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
62962          <idle>-0     (-----) [003] .n.1 24573.799021: cpu_idle: state=4294967295 cpu_id=3
62963          <idle>-0     (-----) [003] d..2 24573.799028: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
62964        DispSync-23904 (23896) [003] d..1 24573.799041: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
62965        DispSync-23904 (23896) [003] d..2 24573.799058: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
62966          <idle>-0     (-----) [001] .n.1 24573.799063: cpu_idle: state=4294967295 cpu_id=1
62967          <idle>-0     (-----) [001] d..2 24573.799070: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
62968        DispSync-23904 (23896) [003] d..2 24573.799091: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
62969   sfEventThread-23906 (23896) [001] d..3 24573.799098: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
62970           <...>-13157 (-----) [003] d.h4 24573.799121: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
62971           <...>-13157 (-----) [003] d.h4 24573.799133: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
62972   sfEventThread-23906 (23896) [001] d..4 24573.799134: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
62973 id.nn.benchmark-13159 (13131) [007] dnh1 24573.799136: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
62974 id.nn.benchmark-13159 (13131) [007] d..2 24573.799139: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
62975           <...>-13350 (-----) [002] d..2 24573.799142: sched_switch: prev_comm=id.nn.benchmark prev_pid=13350 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
62976         sugov:4-560   (  560) [007] d..2 24573.799143: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
62977           <...>-13157 (-----) [003] dnh5 24573.799151: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
62978           <...>-13157 (-----) [003] d..2 24573.799157: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
62979         sugov:0-559   (  559) [003] d..2 24573.799163: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
62980   sfEventThread-23906 (23896) [001] d..2 24573.799172: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
62981  surfaceflinger-23896 (23896) [002] d..1 24573.799378: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
62982  surfaceflinger-23896 (23896) [002] d..2 24573.799390: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
62983 id.nn.benchmark-13158 (13131) [001] d..2 24573.799399: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
62984   sfEventThread-23906 (23896) [001] d..2 24573.799418: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
62985  surfaceflinger-23896 (23896) [002] ...1 24573.799513: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
62986  surfaceflinger-23896 (23896) [002] ...1 24573.799517: tracing_mark_write: E|23896
62987  surfaceflinger-23896 (23896) [002] .... 24573.799559: binder_transaction: transaction=1670099 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
62988  surfaceflinger-23896 (23896) [002] ...2 24573.799577: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
62989  surfaceflinger-23896 (23896) [002] d..4 24573.799585: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
62990 id.nn.benchmark-13159 (13131) [007] dnh1 24573.799609: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
62991 id.nn.benchmark-13159 (13131) [007] d..2 24573.799632: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
62992  surfaceflinger-23896 (23896) [002] d.h5 24573.799633: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
62993  surfaceflinger-23896 (23896) [002] d.h5 24573.799645: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
62994 id.nn.benchmark-13160 (13131) [005] dnh1 24573.799648: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
62995 id.nn.benchmark-13160 (13131) [005] d..2 24573.799650: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
62996  surfaceflinger-23896 (23896) [002] d.h6 24573.799653: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
62997         sugov:4-560   (  560) [005] d..2 24573.799654: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
62998  HwBinder:598_3-633   (  598) [007] .... 24573.799657: binder_transaction_received: transaction=1670099
62999           <...>-13157 (-----) [003] d..2 24573.799663: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
63000  surfaceflinger-23896 (23896) [002] d..2 24573.799666: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13350 next_prio=110
63001         sugov:0-559   (  559) [003] d..2 24573.799671: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
63002           <...>-13350 (-----) [002] ...1 24573.799681: tracing_mark_write: E|13131
63003  HwBinder:598_3-633   (  598) [007] ...1 24573.799684: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
63004           <...>-13350 (-----) [002] ...1 24573.799685: tracing_mark_write: E|13131
63005           <...>-13350 (-----) [002] ...1 24573.799701: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63006           <...>-13350 (-----) [002] ...1 24573.799706: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63007  HwBinder:598_3-633   (  598) [007] ...1 24573.799735: tracing_mark_write: B|598|HWCSession::PresentDisplay::
63008  HwBinder:598_3-633   (  598) [007] ...1 24573.799798: tracing_mark_write: B|598|HWDeviceDRM::Commit::
63009  HwBinder:598_3-633   (  598) [007] ...1 24573.799802: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
63010  HwBinder:598_3-633   (  598) [007] d..2 24573.799993: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
63011           <...>-13350 (-----) [002] dnh1 24573.800025: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
63012           <...>-13350 (-----) [002] d..2 24573.800033: sched_switch: prev_comm=id.nn.benchmark prev_pid=13350 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
63013  HwBinder:598_3-633   (  598) [007] ...1 24573.800051: tracing_mark_write: E|598
63014  HwBinder:598_3-633   (  598) [007] ...1 24573.800053: tracing_mark_write: E|598
63015  HwBinder:598_3-633   (  598) [007] ...1 24573.800074: tracing_mark_write: E|598
63016  HwBinder:598_3-633   (  598) [007] ...1 24573.800095: tracing_mark_write: E|598
63017  HwBinder:598_3-633   (  598) [007] .... 24573.800100: binder_transaction: transaction=1670100 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
63018  HwBinder:598_3-633   (  598) [007] d..2 24573.800105: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
63019  HwBinder:598_3-633   (  598) [007] .... 24573.800114: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
63020 id.nn.benchmark-13156 (13131) [000] dnh1 24573.800119: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
63021 id.nn.benchmark-13156 (13131) [000] d..2 24573.800125: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
63022  surfaceflinger-23896 (23896) [000] .... 24573.800130: binder_transaction_received: transaction=1670100
63023  HwBinder:598_3-633   (  598) [007] d..2 24573.800136: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
63024  surfaceflinger-23896 (23896) [000] d..2 24573.800385: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
63025 crtc_commit:111-253   (  253) [002] d..2 24573.800640: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13350 next_prio=110
63026           <...>-13154 (-----) [004] d.s2 24573.800888: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
63027 id.nn.benchmark-13159 (13131) [007] d.s1 24573.800891: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
63028 id.nn.benchmark-13159 (13131) [007] dns2 24573.800904: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
63029           <...>-13350 (-----) [002] dnH1 24573.800906: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
63030 id.nn.benchmark-13159 (13131) [007] d..2 24573.800907: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
63031     rcu_preempt-7     (    7) [007] d..2 24573.800914: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
63032           <...>-13350 (-----) [002] d..2 24573.800915: sched_switch: prev_comm=id.nn.benchmark prev_pid=13350 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
63033  kworker/u16:15-18488 (18488) [002] .... 24573.801102: clk_set_rate: l3_cluster1_vote_clk 1478400000
63034  kworker/u16:15-18488 (18488) [002] .... 24573.801106: clk_set_rate: l3_clk 1478400000
63035  kworker/u16:15-18488 (18488) [002] d..2 24573.801206: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13350 next_prio=110
63036           <...>-13350 (-----) [002] ...1 24573.801382: tracing_mark_write: E|13131
63037           <...>-13350 (-----) [002] ...1 24573.801386: tracing_mark_write: E|13131
63038           <...>-13350 (-----) [002] ...1 24573.801411: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63039           <...>-13350 (-----) [002] ...1 24573.801415: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63040           <...>-13350 (-----) [002] ...1 24573.801747: tracing_mark_write: E|13131
63041           <...>-13350 (-----) [002] ...1 24573.801751: tracing_mark_write: E|13131
63042           <...>-13350 (-----) [002] ...1 24573.801762: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63043           <...>-13350 (-----) [002] ...1 24573.801766: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63044           <...>-13350 (-----) [002] ...1 24573.802000: tracing_mark_write: E|13131
63045           <...>-13350 (-----) [002] ...1 24573.802003: tracing_mark_write: E|13131
63046           <...>-13350 (-----) [002] ...1 24573.802014: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63047           <...>-13350 (-----) [002] ...1 24573.802018: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63048           <...>-13350 (-----) [002] ...1 24573.802415: tracing_mark_write: E|13131
63049           <...>-13350 (-----) [002] ...1 24573.802418: tracing_mark_write: E|13131
63050           <...>-13350 (-----) [002] ...1 24573.802428: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63051           <...>-13350 (-----) [002] ...1 24573.802432: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63052           <...>-13350 (-----) [002] ...1 24573.802832: tracing_mark_write: E|13131
63053           <...>-13350 (-----) [002] ...1 24573.802836: tracing_mark_write: E|13131
63054           <...>-13350 (-----) [002] ...1 24573.802856: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63055           <...>-13350 (-----) [002] ...1 24573.802860: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63056           <...>-13350 (-----) [002] ...1 24573.803054: tracing_mark_write: E|13131
63057           <...>-13350 (-----) [002] ...1 24573.803058: tracing_mark_write: E|13131
63058           <...>-13350 (-----) [002] ...1 24573.803071: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63059           <...>-13350 (-----) [002] ...1 24573.803075: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63060           <...>-13350 (-----) [002] ...1 24573.803147: tracing_mark_write: E|13131
63061           <...>-13350 (-----) [002] ...1 24573.803150: tracing_mark_write: E|13131
63062           <...>-13350 (-----) [002] ...1 24573.803161: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
63063           <...>-13350 (-----) [002] ...1 24573.803166: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
63064           <...>-13350 (-----) [002] ...1 24573.803476: tracing_mark_write: E|13131
63065           <...>-13350 (-----) [002] ...1 24573.803479: tracing_mark_write: E|13131
63066           <...>-13350 (-----) [002] ...1 24573.803489: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
63067           <...>-13350 (-----) [002] ...1 24573.803493: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
63068           <...>-13350 (-----) [002] ...1 24573.803551: tracing_mark_write: E|13131
63069           <...>-13350 (-----) [002] ...1 24573.803554: tracing_mark_write: E|13131
63070           <...>-13350 (-----) [002] ...1 24573.803563: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
63071           <...>-13350 (-----) [002] ...1 24573.803566: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
63072           <...>-13350 (-----) [002] ...1 24573.803583: tracing_mark_write: E|13131
63073           <...>-13350 (-----) [002] ...1 24573.803586: tracing_mark_write: E|13131
63074           <...>-13350 (-----) [002] ...1 24573.803597: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
63075           <...>-13350 (-----) [002] ...1 24573.803600: tracing_mark_write: E|13131
63076           <...>-13350 (-----) [002] ...1 24573.803610: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
63077           <...>-13350 (-----) [002] ...1 24573.803615: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
63078 id.nn.benchmark-13158 (13131) [001] d.s2 24573.804234: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
63079 id.nn.benchmark-13159 (13131) [007] dnh1 24573.804259: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
63080 id.nn.benchmark-13159 (13131) [007] d..2 24573.804262: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
63081     rcu_preempt-7     (    7) [007] d..2 24573.804264: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=001
63082     rcu_preempt-7     (    7) [007] d..2 24573.804275: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
63083           <...>-13350 (-----) [002] dnh1 24573.804282: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
63084           <...>-13350 (-----) [002] d..2 24573.804290: sched_switch: prev_comm=id.nn.benchmark prev_pid=13350 prev_prio=110 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
63085     rcu_preempt-7     (    7) [007] d..2 24573.804297: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
63086         rcuop/6-61    (   61) [002] d.h3 24573.804298: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
63087         rcuop/6-61    (   61) [002] d..2 24573.804328: 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
63088         rcuop/2-29    (   29) [002] d..2 24573.804338: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13350 next_prio=110
63089           <...>-13350 (-----) [002] ...1 24573.804554: tracing_mark_write: E|13131
63090           <...>-13350 (-----) [002] ...1 24573.804557: tracing_mark_write: E|13131
63091           <...>-13350 (-----) [002] ...1 24573.804567: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63092           <...>-13350 (-----) [002] ...1 24573.804571: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63093           <...>-13350 (-----) [002] ...1 24573.804654: tracing_mark_write: E|13131
63094           <...>-13350 (-----) [002] ...1 24573.804657: tracing_mark_write: E|13131
63095           <...>-13350 (-----) [002] d..2 24573.804706: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
63096           <...>-13350 (-----) [002] d..3 24573.804719: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
63097           <...>-13350 (-----) [002] ...1 24573.804740: tracing_mark_write: E|13131
63098           <...>-13350 (-----) [002] d..1 24573.804745: sched_waking: comm=id.nn.benchmark pid=13349 prio=110 target_cpu=000
63099 id.nn.benchmark-13159 (13131) [007] dnh1 24573.804769: sched_wakeup: comm=id.nn.benchmark pid=13349 prio=110 target_cpu=007
63100 id.nn.benchmark-13159 (13131) [007] d..2 24573.804794: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13349 next_prio=110
63101           <...>-13350 (-----) [002] d.h3 24573.804796: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
63102           <...>-13350 (-----) [002] d.h3 24573.804804: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
63103           <...>-13349 (-----) [007] d..2 24573.804804: sched_switch: prev_comm=id.nn.benchmark prev_pid=13349 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
63104 id.nn.benchmark-13160 (13131) [005] dnh1 24573.804807: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
63105 id.nn.benchmark-13160 (13131) [005] d..2 24573.804810: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
63106           <...>-13350 (-----) [002] d.h4 24573.804812: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
63107         sugov:4-560   (  560) [005] d..2 24573.804813: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
63108           <...>-13157 (-----) [003] d..2 24573.804821: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
63109           <...>-13350 (-----) [002] ...1 24573.804829: tracing_mark_write: E|13131
63110         sugov:0-559   (  559) [003] d..2 24573.804831: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
63111           <...>-13350 (-----) [002] d..1 24573.805046: sched_waking: comm=id.nn.benchmark pid=13349 prio=110 target_cpu=007
63112 id.nn.benchmark-13159 (13131) [007] dnh1 24573.805059: sched_wakeup: comm=id.nn.benchmark pid=13349 prio=110 target_cpu=007
63113 id.nn.benchmark-13159 (13131) [007] d..2 24573.805062: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13349 next_prio=110
63114           <...>-13350 (-----) [002] d..2 24573.805113: sched_switch: prev_comm=id.nn.benchmark prev_pid=13350 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
63115           <...>-13349 (-----) [007] d..1 24573.805128: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
63116           <...>-13349 (-----) [007] d..2 24573.805143: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
63117 id.nn.benchmark-13160 (13131) [005] d..2 24573.805150: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
63118           <...>-13131 (-----) [005] d..2 24573.805156: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
63119           <...>-13349 (-----) [007] d..1 24573.805173: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
63120           <...>-13349 (-----) [007] d..2 24573.805182: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
63121 id.nn.benchmark-13160 (13131) [005] d..2 24573.805188: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
63122           <...>-13131 (-----) [005] ...1 24573.805201: tracing_mark_write: E|13131
63123           <...>-13349 (-----) [007] d..2 24573.805203: sched_switch: prev_comm=id.nn.benchmark prev_pid=13349 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
63124           <...>-13131 (-----) [005] ...1 24573.805204: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
63125           <...>-13131 (-----) [005] ...1 24573.805206: tracing_mark_write: E|13131
63126           <...>-13131 (-----) [005] ...1 24573.805208: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
63127           <...>-13131 (-----) [005] ...1 24573.805210: tracing_mark_write: E|13131
63128     logd.writer-563   (  555) [002] d..2 24573.805244: 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
63129          <idle>-0     (-----) [002] d..1 24573.805265: cpu_idle: state=0 cpu_id=2
63130           <...>-13131 (-----) [005] ...1 24573.805273: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
63131           <...>-13131 (-----) [005] d..2 24573.805290: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
63132           <...>-13131 (-----) [005] ...1 24573.805307: tracing_mark_write: E|13131
63133          <idle>-0     (-----) [002] dnh2 24573.805308: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
63134           <...>-13131 (-----) [005] ...1 24573.805309: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
63135           <...>-13131 (-----) [005] ...1 24573.805312: tracing_mark_write: E|13131
63136          <idle>-0     (-----) [002] .n.1 24573.805313: cpu_idle: state=4294967295 cpu_id=2
63137           <...>-13131 (-----) [005] ...1 24573.805314: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
63138           <...>-13131 (-----) [005] ...1 24573.805316: tracing_mark_write: E|13131
63139           <...>-13131 (-----) [005] ...1 24573.805318: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
63140          <idle>-0     (-----) [002] d..2 24573.805320: 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
63141     logd.writer-563   (  555) [002] d..2 24573.805354: 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
63142          <idle>-0     (-----) [002] d..1 24573.805361: cpu_idle: state=0 cpu_id=2
63143           <...>-13131 (-----) [005] ...1 24573.805382: tracing_mark_write: E|13131
63144           <...>-13131 (-----) [005] ...1 24573.805384: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
63145          <idle>-0     (-----) [002] .n.1 24573.805384: cpu_idle: state=4294967295 cpu_id=2
63146           <...>-13131 (-----) [005] d..2 24573.805389: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
63147          <idle>-0     (-----) [002] d..2 24573.805391: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13351 next_prio=110
63148           <...>-13351 (-----) [002] d..2 24573.805449: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
63149           <...>-13351 (-----) [002] d..3 24573.805458: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
63150           <...>-13351 (-----) [002] d..2 24573.805759: sched_switch: prev_comm=id.nn.benchmark prev_pid=13351 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
63151     logd.writer-563   (  555) [002] d..2 24573.805947: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13352 next_prio=110
63152           <...>-13352 (-----) [002] ...1 24573.805974: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
63153           <...>-13352 (-----) [002] ...1 24573.805979: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
63154           <...>-13352 (-----) [002] d..2 24573.806038: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
63155           <...>-13352 (-----) [002] d..3 24573.806046: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
63156           <...>-13352 (-----) [002] ...1 24573.806112: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63157           <...>-13352 (-----) [002] ...1 24573.806117: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63158 id.nn.benchmark-13156 (13131) [000] d.h4 24573.807043: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
63159 id.nn.benchmark-13156 (13131) [000] d.h5 24573.807066: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
63160 id.nn.benchmark-13156 (13131) [000] d.h4 24573.807069: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
63161           <...>-13352 (-----) [002] d..2 24573.807079: sched_switch: prev_comm=id.nn.benchmark prev_pid=13352 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
63162 id.nn.benchmark-13159 (13131) [007] dnh1 24573.807093: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
63163 id.nn.benchmark-13159 (13131) [007] d..2 24573.807096: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
63164  crtc_event:111-254   (  254) [002] d..2 24573.807099: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13352 next_prio=110
63165 id.nn.benchmark-13156 (13131) [000] d.h2 24573.807125: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
63166 id.nn.benchmark-13156 (13131) [000] d.h2 24573.807132: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
63167 id.nn.benchmark-13160 (13131) [005] dnh1 24573.807136: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
63168 id.nn.benchmark-13160 (13131) [005] d..2 24573.807139: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
63169 id.nn.benchmark-13156 (13131) [000] d.h3 24573.807144: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
63170         sugov:4-560   (  560) [005] d..2 24573.807144: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
63171           <...>-13352 (-----) [002] d..2 24573.807151: sched_switch: prev_comm=id.nn.benchmark prev_pid=13352 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
63172         sugov:0-559   (  559) [002] d..2 24573.807158: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13352 next_prio=110
63173 crtc_commit:111-253   (  253) [007] d..2 24573.807189: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
63174           <...>-13154 (-----) [004] d.s2 24573.807553: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
63175 id.nn.benchmark-13159 (13131) [007] d.s2 24573.807557: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
63176           <...>-13352 (-----) [002] dnH1 24573.807570: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
63177           <...>-13352 (-----) [002] dnH1 24573.807574: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
63178           <...>-13352 (-----) [002] d..2 24573.807580: sched_switch: prev_comm=id.nn.benchmark prev_pid=13352 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
63179  crtc_event:111-254   (  254) [002] d..2 24573.807592: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
63180  kworker/u16:15-18488 (18488) [002] .... 24573.807682: clk_set_rate: l3_cluster0_vote_clk 1401600000
63181  kworker/u16:15-18488 (18488) [002] d..2 24573.807695: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13352 next_prio=110
63182           <...>-13352 (-----) [002] ...1 24573.808312: tracing_mark_write: E|13131
63183           <...>-13352 (-----) [002] ...1 24573.808317: tracing_mark_write: E|13131
63184           <...>-13352 (-----) [002] ...1 24573.808327: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63185           <...>-13352 (-----) [002] ...1 24573.808332: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63186           <...>-13352 (-----) [002] ...1 24573.809030: tracing_mark_write: E|13131
63187           <...>-13352 (-----) [002] ...1 24573.809034: tracing_mark_write: E|13131
63188           <...>-13352 (-----) [002] ...1 24573.809048: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63189           <...>-13352 (-----) [002] ...1 24573.809052: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63190 id.nn.benchmark-13156 (13131) [000] d.h4 24573.809382: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
63191 id.nn.benchmark-13159 (13131) [007] dnh1 24573.809395: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
63192 id.nn.benchmark-13159 (13131) [007] d..2 24573.809398: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
63193 crtc_commit:111-253   (  253) [007] d..2 24573.809426: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
63194           <...>-13352 (-----) [002] ...1 24573.809458: tracing_mark_write: E|13131
63195           <...>-13352 (-----) [002] ...1 24573.809462: tracing_mark_write: E|13131
63196           <...>-13352 (-----) [002] ...1 24573.809472: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63197           <...>-13352 (-----) [002] ...1 24573.809476: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63198 id.nn.benchmark-13156 (13131) [000] d.h4 24573.809679: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
63199 id.nn.benchmark-13156 (13131) [000] d.h5 24573.809688: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
63200           <...>-13352 (-----) [002] d..2 24573.809699: sched_switch: prev_comm=id.nn.benchmark prev_pid=13352 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
63201  crtc_event:111-254   (  254) [002] d..2 24573.809711: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13352 next_prio=110
63202           <...>-13352 (-----) [002] ...1 24573.809785: tracing_mark_write: E|13131
63203           <...>-13352 (-----) [002] ...1 24573.809788: tracing_mark_write: E|13131
63204           <...>-13352 (-----) [002] ...1 24573.809798: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63205           <...>-13352 (-----) [002] ...1 24573.809803: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63206           <...>-13352 (-----) [002] ...1 24573.810184: tracing_mark_write: E|13131
63207           <...>-13352 (-----) [002] ...1 24573.810188: tracing_mark_write: E|13131
63208           <...>-13352 (-----) [002] ...1 24573.810198: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63209           <...>-13352 (-----) [002] ...1 24573.810202: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63210           <...>-13352 (-----) [002] ...1 24573.810576: tracing_mark_write: E|13131
63211           <...>-13352 (-----) [002] ...1 24573.810580: tracing_mark_write: E|13131
63212           <...>-13352 (-----) [002] ...1 24573.810596: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63213           <...>-13352 (-----) [002] ...1 24573.810600: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63214           <...>-13352 (-----) [002] ...1 24573.810788: tracing_mark_write: E|13131
63215           <...>-13352 (-----) [002] ...1 24573.810792: tracing_mark_write: E|13131
63216           <...>-13352 (-----) [002] ...1 24573.810804: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63217           <...>-13352 (-----) [002] ...1 24573.810808: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63218           <...>-13352 (-----) [002] ...1 24573.810877: tracing_mark_write: E|13131
63219           <...>-13154 (-----) [004] d.s2 24573.810889: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
63220 id.nn.benchmark-13159 (13131) [007] d.s1 24573.810890: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
63221 id.nn.benchmark-13159 (13131) [007] dns2 24573.810901: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
63222 id.nn.benchmark-13159 (13131) [007] d..2 24573.810904: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
63223           <...>-13352 (-----) [002] dnh1 24573.810904: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
63224     rcu_preempt-7     (    7) [007] d..2 24573.810906: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=005
63225           <...>-13352 (-----) [002] d..2 24573.810911: sched_switch: prev_comm=id.nn.benchmark prev_pid=13352 prev_prio=110 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
63226     rcu_preempt-7     (    7) [007] d..3 24573.810915: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=005
63227     rcu_preempt-7     (    7) [007] d..2 24573.810919: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
63228 id.nn.benchmark-13160 (13131) [005] d..2 24573.810921: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
63229         rcuop/0-10    (   10) [005] d..2 24573.810924: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
63230         rcuop/0-10    (   10) [005] d..3 24573.810936: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
63231           <...>-13154 (-----) [004] d..2 24573.810942: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
63232         rcuop/1-21    (   21) [004] d..2 24573.810949: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
63233         rcuop/0-10    (   10) [005] d..2 24573.810950: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
63234  kworker/u16:15-18488 (18488) [002] d..2 24573.811166: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13352 next_prio=110
63235           <...>-13352 (-----) [002] ...1 24573.811168: tracing_mark_write: E|13131
63236           <...>-13352 (-----) [002] ...1 24573.811180: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
63237           <...>-13352 (-----) [002] ...1 24573.811184: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
63238           <...>-13352 (-----) [002] ...1 24573.811433: tracing_mark_write: E|13131
63239           <...>-13352 (-----) [002] ...1 24573.811437: tracing_mark_write: E|13131
63240           <...>-13352 (-----) [002] ...1 24573.811446: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
63241           <...>-13352 (-----) [002] ...1 24573.811450: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
63242           <...>-13157 (-----) [003] d.h1 24573.811463: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
63243           <...>-13157 (-----) [003] d.h2 24573.811479: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
63244           <...>-13352 (-----) [002] d..2 24573.811486: sched_switch: prev_comm=id.nn.benchmark prev_pid=13352 prev_prio=110 prev_state=R+ ==> next_comm=DispSync next_pid=23904 next_prio=97
63245        DispSync-23904 (23896) [002] d..1 24573.811511: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
63246        DispSync-23904 (23896) [002] d..2 24573.811525: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
63247 id.nn.benchmark-13156 (13131) [000] d..2 24573.811534: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
63248        DispSync-23904 (23896) [002] d..2 24573.811542: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13352 next_prio=110
63249           <...>-13352 (-----) [002] ...1 24573.811559: tracing_mark_write: E|13131
63250           <...>-13352 (-----) [002] ...1 24573.811563: tracing_mark_write: E|13131
63251           <...>-13352 (-----) [002] ...1 24573.811573: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
63252           <...>-13352 (-----) [002] ...1 24573.811576: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
63253  appEventThread-23905 (23896) [000] d..3 24573.811579: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
63254           <...>-13352 (-----) [002] ...1 24573.811589: tracing_mark_write: E|13131
63255           <...>-13352 (-----) [002] ...1 24573.811592: tracing_mark_write: E|13131
63256           <...>-13352 (-----) [002] ...1 24573.811601: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
63257           <...>-13352 (-----) [002] ...1 24573.811603: tracing_mark_write: E|13131
63258 id.nn.benchmark-13159 (13131) [007] dnh1 24573.811604: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
63259           <...>-13352 (-----) [002] ...1 24573.811611: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
63260           <...>-13352 (-----) [002] ...1 24573.811615: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
63261 id.nn.benchmark-13159 (13131) [007] d..2 24573.811631: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
63262  appEventThread-23905 (23896) [000] d.h3 24573.811632: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
63263  appEventThread-23905 (23896) [000] d.h3 24573.811644: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
63264<...>-24151 ( 24151) [007] dnh1 24573.811647: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
63265<...>-24151 ( 24151) [007] d..2 24573.811651: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
63266  appEventThread-23905 (23896) [000] d.h4 24573.811652: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
63267         sugov:4-560   (  560) [007] d..2 24573.811655: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
63268           <...>-13352 (-----) [002] d..2 24573.811662: sched_switch: prev_comm=id.nn.benchmark prev_pid=13352 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
63269  appEventThread-23905 (23896) [000] d..2 24573.811669: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
63270         sugov:0-559   (  559) [002] d..2 24573.811671: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13352 next_prio=110
63271<...>-24151 ( 24151) [007] .... 24573.811844: binder_transaction: transaction=1670101 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
63272<...>-24151 ( 24151) [007] d..4 24573.811850: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
63273<...>-24151 ( 24151) [007] d..5 24573.811865: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
63274<...>-24151 ( 24151) [007] d..3 24573.811900: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
63275<...>-24151 ( 24151) [007] d..4 24573.811912: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
63276<...>-24151 ( 24151) [007] d..2 24573.811993: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
63277<...>-23903 ( 23896) [007] .... 24573.811998: binder_transaction_received: transaction=1670101
63278<...>-23903 ( 23896) [007] d..1 24573.812016: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
63279           <...>-13352 (-----) [002] dnh1 24573.812030: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
63280           <...>-13352 (-----) [002] d..2 24573.812035: sched_switch: prev_comm=id.nn.benchmark prev_pid=13352 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
63281<...>-23903 ( 23896) [007] d..2 24573.812036: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
63282  appEventThread-23905 (23896) [002] d..2 24573.812060: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13352 next_prio=110
63283    RenderThread-24437 (24151) [007] d..1 24573.812093: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
63284    RenderThread-24437 (24151) [007] d..2 24573.812099: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
63285    RenderThread-24437 (24151) [007] .... 24573.812129: binder_transaction: transaction=1670102 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
63286    RenderThread-24437 (24151) [007] d..4 24573.812131: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
63287    RenderThread-24437 (24151) [007] d..5 24573.812138: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
63288    RenderThread-24437 (24151) [007] d..2 24573.812142: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
63289<...>-23903 ( 23896) [007] .... 24573.812144: binder_transaction_received: transaction=1670102
63290<...>-23903 ( 23896) [007] .... 24573.812172: binder_transaction: transaction=1670103 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
63291<...>-23903 ( 23896) [007] d..2 24573.812177: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
63292<...>-23903 ( 23896) [007] d..3 24573.812183: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
63293<...>-23903 ( 23896) [007] d..2 24573.812192: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
63294    RenderThread-24437 (24151) [007] .... 24573.812194: binder_transaction_received: transaction=1670103
63295           <...>-13352 (-----) [002] ...1 24573.812524: tracing_mark_write: E|13131
63296           <...>-13352 (-----) [002] ...1 24573.812527: tracing_mark_write: E|13131
63297           <...>-13352 (-----) [002] ...1 24573.812536: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63298           <...>-13352 (-----) [002] ...1 24573.812540: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63299    RenderThread-24437 (24151) [007] d..2 24573.812812: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
63300<...>-24151 ( 24151) [007] d..2 24573.812844: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
63301           <...>-13352 (-----) [002] ...1 24573.812873: tracing_mark_write: E|13131
63302           <...>-13352 (-----) [002] ...1 24573.812877: tracing_mark_write: E|13131
63303 id.nn.benchmark-13159 (13131) [007] d.h1 24573.812911: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
63304 id.nn.benchmark-13159 (13131) [007] d.h2 24573.812917: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
63305 id.nn.benchmark-13159 (13131) [007] dnh2 24573.812919: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
63306 id.nn.benchmark-13159 (13131) [007] d..2 24573.812923: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
63307           <...>-13352 (-----) [002] ...1 24573.812932: tracing_mark_write: E|13131
63308           <...>-13352 (-----) [002] d..1 24573.812936: sched_waking: comm=id.nn.benchmark pid=13351 prio=110 target_cpu=002
63309    RenderThread-24437 (24151) [007] d.h1 24573.812960: sched_wakeup: comm=id.nn.benchmark pid=13351 prio=110 target_cpu=007
63310           <...>-13352 (-----) [002] d.h3 24573.812985: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
63311           <...>-13352 (-----) [002] d.h3 24573.812997: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
63312 id.nn.benchmark-13160 (13131) [005] dnh1 24573.813000: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
63313           <...>-13352 (-----) [002] dnh4 24573.813003: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
63314 id.nn.benchmark-13160 (13131) [005] d..2 24573.813003: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
63315         sugov:4-560   (  560) [005] d..2 24573.813007: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
63316           <...>-13352 (-----) [002] d..2 24573.813009: sched_switch: prev_comm=id.nn.benchmark prev_pid=13352 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
63317         sugov:0-559   (  559) [002] d..2 24573.813016: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13352 next_prio=110
63318    RenderThread-24437 (24151) [007] .... 24573.813031: binder_transaction: transaction=1670104 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
63319           <...>-13352 (-----) [002] ...1 24573.813033: tracing_mark_write: E|13131
63320    RenderThread-24437 (24151) [007] d..4 24573.813035: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
63321 id.nn.benchmark-13156 (13131) [000] d.h2 24573.813039: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
63322    RenderThread-24437 (24151) [007] d..5 24573.813049: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
63323 id.nn.benchmark-13156 (13131) [000] d.h3 24573.813051: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
63324    RenderThread-24437 (24151) [007] d..2 24573.813053: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13351 next_prio=110
63325 id.nn.benchmark-13160 (13131) [005] d..2 24573.813055: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
63326           <...>-13352 (-----) [002] d..2 24573.813057: sched_switch: prev_comm=id.nn.benchmark prev_pid=13352 prev_prio=110 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
63327<...>-23903 ( 23896) [005] .... 24573.813058: binder_transaction_received: transaction=1670104
63328           <...>-13351 (-----) [007] d..2 24573.813064: sched_switch: prev_comm=id.nn.benchmark prev_pid=13351 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
63329 kgsl_worker_thr-246   (  246) [002] d..2 24573.813094: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
63330<...>-23903 ( 23896) [005] .... 24573.813122: binder_transaction: transaction=1670105 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
63331<...>-23903 ( 23896) [005] d..2 24573.813125: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
63332 id.nn.benchmark-13159 (13131) [007] dnh1 24573.813132: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
63333 id.nn.benchmark-13159 (13131) [007] d..2 24573.813136: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
63334<...>-23903 ( 23896) [005] d..3 24573.813139: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
63335 kgsl_worker_thr-246   (  246) [002] d..2 24573.813144: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13352 next_prio=110
63336<...>-23903 ( 23896) [005] d..2 24573.813149: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
63337  kworker/u16:15-18488 (18488) [007] d..2 24573.813155: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
63338    RenderThread-24437 (24151) [007] .... 24573.813157: binder_transaction_received: transaction=1670105
63339    RenderThread-24437 (24151) [007] d..2 24573.813183: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
63340           <...>-13352 (-----) [002] d..1 24573.813339: sched_waking: comm=id.nn.benchmark pid=13351 prio=110 target_cpu=007
63341 id.nn.benchmark-13159 (13131) [007] dnh1 24573.813353: sched_wakeup: comm=id.nn.benchmark pid=13351 prio=110 target_cpu=007
63342 id.nn.benchmark-13159 (13131) [007] d..2 24573.813356: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13351 next_prio=110
63343           <...>-13352 (-----) [002] d..2 24573.813383: sched_switch: prev_comm=id.nn.benchmark prev_pid=13352 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
63344           <...>-13351 (-----) [007] d..1 24573.813416: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
63345           <...>-13351 (-----) [007] d..2 24573.813425: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
63346 id.nn.benchmark-13160 (13131) [005] d..2 24573.813431: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
63347           <...>-13131 (-----) [005] d..2 24573.813438: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
63348           <...>-13351 (-----) [007] d..1 24573.813452: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
63349           <...>-13351 (-----) [007] d..2 24573.813461: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
63350 id.nn.benchmark-13160 (13131) [005] d..2 24573.813467: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
63351           <...>-13131 (-----) [005] ...1 24573.813481: tracing_mark_write: E|13131
63352           <...>-13131 (-----) [005] ...1 24573.813483: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
63353           <...>-13351 (-----) [007] d..2 24573.813484: sched_switch: prev_comm=id.nn.benchmark prev_pid=13351 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
63354           <...>-13131 (-----) [005] ...1 24573.813486: tracing_mark_write: E|13131
63355           <...>-13131 (-----) [005] ...1 24573.813487: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
63356           <...>-13131 (-----) [005] ...1 24573.813489: tracing_mark_write: E|13131
63357           <...>-13131 (-----) [005] ...1 24573.813550: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
63358           <...>-13131 (-----) [005] ...1 24573.813573: tracing_mark_write: E|13131
63359           <...>-13131 (-----) [005] ...1 24573.813576: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
63360           <...>-13131 (-----) [005] ...1 24573.813578: tracing_mark_write: E|13131
63361           <...>-13131 (-----) [005] ...1 24573.813580: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
63362           <...>-13131 (-----) [005] ...1 24573.813582: tracing_mark_write: E|13131
63363           <...>-13131 (-----) [005] ...1 24573.813583: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
63364     logd.writer-563   (  555) [002] d..2 24573.813604: 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
63365          <idle>-0     (-----) [002] d..1 24573.813625: cpu_idle: state=0 cpu_id=2
63366           <...>-13131 (-----) [005] ...1 24573.813641: tracing_mark_write: E|13131
63367           <...>-13131 (-----) [005] ...1 24573.813642: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
63368          <idle>-0     (-----) [002] .n.1 24573.813645: cpu_idle: state=4294967295 cpu_id=2
63369           <...>-13131 (-----) [005] d..2 24573.813648: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
63370          <idle>-0     (-----) [002] d..2 24573.813653: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13353 next_prio=110
63371           <...>-13353 (-----) [002] d..2 24573.813710: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
63372           <...>-13353 (-----) [002] d..3 24573.813718: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
63373           <...>-13353 (-----) [002] d..2 24573.814023: sched_switch: prev_comm=id.nn.benchmark prev_pid=13353 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
63374     logd.writer-563   (  555) [002] d..2 24573.814198: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13354 next_prio=110
63375           <...>-13154 (-----) [004] d.s2 24573.814221: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
63376           <...>-13154 (-----) [004] d.s3 24573.814233: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
63377 id.nn.benchmark-13159 (13131) [007] d..2 24573.814240: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
63378           <...>-13354 (-----) [002] ...1 24573.814246: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
63379           <...>-13354 (-----) [002] ...1 24573.814250: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
63380           <...>-13354 (-----) [002] d..2 24573.814304: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
63381           <...>-13354 (-----) [002] d..3 24573.814312: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
63382  kworker/u16:15-18488 (18488) [007] d..2 24573.814367: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
63383           <...>-13354 (-----) [002] ...1 24573.814375: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63384           <...>-13354 (-----) [002] ...1 24573.814380: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63385           <...>-13157 (-----) [003] d.s2 24573.814397: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
63386 id.nn.benchmark-13159 (13131) [007] d.h1 24573.814422: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
63387 id.nn.benchmark-13159 (13131) [007] dnh1 24573.814423: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
63388 id.nn.benchmark-13159 (13131) [007] d..2 24573.814426: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
63389  kworker/u16:15-18488 (18488) [007] d..2 24573.814431: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
63390           <...>-13354 (-----) [002] d.h1 24573.815467: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
63391           <...>-13354 (-----) [002] dnh2 24573.815477: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
63392           <...>-13354 (-----) [002] d..2 24573.815485: sched_switch: prev_comm=id.nn.benchmark prev_pid=13354 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
63393        DispSync-23904 (23896) [002] d..1 24573.815499: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
63394        DispSync-23904 (23896) [002] d..2 24573.815510: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
63395 id.nn.benchmark-13158 (13131) [001] d..2 24573.815519: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
63396        DispSync-23904 (23896) [002] d..2 24573.815522: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13354 next_prio=110
63397   sfEventThread-23906 (23896) [001] d..3 24573.815544: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
63398   sfEventThread-23906 (23896) [001] d..4 24573.815562: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
63399           <...>-13354 (-----) [002] d..2 24573.815571: sched_switch: prev_comm=id.nn.benchmark prev_pid=13354 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
63400   sfEventThread-23906 (23896) [001] d..2 24573.815576: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
63401  surfaceflinger-23896 (23896) [002] d..1 24573.815818: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
63402  surfaceflinger-23896 (23896) [002] d..2 24573.815830: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
63403 id.nn.benchmark-13158 (13131) [001] d..2 24573.815838: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
63404   sfEventThread-23906 (23896) [001] d..2 24573.815851: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
63405  surfaceflinger-23896 (23896) [002] ...1 24573.815958: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
63406  surfaceflinger-23896 (23896) [002] ...1 24573.815961: tracing_mark_write: E|23896
63407  surfaceflinger-23896 (23896) [002] .... 24573.816006: binder_transaction: transaction=1670106 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
63408  surfaceflinger-23896 (23896) [002] ...2 24573.816025: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
63409  surfaceflinger-23896 (23896) [002] d..4 24573.816032: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
63410 id.nn.benchmark-13159 (13131) [007] dnh1 24573.816048: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
63411 id.nn.benchmark-13159 (13131) [007] d..2 24573.816051: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
63412  surfaceflinger-23896 (23896) [002] d..2 24573.816055: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13354 next_prio=110
63413  HwBinder:598_3-633   (  598) [007] .... 24573.816056: binder_transaction_received: transaction=1670106
63414  HwBinder:598_3-633   (  598) [007] ...1 24573.816082: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
63415  HwBinder:598_3-633   (  598) [007] ...1 24573.816135: tracing_mark_write: B|598|HWCSession::PresentDisplay::
63416  HwBinder:598_3-633   (  598) [007] ...1 24573.816198: tracing_mark_write: B|598|HWDeviceDRM::Commit::
63417  HwBinder:598_3-633   (  598) [007] ...1 24573.816202: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
63418  HwBinder:598_3-633   (  598) [007] d..2 24573.816400: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
63419  HwBinder:598_3-633   (  598) [007] d..3 24573.816412: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
63420 id.nn.benchmark-13160 (13131) [005] d..2 24573.816418: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
63421  HwBinder:598_3-633   (  598) [007] ...1 24573.816440: tracing_mark_write: E|598
63422  HwBinder:598_3-633   (  598) [007] ...1 24573.816442: tracing_mark_write: E|598
63423  HwBinder:598_3-633   (  598) [007] ...1 24573.816463: tracing_mark_write: E|598
63424  HwBinder:598_3-633   (  598) [007] ...1 24573.816484: tracing_mark_write: E|598
63425  HwBinder:598_3-633   (  598) [007] .... 24573.816489: binder_transaction: transaction=1670107 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
63426  HwBinder:598_3-633   (  598) [007] d..2 24573.816495: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
63427  HwBinder:598_3-633   (  598) [007] .... 24573.816501: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
63428           <...>-13354 (-----) [002] dnh1 24573.816507: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
63429           <...>-13354 (-----) [002] d..2 24573.816515: sched_switch: prev_comm=id.nn.benchmark prev_pid=13354 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
63430  surfaceflinger-23896 (23896) [002] .... 24573.816519: binder_transaction_received: transaction=1670107
63431  HwBinder:598_3-633   (  598) [007] d..2 24573.816524: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
63432  surfaceflinger-23896 (23896) [002] d..2 24573.816766: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13354 next_prio=110
63433 crtc_commit:111-253   (  253) [005] d..2 24573.816980: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
63434           <...>-13354 (-----) [002] ...1 24573.817193: tracing_mark_write: E|13131
63435           <...>-13354 (-----) [002] ...1 24573.817198: tracing_mark_write: E|13131
63436           <...>-13354 (-----) [002] ...1 24573.817211: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63437           <...>-13354 (-----) [002] ...1 24573.817216: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63438           <...>-13154 (-----) [004] d.s2 24573.817556: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
63439 id.nn.benchmark-13159 (13131) [007] d.s1 24573.817560: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
63440           <...>-13354 (-----) [002] dnH1 24573.817596: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
63441 id.nn.benchmark-13155 (13131) [006] d.h2 24573.817598: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
63442           <...>-13354 (-----) [002] dnH1 24573.817599: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
63443 id.nn.benchmark-13155 (13131) [006] d.h3 24573.817617: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
63444 id.nn.benchmark-13155 (13131) [006] d.h2 24573.817618: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
63445           <...>-13354 (-----) [002] d..2 24573.817622: sched_switch: prev_comm=id.nn.benchmark prev_pid=13354 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
63446 id.nn.benchmark-13160 (13131) [005] d..2 24573.817623: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
63447         sugov:4-560   (  560) [005] d..2 24573.817628: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
63448     rcu_preempt-7     (    7) [002] d..2 24573.817628: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
63449     rcu_preempt-7     (    7) [002] d..3 24573.817640: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
63450     rcu_preempt-7     (    7) [002] dnh2 24573.817646: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
63451     rcu_preempt-7     (    7) [002] d..2 24573.817651: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
63452         sugov:0-559   (  559) [002] d..2 24573.817659: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
63453  kworker/u16:15-18488 (18488) [002] d..2 24573.817759: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
63454         rcuop/2-29    (   29) [002] d..2 24573.817771: 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
63455     rcu_preempt-7     (    7) [002] d..2 24573.817772: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
63456     rcu_preempt-7     (    7) [002] d..3 24573.817783: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
63457     rcu_preempt-7     (    7) [002] d..2 24573.817791: 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
63458         rcuop/6-61    (   61) [002] d..2 24573.817812: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13354 next_prio=110
63459           <...>-13354 (-----) [002] ...1 24573.818194: tracing_mark_write: E|13131
63460           <...>-13354 (-----) [002] ...1 24573.818198: tracing_mark_write: E|13131
63461           <...>-13354 (-----) [002] ...1 24573.818214: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63462           <...>-13354 (-----) [002] ...1 24573.818219: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63463           <...>-13354 (-----) [002] ...1 24573.818555: tracing_mark_write: E|13131
63464           <...>-13354 (-----) [002] ...1 24573.818559: tracing_mark_write: E|13131
63465           <...>-13354 (-----) [002] ...1 24573.818570: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63466           <...>-13354 (-----) [002] ...1 24573.818574: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63467           <...>-13354 (-----) [002] ...1 24573.818812: tracing_mark_write: E|13131
63468           <...>-13354 (-----) [002] ...1 24573.818816: tracing_mark_write: E|13131
63469           <...>-13354 (-----) [002] ...1 24573.818828: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63470           <...>-13354 (-----) [002] ...1 24573.818832: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63471           <...>-13354 (-----) [002] ...1 24573.819239: tracing_mark_write: E|13131
63472           <...>-13354 (-----) [002] ...1 24573.819242: tracing_mark_write: E|13131
63473           <...>-13354 (-----) [002] ...1 24573.819252: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63474           <...>-13354 (-----) [002] ...1 24573.819256: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63475           <...>-13354 (-----) [002] ...1 24573.819651: tracing_mark_write: E|13131
63476           <...>-13354 (-----) [002] ...1 24573.819655: tracing_mark_write: E|13131
63477           <...>-13354 (-----) [002] ...1 24573.819672: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63478           <...>-13354 (-----) [002] ...1 24573.819676: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63479           <...>-13354 (-----) [002] ...1 24573.819869: tracing_mark_write: E|13131
63480           <...>-13354 (-----) [002] ...1 24573.819873: tracing_mark_write: E|13131
63481           <...>-13354 (-----) [002] ...1 24573.819885: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63482           <...>-13354 (-----) [002] ...1 24573.819889: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63483           <...>-13354 (-----) [002] ...1 24573.819962: tracing_mark_write: E|13131
63484           <...>-13354 (-----) [002] ...1 24573.819965: tracing_mark_write: E|13131
63485           <...>-13354 (-----) [002] ...1 24573.819976: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
63486           <...>-13354 (-----) [002] ...1 24573.819981: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
63487           <...>-13354 (-----) [002] ...1 24573.820285: tracing_mark_write: E|13131
63488           <...>-13354 (-----) [002] ...1 24573.820288: tracing_mark_write: E|13131
63489           <...>-13354 (-----) [002] ...1 24573.820297: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
63490           <...>-13354 (-----) [002] ...1 24573.820301: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
63491           <...>-13354 (-----) [002] ...1 24573.820353: tracing_mark_write: E|13131
63492           <...>-13354 (-----) [002] ...1 24573.820356: tracing_mark_write: E|13131
63493           <...>-13354 (-----) [002] ...1 24573.820365: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
63494           <...>-13354 (-----) [002] ...1 24573.820368: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
63495           <...>-13354 (-----) [002] ...1 24573.820385: tracing_mark_write: E|13131
63496           <...>-13354 (-----) [002] ...1 24573.820387: tracing_mark_write: E|13131
63497           <...>-13354 (-----) [002] ...1 24573.820397: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
63498           <...>-13354 (-----) [002] ...1 24573.820400: tracing_mark_write: E|13131
63499           <...>-13354 (-----) [002] ...1 24573.820409: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
63500           <...>-13354 (-----) [002] ...1 24573.820414: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
63501           <...>-13154 (-----) [004] d.s2 24573.820888: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
63502           <...>-13354 (-----) [002] dnh1 24573.820905: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
63503           <...>-13354 (-----) [002] d..2 24573.820911: sched_switch: prev_comm=id.nn.benchmark prev_pid=13354 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
63504  kworker/u16:15-18488 (18488) [002] d..2 24573.821297: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13354 next_prio=110
63505           <...>-13157 (-----) [003] d.s2 24573.821330: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
63506           <...>-13157 (-----) [003] d.s3 24573.821339: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
63507           <...>-13157 (-----) [003] d.s3 24573.821346: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
63508           <...>-13354 (-----) [002] d..2 24573.821354: sched_switch: prev_comm=id.nn.benchmark prev_pid=13354 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
63509  kworker/u16:15-18488 (18488) [002] d..2 24573.821364: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13354 next_prio=110
63510           <...>-13354 (-----) [002] ...1 24573.821708: tracing_mark_write: E|13131
63511           <...>-13354 (-----) [002] ...1 24573.821711: tracing_mark_write: E|13131
63512           <...>-13354 (-----) [002] ...1 24573.821721: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63513           <...>-13354 (-----) [002] ...1 24573.821724: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63514           <...>-13354 (-----) [002] ...1 24573.821808: tracing_mark_write: E|13131
63515           <...>-13354 (-----) [002] ...1 24573.821811: tracing_mark_write: E|13131
63516           <...>-13354 (-----) [002] ...1 24573.821872: tracing_mark_write: E|13131
63517           <...>-13354 (-----) [002] d..1 24573.821877: sched_waking: comm=id.nn.benchmark pid=13353 prio=110 target_cpu=002
63518           <...>-13354 (-----) [002] dn.2 24573.821890: sched_wakeup: comm=id.nn.benchmark pid=13353 prio=110 target_cpu=002
63519           <...>-13354 (-----) [002] d..2 24573.821895: sched_switch: prev_comm=id.nn.benchmark prev_pid=13354 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13353 next_prio=110
63520           <...>-13353 (-----) [002] d..2 24573.821909: sched_switch: prev_comm=id.nn.benchmark prev_pid=13353 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13354 next_prio=110
63521           <...>-13354 (-----) [002] ...1 24573.821923: tracing_mark_write: E|13131
63522           <...>-13354 (-----) [002] d..1 24573.822127: sched_waking: comm=id.nn.benchmark pid=13353 prio=110 target_cpu=002
63523           <...>-13354 (-----) [002] dn.2 24573.822135: sched_wakeup: comm=id.nn.benchmark pid=13353 prio=110 target_cpu=002
63524           <...>-13354 (-----) [002] d..2 24573.822140: sched_switch: prev_comm=id.nn.benchmark prev_pid=13354 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13353 next_prio=110
63525           <...>-13353 (-----) [002] d..1 24573.822235: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
63526           <...>-13353 (-----) [002] dn.2 24573.822256: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
63527           <...>-13353 (-----) [002] dnh3 24573.822287: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
63528           <...>-13353 (-----) [002] dnh3 24573.822295: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
63529 id.nn.benchmark-13160 (13131) [005] dnh1 24573.822298: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
63530           <...>-13353 (-----) [002] dnh4 24573.822301: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
63531 id.nn.benchmark-13160 (13131) [005] d..2 24573.822301: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
63532         sugov:4-560   (  560) [005] d..2 24573.822304: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
63533           <...>-13353 (-----) [002] d..2 24573.822306: sched_switch: prev_comm=id.nn.benchmark prev_pid=13353 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
63534         sugov:0-559   (  559) [002] d..2 24573.822314: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
63535           <...>-13131 (-----) [002] d..2 24573.822325: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13353 next_prio=110
63536           <...>-13353 (-----) [002] d..1 24573.822381: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
63537           <...>-13353 (-----) [002] dn.2 24573.822390: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
63538           <...>-13353 (-----) [002] d..2 24573.822395: sched_switch: prev_comm=id.nn.benchmark prev_pid=13353 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
63539           <...>-13131 (-----) [002] ...1 24573.822411: tracing_mark_write: E|13131
63540           <...>-13131 (-----) [002] ...1 24573.822417: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
63541           <...>-13131 (-----) [002] ...1 24573.822422: tracing_mark_write: E|13131
63542           <...>-13131 (-----) [002] ...1 24573.822427: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
63543           <...>-13131 (-----) [002] ...1 24573.822431: tracing_mark_write: E|13131
63544           <...>-13131 (-----) [002] ...1 24573.822739: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
63545           <...>-13131 (-----) [002] ...1 24573.822775: tracing_mark_write: E|13131
63546           <...>-13131 (-----) [002] ...1 24573.822780: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
63547           <...>-13131 (-----) [002] ...1 24573.822784: tracing_mark_write: E|13131
63548           <...>-13131 (-----) [002] ...1 24573.822789: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
63549           <...>-13131 (-----) [002] ...1 24573.822793: tracing_mark_write: E|13131
63550           <...>-13131 (-----) [002] ...1 24573.822797: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
63551           <...>-13131 (-----) [002] ...1 24573.822905: tracing_mark_write: E|13131
63552           <...>-13131 (-----) [002] ...1 24573.822909: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
63553           <...>-13131 (-----) [002] d..2 24573.822919: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13353 next_prio=110
63554           <...>-13353 (-----) [002] d..2 24573.822975: sched_switch: prev_comm=id.nn.benchmark prev_pid=13353 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13354 next_prio=110
63555           <...>-13354 (-----) [002] d..2 24573.822996: sched_switch: prev_comm=id.nn.benchmark prev_pid=13354 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
63556     logd.writer-563   (  555) [002] d..2 24573.823229: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13355 next_prio=110
63557           <...>-13355 (-----) [002] d..2 24573.823281: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
63558           <...>-13355 (-----) [002] d..3 24573.823290: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
63559 id.nn.benchmark-13156 (13131) [000] d.h4 24573.823513: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
63560 id.nn.benchmark-13156 (13131) [000] d.h4 24573.823536: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
63561 id.nn.benchmark-13159 (13131) [007] dnh1 24573.823537: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
63562 id.nn.benchmark-13159 (13131) [007] d..2 24573.823540: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
63563 id.nn.benchmark-13160 (13131) [005] dnh1 24573.823547: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
63564 id.nn.benchmark-13160 (13131) [005] d..2 24573.823549: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
63565  crtc_event:111-254   (  254) [007] d..2 24573.823551: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
63566 id.nn.benchmark-13156 (13131) [000] d.h2 24573.823576: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
63567           <...>-13355 (-----) [002] d..2 24573.823579: sched_switch: prev_comm=id.nn.benchmark prev_pid=13355 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13356 next_prio=110
63568 id.nn.benchmark-13156 (13131) [000] d.h2 24573.823587: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
63569           <...>-13154 (-----) [004] dnh1 24573.823590: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
63570           <...>-13154 (-----) [004] d..2 24573.823593: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
63571 id.nn.benchmark-13156 (13131) [000] d.h3 24573.823596: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
63572         sugov:4-560   (  560) [004] d..2 24573.823597: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
63573           <...>-13356 (-----) [002] d..2 24573.823601: sched_switch: prev_comm=id.nn.benchmark prev_pid=13356 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
63574         sugov:0-559   (  559) [002] d..2 24573.823613: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13356 next_prio=110
63575           <...>-13356 (-----) [002] ...1 24573.823623: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
63576           <...>-13356 (-----) [002] ...1 24573.823627: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
63577 crtc_commit:111-253   (  253) [005] d..2 24573.823641: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
63578           <...>-13356 (-----) [002] ...1 24573.823746: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63579           <...>-13356 (-----) [002] ...1 24573.823751: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63580 id.nn.benchmark-13160 (13131) [005] d.s2 24573.824220: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
63581           <...>-13154 (-----) [004] d.s2 24573.824222: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
63582 id.nn.benchmark-13160 (13131) [005] d.s3 24573.824228: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
63583           <...>-13356 (-----) [002] d.s1 24573.824231: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
63584 id.nn.benchmark-13159 (13131) [007] d..2 24573.824234: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
63585           <...>-13154 (-----) [004] d.s3 24573.824238: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
63586  crtc_event:111-254   (  254) [007] d..2 24573.824241: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
63587           <...>-13154 (-----) [004] d.H3 24573.824258: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
63588 id.nn.benchmark-13155 (13131) [006] d..2 24573.824259: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
63589           <...>-13154 (-----) [004] dnH4 24573.824262: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
63590           <...>-13154 (-----) [004] dnH3 24573.824263: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
63591 id.nn.benchmark-13159 (13131) [007] dnh1 24573.824271: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
63592           <...>-13154 (-----) [004] d..2 24573.824271: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
63593 id.nn.benchmark-13159 (13131) [007] d..2 24573.824273: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
63594         sugov:4-560   (  560) [004] d..2 24573.824296: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
63595  kworker/u16:15-18488 (18488) [006] d..2 24573.824297: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
63596           <...>-13356 (-----) [002] dnH2 24573.824299: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
63597     rcu_preempt-7     (    7) [007] d..2 24573.824302: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
63598           <...>-13356 (-----) [002] d..2 24573.824308: sched_switch: prev_comm=id.nn.benchmark prev_pid=13356 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
63599     rcu_preempt-7     (    7) [007] d..3 24573.824319: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=006
63600         sugov:0-559   (  559) [002] d..2 24573.824321: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13356 next_prio=110
63601     rcu_preempt-7     (    7) [007] d..2 24573.824335: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=005
63602 id.nn.benchmark-13155 (13131) [006] d..2 24573.824336: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
63603     rcu_preempt-7     (    7) [007] d..3 24573.824342: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=005
63604     rcu_preempt-7     (    7) [007] d..2 24573.824347: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
63605 id.nn.benchmark-13160 (13131) [005] d..2 24573.824349: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
63606         rcuop/0-10    (   10) [005] d..2 24573.824351: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
63607         rcuop/2-29    (   29) [006] d..2 24573.824361: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
63608         rcuop/0-10    (   10) [005] d..3 24573.824364: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
63609         rcuop/0-10    (   10) [005] d..2 24573.824369: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
63610           <...>-13154 (-----) [004] d..2 24573.824370: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
63611         rcuop/1-21    (   21) [004] d..2 24573.824376: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
63612 id.nn.benchmark-13156 (13131) [000] d.h4 24573.825847: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
63613 id.nn.benchmark-13160 (13131) [005] dnh1 24573.825859: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
63614 id.nn.benchmark-13160 (13131) [005] d..2 24573.825861: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
63615 crtc_commit:111-253   (  253) [005] d..2 24573.825887: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
63616           <...>-13356 (-----) [002] ...1 24573.825912: tracing_mark_write: E|13131
63617           <...>-13356 (-----) [002] ...1 24573.825916: tracing_mark_write: E|13131
63618           <...>-13356 (-----) [002] ...1 24573.825927: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63619           <...>-13356 (-----) [002] ...1 24573.825931: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63620 id.nn.benchmark-13156 (13131) [000] d.h4 24573.826151: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
63621 id.nn.benchmark-13159 (13131) [007] dnh1 24573.826162: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
63622 id.nn.benchmark-13159 (13131) [007] d..2 24573.826165: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
63623  crtc_event:111-254   (  254) [007] d..2 24573.826169: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
63624           <...>-13356 (-----) [002] ...1 24573.826625: tracing_mark_write: E|13131
63625           <...>-13356 (-----) [002] ...1 24573.826629: tracing_mark_write: E|13131
63626           <...>-13356 (-----) [002] ...1 24573.826642: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63627           <...>-13356 (-----) [002] ...1 24573.826646: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63628           <...>-13356 (-----) [002] ...1 24573.826975: tracing_mark_write: E|13131
63629           <...>-13356 (-----) [002] ...1 24573.826979: tracing_mark_write: E|13131
63630           <...>-13356 (-----) [002] ...1 24573.826989: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63631           <...>-13356 (-----) [002] ...1 24573.826993: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63632           <...>-13356 (-----) [002] ...1 24573.827220: tracing_mark_write: E|13131
63633           <...>-13356 (-----) [002] ...1 24573.827224: tracing_mark_write: E|13131
63634           <...>-13356 (-----) [002] ...1 24573.827234: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63635           <...>-13356 (-----) [002] ...1 24573.827238: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63636           <...>-13154 (-----) [004] d.s2 24573.827557: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
63637 id.nn.benchmark-13156 (13131) [000] d.h1 24573.827562: sched_waking: comm=oid.setupwizard pid=24795 prio=120 target_cpu=000
63638           <...>-13154 (-----) [004] d.s3 24573.827567: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
63639 id.nn.benchmark-13159 (13131) [007] d..2 24573.827573: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
63640 id.nn.benchmark-13155 (13131) [006] dnh1 24573.827586: sched_wakeup: comm=oid.setupwizard pid=24795 prio=120 target_cpu=006
63641 id.nn.benchmark-13155 (13131) [006] d..2 24573.827589: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=oid.setupwizard next_pid=24795 next_prio=120
63642 id.nn.benchmark-13156 (13131) [000] d.H2 24573.827617: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
63643 id.nn.benchmark-13156 (13131) [000] d.H2 24573.827626: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
63644           <...>-13154 (-----) [004] dnh1 24573.827627: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
63645           <...>-13154 (-----) [004] d..2 24573.827630: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
63646         sugov:4-560   (  560) [004] d..2 24573.827634: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
63647 id.nn.benchmark-13156 (13131) [000] d.H3 24573.827634: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
63648           <...>-13356 (-----) [002] d..2 24573.827643: sched_switch: prev_comm=id.nn.benchmark prev_pid=13356 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
63649         sugov:0-559   (  559) [002] d..2 24573.827652: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13356 next_prio=110
63650 oid.setupwizard-24795 (24795) [006] d..2 24573.827661: sched_switch: prev_comm=oid.setupwizard prev_pid=24795 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
63651  kworker/u16:15-18488 (18488) [007] d..2 24573.827714: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
63652           <...>-13356 (-----) [002] ...1 24573.827715: tracing_mark_write: E|13131
63653           <...>-13356 (-----) [002] ...1 24573.827719: tracing_mark_write: E|13131
63654           <...>-13356 (-----) [002] ...1 24573.827729: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63655           <...>-13356 (-----) [002] ...1 24573.827733: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63656           <...>-13356 (-----) [002] d.h1 24573.827931: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
63657           <...>-13154 (-----) [004] dnh1 24573.827954: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=004
63658           <...>-13154 (-----) [004] d..2 24573.827974: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
63659        DispSync-23904 (23896) [004] d..1 24573.827987: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
63660           <...>-13356 (-----) [002] dnh1 24573.828000: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
63661        DispSync-23904 (23896) [004] d..2 24573.828002: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
63662           <...>-13356 (-----) [002] d..2 24573.828006: sched_switch: prev_comm=id.nn.benchmark prev_pid=13356 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
63663  appEventThread-23905 (23896) [002] d..3 24573.828053: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
63664 id.nn.benchmark-13155 (13131) [006] dnh1 24573.828075: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
63665 id.nn.benchmark-13155 (13131) [006] d..2 24573.828078: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
63666  appEventThread-23905 (23896) [002] d..2 24573.828086: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13356 next_prio=110
63667           <...>-13356 (-----) [002] ...1 24573.828252: tracing_mark_write: E|13131
63668<...>-24151 ( 24151) [006] .... 24573.828256: binder_transaction: transaction=1670108 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
63669           <...>-13356 (-----) [002] ...1 24573.828256: tracing_mark_write: E|13131
63670<...>-24151 ( 24151) [006] d..4 24573.828261: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
63671           <...>-13356 (-----) [002] ...1 24573.828272: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63672<...>-24151 ( 24151) [006] d..5 24573.828276: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
63673           <...>-13356 (-----) [002] ...1 24573.828276: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63674           <...>-13154 (-----) [004] d..2 24573.828282: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
63675<...>-23903 ( 23896) [004] .... 24573.828286: binder_transaction_received: transaction=1670108
63676<...>-24151 ( 24151) [006] d..3 24573.828296: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
63677<...>-23903 ( 23896) [004] d..1 24573.828303: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
63678<...>-24151 ( 24151) [006] d..4 24573.828304: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
63679 id.nn.benchmark-13159 (13131) [007] d..2 24573.828310: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
63680           <...>-13356 (-----) [002] dnh1 24573.828315: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
63681<...>-23903 ( 23896) [004] d..2 24573.828319: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
63682           <...>-13356 (-----) [002] d..2 24573.828322: sched_switch: prev_comm=id.nn.benchmark prev_pid=13356 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
63683    RenderThread-24437 (24151) [007] d..2 24573.828329: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
63684  appEventThread-23905 (23896) [002] d..2 24573.828343: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13356 next_prio=110
63685<...>-24151 ( 24151) [006] d..3 24573.828365: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
63686<...>-24151 ( 24151) [006] d..4 24573.828373: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
63687<...>-24151 ( 24151) [006] d..2 24573.828379: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
63688 id.nn.benchmark-13159 (13131) [007] d..2 24573.828380: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
63689    RenderThread-24437 (24151) [007] d..1 24573.828430: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
63690    RenderThread-24437 (24151) [007] d..2 24573.828438: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
63691 id.nn.benchmark-13155 (13131) [006] d..2 24573.828445: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
63692<...>-24151 ( 24151) [006] d..2 24573.828464: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
63693    RenderThread-24437 (24151) [007] .... 24573.828471: binder_transaction: transaction=1670109 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
63694    RenderThread-24437 (24151) [007] d..4 24573.828474: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
63695    RenderThread-24437 (24151) [007] d..5 24573.828481: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
63696    RenderThread-24437 (24151) [007] d..2 24573.828486: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
63697           <...>-13154 (-----) [004] d..2 24573.828488: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
63698<...>-23903 ( 23896) [004] .... 24573.828490: binder_transaction_received: transaction=1670109
63699           <...>-13356 (-----) [002] ...1 24573.828505: tracing_mark_write: E|13131
63700           <...>-13356 (-----) [002] ...1 24573.828509: tracing_mark_write: E|13131
63701<...>-23903 ( 23896) [004] .... 24573.828517: binder_transaction: transaction=1670110 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
63702           <...>-13356 (-----) [002] ...1 24573.828521: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63703<...>-23903 ( 23896) [004] d..2 24573.828522: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
63704           <...>-13356 (-----) [002] ...1 24573.828525: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63705<...>-23903 ( 23896) [004] d..3 24573.828534: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
63706 id.nn.benchmark-13155 (13131) [006] d..2 24573.828540: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
63707    RenderThread-24437 (24151) [006] .... 24573.828543: binder_transaction_received: transaction=1670110
63708<...>-23903 ( 23896) [004] d..2 24573.828544: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
63709    RenderThread-24437 (24151) [006] d..2 24573.829160: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
63710           <...>-13356 (-----) [002] ...1 24573.829184: tracing_mark_write: E|13131
63711           <...>-13356 (-----) [002] ...1 24573.829187: tracing_mark_write: E|13131
63712           <...>-13356 (-----) [002] ...1 24573.829197: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
63713           <...>-13356 (-----) [002] ...1 24573.829201: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
63714 id.nn.benchmark-13155 (13131) [006] d.h1 24573.829260: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
63715 id.nn.benchmark-13155 (13131) [006] d.h2 24573.829265: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
63716 id.nn.benchmark-13155 (13131) [006] dnh2 24573.829267: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
63717 id.nn.benchmark-13155 (13131) [006] d..2 24573.829271: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
63718    RenderThread-24437 (24151) [006] .... 24573.829348: binder_transaction: transaction=1670111 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
63719    RenderThread-24437 (24151) [006] d..4 24573.829352: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
63720    RenderThread-24437 (24151) [006] d..5 24573.829361: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
63721    RenderThread-24437 (24151) [006] d..2 24573.829365: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
63722           <...>-13154 (-----) [004] d..2 24573.829367: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
63723<...>-23903 ( 23896) [004] .... 24573.829368: binder_transaction_received: transaction=1670111
63724 id.nn.benchmark-13156 (13131) [000] d.h2 24573.829385: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
63725 id.nn.benchmark-13160 (13131) [005] dnh1 24573.829408: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
63726 id.nn.benchmark-13160 (13131) [005] d..2 24573.829411: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
63727<...>-23903 ( 23896) [004] .... 24573.829425: binder_transaction: transaction=1670112 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
63728<...>-23903 ( 23896) [004] d..2 24573.829427: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
63729 kgsl_worker_thr-246   (  246) [005] d..2 24573.829435: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
63730 id.nn.benchmark-13156 (13131) [000] d.h2 24573.829436: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
63731<...>-23903 ( 23896) [004] d..3 24573.829440: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
63732 kgsl_worker_thr-246   (  246) [005] d..3 24573.829441: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
63733 id.nn.benchmark-13156 (13131) [000] d.h2 24573.829443: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
63734 id.nn.benchmark-13155 (13131) [006] d..2 24573.829446: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
63735<...>-23903 ( 23896) [004] dnh1 24573.829447: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
63736    RenderThread-24437 (24151) [006] .... 24573.829448: binder_transaction_received: transaction=1670112
63737 id.nn.benchmark-13159 (13131) [007] d..2 24573.829448: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
63738 kgsl_worker_thr-246   (  246) [005] d..2 24573.829449: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
63739<...>-23903 ( 23896) [004] d..2 24573.829451: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
63740 id.nn.benchmark-13156 (13131) [000] d.h3 24573.829452: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
63741         sugov:4-560   (  560) [004] d..2 24573.829455: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
63742           <...>-13356 (-----) [002] d..2 24573.829459: sched_switch: prev_comm=id.nn.benchmark prev_pid=13356 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
63743<...>-23903 ( 23896) [004] d..2 24573.829459: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
63744    RenderThread-24437 (24151) [006] d..2 24573.829470: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
63745         sugov:0-559   (  559) [002] d..2 24573.829472: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13356 next_prio=110
63746           <...>-13356 (-----) [002] ...1 24573.829489: tracing_mark_write: E|13131
63747           <...>-13356 (-----) [002] ...1 24573.829493: tracing_mark_write: E|13131
63748           <...>-13356 (-----) [002] ...1 24573.829502: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
63749           <...>-13356 (-----) [002] ...1 24573.829506: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
63750           <...>-13356 (-----) [002] ...1 24573.829552: tracing_mark_write: E|13131
63751           <...>-13356 (-----) [002] ...1 24573.829555: tracing_mark_write: E|13131
63752           <...>-13356 (-----) [002] ...1 24573.829564: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
63753  kworker/u16:15-18488 (18488) [007] d..2 24573.829567: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
63754           <...>-13356 (-----) [002] ...1 24573.829568: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
63755           <...>-13356 (-----) [002] ...1 24573.829582: tracing_mark_write: E|13131
63756           <...>-13356 (-----) [002] ...1 24573.829585: tracing_mark_write: E|13131
63757           <...>-13356 (-----) [002] ...1 24573.829595: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
63758           <...>-13356 (-----) [002] ...1 24573.829598: tracing_mark_write: E|13131
63759           <...>-13356 (-----) [002] ...1 24573.829606: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
63760           <...>-13356 (-----) [002] ...1 24573.829611: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
63761           <...>-13356 (-----) [002] ...1 24573.830465: tracing_mark_write: E|13131
63762           <...>-13356 (-----) [002] ...1 24573.830468: tracing_mark_write: E|13131
63763           <...>-13356 (-----) [002] ...1 24573.830476: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63764           <...>-13356 (-----) [002] ...1 24573.830480: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63765           <...>-13356 (-----) [002] ...1 24573.830563: tracing_mark_write: E|13131
63766           <...>-13356 (-----) [002] ...1 24573.830566: tracing_mark_write: E|13131
63767           <...>-13356 (-----) [002] ...1 24573.830623: tracing_mark_write: E|13131
63768           <...>-13356 (-----) [002] d..1 24573.830629: sched_waking: comm=id.nn.benchmark pid=13355 prio=110 target_cpu=002
63769           <...>-13356 (-----) [002] dn.2 24573.830642: sched_wakeup: comm=id.nn.benchmark pid=13355 prio=110 target_cpu=002
63770           <...>-13356 (-----) [002] d..2 24573.830648: sched_switch: prev_comm=id.nn.benchmark prev_pid=13356 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13355 next_prio=110
63771           <...>-13355 (-----) [002] d..2 24573.830662: sched_switch: prev_comm=id.nn.benchmark prev_pid=13355 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13356 next_prio=110
63772           <...>-13356 (-----) [002] ...1 24573.830677: tracing_mark_write: E|13131
63773 id.nn.benchmark-13159 (13131) [007] d.s1 24573.830890: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
63774           <...>-13154 (-----) [004] d.s2 24573.830894: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
63775           <...>-13154 (-----) [004] d.s2 24573.830907: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
63776 id.nn.benchmark-13159 (13131) [007] d.H3 24573.830924: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
63777           <...>-13356 (-----) [002] dnh2 24573.830925: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
63778           <...>-13154 (-----) [004] dns3 24573.830926: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
63779           <...>-13356 (-----) [002] dnh2 24573.830928: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
63780 id.nn.benchmark-13159 (13131) [007] d.H4 24573.830930: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
63781 id.nn.benchmark-13159 (13131) [007] d.H3 24573.830931: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
63782           <...>-13154 (-----) [004] d..2 24573.830933: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
63783           <...>-13356 (-----) [002] d..2 24573.830934: sched_switch: prev_comm=id.nn.benchmark prev_pid=13356 prev_prio=110 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
63784         sugov:4-560   (  560) [004] d..2 24573.830936: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=kworker/4:0 next_pid=24269 next_prio=120
63785  kworker/u16:15-18488 (18488) [002] dnh3 24573.830946: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
63786  kworker/u16:15-18488 (18488) [002] d..2 24573.830951: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
63787         sugov:0-559   (  559) [002] d..2 24573.830958: 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
63788     kworker/4:0-24269 (24269) [004] d..2 24573.830963: sched_switch: prev_comm=kworker/4:0 prev_pid=24269 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
63789     rcu_preempt-7     (    7) [002] d..2 24573.830963: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
63790     rcu_preempt-7     (    7) [002] d..3 24573.830973: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
63791     rcu_preempt-7     (    7) [002] d..2 24573.830982: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
63792  kworker/u16:15-18488 (18488) [002] d..2 24573.831172: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=rcuop/6 next_pid=61 next_prio=120
63793         rcuop/6-61    (   61) [002] d..2 24573.831176: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=000
63794         rcuop/6-61    (   61) [002] d..3 24573.831193: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=002
63795         rcuop/6-61    (   61) [002] d..2 24573.831199: 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
63796           <...>-13157 (-----) [003] d.s2 24573.831207: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
63797           <...>-13157 (-----) [003] d.s3 24573.831216: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
63798           <...>-13157 (-----) [003] d.s3 24573.831220: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
63799         rcuop/7-69    (   69) [002] d..2 24573.831230: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
63800  kworker/u16:15-18488 (18488) [002] d..2 24573.831424: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13356 next_prio=110
63801           <...>-13356 (-----) [002] d..1 24573.831427: sched_waking: comm=id.nn.benchmark pid=13355 prio=110 target_cpu=002
63802           <...>-13356 (-----) [002] dn.2 24573.831435: sched_wakeup: comm=id.nn.benchmark pid=13355 prio=110 target_cpu=002
63803           <...>-13356 (-----) [002] d..2 24573.831438: sched_switch: prev_comm=id.nn.benchmark prev_pid=13356 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13355 next_prio=110
63804           <...>-13355 (-----) [002] d..1 24573.831544: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
63805           <...>-13154 (-----) [004] dnh1 24573.831567: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
63806           <...>-13154 (-----) [004] d..2 24573.831593: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
63807           <...>-13355 (-----) [002] d.h3 24573.831594: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
63808           <...>-13131 (-----) [004] d..2 24573.831600: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
63809           <...>-13355 (-----) [002] d.h3 24573.831602: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
63810           <...>-13154 (-----) [004] dnh1 24573.831605: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
63811           <...>-13154 (-----) [004] d..2 24573.831607: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
63812           <...>-13355 (-----) [002] dnh4 24573.831608: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
63813         sugov:4-560   (  560) [004] d..2 24573.831610: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
63814           <...>-13355 (-----) [002] d..2 24573.831615: sched_switch: prev_comm=id.nn.benchmark prev_pid=13355 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
63815         sugov:0-559   (  559) [002] d..2 24573.831621: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13355 next_prio=110
63816           <...>-13355 (-----) [002] d..1 24573.831678: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
63817           <...>-13355 (-----) [002] dn.2 24573.831694: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
63818           <...>-13355 (-----) [002] d..2 24573.831718: sched_switch: prev_comm=id.nn.benchmark prev_pid=13355 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
63819           <...>-13131 (-----) [002] ...1 24573.831737: tracing_mark_write: E|13131
63820           <...>-13131 (-----) [002] ...1 24573.831743: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
63821           <...>-13131 (-----) [002] ...1 24573.831748: tracing_mark_write: E|13131
63822           <...>-13131 (-----) [002] ...1 24573.831752: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
63823           <...>-13131 (-----) [002] ...1 24573.831757: tracing_mark_write: E|13131
63824           <...>-13154 (-----) [004] d.h1 24573.831923: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=004
63825           <...>-13131 (-----) [002] dnh1 24573.831951: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
63826           <...>-13131 (-----) [002] d..2 24573.831957: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
63827        DispSync-23904 (23896) [002] d..1 24573.831970: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
63828        DispSync-23904 (23896) [002] d..2 24573.831981: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
63829 id.nn.benchmark-13158 (13131) [001] d..2 24573.831990: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
63830        DispSync-23904 (23896) [002] d..2 24573.831994: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
63831   sfEventThread-23906 (23896) [001] d..3 24573.832016: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
63832   sfEventThread-23906 (23896) [001] d..4 24573.832030: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
63833           <...>-13131 (-----) [002] d..2 24573.832037: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
63834   sfEventThread-23906 (23896) [001] d..2 24573.832043: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
63835  surfaceflinger-23896 (23896) [002] d..1 24573.832281: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
63836  surfaceflinger-23896 (23896) [002] d..2 24573.832292: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
63837 id.nn.benchmark-13158 (13131) [001] d..2 24573.832300: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
63838   sfEventThread-23906 (23896) [001] d..2 24573.832314: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
63839  surfaceflinger-23896 (23896) [002] ...1 24573.832416: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
63840  surfaceflinger-23896 (23896) [002] ...1 24573.832420: tracing_mark_write: E|23896
63841  surfaceflinger-23896 (23896) [002] .... 24573.832461: binder_transaction: transaction=1670113 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
63842  surfaceflinger-23896 (23896) [002] ...2 24573.832480: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
63843  surfaceflinger-23896 (23896) [002] d..4 24573.832486: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
63844 id.nn.benchmark-13159 (13131) [007] dnh1 24573.832501: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
63845 id.nn.benchmark-13159 (13131) [007] d..2 24573.832504: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
63846  surfaceflinger-23896 (23896) [002] d..2 24573.832507: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
63847  HwBinder:598_3-633   (  598) [007] .... 24573.832508: binder_transaction_received: transaction=1670113
63848  HwBinder:598_3-633   (  598) [007] ...1 24573.832531: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
63849  HwBinder:598_3-633   (  598) [007] ...1 24573.832577: tracing_mark_write: B|598|HWCSession::PresentDisplay::
63850           <...>-13131 (-----) [002] ...1 24573.832609: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
63851  HwBinder:598_3-633   (  598) [007] ...1 24573.832636: tracing_mark_write: B|598|HWDeviceDRM::Commit::
63852  HwBinder:598_3-633   (  598) [007] ...1 24573.832641: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
63853           <...>-13131 (-----) [002] ...1 24573.832650: tracing_mark_write: E|13131
63854           <...>-13131 (-----) [002] ...1 24573.832655: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
63855           <...>-13131 (-----) [002] ...1 24573.832660: tracing_mark_write: E|13131
63856           <...>-13131 (-----) [002] ...1 24573.832663: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
63857           <...>-13131 (-----) [002] ...1 24573.832668: tracing_mark_write: E|13131
63858           <...>-13131 (-----) [002] ...1 24573.832671: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
63859           <...>-13131 (-----) [002] ...1 24573.832775: tracing_mark_write: E|13131
63860           <...>-13131 (-----) [002] ...1 24573.832779: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
63861           <...>-13131 (-----) [002] d..2 24573.832788: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13355 next_prio=110
63862           <...>-13355 (-----) [002] d..2 24573.832821: sched_switch: prev_comm=id.nn.benchmark prev_pid=13355 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13356 next_prio=110
63863  HwBinder:598_3-633   (  598) [007] d..2 24573.832831: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
63864  HwBinder:598_3-633   (  598) [007] d..3 24573.832839: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
63865           <...>-13356 (-----) [002] d..2 24573.832843: sched_switch: prev_comm=id.nn.benchmark prev_pid=13356 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
63866 id.nn.benchmark-13160 (13131) [005] d..2 24573.832845: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
63867  HwBinder:598_3-633   (  598) [007] ...1 24573.832867: tracing_mark_write: E|598
63868  HwBinder:598_3-633   (  598) [007] ...1 24573.832868: tracing_mark_write: E|598
63869  HwBinder:598_3-633   (  598) [007] ...1 24573.832890: tracing_mark_write: E|598
63870  HwBinder:598_3-633   (  598) [007] ...1 24573.832908: tracing_mark_write: E|598
63871  HwBinder:598_3-633   (  598) [007] .... 24573.832913: binder_transaction: transaction=1670114 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
63872  HwBinder:598_3-633   (  598) [007] d..2 24573.832918: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
63873  HwBinder:598_3-633   (  598) [007] .... 24573.832925: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
63874     logd.writer-563   (  555) [002] dnh1 24573.832931: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
63875     logd.writer-563   (  555) [002] d..2 24573.832939: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
63876  surfaceflinger-23896 (23896) [002] .... 24573.832944: binder_transaction_received: transaction=1670114
63877  HwBinder:598_3-633   (  598) [007] d..2 24573.832946: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
63878  surfaceflinger-23896 (23896) [002] d..2 24573.833188: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13357 next_prio=110
63879 crtc_commit:111-253   (  253) [005] d..2 24573.833399: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
63880           <...>-13357 (-----) [002] d..2 24573.833530: sched_switch: prev_comm=id.nn.benchmark prev_pid=13357 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
63881     logd.writer-563   (  555) [002] d..2 24573.834020: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13358 next_prio=110
63882           <...>-13358 (-----) [002] ...1 24573.834047: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
63883           <...>-13358 (-----) [002] ...1 24573.834051: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
63884           <...>-13358 (-----) [002] d..2 24573.834109: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
63885           <...>-13358 (-----) [002] d..3 24573.834117: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
63886           <...>-13358 (-----) [002] ...1 24573.834182: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
63887           <...>-13358 (-----) [002] ...1 24573.834187: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
63888 id.nn.benchmark-13155 (13131) [006] d..3 24573.834983: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
63889 id.nn.benchmark-13155 (13131) [006] d..2 24573.834992: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
63890 id.nn.benchmark-13156 (13131) [000] dnh1 24573.834995: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
63891 id.nn.benchmark-13156 (13131) [000] d..2 24573.835000: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
63892          <idle>-0     (-----) [006] d..1 24573.835008: cpu_idle: state=0 cpu_id=6
63893          <idle>-0     (-----) [006] .n.1 24573.835031: cpu_idle: state=4294967295 cpu_id=6
63894          <idle>-0     (-----) [006] d..2 24573.835052: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
63895     migration/0-13    (   13) [000] d.h3 24573.835052: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
63896     migration/0-13    (   13) [000] d.h3 24573.835064: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
63897 id.nn.benchmark-13156 (13131) [006] dnh1 24573.835068: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
63898 id.nn.benchmark-13156 (13131) [006] d..2 24573.835071: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
63899     migration/0-13    (   13) [000] d.h4 24573.835074: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
63900         sugov:4-560   (  560) [006] d..2 24573.835075: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
63901     migration/0-13    (   13) [000] d..2 24573.835082: 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
63902         sugov:0-559   (  559) [000] d..2 24573.835105: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
63903           <...>-13154 (-----) [004] d..3 24573.835122: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
63904           <...>-13154 (-----) [004] d..2 24573.835129: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
63905 id.nn.benchmark-13158 (13131) [001] dnh1 24573.835132: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
63906          <idle>-0     (-----) [004] d..1 24573.835137: cpu_idle: state=0 cpu_id=4
63907 id.nn.benchmark-13158 (13131) [001] d..2 24573.835137: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
63908          <idle>-0     (-----) [004] .n.1 24573.835161: cpu_idle: state=4294967295 cpu_id=4
63909     logd.writer-563   (  555) [000] d..2 24573.835164: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=005
63910          <idle>-0     (-----) [004] d..2 24573.835178: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
63911     migration/1-17    (   17) [001] d..2 24573.835190: 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
63912          <idle>-0     (-----) [001] d..1 24573.835204: cpu_idle: state=0 cpu_id=1
63913 id.nn.benchmark-13160 (13131) [005] dnh1 24573.835211: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=005
63914 id.nn.benchmark-13160 (13131) [005] d..2 24573.835213: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
63915         rcuop/0-10    (   10) [005] d..2 24573.835218: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
63916     logd.writer-563   (  555) [000] d..2 24573.835272: 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
63917          <idle>-0     (-----) [000] d..1 24573.835287: cpu_idle: state=0 cpu_id=0
63918 id.nn.benchmark-13159 (13131) [007] d..3 24573.835498: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
63919 id.nn.benchmark-13159 (13131) [007] d..2 24573.835506: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
63920           <...>-13157 (-----) [003] dnh1 24573.835509: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
63921           <...>-13157 (-----) [003] d..2 24573.835514: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
63922          <idle>-0     (-----) [007] d..1 24573.835517: cpu_idle: state=0 cpu_id=7
63923          <idle>-0     (-----) [007] .n.1 24573.835538: cpu_idle: state=4294967295 cpu_id=7
63924          <idle>-0     (-----) [007] d..2 24573.835560: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
63925<...>-33 ( 33) [003] d.h3 24573.835561: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
63926 id.nn.benchmark-13160 (13131) [005] d..2 24573.835564: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
63927<...>-33 ( 33) [003] d.h3 24573.835573: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
63928          <idle>-0     (-----) [005] d..1 24573.835574: cpu_idle: state=0 cpu_id=5
63929          <idle>-0     (-----) [005] dnh2 24573.835580: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
63930<...>-33 ( 33) [003] d.h4 24573.835581: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
63931          <idle>-0     (-----) [005] .n.1 24573.835582: cpu_idle: state=4294967295 cpu_id=5
63932          <idle>-0     (-----) [005] d..2 24573.835585: 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
63933          <idle>-0     (-----) [000] .n.1 24573.835587: cpu_idle: state=4294967295 cpu_id=0
63934         sugov:4-560   (  560) [005] d..2 24573.835590: 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
63935          <idle>-0     (-----) [005] d..1 24573.835592: cpu_idle: state=0 cpu_id=5
63936          <idle>-0     (-----) [000] d..2 24573.835592: 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
63937<...>-33 ( 33) [003] d..2 24573.835596: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
63938         sugov:0-559   (  559) [000] d..2 24573.835605: 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
63939          <idle>-0     (-----) [003] d..1 24573.835609: cpu_idle: state=0 cpu_id=3
63940          <idle>-0     (-----) [000] d..1 24573.835610: cpu_idle: state=0 cpu_id=0
63941          <idle>-0     (-----) [005] ...1 24573.835781: cpu_idle: state=4294967295 cpu_id=5
63942          <idle>-0     (-----) [005] d..1 24573.835783: cpu_idle: state=0 cpu_id=5
63943           <...>-13358 (-----) [002] d..1 24573.835849: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
63944           <...>-13358 (-----) [002] d..1 24573.835867: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
63945          <idle>-0     (-----) [005] dnh2 24573.835869: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
63946          <idle>-0     (-----) [005] .n.1 24573.835871: cpu_idle: state=4294967295 cpu_id=5
63947          <idle>-0     (-----) [005] d..2 24573.835874: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
63948 id.nn.benchmark-13156 (13131) [006] d.h1 24573.835879: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
63949           <...>-13358 (-----) [002] d..1 24573.835881: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
63950           <...>-13358 (-----) [002] d..1 24573.835890: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=005
63951           <...>-13157 (-----) [007] d.h1 24573.835892: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
63952           <...>-13154 (-----) [005] d.h1 24573.835901: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=005
63953          <idle>-0     (-----) [000] ...1 24573.836727: cpu_idle: state=4294967295 cpu_id=0
63954          <idle>-0     (-----) [000] d..1 24573.836730: cpu_idle: state=0 cpu_id=0
63955          <idle>-0     (-----) [001] ...1 24573.836811: cpu_idle: state=4294967295 cpu_id=1
63956          <idle>-0     (-----) [001] d..1 24573.836814: cpu_idle: state=0 cpu_id=1
63957          <idle>-0     (-----) [003] ...1 24573.837199: cpu_idle: state=4294967295 cpu_id=3
63958          <idle>-0     (-----) [003] d..1 24573.837202: cpu_idle: state=0 cpu_id=3
63959           <...>-13154 (-----) [005] d.s2 24573.837558: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
63960           <...>-13358 (-----) [002] d.s1 24573.837580: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
63961 id.nn.benchmark-13156 (13131) [006] d.H2 24573.837585: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
63962           <...>-13358 (-----) [002] dns2 24573.837591: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
63963 id.nn.benchmark-13156 (13131) [006] d.H3 24573.837594: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
63964 id.nn.benchmark-13156 (13131) [006] d.H2 24573.837595: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
63965           <...>-13358 (-----) [002] dnH2 24573.837597: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
63966 id.nn.benchmark-13158 (13131) [004] d..2 24573.837600: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
63967           <...>-13358 (-----) [002] d..2 24573.837605: sched_switch: prev_comm=id.nn.benchmark prev_pid=13358 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
63968         sugov:4-560   (  560) [004] d..2 24573.837605: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
63969          <idle>-0     (-----) [000] dnH2 24573.837614: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
63970     rcu_preempt-7     (    7) [002] d..2 24573.837617: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
63971          <idle>-0     (-----) [000] .n.1 24573.837643: cpu_idle: state=4294967295 cpu_id=0
63972  kworker/u16:15-18488 (18488) [002] d..2 24573.837649: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13358 next_prio=110
63973          <idle>-0     (-----) [000] d..2 24573.837650: 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
63974         sugov:0-559   (  559) [000] d..2 24573.837657: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
63975 id.nn.benchmark-13159 (13131) [000] d.h4 24573.839986: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
63976 id.nn.benchmark-13159 (13131) [000] d.h5 24573.840007: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
63977 id.nn.benchmark-13159 (13131) [000] d.h4 24573.840011: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
63978          <idle>-0     (-----) [003] .n.1 24573.840012: cpu_idle: state=4294967295 cpu_id=3
63979          <idle>-0     (-----) [003] d..2 24573.840020: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
63980 id.nn.benchmark-13159 (13131) [000] d.h5 24573.840025: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
63981          <idle>-0     (-----) [001] .n.1 24573.840029: cpu_idle: state=4294967295 cpu_id=1
63982          <idle>-0     (-----) [001] d..2 24573.840036: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
63983 id.nn.benchmark-13159 (13131) [000] d.h2 24573.840061: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
63984  crtc_event:111-254   (  254) [003] d..2 24573.840077: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
63985 id.nn.benchmark-13159 (13131) [000] d.h2 24573.840079: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
63986 id.nn.benchmark-13156 (13131) [006] dnh1 24573.840101: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
63987 id.nn.benchmark-13156 (13131) [006] d..2 24573.840104: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
63988         sugov:4-560   (  560) [006] d..2 24573.840108: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
63989 id.nn.benchmark-13159 (13131) [000] d.h3 24573.840108: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
63990           <...>-13358 (-----) [002] d..2 24573.840116: sched_switch: prev_comm=id.nn.benchmark prev_pid=13358 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
63991         sugov:0-559   (  559) [002] d..2 24573.840123: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13358 next_prio=110
63992 crtc_commit:111-253   (  253) [001] d..2 24573.840152: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
63993          <idle>-0     (-----) [001] d..1 24573.840156: cpu_idle: state=0 cpu_id=1
63994           <...>-13157 (-----) [007] d..2 24573.840419: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
63995 id.nn.benchmark-13158 (13131) [004] d..3 24573.840420: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
63996 id.nn.benchmark-13158 (13131) [004] d..2 24573.840427: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
63997 id.nn.benchmark-13159 (13131) [000] dnh1 24573.840430: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
63998          <idle>-0     (-----) [004] d..1 24573.840430: cpu_idle: state=0 cpu_id=4
63999 id.nn.benchmark-13159 (13131) [000] d..2 24573.840436: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
64000           <...>-13154 (-----) [005] d..2 24573.840449: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
64001          <idle>-0     (-----) [005] d..1 24573.840453: cpu_idle: state=0 cpu_id=5
64002          <idle>-0     (-----) [004] .n.1 24573.840456: cpu_idle: state=4294967295 cpu_id=4
64003          <idle>-0     (-----) [004] d..2 24573.840472: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
64004     migration/0-13    (   13) [000] d..2 24573.840481: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
64005          <idle>-0     (-----) [000] d..1 24573.840490: cpu_idle: state=0 cpu_id=0
64006 id.nn.benchmark-13156 (13131) [006] d..3 24573.840491: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
64007 id.nn.benchmark-13156 (13131) [006] d..2 24573.840497: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
64008 id.nn.benchmark-13155 (13131) [003] dnh1 24573.840501: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
64009          <idle>-0     (-----) [006] d..1 24573.840502: cpu_idle: state=0 cpu_id=6
64010 id.nn.benchmark-13155 (13131) [003] d..2 24573.840508: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
64011          <idle>-0     (-----) [006] .n.1 24573.840530: cpu_idle: state=4294967295 cpu_id=6
64012           <...>-13358 (-----) [002] ...1 24573.840537: tracing_mark_write: E|13131
64013           <...>-13358 (-----) [002] ...1 24573.840541: tracing_mark_write: E|13131
64014          <idle>-0     (-----) [006] d..2 24573.840546: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
64015           <...>-13358 (-----) [002] ...1 24573.840555: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64016<...>-33 ( 33) [003] d..2 24573.840555: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
64017           <...>-13358 (-----) [002] ...1 24573.840559: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64018          <idle>-0     (-----) [003] d..1 24573.840563: cpu_idle: state=0 cpu_id=3
64019          <idle>-0     (-----) [005] ...1 24573.840643: cpu_idle: state=4294967295 cpu_id=5
64020          <idle>-0     (-----) [005] d..1 24573.840644: cpu_idle: state=0 cpu_id=5
64021 id.nn.benchmark-13160 (13131) [007] d.s2 24573.840887: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
64022          <idle>-0     (-----) [001] d.s3 24573.840894: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
64023           <...>-13358 (-----) [002] dnh1 24573.840903: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
64024          <idle>-0     (-----) [001] d.s4 24573.840904: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
64025           <...>-13358 (-----) [002] d..2 24573.840908: sched_switch: prev_comm=id.nn.benchmark prev_pid=13358 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
64026          <idle>-0     (-----) [003] .n.1 24573.840909: cpu_idle: state=4294967295 cpu_id=3
64027          <idle>-0     (-----) [001] ...1 24573.840912: cpu_idle: state=4294967295 cpu_id=1
64028          <idle>-0     (-----) [003] d..2 24573.840915: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
64029          <idle>-0     (-----) [001] d..1 24573.840916: cpu_idle: state=0 cpu_id=1
64030  crtc_event:111-254   (  254) [003] d..2 24573.840935: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
64031          <idle>-0     (-----) [003] d..1 24573.840940: cpu_idle: state=0 cpu_id=3
64032  kworker/u16:15-18488 (18488) [002] d..2 24573.841069: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13358 next_prio=110
64033           <...>-13358 (-----) [002] d..1 24573.841226: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
64034           <...>-13358 (-----) [002] d..1 24573.841239: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
64035          <idle>-0     (-----) [005] dnh2 24573.841240: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
64036          <idle>-0     (-----) [005] .n.1 24573.841242: cpu_idle: state=4294967295 cpu_id=5
64037          <idle>-0     (-----) [005] d..2 24573.841245: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
64038           <...>-13358 (-----) [002] d..1 24573.841248: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=007
64039 id.nn.benchmark-13155 (13131) [006] d.h1 24573.841250: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
64040           <...>-13358 (-----) [002] d..1 24573.841256: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
64041 id.nn.benchmark-13160 (13131) [007] d.h1 24573.841259: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=007
64042 id.nn.benchmark-13159 (13131) [004] d.h1 24573.841267: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
64043          <idle>-0     (-----) [000] d.h5 24573.842321: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
64044          <idle>-0     (-----) [000] d.h6 24573.842331: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
64045          <idle>-0     (-----) [001] .n.1 24573.842336: cpu_idle: state=4294967295 cpu_id=1
64046          <idle>-0     (-----) [000] ...1 24573.842340: cpu_idle: state=4294967295 cpu_id=0
64047          <idle>-0     (-----) [001] d..2 24573.842342: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
64048          <idle>-0     (-----) [000] d..1 24573.842343: cpu_idle: state=0 cpu_id=0
64049 crtc_commit:111-253   (  253) [001] d..2 24573.842400: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
64050           <...>-13157 (-----) [001] d.h4 24573.842428: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
64051           <...>-13157 (-----) [001] d.h4 24573.842441: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
64052           <...>-13154 (-----) [005] dnh1 24573.842444: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
64053           <...>-13154 (-----) [005] d..2 24573.842447: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
64054         sugov:4-560   (  560) [005] d..2 24573.842450: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
64055           <...>-13157 (-----) [001] d.h5 24573.842453: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
64056          <idle>-0     (-----) [000] .n.1 24573.842457: cpu_idle: state=4294967295 cpu_id=0
64057          <idle>-0     (-----) [000] d..2 24573.842463: 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
64058         sugov:0-559   (  559) [000] d..2 24573.842489: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
64059 id.nn.benchmark-13156 (13131) [000] d.h4 24573.842625: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
64060 id.nn.benchmark-13156 (13131) [000] d.h5 24573.842634: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
64061          <idle>-0     (-----) [003] .n.1 24573.842639: cpu_idle: state=4294967295 cpu_id=3
64062          <idle>-0     (-----) [003] d..2 24573.842643: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
64063  crtc_event:111-254   (  254) [003] d..2 24573.842671: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
64064           <...>-13358 (-----) [002] ...1 24573.842924: tracing_mark_write: E|13131
64065           <...>-13358 (-----) [002] ...1 24573.842927: tracing_mark_write: E|13131
64066           <...>-13358 (-----) [002] ...1 24573.842946: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64067           <...>-13358 (-----) [002] ...1 24573.842950: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64068           <...>-13358 (-----) [002] ...1 24573.843284: tracing_mark_write: E|13131
64069           <...>-13358 (-----) [002] ...1 24573.843288: tracing_mark_write: E|13131
64070           <...>-13358 (-----) [002] ...1 24573.843299: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64071           <...>-13358 (-----) [002] ...1 24573.843303: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64072           <...>-13358 (-----) [002] ...1 24573.843543: tracing_mark_write: E|13131
64073           <...>-13358 (-----) [002] ...1 24573.843546: tracing_mark_write: E|13131
64074           <...>-13358 (-----) [002] ...1 24573.843556: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64075           <...>-13358 (-----) [002] ...1 24573.843561: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64076           <...>-13358 (-----) [002] ...1 24573.843964: tracing_mark_write: E|13131
64077           <...>-13358 (-----) [002] ...1 24573.843968: tracing_mark_write: E|13131
64078           <...>-13358 (-----) [002] ...1 24573.843977: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64079           <...>-13358 (-----) [002] ...1 24573.843981: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64080           <...>-13358 (-----) [002] d.s1 24573.844231: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
64081           <...>-13358 (-----) [002] dns2 24573.844241: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
64082           <...>-13358 (-----) [002] d..2 24573.844248: sched_switch: prev_comm=id.nn.benchmark prev_pid=13358 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
64083     rcu_preempt-7     (    7) [002] d..2 24573.844253: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=006
64084 id.nn.benchmark-13155 (13131) [006] dnh1 24573.844281: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=006
64085 id.nn.benchmark-13155 (13131) [006] d..2 24573.844284: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
64086     rcu_preempt-7     (    7) [002] d..2 24573.844287: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13358 next_prio=110
64087         rcuop/2-29    (   29) [006] d..2 24573.844303: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
64088           <...>-13358 (-----) [002] d.h1 24573.844402: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
64089           <...>-13358 (-----) [002] dnh2 24573.844410: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
64090           <...>-13358 (-----) [002] d..2 24573.844418: sched_switch: prev_comm=id.nn.benchmark prev_pid=13358 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
64091        DispSync-23904 (23896) [002] d..1 24573.844435: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
64092        DispSync-23904 (23896) [002] d..2 24573.844452: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
64093 id.nn.benchmark-13156 (13131) [000] d..2 24573.844461: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
64094        DispSync-23904 (23896) [002] d..2 24573.844467: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13358 next_prio=110
64095  appEventThread-23905 (23896) [000] d..3 24573.844505: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
64096           <...>-13358 (-----) [002] ...1 24573.844526: tracing_mark_write: E|13131
64097           <...>-13358 (-----) [002] ...1 24573.844530: tracing_mark_write: E|13131
64098 id.nn.benchmark-13155 (13131) [006] dnh1 24573.844534: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
64099 id.nn.benchmark-13155 (13131) [006] d..2 24573.844537: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
64100  appEventThread-23905 (23896) [000] d..2 24573.844545: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
64101           <...>-13358 (-----) [002] ...1 24573.844547: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64102           <...>-13358 (-----) [002] ...1 24573.844551: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64103<...>-24151 ( 24151) [006] .... 24573.844726: binder_transaction: transaction=1670115 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
64104<...>-24151 ( 24151) [006] d..4 24573.844731: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
64105<...>-24151 ( 24151) [006] d..5 24573.844747: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
64106 id.nn.benchmark-13159 (13131) [004] d..2 24573.844753: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
64107<...>-23903 ( 23896) [004] .... 24573.844756: binder_transaction_received: transaction=1670115
64108<...>-24151 ( 24151) [006] d..3 24573.844768: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
64109<...>-23903 ( 23896) [004] d..1 24573.844770: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
64110<...>-24151 ( 24151) [006] d.h3 24573.844801: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
64111           <...>-13358 (-----) [002] dnh1 24573.844802: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
64112<...>-23903 ( 23896) [004] d..2 24573.844802: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
64113           <...>-13358 (-----) [002] dnh1 24573.844806: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
64114<...>-24151 ( 24151) [006] d.h4 24573.844808: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
64115<...>-24151 ( 24151) [006] d.h3 24573.844808: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
64116           <...>-13358 (-----) [002] d..2 24573.844813: sched_switch: prev_comm=id.nn.benchmark prev_pid=13358 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
64117           <...>-13154 (-----) [005] d..2 24573.844814: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
64118         sugov:4-560   (  560) [005] d..2 24573.844817: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
64119 id.nn.benchmark-13156 (13131) [000] dnh1 24573.844819: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
64120 id.nn.benchmark-13156 (13131) [000] d..2 24573.844826: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
64121         sugov:0-559   (  559) [000] d..2 24573.844833: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
64122  appEventThread-23905 (23896) [002] d..2 24573.844836: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
64123    RenderThread-24437 (24151) [002] d..2 24573.844869: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13358 next_prio=110
64124<...>-24151 ( 24151) [006] d..3 24573.844873: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
64125<...>-24151 ( 24151) [006] d..2 24573.844885: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
64126           <...>-13358 (-----) [002] dnh1 24573.844886: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
64127           <...>-13358 (-----) [002] d..2 24573.844891: sched_switch: prev_comm=id.nn.benchmark prev_pid=13358 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
64128    RenderThread-24437 (24151) [002] d..1 24573.844986: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
64129 id.nn.benchmark-13155 (13131) [006] dnh1 24573.845013: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
64130 id.nn.benchmark-13155 (13131) [006] d..2 24573.845016: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
64131<...>-24151 ( 24151) [006] d..2 24573.845038: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
64132    RenderThread-24437 (24151) [002] .... 24573.845055: binder_transaction: transaction=1670116 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
64133    RenderThread-24437 (24151) [002] d..4 24573.845059: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
64134 id.nn.benchmark-13159 (13131) [004] dnh1 24573.845083: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
64135 id.nn.benchmark-13159 (13131) [004] d..2 24573.845086: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
64136    RenderThread-24437 (24151) [002] d..2 24573.845087: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13358 next_prio=110
64137<...>-23903 ( 23896) [004] .... 24573.845087: binder_transaction_received: transaction=1670116
64138           <...>-13358 (-----) [002] ...1 24573.845099: tracing_mark_write: E|13131
64139           <...>-13358 (-----) [002] ...1 24573.845103: tracing_mark_write: E|13131
64140<...>-23903 ( 23896) [004] .... 24573.845111: binder_transaction: transaction=1670117 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
64141<...>-23903 ( 23896) [004] d..2 24573.845115: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
64142           <...>-13358 (-----) [002] ...1 24573.845117: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64143           <...>-13358 (-----) [002] ...1 24573.845121: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64144           <...>-13358 (-----) [002] dnh1 24573.845129: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
64145<...>-23903 ( 23896) [004] d..2 24573.845130: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
64146           <...>-13358 (-----) [002] d..2 24573.845135: sched_switch: prev_comm=id.nn.benchmark prev_pid=13358 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
64147    RenderThread-24437 (24151) [002] .... 24573.845139: binder_transaction_received: transaction=1670117
64148    RenderThread-24437 (24151) [002] d..2 24573.846093: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13358 next_prio=110
64149           <...>-13358 (-----) [002] ...1 24573.846176: tracing_mark_write: E|13131
64150           <...>-13358 (-----) [002] ...1 24573.846180: tracing_mark_write: E|13131
64151           <...>-13358 (-----) [002] d.h1 24573.846189: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
64152           <...>-13358 (-----) [002] d.h2 24573.846200: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
64153           <...>-13358 (-----) [002] dnh2 24573.846204: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
64154           <...>-13358 (-----) [002] d..2 24573.846212: sched_switch: prev_comm=id.nn.benchmark prev_pid=13358 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
64155 id.nn.benchmark-13156 (13131) [000] d.h2 24573.846311: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=005
64156 id.nn.benchmark-13156 (13131) [000] d.h3 24573.846331: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
64157    RenderThread-24437 (24151) [002] d..2 24573.846338: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
64158 id.nn.benchmark-13156 (13131) [000] d.h2 24573.846371: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
64159 kgsl_worker_thr-246   (  246) [002] d..2 24573.846372: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
64160 id.nn.benchmark-13156 (13131) [000] d.h2 24573.846382: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
64161 kgsl_worker_thr-246   (  246) [002] d..3 24573.846382: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
64162 id.nn.benchmark-13155 (13131) [006] dnh1 24573.846386: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
64163 id.nn.benchmark-13156 (13131) [000] dnh3 24573.846387: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
64164 id.nn.benchmark-13155 (13131) [006] d..2 24573.846389: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
64165 kgsl_worker_thr-246   (  246) [002] d..2 24573.846391: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
64166 id.nn.benchmark-13156 (13131) [000] d..2 24573.846393: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
64167         sugov:4-560   (  560) [006] d..2 24573.846393: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
64168         sugov:0-559   (  559) [000] d..2 24573.846399: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
64169  kworker/u16:15-18488 (18488) [002] d..2 24573.846419: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
64170    RenderThread-24437 (24151) [002] .... 24573.846436: binder_transaction: transaction=1670118 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
64171    RenderThread-24437 (24151) [002] d..4 24573.846442: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
64172 id.nn.benchmark-13159 (13131) [004] dnh1 24573.846468: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
64173 id.nn.benchmark-13159 (13131) [004] d..2 24573.846471: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
64174    RenderThread-24437 (24151) [002] d..2 24573.846471: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13358 next_prio=110
64175<...>-23903 ( 23896) [004] .... 24573.846472: binder_transaction_received: transaction=1670118
64176           <...>-13358 (-----) [002] ...1 24573.846487: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
64177           <...>-13358 (-----) [002] ...1 24573.846492: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
64178<...>-23903 ( 23896) [004] .... 24573.846518: binder_transaction: transaction=1670119 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
64179<...>-23903 ( 23896) [004] d..2 24573.846520: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
64180<...>-23903 ( 23896) [004] d..2 24573.846532: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
64181           <...>-13358 (-----) [002] dnh1 24573.846533: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
64182           <...>-13358 (-----) [002] d..2 24573.846540: sched_switch: prev_comm=id.nn.benchmark prev_pid=13358 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
64183    RenderThread-24437 (24151) [002] .... 24573.846544: binder_transaction_received: transaction=1670119
64184    RenderThread-24437 (24151) [002] d..2 24573.846587: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13358 next_prio=110
64185           <...>-13358 (-----) [002] ...1 24573.846868: tracing_mark_write: E|13131
64186           <...>-13358 (-----) [002] ...1 24573.846873: tracing_mark_write: E|13131
64187           <...>-13358 (-----) [002] ...1 24573.846883: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
64188           <...>-13358 (-----) [002] ...1 24573.846887: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
64189           <...>-13358 (-----) [002] ...1 24573.846939: tracing_mark_write: E|13131
64190           <...>-13358 (-----) [002] ...1 24573.846942: tracing_mark_write: E|13131
64191           <...>-13358 (-----) [002] ...1 24573.846951: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
64192           <...>-13358 (-----) [002] ...1 24573.846954: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
64193           <...>-13358 (-----) [002] ...1 24573.846973: tracing_mark_write: E|13131
64194           <...>-13358 (-----) [002] ...1 24573.846976: tracing_mark_write: E|13131
64195           <...>-13358 (-----) [002] ...1 24573.846987: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
64196           <...>-13358 (-----) [002] ...1 24573.846990: tracing_mark_write: E|13131
64197           <...>-13358 (-----) [002] ...1 24573.846999: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
64198           <...>-13358 (-----) [002] ...1 24573.847005: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
64199 id.nn.benchmark-13160 (13131) [007] d.s2 24573.847553: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
64200           <...>-13358 (-----) [002] dnH1 24573.847571: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
64201           <...>-13358 (-----) [002] d..2 24573.847579: sched_switch: prev_comm=id.nn.benchmark prev_pid=13358 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
64202  kworker/u16:15-18488 (18488) [002] d..2 24573.847669: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13358 next_prio=110
64203           <...>-13358 (-----) [002] ...1 24573.847983: tracing_mark_write: E|13131
64204           <...>-13358 (-----) [002] ...1 24573.847986: tracing_mark_write: E|13131
64205           <...>-13358 (-----) [002] ...1 24573.847996: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64206           <...>-13358 (-----) [002] ...1 24573.848001: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64207           <...>-13358 (-----) [002] ...1 24573.848084: tracing_mark_write: E|13131
64208           <...>-13358 (-----) [002] ...1 24573.848088: tracing_mark_write: E|13131
64209           <...>-13358 (-----) [002] d..2 24573.848137: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
64210           <...>-13358 (-----) [002] d..3 24573.848151: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
64211           <...>-13358 (-----) [002] ...1 24573.848172: tracing_mark_write: E|13131
64212           <...>-13358 (-----) [002] d..1 24573.848178: sched_waking: comm=id.nn.benchmark pid=13357 prio=110 target_cpu=002
64213           <...>-13358 (-----) [002] dn.2 24573.848189: sched_wakeup: comm=id.nn.benchmark pid=13357 prio=110 target_cpu=002
64214           <...>-13358 (-----) [002] d..2 24573.848194: sched_switch: prev_comm=id.nn.benchmark prev_pid=13358 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13357 next_prio=110
64215           <...>-13357 (-----) [002] d..2 24573.848208: sched_switch: prev_comm=id.nn.benchmark prev_pid=13357 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
64216     logd.writer-563   (  555) [002] d..2 24573.848264: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13358 next_prio=110
64217           <...>-13358 (-----) [002] ...1 24573.848283: tracing_mark_write: E|13131
64218           <...>-13358 (-----) [002] d.h1 24573.848412: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
64219           <...>-13358 (-----) [002] dnh2 24573.848421: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
64220           <...>-13358 (-----) [002] d..2 24573.848428: sched_switch: prev_comm=id.nn.benchmark prev_pid=13358 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
64221        DispSync-23904 (23896) [002] d..1 24573.848442: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
64222        DispSync-23904 (23896) [002] d..2 24573.848453: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
64223           <...>-13157 (-----) [001] d..2 24573.848462: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
64224        DispSync-23904 (23896) [002] d..2 24573.848465: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13358 next_prio=110
64225   sfEventThread-23906 (23896) [001] d..3 24573.848486: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
64226   sfEventThread-23906 (23896) [001] d..4 24573.848498: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
64227           <...>-13358 (-----) [002] d..2 24573.848506: sched_switch: prev_comm=id.nn.benchmark prev_pid=13358 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
64228   sfEventThread-23906 (23896) [001] d..2 24573.848511: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
64229  surfaceflinger-23896 (23896) [002] d..1 24573.848737: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
64230  surfaceflinger-23896 (23896) [002] d..2 24573.848749: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
64231           <...>-13157 (-----) [001] d..2 24573.848756: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
64232   sfEventThread-23906 (23896) [001] d..2 24573.848771: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
64233  surfaceflinger-23896 (23896) [002] ...1 24573.848871: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
64234  surfaceflinger-23896 (23896) [002] ...1 24573.848874: tracing_mark_write: E|23896
64235  surfaceflinger-23896 (23896) [002] .... 24573.848913: binder_transaction: transaction=1670120 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
64236  surfaceflinger-23896 (23896) [002] ...2 24573.848931: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
64237  surfaceflinger-23896 (23896) [002] d..4 24573.848937: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
64238 id.nn.benchmark-13155 (13131) [006] dnh1 24573.848956: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=006
64239 id.nn.benchmark-13155 (13131) [006] d..2 24573.848959: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
64240  HwBinder:598_3-633   (  598) [006] .... 24573.848963: binder_transaction_received: transaction=1670120
64241  surfaceflinger-23896 (23896) [002] d..2 24573.848963: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13358 next_prio=110
64242  HwBinder:598_3-633   (  598) [006] ...1 24573.848984: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
64243  HwBinder:598_3-633   (  598) [006] ...1 24573.849028: tracing_mark_write: B|598|HWCSession::PresentDisplay::
64244           <...>-13358 (-----) [002] d..1 24573.849033: sched_waking: comm=id.nn.benchmark pid=13357 prio=110 target_cpu=002
64245           <...>-13358 (-----) [002] dn.2 24573.849042: sched_wakeup: comm=id.nn.benchmark pid=13357 prio=110 target_cpu=002
64246           <...>-13358 (-----) [002] d..2 24573.849047: sched_switch: prev_comm=id.nn.benchmark prev_pid=13358 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13357 next_prio=110
64247  HwBinder:598_3-633   (  598) [006] ...1 24573.849103: tracing_mark_write: B|598|HWDeviceDRM::Commit::
64248           <...>-13357 (-----) [002] d..2 24573.849103: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
64249  HwBinder:598_3-633   (  598) [006] ...1 24573.849106: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
64250           <...>-13357 (-----) [002] d..3 24573.849112: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
64251           <...>-13357 (-----) [002] d..1 24573.849166: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
64252           <...>-13154 (-----) [005] dnh1 24573.849190: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
64253           <...>-13154 (-----) [005] d..2 24573.849215: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
64254           <...>-13357 (-----) [002] d.h3 24573.849216: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
64255           <...>-13131 (-----) [005] d..2 24573.849221: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
64256           <...>-13357 (-----) [002] d.h3 24573.849229: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
64257           <...>-13154 (-----) [005] dnh1 24573.849232: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
64258           <...>-13154 (-----) [005] d..2 24573.849235: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
64259           <...>-13357 (-----) [002] d.h4 24573.849237: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
64260         sugov:4-560   (  560) [005] d..2 24573.849238: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
64261 id.nn.benchmark-13156 (13131) [000] d..2 24573.849246: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
64262         sugov:0-559   (  559) [000] d..2 24573.849254: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
64263  HwBinder:598_3-633   (  598) [006] d..2 24573.849287: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
64264           <...>-13357 (-----) [002] d..1 24573.849294: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=005
64265  HwBinder:598_3-633   (  598) [006] d..3 24573.849303: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
64266           <...>-13154 (-----) [005] d..2 24573.849309: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
64267 id.nn.benchmark-13159 (13131) [004] dnh1 24573.849324: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
64268 id.nn.benchmark-13159 (13131) [004] d..2 24573.849326: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
64269           <...>-13131 (-----) [004] ...1 24573.849344: tracing_mark_write: E|13131
64270           <...>-13131 (-----) [004] ...1 24573.849347: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
64271           <...>-13131 (-----) [004] ...1 24573.849350: tracing_mark_write: E|13131
64272  HwBinder:598_3-633   (  598) [006] ...1 24573.849350: tracing_mark_write: E|598
64273  HwBinder:598_3-633   (  598) [006] ...1 24573.849351: tracing_mark_write: E|598
64274           <...>-13131 (-----) [004] ...1 24573.849352: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
64275           <...>-13131 (-----) [004] ...1 24573.849354: tracing_mark_write: E|13131
64276  HwBinder:598_3-633   (  598) [006] ...1 24573.849372: tracing_mark_write: E|598
64277           <...>-13357 (-----) [002] d..2 24573.849385: sched_switch: prev_comm=id.nn.benchmark prev_pid=13357 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
64278  HwBinder:598_3-633   (  598) [006] ...1 24573.849391: tracing_mark_write: E|598
64279  HwBinder:598_3-633   (  598) [006] .... 24573.849397: binder_transaction: transaction=1670121 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
64280  HwBinder:598_3-633   (  598) [006] d..2 24573.849403: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
64281  HwBinder:598_3-633   (  598) [006] .... 24573.849410: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
64282     logd.writer-563   (  555) [002] dnh1 24573.849415: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
64283           <...>-13131 (-----) [004] ...1 24573.849419: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
64284     logd.writer-563   (  555) [002] d..2 24573.849422: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
64285  surfaceflinger-23896 (23896) [002] .... 24573.849427: binder_transaction_received: transaction=1670121
64286  HwBinder:598_3-633   (  598) [006] d..2 24573.849432: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
64287           <...>-13131 (-----) [004] ...1 24573.849444: tracing_mark_write: E|13131
64288           <...>-13131 (-----) [004] ...1 24573.849446: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
64289           <...>-13131 (-----) [004] ...1 24573.849449: tracing_mark_write: E|13131
64290           <...>-13131 (-----) [004] ...1 24573.849451: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
64291           <...>-13131 (-----) [004] ...1 24573.849452: tracing_mark_write: E|13131
64292           <...>-13131 (-----) [004] ...1 24573.849454: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
64293           <...>-13131 (-----) [004] ...1 24573.849519: tracing_mark_write: E|13131
64294           <...>-13131 (-----) [004] ...1 24573.849520: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
64295           <...>-13131 (-----) [004] d..2 24573.849525: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
64296  surfaceflinger-23896 (23896) [002] d..2 24573.849667: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13358 next_prio=110
64297           <...>-13358 (-----) [002] d..2 24573.849705: sched_switch: prev_comm=id.nn.benchmark prev_pid=13358 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
64298     logd.writer-563   (  555) [002] d..2 24573.849809: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13359 next_prio=110
64299           <...>-13359 (-----) [002] d.h4 24573.849840: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
64300           <...>-13359 (-----) [002] d.h4 24573.849851: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
64301 id.nn.benchmark-13155 (13131) [006] dnh1 24573.849855: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
64302 id.nn.benchmark-13155 (13131) [006] d..2 24573.849858: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
64303 crtc_commit:111-253   (  253) [005] d..2 24573.849860: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
64304           <...>-13359 (-----) [002] dnh5 24573.849861: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
64305         sugov:4-560   (  560) [006] d..2 24573.849862: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
64306           <...>-13359 (-----) [002] d..2 24573.849867: sched_switch: prev_comm=id.nn.benchmark prev_pid=13359 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
64307         sugov:0-559   (  559) [002] d..2 24573.849874: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13359 next_prio=110
64308           <...>-13359 (-----) [002] d..2 24573.849932: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
64309           <...>-13359 (-----) [002] d..3 24573.849941: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
64310           <...>-13359 (-----) [002] d..2 24573.850236: sched_switch: prev_comm=id.nn.benchmark prev_pid=13359 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
64311     logd.writer-563   (  555) [002] d..2 24573.850420: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13360 next_prio=110
64312           <...>-13360 (-----) [002] ...1 24573.850446: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
64313           <...>-13360 (-----) [002] ...1 24573.850451: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
64314           <...>-13360 (-----) [002] d..2 24573.850509: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
64315           <...>-13360 (-----) [002] d..3 24573.850518: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
64316           <...>-13360 (-----) [002] ...1 24573.850585: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64317           <...>-13360 (-----) [002] ...1 24573.850590: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64318 id.nn.benchmark-13160 (13131) [007] d.s2 24573.850885: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
64319           <...>-13360 (-----) [002] d.s1 24573.850902: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
64320 id.nn.benchmark-13160 (13131) [007] d.s3 24573.850904: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
64321 id.nn.benchmark-13160 (13131) [007] d.H3 24573.850924: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
64322 id.nn.benchmark-13155 (13131) [006] d..2 24573.850925: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
64323 id.nn.benchmark-13160 (13131) [007] d.H4 24573.850936: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
64324           <...>-13154 (-----) [005] dnh1 24573.850937: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
64325 id.nn.benchmark-13160 (13131) [007] d.H3 24573.850958: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
64326           <...>-13154 (-----) [005] d..2 24573.850962: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
64327         sugov:4-560   (  560) [005] d..2 24573.850966: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
64328           <...>-13360 (-----) [002] dnh1 24573.850968: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
64329     rcu_preempt-7     (    7) [005] d..2 24573.850969: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=005
64330           <...>-13360 (-----) [002] d..2 24573.850974: sched_switch: prev_comm=id.nn.benchmark prev_pid=13360 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
64331     rcu_preempt-7     (    7) [005] d..3 24573.850974: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=005
64332     rcu_preempt-7     (    7) [005] d..2 24573.850979: 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
64333         sugov:0-559   (  559) [002] d..2 24573.850981: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13360 next_prio=110
64334         rcuop/0-10    (   10) [005] d..2 24573.850985: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
64335  kworker/u16:15-18488 (18488) [006] d..2 24573.851122: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
64336 id.nn.benchmark-13158 (13131) [003] d.s2 24573.851163: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
64337 id.nn.benchmark-13155 (13131) [006] d.h1 24573.851177: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
64338 id.nn.benchmark-13155 (13131) [006] dnh1 24573.851179: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
64339 id.nn.benchmark-13155 (13131) [006] d..2 24573.851181: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
64340  kworker/u16:15-18488 (18488) [006] d..2 24573.851309: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
64341           <...>-13360 (-----) [002] ...1 24573.852675: tracing_mark_write: E|13131
64342           <...>-13360 (-----) [002] ...1 24573.852679: tracing_mark_write: E|13131
64343           <...>-13360 (-----) [002] ...1 24573.852692: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64344           <...>-13360 (-----) [002] ...1 24573.852697: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64345           <...>-13360 (-----) [002] ...1 24573.853395: tracing_mark_write: E|13131
64346           <...>-13360 (-----) [002] ...1 24573.853399: tracing_mark_write: E|13131
64347           <...>-13360 (-----) [002] ...1 24573.853413: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64348           <...>-13360 (-----) [002] ...1 24573.853417: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64349           <...>-13360 (-----) [002] ...1 24573.853752: tracing_mark_write: E|13131
64350           <...>-13360 (-----) [002] ...1 24573.853755: tracing_mark_write: E|13131
64351           <...>-13360 (-----) [002] ...1 24573.853766: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64352           <...>-13360 (-----) [002] ...1 24573.853769: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64353           <...>-13360 (-----) [002] ...1 24573.854005: tracing_mark_write: E|13131
64354           <...>-13360 (-----) [002] ...1 24573.854009: tracing_mark_write: E|13131
64355           <...>-13360 (-----) [002] ...1 24573.854018: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64356           <...>-13360 (-----) [002] ...1 24573.854022: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64357           <...>-13360 (-----) [002] ...1 24573.854444: tracing_mark_write: E|13131
64358           <...>-13360 (-----) [002] ...1 24573.854448: tracing_mark_write: E|13131
64359           <...>-13360 (-----) [002] ...1 24573.854457: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64360           <...>-13360 (-----) [002] ...1 24573.854461: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64361           <...>-13360 (-----) [002] ...1 24573.854852: tracing_mark_write: E|13131
64362           <...>-13360 (-----) [002] ...1 24573.854856: tracing_mark_write: E|13131
64363           <...>-13360 (-----) [002] ...1 24573.854873: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64364           <...>-13360 (-----) [002] ...1 24573.854877: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64365           <...>-13360 (-----) [002] ...1 24573.855069: tracing_mark_write: E|13131
64366           <...>-13360 (-----) [002] ...1 24573.855073: tracing_mark_write: E|13131
64367           <...>-13360 (-----) [002] ...1 24573.855085: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64368           <...>-13360 (-----) [002] ...1 24573.855089: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64369           <...>-13360 (-----) [002] ...1 24573.855159: tracing_mark_write: E|13131
64370           <...>-13360 (-----) [002] ...1 24573.855163: tracing_mark_write: E|13131
64371           <...>-13360 (-----) [002] ...1 24573.855174: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
64372           <...>-13360 (-----) [002] ...1 24573.855179: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
64373           <...>-13360 (-----) [002] ...1 24573.855466: tracing_mark_write: E|13131
64374           <...>-13360 (-----) [002] ...1 24573.855470: tracing_mark_write: E|13131
64375           <...>-13360 (-----) [002] ...1 24573.855479: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
64376           <...>-13360 (-----) [002] ...1 24573.855482: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
64377           <...>-13360 (-----) [002] ...1 24573.855534: tracing_mark_write: E|13131
64378           <...>-13360 (-----) [002] ...1 24573.855537: tracing_mark_write: E|13131
64379           <...>-13360 (-----) [002] ...1 24573.855545: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
64380           <...>-13360 (-----) [002] ...1 24573.855549: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
64381           <...>-13360 (-----) [002] ...1 24573.855565: tracing_mark_write: E|13131
64382           <...>-13360 (-----) [002] ...1 24573.855568: tracing_mark_write: E|13131
64383           <...>-13360 (-----) [002] ...1 24573.855578: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
64384           <...>-13360 (-----) [002] ...1 24573.855581: tracing_mark_write: E|13131
64385           <...>-13360 (-----) [002] ...1 24573.855591: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
64386           <...>-13360 (-----) [002] ...1 24573.855595: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
64387           <...>-13360 (-----) [002] ...1 24573.856448: tracing_mark_write: E|13131
64388           <...>-13360 (-----) [002] ...1 24573.856451: tracing_mark_write: E|13131
64389           <...>-13360 (-----) [002] ...1 24573.856458: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64390           <...>-13360 (-----) [002] ...1 24573.856461: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64391 id.nn.benchmark-13156 (13131) [000] d.h4 24573.856462: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
64392 id.nn.benchmark-13156 (13131) [000] d.h4 24573.856487: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
64393 id.nn.benchmark-13155 (13131) [006] dnh1 24573.856488: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=006
64394 id.nn.benchmark-13155 (13131) [006] d..2 24573.856492: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
64395           <...>-13154 (-----) [005] dnh1 24573.856498: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
64396           <...>-13154 (-----) [005] d..2 24573.856501: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
64397  crtc_event:111-254   (  254) [006] d..2 24573.856503: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
64398 id.nn.benchmark-13156 (13131) [000] d.h2 24573.856530: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
64399 id.nn.benchmark-13156 (13131) [000] d.h2 24573.856540: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
64400 id.nn.benchmark-13155 (13131) [006] dnh1 24573.856543: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
64401 id.nn.benchmark-13155 (13131) [006] d..2 24573.856545: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
64402 id.nn.benchmark-13156 (13131) [000] d.h3 24573.856549: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
64403         sugov:4-560   (  560) [006] d..2 24573.856549: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
64404           <...>-13360 (-----) [002] d..2 24573.856559: sched_switch: prev_comm=id.nn.benchmark prev_pid=13360 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
64405         sugov:0-559   (  559) [002] d..2 24573.856568: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13360 next_prio=110
64406 crtc_commit:111-253   (  253) [005] d..2 24573.856591: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
64407           <...>-13360 (-----) [002] ...1 24573.856619: tracing_mark_write: E|13131
64408           <...>-13360 (-----) [002] ...1 24573.856622: tracing_mark_write: E|13131
64409           <...>-13360 (-----) [002] ...1 24573.856674: tracing_mark_write: E|13131
64410           <...>-13360 (-----) [002] d..1 24573.856679: sched_waking: comm=id.nn.benchmark pid=13359 prio=110 target_cpu=002
64411           <...>-13360 (-----) [002] dn.2 24573.856693: sched_wakeup: comm=id.nn.benchmark pid=13359 prio=110 target_cpu=002
64412           <...>-13360 (-----) [002] d..2 24573.856698: sched_switch: prev_comm=id.nn.benchmark prev_pid=13360 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13359 next_prio=110
64413           <...>-13359 (-----) [002] d..2 24573.856711: sched_switch: prev_comm=id.nn.benchmark prev_pid=13359 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13360 next_prio=110
64414           <...>-13360 (-----) [002] ...1 24573.856726: tracing_mark_write: E|13131
64415           <...>-13360 (-----) [002] d..1 24573.856918: sched_waking: comm=id.nn.benchmark pid=13359 prio=110 target_cpu=002
64416           <...>-13360 (-----) [002] dn.2 24573.856927: sched_wakeup: comm=id.nn.benchmark pid=13359 prio=110 target_cpu=002
64417           <...>-13360 (-----) [002] d..2 24573.856931: sched_switch: prev_comm=id.nn.benchmark prev_pid=13360 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13359 next_prio=110
64418           <...>-13359 (-----) [002] d..1 24573.857023: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
64419 id.nn.benchmark-13155 (13131) [006] dnh1 24573.857044: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
64420 id.nn.benchmark-13155 (13131) [006] d..2 24573.857046: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
64421           <...>-13131 (-----) [006] d..2 24573.857052: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
64422           <...>-13359 (-----) [002] d..1 24573.857091: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
64423 id.nn.benchmark-13155 (13131) [006] dnh1 24573.857104: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
64424 id.nn.benchmark-13155 (13131) [006] d..2 24573.857106: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
64425           <...>-13131 (-----) [006] ...1 24573.857119: tracing_mark_write: E|13131
64426           <...>-13131 (-----) [006] ...1 24573.857122: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
64427           <...>-13131 (-----) [006] ...1 24573.857125: tracing_mark_write: E|13131
64428           <...>-13131 (-----) [006] ...1 24573.857127: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
64429           <...>-13131 (-----) [006] ...1 24573.857128: tracing_mark_write: E|13131
64430           <...>-13359 (-----) [002] d..2 24573.857147: sched_switch: prev_comm=id.nn.benchmark prev_pid=13359 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13360 next_prio=110
64431           <...>-13360 (-----) [002] d..2 24573.857166: sched_switch: prev_comm=id.nn.benchmark prev_pid=13360 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
64432           <...>-13131 (-----) [006] ...1 24573.857190: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
64433           <...>-13131 (-----) [006] ...1 24573.857215: tracing_mark_write: E|13131
64434           <...>-13131 (-----) [006] ...1 24573.857217: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
64435           <...>-13131 (-----) [006] ...1 24573.857219: tracing_mark_write: E|13131
64436           <...>-13131 (-----) [006] ...1 24573.857221: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
64437           <...>-13131 (-----) [006] ...1 24573.857223: tracing_mark_write: E|13131
64438           <...>-13131 (-----) [006] ...1 24573.857224: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
64439           <...>-13131 (-----) [006] ...1 24573.857273: tracing_mark_write: E|13131
64440           <...>-13131 (-----) [006] ...1 24573.857274: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
64441           <...>-13131 (-----) [006] d..2 24573.857279: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
64442     logd.writer-563   (  555) [002] d..2 24573.857392: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13361 next_prio=110
64443           <...>-13361 (-----) [002] d.h4 24573.857424: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
64444           <...>-13361 (-----) [002] d.h4 24573.857432: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
64445 id.nn.benchmark-13155 (13131) [006] dnh1 24573.857436: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
64446           <...>-13361 (-----) [002] dnh5 24573.857439: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
64447 id.nn.benchmark-13155 (13131) [006] d..2 24573.857439: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
64448         sugov:4-560   (  560) [006] d..2 24573.857443: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
64449           <...>-13361 (-----) [002] d..2 24573.857445: sched_switch: prev_comm=id.nn.benchmark prev_pid=13361 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
64450         sugov:0-559   (  559) [002] d..2 24573.857451: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13361 next_prio=110
64451           <...>-13361 (-----) [002] d..2 24573.857506: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
64452           <...>-13361 (-----) [002] d..3 24573.857514: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
64453 id.nn.benchmark-13160 (13131) [007] d.s2 24573.857555: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
64454 id.nn.benchmark-13160 (13131) [007] d.s3 24573.857578: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
64455 id.nn.benchmark-13160 (13131) [007] d.s2 24573.857579: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
64456 id.nn.benchmark-13159 (13131) [004] d..2 24573.857585: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
64457 id.nn.benchmark-13160 (13131) [007] d.s3 24573.857590: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
64458           <...>-13154 (-----) [005] d..2 24573.857597: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
64459     rcu_preempt-7     (    7) [005] d..2 24573.857599: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=006
64460     rcu_preempt-7     (    7) [005] d..3 24573.857610: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=006
64461     rcu_preempt-7     (    7) [005] d..2 24573.857614: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
64462 id.nn.benchmark-13155 (13131) [006] d..2 24573.857616: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
64463         rcuop/2-29    (   29) [006] d..2 24573.857639: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
64464  kworker/u16:15-18488 (18488) [004] d..2 24573.857681: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
64465           <...>-13361 (-----) [002] d..2 24573.857841: sched_switch: prev_comm=id.nn.benchmark prev_pid=13361 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
64466     logd.writer-563   (  555) [002] d..2 24573.858007: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13362 next_prio=110
64467           <...>-13362 (-----) [002] ...1 24573.858033: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
64468           <...>-13362 (-----) [002] ...1 24573.858038: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
64469           <...>-13362 (-----) [002] d..2 24573.858093: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
64470           <...>-13362 (-----) [002] d..3 24573.858101: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
64471           <...>-13362 (-----) [002] ...1 24573.858168: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64472           <...>-13362 (-----) [002] ...1 24573.858173: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64473 id.nn.benchmark-13156 (13131) [000] d.h4 24573.858807: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
64474 id.nn.benchmark-13156 (13131) [000] d.h5 24573.858824: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
64475           <...>-13362 (-----) [002] d..2 24573.858835: sched_switch: prev_comm=id.nn.benchmark prev_pid=13362 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
64476 id.nn.benchmark-13156 (13131) [000] d.h2 24573.858861: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
64477 id.nn.benchmark-13156 (13131) [000] d.h2 24573.858872: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
64478 id.nn.benchmark-13159 (13131) [004] dnh1 24573.858876: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
64479 id.nn.benchmark-13159 (13131) [004] d..2 24573.858878: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
64480 id.nn.benchmark-13156 (13131) [000] dnh3 24573.858882: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
64481         sugov:4-560   (  560) [004] d..2 24573.858882: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
64482 crtc_commit:111-253   (  253) [002] d..2 24573.858886: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13362 next_prio=110
64483 id.nn.benchmark-13156 (13131) [000] d..2 24573.858887: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
64484         sugov:0-559   (  559) [000] d..2 24573.858895: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
64485 id.nn.benchmark-13156 (13131) [000] d.h4 24573.859096: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=006
64486 id.nn.benchmark-13156 (13131) [000] d.h5 24573.859111: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
64487           <...>-13362 (-----) [002] d..2 24573.859120: sched_switch: prev_comm=id.nn.benchmark prev_pid=13362 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
64488  crtc_event:111-254   (  254) [002] d..2 24573.859143: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13362 next_prio=110
64489           <...>-13362 (-----) [002] ...1 24573.860256: tracing_mark_write: E|13131
64490           <...>-13362 (-----) [002] ...1 24573.860260: tracing_mark_write: E|13131
64491           <...>-13362 (-----) [002] ...1 24573.860271: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64492           <...>-13362 (-----) [002] ...1 24573.860276: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64493           <...>-13362 (-----) [002] d.h1 24573.860875: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
64494           <...>-13362 (-----) [002] dnh2 24573.860886: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
64495           <...>-13154 (-----) [005] d.s2 24573.860887: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
64496 id.nn.benchmark-13160 (13131) [007] d.s2 24573.860888: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
64497           <...>-13154 (-----) [005] d.s3 24573.860899: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
64498 id.nn.benchmark-13160 (13131) [007] d.s3 24573.860901: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
64499 id.nn.benchmark-13159 (13131) [004] d..2 24573.860905: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
64500           <...>-13154 (-----) [005] d.H3 24573.860923: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
64501  crtc_event:111-254   (  254) [004] d..2 24573.860924: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
64502           <...>-13362 (-----) [002] d..2 24573.860926: sched_switch: prev_comm=id.nn.benchmark prev_pid=13362 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
64503           <...>-13154 (-----) [005] d.H4 24573.860929: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
64504           <...>-13154 (-----) [005] d.H3 24573.860930: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
64505  kworker/u16:15-18488 (18488) [004] d..2 24573.860939: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
64506 id.nn.benchmark-13156 (13131) [000] dnh1 24573.860940: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
64507         sugov:4-560   (  560) [004] d..2 24573.860942: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
64508 id.nn.benchmark-13156 (13131) [000] d..2 24573.860946: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
64509        DispSync-23904 (23896) [002] d..1 24573.860947: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
64510         sugov:0-559   (  559) [000] d..2 24573.860954: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
64511        DispSync-23904 (23896) [002] d..2 24573.860965: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
64512 id.nn.benchmark-13156 (13131) [000] d..2 24573.860973: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
64513        DispSync-23904 (23896) [002] d..2 24573.860981: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13362 next_prio=110
64514  appEventThread-23905 (23896) [000] d..3 24573.861013: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
64515 id.nn.benchmark-13155 (13131) [006] dnh1 24573.861030: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
64516 id.nn.benchmark-13155 (13131) [006] d..2 24573.861035: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
64517  appEventThread-23905 (23896) [000] d..2 24573.861041: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
64518           <...>-13362 (-----) [002] ...1 24573.861100: tracing_mark_write: E|13131
64519           <...>-13362 (-----) [002] ...1 24573.861111: tracing_mark_write: E|13131
64520           <...>-13362 (-----) [002] ...1 24573.861128: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64521           <...>-13362 (-----) [002] ...1 24573.861132: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64522  kworker/u16:15-18488 (18488) [004] d..2 24573.861215: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
64523<...>-24151 ( 24151) [006] .... 24573.861227: binder_transaction: transaction=1670122 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
64524<...>-24151 ( 24151) [006] d..4 24573.861232: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
64525<...>-24151 ( 24151) [006] d..5 24573.861243: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
64526 id.nn.benchmark-13159 (13131) [004] d..2 24573.861249: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
64527 id.nn.benchmark-13158 (13131) [003] d.s2 24573.861252: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
64528<...>-23903 ( 23896) [004] .... 24573.861253: binder_transaction_received: transaction=1670122
64529<...>-24151 ( 24151) [006] d..3 24573.861263: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
64530<...>-23903 ( 23896) [004] d..1 24573.861270: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
64531           <...>-13362 (-----) [002] dnh1 24573.861278: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
64532           <...>-13362 (-----) [002] d..2 24573.861288: sched_switch: prev_comm=id.nn.benchmark prev_pid=13362 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
64533<...>-23903 ( 23896) [004] d.h2 24573.861288: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
64534<...>-23903 ( 23896) [004] d.h2 24573.861290: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
64535    RenderThread-24437 (24151) [002] dnh3 24573.861296: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
64536    RenderThread-24437 (24151) [002] d..2 24573.861303: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
64537<...>-23903 ( 23896) [004] d..2 24573.861303: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
64538  kworker/u16:15-18488 (18488) [004] d..2 24573.861308: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
64539  appEventThread-23905 (23896) [002] d..2 24573.861328: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
64540<...>-24151 ( 24151) [006] d..2 24573.861333: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
64541    RenderThread-24437 (24151) [002] d..1 24573.861442: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
64542 id.nn.benchmark-13155 (13131) [006] dnh1 24573.861459: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
64543 id.nn.benchmark-13155 (13131) [006] d..2 24573.861461: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
64544<...>-24151 ( 24151) [006] d..2 24573.861482: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
64545    RenderThread-24437 (24151) [002] .... 24573.861505: binder_transaction: transaction=1670123 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
64546    RenderThread-24437 (24151) [002] d..4 24573.861510: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
64547 id.nn.benchmark-13159 (13131) [004] dnh1 24573.861523: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
64548 id.nn.benchmark-13159 (13131) [004] d..2 24573.861525: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
64549<...>-23903 ( 23896) [004] .... 24573.861527: binder_transaction_received: transaction=1670123
64550    RenderThread-24437 (24151) [002] d..2 24573.861528: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13362 next_prio=110
64551<...>-23903 ( 23896) [004] .... 24573.861552: binder_transaction: transaction=1670124 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
64552<...>-23903 ( 23896) [004] d..2 24573.861556: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
64553<...>-23903 ( 23896) [004] d..3 24573.861570: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
64554<...>-23903 ( 23896) [004] d.h3 24573.861590: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
64555 id.nn.benchmark-13155 (13131) [006] d..2 24573.861590: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
64556    RenderThread-24437 (24151) [006] .... 24573.861593: binder_transaction_received: transaction=1670124
64557<...>-23903 ( 23896) [004] dnh4 24573.861593: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
64558<...>-23903 ( 23896) [004] dnh3 24573.861594: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
64559<...>-23903 ( 23896) [004] d..2 24573.861603: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
64560         sugov:4-560   (  560) [004] d..2 24573.861606: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
64561           <...>-13362 (-----) [002] dnh1 24573.861608: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
64562           <...>-13362 (-----) [002] d..2 24573.861615: sched_switch: prev_comm=id.nn.benchmark prev_pid=13362 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
64563<...>-23903 ( 23896) [004] d..2 24573.861615: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
64564         sugov:0-559   (  559) [002] d..2 24573.861623: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13362 next_prio=110
64565    RenderThread-24437 (24151) [006] d..2 24573.862196: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
64566           <...>-13362 (-----) [002] ...1 24573.862246: tracing_mark_write: E|13131
64567           <...>-13362 (-----) [002] ...1 24573.862250: tracing_mark_write: E|13131
64568           <...>-13362 (-----) [002] ...1 24573.862264: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64569           <...>-13362 (-----) [002] ...1 24573.862269: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64570 id.nn.benchmark-13155 (13131) [006] d.h1 24573.862294: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
64571 id.nn.benchmark-13155 (13131) [006] d.h2 24573.862300: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
64572 id.nn.benchmark-13155 (13131) [006] dnh2 24573.862301: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
64573 id.nn.benchmark-13155 (13131) [006] d..2 24573.862305: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
64574    RenderThread-24437 (24151) [006] .... 24573.862386: binder_transaction: transaction=1670125 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
64575    RenderThread-24437 (24151) [006] d..4 24573.862391: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
64576    RenderThread-24437 (24151) [006] d..5 24573.862400: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
64577    RenderThread-24437 (24151) [006] d..2 24573.862404: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
64578 id.nn.benchmark-13159 (13131) [004] d..2 24573.862406: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
64579<...>-23903 ( 23896) [004] .... 24573.862408: binder_transaction_received: transaction=1670125
64580 id.nn.benchmark-13156 (13131) [000] d.h2 24573.862420: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
64581 id.nn.benchmark-13156 (13131) [000] d.h3 24573.862433: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
64582           <...>-13362 (-----) [002] d..2 24573.862442: sched_switch: prev_comm=id.nn.benchmark prev_pid=13362 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
64583<...>-23903 ( 23896) [004] .... 24573.862462: binder_transaction: transaction=1670126 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
64584<...>-23903 ( 23896) [004] d..2 24573.862463: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
64585<...>-23903 ( 23896) [004] d..3 24573.862471: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
64586 id.nn.benchmark-13155 (13131) [006] d..2 24573.862477: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
64587 kgsl_worker_thr-246   (  246) [002] d..2 24573.862478: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
64588<...>-23903 ( 23896) [004] d..2 24573.862479: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
64589    RenderThread-24437 (24151) [006] .... 24573.862479: binder_transaction_received: transaction=1670126
64590 id.nn.benchmark-13159 (13131) [004] dnh1 24573.862505: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
64591    RenderThread-24437 (24151) [006] d..2 24573.862506: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
64592 id.nn.benchmark-13159 (13131) [004] d..2 24573.862507: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
64593 kgsl_worker_thr-246   (  246) [002] d..2 24573.862514: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13362 next_prio=110
64594  kworker/u16:15-18488 (18488) [004] d..2 24573.862525: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
64595           <...>-13362 (-----) [002] ...1 24573.862584: tracing_mark_write: E|13131
64596           <...>-13362 (-----) [002] ...1 24573.862587: tracing_mark_write: E|13131
64597           <...>-13362 (-----) [002] ...1 24573.862600: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64598           <...>-13362 (-----) [002] ...1 24573.862605: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64599           <...>-13362 (-----) [002] ...1 24573.862993: tracing_mark_write: E|13131
64600           <...>-13362 (-----) [002] ...1 24573.862997: tracing_mark_write: E|13131
64601           <...>-13362 (-----) [002] ...1 24573.863007: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64602           <...>-13362 (-----) [002] ...1 24573.863011: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64603           <...>-13362 (-----) [002] ...1 24573.863392: tracing_mark_write: E|13131
64604           <...>-13362 (-----) [002] ...1 24573.863396: tracing_mark_write: E|13131
64605           <...>-13362 (-----) [002] ...1 24573.863414: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64606           <...>-13362 (-----) [002] ...1 24573.863419: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64607           <...>-13362 (-----) [002] ...1 24573.863612: tracing_mark_write: E|13131
64608           <...>-13362 (-----) [002] ...1 24573.863616: tracing_mark_write: E|13131
64609           <...>-13362 (-----) [002] ...1 24573.863629: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64610           <...>-13362 (-----) [002] ...1 24573.863633: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64611           <...>-13362 (-----) [002] ...1 24573.863705: tracing_mark_write: E|13131
64612           <...>-13362 (-----) [002] ...1 24573.863709: tracing_mark_write: E|13131
64613           <...>-13362 (-----) [002] ...1 24573.863719: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
64614           <...>-13362 (-----) [002] ...1 24573.863724: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
64615           <...>-13362 (-----) [002] ...1 24573.864012: tracing_mark_write: E|13131
64616           <...>-13362 (-----) [002] ...1 24573.864016: tracing_mark_write: E|13131
64617           <...>-13362 (-----) [002] ...1 24573.864025: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
64618           <...>-13362 (-----) [002] ...1 24573.864029: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
64619           <...>-13362 (-----) [002] ...1 24573.864081: tracing_mark_write: E|13131
64620           <...>-13362 (-----) [002] ...1 24573.864084: tracing_mark_write: E|13131
64621           <...>-13362 (-----) [002] ...1 24573.864092: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
64622           <...>-13362 (-----) [002] ...1 24573.864096: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
64623           <...>-13362 (-----) [002] ...1 24573.864112: tracing_mark_write: E|13131
64624           <...>-13362 (-----) [002] ...1 24573.864116: tracing_mark_write: E|13131
64625           <...>-13362 (-----) [002] ...1 24573.864126: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
64626           <...>-13362 (-----) [002] ...1 24573.864130: tracing_mark_write: E|13131
64627           <...>-13362 (-----) [002] ...1 24573.864139: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
64628           <...>-13362 (-----) [002] ...1 24573.864144: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
64629           <...>-13154 (-----) [005] d.s1 24573.864220: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
64630 id.nn.benchmark-13160 (13131) [007] d.s2 24573.864222: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
64631           <...>-13154 (-----) [005] dns2 24573.864231: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
64632 id.nn.benchmark-13160 (13131) [007] d.s3 24573.864233: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
64633           <...>-13154 (-----) [005] d..2 24573.864234: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
64634     rcu_preempt-7     (    7) [005] d..2 24573.864236: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=005
64635 id.nn.benchmark-13159 (13131) [004] d..2 24573.864240: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
64636     rcu_preempt-7     (    7) [005] d..3 24573.864244: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=005
64637     rcu_preempt-7     (    7) [005] d..2 24573.864249: 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
64638         rcuop/0-10    (   10) [005] d..2 24573.864254: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
64639  kworker/u16:15-18488 (18488) [004] d..2 24573.864281: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
64640           <...>-13362 (-----) [002] d.h1 24573.864886: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
64641           <...>-13362 (-----) [002] dnh2 24573.864895: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
64642           <...>-13362 (-----) [002] d..2 24573.864903: sched_switch: prev_comm=id.nn.benchmark prev_pid=13362 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
64643        DispSync-23904 (23896) [002] d..1 24573.864917: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
64644        DispSync-23904 (23896) [002] d..2 24573.864929: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
64645           <...>-13157 (-----) [001] d..2 24573.864938: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
64646        DispSync-23904 (23896) [002] d..2 24573.864942: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13362 next_prio=110
64647   sfEventThread-23906 (23896) [001] d..3 24573.864967: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
64648   sfEventThread-23906 (23896) [001] d..4 24573.864980: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
64649           <...>-13362 (-----) [002] d..2 24573.864988: sched_switch: prev_comm=id.nn.benchmark prev_pid=13362 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
64650   sfEventThread-23906 (23896) [001] d..2 24573.864994: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
64651  surfaceflinger-23896 (23896) [002] d..1 24573.865240: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
64652  surfaceflinger-23896 (23896) [002] d..2 24573.865251: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
64653           <...>-13157 (-----) [001] d..2 24573.865259: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
64654   sfEventThread-23906 (23896) [001] d..2 24573.865273: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
64655  surfaceflinger-23896 (23896) [002] ...1 24573.865376: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
64656  surfaceflinger-23896 (23896) [002] ...1 24573.865380: tracing_mark_write: E|23896
64657  surfaceflinger-23896 (23896) [002] .... 24573.865426: binder_transaction: transaction=1670127 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
64658  surfaceflinger-23896 (23896) [002] ...2 24573.865446: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
64659  surfaceflinger-23896 (23896) [002] d..4 24573.865453: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=006
64660 id.nn.benchmark-13159 (13131) [004] dnh1 24573.865474: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
64661 id.nn.benchmark-13159 (13131) [004] d..2 24573.865477: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
64662  HwBinder:598_3-633   (  598) [004] .... 24573.865480: binder_transaction_received: transaction=1670127
64663  surfaceflinger-23896 (23896) [002] d..2 24573.865481: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13362 next_prio=110
64664  HwBinder:598_3-633   (  598) [004] ...1 24573.865506: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
64665  HwBinder:598_3-633   (  598) [004] ...1 24573.865559: tracing_mark_write: B|598|HWCSession::PresentDisplay::
64666           <...>-13362 (-----) [002] ...1 24573.865587: tracing_mark_write: E|13131
64667           <...>-13362 (-----) [002] ...1 24573.865591: tracing_mark_write: E|13131
64668           <...>-13362 (-----) [002] ...1 24573.865602: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64669           <...>-13362 (-----) [002] ...1 24573.865606: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64670  HwBinder:598_3-633   (  598) [004] ...1 24573.865642: tracing_mark_write: B|598|HWDeviceDRM::Commit::
64671  HwBinder:598_3-633   (  598) [004] ...1 24573.865646: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
64672  HwBinder:598_3-633   (  598) [004] d..2 24573.865848: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
64673           <...>-13362 (-----) [002] dnh1 24573.865862: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
64674           <...>-13362 (-----) [002] d..2 24573.865869: sched_switch: prev_comm=id.nn.benchmark prev_pid=13362 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
64675  HwBinder:598_3-633   (  598) [004] ...1 24573.865882: tracing_mark_write: E|598
64676  HwBinder:598_3-633   (  598) [004] ...1 24573.865883: tracing_mark_write: E|598
64677  HwBinder:598_3-633   (  598) [004] ...1 24573.865905: tracing_mark_write: E|598
64678  HwBinder:598_3-633   (  598) [004] ...1 24573.865924: tracing_mark_write: E|598
64679  HwBinder:598_3-633   (  598) [004] .... 24573.865929: binder_transaction: transaction=1670128 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
64680  HwBinder:598_3-633   (  598) [004] d..2 24573.865935: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
64681  HwBinder:598_3-633   (  598) [004] .... 24573.865945: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
64682 id.nn.benchmark-13156 (13131) [000] dnh1 24573.865950: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
64683 id.nn.benchmark-13156 (13131) [000] d..2 24573.865957: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
64684  surfaceflinger-23896 (23896) [000] .... 24573.865962: binder_transaction_received: transaction=1670128
64685  HwBinder:598_3-633   (  598) [004] d..2 24573.865965: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
64686  surfaceflinger-23896 (23896) [000] d..2 24573.866088: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=005
64687           <...>-13154 (-----) [005] dnh1 24573.866114: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=005
64688           <...>-13154 (-----) [005] d..2 24573.866116: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
64689         rcuop/0-10    (   10) [005] d..2 24573.866119: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
64690  surfaceflinger-23896 (23896) [000] d..2 24573.866231: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
64691 crtc_commit:111-253   (  253) [002] d..2 24573.866473: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13362 next_prio=110
64692           <...>-13362 (-----) [002] ...1 24573.866482: tracing_mark_write: E|13131
64693           <...>-13362 (-----) [002] ...1 24573.866485: tracing_mark_write: E|13131
64694           <...>-13362 (-----) [002] ...1 24573.866556: tracing_mark_write: E|13131
64695           <...>-13362 (-----) [002] d..1 24573.866561: sched_waking: comm=id.nn.benchmark pid=13361 prio=110 target_cpu=002
64696 id.nn.benchmark-13159 (13131) [004] dnh1 24573.866588: sched_wakeup: comm=id.nn.benchmark pid=13361 prio=110 target_cpu=004
64697 id.nn.benchmark-13159 (13131) [004] d..2 24573.866616: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13361 next_prio=110
64698           <...>-13362 (-----) [002] d.h3 24573.866616: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
64699           <...>-13361 (-----) [004] d..2 24573.866627: sched_switch: prev_comm=id.nn.benchmark prev_pid=13361 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
64700           <...>-13362 (-----) [002] d.h3 24573.866629: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
64701           <...>-13154 (-----) [005] dnh1 24573.866632: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
64702           <...>-13154 (-----) [005] d..2 24573.866634: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
64703           <...>-13362 (-----) [002] dnh4 24573.866635: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
64704         sugov:4-560   (  560) [005] d..2 24573.866638: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
64705           <...>-13362 (-----) [002] d..2 24573.866641: sched_switch: prev_comm=id.nn.benchmark prev_pid=13362 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
64706         sugov:0-559   (  559) [002] d..2 24573.866648: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13362 next_prio=110
64707           <...>-13362 (-----) [002] ...1 24573.866665: tracing_mark_write: E|13131
64708           <...>-13362 (-----) [002] d..1 24573.866881: sched_waking: comm=id.nn.benchmark pid=13361 prio=110 target_cpu=004
64709           <...>-13362 (-----) [002] dn.2 24573.866898: sched_wakeup: comm=id.nn.benchmark pid=13361 prio=110 target_cpu=002
64710           <...>-13362 (-----) [002] d..2 24573.866923: sched_switch: prev_comm=id.nn.benchmark prev_pid=13362 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13361 next_prio=110
64711           <...>-13361 (-----) [002] d..1 24573.867028: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
64712 id.nn.benchmark-13159 (13131) [004] dnh1 24573.867048: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
64713 id.nn.benchmark-13159 (13131) [004] d..2 24573.867050: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
64714           <...>-13131 (-----) [004] d..2 24573.867055: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
64715           <...>-13361 (-----) [002] d..1 24573.867098: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
64716 id.nn.benchmark-13159 (13131) [004] dnh1 24573.867122: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
64717 id.nn.benchmark-13159 (13131) [004] d..2 24573.867125: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
64718           <...>-13131 (-----) [004] ...1 24573.867138: tracing_mark_write: E|13131
64719           <...>-13131 (-----) [004] ...1 24573.867140: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
64720           <...>-13131 (-----) [004] ...1 24573.867143: tracing_mark_write: E|13131
64721           <...>-13131 (-----) [004] ...1 24573.867144: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
64722           <...>-13131 (-----) [004] ...1 24573.867147: tracing_mark_write: E|13131
64723           <...>-13361 (-----) [002] d..2 24573.867179: sched_switch: prev_comm=id.nn.benchmark prev_pid=13361 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13362 next_prio=110
64724           <...>-13362 (-----) [002] d..2 24573.867203: sched_switch: prev_comm=id.nn.benchmark prev_pid=13362 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
64725           <...>-13131 (-----) [004] ...1 24573.867210: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
64726           <...>-13131 (-----) [004] ...1 24573.867233: tracing_mark_write: E|13131
64727           <...>-13131 (-----) [004] ...1 24573.867235: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
64728           <...>-13131 (-----) [004] ...1 24573.867237: tracing_mark_write: E|13131
64729           <...>-13131 (-----) [004] ...1 24573.867239: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
64730           <...>-13131 (-----) [004] ...1 24573.867241: tracing_mark_write: E|13131
64731           <...>-13131 (-----) [004] ...1 24573.867243: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
64732           <...>-13131 (-----) [004] ...1 24573.867308: tracing_mark_write: E|13131
64733           <...>-13131 (-----) [004] ...1 24573.867309: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
64734           <...>-13131 (-----) [004] d..2 24573.867315: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
64735     logd.writer-563   (  555) [002] d..2 24573.867458: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13363 next_prio=110
64736           <...>-13363 (-----) [002] d.h4 24573.867488: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
64737           <...>-13363 (-----) [002] d.h4 24573.867499: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
64738 id.nn.benchmark-13159 (13131) [004] dnh1 24573.867503: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
64739           <...>-13363 (-----) [002] dnh5 24573.867505: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
64740 id.nn.benchmark-13159 (13131) [004] d..2 24573.867506: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
64741         sugov:4-560   (  560) [004] d..2 24573.867510: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
64742           <...>-13363 (-----) [002] d..2 24573.867512: sched_switch: prev_comm=id.nn.benchmark prev_pid=13363 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
64743         sugov:0-559   (  559) [002] d..2 24573.867518: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13363 next_prio=110
64744 id.nn.benchmark-13160 (13131) [007] d.s2 24573.867555: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
64745 id.nn.benchmark-13160 (13131) [007] d.s3 24573.867565: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
64746 id.nn.benchmark-13159 (13131) [004] d..2 24573.867571: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
64747           <...>-13363 (-----) [002] d..2 24573.867596: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
64748           <...>-13363 (-----) [002] d..3 24573.867603: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
64749  kworker/u16:15-18488 (18488) [004] d..2 24573.867669: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
64750           <...>-13363 (-----) [002] d..2 24573.867905: sched_switch: prev_comm=id.nn.benchmark prev_pid=13363 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
64751     logd.writer-563   (  555) [002] d..2 24573.868075: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13364 next_prio=110
64752           <...>-13364 (-----) [002] ...1 24573.868101: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
64753           <...>-13364 (-----) [002] ...1 24573.868106: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
64754           <...>-13364 (-----) [002] d..2 24573.868163: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
64755           <...>-13364 (-----) [002] d..3 24573.868172: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
64756           <...>-13364 (-----) [002] ...1 24573.868238: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64757           <...>-13364 (-----) [002] ...1 24573.868243: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64758           <...>-13364 (-----) [002] ...1 24573.870213: tracing_mark_write: E|13131
64759           <...>-13364 (-----) [002] ...1 24573.870217: tracing_mark_write: E|13131
64760           <...>-13364 (-----) [002] ...1 24573.870228: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64761           <...>-13364 (-----) [002] ...1 24573.870232: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64762           <...>-13154 (-----) [005] d.s1 24573.870885: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
64763 id.nn.benchmark-13160 (13131) [007] d.s2 24573.870888: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
64764           <...>-13154 (-----) [005] dns2 24573.870896: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
64765 id.nn.benchmark-13160 (13131) [007] d.s3 24573.870898: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
64766           <...>-13154 (-----) [005] d..2 24573.870899: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
64767     rcu_preempt-7     (    7) [005] d..2 24573.870901: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=006
64768 id.nn.benchmark-13159 (13131) [004] d..2 24573.870904: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
64769     rcu_preempt-7     (    7) [005] d..3 24573.870911: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=006
64770     rcu_preempt-7     (    7) [005] d..2 24573.870914: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
64771 id.nn.benchmark-13155 (13131) [006] d..2 24573.870918: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
64772         rcuop/2-29    (   29) [006] d..2 24573.870948: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
64773           <...>-13364 (-----) [002] ...1 24573.870966: tracing_mark_write: E|13131
64774           <...>-13364 (-----) [002] ...1 24573.870971: tracing_mark_write: E|13131
64775           <...>-13364 (-----) [002] ...1 24573.870987: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64776           <...>-13364 (-----) [002] ...1 24573.870991: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64777  kworker/u16:15-18488 (18488) [004] d..2 24573.871113: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
64778           <...>-13364 (-----) [002] ...1 24573.871320: tracing_mark_write: E|13131
64779           <...>-13364 (-----) [002] ...1 24573.871323: tracing_mark_write: E|13131
64780           <...>-13364 (-----) [002] ...1 24573.871334: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64781           <...>-13364 (-----) [002] ...1 24573.871338: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64782           <...>-13364 (-----) [002] ...1 24573.871571: tracing_mark_write: E|13131
64783           <...>-13364 (-----) [002] ...1 24573.871574: tracing_mark_write: E|13131
64784           <...>-13364 (-----) [002] ...1 24573.871584: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64785           <...>-13364 (-----) [002] ...1 24573.871588: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64786           <...>-13364 (-----) [002] ...1 24573.871976: tracing_mark_write: E|13131
64787           <...>-13364 (-----) [002] ...1 24573.871980: tracing_mark_write: E|13131
64788           <...>-13364 (-----) [002] ...1 24573.871989: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64789           <...>-13364 (-----) [002] ...1 24573.871994: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64790           <...>-13364 (-----) [002] ...1 24573.872380: tracing_mark_write: E|13131
64791           <...>-13364 (-----) [002] ...1 24573.872383: tracing_mark_write: E|13131
64792           <...>-13364 (-----) [002] ...1 24573.872401: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64793           <...>-13364 (-----) [002] ...1 24573.872405: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64794           <...>-13364 (-----) [002] ...1 24573.872599: tracing_mark_write: E|13131
64795           <...>-13364 (-----) [002] ...1 24573.872603: tracing_mark_write: E|13131
64796           <...>-13364 (-----) [002] ...1 24573.872616: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64797           <...>-13364 (-----) [002] ...1 24573.872620: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64798           <...>-13364 (-----) [002] ...1 24573.872692: tracing_mark_write: E|13131
64799           <...>-13364 (-----) [002] ...1 24573.872696: tracing_mark_write: E|13131
64800           <...>-13364 (-----) [002] ...1 24573.872706: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
64801           <...>-13364 (-----) [002] ...1 24573.872710: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
64802 id.nn.benchmark-13156 (13131) [000] d.h4 24573.872929: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
64803 id.nn.benchmark-13156 (13131) [000] d.h5 24573.872954: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
64804           <...>-13364 (-----) [002] d..2 24573.872962: sched_switch: prev_comm=id.nn.benchmark prev_pid=13364 prev_prio=110 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
64805 id.nn.benchmark-13156 (13131) [000] d.h4 24573.872967: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
64806 id.nn.benchmark-13159 (13131) [004] dnh1 24573.872984: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
64807  crtc_event:111-254   (  254) [002] d..2 24573.872986: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13364 next_prio=110
64808 id.nn.benchmark-13159 (13131) [004] d..2 24573.872987: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
64809 id.nn.benchmark-13156 (13131) [000] d.h2 24573.873018: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
64810           <...>-13364 (-----) [002] ...1 24573.873027: tracing_mark_write: E|13131
64811 id.nn.benchmark-13156 (13131) [000] d.h2 24573.873029: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
64812           <...>-13364 (-----) [002] ...1 24573.873031: tracing_mark_write: E|13131
64813           <...>-13154 (-----) [005] dnh1 24573.873032: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
64814           <...>-13154 (-----) [005] d..2 24573.873035: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
64815 id.nn.benchmark-13156 (13131) [000] d.h3 24573.873037: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
64816         sugov:4-560   (  560) [005] d..2 24573.873039: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
64817           <...>-13364 (-----) [002] d..2 24573.873046: sched_switch: prev_comm=id.nn.benchmark prev_pid=13364 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
64818         sugov:0-559   (  559) [002] d..2 24573.873054: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13364 next_prio=110
64819           <...>-13364 (-----) [002] ...1 24573.873059: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
64820           <...>-13364 (-----) [002] ...1 24573.873063: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
64821 crtc_commit:111-253   (  253) [004] d..2 24573.873078: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
64822           <...>-13364 (-----) [002] ...1 24573.873109: tracing_mark_write: E|13131
64823           <...>-13364 (-----) [002] ...1 24573.873112: tracing_mark_write: E|13131
64824           <...>-13364 (-----) [002] ...1 24573.873121: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
64825           <...>-13364 (-----) [002] ...1 24573.873125: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
64826           <...>-13364 (-----) [002] ...1 24573.873143: tracing_mark_write: E|13131
64827           <...>-13364 (-----) [002] ...1 24573.873146: tracing_mark_write: E|13131
64828           <...>-13364 (-----) [002] ...1 24573.873156: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
64829           <...>-13364 (-----) [002] ...1 24573.873158: tracing_mark_write: E|13131
64830           <...>-13364 (-----) [002] ...1 24573.873169: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
64831           <...>-13364 (-----) [002] ...1 24573.873174: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
64832           <...>-13364 (-----) [002] ...1 24573.874026: tracing_mark_write: E|13131
64833           <...>-13364 (-----) [002] ...1 24573.874028: tracing_mark_write: E|13131
64834           <...>-13364 (-----) [002] ...1 24573.874036: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64835           <...>-13364 (-----) [002] ...1 24573.874040: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64836           <...>-13364 (-----) [002] ...1 24573.874123: tracing_mark_write: E|13131
64837           <...>-13364 (-----) [002] ...1 24573.874126: tracing_mark_write: E|13131
64838           <...>-13364 (-----) [002] ...1 24573.874175: tracing_mark_write: E|13131
64839           <...>-13364 (-----) [002] d..1 24573.874180: sched_waking: comm=id.nn.benchmark pid=13363 prio=110 target_cpu=002
64840           <...>-13364 (-----) [002] dn.2 24573.874193: sched_wakeup: comm=id.nn.benchmark pid=13363 prio=110 target_cpu=002
64841           <...>-13364 (-----) [002] d..2 24573.874199: sched_switch: prev_comm=id.nn.benchmark prev_pid=13364 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13363 next_prio=110
64842           <...>-13363 (-----) [002] d..2 24573.874212: sched_switch: prev_comm=id.nn.benchmark prev_pid=13363 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13364 next_prio=110
64843 id.nn.benchmark-13159 (13131) [004] d.s2 24573.874220: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
64844 id.nn.benchmark-13160 (13131) [007] d.s2 24573.874222: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
64845 id.nn.benchmark-13160 (13131) [007] d.s3 24573.874233: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
64846 id.nn.benchmark-13160 (13131) [007] d.s2 24573.874234: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
64847 id.nn.benchmark-13159 (13131) [004] d..2 24573.874236: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
64848           <...>-13364 (-----) [002] dnh1 24573.874238: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
64849 id.nn.benchmark-13160 (13131) [007] dns3 24573.874240: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
64850           <...>-13364 (-----) [002] d..2 24573.874243: sched_switch: prev_comm=id.nn.benchmark prev_pid=13364 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
64851 id.nn.benchmark-13160 (13131) [007] d..2 24573.874244: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/7:0 next_pid=12892 next_prio=120
64852  crtc_event:111-254   (  254) [002] d..2 24573.874254: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13364 next_prio=110
64853     kworker/7:0-12892 (12892) [007] d..2 24573.874255: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
64854           <...>-13364 (-----) [002] ...1 24573.874268: tracing_mark_write: E|13131
64855  kworker/u16:15-18488 (18488) [004] d..2 24573.874274: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
64856           <...>-13364 (-----) [002] d..1 24573.874455: sched_waking: comm=id.nn.benchmark pid=13363 prio=110 target_cpu=002
64857           <...>-13364 (-----) [002] dn.2 24573.874464: sched_wakeup: comm=id.nn.benchmark pid=13363 prio=110 target_cpu=002
64858           <...>-13364 (-----) [002] d..2 24573.874469: sched_switch: prev_comm=id.nn.benchmark prev_pid=13364 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13363 next_prio=110
64859           <...>-13363 (-----) [002] d..1 24573.874559: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
64860 id.nn.benchmark-13159 (13131) [004] dnh1 24573.874575: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
64861 id.nn.benchmark-13159 (13131) [004] d..2 24573.874577: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
64862           <...>-13131 (-----) [004] d..2 24573.874583: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
64863           <...>-13363 (-----) [002] d..1 24573.874620: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
64864 id.nn.benchmark-13159 (13131) [004] dnh1 24573.874646: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
64865 id.nn.benchmark-13159 (13131) [004] d..2 24573.874648: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
64866           <...>-13131 (-----) [004] ...1 24573.874660: tracing_mark_write: E|13131
64867           <...>-13131 (-----) [004] ...1 24573.874662: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
64868           <...>-13131 (-----) [004] ...1 24573.874664: tracing_mark_write: E|13131
64869           <...>-13131 (-----) [004] ...1 24573.874665: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
64870           <...>-13131 (-----) [004] ...1 24573.874667: tracing_mark_write: E|13131
64871           <...>-13363 (-----) [002] d..2 24573.874692: sched_switch: prev_comm=id.nn.benchmark prev_pid=13363 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13364 next_prio=110
64872           <...>-13364 (-----) [002] d..2 24573.874712: sched_switch: prev_comm=id.nn.benchmark prev_pid=13364 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
64873           <...>-13131 (-----) [004] ...1 24573.874727: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
64874           <...>-13131 (-----) [004] ...1 24573.874749: tracing_mark_write: E|13131
64875           <...>-13131 (-----) [004] ...1 24573.874751: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
64876           <...>-13131 (-----) [004] ...1 24573.874754: tracing_mark_write: E|13131
64877           <...>-13131 (-----) [004] ...1 24573.874756: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
64878           <...>-13131 (-----) [004] ...1 24573.874757: tracing_mark_write: E|13131
64879           <...>-13131 (-----) [004] ...1 24573.874759: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
64880           <...>-13131 (-----) [004] ...1 24573.874802: tracing_mark_write: E|13131
64881           <...>-13131 (-----) [004] ...1 24573.874803: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
64882           <...>-13131 (-----) [004] d..2 24573.874808: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
64883     logd.writer-563   (  555) [002] d..2 24573.874929: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13365 next_prio=110
64884           <...>-13365 (-----) [002] d.h4 24573.874962: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
64885           <...>-13365 (-----) [002] d.h4 24573.874974: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
64886 id.nn.benchmark-13159 (13131) [004] dnh1 24573.874978: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
64887           <...>-13365 (-----) [002] dnh5 24573.874980: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
64888 id.nn.benchmark-13159 (13131) [004] d..2 24573.874981: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
64889         sugov:4-560   (  560) [004] d..2 24573.874985: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
64890           <...>-13365 (-----) [002] d..2 24573.874986: sched_switch: prev_comm=id.nn.benchmark prev_pid=13365 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
64891         sugov:0-559   (  559) [002] d..2 24573.874993: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13365 next_prio=110
64892           <...>-13365 (-----) [002] d..2 24573.875048: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
64893           <...>-13365 (-----) [002] d..3 24573.875055: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
64894 id.nn.benchmark-13156 (13131) [000] d.h4 24573.875281: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
64895 id.nn.benchmark-13156 (13131) [000] d.h5 24573.875297: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
64896           <...>-13365 (-----) [002] d..2 24573.875304: sched_switch: prev_comm=id.nn.benchmark prev_pid=13365 prev_prio=110 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
64897 crtc_commit:111-253   (  253) [002] d..2 24573.875358: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
64898     logd.writer-563   (  555) [002] d..2 24573.875446: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13365 next_prio=110
64899           <...>-13365 (-----) [002] d..1 24573.875452: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
64900           <...>-13365 (-----) [002] d..2 24573.875461: sched_blocked_reason: pid=563 iowait=0 caller=proc_pid_cmdline_read+0x63c/0x668
64901           <...>-13365 (-----) [002] d..2 24573.875464: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
64902           <...>-13365 (-----) [002] d..2 24573.875474: sched_switch: prev_comm=id.nn.benchmark prev_pid=13365 prev_prio=110 prev_state=D ==> next_comm=logd.writer next_pid=563 next_prio=130
64903     logd.writer-563   (  555) [002] d..1 24573.875477: sched_waking: comm=id.nn.benchmark pid=13365 prio=110 target_cpu=002
64904     logd.writer-563   (  555) [002] d..2 24573.875483: sched_blocked_reason: pid=13365 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
64905     logd.writer-563   (  555) [002] dn.2 24573.875486: sched_wakeup: comm=id.nn.benchmark pid=13365 prio=110 target_cpu=002
64906     logd.writer-563   (  555) [002] d..2 24573.875490: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13365 next_prio=110
64907           <...>-13365 (-----) [002] d..2 24573.875549: sched_switch: prev_comm=id.nn.benchmark prev_pid=13365 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
64908 id.nn.benchmark-13156 (13131) [000] d.h4 24573.875568: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
64909 id.nn.benchmark-13156 (13131) [000] d.h5 24573.875576: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
64910     logd.writer-563   (  555) [002] d..2 24573.875582: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
64911  crtc_event:111-254   (  254) [002] d..2 24573.875597: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
64912     logd.writer-563   (  555) [002] d..2 24573.875653: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13366 next_prio=110
64913           <...>-13366 (-----) [002] ...1 24573.875679: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
64914           <...>-13366 (-----) [002] ...1 24573.875684: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
64915           <...>-13366 (-----) [002] d..2 24573.875740: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
64916           <...>-13366 (-----) [002] d..3 24573.875748: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
64917           <...>-13366 (-----) [002] ...1 24573.875813: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
64918           <...>-13366 (-----) [002] ...1 24573.875819: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
64919           <...>-13366 (-----) [002] d.h1 24573.877349: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
64920           <...>-13366 (-----) [002] dnh2 24573.877359: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
64921           <...>-13366 (-----) [002] d..2 24573.877367: sched_switch: prev_comm=id.nn.benchmark prev_pid=13366 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
64922        DispSync-23904 (23896) [002] d..1 24573.877388: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
64923        DispSync-23904 (23896) [002] d..2 24573.877404: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
64924 id.nn.benchmark-13156 (13131) [000] d..2 24573.877413: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
64925        DispSync-23904 (23896) [002] d..2 24573.877418: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13366 next_prio=110
64926  appEventThread-23905 (23896) [000] d..3 24573.877452: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
64927 id.nn.benchmark-13155 (13131) [006] dnh1 24573.877468: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
64928 id.nn.benchmark-13155 (13131) [006] d..2 24573.877471: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
64929  appEventThread-23905 (23896) [000] d..2 24573.877477: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
64930 id.nn.benchmark-13160 (13131) [007] d.s2 24573.877555: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
64931           <...>-13154 (-----) [005] d.H2 24573.877598: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
64932           <...>-13366 (-----) [002] dnH1 24573.877600: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
64933           <...>-13366 (-----) [002] dns2 24573.877602: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
64934           <...>-13154 (-----) [005] d.H3 24573.877604: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
64935           <...>-13154 (-----) [005] d.H2 24573.877604: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
64936 id.nn.benchmark-13159 (13131) [004] d..2 24573.877610: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
64937         sugov:4-560   (  560) [004] d..2 24573.877613: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
64938           <...>-13366 (-----) [002] dns3 24573.877620: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
64939           <...>-13366 (-----) [002] dnH2 24573.877625: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
64940           <...>-13366 (-----) [002] d..2 24573.877652: sched_switch: prev_comm=id.nn.benchmark prev_pid=13366 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
64941         sugov:0-559   (  559) [002] d..2 24573.877659: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
64942<...>-24151 ( 24151) [006] .... 24573.877685: binder_transaction: transaction=1670129 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
64943<...>-24151 ( 24151) [006] d..4 24573.877691: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
64944<...>-24151 ( 24151) [006] d..5 24573.877706: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
64945           <...>-13154 (-----) [005] d..2 24573.877712: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
64946<...>-23903 ( 23896) [005] .... 24573.877716: binder_transaction_received: transaction=1670129
64947<...>-24151 ( 24151) [006] d..3 24573.877725: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
64948<...>-23903 ( 23896) [005] d..1 24573.877735: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
64949<...>-24151 ( 24151) [006] d..4 24573.877736: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
64950  kworker/u16:15-18488 (18488) [002] d..2 24573.877742: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
64951 id.nn.benchmark-13160 (13131) [007] d..2 24573.877742: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
64952     rcu_preempt-7     (    7) [002] d..2 24573.877746: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=005
64953    RenderThread-24437 (24151) [007] d..2 24573.877759: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
64954     rcu_preempt-7     (    7) [002] d..3 24573.877762: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
64955<...>-23903 ( 23896) [005] d..2 24573.877763: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
64956     rcu_preempt-7     (    7) [002] dnh2 24573.877767: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
64957     rcu_preempt-7     (    7) [002] d..2 24573.877791: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
64958<...>-24151 ( 24151) [006] d..3 24573.877795: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
64959  appEventThread-23905 (23896) [002] d.h1 24573.877825: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
64960<...>-24151 ( 24151) [006] d..2 24573.877829: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
64961  appEventThread-23905 (23896) [002] d..2 24573.877834: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
64962         rcuop/0-10    (   10) [002] d..2 24573.877844: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
64963    RenderThread-24437 (24151) [002] d..1 24573.877953: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
64964 id.nn.benchmark-13155 (13131) [006] dnh1 24573.877968: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
64965 id.nn.benchmark-13155 (13131) [006] d..2 24573.877971: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
64966<...>-24151 ( 24151) [006] d..2 24573.877992: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
64967    RenderThread-24437 (24151) [002] .... 24573.878011: binder_transaction: transaction=1670130 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
64968    RenderThread-24437 (24151) [002] d..4 24573.878016: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
64969           <...>-13154 (-----) [005] dnh1 24573.878029: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
64970           <...>-13154 (-----) [005] d..2 24573.878032: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
64971<...>-23903 ( 23896) [005] .... 24573.878033: binder_transaction_received: transaction=1670130
64972    RenderThread-24437 (24151) [002] d..2 24573.878034: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
64973     rcu_preempt-7     (    7) [002] d..2 24573.878042: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13366 next_prio=110
64974<...>-23903 ( 23896) [005] .... 24573.878059: binder_transaction: transaction=1670131 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
64975<...>-23903 ( 23896) [005] d..2 24573.878064: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
64976           <...>-13366 (-----) [002] dnh1 24573.878077: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
64977<...>-23903 ( 23896) [005] d..2 24573.878078: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
64978           <...>-13366 (-----) [002] d..2 24573.878083: sched_switch: prev_comm=id.nn.benchmark prev_pid=13366 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=24437 next_prio=120
64979    RenderThread-24437 (24151) [002] .... 24573.878087: binder_transaction_received: transaction=1670131
64980           <...>-13154 (-----) [005] d..3 24573.878200: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
64981           <...>-13154 (-----) [005] d..2 24573.878208: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
64982 id.nn.benchmark-13156 (13131) [000] dnh1 24573.878211: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
64983 id.nn.benchmark-13156 (13131) [000] d..2 24573.878216: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
64984          <idle>-0     (-----) [005] d..1 24573.878224: cpu_idle: state=0 cpu_id=5
64985          <idle>-0     (-----) [005] .n.1 24573.878244: cpu_idle: state=4294967295 cpu_id=5
64986          <idle>-0     (-----) [005] d..2 24573.878263: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
64987     migration/0-13    (   13) [000] d.h3 24573.878264: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
64988     migration/0-13    (   13) [000] d.h3 24573.878275: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
64989 id.nn.benchmark-13156 (13131) [005] dnh1 24573.878278: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
64990 id.nn.benchmark-13156 (13131) [005] d..2 24573.878281: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
64991         sugov:4-560   (  560) [005] d..2 24573.878285: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
64992     migration/0-13    (   13) [000] d.h4 24573.878285: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
64993     migration/0-13    (   13) [000] d..2 24573.878292: 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
64994         sugov:0-559   (  559) [000] d..2 24573.878314: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
64995     logd.writer-563   (  555) [000] d..2 24573.878449: 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
64996          <idle>-0     (-----) [000] d..1 24573.878464: cpu_idle: state=0 cpu_id=0
64997 id.nn.benchmark-13160 (13131) [007] d..3 24573.878621: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
64998 id.nn.benchmark-13160 (13131) [007] d..2 24573.878629: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
64999           <...>-13157 (-----) [001] dnh1 24573.878632: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
65000          <idle>-0     (-----) [007] d..1 24573.878637: cpu_idle: state=0 cpu_id=7
65001           <...>-13157 (-----) [001] d..2 24573.878638: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
65002          <idle>-0     (-----) [007] .n.1 24573.878662: cpu_idle: state=4294967295 cpu_id=7
65003          <idle>-0     (-----) [007] d..2 24573.878679: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
65004     migration/1-17    (   17) [001] d..2 24573.878691: 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
65005          <idle>-0     (-----) [001] d..1 24573.878704: cpu_idle: state=0 cpu_id=1
65006 id.nn.benchmark-13159 (13131) [004] d..3 24573.878775: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
65007 id.nn.benchmark-13159 (13131) [004] d..2 24573.878784: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
65008 id.nn.benchmark-13158 (13131) [003] dnh1 24573.878787: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
65009          <idle>-0     (-----) [004] d..1 24573.878793: cpu_idle: state=0 cpu_id=4
65010 id.nn.benchmark-13158 (13131) [003] d..2 24573.878794: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
65011          <idle>-0     (-----) [004] .n.1 24573.878819: cpu_idle: state=4294967295 cpu_id=4
65012          <idle>-0     (-----) [004] d..2 24573.878840: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
65013<...>-33 ( 33) [003] d.h3 24573.878841: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
65014<...>-33 ( 33) [003] d.h3 24573.878849: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
65015 id.nn.benchmark-13156 (13131) [005] dnh1 24573.878851: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
65016 id.nn.benchmark-13156 (13131) [005] d..2 24573.878854: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
65017         sugov:4-560   (  560) [005] d..2 24573.878856: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
65018<...>-33 ( 33) [003] d.h4 24573.878858: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
65019          <idle>-0     (-----) [000] .n.1 24573.878863: cpu_idle: state=4294967295 cpu_id=0
65020          <idle>-0     (-----) [000] d..2 24573.878869: 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
65021<...>-33 ( 33) [003] d..2 24573.878879: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13366 next_prio=110
65022         sugov:0-559   (  559) [000] d..2 24573.878882: 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
65023           <...>-13366 (-----) [003] d..1 24573.878885: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
65024          <idle>-0     (-----) [000] d..1 24573.878887: cpu_idle: state=0 cpu_id=0
65025 id.nn.benchmark-13156 (13131) [005] d.h1 24573.878897: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
65026           <...>-13366 (-----) [003] d..1 24573.878899: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=004
65027           <...>-13366 (-----) [003] d..1 24573.878908: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=007
65028 id.nn.benchmark-13158 (13131) [004] d.h1 24573.878910: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=004
65029           <...>-13157 (-----) [007] d.h1 24573.878919: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=007
65030    RenderThread-24437 (24151) [002] d..2 24573.879066: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
65031 id.nn.benchmark-13160 (13131) [002] d.h1 24573.879141: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
65032 id.nn.benchmark-13160 (13131) [002] d.h2 24573.879153: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
65033 id.nn.benchmark-13160 (13131) [002] d.h2 24573.879159: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
65034          <idle>-0     (-----) [000] .n.1 24573.879163: cpu_idle: state=4294967295 cpu_id=0
65035          <idle>-0     (-----) [000] d..2 24573.879169: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
65036    RenderThread-24437 (24151) [000] d.h2 24573.879266: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
65037    RenderThread-24437 (24151) [000] d.h3 24573.879284: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
65038          <idle>-0     (-----) [001] .n.1 24573.879290: cpu_idle: state=4294967295 cpu_id=1
65039          <idle>-0     (-----) [001] d..2 24573.879297: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
65040 kgsl_worker_thr-246   (  246) [001] d..2 24573.879333: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
65041 kgsl_worker_thr-246   (  246) [001] d..3 24573.879346: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
65042 kgsl_worker_thr-246   (  246) [001] d..2 24573.879355: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
65043    RenderThread-24437 (24151) [000] .... 24573.879361: binder_transaction: transaction=1670132 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
65044    RenderThread-24437 (24151) [000] d..4 24573.879368: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
65045    RenderThread-24437 (24151) [000] d..5 24573.879384: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
65046    RenderThread-24437 (24151) [000] d.h5 24573.879419: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
65047  kworker/u16:15-18488 (18488) [001] d..2 24573.879421: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
65048    RenderThread-24437 (24151) [000] d.h5 24573.879446: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
65049           <...>-13157 (-----) [007] dnh1 24573.879447: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
65050           <...>-13157 (-----) [007] d..2 24573.879450: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
65051    RenderThread-24437 (24151) [000] dnh6 24573.879452: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
65052         sugov:4-560   (  560) [007] d..2 24573.879453: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
65053    RenderThread-24437 (24151) [000] d..2 24573.879458: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
65054         sugov:0-559   (  559) [000] d..2 24573.879465: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
65055<...>-23903 ( 23896) [000] .... 24573.879469: binder_transaction_received: transaction=1670132
65056<...>-23903 ( 23896) [000] .... 24573.879573: binder_transaction: transaction=1670133 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
65057<...>-23903 ( 23896) [000] d..2 24573.879596: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
65058    RenderThread-24437 (24151) [000] .... 24573.879600: binder_transaction_received: transaction=1670133
65059    RenderThread-24437 (24151) [000] d..2 24573.879651: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65060          <idle>-0     (-----) [000] d..1 24573.879660: cpu_idle: state=0 cpu_id=0
65061           <...>-13157 (-----) [007] d.s2 24573.880889: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
65062           <...>-13366 (-----) [003] dnh1 24573.880909: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
65063          <idle>-0     (-----) [000] ...1 24573.880913: cpu_idle: state=4294967295 cpu_id=0
65064           <...>-13366 (-----) [003] d..2 24573.880915: sched_switch: prev_comm=id.nn.benchmark prev_pid=13366 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
65065          <idle>-0     (-----) [000] d..1 24573.880916: cpu_idle: state=0 cpu_id=0
65066  kworker/u16:15-18488 (18488) [003] d..2 24573.881160: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13366 next_prio=110
65067 id.nn.benchmark-13160 (13131) [002] d.h1 24573.881356: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
65068 id.nn.benchmark-13160 (13131) [002] d.h2 24573.881373: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
65069          <idle>-0     (-----) [000] .n.1 24573.881378: cpu_idle: state=4294967295 cpu_id=0
65070          <idle>-0     (-----) [000] d..2 24573.881384: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
65071        DispSync-23904 (23896) [000] d..1 24573.881396: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
65072        DispSync-23904 (23896) [000] d..2 24573.881413: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
65073           <...>-13366 (-----) [003] d..2 24573.881421: sched_switch: prev_comm=id.nn.benchmark prev_pid=13366 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
65074        DispSync-23904 (23896) [000] d..2 24573.881430: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65075          <idle>-0     (-----) [000] d..1 24573.881437: cpu_idle: state=0 cpu_id=0
65076   sfEventThread-23906 (23896) [003] d..3 24573.881451: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
65077   sfEventThread-23906 (23896) [003] d..4 24573.881464: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
65078          <idle>-0     (-----) [000] .n.1 24573.881468: cpu_idle: state=4294967295 cpu_id=0
65079          <idle>-0     (-----) [000] d..2 24573.881474: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
65080   sfEventThread-23906 (23896) [003] d..2 24573.881477: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13366 next_prio=110
65081  surfaceflinger-23896 (23896) [000] d..1 24573.881700: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
65082  surfaceflinger-23896 (23896) [000] d..2 24573.881712: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
65083           <...>-13366 (-----) [003] d..2 24573.881720: sched_switch: prev_comm=id.nn.benchmark prev_pid=13366 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
65084   sfEventThread-23906 (23896) [003] d..2 24573.881734: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13366 next_prio=110
65085  surfaceflinger-23896 (23896) [000] ...1 24573.881842: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
65086  surfaceflinger-23896 (23896) [000] ...1 24573.881846: tracing_mark_write: E|23896
65087  surfaceflinger-23896 (23896) [000] .... 24573.881889: binder_transaction: transaction=1670134 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
65088  surfaceflinger-23896 (23896) [000] ...2 24573.881907: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
65089  surfaceflinger-23896 (23896) [000] d..4 24573.881913: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=004
65090  surfaceflinger-23896 (23896) [000] d..5 24573.881934: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
65091           <...>-13366 (-----) [003] d..2 24573.881941: sched_switch: prev_comm=id.nn.benchmark prev_pid=13366 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
65092  surfaceflinger-23896 (23896) [000] d.h5 24573.881969: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
65093  surfaceflinger-23896 (23896) [000] d.h5 24573.881976: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
65094           <...>-13157 (-----) [007] dnh1 24573.881979: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
65095           <...>-13157 (-----) [007] d..2 24573.881982: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
65096         sugov:4-560   (  560) [007] d..2 24573.881985: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
65097  surfaceflinger-23896 (23896) [000] d.h6 24573.881988: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
65098  HwBinder:598_3-633   (  598) [003] .... 24573.881994: binder_transaction_received: transaction=1670134
65099 id.nn.benchmark-13159 (13131) [001] d..2 24573.881997: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
65100  surfaceflinger-23896 (23896) [000] d..2 24573.882004: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65101         sugov:0-559   (  559) [001] d..2 24573.882005: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
65102          <idle>-0     (-----) [000] d..1 24573.882012: cpu_idle: state=0 cpu_id=0
65103  HwBinder:598_3-633   (  598) [003] ...1 24573.882030: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
65104  HwBinder:598_3-633   (  598) [003] ...1 24573.882116: tracing_mark_write: B|598|HWCSession::PresentDisplay::
65105  HwBinder:598_3-633   (  598) [003] ...1 24573.882232: tracing_mark_write: B|598|HWDeviceDRM::Commit::
65106  HwBinder:598_3-633   (  598) [003] ...1 24573.882239: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
65107  HwBinder:598_3-633   (  598) [003] d..2 24573.882632: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
65108  HwBinder:598_3-633   (  598) [003] d..3 24573.882651: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
65109          <idle>-0     (-----) [000] .n.1 24573.882656: cpu_idle: state=4294967295 cpu_id=0
65110          <idle>-0     (-----) [000] d..2 24573.882662: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
65111  HwBinder:598_3-633   (  598) [003] ...1 24573.882712: tracing_mark_write: E|598
65112  HwBinder:598_3-633   (  598) [003] ...1 24573.882715: tracing_mark_write: E|598
65113  HwBinder:598_3-633   (  598) [003] ...1 24573.882755: tracing_mark_write: E|598
65114  HwBinder:598_3-633   (  598) [003] ...1 24573.882790: tracing_mark_write: E|598
65115  HwBinder:598_3-633   (  598) [003] .... 24573.882799: binder_transaction: transaction=1670135 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
65116  HwBinder:598_3-633   (  598) [003] d..2 24573.882810: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
65117  HwBinder:598_3-633   (  598) [003] d..3 24573.882825: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
65118  HwBinder:598_3-633   (  598) [003] .... 24573.882828: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
65119 id.nn.benchmark-13159 (13131) [001] d..2 24573.882832: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
65120  surfaceflinger-23896 (23896) [001] .... 24573.882839: binder_transaction_received: transaction=1670135
65121  HwBinder:598_3-633   (  598) [003] d..2 24573.882870: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13366 next_prio=110
65122  surfaceflinger-23896 (23896) [001] d..2 24573.883077: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
65123 crtc_commit:111-253   (  253) [000] d..2 24573.883273: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
65124          <idle>-0     (-----) [000] d..1 24573.883280: cpu_idle: state=0 cpu_id=0
65125 id.nn.benchmark-13158 (13131) [004] d..3 24573.883447: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
65126 id.nn.benchmark-13155 (13131) [006] d..2 24573.883453: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
65127 id.nn.benchmark-13158 (13131) [004] d..2 24573.883454: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
65128 id.nn.benchmark-13156 (13131) [005] d..2 24573.883455: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
65129 id.nn.benchmark-13159 (13131) [001] dnh1 24573.883457: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
65130          <idle>-0     (-----) [004] d..1 24573.883457: cpu_idle: state=0 cpu_id=4
65131          <idle>-0     (-----) [005] d..1 24573.883459: cpu_idle: state=0 cpu_id=5
65132 id.nn.benchmark-13159 (13131) [001] d..2 24573.883462: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
65133           <...>-13366 (-----) [003] ...1 24573.883470: tracing_mark_write: E|13131
65134           <...>-13366 (-----) [003] ...1 24573.883475: tracing_mark_write: E|13131
65135          <idle>-0     (-----) [004] .n.1 24573.883484: cpu_idle: state=4294967295 cpu_id=4
65136           <...>-13366 (-----) [003] ...1 24573.883495: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
65137           <...>-13366 (-----) [003] ...1 24573.883500: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
65138          <idle>-0     (-----) [004] d..2 24573.883506: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
65139     migration/1-17    (   17) [001] d.h3 24573.883508: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
65140           <...>-13157 (-----) [007] d..2 24573.883510: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
65141          <idle>-0     (-----) [007] d..1 24573.883514: cpu_idle: state=0 cpu_id=7
65142     migration/1-17    (   17) [001] d.h3 24573.883518: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
65143          <idle>-0     (-----) [007] dnh2 24573.883522: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
65144          <idle>-0     (-----) [007] .n.1 24573.883525: cpu_idle: state=4294967295 cpu_id=7
65145          <idle>-0     (-----) [007] d..2 24573.883527: 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
65146     migration/1-17    (   17) [001] d.h4 24573.883530: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
65147         sugov:4-560   (  560) [007] d..2 24573.883532: 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
65148          <idle>-0     (-----) [007] d..1 24573.883534: cpu_idle: state=0 cpu_id=7
65149          <idle>-0     (-----) [000] .n.1 24573.883536: cpu_idle: state=4294967295 cpu_id=0
65150          <idle>-0     (-----) [000] d..2 24573.883541: 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
65151     migration/1-17    (   17) [001] d..2 24573.883543: 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
65152          <idle>-0     (-----) [001] d..1 24573.883552: cpu_idle: state=0 cpu_id=1
65153         sugov:0-559   (  559) [000] d..2 24573.883553: 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
65154          <idle>-0     (-----) [000] d..1 24573.883558: cpu_idle: state=0 cpu_id=0
65155          <idle>-0     (-----) [007] ...1 24573.883725: cpu_idle: state=4294967295 cpu_id=7
65156          <idle>-0     (-----) [007] d..1 24573.883726: cpu_idle: state=0 cpu_id=7
65157           <...>-13366 (-----) [003] d..1 24573.883998: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
65158           <...>-13366 (-----) [003] d..1 24573.884015: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=005
65159          <idle>-0     (-----) [005] dnh2 24573.884020: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
65160          <idle>-0     (-----) [005] .n.1 24573.884026: cpu_idle: state=4294967295 cpu_id=5
65161          <idle>-0     (-----) [005] d..2 24573.884029: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
65162           <...>-13366 (-----) [003] d..1 24573.884029: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=007
65163          <idle>-0     (-----) [007] dnh2 24573.884033: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=007
65164          <idle>-0     (-----) [007] .n.1 24573.884035: cpu_idle: state=4294967295 cpu_id=7
65165          <idle>-0     (-----) [007] dn.2 24573.884037: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=007
65166          <idle>-0     (-----) [007] d..2 24573.884039: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
65167           <...>-13366 (-----) [003] d..1 24573.884041: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
65168 id.nn.benchmark-13159 (13131) [004] d.h1 24573.884052: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
65169 id.nn.benchmark-13160 (13131) [002] d.s1 24573.884228: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
65170          <idle>-0     (-----) [000] ...1 24573.884242: cpu_idle: state=4294967295 cpu_id=0
65171          <idle>-0     (-----) [000] d..1 24573.884245: cpu_idle: state=0 cpu_id=0
65172 id.nn.benchmark-13160 (13131) [002] d.s2 24573.884245: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
65173           <...>-13366 (-----) [003] d..2 24573.884254: sched_switch: prev_comm=id.nn.benchmark prev_pid=13366 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
65174     rcu_preempt-7     (    7) [003] d..2 24573.884262: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
65175     rcu_preempt-7     (    7) [003] d..3 24573.884277: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
65176     rcu_preempt-7     (    7) [003] d..2 24573.884279: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=006
65177           <...>-13154 (-----) [006] dnh1 24573.884317: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=006
65178           <...>-13154 (-----) [006] d..2 24573.884319: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
65179     rcu_preempt-7     (    7) [003] d..2 24573.884319: 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
65180         rcuop/0-10    (   10) [003] d..2 24573.884325: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
65181         rcuop/0-10    (   10) [003] d..3 24573.884332: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
65182         rcuop/0-10    (   10) [003] d..2 24573.884337: 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
65183         rcuop/2-29    (   29) [006] d..2 24573.884337: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
65184     rcu_preempt-7     (    7) [003] d..2 24573.884345: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13366 next_prio=110
65185 id.nn.benchmark-13156 (13131) [007] d.s2 24573.887555: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
65186           <...>-13366 (-----) [003] dnh1 24573.887566: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
65187          <idle>-0     (-----) [000] ...1 24573.887567: cpu_idle: state=4294967295 cpu_id=0
65188          <idle>-0     (-----) [000] d..1 24573.887570: cpu_idle: state=0 cpu_id=0
65189           <...>-13366 (-----) [003] d..2 24573.887572: sched_switch: prev_comm=id.nn.benchmark prev_pid=13366 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
65190  kworker/u16:15-18488 (18488) [003] .... 24573.887617: clk_set_rate: l3_cluster0_vote_clk 403200000
65191  kworker/u16:15-18488 (18488) [003] d..2 24573.887630: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13366 next_prio=110
65192           <...>-13154 (-----) [006] d..2 24573.888524: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
65193 id.nn.benchmark-13155 (13131) [005] d..2 24573.888534: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
65194 id.nn.benchmark-13159 (13131) [004] d..3 24573.888554: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
65195 id.nn.benchmark-13156 (13131) [007] d..2 24573.888556: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
65196          <idle>-0     (-----) [007] d..1 24573.888558: cpu_idle: state=0 cpu_id=7
65197 id.nn.benchmark-13159 (13131) [004] d..2 24573.888561: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
65198 id.nn.benchmark-13160 (13131) [002] dnh1 24573.888564: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
65199          <idle>-0     (-----) [004] d..1 24573.888564: cpu_idle: state=0 cpu_id=4
65200 id.nn.benchmark-13160 (13131) [002] d..2 24573.888570: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
65201          <idle>-0     (-----) [004] .n.1 24573.888593: cpu_idle: state=4294967295 cpu_id=4
65202          <idle>-0     (-----) [004] d..2 24573.888615: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
65203     migration/2-25    (   25) [002] d.h3 24573.888616: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
65204           <...>-13366 (-----) [003] ...1 24573.888619: tracing_mark_write: E|13131
65205           <...>-13366 (-----) [003] ...1 24573.888623: tracing_mark_write: E|13131
65206     migration/2-25    (   25) [002] d.h3 24573.888624: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
65207          <idle>-0     (-----) [007] dnh2 24573.888629: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
65208          <idle>-0     (-----) [007] .n.1 24573.888632: cpu_idle: state=4294967295 cpu_id=7
65209     migration/2-25    (   25) [002] d.h4 24573.888632: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
65210          <idle>-0     (-----) [007] d..2 24573.888634: 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
65211          <idle>-0     (-----) [000] .n.1 24573.888637: cpu_idle: state=4294967295 cpu_id=0
65212         sugov:4-560   (  560) [007] d..2 24573.888639: 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
65213          <idle>-0     (-----) [007] d..1 24573.888641: cpu_idle: state=0 cpu_id=7
65214          <idle>-0     (-----) [000] d..2 24573.888642: 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
65215     migration/2-25    (   25) [002] d..2 24573.888646: 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
65216           <...>-13366 (-----) [003] ...1 24573.888648: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
65217           <...>-13366 (-----) [003] ...1 24573.888653: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
65218         sugov:0-559   (  559) [000] d..2 24573.888654: 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
65219          <idle>-0     (-----) [000] d..1 24573.888658: cpu_idle: state=0 cpu_id=0
65220          <idle>-0     (-----) [002] d..1 24573.888663: cpu_idle: state=0 cpu_id=2
65221           <...>-13366 (-----) [003] d..1 24573.888827: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=006
65222          <idle>-0     (-----) [007] ...1 24573.888831: cpu_idle: state=4294967295 cpu_id=7
65223          <idle>-0     (-----) [007] d..1 24573.888833: cpu_idle: state=0 cpu_id=7
65224           <...>-13366 (-----) [003] d..1 24573.888844: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
65225          <idle>-0     (-----) [007] dnh2 24573.888846: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=007
65226          <idle>-0     (-----) [007] .n.1 24573.888848: cpu_idle: state=4294967295 cpu_id=7
65227          <idle>-0     (-----) [007] d..2 24573.888850: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
65228           <...>-13366 (-----) [003] d..1 24573.888853: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=007
65229           <...>-13157 (-----) [005] d.h1 24573.888855: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
65230           <...>-13366 (-----) [003] d..1 24573.888864: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=004
65231           <...>-13154 (-----) [007] d.h1 24573.888864: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=007
65232 id.nn.benchmark-13160 (13131) [004] d.h1 24573.888874: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=004
65233          <idle>-0     (-----) [000] d.h5 24573.889406: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
65234          <idle>-0     (-----) [000] d.h6 24573.889417: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
65235          <idle>-0     (-----) [000] d.h5 24573.889421: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
65236          <idle>-0     (-----) [002] .n.1 24573.889423: cpu_idle: state=4294967295 cpu_id=2
65237          <idle>-0     (-----) [000] dnh6 24573.889425: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
65238          <idle>-0     (-----) [002] d..2 24573.889430: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
65239          <idle>-0     (-----) [000] .n.1 24573.889434: cpu_idle: state=4294967295 cpu_id=0
65240          <idle>-0     (-----) [000] d..2 24573.889440: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
65241  crtc_event:111-254   (  254) [002] d..2 24573.889465: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
65242 id.nn.benchmark-13159 (13131) [002] d.h4 24573.889492: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
65243 id.nn.benchmark-13159 (13131) [002] d.h4 24573.889503: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
65244 id.nn.benchmark-13158 (13131) [006] dnh1 24573.889506: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
65245 id.nn.benchmark-13158 (13131) [006] d..2 24573.889510: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
65246         sugov:4-560   (  560) [006] d..2 24573.889514: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
65247 id.nn.benchmark-13159 (13131) [002] d.h5 24573.889514: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
65248          <idle>-0     (-----) [001] .n.1 24573.889520: cpu_idle: state=4294967295 cpu_id=1
65249          <idle>-0     (-----) [001] d..2 24573.889526: 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
65250         sugov:0-559   (  559) [001] d..2 24573.889552: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
65251 crtc_commit:111-253   (  253) [000] d..2 24573.889588: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
65252           <...>-13366 (-----) [003] ...1 24573.889778: tracing_mark_write: E|13131
65253           <...>-13366 (-----) [003] ...1 24573.889782: tracing_mark_write: E|13131
65254           <...>-13366 (-----) [003] ...1 24573.889798: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
65255           <...>-13366 (-----) [003] ...1 24573.889805: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
65256           <...>-13366 (-----) [003] ...1 24573.890040: tracing_mark_write: E|13131
65257           <...>-13366 (-----) [003] ...1 24573.890043: tracing_mark_write: E|13131
65258           <...>-13366 (-----) [003] ...1 24573.890056: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
65259           <...>-13366 (-----) [003] ...1 24573.890060: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
65260           <...>-13366 (-----) [003] ...1 24573.890466: tracing_mark_write: E|13131
65261           <...>-13366 (-----) [003] ...1 24573.890470: tracing_mark_write: E|13131
65262           <...>-13366 (-----) [003] ...1 24573.890483: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
65263           <...>-13366 (-----) [003] ...1 24573.890487: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
65264           <...>-13157 (-----) [005] d.s2 24573.890890: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
65265 id.nn.benchmark-13156 (13131) [001] d.h2 24573.890897: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
65266           <...>-13366 (-----) [003] d.s1 24573.890898: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
65267 id.nn.benchmark-13156 (13131) [001] dnh3 24573.890901: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
65268 id.nn.benchmark-13155 (13131) [000] d.s2 24573.890905: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
65269           <...>-13366 (-----) [003] dns2 24573.890908: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
65270 id.nn.benchmark-13156 (13131) [001] dns2 24573.890908: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
65271 id.nn.benchmark-13156 (13131) [001] dns3 24573.890917: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
65272           <...>-13366 (-----) [003] dnH2 24573.890918: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
65273 id.nn.benchmark-13155 (13131) [000] d.s3 24573.890921: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
65274 id.nn.benchmark-13156 (13131) [001] d..2 24573.890925: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
65275           <...>-13366 (-----) [003] d..2 24573.890928: sched_switch: prev_comm=id.nn.benchmark prev_pid=13366 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
65276  crtc_event:111-254   (  254) [003] d..2 24573.890941: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
65277     migration/1-17    (   17) [001] d.h3 24573.890967: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
65278     rcu_preempt-7     (    7) [003] d..2 24573.890968: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
65279     migration/1-17    (   17) [001] d.h3 24573.890975: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
65280 id.nn.benchmark-13158 (13131) [006] dnh1 24573.890978: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
65281 id.nn.benchmark-13158 (13131) [006] d..2 24573.890980: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
65282     migration/1-17    (   17) [001] d.h4 24573.890981: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
65283         sugov:4-560   (  560) [006] d..2 24573.890983: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
65284     migration/1-17    (   17) [001] d..2 24573.890987: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
65285         sugov:0-559   (  559) [001] d..2 24573.890994: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
65286     kworker/1:1-13091 (13091) [001] d..2 24573.891104: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
65287  kworker/u16:15-18488 (18488) [003] .... 24573.891133: clk_set_rate: l3_cluster1_vote_clk 300000000
65288  kworker/u16:15-18488 (18488) [003] .... 24573.891138: clk_set_rate: l3_clk 403200000
65289  kworker/u16:15-18488 (18488) [003] d..2 24573.891380: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13366 next_prio=110
65290           <...>-13366 (-----) [003] ...1 24573.891395: tracing_mark_write: E|13131
65291           <...>-13366 (-----) [003] ...1 24573.891400: tracing_mark_write: E|13131
65292           <...>-13366 (-----) [003] ...1 24573.891428: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
65293           <...>-13366 (-----) [003] ...1 24573.891433: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
65294           <...>-13366 (-----) [003] ...1 24573.891660: tracing_mark_write: E|13131
65295           <...>-13366 (-----) [003] ...1 24573.891665: tracing_mark_write: E|13131
65296           <...>-13366 (-----) [003] ...1 24573.891701: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
65297           <...>-13366 (-----) [003] ...1 24573.891706: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
65298 id.nn.benchmark-13155 (13131) [000] d.h4 24573.891758: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
65299 id.nn.benchmark-13155 (13131) [000] d.h5 24573.891778: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
65300           <...>-13366 (-----) [003] d..2 24573.891793: sched_switch: prev_comm=id.nn.benchmark prev_pid=13366 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
65301 id.nn.benchmark-13155 (13131) [000] d.h2 24573.891831: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
65302 id.nn.benchmark-13155 (13131) [000] dnh3 24573.891843: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
65303 crtc_commit:111-253   (  253) [003] d..2 24573.891854: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13366 next_prio=110
65304 id.nn.benchmark-13155 (13131) [000] d..2 24573.891864: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
65305     kworker/0:1-13012 (13012) [000] d..2 24573.891871: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
65306     kworker/0:1-13012 (13012) [000] d..3 24573.891879: sched_blocked_reason: pid=13091 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
65307     kworker/0:1-13012 (13012) [000] d..3 24573.891886: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
65308     kworker/0:1-13012 (13012) [000] d..2 24573.891893: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
65309 id.nn.benchmark-13156 (13131) [001] d..2 24573.891899: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
65310           <...>-13366 (-----) [003] ...1 24573.891958: tracing_mark_write: E|13131
65311           <...>-13366 (-----) [003] ...1 24573.891962: tracing_mark_write: E|13131
65312           <...>-13366 (-----) [003] ...1 24573.891978: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
65313           <...>-13366 (-----) [003] ...1 24573.891983: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
65314     kworker/1:1-13091 (13091) [001] d..2 24573.891991: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
65315 id.nn.benchmark-13155 (13131) [000] d.h4 24573.892046: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
65316 id.nn.benchmark-13155 (13131) [000] d.h5 24573.892060: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
65317           <...>-13366 (-----) [003] d..2 24573.892069: sched_switch: prev_comm=id.nn.benchmark prev_pid=13366 prev_prio=110 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
65318  crtc_event:111-254   (  254) [003] d..2 24573.892090: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13366 next_prio=110
65319           <...>-13366 (-----) [003] ...1 24573.892379: tracing_mark_write: E|13131
65320           <...>-13366 (-----) [003] ...1 24573.892385: tracing_mark_write: E|13131
65321           <...>-13366 (-----) [003] ...1 24573.892399: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
65322           <...>-13366 (-----) [003] ...1 24573.892404: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
65323           <...>-13366 (-----) [003] ...1 24573.892461: tracing_mark_write: E|13131
65324           <...>-13366 (-----) [003] ...1 24573.892464: tracing_mark_write: E|13131
65325           <...>-13366 (-----) [003] ...1 24573.892474: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
65326           <...>-13366 (-----) [003] ...1 24573.892478: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
65327           <...>-13366 (-----) [003] ...1 24573.892496: tracing_mark_write: E|13131
65328           <...>-13366 (-----) [003] ...1 24573.892500: tracing_mark_write: E|13131
65329           <...>-13366 (-----) [003] ...1 24573.892512: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
65330           <...>-13366 (-----) [003] ...1 24573.892515: tracing_mark_write: E|13131
65331           <...>-13366 (-----) [003] ...1 24573.892525: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
65332           <...>-13366 (-----) [003] ...1 24573.892529: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
65333           <...>-13366 (-----) [003] ...1 24573.893383: tracing_mark_write: E|13131
65334           <...>-13366 (-----) [003] ...1 24573.893386: tracing_mark_write: E|13131
65335           <...>-13366 (-----) [003] ...1 24573.893396: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
65336           <...>-13366 (-----) [003] ...1 24573.893400: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
65337           <...>-13366 (-----) [003] ...1 24573.893492: tracing_mark_write: E|13131
65338           <...>-13366 (-----) [003] ...1 24573.893496: tracing_mark_write: E|13131
65339           <...>-13366 (-----) [003] d..2 24573.893570: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
65340           <...>-13366 (-----) [003] d..3 24573.893589: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
65341           <...>-13366 (-----) [003] ...1 24573.893618: tracing_mark_write: E|13131
65342           <...>-13366 (-----) [003] d..1 24573.893625: sched_waking: comm=id.nn.benchmark pid=13365 prio=110 target_cpu=002
65343           <...>-13157 (-----) [005] dnh1 24573.893655: sched_wakeup: comm=id.nn.benchmark pid=13365 prio=110 target_cpu=005
65344           <...>-13157 (-----) [005] d..2 24573.893687: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13365 next_prio=110
65345           <...>-13366 (-----) [003] d.h3 24573.893688: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
65346           <...>-13365 (-----) [005] d..2 24573.893698: sched_switch: prev_comm=id.nn.benchmark prev_pid=13365 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
65347           <...>-13366 (-----) [003] d.h3 24573.893698: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
65348 id.nn.benchmark-13158 (13131) [006] dnh1 24573.893702: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
65349 id.nn.benchmark-13158 (13131) [006] d..2 24573.893705: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
65350         sugov:4-560   (  560) [006] d..2 24573.893708: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
65351           <...>-13366 (-----) [003] dnh4 24573.893711: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
65352           <...>-13366 (-----) [003] d..2 24573.893719: sched_switch: prev_comm=id.nn.benchmark prev_pid=13366 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
65353         sugov:0-559   (  559) [003] d..2 24573.893728: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13366 next_prio=110
65354           <...>-13366 (-----) [003] ...1 24573.893750: tracing_mark_write: E|13131
65355 id.nn.benchmark-13155 (13131) [000] d.h1 24573.893850: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
65356 id.nn.benchmark-13155 (13131) [000] d.h2 24573.893868: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
65357           <...>-13366 (-----) [003] d..2 24573.893877: sched_switch: prev_comm=id.nn.benchmark prev_pid=13366 prev_prio=110 prev_state=R+ ==> next_comm=DispSync next_pid=23904 next_prio=97
65358        DispSync-23904 (23896) [003] d..1 24573.893902: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
65359        DispSync-23904 (23896) [003] d..2 24573.893918: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
65360 id.nn.benchmark-13159 (13131) [002] d..2 24573.893930: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
65361        DispSync-23904 (23896) [003] d..2 24573.893937: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13366 next_prio=110
65362  appEventThread-23905 (23896) [002] d..3 24573.893986: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
65363 id.nn.benchmark-13158 (13131) [006] dnh1 24573.894007: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
65364 id.nn.benchmark-13158 (13131) [006] d..2 24573.894010: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
65365  appEventThread-23905 (23896) [002] d..2 24573.894024: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
65366           <...>-13366 (-----) [003] d..1 24573.894076: sched_waking: comm=id.nn.benchmark pid=13365 prio=110 target_cpu=005
65367           <...>-13157 (-----) [005] dnh1 24573.894095: sched_wakeup: comm=id.nn.benchmark pid=13365 prio=110 target_cpu=005
65368           <...>-13157 (-----) [005] d..2 24573.894097: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13365 next_prio=110
65369           <...>-13366 (-----) [003] d..2 24573.894192: sched_switch: prev_comm=id.nn.benchmark prev_pid=13366 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
65370<...>-24151 ( 24151) [006] .... 24573.894193: binder_transaction: transaction=1670136 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
65371<...>-24151 ( 24151) [006] d..4 24573.894200: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
65372           <...>-13365 (-----) [005] d..1 24573.894204: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
65373<...>-24151 ( 24151) [006] d..5 24573.894225: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
65374           <...>-13365 (-----) [005] d..2 24573.894234: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
65375 id.nn.benchmark-13156 (13131) [001] d.s2 24573.894249: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
65376<...>-24151 ( 24151) [006] dnH5 24573.894279: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
65377 id.nn.benchmark-13156 (13131) [001] d.s3 24573.894284: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
65378<...>-24151 ( 24151) [006] dnH6 24573.894285: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
65379<...>-24151 ( 24151) [006] dnH5 24573.894285: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
65380     logd.writer-563   (  555) [003] d..2 24573.894297: 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
65381<...>-24151 ( 24151) [006] d..2 24573.894305: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
65382     rcu_preempt-7     (    7) [003] dnh3 24573.894307: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
65383         sugov:4-560   (  560) [006] d..2 24573.894311: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
65384     rcu_preempt-7     (    7) [003] d..2 24573.894313: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
65385         sugov:0-559   (  559) [003] d..2 24573.894324: 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
65386           <...>-13365 (-----) [005] d..2 24573.894327: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=004
65387     rcu_preempt-7     (    7) [003] d..2 24573.894329: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=006
65388           <...>-13131 (-----) [006] ...1 24573.894345: tracing_mark_write: E|13131
65389           <...>-13131 (-----) [006] ...1 24573.894349: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
65390           <...>-13365 (-----) [005] d..3 24573.894349: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=004
65391           <...>-13131 (-----) [006] ...1 24573.894354: tracing_mark_write: E|13131
65392           <...>-13131 (-----) [006] ...1 24573.894355: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
65393 id.nn.benchmark-13160 (13131) [004] d..2 24573.894357: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcuop/4 next_pid=45 next_prio=120
65394           <...>-13131 (-----) [006] ...1 24573.894358: tracing_mark_write: E|13131
65395     rcu_preempt-7     (    7) [003] d..2 24573.894361: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
65396         rcuop/4-45    (   45) [004] d..2 24573.894365: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
65397           <...>-13131 (-----) [006] d.h1 24573.894365: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=006
65398           <...>-13365 (-----) [005] d..2 24573.894367: sched_switch: prev_comm=id.nn.benchmark prev_pid=13365 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
65399     rcu_preempt-7     (    7) [003] d..3 24573.894372: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
65400     rcu_preempt-7     (    7) [003] d..2 24573.894382: 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
65401         rcuop/0-10    (   10) [003] d..2 24573.894387: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
65402 id.nn.benchmark-13160 (13131) [004] dnh1 24573.894415: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
65403 id.nn.benchmark-13160 (13131) [004] d..2 24573.894418: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
65404         rcuop/0-10    (   10) [003] d..2 24573.894420: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
65405         rcuop/1-21    (   21) [004] d..2 24573.894426: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
65406           <...>-13131 (-----) [006] ...1 24573.894481: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
65407           <...>-13131 (-----) [006] d..2 24573.894514: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
65408     logd.writer-563   (  555) [003] d..2 24573.894528: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
65409          <idle>-0     (-----) [003] d..1 24573.894549: cpu_idle: state=0 cpu_id=3
65410           <...>-13131 (-----) [006] ...1 24573.894555: tracing_mark_write: E|13131
65411           <...>-13131 (-----) [006] ...1 24573.894557: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
65412           <...>-13131 (-----) [006] ...1 24573.894560: tracing_mark_write: E|13131
65413           <...>-13131 (-----) [006] ...1 24573.894562: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
65414          <idle>-0     (-----) [003] dnh2 24573.894563: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
65415           <...>-13131 (-----) [006] ...1 24573.894564: tracing_mark_write: E|13131
65416           <...>-13131 (-----) [006] ...1 24573.894566: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
65417          <idle>-0     (-----) [003] .n.1 24573.894568: cpu_idle: state=4294967295 cpu_id=3
65418          <idle>-0     (-----) [003] d..2 24573.894576: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=563 next_prio=130
65419     logd.writer-563   (  555) [003] d..2 24573.894625: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
65420          <idle>-0     (-----) [003] d..1 24573.894634: cpu_idle: state=0 cpu_id=3
65421          <idle>-0     (-----) [003] .n.1 24573.894663: cpu_idle: state=4294967295 cpu_id=3
65422           <...>-13131 (-----) [006] ...1 24573.894664: tracing_mark_write: E|13131
65423           <...>-13131 (-----) [006] ...1 24573.894667: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
65424          <idle>-0     (-----) [003] d..2 24573.894671: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13367 next_prio=110
65425           <...>-13131 (-----) [006] d..2 24573.894675: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
65426<...>-24151 ( 24151) [006] d..3 24573.894717: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
65427<...>-24151 ( 24151) [006] d..4 24573.894733: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
65428           <...>-13367 (-----) [003] d..2 24573.894772: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
65429           <...>-13367 (-----) [003] d..3 24573.894790: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
65430<...>-24151 ( 24151) [006] d..2 24573.894849: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
65431<...>-23903 ( 23896) [006] .... 24573.894854: binder_transaction_received: transaction=1670136
65432<...>-23903 ( 23896) [006] d..1 24573.894878: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
65433 id.nn.benchmark-13159 (13131) [002] dnh1 24573.894894: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
65434 id.nn.benchmark-13159 (13131) [002] d..2 24573.894901: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
65435<...>-23903 ( 23896) [006] d..2 24573.894903: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
65436         rcuop/2-29    (   29) [006] d..2 24573.894924: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
65437  appEventThread-23905 (23896) [002] d..2 24573.894926: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
65438    RenderThread-24437 (24151) [006] d..1 24573.894994: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
65439    RenderThread-24437 (24151) [006] d..2 24573.895003: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
65440    RenderThread-24437 (24151) [006] .... 24573.895042: binder_transaction: transaction=1670137 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
65441    RenderThread-24437 (24151) [006] d..4 24573.895046: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
65442    RenderThread-24437 (24151) [006] d..5 24573.895055: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
65443    RenderThread-24437 (24151) [006] d..2 24573.895061: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
65444<...>-23903 ( 23896) [006] .... 24573.895064: binder_transaction_received: transaction=1670137
65445<...>-23903 ( 23896) [006] .... 24573.895102: binder_transaction: transaction=1670138 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
65446<...>-23903 ( 23896) [006] d..2 24573.895107: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
65447<...>-23903 ( 23896) [006] d..3 24573.895115: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
65448<...>-23903 ( 23896) [006] d..2 24573.895129: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
65449           <...>-13367 (-----) [003] d..2 24573.895170: sched_switch: prev_comm=id.nn.benchmark prev_pid=13367 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
65450<...>-24151 ( 24151) [006] d..2 24573.895171: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
65451    RenderThread-24437 (24151) [006] .... 24573.895174: binder_transaction_received: transaction=1670138
65452     logd.writer-563   (  555) [003] d..2 24573.895433: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
65453          <idle>-0     (-----) [003] d..1 24573.895450: cpu_idle: state=0 cpu_id=3
65454    RenderThread-24437 (24151) [006] d..2 24573.895879: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
65455 id.nn.benchmark-13158 (13131) [006] d.h1 24573.895974: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
65456 id.nn.benchmark-13158 (13131) [006] d.h2 24573.896016: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
65457          <idle>-0     (-----) [003] d.h2 24573.896019: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
65458 id.nn.benchmark-13158 (13131) [006] dnh3 24573.896021: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
65459 id.nn.benchmark-13158 (13131) [006] dnh2 24573.896022: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
65460          <idle>-0     (-----) [003] dnh2 24573.896024: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=003
65461          <idle>-0     (-----) [003] .n.1 24573.896030: cpu_idle: state=4294967295 cpu_id=3
65462 id.nn.benchmark-13158 (13131) [006] d..2 24573.896033: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
65463          <idle>-0     (-----) [003] dnh2 24573.896038: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
65464         sugov:4-560   (  560) [006] d..2 24573.896039: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
65465          <idle>-0     (-----) [003] d..2 24573.896047: 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
65466         sugov:0-559   (  559) [003] d..2 24573.896059: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
65467 id.nn.benchmark-13155 (13131) [000] d.h2 24573.896101: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
65468 id.nn.benchmark-13155 (13131) [000] d.h3 24573.896120: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
65469    RenderThread-24437 (24151) [003] d..2 24573.896134: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
65470 kgsl_worker_thr-246   (  246) [003] d..2 24573.896181: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
65471 kgsl_worker_thr-246   (  246) [003] d..3 24573.896197: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
65472 kgsl_worker_thr-246   (  246) [003] d..2 24573.896209: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
65473  kworker/u16:15-18488 (18488) [003] d..2 24573.896410: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
65474    RenderThread-24437 (24151) [003] .... 24573.896555: binder_transaction: transaction=1670139 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
65475    RenderThread-24437 (24151) [003] d..4 24573.896567: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
65476    RenderThread-24437 (24151) [003] dn.5 24573.896590: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
65477    RenderThread-24437 (24151) [003] dnh5 24573.896633: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
65478    RenderThread-24437 (24151) [003] dnh5 24573.896643: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
65479 id.nn.benchmark-13158 (13131) [006] dnh1 24573.896647: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
65480 id.nn.benchmark-13158 (13131) [006] d..2 24573.896650: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
65481    RenderThread-24437 (24151) [003] dnh6 24573.896651: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
65482         sugov:4-560   (  560) [006] d..2 24573.896654: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
65483    RenderThread-24437 (24151) [003] d..2 24573.896658: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
65484         sugov:0-559   (  559) [003] d..2 24573.896668: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
65485<...>-23903 ( 23896) [003] .... 24573.896675: binder_transaction_received: transaction=1670139
65486<...>-23903 ( 23896) [003] .... 24573.896808: binder_transaction: transaction=1670140 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
65487<...>-23903 ( 23896) [003] d..2 24573.896843: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
65488    RenderThread-24437 (24151) [003] .... 24573.896850: binder_transaction_received: transaction=1670140
65489    RenderThread-24437 (24151) [003] d..2 24573.896928: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
65490          <idle>-0     (-----) [003] d..1 24573.896942: cpu_idle: state=0 cpu_id=3
65491           <...>-13157 (-----) [005] d.s2 24573.897586: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
65492 id.nn.benchmark-13160 (13131) [004] d.H3 24573.897594: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
65493 id.nn.benchmark-13160 (13131) [004] d.H4 24573.897602: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
65494 id.nn.benchmark-13160 (13131) [004] d.H3 24573.897604: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
65495          <idle>-0     (-----) [003] dnH2 24573.897605: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
65496 id.nn.benchmark-13158 (13131) [006] d..2 24573.897609: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
65497         sugov:4-560   (  560) [006] d..2 24573.897613: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
65498          <idle>-0     (-----) [003] dnH2 24573.897620: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
65499          <idle>-0     (-----) [003] .n.1 24573.897627: cpu_idle: state=4294967295 cpu_id=3
65500          <idle>-0     (-----) [003] d..2 24573.897636: 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
65501         sugov:0-559   (  559) [003] d..2 24573.897646: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
65502  kworker/u16:15-18488 (18488) [003] .... 24573.897750: clk_set_rate: l3_cluster0_vote_clk 1305600000
65503  kworker/u16:15-18488 (18488) [003] .... 24573.897757: clk_set_rate: l3_clk 1305600000
65504  kworker/u16:15-18488 (18488) [003] d..2 24573.897824: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13368 next_prio=110
65505           <...>-13368 (-----) [003] d.h3 24573.897855: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
65506           <...>-13368 (-----) [003] dnh4 24573.897863: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
65507           <...>-13368 (-----) [003] d..2 24573.897870: sched_switch: prev_comm=id.nn.benchmark prev_pid=13368 prev_prio=110 prev_state=R+ ==> next_comm=DispSync next_pid=23904 next_prio=97
65508           <...>-13154 (-----) [007] d..3 24573.897880: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
65509        DispSync-23904 (23896) [003] d..1 24573.897883: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
65510           <...>-13154 (-----) [007] d..2 24573.897888: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
65511 id.nn.benchmark-13155 (13131) [000] dnh1 24573.897890: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
65512          <idle>-0     (-----) [007] d..1 24573.897892: cpu_idle: state=0 cpu_id=7
65513        DispSync-23904 (23896) [003] d..2 24573.897898: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
65514 id.nn.benchmark-13155 (13131) [000] d..2 24573.897903: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
65515        DispSync-23904 (23896) [003] d..2 24573.897916: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13368 next_prio=110
65516          <idle>-0     (-----) [007] .n.1 24573.897928: cpu_idle: state=4294967295 cpu_id=7
65517          <idle>-0     (-----) [007] d..2 24573.897945: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
65518     migration/0-13    (   13) [000] d..2 24573.897949: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=sfEventThread next_pid=23906 next_prio=97
65519           <...>-13368 (-----) [003] ...1 24573.897950: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
65520           <...>-13368 (-----) [003] ...1 24573.897955: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
65521   sfEventThread-23906 (23896) [000] d..3 24573.897977: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
65522 id.nn.benchmark-13160 (13131) [004] d..2 24573.897985: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
65523          <idle>-0     (-----) [004] d..1 24573.897989: cpu_idle: state=0 cpu_id=4
65524   sfEventThread-23906 (23896) [000] d..4 24573.897993: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
65525           <...>-13368 (-----) [003] d..2 24573.898002: sched_switch: prev_comm=id.nn.benchmark prev_pid=13368 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
65526   sfEventThread-23906 (23896) [000] d..2 24573.898013: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65527          <idle>-0     (-----) [000] d..1 24573.898024: cpu_idle: state=0 cpu_id=0
65528          <idle>-0     (-----) [004] ...1 24573.898179: cpu_idle: state=4294967295 cpu_id=4
65529          <idle>-0     (-----) [004] d..1 24573.898181: cpu_idle: state=0 cpu_id=4
65530  surfaceflinger-23896 (23896) [003] d..1 24573.898222: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
65531  surfaceflinger-23896 (23896) [003] d..2 24573.898233: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
65532          <idle>-0     (-----) [000] .n.1 24573.898238: cpu_idle: state=4294967295 cpu_id=0
65533          <idle>-0     (-----) [000] d..2 24573.898244: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
65534           <...>-13157 (-----) [005] d..3 24573.898249: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
65535           <...>-13157 (-----) [005] d..2 24573.898256: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
65536 id.nn.benchmark-13156 (13131) [001] dnh1 24573.898259: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
65537   sfEventThread-23906 (23896) [000] d..2 24573.898262: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65538          <idle>-0     (-----) [005] d..1 24573.898263: cpu_idle: state=0 cpu_id=5
65539 id.nn.benchmark-13156 (13131) [001] d..2 24573.898264: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
65540          <idle>-0     (-----) [000] d..1 24573.898268: cpu_idle: state=0 cpu_id=0
65541          <idle>-0     (-----) [005] .n.1 24573.898285: cpu_idle: state=4294967295 cpu_id=5
65542          <idle>-0     (-----) [005] d..2 24573.898307: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
65543     migration/1-17    (   17) [001] d.h3 24573.898307: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
65544     migration/1-17    (   17) [001] d.h3 24573.898319: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
65545          <idle>-0     (-----) [004] dnh2 24573.898323: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
65546          <idle>-0     (-----) [004] .n.1 24573.898325: cpu_idle: state=4294967295 cpu_id=4
65547          <idle>-0     (-----) [004] d..2 24573.898328: 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
65548     migration/1-17    (   17) [001] d.h4 24573.898331: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
65549         sugov:4-560   (  560) [004] d..2 24573.898333: 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
65550          <idle>-0     (-----) [000] .n.1 24573.898335: cpu_idle: state=4294967295 cpu_id=0
65551          <idle>-0     (-----) [004] d..1 24573.898336: cpu_idle: state=0 cpu_id=4
65552          <idle>-0     (-----) [000] d..2 24573.898340: 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
65553     migration/1-17    (   17) [001] d..2 24573.898344: 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
65554         sugov:0-559   (  559) [000] d..2 24573.898352: 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
65555  surfaceflinger-23896 (23896) [003] ...1 24573.898353: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
65556          <idle>-0     (-----) [001] d..1 24573.898354: cpu_idle: state=0 cpu_id=1
65557  surfaceflinger-23896 (23896) [003] ...1 24573.898357: tracing_mark_write: E|23896
65558          <idle>-0     (-----) [000] d..1 24573.898357: cpu_idle: state=0 cpu_id=0
65559  surfaceflinger-23896 (23896) [003] .... 24573.898396: binder_transaction: transaction=1670141 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
65560  surfaceflinger-23896 (23896) [003] ...2 24573.898414: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
65561  surfaceflinger-23896 (23896) [003] d..4 24573.898420: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
65562  surfaceflinger-23896 (23896) [003] d..5 24573.898438: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
65563          <idle>-0     (-----) [001] .n.1 24573.898443: cpu_idle: state=4294967295 cpu_id=1
65564  surfaceflinger-23896 (23896) [003] d..2 24573.898449: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13368 next_prio=110
65565          <idle>-0     (-----) [001] d..2 24573.898450: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
65566  HwBinder:598_3-633   (  598) [001] .... 24573.898457: binder_transaction_received: transaction=1670141
65567           <...>-13368 (-----) [003] d..2 24573.898486: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
65568           <...>-13368 (-----) [003] d..3 24573.898494: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
65569  HwBinder:598_3-633   (  598) [001] ...1 24573.898496: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
65570          <idle>-0     (-----) [004] ...1 24573.898525: cpu_idle: state=4294967295 cpu_id=4
65571          <idle>-0     (-----) [004] d..1 24573.898526: cpu_idle: state=0 cpu_id=4
65572           <...>-13368 (-----) [003] ...1 24573.898568: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
65573           <...>-13368 (-----) [003] ...1 24573.898574: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
65574  HwBinder:598_3-633   (  598) [001] ...1 24573.898576: tracing_mark_write: B|598|HWCSession::PresentDisplay::
65575  HwBinder:598_3-633   (  598) [001] ...1 24573.898689: tracing_mark_write: B|598|HWDeviceDRM::Commit::
65576  HwBinder:598_3-633   (  598) [001] ...1 24573.898696: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
65577  HwBinder:598_3-633   (  598) [001] d..2 24573.899068: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
65578  HwBinder:598_3-633   (  598) [001] d..3 24573.899086: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
65579          <idle>-0     (-----) [000] .n.1 24573.899090: cpu_idle: state=4294967295 cpu_id=0
65580          <idle>-0     (-----) [000] d..2 24573.899095: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
65581  HwBinder:598_3-633   (  598) [001] ...1 24573.899145: tracing_mark_write: E|598
65582  HwBinder:598_3-633   (  598) [001] ...1 24573.899149: tracing_mark_write: E|598
65583  HwBinder:598_3-633   (  598) [001] ...1 24573.899187: tracing_mark_write: E|598
65584  HwBinder:598_3-633   (  598) [001] ...1 24573.899220: tracing_mark_write: E|598
65585  HwBinder:598_3-633   (  598) [001] .... 24573.899229: binder_transaction: transaction=1670142 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
65586  HwBinder:598_3-633   (  598) [001] d..2 24573.899241: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
65587  HwBinder:598_3-633   (  598) [001] d..3 24573.899251: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
65588  HwBinder:598_3-633   (  598) [001] .... 24573.899254: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
65589           <...>-13368 (-----) [003] d..2 24573.899262: sched_switch: prev_comm=id.nn.benchmark prev_pid=13368 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
65590  surfaceflinger-23896 (23896) [003] .... 24573.899268: binder_transaction_received: transaction=1670142
65591  HwBinder:598_3-633   (  598) [001] d..2 24573.899308: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
65592     logd.writer-563   (  555) [001] d..2 24573.899394: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
65593     logd.writer-563   (  555) [001] d..3 24573.899417: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
65594     logd.writer-563   (  555) [001] d..2 24573.899486: 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
65595          <idle>-0     (-----) [001] d..1 24573.899496: cpu_idle: state=0 cpu_id=1
65596  surfaceflinger-23896 (23896) [003] d..2 24573.899517: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13368 next_prio=110
65597 crtc_commit:111-253   (  253) [000] d..2 24573.899692: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcuop/0 next_pid=10 next_prio=120
65598         rcuop/0-10    (   10) [000] d..2 24573.899706: 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
65599          <idle>-0     (-----) [000] d..1 24573.899713: cpu_idle: state=0 cpu_id=0
65600 id.nn.benchmark-13158 (13131) [006] d..3 24573.899868: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
65601 id.nn.benchmark-13158 (13131) [006] d..2 24573.899876: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
65602 id.nn.benchmark-13159 (13131) [002] dnh1 24573.899878: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
65603 id.nn.benchmark-13159 (13131) [002] d..2 24573.899883: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
65604          <idle>-0     (-----) [006] d..1 24573.899886: cpu_idle: state=0 cpu_id=6
65605          <idle>-0     (-----) [006] .n.1 24573.899906: cpu_idle: state=4294967295 cpu_id=6
65606          <idle>-0     (-----) [006] d..2 24573.899926: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
65607     migration/2-25    (   25) [002] d.h3 24573.899927: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
65608     migration/2-25    (   25) [002] d.h3 24573.899935: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
65609          <idle>-0     (-----) [004] dnh2 24573.899939: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
65610          <idle>-0     (-----) [004] .n.1 24573.899941: cpu_idle: state=4294967295 cpu_id=4
65611          <idle>-0     (-----) [004] d..2 24573.899943: 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
65612     migration/2-25    (   25) [002] d.h4 24573.899943: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
65613         sugov:4-560   (  560) [004] d..2 24573.899948: 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
65614          <idle>-0     (-----) [000] .n.1 24573.899949: cpu_idle: state=4294967295 cpu_id=0
65615          <idle>-0     (-----) [004] d..1 24573.899950: cpu_idle: state=0 cpu_id=4
65616          <idle>-0     (-----) [000] d..2 24573.899954: 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
65617     migration/2-25    (   25) [002] d..2 24573.899957: 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
65618         sugov:0-559   (  559) [000] d..2 24573.899965: 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
65619          <idle>-0     (-----) [002] d..1 24573.899968: cpu_idle: state=0 cpu_id=2
65620          <idle>-0     (-----) [000] d..1 24573.899971: cpu_idle: state=0 cpu_id=0
65621           <...>-13368 (-----) [003] d..1 24573.900482: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=007
65622           <...>-13368 (-----) [003] d..1 24573.900502: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
65623          <idle>-0     (-----) [004] dnh2 24573.900502: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
65624          <idle>-0     (-----) [004] .n.1 24573.900504: cpu_idle: state=4294967295 cpu_id=4
65625          <idle>-0     (-----) [004] d..2 24573.900507: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
65626           <...>-13368 (-----) [003] d..1 24573.900513: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=006
65627 id.nn.benchmark-13156 (13131) [005] dnh1 24573.900515: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
65628 id.nn.benchmark-13156 (13131) [005] d..2 24573.900518: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
65629           <...>-13368 (-----) [003] d..1 24573.900523: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=004
65630 id.nn.benchmark-13159 (13131) [006] d.h1 24573.900524: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=006
65631           <...>-13154 (-----) [004] d.h1 24573.900534: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=004
65632           <...>-13157 (-----) [005] d.s2 24573.900888: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
65633           <...>-13368 (-----) [003] d.s1 24573.900896: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
65634           <...>-13368 (-----) [003] dns2 24573.900908: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
65635           <...>-13368 (-----) [003] dnH2 24573.900913: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
65636           <...>-13368 (-----) [003] d..2 24573.900921: sched_switch: prev_comm=id.nn.benchmark prev_pid=13368 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
65637     rcu_preempt-7     (    7) [003] d..2 24573.900954: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
65638          <idle>-0     (-----) [000] dnH3 24573.900956: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
65639          <idle>-0     (-----) [000] dnH3 24573.900968: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
65640 id.nn.benchmark-13159 (13131) [006] dnh1 24573.900971: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
65641 id.nn.benchmark-13159 (13131) [006] d..2 24573.900974: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
65642         sugov:4-560   (  560) [006] d..2 24573.900978: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
65643          <idle>-0     (-----) [000] dnH4 24573.900980: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
65644          <idle>-0     (-----) [002] .n.1 24573.900986: cpu_idle: state=4294967295 cpu_id=2
65645          <idle>-0     (-----) [000] .n.1 24573.900987: cpu_idle: state=4294967295 cpu_id=0
65646          <idle>-0     (-----) [002] d..2 24573.900992: 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
65647          <idle>-0     (-----) [000] d..2 24573.900994: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
65648         sugov:0-559   (  559) [002] d..2 24573.901019: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
65649  kworker/u16:15-18488 (18488) [003] .... 24573.901139: clk_set_rate: l3_cluster1_vote_clk 1478400000
65650  kworker/u16:15-18488 (18488) [003] .... 24573.901143: clk_set_rate: l3_clk 1478400000
65651          <idle>-0     (-----) [001] ...1 24573.901210: cpu_idle: state=4294967295 cpu_id=1
65652          <idle>-0     (-----) [001] d..1 24573.901212: cpu_idle: state=0 cpu_id=1
65653  kworker/u16:15-18488 (18488) [003] d..2 24573.901359: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13368 next_prio=110
65654           <...>-13368 (-----) [003] d.s2 24573.901395: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
65655           <...>-13368 (-----) [003] d.s3 24573.901403: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
65656           <...>-13368 (-----) [003] dns3 24573.901406: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
65657           <...>-13368 (-----) [003] d..2 24573.901412: sched_switch: prev_comm=id.nn.benchmark prev_pid=13368 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
65658  kworker/u16:15-18488 (18488) [003] d..2 24573.901425: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13368 next_prio=110
65659           <...>-13154 (-----) [004] d..2 24573.905065: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
65660 id.nn.benchmark-13155 (13131) [007] d..3 24573.905066: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
65661 id.nn.benchmark-13155 (13131) [007] d..2 24573.905073: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
65662          <idle>-0     (-----) [007] d..1 24573.905076: cpu_idle: state=0 cpu_id=7
65663 id.nn.benchmark-13158 (13131) [000] dnh1 24573.905076: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
65664 id.nn.benchmark-13158 (13131) [000] d..2 24573.905082: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
65665           <...>-13157 (-----) [005] d..2 24573.905089: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
65666          <idle>-0     (-----) [005] d..1 24573.905092: cpu_idle: state=0 cpu_id=5
65667 id.nn.benchmark-13159 (13131) [006] d..2 24573.905097: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
65668          <idle>-0     (-----) [006] d..1 24573.905101: cpu_idle: state=0 cpu_id=6
65669          <idle>-0     (-----) [007] .n.1 24573.905105: cpu_idle: state=4294967295 cpu_id=7
65670          <idle>-0     (-----) [007] d..2 24573.905126: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
65671     migration/0-13    (   13) [000] d.h3 24573.905127: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
65672     migration/0-13    (   13) [000] d.h3 24573.905135: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
65673          <idle>-0     (-----) [006] dnh2 24573.905140: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
65674          <idle>-0     (-----) [006] .n.1 24573.905142: cpu_idle: state=4294967295 cpu_id=6
65675          <idle>-0     (-----) [006] d..2 24573.905145: 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
65676     migration/0-13    (   13) [000] d.h4 24573.905147: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
65677         sugov:4-560   (  560) [006] d..2 24573.905150: 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
65678          <idle>-0     (-----) [001] .n.1 24573.905151: cpu_idle: state=4294967295 cpu_id=1
65679          <idle>-0     (-----) [006] d..1 24573.905152: cpu_idle: state=0 cpu_id=6
65680          <idle>-0     (-----) [001] d..2 24573.905157: 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
65681     migration/0-13    (   13) [000] d..2 24573.905160: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65682          <idle>-0     (-----) [000] d..1 24573.905168: cpu_idle: state=0 cpu_id=0
65683         sugov:0-559   (  559) [001] d..2 24573.905170: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
65684          <idle>-0     (-----) [001] d..1 24573.905175: cpu_idle: state=0 cpu_id=1
65685           <...>-13368 (-----) [003] ...1 24573.905184: tracing_mark_write: E|13131
65686           <...>-13368 (-----) [003] ...1 24573.905188: tracing_mark_write: E|13131
65687           <...>-13368 (-----) [003] ...1 24573.905206: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
65688           <...>-13368 (-----) [003] ...1 24573.905211: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
65689          <idle>-0     (-----) [006] ...1 24573.905342: cpu_idle: state=4294967295 cpu_id=6
65690          <idle>-0     (-----) [006] d..1 24573.905343: cpu_idle: state=0 cpu_id=6
65691           <...>-13368 (-----) [003] d..1 24573.905699: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
65692           <...>-13368 (-----) [003] d..1 24573.905716: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=007
65693          <idle>-0     (-----) [005] dnh2 24573.905719: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
65694          <idle>-0     (-----) [005] .n.1 24573.905721: cpu_idle: state=4294967295 cpu_id=5
65695          <idle>-0     (-----) [005] d..2 24573.905724: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
65696           <...>-13368 (-----) [003] d..1 24573.905732: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
65697          <idle>-0     (-----) [006] dnh2 24573.905734: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
65698          <idle>-0     (-----) [006] .n.1 24573.905736: cpu_idle: state=4294967295 cpu_id=6
65699          <idle>-0     (-----) [006] d..2 24573.905738: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
65700           <...>-13368 (-----) [003] d..1 24573.905741: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=006
65701           <...>-13154 (-----) [005] dnh1 24573.905742: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
65702           <...>-13154 (-----) [005] d..2 24573.905745: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
65703 id.nn.benchmark-13155 (13131) [006] d.h1 24573.905752: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=006
65704          <idle>-0     (-----) [000] d.h5 24573.905874: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
65705          <idle>-0     (-----) [000] dnh6 24573.905888: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
65706          <idle>-0     (-----) [000] dnh5 24573.905891: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
65707          <idle>-0     (-----) [000] dnh6 24573.905903: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
65708          <idle>-0     (-----) [001] .n.1 24573.905908: cpu_idle: state=4294967295 cpu_id=1
65709          <idle>-0     (-----) [000] .n.1 24573.905913: cpu_idle: state=4294967295 cpu_id=0
65710          <idle>-0     (-----) [001] d..2 24573.905913: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
65711          <idle>-0     (-----) [000] d..2 24573.905918: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
65712  crtc_event:111-254   (  254) [000] d..2 24573.905952: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
65713 id.nn.benchmark-13159 (13131) [000] d.h4 24573.905978: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
65714 id.nn.benchmark-13159 (13131) [000] d.h4 24573.905985: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
65715 id.nn.benchmark-13155 (13131) [006] dnh1 24573.905989: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
65716 id.nn.benchmark-13155 (13131) [006] d..2 24573.905991: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
65717         sugov:4-560   (  560) [006] d..2 24573.905994: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
65718 id.nn.benchmark-13159 (13131) [000] d.h5 24573.905997: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
65719           <...>-13368 (-----) [003] d..2 24573.906007: sched_switch: prev_comm=id.nn.benchmark prev_pid=13368 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
65720         sugov:0-559   (  559) [003] d..2 24573.906016: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13368 next_prio=110
65721 crtc_commit:111-253   (  253) [001] d..2 24573.906046: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
65722           <...>-13368 (-----) [003] ...1 24573.906262: tracing_mark_write: E|13131
65723           <...>-13368 (-----) [003] ...1 24573.906266: tracing_mark_write: E|13131
65724           <...>-13368 (-----) [003] ...1 24573.906291: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
65725           <...>-13368 (-----) [003] ...1 24573.906295: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
65726           <...>-13368 (-----) [003] ...1 24573.906630: tracing_mark_write: E|13131
65727           <...>-13368 (-----) [003] ...1 24573.906634: tracing_mark_write: E|13131
65728           <...>-13368 (-----) [003] ...1 24573.906648: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
65729           <...>-13368 (-----) [003] ...1 24573.906652: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
65730           <...>-13368 (-----) [003] ...1 24573.906888: tracing_mark_write: E|13131
65731           <...>-13368 (-----) [003] ...1 24573.906892: tracing_mark_write: E|13131
65732           <...>-13368 (-----) [003] ...1 24573.906903: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
65733           <...>-13368 (-----) [003] ...1 24573.906908: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
65734           <...>-13368 (-----) [003] ...1 24573.907315: tracing_mark_write: E|13131
65735           <...>-13368 (-----) [003] ...1 24573.907318: tracing_mark_write: E|13131
65736           <...>-13368 (-----) [003] ...1 24573.907329: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
65737           <...>-13368 (-----) [003] ...1 24573.907333: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
65738 id.nn.benchmark-13158 (13131) [007] d.s2 24573.907553: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
65739           <...>-13368 (-----) [003] d.s1 24573.907565: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
65740           <...>-13154 (-----) [001] d.s2 24573.907568: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
65741           <...>-13368 (-----) [003] dns2 24573.907575: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
65742           <...>-13368 (-----) [003] dnH2 24573.907582: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
65743           <...>-13154 (-----) [001] d.s3 24573.907585: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
65744           <...>-13368 (-----) [003] d..2 24573.907592: sched_switch: prev_comm=id.nn.benchmark prev_pid=13368 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
65745  crtc_event:111-254   (  254) [003] d..2 24573.907605: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
65746     rcu_preempt-7     (    7) [003] d..2 24573.907609: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=004
65747 id.nn.benchmark-13160 (13131) [004] dnh1 24573.907638: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=004
65748 id.nn.benchmark-13160 (13131) [004] d..2 24573.907641: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcuop/4 next_pid=45 next_prio=120
65749         rcuop/4-45    (   45) [004] d..2 24573.907643: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=007
65750     rcu_preempt-7     (    7) [003] d..2 24573.907645: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
65751         rcuop/4-45    (   45) [004] d..3 24573.907657: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=007
65752         rcuop/4-45    (   45) [004] d..2 24573.907660: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
65753 id.nn.benchmark-13158 (13131) [007] d..2 24573.907663: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/5 next_pid=53 next_prio=120
65754         rcuop/5-53    (   53) [007] d..2 24573.907672: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
65755  kworker/u16:15-18488 (18488) [003] .... 24573.907726: clk_set_rate: l3_cluster0_vote_clk 1401600000
65756  kworker/u16:15-18488 (18488) [003] d..2 24573.907736: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13368 next_prio=110
65757           <...>-13368 (-----) [003] ...1 24573.907932: tracing_mark_write: E|13131
65758           <...>-13368 (-----) [003] ...1 24573.907936: tracing_mark_write: E|13131
65759           <...>-13368 (-----) [003] ...1 24573.907956: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
65760           <...>-13368 (-----) [003] ...1 24573.907960: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
65761           <...>-13368 (-----) [003] ...1 24573.908158: tracing_mark_write: E|13131
65762           <...>-13368 (-----) [003] ...1 24573.908163: tracing_mark_write: E|13131
65763           <...>-13368 (-----) [003] ...1 24573.908179: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
65764           <...>-13368 (-----) [003] ...1 24573.908183: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
65765 id.nn.benchmark-13159 (13131) [000] d.h4 24573.908222: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
65766 id.nn.benchmark-13159 (13131) [000] d.h5 24573.908237: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
65767           <...>-13368 (-----) [003] d..2 24573.908246: sched_switch: prev_comm=id.nn.benchmark prev_pid=13368 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
65768 crtc_commit:111-253   (  253) [003] d..2 24573.908289: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13368 next_prio=110
65769           <...>-13368 (-----) [003] ...1 24573.908311: tracing_mark_write: E|13131
65770           <...>-13368 (-----) [003] ...1 24573.908314: tracing_mark_write: E|13131
65771           <...>-13368 (-----) [003] ...1 24573.908326: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
65772           <...>-13368 (-----) [003] ...1 24573.908331: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
65773 id.nn.benchmark-13159 (13131) [000] d.h4 24573.908512: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
65774 id.nn.benchmark-13159 (13131) [000] d.h5 24573.908520: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
65775           <...>-13368 (-----) [003] d..2 24573.908526: sched_switch: prev_comm=id.nn.benchmark prev_pid=13368 prev_prio=110 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
65776  crtc_event:111-254   (  254) [003] d..2 24573.908540: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13368 next_prio=110
65777           <...>-13368 (-----) [003] ...1 24573.908667: tracing_mark_write: E|13131
65778           <...>-13368 (-----) [003] ...1 24573.908670: tracing_mark_write: E|13131
65779           <...>-13368 (-----) [003] ...1 24573.908680: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
65780           <...>-13368 (-----) [003] ...1 24573.908685: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
65781           <...>-13368 (-----) [003] ...1 24573.908739: tracing_mark_write: E|13131
65782           <...>-13368 (-----) [003] ...1 24573.908742: tracing_mark_write: E|13131
65783           <...>-13368 (-----) [003] ...1 24573.908751: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
65784           <...>-13368 (-----) [003] ...1 24573.908755: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
65785           <...>-13368 (-----) [003] ...1 24573.908774: tracing_mark_write: E|13131
65786           <...>-13368 (-----) [003] ...1 24573.908777: tracing_mark_write: E|13131
65787           <...>-13368 (-----) [003] ...1 24573.908787: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
65788           <...>-13368 (-----) [003] ...1 24573.908790: tracing_mark_write: E|13131
65789           <...>-13368 (-----) [003] ...1 24573.908799: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
65790           <...>-13368 (-----) [003] ...1 24573.908804: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
65791           <...>-13368 (-----) [003] ...1 24573.909658: tracing_mark_write: E|13131
65792           <...>-13368 (-----) [003] ...1 24573.909661: tracing_mark_write: E|13131
65793           <...>-13368 (-----) [003] ...1 24573.909669: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
65794           <...>-13368 (-----) [003] ...1 24573.909672: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
65795           <...>-13368 (-----) [003] ...1 24573.909755: tracing_mark_write: E|13131
65796           <...>-13368 (-----) [003] ...1 24573.909758: tracing_mark_write: E|13131
65797           <...>-13368 (-----) [003] d..2 24573.909799: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
65798           <...>-13368 (-----) [003] d..3 24573.909812: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
65799           <...>-13368 (-----) [003] ...1 24573.909831: tracing_mark_write: E|13131
65800           <...>-13368 (-----) [003] d..1 24573.909836: sched_waking: comm=id.nn.benchmark pid=13367 prio=110 target_cpu=003
65801           <...>-13368 (-----) [003] dn.2 24573.909848: sched_wakeup: comm=id.nn.benchmark pid=13367 prio=110 target_cpu=003
65802           <...>-13368 (-----) [003] d..2 24573.909853: sched_switch: prev_comm=id.nn.benchmark prev_pid=13368 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13367 next_prio=110
65803           <...>-13367 (-----) [003] d..2 24573.909867: sched_switch: prev_comm=id.nn.benchmark prev_pid=13367 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
65804     logd.writer-563   (  555) [003] d..2 24573.909909: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13368 next_prio=110
65805           <...>-13368 (-----) [003] ...1 24573.909927: tracing_mark_write: E|13131
65806           <...>-13368 (-----) [003] d..1 24573.910141: sched_waking: comm=id.nn.benchmark pid=13367 prio=110 target_cpu=003
65807           <...>-13368 (-----) [003] dn.2 24573.910150: sched_wakeup: comm=id.nn.benchmark pid=13367 prio=110 target_cpu=003
65808           <...>-13368 (-----) [003] d..2 24573.910155: sched_switch: prev_comm=id.nn.benchmark prev_pid=13368 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13367 next_prio=110
65809           <...>-13367 (-----) [003] d..2 24573.910210: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
65810           <...>-13367 (-----) [003] d..3 24573.910220: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
65811           <...>-13367 (-----) [003] d..1 24573.910276: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
65812 id.nn.benchmark-13155 (13131) [006] dnh1 24573.910292: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
65813 id.nn.benchmark-13155 (13131) [006] d..2 24573.910295: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
65814           <...>-13367 (-----) [003] d.h1 24573.910300: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
65815           <...>-13131 (-----) [006] d..2 24573.910301: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
65816           <...>-13367 (-----) [003] dnh2 24573.910307: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
65817           <...>-13367 (-----) [003] d..2 24573.910314: sched_switch: prev_comm=id.nn.benchmark prev_pid=13367 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
65818        DispSync-23904 (23896) [003] d..1 24573.910331: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
65819        DispSync-23904 (23896) [003] d..2 24573.910342: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
65820 id.nn.benchmark-13156 (13131) [002] d..2 24573.910351: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
65821        DispSync-23904 (23896) [003] d..2 24573.910356: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13367 next_prio=110
65822  appEventThread-23905 (23896) [002] d..3 24573.910380: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
65823 id.nn.benchmark-13155 (13131) [006] dnh1 24573.910396: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
65824 id.nn.benchmark-13155 (13131) [006] d..2 24573.910399: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
65825  appEventThread-23905 (23896) [002] d..2 24573.910407: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
65826           <...>-13367 (-----) [003] d..1 24573.910412: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=006
65827           <...>-13367 (-----) [003] dn.2 24573.910429: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=003
65828           <...>-13367 (-----) [003] dnh3 24573.910457: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
65829           <...>-13367 (-----) [003] dnh3 24573.910468: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
65830 id.nn.benchmark-13158 (13131) [007] dnh1 24573.910471: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
65831           <...>-13367 (-----) [003] dnh4 24573.910473: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
65832 id.nn.benchmark-13158 (13131) [007] d..2 24573.910474: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
65833         sugov:4-560   (  560) [007] d..2 24573.910478: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
65834           <...>-13367 (-----) [003] d..2 24573.910479: sched_switch: prev_comm=id.nn.benchmark prev_pid=13367 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
65835         sugov:0-559   (  559) [003] d..2 24573.910486: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
65836           <...>-13131 (-----) [003] ...1 24573.910507: tracing_mark_write: E|13131
65837           <...>-13131 (-----) [003] ...1 24573.910513: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
65838           <...>-13131 (-----) [003] ...1 24573.910518: tracing_mark_write: E|13131
65839           <...>-13131 (-----) [003] ...1 24573.910522: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
65840           <...>-13131 (-----) [003] ...1 24573.910526: tracing_mark_write: E|13131
65841<...>-24151 ( 24151) [006] .... 24573.910572: binder_transaction: transaction=1670143 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
65842<...>-24151 ( 24151) [006] d..4 24573.910577: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
65843           <...>-13131 (-----) [003] d.h1 24573.910593: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
65844<...>-24151 ( 24151) [006] d..3 24573.910601: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=003
65845<...>-24151 ( 24151) [006] d..4 24573.910616: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
65846 id.nn.benchmark-13158 (13131) [007] d..2 24573.910633: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
65847    RenderThread-24437 (24151) [007] d..2 24573.910650: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
65848<...>-24151 ( 24151) [006] d..3 24573.910687: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
65849<...>-24151 ( 24151) [006] d..4 24573.910694: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
65850<...>-24151 ( 24151) [006] d..2 24573.910700: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
65851 id.nn.benchmark-13158 (13131) [007] d..2 24573.910701: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
65852    RenderThread-24437 (24151) [007] d..1 24573.910746: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
65853    RenderThread-24437 (24151) [007] d..2 24573.910754: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
65854 id.nn.benchmark-13155 (13131) [006] d..2 24573.910760: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
65855<...>-24151 ( 24151) [006] d..2 24573.910781: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
65856    RenderThread-24437 (24151) [007] .... 24573.910782: binder_transaction: transaction=1670144 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
65857    RenderThread-24437 (24151) [007] d..4 24573.910786: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
65858    RenderThread-24437 (24151) [007] d..5 24573.910801: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=006
65859 id.nn.benchmark-13155 (13131) [006] d..2 24573.910818: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
65860    RenderThread-24437 (24151) [007] d..2 24573.910821: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
65861  Binder:23896_5-25989 (23896) [006] .... 24573.910823: binder_transaction_received: transaction=1670144
65862           <...>-13131 (-----) [003] ...1 24573.910844: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
65863  Binder:23896_5-25989 (23896) [006] .... 24573.910859: binder_transaction: transaction=1670145 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
65864  Binder:23896_5-25989 (23896) [006] d..2 24573.910864: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
65865  Binder:23896_5-25989 (23896) [006] d..3 24573.910873: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
65866 id.nn.benchmark-13158 (13131) [007] d..2 24573.910881: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
65867    RenderThread-24437 (24151) [007] d.s4 24573.910892: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
65868  Binder:23896_5-25989 (23896) [006] d..2 24573.910896: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
65869    RenderThread-24437 (24151) [007] .... 24573.910903: binder_transaction_received: transaction=1670145
65870           <...>-13131 (-----) [003] d.h1 24573.910906: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
65871           <...>-13131 (-----) [003] ...1 24573.910915: tracing_mark_write: E|13131
65872           <...>-13131 (-----) [003] ...1 24573.910920: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
65873           <...>-13131 (-----) [003] ...1 24573.910925: tracing_mark_write: E|13131
65874           <...>-13131 (-----) [003] ...1 24573.910929: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
65875           <...>-13131 (-----) [003] ...1 24573.910933: tracing_mark_write: E|13131
65876           <...>-13131 (-----) [003] ...1 24573.910936: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
65877           <...>-13131 (-----) [003] ...1 24573.911041: tracing_mark_write: E|13131
65878           <...>-13131 (-----) [003] ...1 24573.911045: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
65879           <...>-13131 (-----) [003] d..2 24573.911054: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13367 next_prio=110
65880           <...>-13367 (-----) [003] d..2 24573.911111: sched_switch: prev_comm=id.nn.benchmark prev_pid=13367 prev_prio=110 prev_state=x ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
65881<...>-23903 ( 23896) [003] .... 24573.911120: binder_transaction_received: transaction=1670143
65882<...>-23903 ( 23896) [003] d..1 24573.911140: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
65883<...>-23903 ( 23896) [003] d..2 24573.911151: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
65884 id.nn.benchmark-13156 (13131) [002] d..2 24573.911159: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
65885<...>-23903 ( 23896) [003] d..2 24573.911168: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
65886  appEventThread-23905 (23896) [002] d..2 24573.911178: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
65887  kworker/u16:15-18488 (18488) [003] d..2 24573.911356: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13368 next_prio=110
65888           <...>-13368 (-----) [003] d.s3 24573.911392: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
65889 id.nn.benchmark-13155 (13131) [006] d.h1 24573.911435: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
65890 id.nn.benchmark-13155 (13131) [006] dnh1 24573.911436: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
65891           <...>-13368 (-----) [003] d.H4 24573.911436: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
65892 id.nn.benchmark-13155 (13131) [006] d..2 24573.911439: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
65893           <...>-13368 (-----) [003] d.H4 24573.911448: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
65894 id.nn.benchmark-13160 (13131) [004] dnh1 24573.911451: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
65895 id.nn.benchmark-13160 (13131) [004] d..2 24573.911457: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
65896           <...>-13368 (-----) [003] d.H5 24573.911460: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
65897    RenderThread-24437 (24151) [007] d..2 24573.911460: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
65898         sugov:4-560   (  560) [004] d..2 24573.911461: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
65899 id.nn.benchmark-13159 (13131) [000] d..2 24573.911467: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
65900         sugov:0-559   (  559) [000] d..2 24573.911476: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
65901           <...>-13368 (-----) [003] d..2 24573.911493: sched_switch: prev_comm=id.nn.benchmark prev_pid=13368 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
65902 id.nn.benchmark-13158 (13131) [007] d.h1 24573.911559: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
65903 id.nn.benchmark-13158 (13131) [007] d.h2 24573.911564: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
65904 id.nn.benchmark-13158 (13131) [007] dnh2 24573.911565: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
65905 id.nn.benchmark-13158 (13131) [007] d..2 24573.911571: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
65906     logd.writer-563   (  555) [003] d..2 24573.911576: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13369 next_prio=110
65907  kworker/u16:15-18488 (18488) [006] d..2 24573.911578: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
65908           <...>-13369 (-----) [003] d..2 24573.911648: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
65909    RenderThread-24437 (24151) [007] .... 24573.911650: binder_transaction: transaction=1670146 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
65910    RenderThread-24437 (24151) [007] d..4 24573.911654: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
65911           <...>-13369 (-----) [003] d..3 24573.911657: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
65912    RenderThread-24437 (24151) [007] d..5 24573.911671: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
65913 id.nn.benchmark-13159 (13131) [000] d.h2 24573.911685: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
65914 id.nn.benchmark-13155 (13131) [006] d..2 24573.911689: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
65915    RenderThread-24437 (24151) [007] d..2 24573.911690: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
65916<...>-23903 ( 23896) [006] .... 24573.911691: binder_transaction_received: transaction=1670146
65917 id.nn.benchmark-13158 (13131) [007] dnh1 24573.911707: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
65918 id.nn.benchmark-13158 (13131) [007] d..2 24573.911710: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
65919 kgsl_worker_thr-246   (  246) [007] d..2 24573.911732: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
65920 kgsl_worker_thr-246   (  246) [007] d..3 24573.911741: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
65921<...>-23903 ( 23896) [006] .... 24573.911744: binder_transaction: transaction=1670147 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
65922<...>-23903 ( 23896) [006] d..2 24573.911746: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
65923 id.nn.benchmark-13160 (13131) [004] d..2 24573.911748: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
65924 kgsl_worker_thr-246   (  246) [007] d..2 24573.911749: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
65925<...>-23903 ( 23896) [006] d..3 24573.911756: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
65926 id.nn.benchmark-13158 (13131) [007] d..2 24573.911762: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
65927    RenderThread-24437 (24151) [007] .... 24573.911764: binder_transaction_received: transaction=1670147
65928<...>-23903 ( 23896) [006] d..2 24573.911765: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
65929  kworker/u16:15-18488 (18488) [004] d..2 24573.911766: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
65930    RenderThread-24437 (24151) [007] d..2 24573.911788: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
65931           <...>-13369 (-----) [003] d..2 24573.911979: sched_switch: prev_comm=id.nn.benchmark prev_pid=13369 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
65932     logd.writer-563   (  555) [003] d..2 24573.912171: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13370 next_prio=110
65933           <...>-13370 (-----) [003] ...1 24573.912200: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
65934           <...>-13370 (-----) [003] ...1 24573.912205: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
65935           <...>-13370 (-----) [003] d..2 24573.912268: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
65936           <...>-13370 (-----) [003] d..3 24573.912276: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
65937           <...>-13370 (-----) [003] ...1 24573.912348: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
65938           <...>-13370 (-----) [003] ...1 24573.912354: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
65939 id.nn.benchmark-13158 (13131) [007] d.s2 24573.914225: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=004
65940           <...>-13370 (-----) [003] d.s1 24573.914232: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
65941 id.nn.benchmark-13158 (13131) [007] d.s3 24573.914240: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
65942 id.nn.benchmark-13155 (13131) [006] d..2 24573.914246: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
65943 id.nn.benchmark-13158 (13131) [007] dnh1 24573.914255: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
65944 id.nn.benchmark-13158 (13131) [007] d..2 24573.914279: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
65945           <...>-13370 (-----) [003] d.H3 24573.914280: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
65946           <...>-13370 (-----) [003] d.H3 24573.914288: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
65947  kworker/u16:15-18488 (18488) [006] d..2 24573.914288: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
65948 id.nn.benchmark-13160 (13131) [004] dnh1 24573.914291: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
65949 id.nn.benchmark-13160 (13131) [004] d..2 24573.914293: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
65950           <...>-13370 (-----) [003] d.H4 24573.914296: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
65951         sugov:4-560   (  560) [004] d..2 24573.914296: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
65952           <...>-13370 (-----) [003] d.H2 24573.914301: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
65953 id.nn.benchmark-13159 (13131) [000] d..2 24573.914306: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
65954         sugov:0-559   (  559) [000] d..2 24573.914314: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
65955 id.nn.benchmark-13155 (13131) [006] dnh1 24573.914319: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=006
65956 id.nn.benchmark-13155 (13131) [006] d..2 24573.914338: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
65957     rcu_preempt-7     (    7) [007] d..2 24573.914342: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
65958        DispSync-23904 (23896) [006] d..1 24573.914345: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
65959        DispSync-23904 (23896) [006] d..2 24573.914356: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
65960 id.nn.benchmark-13159 (13131) [000] dnh1 24573.914356: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
65961 id.nn.benchmark-13159 (13131) [000] d..2 24573.914361: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
65962   sfEventThread-23906 (23896) [000] d..3 24573.914388: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
65963   sfEventThread-23906 (23896) [000] d..4 24573.914399: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
65964           <...>-13370 (-----) [003] d..2 24573.914408: sched_switch: prev_comm=id.nn.benchmark prev_pid=13370 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
65965   sfEventThread-23906 (23896) [000] d..2 24573.914411: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
65966  surfaceflinger-23896 (23896) [003] d..1 24573.914654: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
65967  surfaceflinger-23896 (23896) [003] d..2 24573.914666: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
65968 id.nn.benchmark-13159 (13131) [000] d..2 24573.914674: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
65969   sfEventThread-23906 (23896) [000] d..2 24573.914688: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
65970  surfaceflinger-23896 (23896) [003] ...1 24573.914796: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
65971  surfaceflinger-23896 (23896) [003] ...1 24573.914799: tracing_mark_write: E|23896
65972  surfaceflinger-23896 (23896) [003] .... 24573.914843: binder_transaction: transaction=1670148 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
65973  surfaceflinger-23896 (23896) [003] ...2 24573.914862: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
65974  surfaceflinger-23896 (23896) [003] d..4 24573.914869: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
65975 id.nn.benchmark-13155 (13131) [006] dnh1 24573.914891: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=006
65976 id.nn.benchmark-13155 (13131) [006] d..2 24573.914916: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
65977  surfaceflinger-23896 (23896) [003] d.h5 24573.914917: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
65978  surfaceflinger-23896 (23896) [003] d.h5 24573.914928: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
65979 id.nn.benchmark-13158 (13131) [007] dnh1 24573.914931: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
65980 id.nn.benchmark-13158 (13131) [007] d..2 24573.914934: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
65981  surfaceflinger-23896 (23896) [003] d.h6 24573.914936: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
65982         sugov:4-560   (  560) [007] d..2 24573.914938: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
65983  HwBinder:598_3-633   (  598) [006] .... 24573.914941: binder_transaction_received: transaction=1670148
65984 id.nn.benchmark-13159 (13131) [000] d..2 24573.914943: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
65985  surfaceflinger-23896 (23896) [003] d..2 24573.914948: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13370 next_prio=110
65986         sugov:0-559   (  559) [000] d..2 24573.914951: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
65987  HwBinder:598_3-633   (  598) [006] ...1 24573.914964: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
65988  HwBinder:598_3-633   (  598) [006] ...1 24573.915014: tracing_mark_write: B|598|HWCSession::PresentDisplay::
65989           <...>-13370 (-----) [003] ...1 24573.915052: tracing_mark_write: E|13131
65990           <...>-13370 (-----) [003] ...1 24573.915056: tracing_mark_write: E|13131
65991           <...>-13370 (-----) [003] ...1 24573.915072: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
65992  HwBinder:598_3-633   (  598) [006] ...1 24573.915075: tracing_mark_write: B|598|HWDeviceDRM::Commit::
65993           <...>-13370 (-----) [003] ...1 24573.915076: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
65994  HwBinder:598_3-633   (  598) [006] ...1 24573.915079: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
65995  HwBinder:598_3-633   (  598) [006] d..2 24573.915274: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
65996  HwBinder:598_3-633   (  598) [006] d..3 24573.915289: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
65997 id.nn.benchmark-13158 (13131) [007] d..2 24573.915305: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
65998  HwBinder:598_3-633   (  598) [006] ...1 24573.915333: tracing_mark_write: E|598
65999  HwBinder:598_3-633   (  598) [006] ...1 24573.915334: tracing_mark_write: E|598
66000  HwBinder:598_3-633   (  598) [006] ...1 24573.915357: tracing_mark_write: E|598
66001  HwBinder:598_3-633   (  598) [006] ...1 24573.915376: tracing_mark_write: E|598
66002  HwBinder:598_3-633   (  598) [006] .... 24573.915382: binder_transaction: transaction=1670149 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
66003  HwBinder:598_3-633   (  598) [006] d..2 24573.915388: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
66004  HwBinder:598_3-633   (  598) [006] .... 24573.915394: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
66005           <...>-13370 (-----) [003] dnh1 24573.915401: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
66006           <...>-13370 (-----) [003] d..2 24573.915408: sched_switch: prev_comm=id.nn.benchmark prev_pid=13370 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
66007  surfaceflinger-23896 (23896) [003] .... 24573.915414: binder_transaction_received: transaction=1670149
66008  HwBinder:598_3-633   (  598) [006] d..2 24573.915416: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
66009  surfaceflinger-23896 (23896) [003] d..2 24573.915670: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13370 next_prio=110
66010 crtc_commit:111-253   (  253) [007] d..2 24573.915865: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
66011           <...>-13370 (-----) [003] ...1 24573.916062: tracing_mark_write: E|13131
66012           <...>-13370 (-----) [003] ...1 24573.916066: tracing_mark_write: E|13131
66013           <...>-13370 (-----) [003] ...1 24573.916088: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66014           <...>-13370 (-----) [003] ...1 24573.916092: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66015           <...>-13370 (-----) [003] ...1 24573.916427: tracing_mark_write: E|13131
66016           <...>-13370 (-----) [003] ...1 24573.916431: tracing_mark_write: E|13131
66017           <...>-13370 (-----) [003] ...1 24573.916443: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66018           <...>-13370 (-----) [003] ...1 24573.916447: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66019           <...>-13370 (-----) [003] ...1 24573.916683: tracing_mark_write: E|13131
66020           <...>-13370 (-----) [003] ...1 24573.916686: tracing_mark_write: E|13131
66021           <...>-13370 (-----) [003] ...1 24573.916697: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66022           <...>-13370 (-----) [003] ...1 24573.916701: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66023           <...>-13370 (-----) [003] ...1 24573.917095: tracing_mark_write: E|13131
66024           <...>-13370 (-----) [003] ...1 24573.917099: tracing_mark_write: E|13131
66025           <...>-13370 (-----) [003] ...1 24573.917109: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66026           <...>-13370 (-----) [003] ...1 24573.917113: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66027           <...>-13370 (-----) [003] ...1 24573.917499: tracing_mark_write: E|13131
66028           <...>-13370 (-----) [003] ...1 24573.917503: tracing_mark_write: E|13131
66029           <...>-13370 (-----) [003] ...1 24573.917522: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66030           <...>-13370 (-----) [003] ...1 24573.917526: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66031 id.nn.benchmark-13158 (13131) [007] d.s2 24573.917558: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=006
66032 id.nn.benchmark-13158 (13131) [007] dns3 24573.917582: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
66033 id.nn.benchmark-13158 (13131) [007] dns2 24573.917584: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
66034           <...>-13157 (-----) [005] d.h2 24573.917589: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
66035 id.nn.benchmark-13158 (13131) [007] dns3 24573.917593: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
66036           <...>-13157 (-----) [005] dnh3 24573.917597: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
66037           <...>-13157 (-----) [005] dnh2 24573.917597: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
66038 id.nn.benchmark-13158 (13131) [007] d..2 24573.917599: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
66039           <...>-13157 (-----) [005] d..2 24573.917605: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
66040 id.nn.benchmark-13159 (13131) [000] dnh1 24573.917609: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
66041         sugov:4-560   (  560) [005] d..2 24573.917609: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
66042 id.nn.benchmark-13159 (13131) [000] d..2 24573.917618: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
66043         sugov:0-559   (  559) [000] d..2 24573.917629: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
66044  kworker/u16:15-18488 (18488) [007] d..2 24573.917705: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
66045     rcu_preempt-7     (    7) [007] d..2 24573.917707: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
66046     rcu_preempt-7     (    7) [007] d..2 24573.917717: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=006
66047           <...>-13370 (-----) [003] dnh1 24573.917725: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
66048     rcu_preempt-7     (    7) [007] d..3 24573.917726: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=007
66049     rcu_preempt-7     (    7) [007] d..2 24573.917731: 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
66050           <...>-13370 (-----) [003] d..2 24573.917731: sched_switch: prev_comm=id.nn.benchmark prev_pid=13370 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
66051         rcuop/2-29    (   29) [007] d..2 24573.917733: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
66052         rcuop/0-10    (   10) [003] d..2 24573.917736: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
66053         rcuop/2-29    (   29) [007] d..2 24573.917745: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
66054 id.nn.benchmark-13160 (13131) [004] dnh1 24573.917766: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
66055         rcuop/0-10    (   10) [003] d.h2 24573.917768: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
66056 id.nn.benchmark-13160 (13131) [004] d..2 24573.917768: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
66057         rcuop/1-21    (   21) [004] d..2 24573.917774: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
66058         rcuop/0-10    (   10) [003] d..2 24573.917774: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
66059         rcuop/3-37    (   37) [003] d..2 24573.917798: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13370 next_prio=110
66060           <...>-13370 (-----) [003] ...1 24573.917847: tracing_mark_write: E|13131
66061           <...>-13370 (-----) [003] ...1 24573.917851: tracing_mark_write: E|13131
66062           <...>-13370 (-----) [003] ...1 24573.917867: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66063           <...>-13370 (-----) [003] ...1 24573.917871: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66064           <...>-13370 (-----) [003] ...1 24573.917942: tracing_mark_write: E|13131
66065           <...>-13370 (-----) [003] ...1 24573.917945: tracing_mark_write: E|13131
66066           <...>-13370 (-----) [003] ...1 24573.917957: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
66067           <...>-13370 (-----) [003] ...1 24573.917961: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
66068           <...>-13370 (-----) [003] ...1 24573.918270: tracing_mark_write: E|13131
66069           <...>-13370 (-----) [003] ...1 24573.918273: tracing_mark_write: E|13131
66070           <...>-13370 (-----) [003] ...1 24573.918283: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
66071           <...>-13370 (-----) [003] ...1 24573.918287: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
66072           <...>-13370 (-----) [003] ...1 24573.918340: tracing_mark_write: E|13131
66073           <...>-13370 (-----) [003] ...1 24573.918343: tracing_mark_write: E|13131
66074           <...>-13370 (-----) [003] ...1 24573.918351: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
66075           <...>-13370 (-----) [003] ...1 24573.918355: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
66076           <...>-13370 (-----) [003] ...1 24573.918371: tracing_mark_write: E|13131
66077           <...>-13370 (-----) [003] ...1 24573.918374: tracing_mark_write: E|13131
66078           <...>-13370 (-----) [003] ...1 24573.918385: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
66079           <...>-13370 (-----) [003] ...1 24573.918388: tracing_mark_write: E|13131
66080           <...>-13370 (-----) [003] ...1 24573.918398: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
66081           <...>-13370 (-----) [003] ...1 24573.918403: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
66082           <...>-13370 (-----) [003] ...1 24573.919257: tracing_mark_write: E|13131
66083           <...>-13370 (-----) [003] ...1 24573.919259: tracing_mark_write: E|13131
66084           <...>-13370 (-----) [003] ...1 24573.919268: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66085           <...>-13370 (-----) [003] ...1 24573.919271: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66086           <...>-13370 (-----) [003] ...1 24573.919354: tracing_mark_write: E|13131
66087           <...>-13370 (-----) [003] ...1 24573.919357: tracing_mark_write: E|13131
66088           <...>-13370 (-----) [003] ...1 24573.919414: tracing_mark_write: E|13131
66089           <...>-13370 (-----) [003] d..1 24573.919418: sched_waking: comm=id.nn.benchmark pid=13369 prio=110 target_cpu=003
66090 id.nn.benchmark-13158 (13131) [007] dnh1 24573.919443: sched_wakeup: comm=id.nn.benchmark pid=13369 prio=110 target_cpu=007
66091 id.nn.benchmark-13158 (13131) [007] d..2 24573.919468: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13369 next_prio=110
66092           <...>-13370 (-----) [003] d.h3 24573.919469: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
66093           <...>-13369 (-----) [007] d..2 24573.919476: sched_switch: prev_comm=id.nn.benchmark prev_pid=13369 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
66094           <...>-13370 (-----) [003] d.h3 24573.919477: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
66095           <...>-13157 (-----) [005] dnh1 24573.919480: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
66096           <...>-13157 (-----) [005] d..2 24573.919482: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
66097           <...>-13370 (-----) [003] d.h4 24573.919485: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
66098         sugov:4-560   (  560) [005] d..2 24573.919485: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
66099 id.nn.benchmark-13159 (13131) [000] d..2 24573.919493: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
66100         sugov:0-559   (  559) [000] d..2 24573.919500: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
66101           <...>-13370 (-----) [003] ...1 24573.919502: tracing_mark_write: E|13131
66102           <...>-13370 (-----) [003] d..1 24573.919721: sched_waking: comm=id.nn.benchmark pid=13369 prio=110 target_cpu=007
66103 id.nn.benchmark-13158 (13131) [007] dnh1 24573.919735: sched_wakeup: comm=id.nn.benchmark pid=13369 prio=110 target_cpu=007
66104 id.nn.benchmark-13158 (13131) [007] d..2 24573.919737: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13369 next_prio=110
66105           <...>-13370 (-----) [003] d..2 24573.919766: sched_switch: prev_comm=id.nn.benchmark prev_pid=13370 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
66106           <...>-13369 (-----) [007] d..1 24573.919801: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=003
66107     logd.writer-563   (  555) [003] dnh1 24573.919822: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=003
66108     logd.writer-563   (  555) [003] d..2 24573.919829: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
66109           <...>-13131 (-----) [003] d..2 24573.919843: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
66110           <...>-13369 (-----) [007] d..1 24573.919845: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=003
66111     logd.writer-563   (  555) [003] dnh1 24573.919862: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=003
66112     logd.writer-563   (  555) [003] d..2 24573.919867: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
66113           <...>-13369 (-----) [007] d..2 24573.919871: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
66114           <...>-13131 (-----) [003] d.h1 24573.919889: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=003
66115           <...>-13369 (-----) [007] d..2 24573.919891: sched_switch: prev_comm=id.nn.benchmark prev_pid=13369 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
66116           <...>-13131 (-----) [003] ...1 24573.919896: tracing_mark_write: E|13131
66117           <...>-13131 (-----) [003] ...1 24573.919901: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
66118           <...>-13131 (-----) [003] ...1 24573.919907: tracing_mark_write: E|13131
66119           <...>-13131 (-----) [003] ...1 24573.919911: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
66120           <...>-13131 (-----) [003] ...1 24573.919915: tracing_mark_write: E|13131
66121           <...>-13131 (-----) [003] ...1 24573.920226: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
66122           <...>-13131 (-----) [003] ...1 24573.920266: tracing_mark_write: E|13131
66123           <...>-13131 (-----) [003] ...1 24573.920271: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
66124           <...>-13131 (-----) [003] ...1 24573.920277: tracing_mark_write: E|13131
66125           <...>-13131 (-----) [003] ...1 24573.920281: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
66126           <...>-13131 (-----) [003] ...1 24573.920287: tracing_mark_write: E|13131
66127           <...>-13131 (-----) [003] ...1 24573.920291: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
66128           <...>-13131 (-----) [003] ...1 24573.920400: tracing_mark_write: E|13131
66129           <...>-13131 (-----) [003] ...1 24573.920405: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
66130           <...>-13131 (-----) [003] d..2 24573.920414: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
66131         rcuop/6-61    (   61) [003] d..2 24573.920424: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
66132     logd.writer-563   (  555) [003] d..2 24573.920602: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13371 next_prio=110
66133           <...>-13371 (-----) [003] d..2 24573.920657: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
66134           <...>-13371 (-----) [003] d..3 24573.920665: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
66135 id.nn.benchmark-13158 (13131) [007] d.s2 24573.920890: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
66136 id.nn.benchmark-13158 (13131) [007] dns3 24573.920893: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
66137 id.nn.benchmark-13158 (13131) [007] d..2 24573.920897: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
66138           <...>-13371 (-----) [003] d..2 24573.920980: sched_switch: prev_comm=id.nn.benchmark prev_pid=13371 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
66139     logd.writer-563   (  555) [003] d..2 24573.921199: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
66140  kworker/u16:15-18488 (18488) [007] d..2 24573.921203: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13372 next_prio=110
66141           <...>-13372 (-----) [007] ...1 24573.921221: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
66142           <...>-13372 (-----) [007] ...1 24573.921223: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
66143 id.nn.benchmark-13158 (13131) [003] d.H4 24573.921252: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
66144           <...>-13372 (-----) [007] d..2 24573.921253: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
66145 id.nn.benchmark-13158 (13131) [003] d.H4 24573.921265: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
66146           <...>-13372 (-----) [007] dnh1 24573.921269: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
66147           <...>-13372 (-----) [007] d..2 24573.921272: sched_switch: prev_comm=id.nn.benchmark prev_pid=13372 prev_prio=110 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
66148 id.nn.benchmark-13158 (13131) [003] d.H5 24573.921274: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
66149         sugov:4-560   (  560) [007] d..2 24573.921277: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13372 next_prio=110
66150 id.nn.benchmark-13158 (13131) [003] d.H3 24573.921280: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
66151 id.nn.benchmark-13159 (13131) [000] d..2 24573.921281: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
66152 id.nn.benchmark-13158 (13131) [003] d.s4 24573.921287: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
66153         sugov:0-559   (  559) [000] d..2 24573.921288: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
66154           <...>-13372 (-----) [007] d.h1 24573.921300: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
66155           <...>-13372 (-----) [007] dnh1 24573.921302: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
66156           <...>-13372 (-----) [007] d..2 24573.921304: sched_switch: prev_comm=id.nn.benchmark prev_pid=13372 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
66157  kworker/u16:15-18488 (18488) [007] d..2 24573.921311: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13372 next_prio=110
66158           <...>-13372 (-----) [007] ...1 24573.921318: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66159           <...>-13372 (-----) [007] ...1 24573.921320: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66160           <...>-13372 (-----) [007] ...1 24573.922180: tracing_mark_write: E|13131
66161           <...>-13372 (-----) [007] ...1 24573.922181: tracing_mark_write: E|13131
66162           <...>-13372 (-----) [007] ...1 24573.922186: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66163           <...>-13372 (-----) [007] ...1 24573.922187: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66164 id.nn.benchmark-13159 (13131) [000] d.h4 24573.922347: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
66165 id.nn.benchmark-13159 (13131) [000] d.h4 24573.922370: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
66166           <...>-13372 (-----) [007] dnh1 24573.922375: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
66167           <...>-13372 (-----) [007] d..2 24573.922379: sched_switch: prev_comm=id.nn.benchmark prev_pid=13372 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
66168  crtc_event:111-254   (  254) [007] d.h3 24573.922383: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
66169           <...>-13157 (-----) [005] d..2 24573.922418: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
66170 id.nn.benchmark-13159 (13131) [000] d.h2 24573.922418: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
66171  crtc_event:111-254   (  254) [007] d..2 24573.922425: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13372 next_prio=110
66172 id.nn.benchmark-13159 (13131) [000] d.h2 24573.922433: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
66173 id.nn.benchmark-13160 (13131) [004] dnh1 24573.922435: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
66174 id.nn.benchmark-13160 (13131) [004] d..2 24573.922438: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
66175 id.nn.benchmark-13159 (13131) [000] dnh3 24573.922438: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
66176         sugov:4-560   (  560) [004] d..2 24573.922442: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
66177 id.nn.benchmark-13159 (13131) [000] d..2 24573.922445: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
66178         sugov:0-559   (  559) [000] d..2 24573.922451: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
66179 crtc_commit:111-253   (  253) [005] d..2 24573.922515: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
66180           <...>-13372 (-----) [007] ...1 24573.922676: tracing_mark_write: E|13131
66181           <...>-13372 (-----) [007] ...1 24573.922677: tracing_mark_write: E|13131
66182           <...>-13372 (-----) [007] ...1 24573.922683: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66183           <...>-13372 (-----) [007] ...1 24573.922685: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66184           <...>-13372 (-----) [007] ...1 24573.922898: tracing_mark_write: E|13131
66185           <...>-13372 (-----) [007] ...1 24573.922899: tracing_mark_write: E|13131
66186           <...>-13372 (-----) [007] ...1 24573.922903: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66187           <...>-13372 (-----) [007] ...1 24573.922905: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66188           <...>-13372 (-----) [007] ...1 24573.923068: tracing_mark_write: E|13131
66189           <...>-13372 (-----) [007] ...1 24573.923069: tracing_mark_write: E|13131
66190           <...>-13372 (-----) [007] ...1 24573.923072: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66191           <...>-13372 (-----) [007] ...1 24573.923073: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66192           <...>-13372 (-----) [007] ...1 24573.923363: tracing_mark_write: E|13131
66193           <...>-13372 (-----) [007] ...1 24573.923364: tracing_mark_write: E|13131
66194           <...>-13372 (-----) [007] ...1 24573.923367: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66195           <...>-13372 (-----) [007] ...1 24573.923368: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66196           <...>-13372 (-----) [007] ...1 24573.923658: tracing_mark_write: E|13131
66197           <...>-13372 (-----) [007] ...1 24573.923659: tracing_mark_write: E|13131
66198           <...>-13372 (-----) [007] ...1 24573.923667: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66199           <...>-13372 (-----) [007] ...1 24573.923668: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66200           <...>-13372 (-----) [007] ...1 24573.923827: tracing_mark_write: E|13131
66201           <...>-13372 (-----) [007] ...1 24573.923828: tracing_mark_write: E|13131
66202           <...>-13372 (-----) [007] ...1 24573.923832: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66203           <...>-13372 (-----) [007] ...1 24573.923833: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66204           <...>-13372 (-----) [007] ...1 24573.923885: tracing_mark_write: E|13131
66205           <...>-13372 (-----) [007] ...1 24573.923886: tracing_mark_write: E|13131
66206           <...>-13372 (-----) [007] ...1 24573.923890: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
66207           <...>-13372 (-----) [007] ...1 24573.923891: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
66208           <...>-13372 (-----) [007] ...1 24573.924016: tracing_mark_write: E|13131
66209           <...>-13372 (-----) [007] ...1 24573.924017: tracing_mark_write: E|13131
66210           <...>-13372 (-----) [007] ...1 24573.924020: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
66211           <...>-13372 (-----) [007] ...1 24573.924022: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
66212           <...>-13372 (-----) [007] ...1 24573.924041: tracing_mark_write: E|13131
66213           <...>-13372 (-----) [007] ...1 24573.924042: tracing_mark_write: E|13131
66214           <...>-13372 (-----) [007] ...1 24573.924045: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
66215           <...>-13372 (-----) [007] ...1 24573.924046: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
66216           <...>-13372 (-----) [007] ...1 24573.924051: tracing_mark_write: E|13131
66217           <...>-13372 (-----) [007] ...1 24573.924052: tracing_mark_write: E|13131
66218           <...>-13372 (-----) [007] ...1 24573.924056: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
66219           <...>-13372 (-----) [007] ...1 24573.924057: tracing_mark_write: E|13131
66220           <...>-13372 (-----) [007] ...1 24573.924061: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
66221           <...>-13372 (-----) [007] ...1 24573.924063: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
66222           <...>-13372 (-----) [007] d.s1 24573.924224: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
66223 id.nn.benchmark-13156 (13131) [002] d.h2 24573.924229: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
66224           <...>-13372 (-----) [007] dns2 24573.924234: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
66225           <...>-13372 (-----) [007] dns2 24573.924236: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
66226 id.nn.benchmark-13156 (13131) [002] dnh3 24573.924237: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
66227           <...>-13372 (-----) [007] dns3 24573.924241: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
66228           <...>-13372 (-----) [007] d..2 24573.924245: sched_switch: prev_comm=id.nn.benchmark prev_pid=13372 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
66229 id.nn.benchmark-13156 (13131) [002] d..2 24573.924247: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
66230     rcu_preempt-7     (    7) [007] d..2 24573.924250: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
66231  kworker/u16:15-18488 (18488) [007] d..2 24573.924294: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
66232     migration/2-25    (   25) [002] d.h3 24573.924295: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
66233     migration/2-25    (   25) [002] d.h3 24573.924307: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
66234 id.nn.benchmark-13156 (13131) [007] dnh1 24573.924310: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
66235 id.nn.benchmark-13156 (13131) [007] d..2 24573.924312: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
66236         sugov:4-560   (  560) [007] d..2 24573.924317: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13372 next_prio=110
66237     migration/2-25    (   25) [002] d.h4 24573.924318: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
66238     migration/2-25    (   25) [002] d..2 24573.924327: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
66239         sugov:0-559   (  559) [002] d..2 24573.924353: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
66240           <...>-13372 (-----) [007] ...1 24573.924476: tracing_mark_write: E|13131
66241           <...>-13372 (-----) [007] ...1 24573.924477: tracing_mark_write: E|13131
66242           <...>-13372 (-----) [007] ...1 24573.924480: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66243           <...>-13372 (-----) [007] ...1 24573.924482: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66244     logd.writer-563   (  555) [002] d..2 24573.924537: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
66245           <...>-13372 (-----) [007] ...1 24573.924642: tracing_mark_write: E|13131
66246           <...>-13372 (-----) [007] ...1 24573.924643: tracing_mark_write: E|13131
66247           <...>-13372 (-----) [007] d..2 24573.924662: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
66248 id.nn.benchmark-13156 (13131) [002] d.h1 24573.924674: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
66249           <...>-13372 (-----) [007] ...1 24573.924675: tracing_mark_write: E|13131
66250           <...>-13372 (-----) [007] d..1 24573.924678: sched_waking: comm=id.nn.benchmark pid=13371 prio=110 target_cpu=003
66251           <...>-13372 (-----) [007] dn.2 24573.924688: sched_wakeup: comm=id.nn.benchmark pid=13371 prio=110 target_cpu=007
66252 id.nn.benchmark-13159 (13131) [000] d.h4 24573.924697: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=005
66253           <...>-13372 (-----) [007] d..2 24573.924706: sched_switch: prev_comm=id.nn.benchmark prev_pid=13372 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13371 next_prio=110
66254           <...>-13371 (-----) [007] d..2 24573.924715: sched_switch: prev_comm=id.nn.benchmark prev_pid=13371 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13372 next_prio=110
66255           <...>-13372 (-----) [007] dnh1 24573.924720: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
66256           <...>-13372 (-----) [007] d..2 24573.924722: sched_switch: prev_comm=id.nn.benchmark prev_pid=13372 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
66257 crtc_commit:111-253   (  253) [007] d..2 24573.924750: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13372 next_prio=110
66258           <...>-13372 (-----) [007] ...1 24573.924754: tracing_mark_write: E|13131
66259           <...>-13372 (-----) [007] d..1 24573.924860: sched_waking: comm=id.nn.benchmark pid=13371 prio=110 target_cpu=007
66260           <...>-13372 (-----) [007] dn.2 24573.924864: sched_wakeup: comm=id.nn.benchmark pid=13371 prio=110 target_cpu=007
66261           <...>-13372 (-----) [007] d..2 24573.924867: sched_switch: prev_comm=id.nn.benchmark prev_pid=13372 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13371 next_prio=110
66262           <...>-13371 (-----) [007] d..1 24573.924914: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=003
66263           <...>-13371 (-----) [007] dn.2 24573.924925: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
66264           <...>-13371 (-----) [007] d..2 24573.924927: sched_switch: prev_comm=id.nn.benchmark prev_pid=13371 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
66265           <...>-13131 (-----) [007] d.h3 24573.924946: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
66266           <...>-13131 (-----) [007] dnh4 24573.924950: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
66267           <...>-13131 (-----) [007] dnh3 24573.924950: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
66268           <...>-13131 (-----) [007] d..2 24573.924957: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
66269 id.nn.benchmark-13156 (13131) [002] dnh1 24573.924960: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
66270         sugov:4-560   (  560) [007] d..2 24573.924961: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
66271 id.nn.benchmark-13156 (13131) [002] d..2 24573.924965: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
66272           <...>-13131 (-----) [007] d..2 24573.924966: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13371 next_prio=110
66273         sugov:0-559   (  559) [002] d..2 24573.924973: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
66274 id.nn.benchmark-13159 (13131) [000] d.h4 24573.924985: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
66275           <...>-13371 (-----) [007] d..1 24573.924990: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
66276           <...>-13371 (-----) [007] dn.2 24573.924994: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
66277           <...>-13371 (-----) [007] d..2 24573.924996: sched_switch: prev_comm=id.nn.benchmark prev_pid=13371 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
66278           <...>-13131 (-----) [007] dnh3 24573.924998: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
66279           <...>-13131 (-----) [007] d..2 24573.925001: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
66280  crtc_event:111-254   (  254) [007] d..2 24573.925007: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
66281           <...>-13131 (-----) [007] ...1 24573.925015: tracing_mark_write: E|13131
66282           <...>-13131 (-----) [007] ...1 24573.925017: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
66283           <...>-13131 (-----) [007] ...1 24573.925019: tracing_mark_write: E|13131
66284           <...>-13131 (-----) [007] ...1 24573.925021: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
66285           <...>-13131 (-----) [007] ...1 24573.925023: tracing_mark_write: E|13131
66286           <...>-13131 (-----) [007] ...1 24573.925082: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
66287           <...>-13131 (-----) [007] ...1 24573.925103: tracing_mark_write: E|13131
66288           <...>-13131 (-----) [007] ...1 24573.925105: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
66289           <...>-13131 (-----) [007] ...1 24573.925107: tracing_mark_write: E|13131
66290           <...>-13131 (-----) [007] ...1 24573.925110: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
66291           <...>-13131 (-----) [007] ...1 24573.925112: tracing_mark_write: E|13131
66292           <...>-13131 (-----) [007] ...1 24573.925114: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
66293           <...>-13131 (-----) [007] ...1 24573.925160: tracing_mark_write: E|13131
66294           <...>-13131 (-----) [007] ...1 24573.925161: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
66295           <...>-13131 (-----) [007] d..2 24573.925167: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13371 next_prio=110
66296           <...>-13371 (-----) [007] d..2 24573.925193: sched_switch: prev_comm=id.nn.benchmark prev_pid=13371 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13372 next_prio=110
66297           <...>-13372 (-----) [007] d..2 24573.925204: sched_switch: prev_comm=id.nn.benchmark prev_pid=13372 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13373 next_prio=110
66298           <...>-13373 (-----) [007] d..2 24573.925348: sched_switch: prev_comm=id.nn.benchmark prev_pid=13373 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13374 next_prio=110
66299           <...>-13374 (-----) [007] ...1 24573.925358: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
66300           <...>-13374 (-----) [007] ...1 24573.925360: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
66301           <...>-13374 (-----) [007] ...1 24573.925409: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66302           <...>-13374 (-----) [007] ...1 24573.925411: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66303           <...>-13374 (-----) [007] ...1 24573.926259: tracing_mark_write: E|13131
66304           <...>-13374 (-----) [007] ...1 24573.926260: tracing_mark_write: E|13131
66305           <...>-13374 (-----) [007] ...1 24573.926264: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66306           <...>-13374 (-----) [007] ...1 24573.926265: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66307           <...>-13374 (-----) [007] ...1 24573.926633: tracing_mark_write: E|13131
66308           <...>-13374 (-----) [007] ...1 24573.926634: tracing_mark_write: E|13131
66309           <...>-13374 (-----) [007] ...1 24573.926639: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66310           <...>-13374 (-----) [007] ...1 24573.926640: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66311 id.nn.benchmark-13155 (13131) [006] d.h1 24573.926750: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=006
66312 id.nn.benchmark-13155 (13131) [006] d.h2 24573.926766: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=007
66313           <...>-13374 (-----) [007] d..2 24573.926774: sched_switch: prev_comm=id.nn.benchmark prev_pid=13374 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
66314        DispSync-23904 (23896) [007] d..1 24573.926789: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
66315 id.nn.benchmark-13156 (13131) [002] dnh1 24573.926803: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
66316        DispSync-23904 (23896) [007] d..2 24573.926806: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13374 next_prio=110
66317 id.nn.benchmark-13156 (13131) [002] d..2 24573.926810: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
66318  appEventThread-23905 (23896) [002] d..3 24573.926851: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
66319           <...>-13374 (-----) [007] dnh1 24573.926884: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
66320           <...>-13374 (-----) [007] d..2 24573.926887: sched_switch: prev_comm=id.nn.benchmark prev_pid=13374 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
66321  appEventThread-23905 (23896) [002] d..2 24573.926895: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
66322<...>-24151 ( 24151) [007] .... 24573.927091: binder_transaction: transaction=1670150 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
66323<...>-24151 ( 24151) [007] d..4 24573.927097: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
66324<...>-24151 ( 24151) [007] d..5 24573.927112: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
66325<...>-24151 ( 24151) [007] d..3 24573.927132: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
66326<...>-24151 ( 24151) [007] d..4 24573.927137: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
66327     logd.writer-563   (  555) [002] d..2 24573.927183: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
66328<...>-24151 ( 24151) [007] d..2 24573.927204: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
66329<...>-23903 ( 23896) [007] .... 24573.927208: binder_transaction_received: transaction=1670150
66330<...>-23903 ( 23896) [007] d..1 24573.927225: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
66331 id.nn.benchmark-13156 (13131) [002] dnh1 24573.927238: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
66332<...>-23903 ( 23896) [007] d..2 24573.927243: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
66333 id.nn.benchmark-13156 (13131) [002] d..2 24573.927245: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
66334  appEventThread-23905 (23896) [002] d..2 24573.927267: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
66335    RenderThread-24437 (24151) [007] d..1 24573.927300: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
66336    RenderThread-24437 (24151) [007] d..2 24573.927306: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
66337    RenderThread-24437 (24151) [007] .... 24573.927338: binder_transaction: transaction=1670151 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
66338    RenderThread-24437 (24151) [007] d..4 24573.927341: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
66339    RenderThread-24437 (24151) [007] d..5 24573.927345: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
66340    RenderThread-24437 (24151) [007] d..2 24573.927349: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
66341<...>-23903 ( 23896) [007] .... 24573.927351: binder_transaction_received: transaction=1670151
66342<...>-23903 ( 23896) [007] .... 24573.927380: binder_transaction: transaction=1670152 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
66343<...>-23903 ( 23896) [007] d..2 24573.927385: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
66344<...>-23903 ( 23896) [007] d..3 24573.927390: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
66345<...>-23903 ( 23896) [007] d..2 24573.927398: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
66346    RenderThread-24437 (24151) [007] .... 24573.927399: binder_transaction_received: transaction=1670152
66347           <...>-13157 (-----) [005] d.s2 24573.927555: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
66348    RenderThread-24437 (24151) [007] dns2 24573.927562: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
66349           <...>-13157 (-----) [005] d.s3 24573.927564: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
66350           <...>-13154 (-----) [001] d.s2 24573.927564: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
66351 id.nn.benchmark-13159 (13131) [000] d.h2 24573.927564: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
66352 id.nn.benchmark-13159 (13131) [000] dnh3 24573.927571: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
66353    RenderThread-24437 (24151) [007] dns3 24573.927572: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
66354    RenderThread-24437 (24151) [007] d..2 24573.927579: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
66355 id.nn.benchmark-13159 (13131) [000] d..2 24573.927581: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
66356  crtc_event:111-254   (  254) [007] d.h1 24573.927587: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
66357  crtc_event:111-254   (  254) [007] d..2 24573.927601: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
66358     migration/0-13    (   13) [000] d.h3 24573.927638: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
66359     migration/0-13    (   13) [000] d.h3 24573.927649: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
66360           <...>-13157 (-----) [005] dnh1 24573.927652: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
66361           <...>-13157 (-----) [005] d..2 24573.927655: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
66362         sugov:4-560   (  560) [005] d..2 24573.927659: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
66363     migration/0-13    (   13) [000] d.h4 24573.927659: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
66364     migration/0-13    (   13) [000] d..2 24573.927671: 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
66365         sugov:0-559   (  559) [000] d..2 24573.927703: 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
66366     rcu_preempt-7     (    7) [000] d..2 24573.927727: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=004
66367 id.nn.benchmark-13160 (13131) [004] dnh1 24573.927755: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=004
66368  kworker/u16:15-18488 (18488) [007] d..2 24573.927755: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
66369 id.nn.benchmark-13160 (13131) [004] d..2 24573.927757: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcuop/4 next_pid=45 next_prio=120
66370         rcuop/4-45    (   45) [004] d..2 24573.927760: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=007
66371         rcuop/4-45    (   45) [004] d..2 24573.927795: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
66372     rcu_preempt-7     (    7) [000] d..2 24573.927795: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
66373<...>-24151 ( 24151) [000] d.h3 24573.927803: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=000
66374<...>-24151 ( 24151) [000] d..2 24573.927858: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
66375         rcuop/5-53    (   53) [000] d..2 24573.927892: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13374 next_prio=110
66376           <...>-13374 (-----) [000] ...1 24573.927928: tracing_mark_write: E|13131
66377           <...>-13374 (-----) [000] ...1 24573.927932: tracing_mark_write: E|13131
66378           <...>-13374 (-----) [000] ...1 24573.927946: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66379           <...>-13374 (-----) [000] ...1 24573.927950: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66380    RenderThread-24437 (24151) [007] d..2 24573.928212: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
66381           <...>-13374 (-----) [000] ...1 24573.928263: tracing_mark_write: E|13131
66382           <...>-13374 (-----) [000] ...1 24573.928267: tracing_mark_write: E|13131
66383           <...>-13374 (-----) [000] ...1 24573.928278: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66384           <...>-13374 (-----) [000] ...1 24573.928282: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66385 id.nn.benchmark-13159 (13131) [007] d.h1 24573.928311: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
66386 id.nn.benchmark-13159 (13131) [007] d.h2 24573.928316: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
66387 id.nn.benchmark-13159 (13131) [007] dnh2 24573.928318: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
66388 id.nn.benchmark-13159 (13131) [007] d..2 24573.928322: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
66389    RenderThread-24437 (24151) [007] .... 24573.928404: binder_transaction: transaction=1670153 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
66390    RenderThread-24437 (24151) [007] d..4 24573.928408: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
66391    RenderThread-24437 (24151) [007] d..5 24573.928419: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
66392    RenderThread-24437 (24151) [007] d..2 24573.928423: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
66393<...>-23903 ( 23896) [007] .... 24573.928426: binder_transaction_received: transaction=1670153
66394           <...>-13374 (-----) [000] d.h2 24573.928441: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
66395           <...>-13374 (-----) [000] dnh3 24573.928459: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
66396<...>-23903 ( 23896) [007] .... 24573.928486: binder_transaction: transaction=1670154 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
66397<...>-23903 ( 23896) [007] d..2 24573.928487: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
66398           <...>-13374 (-----) [000] dnh2 24573.928492: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
66399<...>-23903 ( 23896) [007] d..3 24573.928498: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
66400           <...>-13374 (-----) [000] dnh2 24573.928506: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
66401<...>-23903 ( 23896) [007] dnh1 24573.928509: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
66402<...>-23903 ( 23896) [007] d..2 24573.928512: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
66403         sugov:4-560   (  560) [007] d..2 24573.928516: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
66404           <...>-13374 (-----) [000] dnh3 24573.928518: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
66405<...>-23903 ( 23896) [007] d..2 24573.928520: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
66406    RenderThread-24437 (24151) [007] .... 24573.928521: binder_transaction_received: transaction=1670154
66407           <...>-13374 (-----) [000] d..2 24573.928525: sched_switch: prev_comm=id.nn.benchmark prev_pid=13374 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
66408           <...>-13154 (-----) [001] d..2 24573.928528: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
66409         sugov:0-559   (  559) [001] d..2 24573.928537: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
66410    RenderThread-24437 (24151) [007] d..2 24573.928547: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
66411 kgsl_worker_thr-246   (  246) [000] d..2 24573.928559: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
66412 id.nn.benchmark-13159 (13131) [007] dnh1 24573.928584: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
66413 id.nn.benchmark-13159 (13131) [007] d..2 24573.928588: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
66414 kgsl_worker_thr-246   (  246) [000] d..2 24573.928592: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13374 next_prio=110
66415  kworker/u16:15-18488 (18488) [007] d..2 24573.928605: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
66416           <...>-13374 (-----) [000] ...1 24573.928833: tracing_mark_write: E|13131
66417           <...>-13374 (-----) [000] ...1 24573.928837: tracing_mark_write: E|13131
66418           <...>-13374 (-----) [000] ...1 24573.928848: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66419           <...>-13374 (-----) [000] ...1 24573.928852: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66420           <...>-13374 (-----) [000] ...1 24573.929236: tracing_mark_write: E|13131
66421           <...>-13374 (-----) [000] ...1 24573.929240: tracing_mark_write: E|13131
66422           <...>-13374 (-----) [000] ...1 24573.929258: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66423           <...>-13374 (-----) [000] ...1 24573.929263: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66424           <...>-13374 (-----) [000] ...1 24573.929453: tracing_mark_write: E|13131
66425           <...>-13374 (-----) [000] ...1 24573.929457: tracing_mark_write: E|13131
66426           <...>-13374 (-----) [000] ...1 24573.929470: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66427           <...>-13374 (-----) [000] ...1 24573.929474: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66428           <...>-13374 (-----) [000] ...1 24573.929544: tracing_mark_write: E|13131
66429           <...>-13374 (-----) [000] ...1 24573.929548: tracing_mark_write: E|13131
66430           <...>-13374 (-----) [000] ...1 24573.929558: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
66431           <...>-13374 (-----) [000] ...1 24573.929563: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
66432           <...>-13374 (-----) [000] ...1 24573.929869: tracing_mark_write: E|13131
66433           <...>-13374 (-----) [000] ...1 24573.929873: tracing_mark_write: E|13131
66434           <...>-13374 (-----) [000] ...1 24573.929882: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
66435           <...>-13374 (-----) [000] ...1 24573.929886: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
66436           <...>-13374 (-----) [000] ...1 24573.929939: tracing_mark_write: E|13131
66437           <...>-13374 (-----) [000] ...1 24573.929942: tracing_mark_write: E|13131
66438           <...>-13374 (-----) [000] ...1 24573.929952: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
66439           <...>-13374 (-----) [000] ...1 24573.929956: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
66440           <...>-13374 (-----) [000] ...1 24573.929973: tracing_mark_write: E|13131
66441           <...>-13374 (-----) [000] ...1 24573.929975: tracing_mark_write: E|13131
66442           <...>-13374 (-----) [000] ...1 24573.929986: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
66443           <...>-13374 (-----) [000] ...1 24573.929990: tracing_mark_write: E|13131
66444           <...>-13374 (-----) [000] ...1 24573.929998: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
66445           <...>-13374 (-----) [000] ...1 24573.930002: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
66446 id.nn.benchmark-13159 (13131) [007] d.h1 24573.930757: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=007
66447 id.nn.benchmark-13159 (13131) [007] d.h2 24573.930789: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
66448           <...>-13374 (-----) [000] dnh1 24573.930790: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
66449 id.nn.benchmark-13159 (13131) [007] dnh3 24573.930792: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
66450 id.nn.benchmark-13159 (13131) [007] dnh2 24573.930792: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
66451           <...>-13374 (-----) [000] d..2 24573.930797: sched_switch: prev_comm=id.nn.benchmark prev_pid=13374 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
66452 id.nn.benchmark-13159 (13131) [007] d..2 24573.930799: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
66453         sugov:4-560   (  560) [007] d..2 24573.930803: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
66454           <...>-13154 (-----) [001] dnh1 24573.930803: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
66455           <...>-13154 (-----) [001] d..2 24573.930809: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
66456        DispSync-23904 (23896) [000] d..1 24573.930811: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
66457         sugov:0-559   (  559) [001] d..2 24573.930817: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
66458        DispSync-23904 (23896) [000] d..2 24573.930827: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
66459           <...>-13154 (-----) [001] d..2 24573.930834: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
66460        DispSync-23904 (23896) [000] d..2 24573.930841: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13374 next_prio=110
66461   sfEventThread-23906 (23896) [001] d..3 24573.930869: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
66462   sfEventThread-23906 (23896) [001] d..4 24573.930888: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
66463 id.nn.benchmark-13159 (13131) [007] d.s2 24573.930890: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
66464 id.nn.benchmark-13159 (13131) [007] dns3 24573.930899: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
66465 id.nn.benchmark-13159 (13131) [007] dns2 24573.930901: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
66466 id.nn.benchmark-13159 (13131) [007] dns3 24573.930906: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
66467           <...>-13374 (-----) [000] d..2 24573.930906: sched_switch: prev_comm=id.nn.benchmark prev_pid=13374 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
66468 id.nn.benchmark-13159 (13131) [007] d..2 24573.930909: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
66469   sfEventThread-23906 (23896) [001] d..2 24573.930922: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
66470  kworker/u16:15-18488 (18488) [007] d..2 24573.931085: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=kworker/7:0 next_pid=12892 next_prio=120
66471     kworker/7:0-12892 (12892) [007] d..2 24573.931112: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
66472 id.nn.benchmark-13158 (13131) [003] d.s2 24573.931124: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
66473  surfaceflinger-23896 (23896) [000] d..2 24573.931141: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
66474 id.nn.benchmark-13159 (13131) [007] d.h1 24573.931149: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
66475 id.nn.benchmark-13159 (13131) [007] dnh1 24573.931150: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
66476 id.nn.benchmark-13159 (13131) [007] d..2 24573.931152: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
66477  surfaceflinger-23896 (23896) [000] d..3 24573.931159: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
66478  surfaceflinger-23896 (23896) [000] d..1 24573.931177: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
66479  surfaceflinger-23896 (23896) [000] d..2 24573.931187: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
66480           <...>-13154 (-----) [001] d..2 24573.931194: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
66481   sfEventThread-23906 (23896) [001] d..2 24573.931210: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
66482  kworker/u16:15-18488 (18488) [007] d..2 24573.931275: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
66483  surfaceflinger-23896 (23896) [000] ...1 24573.931309: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
66484  surfaceflinger-23896 (23896) [000] ...1 24573.931312: tracing_mark_write: E|23896
66485  surfaceflinger-23896 (23896) [000] .... 24573.931356: binder_transaction: transaction=1670155 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
66486  surfaceflinger-23896 (23896) [000] ...2 24573.931376: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
66487  surfaceflinger-23896 (23896) [000] d..4 24573.931383: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=006
66488 id.nn.benchmark-13159 (13131) [007] dnh1 24573.931403: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
66489 id.nn.benchmark-13159 (13131) [007] d..2 24573.931405: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
66490  HwBinder:598_3-633   (  598) [007] .... 24573.931409: binder_transaction_received: transaction=1670155
66491  surfaceflinger-23896 (23896) [000] d..2 24573.931409: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
66492         rcuop/0-10    (   10) [000] d..2 24573.931419: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13374 next_prio=110
66493  HwBinder:598_3-633   (  598) [007] ...1 24573.931433: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
66494           <...>-13374 (-----) [000] ...1 24573.931477: tracing_mark_write: E|13131
66495           <...>-13374 (-----) [000] ...1 24573.931481: tracing_mark_write: E|13131
66496  HwBinder:598_3-633   (  598) [007] ...1 24573.931484: tracing_mark_write: B|598|HWCSession::PresentDisplay::
66497           <...>-13374 (-----) [000] ...1 24573.931491: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66498           <...>-13374 (-----) [000] ...1 24573.931495: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66499  HwBinder:598_3-633   (  598) [007] ...1 24573.931549: tracing_mark_write: B|598|HWDeviceDRM::Commit::
66500  HwBinder:598_3-633   (  598) [007] ...1 24573.931553: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
66501  HwBinder:598_3-633   (  598) [007] d..2 24573.931752: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
66502  HwBinder:598_3-633   (  598) [007] d.h3 24573.931784: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
66503           <...>-13374 (-----) [000] dnh1 24573.931786: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
66504  HwBinder:598_3-633   (  598) [007] d.h4 24573.931792: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
66505           <...>-13374 (-----) [000] d..2 24573.931792: sched_switch: prev_comm=id.nn.benchmark prev_pid=13374 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
66506  HwBinder:598_3-633   (  598) [007] d.h3 24573.931793: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
66507           <...>-13157 (-----) [005] d..2 24573.931798: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
66508         sugov:4-560   (  560) [005] d..2 24573.931801: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
66509           <...>-13154 (-----) [001] dnh1 24573.931803: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
66510           <...>-13154 (-----) [001] d..2 24573.931808: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
66511         sugov:0-559   (  559) [001] d..2 24573.931815: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
66512  HwBinder:598_3-633   (  598) [007] ...1 24573.931826: tracing_mark_write: E|598
66513  HwBinder:598_3-633   (  598) [007] ...1 24573.931827: tracing_mark_write: E|598
66514  HwBinder:598_3-633   (  598) [007] ...1 24573.931850: tracing_mark_write: E|598
66515  HwBinder:598_3-633   (  598) [007] ...1 24573.931869: tracing_mark_write: E|598
66516  HwBinder:598_3-633   (  598) [007] .... 24573.931874: binder_transaction: transaction=1670156 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
66517  HwBinder:598_3-633   (  598) [007] d..2 24573.931879: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
66518  HwBinder:598_3-633   (  598) [007] .... 24573.931888: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
66519           <...>-13154 (-----) [001] dnh1 24573.931892: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
66520           <...>-13154 (-----) [001] d..2 24573.931897: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
66521  surfaceflinger-23896 (23896) [001] .... 24573.931902: binder_transaction_received: transaction=1670156
66522  HwBinder:598_3-633   (  598) [007] d..2 24573.931909: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
66523  surfaceflinger-23896 (23896) [001] d..2 24573.932207: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
66524 crtc_commit:111-253   (  253) [000] d..2 24573.932394: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13374 next_prio=110
66525           <...>-13374 (-----) [000] ...1 24573.932403: tracing_mark_write: E|13131
66526           <...>-13374 (-----) [000] ...1 24573.932406: tracing_mark_write: E|13131
66527           <...>-13374 (-----) [000] d..2 24573.932459: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
66528           <...>-13374 (-----) [000] d..3 24573.932471: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
66529           <...>-13374 (-----) [000] ...1 24573.932493: tracing_mark_write: E|13131
66530           <...>-13374 (-----) [000] d..1 24573.932498: sched_waking: comm=id.nn.benchmark pid=13373 prio=110 target_cpu=007
66531 id.nn.benchmark-13159 (13131) [007] dnh1 24573.932514: sched_wakeup: comm=id.nn.benchmark pid=13373 prio=110 target_cpu=007
66532 id.nn.benchmark-13159 (13131) [007] d..2 24573.932517: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13373 next_prio=110
66533           <...>-13374 (-----) [000] ...1 24573.932523: tracing_mark_write: E|13131
66534           <...>-13373 (-----) [007] d..2 24573.932527: sched_switch: prev_comm=id.nn.benchmark prev_pid=13373 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
66535           <...>-13374 (-----) [000] d..1 24573.932735: sched_waking: comm=id.nn.benchmark pid=13373 prio=110 target_cpu=007
66536 id.nn.benchmark-13159 (13131) [007] dnh1 24573.932748: sched_wakeup: comm=id.nn.benchmark pid=13373 prio=110 target_cpu=007
66537 id.nn.benchmark-13159 (13131) [007] d..2 24573.932751: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13373 next_prio=110
66538           <...>-13374 (-----) [000] d..2 24573.932805: sched_switch: prev_comm=id.nn.benchmark prev_pid=13374 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
66539           <...>-13373 (-----) [007] d..1 24573.932816: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
66540           <...>-13373 (-----) [007] dn.2 24573.932825: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
66541           <...>-13373 (-----) [007] d..2 24573.932828: sched_switch: prev_comm=id.nn.benchmark prev_pid=13373 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
66542           <...>-13131 (-----) [007] d..2 24573.932834: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13373 next_prio=110
66543           <...>-13373 (-----) [007] d..1 24573.932864: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
66544           <...>-13373 (-----) [007] dn.2 24573.932867: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
66545           <...>-13373 (-----) [007] d..2 24573.932870: sched_switch: prev_comm=id.nn.benchmark prev_pid=13373 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
66546           <...>-13131 (-----) [007] ...1 24573.932879: tracing_mark_write: E|13131
66547           <...>-13131 (-----) [007] ...1 24573.932882: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
66548           <...>-13131 (-----) [007] ...1 24573.932885: tracing_mark_write: E|13131
66549           <...>-13131 (-----) [007] ...1 24573.932887: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
66550           <...>-13131 (-----) [007] ...1 24573.932889: tracing_mark_write: E|13131
66551     logd.writer-563   (  555) [000] d..2 24573.932934: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13373 next_prio=110
66552           <...>-13131 (-----) [007] ...1 24573.932952: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
66553           <...>-13131 (-----) [007] d..2 24573.932965: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
66554           <...>-13131 (-----) [007] ...1 24573.932980: tracing_mark_write: E|13131
66555           <...>-13131 (-----) [007] ...1 24573.932982: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
66556           <...>-13131 (-----) [007] ...1 24573.932985: tracing_mark_write: E|13131
66557           <...>-13131 (-----) [007] ...1 24573.932987: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
66558           <...>-13373 (-----) [000] d..2 24573.932987: sched_switch: prev_comm=id.nn.benchmark prev_pid=13373 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
66559           <...>-13131 (-----) [007] ...1 24573.932989: tracing_mark_write: E|13131
66560           <...>-13131 (-----) [007] ...1 24573.932991: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
66561 id.nn.benchmark-13159 (13131) [000] d.h3 24573.932993: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
66562 id.nn.benchmark-13159 (13131) [000] d.h4 24573.933021: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
66563 id.nn.benchmark-13159 (13131) [000] d.h4 24573.933033: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
66564           <...>-13131 (-----) [007] dnh2 24573.933037: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
66565 id.nn.benchmark-13159 (13131) [000] d.h5 24573.933041: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
66566           <...>-13131 (-----) [007] d..2 24573.933042: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
66567         sugov:4-560   (  560) [007] d..2 24573.933047: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
66568           <...>-13154 (-----) [001] d..2 24573.933050: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
66569         sugov:0-559   (  559) [001] d..2 24573.933057: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
66570           <...>-13131 (-----) [007] ...1 24573.933064: tracing_mark_write: E|13131
66571           <...>-13131 (-----) [007] ...1 24573.933066: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
66572           <...>-13131 (-----) [007] d..2 24573.933070: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13375 next_prio=110
66573           <...>-13375 (-----) [007] d..2 24573.933213: sched_switch: prev_comm=id.nn.benchmark prev_pid=13375 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13376 next_prio=110
66574           <...>-13376 (-----) [007] ...1 24573.933224: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
66575           <...>-13376 (-----) [007] ...1 24573.933225: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
66576           <...>-13376 (-----) [007] ...1 24573.933276: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66577           <...>-13376 (-----) [007] ...1 24573.933278: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66578           <...>-13376 (-----) [007] ...1 24573.934127: tracing_mark_write: E|13131
66579           <...>-13376 (-----) [007] ...1 24573.934128: tracing_mark_write: E|13131
66580           <...>-13376 (-----) [007] ...1 24573.934132: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66581           <...>-13376 (-----) [007] ...1 24573.934134: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66582 id.nn.benchmark-13156 (13131) [002] d.h2 24573.934228: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
66583 id.nn.benchmark-13159 (13131) [000] d.s1 24573.934235: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
66584 id.nn.benchmark-13156 (13131) [002] dnh3 24573.934235: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
66585           <...>-13157 (-----) [005] dnh1 24573.934257: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
66586 id.nn.benchmark-13156 (13131) [002] d..2 24573.934258: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
66587           <...>-13157 (-----) [005] d..2 24573.934260: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
66588 id.nn.benchmark-13159 (13131) [000] d.H3 24573.934287: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
66589 id.nn.benchmark-13159 (13131) [000] d.H3 24573.934303: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
66590           <...>-13376 (-----) [007] dnh1 24573.934325: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
66591           <...>-13376 (-----) [007] d..2 24573.934329: sched_switch: prev_comm=id.nn.benchmark prev_pid=13376 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
66592         sugov:4-560   (  560) [007] d..2 24573.934333: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
66593 id.nn.benchmark-13159 (13131) [000] d.H4 24573.934335: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
66594     rcu_preempt-7     (    7) [005] d..2 24573.934344: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=003
66595     migration/2-25    (   25) [002] d..2 24573.934347: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
66596         sugov:0-559   (  559) [002] d..2 24573.934358: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
66597     rcu_preempt-7     (    7) [005] d..2 24573.934360: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=007
66598     logd.writer-563   (  555) [002] dnh3 24573.934366: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
66599     logd.writer-563   (  555) [002] d..2 24573.934370: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
66600     rcu_preempt-7     (    7) [005] d..3 24573.934373: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=007
66601         rcuop/6-61    (   61) [002] d..2 24573.934376: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=002
66602     rcu_preempt-7     (    7) [005] d..2 24573.934378: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
66603 id.nn.benchmark-13156 (13131) [007] d..2 24573.934380: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
66604         rcuop/2-29    (   29) [007] d..2 24573.934382: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
66605         rcuop/6-61    (   61) [002] d..3 24573.934389: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=002
66606         rcuop/6-61    (   61) [002] d..2 24573.934399: 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
66607         rcuop/2-29    (   29) [007] d..2 24573.934404: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
66608         rcuop/7-69    (   69) [002] d.h3 24573.934406: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
66609         rcuop/7-69    (   69) [002] d..2 24573.934428: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
66610         rcuop/3-37    (   37) [002] d..2 24573.934460: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
66611     logd.writer-563   (  555) [002] d..2 24573.934767: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13376 next_prio=110
66612           <...>-13376 (-----) [002] d.h4 24573.934795: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
66613           <...>-13376 (-----) [002] d.h4 24573.934804: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
66614 id.nn.benchmark-13156 (13131) [007] dnh1 24573.934807: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
66615 id.nn.benchmark-13156 (13131) [007] d..2 24573.934810: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
66616           <...>-13376 (-----) [002] dnh5 24573.934810: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
66617         sugov:4-560   (  560) [007] d..2 24573.934813: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
66618           <...>-13376 (-----) [002] d..2 24573.934815: sched_switch: prev_comm=id.nn.benchmark prev_pid=13376 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
66619         sugov:0-559   (  559) [002] d..2 24573.934822: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13376 next_prio=110
66620           <...>-13376 (-----) [002] ...1 24573.935041: tracing_mark_write: E|13131
66621           <...>-13376 (-----) [002] ...1 24573.935045: tracing_mark_write: E|13131
66622           <...>-13376 (-----) [002] ...1 24573.935060: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66623           <...>-13376 (-----) [002] ...1 24573.935064: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66624           <...>-13376 (-----) [002] ...1 24573.935398: tracing_mark_write: E|13131
66625           <...>-13376 (-----) [002] ...1 24573.935401: tracing_mark_write: E|13131
66626           <...>-13376 (-----) [002] ...1 24573.935412: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66627           <...>-13376 (-----) [002] ...1 24573.935415: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66628           <...>-13376 (-----) [002] ...1 24573.935646: tracing_mark_write: E|13131
66629           <...>-13376 (-----) [002] ...1 24573.935650: tracing_mark_write: E|13131
66630           <...>-13376 (-----) [002] ...1 24573.935660: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66631           <...>-13376 (-----) [002] ...1 24573.935664: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66632           <...>-13376 (-----) [002] ...1 24573.936044: tracing_mark_write: E|13131
66633           <...>-13376 (-----) [002] ...1 24573.936048: tracing_mark_write: E|13131
66634           <...>-13376 (-----) [002] ...1 24573.936057: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66635           <...>-13376 (-----) [002] ...1 24573.936061: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66636           <...>-13376 (-----) [002] ...1 24573.936451: tracing_mark_write: E|13131
66637           <...>-13376 (-----) [002] ...1 24573.936455: tracing_mark_write: E|13131
66638           <...>-13376 (-----) [002] ...1 24573.936472: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66639           <...>-13376 (-----) [002] ...1 24573.936476: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66640           <...>-13376 (-----) [002] ...1 24573.936668: tracing_mark_write: E|13131
66641           <...>-13376 (-----) [002] ...1 24573.936672: tracing_mark_write: E|13131
66642           <...>-13376 (-----) [002] ...1 24573.936684: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66643           <...>-13376 (-----) [002] ...1 24573.936688: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66644           <...>-13376 (-----) [002] ...1 24573.936760: tracing_mark_write: E|13131
66645           <...>-13376 (-----) [002] ...1 24573.936763: tracing_mark_write: E|13131
66646           <...>-13376 (-----) [002] ...1 24573.936773: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
66647           <...>-13376 (-----) [002] ...1 24573.936778: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
66648           <...>-13376 (-----) [002] ...1 24573.937062: tracing_mark_write: E|13131
66649           <...>-13376 (-----) [002] ...1 24573.937065: tracing_mark_write: E|13131
66650           <...>-13376 (-----) [002] ...1 24573.937074: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
66651           <...>-13376 (-----) [002] ...1 24573.937078: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
66652           <...>-13376 (-----) [002] ...1 24573.937125: tracing_mark_write: E|13131
66653           <...>-13376 (-----) [002] ...1 24573.937128: tracing_mark_write: E|13131
66654           <...>-13376 (-----) [002] ...1 24573.937138: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
66655           <...>-13376 (-----) [002] ...1 24573.937141: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
66656           <...>-13376 (-----) [002] ...1 24573.937159: tracing_mark_write: E|13131
66657           <...>-13376 (-----) [002] ...1 24573.937161: tracing_mark_write: E|13131
66658           <...>-13376 (-----) [002] ...1 24573.937171: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
66659           <...>-13376 (-----) [002] ...1 24573.937174: tracing_mark_write: E|13131
66660           <...>-13376 (-----) [002] ...1 24573.937183: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
66661           <...>-13376 (-----) [002] ...1 24573.937188: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
66662 id.nn.benchmark-13156 (13131) [007] d.s2 24573.937559: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
66663 id.nn.benchmark-13156 (13131) [007] dns3 24573.937579: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
66664 id.nn.benchmark-13156 (13131) [007] d..2 24573.937583: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
66665 id.nn.benchmark-13160 (13131) [004] d.h2 24573.937586: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
66666 id.nn.benchmark-13160 (13131) [004] d.h3 24573.937592: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
66667 id.nn.benchmark-13160 (13131) [004] d.h2 24573.937593: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
66668  kworker/u16:15-18488 (18488) [007] d..2 24573.937598: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
66669         sugov:4-560   (  560) [007] d..2 24573.937601: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
66670           <...>-13376 (-----) [002] dnh1 24573.937603: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
66671           <...>-13376 (-----) [002] d..2 24573.937610: sched_switch: prev_comm=id.nn.benchmark prev_pid=13376 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
66672         sugov:0-559   (  559) [002] d..2 24573.937618: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13376 next_prio=110
66673  kworker/u16:15-18488 (18488) [007] d..2 24573.937696: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
66674           <...>-13376 (-----) [002] ...1 24573.938110: tracing_mark_write: E|13131
66675           <...>-13376 (-----) [002] ...1 24573.938113: tracing_mark_write: E|13131
66676           <...>-13376 (-----) [002] ...1 24573.938122: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66677           <...>-13376 (-----) [002] ...1 24573.938126: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66678           <...>-13376 (-----) [002] ...1 24573.938209: tracing_mark_write: E|13131
66679           <...>-13376 (-----) [002] ...1 24573.938212: tracing_mark_write: E|13131
66680           <...>-13376 (-----) [002] d..2 24573.938250: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
66681           <...>-13376 (-----) [002] d..3 24573.938259: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
66682           <...>-13376 (-----) [002] ...1 24573.938277: tracing_mark_write: E|13131
66683           <...>-13376 (-----) [002] d..1 24573.938281: sched_waking: comm=id.nn.benchmark pid=13375 prio=110 target_cpu=007
66684 id.nn.benchmark-13156 (13131) [007] dnh1 24573.938297: sched_wakeup: comm=id.nn.benchmark pid=13375 prio=110 target_cpu=007
66685 id.nn.benchmark-13156 (13131) [007] d..2 24573.938300: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13375 next_prio=110
66686           <...>-13375 (-----) [007] d..2 24573.938306: sched_switch: prev_comm=id.nn.benchmark prev_pid=13375 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
66687           <...>-13376 (-----) [002] ...1 24573.938307: tracing_mark_write: E|13131
66688           <...>-13376 (-----) [002] d..1 24573.938507: sched_waking: comm=id.nn.benchmark pid=13375 prio=110 target_cpu=007
66689 id.nn.benchmark-13156 (13131) [007] dnh1 24573.938520: sched_wakeup: comm=id.nn.benchmark pid=13375 prio=110 target_cpu=007
66690 id.nn.benchmark-13156 (13131) [007] d..2 24573.938522: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13375 next_prio=110
66691           <...>-13376 (-----) [002] d..2 24573.938559: sched_switch: prev_comm=id.nn.benchmark prev_pid=13376 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
66692           <...>-13375 (-----) [007] d..1 24573.938570: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
66693           <...>-13375 (-----) [007] dn.2 24573.938575: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
66694           <...>-13375 (-----) [007] d..2 24573.938577: sched_switch: prev_comm=id.nn.benchmark prev_pid=13375 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
66695           <...>-13131 (-----) [007] d..2 24573.938582: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13375 next_prio=110
66696           <...>-13375 (-----) [007] d..1 24573.938606: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
66697           <...>-13375 (-----) [007] dn.2 24573.938610: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
66698           <...>-13375 (-----) [007] d..2 24573.938612: sched_switch: prev_comm=id.nn.benchmark prev_pid=13375 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
66699           <...>-13131 (-----) [007] ...1 24573.938621: tracing_mark_write: E|13131
66700           <...>-13131 (-----) [007] ...1 24573.938623: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
66701           <...>-13131 (-----) [007] ...1 24573.938625: tracing_mark_write: E|13131
66702           <...>-13131 (-----) [007] ...1 24573.938627: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
66703           <...>-13131 (-----) [007] ...1 24573.938628: tracing_mark_write: E|13131
66704     logd.writer-563   (  555) [002] d..2 24573.938644: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13375 next_prio=110
66705           <...>-13131 (-----) [007] ...1 24573.938688: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
66706           <...>-13375 (-----) [002] d..2 24573.938691: sched_switch: prev_comm=id.nn.benchmark prev_pid=13375 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
66707           <...>-13131 (-----) [007] d..2 24573.938700: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
66708 id.nn.benchmark-13156 (13131) [002] d.h4 24573.938722: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
66709 id.nn.benchmark-13156 (13131) [002] d.h4 24573.938730: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
66710           <...>-13131 (-----) [007] dnh1 24573.938734: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
66711 id.nn.benchmark-13156 (13131) [002] dnh5 24573.938736: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
66712           <...>-13131 (-----) [007] d..2 24573.938738: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
66713 id.nn.benchmark-13156 (13131) [002] dnh3 24573.938742: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
66714         sugov:4-560   (  560) [007] d..2 24573.938742: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
66715           <...>-13131 (-----) [007] ...1 24573.938743: tracing_mark_write: E|13131
66716           <...>-13131 (-----) [007] ...1 24573.938746: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
66717           <...>-13131 (-----) [007] ...1 24573.938748: tracing_mark_write: E|13131
66718 id.nn.benchmark-13156 (13131) [002] d..2 24573.938748: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
66719           <...>-13131 (-----) [007] ...1 24573.938749: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
66720           <...>-13131 (-----) [007] ...1 24573.938751: tracing_mark_write: E|13131
66721           <...>-13131 (-----) [007] ...1 24573.938753: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
66722         sugov:0-559   (  559) [002] d..2 24573.938755: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
66723           <...>-13131 (-----) [007] ...1 24573.938795: tracing_mark_write: E|13131
66724           <...>-13131 (-----) [007] ...1 24573.938797: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
66725           <...>-13131 (-----) [007] d..2 24573.938801: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13377 next_prio=110
66726 id.nn.benchmark-13159 (13131) [000] d.h4 24573.938819: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
66727 id.nn.benchmark-13159 (13131) [000] d.h4 24573.938832: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
66728           <...>-13377 (-----) [007] dnh1 24573.938834: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
66729           <...>-13377 (-----) [007] d..2 24573.938838: sched_switch: prev_comm=id.nn.benchmark prev_pid=13377 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
66730 id.nn.benchmark-13159 (13131) [000] dnh5 24573.938840: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
66731  crtc_event:111-254   (  254) [007] d..2 24573.938848: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13377 next_prio=110
66732 id.nn.benchmark-13159 (13131) [000] d..2 24573.938853: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
66733           <...>-13377 (-----) [007] d..2 24573.938959: sched_switch: prev_comm=id.nn.benchmark prev_pid=13377 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13378 next_prio=110
66734 crtc_commit:111-253   (  253) [000] d..2 24573.938963: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
66735           <...>-13378 (-----) [007] ...1 24573.938969: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
66736           <...>-13378 (-----) [007] ...1 24573.938971: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
66737           <...>-13378 (-----) [007] ...1 24573.939021: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66738           <...>-13378 (-----) [007] ...1 24573.939023: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66739           <...>-13378 (-----) [007] ...1 24573.939877: tracing_mark_write: E|13131
66740           <...>-13378 (-----) [007] ...1 24573.939879: tracing_mark_write: E|13131
66741           <...>-13378 (-----) [007] ...1 24573.939883: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66742           <...>-13378 (-----) [007] ...1 24573.939884: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66743           <...>-13378 (-----) [007] ...1 24573.940249: tracing_mark_write: E|13131
66744           <...>-13378 (-----) [007] ...1 24573.940251: tracing_mark_write: E|13131
66745           <...>-13378 (-----) [007] ...1 24573.940255: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66746           <...>-13378 (-----) [007] ...1 24573.940257: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66747           <...>-13378 (-----) [007] ...1 24573.940466: tracing_mark_write: E|13131
66748           <...>-13378 (-----) [007] ...1 24573.940468: tracing_mark_write: E|13131
66749           <...>-13378 (-----) [007] ...1 24573.940471: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66750           <...>-13378 (-----) [007] ...1 24573.940472: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66751           <...>-13378 (-----) [007] ...1 24573.940636: tracing_mark_write: E|13131
66752           <...>-13378 (-----) [007] ...1 24573.940637: tracing_mark_write: E|13131
66753           <...>-13378 (-----) [007] ...1 24573.940640: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66754           <...>-13378 (-----) [007] ...1 24573.940641: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66755           <...>-13378 (-----) [007] d.s2 24573.940894: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
66756           <...>-13154 (-----) [001] d.h2 24573.940895: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
66757           <...>-13154 (-----) [001] dnh3 24573.940902: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
66758 id.nn.benchmark-13159 (13131) [000] d.s2 24573.940902: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
66759           <...>-13378 (-----) [007] dns3 24573.940904: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
66760           <...>-13378 (-----) [007] d..2 24573.940912: sched_switch: prev_comm=id.nn.benchmark prev_pid=13378 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
66761           <...>-13154 (-----) [001] d..2 24573.940913: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
66762  kworker/u16:15-18488 (18488) [007] dnh1 24573.940918: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
66763  kworker/u16:15-18488 (18488) [007] d..2 24573.940920: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
66764  crtc_event:111-254   (  254) [007] d..2 24573.940933: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
66765     migration/1-17    (   17) [001] d.h3 24573.940966: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
66766     migration/1-17    (   17) [001] d.h3 24573.940975: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
66767  kworker/u16:15-18488 (18488) [007] dnh3 24573.940977: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
66768  kworker/u16:15-18488 (18488) [007] d..2 24573.940981: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
66769         sugov:4-560   (  560) [007] d..2 24573.940984: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
66770     migration/1-17    (   17) [001] d.h4 24573.940984: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
66771     migration/1-17    (   17) [001] d..2 24573.940992: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
66772         sugov:0-559   (  559) [001] d..2 24573.941014: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
66773 id.nn.benchmark-13159 (13131) [000] d.h4 24573.941172: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
66774 id.nn.benchmark-13159 (13131) [000] d.h5 24573.941187: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
66775     logd.writer-563   (  555) [001] d..2 24573.941194: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
66776 crtc_commit:111-253   (  253) [001] d..2 24573.941263: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
66777  kworker/u16:15-18488 (18488) [007] d..2 24573.941274: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13378 next_prio=110
66778     logd.writer-563   (  555) [001] d..2 24573.941445: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
66779 id.nn.benchmark-13159 (13131) [000] d.h4 24573.941455: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
66780           <...>-13154 (-----) [001] d.h4 24573.941475: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
66781           <...>-13154 (-----) [001] d.h4 24573.941481: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
66782           <...>-13378 (-----) [007] dnh1 24573.941483: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
66783           <...>-13378 (-----) [007] dnh1 24573.941484: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
66784           <...>-13154 (-----) [001] dnh5 24573.941486: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
66785           <...>-13378 (-----) [007] d..2 24573.941487: sched_switch: prev_comm=id.nn.benchmark prev_pid=13378 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
66786           <...>-13154 (-----) [001] d..2 24573.941492: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
66787         sugov:0-559   (  559) [001] d..2 24573.941499: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
66788         sugov:4-560   (  560) [007] d..2 24573.941500: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13378 next_prio=110
66789 id.nn.benchmark-13160 (13131) [004] d..2 24573.941504: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
66790  crtc_event:111-254   (  254) [004] d..2 24573.941510: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
66791           <...>-13378 (-----) [007] ...1 24573.941555: tracing_mark_write: E|13131
66792           <...>-13378 (-----) [007] ...1 24573.941556: tracing_mark_write: E|13131
66793           <...>-13378 (-----) [007] ...1 24573.941561: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66794           <...>-13378 (-----) [007] ...1 24573.941562: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66795           <...>-13378 (-----) [007] ...1 24573.941853: tracing_mark_write: E|13131
66796           <...>-13378 (-----) [007] ...1 24573.941854: tracing_mark_write: E|13131
66797           <...>-13378 (-----) [007] ...1 24573.941860: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66798           <...>-13378 (-----) [007] ...1 24573.941862: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66799           <...>-13378 (-----) [007] ...1 24573.942020: tracing_mark_write: E|13131
66800           <...>-13378 (-----) [007] ...1 24573.942021: tracing_mark_write: E|13131
66801           <...>-13378 (-----) [007] ...1 24573.942025: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66802           <...>-13378 (-----) [007] ...1 24573.942026: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66803           <...>-13378 (-----) [007] ...1 24573.942079: tracing_mark_write: E|13131
66804           <...>-13378 (-----) [007] ...1 24573.942080: tracing_mark_write: E|13131
66805           <...>-13378 (-----) [007] ...1 24573.942083: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
66806           <...>-13378 (-----) [007] ...1 24573.942085: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
66807           <...>-13378 (-----) [007] ...1 24573.942199: tracing_mark_write: E|13131
66808           <...>-13378 (-----) [007] ...1 24573.942200: tracing_mark_write: E|13131
66809           <...>-13378 (-----) [007] ...1 24573.942204: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
66810           <...>-13378 (-----) [007] ...1 24573.942205: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
66811           <...>-13378 (-----) [007] ...1 24573.942223: tracing_mark_write: E|13131
66812           <...>-13378 (-----) [007] ...1 24573.942224: tracing_mark_write: E|13131
66813           <...>-13378 (-----) [007] ...1 24573.942227: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
66814           <...>-13378 (-----) [007] ...1 24573.942228: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
66815           <...>-13378 (-----) [007] ...1 24573.942234: tracing_mark_write: E|13131
66816           <...>-13378 (-----) [007] ...1 24573.942235: tracing_mark_write: E|13131
66817           <...>-13378 (-----) [007] ...1 24573.942238: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
66818           <...>-13378 (-----) [007] ...1 24573.942239: tracing_mark_write: E|13131
66819           <...>-13378 (-----) [007] ...1 24573.942242: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
66820           <...>-13378 (-----) [007] ...1 24573.942244: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
66821           <...>-13378 (-----) [007] ...1 24573.942550: tracing_mark_write: E|13131
66822           <...>-13378 (-----) [007] ...1 24573.942551: tracing_mark_write: E|13131
66823           <...>-13378 (-----) [007] ...1 24573.942553: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66824           <...>-13378 (-----) [007] ...1 24573.942554: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66825           <...>-13378 (-----) [007] ...1 24573.942623: tracing_mark_write: E|13131
66826           <...>-13378 (-----) [007] ...1 24573.942624: tracing_mark_write: E|13131
66827           <...>-13378 (-----) [007] d..2 24573.942642: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
66828           <...>-13154 (-----) [001] d.h1 24573.942656: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
66829           <...>-13378 (-----) [007] ...1 24573.942657: tracing_mark_write: E|13131
66830           <...>-13378 (-----) [007] d..1 24573.942659: sched_waking: comm=id.nn.benchmark pid=13377 prio=110 target_cpu=007
66831           <...>-13378 (-----) [007] dn.2 24573.942664: sched_wakeup: comm=id.nn.benchmark pid=13377 prio=110 target_cpu=007
66832           <...>-13378 (-----) [007] d..2 24573.942667: sched_switch: prev_comm=id.nn.benchmark prev_pid=13378 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13377 next_prio=110
66833           <...>-13377 (-----) [007] d..2 24573.942673: sched_switch: prev_comm=id.nn.benchmark prev_pid=13377 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13378 next_prio=110
66834           <...>-13378 (-----) [007] ...1 24573.942678: tracing_mark_write: E|13131
66835           <...>-13378 (-----) [007] d..1 24573.942786: sched_waking: comm=id.nn.benchmark pid=13377 prio=110 target_cpu=007
66836           <...>-13378 (-----) [007] dn.2 24573.942790: sched_wakeup: comm=id.nn.benchmark pid=13377 prio=110 target_cpu=007
66837           <...>-13378 (-----) [007] d..2 24573.942792: sched_switch: prev_comm=id.nn.benchmark prev_pid=13378 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13377 next_prio=110
66838           <...>-13377 (-----) [007] d..1 24573.942835: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
66839           <...>-13377 (-----) [007] dn.2 24573.942840: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
66840           <...>-13377 (-----) [007] d..2 24573.942843: sched_switch: prev_comm=id.nn.benchmark prev_pid=13377 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
66841           <...>-13131 (-----) [007] d..2 24573.942847: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13377 next_prio=110
66842           <...>-13377 (-----) [007] d..1 24573.942868: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
66843           <...>-13377 (-----) [007] dn.2 24573.942871: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
66844           <...>-13377 (-----) [007] d..2 24573.942873: sched_switch: prev_comm=id.nn.benchmark prev_pid=13377 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
66845           <...>-13131 (-----) [007] ...1 24573.942881: tracing_mark_write: E|13131
66846           <...>-13131 (-----) [007] ...1 24573.942884: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
66847           <...>-13131 (-----) [007] ...1 24573.942885: tracing_mark_write: E|13131
66848           <...>-13131 (-----) [007] ...1 24573.942887: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
66849           <...>-13131 (-----) [007] ...1 24573.942889: tracing_mark_write: E|13131
66850           <...>-13131 (-----) [007] ...1 24573.942947: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
66851           <...>-13131 (-----) [007] ...1 24573.942966: tracing_mark_write: E|13131
66852           <...>-13131 (-----) [007] ...1 24573.942968: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
66853           <...>-13131 (-----) [007] ...1 24573.942970: tracing_mark_write: E|13131
66854           <...>-13131 (-----) [007] ...1 24573.942972: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
66855           <...>-13131 (-----) [007] ...1 24573.942973: tracing_mark_write: E|13131
66856           <...>-13131 (-----) [007] ...1 24573.942975: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
66857           <...>-13131 (-----) [007] ...1 24573.943017: tracing_mark_write: E|13131
66858           <...>-13131 (-----) [007] ...1 24573.943018: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
66859           <...>-13131 (-----) [007] d..2 24573.943023: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13377 next_prio=110
66860           <...>-13377 (-----) [007] d..2 24573.943046: sched_switch: prev_comm=id.nn.benchmark prev_pid=13377 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13378 next_prio=110
66861           <...>-13378 (-----) [007] d..2 24573.943057: sched_switch: prev_comm=id.nn.benchmark prev_pid=13378 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13379 next_prio=110
66862           <...>-13379 (-----) [007] d..2 24573.943196: sched_switch: prev_comm=id.nn.benchmark prev_pid=13379 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13380 next_prio=110
66863           <...>-13380 (-----) [007] ...1 24573.943207: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
66864           <...>-13380 (-----) [007] ...1 24573.943208: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
66865 id.nn.benchmark-13159 (13131) [000] d.h1 24573.943238: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
66866           <...>-13380 (-----) [007] dnh1 24573.943261: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=007
66867 id.nn.benchmark-13159 (13131) [000] d.h2 24573.943286: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
66868           <...>-13380 (-----) [007] d..2 24573.943286: sched_switch: prev_comm=id.nn.benchmark prev_pid=13380 prev_prio=110 prev_state=R+ ==> next_comm=DispSync next_pid=23904 next_prio=97
66869 id.nn.benchmark-13159 (13131) [000] d.h2 24573.943298: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
66870        DispSync-23904 (23896) [007] d..1 24573.943301: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
66871 id.nn.benchmark-13160 (13131) [004] dnh1 24573.943301: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
66872 id.nn.benchmark-13160 (13131) [004] d..2 24573.943304: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
66873 id.nn.benchmark-13159 (13131) [000] d.h3 24573.943306: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
66874         sugov:4-560   (  560) [004] d..2 24573.943307: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
66875           <...>-13154 (-----) [001] d..2 24573.943315: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
66876 id.nn.benchmark-13156 (13131) [002] dnh1 24573.943315: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
66877        DispSync-23904 (23896) [007] d..2 24573.943315: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13380 next_prio=110
66878           <...>-13380 (-----) [007] ...1 24573.943317: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66879           <...>-13380 (-----) [007] ...1 24573.943319: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66880 id.nn.benchmark-13156 (13131) [002] d..2 24573.943323: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
66881         sugov:0-559   (  559) [001] d..2 24573.943323: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
66882  appEventThread-23905 (23896) [002] d..3 24573.943367: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
66883           <...>-13380 (-----) [007] dnh1 24573.943394: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
66884           <...>-13380 (-----) [007] d..2 24573.943416: sched_switch: prev_comm=id.nn.benchmark prev_pid=13380 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
66885  appEventThread-23905 (23896) [002] d..2 24573.943429: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
66886<...>-24151 ( 24151) [007] .... 24573.943627: binder_transaction: transaction=1670157 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
66887<...>-24151 ( 24151) [007] d..4 24573.943634: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
66888<...>-24151 ( 24151) [007] d..5 24573.943643: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
66889<...>-24151 ( 24151) [007] d..3 24573.943663: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
66890<...>-24151 ( 24151) [007] d..4 24573.943669: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
66891<...>-24151 ( 24151) [007] d..2 24573.943740: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
66892<...>-23903 ( 23896) [007] .... 24573.943744: binder_transaction_received: transaction=1670157
66893<...>-23903 ( 23896) [007] d..1 24573.943762: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
66894 id.nn.benchmark-13156 (13131) [002] dnh1 24573.943774: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
66895 id.nn.benchmark-13156 (13131) [002] d..2 24573.943780: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
66896<...>-23903 ( 23896) [007] d..2 24573.943780: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
66897  appEventThread-23905 (23896) [002] d..2 24573.943797: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
66898    RenderThread-24437 (24151) [007] d..1 24573.943839: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
66899    RenderThread-24437 (24151) [007] d..2 24573.943845: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
66900    RenderThread-24437 (24151) [007] .... 24573.943878: binder_transaction: transaction=1670158 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
66901    RenderThread-24437 (24151) [007] d..4 24573.943880: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
66902    RenderThread-24437 (24151) [007] d..5 24573.943884: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
66903    RenderThread-24437 (24151) [007] d..2 24573.943888: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
66904<...>-23903 ( 23896) [007] .... 24573.943890: binder_transaction_received: transaction=1670158
66905<...>-23903 ( 23896) [007] .... 24573.943919: binder_transaction: transaction=1670159 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
66906<...>-23903 ( 23896) [007] d..2 24573.943924: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
66907<...>-23903 ( 23896) [007] d..3 24573.943928: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
66908<...>-23903 ( 23896) [007] d..2 24573.943936: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
66909    RenderThread-24437 (24151) [007] .... 24573.943938: binder_transaction_received: transaction=1670159
66910           <...>-13157 (-----) [005] d.s1 24573.944218: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
66911           <...>-13157 (-----) [005] d.s2 24573.944227: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
66912 id.nn.benchmark-13158 (13131) [003] d.h2 24573.944228: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
66913 id.nn.benchmark-13158 (13131) [003] dnh3 24573.944236: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
66914 id.nn.benchmark-13158 (13131) [003] d..2 24573.944244: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
66915<...>-33 ( 33) [003] d.h3 24573.944290: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
66916<...>-33 ( 33) [003] d.h3 24573.944302: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
66917    RenderThread-24437 (24151) [007] dnh1 24573.944306: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
66918    RenderThread-24437 (24151) [007] d..2 24573.944310: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
66919<...>-33 ( 33) [003] d.h4 24573.944312: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
66920         sugov:4-560   (  560) [007] d..2 24573.944315: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
66921     rcu_preempt-7     (    7) [007] d..2 24573.944318: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
66922<...>-33 ( 33) [003] d..2 24573.944320: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
66923     rcu_preempt-7     (    7) [007] d..2 24573.944334: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
66924         sugov:0-559   (  559) [003] d..2 24573.944345: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
66925     logd.writer-563   (  555) [003] dnh3 24573.944353: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
66926     logd.writer-563   (  555) [003] d..2 24573.944358: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
66927<...>-24151 ( 24151) [007] d..2 24573.944369: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
66928         rcuop/0-10    (   10) [003] d..2 24573.944369: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
66929    RenderThread-24437 (24151) [007] d..2 24573.944649: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13380 next_prio=110
66930     logd.writer-563   (  555) [003] d..2 24573.944680: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
66931           <...>-13380 (-----) [007] d.h1 24573.944748: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
66932           <...>-13380 (-----) [007] d.h2 24573.944754: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
66933           <...>-13380 (-----) [007] dnh2 24573.944756: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
66934           <...>-13380 (-----) [007] d..2 24573.944760: sched_switch: prev_comm=id.nn.benchmark prev_pid=13380 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
66935    RenderThread-24437 (24151) [007] .... 24573.944842: binder_transaction: transaction=1670160 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
66936    RenderThread-24437 (24151) [007] d..4 24573.944846: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
66937    RenderThread-24437 (24151) [007] d..5 24573.944852: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
66938    RenderThread-24437 (24151) [007] d..2 24573.944856: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
66939<...>-23903 ( 23896) [007] .... 24573.944858: binder_transaction_received: transaction=1670160
66940 id.nn.benchmark-13159 (13131) [000] d.h2 24573.944874: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
66941<...>-23903 ( 23896) [007] dnh1 24573.944896: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
66942<...>-23903 ( 23896) [007] d..2 24573.944899: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
66943 kgsl_worker_thr-246   (  246) [007] d..2 24573.944923: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
66944 id.nn.benchmark-13159 (13131) [000] d.h2 24573.944924: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
66945 kgsl_worker_thr-246   (  246) [007] d..3 24573.944928: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
66946 id.nn.benchmark-13159 (13131) [000] d.h2 24573.944936: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
66947 id.nn.benchmark-13160 (13131) [004] dnh1 24573.944938: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
66948 kgsl_worker_thr-246   (  246) [007] d..2 24573.944939: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
66949 id.nn.benchmark-13160 (13131) [004] d..2 24573.944940: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
66950 id.nn.benchmark-13159 (13131) [000] d.h3 24573.944943: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
66951         sugov:4-560   (  560) [004] d..2 24573.944943: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
66952 id.nn.benchmark-13158 (13131) [003] d..2 24573.944952: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
66953  kworker/u16:15-18488 (18488) [007] d..2 24573.944958: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
66954         sugov:0-559   (  559) [003] d..2 24573.944960: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
66955<...>-23903 ( 23896) [007] .... 24573.944988: binder_transaction: transaction=1670161 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
66956<...>-23903 ( 23896) [007] d..2 24573.944989: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
66957<...>-23903 ( 23896) [007] d..3 24573.944994: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
66958<...>-23903 ( 23896) [007] d..2 24573.945002: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
66959    RenderThread-24437 (24151) [007] .... 24573.945003: binder_transaction_received: transaction=1670161
66960    RenderThread-24437 (24151) [007] d..2 24573.945028: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13380 next_prio=110
66961           <...>-13380 (-----) [007] ...1 24573.945729: tracing_mark_write: E|13131
66962           <...>-13380 (-----) [007] ...1 24573.945731: tracing_mark_write: E|13131
66963           <...>-13380 (-----) [007] ...1 24573.945739: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66964           <...>-13380 (-----) [007] ...1 24573.945741: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66965           <...>-13380 (-----) [007] ...1 24573.946111: tracing_mark_write: E|13131
66966           <...>-13380 (-----) [007] ...1 24573.946112: tracing_mark_write: E|13131
66967           <...>-13380 (-----) [007] ...1 24573.946120: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66968           <...>-13380 (-----) [007] ...1 24573.946122: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66969           <...>-13380 (-----) [007] ...1 24573.946332: tracing_mark_write: E|13131
66970           <...>-13380 (-----) [007] ...1 24573.946333: tracing_mark_write: E|13131
66971           <...>-13380 (-----) [007] ...1 24573.946336: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66972           <...>-13380 (-----) [007] ...1 24573.946337: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66973           <...>-13380 (-----) [007] ...1 24573.946501: tracing_mark_write: E|13131
66974           <...>-13380 (-----) [007] ...1 24573.946502: tracing_mark_write: E|13131
66975           <...>-13380 (-----) [007] ...1 24573.946505: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66976           <...>-13380 (-----) [007] ...1 24573.946506: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66977           <...>-13380 (-----) [007] ...1 24573.946797: tracing_mark_write: E|13131
66978           <...>-13380 (-----) [007] ...1 24573.946798: tracing_mark_write: E|13131
66979           <...>-13380 (-----) [007] ...1 24573.946801: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66980           <...>-13380 (-----) [007] ...1 24573.946802: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66981           <...>-13380 (-----) [007] ...1 24573.947094: tracing_mark_write: E|13131
66982           <...>-13380 (-----) [007] ...1 24573.947095: tracing_mark_write: E|13131
66983           <...>-13380 (-----) [007] ...1 24573.947102: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66984           <...>-13380 (-----) [007] ...1 24573.947103: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
66985           <...>-13380 (-----) [007] d.h1 24573.947229: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=007
66986           <...>-13380 (-----) [007] dnh2 24573.947235: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=007
66987           <...>-13380 (-----) [007] d..2 24573.947241: sched_switch: prev_comm=id.nn.benchmark prev_pid=13380 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
66988        DispSync-23904 (23896) [007] d..1 24573.947250: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
66989           <...>-13154 (-----) [001] dnh1 24573.947263: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
66990        DispSync-23904 (23896) [007] d..2 24573.947264: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13380 next_prio=110
66991           <...>-13154 (-----) [001] d..2 24573.947270: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
66992   sfEventThread-23906 (23896) [001] d..3 24573.947306: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
66993   sfEventThread-23906 (23896) [001] d..4 24573.947325: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
66994 id.nn.benchmark-13159 (13131) [000] d..2 24573.947336: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
66995   sfEventThread-23906 (23896) [001] d..2 24573.947339: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
66996           <...>-13380 (-----) [007] ...1 24573.947348: tracing_mark_write: E|13131
66997           <...>-13380 (-----) [007] ...1 24573.947349: tracing_mark_write: E|13131
66998           <...>-13380 (-----) [007] ...1 24573.947354: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
66999           <...>-13380 (-----) [007] ...1 24573.947356: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67000           <...>-13380 (-----) [007] ...1 24573.947411: tracing_mark_write: E|13131
67001           <...>-13380 (-----) [007] ...1 24573.947412: tracing_mark_write: E|13131
67002           <...>-13380 (-----) [007] ...1 24573.947417: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
67003           <...>-13380 (-----) [007] ...1 24573.947418: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
67004           <...>-13380 (-----) [007] d.s2 24573.947558: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
67005           <...>-13154 (-----) [001] d.h2 24573.947563: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
67006           <...>-13154 (-----) [001] dnh3 24573.947568: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
67007           <...>-13380 (-----) [007] dns3 24573.947570: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
67008           <...>-13380 (-----) [007] d..2 24573.947574: sched_switch: prev_comm=id.nn.benchmark prev_pid=13380 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
67009           <...>-13154 (-----) [001] d..2 24573.947578: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
67010     migration/1-17    (   17) [001] d.h3 24573.947627: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
67011  surfaceflinger-23896 (23896) [000] d..1 24573.947637: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
67012     migration/1-17    (   17) [001] d.h3 24573.947638: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
67013  kworker/u16:15-18488 (18488) [007] dnh3 24573.947641: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
67014  surfaceflinger-23896 (23896) [000] d..2 24573.947649: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
67015     migration/1-17    (   17) [001] d.h4 24573.947653: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
67016  kworker/u16:15-18488 (18488) [007] d..2 24573.947671: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
67017 id.nn.benchmark-13156 (13131) [002] d..2 24573.947674: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
67018     migration/1-17    (   17) [001] d..2 24573.947675: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=sfEventThread next_pid=23906 next_prio=97
67019         sugov:4-560   (  560) [007] d..2 24573.947676: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
67020         sugov:0-559   (  559) [002] d..2 24573.947683: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
67021   sfEventThread-23906 (23896) [001] d..2 24573.947720: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13380 next_prio=110
67022  kworker/u16:15-18488 (18488) [007] .... 24573.947733: clk_set_rate: l3_cluster0_vote_clk 300000000
67023  kworker/u16:15-18488 (18488) [007] d..2 24573.947743: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
67024  surfaceflinger-23896 (23896) [000] ...1 24573.947780: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
67025  surfaceflinger-23896 (23896) [000] ...1 24573.947783: tracing_mark_write: E|23896
67026           <...>-13380 (-----) [001] ...1 24573.947811: tracing_mark_write: E|13131
67027           <...>-13380 (-----) [001] ...1 24573.947816: tracing_mark_write: E|13131
67028  surfaceflinger-23896 (23896) [000] .... 24573.947826: binder_transaction: transaction=1670162 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
67029           <...>-13380 (-----) [001] ...1 24573.947828: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
67030           <...>-13380 (-----) [001] ...1 24573.947832: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
67031  surfaceflinger-23896 (23896) [000] ...2 24573.947847: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
67032  surfaceflinger-23896 (23896) [000] d..4 24573.947854: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
67033  surfaceflinger-23896 (23896) [000] d..5 24573.947875: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
67034           <...>-13380 (-----) [001] d..2 24573.947903: sched_switch: prev_comm=id.nn.benchmark prev_pid=13380 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
67035  surfaceflinger-23896 (23896) [000] d..2 24573.947908: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
67036  HwBinder:598_3-633   (  598) [001] .... 24573.947910: binder_transaction_received: transaction=1670162
67037  HwBinder:598_3-633   (  598) [001] ...1 24573.947948: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
67038  HwBinder:598_3-633   (  598) [001] ...1 24573.948036: tracing_mark_write: B|598|HWCSession::PresentDisplay::
67039  HwBinder:598_3-633   (  598) [001] ...1 24573.948159: tracing_mark_write: B|598|HWDeviceDRM::Commit::
67040  HwBinder:598_3-633   (  598) [001] ...1 24573.948167: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
67041  HwBinder:598_3-633   (  598) [001] d..2 24573.948570: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
67042           <...>-13154 (-----) [007] dnh1 24573.948594: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
67043           <...>-13154 (-----) [007] d..2 24573.948620: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
67044  HwBinder:598_3-633   (  598) [001] d.h3 24573.948620: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
67045  HwBinder:598_3-633   (  598) [001] d.h3 24573.948631: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
67046 id.nn.benchmark-13160 (13131) [004] dnh1 24573.948634: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
67047 id.nn.benchmark-13160 (13131) [004] d..2 24573.948636: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
67048  HwBinder:598_3-633   (  598) [001] d.h4 24573.948639: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
67049         sugov:4-560   (  560) [004] d..2 24573.948640: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
67050 id.nn.benchmark-13156 (13131) [002] d..2 24573.948646: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
67051         sugov:0-559   (  559) [002] d..2 24573.948652: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
67052  HwBinder:598_3-633   (  598) [001] ...1 24573.948700: tracing_mark_write: E|598
67053  HwBinder:598_3-633   (  598) [001] ...1 24573.948704: tracing_mark_write: E|598
67054  HwBinder:598_3-633   (  598) [001] ...1 24573.948742: tracing_mark_write: E|598
67055  HwBinder:598_3-633   (  598) [001] ...1 24573.948776: tracing_mark_write: E|598
67056  HwBinder:598_3-633   (  598) [001] .... 24573.948786: binder_transaction: transaction=1670163 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
67057  HwBinder:598_3-633   (  598) [001] d..2 24573.948798: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
67058  HwBinder:598_3-633   (  598) [001] d..3 24573.948808: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
67059  HwBinder:598_3-633   (  598) [001] .... 24573.948811: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
67060 id.nn.benchmark-13159 (13131) [000] d..2 24573.948817: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
67061  surfaceflinger-23896 (23896) [000] .... 24573.948822: binder_transaction_received: transaction=1670163
67062  HwBinder:598_3-633   (  598) [001] d..2 24573.948852: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13380 next_prio=110
67063           <...>-13380 (-----) [001] ...1 24573.948862: tracing_mark_write: E|13131
67064           <...>-13380 (-----) [001] ...1 24573.948866: tracing_mark_write: E|13131
67065           <...>-13380 (-----) [001] ...1 24573.948877: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
67066           <...>-13380 (-----) [001] ...1 24573.948881: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
67067           <...>-13380 (-----) [001] ...1 24573.948899: tracing_mark_write: E|13131
67068           <...>-13380 (-----) [001] ...1 24573.948902: tracing_mark_write: E|13131
67069           <...>-13380 (-----) [001] ...1 24573.948912: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
67070           <...>-13380 (-----) [001] ...1 24573.948915: tracing_mark_write: E|13131
67071           <...>-13380 (-----) [001] ...1 24573.948923: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
67072           <...>-13380 (-----) [001] ...1 24573.948927: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
67073  surfaceflinger-23896 (23896) [000] d..2 24573.949067: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
67074 crtc_commit:111-253   (  253) [007] d..2 24573.949187: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
67075           <...>-13380 (-----) [001] ...1 24573.949779: tracing_mark_write: E|13131
67076           <...>-13380 (-----) [001] ...1 24573.949782: tracing_mark_write: E|13131
67077           <...>-13380 (-----) [001] ...1 24573.949791: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67078           <...>-13380 (-----) [001] ...1 24573.949795: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67079           <...>-13380 (-----) [001] ...1 24573.949881: tracing_mark_write: E|13131
67080           <...>-13380 (-----) [001] ...1 24573.949885: tracing_mark_write: E|13131
67081           <...>-13380 (-----) [001] d..2 24573.949934: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
67082           <...>-13380 (-----) [001] d..3 24573.949948: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
67083           <...>-13380 (-----) [001] ...1 24573.949970: tracing_mark_write: E|13131
67084           <...>-13380 (-----) [001] d..1 24573.949975: sched_waking: comm=id.nn.benchmark pid=13379 prio=110 target_cpu=007
67085           <...>-13154 (-----) [007] dnh1 24573.949992: sched_wakeup: comm=id.nn.benchmark pid=13379 prio=110 target_cpu=007
67086           <...>-13154 (-----) [007] d..2 24573.949995: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13379 next_prio=110
67087           <...>-13380 (-----) [001] ...1 24573.950001: tracing_mark_write: E|13131
67088           <...>-13379 (-----) [007] d..2 24573.950003: sched_switch: prev_comm=id.nn.benchmark prev_pid=13379 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
67089           <...>-13380 (-----) [001] d..1 24573.950220: sched_waking: comm=id.nn.benchmark pid=13379 prio=110 target_cpu=007
67090           <...>-13154 (-----) [007] dnh1 24573.950233: sched_wakeup: comm=id.nn.benchmark pid=13379 prio=110 target_cpu=007
67091           <...>-13154 (-----) [007] d..2 24573.950235: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13379 next_prio=110
67092           <...>-13380 (-----) [001] d..2 24573.950288: sched_switch: prev_comm=id.nn.benchmark prev_pid=13380 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
67093           <...>-13379 (-----) [007] d..1 24573.950299: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
67094           <...>-13379 (-----) [007] dn.2 24573.950311: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
67095           <...>-13379 (-----) [007] d..2 24573.950314: sched_switch: prev_comm=id.nn.benchmark prev_pid=13379 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
67096           <...>-13131 (-----) [007] d..2 24573.950321: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13379 next_prio=110
67097           <...>-13379 (-----) [007] d..1 24573.950349: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
67098           <...>-13379 (-----) [007] dn.2 24573.950352: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
67099           <...>-13379 (-----) [007] d..2 24573.950355: sched_switch: prev_comm=id.nn.benchmark prev_pid=13379 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
67100           <...>-13131 (-----) [007] ...1 24573.950365: tracing_mark_write: E|13131
67101           <...>-13131 (-----) [007] ...1 24573.950367: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
67102           <...>-13131 (-----) [007] ...1 24573.950370: tracing_mark_write: E|13131
67103           <...>-13131 (-----) [007] ...1 24573.950371: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
67104           <...>-13131 (-----) [007] ...1 24573.950374: tracing_mark_write: E|13131
67105     logd.writer-563   (  555) [001] d..2 24573.950404: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13379 next_prio=110
67106           <...>-13131 (-----) [007] ...1 24573.950436: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
67107           <...>-13131 (-----) [007] d..2 24573.950450: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
67108           <...>-13379 (-----) [001] d..2 24573.950458: sched_switch: prev_comm=id.nn.benchmark prev_pid=13379 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
67109           <...>-13131 (-----) [007] ...1 24573.950467: tracing_mark_write: E|13131
67110           <...>-13131 (-----) [007] ...1 24573.950469: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
67111           <...>-13131 (-----) [007] ...1 24573.950472: tracing_mark_write: E|13131
67112           <...>-13131 (-----) [007] ...1 24573.950474: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
67113           <...>-13131 (-----) [007] ...1 24573.950475: tracing_mark_write: E|13131
67114           <...>-13131 (-----) [007] ...1 24573.950477: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
67115           <...>-13154 (-----) [001] d.h3 24573.950489: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
67116           <...>-13154 (-----) [001] d.h4 24573.950493: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
67117           <...>-13154 (-----) [001] d.h4 24573.950504: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
67118           <...>-13131 (-----) [007] dnh1 24573.950509: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
67119           <...>-13154 (-----) [001] d.h5 24573.950512: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
67120           <...>-13131 (-----) [007] d..2 24573.950513: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
67121         sugov:4-560   (  560) [007] d..2 24573.950517: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
67122 id.nn.benchmark-13156 (13131) [002] d..2 24573.950520: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
67123         sugov:0-559   (  559) [002] d..2 24573.950526: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
67124           <...>-13131 (-----) [007] ...1 24573.950543: tracing_mark_write: E|13131
67125           <...>-13131 (-----) [007] ...1 24573.950545: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
67126           <...>-13131 (-----) [007] d..2 24573.950549: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13381 next_prio=110
67127           <...>-13381 (-----) [007] d..2 24573.950693: sched_switch: prev_comm=id.nn.benchmark prev_pid=13381 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13382 next_prio=110
67128           <...>-13382 (-----) [007] ...1 24573.950702: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
67129           <...>-13382 (-----) [007] ...1 24573.950704: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
67130           <...>-13382 (-----) [007] ...1 24573.950755: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67131           <...>-13382 (-----) [007] ...1 24573.950757: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67132           <...>-13382 (-----) [007] d.s1 24573.950890: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
67133 id.nn.benchmark-13158 (13131) [003] d.h2 24573.950892: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
67134           <...>-13382 (-----) [007] dns2 24573.950898: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
67135 id.nn.benchmark-13158 (13131) [003] dnh3 24573.950899: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
67136           <...>-13382 (-----) [007] dns2 24573.950900: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
67137           <...>-13382 (-----) [007] dns3 24573.950905: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
67138 id.nn.benchmark-13158 (13131) [003] d..2 24573.950908: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
67139           <...>-13382 (-----) [007] d..2 24573.950908: sched_switch: prev_comm=id.nn.benchmark prev_pid=13382 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
67140     rcu_preempt-7     (    7) [007] d..2 24573.950912: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=007
67141     rcu_preempt-7     (    7) [007] d..3 24573.950924: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=007
67142     rcu_preempt-7     (    7) [007] d..2 24573.950927: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
67143     rcu_preempt-7     (    7) [007] d..2 24573.950960: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
67144<...>-33 ( 33) [003] d..2 24573.950973: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
67145     logd.writer-563   (  555) [003] dnh3 24573.950980: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=003
67146     logd.writer-563   (  555) [003] d..2 24573.950985: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
67147         rcuop/6-61    (   61) [003] d..2 24573.950990: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=002
67148         rcuop/6-61    (   61) [003] d..3 24573.951006: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=003
67149         rcuop/6-61    (   61) [003] d..2 24573.951014: 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
67150         rcuop/7-69    (   69) [003] d..2 24573.951058: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
67151  kworker/u16:15-18488 (18488) [007] d..2 24573.951170: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
67152         rcuop/2-29    (   29) [007] d..2 24573.951172: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
67153         rcuop/2-29    (   29) [007] d..2 24573.951186: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
67154     logd.writer-563   (  555) [003] dnh1 24573.951189: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
67155     logd.writer-563   (  555) [003] d..2 24573.951196: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=rcuop/3 next_pid=37 next_prio=120
67156         rcuop/3-37    (   37) [003] d..2 24573.951217: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
67157     logd.writer-563   (  555) [003] d..2 24573.951384: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13382 next_prio=110
67158           <...>-13382 (-----) [003] d.h4 24573.951413: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
67159           <...>-13382 (-----) [003] d.h4 24573.951422: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
67160 id.nn.benchmark-13158 (13131) [007] dnh1 24573.951425: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
67161 id.nn.benchmark-13158 (13131) [007] d..2 24573.951428: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
67162         sugov:4-560   (  560) [007] d..2 24573.951431: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
67163           <...>-13382 (-----) [003] dnh5 24573.951432: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
67164           <...>-13382 (-----) [003] d..2 24573.951438: sched_switch: prev_comm=id.nn.benchmark prev_pid=13382 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
67165         sugov:0-559   (  559) [003] d..2 24573.951444: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13382 next_prio=110
67166           <...>-13382 (-----) [003] ...1 24573.953032: tracing_mark_write: E|13131
67167           <...>-13382 (-----) [003] ...1 24573.953036: tracing_mark_write: E|13131
67168           <...>-13382 (-----) [003] ...1 24573.953047: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67169           <...>-13382 (-----) [003] ...1 24573.953052: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67170           <...>-13382 (-----) [003] ...1 24573.953748: tracing_mark_write: E|13131
67171           <...>-13382 (-----) [003] ...1 24573.953752: tracing_mark_write: E|13131
67172           <...>-13382 (-----) [003] ...1 24573.953765: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67173           <...>-13382 (-----) [003] ...1 24573.953769: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67174           <...>-13382 (-----) [003] ...1 24573.954097: tracing_mark_write: E|13131
67175           <...>-13382 (-----) [003] ...1 24573.954101: tracing_mark_write: E|13131
67176           <...>-13382 (-----) [003] ...1 24573.954111: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67177           <...>-13382 (-----) [003] ...1 24573.954115: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67178           <...>-13382 (-----) [003] ...1 24573.954371: tracing_mark_write: E|13131
67179           <...>-13382 (-----) [003] ...1 24573.954375: tracing_mark_write: E|13131
67180           <...>-13382 (-----) [003] ...1 24573.954385: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67181           <...>-13382 (-----) [003] ...1 24573.954389: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67182           <...>-13382 (-----) [003] ...1 24573.954772: tracing_mark_write: E|13131
67183           <...>-13382 (-----) [003] ...1 24573.954776: tracing_mark_write: E|13131
67184           <...>-13382 (-----) [003] ...1 24573.954786: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67185           <...>-13382 (-----) [003] ...1 24573.954790: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67186           <...>-13382 (-----) [003] ...1 24573.955173: tracing_mark_write: E|13131
67187           <...>-13382 (-----) [003] ...1 24573.955177: tracing_mark_write: E|13131
67188           <...>-13382 (-----) [003] ...1 24573.955192: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67189           <...>-13382 (-----) [003] ...1 24573.955197: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67190 id.nn.benchmark-13159 (13131) [000] d.h4 24573.955291: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=004
67191 id.nn.benchmark-13159 (13131) [000] d.h5 24573.955312: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
67192 id.nn.benchmark-13159 (13131) [000] d.h4 24573.955315: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
67193           <...>-13382 (-----) [003] d..2 24573.955323: sched_switch: prev_comm=id.nn.benchmark prev_pid=13382 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
67194 id.nn.benchmark-13158 (13131) [007] dnh1 24573.955327: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
67195 id.nn.benchmark-13158 (13131) [007] d..2 24573.955330: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
67196 id.nn.benchmark-13159 (13131) [000] d.h2 24573.955357: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
67197  crtc_event:111-254   (  254) [003] d..2 24573.955362: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13382 next_prio=110
67198 id.nn.benchmark-13159 (13131) [000] d.h2 24573.955368: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
67199 id.nn.benchmark-13160 (13131) [004] dnh1 24573.955371: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
67200 id.nn.benchmark-13160 (13131) [004] d..2 24573.955374: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
67201 id.nn.benchmark-13159 (13131) [000] d.h3 24573.955376: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
67202         sugov:4-560   (  560) [004] d..2 24573.955377: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
67203           <...>-13382 (-----) [003] d..2 24573.955383: sched_switch: prev_comm=id.nn.benchmark prev_pid=13382 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
67204         sugov:0-559   (  559) [003] d..2 24573.955392: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13382 next_prio=110
67205 crtc_commit:111-253   (  253) [007] d..2 24573.955424: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
67206           <...>-13382 (-----) [003] ...1 24573.955453: tracing_mark_write: E|13131
67207           <...>-13382 (-----) [003] ...1 24573.955457: tracing_mark_write: E|13131
67208           <...>-13382 (-----) [003] ...1 24573.955470: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67209           <...>-13382 (-----) [003] ...1 24573.955474: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67210           <...>-13382 (-----) [003] ...1 24573.955544: tracing_mark_write: E|13131
67211           <...>-13382 (-----) [003] ...1 24573.955547: tracing_mark_write: E|13131
67212           <...>-13382 (-----) [003] ...1 24573.955556: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
67213           <...>-13382 (-----) [003] ...1 24573.955560: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
67214           <...>-13382 (-----) [003] ...1 24573.955845: tracing_mark_write: E|13131
67215           <...>-13382 (-----) [003] ...1 24573.955848: tracing_mark_write: E|13131
67216           <...>-13382 (-----) [003] ...1 24573.955857: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
67217           <...>-13382 (-----) [003] ...1 24573.955861: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
67218           <...>-13382 (-----) [003] ...1 24573.955905: tracing_mark_write: E|13131
67219           <...>-13382 (-----) [003] ...1 24573.955908: tracing_mark_write: E|13131
67220           <...>-13382 (-----) [003] ...1 24573.955916: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
67221           <...>-13382 (-----) [003] ...1 24573.955920: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
67222           <...>-13382 (-----) [003] ...1 24573.955935: tracing_mark_write: E|13131
67223           <...>-13382 (-----) [003] ...1 24573.955938: tracing_mark_write: E|13131
67224           <...>-13382 (-----) [003] ...1 24573.955946: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
67225           <...>-13382 (-----) [003] ...1 24573.955949: tracing_mark_write: E|13131
67226           <...>-13382 (-----) [003] ...1 24573.955957: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
67227           <...>-13382 (-----) [003] ...1 24573.955961: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
67228           <...>-13382 (-----) [003] ...1 24573.956813: tracing_mark_write: E|13131
67229           <...>-13382 (-----) [003] ...1 24573.956816: tracing_mark_write: E|13131
67230           <...>-13382 (-----) [003] ...1 24573.956823: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67231           <...>-13382 (-----) [003] ...1 24573.956827: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67232           <...>-13382 (-----) [003] ...1 24573.956911: tracing_mark_write: E|13131
67233           <...>-13382 (-----) [003] ...1 24573.956914: tracing_mark_write: E|13131
67234           <...>-13382 (-----) [003] d..2 24573.956944: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
67235           <...>-13382 (-----) [003] d..3 24573.956953: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
67236           <...>-13382 (-----) [003] ...1 24573.956970: tracing_mark_write: E|13131
67237           <...>-13382 (-----) [003] d..1 24573.956974: sched_waking: comm=id.nn.benchmark pid=13381 prio=110 target_cpu=007
67238 id.nn.benchmark-13158 (13131) [007] dnh1 24573.956989: sched_wakeup: comm=id.nn.benchmark pid=13381 prio=110 target_cpu=007
67239 id.nn.benchmark-13158 (13131) [007] d..2 24573.956992: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13381 next_prio=110
67240           <...>-13381 (-----) [007] d..2 24573.956997: sched_switch: prev_comm=id.nn.benchmark prev_pid=13381 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
67241           <...>-13382 (-----) [003] ...1 24573.956998: tracing_mark_write: E|13131
67242           <...>-13382 (-----) [003] d..1 24573.957192: sched_waking: comm=id.nn.benchmark pid=13381 prio=110 target_cpu=007
67243 id.nn.benchmark-13158 (13131) [007] dnh1 24573.957206: sched_wakeup: comm=id.nn.benchmark pid=13381 prio=110 target_cpu=007
67244 id.nn.benchmark-13158 (13131) [007] d..2 24573.957208: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13381 next_prio=110
67245           <...>-13382 (-----) [003] d..2 24573.957245: sched_switch: prev_comm=id.nn.benchmark prev_pid=13382 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
67246           <...>-13381 (-----) [007] d..1 24573.957258: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
67247           <...>-13381 (-----) [007] dn.2 24573.957263: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
67248           <...>-13381 (-----) [007] d..2 24573.957266: sched_switch: prev_comm=id.nn.benchmark prev_pid=13381 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
67249           <...>-13131 (-----) [007] d..2 24573.957272: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13381 next_prio=110
67250           <...>-13381 (-----) [007] d..1 24573.957297: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
67251           <...>-13381 (-----) [007] dn.2 24573.957301: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
67252           <...>-13381 (-----) [007] d..2 24573.957303: sched_switch: prev_comm=id.nn.benchmark prev_pid=13381 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
67253           <...>-13131 (-----) [007] ...1 24573.957312: tracing_mark_write: E|13131
67254           <...>-13131 (-----) [007] ...1 24573.957315: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
67255           <...>-13131 (-----) [007] ...1 24573.957316: tracing_mark_write: E|13131
67256           <...>-13131 (-----) [007] ...1 24573.957318: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
67257           <...>-13131 (-----) [007] ...1 24573.957319: tracing_mark_write: E|13131
67258     logd.writer-563   (  555) [003] d..2 24573.957337: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13381 next_prio=110
67259           <...>-13131 (-----) [007] ...1 24573.957378: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
67260           <...>-13381 (-----) [003] d..2 24573.957389: sched_switch: prev_comm=id.nn.benchmark prev_pid=13381 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
67261           <...>-13131 (-----) [007] d..2 24573.957391: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
67262 id.nn.benchmark-13158 (13131) [003] d.h3 24573.957424: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
67263           <...>-13131 (-----) [007] ...1 24573.957426: tracing_mark_write: E|13131
67264 id.nn.benchmark-13158 (13131) [003] d.h4 24573.957427: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
67265           <...>-13131 (-----) [007] ...1 24573.957427: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
67266           <...>-13131 (-----) [007] ...1 24573.957429: tracing_mark_write: E|13131
67267           <...>-13131 (-----) [007] ...1 24573.957431: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
67268           <...>-13131 (-----) [007] ...1 24573.957433: tracing_mark_write: E|13131
67269           <...>-13131 (-----) [007] ...1 24573.957434: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
67270 id.nn.benchmark-13158 (13131) [003] d.h4 24573.957439: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
67271           <...>-13131 (-----) [007] dnh1 24573.957443: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
67272 id.nn.benchmark-13158 (13131) [003] dnh5 24573.957445: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
67273           <...>-13131 (-----) [007] d..2 24573.957447: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
67274         sugov:4-560   (  560) [007] d..2 24573.957451: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
67275 id.nn.benchmark-13158 (13131) [003] d..2 24573.957453: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
67276         sugov:0-559   (  559) [003] d..2 24573.957460: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
67277           <...>-13131 (-----) [007] ...1 24573.957485: tracing_mark_write: E|13131
67278           <...>-13131 (-----) [007] ...1 24573.957487: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
67279           <...>-13131 (-----) [007] d..2 24573.957491: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13383 next_prio=110
67280           <...>-13383 (-----) [007] d.s2 24573.957558: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
67281 id.nn.benchmark-13159 (13131) [000] d.h2 24573.957595: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
67282           <...>-13383 (-----) [007] dns3 24573.957601: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
67283 id.nn.benchmark-13159 (13131) [000] dnh3 24573.957602: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
67284           <...>-13383 (-----) [007] dns1 24573.957616: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
67285           <...>-13383 (-----) [007] dns2 24573.957624: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
67286           <...>-13383 (-----) [007] dns2 24573.957625: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
67287           <...>-13383 (-----) [007] dns3 24573.957630: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
67288           <...>-13383 (-----) [007] d..2 24573.957634: sched_switch: prev_comm=id.nn.benchmark prev_pid=13383 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
67289  crtc_event:111-254   (  254) [007] d..2 24573.957641: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
67290     rcu_preempt-7     (    7) [007] d..2 24573.957646: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
67291 id.nn.benchmark-13159 (13131) [000] dnH4 24573.957674: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
67292  kworker/u16:15-18488 (18488) [007] dnh3 24573.957686: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
67293  kworker/u16:15-18488 (18488) [007] d..2 24573.957693: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
67294 id.nn.benchmark-13159 (13131) [000] dns2 24573.957693: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
67295 crtc_commit:111-253   (  253) [007] d.h1 24573.957712: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
67296 id.nn.benchmark-13159 (13131) [000] d..2 24573.957714: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
67297 crtc_commit:111-253   (  253) [007] d..2 24573.957731: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
67298     rcu_preempt-7     (    7) [007] d..2 24573.957733: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
67299     rcu_preempt-7     (    7) [007] d..2 24573.957764: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
67300     migration/0-13    (   13) [000] d..2 24573.957780: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
67301     logd.writer-563   (  555) [000] dnh3 24573.957788: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
67302     logd.writer-563   (  555) [000] d..2 24573.957797: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
67303         rcuop/0-10    (   10) [000] d..2 24573.957805: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
67304 id.nn.benchmark-13160 (13131) [004] dnh1 24573.957833: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
67305 id.nn.benchmark-13160 (13131) [004] d..2 24573.957836: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
67306         rcuop/1-21    (   21) [004] d..2 24573.957842: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
67307         rcuop/0-10    (   10) [000] d..2 24573.957859: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
67308  kworker/u16:15-18488 (18488) [007] .... 24573.957868: clk_set_rate: l3_cluster0_vote_clk 1401600000
67309  kworker/u16:15-18488 (18488) [007] d..2 24573.957873: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13383 next_prio=110
67310     logd.writer-563   (  555) [000] d.h4 24573.957926: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
67311     logd.writer-563   (  555) [000] dnh5 24573.957941: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
67312     logd.writer-563   (  555) [000] dnh2 24573.957975: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
67313     logd.writer-563   (  555) [000] dnh2 24573.957983: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
67314           <...>-13383 (-----) [007] dnh1 24573.957987: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
67315           <...>-13383 (-----) [007] d..2 24573.957991: sched_switch: prev_comm=id.nn.benchmark prev_pid=13383 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
67316     logd.writer-563   (  555) [000] dnh3 24573.957991: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
67317         sugov:4-560   (  560) [007] d..2 24573.957995: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
67318     logd.writer-563   (  555) [000] d..2 24573.957997: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
67319 id.nn.benchmark-13158 (13131) [003] d..2 24573.957999: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
67320         sugov:0-559   (  559) [003] d..2 24573.958006: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
67321  crtc_event:111-254   (  254) [000] d..2 24573.958008: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
67322     logd.writer-563   (  555) [000] d..2 24573.958211: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13384 next_prio=110
67323           <...>-13384 (-----) [000] ...1 24573.958266: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
67324           <...>-13384 (-----) [000] ...1 24573.958271: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
67325           <...>-13384 (-----) [000] d..2 24573.958307: sched_switch: prev_comm=id.nn.benchmark prev_pid=13384 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13383 next_prio=110
67326           <...>-13383 (-----) [000] d..1 24573.958332: sched_waking: comm=id.nn.benchmark pid=13384 prio=110 target_cpu=000
67327           <...>-13383 (-----) [000] d..2 24573.958351: sched_wakeup: comm=id.nn.benchmark pid=13384 prio=110 target_cpu=000
67328           <...>-13383 (-----) [000] d..2 24573.958362: sched_switch: prev_comm=id.nn.benchmark prev_pid=13383 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13384 next_prio=110
67329           <...>-13384 (-----) [000] d..2 24573.958422: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
67330           <...>-13384 (-----) [000] d..3 24573.958430: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
67331           <...>-13384 (-----) [000] ...1 24573.958497: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67332           <...>-13384 (-----) [000] ...1 24573.958502: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67333 id.nn.benchmark-13159 (13131) [007] d.h1 24573.959696: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=007
67334 id.nn.benchmark-13159 (13131) [007] d.h2 24573.959726: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
67335           <...>-13384 (-----) [000] dnh1 24573.959727: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
67336 id.nn.benchmark-13159 (13131) [007] dnh3 24573.959729: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
67337 id.nn.benchmark-13159 (13131) [007] dnh2 24573.959729: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
67338           <...>-13384 (-----) [000] d..2 24573.959735: sched_switch: prev_comm=id.nn.benchmark prev_pid=13384 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
67339 id.nn.benchmark-13159 (13131) [007] d..2 24573.959736: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
67340 id.nn.benchmark-13158 (13131) [003] dnh1 24573.959738: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
67341         sugov:4-560   (  560) [007] d..2 24573.959739: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
67342 id.nn.benchmark-13158 (13131) [003] d..2 24573.959743: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
67343         sugov:0-559   (  559) [003] d..2 24573.959749: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
67344        DispSync-23904 (23896) [000] d..1 24573.959755: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
67345        DispSync-23904 (23896) [000] d..2 24573.959768: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
67346 id.nn.benchmark-13156 (13131) [002] d..2 24573.959777: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
67347        DispSync-23904 (23896) [000] d..2 24573.959782: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
67348  appEventThread-23905 (23896) [002] d..3 24573.959816: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
67349 id.nn.benchmark-13159 (13131) [007] dnh1 24573.959832: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
67350 id.nn.benchmark-13159 (13131) [007] d..2 24573.959835: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
67351  appEventThread-23905 (23896) [002] d..2 24573.959843: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
67352     logd.writer-563   (  555) [000] d..2 24573.959889: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13384 next_prio=110
67353<...>-24151 ( 24151) [007] .... 24573.960036: binder_transaction: transaction=1670164 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
67354<...>-24151 ( 24151) [007] d..4 24573.960042: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
67355<...>-24151 ( 24151) [007] d..5 24573.960051: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
67356<...>-24151 ( 24151) [007] d..3 24573.960073: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
67357<...>-24151 ( 24151) [007] d..4 24573.960080: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
67358<...>-24151 ( 24151) [007] d..2 24573.960148: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
67359<...>-23903 ( 23896) [007] .... 24573.960152: binder_transaction_received: transaction=1670164
67360<...>-23903 ( 23896) [007] d..1 24573.960171: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
67361           <...>-13384 (-----) [000] dnh1 24573.960188: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
67362<...>-23903 ( 23896) [007] d..2 24573.960191: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
67363           <...>-13384 (-----) [000] d..2 24573.960195: sched_switch: prev_comm=id.nn.benchmark prev_pid=13384 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
67364  appEventThread-23905 (23896) [000] d..2 24573.960221: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13384 next_prio=110
67365    RenderThread-24437 (24151) [007] d..1 24573.960249: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
67366    RenderThread-24437 (24151) [007] d..2 24573.960255: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
67367    RenderThread-24437 (24151) [007] .... 24573.960287: binder_transaction: transaction=1670165 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
67368    RenderThread-24437 (24151) [007] d..4 24573.960289: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
67369    RenderThread-24437 (24151) [007] d..5 24573.960293: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
67370    RenderThread-24437 (24151) [007] d..2 24573.960297: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
67371<...>-23903 ( 23896) [007] .... 24573.960299: binder_transaction_received: transaction=1670165
67372<...>-23903 ( 23896) [007] .... 24573.960329: binder_transaction: transaction=1670166 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
67373<...>-23903 ( 23896) [007] d..2 24573.960334: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
67374<...>-23903 ( 23896) [007] d..3 24573.960339: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
67375<...>-23903 ( 23896) [007] d..2 24573.960348: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
67376    RenderThread-24437 (24151) [007] .... 24573.960350: binder_transaction_received: transaction=1670166
67377    RenderThread-24437 (24151) [007] d.s3 24573.960962: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
67378    RenderThread-24437 (24151) [007] d.s4 24573.960973: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
67379    RenderThread-24437 (24151) [007] d..2 24573.960988: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
67380  kworker/u16:15-18488 (18488) [007] d.h3 24573.961089: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
67381  kworker/u16:15-18488 (18488) [007] d.h4 24573.961093: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
67382  kworker/u16:15-18488 (18488) [007] d.h4 24573.961095: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
67383           <...>-13384 (-----) [000] d.h2 24573.961189: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
67384           <...>-13384 (-----) [000] dnh3 24573.961209: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
67385  kworker/u16:15-18488 (18488) [007] d..2 24573.961209: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
67386           <...>-13384 (-----) [000] dnh2 24573.961242: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
67387<...>-24151 ( 24151) [007] d..2 24573.961247: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
67388           <...>-13384 (-----) [000] dnh2 24573.961254: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
67389    RenderThread-24437 (24151) [007] dnh1 24573.961258: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
67390    RenderThread-24437 (24151) [007] d..2 24573.961261: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
67391           <...>-13384 (-----) [000] dnh3 24573.961262: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
67392         sugov:4-560   (  560) [007] d..2 24573.961265: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
67393           <...>-13384 (-----) [000] d..2 24573.961268: sched_switch: prev_comm=id.nn.benchmark prev_pid=13384 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
67394 id.nn.benchmark-13158 (13131) [003] d..2 24573.961271: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
67395         sugov:0-559   (  559) [003] d..2 24573.961279: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
67396 kgsl_worker_thr-246   (  246) [000] d..2 24573.961302: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
67397    RenderThread-24437 (24151) [007] d.h1 24573.961329: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
67398 kgsl_worker_thr-246   (  246) [000] d..2 24573.961333: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13384 next_prio=110
67399    RenderThread-24437 (24151) [007] .... 24573.961346: binder_transaction: transaction=1670167 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
67400    RenderThread-24437 (24151) [007] d..4 24573.961350: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
67401    RenderThread-24437 (24151) [007] d..5 24573.961355: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
67402    RenderThread-24437 (24151) [007] d..2 24573.961359: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
67403<...>-23903 ( 23896) [007] .... 24573.961361: binder_transaction_received: transaction=1670167
67404<...>-23903 ( 23896) [007] .... 24573.961424: binder_transaction: transaction=1670168 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
67405<...>-23903 ( 23896) [007] d..2 24573.961426: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
67406<...>-23903 ( 23896) [007] d..3 24573.961432: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
67407<...>-23903 ( 23896) [007] d..2 24573.961440: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
67408  kworker/u16:15-18488 (18488) [007] d..2 24573.961559: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
67409    RenderThread-24437 (24151) [007] .... 24573.961561: binder_transaction_received: transaction=1670168
67410    RenderThread-24437 (24151) [007] d..2 24573.961591: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
67411           <...>-13384 (-----) [000] ...1 24573.961716: tracing_mark_write: E|13131
67412           <...>-13384 (-----) [000] ...1 24573.961721: tracing_mark_write: E|13131
67413           <...>-13384 (-----) [000] ...1 24573.961738: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67414           <...>-13384 (-----) [000] ...1 24573.961743: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67415           <...>-13384 (-----) [000] ...1 24573.962459: tracing_mark_write: E|13131
67416           <...>-13384 (-----) [000] ...1 24573.962463: tracing_mark_write: E|13131
67417           <...>-13384 (-----) [000] ...1 24573.962482: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67418           <...>-13384 (-----) [000] ...1 24573.962486: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67419           <...>-13384 (-----) [000] ...1 24573.962814: tracing_mark_write: E|13131
67420           <...>-13384 (-----) [000] ...1 24573.962817: tracing_mark_write: E|13131
67421           <...>-13384 (-----) [000] ...1 24573.962828: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67422           <...>-13384 (-----) [000] ...1 24573.962833: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67423           <...>-13384 (-----) [000] ...1 24573.963066: tracing_mark_write: E|13131
67424           <...>-13384 (-----) [000] ...1 24573.963069: tracing_mark_write: E|13131
67425           <...>-13384 (-----) [000] ...1 24573.963079: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67426           <...>-13384 (-----) [000] ...1 24573.963083: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67427           <...>-13384 (-----) [000] ...1 24573.963477: tracing_mark_write: E|13131
67428           <...>-13384 (-----) [000] ...1 24573.963481: tracing_mark_write: E|13131
67429           <...>-13384 (-----) [000] ...1 24573.963491: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67430           <...>-13384 (-----) [000] ...1 24573.963495: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67431           <...>-13384 (-----) [000] d.h1 24573.963713: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
67432           <...>-13384 (-----) [000] dnh2 24573.963722: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
67433           <...>-13384 (-----) [000] d..2 24573.963730: sched_switch: prev_comm=id.nn.benchmark prev_pid=13384 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
67434        DispSync-23904 (23896) [000] d..1 24573.963744: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
67435        DispSync-23904 (23896) [000] d..2 24573.963755: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
67436           <...>-13154 (-----) [001] d..2 24573.963766: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
67437        DispSync-23904 (23896) [000] d..2 24573.963768: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13384 next_prio=110
67438   sfEventThread-23906 (23896) [001] d..3 24573.963801: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
67439   sfEventThread-23906 (23896) [001] d..4 24573.963815: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
67440           <...>-13384 (-----) [000] d..2 24573.963823: sched_switch: prev_comm=id.nn.benchmark prev_pid=13384 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
67441   sfEventThread-23906 (23896) [001] d..2 24573.963830: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
67442  surfaceflinger-23896 (23896) [000] d..1 24573.964102: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
67443  surfaceflinger-23896 (23896) [000] d..2 24573.964113: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
67444           <...>-13154 (-----) [001] d..2 24573.964121: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
67445   sfEventThread-23906 (23896) [001] d..2 24573.964138: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
67446 id.nn.benchmark-13159 (13131) [007] d.s1 24573.964224: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
67447 id.nn.benchmark-13159 (13131) [007] dns2 24573.964235: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
67448 id.nn.benchmark-13159 (13131) [007] dns2 24573.964237: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
67449 id.nn.benchmark-13159 (13131) [007] dns3 24573.964243: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
67450 id.nn.benchmark-13159 (13131) [007] d..2 24573.964251: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
67451     rcu_preempt-7     (    7) [007] d..2 24573.964255: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=007
67452  surfaceflinger-23896 (23896) [000] ...1 24573.964259: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
67453     rcu_preempt-7     (    7) [007] d..3 24573.964262: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=007
67454  surfaceflinger-23896 (23896) [000] ...1 24573.964263: tracing_mark_write: E|23896
67455     rcu_preempt-7     (    7) [007] d..2 24573.964263: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=003
67456     rcu_preempt-7     (    7) [007] d..2 24573.964276: 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
67457         rcuop/2-29    (   29) [007] d..2 24573.964279: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
67458  surfaceflinger-23896 (23896) [000] d.h1 24573.964279: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=000
67459  surfaceflinger-23896 (23896) [000] d.h1 24573.964292: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
67460         rcuop/2-29    (   29) [007] d..2 24573.964303: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
67461  surfaceflinger-23896 (23896) [000] .... 24573.964316: binder_transaction: transaction=1670169 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
67462  surfaceflinger-23896 (23896) [000] ...2 24573.964336: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
67463  surfaceflinger-23896 (23896) [000] d..4 24573.964343: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
67464  kworker/u16:15-18488 (18488) [007] d..2 24573.964344: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
67465 id.nn.benchmark-13159 (13131) [007] dnh1 24573.964366: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
67466  surfaceflinger-23896 (23896) [000] d.h5 24573.964392: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
67467 id.nn.benchmark-13159 (13131) [007] d..2 24573.964392: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
67468  surfaceflinger-23896 (23896) [000] d.h5 24573.964405: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
67469 id.nn.benchmark-13160 (13131) [004] dnh1 24573.964408: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
67470 id.nn.benchmark-13160 (13131) [004] d..2 24573.964411: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
67471  surfaceflinger-23896 (23896) [000] d.h6 24573.964413: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
67472         sugov:4-560   (  560) [004] d..2 24573.964414: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
67473  HwBinder:598_3-633   (  598) [007] .... 24573.964418: binder_transaction_received: transaction=1670169
67474 id.nn.benchmark-13158 (13131) [003] d..2 24573.964422: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
67475  surfaceflinger-23896 (23896) [000] d..2 24573.964424: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
67476         rcuop/6-61    (   61) [000] d..2 24573.964429: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=003
67477         sugov:0-559   (  559) [003] d..2 24573.964430: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
67478  HwBinder:598_3-633   (  598) [007] ...1 24573.964444: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
67479         rcuop/6-61    (   61) [000] d..3 24573.964446: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=000
67480         rcuop/6-61    (   61) [000] d..2 24573.964452: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
67481         rcuop/3-37    (   37) [000] d..2 24573.964463: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=rcuop/7 next_pid=69 next_prio=120
67482         rcuop/7-69    (   69) [000] d..2 24573.964487: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13384 next_prio=110
67483  HwBinder:598_3-633   (  598) [007] ...1 24573.964493: tracing_mark_write: B|598|HWCSession::PresentDisplay::
67484  HwBinder:598_3-633   (  598) [007] ...1 24573.964558: tracing_mark_write: B|598|HWDeviceDRM::Commit::
67485  HwBinder:598_3-633   (  598) [007] ...1 24573.964562: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
67486           <...>-13384 (-----) [000] ...1 24573.964622: tracing_mark_write: E|13131
67487           <...>-13384 (-----) [000] ...1 24573.964626: tracing_mark_write: E|13131
67488           <...>-13384 (-----) [000] ...1 24573.964644: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67489           <...>-13384 (-----) [000] ...1 24573.964649: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67490  HwBinder:598_3-633   (  598) [007] d..2 24573.964761: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
67491           <...>-13384 (-----) [000] dnh1 24573.964793: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
67492           <...>-13384 (-----) [000] d..2 24573.964800: sched_switch: prev_comm=id.nn.benchmark prev_pid=13384 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
67493  HwBinder:598_3-633   (  598) [007] ...1 24573.964818: tracing_mark_write: E|598
67494  HwBinder:598_3-633   (  598) [007] ...1 24573.964819: tracing_mark_write: E|598
67495  HwBinder:598_3-633   (  598) [007] ...1 24573.964841: tracing_mark_write: E|598
67496  HwBinder:598_3-633   (  598) [007] ...1 24573.964861: tracing_mark_write: E|598
67497  HwBinder:598_3-633   (  598) [007] .... 24573.964866: binder_transaction: transaction=1670170 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
67498  HwBinder:598_3-633   (  598) [007] d..2 24573.964871: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
67499  HwBinder:598_3-633   (  598) [007] .... 24573.964881: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
67500           <...>-13154 (-----) [001] dnh1 24573.964886: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
67501           <...>-13154 (-----) [001] d..2 24573.964892: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
67502  surfaceflinger-23896 (23896) [001] .... 24573.964897: binder_transaction_received: transaction=1670170
67503  HwBinder:598_3-633   (  598) [007] d..2 24573.964903: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
67504  surfaceflinger-23896 (23896) [001] d..2 24573.965144: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
67505 crtc_commit:111-253   (  253) [000] d..2 24573.965409: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13384 next_prio=110
67506           <...>-13384 (-----) [000] ...1 24573.965477: tracing_mark_write: E|13131
67507           <...>-13384 (-----) [000] ...1 24573.965482: tracing_mark_write: E|13131
67508           <...>-13384 (-----) [000] ...1 24573.965496: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67509           <...>-13384 (-----) [000] ...1 24573.965500: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67510           <...>-13384 (-----) [000] ...1 24573.965573: tracing_mark_write: E|13131
67511           <...>-13384 (-----) [000] ...1 24573.965576: tracing_mark_write: E|13131
67512           <...>-13384 (-----) [000] ...1 24573.965587: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
67513           <...>-13384 (-----) [000] ...1 24573.965592: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
67514           <...>-13384 (-----) [000] ...1 24573.965896: tracing_mark_write: E|13131
67515           <...>-13384 (-----) [000] ...1 24573.965899: tracing_mark_write: E|13131
67516           <...>-13384 (-----) [000] ...1 24573.965909: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
67517           <...>-13384 (-----) [000] ...1 24573.965912: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
67518           <...>-13384 (-----) [000] ...1 24573.965963: tracing_mark_write: E|13131
67519           <...>-13384 (-----) [000] ...1 24573.965966: tracing_mark_write: E|13131
67520           <...>-13384 (-----) [000] ...1 24573.965975: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
67521           <...>-13384 (-----) [000] ...1 24573.965979: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
67522           <...>-13384 (-----) [000] ...1 24573.965997: tracing_mark_write: E|13131
67523           <...>-13384 (-----) [000] ...1 24573.966000: tracing_mark_write: E|13131
67524           <...>-13384 (-----) [000] ...1 24573.966010: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
67525           <...>-13384 (-----) [000] ...1 24573.966013: tracing_mark_write: E|13131
67526           <...>-13384 (-----) [000] ...1 24573.966022: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
67527           <...>-13384 (-----) [000] ...1 24573.966026: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
67528           <...>-13384 (-----) [000] ...1 24573.966879: tracing_mark_write: E|13131
67529           <...>-13384 (-----) [000] ...1 24573.966882: tracing_mark_write: E|13131
67530           <...>-13384 (-----) [000] ...1 24573.966890: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67531           <...>-13384 (-----) [000] ...1 24573.966893: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67532           <...>-13384 (-----) [000] ...1 24573.966977: tracing_mark_write: E|13131
67533           <...>-13384 (-----) [000] ...1 24573.966980: tracing_mark_write: E|13131
67534           <...>-13384 (-----) [000] d..2 24573.967029: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
67535           <...>-13384 (-----) [000] d..3 24573.967039: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
67536           <...>-13384 (-----) [000] ...1 24573.967061: tracing_mark_write: E|13131
67537           <...>-13384 (-----) [000] d..1 24573.967067: sched_waking: comm=id.nn.benchmark pid=13383 prio=110 target_cpu=000
67538 id.nn.benchmark-13159 (13131) [007] dnh1 24573.967092: sched_wakeup: comm=id.nn.benchmark pid=13383 prio=110 target_cpu=007
67539 id.nn.benchmark-13159 (13131) [007] d..2 24573.967117: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13383 next_prio=110
67540           <...>-13384 (-----) [000] d.h3 24573.967118: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
67541           <...>-13383 (-----) [007] d..2 24573.967129: sched_switch: prev_comm=id.nn.benchmark prev_pid=13383 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
67542           <...>-13384 (-----) [000] d.h3 24573.967131: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
67543 id.nn.benchmark-13159 (13131) [007] dnh1 24573.967133: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
67544 id.nn.benchmark-13159 (13131) [007] d..2 24573.967136: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
67545         sugov:4-560   (  560) [007] d..2 24573.967140: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
67546           <...>-13384 (-----) [000] dnh4 24573.967141: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
67547           <...>-13384 (-----) [000] d..2 24573.967147: sched_switch: prev_comm=id.nn.benchmark prev_pid=13384 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
67548         sugov:0-559   (  559) [000] d..2 24573.967154: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13384 next_prio=110
67549           <...>-13384 (-----) [000] ...1 24573.967170: tracing_mark_write: E|13131
67550           <...>-13384 (-----) [000] d..1 24573.967382: sched_waking: comm=id.nn.benchmark pid=13383 prio=110 target_cpu=007
67551 id.nn.benchmark-13159 (13131) [007] dnh1 24573.967396: sched_wakeup: comm=id.nn.benchmark pid=13383 prio=110 target_cpu=007
67552 id.nn.benchmark-13159 (13131) [007] d..2 24573.967398: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13383 next_prio=110
67553           <...>-13384 (-----) [000] d..2 24573.967449: sched_switch: prev_comm=id.nn.benchmark prev_pid=13384 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
67554           <...>-13383 (-----) [007] d..1 24573.967463: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
67555           <...>-13383 (-----) [007] dn.2 24573.967470: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
67556           <...>-13383 (-----) [007] d..2 24573.967472: sched_switch: prev_comm=id.nn.benchmark prev_pid=13383 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
67557           <...>-13131 (-----) [007] d..2 24573.967479: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13383 next_prio=110
67558           <...>-13383 (-----) [007] d..1 24573.967506: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
67559           <...>-13383 (-----) [007] dn.2 24573.967509: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
67560           <...>-13383 (-----) [007] d..2 24573.967512: sched_switch: prev_comm=id.nn.benchmark prev_pid=13383 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
67561           <...>-13131 (-----) [007] ...1 24573.967521: tracing_mark_write: E|13131
67562           <...>-13131 (-----) [007] ...1 24573.967525: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
67563           <...>-13131 (-----) [007] ...1 24573.967527: tracing_mark_write: E|13131
67564           <...>-13131 (-----) [007] ...1 24573.967529: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
67565           <...>-13131 (-----) [007] ...1 24573.967532: tracing_mark_write: E|13131
67566           <...>-13131 (-----) [007] d.s2 24573.967558: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
67567           <...>-13131 (-----) [007] d.s3 24573.967568: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
67568     logd.writer-563   (  555) [000] d..2 24573.967574: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13383 next_prio=110
67569           <...>-13131 (-----) [007] ...1 24573.967621: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
67570           <...>-13131 (-----) [007] d..2 24573.967634: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
67571           <...>-13383 (-----) [000] d..2 24573.967646: sched_switch: prev_comm=id.nn.benchmark prev_pid=13383 prev_prio=110 prev_state=x ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
67572           <...>-13131 (-----) [007] ...1 24573.967655: tracing_mark_write: E|13131
67573           <...>-13131 (-----) [007] ...1 24573.967657: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
67574           <...>-13131 (-----) [007] ...1 24573.967659: tracing_mark_write: E|13131
67575           <...>-13131 (-----) [007] ...1 24573.967661: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
67576           <...>-13131 (-----) [007] ...1 24573.967663: tracing_mark_write: E|13131
67577           <...>-13131 (-----) [007] ...1 24573.967665: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
67578  kworker/u16:15-18488 (18488) [000] d.h3 24573.967676: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
67579  kworker/u16:15-18488 (18488) [000] d.h4 24573.967680: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
67580  kworker/u16:15-18488 (18488) [000] d.h4 24573.967687: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
67581           <...>-13131 (-----) [007] dnh1 24573.967692: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
67582  kworker/u16:15-18488 (18488) [000] dnh5 24573.967693: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
67583           <...>-13131 (-----) [007] d..2 24573.967695: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
67584         sugov:4-560   (  560) [007] d..2 24573.967700: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
67585  kworker/u16:15-18488 (18488) [000] d..2 24573.967701: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
67586         sugov:0-559   (  559) [000] d..2 24573.967708: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
67587           <...>-13131 (-----) [007] ...1 24573.967739: tracing_mark_write: E|13131
67588           <...>-13131 (-----) [007] ...1 24573.967740: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
67589           <...>-13131 (-----) [007] d..2 24573.967745: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
67590  kworker/u16:15-18488 (18488) [000] d..2 24573.967800: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
67591     logd.writer-563   (  555) [000] d..2 24573.967852: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13385 next_prio=110
67592           <...>-13385 (-----) [000] d..2 24573.967931: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
67593           <...>-13385 (-----) [000] d..3 24573.967939: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
67594           <...>-13385 (-----) [000] d..2 24573.968238: sched_switch: prev_comm=id.nn.benchmark prev_pid=13385 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
67595     logd.writer-563   (  555) [000] d..2 24573.968418: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13386 next_prio=110
67596           <...>-13386 (-----) [000] ...1 24573.968445: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
67597           <...>-13386 (-----) [000] ...1 24573.968450: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
67598           <...>-13386 (-----) [000] d..2 24573.968508: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
67599           <...>-13386 (-----) [000] d..3 24573.968516: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
67600           <...>-13386 (-----) [000] ...1 24573.968581: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67601           <...>-13386 (-----) [000] ...1 24573.968585: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67602           <...>-13386 (-----) [000] ...1 24573.970572: tracing_mark_write: E|13131
67603           <...>-13386 (-----) [000] ...1 24573.970576: tracing_mark_write: E|13131
67604           <...>-13386 (-----) [000] ...1 24573.970588: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67605           <...>-13386 (-----) [000] ...1 24573.970591: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67606 id.nn.benchmark-13159 (13131) [007] d.s1 24573.970890: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
67607 id.nn.benchmark-13159 (13131) [007] dns2 24573.970900: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
67608 id.nn.benchmark-13159 (13131) [007] dns2 24573.970902: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
67609 id.nn.benchmark-13159 (13131) [007] dns3 24573.970911: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
67610 id.nn.benchmark-13159 (13131) [007] dnH3 24573.970931: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
67611 id.nn.benchmark-13159 (13131) [007] dnH4 24573.970934: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
67612 id.nn.benchmark-13159 (13131) [007] dnH3 24573.970935: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
67613 id.nn.benchmark-13159 (13131) [007] d..2 24573.970942: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
67614         sugov:4-560   (  560) [007] d..2 24573.970946: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
67615           <...>-13386 (-----) [000] dnh1 24573.970946: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
67616     rcu_preempt-7     (    7) [007] d..2 24573.970948: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
67617           <...>-13386 (-----) [000] d..2 24573.970953: sched_switch: prev_comm=id.nn.benchmark prev_pid=13386 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
67618         sugov:0-559   (  559) [000] d..2 24573.970961: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13386 next_prio=110
67619     rcu_preempt-7     (    7) [007] d..2 24573.970967: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
67620           <...>-13386 (-----) [000] dnh3 24573.970967: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
67621           <...>-13386 (-----) [000] d..2 24573.970972: sched_switch: prev_comm=id.nn.benchmark prev_pid=13386 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
67622         rcuop/0-10    (   10) [000] d..2 24573.970980: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
67623 id.nn.benchmark-13160 (13131) [004] dnh1 24573.971010: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
67624 id.nn.benchmark-13160 (13131) [004] d..2 24573.971012: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
67625         rcuop/0-10    (   10) [000] d..2 24573.971024: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13386 next_prio=110
67626         rcuop/1-21    (   21) [004] d..2 24573.971033: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
67627  kworker/u16:15-18488 (18488) [007] d..2 24573.971205: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
67628           <...>-13386 (-----) [000] ...1 24573.971403: tracing_mark_write: E|13131
67629           <...>-13386 (-----) [000] ...1 24573.971409: tracing_mark_write: E|13131
67630           <...>-13386 (-----) [000] ...1 24573.971425: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67631           <...>-13386 (-----) [000] ...1 24573.971429: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67632           <...>-13386 (-----) [000] d.h4 24573.971766: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
67633           <...>-13386 (-----) [000] dnh5 24573.971777: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
67634           <...>-13386 (-----) [000] dnh4 24573.971782: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
67635 id.nn.benchmark-13159 (13131) [007] dnh1 24573.971802: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
67636 id.nn.benchmark-13159 (13131) [007] d..2 24573.971805: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
67637           <...>-13386 (-----) [000] dnh2 24573.971833: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
67638           <...>-13386 (-----) [000] dnh2 24573.971844: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
67639 id.nn.benchmark-13160 (13131) [004] dnh1 24573.971846: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
67640 id.nn.benchmark-13160 (13131) [004] d..2 24573.971849: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
67641 crtc_commit:111-253   (  253) [007] d..2 24573.971852: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
67642         sugov:4-560   (  560) [004] d..2 24573.971853: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
67643           <...>-13386 (-----) [000] dnh3 24573.971855: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
67644           <...>-13386 (-----) [000] d..2 24573.971862: sched_switch: prev_comm=id.nn.benchmark prev_pid=13386 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
67645           <...>-13154 (-----) [001] d..2 24573.971864: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
67646         sugov:0-559   (  559) [001] d..2 24573.971873: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
67647  crtc_event:111-254   (  254) [000] d..2 24573.971874: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
67648 id.nn.benchmark-13159 (13131) [007] dnh1 24573.971885: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
67649 id.nn.benchmark-13159 (13131) [007] d..2 24573.971887: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
67650  crtc_event:111-254   (  254) [000] d..2 24573.971888: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13386 next_prio=110
67651 crtc_commit:111-253   (  253) [007] d..2 24573.971942: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
67652           <...>-13386 (-----) [000] ...1 24573.971970: tracing_mark_write: E|13131
67653           <...>-13386 (-----) [000] ...1 24573.971974: tracing_mark_write: E|13131
67654           <...>-13386 (-----) [000] ...1 24573.971985: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67655           <...>-13386 (-----) [000] ...1 24573.971989: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67656           <...>-13386 (-----) [000] ...1 24573.972222: tracing_mark_write: E|13131
67657           <...>-13386 (-----) [000] ...1 24573.972226: tracing_mark_write: E|13131
67658           <...>-13386 (-----) [000] ...1 24573.972236: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67659           <...>-13386 (-----) [000] ...1 24573.972241: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67660           <...>-13386 (-----) [000] ...1 24573.972637: tracing_mark_write: E|13131
67661           <...>-13386 (-----) [000] ...1 24573.972640: tracing_mark_write: E|13131
67662           <...>-13386 (-----) [000] ...1 24573.972651: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67663           <...>-13386 (-----) [000] ...1 24573.972655: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67664           <...>-13386 (-----) [000] ...1 24573.973049: tracing_mark_write: E|13131
67665           <...>-13386 (-----) [000] ...1 24573.973053: tracing_mark_write: E|13131
67666           <...>-13386 (-----) [000] ...1 24573.973069: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67667           <...>-13386 (-----) [000] ...1 24573.973074: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67668           <...>-13386 (-----) [000] ...1 24573.973264: tracing_mark_write: E|13131
67669           <...>-13386 (-----) [000] ...1 24573.973269: tracing_mark_write: E|13131
67670           <...>-13386 (-----) [000] ...1 24573.973281: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67671           <...>-13386 (-----) [000] ...1 24573.973285: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67672           <...>-13386 (-----) [000] ...1 24573.973354: tracing_mark_write: E|13131
67673           <...>-13386 (-----) [000] ...1 24573.973358: tracing_mark_write: E|13131
67674           <...>-13386 (-----) [000] ...1 24573.973367: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
67675           <...>-13386 (-----) [000] ...1 24573.973373: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
67676           <...>-13386 (-----) [000] ...1 24573.973635: tracing_mark_write: E|13131
67677           <...>-13386 (-----) [000] ...1 24573.973639: tracing_mark_write: E|13131
67678           <...>-13386 (-----) [000] ...1 24573.973647: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
67679           <...>-13386 (-----) [000] ...1 24573.973651: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
67680           <...>-13386 (-----) [000] ...1 24573.973695: tracing_mark_write: E|13131
67681           <...>-13386 (-----) [000] ...1 24573.973698: tracing_mark_write: E|13131
67682           <...>-13386 (-----) [000] ...1 24573.973707: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
67683           <...>-13386 (-----) [000] ...1 24573.973711: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
67684           <...>-13386 (-----) [000] ...1 24573.973726: tracing_mark_write: E|13131
67685           <...>-13386 (-----) [000] ...1 24573.973729: tracing_mark_write: E|13131
67686           <...>-13386 (-----) [000] ...1 24573.973738: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
67687           <...>-13386 (-----) [000] ...1 24573.973741: tracing_mark_write: E|13131
67688           <...>-13386 (-----) [000] ...1 24573.973750: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
67689           <...>-13386 (-----) [000] ...1 24573.973755: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
67690           <...>-13386 (-----) [000] d.h4 24573.974112: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
67691 id.nn.benchmark-13159 (13131) [007] dnh1 24573.974125: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
67692 id.nn.benchmark-13159 (13131) [007] d..2 24573.974128: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
67693 crtc_commit:111-253   (  253) [007] d..2 24573.974154: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
67694 id.nn.benchmark-13159 (13131) [007] d.s2 24573.974222: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
67695 id.nn.benchmark-13159 (13131) [007] d.s2 24573.974230: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
67696 id.nn.benchmark-13159 (13131) [007] dns3 24573.974234: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
67697           <...>-13386 (-----) [000] dnh1 24573.974235: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
67698 id.nn.benchmark-13159 (13131) [007] d..2 24573.974237: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
67699           <...>-13386 (-----) [000] d..2 24573.974240: sched_switch: prev_comm=id.nn.benchmark prev_pid=13386 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
67700  crtc_event:111-254   (  254) [000] d..2 24573.974252: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13386 next_prio=110
67701  kworker/u16:15-18488 (18488) [007] d..2 24573.974274: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
67702           <...>-13386 (-----) [000] d.h4 24573.974408: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
67703           <...>-13386 (-----) [000] dnh5 24573.974414: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
67704           <...>-13386 (-----) [000] d..2 24573.974427: sched_switch: prev_comm=id.nn.benchmark prev_pid=13386 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
67705  crtc_event:111-254   (  254) [000] d..2 24573.974436: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13386 next_prio=110
67706           <...>-13386 (-----) [000] ...1 24573.974834: tracing_mark_write: E|13131
67707           <...>-13386 (-----) [000] ...1 24573.974838: tracing_mark_write: E|13131
67708           <...>-13386 (-----) [000] ...1 24573.974847: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67709           <...>-13386 (-----) [000] ...1 24573.974851: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67710           <...>-13386 (-----) [000] ...1 24573.974934: tracing_mark_write: E|13131
67711           <...>-13386 (-----) [000] ...1 24573.974937: tracing_mark_write: E|13131
67712           <...>-13386 (-----) [000] ...1 24573.974988: tracing_mark_write: E|13131
67713           <...>-13386 (-----) [000] d..1 24573.974992: sched_waking: comm=id.nn.benchmark pid=13385 prio=110 target_cpu=000
67714 id.nn.benchmark-13159 (13131) [007] dnh1 24573.975016: sched_wakeup: comm=id.nn.benchmark pid=13385 prio=110 target_cpu=007
67715 id.nn.benchmark-13159 (13131) [007] d..2 24573.975041: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13385 next_prio=110
67716           <...>-13386 (-----) [000] d.h3 24573.975041: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
67717           <...>-13385 (-----) [007] d..2 24573.975047: sched_switch: prev_comm=id.nn.benchmark prev_pid=13385 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
67718           <...>-13386 (-----) [000] d.h3 24573.975055: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
67719 id.nn.benchmark-13159 (13131) [007] dnh1 24573.975058: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
67720 id.nn.benchmark-13159 (13131) [007] d..2 24573.975061: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
67721         sugov:4-560   (  560) [007] d..2 24573.975064: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
67722           <...>-13386 (-----) [000] dnh4 24573.975065: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
67723           <...>-13386 (-----) [000] d..2 24573.975070: sched_switch: prev_comm=id.nn.benchmark prev_pid=13386 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
67724         sugov:0-559   (  559) [000] d..2 24573.975078: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13386 next_prio=110
67725           <...>-13386 (-----) [000] ...1 24573.975093: tracing_mark_write: E|13131
67726           <...>-13386 (-----) [000] d..1 24573.975279: sched_waking: comm=id.nn.benchmark pid=13385 prio=110 target_cpu=007
67727 id.nn.benchmark-13159 (13131) [007] dnh1 24573.975292: sched_wakeup: comm=id.nn.benchmark pid=13385 prio=110 target_cpu=007
67728 id.nn.benchmark-13159 (13131) [007] d..2 24573.975294: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13385 next_prio=110
67729           <...>-13386 (-----) [000] d..2 24573.975319: sched_switch: prev_comm=id.nn.benchmark prev_pid=13386 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
67730           <...>-13385 (-----) [007] d..1 24573.975346: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
67731           <...>-13385 (-----) [007] dn.2 24573.975351: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
67732           <...>-13385 (-----) [007] d..2 24573.975353: sched_switch: prev_comm=id.nn.benchmark prev_pid=13385 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
67733           <...>-13131 (-----) [007] d..2 24573.975358: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13385 next_prio=110
67734           <...>-13385 (-----) [007] d..1 24573.975383: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
67735           <...>-13385 (-----) [007] dn.2 24573.975386: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
67736           <...>-13385 (-----) [007] d..2 24573.975388: sched_switch: prev_comm=id.nn.benchmark prev_pid=13385 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
67737           <...>-13131 (-----) [007] ...1 24573.975396: tracing_mark_write: E|13131
67738           <...>-13131 (-----) [007] ...1 24573.975398: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
67739           <...>-13131 (-----) [007] ...1 24573.975400: tracing_mark_write: E|13131
67740           <...>-13131 (-----) [007] ...1 24573.975402: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
67741           <...>-13131 (-----) [007] ...1 24573.975403: tracing_mark_write: E|13131
67742           <...>-13131 (-----) [007] ...1 24573.975462: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
67743           <...>-13131 (-----) [007] ...1 24573.975482: tracing_mark_write: E|13131
67744           <...>-13131 (-----) [007] ...1 24573.975483: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
67745           <...>-13131 (-----) [007] ...1 24573.975485: tracing_mark_write: E|13131
67746           <...>-13131 (-----) [007] ...1 24573.975487: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
67747           <...>-13131 (-----) [007] ...1 24573.975489: tracing_mark_write: E|13131
67748           <...>-13131 (-----) [007] ...1 24573.975490: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
67749     logd.writer-563   (  555) [000] d..2 24573.975521: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13385 next_prio=110
67750           <...>-13131 (-----) [007] ...1 24573.975534: tracing_mark_write: E|13131
67751           <...>-13131 (-----) [007] ...1 24573.975536: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
67752           <...>-13131 (-----) [007] d..2 24573.975541: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
67753           <...>-13385 (-----) [000] d..2 24573.975577: sched_switch: prev_comm=id.nn.benchmark prev_pid=13385 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13387 next_prio=110
67754           <...>-13387 (-----) [000] d.h4 24573.975605: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
67755           <...>-13387 (-----) [000] d.h4 24573.975613: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
67756 id.nn.benchmark-13159 (13131) [007] dnh1 24573.975617: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
67757           <...>-13387 (-----) [000] dnh5 24573.975619: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
67758 id.nn.benchmark-13159 (13131) [007] d..2 24573.975620: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
67759         sugov:4-560   (  560) [007] d..2 24573.975623: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
67760           <...>-13387 (-----) [000] d..2 24573.975627: sched_switch: prev_comm=id.nn.benchmark prev_pid=13387 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
67761         sugov:0-559   (  559) [000] d..2 24573.975634: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13387 next_prio=110
67762           <...>-13387 (-----) [000] d..2 24573.975689: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
67763           <...>-13387 (-----) [000] d..3 24573.975696: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
67764           <...>-13387 (-----) [000] d..2 24573.975988: sched_switch: prev_comm=id.nn.benchmark prev_pid=13387 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
67765     logd.writer-563   (  555) [000] d..2 24573.976138: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13388 next_prio=110
67766           <...>-13388 (-----) [000] ...1 24573.976164: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
67767           <...>-13388 (-----) [000] ...1 24573.976168: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
67768           <...>-13388 (-----) [000] d.h1 24573.976178: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
67769           <...>-13388 (-----) [000] dnh2 24573.976187: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
67770           <...>-13388 (-----) [000] d..2 24573.976195: sched_switch: prev_comm=id.nn.benchmark prev_pid=13388 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
67771        DispSync-23904 (23896) [000] d..1 24573.976216: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
67772        DispSync-23904 (23896) [000] d..2 24573.976232: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
67773           <...>-13154 (-----) [001] d..2 24573.976241: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
67774        DispSync-23904 (23896) [000] d..2 24573.976247: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13388 next_prio=110
67775  appEventThread-23905 (23896) [001] d..3 24573.976282: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
67776 id.nn.benchmark-13159 (13131) [007] dnh1 24573.976298: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
67777           <...>-13388 (-----) [000] d..2 24573.976300: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
67778 id.nn.benchmark-13159 (13131) [007] d..2 24573.976300: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
67779           <...>-13388 (-----) [000] d..3 24573.976307: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
67780  appEventThread-23905 (23896) [001] d..2 24573.976310: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
67781           <...>-13388 (-----) [000] ...1 24573.976370: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67782           <...>-13388 (-----) [000] ...1 24573.976375: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67783<...>-24151 ( 24151) [007] .... 24573.976499: binder_transaction: transaction=1670171 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
67784<...>-24151 ( 24151) [007] d..4 24573.976505: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
67785<...>-24151 ( 24151) [007] d..5 24573.976514: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
67786<...>-24151 ( 24151) [007] d..3 24573.976535: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
67787<...>-24151 ( 24151) [007] d..4 24573.976540: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
67788<...>-24151 ( 24151) [007] d..2 24573.976608: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
67789<...>-23903 ( 23896) [007] .... 24573.976612: binder_transaction_received: transaction=1670171
67790<...>-23903 ( 23896) [007] d..1 24573.976630: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
67791           <...>-13388 (-----) [000] dnh1 24573.976646: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
67792<...>-23903 ( 23896) [007] d..2 24573.976650: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
67793           <...>-13388 (-----) [000] d..2 24573.976653: sched_switch: prev_comm=id.nn.benchmark prev_pid=13388 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
67794  appEventThread-23905 (23896) [000] d..2 24573.976680: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13388 next_prio=110
67795    RenderThread-24437 (24151) [007] d..1 24573.976706: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
67796    RenderThread-24437 (24151) [007] d..2 24573.976711: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
67797    RenderThread-24437 (24151) [007] .... 24573.976742: binder_transaction: transaction=1670172 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
67798    RenderThread-24437 (24151) [007] d..4 24573.976744: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
67799    RenderThread-24437 (24151) [007] d..5 24573.976748: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
67800    RenderThread-24437 (24151) [007] d..2 24573.976752: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
67801<...>-23903 ( 23896) [007] .... 24573.976754: binder_transaction_received: transaction=1670172
67802<...>-23903 ( 23896) [007] .... 24573.976783: binder_transaction: transaction=1670173 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
67803<...>-23903 ( 23896) [007] d..2 24573.976787: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
67804<...>-23903 ( 23896) [007] d..3 24573.976792: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
67805<...>-23903 ( 23896) [007] d..2 24573.976802: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
67806    RenderThread-24437 (24151) [007] .... 24573.976803: binder_transaction_received: transaction=1670173
67807    RenderThread-24437 (24151) [007] d..2 24573.977409: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
67808<...>-24151 ( 24151) [007] d..2 24573.977446: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
67809 id.nn.benchmark-13159 (13131) [007] d.h1 24573.977506: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
67810 id.nn.benchmark-13159 (13131) [007] d.h2 24573.977512: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
67811 id.nn.benchmark-13159 (13131) [007] dnh2 24573.977514: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
67812 id.nn.benchmark-13159 (13131) [007] d..2 24573.977518: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
67813    RenderThread-24437 (24151) [007] d.s1 24573.977559: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
67814    RenderThread-24437 (24151) [007] d.s2 24573.977578: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
67815    RenderThread-24437 (24151) [007] d.s2 24573.977580: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
67816 id.nn.benchmark-13160 (13131) [004] d.H2 24573.977584: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
67817    RenderThread-24437 (24151) [007] d.s3 24573.977588: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
67818 id.nn.benchmark-13160 (13131) [004] d.H3 24573.977591: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
67819 id.nn.benchmark-13160 (13131) [004] d.H2 24573.977592: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
67820    RenderThread-24437 (24151) [007] d..2 24573.977598: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
67821         sugov:4-560   (  560) [007] d..2 24573.977602: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
67822           <...>-13388 (-----) [000] dnh1 24573.977603: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
67823     rcu_preempt-7     (    7) [007] d..2 24573.977605: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=007
67824           <...>-13388 (-----) [000] d..2 24573.977609: sched_switch: prev_comm=id.nn.benchmark prev_pid=13388 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
67825     rcu_preempt-7     (    7) [007] d..3 24573.977613: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=007
67826         sugov:0-559   (  559) [000] d..2 24573.977617: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13388 next_prio=110
67827     rcu_preempt-7     (    7) [007] d..2 24573.977617: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
67828           <...>-13388 (-----) [000] d.h4 24573.977637: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
67829           <...>-13388 (-----) [000] dnh5 24573.977646: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
67830           <...>-13388 (-----) [000] d..2 24573.977660: sched_switch: prev_comm=id.nn.benchmark prev_pid=13388 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
67831 kgsl_worker_thr-246   (  246) [000] d..2 24573.977702: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
67832  kworker/u16:15-18488 (18488) [007] d.h3 24573.977734: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
67833 kgsl_worker_thr-246   (  246) [000] d..2 24573.977736: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13388 next_prio=110
67834  kworker/u16:15-18488 (18488) [007] d..2 24573.977756: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
67835         rcuop/2-29    (   29) [007] d..2 24573.977758: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
67836         rcuop/2-29    (   29) [007] d..2 24573.977767: 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
67837  kworker/u16:10-23868 (23868) [007] d..2 24573.977771: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
67838           <...>-13388 (-----) [000] dnh1 24573.977772: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
67839           <...>-13388 (-----) [000] d..2 24573.977777: sched_switch: prev_comm=id.nn.benchmark prev_pid=13388 prev_prio=110 prev_state=R ==> next_comm=rcuop/3 next_pid=37 next_prio=120
67840         rcuop/3-37    (   37) [000] d..2 24573.977804: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13388 next_prio=110
67841    RenderThread-24437 (24151) [007] .... 24573.977826: binder_transaction: transaction=1670174 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
67842    RenderThread-24437 (24151) [007] d..4 24573.977830: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
67843    RenderThread-24437 (24151) [007] d..5 24573.977836: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
67844    RenderThread-24437 (24151) [007] d..2 24573.977840: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
67845<...>-23903 ( 23896) [007] .... 24573.977842: binder_transaction_received: transaction=1670174
67846<...>-23903 ( 23896) [007] .... 24573.977903: binder_transaction: transaction=1670175 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
67847<...>-23903 ( 23896) [007] d..2 24573.977905: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
67848<...>-23903 ( 23896) [007] d..3 24573.977910: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
67849<...>-23903 ( 23896) [007] d..2 24573.977919: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
67850    RenderThread-24437 (24151) [007] .... 24573.977920: binder_transaction_received: transaction=1670175
67851    RenderThread-24437 (24151) [007] d..2 24573.977945: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
67852           <...>-13388 (-----) [000] ...1 24573.978605: tracing_mark_write: E|13131
67853           <...>-13388 (-----) [000] ...1 24573.978610: tracing_mark_write: E|13131
67854           <...>-13388 (-----) [000] ...1 24573.978624: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67855           <...>-13388 (-----) [000] ...1 24573.978628: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67856           <...>-13388 (-----) [000] ...1 24573.979325: tracing_mark_write: E|13131
67857           <...>-13388 (-----) [000] ...1 24573.979329: tracing_mark_write: E|13131
67858           <...>-13388 (-----) [000] ...1 24573.979343: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67859           <...>-13388 (-----) [000] ...1 24573.979348: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67860           <...>-13388 (-----) [000] ...1 24573.979681: tracing_mark_write: E|13131
67861           <...>-13388 (-----) [000] ...1 24573.979685: tracing_mark_write: E|13131
67862           <...>-13388 (-----) [000] ...1 24573.979695: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67863           <...>-13388 (-----) [000] ...1 24573.979699: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67864           <...>-13388 (-----) [000] ...1 24573.979933: tracing_mark_write: E|13131
67865           <...>-13388 (-----) [000] ...1 24573.979937: tracing_mark_write: E|13131
67866           <...>-13388 (-----) [000] ...1 24573.979947: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67867           <...>-13388 (-----) [000] ...1 24573.979951: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67868           <...>-13388 (-----) [000] d.h1 24573.980189: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
67869           <...>-13388 (-----) [000] dnh2 24573.980199: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
67870           <...>-13388 (-----) [000] d..2 24573.980207: sched_switch: prev_comm=id.nn.benchmark prev_pid=13388 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
67871        DispSync-23904 (23896) [000] d..1 24573.980221: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
67872        DispSync-23904 (23896) [000] d..2 24573.980231: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
67873           <...>-13154 (-----) [001] d..2 24573.980241: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
67874        DispSync-23904 (23896) [000] d..2 24573.980243: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13388 next_prio=110
67875   sfEventThread-23906 (23896) [001] d..3 24573.980270: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
67876   sfEventThread-23906 (23896) [001] d..4 24573.980290: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
67877           <...>-13388 (-----) [000] d..2 24573.980297: sched_switch: prev_comm=id.nn.benchmark prev_pid=13388 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
67878   sfEventThread-23906 (23896) [001] d..2 24573.980303: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
67879  surfaceflinger-23896 (23896) [000] d..1 24573.980552: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
67880  surfaceflinger-23896 (23896) [000] d..2 24573.980563: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
67881           <...>-13154 (-----) [001] d..2 24573.980571: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
67882   sfEventThread-23906 (23896) [001] d..2 24573.980587: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
67883  surfaceflinger-23896 (23896) [000] ...1 24573.980687: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
67884  surfaceflinger-23896 (23896) [000] ...1 24573.980691: tracing_mark_write: E|23896
67885  surfaceflinger-23896 (23896) [000] .... 24573.980737: binder_transaction: transaction=1670176 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
67886  surfaceflinger-23896 (23896) [000] ...2 24573.980757: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
67887  surfaceflinger-23896 (23896) [000] d..4 24573.980764: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
67888 id.nn.benchmark-13159 (13131) [007] dnh1 24573.980781: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
67889 id.nn.benchmark-13159 (13131) [007] d..2 24573.980785: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
67890  surfaceflinger-23896 (23896) [000] d..2 24573.980786: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13388 next_prio=110
67891  HwBinder:598_3-633   (  598) [007] .... 24573.980790: binder_transaction_received: transaction=1670176
67892  HwBinder:598_3-633   (  598) [007] ...1 24573.980815: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
67893  HwBinder:598_3-633   (  598) [007] ...1 24573.980868: tracing_mark_write: B|598|HWCSession::PresentDisplay::
67894  HwBinder:598_3-633   (  598) [007] d.s2 24573.980892: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
67895           <...>-13388 (-----) [000] dnh1 24573.980913: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
67896  HwBinder:598_3-633   (  598) [007] d.H3 24573.980934: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
67897           <...>-13388 (-----) [000] d..2 24573.980936: sched_switch: prev_comm=id.nn.benchmark prev_pid=13388 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
67898  HwBinder:598_3-633   (  598) [007] d.H4 24573.980943: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
67899  HwBinder:598_3-633   (  598) [007] d.H3 24573.980944: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
67900 id.nn.benchmark-13160 (13131) [004] d..2 24573.980949: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
67901  kworker/u16:10-23868 (23868) [000] dnh3 24573.980954: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
67902         sugov:4-560   (  560) [004] d..2 24573.980956: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
67903  kworker/u16:10-23868 (23868) [000] d..2 24573.980959: 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
67904         sugov:0-559   (  559) [000] d..2 24573.980966: 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
67905  HwBinder:598_3-633   (  598) [007] ...1 24573.981005: tracing_mark_write: B|598|HWDeviceDRM::Commit::
67906  HwBinder:598_3-633   (  598) [007] ...1 24573.981009: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
67907  kworker/u16:10-23868 (23868) [000] d..2 24573.981211: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13388 next_prio=110
67908  HwBinder:598_3-633   (  598) [007] d..2 24573.981227: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
67909           <...>-13388 (-----) [000] dnh1 24573.981256: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
67910           <...>-13388 (-----) [000] d..2 24573.981262: sched_switch: prev_comm=id.nn.benchmark prev_pid=13388 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
67911  HwBinder:598_3-633   (  598) [007] ...1 24573.981283: tracing_mark_write: E|598
67912  HwBinder:598_3-633   (  598) [007] ...1 24573.981284: tracing_mark_write: E|598
67913  HwBinder:598_3-633   (  598) [007] ...1 24573.981307: tracing_mark_write: E|598
67914  HwBinder:598_3-633   (  598) [007] ...1 24573.981327: tracing_mark_write: E|598
67915  HwBinder:598_3-633   (  598) [007] .... 24573.981332: binder_transaction: transaction=1670177 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
67916  HwBinder:598_3-633   (  598) [007] d..2 24573.981338: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
67917  HwBinder:598_3-633   (  598) [007] .... 24573.981347: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
67918           <...>-13154 (-----) [001] dnh1 24573.981352: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
67919           <...>-13154 (-----) [001] d..2 24573.981357: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
67920  surfaceflinger-23896 (23896) [001] .... 24573.981362: binder_transaction_received: transaction=1670177
67921  HwBinder:598_3-633   (  598) [007] d..2 24573.981368: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
67922  surfaceflinger-23896 (23896) [001] d..2 24573.981603: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
67923 crtc_commit:111-253   (  253) [000] d..2 24573.981871: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13388 next_prio=110
67924           <...>-13388 (-----) [000] ...1 24573.981877: tracing_mark_write: E|13131
67925           <...>-13388 (-----) [000] ...1 24573.981882: tracing_mark_write: E|13131
67926           <...>-13388 (-----) [000] ...1 24573.981895: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67927           <...>-13388 (-----) [000] ...1 24573.981900: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67928           <...>-13388 (-----) [000] ...1 24573.982293: tracing_mark_write: E|13131
67929           <...>-13388 (-----) [000] ...1 24573.982297: tracing_mark_write: E|13131
67930           <...>-13388 (-----) [000] ...1 24573.982318: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67931           <...>-13388 (-----) [000] ...1 24573.982322: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67932           <...>-13388 (-----) [000] ...1 24573.982517: tracing_mark_write: E|13131
67933           <...>-13388 (-----) [000] ...1 24573.982520: tracing_mark_write: E|13131
67934           <...>-13388 (-----) [000] ...1 24573.982535: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67935           <...>-13388 (-----) [000] ...1 24573.982540: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67936           <...>-13388 (-----) [000] ...1 24573.982612: tracing_mark_write: E|13131
67937           <...>-13388 (-----) [000] ...1 24573.982615: tracing_mark_write: E|13131
67938           <...>-13388 (-----) [000] ...1 24573.982627: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
67939           <...>-13388 (-----) [000] ...1 24573.982631: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
67940           <...>-13388 (-----) [000] ...1 24573.982933: tracing_mark_write: E|13131
67941           <...>-13388 (-----) [000] ...1 24573.982937: tracing_mark_write: E|13131
67942           <...>-13388 (-----) [000] ...1 24573.982946: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
67943           <...>-13388 (-----) [000] ...1 24573.982950: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
67944           <...>-13388 (-----) [000] ...1 24573.983004: tracing_mark_write: E|13131
67945           <...>-13388 (-----) [000] ...1 24573.983007: tracing_mark_write: E|13131
67946           <...>-13388 (-----) [000] ...1 24573.983015: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
67947           <...>-13388 (-----) [000] ...1 24573.983019: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
67948           <...>-13388 (-----) [000] ...1 24573.983037: tracing_mark_write: E|13131
67949           <...>-13388 (-----) [000] ...1 24573.983040: tracing_mark_write: E|13131
67950           <...>-13388 (-----) [000] ...1 24573.983050: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
67951           <...>-13388 (-----) [000] ...1 24573.983053: tracing_mark_write: E|13131
67952           <...>-13388 (-----) [000] ...1 24573.983063: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
67953           <...>-13388 (-----) [000] ...1 24573.983068: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
67954           <...>-13388 (-----) [000] ...1 24573.983920: tracing_mark_write: E|13131
67955           <...>-13388 (-----) [000] ...1 24573.983923: tracing_mark_write: E|13131
67956           <...>-13388 (-----) [000] ...1 24573.983931: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
67957           <...>-13388 (-----) [000] ...1 24573.983935: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
67958           <...>-13388 (-----) [000] ...1 24573.984018: tracing_mark_write: E|13131
67959           <...>-13388 (-----) [000] ...1 24573.984021: tracing_mark_write: E|13131
67960           <...>-13388 (-----) [000] ...1 24573.984087: tracing_mark_write: E|13131
67961           <...>-13388 (-----) [000] d..1 24573.984093: sched_waking: comm=id.nn.benchmark pid=13387 prio=110 target_cpu=000
67962           <...>-13388 (-----) [000] dn.2 24573.984108: sched_wakeup: comm=id.nn.benchmark pid=13387 prio=110 target_cpu=000
67963           <...>-13388 (-----) [000] d..2 24573.984113: sched_switch: prev_comm=id.nn.benchmark prev_pid=13388 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13387 next_prio=110
67964           <...>-13387 (-----) [000] d..2 24573.984128: sched_switch: prev_comm=id.nn.benchmark prev_pid=13387 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13388 next_prio=110
67965           <...>-13388 (-----) [000] ...1 24573.984143: tracing_mark_write: E|13131
67966 id.nn.benchmark-13159 (13131) [007] d.s1 24573.984225: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
67967 id.nn.benchmark-13159 (13131) [007] d.H3 24573.984261: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
67968           <...>-13388 (-----) [000] dnh1 24573.984262: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
67969 id.nn.benchmark-13159 (13131) [007] dnH4 24573.984267: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
67970 id.nn.benchmark-13159 (13131) [007] dnH3 24573.984268: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
67971           <...>-13388 (-----) [000] d..2 24573.984268: sched_switch: prev_comm=id.nn.benchmark prev_pid=13388 prev_prio=110 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
67972 id.nn.benchmark-13159 (13131) [007] d..2 24573.984276: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
67973     rcu_preempt-7     (    7) [000] dnh1 24573.984279: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
67974         sugov:4-560   (  560) [007] d..2 24573.984280: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
67975     rcu_preempt-7     (    7) [000] d..2 24573.984284: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
67976         sugov:0-559   (  559) [000] d..2 24573.984291: 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
67977     rcu_preempt-7     (    7) [000] d..2 24573.984302: 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
67978     logd.writer-563   (  555) [000] d..2 24573.984460: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13388 next_prio=110
67979           <...>-13388 (-----) [000] d..1 24573.984490: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
67980           <...>-13388 (-----) [000] d..2 24573.984498: sched_blocked_reason: pid=563 iowait=0 caller=proc_pid_cmdline_read+0x63c/0x668
67981           <...>-13388 (-----) [000] d..2 24573.984501: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
67982           <...>-13388 (-----) [000] d..2 24573.984598: sched_switch: prev_comm=id.nn.benchmark prev_pid=13388 prev_prio=110 prev_state=D|K ==> next_comm=logd.writer next_pid=563 next_prio=130
67983     logd.writer-563   (  555) [000] d..1 24573.984601: sched_waking: comm=id.nn.benchmark pid=13388 prio=110 target_cpu=000
67984     logd.writer-563   (  555) [000] d..2 24573.984608: sched_blocked_reason: pid=13388 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
67985     logd.writer-563   (  555) [000] dn.2 24573.984611: sched_wakeup: comm=id.nn.benchmark pid=13388 prio=110 target_cpu=000
67986     logd.writer-563   (  555) [000] d..2 24573.984615: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13388 next_prio=110
67987           <...>-13388 (-----) [000] d..1 24573.984647: sched_waking: comm=id.nn.benchmark pid=13387 prio=110 target_cpu=000
67988           <...>-13388 (-----) [000] dn.2 24573.984655: sched_wakeup: comm=id.nn.benchmark pid=13387 prio=110 target_cpu=000
67989           <...>-13388 (-----) [000] d..2 24573.984659: sched_switch: prev_comm=id.nn.benchmark prev_pid=13388 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13387 next_prio=110
67990           <...>-13387 (-----) [000] d..1 24573.984763: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
67991 id.nn.benchmark-13159 (13131) [007] dnh1 24573.984780: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
67992 id.nn.benchmark-13159 (13131) [007] d..2 24573.984783: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
67993           <...>-13131 (-----) [007] d..2 24573.984791: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
67994           <...>-13387 (-----) [000] d..1 24573.984832: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
67995           <...>-13387 (-----) [000] dn.2 24573.984848: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
67996           <...>-13387 (-----) [000] dnh3 24573.984878: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
67997           <...>-13387 (-----) [000] dnh3 24573.984886: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
67998 id.nn.benchmark-13159 (13131) [007] dnh1 24573.984888: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
67999 id.nn.benchmark-13159 (13131) [007] d..2 24573.984891: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
68000           <...>-13387 (-----) [000] dnh4 24573.984891: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
68001         sugov:4-560   (  560) [007] d..2 24573.984894: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
68002           <...>-13387 (-----) [000] d..2 24573.984896: sched_switch: prev_comm=id.nn.benchmark prev_pid=13387 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
68003         sugov:0-559   (  559) [000] d..2 24573.984904: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
68004           <...>-13131 (-----) [000] ...1 24573.984924: tracing_mark_write: E|13131
68005           <...>-13131 (-----) [000] ...1 24573.984930: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
68006           <...>-13131 (-----) [000] ...1 24573.984935: tracing_mark_write: E|13131
68007           <...>-13131 (-----) [000] ...1 24573.984939: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
68008           <...>-13131 (-----) [000] ...1 24573.984944: tracing_mark_write: E|13131
68009           <...>-13131 (-----) [000] ...1 24573.985255: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
68010           <...>-13131 (-----) [000] ...1 24573.985292: tracing_mark_write: E|13131
68011           <...>-13131 (-----) [000] ...1 24573.985297: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
68012           <...>-13131 (-----) [000] ...1 24573.985302: tracing_mark_write: E|13131
68013           <...>-13131 (-----) [000] ...1 24573.985307: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
68014           <...>-13131 (-----) [000] ...1 24573.985311: tracing_mark_write: E|13131
68015           <...>-13131 (-----) [000] ...1 24573.985316: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
68016           <...>-13131 (-----) [000] ...1 24573.985427: tracing_mark_write: E|13131
68017           <...>-13131 (-----) [000] ...1 24573.985431: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
68018           <...>-13131 (-----) [000] d..2 24573.985440: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13387 next_prio=110
68019           <...>-13387 (-----) [000] d..2 24573.985502: sched_switch: prev_comm=id.nn.benchmark prev_pid=13387 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13388 next_prio=110
68020           <...>-13388 (-----) [000] d..2 24573.985526: sched_switch: prev_comm=id.nn.benchmark prev_pid=13388 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
68021     logd.writer-563   (  555) [000] d..2 24573.985646: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13389 next_prio=110
68022           <...>-13389 (-----) [000] d..2 24573.985697: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
68023           <...>-13389 (-----) [000] d..3 24573.985706: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
68024           <...>-13389 (-----) [000] d..2 24573.985993: sched_switch: prev_comm=id.nn.benchmark prev_pid=13389 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13390 next_prio=110
68025           <...>-13390 (-----) [000] ...1 24573.986015: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
68026           <...>-13390 (-----) [000] ...1 24573.986021: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
68027           <...>-13390 (-----) [000] ...1 24573.986138: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68028           <...>-13390 (-----) [000] ...1 24573.986143: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68029 id.nn.benchmark-13159 (13131) [007] d.s2 24573.987557: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
68030           <...>-13390 (-----) [000] d.s2 24573.987564: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
68031 id.nn.benchmark-13159 (13131) [007] dns3 24573.987568: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
68032 id.nn.benchmark-13159 (13131) [007] dnH3 24573.987587: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
68033 id.nn.benchmark-13159 (13131) [007] dnH4 24573.987591: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
68034 id.nn.benchmark-13159 (13131) [007] dnH3 24573.987591: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
68035 id.nn.benchmark-13160 (13131) [004] dnh1 24573.987599: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
68036 id.nn.benchmark-13159 (13131) [007] d..2 24573.987600: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
68037 id.nn.benchmark-13160 (13131) [004] d..2 24573.987622: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
68038         sugov:4-560   (  560) [007] d..2 24573.987623: 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
68039     rcu_preempt-7     (    7) [004] d..2 24573.987624: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
68040           <...>-13390 (-----) [000] dnH2 24573.987625: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
68041     rcu_preempt-7     (    7) [004] d..3 24573.987641: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=006
68042           <...>-13390 (-----) [000] d..2 24573.987643: sched_switch: prev_comm=id.nn.benchmark prev_pid=13390 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
68043 id.nn.benchmark-13155 (13131) [006] d..2 24573.987659: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
68044     rcu_preempt-7     (    7) [004] d..2 24573.987660: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
68045         rcuop/0-10    (   10) [006] d..2 24573.987664: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
68046         sugov:0-559   (  559) [000] d..2 24573.987666: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
68047         rcuop/0-10    (   10) [006] d..3 24573.987673: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
68048 id.nn.benchmark-13160 (13131) [004] d..2 24573.987679: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
68049         rcuop/1-21    (   21) [004] d..2 24573.987684: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
68050         rcuop/0-10    (   10) [006] d..2 24573.987689: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
68051         rcuop/0-10    (   10) [006] d..3 24573.987695: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
68052         rcuop/0-10    (   10) [006] d..2 24573.987699: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
68053 id.nn.benchmark-13160 (13131) [004] d..2 24573.987701: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
68054     rcu_preempt-7     (    7) [004] d..2 24573.987705: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
68055  kworker/u16:10-23868 (23868) [007] d..2 24573.987728: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
68056     logd.writer-563   (  555) [000] d..2 24573.987892: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13390 next_prio=110
68057           <...>-13390 (-----) [000] d.h4 24573.988240: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
68058           <...>-13390 (-----) [000] dnh5 24573.988251: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
68059           <...>-13390 (-----) [000] dnh4 24573.988255: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
68060           <...>-13390 (-----) [000] dnh5 24573.988268: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
68061           <...>-13154 (-----) [001] d..2 24573.988277: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
68062           <...>-13390 (-----) [000] d..2 24573.988282: sched_switch: prev_comm=id.nn.benchmark prev_pid=13390 prev_prio=110 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
68063           <...>-13157 (-----) [005] d..2 24573.988295: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
68064  crtc_event:111-254   (  254) [000] d..2 24573.988297: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13390 next_prio=110
68065           <...>-13390 (-----) [000] d..1 24573.988301: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
68066           <...>-13154 (-----) [005] d.h4 24573.988318: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
68067           <...>-13154 (-----) [005] dnh5 24573.988324: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
68068           <...>-13154 (-----) [005] dnh4 24573.988325: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
68069           <...>-13154 (-----) [005] dnh3 24573.988332: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
68070           <...>-13154 (-----) [005] d..2 24573.988334: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
68071           <...>-13390 (-----) [000] dnh1 24573.988335: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
68072         sugov:4-560   (  560) [005] d..2 24573.988337: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
68073           <...>-13390 (-----) [000] d..2 24573.988340: sched_switch: prev_comm=id.nn.benchmark prev_pid=13390 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
68074         sugov:0-559   (  559) [000] d..2 24573.988346: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13390 next_prio=110
68075 crtc_commit:111-253   (  253) [001] d..2 24573.988415: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
68076           <...>-13390 (-----) [000] ...1 24573.988667: tracing_mark_write: E|13131
68077           <...>-13390 (-----) [000] ...1 24573.988671: tracing_mark_write: E|13131
68078           <...>-13390 (-----) [000] ...1 24573.988683: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68079           <...>-13390 (-----) [000] ...1 24573.988688: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68080           <...>-13390 (-----) [000] ...1 24573.989380: tracing_mark_write: E|13131
68081           <...>-13390 (-----) [000] ...1 24573.989384: tracing_mark_write: E|13131
68082           <...>-13390 (-----) [000] ...1 24573.989398: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68083           <...>-13390 (-----) [000] ...1 24573.989402: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68084           <...>-13390 (-----) [000] ...1 24573.989731: tracing_mark_write: E|13131
68085           <...>-13390 (-----) [000] ...1 24573.989735: tracing_mark_write: E|13131
68086           <...>-13390 (-----) [000] ...1 24573.989746: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68087           <...>-13390 (-----) [000] ...1 24573.989750: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68088           <...>-13390 (-----) [000] ...1 24573.989983: tracing_mark_write: E|13131
68089           <...>-13390 (-----) [000] ...1 24573.989987: tracing_mark_write: E|13131
68090           <...>-13390 (-----) [000] ...1 24573.989997: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68091           <...>-13390 (-----) [000] ...1 24573.990002: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68092           <...>-13390 (-----) [000] ...1 24573.990395: tracing_mark_write: E|13131
68093           <...>-13390 (-----) [000] ...1 24573.990399: tracing_mark_write: E|13131
68094           <...>-13390 (-----) [000] ...1 24573.990410: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68095           <...>-13390 (-----) [000] ...1 24573.990414: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68096           <...>-13390 (-----) [000] d.h4 24573.990592: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
68097           <...>-13390 (-----) [000] dnh5 24573.990605: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
68098           <...>-13390 (-----) [000] d..2 24573.990618: sched_switch: prev_comm=id.nn.benchmark prev_pid=13390 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
68099 crtc_commit:111-253   (  253) [000] d..2 24573.990666: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13390 next_prio=110
68100           <...>-13390 (-----) [000] d.h4 24573.990889: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
68101 id.nn.benchmark-13159 (13131) [007] d.s2 24573.990891: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
68102 id.nn.benchmark-13156 (13131) [002] d.h2 24573.990896: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
68103           <...>-13390 (-----) [000] dnh5 24573.990898: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
68104 id.nn.benchmark-13159 (13131) [007] dns3 24573.990904: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
68105 id.nn.benchmark-13156 (13131) [002] dnh3 24573.990905: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
68106 id.nn.benchmark-13159 (13131) [007] d..2 24573.990908: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
68107 id.nn.benchmark-13156 (13131) [002] d..2 24573.990915: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
68108           <...>-13390 (-----) [000] d..2 24573.990930: sched_switch: prev_comm=id.nn.benchmark prev_pid=13390 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
68109     migration/2-25    (   25) [002] d.h3 24573.990963: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
68110     migration/2-25    (   25) [002] d.h3 24573.990971: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
68111  crtc_event:111-254   (  254) [000] d..2 24573.990971: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13390 next_prio=110
68112           <...>-13154 (-----) [005] dnh1 24573.990973: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
68113           <...>-13154 (-----) [005] d..2 24573.990976: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
68114         sugov:4-560   (  560) [005] d..2 24573.990980: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
68115     migration/2-25    (   25) [002] d.h4 24573.990982: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
68116     migration/2-25    (   25) [002] d..2 24573.990993: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
68117         sugov:0-559   (  559) [002] d..2 24573.991024: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
68118           <...>-13390 (-----) [000] ...1 24573.991092: tracing_mark_write: E|13131
68119           <...>-13390 (-----) [000] ...1 24573.991096: tracing_mark_write: E|13131
68120           <...>-13390 (-----) [000] ...1 24573.991114: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68121           <...>-13390 (-----) [000] ...1 24573.991118: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68122  kworker/u16:10-23868 (23868) [007] d..2 24573.991177: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
68123           <...>-13390 (-----) [000] ...1 24573.991309: tracing_mark_write: E|13131
68124           <...>-13390 (-----) [000] ...1 24573.991313: tracing_mark_write: E|13131
68125           <...>-13390 (-----) [000] ...1 24573.991325: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68126           <...>-13390 (-----) [000] ...1 24573.991329: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68127           <...>-13390 (-----) [000] ...1 24573.991399: tracing_mark_write: E|13131
68128           <...>-13390 (-----) [000] ...1 24573.991402: tracing_mark_write: E|13131
68129           <...>-13390 (-----) [000] ...1 24573.991412: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
68130           <...>-13390 (-----) [000] ...1 24573.991417: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
68131           <...>-13390 (-----) [000] ...1 24573.991670: tracing_mark_write: E|13131
68132           <...>-13390 (-----) [000] ...1 24573.991673: tracing_mark_write: E|13131
68133           <...>-13390 (-----) [000] ...1 24573.991682: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
68134           <...>-13390 (-----) [000] ...1 24573.991686: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
68135           <...>-13390 (-----) [000] ...1 24573.991730: tracing_mark_write: E|13131
68136           <...>-13390 (-----) [000] ...1 24573.991733: tracing_mark_write: E|13131
68137           <...>-13390 (-----) [000] ...1 24573.991742: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
68138           <...>-13390 (-----) [000] ...1 24573.991745: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
68139           <...>-13390 (-----) [000] ...1 24573.991759: tracing_mark_write: E|13131
68140           <...>-13390 (-----) [000] ...1 24573.991762: tracing_mark_write: E|13131
68141           <...>-13390 (-----) [000] ...1 24573.991771: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
68142           <...>-13390 (-----) [000] ...1 24573.991774: tracing_mark_write: E|13131
68143           <...>-13390 (-----) [000] ...1 24573.991782: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
68144           <...>-13390 (-----) [000] ...1 24573.991786: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
68145           <...>-13390 (-----) [000] ...1 24573.992639: tracing_mark_write: E|13131
68146           <...>-13390 (-----) [000] ...1 24573.992641: tracing_mark_write: E|13131
68147           <...>-13390 (-----) [000] d.h1 24573.992650: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
68148           <...>-13390 (-----) [000] dnh2 24573.992659: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
68149           <...>-13390 (-----) [000] d..2 24573.992667: sched_switch: prev_comm=id.nn.benchmark prev_pid=13390 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
68150        DispSync-23904 (23896) [000] d..1 24573.992688: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
68151        DispSync-23904 (23896) [000] d..2 24573.992705: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
68152           <...>-13157 (-----) [001] d..2 24573.992713: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
68153        DispSync-23904 (23896) [000] d..2 24573.992720: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13390 next_prio=110
68154           <...>-13390 (-----) [000] ...1 24573.992730: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68155           <...>-13390 (-----) [000] ...1 24573.992735: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68156  appEventThread-23905 (23896) [001] d..3 24573.992757: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
68157  appEventThread-23905 (23896) [001] d..4 24573.992781: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
68158           <...>-13390 (-----) [000] d..2 24573.992790: sched_switch: prev_comm=id.nn.benchmark prev_pid=13390 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
68159  appEventThread-23905 (23896) [001] d.h3 24573.992818: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
68160  appEventThread-23905 (23896) [001] d.h3 24573.992826: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
68161 id.nn.benchmark-13156 (13131) [005] dnh1 24573.992829: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
68162 id.nn.benchmark-13156 (13131) [005] d..2 24573.992832: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
68163         sugov:4-560   (  560) [005] d..2 24573.992835: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
68164  appEventThread-23905 (23896) [001] d.h4 24573.992838: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
68165<...>-24151 ( 24151) [000] d..2 24573.992849: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
68166  appEventThread-23905 (23896) [001] d..2 24573.992853: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
68167         sugov:0-559   (  559) [000] d..2 24573.992857: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
68168<...>-24151 ( 24151) [000] .... 24573.993103: binder_transaction: transaction=1670178 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
68169<...>-24151 ( 24151) [000] d..4 24573.993111: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
68170 id.nn.benchmark-13156 (13131) [005] dnh1 24573.993134: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
68171 id.nn.benchmark-13156 (13131) [005] d..2 24573.993136: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
68172<...>-23903 ( 23896) [005] .... 24573.993140: binder_transaction_received: transaction=1670178
68173<...>-23903 ( 23896) [005] d..1 24573.993157: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
68174<...>-24151 ( 24151) [000] d..3 24573.993159: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
68175<...>-23903 ( 23896) [005] d..2 24573.993177: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
68176<...>-24151 ( 24151) [000] d..4 24573.993178: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
68177<...>-24151 ( 24151) [000] dnh2 24573.993184: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
68178<...>-24151 ( 24151) [000] d..2 24573.993210: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
68179  appEventThread-23905 (23896) [000] d..2 24573.993237: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
68180    RenderThread-24437 (24151) [000] d..2 24573.993264: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
68181<...>-24151 ( 24151) [000] d..3 24573.993361: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
68182<...>-24151 ( 24151) [000] d..4 24573.993371: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
68183<...>-24151 ( 24151) [000] d..2 24573.993380: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
68184    RenderThread-24437 (24151) [000] d..1 24573.993482: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
68185    RenderThread-24437 (24151) [000] d..2 24573.993491: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
68186    RenderThread-24437 (24151) [000] .... 24573.993539: binder_transaction: transaction=1670179 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
68187    RenderThread-24437 (24151) [000] d..4 24573.993544: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
68188 id.nn.benchmark-13156 (13131) [005] dnh1 24573.993557: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
68189 id.nn.benchmark-13156 (13131) [005] d..2 24573.993560: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
68190    RenderThread-24437 (24151) [000] d..2 24573.993561: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
68191<...>-23903 ( 23896) [005] .... 24573.993561: binder_transaction_received: transaction=1670179
68192<...>-23903 ( 23896) [005] .... 24573.993586: binder_transaction: transaction=1670180 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
68193<...>-23903 ( 23896) [005] d..2 24573.993591: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
68194<...>-24151 ( 24151) [000] d..2 24573.993601: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13390 next_prio=110
68195           <...>-13390 (-----) [000] dnh3 24573.993609: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
68196<...>-23903 ( 23896) [005] d..2 24573.993611: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
68197           <...>-13390 (-----) [000] d..2 24573.993615: sched_switch: prev_comm=id.nn.benchmark prev_pid=13390 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
68198    RenderThread-24437 (24151) [000] .... 24573.993618: binder_transaction_received: transaction=1670180
68199 id.nn.benchmark-13160 (13131) [004] d.s1 24573.994220: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
68200           <...>-13154 (-----) [002] d.h2 24573.994228: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
68201           <...>-13154 (-----) [002] dnh3 24573.994233: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
68202 id.nn.benchmark-13160 (13131) [004] d.H3 24573.994254: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
68203    RenderThread-24437 (24151) [000] d.h1 24573.994255: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
68204           <...>-13154 (-----) [002] d..2 24573.994258: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
68205 id.nn.benchmark-13160 (13131) [004] d.H4 24573.994259: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
68206 id.nn.benchmark-13160 (13131) [004] d.H3 24573.994260: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
68207    RenderThread-24437 (24151) [000] dnh1 24573.994270: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
68208 id.nn.benchmark-13156 (13131) [005] d..2 24573.994273: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
68209    RenderThread-24437 (24151) [000] d..2 24573.994276: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
68210         sugov:4-560   (  560) [005] d..2 24573.994278: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
68211         sugov:0-559   (  559) [000] d..2 24573.994302: 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
68212     rcu_preempt-7     (    7) [000] d..2 24573.994307: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=006
68213     migration/2-25    (   25) [002] d..2 24573.994320: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
68214 id.nn.benchmark-13155 (13131) [006] dnh1 24573.994341: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=006
68215 id.nn.benchmark-13155 (13131) [006] d..2 24573.994344: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
68216         rcuop/0-10    (   10) [006] d..2 24573.994345: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
68217     rcu_preempt-7     (    7) [000] d..2 24573.994346: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
68218         rcuop/0-10    (   10) [006] d..3 24573.994356: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
68219 id.nn.benchmark-13160 (13131) [004] d..2 24573.994362: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
68220         rcuop/1-21    (   21) [004] d..2 24573.994367: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
68221         rcuop/0-10    (   10) [006] d..2 24573.994373: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
68222         rcuop/0-10    (   10) [006] d..2 24573.994381: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
68223    RenderThread-24437 (24151) [000] d.h1 24573.994385: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
68224    RenderThread-24437 (24151) [000] d..2 24573.994748: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
68225     rcu_preempt-7     (    7) [000] d..2 24573.994757: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13390 next_prio=110
68226           <...>-13390 (-----) [000] ...1 24573.994805: tracing_mark_write: E|13131
68227           <...>-13390 (-----) [000] ...1 24573.994809: tracing_mark_write: E|13131
68228           <...>-13390 (-----) [000] d.h1 24573.994846: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
68229           <...>-13390 (-----) [000] d.h2 24573.994856: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
68230           <...>-13390 (-----) [000] dnh2 24573.994859: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
68231           <...>-13390 (-----) [000] d..2 24573.994866: sched_switch: prev_comm=id.nn.benchmark prev_pid=13390 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=24437 next_prio=120
68232    RenderThread-24437 (24151) [000] d.h2 24573.994968: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
68233    RenderThread-24437 (24151) [000] dnh3 24573.994979: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
68234    RenderThread-24437 (24151) [000] d..2 24573.994990: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
68235 kgsl_worker_thr-246   (  246) [000] d..2 24573.995025: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
68236 id.nn.benchmark-13159 (13131) [007] dnh1 24573.995049: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
68237 id.nn.benchmark-13159 (13131) [007] d..2 24573.995052: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
68238 kgsl_worker_thr-246   (  246) [000] d..2 24573.995055: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
68239  kworker/u16:10-23868 (23868) [007] d..2 24573.995069: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
68240    RenderThread-24437 (24151) [000] .... 24573.995113: binder_transaction: transaction=1670181 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
68241    RenderThread-24437 (24151) [000] d..4 24573.995121: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
68242 id.nn.benchmark-13156 (13131) [005] dnh1 24573.995136: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
68243 id.nn.benchmark-13156 (13131) [005] d..2 24573.995138: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
68244<...>-23903 ( 23896) [005] .... 24573.995139: binder_transaction_received: transaction=1670181
68245    RenderThread-24437 (24151) [000] d..2 24573.995140: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13390 next_prio=110
68246           <...>-13390 (-----) [000] d..2 24573.995155: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
68247           <...>-13390 (-----) [000] d..3 24573.995162: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
68248           <...>-13390 (-----) [000] ...1 24573.995185: tracing_mark_write: E|13131
68249<...>-23903 ( 23896) [005] .... 24573.995190: binder_transaction: transaction=1670182 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
68250           <...>-13390 (-----) [000] d..1 24573.995190: sched_waking: comm=id.nn.benchmark pid=13389 prio=110 target_cpu=000
68251<...>-23903 ( 23896) [005] d..2 24573.995192: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
68252<...>-23903 ( 23896) [005] d.h1 24573.995214: sched_wakeup: comm=id.nn.benchmark pid=13389 prio=110 target_cpu=005
68253           <...>-13390 (-----) [000] dnh2 24573.995215: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
68254<...>-23903 ( 23896) [005] d..2 24573.995219: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13389 next_prio=110
68255           <...>-13389 (-----) [005] d..2 24573.995246: sched_switch: prev_comm=id.nn.benchmark prev_pid=13389 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
68256           <...>-13390 (-----) [000] dnh3 24573.995246: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
68257           <...>-13390 (-----) [000] dnh3 24573.995254: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
68258 id.nn.benchmark-13156 (13131) [005] dnh1 24573.995258: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
68259           <...>-13390 (-----) [000] dnh4 24573.995260: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
68260 id.nn.benchmark-13156 (13131) [005] d..2 24573.995261: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
68261         sugov:4-560   (  560) [005] d..2 24573.995265: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
68262           <...>-13390 (-----) [000] d..2 24573.995265: sched_switch: prev_comm=id.nn.benchmark prev_pid=13390 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
68263         sugov:0-559   (  559) [000] d..2 24573.995272: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
68264    RenderThread-24437 (24151) [000] .... 24573.995276: binder_transaction_received: transaction=1670182
68265    RenderThread-24437 (24151) [000] d..2 24573.995323: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13390 next_prio=110
68266           <...>-13390 (-----) [000] ...1 24573.995343: tracing_mark_write: E|13131
68267           <...>-13390 (-----) [000] d..1 24573.995561: sched_waking: comm=id.nn.benchmark pid=13389 prio=110 target_cpu=005
68268 id.nn.benchmark-13156 (13131) [005] dnh1 24573.995574: sched_wakeup: comm=id.nn.benchmark pid=13389 prio=110 target_cpu=005
68269 id.nn.benchmark-13156 (13131) [005] d..2 24573.995577: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13389 next_prio=110
68270           <...>-13390 (-----) [000] d..2 24573.995624: sched_switch: prev_comm=id.nn.benchmark prev_pid=13390 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
68271           <...>-13389 (-----) [005] d..1 24573.995636: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
68272     logd.writer-563   (  555) [000] dnh1 24573.995656: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
68273     logd.writer-563   (  555) [000] d..2 24573.995662: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
68274           <...>-13389 (-----) [005] d..1 24573.995674: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
68275           <...>-13131 (-----) [000] d..2 24573.995676: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
68276     logd.writer-563   (  555) [000] dnh1 24573.995692: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
68277           <...>-13389 (-----) [005] d..2 24573.995697: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=004
68278     logd.writer-563   (  555) [000] d..2 24573.995697: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
68279           <...>-13389 (-----) [005] d..3 24573.995709: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=004
68280 id.nn.benchmark-13160 (13131) [004] d..2 24573.995715: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcuop/4 next_pid=45 next_prio=120
68281           <...>-13131 (-----) [000] ...1 24573.995717: tracing_mark_write: E|13131
68282           <...>-13389 (-----) [005] d..2 24573.995719: sched_switch: prev_comm=id.nn.benchmark prev_pid=13389 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
68283         rcuop/4-45    (   45) [004] d..2 24573.995720: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
68284           <...>-13131 (-----) [000] ...1 24573.995723: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
68285           <...>-13131 (-----) [000] ...1 24573.995728: tracing_mark_write: E|13131
68286           <...>-13131 (-----) [000] ...1 24573.995732: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
68287           <...>-13131 (-----) [000] ...1 24573.995737: tracing_mark_write: E|13131
68288           <...>-13131 (-----) [000] ...1 24573.996044: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
68289           <...>-13131 (-----) [000] ...1 24573.996083: tracing_mark_write: E|13131
68290           <...>-13131 (-----) [000] ...1 24573.996087: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
68291           <...>-13131 (-----) [000] ...1 24573.996092: tracing_mark_write: E|13131
68292           <...>-13131 (-----) [000] ...1 24573.996097: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
68293           <...>-13131 (-----) [000] ...1 24573.996101: tracing_mark_write: E|13131
68294           <...>-13131 (-----) [000] ...1 24573.996108: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
68295           <...>-13131 (-----) [000] ...1 24573.996222: tracing_mark_write: E|13131
68296           <...>-13131 (-----) [000] ...1 24573.996226: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
68297           <...>-13131 (-----) [000] d..2 24573.996235: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
68298     logd.writer-563   (  555) [000] d..2 24573.996320: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13391 next_prio=110
68299           <...>-13391 (-----) [000] d..2 24573.996371: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
68300           <...>-13391 (-----) [000] d..3 24573.996379: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
68301           <...>-13391 (-----) [000] d.h1 24573.996662: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
68302 id.nn.benchmark-13156 (13131) [005] dnh1 24573.996685: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=005
68303           <...>-13391 (-----) [000] d.h2 24573.996710: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
68304 id.nn.benchmark-13156 (13131) [005] d..2 24573.996710: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
68305        DispSync-23904 (23896) [005] d..1 24573.996717: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
68306           <...>-13391 (-----) [000] d.h2 24573.996721: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
68307 id.nn.benchmark-13159 (13131) [007] dnh1 24573.996724: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
68308 id.nn.benchmark-13159 (13131) [007] d..2 24573.996726: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
68309           <...>-13391 (-----) [000] dnh3 24573.996727: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
68310        DispSync-23904 (23896) [005] d..2 24573.996729: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
68311           <...>-13157 (-----) [001] dnh1 24573.996729: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
68312         sugov:4-560   (  560) [007] d..2 24573.996730: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
68313           <...>-13391 (-----) [000] d..2 24573.996733: sched_switch: prev_comm=id.nn.benchmark prev_pid=13391 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
68314           <...>-13157 (-----) [001] d..2 24573.996735: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
68315         sugov:0-559   (  559) [000] d..2 24573.996740: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13391 next_prio=110
68316           <...>-13391 (-----) [000] d..2 24573.996745: sched_switch: prev_comm=id.nn.benchmark prev_pid=13391 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
68317   sfEventThread-23906 (23896) [001] d..3 24573.996759: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
68318   sfEventThread-23906 (23896) [001] d..4 24573.996774: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
68319     logd.writer-563   (  555) [000] d..2 24573.996780: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
68320   sfEventThread-23906 (23896) [001] d..2 24573.996794: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
68321  surfaceflinger-23896 (23896) [000] d..1 24573.997024: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
68322  surfaceflinger-23896 (23896) [000] d..2 24573.997036: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
68323           <...>-13157 (-----) [001] d..2 24573.997044: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
68324   sfEventThread-23906 (23896) [001] d..2 24573.997058: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
68325  surfaceflinger-23896 (23896) [000] ...1 24573.997159: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
68326  surfaceflinger-23896 (23896) [000] ...1 24573.997162: tracing_mark_write: E|23896
68327  surfaceflinger-23896 (23896) [000] .... 24573.997205: binder_transaction: transaction=1670183 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
68328  surfaceflinger-23896 (23896) [000] ...2 24573.997224: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
68329  surfaceflinger-23896 (23896) [000] d..4 24573.997230: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
68330 id.nn.benchmark-13159 (13131) [007] d..3 24573.997241: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
68331 id.nn.benchmark-13159 (13131) [007] d..2 24573.997249: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
68332           <...>-13157 (-----) [001] dnh1 24573.997251: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
68333  surfaceflinger-23896 (23896) [000] d..2 24573.997252: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
68334          <idle>-0     (-----) [007] dnh3 24573.997255: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
68335           <...>-13157 (-----) [001] d..2 24573.997256: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
68336          <idle>-0     (-----) [007] d..2 24573.997259: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
68337  HwBinder:598_3-633   (  598) [007] .... 24573.997263: binder_transaction_received: transaction=1670183
68338 id.nn.benchmark-13155 (13131) [006] d..2 24573.997268: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
68339  HwBinder:598_3-633   (  598) [007] ...1 24573.997285: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
68340 id.nn.benchmark-13160 (13131) [004] d..3 24573.997286: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
68341           <...>-13157 (-----) [006] d.h4 24573.997287: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
68342     migration/1-17    (   17) [001] d..2 24573.997290: 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
68343 id.nn.benchmark-13160 (13131) [004] d..2 24573.997294: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
68344           <...>-13154 (-----) [002] dnh1 24573.997296: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
68345           <...>-13157 (-----) [006] d.h5 24573.997299: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
68346           <...>-13157 (-----) [006] d.h4 24573.997300: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
68347           <...>-13154 (-----) [002] d..2 24573.997301: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
68348          <idle>-0     (-----) [004] d..2 24573.997302: 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
68349         sugov:4-560   (  560) [004] d..2 24573.997317: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
68350          <idle>-0     (-----) [001] d..1 24573.997319: cpu_idle: state=0 cpu_id=1
68351  HwBinder:598_3-633   (  598) [007] ...1 24573.997330: tracing_mark_write: B|598|HWCSession::PresentDisplay::
68352          <idle>-0     (-----) [001] dnh2 24573.997338: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
68353          <idle>-0     (-----) [001] .n.1 24573.997343: cpu_idle: state=4294967295 cpu_id=1
68354     migration/2-25    (   25) [002] d..2 24573.997345: 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
68355          <idle>-0     (-----) [001] d..2 24573.997349: 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
68356         sugov:0-559   (  559) [001] d..2 24573.997361: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
68357          <idle>-0     (-----) [002] d..1 24573.997362: cpu_idle: state=0 cpu_id=2
68358          <idle>-0     (-----) [001] d..1 24573.997366: cpu_idle: state=0 cpu_id=1
68359  HwBinder:598_3-633   (  598) [007] ...1 24573.997389: tracing_mark_write: B|598|HWDeviceDRM::Commit::
68360  HwBinder:598_3-633   (  598) [007] ...1 24573.997393: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
68361     logd.writer-563   (  555) [000] d..2 24573.997410: 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
68362          <idle>-0     (-----) [000] d..1 24573.997426: cpu_idle: state=0 cpu_id=0
68363  HwBinder:598_3-633   (  598) [007] d.s2 24573.997571: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
68364 id.nn.benchmark-13158 (13131) [003] d.h2 24573.997571: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
68365 id.nn.benchmark-13158 (13131) [003] dnh3 24573.997579: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
68366  HwBinder:598_3-633   (  598) [007] d.s3 24573.997582: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
68367  HwBinder:598_3-633   (  598) [007] d.s2 24573.997584: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
68368 id.nn.benchmark-13158 (13131) [003] d..2 24573.997588: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
68369  HwBinder:598_3-633   (  598) [007] d.s3 24573.997589: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
68370          <idle>-0     (-----) [000] .n.1 24573.997628: cpu_idle: state=4294967295 cpu_id=0
68371  HwBinder:598_3-633   (  598) [007] d..2 24573.997633: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
68372          <idle>-0     (-----) [000] d..2 24573.997638: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13392 next_prio=110
68373<...>-33 ( 33) [003] d..2 24573.997645: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
68374           <...>-13392 (-----) [000] ...1 24573.997670: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
68375          <idle>-0     (-----) [002] dnh2 24573.997670: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
68376          <idle>-0     (-----) [002] .n.1 24573.997674: cpu_idle: state=4294967295 cpu_id=2
68377 id.nn.benchmark-13156 (13131) [005] d..2 24573.997675: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
68378           <...>-13392 (-----) [000] ...1 24573.997679: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
68379          <idle>-0     (-----) [002] d..2 24573.997680: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
68380          <idle>-0     (-----) [005] d..1 24573.997684: cpu_idle: state=0 cpu_id=5
68381  HwBinder:598_3-633   (  598) [007] ...1 24573.997694: tracing_mark_write: E|598
68382  HwBinder:598_3-633   (  598) [007] ...1 24573.997695: tracing_mark_write: E|598
68383  HwBinder:598_3-633   (  598) [007] ...1 24573.997717: tracing_mark_write: E|598
68384  HwBinder:598_3-633   (  598) [007] ...1 24573.997735: tracing_mark_write: E|598
68385  kworker/u16:10-23868 (23868) [003] d..2 24573.997738: 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
68386  HwBinder:598_3-633   (  598) [007] .... 24573.997741: binder_transaction: transaction=1670184 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
68387  HwBinder:598_3-633   (  598) [007] d..2 24573.997746: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
68388           <...>-13392 (-----) [000] d..2 24573.997747: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
68389          <idle>-0     (-----) [003] d..1 24573.997753: cpu_idle: state=0 cpu_id=3
68390  HwBinder:598_3-633   (  598) [007] .... 24573.997758: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
68391           <...>-13392 (-----) [000] d..3 24573.997759: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
68392          <idle>-0     (-----) [003] dnh2 24573.997766: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
68393          <idle>-0     (-----) [003] .n.1 24573.997770: cpu_idle: state=4294967295 cpu_id=3
68394          <idle>-0     (-----) [003] d..2 24573.997775: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
68395  HwBinder:598_3-633   (  598) [007] d..2 24573.997779: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=kworker/7:0 next_pid=12892 next_prio=120
68396  surfaceflinger-23896 (23896) [003] .... 24573.997781: binder_transaction_received: transaction=1670184
68397     kworker/7:0-12892 (12892) [007] d..2 24573.997790: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
68398           <...>-13392 (-----) [000] ...1 24573.997826: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68399           <...>-13392 (-----) [000] ...1 24573.997832: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68400  surfaceflinger-23896 (23896) [003] d..2 24573.997914: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=007
68401 id.nn.benchmark-13158 (13131) [007] dnh1 24573.997949: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=007
68402 id.nn.benchmark-13158 (13131) [007] d..2 24573.997952: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
68403         rcuop/2-29    (   29) [007] d..2 24573.997957: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
68404  surfaceflinger-23896 (23896) [003] d..2 24573.998080: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
68405     logd.writer-563   (  555) [003] d..2 24573.998197: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
68406          <idle>-0     (-----) [003] d..1 24573.998207: cpu_idle: state=0 cpu_id=3
68407 crtc_commit:111-253   (  253) [002] d..2 24573.998296: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
68408          <idle>-0     (-----) [002] d..1 24573.998303: cpu_idle: state=0 cpu_id=2
68409          <idle>-0     (-----) [003] ...1 24573.999456: cpu_idle: state=4294967295 cpu_id=3
68410          <idle>-0     (-----) [003] d..1 24573.999459: cpu_idle: state=0 cpu_id=3
68411           <...>-13392 (-----) [000] d..1 24573.999490: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
68412           <...>-13392 (-----) [000] d..1 24573.999508: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=005
68413          <idle>-0     (-----) [005] dnh2 24573.999513: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
68414          <idle>-0     (-----) [005] .n.1 24573.999515: cpu_idle: state=4294967295 cpu_id=5
68415          <idle>-0     (-----) [005] dn.2 24573.999517: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=005
68416           <...>-13392 (-----) [000] d..1 24573.999519: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
68417          <idle>-0     (-----) [005] d..2 24573.999523: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
68418           <...>-13392 (-----) [000] d..1 24573.999529: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=004
68419 id.nn.benchmark-13158 (13131) [007] d.h1 24573.999531: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
68420           <...>-13154 (-----) [004] dnh1 24573.999540: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=004
68421           <...>-13154 (-----) [004] d..2 24573.999543: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
68422          <idle>-0     (-----) [002] ...1 24573.999731: cpu_idle: state=4294967295 cpu_id=2
68423          <idle>-0     (-----) [002] d..1 24573.999734: cpu_idle: state=0 cpu_id=2
68424 id.nn.benchmark-13158 (13131) [007] d.s2 24574.000889: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
68425           <...>-13392 (-----) [000] d.s1 24574.000895: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
68426          <idle>-0     (-----) [001] dnh2 24574.000910: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
68427          <idle>-0     (-----) [001] .n.1 24574.000918: cpu_idle: state=4294967295 cpu_id=1
68428           <...>-13392 (-----) [000] d.s2 24574.000920: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
68429          <idle>-0     (-----) [001] d..2 24574.000926: 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
68430  kworker/u16:10-23868 (23868) [001] d..2 24574.001284: 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
68431     rcu_preempt-7     (    7) [001] d..2 24574.001316: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
68432          <idle>-0     (-----) [003] d.s3 24574.001326: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
68433 id.nn.benchmark-13159 (13131) [001] d.h4 24574.001347: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
68434          <idle>-0     (-----) [003] d.s4 24574.001356: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
68435          <idle>-0     (-----) [003] dns4 24574.001359: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
68436 id.nn.benchmark-13159 (13131) [001] d.h4 24574.001359: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
68437 id.nn.benchmark-13158 (13131) [007] dnh1 24574.001362: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
68438          <idle>-0     (-----) [003] .n.1 24574.001364: cpu_idle: state=4294967295 cpu_id=3
68439 id.nn.benchmark-13158 (13131) [007] d..2 24574.001365: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
68440         sugov:4-560   (  560) [007] d..2 24574.001369: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
68441          <idle>-0     (-----) [003] d..2 24574.001371: 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
68442 id.nn.benchmark-13159 (13131) [001] d.h5 24574.001372: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
68443          <idle>-0     (-----) [002] .n.1 24574.001377: cpu_idle: state=4294967295 cpu_id=2
68444          <idle>-0     (-----) [002] d..2 24574.001383: 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
68445  kworker/u16:10-23868 (23868) [003] d..2 24574.001404: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
68446         sugov:0-559   (  559) [002] d..2 24574.001407: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
68447           <...>-13392 (-----) [000] ...1 24574.001755: tracing_mark_write: E|13131
68448           <...>-13392 (-----) [000] ...1 24574.001759: tracing_mark_write: E|13131
68449           <...>-13392 (-----) [000] ...1 24574.001774: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68450           <...>-13392 (-----) [000] ...1 24574.001779: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68451           <...>-13392 (-----) [000] ...1 24574.002479: tracing_mark_write: E|13131
68452           <...>-13392 (-----) [000] ...1 24574.002483: tracing_mark_write: E|13131
68453           <...>-13392 (-----) [000] ...1 24574.002501: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68454           <...>-13392 (-----) [000] ...1 24574.002505: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68455           <...>-13392 (-----) [000] ...1 24574.002838: tracing_mark_write: E|13131
68456           <...>-13392 (-----) [000] ...1 24574.002841: tracing_mark_write: E|13131
68457           <...>-13392 (-----) [000] ...1 24574.002852: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68458           <...>-13392 (-----) [000] ...1 24574.002856: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68459           <...>-13392 (-----) [000] ...1 24574.003096: tracing_mark_write: E|13131
68460           <...>-13392 (-----) [000] ...1 24574.003099: tracing_mark_write: E|13131
68461           <...>-13392 (-----) [000] ...1 24574.003109: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68462           <...>-13392 (-----) [000] ...1 24574.003113: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68463           <...>-13392 (-----) [000] ...1 24574.003513: tracing_mark_write: E|13131
68464           <...>-13392 (-----) [000] ...1 24574.003517: tracing_mark_write: E|13131
68465           <...>-13392 (-----) [000] ...1 24574.003527: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68466           <...>-13392 (-----) [000] ...1 24574.003531: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68467           <...>-13392 (-----) [000] ...1 24574.003928: tracing_mark_write: E|13131
68468           <...>-13392 (-----) [000] ...1 24574.003932: tracing_mark_write: E|13131
68469           <...>-13392 (-----) [000] ...1 24574.003950: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68470           <...>-13392 (-----) [000] ...1 24574.003955: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68471           <...>-13392 (-----) [000] ...1 24574.004146: tracing_mark_write: E|13131
68472           <...>-13392 (-----) [000] ...1 24574.004149: tracing_mark_write: E|13131
68473           <...>-13392 (-----) [000] ...1 24574.004162: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68474           <...>-13392 (-----) [000] ...1 24574.004167: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68475           <...>-13154 (-----) [002] d.h2 24574.004229: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
68476           <...>-13154 (-----) [002] dnh3 24574.004235: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
68477           <...>-13154 (-----) [002] d..2 24574.004244: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
68478     migration/2-25    (   25) [002] d.h3 24574.004287: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
68479     migration/2-25    (   25) [002] d.h3 24574.004300: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
68480           <...>-13157 (-----) [006] dnh1 24574.004303: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
68481     migration/2-25    (   25) [002] d.h4 24574.004306: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
68482           <...>-13157 (-----) [006] d..2 24574.004306: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
68483         sugov:4-560   (  560) [006] d..2 24574.004310: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
68484     migration/2-25    (   25) [002] d..2 24574.004313: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
68485         sugov:0-559   (  559) [002] d..2 24574.004337: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
68486           <...>-13392 (-----) [000] ...1 24574.004379: tracing_mark_write: E|13131
68487           <...>-13392 (-----) [000] ...1 24574.004382: tracing_mark_write: E|13131
68488           <...>-13392 (-----) [000] ...1 24574.004395: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
68489           <...>-13392 (-----) [000] ...1 24574.004399: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
68490           <...>-13392 (-----) [000] d.h4 24574.004727: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
68491           <...>-13392 (-----) [000] dnh5 24574.004738: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
68492           <...>-13392 (-----) [000] dnh4 24574.004742: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
68493 id.nn.benchmark-13158 (13131) [007] dnh1 24574.004762: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
68494 id.nn.benchmark-13158 (13131) [007] d..2 24574.004765: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
68495           <...>-13392 (-----) [000] dnh2 24574.004791: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
68496           <...>-13392 (-----) [000] dnh2 24574.004798: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
68497           <...>-13157 (-----) [006] dnh1 24574.004801: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
68498           <...>-13157 (-----) [006] d..2 24574.004803: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
68499           <...>-13392 (-----) [000] dnh3 24574.004806: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
68500         sugov:4-560   (  560) [006] d..2 24574.004806: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
68501 crtc_commit:111-253   (  253) [007] d..2 24574.004810: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
68502           <...>-13392 (-----) [000] d..2 24574.004812: sched_switch: prev_comm=id.nn.benchmark prev_pid=13392 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
68503           <...>-13154 (-----) [002] d..2 24574.004814: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
68504         sugov:0-559   (  559) [002] d..2 24574.004821: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
68505  crtc_event:111-254   (  254) [000] d..2 24574.004824: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
68506 id.nn.benchmark-13158 (13131) [007] dnh1 24574.004836: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
68507  crtc_event:111-254   (  254) [000] d..2 24574.004838: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13392 next_prio=110
68508 id.nn.benchmark-13158 (13131) [007] d..2 24574.004839: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
68509 crtc_commit:111-253   (  253) [007] d..2 24574.004891: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
68510           <...>-13392 (-----) [000] ...1 24574.004907: tracing_mark_write: E|13131
68511           <...>-13392 (-----) [000] ...1 24574.004911: tracing_mark_write: E|13131
68512           <...>-13392 (-----) [000] ...1 24574.004922: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
68513           <...>-13392 (-----) [000] ...1 24574.004927: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
68514           <...>-13392 (-----) [000] ...1 24574.004985: tracing_mark_write: E|13131
68515           <...>-13392 (-----) [000] ...1 24574.004988: tracing_mark_write: E|13131
68516           <...>-13392 (-----) [000] ...1 24574.004998: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
68517           <...>-13392 (-----) [000] ...1 24574.005002: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
68518           <...>-13392 (-----) [000] ...1 24574.005022: tracing_mark_write: E|13131
68519           <...>-13392 (-----) [000] ...1 24574.005025: tracing_mark_write: E|13131
68520           <...>-13392 (-----) [000] ...1 24574.005037: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
68521           <...>-13392 (-----) [000] ...1 24574.005040: tracing_mark_write: E|13131
68522           <...>-13392 (-----) [000] ...1 24574.005050: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
68523           <...>-13392 (-----) [000] ...1 24574.005055: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
68524           <...>-13392 (-----) [000] ...1 24574.005908: tracing_mark_write: E|13131
68525           <...>-13392 (-----) [000] ...1 24574.005911: tracing_mark_write: E|13131
68526           <...>-13392 (-----) [000] ...1 24574.005918: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68527           <...>-13392 (-----) [000] ...1 24574.005922: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68528           <...>-13392 (-----) [000] ...1 24574.006006: tracing_mark_write: E|13131
68529           <...>-13392 (-----) [000] ...1 24574.006009: tracing_mark_write: E|13131
68530           <...>-13392 (-----) [000] d..2 24574.006045: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
68531           <...>-13392 (-----) [000] d..3 24574.006058: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
68532           <...>-13392 (-----) [000] ...1 24574.006077: tracing_mark_write: E|13131
68533           <...>-13392 (-----) [000] d..1 24574.006081: sched_waking: comm=id.nn.benchmark pid=13391 prio=110 target_cpu=000
68534 id.nn.benchmark-13158 (13131) [007] dnh1 24574.006105: sched_wakeup: comm=id.nn.benchmark pid=13391 prio=110 target_cpu=007
68535 id.nn.benchmark-13158 (13131) [007] d..2 24574.006129: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13391 next_prio=110
68536           <...>-13392 (-----) [000] d.h3 24574.006129: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
68537           <...>-13391 (-----) [007] d..2 24574.006140: sched_switch: prev_comm=id.nn.benchmark prev_pid=13391 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
68538           <...>-13392 (-----) [000] d.h3 24574.006141: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
68539 id.nn.benchmark-13158 (13131) [007] dnh1 24574.006144: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
68540 id.nn.benchmark-13158 (13131) [007] d..2 24574.006146: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
68541         sugov:4-560   (  560) [007] d..2 24574.006150: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
68542           <...>-13392 (-----) [000] d.h4 24574.006150: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
68543           <...>-13154 (-----) [002] d..2 24574.006158: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
68544         sugov:0-559   (  559) [002] d..2 24574.006164: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
68545           <...>-13392 (-----) [000] ...1 24574.006166: tracing_mark_write: E|13131
68546           <...>-13392 (-----) [000] d..1 24574.006376: sched_waking: comm=id.nn.benchmark pid=13391 prio=110 target_cpu=007
68547 id.nn.benchmark-13158 (13131) [007] dnh1 24574.006390: sched_wakeup: comm=id.nn.benchmark pid=13391 prio=110 target_cpu=007
68548 id.nn.benchmark-13158 (13131) [007] d..2 24574.006392: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13391 next_prio=110
68549           <...>-13392 (-----) [000] d..2 24574.006441: sched_switch: prev_comm=id.nn.benchmark prev_pid=13392 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
68550           <...>-13391 (-----) [007] d..1 24574.006453: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
68551     logd.writer-563   (  555) [000] dnh1 24574.006475: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
68552     logd.writer-563   (  555) [000] d..2 24574.006481: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
68553           <...>-13391 (-----) [007] d..1 24574.006494: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
68554           <...>-13131 (-----) [000] d..2 24574.006495: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
68555     logd.writer-563   (  555) [000] dnh1 24574.006512: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
68556           <...>-13391 (-----) [007] d..2 24574.006515: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=000
68557     logd.writer-563   (  555) [000] d..2 24574.006517: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
68558           <...>-13131 (-----) [000] d.h2 24574.006530: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=000
68559           <...>-13391 (-----) [007] d..2 24574.006533: sched_switch: prev_comm=id.nn.benchmark prev_pid=13391 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
68560           <...>-13131 (-----) [000] ...1 24574.006544: tracing_mark_write: E|13131
68561           <...>-13131 (-----) [000] ...1 24574.006550: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
68562           <...>-13131 (-----) [000] ...1 24574.006555: tracing_mark_write: E|13131
68563           <...>-13131 (-----) [000] ...1 24574.006559: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
68564           <...>-13131 (-----) [000] ...1 24574.006564: tracing_mark_write: E|13131
68565           <...>-13131 (-----) [000] ...1 24574.006874: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
68566           <...>-13131 (-----) [000] ...1 24574.006912: tracing_mark_write: E|13131
68567           <...>-13131 (-----) [000] ...1 24574.006917: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
68568           <...>-13131 (-----) [000] ...1 24574.006923: tracing_mark_write: E|13131
68569           <...>-13131 (-----) [000] ...1 24574.006927: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
68570           <...>-13131 (-----) [000] ...1 24574.006931: tracing_mark_write: E|13131
68571           <...>-13131 (-----) [000] ...1 24574.006934: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
68572           <...>-13131 (-----) [000] d.h4 24574.007074: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
68573           <...>-13131 (-----) [000] dnh5 24574.007091: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
68574           <...>-13131 (-----) [000] dnh2 24574.007123: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
68575           <...>-13131 (-----) [000] dnh2 24574.007130: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
68576 id.nn.benchmark-13158 (13131) [007] dnh1 24574.007134: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
68577 id.nn.benchmark-13158 (13131) [007] d..2 24574.007138: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
68578           <...>-13131 (-----) [000] dnh3 24574.007138: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
68579         sugov:4-560   (  560) [007] d..2 24574.007142: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
68580           <...>-13131 (-----) [000] d..2 24574.007144: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
68581           <...>-13154 (-----) [002] d..2 24574.007146: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
68582         sugov:0-559   (  559) [002] d..2 24574.007152: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
68583 crtc_commit:111-253   (  253) [000] d..2 24574.007192: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
68584         rcuop/6-61    (   61) [000] d..2 24574.007201: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
68585           <...>-13131 (-----) [000] ...1 24574.007253: tracing_mark_write: E|13131
68586           <...>-13131 (-----) [000] ...1 24574.007257: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
68587           <...>-13131 (-----) [000] d..2 24574.007266: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
68588     logd.writer-563   (  555) [000] d.h4 24574.007370: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
68589 id.nn.benchmark-13158 (13131) [007] dnh1 24574.007391: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
68590 id.nn.benchmark-13158 (13131) [007] d..2 24574.007393: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
68591  crtc_event:111-254   (  254) [007] d..2 24574.007399: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
68592     logd.writer-563   (  555) [000] d..2 24574.007445: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13393 next_prio=110
68593           <...>-13393 (-----) [000] d..2 24574.007498: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
68594           <...>-13393 (-----) [000] d..3 24574.007506: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
68595 id.nn.benchmark-13158 (13131) [007] d.s2 24574.007556: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
68596 id.nn.benchmark-13158 (13131) [007] dns3 24574.007559: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
68597 id.nn.benchmark-13159 (13131) [001] d.s1 24574.007559: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
68598 id.nn.benchmark-13158 (13131) [007] dns2 24574.007561: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
68599           <...>-13154 (-----) [002] d.h2 24574.007562: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
68600           <...>-13154 (-----) [002] dnh3 24574.007566: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
68601           <...>-13154 (-----) [002] d..2 24574.007576: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
68602 id.nn.benchmark-13158 (13131) [007] dns3 24574.007580: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=006
68603           <...>-13157 (-----) [006] dnh1 24574.007584: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=006
68604           <...>-13157 (-----) [006] d..2 24574.007586: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
68605 id.nn.benchmark-13158 (13131) [007] d..2 24574.007602: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
68606  crtc_event:111-254   (  254) [007] d..2 24574.007608: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
68607     migration/2-25    (   25) [002] d..2 24574.007616: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
68608  kworker/u16:10-23868 (23868) [006] d..2 24574.007678: 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
68609     rcu_preempt-7     (    7) [006] d..2 24574.007680: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=006
68610     rcu_preempt-7     (    7) [006] d..3 24574.007689: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=006
68611     rcu_preempt-7     (    7) [006] d..2 24574.007694: 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
68612         rcuop/0-10    (   10) [006] d..2 24574.007700: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
68613     logd.writer-563   (  555) [002] d..2 24574.007811: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13394 next_prio=110
68614           <...>-13393 (-----) [000] d..2 24574.007840: sched_switch: prev_comm=id.nn.benchmark prev_pid=13393 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
68615           <...>-13394 (-----) [002] ...1 24574.007842: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
68616           <...>-13394 (-----) [002] ...1 24574.007847: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
68617 id.nn.benchmark-13158 (13131) [000] d.h4 24574.007870: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
68618 id.nn.benchmark-13158 (13131) [000] d.h4 24574.007878: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
68619           <...>-13154 (-----) [007] dnh1 24574.007880: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
68620           <...>-13154 (-----) [007] d..2 24574.007883: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
68621         sugov:4-560   (  560) [007] d..2 24574.007886: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
68622 id.nn.benchmark-13158 (13131) [000] d.h5 24574.007886: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
68623           <...>-13394 (-----) [002] d..2 24574.007896: sched_switch: prev_comm=id.nn.benchmark prev_pid=13394 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
68624         sugov:0-559   (  559) [002] d..2 24574.007905: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13394 next_prio=110
68625           <...>-13394 (-----) [002] d..2 24574.007921: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
68626           <...>-13394 (-----) [002] d..3 24574.007928: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
68627           <...>-13394 (-----) [002] ...1 24574.007993: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68628           <...>-13394 (-----) [002] ...1 24574.007998: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68629 id.nn.benchmark-13155 (13131) [005] d.h1 24574.009110: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=005
68630 id.nn.benchmark-13155 (13131) [005] d.h2 24574.009120: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=007
68631           <...>-13154 (-----) [007] d..2 24574.009126: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
68632        DispSync-23904 (23896) [007] d..1 24574.009137: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
68633 id.nn.benchmark-13158 (13131) [000] dnh1 24574.009149: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
68634        DispSync-23904 (23896) [007] d..2 24574.009150: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
68635 id.nn.benchmark-13158 (13131) [000] d..2 24574.009155: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
68636  appEventThread-23905 (23896) [000] d..3 24574.009198: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
68637           <...>-13154 (-----) [007] dnh1 24574.009223: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
68638           <...>-13154 (-----) [007] d..2 24574.009246: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
68639  appEventThread-23905 (23896) [000] d.h3 24574.009246: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
68640  appEventThread-23905 (23896) [000] d.h3 24574.009254: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
68641<...>-24151 ( 24151) [007] dnh1 24574.009258: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
68642<...>-24151 ( 24151) [007] d..2 24574.009261: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
68643  appEventThread-23905 (23896) [000] d.h4 24574.009262: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
68644         sugov:4-560   (  560) [007] d..2 24574.009264: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
68645           <...>-13394 (-----) [002] d..2 24574.009272: sched_switch: prev_comm=id.nn.benchmark prev_pid=13394 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
68646  appEventThread-23905 (23896) [000] d..2 24574.009278: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
68647         sugov:0-559   (  559) [002] d..2 24574.009281: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
68648<...>-24151 ( 24151) [007] .... 24574.009444: binder_transaction: transaction=1670185 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
68649<...>-24151 ( 24151) [007] d..4 24574.009450: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
68650<...>-24151 ( 24151) [007] d..5 24574.009461: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
68651<...>-24151 ( 24151) [007] d..3 24574.009483: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
68652<...>-24151 ( 24151) [007] d..4 24574.009495: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
68653<...>-24151 ( 24151) [007] d..2 24574.009573: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
68654<...>-23903 ( 23896) [007] .... 24574.009577: binder_transaction_received: transaction=1670185
68655<...>-23903 ( 23896) [007] d..1 24574.009595: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
68656 id.nn.benchmark-13158 (13131) [000] dnh1 24574.009606: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
68657 id.nn.benchmark-13158 (13131) [000] d..2 24574.009612: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
68658<...>-23903 ( 23896) [007] d..2 24574.009612: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
68659  appEventThread-23905 (23896) [000] d..2 24574.009629: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
68660    RenderThread-24437 (24151) [007] d..1 24574.009668: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
68661    RenderThread-24437 (24151) [007] d..2 24574.009674: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
68662    RenderThread-24437 (24151) [007] .... 24574.009704: binder_transaction: transaction=1670186 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
68663    RenderThread-24437 (24151) [007] d..4 24574.009706: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
68664    RenderThread-24437 (24151) [007] d..5 24574.009710: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
68665    RenderThread-24437 (24151) [007] d..2 24574.009714: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
68666<...>-23903 ( 23896) [007] .... 24574.009716: binder_transaction_received: transaction=1670186
68667<...>-23903 ( 23896) [007] .... 24574.009744: binder_transaction: transaction=1670187 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
68668<...>-23903 ( 23896) [007] d..2 24574.009748: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
68669<...>-23903 ( 23896) [007] d..3 24574.009753: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
68670<...>-23903 ( 23896) [007] d..2 24574.009763: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
68671    RenderThread-24437 (24151) [007] .... 24574.009764: binder_transaction_received: transaction=1670187
68672     logd.writer-563   (  555) [002] d..2 24574.010053: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13394 next_prio=110
68673    RenderThread-24437 (24151) [007] d..2 24574.010364: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
68674 id.nn.benchmark-13160 (13131) [004] d..3 24574.010394: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
68675<...>-24151 ( 24151) [007] d..2 24574.010399: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
68676 id.nn.benchmark-13160 (13131) [004] d..2 24574.010402: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
68677 id.nn.benchmark-13158 (13131) [000] dnh1 24574.010404: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
68678 id.nn.benchmark-13155 (13131) [005] d..2 24574.010408: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
68679 id.nn.benchmark-13158 (13131) [000] d..2 24574.010410: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
68680          <idle>-0     (-----) [004] d..1 24574.010413: cpu_idle: state=0 cpu_id=4
68681          <idle>-0     (-----) [005] d..1 24574.010413: cpu_idle: state=0 cpu_id=5
68682          <idle>-0     (-----) [004] .n.1 24574.010434: cpu_idle: state=4294967295 cpu_id=4
68683           <...>-13394 (-----) [002] d..1 24574.010453: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
68684          <idle>-0     (-----) [004] d..2 24574.010454: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
68685     migration/0-13    (   13) [000] d.h3 24574.010454: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
68686           <...>-13154 (-----) [007] d.h1 24574.010463: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
68687     migration/0-13    (   13) [000] d.h3 24574.010464: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
68688           <...>-13394 (-----) [002] d..1 24574.010469: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=004
68689          <idle>-0     (-----) [005] dnh2 24574.010469: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
68690           <...>-13154 (-----) [007] d.h2 24574.010469: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
68691          <idle>-0     (-----) [005] dnh2 24574.010470: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
68692           <...>-13154 (-----) [007] dnh2 24574.010471: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
68693          <idle>-0     (-----) [005] .n.1 24574.010473: cpu_idle: state=4294967295 cpu_id=5
68694     migration/0-13    (   13) [000] d.h4 24574.010473: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
68695           <...>-13154 (-----) [007] d..2 24574.010475: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
68696          <idle>-0     (-----) [005] d..2 24574.010476: 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
68697         sugov:4-560   (  560) [005] d..2 24574.010480: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
68698     migration/0-13    (   13) [000] d..2 24574.010480: 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
68699 id.nn.benchmark-13158 (13131) [004] d.h1 24574.010482: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=004
68700         sugov:0-559   (  559) [000] d..2 24574.010507: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
68701    RenderThread-24437 (24151) [007] .... 24574.010558: binder_transaction: transaction=1670188 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
68702    RenderThread-24437 (24151) [007] d..4 24574.010562: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
68703    RenderThread-24437 (24151) [007] d..5 24574.010572: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
68704    RenderThread-24437 (24151) [007] d..2 24574.010576: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
68705<...>-23903 ( 23896) [007] .... 24574.010578: binder_transaction_received: transaction=1670188
68706 id.nn.benchmark-13160 (13131) [000] d.h2 24574.010590: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
68707 id.nn.benchmark-13160 (13131) [000] d.h3 24574.010606: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
68708           <...>-13394 (-----) [002] d..2 24574.010615: sched_switch: prev_comm=id.nn.benchmark prev_pid=13394 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
68709<...>-23903 ( 23896) [007] .... 24574.010640: binder_transaction: transaction=1670189 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
68710<...>-23903 ( 23896) [007] d..2 24574.010642: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
68711<...>-23903 ( 23896) [007] d..3 24574.010648: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
68712 kgsl_worker_thr-246   (  246) [002] d..2 24574.010651: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=006
68713<...>-23903 ( 23896) [007] d..2 24574.010656: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
68714    RenderThread-24437 (24151) [007] .... 24574.010658: binder_transaction_received: transaction=1670189
68715           <...>-13157 (-----) [006] dnh1 24574.010675: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=006
68716           <...>-13157 (-----) [006] d..2 24574.010678: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
68717    RenderThread-24437 (24151) [007] d..2 24574.010682: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
68718 kgsl_worker_thr-246   (  246) [002] d..2 24574.010684: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13394 next_prio=110
68719  kworker/u16:10-23868 (23868) [006] d..2 24574.010695: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
68720           <...>-13154 (-----) [007] d.s2 24574.010892: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=006
68721           <...>-13154 (-----) [007] d.s3 24574.010905: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=006
68722           <...>-13157 (-----) [006] d..2 24574.010910: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
68723           <...>-13394 (-----) [002] ...1 24574.010921: tracing_mark_write: E|13131
68724           <...>-13394 (-----) [002] ...1 24574.010925: tracing_mark_write: E|13131
68725           <...>-13394 (-----) [002] ...1 24574.010942: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68726           <...>-13394 (-----) [002] ...1 24574.010946: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68727  kworker/u16:10-23868 (23868) [006] d..2 24574.011082: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
68728 id.nn.benchmark-13156 (13131) [003] d.s2 24574.011123: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=006
68729           <...>-13157 (-----) [006] d.h1 24574.011148: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
68730           <...>-13157 (-----) [006] dnh1 24574.011149: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=006
68731           <...>-13157 (-----) [006] d..2 24574.011151: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
68732  kworker/u16:10-23868 (23868) [006] d..2 24574.011274: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
68733           <...>-13394 (-----) [002] ...1 24574.011653: tracing_mark_write: E|13131
68734           <...>-13394 (-----) [002] ...1 24574.011657: tracing_mark_write: E|13131
68735           <...>-13394 (-----) [002] ...1 24574.011675: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68736           <...>-13394 (-----) [002] ...1 24574.011680: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68737           <...>-13394 (-----) [002] ...1 24574.012013: tracing_mark_write: E|13131
68738           <...>-13394 (-----) [002] ...1 24574.012016: tracing_mark_write: E|13131
68739           <...>-13394 (-----) [002] ...1 24574.012028: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68740           <...>-13394 (-----) [002] ...1 24574.012032: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68741           <...>-13394 (-----) [002] ...1 24574.012266: tracing_mark_write: E|13131
68742           <...>-13394 (-----) [002] ...1 24574.012270: tracing_mark_write: E|13131
68743           <...>-13394 (-----) [002] ...1 24574.012280: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68744           <...>-13394 (-----) [002] ...1 24574.012284: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68745           <...>-13394 (-----) [002] ...1 24574.012671: tracing_mark_write: E|13131
68746           <...>-13394 (-----) [002] ...1 24574.012675: tracing_mark_write: E|13131
68747           <...>-13394 (-----) [002] ...1 24574.012684: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68748           <...>-13394 (-----) [002] ...1 24574.012689: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68749           <...>-13394 (-----) [002] ...1 24574.013072: tracing_mark_write: E|13131
68750           <...>-13394 (-----) [002] ...1 24574.013076: tracing_mark_write: E|13131
68751           <...>-13394 (-----) [002] ...1 24574.013093: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68752           <...>-13394 (-----) [002] ...1 24574.013097: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68753           <...>-13154 (-----) [007] d.h1 24574.013113: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=007
68754           <...>-13154 (-----) [007] d.h2 24574.013147: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
68755           <...>-13394 (-----) [002] dnh1 24574.013148: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
68756           <...>-13154 (-----) [007] dnh3 24574.013153: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
68757           <...>-13154 (-----) [007] dnh2 24574.013153: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
68758           <...>-13394 (-----) [002] d..2 24574.013156: sched_switch: prev_comm=id.nn.benchmark prev_pid=13394 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
68759           <...>-13154 (-----) [007] d..2 24574.013161: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
68760         sugov:4-560   (  560) [007] d..2 24574.013165: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
68761 id.nn.benchmark-13160 (13131) [000] dnh1 24574.013165: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
68762        DispSync-23904 (23896) [002] d..1 24574.013171: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
68763 id.nn.benchmark-13160 (13131) [000] d..2 24574.013172: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
68764         sugov:0-559   (  559) [000] d..2 24574.013180: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
68765        DispSync-23904 (23896) [002] d..2 24574.013183: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
68766 id.nn.benchmark-13159 (13131) [001] d..2 24574.013193: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
68767        DispSync-23904 (23896) [002] d..2 24574.013198: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13394 next_prio=110
68768   sfEventThread-23906 (23896) [001] d..3 24574.013226: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
68769   sfEventThread-23906 (23896) [001] d..4 24574.013242: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
68770           <...>-13394 (-----) [002] d..2 24574.013252: sched_switch: prev_comm=id.nn.benchmark prev_pid=13394 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
68771   sfEventThread-23906 (23896) [001] d..2 24574.013256: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
68772  surfaceflinger-23896 (23896) [002] d..1 24574.013548: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
68773  surfaceflinger-23896 (23896) [002] d..2 24574.013559: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
68774 id.nn.benchmark-13159 (13131) [001] d..2 24574.013567: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
68775   sfEventThread-23906 (23896) [001] d..2 24574.013581: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
68776  surfaceflinger-23896 (23896) [002] ...1 24574.013682: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
68777  surfaceflinger-23896 (23896) [002] ...1 24574.013686: tracing_mark_write: E|23896
68778  surfaceflinger-23896 (23896) [002] .... 24574.013730: binder_transaction: transaction=1670190 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
68779  surfaceflinger-23896 (23896) [002] ...2 24574.013751: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
68780  surfaceflinger-23896 (23896) [002] d..4 24574.013758: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
68781           <...>-13154 (-----) [007] dnh1 24574.013772: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
68782           <...>-13154 (-----) [007] d..2 24574.013774: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
68783  surfaceflinger-23896 (23896) [002] d..2 24574.013779: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13394 next_prio=110
68784  HwBinder:598_3-633   (  598) [007] .... 24574.013779: binder_transaction_received: transaction=1670190
68785  HwBinder:598_3-633   (  598) [007] ...1 24574.013805: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
68786  HwBinder:598_3-633   (  598) [007] ...1 24574.013855: tracing_mark_write: B|598|HWCSession::PresentDisplay::
68787           <...>-13394 (-----) [002] ...1 24574.013904: tracing_mark_write: E|13131
68788           <...>-13394 (-----) [002] ...1 24574.013909: tracing_mark_write: E|13131
68789  HwBinder:598_3-633   (  598) [007] ...1 24574.013919: tracing_mark_write: B|598|HWDeviceDRM::Commit::
68790           <...>-13394 (-----) [002] ...1 24574.013923: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68791  HwBinder:598_3-633   (  598) [007] ...1 24574.013923: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
68792           <...>-13394 (-----) [002] ...1 24574.013927: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68793  HwBinder:598_3-633   (  598) [007] d..2 24574.014120: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
68794           <...>-13394 (-----) [002] dnh1 24574.014138: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
68795           <...>-13394 (-----) [002] d..2 24574.014145: sched_switch: prev_comm=id.nn.benchmark prev_pid=13394 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
68796  HwBinder:598_3-633   (  598) [007] ...1 24574.014158: tracing_mark_write: E|598
68797  HwBinder:598_3-633   (  598) [007] ...1 24574.014159: tracing_mark_write: E|598
68798  HwBinder:598_3-633   (  598) [007] ...1 24574.014181: tracing_mark_write: E|598
68799  HwBinder:598_3-633   (  598) [007] ...1 24574.014201: tracing_mark_write: E|598
68800  HwBinder:598_3-633   (  598) [007] .... 24574.014207: binder_transaction: transaction=1670191 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
68801  HwBinder:598_3-633   (  598) [007] d..2 24574.014212: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
68802  HwBinder:598_3-633   (  598) [007] d.s3 24574.014238: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=006
68803 id.nn.benchmark-13160 (13131) [000] dnH1 24574.014238: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
68804 id.nn.benchmark-13160 (13131) [000] d..2 24574.014244: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
68805  surfaceflinger-23896 (23896) [000] .... 24574.014249: binder_transaction_received: transaction=1670191
68806  HwBinder:598_3-633   (  598) [007] d.s4 24574.014251: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=006
68807  HwBinder:598_3-633   (  598) [007] .... 24574.014254: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
68808           <...>-13157 (-----) [006] d..2 24574.014257: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
68809  HwBinder:598_3-633   (  598) [007] d..2 24574.014275: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
68810  kworker/u16:10-23868 (23868) [006] d..2 24574.014298: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
68811  surfaceflinger-23896 (23896) [000] d..2 24574.014507: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
68812 crtc_commit:111-253   (  253) [002] d..2 24574.014772: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13394 next_prio=110
68813           <...>-13394 (-----) [002] ...1 24574.014781: tracing_mark_write: E|13131
68814           <...>-13394 (-----) [002] ...1 24574.014785: tracing_mark_write: E|13131
68815           <...>-13394 (-----) [002] ...1 24574.014798: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
68816           <...>-13394 (-----) [002] ...1 24574.014802: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
68817           <...>-13394 (-----) [002] ...1 24574.015101: tracing_mark_write: E|13131
68818           <...>-13394 (-----) [002] ...1 24574.015104: tracing_mark_write: E|13131
68819           <...>-13394 (-----) [002] ...1 24574.015114: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
68820           <...>-13394 (-----) [002] ...1 24574.015118: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
68821           <...>-13394 (-----) [002] ...1 24574.015170: tracing_mark_write: E|13131
68822           <...>-13394 (-----) [002] ...1 24574.015173: tracing_mark_write: E|13131
68823           <...>-13394 (-----) [002] ...1 24574.015181: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
68824           <...>-13394 (-----) [002] ...1 24574.015186: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
68825           <...>-13394 (-----) [002] ...1 24574.015205: tracing_mark_write: E|13131
68826           <...>-13394 (-----) [002] ...1 24574.015208: tracing_mark_write: E|13131
68827           <...>-13394 (-----) [002] ...1 24574.015218: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
68828           <...>-13394 (-----) [002] ...1 24574.015221: tracing_mark_write: E|13131
68829           <...>-13394 (-----) [002] ...1 24574.015229: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
68830           <...>-13394 (-----) [002] ...1 24574.015233: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
68831           <...>-13394 (-----) [002] ...1 24574.016086: tracing_mark_write: E|13131
68832           <...>-13394 (-----) [002] ...1 24574.016089: tracing_mark_write: E|13131
68833           <...>-13394 (-----) [002] ...1 24574.016097: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68834           <...>-13394 (-----) [002] ...1 24574.016101: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68835           <...>-13394 (-----) [002] ...1 24574.016186: tracing_mark_write: E|13131
68836           <...>-13394 (-----) [002] ...1 24574.016189: tracing_mark_write: E|13131
68837           <...>-13394 (-----) [002] d..2 24574.016237: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
68838           <...>-13394 (-----) [002] d..3 24574.016246: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
68839           <...>-13394 (-----) [002] ...1 24574.016266: tracing_mark_write: E|13131
68840           <...>-13394 (-----) [002] d..1 24574.016271: sched_waking: comm=id.nn.benchmark pid=13393 prio=110 target_cpu=000
68841           <...>-13154 (-----) [007] dnh1 24574.016318: sched_wakeup: comm=id.nn.benchmark pid=13393 prio=110 target_cpu=007
68842           <...>-13394 (-----) [002] d.h3 24574.016320: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
68843           <...>-13154 (-----) [007] d..2 24574.016322: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13393 next_prio=110
68844           <...>-13393 (-----) [007] d..2 24574.016333: sched_switch: prev_comm=id.nn.benchmark prev_pid=13393 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
68845           <...>-13394 (-----) [002] d.h3 24574.016334: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
68846 id.nn.benchmark-13158 (13131) [004] dnh1 24574.016337: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
68847 id.nn.benchmark-13158 (13131) [004] d..2 24574.016340: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
68848           <...>-13394 (-----) [002] d.h4 24574.016342: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
68849         sugov:4-560   (  560) [004] d..2 24574.016344: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
68850 id.nn.benchmark-13160 (13131) [000] d..2 24574.016352: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
68851           <...>-13394 (-----) [002] ...1 24574.016359: tracing_mark_write: E|13131
68852         sugov:0-559   (  559) [000] d..2 24574.016360: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
68853           <...>-13394 (-----) [002] d..1 24574.016567: sched_waking: comm=id.nn.benchmark pid=13393 prio=110 target_cpu=007
68854           <...>-13154 (-----) [007] dnh1 24574.016581: sched_wakeup: comm=id.nn.benchmark pid=13393 prio=110 target_cpu=007
68855           <...>-13154 (-----) [007] d..2 24574.016583: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13393 next_prio=110
68856           <...>-13394 (-----) [002] d..2 24574.016634: sched_switch: prev_comm=id.nn.benchmark prev_pid=13394 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
68857           <...>-13393 (-----) [007] d..1 24574.016647: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=000
68858           <...>-13393 (-----) [007] d..2 24574.016661: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
68859 id.nn.benchmark-13158 (13131) [004] d..2 24574.016677: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
68860           <...>-13131 (-----) [004] d..2 24574.016683: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
68861           <...>-13393 (-----) [007] d..1 24574.016708: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
68862           <...>-13393 (-----) [007] d..2 24574.016717: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
68863 id.nn.benchmark-13158 (13131) [004] d..2 24574.016723: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
68864           <...>-13393 (-----) [007] d..2 24574.016736: sched_switch: prev_comm=id.nn.benchmark prev_pid=13393 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
68865           <...>-13131 (-----) [004] ...1 24574.016738: tracing_mark_write: E|13131
68866           <...>-13131 (-----) [004] ...1 24574.016741: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
68867           <...>-13131 (-----) [004] ...1 24574.016743: tracing_mark_write: E|13131
68868           <...>-13131 (-----) [004] ...1 24574.016744: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
68869           <...>-13131 (-----) [004] ...1 24574.016746: tracing_mark_write: E|13131
68870     logd.writer-563   (  555) [002] d..2 24574.016771: 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
68871          <idle>-0     (-----) [002] d..1 24574.016795: cpu_idle: state=0 cpu_id=2
68872           <...>-13131 (-----) [004] ...1 24574.016808: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
68873           <...>-13131 (-----) [004] d..2 24574.016824: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
68874           <...>-13131 (-----) [004] ...1 24574.016840: tracing_mark_write: E|13131
68875           <...>-13131 (-----) [004] ...1 24574.016842: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
68876          <idle>-0     (-----) [002] dnh2 24574.016843: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
68877           <...>-13131 (-----) [004] ...1 24574.016845: tracing_mark_write: E|13131
68878           <...>-13131 (-----) [004] ...1 24574.016847: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
68879          <idle>-0     (-----) [002] .n.1 24574.016847: cpu_idle: state=4294967295 cpu_id=2
68880           <...>-13131 (-----) [004] ...1 24574.016848: tracing_mark_write: E|13131
68881           <...>-13131 (-----) [004] ...1 24574.016850: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
68882          <idle>-0     (-----) [002] d..2 24574.016856: 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
68883     logd.writer-563   (  555) [002] d..2 24574.016889: 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
68884          <idle>-0     (-----) [002] d..1 24574.016896: cpu_idle: state=0 cpu_id=2
68885           <...>-13131 (-----) [004] ...1 24574.016914: tracing_mark_write: E|13131
68886           <...>-13131 (-----) [004] ...1 24574.016915: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
68887          <idle>-0     (-----) [002] .n.1 24574.016916: cpu_idle: state=4294967295 cpu_id=2
68888           <...>-13131 (-----) [004] d..2 24574.016921: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
68889          <idle>-0     (-----) [002] d..2 24574.016922: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13395 next_prio=110
68890           <...>-13395 (-----) [002] d..2 24574.016979: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
68891           <...>-13395 (-----) [002] d..3 24574.016987: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
68892           <...>-13395 (-----) [002] d..2 24574.017279: sched_switch: prev_comm=id.nn.benchmark prev_pid=13395 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
68893     logd.writer-563   (  555) [002] d..2 24574.017466: 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
68894          <idle>-0     (-----) [002] d..1 24574.017478: cpu_idle: state=0 cpu_id=2
68895           <...>-13154 (-----) [007] d.s2 24574.017558: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=006
68896           <...>-13157 (-----) [006] d.H2 24574.017586: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
68897           <...>-13157 (-----) [006] d.H3 24574.017605: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
68898           <...>-13157 (-----) [006] d.H2 24574.017606: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
68899          <idle>-0     (-----) [002] dnH3 24574.017607: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
68900 id.nn.benchmark-13158 (13131) [004] d..2 24574.017611: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
68901         sugov:4-560   (  560) [004] d..2 24574.017615: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
68902           <...>-13157 (-----) [006] d.s1 24574.017616: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=006
68903          <idle>-0     (-----) [002] dnh4 24574.017622: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
68904          <idle>-0     (-----) [002] .n.1 24574.017622: cpu_idle: state=4294967295 cpu_id=2
68905          <idle>-0     (-----) [002] dnh2 24574.017646: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
68906          <idle>-0     (-----) [002] d..2 24574.017652: 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
68907         sugov:0-559   (  559) [002] d..2 24574.017660: 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
68908  kworker/u16:10-23868 (23868) [002] d..2 24574.017753: 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
68909     rcu_preempt-7     (    7) [002] d..2 24574.017784: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13396 next_prio=110
68910           <...>-13396 (-----) [002] ...1 24574.017835: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
68911           <...>-13396 (-----) [002] ...1 24574.017840: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
68912           <...>-13396 (-----) [002] d..2 24574.017900: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
68913           <...>-13396 (-----) [002] d..3 24574.017909: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
68914           <...>-13396 (-----) [002] ...1 24574.017976: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68915           <...>-13396 (-----) [002] ...1 24574.017980: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68916           <...>-13396 (-----) [002] ...1 24574.019973: tracing_mark_write: E|13131
68917           <...>-13396 (-----) [002] ...1 24574.019977: tracing_mark_write: E|13131
68918           <...>-13396 (-----) [002] ...1 24574.019988: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68919           <...>-13396 (-----) [002] ...1 24574.019992: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68920           <...>-13396 (-----) [002] ...1 24574.020686: tracing_mark_write: E|13131
68921           <...>-13396 (-----) [002] ...1 24574.020690: tracing_mark_write: E|13131
68922           <...>-13396 (-----) [002] ...1 24574.020703: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68923           <...>-13396 (-----) [002] ...1 24574.020707: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68924           <...>-13154 (-----) [007] d.s2 24574.020889: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
68925           <...>-13396 (-----) [002] d.s2 24574.020900: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
68926           <...>-13396 (-----) [002] dns3 24574.020912: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
68927           <...>-13396 (-----) [002] dnH2 24574.020917: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
68928           <...>-13396 (-----) [002] d..2 24574.020924: sched_switch: prev_comm=id.nn.benchmark prev_pid=13396 prev_prio=110 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
68929     rcu_preempt-7     (    7) [002] d..2 24574.020929: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=000
68930     rcu_preempt-7     (    7) [002] d..3 24574.020943: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
68931     rcu_preempt-7     (    7) [002] d..2 24574.020945: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=007
68932           <...>-13157 (-----) [006] d..3 24574.020948: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
68933           <...>-13157 (-----) [006] d..2 24574.020955: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
68934 id.nn.benchmark-13160 (13131) [000] dnh1 24574.020959: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
68935     rcu_preempt-7     (    7) [002] d..2 24574.020962: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=004
68936 id.nn.benchmark-13160 (13131) [000] d..2 24574.020965: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
68937          <idle>-0     (-----) [006] d..1 24574.020965: cpu_idle: state=0 cpu_id=6
68938           <...>-13154 (-----) [007] dnh1 24574.020967: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=007
68939           <...>-13154 (-----) [007] d..2 24574.020969: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
68940         rcuop/2-29    (   29) [007] d..2 24574.020984: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
68941 id.nn.benchmark-13158 (13131) [004] dnh1 24574.020987: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=004
68942 id.nn.benchmark-13158 (13131) [004] d..2 24574.020990: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/4 next_pid=45 next_prio=120
68943          <idle>-0     (-----) [006] .n.1 24574.020991: cpu_idle: state=4294967295 cpu_id=6
68944     rcu_preempt-7     (    7) [002] d..2 24574.020992: 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
68945         rcuop/4-45    (   45) [004] d..2 24574.020992: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=000
68946          <idle>-0     (-----) [006] d..2 24574.020995: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
68947         rcuop/2-29    (   29) [007] d..2 24574.021025: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
68948     migration/0-13    (   13) [000] d.h2 24574.021029: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
68949     migration/0-13    (   13) [000] d.h3 24574.021033: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
68950         rcuop/4-45    (   45) [004] d..2 24574.021039: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
68951     migration/0-13    (   13) [000] d.h3 24574.021047: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
68952           <...>-13154 (-----) [007] dnh1 24574.021051: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
68953           <...>-13154 (-----) [007] d..2 24574.021053: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
68954         sugov:4-560   (  560) [007] d..2 24574.021057: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
68955     migration/0-13    (   13) [000] d.h4 24574.021057: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
68956     migration/0-13    (   13) [000] d.h2 24574.021064: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=000
68957     migration/0-13    (   13) [000] d..2 24574.021070: 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
68958         sugov:0-559   (  559) [000] d..2 24574.021077: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
68959         rcuop/3-37    (   37) [000] d..2 24574.021087: 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
68960         rcuop/5-53    (   53) [000] d..2 24574.021124: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
68961         rcuop/6-61    (   61) [000] d.h6 24574.021207: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
68962         rcuop/6-61    (   61) [000] dnh7 24574.021224: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
68963         rcuop/6-61    (   61) [000] dnh6 24574.021227: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
68964           <...>-13154 (-----) [007] dnh1 24574.021244: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
68965           <...>-13154 (-----) [007] d..2 24574.021246: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
68966         rcuop/6-61    (   61) [000] d..2 24574.021278: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
68967  crtc_event:111-254   (  254) [000] d..2 24574.021298: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
68968         rcuop/6-61    (   61) [000] d..2 24574.021301: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=000
68969         rcuop/6-61    (   61) [000] d..3 24574.021312: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=000
68970         rcuop/6-61    (   61) [000] d..2 24574.021318: 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
68971  kworker/u16:10-23868 (23868) [002] d..2 24574.021334: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
68972 crtc_commit:111-253   (  253) [007] d..2 24574.021339: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
68973         rcuop/7-69    (   69) [000] d..2 24574.021340: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
68974          <idle>-0     (-----) [000] d..1 24574.021356: cpu_idle: state=0 cpu_id=0
68975     logd.writer-563   (  555) [002] d..2 24574.021480: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13396 next_prio=110
68976           <...>-13396 (-----) [002] d..1 24574.021487: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=006
68977 id.nn.benchmark-13160 (13131) [006] d.h1 24574.021501: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=006
68978          <idle>-0     (-----) [000] ...1 24574.022896: cpu_idle: state=4294967295 cpu_id=0
68979          <idle>-0     (-----) [000] d..1 24574.022899: cpu_idle: state=0 cpu_id=0
68980          <idle>-0     (-----) [000] d.h5 24574.023535: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
68981          <idle>-0     (-----) [000] dnh6 24574.023549: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
68982          <idle>-0     (-----) [000] dnh3 24574.023586: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
68983          <idle>-0     (-----) [000] dnh3 24574.023593: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
68984           <...>-13154 (-----) [007] dnh1 24574.023596: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
68985           <...>-13154 (-----) [007] d..2 24574.023599: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
68986         sugov:4-560   (  560) [007] d..2 24574.023602: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
68987          <idle>-0     (-----) [000] dnh4 24574.023603: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
68988          <idle>-0     (-----) [000] .n.1 24574.023607: cpu_idle: state=4294967295 cpu_id=0
68989           <...>-13396 (-----) [002] d..2 24574.023613: sched_switch: prev_comm=id.nn.benchmark prev_pid=13396 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
68990          <idle>-0     (-----) [000] d..2 24574.023614: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
68991         sugov:0-559   (  559) [002] d..2 24574.023622: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13396 next_prio=110
68992 crtc_commit:111-253   (  253) [000] d..2 24574.023679: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
68993           <...>-13396 (-----) [002] ...1 24574.023714: tracing_mark_write: E|13131
68994           <...>-13396 (-----) [002] ...1 24574.023718: tracing_mark_write: E|13131
68995           <...>-13396 (-----) [002] ...1 24574.023731: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
68996           <...>-13396 (-----) [002] ...1 24574.023737: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
68997           <...>-13157 (-----) [000] d.h4 24574.023838: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
68998           <...>-13157 (-----) [000] d.h5 24574.023851: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
68999           <...>-13396 (-----) [002] d..2 24574.023860: sched_switch: prev_comm=id.nn.benchmark prev_pid=13396 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
69000  crtc_event:111-254   (  254) [002] d..2 24574.023873: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13396 next_prio=110
69001           <...>-13396 (-----) [002] ...1 24574.023998: tracing_mark_write: E|13131
69002           <...>-13396 (-----) [002] ...1 24574.024002: tracing_mark_write: E|13131
69003           <...>-13396 (-----) [002] ...1 24574.024013: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69004           <...>-13396 (-----) [002] ...1 24574.024017: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69005           <...>-13154 (-----) [007] d.s2 24574.024223: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
69006           <...>-13154 (-----) [007] d.s2 24574.024231: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
69007           <...>-13396 (-----) [002] dnh1 24574.024236: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
69008           <...>-13396 (-----) [002] dnh1 24574.024243: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
69009           <...>-13396 (-----) [002] d..2 24574.024248: sched_switch: prev_comm=id.nn.benchmark prev_pid=13396 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
69010  crtc_event:111-254   (  254) [002] d..2 24574.024259: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
69011  kworker/u16:10-23868 (23868) [002] d..2 24574.024300: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13396 next_prio=110
69012           <...>-13396 (-----) [002] ...1 24574.024504: tracing_mark_write: E|13131
69013           <...>-13396 (-----) [002] ...1 24574.024508: tracing_mark_write: E|13131
69014           <...>-13396 (-----) [002] ...1 24574.024518: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69015           <...>-13396 (-----) [002] ...1 24574.024522: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69016           <...>-13396 (-----) [002] ...1 24574.024917: tracing_mark_write: E|13131
69017           <...>-13396 (-----) [002] ...1 24574.024921: tracing_mark_write: E|13131
69018           <...>-13396 (-----) [002] ...1 24574.024939: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69019           <...>-13396 (-----) [002] ...1 24574.024943: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69020           <...>-13396 (-----) [002] ...1 24574.025133: tracing_mark_write: E|13131
69021           <...>-13396 (-----) [002] ...1 24574.025137: tracing_mark_write: E|13131
69022           <...>-13396 (-----) [002] ...1 24574.025149: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69023           <...>-13396 (-----) [002] ...1 24574.025153: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69024           <...>-13396 (-----) [002] ...1 24574.025223: tracing_mark_write: E|13131
69025           <...>-13396 (-----) [002] ...1 24574.025226: tracing_mark_write: E|13131
69026           <...>-13396 (-----) [002] ...1 24574.025236: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
69027           <...>-13396 (-----) [002] ...1 24574.025240: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
69028           <...>-13396 (-----) [002] ...1 24574.025503: tracing_mark_write: E|13131
69029           <...>-13396 (-----) [002] ...1 24574.025507: tracing_mark_write: E|13131
69030           <...>-13396 (-----) [002] ...1 24574.025515: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
69031           <...>-13396 (-----) [002] ...1 24574.025519: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
69032           <...>-13396 (-----) [002] ...1 24574.025564: tracing_mark_write: E|13131
69033           <...>-13396 (-----) [002] ...1 24574.025567: tracing_mark_write: E|13131
69034           <...>-13396 (-----) [002] ...1 24574.025575: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
69035           <...>-13396 (-----) [002] ...1 24574.025578: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
69036           <...>-13396 (-----) [002] .n.1 24574.025593: tracing_mark_write: E|13131
69037           <...>-13396 (-----) [002] d.h3 24574.025593: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
69038           <...>-13396 (-----) [002] dnh4 24574.025593: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
69039           <...>-13396 (-----) [002] d..2 24574.025616: sched_switch: prev_comm=id.nn.benchmark prev_pid=13396 prev_prio=110 prev_state=R+ ==> next_comm=DispSync next_pid=23904 next_prio=97
69040        DispSync-23904 (23896) [002] d..1 24574.025637: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
69041        DispSync-23904 (23896) [002] d..2 24574.025649: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
69042           <...>-13157 (-----) [000] d..2 24574.025658: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
69043        DispSync-23904 (23896) [002] d..2 24574.025663: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13396 next_prio=110
69044           <...>-13396 (-----) [002] ...1 24574.025671: tracing_mark_write: E|13131
69045           <...>-13396 (-----) [002] ...1 24574.025682: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
69046           <...>-13396 (-----) [002] ...1 24574.025685: tracing_mark_write: E|13131
69047           <...>-13396 (-----) [002] ...1 24574.025692: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
69048           <...>-13396 (-----) [002] ...1 24574.025696: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
69049  appEventThread-23905 (23896) [000] d..3 24574.025702: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
69050           <...>-13154 (-----) [007] dnh1 24574.025731: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
69051           <...>-13154 (-----) [007] d..2 24574.025734: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
69052  appEventThread-23905 (23896) [000] d..2 24574.025742: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
69053<...>-24151 ( 24151) [007] .... 24574.025938: binder_transaction: transaction=1670192 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
69054<...>-24151 ( 24151) [007] d..4 24574.025944: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
69055<...>-24151 ( 24151) [007] d..5 24574.025958: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
69056<...>-24151 ( 24151) [007] d..3 24574.025979: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
69057<...>-24151 ( 24151) [007] d..4 24574.025989: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
69058<...>-24151 ( 24151) [007] d..2 24574.026057: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
69059<...>-23903 ( 23896) [007] .... 24574.026061: binder_transaction_received: transaction=1670192
69060<...>-23903 ( 23896) [007] d..1 24574.026078: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
69061           <...>-13396 (-----) [002] dnh1 24574.026093: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
69062<...>-23903 ( 23896) [007] d..2 24574.026098: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
69063           <...>-13396 (-----) [002] d..2 24574.026099: sched_switch: prev_comm=id.nn.benchmark prev_pid=13396 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
69064  appEventThread-23905 (23896) [002] d..2 24574.026124: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13396 next_prio=110
69065    RenderThread-24437 (24151) [007] d..1 24574.026157: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
69066    RenderThread-24437 (24151) [007] d..2 24574.026167: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
69067    RenderThread-24437 (24151) [007] .... 24574.026196: binder_transaction: transaction=1670193 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
69068    RenderThread-24437 (24151) [007] d..4 24574.026199: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
69069    RenderThread-24437 (24151) [007] d..5 24574.026207: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
69070    RenderThread-24437 (24151) [007] d..2 24574.026211: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
69071<...>-23903 ( 23896) [007] .... 24574.026213: binder_transaction_received: transaction=1670193
69072<...>-23903 ( 23896) [007] .... 24574.026243: binder_transaction: transaction=1670194 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
69073<...>-23903 ( 23896) [007] d..2 24574.026248: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
69074<...>-23903 ( 23896) [007] d..3 24574.026258: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
69075<...>-23903 ( 23896) [007] d..2 24574.026267: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
69076    RenderThread-24437 (24151) [007] .... 24574.026269: binder_transaction_received: transaction=1670194
69077           <...>-13396 (-----) [002] ...1 24574.026587: tracing_mark_write: E|13131
69078           <...>-13396 (-----) [002] ...1 24574.026591: tracing_mark_write: E|13131
69079           <...>-13396 (-----) [002] ...1 24574.026599: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69080           <...>-13396 (-----) [002] ...1 24574.026603: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69081    RenderThread-24437 (24151) [007] d..2 24574.026887: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
69082<...>-24151 ( 24151) [007] d..2 24574.026918: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
69083           <...>-13396 (-----) [002] ...1 24574.026947: tracing_mark_write: E|13131
69084           <...>-13396 (-----) [002] ...1 24574.026951: tracing_mark_write: E|13131
69085           <...>-13154 (-----) [007] d.h1 24574.026986: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
69086           <...>-13396 (-----) [002] d..2 24574.026990: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
69087           <...>-13154 (-----) [007] d.h2 24574.026996: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
69088           <...>-13396 (-----) [002] d..3 24574.026998: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
69089           <...>-13154 (-----) [007] dnh2 24574.026998: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
69090           <...>-13154 (-----) [007] d..2 24574.027002: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
69091           <...>-13396 (-----) [002] ...1 24574.027016: tracing_mark_write: E|13131
69092           <...>-13396 (-----) [002] d..1 24574.027021: sched_waking: comm=id.nn.benchmark pid=13395 prio=110 target_cpu=002
69093    RenderThread-24437 (24151) [007] d.h1 24574.027046: sched_wakeup: comm=id.nn.benchmark pid=13395 prio=110 target_cpu=007
69094           <...>-13396 (-----) [002] d.h3 24574.027074: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
69095           <...>-13396 (-----) [002] d.h3 24574.027086: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
69096 id.nn.benchmark-13158 (13131) [004] dnh1 24574.027089: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
69097 id.nn.benchmark-13158 (13131) [004] d..2 24574.027091: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
69098           <...>-13396 (-----) [002] dnh4 24574.027092: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
69099         sugov:4-560   (  560) [004] d..2 24574.027095: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
69100           <...>-13396 (-----) [002] d..2 24574.027098: sched_switch: prev_comm=id.nn.benchmark prev_pid=13396 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
69101         sugov:0-559   (  559) [002] d..2 24574.027105: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
69102           <...>-13157 (-----) [000] d.h2 24574.027112: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
69103    RenderThread-24437 (24151) [007] .... 24574.027114: binder_transaction: transaction=1670195 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
69104    RenderThread-24437 (24151) [007] d..4 24574.027118: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=007
69105           <...>-13157 (-----) [000] d.h3 24574.027125: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
69106    RenderThread-24437 (24151) [007] d..5 24574.027129: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
69107     logd.writer-563   (  555) [002] d..2 24574.027131: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
69108    RenderThread-24437 (24151) [007] d..2 24574.027134: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13395 next_prio=110
69109 id.nn.benchmark-13158 (13131) [004] d..2 24574.027135: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
69110<...>-23903 ( 23896) [004] .... 24574.027138: binder_transaction_received: transaction=1670195
69111           <...>-13395 (-----) [007] d..2 24574.027143: sched_switch: prev_comm=id.nn.benchmark prev_pid=13395 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
69112 kgsl_worker_thr-246   (  246) [002] d..2 24574.027168: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
69113 kgsl_worker_thr-246   (  246) [002] d..3 24574.027177: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
69114 kgsl_worker_thr-246   (  246) [002] d..2 24574.027190: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
69115<...>-23903 ( 23896) [004] .... 24574.027200: binder_transaction: transaction=1670196 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
69116<...>-23903 ( 23896) [004] d..2 24574.027202: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
69117<...>-23903 ( 23896) [004] d..3 24574.027210: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
69118           <...>-13154 (-----) [007] d..2 24574.027217: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
69119    RenderThread-24437 (24151) [007] .... 24574.027218: binder_transaction_received: transaction=1670196
69120<...>-23903 ( 23896) [004] d..2 24574.027221: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
69121    RenderThread-24437 (24151) [007] d..2 24574.027241: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
69122  kworker/u16:10-23868 (23868) [002] d..2 24574.027363: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13396 next_prio=110
69123           <...>-13396 (-----) [002] ...1 24574.027383: tracing_mark_write: E|13131
69124           <...>-13154 (-----) [007] d.s2 24574.027557: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
69125           <...>-13396 (-----) [002] d.s1 24574.027564: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
69126           <...>-13396 (-----) [002] dns2 24574.027574: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
69127           <...>-13396 (-----) [002] dnH2 24574.027579: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
69128           <...>-13396 (-----) [002] d..2 24574.027587: sched_switch: prev_comm=id.nn.benchmark prev_pid=13396 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
69129     rcu_preempt-7     (    7) [002] d..2 24574.027591: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=006
69130 id.nn.benchmark-13160 (13131) [006] dnh1 24574.027617: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=006
69131 id.nn.benchmark-13160 (13131) [006] d..2 24574.027620: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
69132     rcu_preempt-7     (    7) [002] d..2 24574.027623: 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
69133         rcuop/0-10    (   10) [006] d..2 24574.027639: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
69134  kworker/u16:10-23868 (23868) [002] d..2 24574.027709: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13396 next_prio=110
69135           <...>-13396 (-----) [002] d..1 24574.027764: sched_waking: comm=id.nn.benchmark pid=13395 prio=110 target_cpu=007
69136           <...>-13154 (-----) [007] dnh1 24574.027778: sched_wakeup: comm=id.nn.benchmark pid=13395 prio=110 target_cpu=007
69137           <...>-13154 (-----) [007] d..2 24574.027781: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13395 next_prio=110
69138           <...>-13396 (-----) [002] d..2 24574.027827: sched_switch: prev_comm=id.nn.benchmark prev_pid=13396 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
69139           <...>-13395 (-----) [007] d..1 24574.027851: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
69140           <...>-13395 (-----) [007] d..2 24574.027864: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
69141 id.nn.benchmark-13158 (13131) [004] d..2 24574.027871: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
69142           <...>-13131 (-----) [004] d..2 24574.027878: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
69143           <...>-13395 (-----) [007] d..1 24574.027892: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
69144           <...>-13395 (-----) [007] d..2 24574.027901: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=004
69145           <...>-13395 (-----) [007] d..2 24574.027920: sched_switch: prev_comm=id.nn.benchmark prev_pid=13395 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
69146     logd.writer-563   (  555) [002] d..2 24574.027925: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
69147           <...>-13131 (-----) [002] d.h4 24574.027955: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
69148           <...>-13131 (-----) [002] d.h4 24574.027967: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
69149           <...>-13154 (-----) [007] dnh1 24574.027971: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
69150           <...>-13131 (-----) [002] dnh5 24574.027973: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
69151           <...>-13154 (-----) [007] d..2 24574.027974: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
69152         sugov:4-560   (  560) [007] d..2 24574.027978: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
69153           <...>-13131 (-----) [002] d..2 24574.027979: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
69154         sugov:0-559   (  559) [002] d..2 24574.027986: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
69155           <...>-13131 (-----) [002] ...1 24574.028009: tracing_mark_write: E|13131
69156           <...>-13131 (-----) [002] ...1 24574.028016: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
69157           <...>-13131 (-----) [002] ...1 24574.028021: tracing_mark_write: E|13131
69158           <...>-13131 (-----) [002] ...1 24574.028025: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
69159           <...>-13131 (-----) [002] ...1 24574.028030: tracing_mark_write: E|13131
69160           <...>-13131 (-----) [002] ...1 24574.028337: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
69161           <...>-13131 (-----) [002] d..2 24574.028363: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
69162           <...>-13131 (-----) [002] d..3 24574.028371: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
69163           <...>-13131 (-----) [002] ...1 24574.028387: tracing_mark_write: E|13131
69164           <...>-13131 (-----) [002] ...1 24574.028391: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
69165           <...>-13131 (-----) [002] ...1 24574.028396: tracing_mark_write: E|13131
69166           <...>-13131 (-----) [002] ...1 24574.028401: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
69167           <...>-13131 (-----) [002] ...1 24574.028405: tracing_mark_write: E|13131
69168           <...>-13131 (-----) [002] ...1 24574.028408: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
69169           <...>-13131 (-----) [002] ...1 24574.028512: tracing_mark_write: E|13131
69170           <...>-13131 (-----) [002] ...1 24574.028517: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
69171           <...>-13131 (-----) [002] d..2 24574.028525: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
69172     logd.writer-563   (  555) [002] d..2 24574.028571: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13397 next_prio=110
69173           <...>-13397 (-----) [002] d..2 24574.028621: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
69174           <...>-13397 (-----) [002] d..3 24574.028628: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
69175           <...>-13397 (-----) [002] d..2 24574.028916: sched_switch: prev_comm=id.nn.benchmark prev_pid=13397 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
69176     logd.writer-563   (  555) [002] d..2 24574.029086: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13398 next_prio=110
69177           <...>-13398 (-----) [002] ...1 24574.029113: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
69178           <...>-13398 (-----) [002] ...1 24574.029118: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
69179           <...>-13398 (-----) [002] d..2 24574.029173: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
69180           <...>-13398 (-----) [002] d..3 24574.029180: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
69181           <...>-13398 (-----) [002] ...1 24574.029245: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69182           <...>-13398 (-----) [002] ...1 24574.029250: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69183           <...>-13398 (-----) [002] d.h1 24574.029602: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
69184           <...>-13398 (-----) [002] dnh2 24574.029611: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
69185           <...>-13398 (-----) [002] d..2 24574.029618: sched_switch: prev_comm=id.nn.benchmark prev_pid=13398 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
69186        DispSync-23904 (23896) [002] d..1 24574.029632: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
69187        DispSync-23904 (23896) [002] d..2 24574.029643: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
69188 id.nn.benchmark-13159 (13131) [001] d..2 24574.029652: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
69189        DispSync-23904 (23896) [002] d..2 24574.029656: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13398 next_prio=110
69190   sfEventThread-23906 (23896) [001] d..3 24574.029678: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
69191   sfEventThread-23906 (23896) [001] d..4 24574.029697: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
69192           <...>-13398 (-----) [002] d..2 24574.029704: sched_switch: prev_comm=id.nn.benchmark prev_pid=13398 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
69193   sfEventThread-23906 (23896) [001] d..2 24574.029710: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
69194  surfaceflinger-23896 (23896) [002] d..1 24574.029945: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
69195  surfaceflinger-23896 (23896) [002] d..2 24574.029956: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
69196 id.nn.benchmark-13159 (13131) [001] d..2 24574.029963: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
69197   sfEventThread-23906 (23896) [001] d..2 24574.029977: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
69198  surfaceflinger-23896 (23896) [002] ...1 24574.030076: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
69199  surfaceflinger-23896 (23896) [002] ...1 24574.030079: tracing_mark_write: E|23896
69200  surfaceflinger-23896 (23896) [002] .... 24574.030120: binder_transaction: transaction=1670197 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
69201  surfaceflinger-23896 (23896) [002] ...2 24574.030140: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
69202  surfaceflinger-23896 (23896) [002] d..4 24574.030147: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
69203           <...>-13154 (-----) [007] dnh1 24574.030162: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
69204           <...>-13154 (-----) [007] d..2 24574.030165: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
69205  surfaceflinger-23896 (23896) [002] d..2 24574.030169: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13398 next_prio=110
69206  HwBinder:598_3-633   (  598) [007] .... 24574.030169: binder_transaction_received: transaction=1670197
69207  HwBinder:598_3-633   (  598) [007] ...1 24574.030193: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
69208  HwBinder:598_3-633   (  598) [007] ...1 24574.030245: tracing_mark_write: B|598|HWCSession::PresentDisplay::
69209  HwBinder:598_3-633   (  598) [007] ...1 24574.030309: tracing_mark_write: B|598|HWDeviceDRM::Commit::
69210  HwBinder:598_3-633   (  598) [007] ...1 24574.030313: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
69211  HwBinder:598_3-633   (  598) [007] d..2 24574.030504: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
69212  HwBinder:598_3-633   (  598) [007] d..3 24574.030518: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
69213  HwBinder:598_3-633   (  598) [007] d.h3 24574.030539: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
69214 id.nn.benchmark-13158 (13131) [004] d..2 24574.030539: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
69215  HwBinder:598_3-633   (  598) [007] d.h4 24574.030546: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
69216  HwBinder:598_3-633   (  598) [007] d.h3 24574.030547: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
69217 id.nn.benchmark-13160 (13131) [006] d..2 24574.030552: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
69218         sugov:4-560   (  560) [006] d..2 24574.030556: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
69219           <...>-13398 (-----) [002] dnh1 24574.030558: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
69220           <...>-13398 (-----) [002] d..2 24574.030565: sched_switch: prev_comm=id.nn.benchmark prev_pid=13398 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
69221         sugov:0-559   (  559) [002] d..2 24574.030573: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13398 next_prio=110
69222  HwBinder:598_3-633   (  598) [007] ...1 24574.030580: tracing_mark_write: E|598
69223  HwBinder:598_3-633   (  598) [007] ...1 24574.030581: tracing_mark_write: E|598
69224  HwBinder:598_3-633   (  598) [007] ...1 24574.030603: tracing_mark_write: E|598
69225  HwBinder:598_3-633   (  598) [007] ...1 24574.030622: tracing_mark_write: E|598
69226  HwBinder:598_3-633   (  598) [007] .... 24574.030628: binder_transaction: transaction=1670198 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
69227  HwBinder:598_3-633   (  598) [007] d..2 24574.030633: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
69228  HwBinder:598_3-633   (  598) [007] .... 24574.030639: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
69229           <...>-13398 (-----) [002] dnh1 24574.030644: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
69230           <...>-13398 (-----) [002] d..2 24574.030649: sched_switch: prev_comm=id.nn.benchmark prev_pid=13398 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
69231  surfaceflinger-23896 (23896) [002] .... 24574.030653: binder_transaction_received: transaction=1670198
69232  HwBinder:598_3-633   (  598) [007] d..2 24574.030660: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
69233  surfaceflinger-23896 (23896) [002] d..2 24574.030885: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13398 next_prio=110
69234           <...>-13154 (-----) [007] d.s2 24574.030891: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
69235           <...>-13154 (-----) [007] d.s2 24574.030900: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
69236           <...>-13154 (-----) [007] dns3 24574.030905: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
69237           <...>-13398 (-----) [002] dnH3 24574.030906: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
69238           <...>-13154 (-----) [007] d..2 24574.030909: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=kworker/7:0 next_pid=12892 next_prio=120
69239           <...>-13398 (-----) [002] d..2 24574.030915: sched_switch: prev_comm=id.nn.benchmark prev_pid=13398 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
69240     kworker/7:0-12892 (12892) [007] d..2 24574.030936: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
69241 id.nn.benchmark-13155 (13131) [005] d..3 24574.031084: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
69242 id.nn.benchmark-13155 (13131) [005] d..2 24574.031092: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
69243           <...>-13157 (-----) [000] dnh1 24574.031094: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
69244          <idle>-0     (-----) [005] d..1 24574.031099: cpu_idle: state=0 cpu_id=5
69245           <...>-13157 (-----) [000] d..2 24574.031099: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
69246          <idle>-0     (-----) [005] .n.1 24574.031128: cpu_idle: state=4294967295 cpu_id=5
69247          <idle>-0     (-----) [005] d..2 24574.031149: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
69248     migration/0-13    (   13) [000] d.h3 24574.031150: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
69249 crtc_commit:111-253   (  253) [004] d..2 24574.031151: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
69250 id.nn.benchmark-13160 (13131) [006] d..2 24574.031155: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
69251     migration/0-13    (   13) [000] d.h3 24574.031158: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
69252          <idle>-0     (-----) [006] d..1 24574.031161: cpu_idle: state=0 cpu_id=6
69253  kworker/u16:10-23868 (23868) [002] d..2 24574.031166: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13398 next_prio=110
69254          <idle>-0     (-----) [006] dnh2 24574.031166: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
69255          <idle>-0     (-----) [006] .n.1 24574.031168: cpu_idle: state=4294967295 cpu_id=6
69256          <idle>-0     (-----) [006] d..2 24574.031171: 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
69257     migration/0-13    (   13) [000] d.h4 24574.031174: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
69258         sugov:4-560   (  560) [006] d..3 24574.031177: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
69259     migration/0-13    (   13) [000] d..2 24574.031181: 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
69260         sugov:4-560   (  560) [006] d..2 24574.031184: 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
69261          <idle>-0     (-----) [006] d..1 24574.031186: cpu_idle: state=0 cpu_id=6
69262 id.nn.benchmark-13159 (13131) [001] dnh1 24574.031187: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
69263 id.nn.benchmark-13159 (13131) [001] d..2 24574.031192: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
69264         sugov:0-559   (  559) [000] d..2 24574.031202: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
69265          <idle>-0     (-----) [006] .n.1 24574.031216: cpu_idle: state=4294967295 cpu_id=6
69266          <idle>-0     (-----) [006] d..2 24574.031233: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
69267     migration/1-17    (   17) [001] d..2 24574.031245: 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
69268          <idle>-0     (-----) [001] d..1 24574.031258: cpu_idle: state=0 cpu_id=1
69269     logd.writer-563   (  555) [000] d..2 24574.031345: 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
69270          <idle>-0     (-----) [000] d..1 24574.031359: cpu_idle: state=0 cpu_id=0
69271 id.nn.benchmark-13158 (13131) [004] d..3 24574.031833: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
69272 id.nn.benchmark-13158 (13131) [004] d..2 24574.031841: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
69273 id.nn.benchmark-13156 (13131) [003] dnh1 24574.031845: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
69274          <idle>-0     (-----) [004] d..1 24574.031850: cpu_idle: state=0 cpu_id=4
69275 id.nn.benchmark-13156 (13131) [003] d..2 24574.031852: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
69276          <idle>-0     (-----) [004] .n.1 24574.031877: cpu_idle: state=4294967295 cpu_id=4
69277          <idle>-0     (-----) [004] d..2 24574.031899: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
69278<...>-33 ( 33) [003] d.h3 24574.031899: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
69279<...>-33 ( 33) [003] d.h3 24574.031912: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
69280 id.nn.benchmark-13156 (13131) [004] dnh1 24574.031915: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
69281 id.nn.benchmark-13156 (13131) [004] d..2 24574.031917: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
69282<...>-33 ( 33) [003] d.h4 24574.031920: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
69283         sugov:4-560   (  560) [004] d..2 24574.031921: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
69284          <idle>-0     (-----) [000] .n.1 24574.031926: cpu_idle: state=4294967295 cpu_id=0
69285          <idle>-0     (-----) [000] d..2 24574.031932: 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
69286<...>-33 ( 33) [003] d..2 24574.031934: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
69287         sugov:0-559   (  559) [000] d..2 24574.031944: 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
69288          <idle>-0     (-----) [003] d..1 24574.031946: cpu_idle: state=0 cpu_id=3
69289          <idle>-0     (-----) [000] d..1 24574.031949: cpu_idle: state=0 cpu_id=0
69290           <...>-13398 (-----) [002] d..1 24574.031980: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
69291           <...>-13157 (-----) [005] d.h1 24574.031994: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
69292           <...>-13398 (-----) [002] d..1 24574.031994: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
69293           <...>-13398 (-----) [002] d..1 24574.032004: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=006
69294 id.nn.benchmark-13156 (13131) [004] d.h1 24574.032006: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
69295 id.nn.benchmark-13159 (13131) [006] d.h1 24574.032016: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=006
69296          <idle>-0     (-----) [003] ...1 24574.033255: cpu_idle: state=4294967295 cpu_id=3
69297          <idle>-0     (-----) [003] d..1 24574.033258: cpu_idle: state=0 cpu_id=3
69298          <idle>-0     (-----) [000] ...1 24574.033519: cpu_idle: state=4294967295 cpu_id=0
69299          <idle>-0     (-----) [000] d..1 24574.033522: cpu_idle: state=0 cpu_id=0
69300           <...>-13398 (-----) [002] d.s1 24574.034227: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
69301           <...>-13398 (-----) [002] d.s2 24574.034245: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
69302          <idle>-0     (-----) [000] dnH3 24574.034293: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
69303          <idle>-0     (-----) [000] dnH3 24574.034301: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
69304 id.nn.benchmark-13156 (13131) [004] dnh1 24574.034304: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
69305 id.nn.benchmark-13156 (13131) [004] d..2 24574.034308: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
69306         sugov:4-560   (  560) [004] d..2 24574.034311: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
69307          <idle>-0     (-----) [000] dnH4 24574.034313: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
69308          <idle>-0     (-----) [003] .n.1 24574.034317: cpu_idle: state=4294967295 cpu_id=3
69309          <idle>-0     (-----) [000] .n.1 24574.034319: cpu_idle: state=4294967295 cpu_id=0
69310          <idle>-0     (-----) [003] d..2 24574.034324: 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
69311          <idle>-0     (-----) [000] d..2 24574.034327: 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
69312         sugov:0-559   (  559) [003] d..2 24574.034344: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
69313     rcu_preempt-7     (    7) [000] d..2 24574.034361: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
69314           <...>-13154 (-----) [007] d..2 24574.036519: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
69315           <...>-13157 (-----) [005] d..3 24574.036522: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
69316           <...>-13157 (-----) [005] d..2 24574.036528: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
69317          <idle>-0     (-----) [005] d..1 24574.036531: cpu_idle: state=0 cpu_id=5
69318 id.nn.benchmark-13155 (13131) [000] dnh1 24574.036532: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
69319 id.nn.benchmark-13156 (13131) [004] d..2 24574.036536: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
69320 id.nn.benchmark-13159 (13131) [006] d..2 24574.036537: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
69321 id.nn.benchmark-13155 (13131) [000] d..2 24574.036539: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
69322          <idle>-0     (-----) [004] d..1 24574.036539: cpu_idle: state=0 cpu_id=4
69323          <idle>-0     (-----) [006] d..1 24574.036540: cpu_idle: state=0 cpu_id=6
69324          <idle>-0     (-----) [005] .n.1 24574.036560: cpu_idle: state=4294967295 cpu_id=5
69325          <idle>-0     (-----) [005] d..2 24574.036581: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
69326     migration/0-13    (   13) [000] d.h3 24574.036582: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
69327     migration/0-13    (   13) [000] d.h3 24574.036590: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
69328          <idle>-0     (-----) [004] dnh2 24574.036594: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
69329          <idle>-0     (-----) [004] .n.1 24574.036597: cpu_idle: state=4294967295 cpu_id=4
69330          <idle>-0     (-----) [004] d..2 24574.036600: 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
69331     migration/0-13    (   13) [000] d.h4 24574.036602: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
69332         sugov:4-560   (  560) [004] d..2 24574.036605: 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
69333          <idle>-0     (-----) [001] .n.1 24574.036607: cpu_idle: state=4294967295 cpu_id=1
69334          <idle>-0     (-----) [004] d..1 24574.036607: cpu_idle: state=0 cpu_id=4
69335          <idle>-0     (-----) [001] d..2 24574.036614: 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
69336     migration/0-13    (   13) [000] d..2 24574.036615: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69337          <idle>-0     (-----) [000] d..1 24574.036622: cpu_idle: state=0 cpu_id=0
69338         sugov:0-559   (  559) [001] d..2 24574.036627: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
69339          <idle>-0     (-----) [001] d..1 24574.036632: cpu_idle: state=0 cpu_id=1
69340           <...>-13398 (-----) [002] ...1 24574.036640: tracing_mark_write: E|13131
69341           <...>-13398 (-----) [002] ...1 24574.036644: tracing_mark_write: E|13131
69342           <...>-13398 (-----) [002] ...1 24574.036662: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69343           <...>-13398 (-----) [002] ...1 24574.036667: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69344          <idle>-0     (-----) [006] ...1 24574.036731: cpu_idle: state=4294967295 cpu_id=6
69345          <idle>-0     (-----) [006] d..1 24574.036732: cpu_idle: state=0 cpu_id=6
69346           <...>-13398 (-----) [002] d..1 24574.037136: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=007
69347           <...>-13398 (-----) [002] d..1 24574.037154: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=004
69348          <idle>-0     (-----) [006] dnh2 24574.037155: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=006
69349          <idle>-0     (-----) [006] .n.1 24574.037158: cpu_idle: state=4294967295 cpu_id=6
69350          <idle>-0     (-----) [006] d..2 24574.037161: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
69351           <...>-13398 (-----) [002] d..1 24574.037164: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
69352          <idle>-0     (-----) [004] dnh2 24574.037168: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=004
69353          <idle>-0     (-----) [004] .n.1 24574.037170: cpu_idle: state=4294967295 cpu_id=4
69354          <idle>-0     (-----) [004] d..2 24574.037172: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
69355           <...>-13398 (-----) [002] d..1 24574.037174: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=006
69356 id.nn.benchmark-13155 (13131) [005] d.h1 24574.037175: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
69357           <...>-13154 (-----) [006] d.h1 24574.037184: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=006
69358 id.nn.benchmark-13160 (13131) [007] d.s2 24574.037556: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
69359          <idle>-0     (-----) [000] ...1 24574.037585: cpu_idle: state=4294967295 cpu_id=0
69360           <...>-13154 (-----) [006] d.H2 24574.037585: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
69361          <idle>-0     (-----) [000] d..1 24574.037587: cpu_idle: state=0 cpu_id=0
69362           <...>-13398 (-----) [002] dnh1 24574.037589: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
69363           <...>-13154 (-----) [006] d.H3 24574.037591: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
69364           <...>-13154 (-----) [006] d.H2 24574.037592: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
69365           <...>-13398 (-----) [002] d..2 24574.037596: sched_switch: prev_comm=id.nn.benchmark prev_pid=13398 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
69366 id.nn.benchmark-13156 (13131) [004] d..2 24574.037597: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
69367         sugov:4-560   (  560) [004] d..2 24574.037600: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
69368          <idle>-0     (-----) [001] dnh2 24574.037604: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
69369          <idle>-0     (-----) [001] .n.1 24574.037608: cpu_idle: state=4294967295 cpu_id=1
69370          <idle>-0     (-----) [001] d..2 24574.037613: 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
69371         sugov:0-559   (  559) [001] d..2 24574.037638: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
69372  kworker/u16:10-23868 (23868) [002] d..2 24574.037641: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13398 next_prio=110
69373          <idle>-0     (-----) [000] d.h5 24574.037672: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
69374          <idle>-0     (-----) [000] dnh6 24574.037686: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
69375          <idle>-0     (-----) [000] dnh5 24574.037690: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
69376          <idle>-0     (-----) [000] dnh6 24574.037704: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
69377           <...>-13398 (-----) [002] d..2 24574.037712: sched_switch: prev_comm=id.nn.benchmark prev_pid=13398 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
69378          <idle>-0     (-----) [000] .n.1 24574.037737: cpu_idle: state=4294967295 cpu_id=0
69379          <idle>-0     (-----) [000] d..2 24574.037743: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
69380  crtc_event:111-254   (  254) [000] d..2 24574.037777: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
69381 crtc_commit:111-253   (  253) [002] d..2 24574.037824: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13398 next_prio=110
69382           <...>-13398 (-----) [002] ...1 24574.038028: tracing_mark_write: E|13131
69383           <...>-13398 (-----) [002] ...1 24574.038032: tracing_mark_write: E|13131
69384           <...>-13398 (-----) [002] ...1 24574.038050: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69385           <...>-13398 (-----) [002] ...1 24574.038055: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69386           <...>-13398 (-----) [002] ...1 24574.038389: tracing_mark_write: E|13131
69387           <...>-13398 (-----) [002] ...1 24574.038393: tracing_mark_write: E|13131
69388           <...>-13398 (-----) [002] ...1 24574.038404: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69389           <...>-13398 (-----) [002] ...1 24574.038409: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69390           <...>-13398 (-----) [002] ...1 24574.038649: tracing_mark_write: E|13131
69391           <...>-13398 (-----) [002] ...1 24574.038654: tracing_mark_write: E|13131
69392           <...>-13398 (-----) [002] ...1 24574.038664: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69393           <...>-13398 (-----) [002] ...1 24574.038668: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69394           <...>-13398 (-----) [002] ...1 24574.039075: tracing_mark_write: E|13131
69395           <...>-13398 (-----) [002] ...1 24574.039079: tracing_mark_write: E|13131
69396           <...>-13398 (-----) [002] ...1 24574.039090: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69397           <...>-13398 (-----) [002] ...1 24574.039094: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69398           <...>-13398 (-----) [002] ...1 24574.039493: tracing_mark_write: E|13131
69399           <...>-13398 (-----) [002] ...1 24574.039496: tracing_mark_write: E|13131
69400           <...>-13398 (-----) [002] ...1 24574.039515: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69401           <...>-13398 (-----) [002] ...1 24574.039519: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69402           <...>-13398 (-----) [002] ...1 24574.039712: tracing_mark_write: E|13131
69403           <...>-13398 (-----) [002] ...1 24574.039715: tracing_mark_write: E|13131
69404           <...>-13398 (-----) [002] ...1 24574.039728: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69405           <...>-13398 (-----) [002] ...1 24574.039732: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69406           <...>-13398 (-----) [002] ...1 24574.039804: tracing_mark_write: E|13131
69407           <...>-13398 (-----) [002] ...1 24574.039807: tracing_mark_write: E|13131
69408           <...>-13398 (-----) [002] ...1 24574.039818: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
69409           <...>-13398 (-----) [002] ...1 24574.039823: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
69410           <...>-13157 (-----) [000] d.h4 24574.040021: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
69411           <...>-13157 (-----) [000] d.h5 24574.040031: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
69412           <...>-13398 (-----) [002] d..2 24574.040039: sched_switch: prev_comm=id.nn.benchmark prev_pid=13398 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
69413 crtc_commit:111-253   (  253) [002] d..2 24574.040085: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13398 next_prio=110
69414           <...>-13398 (-----) [002] ...1 24574.040220: tracing_mark_write: E|13131
69415           <...>-13398 (-----) [002] ...1 24574.040224: tracing_mark_write: E|13131
69416           <...>-13398 (-----) [002] ...1 24574.040234: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
69417           <...>-13398 (-----) [002] ...1 24574.040238: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
69418           <...>-13398 (-----) [002] ...1 24574.040290: tracing_mark_write: E|13131
69419           <...>-13398 (-----) [002] ...1 24574.040293: tracing_mark_write: E|13131
69420           <...>-13398 (-----) [002] ...1 24574.040302: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
69421           <...>-13398 (-----) [002] ...1 24574.040305: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
69422           <...>-13157 (-----) [000] d.h4 24574.040312: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
69423           <...>-13398 (-----) [002] ...1 24574.040320: tracing_mark_write: E|13131
69424           <...>-13157 (-----) [000] d.h5 24574.040324: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
69425           <...>-13398 (-----) [002] d..2 24574.040331: sched_switch: prev_comm=id.nn.benchmark prev_pid=13398 prev_prio=110 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
69426  crtc_event:111-254   (  254) [002] d..2 24574.040346: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13398 next_prio=110
69427           <...>-13398 (-----) [002] ...1 24574.040349: tracing_mark_write: E|13131
69428           <...>-13398 (-----) [002] ...1 24574.040360: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
69429           <...>-13398 (-----) [002] ...1 24574.040363: tracing_mark_write: E|13131
69430           <...>-13398 (-----) [002] ...1 24574.040372: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
69431           <...>-13398 (-----) [002] ...1 24574.040376: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
69432 id.nn.benchmark-13160 (13131) [007] d.s2 24574.040888: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
69433           <...>-13398 (-----) [002] d.s2 24574.040894: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
69434           <...>-13157 (-----) [000] d.s1 24574.040900: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
69435           <...>-13398 (-----) [002] dns3 24574.040902: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
69436           <...>-13398 (-----) [002] dnH2 24574.040908: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
69437           <...>-13157 (-----) [000] d.s2 24574.040916: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
69438           <...>-13398 (-----) [002] d..2 24574.040921: sched_switch: prev_comm=id.nn.benchmark prev_pid=13398 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
69439  crtc_event:111-254   (  254) [002] d..2 24574.040931: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
69440  kworker/u16:10-23868 (23868) [002] .... 24574.041109: clk_set_rate: l3_cluster1_vote_clk 300000000
69441  kworker/u16:10-23868 (23868) [002] .... 24574.041115: clk_set_rate: l3_clk 1401600000
69442  kworker/u16:10-23868 (23868) [002] d..2 24574.041323: 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
69443     rcu_preempt-7     (    7) [002] d..2 24574.041328: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=000
69444     rcu_preempt-7     (    7) [002] d..3 24574.041345: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
69445     rcu_preempt-7     (    7) [002] d..2 24574.041347: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=007
69446 id.nn.benchmark-13160 (13131) [007] dnh1 24574.041378: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=007
69447 id.nn.benchmark-13160 (13131) [007] d..2 24574.041380: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
69448     rcu_preempt-7     (    7) [002] d..2 24574.041383: 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
69449         rcuop/2-29    (   29) [007] d..2 24574.041383: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
69450         rcuop/6-61    (   61) [002] d..2 24574.041387: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=000
69451         rcuop/6-61    (   61) [002] d..3 24574.041404: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=002
69452         rcuop/2-29    (   29) [007] d..2 24574.041407: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
69453         rcuop/6-61    (   61) [002] d.h2 24574.041410: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
69454         rcuop/6-61    (   61) [002] d..2 24574.041416: 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
69455         rcuop/7-69    (   69) [002] d..2 24574.041434: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
69456         rcuop/3-37    (   37) [002] d..2 24574.041445: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13398 next_prio=110
69457           <...>-13398 (-----) [002] ...1 24574.041803: tracing_mark_write: E|13131
69458           <...>-13398 (-----) [002] ...1 24574.041807: tracing_mark_write: E|13131
69459           <...>-13398 (-----) [002] ...1 24574.041816: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69460           <...>-13398 (-----) [002] ...1 24574.041820: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69461           <...>-13398 (-----) [002] ...1 24574.041904: tracing_mark_write: E|13131
69462           <...>-13398 (-----) [002] ...1 24574.041907: tracing_mark_write: E|13131
69463           <...>-13398 (-----) [002] d..2 24574.041952: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
69464           <...>-13398 (-----) [002] d..3 24574.041965: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
69465           <...>-13398 (-----) [002] ...1 24574.041985: tracing_mark_write: E|13131
69466           <...>-13398 (-----) [002] d..1 24574.041990: sched_waking: comm=id.nn.benchmark pid=13397 prio=110 target_cpu=002
69467 id.nn.benchmark-13156 (13131) [004] dnh1 24574.042012: sched_wakeup: comm=id.nn.benchmark pid=13397 prio=110 target_cpu=004
69468 id.nn.benchmark-13156 (13131) [004] d..2 24574.042037: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13397 next_prio=110
69469           <...>-13398 (-----) [002] d.h3 24574.042038: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
69470           <...>-13397 (-----) [004] d..2 24574.042044: sched_switch: prev_comm=id.nn.benchmark prev_pid=13397 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
69471           <...>-13398 (-----) [002] d.h3 24574.042046: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
69472 id.nn.benchmark-13156 (13131) [004] dnh1 24574.042049: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
69473 id.nn.benchmark-13156 (13131) [004] d..2 24574.042051: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
69474         sugov:4-560   (  560) [004] d..2 24574.042054: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
69475           <...>-13398 (-----) [002] dnh4 24574.042056: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
69476           <...>-13398 (-----) [002] d..2 24574.042062: sched_switch: prev_comm=id.nn.benchmark prev_pid=13398 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
69477         sugov:0-559   (  559) [002] d.h3 24574.042067: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
69478 id.nn.benchmark-13156 (13131) [004] dnh1 24574.042085: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=004
69479 id.nn.benchmark-13156 (13131) [004] d..2 24574.042087: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
69480        DispSync-23904 (23896) [004] d..1 24574.042096: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
69481         sugov:0-559   (  559) [002] d..2 24574.042115: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
69482           <...>-13157 (-----) [000] dnh1 24574.042118: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
69483        DispSync-23904 (23896) [004] d..2 24574.042119: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
69484           <...>-13157 (-----) [000] d..2 24574.042125: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
69485  appEventThread-23905 (23896) [000] d..3 24574.042162: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
69486     logd.writer-563   (  555) [002] d..2 24574.042166: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13398 next_prio=110
69487           <...>-13398 (-----) [002] ...1 24574.042185: tracing_mark_write: E|13131
69488 id.nn.benchmark-13160 (13131) [007] dnh1 24574.042191: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
69489 id.nn.benchmark-13160 (13131) [007] d..2 24574.042193: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
69490  appEventThread-23905 (23896) [000] d..2 24574.042201: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
69491           <...>-13398 (-----) [002] d..1 24574.042373: sched_waking: comm=id.nn.benchmark pid=13397 prio=110 target_cpu=004
69492<...>-24151 ( 24151) [007] .... 24574.042384: binder_transaction: transaction=1670199 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
69493 id.nn.benchmark-13156 (13131) [004] dnh1 24574.042388: sched_wakeup: comm=id.nn.benchmark pid=13397 prio=110 target_cpu=004
69494<...>-24151 ( 24151) [007] d..4 24574.042389: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
69495 id.nn.benchmark-13156 (13131) [004] d..2 24574.042390: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13397 next_prio=110
69496<...>-24151 ( 24151) [007] d..5 24574.042400: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
69497           <...>-13397 (-----) [004] d..2 24574.042403: sched_switch: prev_comm=id.nn.benchmark prev_pid=13397 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
69498<...>-23903 ( 23896) [004] .... 24574.042409: binder_transaction_received: transaction=1670199
69499<...>-23903 ( 23896) [004] d..1 24574.042421: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
69500<...>-24151 ( 24151) [007] d..3 24574.042423: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
69501           <...>-13398 (-----) [002] dnh2 24574.042438: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
69502           <...>-13398 (-----) [002] dnh2 24574.042441: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
69503<...>-23903 ( 23896) [004] d..2 24574.042443: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13397 next_prio=110
69504           <...>-13398 (-----) [002] d..2 24574.042461: sched_switch: prev_comm=id.nn.benchmark prev_pid=13398 prev_prio=110 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
69505           <...>-13397 (-----) [004] d..2 24574.042471: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
69506  appEventThread-23905 (23896) [002] d.h1 24574.042484: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
69507  appEventThread-23905 (23896) [002] d..2 24574.042495: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
69508           <...>-13397 (-----) [004] d..1 24574.042505: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
69509<...>-24151 ( 24151) [007] d..2 24574.042521: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
69510    RenderThread-24437 (24151) [002] d.h1 24574.042525: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
69511           <...>-13397 (-----) [004] d..2 24574.042554: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=004
69512           <...>-13397 (-----) [004] dn.3 24574.042564: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=004
69513           <...>-13397 (-----) [004] d..2 24574.042567: sched_switch: prev_comm=id.nn.benchmark prev_pid=13397 prev_prio=110 prev_state=R+ ==> next_comm=rcuop/4 next_pid=45 next_prio=120
69514         rcuop/4-45    (   45) [004] d..2 24574.042572: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13397 next_prio=110
69515           <...>-13397 (-----) [004] d..2 24574.042582: sched_switch: prev_comm=id.nn.benchmark prev_pid=13397 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
69516    RenderThread-24437 (24151) [002] d..1 24574.042628: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
69517 id.nn.benchmark-13160 (13131) [007] dnh1 24574.042643: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
69518 id.nn.benchmark-13160 (13131) [007] d..2 24574.042646: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
69519<...>-24151 ( 24151) [007] d..2 24574.042667: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
69520    RenderThread-24437 (24151) [002] .... 24574.042685: binder_transaction: transaction=1670200 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
69521    RenderThread-24437 (24151) [002] d..4 24574.042691: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
69522 id.nn.benchmark-13156 (13131) [004] dnh1 24574.042704: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
69523 id.nn.benchmark-13156 (13131) [004] d..2 24574.042707: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
69524    RenderThread-24437 (24151) [002] d..2 24574.042709: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
69525<...>-23903 ( 23896) [004] .... 24574.042710: binder_transaction_received: transaction=1670200
69526           <...>-13131 (-----) [002] ...1 24574.042736: tracing_mark_write: E|13131
69527<...>-23903 ( 23896) [004] .... 24574.042739: binder_transaction: transaction=1670201 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
69528           <...>-13131 (-----) [002] ...1 24574.042741: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
69529<...>-23903 ( 23896) [004] d..2 24574.042744: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
69530           <...>-13131 (-----) [002] ...1 24574.042746: tracing_mark_write: E|13131
69531           <...>-13131 (-----) [002] ...1 24574.042750: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
69532           <...>-13131 (-----) [002] d.h1 24574.042758: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
69533<...>-23903 ( 23896) [004] d..2 24574.042760: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
69534           <...>-13131 (-----) [002] ...1 24574.042763: tracing_mark_write: E|13131
69535           <...>-13131 (-----) [002] ...1 24574.043072: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
69536           <...>-13131 (-----) [002] ...1 24574.043113: tracing_mark_write: E|13131
69537           <...>-13131 (-----) [002] ...1 24574.043118: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
69538           <...>-13131 (-----) [002] ...1 24574.043123: tracing_mark_write: E|13131
69539           <...>-13131 (-----) [002] ...1 24574.043128: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
69540           <...>-13131 (-----) [002] ...1 24574.043132: tracing_mark_write: E|13131
69541           <...>-13131 (-----) [002] ...1 24574.043136: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
69542           <...>-13131 (-----) [002] ...1 24574.043258: tracing_mark_write: E|13131
69543           <...>-13131 (-----) [002] ...1 24574.043262: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
69544           <...>-13131 (-----) [002] d..2 24574.043272: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
69545    RenderThread-24437 (24151) [002] .... 24574.043277: binder_transaction_received: transaction=1670201
69546    RenderThread-24437 (24151) [002] d..2 24574.044280: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13398 next_prio=110
69547           <...>-13398 (-----) [002] d..2 24574.044288: sched_switch: prev_comm=id.nn.benchmark prev_pid=13398 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
69548     logd.writer-563   (  555) [002] d..2 24574.044377: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13399 next_prio=110
69549           <...>-13399 (-----) [002] d.h3 24574.044383: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
69550           <...>-13399 (-----) [002] d.h4 24574.044393: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
69551           <...>-13399 (-----) [002] dnh4 24574.044397: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
69552           <...>-13399 (-----) [002] d..2 24574.044404: sched_switch: prev_comm=id.nn.benchmark prev_pid=13399 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=24437 next_prio=120
69553           <...>-13157 (-----) [000] d.h2 24574.044478: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
69554           <...>-13157 (-----) [000] d.h3 24574.044490: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
69555    RenderThread-24437 (24151) [002] d..2 24574.044497: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
69556 kgsl_worker_thr-246   (  246) [002] d..2 24574.044535: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
69557 kgsl_worker_thr-246   (  246) [002] d..3 24574.044546: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
69558 kgsl_worker_thr-246   (  246) [002] d..2 24574.044555: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
69559  kworker/u16:10-23868 (23868) [002] d..2 24574.044583: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
69560    RenderThread-24437 (24151) [002] .... 24574.044634: binder_transaction: transaction=1670202 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
69561    RenderThread-24437 (24151) [002] d..4 24574.044641: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
69562 id.nn.benchmark-13156 (13131) [004] dnh1 24574.044656: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
69563 id.nn.benchmark-13156 (13131) [004] d..2 24574.044658: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
69564<...>-23903 ( 23896) [004] .... 24574.044660: binder_transaction_received: transaction=1670202
69565    RenderThread-24437 (24151) [002] d..2 24574.044660: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13399 next_prio=110
69566<...>-23903 ( 23896) [004] .... 24574.044709: binder_transaction: transaction=1670203 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
69567<...>-23903 ( 23896) [004] d..2 24574.044711: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
69568<...>-23903 ( 23896) [004] d..2 24574.044726: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
69569           <...>-13399 (-----) [002] dnh1 24574.044726: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
69570           <...>-13399 (-----) [002] d..2 24574.044733: sched_switch: prev_comm=id.nn.benchmark prev_pid=13399 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=24437 next_prio=120
69571    RenderThread-24437 (24151) [002] .... 24574.044737: binder_transaction_received: transaction=1670203
69572    RenderThread-24437 (24151) [002] d..2 24574.044783: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13399 next_prio=110
69573           <...>-13399 (-----) [002] d..2 24574.044791: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
69574           <...>-13399 (-----) [002] d..3 24574.044797: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
69575           <...>-13399 (-----) [002] d..2 24574.045126: sched_switch: prev_comm=id.nn.benchmark prev_pid=13399 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
69576     logd.writer-563   (  555) [002] d..2 24574.045310: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13400 next_prio=110
69577           <...>-13400 (-----) [002] ...1 24574.045337: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
69578           <...>-13400 (-----) [002] ...1 24574.045343: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
69579           <...>-13400 (-----) [002] d..2 24574.045403: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
69580           <...>-13400 (-----) [002] d..3 24574.045412: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
69581           <...>-13400 (-----) [002] ...1 24574.045478: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69582           <...>-13400 (-----) [002] ...1 24574.045484: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69583 id.nn.benchmark-13156 (13131) [004] d.h1 24574.046067: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=004
69584 id.nn.benchmark-13156 (13131) [004] d.h2 24574.046099: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
69585           <...>-13400 (-----) [002] dnh1 24574.046101: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
69586 id.nn.benchmark-13156 (13131) [004] dnh3 24574.046103: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
69587 id.nn.benchmark-13156 (13131) [004] dnh2 24574.046103: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
69588           <...>-13400 (-----) [002] d..2 24574.046109: sched_switch: prev_comm=id.nn.benchmark prev_pid=13400 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
69589 id.nn.benchmark-13156 (13131) [004] d..2 24574.046121: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
69590        DispSync-23904 (23896) [002] d..1 24574.046123: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
69591           <...>-13157 (-----) [000] dnh1 24574.046123: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
69592         sugov:4-560   (  560) [004] d..2 24574.046125: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
69593           <...>-13157 (-----) [000] d..2 24574.046129: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
69594        DispSync-23904 (23896) [002] d..2 24574.046135: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
69595         sugov:0-559   (  559) [000] d..2 24574.046137: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
69596 id.nn.benchmark-13159 (13131) [001] d..2 24574.046143: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
69597        DispSync-23904 (23896) [002] d..2 24574.046148: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13400 next_prio=110
69598   sfEventThread-23906 (23896) [001] d..3 24574.046167: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
69599   sfEventThread-23906 (23896) [001] d..4 24574.046179: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
69600           <...>-13400 (-----) [002] d..2 24574.046188: sched_switch: prev_comm=id.nn.benchmark prev_pid=13400 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
69601   sfEventThread-23906 (23896) [001] d..2 24574.046192: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
69602           <...>-13154 (-----) [006] d..3 24574.046287: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
69603 id.nn.benchmark-13155 (13131) [005] d..2 24574.046289: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
69604          <idle>-0     (-----) [005] d..1 24574.046295: cpu_idle: state=0 cpu_id=5
69605           <...>-13154 (-----) [006] d..2 24574.046295: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
69606           <...>-13157 (-----) [000] dnh1 24574.046297: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
69607          <idle>-0     (-----) [006] d..1 24574.046301: cpu_idle: state=0 cpu_id=6
69608           <...>-13157 (-----) [000] d..2 24574.046301: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
69609          <idle>-0     (-----) [006] .n.1 24574.046327: cpu_idle: state=4294967295 cpu_id=6
69610          <idle>-0     (-----) [006] d..2 24574.046344: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
69611     migration/0-13    (   13) [000] d..2 24574.046361: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
69612  surfaceflinger-23896 (23896) [002] d..1 24574.046412: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
69613  surfaceflinger-23896 (23896) [002] d..2 24574.046428: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
69614     logd.writer-563   (  555) [000] d..2 24574.046435: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
69615   sfEventThread-23906 (23896) [000] d..2 24574.046458: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
69616     logd.writer-563   (  555) [000] d..2 24574.046519: 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
69617          <idle>-0     (-----) [000] d..1 24574.046532: cpu_idle: state=0 cpu_id=0
69618  surfaceflinger-23896 (23896) [002] ...1 24574.046554: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
69619  surfaceflinger-23896 (23896) [002] ...1 24574.046557: tracing_mark_write: E|23896
69620  surfaceflinger-23896 (23896) [002] .... 24574.046598: binder_transaction: transaction=1670204 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
69621  surfaceflinger-23896 (23896) [002] ...2 24574.046617: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
69622  surfaceflinger-23896 (23896) [002] d..4 24574.046623: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
69623  surfaceflinger-23896 (23896) [002] d..5 24574.046643: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
69624 id.nn.benchmark-13160 (13131) [007] d..3 24574.046647: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
69625          <idle>-0     (-----) [000] .n.1 24574.046649: cpu_idle: state=4294967295 cpu_id=0
69626 id.nn.benchmark-13159 (13131) [001] dnh1 24574.046674: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
69627 id.nn.benchmark-13160 (13131) [007] d..2 24574.046674: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
69628  surfaceflinger-23896 (23896) [002] d.h5 24574.046676: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
69629          <idle>-0     (-----) [000] d..2 24574.046676: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
69630 id.nn.benchmark-13159 (13131) [001] d..2 24574.046678: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
69631          <idle>-0     (-----) [007] d..1 24574.046685: cpu_idle: state=0 cpu_id=7
69632  surfaceflinger-23896 (23896) [002] d.h5 24574.046692: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
69633          <idle>-0     (-----) [007] dnh2 24574.046699: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
69634  surfaceflinger-23896 (23896) [002] d.h6 24574.046702: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
69635          <idle>-0     (-----) [007] .n.1 24574.046704: cpu_idle: state=4294967295 cpu_id=7
69636          <idle>-0     (-----) [007] d..2 24574.046725: 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
69637  HwBinder:598_3-633   (  598) [000] .... 24574.046728: binder_transaction_received: transaction=1670204
69638     migration/1-17    (   17) [001] d..2 24574.046729: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
69639         sugov:4-560   (  560) [007] d..2 24574.046730: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
69640  surfaceflinger-23896 (23896) [002] d..2 24574.046734: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13400 next_prio=110
69641         sugov:0-559   (  559) [001] d..2 24574.046742: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
69642          <idle>-0     (-----) [001] d..1 24574.046753: cpu_idle: state=0 cpu_id=1
69643  HwBinder:598_3-633   (  598) [000] ...1 24574.046765: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
69644 id.nn.benchmark-13156 (13131) [004] d..3 24574.046767: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
69645 id.nn.benchmark-13156 (13131) [004] d..2 24574.046774: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
69646 id.nn.benchmark-13158 (13131) [003] dnh1 24574.046778: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
69647          <idle>-0     (-----) [004] d..1 24574.046781: cpu_idle: state=0 cpu_id=4
69648 id.nn.benchmark-13158 (13131) [003] d..2 24574.046784: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
69649          <idle>-0     (-----) [004] .n.1 24574.046808: cpu_idle: state=4294967295 cpu_id=4
69650          <idle>-0     (-----) [004] d..2 24574.046826: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
69651<...>-33 ( 33) [003] d..2 24574.046837: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
69652  HwBinder:598_3-633   (  598) [000] ...1 24574.046841: tracing_mark_write: B|598|HWCSession::PresentDisplay::
69653          <idle>-0     (-----) [003] d..1 24574.046848: cpu_idle: state=0 cpu_id=3
69654  HwBinder:598_3-633   (  598) [000] ...1 24574.046953: tracing_mark_write: B|598|HWDeviceDRM::Commit::
69655  HwBinder:598_3-633   (  598) [000] ...1 24574.046961: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
69656  HwBinder:598_3-633   (  598) [000] d..2 24574.047331: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
69657  HwBinder:598_3-633   (  598) [000] d..3 24574.047351: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
69658          <idle>-0     (-----) [003] .n.1 24574.047356: cpu_idle: state=4294967295 cpu_id=3
69659          <idle>-0     (-----) [003] d..2 24574.047361: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
69660  HwBinder:598_3-633   (  598) [000] ...1 24574.047406: tracing_mark_write: E|598
69661  HwBinder:598_3-633   (  598) [000] ...1 24574.047409: tracing_mark_write: E|598
69662  HwBinder:598_3-633   (  598) [000] ...1 24574.047449: tracing_mark_write: E|598
69663  HwBinder:598_3-633   (  598) [000] ...1 24574.047480: tracing_mark_write: E|598
69664  HwBinder:598_3-633   (  598) [000] .... 24574.047489: binder_transaction: transaction=1670205 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
69665  HwBinder:598_3-633   (  598) [000] d..2 24574.047500: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
69666  HwBinder:598_3-633   (  598) [000] d..3 24574.047515: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
69667  HwBinder:598_3-633   (  598) [000] .... 24574.047518: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
69668          <idle>-0     (-----) [001] .n.1 24574.047520: cpu_idle: state=4294967295 cpu_id=1
69669          <idle>-0     (-----) [001] d..2 24574.047526: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
69670  surfaceflinger-23896 (23896) [001] .... 24574.047531: binder_transaction_received: transaction=1670205
69671 id.nn.benchmark-13159 (13131) [007] d.s2 24574.047553: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
69672           <...>-13400 (-----) [002] d.s1 24574.047563: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
69673  surfaceflinger-23896 (23896) [001] d.h2 24574.047580: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
69674  HwBinder:598_3-633   (  598) [000] d..2 24574.047585: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69675           <...>-13400 (-----) [002] d.s2 24574.047589: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
69676          <idle>-0     (-----) [000] d..1 24574.047595: cpu_idle: state=0 cpu_id=0
69677  surfaceflinger-23896 (23896) [001] d..2 24574.047803: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
69678           <...>-13400 (-----) [002] d..1 24574.047843: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=006
69679           <...>-13400 (-----) [002] d..1 24574.047859: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
69680          <idle>-0     (-----) [005] dnh2 24574.047864: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
69681          <idle>-0     (-----) [005] .n.1 24574.047866: cpu_idle: state=4294967295 cpu_id=5
69682          <idle>-0     (-----) [005] dn.2 24574.047868: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=005
69683          <idle>-0     (-----) [005] d..2 24574.047870: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
69684           <...>-13400 (-----) [002] d..1 24574.047870: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=004
69685  kworker/u16:10-23868 (23868) [001] d..2 24574.047881: 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
69686           <...>-13400 (-----) [002] d..1 24574.047882: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=007
69687 id.nn.benchmark-13158 (13131) [004] d.h1 24574.047882: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=004
69688 id.nn.benchmark-13159 (13131) [007] d.h1 24574.047894: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=007
69689     rcu_preempt-7     (    7) [001] d..2 24574.047914: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
69690 id.nn.benchmark-13160 (13131) [001] d.h4 24574.047944: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
69691 id.nn.benchmark-13160 (13131) [001] d.h4 24574.047952: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
69692 id.nn.benchmark-13159 (13131) [007] dnh1 24574.047954: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
69693 id.nn.benchmark-13159 (13131) [007] d..2 24574.047958: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
69694         sugov:4-560   (  560) [007] d..2 24574.047962: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
69695 id.nn.benchmark-13160 (13131) [001] d.h5 24574.047964: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
69696          <idle>-0     (-----) [000] .n.1 24574.047969: cpu_idle: state=4294967295 cpu_id=0
69697          <idle>-0     (-----) [000] d..2 24574.047975: 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
69698 crtc_commit:111-253   (  253) [003] d..2 24574.047993: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
69699          <idle>-0     (-----) [003] d..1 24574.048001: cpu_idle: state=0 cpu_id=3
69700         sugov:0-559   (  559) [000] d..2 24574.048003: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
69701           <...>-13154 (-----) [005] d.s2 24574.050888: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
69702 id.nn.benchmark-13159 (13131) [007] d.s2 24574.050891: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
69703          <idle>-0     (-----) [003] dnh2 24574.050908: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
69704          <idle>-0     (-----) [003] dnh2 24574.050910: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
69705          <idle>-0     (-----) [003] .n.1 24574.050916: cpu_idle: state=4294967295 cpu_id=3
69706          <idle>-0     (-----) [003] d..2 24574.050923: 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
69707  kworker/u16:10-23868 (23868) [003] .... 24574.051092: clk_set_rate: l3_cluster1_vote_clk 1478400000
69708  kworker/u16:10-23868 (23868) [003] .... 24574.051098: clk_set_rate: l3_clk 1478400000
69709  kworker/u16:10-23868 (23868) [003] d..2 24574.051208: 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
69710     rcu_preempt-7     (    7) [003] d..2 24574.051213: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=006
69711           <...>-13157 (-----) [006] dnh1 24574.051240: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=006
69712           <...>-13157 (-----) [006] d..2 24574.051243: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
69713         rcuop/0-10    (   10) [006] d..2 24574.051249: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
69714     rcu_preempt-7     (    7) [003] d..2 24574.051266: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
69715 id.nn.benchmark-13155 (13131) [003] d.h4 24574.051294: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
69716 id.nn.benchmark-13155 (13131) [003] d.h4 24574.051301: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
69717 id.nn.benchmark-13159 (13131) [007] dnh1 24574.051305: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
69718 id.nn.benchmark-13159 (13131) [007] d..2 24574.051307: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
69719         sugov:4-560   (  560) [007] d..2 24574.051310: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
69720 id.nn.benchmark-13155 (13131) [003] d.h5 24574.051313: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
69721           <...>-13400 (-----) [002] d..2 24574.051322: sched_switch: prev_comm=id.nn.benchmark prev_pid=13400 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
69722         sugov:0-559   (  559) [002] d..2 24574.051331: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13400 next_prio=110
69723           <...>-13400 (-----) [002] ...1 24574.051644: tracing_mark_write: E|13131
69724           <...>-13400 (-----) [002] ...1 24574.051648: tracing_mark_write: E|13131
69725           <...>-13400 (-----) [002] ...1 24574.051666: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69726           <...>-13400 (-----) [002] ...1 24574.051672: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69727           <...>-13400 (-----) [002] ...1 24574.052370: tracing_mark_write: E|13131
69728           <...>-13400 (-----) [002] ...1 24574.052375: tracing_mark_write: E|13131
69729           <...>-13400 (-----) [002] ...1 24574.052396: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69730           <...>-13400 (-----) [002] ...1 24574.052400: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69731           <...>-13400 (-----) [002] ...1 24574.052734: tracing_mark_write: E|13131
69732           <...>-13400 (-----) [002] ...1 24574.052738: tracing_mark_write: E|13131
69733           <...>-13400 (-----) [002] ...1 24574.052750: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69734           <...>-13400 (-----) [002] ...1 24574.052754: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69735           <...>-13400 (-----) [002] ...1 24574.052992: tracing_mark_write: E|13131
69736           <...>-13400 (-----) [002] ...1 24574.052995: tracing_mark_write: E|13131
69737           <...>-13400 (-----) [002] ...1 24574.053007: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69738           <...>-13400 (-----) [002] ...1 24574.053011: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69739           <...>-13400 (-----) [002] ...1 24574.053416: tracing_mark_write: E|13131
69740           <...>-13400 (-----) [002] ...1 24574.053420: tracing_mark_write: E|13131
69741           <...>-13400 (-----) [002] ...1 24574.053430: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69742           <...>-13400 (-----) [002] ...1 24574.053434: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69743           <...>-13400 (-----) [002] ...1 24574.053831: tracing_mark_write: E|13131
69744           <...>-13400 (-----) [002] ...1 24574.053835: tracing_mark_write: E|13131
69745           <...>-13400 (-----) [002] ...1 24574.053856: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69746           <...>-13400 (-----) [002] ...1 24574.053861: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69747           <...>-13400 (-----) [002] ...1 24574.054055: tracing_mark_write: E|13131
69748           <...>-13400 (-----) [002] ...1 24574.054059: tracing_mark_write: E|13131
69749           <...>-13400 (-----) [002] ...1 24574.054073: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69750           <...>-13400 (-----) [002] ...1 24574.054077: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69751 id.nn.benchmark-13156 (13131) [000] d.h4 24574.054149: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
69752 id.nn.benchmark-13156 (13131) [000] d.h5 24574.054162: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
69753 id.nn.benchmark-13156 (13131) [000] d.h4 24574.054166: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
69754           <...>-13400 (-----) [002] d..2 24574.054173: sched_switch: prev_comm=id.nn.benchmark prev_pid=13400 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
69755 id.nn.benchmark-13159 (13131) [007] dnh1 24574.054185: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
69756 id.nn.benchmark-13159 (13131) [007] d..2 24574.054188: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
69757  crtc_event:111-254   (  254) [002] d..2 24574.054192: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13400 next_prio=110
69758 id.nn.benchmark-13156 (13131) [000] d.H2 24574.054236: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
69759 id.nn.benchmark-13156 (13131) [000] d.H2 24574.054248: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
69760           <...>-13157 (-----) [006] dnh1 24574.054251: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
69761           <...>-13157 (-----) [006] d..2 24574.054254: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
69762 id.nn.benchmark-13156 (13131) [000] d.H3 24574.054256: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
69763         sugov:4-560   (  560) [006] d..2 24574.054258: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
69764           <...>-13400 (-----) [002] d..2 24574.054264: sched_switch: prev_comm=id.nn.benchmark prev_pid=13400 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
69765         sugov:0-559   (  559) [002] d..2 24574.054271: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13400 next_prio=110
69766 crtc_commit:111-253   (  253) [007] d..2 24574.054290: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
69767           <...>-13400 (-----) [002] ...1 24574.054313: tracing_mark_write: E|13131
69768           <...>-13400 (-----) [002] ...1 24574.054318: tracing_mark_write: E|13131
69769           <...>-13400 (-----) [002] ...1 24574.054331: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
69770           <...>-13400 (-----) [002] ...1 24574.054336: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
69771           <...>-13400 (-----) [002] ...1 24574.054657: tracing_mark_write: E|13131
69772           <...>-13400 (-----) [002] ...1 24574.054661: tracing_mark_write: E|13131
69773           <...>-13400 (-----) [002] ...1 24574.054670: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
69774           <...>-13400 (-----) [002] ...1 24574.054673: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
69775           <...>-13400 (-----) [002] ...1 24574.054726: tracing_mark_write: E|13131
69776           <...>-13400 (-----) [002] ...1 24574.054729: tracing_mark_write: E|13131
69777           <...>-13400 (-----) [002] ...1 24574.054738: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
69778           <...>-13400 (-----) [002] ...1 24574.054742: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
69779           <...>-13400 (-----) [002] ...1 24574.054759: tracing_mark_write: E|13131
69780           <...>-13400 (-----) [002] ...1 24574.054762: tracing_mark_write: E|13131
69781           <...>-13400 (-----) [002] ...1 24574.054774: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
69782           <...>-13400 (-----) [002] ...1 24574.054777: tracing_mark_write: E|13131
69783           <...>-13400 (-----) [002] ...1 24574.054787: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
69784           <...>-13400 (-----) [002] ...1 24574.054792: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
69785           <...>-13400 (-----) [002] ...1 24574.055646: tracing_mark_write: E|13131
69786           <...>-13400 (-----) [002] ...1 24574.055649: tracing_mark_write: E|13131
69787           <...>-13400 (-----) [002] ...1 24574.055656: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69788           <...>-13400 (-----) [002] ...1 24574.055660: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69789           <...>-13400 (-----) [002] ...1 24574.055744: tracing_mark_write: E|13131
69790           <...>-13400 (-----) [002] ...1 24574.055748: tracing_mark_write: E|13131
69791           <...>-13400 (-----) [002] d..2 24574.055794: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
69792           <...>-13400 (-----) [002] d..3 24574.055808: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
69793           <...>-13400 (-----) [002] ...1 24574.055828: tracing_mark_write: E|13131
69794           <...>-13400 (-----) [002] d..1 24574.055833: sched_waking: comm=id.nn.benchmark pid=13399 prio=110 target_cpu=002
69795 id.nn.benchmark-13159 (13131) [007] dnh1 24574.055857: sched_wakeup: comm=id.nn.benchmark pid=13399 prio=110 target_cpu=007
69796 id.nn.benchmark-13159 (13131) [007] d..2 24574.055882: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13399 next_prio=110
69797           <...>-13400 (-----) [002] d.h3 24574.055883: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
69798           <...>-13399 (-----) [007] d..2 24574.055894: sched_switch: prev_comm=id.nn.benchmark prev_pid=13399 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
69799           <...>-13400 (-----) [002] d.h3 24574.055895: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
69800 id.nn.benchmark-13159 (13131) [007] dnh1 24574.055897: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
69801 id.nn.benchmark-13159 (13131) [007] d..2 24574.055900: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
69802           <...>-13400 (-----) [002] dnh4 24574.055901: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
69803         sugov:4-560   (  560) [007] d..2 24574.055903: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
69804           <...>-13400 (-----) [002] d..2 24574.055907: sched_switch: prev_comm=id.nn.benchmark prev_pid=13400 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
69805         sugov:0-559   (  559) [002] d..2 24574.055914: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
69806     logd.writer-563   (  555) [002] d..2 24574.055967: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13400 next_prio=110
69807           <...>-13400 (-----) [002] ...1 24574.055986: tracing_mark_write: E|13131
69808           <...>-13400 (-----) [002] d..1 24574.056202: sched_waking: comm=id.nn.benchmark pid=13399 prio=110 target_cpu=007
69809 id.nn.benchmark-13159 (13131) [007] dnh1 24574.056216: sched_wakeup: comm=id.nn.benchmark pid=13399 prio=110 target_cpu=007
69810 id.nn.benchmark-13159 (13131) [007] d..2 24574.056218: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13399 next_prio=110
69811           <...>-13399 (-----) [007] d..2 24574.056257: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
69812           <...>-13400 (-----) [002] d..2 24574.056291: sched_switch: prev_comm=id.nn.benchmark prev_pid=13400 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
69813           <...>-13399 (-----) [007] d..1 24574.056291: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=002
69814 id.nn.benchmark-13159 (13131) [002] d.h3 24574.056298: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
69815           <...>-13399 (-----) [007] dn.2 24574.056306: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
69816           <...>-13399 (-----) [007] d..2 24574.056326: sched_switch: prev_comm=id.nn.benchmark prev_pid=13399 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
69817           <...>-13131 (-----) [007] d..2 24574.056333: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13399 next_prio=110
69818           <...>-13399 (-----) [007] d..1 24574.056362: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
69819           <...>-13399 (-----) [007] dn.2 24574.056365: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
69820           <...>-13399 (-----) [007] d..2 24574.056368: sched_switch: prev_comm=id.nn.benchmark prev_pid=13399 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
69821           <...>-13131 (-----) [007] ...1 24574.056377: tracing_mark_write: E|13131
69822           <...>-13131 (-----) [007] ...1 24574.056380: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
69823           <...>-13131 (-----) [007] ...1 24574.056383: tracing_mark_write: E|13131
69824           <...>-13131 (-----) [007] ...1 24574.056384: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
69825           <...>-13131 (-----) [007] ...1 24574.056386: tracing_mark_write: E|13131
69826           <...>-13131 (-----) [007] ...1 24574.056472: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
69827           <...>-13131 (-----) [007] ...1 24574.056493: tracing_mark_write: E|13131
69828           <...>-13131 (-----) [007] ...1 24574.056495: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
69829 id.nn.benchmark-13156 (13131) [000] d.h4 24574.056498: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
69830           <...>-13131 (-----) [007] ...1 24574.056498: tracing_mark_write: E|13131
69831           <...>-13131 (-----) [007] ...1 24574.056500: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
69832           <...>-13131 (-----) [007] ...1 24574.056501: tracing_mark_write: E|13131
69833           <...>-13131 (-----) [007] ...1 24574.056503: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
69834           <...>-13131 (-----) [007] dnh1 24574.056511: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
69835           <...>-13131 (-----) [007] d..2 24574.056515: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
69836 crtc_commit:111-253   (  253) [007] d..2 24574.056542: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
69837           <...>-13131 (-----) [007] ...1 24574.056598: tracing_mark_write: E|13131
69838           <...>-13131 (-----) [007] ...1 24574.056599: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
69839           <...>-13131 (-----) [007] d..2 24574.056604: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13399 next_prio=110
69840           <...>-13399 (-----) [007] d..2 24574.056626: sched_switch: prev_comm=id.nn.benchmark prev_pid=13399 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13401 next_prio=110
69841           <...>-13401 (-----) [007] d..2 24574.056779: sched_switch: prev_comm=id.nn.benchmark prev_pid=13401 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13402 next_prio=110
69842 id.nn.benchmark-13156 (13131) [000] d.h4 24574.056786: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
69843           <...>-13402 (-----) [007] ...1 24574.056789: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
69844           <...>-13402 (-----) [007] ...1 24574.056791: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
69845           <...>-13402 (-----) [007] dnh1 24574.056806: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
69846           <...>-13402 (-----) [007] d..2 24574.056809: sched_switch: prev_comm=id.nn.benchmark prev_pid=13402 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
69847 id.nn.benchmark-13156 (13131) [000] d.h2 24574.056835: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
69848  crtc_event:111-254   (  254) [007] d..2 24574.056836: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13402 next_prio=110
69849 id.nn.benchmark-13156 (13131) [000] d.h2 24574.056843: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
69850           <...>-13402 (-----) [007] dnh1 24574.056846: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
69851           <...>-13402 (-----) [007] d..2 24574.056848: sched_switch: prev_comm=id.nn.benchmark prev_pid=13402 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
69852 id.nn.benchmark-13156 (13131) [000] d.h3 24574.056850: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
69853         sugov:4-560   (  560) [007] d..2 24574.056852: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13402 next_prio=110
69854 id.nn.benchmark-13159 (13131) [002] d..2 24574.056859: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
69855         sugov:0-559   (  559) [002] d..2 24574.056867: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
69856           <...>-13402 (-----) [007] ...1 24574.056888: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69857           <...>-13402 (-----) [007] ...1 24574.056890: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69858     logd.writer-563   (  555) [002] d..2 24574.057168: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
69859           <...>-13402 (-----) [007] d.s2 24574.057559: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
69860 id.nn.benchmark-13160 (13131) [001] d.h2 24574.057561: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
69861 id.nn.benchmark-13155 (13131) [003] d.s1 24574.057577: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
69862           <...>-13402 (-----) [007] dns3 24574.057580: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
69863 id.nn.benchmark-13160 (13131) [001] dnh3 24574.057580: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
69864           <...>-13402 (-----) [007] dns2 24574.057582: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
69865 id.nn.benchmark-13160 (13131) [001] d..2 24574.057590: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
69866 id.nn.benchmark-13158 (13131) [004] d.h2 24574.057595: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
69867           <...>-13402 (-----) [007] dns3 24574.057601: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
69868 id.nn.benchmark-13158 (13131) [004] dnh3 24574.057631: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
69869           <...>-13402 (-----) [007] d..2 24574.057633: sched_switch: prev_comm=id.nn.benchmark prev_pid=13402 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
69870 id.nn.benchmark-13158 (13131) [004] dnh2 24574.057654: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
69871  crtc_event:111-254   (  254) [007] d..2 24574.057657: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
69872 id.nn.benchmark-13158 (13131) [004] dnh1 24574.057665: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
69873 id.nn.benchmark-13158 (13131) [004] d..2 24574.057668: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
69874         sugov:4-560   (  560) [004] d..2 24574.057674: 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
69875     migration/1-17    (   17) [001] d..2 24574.057687: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
69876     rcu_preempt-7     (    7) [001] dnh3 24574.057693: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
69877     rcu_preempt-7     (    7) [001] d..2 24574.057720: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
69878         sugov:0-559   (  559) [001] d..2 24574.057730: 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
69879     rcu_preempt-7     (    7) [001] d..2 24574.057737: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=004
69880     rcu_preempt-7     (    7) [001] d..2 24574.057764: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
69881  kworker/u16:10-23868 (23868) [004] d.h3 24574.057766: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=004
69882     rcu_preempt-7     (    7) [001] d..3 24574.057778: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=001
69883     rcu_preempt-7     (    7) [001] d..2 24574.057779: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=007
69884  kworker/u16:10-23868 (23868) [004] d..2 24574.057783: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
69885 id.nn.benchmark-13160 (13131) [007] dnh1 24574.057803: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=007
69886         rcuop/4-45    (   45) [004] d..2 24574.057804: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
69887 id.nn.benchmark-13160 (13131) [007] d..2 24574.057805: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
69888     rcu_preempt-7     (    7) [001] d..2 24574.057807: 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
69889         rcuop/6-61    (   61) [001] d..2 24574.057811: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=002
69890         rcuop/2-29    (   29) [007] d..2 24574.057819: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13402 next_prio=110
69891         rcuop/6-61    (   61) [001] d..3 24574.057825: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=001
69892         rcuop/6-61    (   61) [001] d..2 24574.057831: 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
69893           <...>-13402 (-----) [007] ...1 24574.057862: tracing_mark_write: E|13131
69894           <...>-13402 (-----) [007] ...1 24574.057863: tracing_mark_write: E|13131
69895           <...>-13402 (-----) [007] ...1 24574.057868: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69896         rcuop/7-69    (   69) [001] d..2 24574.057868: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
69897           <...>-13402 (-----) [007] ...1 24574.057869: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69898           <...>-13402 (-----) [007] ...1 24574.058240: tracing_mark_write: E|13131
69899           <...>-13402 (-----) [007] ...1 24574.058241: tracing_mark_write: E|13131
69900           <...>-13402 (-----) [007] ...1 24574.058247: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69901           <...>-13402 (-----) [007] ...1 24574.058248: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69902           <...>-13402 (-----) [007] ...1 24574.058459: tracing_mark_write: E|13131
69903           <...>-13402 (-----) [007] ...1 24574.058460: tracing_mark_write: E|13131
69904           <...>-13402 (-----) [007] ...1 24574.058464: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69905           <...>-13402 (-----) [007] ...1 24574.058465: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69906 id.nn.benchmark-13159 (13131) [002] d.h1 24574.058540: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
69907           <...>-13402 (-----) [007] dnh1 24574.058563: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=007
69908 id.nn.benchmark-13159 (13131) [002] d.h2 24574.058588: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
69909           <...>-13402 (-----) [007] d..2 24574.058588: sched_switch: prev_comm=id.nn.benchmark prev_pid=13402 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
69910 id.nn.benchmark-13159 (13131) [002] d.h2 24574.058595: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
69911 id.nn.benchmark-13158 (13131) [004] dnh1 24574.058598: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
69912 id.nn.benchmark-13158 (13131) [004] d..2 24574.058601: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
69913        DispSync-23904 (23896) [007] d..1 24574.058603: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
69914 id.nn.benchmark-13159 (13131) [002] d.h3 24574.058603: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
69915         sugov:4-560   (  560) [004] d..2 24574.058604: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
69916 id.nn.benchmark-13160 (13131) [001] d..2 24574.058613: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
69917 id.nn.benchmark-13159 (13131) [002] dnh1 24574.058615: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
69918        DispSync-23904 (23896) [007] d..2 24574.058618: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13402 next_prio=110
69919 id.nn.benchmark-13159 (13131) [002] d..2 24574.058621: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
69920         sugov:0-559   (  559) [001] d..2 24574.058622: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
69921  appEventThread-23905 (23896) [002] d..3 24574.058668: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
69922           <...>-13402 (-----) [007] dnh1 24574.058686: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
69923           <...>-13402 (-----) [007] d..2 24574.058688: sched_switch: prev_comm=id.nn.benchmark prev_pid=13402 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
69924  appEventThread-23905 (23896) [002] d..2 24574.058697: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
69925<...>-24151 ( 24151) [007] .... 24574.058871: binder_transaction: transaction=1670206 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
69926<...>-24151 ( 24151) [007] d..4 24574.058877: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
69927<...>-24151 ( 24151) [007] d..5 24574.058890: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
69928 id.nn.benchmark-13158 (13131) [004] d..2 24574.058896: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
69929<...>-23903 ( 23896) [004] .... 24574.058900: binder_transaction_received: transaction=1670206
69930<...>-24151 ( 24151) [007] d..3 24574.058911: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
69931<...>-23903 ( 23896) [004] d..1 24574.058914: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
69932<...>-24151 ( 24151) [007] d..4 24574.058924: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
69933 id.nn.benchmark-13159 (13131) [002] dnh1 24574.058925: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
69934 id.nn.benchmark-13159 (13131) [002] d..2 24574.058931: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
69935<...>-23903 ( 23896) [004] d..2 24574.058933: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
69936  appEventThread-23905 (23896) [002] d..2 24574.058951: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
69937<...>-24151 ( 24151) [007] d..2 24574.059009: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
69938    RenderThread-24437 (24151) [007] d..1 24574.059066: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
69939    RenderThread-24437 (24151) [007] d..2 24574.059071: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
69940    RenderThread-24437 (24151) [007] .... 24574.059103: binder_transaction: transaction=1670207 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
69941    RenderThread-24437 (24151) [007] d..4 24574.059106: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
69942    RenderThread-24437 (24151) [007] d..5 24574.059116: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
69943    RenderThread-24437 (24151) [007] d..2 24574.059120: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
69944 id.nn.benchmark-13158 (13131) [004] d..2 24574.059123: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
69945<...>-23903 ( 23896) [004] .... 24574.059124: binder_transaction_received: transaction=1670207
69946<...>-24151 ( 24151) [007] d..2 24574.059143: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13402 next_prio=110
69947<...>-23903 ( 23896) [004] .... 24574.059147: binder_transaction: transaction=1670208 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
69948           <...>-13402 (-----) [007] ...1 24574.059150: tracing_mark_write: E|13131
69949<...>-23903 ( 23896) [004] d..2 24574.059152: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
69950           <...>-13402 (-----) [007] ...1 24574.059152: tracing_mark_write: E|13131
69951<...>-23903 ( 23896) [004] d..3 24574.059160: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
69952           <...>-13402 (-----) [007] d..2 24574.059163: sched_switch: prev_comm=id.nn.benchmark prev_pid=13402 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=24437 next_prio=120
69953    RenderThread-24437 (24151) [007] .... 24574.059168: binder_transaction_received: transaction=1670208
69954<...>-23903 ( 23896) [004] d..2 24574.059172: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
69955 id.nn.benchmark-13156 (13131) [000] d.h1 24574.059576: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
69956 id.nn.benchmark-13156 (13131) [000] dnh2 24574.059585: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
69957 id.nn.benchmark-13156 (13131) [000] d..2 24574.059594: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
69958 irq/79-1436400.-24613 (24613) [000] d..2 24574.059750: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
69959    RenderThread-24437 (24151) [007] d..2 24574.059769: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13402 next_prio=110
69960           <...>-13402 (-----) [007] ...1 24574.059773: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
69961 id.nn.benchmark-13155 (13131) [003] d.s2 24574.059775: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
69962           <...>-13402 (-----) [007] ...1 24574.059778: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
69963 id.nn.benchmark-13155 (13131) [003] d.s3 24574.059785: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
69964 id.nn.benchmark-13156 (13131) [000] d..2 24574.059792: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
69965 irq/79-1436400.-24613 (24613) [000] d..2 24574.059809: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
69966           <...>-13402 (-----) [007] d.h1 24574.059868: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
69967           <...>-13402 (-----) [007] d.h2 24574.059875: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
69968           <...>-13402 (-----) [007] dnh2 24574.059877: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
69969           <...>-13402 (-----) [007] d..2 24574.059881: sched_switch: prev_comm=id.nn.benchmark prev_pid=13402 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
69970    RenderThread-24437 (24151) [007] .... 24574.059965: binder_transaction: transaction=1670209 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
69971    RenderThread-24437 (24151) [007] d..4 24574.059969: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
69972    RenderThread-24437 (24151) [007] d..5 24574.059981: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
69973    RenderThread-24437 (24151) [007] d..2 24574.059986: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13402 next_prio=110
69974 id.nn.benchmark-13158 (13131) [004] d..2 24574.059987: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
69975<...>-23903 ( 23896) [004] .... 24574.059989: binder_transaction_received: transaction=1670209
69976 id.nn.benchmark-13156 (13131) [000] d.h2 24574.059994: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
69977           <...>-13402 (-----) [007] dnh1 24574.060016: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
69978           <...>-13402 (-----) [007] d..2 24574.060020: sched_switch: prev_comm=id.nn.benchmark prev_pid=13402 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
69979<...>-23903 ( 23896) [004] .... 24574.060038: binder_transaction: transaction=1670210 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
69980<...>-23903 ( 23896) [004] d..2 24574.060040: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
69981 kgsl_worker_thr-246   (  246) [007] d..2 24574.060043: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
69982 id.nn.benchmark-13156 (13131) [000] d.h2 24574.060045: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
69983<...>-23903 ( 23896) [004] d..3 24574.060046: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
69984 kgsl_worker_thr-246   (  246) [007] d..3 24574.060050: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
69985<...>-23903 ( 23896) [004] d..2 24574.060054: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
69986 id.nn.benchmark-13156 (13131) [000] d.h2 24574.060056: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
69987 kgsl_worker_thr-246   (  246) [007] d..2 24574.060058: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
69988  kworker/u16:10-23868 (23868) [004] dnh3 24574.060058: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
69989    RenderThread-24437 (24151) [007] .... 24574.060060: binder_transaction_received: transaction=1670210
69990  kworker/u16:10-23868 (23868) [004] d..2 24574.060061: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
69991 id.nn.benchmark-13156 (13131) [000] d.h3 24574.060064: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
69992         sugov:4-560   (  560) [004] d..2 24574.060064: 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
69993 id.nn.benchmark-13160 (13131) [001] d..2 24574.060072: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
69994         sugov:0-559   (  559) [001] d..2 24574.060079: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
69995  kworker/u16:10-23868 (23868) [004] d..2 24574.060082: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
69996    RenderThread-24437 (24151) [007] d..2 24574.060089: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13402 next_prio=110
69997           <...>-13402 (-----) [007] ...1 24574.060170: tracing_mark_write: E|13131
69998           <...>-13402 (-----) [007] ...1 24574.060172: tracing_mark_write: E|13131
69999           <...>-13402 (-----) [007] ...1 24574.060177: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70000           <...>-13402 (-----) [007] ...1 24574.060179: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70001           <...>-13402 (-----) [007] ...1 24574.060475: tracing_mark_write: E|13131
70002           <...>-13402 (-----) [007] ...1 24574.060476: tracing_mark_write: E|13131
70003           <...>-13402 (-----) [007] ...1 24574.060484: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70004           <...>-13402 (-----) [007] ...1 24574.060485: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70005           <...>-13402 (-----) [007] ...1 24574.060646: tracing_mark_write: E|13131
70006           <...>-13402 (-----) [007] ...1 24574.060647: tracing_mark_write: E|13131
70007           <...>-13402 (-----) [007] ...1 24574.060651: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70008           <...>-13402 (-----) [007] ...1 24574.060653: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70009           <...>-13402 (-----) [007] ...1 24574.060709: tracing_mark_write: E|13131
70010           <...>-13402 (-----) [007] ...1 24574.060710: tracing_mark_write: E|13131
70011           <...>-13402 (-----) [007] ...1 24574.060715: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
70012           <...>-13402 (-----) [007] ...1 24574.060716: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
70013           <...>-13402 (-----) [007] ...1 24574.060865: tracing_mark_write: E|13131
70014           <...>-13402 (-----) [007] ...1 24574.060866: tracing_mark_write: E|13131
70015           <...>-13402 (-----) [007] ...1 24574.060870: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
70016           <...>-13402 (-----) [007] ...1 24574.060871: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
70017           <...>-13402 (-----) [007] d.s2 24574.060893: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
70018 id.nn.benchmark-13155 (13131) [003] d.h2 24574.060896: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
70019           <...>-13402 (-----) [007] d.s3 24574.060900: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
70020 id.nn.benchmark-13155 (13131) [003] dnh3 24574.060902: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
70021 id.nn.benchmark-13158 (13131) [004] d..2 24574.060906: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
70022 id.nn.benchmark-13155 (13131) [003] d..2 24574.060912: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
70023           <...>-13402 (-----) [007] ...1 24574.060918: tracing_mark_write: E|13131
70024           <...>-13402 (-----) [007] ...1 24574.060919: tracing_mark_write: E|13131
70025           <...>-13402 (-----) [007] ...1 24574.060923: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
70026           <...>-13402 (-----) [007] ...1 24574.060924: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
70027           <...>-13402 (-----) [007] ...1 24574.060929: tracing_mark_write: E|13131
70028           <...>-13402 (-----) [007] ...1 24574.060930: tracing_mark_write: E|13131
70029           <...>-13402 (-----) [007] ...1 24574.060934: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
70030           <...>-13402 (-----) [007] ...1 24574.060935: tracing_mark_write: E|13131
70031           <...>-13402 (-----) [007] ...1 24574.060939: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
70032           <...>-13402 (-----) [007] ...1 24574.060941: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
70033<...>-33 ( 33) [003] d.h3 24574.060957: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
70034<...>-33 ( 33) [003] d.h3 24574.060965: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
70035  kworker/u16:10-23868 (23868) [004] dnh3 24574.060968: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
70036  kworker/u16:10-23868 (23868) [004] d..2 24574.060971: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
70037         sugov:4-560   (  560) [004] d..2 24574.060974: 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
70038<...>-33 ( 33) [003] d.h4 24574.060975: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
70039<...>-33 ( 33) [003] d..2 24574.060982: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
70040         sugov:0-559   (  559) [003] d..2 24574.061011: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
70041  kworker/u16:10-23868 (23868) [004] d..2 24574.061151: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
70042           <...>-13402 (-----) [007] ...1 24574.061263: tracing_mark_write: E|13131
70043           <...>-13402 (-----) [007] ...1 24574.061264: tracing_mark_write: E|13131
70044           <...>-13402 (-----) [007] ...1 24574.061267: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70045           <...>-13402 (-----) [007] ...1 24574.061268: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70046           <...>-13402 (-----) [007] ...1 24574.061339: tracing_mark_write: E|13131
70047           <...>-13402 (-----) [007] ...1 24574.061340: tracing_mark_write: E|13131
70048           <...>-13402 (-----) [007] d..2 24574.061370: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
70049 id.nn.benchmark-13159 (13131) [002] d.h1 24574.061384: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
70050           <...>-13402 (-----) [007] ...1 24574.061388: tracing_mark_write: E|13131
70051           <...>-13402 (-----) [007] d..1 24574.061390: sched_waking: comm=id.nn.benchmark pid=13401 prio=110 target_cpu=007
70052           <...>-13402 (-----) [007] dn.2 24574.061396: sched_wakeup: comm=id.nn.benchmark pid=13401 prio=110 target_cpu=007
70053           <...>-13402 (-----) [007] d..2 24574.061399: sched_switch: prev_comm=id.nn.benchmark prev_pid=13402 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13401 next_prio=110
70054           <...>-13401 (-----) [007] d..2 24574.061406: sched_switch: prev_comm=id.nn.benchmark prev_pid=13401 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13402 next_prio=110
70055           <...>-13402 (-----) [007] ...1 24574.061412: tracing_mark_write: E|13131
70056           <...>-13402 (-----) [007] d..1 24574.061532: sched_waking: comm=id.nn.benchmark pid=13401 prio=110 target_cpu=007
70057           <...>-13402 (-----) [007] dn.2 24574.061535: sched_wakeup: comm=id.nn.benchmark pid=13401 prio=110 target_cpu=007
70058           <...>-13402 (-----) [007] d..2 24574.061538: sched_switch: prev_comm=id.nn.benchmark prev_pid=13402 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13401 next_prio=110
70059           <...>-13401 (-----) [007] d..1 24574.061592: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
70060           <...>-13401 (-----) [007] dn.2 24574.061598: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
70061           <...>-13401 (-----) [007] d..2 24574.061601: sched_switch: prev_comm=id.nn.benchmark prev_pid=13401 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
70062           <...>-13131 (-----) [007] d..2 24574.061607: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13401 next_prio=110
70063           <...>-13401 (-----) [007] d..1 24574.061630: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
70064           <...>-13401 (-----) [007] dn.2 24574.061634: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
70065           <...>-13401 (-----) [007] d..2 24574.061636: sched_switch: prev_comm=id.nn.benchmark prev_pid=13401 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
70066           <...>-13131 (-----) [007] ...1 24574.061644: tracing_mark_write: E|13131
70067           <...>-13131 (-----) [007] ...1 24574.061647: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
70068           <...>-13131 (-----) [007] ...1 24574.061649: tracing_mark_write: E|13131
70069           <...>-13131 (-----) [007] ...1 24574.061650: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
70070           <...>-13131 (-----) [007] ...1 24574.061653: tracing_mark_write: E|13131
70071           <...>-13131 (-----) [007] ...1 24574.061714: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
70072           <...>-13131 (-----) [007] ...1 24574.061733: tracing_mark_write: E|13131
70073           <...>-13131 (-----) [007] ...1 24574.061734: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
70074           <...>-13131 (-----) [007] ...1 24574.061737: tracing_mark_write: E|13131
70075           <...>-13131 (-----) [007] ...1 24574.061739: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
70076           <...>-13131 (-----) [007] ...1 24574.061741: tracing_mark_write: E|13131
70077           <...>-13131 (-----) [007] ...1 24574.061743: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
70078           <...>-13131 (-----) [007] ...1 24574.061798: tracing_mark_write: E|13131
70079           <...>-13131 (-----) [007] ...1 24574.061800: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
70080           <...>-13131 (-----) [007] d..2 24574.061804: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13401 next_prio=110
70081           <...>-13401 (-----) [007] d..2 24574.061836: sched_switch: prev_comm=id.nn.benchmark prev_pid=13401 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13402 next_prio=110
70082           <...>-13402 (-----) [007] d..2 24574.061850: sched_switch: prev_comm=id.nn.benchmark prev_pid=13402 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13403 next_prio=110
70083           <...>-13403 (-----) [007] d..2 24574.061997: sched_switch: prev_comm=id.nn.benchmark prev_pid=13403 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13404 next_prio=110
70084           <...>-13404 (-----) [007] ...1 24574.062007: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
70085           <...>-13404 (-----) [007] ...1 24574.062009: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
70086           <...>-13404 (-----) [007] ...1 24574.062060: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70087           <...>-13404 (-----) [007] ...1 24574.062062: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70088           <...>-13404 (-----) [007] d.h1 24574.062533: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=007
70089           <...>-13404 (-----) [007] dnh2 24574.062539: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=007
70090           <...>-13404 (-----) [007] d..2 24574.062544: sched_switch: prev_comm=id.nn.benchmark prev_pid=13404 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
70091        DispSync-23904 (23896) [007] d..1 24574.062555: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
70092 id.nn.benchmark-13156 (13131) [000] dnh1 24574.062568: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
70093        DispSync-23904 (23896) [007] d..2 24574.062568: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13404 next_prio=110
70094 id.nn.benchmark-13156 (13131) [000] d..2 24574.062575: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
70095   sfEventThread-23906 (23896) [000] d..3 24574.062605: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
70096   sfEventThread-23906 (23896) [000] d..4 24574.062619: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
70097 id.nn.benchmark-13160 (13131) [001] d..2 24574.062628: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
70098   sfEventThread-23906 (23896) [000] d..2 24574.062633: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
70099  surfaceflinger-23896 (23896) [001] d..1 24574.062876: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
70100  surfaceflinger-23896 (23896) [001] d..2 24574.062888: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
70101 id.nn.benchmark-13156 (13131) [000] d..2 24574.062897: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
70102   sfEventThread-23906 (23896) [000] d..2 24574.062914: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
70103  surfaceflinger-23896 (23896) [001] ...1 24574.063010: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
70104  surfaceflinger-23896 (23896) [001] ...1 24574.063014: tracing_mark_write: E|23896
70105  surfaceflinger-23896 (23896) [001] .... 24574.063062: binder_transaction: transaction=1670211 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
70106  surfaceflinger-23896 (23896) [001] ...2 24574.063083: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
70107  surfaceflinger-23896 (23896) [001] d..4 24574.063090: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
70108           <...>-13404 (-----) [007] dnh1 24574.063115: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
70109           <...>-13404 (-----) [007] d..2 24574.063141: sched_switch: prev_comm=id.nn.benchmark prev_pid=13404 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
70110  surfaceflinger-23896 (23896) [001] d.h5 24574.063141: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
70111  surfaceflinger-23896 (23896) [001] d.h5 24574.063148: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
70112 id.nn.benchmark-13158 (13131) [004] dnh1 24574.063151: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
70113 id.nn.benchmark-13158 (13131) [004] d..2 24574.063154: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
70114  surfaceflinger-23896 (23896) [001] d.h6 24574.063157: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
70115         sugov:4-560   (  560) [004] d..2 24574.063157: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
70116  HwBinder:598_3-633   (  598) [007] .... 24574.063162: binder_transaction_received: transaction=1670211
70117 id.nn.benchmark-13155 (13131) [003] d..2 24574.063166: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
70118  surfaceflinger-23896 (23896) [001] d..2 24574.063169: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
70119         sugov:0-559   (  559) [003] d..2 24574.063175: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
70120  HwBinder:598_3-633   (  598) [007] ...1 24574.063187: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
70121  HwBinder:598_3-633   (  598) [007] ...1 24574.063239: tracing_mark_write: B|598|HWCSession::PresentDisplay::
70122  HwBinder:598_3-633   (  598) [007] ...1 24574.063301: tracing_mark_write: B|598|HWDeviceDRM::Commit::
70123  HwBinder:598_3-633   (  598) [007] ...1 24574.063305: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
70124  HwBinder:598_3-633   (  598) [007] d..2 24574.063512: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=007
70125  HwBinder:598_3-633   (  598) [007] d..3 24574.063526: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
70126 id.nn.benchmark-13158 (13131) [004] d..2 24574.063531: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
70127  HwBinder:598_3-633   (  598) [007] ...1 24574.063554: tracing_mark_write: E|598
70128  HwBinder:598_3-633   (  598) [007] ...1 24574.063555: tracing_mark_write: E|598
70129  HwBinder:598_3-633   (  598) [007] ...1 24574.063577: tracing_mark_write: E|598
70130  HwBinder:598_3-633   (  598) [007] ...1 24574.063598: tracing_mark_write: E|598
70131  HwBinder:598_3-633   (  598) [007] .... 24574.063604: binder_transaction: transaction=1670212 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
70132  HwBinder:598_3-633   (  598) [007] d..2 24574.063610: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
70133  HwBinder:598_3-633   (  598) [007] .... 24574.063616: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
70134 id.nn.benchmark-13160 (13131) [001] dnh1 24574.063622: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
70135 id.nn.benchmark-13160 (13131) [001] d..2 24574.063629: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
70136  surfaceflinger-23896 (23896) [001] .... 24574.063634: binder_transaction_received: transaction=1670212
70137  HwBinder:598_3-633   (  598) [007] d..2 24574.063639: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13404 next_prio=110
70138           <...>-13404 (-----) [007] ...1 24574.063645: tracing_mark_write: E|13131
70139           <...>-13404 (-----) [007] ...1 24574.063647: tracing_mark_write: E|13131
70140           <...>-13404 (-----) [007] ...1 24574.063654: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70141           <...>-13404 (-----) [007] ...1 24574.063655: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70142  surfaceflinger-23896 (23896) [001] d..2 24574.063879: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
70143 crtc_commit:111-253   (  253) [004] d..2 24574.064098: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
70144           <...>-13404 (-----) [007] ...1 24574.064175: tracing_mark_write: E|13131
70145           <...>-13404 (-----) [007] ...1 24574.064176: tracing_mark_write: E|13131
70146           <...>-13404 (-----) [007] ...1 24574.064182: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70147           <...>-13404 (-----) [007] ...1 24574.064184: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70148 id.nn.benchmark-13159 (13131) [002] d.h2 24574.064230: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
70149 id.nn.benchmark-13159 (13131) [002] dnh3 24574.064237: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
70150 id.nn.benchmark-13160 (13131) [001] d.s1 24574.064241: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
70151 id.nn.benchmark-13158 (13131) [004] dnh1 24574.064265: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
70152 id.nn.benchmark-13159 (13131) [002] d..2 24574.064267: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
70153 id.nn.benchmark-13158 (13131) [004] d..2 24574.064268: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
70154 id.nn.benchmark-13160 (13131) [001] d.H3 24574.064296: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
70155 id.nn.benchmark-13160 (13131) [001] d.H3 24574.064314: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
70156           <...>-13404 (-----) [007] dnh1 24574.064318: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
70157           <...>-13404 (-----) [007] d..2 24574.064342: sched_switch: prev_comm=id.nn.benchmark prev_pid=13404 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
70158         sugov:4-560   (  560) [007] d..2 24574.064346: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
70159 id.nn.benchmark-13160 (13131) [001] d.H4 24574.064347: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
70160     migration/2-25    (   25) [002] d..2 24574.064353: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
70161     rcu_preempt-7     (    7) [004] d..2 24574.064358: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=006
70162         sugov:0-559   (  559) [002] d..2 24574.064362: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
70163     rcu_preempt-7     (    7) [004] d..3 24574.064375: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=006
70164     rcu_preempt-7     (    7) [004] d..2 24574.064380: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
70165           <...>-13157 (-----) [006] d..2 24574.064381: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
70166         rcuop/0-10    (   10) [006] d..2 24574.064383: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
70167         rcuop/0-10    (   10) [006] d..3 24574.064396: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
70168         rcuop/0-10    (   10) [006] d..2 24574.064402: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
70169 id.nn.benchmark-13158 (13131) [004] d..2 24574.064403: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
70170         rcuop/1-21    (   21) [004] d..2 24574.064409: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
70171     logd.writer-563   (  555) [002] d..2 24574.064768: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13404 next_prio=110
70172           <...>-13404 (-----) [002] d.h4 24574.064798: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
70173           <...>-13404 (-----) [002] d.h4 24574.064810: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
70174 id.nn.benchmark-13158 (13131) [004] dnh1 24574.064813: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
70175 id.nn.benchmark-13158 (13131) [004] d..2 24574.064816: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
70176           <...>-13404 (-----) [002] dnh5 24574.064816: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
70177         sugov:4-560   (  560) [004] d..2 24574.064819: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
70178           <...>-13404 (-----) [002] d..2 24574.064822: sched_switch: prev_comm=id.nn.benchmark prev_pid=13404 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
70179         sugov:0-559   (  559) [002] d..2 24574.064829: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13404 next_prio=110
70180           <...>-13404 (-----) [002] ...1 24574.064840: tracing_mark_write: E|13131
70181           <...>-13404 (-----) [002] ...1 24574.064844: tracing_mark_write: E|13131
70182           <...>-13404 (-----) [002] ...1 24574.064857: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70183           <...>-13404 (-----) [002] ...1 24574.064861: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70184           <...>-13404 (-----) [002] ...1 24574.065100: tracing_mark_write: E|13131
70185           <...>-13404 (-----) [002] ...1 24574.065103: tracing_mark_write: E|13131
70186           <...>-13404 (-----) [002] ...1 24574.065114: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70187           <...>-13404 (-----) [002] ...1 24574.065118: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70188           <...>-13404 (-----) [002] ...1 24574.065504: tracing_mark_write: E|13131
70189           <...>-13404 (-----) [002] ...1 24574.065508: tracing_mark_write: E|13131
70190           <...>-13404 (-----) [002] ...1 24574.065518: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70191           <...>-13404 (-----) [002] ...1 24574.065522: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70192           <...>-13404 (-----) [002] ...1 24574.065903: tracing_mark_write: E|13131
70193           <...>-13404 (-----) [002] ...1 24574.065907: tracing_mark_write: E|13131
70194           <...>-13404 (-----) [002] ...1 24574.065925: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70195           <...>-13404 (-----) [002] ...1 24574.065929: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70196           <...>-13404 (-----) [002] ...1 24574.066121: tracing_mark_write: E|13131
70197           <...>-13404 (-----) [002] ...1 24574.066124: tracing_mark_write: E|13131
70198           <...>-13404 (-----) [002] ...1 24574.066136: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70199           <...>-13404 (-----) [002] ...1 24574.066141: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70200           <...>-13404 (-----) [002] ...1 24574.066210: tracing_mark_write: E|13131
70201           <...>-13404 (-----) [002] ...1 24574.066213: tracing_mark_write: E|13131
70202           <...>-13404 (-----) [002] ...1 24574.066223: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
70203           <...>-13404 (-----) [002] ...1 24574.066228: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
70204           <...>-13404 (-----) [002] ...1 24574.066531: tracing_mark_write: E|13131
70205           <...>-13404 (-----) [002] ...1 24574.066534: tracing_mark_write: E|13131
70206           <...>-13404 (-----) [002] ...1 24574.066543: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
70207           <...>-13404 (-----) [002] ...1 24574.066547: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
70208           <...>-13404 (-----) [002] ...1 24574.066600: tracing_mark_write: E|13131
70209           <...>-13404 (-----) [002] ...1 24574.066602: tracing_mark_write: E|13131
70210           <...>-13404 (-----) [002] ...1 24574.066611: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
70211           <...>-13404 (-----) [002] ...1 24574.066615: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
70212           <...>-13404 (-----) [002] ...1 24574.066632: tracing_mark_write: E|13131
70213           <...>-13404 (-----) [002] ...1 24574.066635: tracing_mark_write: E|13131
70214           <...>-13404 (-----) [002] ...1 24574.066644: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
70215           <...>-13404 (-----) [002] ...1 24574.066648: tracing_mark_write: E|13131
70216           <...>-13404 (-----) [002] ...1 24574.066656: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
70217           <...>-13404 (-----) [002] ...1 24574.066661: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
70218           <...>-13404 (-----) [002] ...1 24574.067513: tracing_mark_write: E|13131
70219           <...>-13404 (-----) [002] ...1 24574.067516: tracing_mark_write: E|13131
70220           <...>-13404 (-----) [002] ...1 24574.067524: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70221           <...>-13404 (-----) [002] ...1 24574.067527: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70222 id.nn.benchmark-13159 (13131) [007] d.s2 24574.067558: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
70223 id.nn.benchmark-13159 (13131) [007] d.s3 24574.067570: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
70224 id.nn.benchmark-13158 (13131) [004] d..2 24574.067577: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
70225  kworker/u16:10-23868 (23868) [004] .... 24574.067672: clk_set_rate: l3_cluster0_vote_clk 300000000
70226  kworker/u16:10-23868 (23868) [004] d..2 24574.067679: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
70227           <...>-13404 (-----) [002] ...1 24574.067687: tracing_mark_write: E|13131
70228           <...>-13404 (-----) [002] ...1 24574.067691: tracing_mark_write: E|13131
70229           <...>-13404 (-----) [002] d..2 24574.067731: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
70230           <...>-13404 (-----) [002] d..3 24574.067739: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
70231           <...>-13404 (-----) [002] ...1 24574.067758: tracing_mark_write: E|13131
70232           <...>-13404 (-----) [002] d..1 24574.067763: sched_waking: comm=id.nn.benchmark pid=13403 prio=110 target_cpu=007
70233 id.nn.benchmark-13159 (13131) [007] dnh1 24574.067783: sched_wakeup: comm=id.nn.benchmark pid=13403 prio=110 target_cpu=007
70234 id.nn.benchmark-13159 (13131) [007] d..2 24574.067786: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13403 next_prio=110
70235           <...>-13404 (-----) [002] ...1 24574.067793: tracing_mark_write: E|13131
70236           <...>-13403 (-----) [007] d..2 24574.067794: sched_switch: prev_comm=id.nn.benchmark prev_pid=13403 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
70237           <...>-13404 (-----) [002] d..1 24574.067989: sched_waking: comm=id.nn.benchmark pid=13403 prio=110 target_cpu=007
70238 id.nn.benchmark-13159 (13131) [007] dnh1 24574.068008: sched_wakeup: comm=id.nn.benchmark pid=13403 prio=110 target_cpu=007
70239 id.nn.benchmark-13159 (13131) [007] d..2 24574.068011: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13403 next_prio=110
70240           <...>-13404 (-----) [002] d..2 24574.068057: sched_switch: prev_comm=id.nn.benchmark prev_pid=13404 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
70241           <...>-13403 (-----) [007] d..1 24574.068069: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
70242           <...>-13403 (-----) [007] dn.2 24574.068078: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
70243           <...>-13403 (-----) [007] d..2 24574.068081: sched_switch: prev_comm=id.nn.benchmark prev_pid=13403 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
70244           <...>-13131 (-----) [007] d..2 24574.068088: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13403 next_prio=110
70245           <...>-13403 (-----) [007] d..1 24574.068114: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
70246           <...>-13403 (-----) [007] dn.2 24574.068120: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
70247           <...>-13403 (-----) [007] d..2 24574.068122: sched_switch: prev_comm=id.nn.benchmark prev_pid=13403 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
70248           <...>-13131 (-----) [007] ...1 24574.068130: tracing_mark_write: E|13131
70249           <...>-13131 (-----) [007] ...1 24574.068133: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
70250           <...>-13131 (-----) [007] ...1 24574.068136: tracing_mark_write: E|13131
70251           <...>-13131 (-----) [007] ...1 24574.068137: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
70252     logd.writer-563   (  555) [002] d..2 24574.068138: 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
70253           <...>-13131 (-----) [007] ...1 24574.068139: tracing_mark_write: E|13131
70254          <idle>-0     (-----) [002] d..1 24574.068166: cpu_idle: state=0 cpu_id=2
70255           <...>-13131 (-----) [007] ...1 24574.068201: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
70256           <...>-13131 (-----) [007] d..2 24574.068214: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
70257           <...>-13131 (-----) [007] ...1 24574.068228: tracing_mark_write: E|13131
70258           <...>-13131 (-----) [007] ...1 24574.068230: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
70259           <...>-13131 (-----) [007] ...1 24574.068232: tracing_mark_write: E|13131
70260          <idle>-0     (-----) [002] dnh2 24574.068232: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
70261           <...>-13131 (-----) [007] ...1 24574.068234: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
70262           <...>-13131 (-----) [007] ...1 24574.068236: tracing_mark_write: E|13131
70263          <idle>-0     (-----) [002] .n.1 24574.068237: cpu_idle: state=4294967295 cpu_id=2
70264           <...>-13131 (-----) [007] ...1 24574.068237: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
70265          <idle>-0     (-----) [002] d..2 24574.068245: 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
70266     logd.writer-563   (  555) [002] d..2 24574.068280: 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
70267           <...>-13131 (-----) [007] ...1 24574.068286: tracing_mark_write: E|13131
70268           <...>-13131 (-----) [007] ...1 24574.068287: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
70269          <idle>-0     (-----) [002] d..1 24574.068288: cpu_idle: state=0 cpu_id=2
70270           <...>-13131 (-----) [007] d..2 24574.068291: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13403 next_prio=110
70271           <...>-13403 (-----) [007] d..2 24574.068311: sched_switch: prev_comm=id.nn.benchmark prev_pid=13403 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
70272          <idle>-0     (-----) [002] ...1 24574.069399: cpu_idle: state=4294967295 cpu_id=2
70273          <idle>-0     (-----) [002] d..1 24574.069402: cpu_idle: state=0 cpu_id=2
70274 id.nn.benchmark-13156 (13131) [000] d.h4 24574.070622: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=007
70275 id.nn.benchmark-13156 (13131) [000] d.h5 24574.070645: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
70276 id.nn.benchmark-13156 (13131) [000] d.h4 24574.070649: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
70277          <idle>-0     (-----) [002] .n.1 24574.070649: cpu_idle: state=4294967295 cpu_id=2
70278          <idle>-0     (-----) [002] d..2 24574.070655: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
70279 id.nn.benchmark-13158 (13131) [004] dnh1 24574.070660: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
70280 id.nn.benchmark-13158 (13131) [004] d..2 24574.070662: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
70281 id.nn.benchmark-13156 (13131) [000] d.h2 24574.070691: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
70282 id.nn.benchmark-13156 (13131) [000] d.h2 24574.070703: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
70283           <...>-13157 (-----) [006] dnh1 24574.070706: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
70284           <...>-13157 (-----) [006] d..2 24574.070709: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
70285         sugov:4-560   (  560) [006] d..2 24574.070713: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
70286 id.nn.benchmark-13156 (13131) [000] d.h3 24574.070719: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
70287  crtc_event:111-254   (  254) [002] d..2 24574.070724: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
70288 crtc_commit:111-253   (  253) [004] d..2 24574.070753: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
70289         sugov:0-559   (  559) [002] d..2 24574.070757: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13405 next_prio=110
70290           <...>-13405 (-----) [002] d..2 24574.070814: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
70291           <...>-13405 (-----) [002] d..3 24574.070822: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
70292 id.nn.benchmark-13159 (13131) [007] d.s2 24574.070891: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
70293 id.nn.benchmark-13159 (13131) [007] d.s3 24574.070903: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
70294 id.nn.benchmark-13159 (13131) [007] d.s2 24574.070904: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
70295 id.nn.benchmark-13158 (13131) [004] d..2 24574.070908: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
70296 id.nn.benchmark-13159 (13131) [007] d.s3 24574.070911: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
70297  kworker/u16:10-23868 (23868) [004] d..2 24574.071105: 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
70298     rcu_preempt-7     (    7) [004] d..2 24574.071106: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=001
70299     rcu_preempt-7     (    7) [004] d..2 24574.071121: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=007
70300           <...>-13405 (-----) [002] dnh2 24574.071126: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
70301     rcu_preempt-7     (    7) [004] d..3 24574.071128: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=007
70302     rcu_preempt-7     (    7) [004] d..2 24574.071129: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=004
70303           <...>-13405 (-----) [002] d..2 24574.071133: sched_switch: prev_comm=id.nn.benchmark prev_pid=13405 prev_prio=110 prev_state=R+ ==> next_comm=rcuop/6 next_pid=61 next_prio=120
70304 id.nn.benchmark-13159 (13131) [007] d..2 24574.071134: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
70305     rcu_preempt-7     (    7) [004] d..3 24574.071135: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=004
70306         rcuop/6-61    (   61) [002] d..2 24574.071138: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=001
70307     rcu_preempt-7     (    7) [004] d..2 24574.071139: 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
70308         rcuop/4-45    (   45) [004] d..2 24574.071150: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
70309         rcuop/2-29    (   29) [007] d..2 24574.071154: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
70310         rcuop/6-61    (   61) [002] d..3 24574.071156: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=003
70311         rcuop/6-61    (   61) [002] d..2 24574.071164: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13405 next_prio=110
70312 id.nn.benchmark-13155 (13131) [003] d..2 24574.071166: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcuop/7 next_pid=69 next_prio=120
70313         rcuop/7-69    (   69) [003] d..2 24574.071188: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
70314           <...>-13405 (-----) [002] d..2 24574.071193: sched_switch: prev_comm=id.nn.benchmark prev_pid=13405 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
70315     logd.writer-563   (  555) [002] d..2 24574.071345: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13406 next_prio=110
70316           <...>-13406 (-----) [002] ...1 24574.071371: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
70317           <...>-13406 (-----) [002] ...1 24574.071376: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
70318           <...>-13406 (-----) [002] d..2 24574.071433: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
70319           <...>-13406 (-----) [002] d..3 24574.071441: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
70320           <...>-13406 (-----) [002] ...1 24574.071506: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70321           <...>-13406 (-----) [002] ...1 24574.071512: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70322           <...>-13154 (-----) [005] d..3 24574.072013: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
70323           <...>-13154 (-----) [005] d..2 24574.072022: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
70324 id.nn.benchmark-13156 (13131) [000] dnh1 24574.072025: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
70325          <idle>-0     (-----) [005] d..1 24574.072028: cpu_idle: state=0 cpu_id=5
70326 id.nn.benchmark-13156 (13131) [000] d..2 24574.072030: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
70327           <...>-13157 (-----) [006] d..2 24574.072043: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
70328 id.nn.benchmark-13156 (13131) [006] d.h4 24574.072062: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
70329 id.nn.benchmark-13156 (13131) [006] d.h5 24574.072072: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
70330 id.nn.benchmark-13156 (13131) [006] d.h4 24574.072072: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
70331     migration/0-13    (   13) [000] d..2 24574.072076: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
70332          <idle>-0     (-----) [005] .n.1 24574.072076: cpu_idle: state=4294967295 cpu_id=5
70333          <idle>-0     (-----) [005] d..2 24574.072079: 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
70334         sugov:4-560   (  560) [005] d..3 24574.072085: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
70335           <...>-13406 (-----) [002] dnh1 24574.072085: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
70336         sugov:4-560   (  560) [005] d..2 24574.072091: 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
70337           <...>-13406 (-----) [002] d..2 24574.072093: sched_switch: prev_comm=id.nn.benchmark prev_pid=13406 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
70338          <idle>-0     (-----) [005] d..1 24574.072094: cpu_idle: state=0 cpu_id=5
70339 id.nn.benchmark-13160 (13131) [001] dnh1 24574.072095: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
70340 id.nn.benchmark-13160 (13131) [001] d..2 24574.072100: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
70341         sugov:0-559   (  559) [002] d..2 24574.072102: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13406 next_prio=110
70342          <idle>-0     (-----) [005] .n.1 24574.072125: cpu_idle: state=4294967295 cpu_id=5
70343          <idle>-0     (-----) [005] d..2 24574.072142: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
70344     migration/1-17    (   17) [001] d..2 24574.072154: 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
70345          <idle>-0     (-----) [001] d..1 24574.072167: cpu_idle: state=0 cpu_id=1
70346     logd.writer-563   (  555) [000] d..2 24574.072191: 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
70347          <idle>-0     (-----) [000] d..1 24574.072205: cpu_idle: state=0 cpu_id=0
70348 id.nn.benchmark-13159 (13131) [007] d..3 24574.072413: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
70349 id.nn.benchmark-13159 (13131) [007] d..2 24574.072421: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
70350 id.nn.benchmark-13155 (13131) [003] dnh1 24574.072423: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
70351 id.nn.benchmark-13155 (13131) [003] d..2 24574.072428: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
70352          <idle>-0     (-----) [007] d..1 24574.072429: cpu_idle: state=0 cpu_id=7
70353          <idle>-0     (-----) [007] .n.1 24574.072451: cpu_idle: state=4294967295 cpu_id=7
70354          <idle>-0     (-----) [007] d..2 24574.072469: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
70355 id.nn.benchmark-13158 (13131) [004] d..2 24574.072473: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
70356<...>-33 ( 33) [003] d..2 24574.072479: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
70357          <idle>-0     (-----) [004] d..1 24574.072479: cpu_idle: state=0 cpu_id=4
70358          <idle>-0     (-----) [003] d..1 24574.072490: cpu_idle: state=0 cpu_id=3
70359          <idle>-0     (-----) [004] ...1 24574.072670: cpu_idle: state=4294967295 cpu_id=4
70360          <idle>-0     (-----) [004] d..1 24574.072671: cpu_idle: state=0 cpu_id=4
70361          <idle>-0     (-----) [000] d.h5 24574.072977: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
70362          <idle>-0     (-----) [000] dnh6 24574.072993: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
70363          <idle>-0     (-----) [000] dnh3 24574.073032: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
70364          <idle>-0     (-----) [000] dnh3 24574.073043: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
70365          <idle>-0     (-----) [004] dnh2 24574.073047: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
70366          <idle>-0     (-----) [004] .n.1 24574.073049: cpu_idle: state=4294967295 cpu_id=4
70367          <idle>-0     (-----) [004] d..2 24574.073051: 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
70368          <idle>-0     (-----) [000] dnh4 24574.073054: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
70369         sugov:4-560   (  560) [004] d..2 24574.073057: 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
70370          <idle>-0     (-----) [004] d..1 24574.073058: cpu_idle: state=0 cpu_id=4
70371          <idle>-0     (-----) [000] .n.1 24574.073059: cpu_idle: state=4294967295 cpu_id=0
70372          <idle>-0     (-----) [003] .n.1 24574.073060: cpu_idle: state=4294967295 cpu_id=3
70373          <idle>-0     (-----) [000] d..2 24574.073065: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
70374          <idle>-0     (-----) [003] d..2 24574.073066: 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
70375         sugov:0-559   (  559) [003] d..2 24574.073078: 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
70376          <idle>-0     (-----) [003] d..1 24574.073083: cpu_idle: state=0 cpu_id=3
70377 crtc_commit:111-253   (  253) [000] d..2 24574.073117: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
70378          <idle>-0     (-----) [000] d..1 24574.073124: cpu_idle: state=0 cpu_id=0
70379           <...>-13406 (-----) [002] d..1 24574.073190: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=005
70380           <...>-13406 (-----) [002] d..1 24574.073210: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=006
70381          <idle>-0     (-----) [004] dnh2 24574.073210: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
70382          <idle>-0     (-----) [004] .n.1 24574.073213: cpu_idle: state=4294967295 cpu_id=4
70383          <idle>-0     (-----) [004] d..2 24574.073215: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
70384           <...>-13406 (-----) [002] d..1 24574.073220: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
70385 id.nn.benchmark-13156 (13131) [006] d.h1 24574.073223: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=006
70386           <...>-13406 (-----) [002] d..1 24574.073229: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
70387           <...>-13154 (-----) [004] d.h1 24574.073231: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
70388 id.nn.benchmark-13155 (13131) [007] d.h1 24574.073240: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
70389          <idle>-0     (-----) [000] d.h5 24574.073266: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
70390          <idle>-0     (-----) [000] dnh6 24574.073276: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
70391          <idle>-0     (-----) [000] .n.1 24574.073288: cpu_idle: state=4294967295 cpu_id=0
70392          <idle>-0     (-----) [000] d..2 24574.073293: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
70393  crtc_event:111-254   (  254) [000] d..2 24574.073321: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
70394           <...>-13154 (-----) [004] d.s2 24574.074223: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
70395           <...>-13154 (-----) [004] d.s2 24574.074233: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=004
70396          <idle>-0     (-----) [003] dnh2 24574.074246: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
70397          <idle>-0     (-----) [003] dnh2 24574.074255: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
70398           <...>-13154 (-----) [004] d.H3 24574.074273: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
70399          <idle>-0     (-----) [001] .n.1 24574.074274: cpu_idle: state=4294967295 cpu_id=1
70400          <idle>-0     (-----) [003] .n.1 24574.074275: cpu_idle: state=4294967295 cpu_id=3
70401          <idle>-0     (-----) [003] d..2 24574.074280: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
70402           <...>-13154 (-----) [004] d.H4 24574.074281: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
70403          <idle>-0     (-----) [001] d..2 24574.074282: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
70404           <...>-13154 (-----) [004] d.H3 24574.074282: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
70405 id.nn.benchmark-13160 (13131) [005] d..2 24574.074288: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
70406         sugov:4-560   (  560) [005] d..2 24574.074292: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
70407  crtc_event:111-254   (  254) [003] d..2 24574.074292: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
70408           <...>-13406 (-----) [002] dnh1 24574.074295: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
70409           <...>-13406 (-----) [002] d..2 24574.074301: sched_switch: prev_comm=id.nn.benchmark prev_pid=13406 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
70410         sugov:0-559   (  559) [002] d..2 24574.074309: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13406 next_prio=110
70411  kworker/u16:10-23868 (23868) [003] d..2 24574.074354: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
70412           <...>-13406 (-----) [002] ...1 24574.074700: tracing_mark_write: E|13131
70413           <...>-13406 (-----) [002] ...1 24574.074704: tracing_mark_write: E|13131
70414           <...>-13406 (-----) [002] ...1 24574.074715: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70415           <...>-13406 (-----) [002] ...1 24574.074720: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70416 id.nn.benchmark-13155 (13131) [007] d.h1 24574.075001: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=007
70417 id.nn.benchmark-13155 (13131) [007] d.h2 24574.075031: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
70418           <...>-13406 (-----) [002] dnh1 24574.075032: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
70419           <...>-13406 (-----) [002] d..2 24574.075039: sched_switch: prev_comm=id.nn.benchmark prev_pid=13406 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
70420 id.nn.benchmark-13155 (13131) [007] d.h3 24574.075039: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
70421 id.nn.benchmark-13155 (13131) [007] d.h2 24574.075040: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
70422 id.nn.benchmark-13156 (13131) [006] d..2 24574.075045: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
70423         sugov:4-560   (  560) [006] d..2 24574.075049: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
70424 id.nn.benchmark-13159 (13131) [000] dnh1 24574.075055: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
70425        DispSync-23904 (23896) [002] d..1 24574.075059: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
70426 id.nn.benchmark-13159 (13131) [000] d..2 24574.075061: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
70427         sugov:0-559   (  559) [000] d..2 24574.075070: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
70428        DispSync-23904 (23896) [002] d..2 24574.075077: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
70429 id.nn.benchmark-13158 (13131) [001] d..2 24574.075085: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
70430        DispSync-23904 (23896) [002] d..2 24574.075093: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13406 next_prio=110
70431  appEventThread-23905 (23896) [001] d..3 24574.075126: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
70432 id.nn.benchmark-13156 (13131) [006] dnh1 24574.075154: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
70433 id.nn.benchmark-13156 (13131) [006] d..2 24574.075157: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
70434  appEventThread-23905 (23896) [001] d..2 24574.075165: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
70435<...>-24151 ( 24151) [006] .... 24574.075357: binder_transaction: transaction=1670213 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
70436<...>-24151 ( 24151) [006] d..4 24574.075363: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
70437<...>-24151 ( 24151) [006] d..5 24574.075377: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
70438<...>-24151 ( 24151) [006] d..3 24574.075398: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
70439<...>-24151 ( 24151) [006] d..4 24574.075410: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
70440<...>-24151 ( 24151) [006] d..2 24574.075475: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
70441<...>-23903 ( 23896) [006] .... 24574.075479: binder_transaction_received: transaction=1670213
70442<...>-23903 ( 23896) [006] d..1 24574.075497: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
70443           <...>-13406 (-----) [002] dnh1 24574.075512: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
70444<...>-23903 ( 23896) [006] d..2 24574.075517: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
70445           <...>-13406 (-----) [002] d..2 24574.075519: sched_switch: prev_comm=id.nn.benchmark prev_pid=13406 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
70446  appEventThread-23905 (23896) [002] d..2 24574.075543: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13406 next_prio=110
70447    RenderThread-24437 (24151) [006] d..1 24574.075574: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
70448    RenderThread-24437 (24151) [006] d..2 24574.075580: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
70449    RenderThread-24437 (24151) [006] .... 24574.075612: binder_transaction: transaction=1670214 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
70450    RenderThread-24437 (24151) [006] d..4 24574.075614: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
70451    RenderThread-24437 (24151) [006] d..5 24574.075618: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
70452    RenderThread-24437 (24151) [006] d..2 24574.075622: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
70453<...>-23903 ( 23896) [006] .... 24574.075624: binder_transaction_received: transaction=1670214
70454<...>-23903 ( 23896) [006] .... 24574.075654: binder_transaction: transaction=1670215 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
70455<...>-23903 ( 23896) [006] d..2 24574.075659: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
70456<...>-23903 ( 23896) [006] d..3 24574.075664: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
70457<...>-23903 ( 23896) [006] d..2 24574.075673: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
70458    RenderThread-24437 (24151) [006] .... 24574.075675: binder_transaction_received: transaction=1670215
70459    RenderThread-24437 (24151) [006] d..2 24574.076289: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
70460<...>-24151 ( 24151) [006] d..2 24574.076324: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
70461 id.nn.benchmark-13156 (13131) [006] d.h1 24574.076388: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
70462 id.nn.benchmark-13156 (13131) [006] d.h2 24574.076393: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
70463 id.nn.benchmark-13156 (13131) [006] dnh2 24574.076395: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
70464 id.nn.benchmark-13156 (13131) [006] d..2 24574.076399: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
70465    RenderThread-24437 (24151) [006] .... 24574.076479: binder_transaction: transaction=1670216 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
70466    RenderThread-24437 (24151) [006] d..4 24574.076484: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
70467    RenderThread-24437 (24151) [006] d..5 24574.076490: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
70468    RenderThread-24437 (24151) [006] d..2 24574.076494: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
70469<...>-23903 ( 23896) [006] .... 24574.076496: binder_transaction_received: transaction=1670216
70470 id.nn.benchmark-13159 (13131) [000] d.h2 24574.076513: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=007
70471 id.nn.benchmark-13159 (13131) [000] d.h3 24574.076533: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
70472           <...>-13406 (-----) [002] d..2 24574.076540: sched_switch: prev_comm=id.nn.benchmark prev_pid=13406 prev_prio=110 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
70473<...>-23903 ( 23896) [006] .... 24574.076557: binder_transaction: transaction=1670217 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
70474<...>-23903 ( 23896) [006] d..2 24574.076559: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
70475 id.nn.benchmark-13159 (13131) [000] d.h2 24574.076567: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
70476<...>-23903 ( 23896) [006] d..3 24574.076572: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
70477 id.nn.benchmark-13159 (13131) [000] d.h2 24574.076575: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
70478 kgsl_worker_thr-246   (  246) [002] d..2 24574.076575: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
70479<...>-23903 ( 23896) [006] dnh1 24574.076579: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
70480 id.nn.benchmark-13159 (13131) [000] dnh3 24574.076580: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
70481<...>-23903 ( 23896) [006] d..2 24574.076583: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
70482 id.nn.benchmark-13159 (13131) [000] d..2 24574.076586: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
70483         sugov:4-560   (  560) [006] d..2 24574.076587: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
70484 kgsl_worker_thr-246   (  246) [002] d..3 24574.076592: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
70485         sugov:0-559   (  559) [000] d..2 24574.076593: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
70486<...>-23903 ( 23896) [006] d..2 24574.076593: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
70487    RenderThread-24437 (24151) [006] .... 24574.076594: binder_transaction_received: transaction=1670217
70488 kgsl_worker_thr-246   (  246) [002] d..2 24574.076605: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
70489    RenderThread-24437 (24151) [006] d..2 24574.076619: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
70490  kworker/u16:10-23868 (23868) [002] d..2 24574.076631: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13406 next_prio=110
70491           <...>-13406 (-----) [002] ...1 24574.076648: tracing_mark_write: E|13131
70492           <...>-13406 (-----) [002] ...1 24574.076653: tracing_mark_write: E|13131
70493           <...>-13406 (-----) [002] ...1 24574.076673: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70494           <...>-13406 (-----) [002] ...1 24574.076678: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70495           <...>-13406 (-----) [002] ...1 24574.077016: tracing_mark_write: E|13131
70496           <...>-13406 (-----) [002] ...1 24574.077020: tracing_mark_write: E|13131
70497           <...>-13406 (-----) [002] ...1 24574.077030: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70498           <...>-13406 (-----) [002] ...1 24574.077035: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70499           <...>-13406 (-----) [002] ...1 24574.077262: tracing_mark_write: E|13131
70500           <...>-13406 (-----) [002] ...1 24574.077265: tracing_mark_write: E|13131
70501           <...>-13406 (-----) [002] ...1 24574.077275: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70502           <...>-13406 (-----) [002] ...1 24574.077279: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70503           <...>-13154 (-----) [004] d.s1 24574.077557: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
70504 id.nn.benchmark-13160 (13131) [005] d.h2 24574.077601: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
70505           <...>-13406 (-----) [002] dnh1 24574.077603: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
70506           <...>-13154 (-----) [004] d.s2 24574.077605: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
70507 id.nn.benchmark-13160 (13131) [005] d.h3 24574.077607: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
70508 id.nn.benchmark-13160 (13131) [005] d.h2 24574.077608: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
70509           <...>-13406 (-----) [002] d..2 24574.077611: sched_switch: prev_comm=id.nn.benchmark prev_pid=13406 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
70510 id.nn.benchmark-13156 (13131) [006] d..2 24574.077615: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
70511     rcu_preempt-7     (    7) [002] d.h3 24574.077618: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
70512         sugov:4-560   (  560) [006] d..2 24574.077619: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
70513     rcu_preempt-7     (    7) [002] dnh3 24574.077623: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
70514     rcu_preempt-7     (    7) [002] d..2 24574.077628: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
70515         sugov:0-559   (  559) [002] d..2 24574.077635: 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
70516     rcu_preempt-7     (    7) [002] d..2 24574.077646: 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
70517  kworker/u16:10-23868 (23868) [002] .... 24574.077734: clk_set_rate: l3_cluster0_vote_clk 1132800000
70518  kworker/u16:10-23868 (23868) [002] d..2 24574.077746: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13406 next_prio=110
70519           <...>-13406 (-----) [002] ...1 24574.077878: tracing_mark_write: E|13131
70520           <...>-13406 (-----) [002] ...1 24574.077882: tracing_mark_write: E|13131
70521           <...>-13406 (-----) [002] ...1 24574.077892: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70522           <...>-13406 (-----) [002] ...1 24574.077896: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70523           <...>-13406 (-----) [002] ...1 24574.078286: tracing_mark_write: E|13131
70524           <...>-13406 (-----) [002] ...1 24574.078291: tracing_mark_write: E|13131
70525           <...>-13406 (-----) [002] ...1 24574.078309: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70526           <...>-13406 (-----) [002] ...1 24574.078313: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70527           <...>-13406 (-----) [002] ...1 24574.078499: tracing_mark_write: E|13131
70528           <...>-13406 (-----) [002] ...1 24574.078503: tracing_mark_write: E|13131
70529           <...>-13406 (-----) [002] ...1 24574.078517: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70530           <...>-13406 (-----) [002] ...1 24574.078521: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70531           <...>-13406 (-----) [002] d..2 24574.078544: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
70532 id.nn.benchmark-13156 (13131) [006] d..3 24574.078549: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
70533 id.nn.benchmark-13156 (13131) [006] d..2 24574.078557: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=D|K ==> next_comm=swapper/6 next_pid=0 next_prio=120
70534 id.nn.benchmark-13159 (13131) [000] dnh1 24574.078560: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
70535 id.nn.benchmark-13159 (13131) [000] d..2 24574.078566: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
70536          <idle>-0     (-----) [006] d..1 24574.078568: cpu_idle: state=0 cpu_id=6
70537          <idle>-0     (-----) [006] d.h2 24574.078583: sched_blocked_reason: pid=13156 iowait=1 caller=__lock_page_or_retry+0x26c/0x2c4
70538          <idle>-0     (-----) [006] dnh2 24574.078584: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
70539          <idle>-0     (-----) [006] .n.1 24574.078589: cpu_idle: state=4294967295 cpu_id=6
70540          <idle>-0     (-----) [006] d..2 24574.078612: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
70541     migration/0-13    (   13) [000] d.h3 24574.078613: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
70542     migration/0-13    (   13) [000] d.h3 24574.078625: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
70543 id.nn.benchmark-13160 (13131) [005] dnh1 24574.078628: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
70544 id.nn.benchmark-13160 (13131) [005] d..2 24574.078631: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
70545           <...>-13406 (-----) [002] ...1 24574.078631: tracing_mark_write: E|13131
70546         sugov:4-560   (  560) [005] d..2 24574.078634: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
70547     migration/0-13    (   13) [000] d.h4 24574.078634: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
70548           <...>-13406 (-----) [002] ...1 24574.078635: tracing_mark_write: E|13131
70549     migration/0-13    (   13) [000] d..2 24574.078641: 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
70550           <...>-13406 (-----) [002] ...1 24574.078645: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
70551           <...>-13406 (-----) [002] ...1 24574.078649: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
70552         sugov:0-559   (  559) [000] d..2 24574.078667: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
70553           <...>-13406 (-----) [002] ...1 24574.078938: tracing_mark_write: E|13131
70554           <...>-13406 (-----) [002] ...1 24574.078941: tracing_mark_write: E|13131
70555           <...>-13406 (-----) [002] ...1 24574.078950: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
70556           <...>-13406 (-----) [002] ...1 24574.078954: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
70557           <...>-13406 (-----) [002] ...1 24574.079007: tracing_mark_write: E|13131
70558           <...>-13406 (-----) [002] ...1 24574.079009: tracing_mark_write: E|13131
70559           <...>-13406 (-----) [002] d.h1 24574.079023: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
70560           <...>-13406 (-----) [002] dnh2 24574.079033: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
70561           <...>-13406 (-----) [002] d..2 24574.079041: sched_switch: prev_comm=id.nn.benchmark prev_pid=13406 prev_prio=110 prev_state=R+ ==> next_comm=DispSync next_pid=23904 next_prio=97
70562        DispSync-23904 (23896) [002] d..1 24574.079055: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
70563        DispSync-23904 (23896) [002] d..2 24574.079066: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
70564 id.nn.benchmark-13159 (13131) [000] d..2 24574.079073: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
70565        DispSync-23904 (23896) [002] d..2 24574.079079: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13406 next_prio=110
70566           <...>-13406 (-----) [002] ...1 24574.079081: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
70567           <...>-13406 (-----) [002] ...1 24574.079088: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
70568           <...>-13406 (-----) [002] ...1 24574.079104: tracing_mark_write: E|13131
70569   sfEventThread-23906 (23896) [000] d..3 24574.079105: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
70570           <...>-13406 (-----) [002] ...1 24574.079107: tracing_mark_write: E|13131
70571           <...>-13406 (-----) [002] ...1 24574.079119: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
70572   sfEventThread-23906 (23896) [000] d..4 24574.079123: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
70573           <...>-13406 (-----) [002] d..2 24574.079129: sched_switch: prev_comm=id.nn.benchmark prev_pid=13406 prev_prio=110 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
70574   sfEventThread-23906 (23896) [000] d..2 24574.079144: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
70575  surfaceflinger-23896 (23896) [002] d..1 24574.079388: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
70576  surfaceflinger-23896 (23896) [002] d..2 24574.079400: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
70577 id.nn.benchmark-13159 (13131) [000] d..2 24574.079407: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
70578   sfEventThread-23906 (23896) [000] d..2 24574.079421: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
70579  surfaceflinger-23896 (23896) [002] ...1 24574.079529: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
70580  surfaceflinger-23896 (23896) [002] ...1 24574.079533: tracing_mark_write: E|23896
70581  surfaceflinger-23896 (23896) [002] .... 24574.079577: binder_transaction: transaction=1670218 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
70582  surfaceflinger-23896 (23896) [002] ...2 24574.079597: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
70583  surfaceflinger-23896 (23896) [002] d..4 24574.079604: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=007
70584 id.nn.benchmark-13156 (13131) [006] dnh1 24574.079625: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=006
70585 id.nn.benchmark-13156 (13131) [006] d..2 24574.079628: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
70586  surfaceflinger-23896 (23896) [002] d..2 24574.079632: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13406 next_prio=110
70587  HwBinder:598_3-633   (  598) [006] .... 24574.079633: binder_transaction_received: transaction=1670218
70588           <...>-13406 (-----) [002] ...1 24574.079642: tracing_mark_write: E|13131
70589           <...>-13406 (-----) [002] ...1 24574.079654: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
70590           <...>-13406 (-----) [002] ...1 24574.079658: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
70591  HwBinder:598_3-633   (  598) [006] ...1 24574.079660: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
70592  HwBinder:598_3-633   (  598) [006] ...1 24574.079714: tracing_mark_write: B|598|HWCSession::PresentDisplay::
70593  HwBinder:598_3-633   (  598) [006] ...1 24574.079782: tracing_mark_write: B|598|HWDeviceDRM::Commit::
70594  HwBinder:598_3-633   (  598) [006] ...1 24574.079786: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
70595  HwBinder:598_3-633   (  598) [006] d..2 24574.079995: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
70596           <...>-13406 (-----) [002] dnh1 24574.080013: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
70597           <...>-13406 (-----) [002] d..2 24574.080019: sched_switch: prev_comm=id.nn.benchmark prev_pid=13406 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
70598  HwBinder:598_3-633   (  598) [006] ...1 24574.080034: tracing_mark_write: E|598
70599  HwBinder:598_3-633   (  598) [006] ...1 24574.080035: tracing_mark_write: E|598
70600  HwBinder:598_3-633   (  598) [006] ...1 24574.080056: tracing_mark_write: E|598
70601  HwBinder:598_3-633   (  598) [006] ...1 24574.080077: tracing_mark_write: E|598
70602  HwBinder:598_3-633   (  598) [006] .... 24574.080083: binder_transaction: transaction=1670219 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
70603  HwBinder:598_3-633   (  598) [006] d..2 24574.080088: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
70604  HwBinder:598_3-633   (  598) [006] .... 24574.080097: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
70605 id.nn.benchmark-13159 (13131) [000] dnh1 24574.080102: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
70606 id.nn.benchmark-13159 (13131) [000] d..2 24574.080106: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
70607  surfaceflinger-23896 (23896) [000] .... 24574.080111: binder_transaction_received: transaction=1670219
70608  HwBinder:598_3-633   (  598) [006] d..2 24574.080118: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
70609  surfaceflinger-23896 (23896) [000] d..2 24574.080354: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
70610 crtc_commit:111-253   (  253) [002] d..2 24574.080624: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13406 next_prio=110
70611           <...>-13154 (-----) [004] d.s2 24574.080888: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
70612           <...>-13406 (-----) [002] dnh1 24574.080904: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
70613           <...>-13406 (-----) [002] d..2 24574.080909: sched_switch: prev_comm=id.nn.benchmark prev_pid=13406 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
70614  kworker/u16:10-23868 (23868) [002] d..2 24574.081175: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13406 next_prio=110
70615           <...>-13406 (-----) [002] ...1 24574.081429: tracing_mark_write: E|13131
70616           <...>-13406 (-----) [002] ...1 24574.081433: tracing_mark_write: E|13131
70617           <...>-13406 (-----) [002] ...1 24574.081444: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70618           <...>-13406 (-----) [002] ...1 24574.081448: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70619           <...>-13406 (-----) [002] ...1 24574.081534: tracing_mark_write: E|13131
70620           <...>-13406 (-----) [002] ...1 24574.081537: tracing_mark_write: E|13131
70621           <...>-13406 (-----) [002] d..2 24574.081591: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
70622           <...>-13406 (-----) [002] d..3 24574.081605: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
70623           <...>-13406 (-----) [002] ...1 24574.081628: tracing_mark_write: E|13131
70624           <...>-13406 (-----) [002] d..1 24574.081634: sched_waking: comm=id.nn.benchmark pid=13405 prio=110 target_cpu=002
70625 id.nn.benchmark-13156 (13131) [006] dnh1 24574.081657: sched_wakeup: comm=id.nn.benchmark pid=13405 prio=110 target_cpu=006
70626 id.nn.benchmark-13156 (13131) [006] d..2 24574.081682: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13405 next_prio=110
70627           <...>-13406 (-----) [002] d.h3 24574.081682: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
70628           <...>-13405 (-----) [006] d..2 24574.081693: sched_switch: prev_comm=id.nn.benchmark prev_pid=13405 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
70629           <...>-13406 (-----) [002] d.h3 24574.081695: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
70630 id.nn.benchmark-13156 (13131) [006] dnh1 24574.081697: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
70631 id.nn.benchmark-13156 (13131) [006] d..2 24574.081699: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
70632         sugov:4-560   (  560) [006] d..2 24574.081703: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
70633           <...>-13406 (-----) [002] dnh4 24574.081704: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
70634           <...>-13406 (-----) [002] d..2 24574.081709: sched_switch: prev_comm=id.nn.benchmark prev_pid=13406 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
70635         sugov:0-559   (  559) [002] d..2 24574.081716: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
70636     logd.writer-563   (  555) [002] d..2 24574.081790: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13406 next_prio=110
70637           <...>-13406 (-----) [002] ...1 24574.081810: tracing_mark_write: E|13131
70638           <...>-13406 (-----) [002] d..1 24574.082039: sched_waking: comm=id.nn.benchmark pid=13405 prio=110 target_cpu=006
70639 id.nn.benchmark-13156 (13131) [006] dnh1 24574.082053: sched_wakeup: comm=id.nn.benchmark pid=13405 prio=110 target_cpu=006
70640 id.nn.benchmark-13156 (13131) [006] d..2 24574.082055: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13405 next_prio=110
70641           <...>-13405 (-----) [006] d..2 24574.082094: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
70642           <...>-13406 (-----) [002] d.h1 24574.082107: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
70643           <...>-13406 (-----) [002] d..2 24574.082114: sched_switch: prev_comm=id.nn.benchmark prev_pid=13406 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
70644           <...>-13405 (-----) [006] d..1 24574.082129: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
70645           <...>-13405 (-----) [006] d..2 24574.082140: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
70646 id.nn.benchmark-13155 (13131) [007] d..2 24574.082146: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
70647           <...>-13131 (-----) [007] d..2 24574.082154: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
70648           <...>-13405 (-----) [006] d..1 24574.082169: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
70649           <...>-13405 (-----) [006] d..2 24574.082177: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
70650     logd.writer-563   (  555) [002] d..2 24574.082182: 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
70651 id.nn.benchmark-13155 (13131) [007] d..2 24574.082183: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
70652           <...>-13131 (-----) [007] ...1 24574.082195: tracing_mark_write: E|13131
70653          <idle>-0     (-----) [002] d..1 24574.082196: cpu_idle: state=0 cpu_id=2
70654           <...>-13131 (-----) [007] ...1 24574.082197: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
70655           <...>-13405 (-----) [006] d..2 24574.082198: sched_switch: prev_comm=id.nn.benchmark prev_pid=13405 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
70656           <...>-13131 (-----) [007] ...1 24574.082199: tracing_mark_write: E|13131
70657           <...>-13131 (-----) [007] ...1 24574.082201: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
70658           <...>-13131 (-----) [007] ...1 24574.082203: tracing_mark_write: E|13131
70659           <...>-13131 (-----) [007] ...1 24574.082264: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
70660           <...>-13131 (-----) [007] d..2 24574.082280: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
70661           <...>-13131 (-----) [007] ...1 24574.082296: tracing_mark_write: E|13131
70662          <idle>-0     (-----) [002] dnh2 24574.082297: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
70663           <...>-13131 (-----) [007] ...1 24574.082298: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
70664          <idle>-0     (-----) [002] .n.1 24574.082301: cpu_idle: state=4294967295 cpu_id=2
70665           <...>-13131 (-----) [007] ...1 24574.082301: tracing_mark_write: E|13131
70666           <...>-13131 (-----) [007] ...1 24574.082303: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
70667           <...>-13131 (-----) [007] ...1 24574.082305: tracing_mark_write: E|13131
70668          <idle>-0     (-----) [002] d..2 24574.082306: 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
70669           <...>-13131 (-----) [007] ...1 24574.082306: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
70670     logd.writer-563   (  555) [002] d..2 24574.082336: 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
70671          <idle>-0     (-----) [002] d..1 24574.082341: cpu_idle: state=0 cpu_id=2
70672           <...>-13131 (-----) [007] ...1 24574.082373: tracing_mark_write: E|13131
70673           <...>-13131 (-----) [007] ...1 24574.082374: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
70674          <idle>-0     (-----) [002] .n.1 24574.082375: cpu_idle: state=4294967295 cpu_id=2
70675           <...>-13131 (-----) [007] d..2 24574.082379: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
70676          <idle>-0     (-----) [002] d..2 24574.082380: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13407 next_prio=110
70677           <...>-13407 (-----) [002] d..2 24574.082437: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
70678           <...>-13407 (-----) [002] d..3 24574.082445: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
70679           <...>-13407 (-----) [002] d..2 24574.082742: sched_switch: prev_comm=id.nn.benchmark prev_pid=13407 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
70680     logd.writer-563   (  555) [002] d..2 24574.082938: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13408 next_prio=110
70681           <...>-13408 (-----) [002] ...1 24574.082966: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
70682           <...>-13408 (-----) [002] ...1 24574.082970: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
70683           <...>-13408 (-----) [002] d..2 24574.083028: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
70684           <...>-13408 (-----) [002] d..3 24574.083037: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
70685           <...>-13408 (-----) [002] ...1 24574.083102: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70686           <...>-13408 (-----) [002] ...1 24574.083107: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70687 id.nn.benchmark-13158 (13131) [001] d.s2 24574.084226: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
70688 id.nn.benchmark-13158 (13131) [001] d.s3 24574.084239: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
70689           <...>-13408 (-----) [002] d..2 24574.084252: sched_switch: prev_comm=id.nn.benchmark prev_pid=13408 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
70690     rcu_preempt-7     (    7) [002] d..2 24574.084258: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=006
70691 id.nn.benchmark-13156 (13131) [006] dnh1 24574.084287: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=006
70692 id.nn.benchmark-13156 (13131) [006] d..2 24574.084290: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
70693     rcu_preempt-7     (    7) [002] d..2 24574.084292: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13408 next_prio=110
70694         rcuop/0-10    (   10) [006] d..2 24574.084293: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
70695         rcuop/0-10    (   10) [006] d..3 24574.084306: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=004
70696         rcuop/0-10    (   10) [006] d..2 24574.084310: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
70697           <...>-13154 (-----) [004] d..2 24574.084312: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
70698         rcuop/1-21    (   21) [004] d..2 24574.084320: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
70699           <...>-13408 (-----) [002] ...1 24574.085153: tracing_mark_write: E|13131
70700           <...>-13408 (-----) [002] ...1 24574.085157: tracing_mark_write: E|13131
70701           <...>-13408 (-----) [002] ...1 24574.085168: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70702           <...>-13408 (-----) [002] ...1 24574.085173: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70703           <...>-13408 (-----) [002] ...1 24574.085871: tracing_mark_write: E|13131
70704           <...>-13408 (-----) [002] ...1 24574.085875: tracing_mark_write: E|13131
70705           <...>-13408 (-----) [002] ...1 24574.085887: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70706           <...>-13408 (-----) [002] ...1 24574.085892: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70707           <...>-13408 (-----) [002] ...1 24574.086224: tracing_mark_write: E|13131
70708           <...>-13408 (-----) [002] ...1 24574.086228: tracing_mark_write: E|13131
70709           <...>-13408 (-----) [002] ...1 24574.086238: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70710           <...>-13408 (-----) [002] ...1 24574.086242: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70711           <...>-13408 (-----) [002] ...1 24574.086471: tracing_mark_write: E|13131
70712           <...>-13408 (-----) [002] ...1 24574.086475: tracing_mark_write: E|13131
70713           <...>-13408 (-----) [002] ...1 24574.086484: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70714           <...>-13408 (-----) [002] ...1 24574.086489: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70715           <...>-13408 (-----) [002] ...1 24574.086885: tracing_mark_write: E|13131
70716           <...>-13408 (-----) [002] ...1 24574.086889: tracing_mark_write: E|13131
70717           <...>-13408 (-----) [002] ...1 24574.086899: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70718           <...>-13408 (-----) [002] ...1 24574.086904: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70719 id.nn.benchmark-13159 (13131) [000] d.h4 24574.087100: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
70720 id.nn.benchmark-13159 (13131) [000] d.h5 24574.087125: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
70721 id.nn.benchmark-13159 (13131) [000] d.h4 24574.087129: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
70722           <...>-13408 (-----) [002] d..2 24574.087138: sched_switch: prev_comm=id.nn.benchmark prev_pid=13408 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
70723 id.nn.benchmark-13156 (13131) [006] dnh1 24574.087156: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
70724 id.nn.benchmark-13156 (13131) [006] d..2 24574.087160: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
70725  crtc_event:111-254   (  254) [002] d..2 24574.087160: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13408 next_prio=110
70726 id.nn.benchmark-13159 (13131) [000] d.h2 24574.087190: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
70727 id.nn.benchmark-13159 (13131) [000] d.h2 24574.087201: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
70728 id.nn.benchmark-13160 (13131) [005] dnh1 24574.087204: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
70729 id.nn.benchmark-13160 (13131) [005] d..2 24574.087207: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
70730 id.nn.benchmark-13159 (13131) [000] d.h3 24574.087208: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
70731         sugov:4-560   (  560) [005] d..2 24574.087211: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
70732           <...>-13408 (-----) [002] d..2 24574.087217: sched_switch: prev_comm=id.nn.benchmark prev_pid=13408 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
70733         sugov:0-559   (  559) [002] d..2 24574.087224: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13408 next_prio=110
70734 crtc_commit:111-253   (  253) [006] d..2 24574.087255: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
70735           <...>-13408 (-----) [002] ...1 24574.087461: tracing_mark_write: E|13131
70736           <...>-13408 (-----) [002] ...1 24574.087464: tracing_mark_write: E|13131
70737           <...>-13408 (-----) [002] ...1 24574.087481: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70738           <...>-13408 (-----) [002] ...1 24574.087485: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70739           <...>-13154 (-----) [004] d.s2 24574.087554: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
70740 id.nn.benchmark-13156 (13131) [006] d.s2 24574.087556: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
70741           <...>-13408 (-----) [002] dnh1 24574.087571: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
70742           <...>-13408 (-----) [002] dnh1 24574.087576: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
70743           <...>-13408 (-----) [002] d..2 24574.087581: sched_switch: prev_comm=id.nn.benchmark prev_pid=13408 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
70744  crtc_event:111-254   (  254) [002] d..2 24574.087593: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
70745  kworker/u16:10-23868 (23868) [002] .... 24574.087686: clk_set_rate: l3_cluster0_vote_clk 1401600000
70746  kworker/u16:10-23868 (23868) [002] d..2 24574.087699: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13408 next_prio=110
70747           <...>-13408 (-----) [002] ...1 24574.087834: tracing_mark_write: E|13131
70748           <...>-13408 (-----) [002] ...1 24574.087838: tracing_mark_write: E|13131
70749           <...>-13408 (-----) [002] ...1 24574.087852: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70750           <...>-13408 (-----) [002] ...1 24574.087856: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70751           <...>-13408 (-----) [002] ...1 24574.087927: tracing_mark_write: E|13131
70752           <...>-13408 (-----) [002] ...1 24574.087931: tracing_mark_write: E|13131
70753           <...>-13408 (-----) [002] ...1 24574.087942: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
70754           <...>-13408 (-----) [002] ...1 24574.087946: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
70755           <...>-13408 (-----) [002] ...1 24574.088233: tracing_mark_write: E|13131
70756           <...>-13408 (-----) [002] ...1 24574.088236: tracing_mark_write: E|13131
70757           <...>-13408 (-----) [002] ...1 24574.088245: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
70758           <...>-13408 (-----) [002] ...1 24574.088249: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
70759           <...>-13408 (-----) [002] ...1 24574.088299: tracing_mark_write: E|13131
70760           <...>-13408 (-----) [002] ...1 24574.088302: tracing_mark_write: E|13131
70761           <...>-13408 (-----) [002] ...1 24574.088311: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
70762           <...>-13408 (-----) [002] ...1 24574.088315: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
70763           <...>-13408 (-----) [002] ...1 24574.088330: tracing_mark_write: E|13131
70764           <...>-13408 (-----) [002] ...1 24574.088334: tracing_mark_write: E|13131
70765           <...>-13408 (-----) [002] ...1 24574.088344: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
70766           <...>-13408 (-----) [002] ...1 24574.088348: tracing_mark_write: E|13131
70767           <...>-13408 (-----) [002] ...1 24574.088357: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
70768           <...>-13408 (-----) [002] ...1 24574.088361: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
70769           <...>-13408 (-----) [002] ...1 24574.089213: tracing_mark_write: E|13131
70770           <...>-13408 (-----) [002] ...1 24574.089216: tracing_mark_write: E|13131
70771           <...>-13408 (-----) [002] ...1 24574.089224: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70772           <...>-13408 (-----) [002] ...1 24574.089228: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70773           <...>-13408 (-----) [002] ...1 24574.089311: tracing_mark_write: E|13131
70774           <...>-13408 (-----) [002] ...1 24574.089314: tracing_mark_write: E|13131
70775           <...>-13408 (-----) [002] ...1 24574.089364: tracing_mark_write: E|13131
70776           <...>-13408 (-----) [002] d..1 24574.089370: sched_waking: comm=id.nn.benchmark pid=13407 prio=110 target_cpu=002
70777 id.nn.benchmark-13156 (13131) [006] dnh1 24574.089414: sched_wakeup: comm=id.nn.benchmark pid=13407 prio=110 target_cpu=006
70778 id.nn.benchmark-13156 (13131) [006] d..2 24574.089440: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13407 next_prio=110
70779           <...>-13408 (-----) [002] d.h3 24574.089441: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
70780           <...>-13407 (-----) [006] d..2 24574.089446: sched_switch: prev_comm=id.nn.benchmark prev_pid=13407 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
70781 id.nn.benchmark-13159 (13131) [000] d.h4 24574.089448: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
70782           <...>-13408 (-----) [002] d.h3 24574.089454: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
70783 id.nn.benchmark-13156 (13131) [006] dnh1 24574.089457: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
70784 id.nn.benchmark-13156 (13131) [006] d..2 24574.089467: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
70785           <...>-13408 (-----) [002] dnh4 24574.089467: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
70786 id.nn.benchmark-13159 (13131) [000] d.h5 24574.089471: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
70787         sugov:4-560   (  560) [006] d..2 24574.089471: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
70788           <...>-13408 (-----) [002] d..2 24574.089478: sched_switch: prev_comm=id.nn.benchmark prev_pid=13408 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
70789 id.nn.benchmark-13156 (13131) [006] d..2 24574.089538: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
70790         sugov:0-559   (  559) [002] d..2 24574.089543: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13408 next_prio=110
70791           <...>-13408 (-----) [002] ...1 24574.089559: tracing_mark_write: E|13131
70792 crtc_commit:111-253   (  253) [006] d..2 24574.089564: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
70793 id.nn.benchmark-13159 (13131) [000] d.h4 24574.089741: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
70794           <...>-13408 (-----) [002] d..1 24574.089742: sched_waking: comm=id.nn.benchmark pid=13407 prio=110 target_cpu=006
70795 id.nn.benchmark-13159 (13131) [000] d.h5 24574.089749: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
70796 id.nn.benchmark-13156 (13131) [006] dnh1 24574.089756: sched_wakeup: comm=id.nn.benchmark pid=13407 prio=110 target_cpu=006
70797 id.nn.benchmark-13156 (13131) [006] d..2 24574.089758: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13407 next_prio=110
70798           <...>-13408 (-----) [002] d..2 24574.089760: sched_switch: prev_comm=id.nn.benchmark prev_pid=13408 prev_prio=110 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
70799  crtc_event:111-254   (  254) [002] d..2 24574.089772: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13408 next_prio=110
70800           <...>-13408 (-----) [002] d..2 24574.089803: sched_switch: prev_comm=id.nn.benchmark prev_pid=13408 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
70801           <...>-13407 (-----) [006] d..1 24574.089810: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
70802           <...>-13407 (-----) [006] d..2 24574.089821: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
70803 id.nn.benchmark-13155 (13131) [007] d..2 24574.089828: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
70804           <...>-13131 (-----) [007] d..2 24574.089832: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
70805           <...>-13407 (-----) [006] d..1 24574.089845: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
70806           <...>-13407 (-----) [006] d..2 24574.089854: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
70807 id.nn.benchmark-13155 (13131) [007] d..2 24574.089859: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
70808           <...>-13131 (-----) [007] ...1 24574.089869: tracing_mark_write: E|13131
70809           <...>-13131 (-----) [007] ...1 24574.089871: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
70810           <...>-13131 (-----) [007] ...1 24574.089873: tracing_mark_write: E|13131
70811           <...>-13131 (-----) [007] ...1 24574.089874: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
70812           <...>-13407 (-----) [006] d..2 24574.089875: sched_switch: prev_comm=id.nn.benchmark prev_pid=13407 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
70813           <...>-13131 (-----) [007] ...1 24574.089876: tracing_mark_write: E|13131
70814           <...>-13131 (-----) [007] ...1 24574.089934: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
70815           <...>-13131 (-----) [007] ...1 24574.089954: tracing_mark_write: E|13131
70816           <...>-13131 (-----) [007] ...1 24574.089956: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
70817           <...>-13131 (-----) [007] ...1 24574.089958: tracing_mark_write: E|13131
70818           <...>-13131 (-----) [007] ...1 24574.089959: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
70819           <...>-13131 (-----) [007] ...1 24574.089961: tracing_mark_write: E|13131
70820           <...>-13131 (-----) [007] ...1 24574.089962: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
70821     logd.writer-563   (  555) [002] d..2 24574.090004: 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
70822           <...>-13131 (-----) [007] ...1 24574.090009: tracing_mark_write: E|13131
70823           <...>-13131 (-----) [007] ...1 24574.090011: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
70824           <...>-13131 (-----) [007] d..2 24574.090015: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
70825          <idle>-0     (-----) [002] d..1 24574.090019: cpu_idle: state=0 cpu_id=2
70826           <...>-13154 (-----) [004] d.s2 24574.090887: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
70827 id.nn.benchmark-13159 (13131) [000] d.s2 24574.090897: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
70828          <idle>-0     (-----) [002] dnH2 24574.090905: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
70829 id.nn.benchmark-13159 (13131) [000] d.s3 24574.090909: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
70830          <idle>-0     (-----) [002] .n.1 24574.090918: cpu_idle: state=4294967295 cpu_id=2
70831          <idle>-0     (-----) [002] d..2 24574.090923: 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
70832  kworker/u16:10-23868 (23868) [002] d..2 24574.091184: 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
70833     rcu_preempt-7     (    7) [002] d..2 24574.091188: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
70834     rcu_preempt-7     (    7) [002] d..3 24574.091200: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
70835     rcu_preempt-7     (    7) [002] d..2 24574.091201: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=007
70836 id.nn.benchmark-13155 (13131) [007] dnh1 24574.091227: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=007
70837     rcu_preempt-7     (    7) [002] d..2 24574.091231: 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
70838 id.nn.benchmark-13155 (13131) [007] d..2 24574.091231: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
70839         rcuop/6-61    (   61) [002] d..2 24574.091235: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=003
70840         rcuop/2-29    (   29) [007] d..2 24574.091244: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
70841         rcuop/6-61    (   61) [002] d..3 24574.091250: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=002
70842         rcuop/6-61    (   61) [002] d..2 24574.091256: 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
70843         rcuop/7-69    (   69) [002] d..2 24574.091295: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
70844          <idle>-0     (-----) [002] d..1 24574.091303: cpu_idle: state=0 cpu_id=2
70845          <idle>-0     (-----) [002] d.h2 24574.091485: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
70846          <idle>-0     (-----) [002] dnh3 24574.091492: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
70847          <idle>-0     (-----) [002] .n.1 24574.091497: cpu_idle: state=4294967295 cpu_id=2
70848          <idle>-0     (-----) [002] d..2 24574.091503: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
70849        DispSync-23904 (23896) [002] d..1 24574.091524: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
70850        DispSync-23904 (23896) [002] d..2 24574.091541: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
70851 id.nn.benchmark-13159 (13131) [000] d..2 24574.091549: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
70852        DispSync-23904 (23896) [002] d..2 24574.091563: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
70853          <idle>-0     (-----) [002] d..1 24574.091570: cpu_idle: state=0 cpu_id=2
70854  appEventThread-23905 (23896) [000] d..3 24574.091588: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
70855  appEventThread-23905 (23896) [000] d..4 24574.091610: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
70856          <idle>-0     (-----) [002] .n.1 24574.091614: cpu_idle: state=4294967295 cpu_id=2
70857  appEventThread-23905 (23896) [000] d.h3 24574.091640: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
70858          <idle>-0     (-----) [002] d..2 24574.091642: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
70859  appEventThread-23905 (23896) [000] d.h3 24574.091648: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
70860 id.nn.benchmark-13156 (13131) [006] dnh1 24574.091651: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
70861 id.nn.benchmark-13156 (13131) [006] d..2 24574.091654: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
70862  appEventThread-23905 (23896) [000] d.h4 24574.091655: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
70863         sugov:4-560   (  560) [006] d..2 24574.091658: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
70864<...>-24151 ( 24151) [002] d..2 24574.091665: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
70865  appEventThread-23905 (23896) [000] d..2 24574.091670: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
70866         sugov:0-559   (  559) [002] d..2 24574.091674: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
70867<...>-24151 ( 24151) [002] .... 24574.091949: binder_transaction: transaction=1670220 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
70868<...>-24151 ( 24151) [002] d..4 24574.091958: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
70869 id.nn.benchmark-13156 (13131) [006] dnh1 24574.091977: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
70870 id.nn.benchmark-13156 (13131) [006] d..2 24574.091979: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
70871<...>-23903 ( 23896) [006] .... 24574.091984: binder_transaction_received: transaction=1670220
70872<...>-23903 ( 23896) [006] d..1 24574.092002: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
70873<...>-24151 ( 24151) [002] d..3 24574.092002: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
70874<...>-23903 ( 23896) [006] d.h1 24574.092016: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
70875<...>-24151 ( 24151) [002] dnh2 24574.092018: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
70876<...>-24151 ( 24151) [002] d..2 24574.092024: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
70877<...>-23903 ( 23896) [006] d..2 24574.092026: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
70878    RenderThread-24437 (24151) [006] d..2 24574.092044: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
70879  appEventThread-23905 (23896) [002] d..2 24574.092050: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
70880<...>-24151 ( 24151) [002] d..3 24574.092148: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
70881 id.nn.benchmark-13156 (13131) [006] dnh1 24574.092163: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
70882 id.nn.benchmark-13156 (13131) [006] d..2 24574.092166: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
70883<...>-24151 ( 24151) [002] d..2 24574.092174: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
70884          <idle>-0     (-----) [002] d..1 24574.092182: cpu_idle: state=0 cpu_id=2
70885    RenderThread-24437 (24151) [006] d..1 24574.092217: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
70886          <idle>-0     (-----) [002] dnh2 24574.092232: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
70887          <idle>-0     (-----) [002] .n.1 24574.092236: cpu_idle: state=4294967295 cpu_id=2
70888          <idle>-0     (-----) [002] d..2 24574.092241: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
70889    RenderThread-24437 (24151) [006] .... 24574.092254: binder_transaction: transaction=1670221 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
70890    RenderThread-24437 (24151) [006] d..4 24574.092257: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
70891    RenderThread-24437 (24151) [006] d..5 24574.092262: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
70892    RenderThread-24437 (24151) [006] d..2 24574.092266: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
70893<...>-23903 ( 23896) [006] .... 24574.092269: binder_transaction_received: transaction=1670221
70894<...>-24151 ( 24151) [002] d..2 24574.092284: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
70895          <idle>-0     (-----) [002] d..1 24574.092290: cpu_idle: state=0 cpu_id=2
70896<...>-23903 ( 23896) [006] .... 24574.092298: binder_transaction: transaction=1670222 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
70897<...>-23903 ( 23896) [006] d..2 24574.092302: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
70898<...>-23903 ( 23896) [006] d.h3 24574.092334: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
70899          <idle>-0     (-----) [002] dnh2 24574.092336: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
70900<...>-23903 ( 23896) [006] dnh4 24574.092337: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
70901<...>-23903 ( 23896) [006] dnh3 24574.092338: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
70902          <idle>-0     (-----) [002] .n.1 24574.092339: cpu_idle: state=4294967295 cpu_id=2
70903          <idle>-0     (-----) [002] dn.2 24574.092343: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
70904<...>-23903 ( 23896) [006] d..2 24574.092347: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
70905          <idle>-0     (-----) [002] d..2 24574.092350: 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
70906         sugov:4-560   (  560) [006] d..2 24574.092351: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
70907         sugov:0-559   (  559) [002] d..2 24574.092357: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
70908<...>-23903 ( 23896) [006] d..2 24574.092361: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
70909    RenderThread-24437 (24151) [002] .... 24574.092361: binder_transaction_received: transaction=1670222
70910    RenderThread-24437 (24151) [002] d..2 24574.093346: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
70911          <idle>-0     (-----) [002] d..1 24574.093354: cpu_idle: state=0 cpu_id=2
70912          <idle>-0     (-----) [002] d.h2 24574.093440: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
70913          <idle>-0     (-----) [002] d.h3 24574.093447: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
70914          <idle>-0     (-----) [002] dnh3 24574.093450: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
70915          <idle>-0     (-----) [002] .n.1 24574.093455: cpu_idle: state=4294967295 cpu_id=2
70916          <idle>-0     (-----) [002] d..2 24574.093461: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
70917 id.nn.benchmark-13159 (13131) [000] d.h2 24574.093560: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
70918 id.nn.benchmark-13159 (13131) [000] d.h3 24574.093571: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
70919    RenderThread-24437 (24151) [002] d..2 24574.093581: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
70920 kgsl_worker_thr-246   (  246) [002] d..2 24574.093617: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
70921 kgsl_worker_thr-246   (  246) [002] d..3 24574.093626: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
70922 kgsl_worker_thr-246   (  246) [002] d..2 24574.093636: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
70923           <...>-13154 (-----) [004] d..3 24574.093719: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
70924 id.nn.benchmark-13160 (13131) [005] d..2 24574.093722: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13409 next_prio=110
70925           <...>-13154 (-----) [004] d..2 24574.093726: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
70926 id.nn.benchmark-13159 (13131) [000] dnh1 24574.093729: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
70927          <idle>-0     (-----) [004] d..1 24574.093734: cpu_idle: state=0 cpu_id=4
70928 id.nn.benchmark-13159 (13131) [000] d..2 24574.093735: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
70929          <idle>-0     (-----) [004] .n.1 24574.093761: cpu_idle: state=4294967295 cpu_id=4
70930           <...>-13409 (-----) [005] d..2 24574.093764: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
70931          <idle>-0     (-----) [004] d..2 24574.093783: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
70932     migration/0-13    (   13) [000] d.h3 24574.093784: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
70933     migration/0-13    (   13) [000] d.h3 24574.093795: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
70934           <...>-13409 (-----) [005] dnh1 24574.093799: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
70935  kworker/u16:10-23868 (23868) [002] d.h1 24574.093802: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
70936           <...>-13409 (-----) [005] d..2 24574.093803: sched_switch: prev_comm=id.nn.benchmark prev_pid=13409 prev_prio=110 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
70937         sugov:4-560   (  560) [005] d..2 24574.093808: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13409 next_prio=110
70938     migration/0-13    (   13) [000] d.h4 24574.093808: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
70939     migration/0-13    (   13) [000] d..2 24574.093815: 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
70940  kworker/u16:10-23868 (23868) [002] d..2 24574.093820: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
70941         sugov:0-559   (  559) [000] d..2 24574.093828: 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
70942          <idle>-0     (-----) [000] d..1 24574.093843: cpu_idle: state=0 cpu_id=0
70943    RenderThread-24437 (24151) [002] .... 24574.093844: binder_transaction: transaction=1670223 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
70944    RenderThread-24437 (24151) [002] d..4 24574.093852: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
70945    RenderThread-24437 (24151) [002] d..5 24574.093871: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
70946          <idle>-0     (-----) [000] .n.1 24574.093876: cpu_idle: state=4294967295 cpu_id=0
70947          <idle>-0     (-----) [000] d..2 24574.093897: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
70948<...>-23903 ( 23896) [000] .... 24574.093901: binder_transaction_received: transaction=1670223
70949    RenderThread-24437 (24151) [002] d..2 24574.093901: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
70950 id.nn.benchmark-13155 (13131) [007] d..3 24574.093909: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
70951 id.nn.benchmark-13155 (13131) [007] d..2 24574.093918: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
70952 id.nn.benchmark-13158 (13131) [001] dnh1 24574.093921: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
70953          <idle>-0     (-----) [007] dn.1 24574.093927: cpu_idle: state=0 cpu_id=7
70954 id.nn.benchmark-13158 (13131) [001] d..2 24574.093927: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
70955          <idle>-0     (-----) [007] .n.1 24574.093928: cpu_idle: state=4294967295 cpu_id=7
70956          <idle>-0     (-----) [007] d..2 24574.093932: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13410 next_prio=110
70957           <...>-13409 (-----) [005] d..2 24574.093945: sched_switch: prev_comm=id.nn.benchmark prev_pid=13409 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
70958           <...>-13410 (-----) [007] ...1 24574.093949: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
70959           <...>-13410 (-----) [007] ...1 24574.093951: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
70960          <idle>-0     (-----) [005] d..1 24574.093954: cpu_idle: state=0 cpu_id=5
70961     migration/1-17    (   17) [001] d..2 24574.093978: 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
70962          <idle>-0     (-----) [001] d..1 24574.093990: cpu_idle: state=0 cpu_id=1
70963<...>-23903 ( 23896) [000] .... 24574.093994: binder_transaction: transaction=1670224 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
70964<...>-23903 ( 23896) [000] d..2 24574.093998: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
70965           <...>-13410 (-----) [007] ...1 24574.094010: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
70966<...>-23903 ( 23896) [000] d..3 24574.094011: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
70967           <...>-13410 (-----) [007] ...1 24574.094013: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
70968<...>-23903 ( 23896) [000] d..2 24574.094030: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
70969    RenderThread-24437 (24151) [000] .... 24574.094034: binder_transaction_received: transaction=1670224
70970    RenderThread-24437 (24151) [000] d..2 24574.094090: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
70971          <idle>-0     (-----) [000] d..1 24574.094100: cpu_idle: state=0 cpu_id=0
70972          <idle>-0     (-----) [005] ...1 24574.094145: cpu_idle: state=4294967295 cpu_id=5
70973          <idle>-0     (-----) [005] d..1 24574.094146: cpu_idle: state=0 cpu_id=5
70974     logd.writer-563   (  555) [002] d..2 24574.094165: 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
70975          <idle>-0     (-----) [002] d..1 24574.094174: cpu_idle: state=0 cpu_id=2
70976           <...>-13157 (-----) [003] d.h2 24574.094225: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
70977           <...>-13157 (-----) [003] dnh3 24574.094233: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
70978 id.nn.benchmark-13156 (13131) [006] d..2 24574.094240: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
70979           <...>-13157 (-----) [003] d..2 24574.094242: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
70980          <idle>-0     (-----) [005] ...1 24574.094249: cpu_idle: state=4294967295 cpu_id=5
70981          <idle>-0     (-----) [005] d..1 24574.094250: cpu_idle: state=0 cpu_id=5
70982          <idle>-0     (-----) [000] ...1 24574.094255: cpu_idle: state=4294967295 cpu_id=0
70983          <idle>-0     (-----) [000] d..1 24574.094258: cpu_idle: state=0 cpu_id=0
70984          <idle>-0     (-----) [005] .n.1 24574.094266: cpu_idle: state=4294967295 cpu_id=5
70985          <idle>-0     (-----) [005] d..2 24574.094288: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
70986<...>-33 ( 33) [003] d.h3 24574.094289: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
70987<...>-33 ( 33) [003] d.h3 24574.094301: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
70988           <...>-13410 (-----) [007] dnh1 24574.094304: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
70989           <...>-13410 (-----) [007] d..2 24574.094308: sched_switch: prev_comm=id.nn.benchmark prev_pid=13410 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
70990<...>-33 ( 33) [003] d.h4 24574.094309: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
70991         sugov:4-560   (  560) [007] d..2 24574.094312: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13410 next_prio=110
70992          <idle>-0     (-----) [000] .n.1 24574.094314: cpu_idle: state=4294967295 cpu_id=0
70993          <idle>-0     (-----) [000] d..2 24574.094320: 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
70994<...>-33 ( 33) [003] d..2 24574.094324: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
70995         sugov:0-559   (  559) [000] d..2 24574.094333: 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
70996          <idle>-0     (-----) [003] d..1 24574.094335: cpu_idle: state=0 cpu_id=3
70997          <idle>-0     (-----) [000] d..1 24574.094338: cpu_idle: state=0 cpu_id=0
70998           <...>-13410 (-----) [007] d..1 24574.094583: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
70999           <...>-13410 (-----) [007] d..2 24574.094588: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=004
71000           <...>-13410 (-----) [007] d..1 24574.094590: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=007
71001           <...>-13410 (-----) [007] dn.2 24574.094593: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=007
71002           <...>-13410 (-----) [007] d..2 24574.094596: sched_switch: prev_comm=id.nn.benchmark prev_pid=13410 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
71003 id.nn.benchmark-13155 (13131) [007] d..2 24574.094602: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13410 next_prio=110
71004           <...>-13410 (-----) [007] d..1 24574.094604: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=007
71005           <...>-13410 (-----) [007] dn.2 24574.094606: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=007
71006           <...>-13410 (-----) [007] d..2 24574.094608: sched_switch: prev_comm=id.nn.benchmark prev_pid=13410 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
71007          <idle>-0     (-----) [002] d.h2 24574.095498: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
71008          <idle>-0     (-----) [002] dnh3 24574.095506: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
71009          <idle>-0     (-----) [002] .n.1 24574.095511: cpu_idle: state=4294967295 cpu_id=2
71010          <idle>-0     (-----) [002] d..2 24574.095517: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
71011        DispSync-23904 (23896) [002] d..1 24574.095532: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
71012        DispSync-23904 (23896) [002] d..2 24574.095542: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
71013          <idle>-0     (-----) [000] .n.1 24574.095548: cpu_idle: state=4294967295 cpu_id=0
71014          <idle>-0     (-----) [000] d..2 24574.095553: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
71015        DispSync-23904 (23896) [002] d..2 24574.095577: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
71016   sfEventThread-23906 (23896) [000] d..3 24574.095580: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
71017           <...>-13154 (-----) [002] d.h4 24574.095612: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
71018   sfEventThread-23906 (23896) [000] d..4 24574.095619: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
71019           <...>-13154 (-----) [002] d.h4 24574.095623: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
71020          <idle>-0     (-----) [003] .n.1 24574.095624: cpu_idle: state=4294967295 cpu_id=3
71021 id.nn.benchmark-13159 (13131) [004] dnh1 24574.095626: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
71022 id.nn.benchmark-13159 (13131) [004] d..2 24574.095629: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
71023          <idle>-0     (-----) [003] d..2 24574.095630: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
71024         sugov:4-560   (  560) [004] d..2 24574.095633: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
71025           <...>-13154 (-----) [002] d.h5 24574.095638: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
71026          <idle>-0     (-----) [001] .n.1 24574.095643: cpu_idle: state=4294967295 cpu_id=1
71027          <idle>-0     (-----) [001] d..2 24574.095649: 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
71028   sfEventThread-23906 (23896) [000] d..2 24574.095656: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13410 next_prio=110
71029         sugov:0-559   (  559) [001] d..2 24574.095662: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
71030          <idle>-0     (-----) [001] d..1 24574.095667: cpu_idle: state=0 cpu_id=1
71031           <...>-13410 (-----) [000] d..1 24574.095688: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
71032 id.nn.benchmark-13158 (13131) [006] d.h1 24574.095700: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
71033           <...>-13410 (-----) [000] d..1 24574.095701: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=005
71034           <...>-13157 (-----) [005] d.h1 24574.095713: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=005
71035  surfaceflinger-23896 (23896) [003] d..1 24574.095862: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
71036  surfaceflinger-23896 (23896) [003] d..2 24574.095878: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
71037          <idle>-0     (-----) [001] .n.1 24574.095883: cpu_idle: state=4294967295 cpu_id=1
71038          <idle>-0     (-----) [001] d..2 24574.095888: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
71039   sfEventThread-23906 (23896) [001] d..2 24574.095924: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
71040  surfaceflinger-23896 (23896) [003] ...1 24574.096000: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
71041  surfaceflinger-23896 (23896) [003] ...1 24574.096004: tracing_mark_write: E|23896
71042  surfaceflinger-23896 (23896) [003] .... 24574.096047: binder_transaction: transaction=1670225 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
71043  surfaceflinger-23896 (23896) [003] ...2 24574.096066: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
71044  surfaceflinger-23896 (23896) [003] d..4 24574.096073: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=006
71045  surfaceflinger-23896 (23896) [003] d..5 24574.096093: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
71046           <...>-13410 (-----) [000] d..2 24574.096103: sched_switch: prev_comm=id.nn.benchmark prev_pid=13410 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
71047  surfaceflinger-23896 (23896) [003] d.h5 24574.096131: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
71048  surfaceflinger-23896 (23896) [003] d.h5 24574.096139: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
71049 id.nn.benchmark-13159 (13131) [004] dnh1 24574.096142: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
71050 id.nn.benchmark-13159 (13131) [004] d..2 24574.096144: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
71051  surfaceflinger-23896 (23896) [003] d.h6 24574.096146: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
71052         sugov:4-560   (  560) [004] d..2 24574.096147: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
71053  HwBinder:598_3-633   (  598) [000] .... 24574.096153: binder_transaction_received: transaction=1670225
71054 id.nn.benchmark-13156 (13131) [001] d..2 24574.096155: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
71055         sugov:0-559   (  559) [001] d..2 24574.096164: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
71056  surfaceflinger-23896 (23896) [003] d..2 24574.096178: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
71057  HwBinder:598_3-633   (  598) [000] ...1 24574.096190: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
71058  HwBinder:598_3-633   (  598) [000] ...1 24574.096270: tracing_mark_write: B|598|HWCSession::PresentDisplay::
71059  HwBinder:598_3-633   (  598) [000] ...1 24574.096385: tracing_mark_write: B|598|HWDeviceDRM::Commit::
71060  HwBinder:598_3-633   (  598) [000] ...1 24574.096392: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
71061  HwBinder:598_3-633   (  598) [000] d..2 24574.096783: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=006
71062 id.nn.benchmark-13159 (13131) [004] dnh1 24574.096803: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
71063 id.nn.benchmark-13159 (13131) [004] d..2 24574.096805: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
71064  HwBinder:598_3-633   (  598) [000] ...1 24574.096856: tracing_mark_write: E|598
71065  HwBinder:598_3-633   (  598) [000] ...1 24574.096859: tracing_mark_write: E|598
71066  HwBinder:598_3-633   (  598) [000] ...1 24574.096899: tracing_mark_write: E|598
71067  HwBinder:598_3-633   (  598) [000] ...1 24574.096931: tracing_mark_write: E|598
71068  HwBinder:598_3-633   (  598) [000] .... 24574.096941: binder_transaction: transaction=1670226 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
71069  HwBinder:598_3-633   (  598) [000] d..2 24574.096953: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
71070  HwBinder:598_3-633   (  598) [000] d..3 24574.096963: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
71071  HwBinder:598_3-633   (  598) [000] .... 24574.096966: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
71072 id.nn.benchmark-13160 (13131) [003] d..2 24574.096972: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
71073  surfaceflinger-23896 (23896) [003] .... 24574.096978: binder_transaction_received: transaction=1670226
71074  HwBinder:598_3-633   (  598) [000] d..2 24574.097007: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13410 next_prio=110
71075           <...>-13410 (-----) [000] ...1 24574.097022: tracing_mark_write: E|13131
71076           <...>-13410 (-----) [000] ...1 24574.097027: tracing_mark_write: E|13131
71077           <...>-13410 (-----) [000] ...1 24574.097042: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
71078           <...>-13410 (-----) [000] ...1 24574.097047: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
71079  surfaceflinger-23896 (23896) [003] d..2 24574.097229: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
71080 crtc_commit:111-253   (  253) [004] d..2 24574.097362: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
71081 id.nn.benchmark-13159 (13131) [004] d.s2 24574.097557: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
71082           <...>-13154 (-----) [002] d.s1 24574.097579: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
71083 id.nn.benchmark-13158 (13131) [006] d.H2 24574.097590: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
71084           <...>-13410 (-----) [000] dnh1 24574.097591: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
71085 id.nn.benchmark-13158 (13131) [006] d.H3 24574.097596: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
71086 id.nn.benchmark-13158 (13131) [006] d.H2 24574.097598: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
71087           <...>-13154 (-----) [002] d.s2 24574.097600: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
71088 id.nn.benchmark-13159 (13131) [004] d..2 24574.097602: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
71089           <...>-13410 (-----) [000] d..2 24574.097605: sched_switch: prev_comm=id.nn.benchmark prev_pid=13410 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
71090         sugov:4-560   (  560) [004] d..2 24574.097606: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
71091  kworker/u16:10-23868 (23868) [000] dnh3 24574.097619: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
71092  kworker/u16:10-23868 (23868) [000] d..2 24574.097624: 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
71093         sugov:0-559   (  559) [000] d..2 24574.097631: 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
71094     rcu_preempt-7     (    7) [000] d..2 24574.097644: 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
71095  kworker/u16:10-23868 (23868) [000] .... 24574.097728: clk_set_rate: l3_cluster0_vote_clk 1036800000
71096  kworker/u16:10-23868 (23868) [000] d..2 24574.097741: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13410 next_prio=110
71097           <...>-13410 (-----) [000] ...1 24574.097971: tracing_mark_write: E|13131
71098           <...>-13410 (-----) [000] ...1 24574.097975: tracing_mark_write: E|13131
71099           <...>-13410 (-----) [000] ...1 24574.097996: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
71100           <...>-13410 (-----) [000] ...1 24574.098000: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
71101           <...>-13410 (-----) [000] ...1 24574.098332: tracing_mark_write: E|13131
71102           <...>-13410 (-----) [000] ...1 24574.098335: tracing_mark_write: E|13131
71103           <...>-13410 (-----) [000] ...1 24574.098346: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
71104           <...>-13410 (-----) [000] ...1 24574.098350: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
71105           <...>-13410 (-----) [000] ...1 24574.098583: tracing_mark_write: E|13131
71106           <...>-13410 (-----) [000] ...1 24574.098586: tracing_mark_write: E|13131
71107           <...>-13410 (-----) [000] ...1 24574.098596: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
71108           <...>-13410 (-----) [000] ...1 24574.098600: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
71109           <...>-13410 (-----) [000] ...1 24574.099003: tracing_mark_write: E|13131
71110           <...>-13410 (-----) [000] ...1 24574.099007: tracing_mark_write: E|13131
71111           <...>-13410 (-----) [000] ...1 24574.099017: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
71112           <...>-13410 (-----) [000] ...1 24574.099021: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
71113           <...>-13410 (-----) [000] ...1 24574.099413: tracing_mark_write: E|13131
71114           <...>-13410 (-----) [000] ...1 24574.099416: tracing_mark_write: E|13131
71115           <...>-13410 (-----) [000] ...1 24574.099434: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
71116           <...>-13410 (-----) [000] ...1 24574.099438: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
71117           <...>-13410 (-----) [000] ...1 24574.099634: tracing_mark_write: E|13131
71118           <...>-13410 (-----) [000] ...1 24574.099638: tracing_mark_write: E|13131
71119           <...>-13410 (-----) [000] ...1 24574.099651: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
71120           <...>-13410 (-----) [000] ...1 24574.099655: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
71121           <...>-13410 (-----) [000] ...1 24574.099728: tracing_mark_write: E|13131
71122           <...>-13410 (-----) [000] ...1 24574.099731: tracing_mark_write: E|13131
71123           <...>-13410 (-----) [000] ...1 24574.099742: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
71124           <...>-13410 (-----) [000] ...1 24574.099747: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
71125           <...>-13410 (-----) [000] ...1 24574.100052: tracing_mark_write: E|13131
71126           <...>-13410 (-----) [000] ...1 24574.100055: tracing_mark_write: E|13131
71127           <...>-13410 (-----) [000] ...1 24574.100064: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
71128           <...>-13410 (-----) [000] ...1 24574.100068: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
71129           <...>-13410 (-----) [000] ...1 24574.100122: tracing_mark_write: E|13131
71130           <...>-13410 (-----) [000] ...1 24574.100125: tracing_mark_write: E|13131
71131           <...>-13410 (-----) [000] ...1 24574.100134: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
71132           <...>-13410 (-----) [000] ...1 24574.100137: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
71133           <...>-13410 (-----) [000] ...1 24574.100154: tracing_mark_write: E|13131
71134           <...>-13410 (-----) [000] ...1 24574.100157: tracing_mark_write: E|13131
71135           <...>-13410 (-----) [000] ...1 24574.100168: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
71136           <...>-13410 (-----) [000] ...1 24574.100171: tracing_mark_write: E|13131
71137           <...>-13410 (-----) [000] ...1 24574.100180: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
71138           <...>-13410 (-----) [000] ...1 24574.100185: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
71139 id.nn.benchmark-13159 (13131) [004] d.s2 24574.100890: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
71140           <...>-13410 (-----) [000] d.s2 24574.100899: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
71141           <...>-13410 (-----) [000] dns3 24574.100909: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
71142           <...>-13410 (-----) [000] dnH2 24574.100914: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
71143           <...>-13410 (-----) [000] d..2 24574.100921: sched_switch: prev_comm=id.nn.benchmark prev_pid=13410 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
71144     rcu_preempt-7     (    7) [000] d..2 24574.100927: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=006
71145 id.nn.benchmark-13158 (13131) [006] dnh1 24574.100961: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=006
71146 id.nn.benchmark-13158 (13131) [006] d..2 24574.100964: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
71147     rcu_preempt-7     (    7) [000] d..2 24574.100966: 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
71148         rcuop/0-10    (   10) [006] d..2 24574.100972: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
71149  kworker/u16:10-23868 (23868) [000] d..2 24574.101231: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13410 next_prio=110
71150           <...>-13410 (-----) [000] ...1 24574.101396: tracing_mark_write: E|13131
71151           <...>-13410 (-----) [000] ...1 24574.101399: tracing_mark_write: E|13131
71152           <...>-13410 (-----) [000] ...1 24574.101408: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
71153           <...>-13410 (-----) [000] ...1 24574.101412: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
71154           <...>-13410 (-----) [000] ...1 24574.101497: tracing_mark_write: E|13131
71155           <...>-13410 (-----) [000] ...1 24574.101500: tracing_mark_write: E|13131
71156           <...>-13410 (-----) [000] d..2 24574.101545: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
71157           <...>-13410 (-----) [000] d..3 24574.101558: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
71158           <...>-13410 (-----) [000] ...1 24574.101578: tracing_mark_write: E|13131
71159           <...>-13410 (-----) [000] d..1 24574.101583: sched_waking: comm=id.nn.benchmark pid=13409 prio=110 target_cpu=005
71160           <...>-13157 (-----) [005] dnh1 24574.101605: sched_wakeup: comm=id.nn.benchmark pid=13409 prio=110 target_cpu=005
71161           <...>-13157 (-----) [005] d..2 24574.101608: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13409 next_prio=110
71162           <...>-13409 (-----) [005] d..2 24574.101614: sched_switch: prev_comm=id.nn.benchmark prev_pid=13409 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
71163           <...>-13410 (-----) [000] ...1 24574.101614: tracing_mark_write: E|13131
71164           <...>-13410 (-----) [000] d..1 24574.101825: sched_waking: comm=id.nn.benchmark pid=13409 prio=110 target_cpu=005
71165           <...>-13157 (-----) [005] dnh1 24574.101844: sched_wakeup: comm=id.nn.benchmark pid=13409 prio=110 target_cpu=005
71166           <...>-13157 (-----) [005] d..2 24574.101846: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13409 next_prio=110
71167           <...>-13410 (-----) [000] d..2 24574.101877: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=006
71168 id.nn.benchmark-13158 (13131) [006] dnh1 24574.101899: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=006
71169           <...>-13409 (-----) [005] d..1 24574.101901: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
71170 id.nn.benchmark-13158 (13131) [006] d..2 24574.101902: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
71171         rcuop/0-10    (   10) [006] d..2 24574.101905: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
71172           <...>-13409 (-----) [005] d..2 24574.101913: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
71173 id.nn.benchmark-13155 (13131) [007] d..2 24574.101919: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
71174           <...>-13410 (-----) [000] d..2 24574.101920: sched_switch: prev_comm=id.nn.benchmark prev_pid=13410 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
71175           <...>-13131 (-----) [007] d..2 24574.101926: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
71176           <...>-13409 (-----) [005] d..1 24574.101940: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
71177           <...>-13409 (-----) [005] d..2 24574.101948: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
71178 id.nn.benchmark-13155 (13131) [007] d..2 24574.101953: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
71179           <...>-13409 (-----) [005] d..2 24574.101958: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=004
71180           <...>-13131 (-----) [007] ...1 24574.101967: tracing_mark_write: E|13131
71181           <...>-13131 (-----) [007] ...1 24574.101970: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
71182           <...>-13409 (-----) [005] d..3 24574.101971: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=004
71183           <...>-13131 (-----) [007] ...1 24574.101972: tracing_mark_write: E|13131
71184           <...>-13131 (-----) [007] ...1 24574.101974: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
71185           <...>-13131 (-----) [007] ...1 24574.101975: tracing_mark_write: E|13131
71186 id.nn.benchmark-13159 (13131) [004] d..2 24574.101977: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=rcuop/4 next_pid=45 next_prio=120
71187           <...>-13409 (-----) [005] d..2 24574.101981: sched_switch: prev_comm=id.nn.benchmark prev_pid=13409 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
71188         rcuop/4-45    (   45) [004] d..2 24574.101982: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
71189     logd.writer-563   (  555) [000] d..2 24574.102025: 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
71190           <...>-13131 (-----) [007] ...1 24574.102036: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_create
71191          <idle>-0     (-----) [000] d..1 24574.102044: cpu_idle: state=0 cpu_id=0
71192           <...>-13131 (-----) [007] d..2 24574.102051: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
71193           <...>-13131 (-----) [007] ...1 24574.102065: tracing_mark_write: E|13131
71194           <...>-13131 (-----) [007] ...1 24574.102067: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setInput
71195          <idle>-0     (-----) [000] dnh2 24574.102069: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
71196           <...>-13131 (-----) [007] ...1 24574.102069: tracing_mark_write: E|13131
71197           <...>-13131 (-----) [007] ...1 24574.102071: tracing_mark_write: B|13131|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
71198           <...>-13131 (-----) [007] ...1 24574.102072: tracing_mark_write: E|13131
71199          <idle>-0     (-----) [000] .n.1 24574.102073: cpu_idle: state=4294967295 cpu_id=0
71200           <...>-13131 (-----) [007] ...1 24574.102074: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksExecution_startCompute
71201          <idle>-0     (-----) [000] d..2 24574.102081: 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
71202     logd.writer-563   (  555) [000] d..2 24574.102115: 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
71203          <idle>-0     (-----) [000] d..1 24574.102121: cpu_idle: state=0 cpu_id=0
71204           <...>-13131 (-----) [007] ...1 24574.102135: tracing_mark_write: E|13131
71205          <idle>-0     (-----) [000] .n.1 24574.102136: cpu_idle: state=4294967295 cpu_id=0
71206           <...>-13131 (-----) [007] ...1 24574.102136: tracing_mark_write: B|13131|[NN_LR_PE]ANeuralNetworksEvent_wait
71207           <...>-13131 (-----) [007] d..2 24574.102141: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
71208          <idle>-0     (-----) [000] d..2 24574.102142: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13411 next_prio=110
71209           <...>-13411 (-----) [000] d..2 24574.102200: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
71210           <...>-13411 (-----) [000] d..3 24574.102208: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
71211           <...>-13411 (-----) [000] d..2 24574.102507: sched_switch: prev_comm=id.nn.benchmark prev_pid=13411 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
71212     logd.writer-563   (  555) [000] d..2 24574.102691: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13412 next_prio=110
71213           <...>-13412 (-----) [000] ...1 24574.102718: tracing_mark_write: B|13131|[NN_LR_PE]asyncStartComputeOnCpu
71214           <...>-13412 (-----) [000] ...1 24574.102723: tracing_mark_write: B|13131|[NN_LC_PE]run::V1_1
71215           <...>-13412 (-----) [000] d..2 24574.102780: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
71216           <...>-13412 (-----) [000] d..3 24574.102788: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
71217           <...>-13412 (-----) [000] ...1 24574.102853: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
71218           <...>-13412 (-----) [000] ...1 24574.102858: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
71219           <...>-13412 (-----) [000] d.h4 24574.103576: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
71220           <...>-13412 (-----) [000] dnh5 24574.103593: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
71221           <...>-13412 (-----) [000] dnh4 24574.103597: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
71222 id.nn.benchmark-13159 (13131) [004] dnh1 24574.103608: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
71223 id.nn.benchmark-13159 (13131) [004] d..2 24574.103611: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
71224           <...>-13412 (-----) [000] d..2 24574.103618: sched_switch: prev_comm=id.nn.benchmark prev_pid=13412 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
71225  crtc_event:111-254   (  254) [000] d..2 24574.103635: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13412 next_prio=110
71226 crtc_commit:111-253   (  253) [004] d..2 24574.103700: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
71227 id.nn.benchmark-13159 (13131) [004] d.s2 24574.104220: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
71228           <...>-13412 (-----) [000] dnh1 24574.104237: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
71229           <...>-13412 (-----) [000] d..2 24574.104242: sched_switch: prev_comm=id.nn.benchmark prev_pid=13412 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
71230  crtc_event:111-254   (  254) [000] d..2 24574.104255: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13412 next_prio=110
71231           <...>-13412 (-----) [000] ...1 24574.105031: tracing_mark_write: E|13131
71232           <...>-13412 (-----) [000] ...1 24574.105035: tracing_mark_write: E|13131
71233           <...>-13412 (-----) [000] ...1 24574.105047: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
71234           <...>-13412 (-----) [000] ...1 24574.105051: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
71235           <...>-13412 (-----) [000] ...1 24574.105745: tracing_mark_write: E|13131
71236           <...>-13412 (-----) [000] ...1 24574.105749: tracing_mark_write: E|13131
71237           <...>-13412 (-----) [000] ...1 24574.105767: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
71238           <...>-13412 (-----) [000] ...1 24574.105771: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
71239           <...>-13412 (-----) [000] d.h4 24574.105925: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=004
71240           <...>-13412 (-----) [000] dnh5 24574.105943: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
71241           <...>-13412 (-----) [000] dnh2 24574.105980: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
71242           <...>-13412 (-----) [000] dnh2 24574.105987: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
71243 id.nn.benchmark-13159 (13131) [004] dnh1 24574.105990: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
71244 id.nn.benchmark-13159 (13131) [004] d..2 24574.105993: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
71245         sugov:4-560   (  560) [004] d..2 24574.105997: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
71246           <...>-13412 (-----) [000] dnh3 24574.105999: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
71247           <...>-13412 (-----) [000] d..2 24574.106006: sched_switch: prev_comm=id.nn.benchmark prev_pid=13412 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
71248 id.nn.benchmark-13156 (13131) [001] d..2 24574.106010: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
71249         sugov:0-559   (  559) [001] d..2 24574.106020: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
71250 crtc_commit:111-253   (  253) [000] d..2 24574.106051: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13412 next_prio=110
71251 id.nn.benchmark-13158 (13131) [006] d..3 24574.106211: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
71252           <...>-13412 (-----) [000] d.h4 24574.106212: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
71253 id.nn.benchmark-13158 (13131) [006] d..2 24574.106219: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
71254           <...>-13412 (-----) [000] dnh5 24574.106220: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
71255           <...>-13154 (-----) [002] dnh1 24574.106223: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
71256           <...>-13154 (-----) [002] d..2 24574.106230: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
71257          <idle>-0     (-----) [006] d..1 24574.106231: cpu_idle: state=0 cpu_id=6
71258           <...>-13412 (-----) [000] d..2 24574.106234: sched_switch: prev_comm=id.nn.benchmark prev_pid=13412 prev_prio=110 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
71259  crtc_event:111-254   (  254) [000] d..2 24574.106243: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13412 next_prio=110
71260           <...>-13412 (-----) [000] d..1 24574.106247: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=006
71261          <idle>-0     (-----) [006] .n.1 24574.106258: cpu_idle: state=4294967295 cpu_id=6
71262          <idle>-0     (-----) [006] dn.2 24574.106274: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=006
71263          <idle>-0     (-----) [006] d..2 24574.106280: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
71264     migration/2-25    (   25) [002] d..2 24574.106294: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
71265     logd.writer-563   (  555) [002] d..2 24574.106451: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
71266 id.nn.benchmark-13158 (13131) [002] d.h4 24574.106480: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
71267 id.nn.benchmark-13158 (13131) [002] d.h4 24574.106489: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
71268 id.nn.benchmark-13159 (13131) [004] dnh1 24574.106491: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
71269 id.nn.benchmark-13159 (13131) [004] d..2 24574.106493: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
71270         sugov:4-560   (  560) [004] d..2 24574.106496: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
71271 id.nn.benchmark-13158 (13131) [002] d.h5 24574.106501: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
71272           <...>-13412 (-----) [000] d..2 24574.106509: sched_switch: prev_comm=id.nn.benchmark prev_pid=13412 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
71273         sugov:0-559   (  559) [000] d..2 24574.106517: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13412 next_prio=110
71274           <...>-13412 (-----) [000] ...1 24574.106525: tracing_mark_write: E|13131
71275           <...>-13412 (-----) [000] ...1 24574.106529: tracing_mark_write: E|13131
71276           <...>-13412 (-----) [000] ...1 24574.106540: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
71277           <...>-13412 (-----) [000] ...1 24574.106544: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
71278           <...>-13412 (-----) [000] ...1 24574.106771: tracing_mark_write: E|13131
71279           <...>-13412 (-----) [000] ...1 24574.106775: tracing_mark_write: E|13131
71280           <...>-13412 (-----) [000] ...1 24574.106786: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
71281           <...>-13412 (-----) [000] ...1 24574.106790: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
71282           <...>-13412 (-----) [000] ...1 24574.107169: tracing_mark_write: E|13131
71283           <...>-13412 (-----) [000] ...1 24574.107172: tracing_mark_write: E|13131
71284           <...>-13412 (-----) [000] ...1 24574.107183: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
71285           <...>-13412 (-----) [000] ...1 24574.107187: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
71286 id.nn.benchmark-13159 (13131) [004] d.s2 24574.107555: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
71287           <...>-13412 (-----) [000] d.s1 24574.107564: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
71288           <...>-13412 (-----) [000] dns2 24574.107575: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
71289           <...>-13412 (-----) [000] dnH2 24574.107580: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
71290           <...>-13412 (-----) [000] d..2 24574.107588: sched_switch: prev_comm=id.nn.benchmark prev_pid=13412 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
71291     rcu_preempt-7     (    7) [000] d..2 24574.107593: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
71292     rcu_preempt-7     (    7) [000] d..3 24574.107610: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=000
71293     rcu_preempt-7     (    7) [000] d..2 24574.107612: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=007
71294 id.nn.benchmark-13155 (13131) [007] dnh1 24574.107638: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=007
71295 id.nn.benchmark-13155 (13131) [007] d..2 24574.107641: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
71296     rcu_preempt-7     (    7) [000] d..2 24574.107643: 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
71297         rcuop/2-29    (   29) [007] d..2 24574.107660: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
71298  kworker/u16:10-23868 (23868) [000] .... 24574.107729: clk_set_rate: l3_cluster0_vote_clk 1401600000
71299  kworker/u16:10-23868 (23868) [000] d..2 24574.107900: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=rcuop/6 next_pid=61 next_prio=120
71300 id.nn.benchmark-13160 (13131) [003] d.s2 24574.107926: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
71301         rcuop/6-61    (   61) [000] d..2 24574.107927: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13412 next_prio=110
71302 id.nn.benchmark-13160 (13131) [003] d.s3 24574.107937: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
71303 id.nn.benchmark-13160 (13131) [003] d.s3 24574.107944: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
71304           <...>-13412 (-----) [000] d..2 24574.107950: sched_switch: prev_comm=id.nn.benchmark prev_pid=13412 prev_prio=110 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
71305 id.nn.benchmark-13158 (13131) [002] d.h1 24574.107956: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
71306  kworker/u16:10-23868 (23868) [000] d..2 24574.107964: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13412 next_prio=110
71307           <...>-13412 (-----) [000] ...1 24574.107968: tracing_mark_write: E|13131
71308 id.nn.benchmark-13158 (13131) [002] d.h2 24574.107975: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
71309           <...>-13412 (-----) [000] d..2 24574.107980: sched_switch: prev_comm=id.nn.benchmark prev_pid=13412 prev_prio=110 prev_state=R+ ==> next_comm=DispSync next_pid=23904 next_prio=97
71310        DispSync-23904 (23896) [000] d..1 24574.108005: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
71311        DispSync-23904 (23896) [000] d..2 24574.108018: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
71312 id.nn.benchmark-13158 (13131) [002] d..2 24574.108027: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
71313        DispSync-23904 (23896) [000] d..2 24574.108034: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13412 next_prio=110
71314           <...>-13412 (-----) [000] ...1 24574.108037: tracing_mark_write: E|13131
71315           <...>-13412 (-----) [000] ...1 24574.108056: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
71316           <...>-13412 (-----) [000] ...1 24574.108060: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
71317  appEventThread-23905 (23896) [002] d..3 24574.108071: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
71318  appEventThread-23905 (23896) [002] d..4 24574.108092: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
71319           <...>-13412 (-----) [000] d..2 24574.108102: sched_switch: prev_comm=id.nn.benchmark prev_pid=13412 prev_prio=110 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
71320  appEventThread-23905 (23896) [002] d..2 24574.108108: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
71321<...>-24151 ( 24151) [000] .... 24574.108395: binder_transaction: transaction=1670227 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
71322<...>-24151 ( 24151) [000] d..4 24574.108405: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
71323<...>-24151 ( 24151) [000] d..5 24574.108434: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
71324<...>-24151 ( 24151) [000] d..3 24574.108473: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
71325<...>-24151 ( 24151) [000] d..4 24574.108485: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
71326<...>-24151 ( 24151) [000] d..2 24574.108588: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
71327<...>-23903 ( 23896) [000] .... 24574.108595: binder_transaction_received: transaction=1670227
71328<...>-23903 ( 23896) [000] d..1 24574.108622: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
71329<...>-23903 ( 23896) [000] dn.2 24574.108635: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
71330<...>-23903 ( 23896) [000] d..2 24574.108641: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
71331  appEventThread-23905 (23896) [000] d..2 24574.108652: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
71332    RenderThread-24437 (24151) [000] d..1 24574.108761: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
71333    RenderThread-24437 (24151) [000] d..2 24574.108771: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
71334    RenderThread-24437 (24151) [000] .... 24574.108822: binder_transaction: transaction=1670228 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
71335    RenderThread-24437 (24151) [000] d..4 24574.108828: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=006
71336           <...>-13154 (-----) [006] dnh1 24574.108850: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=006
71337           <...>-13154 (-----) [006] d..2 24574.108853: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
71338    RenderThread-24437 (24151) [000] d..2 24574.108855: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
71339  Binder:23896_5-25989 (23896) [006] .... 24574.108858: binder_transaction_received: transaction=1670228
71340<...>-23903 ( 23896) [000] d..1 24574.108860: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
71341<...>-23903 ( 23896) [000] dn.2 24574.108866: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
71342<...>-23903 ( 23896) [000] d..2 24574.108870: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
71343  Binder:23896_5-25989 (23896) [006] .... 24574.108889: binder_transaction: transaction=1670229 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
71344  appEventThread-23905 (23896) [000] d..2 24574.108894: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
71345  Binder:23896_5-25989 (23896) [006] d..2 24574.108894: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
71346<...>-23903 ( 23896) [000] d.h1 24574.108908: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
71347  Binder:23896_5-25989 (23896) [006] d..2 24574.108911: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
71348<...>-23903 ( 23896) [000] d..2 24574.108921: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
71349    RenderThread-24437 (24151) [000] .... 24574.108925: binder_transaction_received: transaction=1670229
71350    RenderThread-24437 (24151) [000] d..2 24574.109903: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
71351<...>-24151 ( 24151) [000] d..2 24574.109955: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13412 next_prio=110
71352           <...>-13412 (-----) [000] d.h1 24574.110000: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
71353           <...>-13412 (-----) [000] d.h2 24574.110010: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
71354           <...>-13412 (-----) [000] dnh2 24574.110013: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
71355           <...>-13412 (-----) [000] d..2 24574.110020: sched_switch: prev_comm=id.nn.benchmark prev_pid=13412 prev_prio=110 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
71356    RenderThread-24437 (24151) [000] d.h2 24574.110123: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
71357    RenderThread-24437 (24151) [000] dnh3 24574.110139: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
71358    RenderThread-24437 (24151) [000] d..2 24574.110151: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
71359 kgsl_worker_thr-246   (  246) [000] d..2 24574.110184: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
71360 kgsl_worker_thr-246   (  246) [000] d..3 24574.110193: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
71361 kgsl_worker_thr-246   (  246) [000] d..2 24574.110202: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
71362  kworker/u16:10-23868 (23868) [000] d..2 24574.110229: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
71363    RenderThread-24437 (24151) [000] .... 24574.110289: binder_transaction: transaction=1670230 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
71364    RenderThread-24437 (24151) [000] d..4 24574.110296: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
71365    RenderThread-24437 (24151) [000] d..5 24574.110318: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
71366    RenderThread-24437 (24151) [000] d..2 24574.110325: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
71367<...>-23903 ( 23896) [000] .... 24574.110329: binder_transaction_received: transaction=1670230
71368<...>-23903 ( 23896) [000] .... 24574.110426: binder_transaction: transaction=1670231 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
71369<...>-23903 ( 23896) [000] d..2 24574.110429: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
71370<...>-23903 ( 23896) [000] d..3 24574.110440: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
71371<...>-23903 ( 23896) [000] d..2 24574.110459: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
71372    RenderThread-24437 (24151) [000] .... 24574.110462: binder_transaction_received: transaction=1670231
71373    RenderThread-24437 (24151) [000] d..2 24574.110507: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13412 next_prio=110
71374           <...>-13412 (-----) [000] ...1 24574.110645: tracing_mark_write: E|13131
71375           <...>-13412 (-----) [000] ...1 24574.110650: tracing_mark_write: E|13131
71376           <...>-13412 (-----) [000] ...1 24574.110667: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
71377           <...>-13412 (-----) [000] ...1 24574.110671: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
71378           <...>-13412 (-----) [000] ...1 24574.110745: tracing_mark_write: E|13131
71379           <...>-13412 (-----) [000] ...1 24574.110748: tracing_mark_write: E|13131
71380           <...>-13412 (-----) [000] ...1 24574.110759: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
71381           <...>-13412 (-----) [000] ...1 24574.110764: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
71382 id.nn.benchmark-13159 (13131) [004] d.s2 24574.110887: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
71383           <...>-13412 (-----) [000] dnh1 24574.110905: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
71384           <...>-13412 (-----) [000] d..2 24574.110911: sched_switch: prev_comm=id.nn.benchmark prev_pid=13412 prev_prio=110 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
71385  kworker/u16:10-23868 (23868) [000] d..2 24574.111095: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13412 next_prio=110
71386 id.nn.benchmark-13160 (13131) [003] d.s2 24574.111123: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
71387 id.nn.benchmark-13160 (13131) [003] d.s3 24574.111130: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
71388 id.nn.benchmark-13160 (13131) [003] d.s3 24574.111136: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
71389           <...>-13412 (-----) [000] d..2 24574.111141: sched_switch: prev_comm=id.nn.benchmark prev_pid=13412 prev_prio=110 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
71390  kworker/u16:10-23868 (23868) [000] d..2 24574.111334: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13412 next_prio=110
71391           <...>-13412 (-----) [000] ...1 24574.111478: tracing_mark_write: E|13131
71392           <...>-13412 (-----) [000] ...1 24574.111482: tracing_mark_write: E|13131
71393           <...>-13412 (-----) [000] ...1 24574.111493: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
71394           <...>-13412 (-----) [000] ...1 24574.111497: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
71395           <...>-13412 (-----) [000] ...1 24574.111544: tracing_mark_write: E|13131
71396           <...>-13412 (-----) [000] ...1 24574.111547: tracing_mark_write: E|13131
71397           <...>-13412 (-----) [000] ...1 24574.111557: tracing_mark_write: B|13131|[NN_LC_PTR]fullyConnectedQuant8
71398           <...>-13412 (-----) [000] ...1 24574.111561: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::FullyConnected
71399           <...>-13412 (-----) [000] ...1 24574.111577: tracing_mark_write: E|13131
71400           <...>-13412 (-----) [000] ...1 24574.111580: tracing_mark_write: E|13131
71401           <...>-13412 (-----) [000] ...1 24574.111590: tracing_mark_write: B|13131|[NN_LC_PCO]reshapeGeneric
71402           <...>-13412 (-----) [000] ...1 24574.111593: tracing_mark_write: E|13131
71403           <...>-13412 (-----) [000] ...1 24574.111602: tracing_mark_write: B|13131|[NN_LC_PTR]addQuant8
71404           <...>-13412 (-----) [000] ...1 24574.111607: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::BroadcastAdd
71405           <...>-13157 (-----) [005] d..3 24574.111828: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
71406           <...>-13157 (-----) [005] d..2 24574.111837: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
71407 id.nn.benchmark-13156 (13131) [001] dnh1 24574.111840: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
71408          <idle>-0     (-----) [005] d..1 24574.111846: cpu_idle: state=0 cpu_id=5
71409 id.nn.benchmark-13156 (13131) [001] d..2 24574.111846: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
71410 id.nn.benchmark-13159 (13131) [004] d..2 24574.111866: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
71411          <idle>-0     (-----) [004] d..1 24574.111873: cpu_idle: state=0 cpu_id=4
71412          <idle>-0     (-----) [005] .n.1 24574.111874: cpu_idle: state=4294967295 cpu_id=5
71413          <idle>-0     (-----) [005] d..2 24574.111900: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
71414     migration/1-17    (   17) [001] d.h3 24574.111900: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
71415     migration/1-17    (   17) [001] d.h3 24574.111909: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
71416          <idle>-0     (-----) [004] dnh2 24574.111914: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
71417          <idle>-0     (-----) [004] .n.1 24574.111917: cpu_idle: state=4294967295 cpu_id=4
71418          <idle>-0     (-----) [004] d..2 24574.111920: 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
71419     migration/1-17    (   17) [001] d.h4 24574.111920: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
71420     migration/1-17    (   17) [001] d..2 24574.111927: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
71421         sugov:4-560   (  560) [004] d..2 24574.111931: 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
71422          <idle>-0     (-----) [004] d..1 24574.111933: cpu_idle: state=0 cpu_id=4
71423         sugov:0-559   (  559) [001] d..2 24574.111942: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
71424          <idle>-0     (-----) [001] d..1 24574.111954: cpu_idle: state=0 cpu_id=1
71425           <...>-13412 (-----) [000] d.h1 24574.111963: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
71426           <...>-13412 (-----) [000] d.h2 24574.111981: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
71427          <idle>-0     (-----) [001] .n.1 24574.111986: cpu_idle: state=4294967295 cpu_id=1
71428          <idle>-0     (-----) [001] d..2 24574.111992: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
71429        DispSync-23904 (23896) [001] d..1 24574.112005: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
71430        DispSync-23904 (23896) [001] d..2 24574.112020: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
71431           <...>-13412 (-----) [000] d..2 24574.112030: sched_switch: prev_comm=id.nn.benchmark prev_pid=13412 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
71432        DispSync-23904 (23896) [001] d..2 24574.112037: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
71433          <idle>-0     (-----) [001] d..1 24574.112044: cpu_idle: state=0 cpu_id=1
71434   sfEventThread-23906 (23896) [000] d..3 24574.112058: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
71435   sfEventThread-23906 (23896) [000] d..4 24574.112076: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
71436          <idle>-0     (-----) [001] .n.1 24574.112080: cpu_idle: state=4294967295 cpu_id=1
71437          <idle>-0     (-----) [001] d..2 24574.112085: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
71438   sfEventThread-23906 (23896) [000] d..2 24574.112089: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13412 next_prio=110
71439          <idle>-0     (-----) [004] ...1 24574.112123: cpu_idle: state=4294967295 cpu_id=4
71440          <idle>-0     (-----) [004] d..1 24574.112124: cpu_idle: state=0 cpu_id=4
71441  surfaceflinger-23896 (23896) [001] d..1 24574.112328: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
71442  surfaceflinger-23896 (23896) [001] d..2 24574.112340: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
71443           <...>-13412 (-----) [000] d..2 24574.112347: sched_switch: prev_comm=id.nn.benchmark prev_pid=13412 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
71444   sfEventThread-23906 (23896) [000] d..2 24574.112362: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13412 next_prio=110
71445  surfaceflinger-23896 (23896) [001] ...1 24574.112467: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
71446  surfaceflinger-23896 (23896) [001] ...1 24574.112470: tracing_mark_write: E|23896
71447  surfaceflinger-23896 (23896) [001] .... 24574.112512: binder_transaction: transaction=1670232 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
71448  surfaceflinger-23896 (23896) [001] ...2 24574.112532: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
71449  surfaceflinger-23896 (23896) [001] d..4 24574.112539: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
71450  surfaceflinger-23896 (23896) [001] d..5 24574.112552: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
71451           <...>-13412 (-----) [000] d..2 24574.112559: sched_switch: prev_comm=id.nn.benchmark prev_pid=13412 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
71452  HwBinder:598_3-633   (  598) [000] .... 24574.112567: binder_transaction_received: transaction=1670232
71453  surfaceflinger-23896 (23896) [001] d..2 24574.112568: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
71454          <idle>-0     (-----) [001] d..1 24574.112576: cpu_idle: state=0 cpu_id=1
71455  HwBinder:598_3-633   (  598) [000] ...1 24574.112606: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
71456  HwBinder:598_3-633   (  598) [000] ...1 24574.112691: tracing_mark_write: B|598|HWCSession::PresentDisplay::
71457  HwBinder:598_3-633   (  598) [000] ...1 24574.112809: tracing_mark_write: B|598|HWDeviceDRM::Commit::
71458  HwBinder:598_3-633   (  598) [000] ...1 24574.112817: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
71459  HwBinder:598_3-633   (  598) [000] d..2 24574.113206: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
71460  HwBinder:598_3-633   (  598) [000] d..3 24574.113225: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
71461          <idle>-0     (-----) [001] .n.1 24574.113229: cpu_idle: state=4294967295 cpu_id=1
71462          <idle>-0     (-----) [001] d..2 24574.113235: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
71463  HwBinder:598_3-633   (  598) [000] ...1 24574.113281: tracing_mark_write: E|598
71464  HwBinder:598_3-633   (  598) [000] ...1 24574.113284: tracing_mark_write: E|598
71465  HwBinder:598_3-633   (  598) [000] ...1 24574.113323: tracing_mark_write: E|598
71466  HwBinder:598_3-633   (  598) [000] ...1 24574.113356: tracing_mark_write: E|598
71467  HwBinder:598_3-633   (  598) [000] .... 24574.113365: binder_transaction: transaction=1670233 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
71468  HwBinder:598_3-633   (  598) [000] d..2 24574.113376: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
71469  HwBinder:598_3-633   (  598) [000] d..3 24574.113391: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
71470  HwBinder:598_3-633   (  598) [000] .... 24574.113393: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
71471 id.nn.benchmark-13158 (13131) [002] d..2 24574.113398: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
71472  surfaceflinger-23896 (23896) [002] .... 24574.113403: binder_transaction_received: transaction=1670233
71473  HwBinder:598_3-633   (  598) [000] d..2 24574.113433: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13412 next_prio=110
71474           <...>-13412 (-----) [000] ...1 24574.113465: tracing_mark_write: E|13131
71475           <...>-13412 (-----) [000] ...1 24574.113469: tracing_mark_write: E|13131
71476           <...>-13412 (-----) [000] ...1 24574.113481: tracing_mark_write: B|13131|[NN_LC_PTR]convQuant8
71477           <...>-13412 (-----) [000] ...1 24574.113485: tracing_mark_write: B|13131|[SW][NN_LC_PCO]optimized_ops::Conv
71478           <...>-13412 (-----) [000] d..1 24574.113503: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=005
71479           <...>-13412 (-----) [000] d..1 24574.113521: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=004
71480          <idle>-0     (-----) [004] dnh2 24574.113525: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=004
71481          <idle>-0     (-----) [004] .n.1 24574.113527: cpu_idle: state=4294967295 cpu_id=4
71482          <idle>-0     (-----) [004] dn.2 24574.113528: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=004
71483          <idle>-0     (-----) [004] d..2 24574.113530: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
71484  surfaceflinger-23896 (23896) [002] d..2 24574.113652: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
71485 crtc_commit:111-253   (  253) [001] d..2 24574.113856: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
71486 id.nn.benchmark-13159 (13131) [001] d.h4 24574.113889: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
71487 id.nn.benchmark-13159 (13131) [001] d.h4 24574.113898: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
71488           <...>-13157 (-----) [004] dnh1 24574.113900: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
71489           <...>-13157 (-----) [004] d..2 24574.113903: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
71490         sugov:4-560   (  560) [004] d..2 24574.113906: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
71491 id.nn.benchmark-13159 (13131) [001] d.h5 24574.113910: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
71492           <...>-13412 (-----) [000] d..2 24574.113919: sched_switch: prev_comm=id.nn.benchmark prev_pid=13412 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
71493         sugov:0-559   (  559) [000] d..2 24574.113929: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13412 next_prio=110
71494           <...>-13412 (-----) [000] ...1 24574.113985: tracing_mark_write: E|13131
71495           <...>-13412 (-----) [000] ...1 24574.113988: tracing_mark_write: E|13131
71496           <...>-13412 (-----) [000] d..2 24574.114040: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
71497           <...>-13412 (-----) [000] d..3 24574.114053: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
71498           <...>-13412 (-----) [000] ...1 24574.114075: tracing_mark_write: E|13131
71499           <...>-13412 (-----) [000] d..1 24574.114081: sched_waking: comm=id.nn.benchmark pid=13411 prio=110 target_cpu=000
71500           <...>-13157 (-----) [004] dnh1 24574.114106: sched_wakeup: comm=id.nn.benchmark pid=13411 prio=110 target_cpu=004
71501           <...>-13157 (-----) [004] d..2 24574.114128: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13411 next_prio=110
71502           <...>-13411 (-----) [004] d..2 24574.114137: sched_switch: prev_comm=id.nn.benchmark prev_pid=13411 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
71503           <...>-13412 (-----) [000] ...1 24574.114144: tracing_mark_write: E|13131
71504           <...>-13412 (-----) [000] d.s1 24574.114233: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
71505           <...>-13412 (-----) [000] dns2 24574.114243: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
71506           <...>-13412 (-----) [000] d..2 24574.114250: sched_switch: prev_comm=id.nn.benchmark prev_pid=13412 prev_prio=110 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
71507     rcu_preempt-7     (    7) [000] d..2 24574.114254: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=004
71508     rcu_preempt-7     (    7) [000] d..2 24574.114277: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=006
71509           <...>-13157 (-----) [004] dnh1 24574.114279: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=004
71510           <...>-13157 (-----) [004] d..2 24574.114282: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=rcuop/4 next_pid=45 next_prio=120
71511         rcuop/4-45    (   45) [004] d..2 24574.114297: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=000
71512           <...>-13154 (-----) [006] dnh1 24574.114300: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=006
71513           <...>-13154 (-----) [006] d..2 24574.114303: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
71514     rcu_preempt-7     (    7) [000] d..2 24574.114305: 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
71515         rcuop/4-45    (   45) [004] d..2 24574.114310: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
71516         rcuop/0-10    (   10) [006] d..2 24574.114311: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
71517     logd.writer-563   (  555) [000] dnh3 24574.114314: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=000
71518     logd.writer-563   (  555) [000] d..2 24574.114320: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=rcuop/5 next_pid=53 next_prio=120
71519         rcuop/5-53    (   53) [000] d..2 24574.114338: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
71520     logd.writer-563   (  555) [000] d..2 24574.114400: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13412 next_prio=110
71521           <...>-13412 (-----) [000] d..1 24574.114576: sched_waking: comm=id.nn.benchmark pid=13411 prio=110 target_cpu=004
71522           <...>-13412 (-----) [000] dn.2 24574.114603: sched_wakeup: comm=id.nn.benchmark pid=13411 prio=110 target_cpu=000
71523           <...>-13412 (-----) [000] dnh3 24574.114631: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
71524           <...>-13412 (-----) [000] dnh3 24574.114639: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
71525           <...>-13157 (-----) [004] dnh1 24574.114642: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
71526           <...>-13157 (-----) [004] d..2 24574.114644: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
71527           <...>-13412 (-----) [000] dnh4 24574.114645: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
71528         sugov:4-560   (  560) [004] d..2 24574.114647: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
71529           <...>-13412 (-----) [000] d..2 24574.114650: sched_switch: prev_comm=id.nn.benchmark prev_pid=13412 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
71530         sugov:0-559   (  559) [000] d..2 24574.114657: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13411 next_prio=110
71531           <...>-13411 (-----) [000] d..2 24574.114713: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
71532           <...>-13411 (-----) [000] d..3 24574.114723: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
71533           <...>-13411 (-----) [000] d..1 24574.114779: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
71534 id.nn.benchmark-13155 (13131) [007] dnh1 24574.114800: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
71535 id.nn.benchmark-13155 (13131) [007] d..2 24574.114802: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
71536           <...>-13131 (-----) [007] d..2 24574.114809: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
71537           <...>-13411 (-----) [000] d..1 24574.114854: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
71538 id.nn.benchmark-13155 (13131) [007] dnh1 24574.114873: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
71539 id.nn.benchmark-13155 (13131) [007] d..2 24574.114875: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
71540           <...>-13131 (-----) [007] ...1 24574.114887: tracing_mark_write: E|13131
71541           <...>-13131 (-----) [007] ...1 24574.114889: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksEvent_free
71542           <...>-13131 (-----) [007] ...1 24574.114891: tracing_mark_write: E|13131
71543           <...>-13131 (-----) [007] ...1 24574.114892: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksExecution_free
71544           <...>-13131 (-----) [007] ...1 24574.114894: tracing_mark_write: E|13131
71545           <...>-13411 (-----) [000] d..2 24574.114927: sched_switch: prev_comm=id.nn.benchmark prev_pid=13411 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13412 next_prio=110
71546           <...>-13412 (-----) [000] d..2 24574.114960: sched_switch: prev_comm=id.nn.benchmark prev_pid=13412 prev_prio=110 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
71547     logd.writer-563   (  555) [000] d..2 24574.115037: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
71548           <...>-13131 (-----) [007] d..1 24574.115159: sched_waking: comm=Jit thread pool pid=13136 prio=129 target_cpu=004
71549           <...>-13131 (-----) [007] d..2 24574.115171: sched_wakeup: comm=Jit thread pool pid=13136 prio=129 target_cpu=004
71550           <...>-13131 (-----) [007] d..2 24574.115488: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
71551 id.nn.benchmark-13155 (13131) [000] d.h1 24574.115501: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
71552           <...>-13131 (-----) [007] d..1 24574.115561: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=004
71553           <...>-13131 (-----) [007] d..2 24574.115573: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=007
71554           <...>-13131 (-----) [007] d..2 24574.115635: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
71555           <...>-13147 (-----) [007] ...1 24574.115654: tracing_mark_write: E|13131
71556           <...>-13147 (-----) [007] .... 24574.115836: binder_transaction: transaction=1670234 dest_node=1668760 dest_proc=13122 dest_thread=0 reply=0 flags=0x10 code=0x1
71557           <...>-13147 (-----) [007] ...2 24574.115868: binder_set_priority: proc=13122 thread=13130 old=120 => new=112 desired=112
71558           <...>-13147 (-----) [007] d..4 24574.115871: sched_waking: comm=Binder:13122_2 pid=13130 prio=112 target_cpu=006
71559           <...>-13147 (-----) [007] d..5 24574.115880: sched_wakeup: comm=Binder:13122_2 pid=13130 prio=112 target_cpu=007
71560           <...>-13147 (-----) [007] d..2 24574.115885: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=Binder:13122_2 next_pid=13130 next_prio=112
71561           <...>-13130 (-----) [007] .... 24574.115890: binder_transaction_received: transaction=1670234
71562           <...>-13130 (-----) [007] d..2 24574.116342: sched_waking: comm=shell svc 13120 pid=13121 prio=120 target_cpu=003
71563           <...>-13130 (-----) [007] d..3 24574.116355: sched_wakeup: comm=shell svc 13120 pid=13121 prio=120 target_cpu=007
71564           <...>-13130 (-----) [007] d.h3 24574.116377: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
71565           <...>-13130 (-----) [007] dnh4 24574.116383: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
71566           <...>-13130 (-----) [007] dnh3 24574.116383: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
71567           <...>-13130 (-----) [007] d..2 24574.116391: sched_switch: prev_comm=Binder:13122_2 prev_pid=13130 prev_prio=112 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
71568 id.nn.benchmark-13155 (13131) [000] dnh1 24574.116393: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
71569         sugov:4-560   (  560) [007] d..2 24574.116395: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=shell svc 13120 next_pid=13121 next_prio=120
71570 id.nn.benchmark-13155 (13131) [000] d..2 24574.116398: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
71571         sugov:0-559   (  559) [000] d..2 24574.116405: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
71572 shell svc 13120-13121 ( 1007) [007] d..2 24574.116421: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
71573 shell svc 13120-13121 ( 1007) [007] d..3 24574.116434: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=007
71574 shell svc 13120-13121 ( 1007) [007] d..2 24574.116455: sched_switch: prev_comm=shell svc 13120 prev_pid=13121 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
71575            adbd-1007  ( 1007) [007] d..1 24574.116526: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
71576            adbd-1007  ( 1007) [007] d..2 24574.116538: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=007
71577            adbd-1007  ( 1007) [007] d..2 24574.116573: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
71578            adbd-23485 ( 1007) [007] d..2 24574.116631: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=Binder:13122_2 next_pid=13130 next_prio=112
71579 id.nn.benchmark-13158 (13131) [002] d.h2 24574.116661: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
71580           <...>-13130 (-----) [007] d..2 24574.116673: sched_waking: comm=shell svc 13120 pid=13121 prio=120 target_cpu=007
71581           <...>-13130 (-----) [007] d..3 24574.116682: sched_wakeup: comm=shell svc 13120 pid=13121 prio=120 target_cpu=007
71582           <...>-13130 (-----) [007] dnh2 24574.116686: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=007
71583           <...>-13130 (-----) [007] d..2 24574.116689: sched_switch: prev_comm=Binder:13122_2 prev_pid=13130 prev_prio=112 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
71584   kworker/u17:2-23076 (23076) [007] d..2 24574.116701: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
71585   kworker/u17:2-23076 (23076) [007] d..3 24574.116713: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
71586   kworker/u17:2-23076 (23076) [007] d..2 24574.116727: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/7:0 next_pid=12892 next_prio=120
71587     kworker/7:0-12892 (12892) [007] d..2 24574.116731: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=007
71588     kworker/7:0-12892 (12892) [007] d..3 24574.116736: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=007
71589     kworker/7:0-12892 (12892) [007] d..2 24574.116741: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=S ==> next_comm=shell svc 13120 next_pid=13121 next_prio=120
71590 shell svc 13120-13121 ( 1007) [007] d..2 24574.116753: sched_switch: prev_comm=shell svc 13120 prev_pid=13121 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
71591            adbd-23485 ( 1007) [007] d..2 24574.116781: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=Binder:13122_2 next_pid=13130 next_prio=112
71592 id.nn.benchmark-13158 (13131) [002] d.h2 24574.116802: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=007
71593           <...>-13130 (-----) [007] dnh1 24574.116815: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=007
71594           <...>-13130 (-----) [007] d..2 24574.116819: sched_switch: prev_comm=Binder:13122_2 prev_pid=13130 prev_prio=112 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
71595   kworker/u17:2-23076 (23076) [007] d..2 24574.116823: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
71596   kworker/u17:2-23076 (23076) [007] d..3 24574.116826: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
71597   kworker/u17:2-23076 (23076) [007] d..2 24574.116837: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/7:0 next_pid=12892 next_prio=120
71598     kworker/7:0-12892 (12892) [007] d..2 24574.116840: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=007
71599     kworker/7:0-12892 (12892) [007] d..3 24574.116843: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=007
71600     kworker/7:0-12892 (12892) [007] d..2 24574.116847: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
71601            adbd-23485 ( 1007) [007] d..2 24574.116883: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=Binder:13122_2 next_pid=13130 next_prio=112
71602           <...>-13130 (-----) [007] d..2 24574.116898: sched_waking: comm=shell svc 13120 pid=13121 prio=120 target_cpu=007
71603           <...>-13130 (-----) [007] d..3 24574.116902: sched_wakeup: comm=shell svc 13120 pid=13121 prio=120 target_cpu=007
71604 id.nn.benchmark-13158 (13131) [002] d.h2 24574.117003: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=007
71605           <...>-13130 (-----) [007] dnh1 24574.117015: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=007
71606           <...>-13130 (-----) [007] d..2 24574.117019: sched_switch: prev_comm=Binder:13122_2 prev_pid=13130 prev_prio=112 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
71607   kworker/u17:2-23076 (23076) [007] d..2 24574.117024: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
71608   kworker/u17:2-23076 (23076) [007] d..3 24574.117027: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
71609   kworker/u17:2-23076 (23076) [007] d..2 24574.117039: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/7:0 next_pid=12892 next_prio=120
71610     kworker/7:0-12892 (12892) [007] d..2 24574.117045: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
71611     kworker/7:0-12892 (12892) [007] d..3 24574.117058: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=007
71612     kworker/7:0-12892 (12892) [007] d.h3 24574.117077: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
71613     kworker/7:0-12892 (12892) [007] dnh4 24574.117081: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
71614     kworker/7:0-12892 (12892) [007] dnh3 24574.117081: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
71615     kworker/7:0-12892 (12892) [007] d..2 24574.117088: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
71616 id.nn.benchmark-13155 (13131) [000] dnh1 24574.117091: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
71617         sugov:4-560   (  560) [007] d..2 24574.117092: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
71618 id.nn.benchmark-13155 (13131) [000] d..2 24574.117096: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
71619         sugov:0-559   (  559) [000] d..2 24574.117102: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
71620            adbd-23484 ( 1007) [007] d..2 24574.117103: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=007
71621            adbd-23484 ( 1007) [007] d..3 24574.117107: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=007
71622            adbd-23484 ( 1007) [007] d..2 24574.117140: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=kworker/7:0 next_pid=12892 next_prio=120
71623     kworker/7:0-12892 (12892) [007] d..2 24574.117144: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=S ==> next_comm=shell svc 13120 next_pid=13121 next_prio=120
71624     logd.writer-563   (  555) [000] d..2 24574.117151: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
71625 shell svc 13120-13121 ( 1007) [007] d..2 24574.117157: sched_switch: prev_comm=shell svc 13120 prev_pid=13121 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
71626            adbd-1007  ( 1007) [007] d..1 24574.117193: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=007
71627            adbd-1007  ( 1007) [007] d..2 24574.117198: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=007
71628            adbd-1007  ( 1007) [007] d..2 24574.117209: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=Binder:13122_2 next_pid=13130 next_prio=112
71629           <...>-13130 (-----) [007] d..2 24574.117227: sched_waking: comm=shell svc 13120 pid=13121 prio=120 target_cpu=007
71630           <...>-13130 (-----) [007] d..3 24574.117233: sched_wakeup: comm=shell svc 13120 pid=13121 prio=120 target_cpu=007
71631           <...>-13130 (-----) [007] d..1 24574.117319: sched_waking: comm=main pid=13122 prio=120 target_cpu=004
71632           <...>-13130 (-----) [007] d..2 24574.117330: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=007
71633           <...>-13130 (-----) [007] .... 24574.117381: binder_transaction: transaction=1670235 dest_node=0 dest_proc=13131 dest_thread=13147 reply=1 flags=0x0 code=0x0
71634           <...>-13130 (-----) [007] d..2 24574.117383: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=007
71635           <...>-13130 (-----) [007] d..3 24574.117388: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=007
71636           <...>-13130 (-----) [007] .... 24574.117389: binder_set_priority: proc=13122 thread=13130 old=112 => new=120 desired=120
71637           <...>-13130 (-----) [007] d..2 24574.117394: sched_switch: prev_comm=Binder:13122_2 prev_pid=13130 prev_prio=120 prev_state=R+ ==> next_comm=main next_pid=13122 next_prio=120
71638 Shutdown thread-13122 (13122) [007] .... 24574.117427: binder_transaction: transaction=1670236 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x5f504e47
71639 Shutdown thread-13122 (13122) [007] d..4 24574.117431: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
71640 Shutdown thread-13122 (13122) [007] d..5 24574.117438: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
71641 Shutdown thread-13122 (13122) [007] d..2 24574.117442: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
71642  Binder:23968_1-23981 (23968) [007] .... 24574.117446: binder_transaction_received: transaction=1670236
71643  Binder:23968_1-23981 (23968) [007] .... 24574.117469: binder_transaction: transaction=1670237 dest_node=0 dest_proc=13122 dest_thread=13122 reply=1 flags=0x0 code=0x0
71644  Binder:23968_1-23981 (23968) [007] d..2 24574.117470: sched_waking: comm=main pid=13122 prio=120 target_cpu=007
71645  Binder:23968_1-23981 (23968) [007] d..3 24574.117476: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=007
71646  Binder:23968_1-23981 (23968) [007] d..2 24574.117486: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
71647           <...>-13147 (-----) [007] .... 24574.117488: binder_transaction_received: transaction=1670235
71648           <...>-13154 (-----) [006] d.s2 24574.117556: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
71649           <...>-13147 (-----) [007] d.s2 24574.117559: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=000
71650           <...>-13154 (-----) [006] d.s3 24574.117585: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=005
71651           <...>-13147 (-----) [007] d.s3 24574.117590: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=005
71652           <...>-13154 (-----) [006] d.H3 24574.117608: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
71653 id.nn.benchmark-13156 (13131) [005] d..2 24574.117609: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
71654           <...>-13154 (-----) [006] d.H4 24574.117616: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
71655           <...>-13154 (-----) [006] d.H3 24574.117617: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
71656  kworker/u16:10-23868 (23868) [005] d..2 24574.117622: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
71657         sugov:4-560   (  560) [005] d..2 24574.117627: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
71658 id.nn.benchmark-13155 (13131) [000] dnh1 24574.117627: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
71659         rcuop/6-61    (   61) [005] d..2 24574.117631: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
71660 id.nn.benchmark-13155 (13131) [000] d..2 24574.117632: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
71661         sugov:0-559   (  559) [000] d..2 24574.117639: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
71662           <...>-13147 (-----) [007] .... 24574.117680: binder_transaction: transaction=1670238 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xe
71663           <...>-13147 (-----) [007] ...2 24574.117687: binder_set_priority: proc=23968 thread=23981 old=120 => new=112 desired=112
71664           <...>-13147 (-----) [007] d..4 24574.117688: sched_waking: comm=Binder:23968_1 pid=23981 prio=112 target_cpu=007
71665           <...>-13147 (-----) [007] d..5 24574.117694: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=112 target_cpu=007
71666           <...>-13147 (-----) [007] d..2 24574.117698: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=112
71667  Binder:23968_1-23981 (23968) [007] .... 24574.117699: binder_transaction_received: transaction=1670238
71668  kworker/u16:10-23868 (23868) [005] d..2 24574.117720: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
71669  Binder:23968_1-23981 (23968) [007] d..3 24574.117865: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=006
71670  Binder:23968_1-23981 (23968) [007] d..4 24574.117879: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=006
71671           <...>-13154 (-----) [006] d..2 24574.117885: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
71672<...>-23993 ( 23968) [006] d..2 24574.117915: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
71673  Binder:23968_1-23981 (23968) [007] d..2 24574.117938: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
71674 id.nn.benchmark-13155 (13131) [000] d.h1 24574.117950: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
71675           <...>-13157 (-----) [004] d..2 24574.118081: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=S ==> next_comm=Jit thread pool next_pid=13136 next_prio=129
71676           <...>-13154 (-----) [006] d..3 24574.118085: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
71677           <...>-13154 (-----) [006] d..2 24574.118092: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
71678 id.nn.benchmark-13155 (13131) [000] dnh1 24574.118094: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
71679 id.nn.benchmark-13155 (13131) [000] d..2 24574.118099: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
71680          <idle>-0     (-----) [006] d..1 24574.118100: cpu_idle: state=0 cpu_id=6
71681          <idle>-0     (-----) [006] .n.1 24574.118124: cpu_idle: state=4294967295 cpu_id=6
71682          <idle>-0     (-----) [006] d..2 24574.118144: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
71683     migration/0-13    (   13) [000] d.h3 24574.118145: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
71684 id.nn.benchmark-13156 (13131) [005] d..3 24574.118147: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
71685 id.nn.benchmark-13156 (13131) [005] d..2 24574.118153: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
71686     migration/0-13    (   13) [000] d.h3 24574.118154: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
71687 id.nn.benchmark-13159 (13131) [001] dnh1 24574.118157: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
71688          <idle>-0     (-----) [005] dnh3 24574.118158: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
71689     migration/0-13    (   13) [000] d.h4 24574.118160: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
71690          <idle>-0     (-----) [005] d..2 24574.118162: 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
71691 id.nn.benchmark-13159 (13131) [001] d..2 24574.118162: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
71692     migration/0-13    (   13) [000] d..2 24574.118167: 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
71693         sugov:0-559   (  559) [000] d..2 24574.118174: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
71694         sugov:4-560   (  560) [005] d..2 24574.118179: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
71695     migration/1-17    (   17) [001] d..2 24574.118209: 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
71696          <idle>-0     (-----) [001] d..1 24574.118218: cpu_idle: state=0 cpu_id=1
71697     logd.writer-563   (  555) [000] d..2 24574.118224: 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
71698          <idle>-0     (-----) [000] d..1 24574.118236: cpu_idle: state=0 cpu_id=0
71699  Binder:23968_1-23981 (23968) [007] d..3 24574.118268: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
71700          <idle>-0     (-----) [000] dnh2 24574.118301: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
71701          <idle>-0     (-----) [000] .n.1 24574.118305: cpu_idle: state=4294967295 cpu_id=0
71702          <idle>-0     (-----) [000] d..2 24574.118310: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
71703<...>-24073 ( 23968) [000] d..2 24574.118351: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
71704          <idle>-0     (-----) [000] d..1 24574.118358: cpu_idle: state=0 cpu_id=0
71705  Binder:23968_1-23981 (23968) [007] d..3 24574.118469: sched_waking: comm=android.anim pid=24041 prio=116 target_cpu=005
71706          <idle>-0     (-----) [000] dnh2 24574.118502: sched_wakeup: comm=android.anim pid=24041 prio=116 target_cpu=000
71707          <idle>-0     (-----) [000] .n.1 24574.118505: cpu_idle: state=4294967295 cpu_id=0
71708          <idle>-0     (-----) [000] d..2 24574.118510: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=116
71709<...>-24041 ( 23968) [000] .... 24574.118566: binder_transaction: transaction=1670239 dest_node=1271137 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
71710<...>-24041 ( 23968) [000] d..4 24574.118573: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
71711<...>-24041 ( 23968) [000] d..5 24574.118591: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=001
71712          <idle>-0     (-----) [001] .n.1 24574.118597: cpu_idle: state=4294967295 cpu_id=1
71713          <idle>-0     (-----) [001] d..2 24574.118605: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
71714<...>-23903 ( 23896) [001] .... 24574.118610: binder_transaction_received: transaction=1670239
71715<...>-24041 ( 23968) [000] d..2 24574.118630: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
71716<...>-23903 ( 23896) [001] d..1 24574.118635: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
71717          <idle>-0     (-----) [000] d..1 24574.118636: cpu_idle: state=0 cpu_id=0
71718<...>-23903 ( 23896) [001] d..2 24574.118646: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
71719          <idle>-0     (-----) [000] .n.1 24574.118650: cpu_idle: state=4294967295 cpu_id=0
71720          <idle>-0     (-----) [000] d..2 24574.118655: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
71721  Binder:23968_1-23981 (23968) [007] d..3 24574.118664: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
71722<...>-23903 ( 23896) [001] d..2 24574.118669: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
71723          <idle>-0     (-----) [001] d..1 24574.118675: cpu_idle: state=0 cpu_id=1
71724          <idle>-0     (-----) [001] dnh2 24574.118685: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
71725          <idle>-0     (-----) [001] .n.1 24574.118689: cpu_idle: state=4294967295 cpu_id=1
71726   sfEventThread-23906 (23896) [000] d..2 24574.118690: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
71727          <idle>-0     (-----) [001] d..2 24574.118695: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
71728          <idle>-0     (-----) [000] d..1 24574.118695: cpu_idle: state=0 cpu_id=0
71729  Binder:23968_1-23981 (23968) [007] d..2 24574.118712: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
71730<...>-24073 ( 23968) [001] d..2 24574.118722: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
71731          <idle>-0     (-----) [001] d..1 24574.118729: cpu_idle: state=0 cpu_id=1
71732          <idle>-0     (-----) [001] dnh2 24574.118736: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
71733          <idle>-0     (-----) [001] .n.1 24574.118740: cpu_idle: state=4294967295 cpu_id=1
71734          <idle>-0     (-----) [001] d..2 24574.118745: 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
71735     logd.writer-563   (  555) [001] d..2 24574.118818: 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
71736          <idle>-0     (-----) [001] d..1 24574.118825: cpu_idle: state=0 cpu_id=1
71737  Binder:23968_1-23981 (23968) [007] d..3 24574.118957: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
71738          <idle>-0     (-----) [000] dnh2 24574.118975: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
71739          <idle>-0     (-----) [000] .n.1 24574.118978: cpu_idle: state=4294967295 cpu_id=0
71740          <idle>-0     (-----) [000] d..2 24574.118982: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
71741<...>-24073 ( 23968) [000] d..2 24574.119005: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
71742          <idle>-0     (-----) [000] d..1 24574.119010: cpu_idle: state=0 cpu_id=0
71743  Binder:23968_1-23981 (23968) [007] d..2 24574.119011: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=110 prev_state=R+ ==> next_comm=main next_pid=13122 next_prio=120
71744 Shutdown thread-13122 (13122) [007] .... 24574.119015: binder_transaction_received: transaction=1670237
71745 Shutdown thread-13122 (13122) [007] d..2 24574.119036: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=S ==> next_comm=shell svc 13120 next_pid=13121 next_prio=120
71746 shell svc 13120-13121 ( 1007) [007] d..2 24574.119056: sched_switch: prev_comm=shell svc 13120 prev_pid=13121 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
71747            adbd-23485 ( 1007) [007] d..2 24574.119091: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=Binder:13122_2 next_pid=13130 next_prio=120
71748           <...>-13130 (-----) [007] d..2 24574.119104: sched_switch: prev_comm=Binder:13122_2 prev_pid=13130 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=110
71749 id.nn.benchmark-13158 (13131) [002] d.h2 24574.119110: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=007
71750  Binder:23968_1-23981 (23968) [007] d..3 24574.119124: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=006
71751  Binder:23968_1-23981 (23968) [007] dnh2 24574.119142: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=007
71752          <idle>-0     (-----) [000] dnh2 24574.119146: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=000
71753  Binder:23968_1-23981 (23968) [007] dnh3 24574.119164: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
71754          <idle>-0     (-----) [000] .n.1 24574.119165: cpu_idle: state=4294967295 cpu_id=0
71755          <idle>-0     (-----) [000] d..2 24574.119169: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
71756  Binder:23968_1-23981 (23968) [007] dnh4 24574.119173: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
71757           <...>-13136 (-----) [004] d..2 24574.119178: sched_switch: prev_comm=Jit thread pool prev_pid=13136 prev_prio=129 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
71758  Binder:23968_1-23981 (23968) [007] dnh3 24574.119179: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
71759         sugov:4-560   (  560) [004] d..2 24574.119186: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Jit thread pool next_pid=13136 next_prio=129
71760  Binder:23968_1-23981 (23968) [007] d..2 24574.119190: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=110 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
71761          <idle>-0     (-----) [001] dnh2 24574.119196: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
71762   kworker/u17:2-23076 (23076) [007] d..2 24574.119196: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
71763          <idle>-0     (-----) [001] .n.1 24574.119200: cpu_idle: state=4294967295 cpu_id=1
71764   kworker/u17:2-23076 (23076) [007] d..3 24574.119200: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
71765<...>-23968 ( 23968) [000] d..2 24574.119202: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
71766          <idle>-0     (-----) [001] d..2 24574.119205: 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
71767          <idle>-0     (-----) [000] d..1 24574.119206: cpu_idle: state=0 cpu_id=0
71768   kworker/u17:2-23076 (23076) [007] d..2 24574.119213: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/7:0 next_pid=12892 next_prio=120
71769     kworker/7:0-12892 (12892) [007] d..2 24574.119216: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=007
71770         sugov:0-559   (  559) [001] d..2 24574.119217: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
71771          <idle>-0     (-----) [001] d..1 24574.119230: cpu_idle: state=0 cpu_id=1
71772     kworker/7:0-12892 (12892) [007] d..3 24574.119233: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=007
71773     kworker/7:0-12892 (12892) [007] d..2 24574.119238: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
71774           <...>-13136 (-----) [004] d..3 24574.119254: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
71775           <...>-13136 (-----) [004] d..2 24574.119263: sched_switch: prev_comm=Jit thread pool prev_pid=13136 prev_prio=129 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
71776            adbd-23485 ( 1007) [007] d..2 24574.119266: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=110
71777 id.nn.benchmark-13158 (13131) [002] dnh1 24574.119267: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
71778          <idle>-0     (-----) [004] d..1 24574.119269: cpu_idle: state=0 cpu_id=4
71779  Binder:23968_1-23981 (23968) [007] d..1 24574.119270: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=000
71780 id.nn.benchmark-13158 (13131) [002] d..2 24574.119274: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
71781          <idle>-0     (-----) [000] dnh2 24574.119282: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=000
71782          <idle>-0     (-----) [000] .n.1 24574.119285: cpu_idle: state=4294967295 cpu_id=0
71783  Binder:23968_1-23981 (23968) [007] d..3 24574.119286: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=004
71784          <idle>-0     (-----) [000] d..2 24574.119290: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
71785          <idle>-0     (-----) [004] .n.1 24574.119301: cpu_idle: state=4294967295 cpu_id=4
71786          <idle>-0     (-----) [004] d..2 24574.119304: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
71787     migration/2-25    (   25) [002] d.h3 24574.119309: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=007
71788          <idle>-0     (-----) [001] dnh2 24574.119310: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=001
71789          <idle>-0     (-----) [001] .n.1 24574.119313: cpu_idle: state=4294967295 cpu_id=1
71790          <idle>-0     (-----) [001] d..2 24574.119319: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
71791  Binder:23968_1-23981 (23968) [007] dnh1 24574.119333: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=007
71792<...>-23968 ( 23968) [000] d.h1 24574.119337: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
71793  Binder:23968_1-23981 (23968) [007] d..2 24574.119355: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=110 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
71794<...>-23968 ( 23968) [000] dnh2 24574.119359: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
71795   kworker/u17:2-23076 (23076) [007] d..2 24574.119359: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
71796   kworker/u17:2-23076 (23076) [007] d..3 24574.119361: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
71797<...>-24003 ( 23968) [001] d..2 24574.119365: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
71798<...>-23968 ( 23968) [000] d..2 24574.119367: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
71799     migration/2-25    (   25) [002] d..2 24574.119367: 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
71800          <idle>-0     (-----) [001] d..1 24574.119371: cpu_idle: state=0 cpu_id=1
71801   kworker/u17:2-23076 (23076) [007] d..2 24574.119373: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/7:0 next_pid=12892 next_prio=120
71802     kworker/7:0-12892 (12892) [007] d..2 24574.119375: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=007
71803          <idle>-0     (-----) [002] d..1 24574.119381: cpu_idle: state=0 cpu_id=2
71804     kworker/7:0-12892 (12892) [007] d..3 24574.119383: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=007
71805     kworker/7:0-12892 (12892) [007] d..2 24574.119387: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
71806            adbd-23485 ( 1007) [007] d..2 24574.119397: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=110
71807  Binder:23968_1-23981 (23968) [007] d..2 24574.119457: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
71808          <idle>-0     (-----) [001] dnh2 24574.119471: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
71809          <idle>-0     (-----) [001] .n.1 24574.119475: cpu_idle: state=4294967295 cpu_id=1
71810          <idle>-0     (-----) [001] d..2 24574.119481: 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
71811  Binder:23968_1-23981 (23968) [007] d..2 24574.119491: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=001
71812 irq/79-1436400.-24613 (24613) [000] d..2 24574.119511: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=system_server next_pid=23968 next_prio=118
71813<...>-23968 ( 23968) [000] d.h3 24574.119517: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=000
71814     logd.writer-563   (  555) [001] d..2 24574.119522: 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
71815  Binder:23968_1-23981 (23968) [007] d..3 24574.119523: sched_waking: comm=android.bg pid=23992 prio=130 target_cpu=001
71816          <idle>-0     (-----) [001] d..1 24574.119528: cpu_idle: state=0 cpu_id=1
71817 id.nn.benchmark-13160 (13131) [003] d.s2 24574.119529: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
71818 id.nn.benchmark-13160 (13131) [003] d.s3 24574.119538: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
71819          <idle>-0     (-----) [001] dnh2 24574.119539: sched_wakeup: comm=android.bg pid=23992 prio=130 target_cpu=001
71820          <idle>-0     (-----) [001] .n.1 24574.119542: cpu_idle: state=4294967295 cpu_id=1
71821<...>-23968 ( 23968) [000] d..2 24574.119546: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
71822          <idle>-0     (-----) [001] d..2 24574.119548: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.bg next_pid=23992 next_prio=130
71823 irq/79-1436400.-24613 (24613) [000] d..2 24574.119565: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=statsd.writer next_pid=1044 next_prio=120
71824          <idle>-0     (-----) [002] d.h3 24574.119572: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=007
71825  Binder:23968_1-23981 (23968) [007] dnh1 24574.119596: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=007
71826          <idle>-0     (-----) [002] ...1 24574.119596: cpu_idle: state=4294967295 cpu_id=2
71827          <idle>-0     (-----) [002] d..1 24574.119599: cpu_idle: state=0 cpu_id=2
71828  Binder:23968_1-23981 (23968) [007] d..2 24574.119600: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=112 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
71829   kworker/u17:2-23076 (23076) [007] d..2 24574.119605: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
71830   kworker/u17:2-23076 (23076) [007] d..3 24574.119607: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
71831   kworker/u17:2-23076 (23076) [007] d..2 24574.119619: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/7:0 next_pid=12892 next_prio=120
71832     kworker/7:0-12892 (12892) [007] d..2 24574.119624: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=007
71833     kworker/7:0-12892 (12892) [007] d..3 24574.119635: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=007
71834     kworker/7:0-12892 (12892) [007] d..2 24574.119639: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
71835            adbd-23484 ( 1007) [007] d..2 24574.119648: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=007
71836<...>-23992 ( 23968) [001] d..2 24574.119654: sched_switch: prev_comm=android.bg prev_pid=23992 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
71837            adbd-23484 ( 1007) [007] d..3 24574.119658: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=007
71838          <idle>-0     (-----) [001] d..1 24574.119661: cpu_idle: state=0 cpu_id=1
71839            adbd-23484 ( 1007) [007] d..2 24574.119688: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
71840<...>-1044 ( 887) [000] d..2 24574.119720: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
71841            adbd-1007  ( 1007) [007] d..1 24574.119733: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=007
71842            adbd-1007  ( 1007) [007] d..2 24574.119743: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=007
71843            adbd-1007  ( 1007) [007] d..2 24574.119754: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
71844<...>-23968 ( 23968) [000] .... 24574.119758: binder_transaction: transaction=1670240 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x16
71845<...>-23968 ( 23968) [000] d..4 24574.119767: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
71846            adbd-23485 ( 1007) [007] d..2 24574.119779: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=112
71847<...>-23968 ( 23968) [000] d..5 24574.119790: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=001
71848          <idle>-0     (-----) [001] .n.1 24574.119794: cpu_idle: state=4294967295 cpu_id=1
71849          <idle>-0     (-----) [002] d.h3 24574.119797: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=007
71850  Binder:23968_1-23981 (23968) [007] .... 24574.119807: binder_transaction: transaction=1670241 dest_node=1668777 dest_proc=13131 dest_thread=0 reply=0 flags=0x11 code=0x33
71851  Binder:23968_1-23981 (23968) [007] d..4 24574.119819: sched_waking: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=007
71852<...>-23968 ( 23968) [000] d.h5 24574.119820: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
71853          <idle>-0     (-----) [001] d..2 24574.119821: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
71854<...>-23968 ( 23968) [000] d.h5 24574.119835: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
71855  Binder:23968_1-23981 (23968) [007] dnh4 24574.119851: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
71856  Binder:23968_1-23981 (23968) [007] dnh4 24574.119853: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=007
71857  Binder:23968_1-23981 (23968) [007] d..2 24574.119856: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=112 prev_state=R+ ==> next_comm=sugov:4 next_pid=560 next_prio=49
71858         sugov:4-560   (  560) [007] d..2 24574.119860: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
71859<...>-23968 ( 23968) [000] d.h6 24574.119861: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
71860   kworker/u17:2-23076 (23076) [007] d..2 24574.119864: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
71861          <idle>-0     (-----) [002] dnh2 24574.119865: sched_wakeup: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=002
71862   kworker/u17:2-23076 (23076) [007] d..3 24574.119867: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
71863<...>-24376 ( 24151) [001] .... 24574.119871: binder_transaction_received: transaction=1670240
71864          <idle>-0     (-----) [002] .n.1 24574.119871: cpu_idle: state=4294967295 cpu_id=2
71865          <idle>-0     (-----) [002] d..2 24574.119878: 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
71866   kworker/u17:2-23076 (23076) [007] d..2 24574.119878: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/7:0 next_pid=12892 next_prio=120
71867     kworker/7:0-12892 (12892) [007] d..2 24574.119880: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=007
71868         sugov:0-559   (  559) [002] d..2 24574.119886: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:13131_3 next_pid=13145 next_prio=120
71869     kworker/7:0-12892 (12892) [007] d..3 24574.119888: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=007
71870           <...>-13145 (-----) [002] .... 24574.119891: binder_transaction_received: transaction=1670241
71871     kworker/7:0-12892 (12892) [007] d..2 24574.119892: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
71872<...>-23968 ( 23968) [000] d..2 24574.119911: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
71873          <idle>-0     (-----) [000] d..1 24574.119917: cpu_idle: state=0 cpu_id=0
71874            adbd-23485 ( 1007) [007] d..2 24574.119920: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=112
71875           <...>-13145 (-----) [002] d.h2 24574.119946: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=007
71876  Binder:23968_1-23981 (23968) [007] dnh1 24574.119977: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=007
71877  Binder:23968_1-23981 (23968) [007] d..2 24574.119980: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=112 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
71878   kworker/u17:2-23076 (23076) [007] d..2 24574.119984: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
71879   kworker/u17:2-23076 (23076) [007] d..3 24574.119986: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
71880<...>-24376 ( 24151) [001] d..3 24574.119994: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
71881   kworker/u17:2-23076 (23076) [007] d..2 24574.119998: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/7:0 next_pid=12892 next_prio=120
71882     kworker/7:0-12892 (12892) [007] d..2 24574.120000: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=007
71883<...>-24376 ( 24151) [001] d..4 24574.120009: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
71884     kworker/7:0-12892 (12892) [007] d..3 24574.120010: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=007
71885     kworker/7:0-12892 (12892) [007] d..2 24574.120013: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
71886 id.nn.benchmark-13155 (13131) [006] d..3 24574.120015: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
71887            adbd-23485 ( 1007) [007] d..2 24574.120020: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=112
71888 id.nn.benchmark-13155 (13131) [006] d..2 24574.120022: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
71889 id.nn.benchmark-13160 (13131) [003] dnh1 24574.120025: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
71890          <idle>-0     (-----) [006] d..1 24574.120025: cpu_idle: state=0 cpu_id=6
71891 id.nn.benchmark-13160 (13131) [003] d..2 24574.120031: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
71892  Binder:23968_1-23981 (23968) [007] d..3 24574.120047: sched_waking: comm=PowerManagerSer pid=24006 prio=116 target_cpu=006
71893          <idle>-0     (-----) [000] dnh5 24574.120049: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
71894          <idle>-0     (-----) [006] .n.1 24574.120055: cpu_idle: state=4294967295 cpu_id=6
71895          <idle>-0     (-----) [006] d..2 24574.120058: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
71896  Binder:23968_1-23981 (23968) [007] d..4 24574.120082: sched_wakeup: comm=PowerManagerSer pid=24006 prio=116 target_cpu=006
71897          <idle>-0     (-----) [000] dnh6 24574.120087: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
71898<...>-33 ( 33) [003] d..2 24574.120094: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
71899          <idle>-0     (-----) [000] dnh5 24574.120101: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
71900<...>-24376 ( 24151) [001] d..2 24574.120104: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
71901          <idle>-0     (-----) [003] d..1 24574.120107: cpu_idle: state=0 cpu_id=3
71902  Binder:23968_1-23981 (23968) [007] d..2 24574.120138: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=000
71903          <idle>-0     (-----) [000] dnh6 24574.120139: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
71904          <idle>-0     (-----) [003] .n.1 24574.120144: cpu_idle: state=4294967295 cpu_id=3
71905          <idle>-0     (-----) [003] d..2 24574.120150: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
71906          <idle>-0     (-----) [000] .n.1 24574.120152: cpu_idle: state=4294967295 cpu_id=0
71907  crtc_event:111-254   (  254) [001] d..2 24574.120154: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=PowerManagerSer next_pid=24006 next_prio=116
71908          <idle>-0     (-----) [000] d..2 24574.120158: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
71909 PowerManagerSer-24006 (23968) [001] d.h3 24574.120162: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=001
71910           <...>-13145 (-----) [002] d.h2 24574.120175: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=007
71911  Binder:23968_1-23981 (23968) [007] dnh1 24574.120201: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=007
71912  Binder:23968_1-23981 (23968) [007] d..2 24574.120204: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=110 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
71913   kworker/u17:2-23076 (23076) [007] d..2 24574.120209: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
71914   kworker/u17:2-23076 (23076) [007] d..3 24574.120211: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
71915           <...>-13145 (-----) [002] d..3 24574.120213: sched_waking: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
71916 PowerManagerSer-24006 (23968) [001] d..2 24574.120220: sched_switch: prev_comm=PowerManagerSer prev_pid=24006 prev_prio=116 prev_state=S ==> next_comm=statsd.writer next_pid=1044 next_prio=120
71917   kworker/u17:2-23076 (23076) [007] d..2 24574.120223: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/7:0 next_pid=12892 next_prio=120
71918     kworker/7:0-12892 (12892) [007] d.h1 24574.120228: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=110 target_cpu=007
71919     kworker/7:0-12892 (12892) [007] d..2 24574.120230: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=007
71920     kworker/7:0-12892 (12892) [007] d..3 24574.120238: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=007
71921     kworker/7:0-12892 (12892) [007] d..2 24574.120242: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
71922 crtc_commit:111-253   (  253) [003] d..2 24574.120288: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=adbd next_pid=23484 next_prio=120
71923            adbd-23484 ( 1007) [003] d.h4 24574.120327: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
71924<...>-1044 ( 887) [001] d..2 24574.120327: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
71925           <...>-13145 (-----) [002] d..2 24574.120330: sched_switch: prev_comm=Binder:13131_3 prev_pid=13145 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=110
71926            adbd-23484 ( 1007) [003] d.h4 24574.120335: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
71927          <idle>-0     (-----) [001] d..1 24574.120335: cpu_idle: state=0 cpu_id=1
71928           <...>-13131 (-----) [007] dnh1 24574.120339: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
71929<...>-24151 ( 24151) [000] d..2 24574.120364: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
71930           <...>-13131 (-----) [007] d..2 24574.120365: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
71931         sugov:4-560   (  560) [007] d..2 24574.120369: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=110
71932          <idle>-0     (-----) [000] d..1 24574.120371: cpu_idle: state=0 cpu_id=0
71933            adbd-23484 ( 1007) [003] d.h5 24574.120375: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
71934          <idle>-0     (-----) [000] .n.1 24574.120380: cpu_idle: state=4294967295 cpu_id=0
71935          <idle>-0     (-----) [000] d..2 24574.120384: 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
71936            adbd-23484 ( 1007) [003] d..2 24574.120391: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=007
71937         sugov:0-559   (  559) [000] d..2 24574.120396: 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
71938          <idle>-0     (-----) [000] d..1 24574.120399: cpu_idle: state=0 cpu_id=0
71939            adbd-23484 ( 1007) [003] d..3 24574.120405: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
71940            adbd-23484 ( 1007) [003] d..2 24574.120471: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
71941           <...>-13131 (-----) [007] ...1 24574.120484: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksCompilation_free
71942           <...>-13131 (-----) [007] ...1 24574.120487: tracing_mark_write: E|13131
71943           <...>-13131 (-----) [007] ...1 24574.120494: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksModel_free
71944           <...>-13131 (-----) [007] ...1 24574.120506: tracing_mark_write: E|13131
71945           <...>-13131 (-----) [007] ...1 24574.120514: tracing_mark_write: B|13131|[NN_LR_PT]ANeuralNetworksMemory_free
71946           <...>-13131 (-----) [007] ...1 24574.120519: tracing_mark_write: E|13131
71947            adbd-1007  ( 1007) [003] d..2 24574.120577: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
71948          <idle>-0     (-----) [003] d..1 24574.120584: cpu_idle: state=0 cpu_id=3
71949  Binder:23968_1-23981 (23968) [002] d..3 24574.120590: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=001
71950  Binder:23968_1-23981 (23968) [002] d..4 24574.120601: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=001
71951          <idle>-0     (-----) [001] .n.1 24574.120606: cpu_idle: state=4294967295 cpu_id=1
71952           <...>-13131 (-----) [007] d..2 24574.120612: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
71953          <idle>-0     (-----) [001] d..2 24574.120613: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
71954<...>-24003 ( 23968) [001] d.h1 24574.120628: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
71955<...>-24003 ( 23968) [001] d..2 24574.120651: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
71956     logd.writer-563   (  555) [001] d..2 24574.120720: 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
71957          <idle>-0     (-----) [001] d..1 24574.120728: cpu_idle: state=0 cpu_id=1
71958           <...>-13131 (-----) [007] .... 24574.120741: binder_transaction: transaction=1670242 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x12
71959           <...>-13131 (-----) [007] ...2 24574.120746: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
71960           <...>-13131 (-----) [007] d..4 24574.120748: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=007
71961           <...>-13131 (-----) [007] d..5 24574.120754: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=007
71962           <...>-13131 (-----) [007] d..2 24574.120759: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=110 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
71963<...>-12589 ( 23968) [007] .... 24574.120763: binder_transaction_received: transaction=1670242
71964  Binder:23968_1-23981 (23968) [002] .... 24574.120795: binder_transaction: transaction=1670243 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
71965  Binder:23968_1-23981 (23968) [002] d..4 24574.120800: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=001
71966  Binder:23968_1-23981 (23968) [002] d..5 24574.120816: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=000
71967          <idle>-0     (-----) [000] .n.1 24574.120821: cpu_idle: state=4294967295 cpu_id=0
71968          <idle>-0     (-----) [000] d..2 24574.120826: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
71969<...>-24376 ( 24151) [000] .... 24574.120829: binder_transaction_received: transaction=1670243
71970<...>-12589 ( 23968) [007] d..2 24574.120842: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
71971 id.nn.benchmark-13159 (13131) [005] d..2 24574.120846: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
71972          <idle>-0     (-----) [005] d..1 24574.120850: cpu_idle: state=0 cpu_id=5
71973          <idle>-0     (-----) [007] d..1 24574.120854: cpu_idle: state=0 cpu_id=7
71974 id.nn.benchmark-13160 (13131) [006] d.s2 24574.120891: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=005
71975<...>-24376 ( 24151) [000] d.s1 24574.120894: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
71976          <idle>-0     (-----) [003] d.s3 24574.120898: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
71977          <idle>-0     (-----) [003] d.s4 24574.120908: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
71978<...>-24376 ( 24151) [000] d.s2 24574.120910: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
71979 id.nn.benchmark-13160 (13131) [006] d.s2 24574.120913: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
71980          <idle>-0     (-----) [001] .n.1 24574.120913: cpu_idle: state=4294967295 cpu_id=1
71981<...>-24376 ( 24151) [000] d.H2 24574.120916: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
71982 id.nn.benchmark-13160 (13131) [006] dns3 24574.120918: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
71983          <idle>-0     (-----) [001] d..2 24574.120920: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
71984          <idle>-0     (-----) [003] ...1 24574.120922: cpu_idle: state=4294967295 cpu_id=3
71985          <idle>-0     (-----) [003] d..1 24574.120926: cpu_idle: state=0 cpu_id=3
71986<...>-24376 ( 24151) [000] d..3 24574.120927: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
71987 id.nn.benchmark-13160 (13131) [006] dnH3 24574.120938: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
71988  Binder:23968_1-23981 (23968) [002] d..3 24574.120944: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=006
71989 id.nn.benchmark-13160 (13131) [006] dnH4 24574.120944: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
71990 id.nn.benchmark-13160 (13131) [006] dnH3 24574.120945: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
71991  crtc_event:111-254   (  254) [001] d..2 24574.120949: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
71992          <idle>-0     (-----) [007] .n.1 24574.120950: cpu_idle: state=4294967295 cpu_id=7
71993<...>-24376 ( 24151) [000] d..4 24574.120950: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
71994          <idle>-0     (-----) [007] d..2 24574.120954: 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
71995          <idle>-0     (-----) [001] d..1 24574.120954: cpu_idle: state=0 cpu_id=1
71996          <idle>-0     (-----) [003] .n.1 24574.120955: cpu_idle: state=4294967295 cpu_id=3
71997 id.nn.benchmark-13160 (13131) [006] d..2 24574.120960: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=R ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
71998         sugov:4-560   (  560) [007] d..2 24574.120961: 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
71999          <idle>-0     (-----) [007] d..1 24574.120963: cpu_idle: state=0 cpu_id=7
72000          <idle>-0     (-----) [003] d..2 24574.120963: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
72001          <idle>-0     (-----) [001] dnh2 24574.120964: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
72002          <idle>-0     (-----) [001] .n.1 24574.120967: cpu_idle: state=4294967295 cpu_id=1
72003     kworker/6:0-21469 (21469) [006] d.h1 24574.120969: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=006
72004          <idle>-0     (-----) [001] d..2 24574.120972: 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
72005     kworker/6:0-21469 (21469) [006] d..2 24574.120973: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=23994 next_prio=118
72006<...>-24376 ( 24151) [000] d..2 24574.120983: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
72007         sugov:0-559   (  559) [001] d..2 24574.120983: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72008          <idle>-0     (-----) [001] d..1 24574.120988: cpu_idle: state=0 cpu_id=1
72009     rcu_preempt-7     (    7) [000] d..2 24574.120996: 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
72010<...>-23994 ( 23968) [006] d..3 24574.121010: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=000
72011          <idle>-0     (-----) [001] dnh2 24574.121027: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=001
72012<...>-24151 ( 24151) [003] d..2 24574.121027: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72013          <idle>-0     (-----) [001] .n.1 24574.121030: cpu_idle: state=4294967295 cpu_id=1
72014          <idle>-0     (-----) [003] d..1 24574.121035: cpu_idle: state=0 cpu_id=3
72015          <idle>-0     (-----) [001] d..2 24574.121035: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
72016<...>-23994 ( 23968) [006] d..2 24574.121036: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
72017          <idle>-0     (-----) [005] ...1 24574.121041: cpu_idle: state=4294967295 cpu_id=5
72018          <idle>-0     (-----) [005] d..1 24574.121042: cpu_idle: state=0 cpu_id=5
72019<...>-23968 ( 23968) [001] .... 24574.121090: binder_transaction: transaction=1670244 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
72020<...>-23968 ( 23968) [001] d..4 24574.121095: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=000
72021<...>-23968 ( 23968) [001] d..5 24574.121112: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=003
72022          <idle>-0     (-----) [003] .n.1 24574.121118: cpu_idle: state=4294967295 cpu_id=3
72023          <idle>-0     (-----) [003] d..2 24574.121124: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
72024<...>-24376 ( 24151) [003] .... 24574.121128: binder_transaction_received: transaction=1670244
72025          <idle>-0     (-----) [007] ...1 24574.121153: cpu_idle: state=4294967295 cpu_id=7
72026          <idle>-0     (-----) [007] d..1 24574.121155: cpu_idle: state=0 cpu_id=7
72027<...>-23968 ( 23968) [001] d..2 24574.121161: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72028          <idle>-0     (-----) [001] d..1 24574.121168: cpu_idle: state=0 cpu_id=1
72029<...>-24376 ( 24151) [003] d..3 24574.121190: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
72030<...>-24376 ( 24151) [003] d..4 24574.121207: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
72031          <idle>-0     (-----) [001] .n.1 24574.121212: cpu_idle: state=4294967295 cpu_id=1
72032          <idle>-0     (-----) [001] d..2 24574.121218: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
72033<...>-24376 ( 24151) [003] d..2 24574.121240: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72034          <idle>-0     (-----) [003] d..1 24574.121249: cpu_idle: state=0 cpu_id=3
72035<...>-24151 ( 24151) [001] d..2 24574.121275: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72036          <idle>-0     (-----) [001] d..1 24574.121282: cpu_idle: state=0 cpu_id=1
72037  Binder:23968_1-23981 (23968) [002] .... 24574.121287: binder_transaction: transaction=1670245 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
72038  kworker/u16:10-23868 (23868) [000] d..2 24574.121291: 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
72039          <idle>-0     (-----) [000] d..1 24574.121299: cpu_idle: state=0 cpu_id=0
72040  Binder:23968_1-23981 (23968) [002] ...2 24574.121303: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
72041  Binder:23968_1-23981 (23968) [002] d..4 24574.121305: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=001
72042  Binder:23968_1-23981 (23968) [002] dn.5 24574.121318: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=002
72043          <idle>-0     (-----) [003] d.s3 24574.121323: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
72044  Binder:23968_1-23981 (23968) [002] d..2 24574.121324: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
72045<...>-23903 ( 23896) [002] .... 24574.121330: binder_transaction_received: transaction=1670245
72046          <idle>-0     (-----) [003] d.s4 24574.121331: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
72047          <idle>-0     (-----) [003] d.s4 24574.121337: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
72048          <idle>-0     (-----) [000] .n.1 24574.121342: cpu_idle: state=4294967295 cpu_id=0
72049          <idle>-0     (-----) [003] ...1 24574.121343: cpu_idle: state=4294967295 cpu_id=3
72050          <idle>-0     (-----) [003] d..1 24574.121346: cpu_idle: state=0 cpu_id=3
72051          <idle>-0     (-----) [000] d..2 24574.121349: 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
72052  kworker/u16:10-23868 (23868) [000] d..2 24574.121365: 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
72053          <idle>-0     (-----) [000] d..1 24574.121371: cpu_idle: state=0 cpu_id=0
72054<...>-23903 ( 23896) [002] .... 24574.121429: binder_transaction: transaction=1670246 dest_node=0 dest_proc=23968 dest_thread=23981 reply=1 flags=0x0 code=0x0
72055<...>-23903 ( 23896) [002] .... 24574.121434: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
72056<...>-23903 ( 23896) [002] d..2 24574.121465: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=110
72057  Binder:23968_1-23981 (23968) [002] .... 24574.121470: binder_transaction_received: transaction=1670246
72058 id.nn.benchmark-13158 (13131) [004] d..2 24574.121489: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
72059          <idle>-0     (-----) [004] d..1 24574.121493: cpu_idle: state=0 cpu_id=4
72060          <idle>-0     (-----) [004] ...1 24574.121683: cpu_idle: state=4294967295 cpu_id=4
72061          <idle>-0     (-----) [004] d..1 24574.121684: cpu_idle: state=0 cpu_id=4
72062 id.nn.benchmark-13160 (13131) [006] d..2 24574.121948: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
72063          <idle>-0     (-----) [006] d..1 24574.121953: cpu_idle: state=0 cpu_id=6
72064  Binder:23968_1-23981 (23968) [002] d..3 24574.122023: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
72065  Binder:23968_1-23981 (23968) [002] d..4 24574.122037: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
72066          <idle>-0     (-----) [000] .n.1 24574.122041: cpu_idle: state=4294967295 cpu_id=0
72067          <idle>-0     (-----) [000] d..2 24574.122047: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
72068<...>-24073 ( 23968) [000] d..2 24574.122077: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
72069          <idle>-0     (-----) [000] d..1 24574.122083: cpu_idle: state=0 cpu_id=0
72070  Binder:23968_1-23981 (23968) [002] d..1 24574.122099: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=001
72071  Binder:23968_1-23981 (23968) [002] d..2 24574.122115: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=000
72072          <idle>-0     (-----) [000] .n.1 24574.122120: cpu_idle: state=4294967295 cpu_id=0
72073          <idle>-0     (-----) [000] d..2 24574.122126: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
72074  Binder:23968_1-23981 (23968) [002] d..1 24574.122142: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=006
72075          <idle>-0     (-----) [006] ...1 24574.122143: cpu_idle: state=4294967295 cpu_id=6
72076          <idle>-0     (-----) [006] d..1 24574.122145: cpu_idle: state=0 cpu_id=6
72077  Binder:23968_1-23981 (23968) [002] d..2 24574.122160: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=001
72078          <idle>-0     (-----) [001] .n.1 24574.122165: cpu_idle: state=4294967295 cpu_id=1
72079  Binder:23968_1-23981 (23968) [002] d.h3 24574.122189: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
72080          <idle>-0     (-----) [001] d..2 24574.122190: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
72081  Binder:23968_1-23981 (23968) [002] d.h3 24574.122197: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
72082          <idle>-0     (-----) [007] dnh2 24574.122202: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
72083          <idle>-0     (-----) [007] .n.1 24574.122204: cpu_idle: state=4294967295 cpu_id=7
72084          <idle>-0     (-----) [007] d..2 24574.122206: 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
72085  Binder:23968_1-23981 (23968) [002] d.h4 24574.122210: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
72086         sugov:4-560   (  560) [007] d..2 24574.122212: 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
72087<...>-23993 ( 23968) [001] d..2 24574.122213: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72088          <idle>-0     (-----) [007] d..1 24574.122214: cpu_idle: state=0 cpu_id=7
72089          <idle>-0     (-----) [003] .n.1 24574.122214: cpu_idle: state=4294967295 cpu_id=3
72090  Binder:23968_1-23981 (23968) [002] d..1 24574.122217: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=001
72091          <idle>-0     (-----) [001] d..1 24574.122219: cpu_idle: state=0 cpu_id=1
72092          <idle>-0     (-----) [003] d..2 24574.122220: 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
72093  Binder:23968_1-23981 (23968) [002] d..2 24574.122226: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=001
72094          <idle>-0     (-----) [001] .n.1 24574.122231: cpu_idle: state=4294967295 cpu_id=1
72095         sugov:0-559   (  559) [003] d..2 24574.122233: 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
72096          <idle>-0     (-----) [001] d..2 24574.122237: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
72097          <idle>-0     (-----) [003] d..1 24574.122239: cpu_idle: state=0 cpu_id=3
72098<...>-24003 ( 23968) [000] d..2 24574.122244: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
72099          <idle>-0     (-----) [000] d..1 24574.122251: cpu_idle: state=0 cpu_id=0
72100  Binder:23968_1-23981 (23968) [002] .... 24574.122298: binder_transaction: transaction=1670247 dest_node=0 dest_proc=13131 dest_thread=13147 reply=1 flags=0x0 code=0x0
72101  Binder:23968_1-23981 (23968) [002] d..2 24574.122302: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=007
72102<...>-23993 ( 23968) [001] d..2 24574.122312: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
72103  Binder:23968_1-23981 (23968) [002] dn.3 24574.122319: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=002
72104<...>-23993 ( 23968) [001] d..3 24574.122328: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
72105  Binder:23968_1-23981 (23968) [002] d..2 24574.122364: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=112 prev_state=R+ ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
72106           <...>-13147 (-----) [002] .... 24574.122370: binder_transaction_received: transaction=1670247
72107          <idle>-0     (-----) [000] d.h5 24574.122400: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
72108          <idle>-0     (-----) [007] ...1 24574.122403: cpu_idle: state=4294967295 cpu_id=7
72109          <idle>-0     (-----) [007] d..1 24574.122404: cpu_idle: state=0 cpu_id=7
72110          <idle>-0     (-----) [000] d.h6 24574.122410: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
72111          <idle>-0     (-----) [003] .n.1 24574.122415: cpu_idle: state=4294967295 cpu_id=3
72112          <idle>-0     (-----) [000] ...1 24574.122420: cpu_idle: state=4294967295 cpu_id=0
72113          <idle>-0     (-----) [003] d..2 24574.122420: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
72114          <idle>-0     (-----) [000] d..1 24574.122422: cpu_idle: state=0 cpu_id=0
72115<...>-23993 ( 23968) [001] d..1 24574.122453: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=007
72116<...>-23993 ( 23968) [001] d..2 24574.122473: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=000
72117          <idle>-0     (-----) [000] .n.1 24574.122477: cpu_idle: state=4294967295 cpu_id=0
72118          <idle>-0     (-----) [000] d..2 24574.122498: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
72119 crtc_commit:111-253   (  253) [003] d..2 24574.122515: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=112
72120  Binder:23968_1-23981 (23968) [003] .... 24574.122519: binder_set_priority: proc=23968 thread=23981 old=112 => new=120 desired=120
72121<...>-12589 ( 23968) [000] d..1 24574.122525: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=001
72122<...>-23993 ( 23968) [001] d..2 24574.122530: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
72123          <idle>-0     (-----) [006] dnh2 24574.122572: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=006
72124          <idle>-0     (-----) [006] .n.1 24574.122574: cpu_idle: state=4294967295 cpu_id=6
72125  Binder:23968_1-23981 (23968) [003] d..2 24574.122574: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72126          <idle>-0     (-----) [006] d..2 24574.122577: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
72127<...>-23993 ( 23968) [006] d..1 24574.122580: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=000
72128          <idle>-0     (-----) [003] d..1 24574.122582: cpu_idle: state=0 cpu_id=3
72129<...>-12589 ( 23968) [000] d..2 24574.122583: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
72130          <idle>-0     (-----) [000] d..1 24574.122590: cpu_idle: state=0 cpu_id=0
72131          <idle>-0     (-----) [000] dnh2 24574.122598: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=000
72132     logd.writer-563   (  555) [001] d..2 24574.122599: 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
72133<...>-23993 ( 23968) [006] d..2 24574.122599: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
72134          <idle>-0     (-----) [000] .n.1 24574.122602: cpu_idle: state=4294967295 cpu_id=0
72135          <idle>-0     (-----) [006] d..1 24574.122602: cpu_idle: state=0 cpu_id=6
72136          <idle>-0     (-----) [001] d..1 24574.122607: cpu_idle: state=0 cpu_id=1
72137          <idle>-0     (-----) [000] d..2 24574.122608: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
72138<...>-12589 ( 23968) [000] d.h4 24574.122685: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
72139<...>-12589 ( 23968) [000] d.h5 24574.122696: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
72140          <idle>-0     (-----) [001] .n.1 24574.122700: cpu_idle: state=4294967295 cpu_id=1
72141          <idle>-0     (-----) [001] d..2 24574.122706: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
72142  crtc_event:111-254   (  254) [001] d..2 24574.122723: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72143          <idle>-0     (-----) [001] d..1 24574.122728: cpu_idle: state=0 cpu_id=1
72144          <idle>-0     (-----) [006] ...1 24574.122792: cpu_idle: state=4294967295 cpu_id=6
72145          <idle>-0     (-----) [006] d..1 24574.122793: cpu_idle: state=0 cpu_id=6
72146<...>-12589 ( 23968) [000] .... 24574.122803: binder_transaction: transaction=1670248 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
72147<...>-12589 ( 23968) [000] ...2 24574.122814: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
72148<...>-12589 ( 23968) [000] d..4 24574.122816: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=002
72149<...>-12589 ( 23968) [000] d..5 24574.122829: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=000
72150<...>-12589 ( 23968) [000] d..2 24574.122837: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
72151<...>-23903 ( 23896) [000] .... 24574.122841: binder_transaction_received: transaction=1670248
72152<...>-23903 ( 23896) [000] .... 24574.122882: binder_transaction: transaction=1670249 dest_node=0 dest_proc=23968 dest_thread=12589 reply=1 flags=0x0 code=0x0
72153<...>-23903 ( 23896) [000] d..2 24574.122885: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=000
72154<...>-23903 ( 23896) [000] d..3 24574.122893: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=000
72155<...>-23903 ( 23896) [000] .... 24574.122894: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
72156<...>-23903 ( 23896) [000] d..2 24574.122902: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
72157<...>-12589 ( 23968) [000] .... 24574.122906: binder_transaction_received: transaction=1670249
72158<...>-12589 ( 23968) [000] d..2 24574.123046: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=001
72159<...>-12589 ( 23968) [000] d..3 24574.123070: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=000
72160<...>-12589 ( 23968) [000] d..3 24574.123179: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=001
72161<...>-12589 ( 23968) [000] d..4 24574.123192: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=001
72162          <idle>-0     (-----) [001] .n.1 24574.123196: cpu_idle: state=4294967295 cpu_id=1
72163          <idle>-0     (-----) [001] d..2 24574.123202: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
72164<...>-12589 ( 23968) [000] d..3 24574.123204: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=000
72165<...>-12589 ( 23968) [000] d..4 24574.123219: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=003
72166          <idle>-0     (-----) [003] .n.1 24574.123224: cpu_idle: state=4294967295 cpu_id=3
72167          <idle>-0     (-----) [003] d..2 24574.123231: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
72168<...>-23968 ( 23968) [001] .... 24574.123255: binder_transaction: transaction=1670250 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x16
72169<...>-23968 ( 23968) [001] d..4 24574.123259: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=003
72170<...>-24003 ( 23968) [003] d..2 24574.123281: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=statsd.writer next_pid=1044 next_prio=120
72171          <idle>-0     (-----) [006] dnh2 24574.123283: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
72172          <idle>-0     (-----) [006] .n.1 24574.123285: cpu_idle: state=4294967295 cpu_id=6
72173<...>-12589 ( 23968) [000] .... 24574.123304: binder_transaction: transaction=1670251 dest_node=1309266 dest_proc=24827 dest_thread=0 reply=0 flags=0x11 code=0x4
72174          <idle>-0     (-----) [006] d..2 24574.123308: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
72175<...>-23968 ( 23968) [001] d.h5 24574.123309: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
72176<...>-12589 ( 23968) [000] d..4 24574.123312: sched_waking: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=006
72177<...>-23968 ( 23968) [001] d.h5 24574.123317: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
72178          <idle>-0     (-----) [007] dnh2 24574.123321: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
72179          <idle>-0     (-----) [007] .n.1 24574.123323: cpu_idle: state=4294967295 cpu_id=7
72180<...>-23968 ( 23968) [001] d.h6 24574.123325: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
72181          <idle>-0     (-----) [007] d..2 24574.123325: 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
72182<...>-24376 ( 24151) [006] .... 24574.123329: binder_transaction_received: transaction=1670250
72183         sugov:4-560   (  560) [007] d..2 24574.123334: 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
72184<...>-1044 ( 887) [003] d..2 24574.123335: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
72185          <idle>-0     (-----) [007] d..1 24574.123336: cpu_idle: state=0 cpu_id=7
72186          <idle>-0     (-----) [007] dnh2 24574.123341: sched_wakeup: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=007
72187          <idle>-0     (-----) [007] .n.1 24574.123343: cpu_idle: state=4294967295 cpu_id=7
72188         sugov:0-559   (  559) [003] d..2 24574.123344: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=statsd.writer next_pid=1044 next_prio=120
72189          <idle>-0     (-----) [007] d..2 24574.123345: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24827_5 next_pid=5558 next_prio=120
72190<...>-5558 ( 24827) [007] .... 24574.123349: binder_transaction_received: transaction=1670251
72191<...>-12589 ( 23968) [000] d..3 24574.123358: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=000
72192<...>-24376 ( 24151) [006] d..3 24574.123366: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
72193<...>-23968 ( 23968) [001] d..2 24574.123372: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72194          <idle>-0     (-----) [001] d..1 24574.123380: cpu_idle: state=0 cpu_id=1
72195          <idle>-0     (-----) [005] dnh2 24574.123399: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=005
72196          <idle>-0     (-----) [005] .n.1 24574.123401: cpu_idle: state=4294967295 cpu_id=5
72197          <idle>-0     (-----) [001] dnh2 24574.123401: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
72198          <idle>-0     (-----) [001] .n.1 24574.123405: cpu_idle: state=4294967295 cpu_id=1
72199<...>-24376 ( 24151) [006] d..2 24574.123405: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
72200          <idle>-0     (-----) [005] d..2 24574.123406: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
72201          <idle>-0     (-----) [006] d..1 24574.123409: cpu_idle: state=0 cpu_id=6
72202          <idle>-0     (-----) [001] d..2 24574.123411: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
72203<...>-1044 ( 887) [003] d..2 24574.123430: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72204<...>-24041 ( 23968) [005] d..2 24574.123430: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
72205<...>-5558 ( 24827) [007] d..3 24574.123433: sched_waking: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=007
72206          <idle>-0     (-----) [005] d..1 24574.123433: cpu_idle: state=0 cpu_id=5
72207          <idle>-0     (-----) [003] d..1 24574.123439: cpu_idle: state=0 cpu_id=3
72208          <idle>-0     (-----) [003] dnh2 24574.123466: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=003
72209          <idle>-0     (-----) [003] .n.1 24574.123471: cpu_idle: state=4294967295 cpu_id=3
72210          <idle>-0     (-----) [003] d..2 24574.123477: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
72211<...>-5558 ( 24827) [007] d..2 24574.123486: sched_switch: prev_comm=Binder:24827_5 prev_pid=5558 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
72212          <idle>-0     (-----) [007] d..1 24574.123490: cpu_idle: state=0 cpu_id=7
72213<...>-12589 ( 23968) [000] d..3 24574.123491: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
72214          <idle>-0     (-----) [006] dnh2 24574.123533: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
72215          <idle>-0     (-----) [006] .n.1 24574.123535: cpu_idle: state=4294967295 cpu_id=6
72216          <idle>-0     (-----) [006] d..2 24574.123539: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
72217<...>-24151 ( 24151) [001] d..2 24574.123550: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72218<...>-24073 ( 23968) [006] d..2 24574.123553: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
72219          <idle>-0     (-----) [006] d..1 24574.123556: cpu_idle: state=0 cpu_id=6
72220          <idle>-0     (-----) [001] d..1 24574.123557: cpu_idle: state=0 cpu_id=1
72221 s.nexuslauncher-24827 (24827) [003] .... 24574.123558: binder_transaction: transaction=1670252 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
72222 s.nexuslauncher-24827 (24827) [003] d..4 24574.123562: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=006
72223 s.nexuslauncher-24827 (24827) [003] d..5 24574.123584: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
72224          <idle>-0     (-----) [001] .n.1 24574.123589: cpu_idle: state=4294967295 cpu_id=1
72225<...>-12589 ( 23968) [000] d..3 24574.123595: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=003
72226          <idle>-0     (-----) [001] d..2 24574.123611: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
72227  Binder:23896_5-25989 (23896) [001] .... 24574.123617: binder_transaction_received: transaction=1670252
72228 s.nexuslauncher-24827 (24827) [003] d..3 24574.123636: sched_waking: comm=RenderThread pid=25194 prio=120 target_cpu=000
72229  Binder:23896_5-25989 (23896) [001] d..1 24574.123642: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
72230          <idle>-0     (-----) [005] dnh2 24574.123645: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=005
72231          <idle>-0     (-----) [005] .n.1 24574.123648: cpu_idle: state=4294967295 cpu_id=5
72232          <idle>-0     (-----) [005] d..2 24574.123651: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
72233<...>-24003 ( 23968) [005] d..2 24574.123666: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
72234  Binder:23896_5-25989 (23896) [001] dn.2 24574.123667: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
72235          <idle>-0     (-----) [006] dnh2 24574.123667: sched_wakeup: comm=RenderThread pid=25194 prio=120 target_cpu=006
72236          <idle>-0     (-----) [005] d..1 24574.123669: cpu_idle: state=0 cpu_id=5
72237          <idle>-0     (-----) [006] .n.1 24574.123669: cpu_idle: state=4294967295 cpu_id=6
72238          <idle>-0     (-----) [006] d..2 24574.123688: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=120
72239  Binder:23896_5-25989 (23896) [001] d..2 24574.123691: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
72240    RenderThread-25194 (24827) [006] d..2 24574.123706: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
72241  appEventThread-23905 (23896) [001] d..2 24574.123708: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
72242          <idle>-0     (-----) [006] d..1 24574.123708: cpu_idle: state=0 cpu_id=6
72243  Binder:23896_5-25989 (23896) [001] d..1 24574.123711: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
72244 s.nexuslauncher-24827 (24827) [003] d..2 24574.123722: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72245<...>-12589 ( 23968) [000] d..3 24574.123726: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=006
72246  Binder:23896_5-25989 (23896) [001] d..2 24574.123728: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
72247          <idle>-0     (-----) [003] d..2 24574.123732: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
72248          <idle>-0     (-----) [006] dnh2 24574.123742: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=006
72249          <idle>-0     (-----) [006] .n.1 24574.123744: cpu_idle: state=4294967295 cpu_id=6
72250          <idle>-0     (-----) [006] d..2 24574.123746: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
72251  Binder:23896_5-25989 (23896) [001] d..2 24574.123754: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72252          <idle>-0     (-----) [001] d..1 24574.123761: cpu_idle: state=0 cpu_id=1
72253<...>-23994 ( 23968) [006] d..3 24574.123766: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=001
72254          <idle>-0     (-----) [001] dnh2 24574.123780: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=001
72255  appEventThread-23905 (23896) [003] d..2 24574.123783: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72256<...>-23994 ( 23968) [006] d..2 24574.123785: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
72257          <idle>-0     (-----) [001] .n.1 24574.123785: cpu_idle: state=4294967295 cpu_id=1
72258          <idle>-0     (-----) [006] d..1 24574.123788: cpu_idle: state=0 cpu_id=6
72259          <idle>-0     (-----) [001] d..2 24574.123791: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
72260          <idle>-0     (-----) [003] d..1 24574.123791: cpu_idle: state=0 cpu_id=3
72261<...>-23968 ( 23968) [001] .... 24574.123843: binder_transaction: transaction=1670253 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
72262<...>-23968 ( 23968) [001] d..4 24574.123847: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
72263<...>-23968 ( 23968) [001] d..5 24574.123867: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=003
72264          <idle>-0     (-----) [003] .n.1 24574.123872: cpu_idle: state=4294967295 cpu_id=3
72265<...>-23968 ( 23968) [001] d.h5 24574.123896: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
72266          <idle>-0     (-----) [003] d..2 24574.123896: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
72267<...>-23968 ( 23968) [001] d.h5 24574.123903: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
72268          <idle>-0     (-----) [007] dnh2 24574.123908: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
72269          <idle>-0     (-----) [007] .n.1 24574.123911: cpu_idle: state=4294967295 cpu_id=7
72270<...>-23968 ( 23968) [001] dnh6 24574.123913: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
72271          <idle>-0     (-----) [007] d..2 24574.123914: 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
72272<...>-24376 ( 24151) [003] .... 24574.123917: binder_transaction_received: transaction=1670253
72273<...>-23968 ( 23968) [001] d..2 24574.123919: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
72274         sugov:4-560   (  560) [007] d..2 24574.123920: 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
72275          <idle>-0     (-----) [007] d..1 24574.123922: cpu_idle: state=0 cpu_id=7
72276         sugov:0-559   (  559) [001] d..2 24574.123926: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
72277<...>-23968 ( 23968) [001] d..2 24574.123964: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72278<...>-24376 ( 24151) [003] d..3 24574.123969: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
72279          <idle>-0     (-----) [001] d..1 24574.123971: cpu_idle: state=0 cpu_id=1
72280<...>-24376 ( 24151) [003] d..4 24574.123981: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
72281          <idle>-0     (-----) [001] .n.1 24574.123986: cpu_idle: state=4294967295 cpu_id=1
72282          <idle>-0     (-----) [001] d..2 24574.123993: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
72283<...>-24376 ( 24151) [003] d..2 24574.124014: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72284          <idle>-0     (-----) [003] d..1 24574.124023: cpu_idle: state=0 cpu_id=3
72285<...>-24151 ( 24151) [001] d..2 24574.124043: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72286          <idle>-0     (-----) [001] d..1 24574.124049: cpu_idle: state=0 cpu_id=1
72287<...>-12589 ( 23968) [000] d.s2 24574.124236: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
72288<...>-12589 ( 23968) [000] d.s3 24574.124248: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
72289<...>-12589 ( 23968) [000] d..3 24574.124265: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
72290<...>-12589 ( 23968) [000] d..4 24574.124282: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
72291          <idle>-0     (-----) [001] .n.1 24574.124287: cpu_idle: state=4294967295 cpu_id=1
72292          <idle>-0     (-----) [001] d..2 24574.124308: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
72293<...>-24073 ( 23968) [001] d..2 24574.124336: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72294          <idle>-0     (-----) [001] d..1 24574.124341: cpu_idle: state=0 cpu_id=1
72295<...>-12589 ( 23968) [000] d..2 24574.124406: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
72296<...>-12589 ( 23968) [000] d..3 24574.124426: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
72297          <idle>-0     (-----) [001] dnh2 24574.124433: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
72298          <idle>-0     (-----) [001] dnh3 24574.124449: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
72299          <idle>-0     (-----) [003] .n.1 24574.124455: cpu_idle: state=4294967295 cpu_id=3
72300          <idle>-0     (-----) [001] .n.1 24574.124457: cpu_idle: state=4294967295 cpu_id=1
72301          <idle>-0     (-----) [003] d..2 24574.124461: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
72302          <idle>-0     (-----) [001] d..2 24574.124463: 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
72303        DispSync-23904 (23896) [003] d..1 24574.124479: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
72304        DispSync-23904 (23896) [003] d..2 24574.124493: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
72305     logd.writer-563   (  555) [001] d..2 24574.124503: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
72306        DispSync-23904 (23896) [003] d..2 24574.124513: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72307          <idle>-0     (-----) [003] d..1 24574.124519: cpu_idle: state=0 cpu_id=3
72308  appEventThread-23905 (23896) [001] d..3 24574.124533: sched_waking: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=003
72309  appEventThread-23905 (23896) [001] d..4 24574.124545: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=003
72310          <idle>-0     (-----) [003] .n.1 24574.124550: cpu_idle: state=4294967295 cpu_id=3
72311  appEventThread-23905 (23896) [001] d..3 24574.124556: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
72312          <idle>-0     (-----) [003] d..2 24574.124557: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
72313          <idle>-0     (-----) [006] dnh2 24574.124597: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
72314  appEventThread-23905 (23896) [001] d.h3 24574.124598: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
72315          <idle>-0     (-----) [006] .n.1 24574.124599: cpu_idle: state=4294967295 cpu_id=6
72316          <idle>-0     (-----) [006] d..2 24574.124603: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
72317  appEventThread-23905 (23896) [001] d.h3 24574.124605: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
72318          <idle>-0     (-----) [007] dnh2 24574.124610: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
72319          <idle>-0     (-----) [007] .n.1 24574.124612: cpu_idle: state=4294967295 cpu_id=7
72320          <idle>-0     (-----) [007] d..2 24574.124615: 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
72321  appEventThread-23905 (23896) [001] d.h4 24574.124618: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
72322         sugov:4-560   (  560) [007] d..2 24574.124620: 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
72323          <idle>-0     (-----) [007] d..1 24574.124622: cpu_idle: state=0 cpu_id=7
72324 s.nexuslauncher-24827 (24827) [003] d..2 24574.124628: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
72325  appEventThread-23905 (23896) [001] d..2 24574.124634: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
72326         sugov:0-559   (  559) [003] d..2 24574.124637: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
72327     logd.writer-563   (  555) [001] d..2 24574.124661: 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
72328          <idle>-0     (-----) [001] d..1 24574.124669: cpu_idle: state=0 cpu_id=1
72329<...>-12589 ( 23968) [000] d..3 24574.124692: sched_waking: comm=lmkd pid=808 prio=98 target_cpu=000
72330<...>-12589 ( 23968) [000] d..4 24574.124711: sched_wakeup: comm=lmkd pid=808 prio=98 target_cpu=001
72331          <idle>-0     (-----) [001] .n.1 24574.124716: cpu_idle: state=4294967295 cpu_id=1
72332<...>-24151 ( 24151) [006] .... 24574.124718: binder_transaction: transaction=1670254 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
72333          <idle>-0     (-----) [001] d..2 24574.124721: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=808 next_prio=98
72334<...>-24151 ( 24151) [006] d..4 24574.124722: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
72335<...>-24151 ( 24151) [006] d..5 24574.124738: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
72336          <idle>-0     (-----) [005] .n.1 24574.124742: cpu_idle: state=4294967295 cpu_id=5
72337          <idle>-0     (-----) [005] d..2 24574.124756: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
72338  Binder:23896_5-25989 (23896) [005] .... 24574.124758: binder_transaction_received: transaction=1670254
72339<...>-24151 ( 24151) [006] d..3 24574.124766: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
72340  Binder:23896_5-25989 (23896) [005] d..1 24574.124768: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
72341<...>-24151 ( 24151) [006] d..4 24574.124781: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
72342 s.nexuslauncher-24827 (24827) [003] dnh1 24574.124785: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
72343          <idle>-0     (-----) [007] .n.1 24574.124785: cpu_idle: state=4294967295 cpu_id=7
72344  Binder:23896_5-25989 (23896) [005] d..2 24574.124799: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
72345          <idle>-0     (-----) [007] d..2 24574.124800: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
72346          <idle>-0     (-----) [005] d..1 24574.124802: cpu_idle: state=0 cpu_id=5
72347 s.nexuslauncher-24827 (24827) [003] d..2 24574.124803: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
72348    RenderThread-24437 (24151) [007] d..2 24574.124823: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
72349          <idle>-0     (-----) [007] d..1 24574.124825: cpu_idle: state=0 cpu_id=7
72350  appEventThread-23905 (23896) [003] d..2 24574.124826: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
72351<...>-24151 ( 24151) [006] d..3 24574.124854: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
72352<...>-24151 ( 24151) [006] d..4 24574.124861: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
72353          <idle>-0     (-----) [007] .n.1 24574.124865: cpu_idle: state=4294967295 cpu_id=7
72354          <idle>-0     (-----) [007] d..2 24574.124868: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
72355<...>-24151 ( 24151) [006] d..2 24574.124870: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
72356          <idle>-0     (-----) [006] d..1 24574.124874: cpu_idle: state=0 cpu_id=6
72357    RenderThread-24437 (24151) [007] d..1 24574.124925: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
72358<...>-12589 ( 23968) [000] .... 24574.124930: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=24827 comm=s.nexuslauncher
72359    RenderThread-24437 (24151) [007] d..2 24574.124931: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
72360          <idle>-0     (-----) [006] .n.1 24574.124935: cpu_idle: state=4294967295 cpu_id=6
72361          <idle>-0     (-----) [006] d..2 24574.124939: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
72362<...>-24151 ( 24151) [006] d..2 24574.124957: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
72363          <idle>-0     (-----) [006] d..1 24574.124961: cpu_idle: state=0 cpu_id=6
72364<...>-12589 ( 23968) [000] .... 24574.124961: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24827 comm=s.nexuslauncher
72365    RenderThread-24437 (24151) [007] .... 24574.124966: binder_transaction: transaction=1670255 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
72366    RenderThread-24437 (24151) [007] d..4 24574.124969: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
72367<...>-12589 ( 23968) [000] .... 24574.124969: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24827 comm=s.nexuslauncher
72368    RenderThread-24437 (24151) [007] d..5 24574.124976: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
72369    RenderThread-24437 (24151) [007] d..2 24574.124980: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
72370  Binder:23896_5-25989 (23896) [007] .... 24574.124983: binder_transaction_received: transaction=1670255
72371<...>-12589 ( 23968) [000] .... 24574.125013: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=24838 comm=Jit thread pool
72372  Binder:23896_5-25989 (23896) [007] .... 24574.125019: binder_transaction: transaction=1670256 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
72373<...>-12589 ( 23968) [000] .... 24574.125023: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24838 comm=Jit thread pool
72374  Binder:23896_5-25989 (23896) [007] d..2 24574.125024: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
72375  Binder:23896_5-25989 (23896) [007] d..3 24574.125028: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
72376<...>-12589 ( 23968) [000] .... 24574.125029: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24838 comm=Jit thread pool
72377  Binder:23896_5-25989 (23896) [007] d..2 24574.125036: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
72378    RenderThread-24437 (24151) [007] .... 24574.125038: binder_transaction_received: transaction=1670256
72379<...>-12589 ( 23968) [000] .... 24574.125061: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=24841 comm=Signal Catcher
72380<...>-12589 ( 23968) [000] .... 24574.125070: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24841 comm=Signal Catcher
72381<...>-12589 ( 23968) [000] .... 24574.125076: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24841 comm=Signal Catcher
72382<...>-12589 ( 23968) [000] .... 24574.125107: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=24845 comm=ADB-JDWP Connec
72383<...>-12589 ( 23968) [000] .... 24574.125116: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24845 comm=ADB-JDWP Connec
72384<...>-12589 ( 23968) [000] .... 24574.125122: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24845 comm=ADB-JDWP Connec
72385          <idle>-0     (-----) [006] ...1 24574.125152: cpu_idle: state=4294967295 cpu_id=6
72386          <idle>-0     (-----) [006] d..1 24574.125153: cpu_idle: state=0 cpu_id=6
72387<...>-12589 ( 23968) [000] .... 24574.125154: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=24846 comm=ReferenceQueueD
72388<...>-12589 ( 23968) [000] .... 24574.125163: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24846 comm=ReferenceQueueD
72389<...>-12589 ( 23968) [000] .... 24574.125169: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24846 comm=ReferenceQueueD
72390            lmkd-808   (  808) [001] d..2 24574.125171: sched_switch: prev_comm=lmkd prev_pid=808 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72391          <idle>-0     (-----) [001] d..1 24574.125179: cpu_idle: state=0 cpu_id=1
72392<...>-12589 ( 23968) [000] .... 24574.125200: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=24847 comm=FinalizerDaemon
72393<...>-12589 ( 23968) [000] .... 24574.125209: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24847 comm=FinalizerDaemon
72394<...>-12589 ( 23968) [000] .... 24574.125215: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24847 comm=FinalizerDaemon
72395<...>-12589 ( 23968) [000] .... 24574.125247: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=24848 comm=FinalizerWatchd
72396<...>-12589 ( 23968) [000] .... 24574.125256: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24848 comm=FinalizerWatchd
72397<...>-12589 ( 23968) [000] .... 24574.125262: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24848 comm=FinalizerWatchd
72398<...>-12589 ( 23968) [000] .... 24574.125293: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=24849 comm=HeapTaskDaemon
72399<...>-12589 ( 23968) [000] .... 24574.125302: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24849 comm=HeapTaskDaemon
72400<...>-12589 ( 23968) [000] .... 24574.125308: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24849 comm=HeapTaskDaemon
72401<...>-12589 ( 23968) [000] .... 24574.125340: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=24850 comm=Binder:24827_1
72402 s.nexuslauncher-24827 (24827) [003] d..3 24574.125349: sched_waking: comm=RenderThread pid=25194 prio=120 target_cpu=006
72403<...>-12589 ( 23968) [000] .... 24574.125349: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24850 comm=Binder:24827_1
72404<...>-12589 ( 23968) [000] .... 24574.125355: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24850 comm=Binder:24827_1
72405 s.nexuslauncher-24827 (24827) [003] d..4 24574.125370: sched_wakeup: comm=RenderThread pid=25194 prio=120 target_cpu=001
72406          <idle>-0     (-----) [001] .n.1 24574.125375: cpu_idle: state=4294967295 cpu_id=1
72407<...>-12589 ( 23968) [000] .... 24574.125400: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=24857 comm=Binder:24827_2
72408 s.nexuslauncher-24827 (24827) [003] d.h3 24574.125401: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
72409          <idle>-0     (-----) [001] d..2 24574.125401: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=120
72410<...>-12589 ( 23968) [000] .... 24574.125409: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24857 comm=Binder:24827_2
72411 s.nexuslauncher-24827 (24827) [003] d.h3 24574.125414: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
72412<...>-12589 ( 23968) [000] .... 24574.125415: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24857 comm=Binder:24827_2
72413          <idle>-0     (-----) [004] dnh2 24574.125417: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
72414          <idle>-0     (-----) [004] .n.1 24574.125420: cpu_idle: state=4294967295 cpu_id=4
72415          <idle>-0     (-----) [004] d..2 24574.125423: 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
72416 s.nexuslauncher-24827 (24827) [003] d.h4 24574.125425: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
72417         sugov:4-560   (  560) [004] d..2 24574.125429: 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
72418          <idle>-0     (-----) [004] d..1 24574.125431: cpu_idle: state=0 cpu_id=4
72419    RenderThread-25194 (24827) [001] d..2 24574.125435: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
72420         sugov:0-559   (  559) [001] d..2 24574.125444: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=120
72421 s.nexuslauncher-24827 (24827) [003] d..2 24574.125445: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72422<...>-12589 ( 23968) [000] .... 24574.125446: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=24863 comm=Binder:24827_3
72423          <idle>-0     (-----) [003] d..1 24574.125453: cpu_idle: state=0 cpu_id=3
72424<...>-12589 ( 23968) [000] .... 24574.125455: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24863 comm=Binder:24827_3
72425<...>-12589 ( 23968) [000] .... 24574.125461: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24863 comm=Binder:24827_3
72426    RenderThread-25194 (24827) [001] d..1 24574.125466: sched_waking: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=003
72427    RenderThread-25194 (24827) [001] d..2 24574.125476: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=003
72428          <idle>-0     (-----) [003] .n.1 24574.125481: cpu_idle: state=4294967295 cpu_id=3
72429          <idle>-0     (-----) [003] d..2 24574.125487: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
72430<...>-12589 ( 23968) [000] .... 24574.125493: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=24890 comm=Profile Saver
72431    RenderThread-25194 (24827) [001] d..2 24574.125496: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72432<...>-12589 ( 23968) [000] .... 24574.125502: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24890 comm=Profile Saver
72433          <idle>-0     (-----) [001] d..1 24574.125503: cpu_idle: state=0 cpu_id=1
72434 s.nexuslauncher-24827 (24827) [003] d..3 24574.125506: sched_waking: comm=RenderThread pid=25194 prio=120 target_cpu=001
72435<...>-12589 ( 23968) [000] .... 24574.125507: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24890 comm=Profile Saver
72436 s.nexuslauncher-24827 (24827) [003] d..4 24574.125515: sched_wakeup: comm=RenderThread pid=25194 prio=120 target_cpu=001
72437          <idle>-0     (-----) [001] .n.1 24574.125520: cpu_idle: state=4294967295 cpu_id=1
72438          <idle>-0     (-----) [001] d..2 24574.125526: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=120
72439 s.nexuslauncher-24827 (24827) [003] d..2 24574.125528: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72440          <idle>-0     (-----) [003] d..1 24574.125534: cpu_idle: state=0 cpu_id=3
72441<...>-12589 ( 23968) [000] .... 24574.125539: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=24943 comm=launcher-loader
72442    RenderThread-25194 (24827) [001] d..1 24574.125544: sched_waking: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=003
72443<...>-12589 ( 23968) [000] .... 24574.125548: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24943 comm=launcher-loader
72444    RenderThread-25194 (24827) [001] d..2 24574.125554: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=003
72445<...>-12589 ( 23968) [000] .... 24574.125554: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24943 comm=launcher-loader
72446          <idle>-0     (-----) [003] .n.1 24574.125558: cpu_idle: state=4294967295 cpu_id=3
72447          <idle>-0     (-----) [003] d..2 24574.125564: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
72448    RenderThread-25194 (24827) [001] d..2 24574.125567: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72449          <idle>-0     (-----) [001] d..1 24574.125573: cpu_idle: state=0 cpu_id=1
72450<...>-12589 ( 23968) [000] .... 24574.125586: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=24985 comm=GAC_Executor[0]
72451<...>-12589 ( 23968) [000] .... 24574.125595: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24985 comm=GAC_Executor[0]
72452<...>-12589 ( 23968) [000] .... 24574.125601: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24985 comm=GAC_Executor[0]
72453 s.nexuslauncher-24827 (24827) [003] d..3 24574.125614: sched_waking: comm=RenderThread pid=25194 prio=120 target_cpu=001
72454 s.nexuslauncher-24827 (24827) [003] d..4 24574.125624: sched_wakeup: comm=RenderThread pid=25194 prio=120 target_cpu=001
72455          <idle>-0     (-----) [001] .n.1 24574.125628: cpu_idle: state=4294967295 cpu_id=1
72456<...>-12589 ( 23968) [000] .... 24574.125633: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=24986 comm=GoogleApiHandle
72457          <idle>-0     (-----) [001] d..2 24574.125634: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=120
72458 s.nexuslauncher-24827 (24827) [003] d..2 24574.125638: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72459<...>-12589 ( 23968) [000] .... 24574.125642: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24986 comm=GoogleApiHandle
72460    RenderThread-25194 (24827) [001] d..1 24574.125643: sched_waking: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=003
72461          <idle>-0     (-----) [003] d..1 24574.125644: cpu_idle: state=0 cpu_id=3
72462<...>-12589 ( 23968) [000] .... 24574.125648: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24986 comm=GoogleApiHandle
72463    RenderThread-25194 (24827) [001] d..2 24574.125651: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=120 target_cpu=003
72464          <idle>-0     (-----) [003] .n.1 24574.125656: cpu_idle: state=4294967295 cpu_id=3
72465          <idle>-0     (-----) [003] d..2 24574.125663: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=120
72466    RenderThread-25194 (24827) [001] d..2 24574.125664: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72467          <idle>-0     (-----) [001] d..1 24574.125670: cpu_idle: state=0 cpu_id=1
72468<...>-12589 ( 23968) [000] .... 24574.125680: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=25108 comm=UiThreadHelper
72469<...>-12589 ( 23968) [000] .... 24574.125690: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25108 comm=UiThreadHelper
72470<...>-12589 ( 23968) [000] .... 24574.125695: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25108 comm=UiThreadHelper
72471    RenderThread-24437 (24151) [007] d..2 24574.125705: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
72472          <idle>-0     (-----) [007] d..1 24574.125710: cpu_idle: state=0 cpu_id=7
72473<...>-12589 ( 23968) [000] .... 24574.125727: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=25109 comm=pool-1-thread-1
72474<...>-12589 ( 23968) [000] .... 24574.125737: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25109 comm=pool-1-thread-1
72475 s.nexuslauncher-24827 (24827) [003] .... 24574.125740: binder_transaction: transaction=1670257 dest_node=1309207 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x6
72476<...>-12589 ( 23968) [000] .... 24574.125743: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25109 comm=pool-1-thread-1
72477 s.nexuslauncher-24827 (24827) [003] d..4 24574.125753: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=003
72478 s.nexuslauncher-24827 (24827) [003] d..5 24574.125762: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=003
72479 s.nexuslauncher-24827 (24827) [003] d..2 24574.125769: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
72480  Binder:23968_1-23981 (23968) [003] .... 24574.125775: binder_transaction_received: transaction=1670257
72481<...>-12589 ( 23968) [000] .... 24574.125775: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=25113 comm=Recents-HighRes
72482<...>-12589 ( 23968) [000] .... 24574.125785: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25113 comm=Recents-HighRes
72483<...>-12589 ( 23968) [000] .... 24574.125791: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25113 comm=Recents-HighRes
72484          <idle>-0     (-----) [007] d.h2 24574.125803: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
72485          <idle>-0     (-----) [007] d.h3 24574.125806: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
72486          <idle>-0     (-----) [007] dnh3 24574.125808: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
72487          <idle>-0     (-----) [007] .n.1 24574.125811: cpu_idle: state=4294967295 cpu_id=7
72488          <idle>-0     (-----) [007] d..2 24574.125814: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
72489<...>-12589 ( 23968) [000] .... 24574.125823: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=25114 comm=Recents-TaskRes
72490<...>-12589 ( 23968) [000] .... 24574.125832: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25114 comm=Recents-TaskRes
72491<...>-12589 ( 23968) [000] .... 24574.125837: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25114 comm=Recents-TaskRes
72492<...>-12589 ( 23968) [000] .... 24574.125870: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=25116 comm=pool-3-thread-1
72493<...>-12589 ( 23968) [000] .... 24574.125879: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25116 comm=pool-3-thread-1
72494<...>-12589 ( 23968) [000] .... 24574.125885: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25116 comm=pool-3-thread-1
72495    RenderThread-24437 (24151) [007] .... 24574.125899: binder_transaction: transaction=1670258 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
72496    RenderThread-24437 (24151) [007] d..4 24574.125903: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
72497    RenderThread-24437 (24151) [007] d..5 24574.125906: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
72498    RenderThread-24437 (24151) [007] d..2 24574.125910: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
72499  Binder:23896_5-25989 (23896) [007] .... 24574.125912: binder_transaction_received: transaction=1670258
72500<...>-12589 ( 23968) [000] d.h2 24574.125929: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
72501<...>-12589 ( 23968) [000] d.h3 24574.125948: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
72502          <idle>-0     (-----) [001] .n.1 24574.125952: cpu_idle: state=4294967295 cpu_id=1
72503          <idle>-0     (-----) [001] d..2 24574.125957: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
72504<...>-12589 ( 23968) [000] .... 24574.125969: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=25147 comm=qsb-experiments
72505  Binder:23896_5-25989 (23896) [007] .... 24574.125977: binder_transaction: transaction=1670259 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
72506  Binder:23896_5-25989 (23896) [007] d..2 24574.125979: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
72507<...>-12589 ( 23968) [000] .... 24574.125979: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25147 comm=qsb-experiments
72508  Binder:23896_5-25989 (23896) [007] d..3 24574.125982: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
72509<...>-12589 ( 23968) [000] .... 24574.125985: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25147 comm=qsb-experiments
72510  Binder:23896_5-25989 (23896) [007] d..2 24574.125989: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
72511    RenderThread-24437 (24151) [007] .... 24574.125991: binder_transaction_received: transaction=1670259
72512 kgsl_worker_thr-246   (  246) [001] d..2 24574.126011: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72513          <idle>-0     (-----) [001] d..1 24574.126016: cpu_idle: state=0 cpu_id=1
72514    RenderThread-24437 (24151) [007] d..2 24574.126017: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
72515<...>-12589 ( 23968) [000] .... 24574.126020: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=25154 comm=magnifier pixel
72516          <idle>-0     (-----) [007] d..1 24574.126021: cpu_idle: state=0 cpu_id=7
72517  Binder:23968_1-23981 (23968) [003] d..2 24574.126028: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72518<...>-12589 ( 23968) [000] .... 24574.126029: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25154 comm=magnifier pixel
72519<...>-12589 ( 23968) [000] .... 24574.126035: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25154 comm=magnifier pixel
72520          <idle>-0     (-----) [003] d..1 24574.126037: cpu_idle: state=0 cpu_id=3
72521<...>-12589 ( 23968) [000] .... 24574.126069: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=25155 comm=search-thread
72522<...>-12589 ( 23968) [000] .... 24574.126078: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25155 comm=search-thread
72523<...>-12589 ( 23968) [000] .... 24574.126084: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25155 comm=search-thread
72524<...>-12589 ( 23968) [000] .... 24574.126117: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=25168 comm=smartspace-load
72525<...>-12589 ( 23968) [000] .... 24574.126126: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25168 comm=smartspace-load
72526<...>-12589 ( 23968) [000] .... 24574.126132: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25168 comm=smartspace-load
72527<...>-12589 ( 23968) [000] .... 24574.126164: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=25194 comm=RenderThread
72528<...>-12589 ( 23968) [000] .... 24574.126173: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25194 comm=RenderThread
72529<...>-12589 ( 23968) [000] .... 24574.126179: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25194 comm=RenderThread
72530<...>-12589 ( 23968) [000] .... 24574.126212: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=25198 comm=remote-ui
72531<...>-12589 ( 23968) [000] .... 24574.126221: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25198 comm=remote-ui
72532<...>-12589 ( 23968) [000] .... 24574.126227: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25198 comm=remote-ui
72533<...>-12589 ( 23968) [000] .... 24574.126259: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=25201 comm=reflection-thre
72534<...>-12589 ( 23968) [000] .... 24574.126268: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25201 comm=reflection-thre
72535<...>-12589 ( 23968) [000] .... 24574.126274: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25201 comm=reflection-thre
72536<...>-12589 ( 23968) [000] .... 24574.126307: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=25202 comm=reflection-plac
72537<...>-12589 ( 23968) [000] .... 24574.126316: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25202 comm=reflection-plac
72538<...>-12589 ( 23968) [000] .... 24574.126322: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25202 comm=reflection-plac
72539<...>-12589 ( 23968) [000] .... 24574.126355: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=25203 comm=queued-work-loo
72540<...>-12589 ( 23968) [000] .... 24574.126364: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25203 comm=queued-work-loo
72541<...>-12589 ( 23968) [000] .... 24574.126370: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25203 comm=queued-work-loo
72542<...>-12589 ( 23968) [000] .... 24574.126404: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=25216 comm=GAC_Executor[1]
72543<...>-12589 ( 23968) [000] .... 24574.126414: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25216 comm=GAC_Executor[1]
72544<...>-12589 ( 23968) [000] .... 24574.126420: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25216 comm=GAC_Executor[1]
72545<...>-12589 ( 23968) [000] .... 24574.126454: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=25243 comm=GrallocUploadTh
72546<...>-12589 ( 23968) [000] .... 24574.126463: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25243 comm=GrallocUploadTh
72547<...>-12589 ( 23968) [000] .... 24574.126469: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25243 comm=GrallocUploadTh
72548          <idle>-0     (-----) [001] d.h2 24574.126494: sched_waking: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
72549          <idle>-0     (-----) [001] dnh3 24574.126500: sched_wakeup: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
72550<...>-12589 ( 23968) [000] .... 24574.126500: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=25554 comm=Binder:24827_4
72551<...>-12589 ( 23968) [000] .... 24574.126509: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25554 comm=Binder:24827_4
72552          <idle>-0     (-----) [001] .n.1 24574.126511: cpu_idle: state=4294967295 cpu_id=1
72553<...>-12589 ( 23968) [000] .... 24574.126515: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=25554 comm=Binder:24827_4
72554          <idle>-0     (-----) [001] d..2 24574.126516: 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
72555<...>-12589 ( 23968) [000] .... 24574.126546: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=27853 comm=hwuiTask1
72556<...>-12589 ( 23968) [000] .... 24574.126555: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27853 comm=hwuiTask1
72557<...>-12589 ( 23968) [000] .... 24574.126561: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27853 comm=hwuiTask1
72558<...>-12589 ( 23968) [000] .... 24574.126592: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=5558 comm=Binder:24827_5
72559<...>-12589 ( 23968) [000] .... 24574.126601: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=5558 comm=Binder:24827_5
72560<...>-12589 ( 23968) [000] .... 24574.126607: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=5558 comm=Binder:24827_5
72561<...>-12589 ( 23968) [000] .... 24574.126639: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=9968 comm=pool-3-thread-2
72562<...>-12589 ( 23968) [000] .... 24574.126648: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=9968 comm=pool-3-thread-2
72563<...>-12589 ( 23968) [000] .... 24574.126654: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=9968 comm=pool-3-thread-2
72564<...>-24617 ( 24617) [001] d..2 24574.126663: 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
72565          <idle>-0     (-----) [001] d..1 24574.126669: cpu_idle: state=0 cpu_id=1
72566          <idle>-0     (-----) [003] d.s3 24574.126691: sched_waking: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
72567<...>-12589 ( 23968) [000] .... 24574.126691: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=12577 comm=Binder:24827_6
72568          <idle>-0     (-----) [003] d.s4 24574.126699: sched_wakeup: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
72569<...>-12589 ( 23968) [000] .... 24574.126701: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=12577 comm=Binder:24827_6
72570          <idle>-0     (-----) [001] .n.1 24574.126703: cpu_idle: state=4294967295 cpu_id=1
72571          <idle>-0     (-----) [003] ...1 24574.126705: cpu_idle: state=4294967295 cpu_id=3
72572<...>-12589 ( 23968) [000] .... 24574.126707: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=12577 comm=Binder:24827_6
72573          <idle>-0     (-----) [003] d..1 24574.126708: cpu_idle: state=0 cpu_id=3
72574          <idle>-0     (-----) [001] d..2 24574.126709: 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
72575<...>-24617 ( 24617) [001] d..2 24574.126730: 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
72576          <idle>-0     (-----) [001] d..1 24574.126735: cpu_idle: state=0 cpu_id=1
72577<...>-12589 ( 23968) [000] .... 24574.126793: binder_transaction: transaction=1670260 dest_node=1303079 dest_proc=24827 dest_thread=0 reply=0 flags=0x11 code=0x27
72578<...>-12589 ( 23968) [000] d..4 24574.126798: sched_waking: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=007
72579<...>-12589 ( 23968) [000] d..5 24574.126818: sched_wakeup: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=001
72580          <idle>-0     (-----) [001] .n.1 24574.126822: cpu_idle: state=4294967295 cpu_id=1
72581<...>-12589 ( 23968) [000] d.h5 24574.126846: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
72582          <idle>-0     (-----) [001] d..2 24574.126847: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24827_5 next_pid=5558 next_prio=120
72583<...>-12589 ( 23968) [000] d.h5 24574.126854: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
72584          <idle>-0     (-----) [004] dnh2 24574.126858: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
72585          <idle>-0     (-----) [004] .n.1 24574.126860: cpu_idle: state=4294967295 cpu_id=4
72586          <idle>-0     (-----) [004] d..2 24574.126863: 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
72587<...>-12589 ( 23968) [000] d.h6 24574.126866: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
72588         sugov:4-560   (  560) [004] d..2 24574.126868: 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
72589          <idle>-0     (-----) [004] d..1 24574.126870: cpu_idle: state=0 cpu_id=4
72590          <idle>-0     (-----) [003] .n.1 24574.126870: cpu_idle: state=4294967295 cpu_id=3
72591<...>-5558 ( 24827) [001] .... 24574.126871: binder_transaction_received: transaction=1670260
72592          <idle>-0     (-----) [003] d..2 24574.126876: 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
72593         sugov:0-559   (  559) [003] d..2 24574.126889: 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
72594          <idle>-0     (-----) [003] d..1 24574.126893: cpu_idle: state=0 cpu_id=3
72595<...>-12589 ( 23968) [000] d..3 24574.126899: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=006
72596<...>-12589 ( 23968) [000] d..4 24574.126918: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=003
72597          <idle>-0     (-----) [003] .n.1 24574.126923: cpu_idle: state=4294967295 cpu_id=3
72598          <idle>-0     (-----) [003] d..2 24574.126942: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
72599<...>-23994 ( 23968) [003] d..2 24574.126978: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72600<...>-5558 ( 24827) [001] d..2 24574.126982: sched_switch: prev_comm=Binder:24827_5 prev_pid=5558 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72601          <idle>-0     (-----) [003] d..1 24574.126983: cpu_idle: state=0 cpu_id=3
72602          <idle>-0     (-----) [001] d..1 24574.126989: cpu_idle: state=0 cpu_id=1
72603<...>-12589 ( 23968) [000] .... 24574.127077: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=13131 comm=id.nn.benchmark
72604<...>-12589 ( 23968) [000] .... 24574.127096: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13131 comm=id.nn.benchmark
72605<...>-12589 ( 23968) [000] .... 24574.127104: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13131 comm=id.nn.benchmark
72606<...>-12589 ( 23968) [000] .... 24574.127141: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=13136 comm=Jit thread pool
72607<...>-12589 ( 23968) [000] .... 24574.127150: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13136 comm=Jit thread pool
72608<...>-12589 ( 23968) [000] .... 24574.127156: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13136 comm=Jit thread pool
72609<...>-12589 ( 23968) [000] .... 24574.127189: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=13137 comm=Signal Catcher
72610<...>-12589 ( 23968) [000] .... 24574.127198: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13137 comm=Signal Catcher
72611<...>-12589 ( 23968) [000] .... 24574.127204: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13137 comm=Signal Catcher
72612<...>-12589 ( 23968) [000] .... 24574.127237: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=13138 comm=ADB-JDWP Connec
72613<...>-12589 ( 23968) [000] .... 24574.127246: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13138 comm=ADB-JDWP Connec
72614<...>-12589 ( 23968) [000] .... 24574.127252: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13138 comm=ADB-JDWP Connec
72615<...>-12589 ( 23968) [000] .... 24574.127285: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=13139 comm=ReferenceQueueD
72616<...>-12589 ( 23968) [000] .... 24574.127294: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13139 comm=ReferenceQueueD
72617<...>-12589 ( 23968) [000] .... 24574.127300: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13139 comm=ReferenceQueueD
72618<...>-12589 ( 23968) [000] d.h1 24574.127355: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
72619<...>-12589 ( 23968) [000] dnh2 24574.127363: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
72620<...>-12589 ( 23968) [000] d..2 24574.127374: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=R+ ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
72621 irq/79-1436400.-24613 (24613) [000] d..2 24574.127483: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
72622          <idle>-0     (-----) [003] d.s3 24574.127505: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
72623          <idle>-0     (-----) [003] d.s4 24574.127513: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
72624<...>-23903 ( 23896) [000] d..2 24574.127520: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
72625          <idle>-0     (-----) [003] ...1 24574.127526: cpu_idle: state=4294967295 cpu_id=3
72626          <idle>-0     (-----) [003] d..1 24574.127528: cpu_idle: state=0 cpu_id=3
72627 irq/79-1436400.-24613 (24613) [000] d..2 24574.127539: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
72628<...>-23903 ( 23896) [000] d.s1 24574.127565: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
72629<...>-23903 ( 23896) [000] d.s2 24574.127576: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
72630<...>-23903 ( 23896) [000] d..2 24574.127589: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
72631     rcu_preempt-7     (    7) [000] d..2 24574.127599: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=007
72632     rcu_preempt-7     (    7) [000] d..3 24574.127636: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
72633          <idle>-0     (-----) [001] .n.1 24574.127641: cpu_idle: state=4294967295 cpu_id=1
72634     rcu_preempt-7     (    7) [000] d.h3 24574.127664: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
72635          <idle>-0     (-----) [001] d..2 24574.127668: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
72636     rcu_preempt-7     (    7) [000] d.h3 24574.127672: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
72637         rcuop/2-29    (   29) [001] d..2 24574.127673: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
72638          <idle>-0     (-----) [004] dnh2 24574.127676: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
72639          <idle>-0     (-----) [004] .n.1 24574.127678: cpu_idle: state=4294967295 cpu_id=4
72640     rcu_preempt-7     (    7) [000] d.h4 24574.127680: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
72641          <idle>-0     (-----) [004] d..2 24574.127680: 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
72642          <idle>-0     (-----) [003] .n.1 24574.127684: cpu_idle: state=4294967295 cpu_id=3
72643         sugov:4-560   (  560) [004] d..2 24574.127686: 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
72644          <idle>-0     (-----) [004] d..1 24574.127688: cpu_idle: state=0 cpu_id=4
72645          <idle>-0     (-----) [003] d..2 24574.127690: 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
72646     rcu_preempt-7     (    7) [000] d..2 24574.127692: 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
72647  kworker/u16:10-23868 (23868) [000] d..2 24574.127697: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=007
72648         rcuop/2-29    (   29) [001] d..3 24574.127698: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
72649         sugov:0-559   (  559) [003] d..2 24574.127704: 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
72650          <idle>-0     (-----) [003] d..1 24574.127708: cpu_idle: state=0 cpu_id=3
72651         rcuop/2-29    (   29) [001] d..2 24574.127711: 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
72652  kworker/u16:10-23868 (23868) [000] d..3 24574.127726: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
72653         rcuop/3-37    (   37) [001] d..2 24574.127728: 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
72654          <idle>-0     (-----) [003] .n.1 24574.127731: cpu_idle: state=4294967295 cpu_id=3
72655          <idle>-0     (-----) [001] d..1 24574.127732: cpu_idle: state=0 cpu_id=1
72656          <idle>-0     (-----) [003] d..2 24574.127750: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
72657  kworker/u16:10-23868 (23868) [000] d..2 24574.127783: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
72658<...>-12589 ( 23968) [000] .... 24574.127793: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=13140 comm=FinalizerDaemon
72659<...>-12589 ( 23968) [000] .... 24574.127810: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13140 comm=FinalizerDaemon
72660<...>-12589 ( 23968) [000] .... 24574.127817: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13140 comm=FinalizerDaemon
72661  kworker/u16:15-18488 (18488) [003] d..2 24574.127843: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72662          <idle>-0     (-----) [003] d..1 24574.127847: cpu_idle: state=0 cpu_id=3
72663<...>-12589 ( 23968) [000] .... 24574.127857: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=13141 comm=FinalizerWatchd
72664<...>-12589 ( 23968) [000] .... 24574.127866: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13141 comm=FinalizerWatchd
72665<...>-12589 ( 23968) [000] .... 24574.127872: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13141 comm=FinalizerWatchd
72666<...>-12589 ( 23968) [000] .... 24574.127906: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=13142 comm=HeapTaskDaemon
72667<...>-12589 ( 23968) [000] .... 24574.127915: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13142 comm=HeapTaskDaemon
72668<...>-12589 ( 23968) [000] .... 24574.127921: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13142 comm=HeapTaskDaemon
72669<...>-12589 ( 23968) [000] .... 24574.127957: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=13143 comm=Binder:13131_1
72670<...>-12589 ( 23968) [000] .... 24574.127966: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13143 comm=Binder:13131_1
72671<...>-12589 ( 23968) [000] .... 24574.127972: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13143 comm=Binder:13131_1
72672<...>-12589 ( 23968) [000] .... 24574.128005: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=13144 comm=Binder:13131_2
72673<...>-12589 ( 23968) [000] .... 24574.128014: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13144 comm=Binder:13131_2
72674<...>-12589 ( 23968) [000] .... 24574.128020: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13144 comm=Binder:13131_2
72675<...>-12589 ( 23968) [000] .... 24574.128052: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=13145 comm=Binder:13131_3
72676<...>-12589 ( 23968) [000] .... 24574.128061: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13145 comm=Binder:13131_3
72677<...>-12589 ( 23968) [000] .... 24574.128067: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13145 comm=Binder:13131_3
72678<...>-12589 ( 23968) [000] .... 24574.128099: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=13146 comm=Profile Saver
72679<...>-12589 ( 23968) [000] .... 24574.128108: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13146 comm=Profile Saver
72680<...>-12589 ( 23968) [000] .... 24574.128114: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13146 comm=Profile Saver
72681<...>-12589 ( 23968) [000] .... 24574.128149: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=13147 comm=roidJUnitRunner
72682<...>-12589 ( 23968) [000] .... 24574.128159: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13147 comm=roidJUnitRunner
72683<...>-12589 ( 23968) [000] .... 24574.128165: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13147 comm=roidJUnitRunner
72684<...>-12589 ( 23968) [000] .... 24574.128197: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=13148 comm=Instrumentation
72685<...>-12589 ( 23968) [000] .... 24574.128206: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13148 comm=Instrumentation
72686<...>-12589 ( 23968) [000] .... 24574.128211: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13148 comm=Instrumentation
72687<...>-12589 ( 23968) [000] .... 24574.128243: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=13151 comm=RenderThread
72688<...>-12589 ( 23968) [000] .... 24574.128252: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13151 comm=RenderThread
72689<...>-12589 ( 23968) [000] .... 24574.128258: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13151 comm=RenderThread
72690<...>-12589 ( 23968) [000] .... 24574.128290: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=13154 comm=id.nn.benchmark
72691<...>-12589 ( 23968) [000] .... 24574.128299: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13154 comm=id.nn.benchmark
72692<...>-12589 ( 23968) [000] .... 24574.128304: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13154 comm=id.nn.benchmark
72693<...>-12589 ( 23968) [000] .... 24574.128355: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=13155 comm=id.nn.benchmark
72694<...>-12589 ( 23968) [000] .... 24574.128364: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13155 comm=id.nn.benchmark
72695<...>-12589 ( 23968) [000] .... 24574.128370: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13155 comm=id.nn.benchmark
72696<...>-12589 ( 23968) [000] .... 24574.128410: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=13156 comm=id.nn.benchmark
72697<...>-12589 ( 23968) [000] .... 24574.128419: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13156 comm=id.nn.benchmark
72698<...>-12589 ( 23968) [000] .... 24574.128425: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13156 comm=id.nn.benchmark
72699          <idle>-0     (-----) [003] d.h2 24574.128435: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
72700          <idle>-0     (-----) [003] dnh3 24574.128442: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
72701          <idle>-0     (-----) [003] .n.1 24574.128446: cpu_idle: state=4294967295 cpu_id=3
72702          <idle>-0     (-----) [003] d..2 24574.128451: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
72703<...>-12589 ( 23968) [000] .... 24574.128465: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=13157 comm=id.nn.benchmark
72704        DispSync-23904 (23896) [003] d..1 24574.128469: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
72705<...>-12589 ( 23968) [000] .... 24574.128474: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13157 comm=id.nn.benchmark
72706<...>-12589 ( 23968) [000] .... 24574.128480: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13157 comm=id.nn.benchmark
72707        DispSync-23904 (23896) [003] d..2 24574.128485: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
72708          <idle>-0     (-----) [001] .n.1 24574.128489: cpu_idle: state=4294967295 cpu_id=1
72709          <idle>-0     (-----) [001] d..2 24574.128493: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
72710        DispSync-23904 (23896) [003] d..2 24574.128503: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72711          <idle>-0     (-----) [003] d..1 24574.128510: cpu_idle: state=0 cpu_id=3
72712<...>-12589 ( 23968) [000] .... 24574.128518: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=13158 comm=id.nn.benchmark
72713<...>-12589 ( 23968) [000] .... 24574.128527: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13158 comm=id.nn.benchmark
72714<...>-12589 ( 23968) [000] .... 24574.128532: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13158 comm=id.nn.benchmark
72715   sfEventThread-23906 (23896) [001] d..3 24574.128537: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
72716   sfEventThread-23906 (23896) [001] d..4 24574.128556: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
72717          <idle>-0     (-----) [003] .n.1 24574.128561: cpu_idle: state=4294967295 cpu_id=3
72718          <idle>-0     (-----) [003] d..2 24574.128566: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
72719<...>-12589 ( 23968) [000] .... 24574.128570: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=13159 comm=id.nn.benchmark
72720   sfEventThread-23906 (23896) [001] d..2 24574.128575: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72721<...>-12589 ( 23968) [000] .... 24574.128579: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13159 comm=id.nn.benchmark
72722          <idle>-0     (-----) [001] d..1 24574.128581: cpu_idle: state=0 cpu_id=1
72723<...>-12589 ( 23968) [000] .... 24574.128585: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13159 comm=id.nn.benchmark
72724<...>-12589 ( 23968) [000] .... 24574.128624: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=13160 comm=id.nn.benchmark
72725<...>-12589 ( 23968) [000] .... 24574.128633: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13160 comm=id.nn.benchmark
72726<...>-12589 ( 23968) [000] .... 24574.128639: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13160 comm=id.nn.benchmark
72727<...>-12589 ( 23968) [000] d..2 24574.128808: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=003
72728<...>-12589 ( 23968) [000] d..3 24574.128823: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=000
72729  surfaceflinger-23896 (23896) [003] d..1 24574.128832: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
72730  surfaceflinger-23896 (23896) [003] d..2 24574.128843: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
72731          <idle>-0     (-----) [001] .n.1 24574.128848: cpu_idle: state=4294967295 cpu_id=1
72732          <idle>-0     (-----) [001] d..2 24574.128852: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
72733   sfEventThread-23906 (23896) [001] d..2 24574.128873: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72734          <idle>-0     (-----) [001] d..1 24574.128876: cpu_idle: state=0 cpu_id=1
72735  surfaceflinger-23896 (23896) [003] ...1 24574.128981: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
72736  surfaceflinger-23896 (23896) [003] ...1 24574.128987: tracing_mark_write: E|23896
72737  surfaceflinger-23896 (23896) [003] .... 24574.129032: binder_transaction: transaction=1670261 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
72738  surfaceflinger-23896 (23896) [003] ...2 24574.129054: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
72739  surfaceflinger-23896 (23896) [003] d..4 24574.129062: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
72740  surfaceflinger-23896 (23896) [003] d..5 24574.129080: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
72741          <idle>-0     (-----) [001] .n.1 24574.129084: cpu_idle: state=4294967295 cpu_id=1
72742          <idle>-0     (-----) [001] d..2 24574.129088: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
72743  HwBinder:598_3-633   (  598) [001] .... 24574.129096: binder_transaction_received: transaction=1670261
72744  surfaceflinger-23896 (23896) [003] d..2 24574.129096: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72745          <idle>-0     (-----) [003] d..1 24574.129105: cpu_idle: state=0 cpu_id=3
72746  HwBinder:598_3-633   (  598) [001] ...1 24574.129140: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
72747  HwBinder:598_3-633   (  598) [001] ...1 24574.129228: tracing_mark_write: B|598|HWCSession::PresentDisplay::
72748  HwBinder:598_3-633   (  598) [001] ...1 24574.129353: tracing_mark_write: B|598|HWDeviceDRM::Commit::
72749  HwBinder:598_3-633   (  598) [001] ...1 24574.129361: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
72750<...>-12589 ( 23968) [000] d..2 24574.129465: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
72751<...>-12589 ( 23968) [000] d..3 24574.129479: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
72752<...>-12589 ( 23968) [000] .... 24574.129593: binder_transaction: transaction=1670262 dest_node=1303079 dest_proc=24827 dest_thread=0 reply=0 flags=0x11 code=0x33
72753<...>-12589 ( 23968) [000] d..4 24574.129610: sched_waking: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=001
72754<...>-12589 ( 23968) [000] d..5 24574.129627: sched_wakeup: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=003
72755          <idle>-0     (-----) [003] .n.1 24574.129632: cpu_idle: state=4294967295 cpu_id=3
72756          <idle>-0     (-----) [003] d..2 24574.129639: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24827_5 next_pid=5558 next_prio=120
72757<...>-5558 ( 24827) [003] .... 24574.129643: binder_transaction_received: transaction=1670262
72758<...>-12589 ( 23968) [000] d..1 24574.129647: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=005
72759          <idle>-0     (-----) [005] dnh2 24574.129662: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=005
72760          <idle>-0     (-----) [005] .n.1 24574.129664: cpu_idle: state=4294967295 cpu_id=5
72761          <idle>-0     (-----) [005] d..2 24574.129668: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
72762<...>-24041 ( 23968) [005] d..2 24574.129680: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
72763          <idle>-0     (-----) [005] d..1 24574.129682: cpu_idle: state=0 cpu_id=5
72764<...>-12589 ( 23968) [000] d..1 24574.129697: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=005
72765          <idle>-0     (-----) [005] dnh2 24574.129712: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=005
72766          <idle>-0     (-----) [005] .n.1 24574.129713: cpu_idle: state=4294967295 cpu_id=5
72767          <idle>-0     (-----) [005] d..2 24574.129716: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
72768<...>-24003 ( 23968) [005] d..1 24574.129744: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=003
72769<...>-24003 ( 23968) [005] d..2 24574.129757: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
72770          <idle>-0     (-----) [006] .n.1 24574.129761: cpu_idle: state=4294967295 cpu_id=6
72771<...>-12589 ( 23968) [000] d..3 24574.129769: sched_waking: comm=android.bg pid=23992 prio=130 target_cpu=001
72772  HwBinder:598_3-633   (  598) [001] d..2 24574.129770: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
72773<...>-24003 ( 23968) [005] d.h3 24574.129777: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
72774          <idle>-0     (-----) [006] d..2 24574.129778: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
72775<...>-24003 ( 23968) [005] d.h4 24574.129783: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
72776<...>-24003 ( 23968) [005] d.h3 24574.129784: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
72777<...>-12589 ( 23968) [000] d..4 24574.129786: sched_wakeup: comm=android.bg pid=23992 prio=130 target_cpu=001
72778          <idle>-0     (-----) [004] .n.1 24574.129788: cpu_idle: state=4294967295 cpu_id=4
72779  Binder:23968_1-23981 (23968) [006] d..2 24574.129788: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
72780  HwBinder:598_3-633   (  598) [001] d..3 24574.129789: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
72781          <idle>-0     (-----) [006] d..1 24574.129790: cpu_idle: state=0 cpu_id=6
72782          <idle>-0     (-----) [004] d..2 24574.129791: 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
72783         sugov:4-560   (  560) [004] d..2 24574.129795: 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
72784          <idle>-0     (-----) [004] d..1 24574.129797: cpu_idle: state=0 cpu_id=4
72785<...>-5558 ( 24827) [003] d..2 24574.129798: sched_switch: prev_comm=Binder:24827_5 prev_pid=5558 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
72786<...>-24003 ( 23968) [005] d..1 24574.129808: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
72787<...>-12589 ( 23968) [000] dnh1 24574.129814: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
72788<...>-24003 ( 23968) [005] d..2 24574.129814: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
72789          <idle>-0     (-----) [006] .n.1 24574.129818: cpu_idle: state=4294967295 cpu_id=6
72790          <idle>-0     (-----) [006] d..2 24574.129821: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
72791<...>-12589 ( 23968) [000] d..2 24574.129822: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
72792         sugov:0-559   (  559) [000] d..2 24574.129830: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=statsd.writer next_pid=1044 next_prio=120
72793<...>-24003 ( 23968) [005] .... 24574.129851: binder_transaction: transaction=1670263 dest_node=1669080 dest_proc=13131 dest_thread=0 reply=0 flags=0x11 code=0x6
72794<...>-24003 ( 23968) [005] d..4 24574.129855: sched_waking: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=002
72795  HwBinder:598_3-633   (  598) [001] ...1 24574.129863: tracing_mark_write: E|598
72796  HwBinder:598_3-633   (  598) [001] ...1 24574.129866: tracing_mark_write: E|598
72797<...>-24003 ( 23968) [005] d..5 24574.129869: sched_wakeup: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=007
72798          <idle>-0     (-----) [007] .n.1 24574.129874: cpu_idle: state=4294967295 cpu_id=7
72799          <idle>-0     (-----) [007] d..2 24574.129887: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_3 next_pid=13145 next_prio=120
72800           <...>-13145 (-----) [007] .... 24574.129891: binder_transaction_received: transaction=1670263
72801<...>-24003 ( 23968) [005] d..2 24574.129907: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
72802  HwBinder:598_3-633   (  598) [001] ...1 24574.129909: tracing_mark_write: E|598
72803          <idle>-0     (-----) [005] d..1 24574.129912: cpu_idle: state=0 cpu_id=5
72804  HwBinder:598_3-633   (  598) [001] ...1 24574.129946: tracing_mark_write: E|598
72805  HwBinder:598_3-633   (  598) [001] .... 24574.129958: binder_transaction: transaction=1670264 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
72806  HwBinder:598_3-633   (  598) [001] d..2 24574.129970: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
72807  HwBinder:598_3-633   (  598) [001] d..3 24574.129986: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
72808  HwBinder:598_3-633   (  598) [001] .... 24574.129989: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
72809<...>-1044 ( 887) [000] d..2 24574.129997: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
72810  surfaceflinger-23896 (23896) [000] .... 24574.130003: binder_transaction_received: transaction=1670264
72811  HwBinder:598_3-633   (  598) [001] d..2 24574.130037: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=android.bg next_pid=23992 next_prio=130
72812  Binder:23968_1-23981 (23968) [006] d..3 24574.130045: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=005
72813  Binder:23968_1-23981 (23968) [006] d..4 24574.130053: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=005
72814          <idle>-0     (-----) [005] .n.1 24574.130058: cpu_idle: state=4294967295 cpu_id=5
72815          <idle>-0     (-----) [005] d..2 24574.130062: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
72816<...>-24003 ( 23968) [005] d..2 24574.130076: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
72817          <idle>-0     (-----) [005] d..1 24574.130078: cpu_idle: state=0 cpu_id=5
72818           <...>-13145 (-----) [007] d..2 24574.130088: sched_switch: prev_comm=Binder:13131_3 prev_pid=13145 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
72819          <idle>-0     (-----) [007] d..1 24574.130093: cpu_idle: state=0 cpu_id=7
72820<...>-23992 ( 23968) [001] d..2 24574.130147: sched_switch: prev_comm=android.bg prev_pid=23992 prev_prio=130 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
72821  Binder:23968_1-23981 (23968) [006] .... 24574.130163: binder_transaction: transaction=1670265 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
72822  Binder:23968_1-23981 (23968) [006] d..4 24574.130167: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=003
72823  Binder:23968_1-23981 (23968) [006] d..5 24574.130182: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
72824          <idle>-0     (-----) [007] .n.1 24574.130186: cpu_idle: state=4294967295 cpu_id=7
72825          <idle>-0     (-----) [007] d..2 24574.130200: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
72826<...>-24376 ( 24151) [007] .... 24574.130203: binder_transaction_received: transaction=1670265
72827     logd.writer-563   (  555) [001] d..2 24574.130236: 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
72828          <idle>-0     (-----) [001] d..1 24574.130243: cpu_idle: state=0 cpu_id=1
72829<...>-24376 ( 24151) [007] d..3 24574.130256: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
72830<...>-24376 ( 24151) [007] d.h3 24574.130290: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
72831          <idle>-0     (-----) [001] dnh2 24574.130292: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
72832<...>-24376 ( 24151) [007] d.h4 24574.130296: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
72833<...>-24376 ( 24151) [007] d.h3 24574.130297: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
72834  surfaceflinger-23896 (23896) [000] d..2 24574.130297: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=statsd.writer next_pid=1044 next_prio=120
72835          <idle>-0     (-----) [001] .n.1 24574.130297: cpu_idle: state=4294967295 cpu_id=1
72836          <idle>-0     (-----) [004] .n.1 24574.130299: cpu_idle: state=4294967295 cpu_id=4
72837          <idle>-0     (-----) [004] d..2 24574.130302: 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
72838          <idle>-0     (-----) [001] d..2 24574.130302: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
72839         sugov:4-560   (  560) [004] d..2 24574.130306: 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
72840          <idle>-0     (-----) [004] d..1 24574.130308: cpu_idle: state=0 cpu_id=4
72841<...>-24151 ( 24151) [001] dnh1 24574.130316: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
72842<...>-24151 ( 24151) [001] d..2 24574.130322: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
72843         sugov:0-559   (  559) [001] d..2 24574.130329: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
72844<...>-24376 ( 24151) [007] d..2 24574.130335: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
72845<...>-1044 ( 887) [000] d..2 24574.130336: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
72846          <idle>-0     (-----) [007] d..1 24574.130340: cpu_idle: state=0 cpu_id=7
72847<...>-12589 ( 23968) [000] d..2 24574.130382: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
72848  Binder:23968_1-23981 (23968) [006] .... 24574.130384: binder_transaction: transaction=1670266 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
72849  Binder:23968_1-23981 (23968) [006] ...2 24574.130388: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
72850  Binder:23968_1-23981 (23968) [006] d..4 24574.130390: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=000
72851          <idle>-0     (-----) [000] d..1 24574.130396: cpu_idle: state=0 cpu_id=0
72852<...>-24151 ( 24151) [001] d..2 24574.130398: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72853  Binder:23968_1-23981 (23968) [006] dn.5 24574.130401: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=006
72854          <idle>-0     (-----) [001] d..1 24574.130404: cpu_idle: state=0 cpu_id=1
72855  Binder:23968_1-23981 (23968) [006] d..2 24574.130420: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
72856<...>-23903 ( 23896) [006] .... 24574.130423: binder_transaction_received: transaction=1670266
72857 crtc_commit:111-253   (  253) [003] d..2 24574.130425: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=Binder:24827_5 next_pid=5558 next_prio=120
72858<...>-23903 ( 23896) [006] .... 24574.130445: binder_transaction: transaction=1670267 dest_node=0 dest_proc=23968 dest_thread=23981 reply=1 flags=0x0 code=0x0
72859<...>-23903 ( 23896) [006] .... 24574.130448: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
72860<...>-5558 ( 24827) [003] d..2 24574.130454: sched_switch: prev_comm=Binder:24827_5 prev_pid=5558 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72861<...>-23903 ( 23896) [006] d..2 24574.130459: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=110
72862  Binder:23968_1-23981 (23968) [006] .... 24574.130461: binder_transaction_received: transaction=1670267
72863          <idle>-0     (-----) [003] d..1 24574.130463: cpu_idle: state=0 cpu_id=3
72864          <idle>-0     (-----) [007] ...1 24574.130542: cpu_idle: state=4294967295 cpu_id=7
72865          <idle>-0     (-----) [007] d..1 24574.130543: cpu_idle: state=0 cpu_id=7
72866  Binder:23968_1-23981 (23968) [006] d..3 24574.130711: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
72867          <idle>-0     (-----) [000] dnh2 24574.130731: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
72868          <idle>-0     (-----) [000] .n.1 24574.130735: cpu_idle: state=4294967295 cpu_id=0
72869          <idle>-0     (-----) [000] d..2 24574.130741: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
72870<...>-24073 ( 23968) [000] d..2 24574.130774: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
72871          <idle>-0     (-----) [000] d..1 24574.130780: cpu_idle: state=0 cpu_id=0
72872  Binder:23968_1-23981 (23968) [006] d.s2 24574.130896: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
72873  Binder:23968_1-23981 (23968) [006] d.s2 24574.130915: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
72874  Binder:23968_1-23981 (23968) [006] d.s3 24574.130919: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
72875          <idle>-0     (-----) [000] dnh2 24574.130920: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
72876          <idle>-0     (-----) [000] .n.1 24574.130924: cpu_idle: state=4294967295 cpu_id=0
72877          <idle>-0     (-----) [001] ...1 24574.130925: cpu_idle: state=4294967295 cpu_id=1
72878          <idle>-0     (-----) [001] d..1 24574.130929: cpu_idle: state=0 cpu_id=1
72879          <idle>-0     (-----) [000] d..2 24574.130931: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
72880  kworker/u16:15-18488 (18488) [000] d..2 24574.130935: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
72881  kworker/u16:15-18488 (18488) [000] d..3 24574.130947: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
72882  Binder:23968_1-23981 (23968) [006] d..3 24574.131016: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
72883  Binder:23968_1-23981 (23968) [006] d..1 24574.131027: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=005
72884          <idle>-0     (-----) [001] dnh2 24574.131033: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
72885  Binder:23968_1-23981 (23968) [006] d..2 24574.131033: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=005
72886          <idle>-0     (-----) [001] .n.1 24574.131037: cpu_idle: state=4294967295 cpu_id=1
72887          <idle>-0     (-----) [005] .n.1 24574.131037: cpu_idle: state=4294967295 cpu_id=5
72888          <idle>-0     (-----) [005] d..2 24574.131041: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
72889          <idle>-0     (-----) [001] d..2 24574.131042: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
72890  Binder:23968_1-23981 (23968) [006] d..2 24574.131045: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=R+ ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
72891<...>-24041 ( 23968) [005] d..1 24574.131049: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=005
72892<...>-24041 ( 23968) [005] d.h3 24574.131082: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
72893     kworker/6:0-21469 (21469) [006] d..2 24574.131082: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
72894          <idle>-0     (-----) [003] dnh2 24574.131084: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=003
72895<...>-24073 ( 23968) [001] d..2 24574.131085: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72896          <idle>-0     (-----) [003] .n.1 24574.131088: cpu_idle: state=4294967295 cpu_id=3
72897<...>-24041 ( 23968) [005] d.h4 24574.131089: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
72898<...>-24041 ( 23968) [005] d.h3 24574.131090: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
72899          <idle>-0     (-----) [001] d..1 24574.131092: cpu_idle: state=0 cpu_id=1
72900          <idle>-0     (-----) [004] .n.1 24574.131093: cpu_idle: state=4294967295 cpu_id=4
72901          <idle>-0     (-----) [003] d..2 24574.131095: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
72902          <idle>-0     (-----) [004] d..2 24574.131097: 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
72903         sugov:4-560   (  560) [004] d..2 24574.131102: 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
72904          <idle>-0     (-----) [001] dnh2 24574.131103: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
72905          <idle>-0     (-----) [004] d..1 24574.131104: cpu_idle: state=0 cpu_id=4
72906          <idle>-0     (-----) [001] .n.1 24574.131107: cpu_idle: state=4294967295 cpu_id=1
72907  kworker/u16:15-18488 (18488) [000] d..2 24574.131111: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
72908          <idle>-0     (-----) [001] d..2 24574.131112: 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
72909         sugov:0-559   (  559) [001] d..2 24574.131124: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72910          <idle>-0     (-----) [001] d..1 24574.131129: cpu_idle: state=0 cpu_id=1
72911<...>-24003 ( 23968) [003] d.s3 24574.131146: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
72912  kworker/u16:10-23868 (23868) [000] d..2 24574.131153: 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
72913<...>-24003 ( 23968) [003] d.s4 24574.131158: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
72914          <idle>-0     (-----) [000] d..1 24574.131159: cpu_idle: state=0 cpu_id=0
72915<...>-24041 ( 23968) [005] d..2 24574.131159: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
72916          <idle>-0     (-----) [005] d..1 24574.131163: cpu_idle: state=0 cpu_id=5
72917<...>-24003 ( 23968) [003] d.s4 24574.131164: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
72918          <idle>-0     (-----) [000] .n.1 24574.131169: cpu_idle: state=4294967295 cpu_id=0
72919          <idle>-0     (-----) [000] d..2 24574.131174: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
72920<...>-24003 ( 23968) [003] d..1 24574.131195: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=000
72921<...>-24003 ( 23968) [003] d..2 24574.131209: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=001
72922          <idle>-0     (-----) [001] .n.1 24574.131214: cpu_idle: state=4294967295 cpu_id=1
72923  Binder:23968_1-23981 (23968) [006] .... 24574.131215: binder_transaction: transaction=1670268 dest_node=0 dest_proc=24827 dest_thread=24827 reply=1 flags=0x0 code=0x0
72924  Binder:23968_1-23981 (23968) [006] d..2 24574.131219: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=003
72925          <idle>-0     (-----) [001] d..2 24574.131220: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
72926  kworker/u16:15-18488 (18488) [000] .... 24574.131228: clk_set_rate: l3_cluster1_vote_clk 576000000
72927  Binder:23968_1-23981 (23968) [006] d..3 24574.131233: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=006
72928  kworker/u16:15-18488 (18488) [000] .... 24574.131234: clk_set_rate: l3_clk 1401600000
72929<...>-12589 ( 23968) [001] d..1 24574.131248: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=005
72930          <idle>-0     (-----) [005] dnh2 24574.131261: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=005
72931  Binder:23968_1-23981 (23968) [006] d..2 24574.131263: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
72932          <idle>-0     (-----) [005] .n.1 24574.131264: cpu_idle: state=4294967295 cpu_id=5
72933 s.nexuslauncher-24827 (24827) [006] .... 24574.131266: binder_transaction_received: transaction=1670268
72934          <idle>-0     (-----) [005] d..2 24574.131268: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
72935<...>-12589 ( 23968) [001] d..1 24574.131274: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=005
72936<...>-24041 ( 23968) [005] d..2 24574.131276: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
72937          <idle>-0     (-----) [005] d..1 24574.131278: cpu_idle: state=0 cpu_id=5
72938          <idle>-0     (-----) [005] dnh2 24574.131287: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=005
72939          <idle>-0     (-----) [005] .n.1 24574.131289: cpu_idle: state=4294967295 cpu_id=5
72940<...>-24003 ( 23968) [003] d..2 24574.131290: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72941          <idle>-0     (-----) [005] d..2 24574.131292: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
72942          <idle>-0     (-----) [003] d..1 24574.131301: cpu_idle: state=0 cpu_id=3
72943<...>-24041 ( 23968) [005] .... 24574.131321: binder_transaction: transaction=1670269 dest_node=1271137 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
72944<...>-24041 ( 23968) [005] d..4 24574.131323: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=006
72945<...>-12589 ( 23968) [001] d..2 24574.131338: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72946          <idle>-0     (-----) [001] d..1 24574.131346: cpu_idle: state=0 cpu_id=1
72947          <idle>-0     (-----) [003] dnh2 24574.131356: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
72948<...>-24041 ( 23968) [005] d..1 24574.131358: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=001
72949          <idle>-0     (-----) [003] .n.1 24574.131360: cpu_idle: state=4294967295 cpu_id=3
72950          <idle>-0     (-----) [003] d..2 24574.131366: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
72951<...>-23903 ( 23896) [003] .... 24574.131371: binder_transaction_received: transaction=1670269
72952          <idle>-0     (-----) [001] dnh2 24574.131372: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=001
72953          <idle>-0     (-----) [001] .n.1 24574.131376: cpu_idle: state=4294967295 cpu_id=1
72954          <idle>-0     (-----) [001] d..2 24574.131382: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
72955<...>-23903 ( 23896) [003] d..1 24574.131389: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
72956<...>-23903 ( 23896) [003] d..2 24574.131400: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
72957<...>-12589 ( 23968) [001] d..2 24574.131405: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=S ==> next_comm=sfEventThread next_pid=23906 next_prio=97
72958<...>-23903 ( 23896) [003] d..2 24574.131428: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72959          <idle>-0     (-----) [003] d..1 24574.131436: cpu_idle: state=0 cpu_id=3
72960   sfEventThread-23906 (23896) [001] d..2 24574.131440: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72961          <idle>-0     (-----) [001] d..1 24574.131448: cpu_idle: state=0 cpu_id=1
72962<...>-24041 ( 23968) [005] .... 24574.131495: binder_transaction: transaction=1670270 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
72963  kworker/u16:15-18488 (18488) [000] d..2 24574.131499: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
72964          <idle>-0     (-----) [000] d..1 24574.131504: cpu_idle: state=0 cpu_id=0
72965<...>-24041 ( 23968) [005] ...2 24574.131504: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
72966<...>-24041 ( 23968) [005] d..4 24574.131505: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=003
72967<...>-24041 ( 23968) [005] d..5 24574.131516: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
72968<...>-24041 ( 23968) [005] d..2 24574.131535: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
72969<...>-23903 ( 23896) [005] .... 24574.131538: binder_transaction_received: transaction=1670270
72970          <idle>-0     (-----) [003] d.s3 24574.131539: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
72971          <idle>-0     (-----) [003] d.s4 24574.131545: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
72972          <idle>-0     (-----) [003] d.s4 24574.131551: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
72973 s.nexuslauncher-24827 (24827) [006] d..3 24574.131555: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
72974          <idle>-0     (-----) [000] .n.1 24574.131555: cpu_idle: state=4294967295 cpu_id=0
72975          <idle>-0     (-----) [003] ...1 24574.131557: cpu_idle: state=4294967295 cpu_id=3
72976          <idle>-0     (-----) [003] d..1 24574.131559: cpu_idle: state=0 cpu_id=3
72977          <idle>-0     (-----) [000] d..2 24574.131561: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
72978          <idle>-0     (-----) [001] dnh2 24574.131571: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
72979<...>-23903 ( 23896) [005] .... 24574.131572: binder_transaction: transaction=1670271 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
72980<...>-23903 ( 23896) [005] d..2 24574.131574: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=005
72981 s.nexuslauncher-24827 (24827) [006] d..2 24574.131575: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
72982          <idle>-0     (-----) [001] .n.1 24574.131575: cpu_idle: state=4294967295 cpu_id=1
72983  kworker/u16:15-18488 (18488) [000] d..2 24574.131576: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
72984<...>-23903 ( 23896) [005] d..3 24574.131577: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=005
72985<...>-23903 ( 23896) [005] .... 24574.131578: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
72986          <idle>-0     (-----) [000] d..1 24574.131580: cpu_idle: state=0 cpu_id=0
72987          <idle>-0     (-----) [001] d..2 24574.131581: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
72988<...>-23903 ( 23896) [005] d..2 24574.131582: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=android.anim next_pid=24041 next_prio=110
72989          <idle>-0     (-----) [006] d..1 24574.131582: cpu_idle: state=0 cpu_id=6
72990<...>-24041 ( 23968) [005] .... 24574.131583: binder_transaction_received: transaction=1670271
72991    RenderThread-25194 (24827) [001] d..1 24574.131602: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=006
72992<...>-24041 ( 23968) [005] d..1 24574.131606: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=001
72993    RenderThread-25194 (24827) [001] d..2 24574.131624: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
72994          <idle>-0     (-----) [000] dnh2 24574.131630: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=000
72995          <idle>-0     (-----) [000] .n.1 24574.131657: cpu_idle: state=4294967295 cpu_id=0
72996    RenderThread-25194 (24827) [001] d.h3 24574.131657: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
72997<...>-24041 ( 23968) [005] d..2 24574.131658: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
72998          <idle>-0     (-----) [000] d..2 24574.131661: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
72999    RenderThread-25194 (24827) [001] d.h3 24574.131665: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
73000          <idle>-0     (-----) [004] dnh2 24574.131670: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
73001          <idle>-0     (-----) [004] .n.1 24574.131672: cpu_idle: state=4294967295 cpu_id=4
73002          <idle>-0     (-----) [004] d..2 24574.131674: 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
73003<...>-23903 ( 23896) [005] d..2 24574.131676: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
73004    RenderThread-25194 (24827) [001] d.h4 24574.131678: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
73005         sugov:4-560   (  560) [004] d..2 24574.131678: 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
73006          <idle>-0     (-----) [004] d..1 24574.131680: cpu_idle: state=0 cpu_id=4
73007          <idle>-0     (-----) [005] d..1 24574.131681: cpu_idle: state=0 cpu_id=5
73008          <idle>-0     (-----) [003] .n.1 24574.131682: cpu_idle: state=4294967295 cpu_id=3
73009          <idle>-0     (-----) [003] d..2 24574.131687: 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
73010    RenderThread-25194 (24827) [001] d..2 24574.131700: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
73011          <idle>-0     (-----) [001] d..1 24574.131708: cpu_idle: state=0 cpu_id=1
73012         sugov:0-559   (  559) [003] d..2 24574.131714: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
73013 s.nexuslauncher-24827 (24827) [003] .... 24574.131767: binder_transaction: transaction=1670272 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
73014 s.nexuslauncher-24827 (24827) [003] d..4 24574.131772: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
73015 s.nexuslauncher-24827 (24827) [003] d..5 24574.131791: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=001
73016          <idle>-0     (-----) [001] .n.1 24574.131797: cpu_idle: state=4294967295 cpu_id=1
73017          <idle>-0     (-----) [001] d..2 24574.131818: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
73018<...>-23903 ( 23896) [001] .... 24574.131822: binder_transaction_received: transaction=1670272
73019 s.nexuslauncher-24827 (24827) [003] d..3 24574.131832: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
73020<...>-23903 ( 23896) [001] d..1 24574.131840: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
73021<...>-23903 ( 23896) [001] dn.2 24574.131869: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
73022          <idle>-0     (-----) [005] dnh2 24574.131870: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
73023<...>-23903 ( 23896) [001] d..2 24574.131874: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
73024          <idle>-0     (-----) [005] .n.1 24574.131877: cpu_idle: state=4294967295 cpu_id=5
73025          <idle>-0     (-----) [005] d..2 24574.131880: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
73026  appEventThread-23905 (23896) [001] d..2 24574.131890: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
73027<...>-23903 ( 23896) [001] d..1 24574.131893: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
73028    RenderThread-25194 (24827) [005] d..2 24574.131897: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
73029<...>-23903 ( 23896) [001] dn.2 24574.131898: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
73030          <idle>-0     (-----) [005] d..1 24574.131899: cpu_idle: state=0 cpu_id=5
73031<...>-23903 ( 23896) [001] d..2 24574.131902: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
73032  appEventThread-23905 (23896) [001] d..2 24574.131931: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
73033<...>-23903 ( 23896) [001] d..2 24574.131952: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
73034 s.nexuslauncher-24827 (24827) [003] d..2 24574.131953: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
73035          <idle>-0     (-----) [001] d..1 24574.131960: cpu_idle: state=0 cpu_id=1
73036 s.nexuslauncher-24827 (24827) [003] d..3 24574.131966: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
73037 s.nexuslauncher-24827 (24827) [003] .... 24574.132043: binder_transaction: transaction=1670273 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x3f
73038 s.nexuslauncher-24827 (24827) [003] ...2 24574.132049: binder_set_priority: proc=23968 thread=23981 old=120 => new=110 desired=110
73039 s.nexuslauncher-24827 (24827) [003] d..4 24574.132051: sched_waking: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=006
73040 s.nexuslauncher-24827 (24827) [003] d..5 24574.132070: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=001
73041          <idle>-0     (-----) [001] .n.1 24574.132075: cpu_idle: state=4294967295 cpu_id=1
73042          <idle>-0     (-----) [001] d..2 24574.132094: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=110
73043  Binder:23968_1-23981 (23968) [001] .... 24574.132098: binder_transaction_received: transaction=1670273
73044 s.nexuslauncher-24827 (24827) [003] d..2 24574.132099: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
73045     logd.writer-563   (  555) [003] d..2 24574.132165: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
73046          <idle>-0     (-----) [003] d..1 24574.132174: cpu_idle: state=0 cpu_id=3
73047  Binder:23968_1-23981 (23968) [001] d..2 24574.132226: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
73048          <idle>-0     (-----) [001] d..1 24574.132236: cpu_idle: state=0 cpu_id=1
73049<...>-12589 ( 23968) [000] d..3 24574.132320: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
73050<...>-12589 ( 23968) [000] d..4 24574.132332: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
73051          <idle>-0     (-----) [001] .n.1 24574.132337: cpu_idle: state=4294967295 cpu_id=1
73052          <idle>-0     (-----) [001] d..2 24574.132344: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
73053<...>-24073 ( 23968) [001] d..2 24574.132367: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
73054          <idle>-0     (-----) [001] d..1 24574.132374: cpu_idle: state=0 cpu_id=1
73055<...>-12589 ( 23968) [000] .... 24574.132644: binder_transaction: transaction=1670274 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
73056<...>-12589 ( 23968) [000] d..4 24574.132650: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
73057<...>-12589 ( 23968) [000] d..5 24574.132670: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=001
73058          <idle>-0     (-----) [001] .n.1 24574.132675: cpu_idle: state=4294967295 cpu_id=1
73059<...>-12589 ( 23968) [000] d.h5 24574.132699: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
73060          <idle>-0     (-----) [001] d..2 24574.132700: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
73061<...>-12589 ( 23968) [000] d.h5 24574.132707: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
73062          <idle>-0     (-----) [004] dnh2 24574.132711: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
73063          <idle>-0     (-----) [004] .n.1 24574.132713: cpu_idle: state=4294967295 cpu_id=4
73064          <idle>-0     (-----) [004] d..2 24574.132715: 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
73065<...>-12589 ( 23968) [000] d.h6 24574.132715: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
73066         sugov:4-560   (  560) [004] d..2 24574.132719: 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
73067<...>-24376 ( 24151) [001] .... 24574.132720: binder_transaction_received: transaction=1670274
73068          <idle>-0     (-----) [003] .n.1 24574.132720: cpu_idle: state=4294967295 cpu_id=3
73069          <idle>-0     (-----) [004] d..1 24574.132721: cpu_idle: state=0 cpu_id=4
73070          <idle>-0     (-----) [003] d..2 24574.132726: 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
73071         sugov:0-559   (  559) [003] d..2 24574.132739: 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
73072          <idle>-0     (-----) [003] d..1 24574.132744: cpu_idle: state=0 cpu_id=3
73073<...>-24376 ( 24151) [001] d..3 24574.132780: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
73074<...>-24376 ( 24151) [001] d..4 24574.132798: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
73075          <idle>-0     (-----) [003] .n.1 24574.132803: cpu_idle: state=4294967295 cpu_id=3
73076          <idle>-0     (-----) [003] d..2 24574.132808: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
73077<...>-24376 ( 24151) [001] d..2 24574.132835: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
73078          <idle>-0     (-----) [001] d..1 24574.132843: cpu_idle: state=0 cpu_id=1
73079<...>-24151 ( 24151) [003] d..2 24574.132874: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
73080          <idle>-0     (-----) [003] d..1 24574.132882: cpu_idle: state=0 cpu_id=3
73081<...>-12589 ( 23968) [000] .... 24574.132959: binder_transaction: transaction=1670275 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
73082<...>-12589 ( 23968) [000] ...2 24574.132964: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
73083<...>-12589 ( 23968) [000] d..4 24574.132966: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=001
73084<...>-12589 ( 23968) [000] dn.5 24574.132978: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=000
73085<...>-12589 ( 23968) [000] d..2 24574.132984: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
73086<...>-23903 ( 23896) [000] .... 24574.132988: binder_transaction_received: transaction=1670275
73087<...>-23903 ( 23896) [000] .... 24574.133009: binder_transaction: transaction=1670276 dest_node=0 dest_proc=23968 dest_thread=12589 reply=1 flags=0x0 code=0x0
73088<...>-23903 ( 23896) [000] .... 24574.133012: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
73089<...>-23903 ( 23896) [000] d..2 24574.133035: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
73090<...>-12589 ( 23968) [000] .... 24574.133040: binder_transaction_received: transaction=1670276
73091<...>-12589 ( 23968) [000] d..3 24574.133523: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
73092<...>-12589 ( 23968) [000] d..4 24574.133535: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
73093          <idle>-0     (-----) [001] .n.1 24574.133541: cpu_idle: state=4294967295 cpu_id=1
73094          <idle>-0     (-----) [001] d..2 24574.133548: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
73095<...>-12589 ( 23968) [000] d..3 24574.133551: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=003
73096<...>-12589 ( 23968) [000] d..4 24574.133563: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=003
73097          <idle>-0     (-----) [003] .n.1 24574.133568: cpu_idle: state=4294967295 cpu_id=3
73098<...>-24073 ( 23968) [001] d..2 24574.133573: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
73099          <idle>-0     (-----) [003] d..2 24574.133574: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
73100          <idle>-0     (-----) [001] d..1 24574.133580: cpu_idle: state=0 cpu_id=1
73101<...>-12589 ( 23968) [000] d..1 24574.133607: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=006
73102<...>-12589 ( 23968) [000] d..2 24574.133628: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=001
73103<...>-24003 ( 23968) [003] d..2 24574.133631: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
73104          <idle>-0     (-----) [001] .n.1 24574.133633: cpu_idle: state=4294967295 cpu_id=1
73105          <idle>-0     (-----) [003] d..1 24574.133638: cpu_idle: state=0 cpu_id=3
73106<...>-12589 ( 23968) [000] d.h3 24574.133657: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
73107          <idle>-0     (-----) [001] d..2 24574.133657: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
73108<...>-12589 ( 23968) [000] d.h3 24574.133665: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
73109          <idle>-0     (-----) [004] dnh2 24574.133669: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
73110          <idle>-0     (-----) [004] .n.1 24574.133671: cpu_idle: state=4294967295 cpu_id=4
73111<...>-12589 ( 23968) [000] d.h4 24574.133673: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
73112          <idle>-0     (-----) [004] d..2 24574.133673: 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
73113<...>-23993 ( 23968) [001] d..2 24574.133677: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
73114         sugov:4-560   (  560) [004] d..2 24574.133677: 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
73115          <idle>-0     (-----) [003] .n.1 24574.133678: cpu_idle: state=4294967295 cpu_id=3
73116          <idle>-0     (-----) [004] d..1 24574.133679: cpu_idle: state=0 cpu_id=4
73117<...>-12589 ( 23968) [000] d..1 24574.133681: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=001
73118          <idle>-0     (-----) [001] d..1 24574.133682: cpu_idle: state=0 cpu_id=1
73119          <idle>-0     (-----) [003] d..2 24574.133684: 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
73120<...>-12589 ( 23968) [000] d..2 24574.133690: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=001
73121          <idle>-0     (-----) [001] .n.1 24574.133695: cpu_idle: state=4294967295 cpu_id=1
73122         sugov:0-559   (  559) [003] d..2 24574.133696: 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
73123          <idle>-0     (-----) [001] d..2 24574.133700: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
73124          <idle>-0     (-----) [003] d..1 24574.133701: cpu_idle: state=0 cpu_id=3
73125<...>-12589 ( 23968) [000] .... 24574.133755: binder_transaction: transaction=1670277 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
73126<...>-12589 ( 23968) [000] d..2 24574.133760: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=007
73127<...>-23993 ( 23968) [001] .... 24574.133775: binder_transaction: transaction=1670278 dest_node=1307515 dest_proc=24827 dest_thread=0 reply=0 flags=0x11 code=0xf
73128<...>-12589 ( 23968) [000] d..3 24574.133777: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
73129<...>-23993 ( 23968) [001] d..4 24574.133780: sched_waking: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=003
73130<...>-12589 ( 23968) [000] .... 24574.133802: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
73131<...>-23993 ( 23968) [001] d..5 24574.133806: sched_wakeup: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=003
73132          <idle>-0     (-----) [003] .n.1 24574.133810: cpu_idle: state=4294967295 cpu_id=3
73133<...>-12589 ( 23968) [000] d..2 24574.133811: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
73134          <idle>-0     (-----) [003] d..2 24574.133816: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24827_5 next_pid=5558 next_prio=120
73135           <...>-13131 (-----) [000] .... 24574.133818: binder_transaction_received: transaction=1670277
73136<...>-5558 ( 24827) [003] .... 24574.133821: binder_transaction_received: transaction=1670278
73137<...>-23993 ( 23968) [001] .... 24574.133842: binder_transaction: transaction=1670279 dest_node=1276465 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xf
73138<...>-23993 ( 23968) [001] d..4 24574.133846: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=001
73139          <idle>-0     (-----) [006] dnh2 24574.133886: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
73140          <idle>-0     (-----) [006] .n.1 24574.133888: cpu_idle: state=4294967295 cpu_id=6
73141          <idle>-0     (-----) [006] d..2 24574.133892: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
73142<...>-24376 ( 24151) [006] .... 24574.133894: binder_transaction_received: transaction=1670279
73143<...>-23993 ( 23968) [001] d..1 24574.133896: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=003
73144          <idle>-0     (-----) [007] dnh2 24574.133934: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=007
73145          <idle>-0     (-----) [007] .n.1 24574.133936: cpu_idle: state=4294967295 cpu_id=7
73146          <idle>-0     (-----) [007] d..2 24574.133939: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
73147<...>-5558 ( 24827) [003] d..2 24574.133946: sched_switch: prev_comm=Binder:24827_5 prev_pid=5558 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
73148<...>-24376 ( 24151) [006] d..2 24574.133948: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
73149          <idle>-0     (-----) [006] d..1 24574.133952: cpu_idle: state=0 cpu_id=6
73150          <idle>-0     (-----) [003] d..1 24574.133954: cpu_idle: state=0 cpu_id=3
73151<...>-23994 ( 23968) [007] d..1 24574.133963: sched_waking: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=001
73152<...>-23993 ( 23968) [001] d..2 24574.133974: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
73153          <idle>-0     (-----) [003] dnh2 24574.133981: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=003
73154          <idle>-0     (-----) [001] d..1 24574.133983: cpu_idle: state=0 cpu_id=1
73155          <idle>-0     (-----) [003] .n.1 24574.133985: cpu_idle: state=4294967295 cpu_id=3
73156          <idle>-0     (-----) [003] d..2 24574.133991: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=110
73157<...>-23994 ( 23968) [007] .... 24574.134002: binder_transaction: transaction=1670280 dest_node=1303001 dest_proc=24655 dest_thread=0 reply=0 flags=0x11 code=0x1
73158<...>-23994 ( 23968) [007] d..4 24574.134006: sched_waking: comm=Binder:24655_1 pid=24669 prio=120 target_cpu=007
73159  Binder:23968_1-23981 (23968) [003] d..1 24574.134014: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=001
73160  Binder:23968_1-23981 (23968) [003] d..2 24574.134024: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=001
73161          <idle>-0     (-----) [001] .n.1 24574.134030: cpu_idle: state=4294967295 cpu_id=1
73162  Binder:23968_1-23981 (23968) [003] d.h1 24574.134045: sched_wakeup: comm=Binder:24655_1 pid=24669 prio=120 target_cpu=003
73163          <idle>-0     (-----) [001] d..2 24574.134045: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
73164<...>-23993 ( 23968) [001] d..1 24574.134055: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=007
73165<...>-23994 ( 23968) [007] d..2 24574.134055: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
73166          <idle>-0     (-----) [007] d..1 24574.134059: cpu_idle: state=0 cpu_id=7
73167          <idle>-0     (-----) [006] dnh2 24574.134073: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=006
73168          <idle>-0     (-----) [006] .n.1 24574.134076: cpu_idle: state=4294967295 cpu_id=6
73169          <idle>-0     (-----) [006] d..2 24574.134079: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
73170           <...>-13131 (-----) [000] d..2 24574.134081: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
73171<...>-23994 ( 23968) [006] d..2 24574.134089: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
73172          <idle>-0     (-----) [006] d..1 24574.134091: cpu_idle: state=0 cpu_id=6
73173  Binder:23968_1-23981 (23968) [003] .... 24574.134102: binder_transaction: transaction=1670281 dest_node=0 dest_proc=24827 dest_thread=24827 reply=1 flags=0x0 code=0x0
73174  Binder:23968_1-23981 (23968) [003] d..2 24574.134106: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=003
73175<...>-12589 ( 23968) [000] d..2 24574.134120: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73176          <idle>-0     (-----) [000] d..1 24574.134127: cpu_idle: state=0 cpu_id=0
73177          <idle>-0     (-----) [005] dnh2 24574.134154: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=005
73178          <idle>-0     (-----) [005] .n.1 24574.134156: cpu_idle: state=4294967295 cpu_id=5
73179  Binder:23968_1-23981 (23968) [003] d.h3 24574.134156: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
73180          <idle>-0     (-----) [005] d..2 24574.134160: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
73181 s.nexuslauncher-24827 (24827) [005] .... 24574.134162: binder_transaction_received: transaction=1670281
73182  Binder:23968_1-23981 (23968) [003] d.h3 24574.134164: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
73183          <idle>-0     (-----) [004] dnh2 24574.134168: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
73184          <idle>-0     (-----) [004] .n.1 24574.134170: cpu_idle: state=4294967295 cpu_id=4
73185          <idle>-0     (-----) [004] d..2 24574.134172: 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
73186  Binder:23968_1-23981 (23968) [003] d.h4 24574.134176: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
73187         sugov:4-560   (  560) [004] d..2 24574.134176: 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
73188          <idle>-0     (-----) [004] d..1 24574.134178: cpu_idle: state=0 cpu_id=4
73189  Binder:23968_1-23981 (23968) [003] .... 24574.134179: binder_set_priority: proc=23968 thread=23981 old=110 => new=120 desired=120
73190          <idle>-0     (-----) [000] .n.1 24574.134181: cpu_idle: state=4294967295 cpu_id=0
73191          <idle>-0     (-----) [000] d..2 24574.134186: 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
73192  Binder:23968_1-23981 (23968) [003] d..2 24574.134189: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=R+ ==> next_comm=Binder:24655_1 next_pid=24669 next_prio=120
73193  Binder:24655_1-24669 (24655) [003] .... 24574.134196: binder_transaction_received: transaction=1670280
73194         sugov:0-559   (  559) [000] d..2 24574.134198: 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
73195          <idle>-0     (-----) [000] d..1 24574.134202: cpu_idle: state=0 cpu_id=0
73196          <idle>-0     (-----) [000] d.s2 24574.134230: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
73197          <idle>-0     (-----) [000] dns3 24574.134240: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
73198          <idle>-0     (-----) [000] .n.1 24574.134252: cpu_idle: state=4294967295 cpu_id=0
73199          <idle>-0     (-----) [000] d..2 24574.134256: 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
73200     rcu_preempt-7     (    7) [000] d..2 24574.134276: 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
73201          <idle>-0     (-----) [000] d..1 24574.134282: cpu_idle: state=0 cpu_id=0
73202<...>-23993 ( 23968) [001] d..1 24574.134312: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=006
73203          <idle>-0     (-----) [006] dnh2 24574.134325: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=006
73204          <idle>-0     (-----) [006] .n.1 24574.134327: cpu_idle: state=4294967295 cpu_id=6
73205 s.nexuslauncher-24827 (24827) [005] d..1 24574.134328: sched_waking: comm=Jit thread pool pid=24838 prio=129 target_cpu=000
73206          <idle>-0     (-----) [006] d..2 24574.134331: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
73207          <idle>-0     (-----) [000] dnh2 24574.134344: sched_wakeup: comm=Jit thread pool pid=24838 prio=129 target_cpu=000
73208          <idle>-0     (-----) [000] .n.1 24574.134347: cpu_idle: state=4294967295 cpu_id=0
73209          <idle>-0     (-----) [000] d..2 24574.134353: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=24838 next_prio=129
73210<...>-23993 ( 23968) [001] d..1 24574.134360: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=006
73211<...>-23994 ( 23968) [006] d..2 24574.134364: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
73212          <idle>-0     (-----) [006] d..1 24574.134368: cpu_idle: state=0 cpu_id=6
73213          <idle>-0     (-----) [006] dnh2 24574.134377: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=006
73214          <idle>-0     (-----) [006] .n.1 24574.134380: cpu_idle: state=4294967295 cpu_id=6
73215          <idle>-0     (-----) [006] d..2 24574.134383: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
73216<...>-24838 ( 24827) [000] d..2 24574.134390: sched_switch: prev_comm=Jit thread pool prev_pid=24838 prev_prio=129 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73217          <idle>-0     (-----) [000] d..1 24574.134396: cpu_idle: state=0 cpu_id=0
73218<...>-23994 ( 23968) [006] d..3 24574.134404: sched_waking: comm=android.bg pid=23992 prio=130 target_cpu=001
73219  Binder:24655_1-24669 (24655) [003] d..2 24574.134413: sched_switch: prev_comm=Binder:24655_1 prev_pid=24669 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
73220<...>-23993 ( 23968) [001] d.h1 24574.134421: sched_wakeup: comm=android.bg pid=23992 prio=130 target_cpu=001
73221<...>-23994 ( 23968) [006] d..3 24574.134421: sched_waking: comm=android.fg pid=24001 prio=120 target_cpu=006
73222          <idle>-0     (-----) [000] dnh2 24574.134453: sched_wakeup: comm=android.fg pid=24001 prio=120 target_cpu=000
73223          <idle>-0     (-----) [000] .n.1 24574.134456: cpu_idle: state=4294967295 cpu_id=0
73224  Binder:23968_1-23981 (23968) [003] d..2 24574.134459: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
73225          <idle>-0     (-----) [000] d..2 24574.134462: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.fg next_pid=24001 next_prio=120
73226<...>-23994 ( 23968) [006] d..3 24574.134463: sched_waking: comm=tworkPolicy.uid pid=24082 prio=118 target_cpu=006
73227          <idle>-0     (-----) [003] d..1 24574.134468: cpu_idle: state=0 cpu_id=3
73228<...>-23993 ( 23968) [001] d..2 24574.134474: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
73229<...>-23993 ( 23968) [001] d..3 24574.134497: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
73230          <idle>-0     (-----) [003] dnh2 24574.134502: sched_wakeup: comm=tworkPolicy.uid pid=24082 prio=118 target_cpu=003
73231          <idle>-0     (-----) [003] .n.1 24574.134508: cpu_idle: state=4294967295 cpu_id=3
73232          <idle>-0     (-----) [003] d..2 24574.134514: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=tworkPolicy.uid next_pid=24082 next_prio=118
73233<...>-23994 ( 23968) [006] .... 24574.134516: binder_transaction: transaction=1670282 dest_node=1279661 dest_proc=24119 dest_thread=0 reply=0 flags=0x11 code=0x4
73234      android.fg-24001 (23968) [000] d..2 24574.134517: sched_switch: prev_comm=android.fg prev_pid=24001 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73235<...>-23994 ( 23968) [006] d..4 24574.134521: sched_waking: comm=Binder:24119_3 pid=24159 prio=120 target_cpu=001
73236          <idle>-0     (-----) [000] d..1 24574.134523: cpu_idle: state=0 cpu_id=0
73237 s.nexuslauncher-24827 (24827) [005] .... 24574.134524: binder_transaction: transaction=1670283 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x19
73238<...>-23993 ( 23968) [001] d.h1 24574.134536: sched_wakeup: comm=Binder:24119_3 pid=24159 prio=120 target_cpu=001
73239<...>-23994 ( 23968) [006] d..3 24574.134543: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=001
73240          <idle>-0     (-----) [000] dnh2 24574.134561: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=000
73241          <idle>-0     (-----) [000] .n.1 24574.134565: cpu_idle: state=4294967295 cpu_id=0
73242 tworkPolicy.uid-24082 (23968) [003] d..2 24574.134566: sched_switch: prev_comm=tworkPolicy.uid prev_pid=24082 prev_prio=118 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
73243<...>-23994 ( 23968) [006] d..2 24574.134567: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
73244          <idle>-0     (-----) [000] d..2 24574.134571: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
73245          <idle>-0     (-----) [006] d..1 24574.134571: cpu_idle: state=0 cpu_id=6
73246<...>-23968 ( 23968) [000] d..2 24574.134625: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73247<...>-23993 ( 23968) [001] d..1 24574.134627: sched_waking: comm=tworkPolicy.uid pid=24082 prio=118 target_cpu=003
73248 s.nexuslauncher-24827 (24827) [005] ...2 24574.134627: binder_set_priority: proc=23968 thread=23981 old=120 => new=110 desired=110
73249 s.nexuslauncher-24827 (24827) [005] d..4 24574.134628: sched_waking: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=003
73250          <idle>-0     (-----) [000] d..1 24574.134632: cpu_idle: state=0 cpu_id=0
73251<...>-23993 ( 23968) [001] d..2 24574.134647: sched_wakeup: comm=tworkPolicy.uid pid=24082 prio=118 target_cpu=000
73252          <idle>-0     (-----) [000] dnh2 24574.134652: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=000
73253 s.nexuslauncher-24827 (24827) [005] d..2 24574.134655: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
73254     logd.writer-563   (  555) [003] d..2 24574.134656: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
73255          <idle>-0     (-----) [000] .n.1 24574.134659: cpu_idle: state=4294967295 cpu_id=0
73256          <idle>-0     (-----) [005] d..1 24574.134660: cpu_idle: state=0 cpu_id=5
73257          <idle>-0     (-----) [003] d..1 24574.134664: cpu_idle: state=0 cpu_id=3
73258          <idle>-0     (-----) [000] d..2 24574.134665: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=tworkPolicy.uid next_pid=24082 next_prio=118
73259<...>-23993 ( 23968) [001] d..2 24574.134678: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=Binder:24119_3 next_pid=24159 next_prio=120
73260  Binder:24119_3-24159 (24119) [001] .... 24574.134685: binder_transaction_received: transaction=1670282
73261 tworkPolicy.uid-24082 (23968) [000] d..1 24574.134691: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=006
73262          <idle>-0     (-----) [006] dnh2 24574.134704: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=006
73263          <idle>-0     (-----) [006] .n.1 24574.134707: cpu_idle: state=4294967295 cpu_id=6
73264          <idle>-0     (-----) [006] d..2 24574.134710: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
73265<...>-23994 ( 23968) [006] d..1 24574.134719: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=000
73266 tworkPolicy.uid-24082 (23968) [000] d..2 24574.134725: sched_switch: prev_comm=tworkPolicy.uid prev_pid=24082 prev_prio=118 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=110
73267  Binder:23968_1-23981 (23968) [000] .... 24574.134730: binder_transaction_received: transaction=1670283
73268          <idle>-0     (-----) [003] dnh2 24574.134743: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=003
73269          <idle>-0     (-----) [003] .n.1 24574.134747: cpu_idle: state=4294967295 cpu_id=3
73270          <idle>-0     (-----) [003] d..2 24574.134753: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
73271<...>-23994 ( 23968) [006] d..2 24574.134792: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
73272          <idle>-0     (-----) [006] d..1 24574.134796: cpu_idle: state=0 cpu_id=6
73273<...>-23968 ( 23968) [003] .... 24574.134838: binder_transaction: transaction=1670286 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
73274<...>-23968 ( 23968) [003] d..4 24574.134843: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
73275  Binder:24119_3-24159 (24119) [001] d..2 24574.134847: sched_switch: prev_comm=Binder:24119_3 prev_pid=24159 prev_prio=120 prev_state=S ==> next_comm=android.bg next_pid=23992 next_prio=130
73276          <idle>-0     (-----) [006] dnh2 24574.134859: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
73277          <idle>-0     (-----) [006] .n.1 24574.134861: cpu_idle: state=4294967295 cpu_id=6
73278          <idle>-0     (-----) [006] d..2 24574.134864: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
73279<...>-24376 ( 24151) [006] .... 24574.134867: binder_transaction_received: transaction=1670286
73280<...>-23968 ( 23968) [003] .... 24574.134896: binder_transaction: transaction=1670287 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
73281<...>-24376 ( 24151) [006] d..3 24574.134899: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
73282<...>-24376 ( 24151) [006] d..4 24574.134914: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
73283          <idle>-0     (-----) [007] .n.1 24574.134918: cpu_idle: state=4294967295 cpu_id=7
73284<...>-24376 ( 24151) [006] d.h3 24574.134934: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
73285          <idle>-0     (-----) [007] d..2 24574.134935: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
73286<...>-24376 ( 24151) [006] d.h4 24574.134940: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
73287<...>-24376 ( 24151) [006] d.h3 24574.134941: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
73288          <idle>-0     (-----) [004] .n.1 24574.134944: cpu_idle: state=4294967295 cpu_id=4
73289<...>-23968 ( 23968) [003] d..2 24574.134946: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
73290          <idle>-0     (-----) [004] d..2 24574.134947: 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
73291<...>-24151 ( 24151) [007] d..2 24574.134950: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
73292         sugov:4-560   (  560) [004] d..2 24574.134952: 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
73293          <idle>-0     (-----) [007] d..1 24574.134953: cpu_idle: state=0 cpu_id=7
73294          <idle>-0     (-----) [004] d..1 24574.134954: cpu_idle: state=0 cpu_id=4
73295          <idle>-0     (-----) [003] d..1 24574.134954: cpu_idle: state=0 cpu_id=3
73296<...>-24376 ( 24151) [006] d..1 24574.134957: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
73297          <idle>-0     (-----) [003] dnh2 24574.134963: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
73298<...>-24376 ( 24151) [006] d..2 24574.134964: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
73299          <idle>-0     (-----) [003] .n.1 24574.134967: cpu_idle: state=4294967295 cpu_id=3
73300          <idle>-0     (-----) [007] .n.1 24574.134968: cpu_idle: state=4294967295 cpu_id=7
73301          <idle>-0     (-----) [007] d..2 24574.134970: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
73302          <idle>-0     (-----) [003] d..2 24574.134973: 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
73303<...>-24376 ( 24151) [006] d..4 24574.134976: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=000
73304         sugov:0-559   (  559) [003] d..2 24574.134984: 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
73305          <idle>-0     (-----) [003] d..1 24574.134989: cpu_idle: state=0 cpu_id=3
73306<...>-24376 ( 24151) [006] .... 24574.134989: binder_transaction_received: transaction=1670287
73307  Binder:23968_1-23981 (23968) [000] d.h1 24574.134997: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=000
73308<...>-24151 ( 24151) [007] d..2 24574.135007: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
73309<...>-24376 ( 24151) [006] d..3 24574.135009: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
73310          <idle>-0     (-----) [007] d..1 24574.135010: cpu_idle: state=0 cpu_id=7
73311<...>-24376 ( 24151) [006] d..4 24574.135016: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
73312          <idle>-0     (-----) [007] .n.1 24574.135020: cpu_idle: state=4294967295 cpu_id=7
73313          <idle>-0     (-----) [007] d..2 24574.135024: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
73314<...>-24376 ( 24151) [006] d..2 24574.135032: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
73315          <idle>-0     (-----) [006] d..1 24574.135036: cpu_idle: state=0 cpu_id=6
73316<...>-24151 ( 24151) [007] d..2 24574.135040: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
73317          <idle>-0     (-----) [007] d..1 24574.135043: cpu_idle: state=0 cpu_id=7
73318  Binder:23968_1-23981 (23968) [000] d..2 24574.135214: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
73319          <idle>-0     (-----) [006] ...1 24574.135250: cpu_idle: state=4294967295 cpu_id=6
73320          <idle>-0     (-----) [006] d..1 24574.135251: cpu_idle: state=0 cpu_id=6
73321  Binder:23968_1-23981 (23968) [000] d..3 24574.135252: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
73322  Binder:23968_1-23981 (23968) [000] .... 24574.135357: binder_transaction: transaction=1670288 dest_node=0 dest_proc=24827 dest_thread=24827 reply=1 flags=0x0 code=0x0
73323  Binder:23968_1-23981 (23968) [000] d..2 24574.135361: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=005
73324  Binder:23968_1-23981 (23968) [000] d..3 24574.135382: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=003
73325          <idle>-0     (-----) [003] .n.1 24574.135386: cpu_idle: state=4294967295 cpu_id=3
73326  Binder:23968_1-23981 (23968) [000] .... 24574.135420: binder_set_priority: proc=23968 thread=23981 old=110 => new=120 desired=120
73327          <idle>-0     (-----) [003] d..2 24574.135422: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
73328 s.nexuslauncher-24827 (24827) [003] .... 24574.135429: binder_transaction_received: transaction=1670288
73329  Binder:23968_1-23981 (23968) [000] d..2 24574.135431: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=R+ ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
73330<...>-24177 ( 24151) [000] d..2 24574.135441: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
73331  Binder:23968_1-23981 (23968) [000] d..2 24574.135474: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73332          <idle>-0     (-----) [000] d..1 24574.135485: cpu_idle: state=0 cpu_id=0
73333 s.nexuslauncher-24827 (24827) [003] .... 24574.135620: binder_transaction: transaction=1670289 dest_node=1272319 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x1
73334 s.nexuslauncher-24827 (24827) [003] ...2 24574.135630: binder_set_priority: proc=23968 thread=23981 old=120 => new=110 desired=110
73335 s.nexuslauncher-24827 (24827) [003] d..4 24574.135632: sched_waking: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=000
73336 s.nexuslauncher-24827 (24827) [003] d..5 24574.135647: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=110 target_cpu=003
73337 s.nexuslauncher-24827 (24827) [003] d..2 24574.135655: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=110
73338  Binder:23968_1-23981 (23968) [003] .... 24574.135659: binder_transaction_received: transaction=1670289
73339           <...>-13147 (-----) [002] d..1 24574.135761: sched_waking: comm=HeapTaskDaemon pid=13142 prio=124 target_cpu=000
73340           <...>-13147 (-----) [002] d..2 24574.135779: sched_wakeup: comm=HeapTaskDaemon pid=13142 prio=124 target_cpu=000
73341          <idle>-0     (-----) [000] .n.1 24574.135783: cpu_idle: state=4294967295 cpu_id=0
73342          <idle>-0     (-----) [000] d..2 24574.135790: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=13142 next_prio=124
73343           <...>-13147 (-----) [002] d..1 24574.135804: sched_waking: comm=ReferenceQueueD pid=13139 prio=124 target_cpu=001
73344  HeapTaskDaemon-13142 (13131) [000] d..2 24574.135817: sched_switch: prev_comm=HeapTaskDaemon prev_pid=13142 prev_prio=124 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73345          <idle>-0     (-----) [000] d..1 24574.135823: cpu_idle: state=0 cpu_id=0
73346          <idle>-0     (-----) [006] dnh2 24574.135851: sched_wakeup: comm=ReferenceQueueD pid=13139 prio=124 target_cpu=006
73347           <...>-13147 (-----) [002] d.h3 24574.135853: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
73348          <idle>-0     (-----) [006] .n.1 24574.135853: cpu_idle: state=4294967295 cpu_id=6
73349          <idle>-0     (-----) [006] d..2 24574.135857: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
73350           <...>-13147 (-----) [002] d.h3 24574.135861: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
73351          <idle>-0     (-----) [004] dnh2 24574.135865: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
73352 ReferenceQueueD-13139 (13131) [006] d..2 24574.135867: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
73353          <idle>-0     (-----) [004] .n.1 24574.135869: cpu_idle: state=4294967295 cpu_id=4
73354          <idle>-0     (-----) [006] d..1 24574.135870: cpu_idle: state=0 cpu_id=6
73355          <idle>-0     (-----) [004] d..2 24574.135871: 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
73356           <...>-13147 (-----) [002] d.h4 24574.135873: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
73357         sugov:4-560   (  560) [004] d..2 24574.135875: 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
73358          <idle>-0     (-----) [004] d..1 24574.135877: cpu_idle: state=0 cpu_id=4
73359          <idle>-0     (-----) [000] .n.1 24574.135878: cpu_idle: state=4294967295 cpu_id=0
73360           <...>-13147 (-----) [002] d..1 24574.135879: sched_waking: comm=ReferenceQueueD pid=13139 prio=124 target_cpu=006
73361          <idle>-0     (-----) [000] d..2 24574.135884: 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
73362          <idle>-0     (-----) [006] dnh2 24574.135891: sched_wakeup: comm=ReferenceQueueD pid=13139 prio=124 target_cpu=006
73363          <idle>-0     (-----) [006] .n.1 24574.135893: cpu_idle: state=4294967295 cpu_id=6
73364         sugov:0-559   (  559) [000] d..2 24574.135896: 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
73365          <idle>-0     (-----) [006] d..2 24574.135896: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
73366          <idle>-0     (-----) [000] d..1 24574.135900: cpu_idle: state=0 cpu_id=0
73367  Binder:23968_1-23981 (23968) [003] .... 24574.135962: binder_transaction: transaction=1670290 dest_node=0 dest_proc=24827 dest_thread=24827 reply=1 flags=0x0 code=0x0
73368  Binder:23968_1-23981 (23968) [003] d..2 24574.135966: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=003
73369  Binder:23968_1-23981 (23968) [003] dn.3 24574.135975: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=003
73370  Binder:23968_1-23981 (23968) [003] d..2 24574.135981: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=110 prev_state=R+ ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
73371 s.nexuslauncher-24827 (24827) [003] .... 24574.135985: binder_transaction_received: transaction=1670290
73372 s.nexuslauncher-24827 (24827) [003] d..3 24574.136055: sched_waking: comm=launcher-loader pid=24943 prio=130 target_cpu=004
73373 s.nexuslauncher-24827 (24827) [003] d..4 24574.136078: sched_wakeup: comm=launcher-loader pid=24943 prio=130 target_cpu=000
73374          <idle>-0     (-----) [000] .n.1 24574.136082: cpu_idle: state=4294967295 cpu_id=0
73375          <idle>-0     (-----) [000] d..2 24574.136105: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=launcher-loader next_pid=24943 next_prio=130
73376           <...>-13147 (-----) [002] d..2 24574.136121: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
73377          <idle>-0     (-----) [002] d..1 24574.136139: cpu_idle: state=0 cpu_id=2
73378 s.nexuslauncher-24827 (24827) [003] d..1 24574.136178: sched_waking: comm=Recents-HighRes pid=25113 prio=131 target_cpu=002
73379 s.nexuslauncher-24827 (24827) [003] d..2 24574.136194: sched_wakeup: comm=Recents-HighRes pid=25113 prio=131 target_cpu=002
73380          <idle>-0     (-----) [002] .n.1 24574.136199: cpu_idle: state=4294967295 cpu_id=2
73381<...>-24943 ( 24827) [000] .... 24574.136203: binder_transaction: transaction=1670291 dest_node=1271843 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x33
73382          <idle>-0     (-----) [002] d..2 24574.136207: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Recents-HighRes next_pid=25113 next_prio=131
73383<...>-24943 ( 24827) [000] d..4 24574.136214: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=000
73384 ReferenceQueueD-13139 (13131) [006] d..1 24574.136220: sched_waking: comm=FinalizerDaemon pid=13140 prio=124 target_cpu=003
73385<...>-24943 ( 24827) [000] d..5 24574.136222: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=000
73386<...>-24943 ( 24827) [000] d..2 24574.136230: sched_switch: prev_comm=launcher-loader prev_pid=24943 prev_prio=130 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
73387<...>-12589 ( 23968) [000] .... 24574.136235: binder_transaction_received: transaction=1670291
73388 ReferenceQueueD-13139 (13131) [006] d..2 24574.136236: sched_wakeup: comm=FinalizerDaemon pid=13140 prio=124 target_cpu=007
73389          <idle>-0     (-----) [007] .n.1 24574.136240: cpu_idle: state=4294967295 cpu_id=7
73390          <idle>-0     (-----) [007] d..2 24574.136253: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerDaemon next_pid=13140 next_prio=124
73391 FinalizerDaemon-13140 (13131) [007] d..1 24574.136268: sched_waking: comm=FinalizerWatchd pid=13141 prio=124 target_cpu=000
73392 ReferenceQueueD-13139 (13131) [006] d..2 24574.136275: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
73393          <idle>-0     (-----) [006] d..1 24574.136279: cpu_idle: state=0 cpu_id=6
73394<...>-25113 ( 24827) [002] d..2 24574.136281: sched_switch: prev_comm=Recents-HighRes prev_pid=25113 prev_prio=131 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
73395<...>-23992 ( 23968) [001] d..2 24574.136288: sched_switch: prev_comm=android.bg prev_pid=23992 prev_prio=130 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
73396          <idle>-0     (-----) [002] d..1 24574.136290: cpu_idle: state=0 cpu_id=2
73397<...>-12589 ( 23968) [000] d.h1 24574.136291: sched_wakeup: comm=FinalizerWatchd pid=13141 prio=124 target_cpu=000
73398 FinalizerDaemon-13140 (13131) [007] d..1 24574.136408: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=002
73399     logd.writer-563   (  555) [001] d..2 24574.136417: 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
73400          <idle>-0     (-----) [002] dnh2 24574.136424: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=002
73401          <idle>-0     (-----) [002] .n.1 24574.136428: cpu_idle: state=4294967295 cpu_id=2
73402 FinalizerDaemon-13140 (13131) [007] d..2 24574.136428: sched_switch: prev_comm=FinalizerDaemon prev_pid=13140 prev_prio=124 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
73403          <idle>-0     (-----) [001] d..1 24574.136431: cpu_idle: state=0 cpu_id=1
73404          <idle>-0     (-----) [007] d..1 24574.136432: cpu_idle: state=0 cpu_id=7
73405          <idle>-0     (-----) [002] d..2 24574.136434: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
73406 s.nexuslauncher-24827 (24827) [003] .... 24574.136448: binder_transaction: transaction=1670292 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x44
73407 s.nexuslauncher-24827 (24827) [003] ...2 24574.136457: binder_set_priority: proc=23968 thread=25014 old=120 => new=110 desired=110
73408 s.nexuslauncher-24827 (24827) [003] d..4 24574.136460: sched_waking: comm=Binder:23968_C pid=25014 prio=110 target_cpu=007
73409          <idle>-0     (-----) [006] ...1 24574.136470: cpu_idle: state=4294967295 cpu_id=6
73410          <idle>-0     (-----) [006] d..1 24574.136471: cpu_idle: state=0 cpu_id=6
73411 s.nexuslauncher-24827 (24827) [003] d..5 24574.136483: sched_wakeup: comm=Binder:23968_C pid=25014 prio=110 target_cpu=001
73412          <idle>-0     (-----) [001] .n.1 24574.136489: cpu_idle: state=4294967295 cpu_id=1
73413 s.nexuslauncher-24827 (24827) [003] d.h5 24574.136514: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
73414          <idle>-0     (-----) [001] d..2 24574.136515: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_C next_pid=25014 next_prio=110
73415 s.nexuslauncher-24827 (24827) [003] d.h5 24574.136522: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
73416          <idle>-0     (-----) [004] dnh2 24574.136527: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
73417          <idle>-0     (-----) [004] .n.1 24574.136529: cpu_idle: state=4294967295 cpu_id=4
73418<...>-12589 ( 23968) [000] d.h4 24574.136529: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
73419          <idle>-0     (-----) [004] d..2 24574.136531: 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
73420         sugov:4-560   (  560) [004] d..2 24574.136535: 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
73421          <idle>-0     (-----) [004] d..1 24574.136537: cpu_idle: state=0 cpu_id=4
73422 s.nexuslauncher-24827 (24827) [003] d.h6 24574.136539: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
73423<...>-12589 ( 23968) [000] d.h5 24574.136550: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
73424  Binder:23968_C-25014 (23968) [001] d..2 24574.136551: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
73425 s.nexuslauncher-24827 (24827) [003] d..2 24574.136557: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
73426         sugov:0-559   (  559) [001] d..2 24574.136559: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=110
73427<...>-12589 ( 23968) [000] d.h4 24574.136562: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
73428  Binder:23968_C-25014 (23968) [001] .... 24574.136562: binder_transaction_received: transaction=1670292
73429<...>-12589 ( 23968) [000] d.h5 24574.136577: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
73430  crtc_event:111-254   (  254) [003] d..2 24574.136584: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=110
73431  Binder:23968_C-25014 (23968) [001] d..2 24574.136585: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
73432  Binder:23968_1-23981 (23968) [003] .... 24574.136587: binder_set_priority: proc=23968 thread=23981 old=110 => new=120 desired=120
73433  Binder:23968_1-23981 (23968) [003] d..2 24574.136629: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
73434          <idle>-0     (-----) [003] d..1 24574.136637: cpu_idle: state=0 cpu_id=3
73435 crtc_commit:111-253   (  253) [001] d..2 24574.136714: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=Binder:23968_C next_pid=25014 next_prio=110
73436  Binder:23968_C-25014 (23968) [001] .... 24574.136848: binder_transaction: transaction=1670293 dest_node=0 dest_proc=24827 dest_thread=24827 reply=1 flags=0x0 code=0x0
73437  Binder:23968_C-25014 (23968) [001] d..2 24574.136852: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=003
73438  Binder:23968_C-25014 (23968) [001] d..3 24574.136865: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
73439  Binder:23968_C-25014 (23968) [001] .... 24574.136867: binder_set_priority: proc=23968 thread=25014 old=110 => new=120 desired=120
73440  Binder:23968_C-25014 (23968) [001] d..2 24574.136898: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
73441 s.nexuslauncher-24827 (24827) [001] .... 24574.136902: binder_transaction_received: transaction=1670293
73442 s.nexuslauncher-24827 (24827) [001] .... 24574.137164: binder_transaction: transaction=1670294 dest_node=1270791 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x32
73443 s.nexuslauncher-24827 (24827) [001] ...2 24574.137169: binder_set_priority: proc=23968 thread=25014 old=120 => new=110 desired=110
73444 s.nexuslauncher-24827 (24827) [001] d..4 24574.137170: sched_waking: comm=Binder:23968_C pid=25014 prio=110 target_cpu=001
73445 s.nexuslauncher-24827 (24827) [001] dn.5 24574.137179: sched_wakeup: comm=Binder:23968_C pid=25014 prio=110 target_cpu=001
73446 s.nexuslauncher-24827 (24827) [001] d..2 24574.137184: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_C next_pid=25014 next_prio=110
73447  Binder:23968_C-25014 (23968) [001] .... 24574.137188: binder_transaction_received: transaction=1670294
73448  Binder:23968_C-25014 (23968) [001] .... 24574.137298: binder_transaction: transaction=1670295 dest_node=0 dest_proc=24827 dest_thread=24827 reply=1 flags=0x0 code=0x0
73449  Binder:23968_C-25014 (23968) [001] .... 24574.137302: binder_set_priority: proc=23968 thread=25014 old=110 => new=120 desired=120
73450  Binder:23968_C-25014 (23968) [001] d..2 24574.137329: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
73451 s.nexuslauncher-24827 (24827) [001] .... 24574.137334: binder_transaction_received: transaction=1670295
73452 s.nexuslauncher-24827 (24827) [001] d.s2 24574.137572: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
73453<...>-12589 ( 23968) [000] d.s2 24574.137575: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
73454 s.nexuslauncher-24827 (24827) [001] d.s3 24574.137610: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
73455          <idle>-0     (-----) [003] .n.1 24574.137615: cpu_idle: state=4294967295 cpu_id=3
73456           <...>-13147 (-----) [002] d.H2 24574.137616: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
73457<...>-12589 ( 23968) [000] d.s3 24574.137616: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
73458          <idle>-0     (-----) [003] d..2 24574.137621: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
73459           <...>-13147 (-----) [002] d.H2 24574.137626: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
73460          <idle>-0     (-----) [004] dnh2 24574.137630: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
73461          <idle>-0     (-----) [004] .n.1 24574.137632: cpu_idle: state=4294967295 cpu_id=4
73462          <idle>-0     (-----) [004] d..2 24574.137634: 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
73463           <...>-13147 (-----) [002] d.H3 24574.137635: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
73464         sugov:4-560   (  560) [004] d..2 24574.137639: 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
73465          <idle>-0     (-----) [004] d..1 24574.137641: cpu_idle: state=0 cpu_id=4
73466 s.nexuslauncher-24827 (24827) [001] d..2 24574.137644: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
73467         sugov:0-559   (  559) [001] d..2 24574.137652: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
73468  crtc_event:111-254   (  254) [003] d..2 24574.137653: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=FinalizerWatchd next_pid=13141 next_prio=124
73469 FinalizerWatchd-13141 (13131) [003] d..2 24574.137703: sched_switch: prev_comm=FinalizerWatchd prev_pid=13141 prev_prio=124 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
73470          <idle>-0     (-----) [003] d..1 24574.137711: cpu_idle: state=0 cpu_id=3
73471<...>-12589 ( 23968) [000] .... 24574.137732: binder_transaction: transaction=1670296 dest_node=0 dest_proc=24827 dest_thread=24943 reply=1 flags=0x0 code=0x0
73472  kworker/u16:15-18488 (18488) [001] d..2 24574.137739: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
73473<...>-12589 ( 23968) [000] d..2 24574.137771: sched_waking: comm=launcher-loader pid=24943 prio=130 target_cpu=000
73474<...>-12589 ( 23968) [000] d..3 24574.137781: sched_wakeup: comm=launcher-loader pid=24943 prio=130 target_cpu=000
73475<...>-12589 ( 23968) [000] d..2 24574.137808: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=launcher-loader next_pid=24943 next_prio=130
73476<...>-24943 ( 24827) [000] .... 24574.137813: binder_transaction_received: transaction=1670296
73477 s.nexuslauncher-24827 (24827) [001] .... 24574.138029: binder_transaction: transaction=1670297 dest_node=1271174 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x45
73478 s.nexuslauncher-24827 (24827) [001] ...2 24574.138033: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
73479 s.nexuslauncher-24827 (24827) [001] d..4 24574.138035: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=000
73480 s.nexuslauncher-24827 (24827) [001] d..5 24574.138047: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=001
73481 s.nexuslauncher-24827 (24827) [001] d..2 24574.138055: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
73482<...>-12589 ( 23968) [001] .... 24574.138059: binder_transaction_received: transaction=1670297
73483<...>-12589 ( 23968) [001] .... 24574.138189: binder_transaction: transaction=1670298 dest_node=1284532 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x4
73484<...>-12589 ( 23968) [001] d..4 24574.138194: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=000
73485<...>-12589 ( 23968) [001] d..5 24574.138215: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=003
73486          <idle>-0     (-----) [003] .n.1 24574.138220: cpu_idle: state=4294967295 cpu_id=3
73487          <idle>-0     (-----) [003] d..2 24574.138226: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
73488<...>-24177 ( 24151) [003] .... 24574.138233: binder_transaction_received: transaction=1670298
73489<...>-12589 ( 23968) [001] .... 24574.138324: binder_transaction: transaction=1670299 dest_node=1284532 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x2
73490<...>-24177 ( 24151) [003] d..3 24574.138364: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
73491<...>-12589 ( 23968) [001] .... 24574.138380: binder_transaction: transaction=1670300 dest_node=0 dest_proc=24827 dest_thread=24827 reply=1 flags=0x0 code=0x0
73492<...>-12589 ( 23968) [001] d..2 24574.138384: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
73493          <idle>-0     (-----) [006] dnh2 24574.138387: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
73494          <idle>-0     (-----) [006] .n.1 24574.138389: cpu_idle: state=4294967295 cpu_id=6
73495<...>-12589 ( 23968) [001] dn.3 24574.138393: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
73496          <idle>-0     (-----) [006] d..2 24574.138393: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
73497<...>-24943 ( 24827) [000] .... 24574.138397: binder_transaction: transaction=1670301 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xd
73498<...>-12589 ( 23968) [001] d..2 24574.138398: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=R+ ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
73499<...>-24943 ( 24827) [000] d..4 24574.138401: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=001
73500 s.nexuslauncher-24827 (24827) [001] .... 24574.138402: binder_transaction_received: transaction=1670300
73501<...>-24177 ( 24151) [003] d..4 24574.138414: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
73502<...>-24943 ( 24827) [000] dn.5 24574.138415: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
73503<...>-24943 ( 24827) [000] d..2 24574.138421: sched_switch: prev_comm=launcher-loader prev_pid=24943 prev_prio=130 prev_state=R+ ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
73504  Binder:23968_C-25014 (23968) [000] .... 24574.138425: binder_transaction_received: transaction=1670301
73505<...>-24177 ( 24151) [003] .... 24574.138432: binder_transaction_received: transaction=1670299
73506          <idle>-0     (-----) [007] dnh2 24574.138436: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
73507          <idle>-0     (-----) [007] .n.1 24574.138438: cpu_idle: state=4294967295 cpu_id=7
73508<...>-24151 ( 24151) [006] d..2 24574.138440: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
73509          <idle>-0     (-----) [007] d..2 24574.138442: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
73510          <idle>-0     (-----) [006] d..1 24574.138443: cpu_idle: state=0 cpu_id=6
73511<...>-24376 ( 24151) [007] d..2 24574.138449: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
73512          <idle>-0     (-----) [007] d..1 24574.138451: cpu_idle: state=0 cpu_id=7
73513 s.nexuslauncher-24827 (24827) [001] d..2 24574.138496: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
73514 s.nexuslauncher-24827 (24827) [001] d..3 24574.138514: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
73515<...>-24177 ( 24151) [003] d..3 24574.138526: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
73516          <idle>-0     (-----) [006] dnh2 24574.138539: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
73517          <idle>-0     (-----) [006] .n.1 24574.138541: cpu_idle: state=4294967295 cpu_id=6
73518          <idle>-0     (-----) [006] d..2 24574.138544: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
73519<...>-24177 ( 24151) [003] d..2 24574.138564: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
73520<...>-24151 ( 24151) [006] .... 24574.138599: binder_transaction: transaction=1670302 dest_node=1270642 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x1
73521<...>-24151 ( 24151) [006] d..4 24574.138602: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=003
73522<...>-24151 ( 24151) [006] d..5 24574.138612: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
73523<...>-24151 ( 24151) [006] d.h5 24574.138633: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
73524<...>-24151 ( 24151) [006] d..2 24574.138645: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
73525     logd.writer-563   (  555) [003] d..2 24574.138648: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
73526  Binder:23968_1-23981 (23968) [006] .... 24574.138648: binder_transaction_received: transaction=1670302
73527          <idle>-0     (-----) [003] dnh3 24574.138656: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
73528          <idle>-0     (-----) [003] d..2 24574.138662: 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
73529         sugov:0-559   (  559) [003] d..2 24574.138674: 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
73530          <idle>-0     (-----) [003] d..1 24574.138682: cpu_idle: state=0 cpu_id=3
73531 s.nexuslauncher-24827 (24827) [001] .... 24574.138695: binder_transaction: transaction=1670303 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x11
73532 s.nexuslauncher-24827 (24827) [001] ...2 24574.138704: binder_set_priority: proc=23968 thread=24233 old=120 => new=110 desired=110
73533 s.nexuslauncher-24827 (24827) [001] d..4 24574.138707: sched_waking: comm=Binder:23968_5 pid=24233 prio=110 target_cpu=007
73534 s.nexuslauncher-24827 (24827) [001] d..5 24574.138730: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=110 target_cpu=003
73535          <idle>-0     (-----) [003] .n.1 24574.138734: cpu_idle: state=4294967295 cpu_id=3
73536  Binder:23968_1-23981 (23968) [006] .... 24574.138758: binder_transaction: transaction=1670304 dest_node=0 dest_proc=24151 dest_thread=24151 reply=1 flags=0x0 code=0x0
73537          <idle>-0     (-----) [003] d..2 24574.138759: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=110
73538  Binder:23968_C-25014 (23968) [000] .... 24574.138760: binder_transaction: transaction=1670305 dest_node=0 dest_proc=24827 dest_thread=24943 reply=1 flags=0x0 code=0x0
73539  Binder:23968_1-23981 (23968) [006] d..2 24574.138761: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
73540 s.nexuslauncher-24827 (24827) [001] d..2 24574.138765: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
73541  Binder:23968_5-24233 (23968) [003] .... 24574.138765: binder_transaction_received: transaction=1670303
73542  Binder:23968_1-23981 (23968) [006] d..3 24574.138766: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
73543<...>-12589 ( 23968) [001] .... 24574.138768: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
73544  Binder:23968_1-23981 (23968) [006] d..2 24574.138777: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
73545<...>-24151 ( 24151) [006] .... 24574.138779: binder_transaction_received: transaction=1670304
73546  Binder:23968_C-25014 (23968) [000] d..2 24574.138787: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=launcher-loader next_pid=24943 next_prio=130
73547<...>-12589 ( 23968) [001] d..2 24574.138825: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
73548          <idle>-0     (-----) [001] d..1 24574.138838: cpu_idle: state=0 cpu_id=1
73549<...>-24151 ( 24151) [006] .... 24574.138871: binder_transaction: transaction=1670306 dest_node=1270642 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x1
73550<...>-24151 ( 24151) [006] d..4 24574.138874: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=001
73551<...>-24943 ( 24827) [000] d.h5 24574.138876: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
73552<...>-24151 ( 24151) [006] d..5 24574.138883: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=006
73553<...>-24151 ( 24151) [006] d..2 24574.138904: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
73554<...>-24943 ( 24827) [000] d.h6 24574.138905: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
73555<...>-12589 ( 23968) [006] .... 24574.138905: binder_transaction_received: transaction=1670306
73556          <idle>-0     (-----) [001] .n.1 24574.138910: cpu_idle: state=4294967295 cpu_id=1
73557<...>-24943 ( 24827) [000] .... 24574.138916: binder_transaction_received: transaction=1670305
73558          <idle>-0     (-----) [001] d..2 24574.138917: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
73559  Binder:23968_5-24233 (23968) [003] .... 24574.138961: binder_transaction: transaction=1670307 dest_node=0 dest_proc=24827 dest_thread=24827 reply=1 flags=0x0 code=0x0
73560  Binder:23968_5-24233 (23968) [003] d..2 24574.138965: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
73561<...>-12589 ( 23968) [006] .... 24574.138977: binder_transaction: transaction=1670308 dest_node=0 dest_proc=24151 dest_thread=24151 reply=1 flags=0x0 code=0x0
73562  Binder:23968_5-24233 (23968) [003] d..3 24574.138978: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=003
73563<...>-12589 ( 23968) [006] d..2 24574.138979: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
73564  Binder:23968_5-24233 (23968) [003] .... 24574.138980: binder_set_priority: proc=23968 thread=24233 old=110 => new=120 desired=120
73565<...>-12589 ( 23968) [006] dn.3 24574.138983: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
73566<...>-12589 ( 23968) [006] d..2 24574.138986: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=R+ ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
73567<...>-24151 ( 24151) [006] .... 24574.138988: binder_transaction_received: transaction=1670308
73568 crtc_commit:111-253   (  253) [001] d..2 24574.138993: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
73569          <idle>-0     (-----) [001] d..1 24574.139000: cpu_idle: state=0 cpu_id=1
73570  Binder:23968_5-24233 (23968) [003] d..2 24574.139011: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
73571 s.nexuslauncher-24827 (24827) [003] .... 24574.139015: binder_transaction_received: transaction=1670307
73572<...>-24151 ( 24151) [006] d..3 24574.139059: sched_waking: comm=recents.fg pid=24369 prio=120 target_cpu=006
73573          <idle>-0     (-----) [001] dnh2 24574.139093: sched_wakeup: comm=recents.fg pid=24369 prio=120 target_cpu=001
73574          <idle>-0     (-----) [001] .n.1 24574.139097: cpu_idle: state=4294967295 cpu_id=1
73575          <idle>-0     (-----) [001] d..2 24574.139103: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=recents.fg next_pid=24369 next_prio=120
73576<...>-24151 ( 24151) [006] .... 24574.139125: binder_transaction: transaction=1670309 dest_node=1284535 dest_proc=23968 dest_thread=0 reply=0 flags=0x11 code=0x2
73577<...>-24151 ( 24151) [006] d..4 24574.139127: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=003
73578<...>-24151 ( 24151) [006] d..5 24574.139139: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
73579          <idle>-0     (-----) [007] .n.1 24574.139143: cpu_idle: state=4294967295 cpu_id=7
73580<...>-24151 ( 24151) [006] d.h5 24574.139158: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
73581          <idle>-0     (-----) [007] d..2 24574.139158: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
73582<...>-24943 ( 24827) [000] d.h4 24574.139161: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
73583  Binder:23968_5-24233 (23968) [007] .... 24574.139167: binder_transaction_received: transaction=1670309
73584<...>-24943 ( 24827) [000] dnh5 24574.139176: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
73585<...>-24151 ( 24151) [006] d..2 24574.139185: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
73586<...>-24943 ( 24827) [000] dnh1 24574.139189: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
73587<...>-24943 ( 24827) [000] d..2 24574.139196: sched_switch: prev_comm=launcher-loader prev_pid=24943 prev_prio=130 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
73588<...>-12589 ( 23968) [006] d..2 24574.139201: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
73589 s.nexuslauncher-24827 (24827) [003] d..3 24574.139202: sched_waking: comm=UiThreadHelper pid=25108 prio=118 target_cpu=007
73590<...>-24369 ( 24151) [001] .... 24574.139204: binder_transaction: transaction=1670310 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x5c
73591          <idle>-0     (-----) [006] d..1 24574.139206: cpu_idle: state=0 cpu_id=6
73592  Binder:23968_5-24233 (23968) [007] d..3 24574.139211: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=006
73593<...>-24369 ( 24151) [001] d..2 24574.139217: sched_switch: prev_comm=recents.fg prev_pid=24369 prev_prio=120 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
73594         sugov:0-559   (  559) [000] d..2 24574.139217: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=launcher-loader next_pid=24943 next_prio=130
73595  Binder:23968_5-24233 (23968) [007] d..4 24574.139221: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=006
73596          <idle>-0     (-----) [006] .n.1 24574.139225: cpu_idle: state=4294967295 cpu_id=6
73597          <idle>-0     (-----) [005] dnh2 24574.139228: sched_wakeup: comm=UiThreadHelper pid=25108 prio=118 target_cpu=005
73598          <idle>-0     (-----) [006] d..2 24574.139229: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
73599          <idle>-0     (-----) [005] .n.1 24574.139231: cpu_idle: state=4294967295 cpu_id=5
73600          <idle>-0     (-----) [005] d..2 24574.139235: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=UiThreadHelper next_pid=25108 next_prio=118
73601  crtc_event:111-254   (  254) [001] d..2 24574.139236: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=recents.fg next_pid=24369 next_prio=120
73602<...>-24369 ( 24151) [001] d..4 24574.139238: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=006
73603<...>-24369 ( 24151) [001] d..5 24574.139252: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=001
73604<...>-23994 ( 23968) [006] d..2 24574.139256: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
73605          <idle>-0     (-----) [006] d..1 24574.139260: cpu_idle: state=0 cpu_id=6
73606<...>-24369 ( 24151) [001] d..2 24574.139287: sched_switch: prev_comm=recents.fg prev_pid=24369 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
73607 s.nexuslauncher-24827 (24827) [003] d..3 24574.139288: sched_waking: comm=reflection-thre pid=25201 prio=120 target_cpu=005
73608  Binder:23968_5-24233 (23968) [007] d..2 24574.139289: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
73609<...>-12589 ( 23968) [001] .... 24574.139292: binder_transaction_received: transaction=1670310
73610          <idle>-0     (-----) [007] d..1 24574.139294: cpu_idle: state=0 cpu_id=7
73611          <idle>-0     (-----) [006] dnh2 24574.139310: sched_wakeup: comm=reflection-thre pid=25201 prio=120 target_cpu=006
73612          <idle>-0     (-----) [006] .n.1 24574.139313: cpu_idle: state=4294967295 cpu_id=6
73613          <idle>-0     (-----) [006] d..2 24574.139316: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=reflection-thre next_pid=25201 next_prio=120
73614 s.nexuslauncher-24827 (24827) [003] d..2 24574.139339: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
73615          <idle>-0     (-----) [003] d..1 24574.139348: cpu_idle: state=0 cpu_id=3
73616<...>-25201 ( 24827) [006] .... 24574.139424: binder_transaction: transaction=1670311 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x27
73617<...>-25201 ( 24827) [006] d..4 24574.139427: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
73618<...>-25201 ( 24827) [006] d..5 24574.139435: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=006
73619<...>-25201 ( 24827) [006] d..2 24574.139439: sched_switch: prev_comm=reflection-thre prev_pid=25201 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
73620  Binder:23968_5-24233 (23968) [006] .... 24574.139441: binder_transaction_received: transaction=1670311
73621<...>-12589 ( 23968) [001] .... 24574.139478: binder_transaction: transaction=1670312 dest_node=0 dest_proc=24151 dest_thread=24369 reply=1 flags=0x0 code=0x0
73622<...>-12589 ( 23968) [001] d..2 24574.139482: sched_waking: comm=recents.fg pid=24369 prio=120 target_cpu=001
73623<...>-12589 ( 23968) [001] dn.3 24574.139490: sched_wakeup: comm=recents.fg pid=24369 prio=120 target_cpu=001
73624<...>-12589 ( 23968) [001] d..2 24574.139495: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=R+ ==> next_comm=recents.fg next_pid=24369 next_prio=120
73625<...>-24369 ( 24151) [001] .... 24574.139500: binder_transaction_received: transaction=1670312
73626  Binder:23968_5-24233 (23968) [006] .... 24574.139510: binder_transaction: transaction=1670313 dest_node=0 dest_proc=24827 dest_thread=25201 reply=1 flags=0x0 code=0x0
73627  Binder:23968_5-24233 (23968) [006] d..2 24574.139512: sched_waking: comm=reflection-thre pid=25201 prio=120 target_cpu=006
73628  Binder:23968_5-24233 (23968) [006] d..3 24574.139516: sched_wakeup: comm=reflection-thre pid=25201 prio=120 target_cpu=006
73629  Binder:23968_5-24233 (23968) [006] d..2 24574.139526: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=reflection-thre next_pid=25201 next_prio=120
73630<...>-25201 ( 24827) [006] .... 24574.139528: binder_transaction_received: transaction=1670313
73631<...>-25108 ( 24827) [005] d..3 24574.139538: sched_waking: comm=GoogleApiHandle pid=24986 prio=129 target_cpu=000
73632<...>-24369 ( 24151) [001] d..2 24574.139548: sched_switch: prev_comm=recents.fg prev_pid=24369 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
73633          <idle>-0     (-----) [003] dnh2 24574.139560: sched_wakeup: comm=GoogleApiHandle pid=24986 prio=129 target_cpu=003
73634          <idle>-0     (-----) [003] .n.1 24574.139564: cpu_idle: state=4294967295 cpu_id=3
73635<...>-25108 ( 24827) [005] d..2 24574.139568: sched_switch: prev_comm=UiThreadHelper prev_pid=25108 prev_prio=118 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
73636          <idle>-0     (-----) [003] d..2 24574.139570: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=GoogleApiHandle next_pid=24986 next_prio=129
73637          <idle>-0     (-----) [005] d..1 24574.139573: cpu_idle: state=0 cpu_id=5
73638<...>-12589 ( 23968) [001] d..2 24574.139576: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
73639          <idle>-0     (-----) [001] d..1 24574.139586: cpu_idle: state=0 cpu_id=1
73640<...>-24943 ( 24827) [000] .... 24574.139660: binder_transaction: transaction=1670314 dest_node=1272463 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x10
73641<...>-24943 ( 24827) [000] d..4 24574.139665: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=001
73642<...>-24943 ( 24827) [000] dn.5 24574.139679: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=000
73643<...>-24943 ( 24827) [000] d..2 24574.139685: sched_switch: prev_comm=launcher-loader prev_pid=24943 prev_prio=130 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
73644<...>-12589 ( 23968) [000] .... 24574.139689: binder_transaction_received: transaction=1670314
73645<...>-25201 ( 24827) [006] .... 24574.139773: binder_transaction: transaction=1670315 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xa7
73646<...>-25201 ( 24827) [006] d..4 24574.139775: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=006
73647<...>-25201 ( 24827) [006] d..5 24574.139779: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=006
73648<...>-25201 ( 24827) [006] d..2 24574.139784: sched_switch: prev_comm=reflection-thre prev_pid=25201 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
73649  Binder:23968_5-24233 (23968) [006] .... 24574.139785: binder_transaction_received: transaction=1670315
73650<...>-12589 ( 23968) [000] .... 24574.139862: binder_transaction: transaction=1670316 dest_node=0 dest_proc=24827 dest_thread=24943 reply=1 flags=0x0 code=0x0
73651<...>-12589 ( 23968) [000] d..2 24574.139886: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=launcher-loader next_pid=24943 next_prio=130
73652<...>-24943 ( 24827) [000] .... 24574.139891: binder_transaction_received: transaction=1670316
73653<...>-24943 ( 24827) [000] d..2 24574.139938: sched_switch: prev_comm=launcher-loader prev_pid=24943 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73654          <idle>-0     (-----) [000] d..1 24574.139948: cpu_idle: state=0 cpu_id=0
73655<...>-24986 ( 24827) [003] .... 24574.140056: binder_transaction: transaction=1670317 dest_node=1669735 dest_proc=24741 dest_thread=0 reply=0 flags=0x11 code=0x1
73656<...>-24986 ( 24827) [003] d..4 24574.140100: sched_waking: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=006
73657<...>-24986 ( 24827) [003] d..5 24574.140140: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=000
73658          <idle>-0     (-----) [000] .n.1 24574.140146: cpu_idle: state=4294967295 cpu_id=0
73659<...>-24986 ( 24827) [003] d.h5 24574.140170: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
73660          <idle>-0     (-----) [000] d..2 24574.140171: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=120
73661<...>-24986 ( 24827) [003] d.h6 24574.140187: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
73662          <idle>-0     (-----) [001] .n.1 24574.140192: cpu_idle: state=4294967295 cpu_id=1
73663<...>-25141 ( 24741) [000] .... 24574.140192: binder_transaction_received: transaction=1670317
73664          <idle>-0     (-----) [001] d..2 24574.140198: 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
73665         sugov:0-559   (  559) [001] d..2 24574.140211: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
73666          <idle>-0     (-----) [001] d..1 24574.140216: cpu_idle: state=0 cpu_id=1
73667  Binder:23968_5-24233 (23968) [006] .... 24574.140301: binder_transaction: transaction=1670320 dest_node=0 dest_proc=24827 dest_thread=25201 reply=1 flags=0x0 code=0x0
73668  Binder:23968_5-24233 (23968) [006] d..2 24574.140303: sched_waking: comm=reflection-thre pid=25201 prio=120 target_cpu=006
73669  Binder:23968_5-24233 (23968) [006] d..3 24574.140308: sched_wakeup: comm=reflection-thre pid=25201 prio=120 target_cpu=006
73670  Binder:23968_5-24233 (23968) [006] d..2 24574.140319: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=reflection-thre next_pid=25201 next_prio=120
73671<...>-25201 ( 24827) [006] .... 24574.140321: binder_transaction_received: transaction=1670320
73672<...>-25201 ( 24827) [006] .... 24574.140370: binder_transaction: transaction=1670321 dest_node=1270934 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x4
73673<...>-25201 ( 24827) [006] d..4 24574.140372: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=006
73674<...>-25201 ( 24827) [006] d..5 24574.140376: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=006
73675<...>-25201 ( 24827) [006] d..2 24574.140380: sched_switch: prev_comm=reflection-thre prev_pid=25201 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
73676  Binder:23968_5-24233 (23968) [006] .... 24574.140381: binder_transaction_received: transaction=1670321
73677  Binder:23968_5-24233 (23968) [006] .... 24574.140663: binder_transaction: transaction=1670322 dest_node=0 dest_proc=24827 dest_thread=25201 reply=1 flags=0x0 code=0x0
73678  Binder:23968_5-24233 (23968) [006] d..2 24574.140665: sched_waking: comm=reflection-thre pid=25201 prio=120 target_cpu=006
73679  Binder:23968_5-24233 (23968) [006] d..3 24574.140670: sched_wakeup: comm=reflection-thre pid=25201 prio=120 target_cpu=006
73680  Binder:23968_5-24233 (23968) [006] d..2 24574.140680: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=reflection-thre next_pid=25201 next_prio=120
73681<...>-25201 ( 24827) [006] .... 24574.140682: binder_transaction_received: transaction=1670322
73682<...>-24986 ( 24827) [003] d.h1 24574.140896: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
73683<...>-25141 ( 24741) [000] d.s1 24574.140905: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
73684<...>-24986 ( 24827) [003] d.h2 24574.140915: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
73685          <idle>-0     (-----) [001] .n.1 24574.140920: cpu_idle: state=4294967295 cpu_id=1
73686          <idle>-0     (-----) [001] d..2 24574.140926: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
73687<...>-25141 ( 24741) [000] d.s2 24574.140937: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
73688<...>-25141 ( 24741) [000] d.s2 24574.140943: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
73689<...>-25141 ( 24741) [000] d.s3 24574.140951: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
73690        DispSync-23904 (23896) [001] d..1 24574.140957: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
73691        DispSync-23904 (23896) [001] d..2 24574.140975: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
73692<...>-25141 ( 24741) [000] d..2 24574.140984: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
73693        DispSync-23904 (23896) [001] d..2 24574.140992: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
73694     rcu_preempt-7     (    7) [001] d..2 24574.141004: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=005
73695     rcu_preempt-7     (    7) [001] d..3 24574.141035: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=001
73696<...>-24986 ( 24827) [003] .... 24574.141040: binder_transaction: transaction=1670323 dest_node=1322901 dest_proc=24741 dest_thread=0 reply=0 flags=0x10 code=0x2e
73697  appEventThread-23905 (23896) [000] d..3 24574.141041: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=003
73698     rcu_preempt-7     (    7) [001] d.h3 24574.141065: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
73699<...>-24986 ( 24827) [003] ...2 24574.141069: binder_set_priority: proc=24741 thread=24764 old=120 => new=129 desired=129
73700     rcu_preempt-7     (    7) [001] dnh4 24574.141071: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
73701<...>-24986 ( 24827) [003] d..4 24574.141074: sched_waking: comm=Binder:24741_1 pid=24764 prio=129 target_cpu=001
73702     rcu_preempt-7     (    7) [001] d..2 24574.141077: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
73703          <idle>-0     (-----) [005] dnh2 24574.141086: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=005
73704         sugov:0-559   (  559) [001] d..2 24574.141087: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
73705          <idle>-0     (-----) [005] .n.1 24574.141089: cpu_idle: state=4294967295 cpu_id=5
73706         rcuop/6-61    (   61) [001] d..2 24574.141092: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=002
73707          <idle>-0     (-----) [005] d..2 24574.141115: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
73708<...>-24986 ( 24827) [003] d..5 24574.141122: sched_wakeup: comm=Binder:24741_1 pid=24764 prio=129 target_cpu=003
73709  appEventThread-23905 (23896) [000] d..3 24574.141125: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
73710<...>-24986 ( 24827) [003] d..2 24574.141130: sched_switch: prev_comm=GoogleApiHandle prev_pid=24986 prev_prio=129 prev_state=S ==> next_comm=Binder:24741_1 next_pid=24764 next_prio=129
73711         rcuop/6-61    (   61) [001] d..3 24574.141133: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=002
73712<...>-24764 ( 24741) [003] .... 24574.141137: binder_transaction_received: transaction=1670323
73713           <...>-13147 (-----) [002] d..2 24574.141140: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=R+ ==> next_comm=rcuop/7 next_pid=69 next_prio=120
73714          <idle>-0     (-----) [007] dnh2 24574.141144: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
73715          <idle>-0     (-----) [007] .n.1 24574.141146: cpu_idle: state=4294967295 cpu_id=7
73716          <idle>-0     (-----) [007] d..2 24574.141151: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
73717         rcuop/6-61    (   61) [001] d..2 24574.141151: 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
73718     rcu_preempt-7     (    7) [001] d..2 24574.141153: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=006
73719  appEventThread-23905 (23896) [000] d..2 24574.141154: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=120
73720         rcuop/7-69    (   69) [002] d..2 24574.141158: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
73721     rcu_preempt-7     (    7) [001] d..3 24574.141179: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
73722     rcu_preempt-7     (    7) [001] d..2 24574.141214: 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
73723         rcuop/0-10    (   10) [001] d..2 24574.141218: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=004
73724<...>-25141 ( 24741) [000] d..1 24574.141227: sched_waking: comm=lowpool[3] pid=25296 prio=130 target_cpu=006
73725         rcuop/0-10    (   10) [001] d..3 24574.141243: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
73726<...>-25201 ( 24827) [006] d.h3 24574.141246: sched_wakeup: comm=lowpool[3] pid=25296 prio=130 target_cpu=006
73727<...>-24151 ( 24151) [007] .... 24574.141271: binder_transaction: transaction=1670326 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
73728<...>-24151 ( 24151) [007] d..4 24574.141277: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
73729         rcuop/0-10    (   10) [001] d..2 24574.141287: 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
73730<...>-24151 ( 24151) [007] d..5 24574.141294: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
73731         rcuop/1-21    (   21) [001] d..2 24574.141295: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
73732          <idle>-0     (-----) [004] .n.1 24574.141298: cpu_idle: state=4294967295 cpu_id=4
73733          <idle>-0     (-----) [004] d..2 24574.141318: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
73734<...>-23903 ( 23896) [004] .... 24574.141324: binder_transaction_received: transaction=1670326
73735<...>-25141 ( 24741) [000] d..2 24574.141326: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73736<...>-24151 ( 24151) [007] d..3 24574.141327: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
73737          <idle>-0     (-----) [000] d..1 24574.141341: cpu_idle: state=0 cpu_id=0
73738<...>-23903 ( 23896) [004] d..1 24574.141348: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
73739          <idle>-0     (-----) [000] dnh2 24574.141360: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
73740          <idle>-0     (-----) [000] dnh2 24574.141368: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
73741          <idle>-0     (-----) [000] .n.1 24574.141372: cpu_idle: state=4294967295 cpu_id=0
73742<...>-23903 ( 23896) [004] d..2 24574.141374: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
73743          <idle>-0     (-----) [004] d..1 24574.141377: cpu_idle: state=0 cpu_id=4
73744          <idle>-0     (-----) [000] d..2 24574.141377: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
73745  appEventThread-23905 (23896) [000] d..2 24574.141405: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
73746<...>-24151 ( 24151) [007] d..2 24574.141427: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
73747          <idle>-0     (-----) [007] d..1 24574.141432: cpu_idle: state=0 cpu_id=7
73748<...>-24764 ( 24741) [003] .... 24574.141441: binder_transaction: transaction=1670327 dest_node=1270624 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xa
73749<...>-24764 ( 24741) [003] d..4 24574.141446: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=006
73750<...>-24764 ( 24741) [003] d..5 24574.141463: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=003
73751<...>-25201 ( 24827) [006] d..4 24574.141483: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
73752<...>-25201 ( 24827) [006] d..5 24574.141497: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
73753<...>-24764 ( 24741) [003] d..2 24574.141500: sched_switch: prev_comm=Binder:24741_1 prev_pid=24764 prev_prio=129 prev_state=S ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
73754  Binder:23968_5-24233 (23968) [003] .... 24574.141505: binder_transaction_received: transaction=1670327
73755<...>-25201 ( 24827) [006] d..2 24574.141518: sched_switch: prev_comm=reflection-thre prev_pid=25201 prev_prio=120 prev_state=D ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
73756    RenderThread-24437 (24151) [000] d..1 24574.141527: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
73757          <idle>-0     (-----) [007] dnh2 24574.141544: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
73758          <idle>-0     (-----) [007] .n.1 24574.141546: cpu_idle: state=4294967295 cpu_id=7
73759          <idle>-0     (-----) [007] d..2 24574.141549: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
73760  kworker/u16:15-18488 (18488) [001] d..2 24574.141558: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
73761          <idle>-0     (-----) [001] d..1 24574.141566: cpu_idle: state=0 cpu_id=1
73762<...>-24151 ( 24151) [007] d..2 24574.141571: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
73763          <idle>-0     (-----) [007] d..1 24574.141575: cpu_idle: state=0 cpu_id=7
73764  Binder:23968_5-24233 (23968) [003] d.s2 24574.141593: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
73765    RenderThread-24437 (24151) [000] .... 24574.141593: binder_transaction: transaction=1670328 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
73766    RenderThread-24437 (24151) [000] d..4 24574.141598: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=004
73767    RenderThread-24437 (24151) [000] d..5 24574.141615: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
73768  Binder:23968_5-24233 (23968) [003] d.s3 24574.141625: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
73769  Binder:23968_5-24233 (23968) [003] d.s3 24574.141630: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
73770 s.nexuslauncher-24827 (24827) [005] .... 24574.141639: binder_transaction: transaction=1670329 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x9
73771    RenderThread-24437 (24151) [000] d.h5 24574.141659: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
73772    RenderThread-24437 (24151) [000] d.h6 24574.141668: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
73773          <idle>-0     (-----) [001] .n.1 24574.141673: cpu_idle: state=4294967295 cpu_id=1
73774    RenderThread-24437 (24151) [000] d..2 24574.141678: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
73775          <idle>-0     (-----) [001] d..2 24574.141679: 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
73776<...>-23903 ( 23896) [000] .... 24574.141683: binder_transaction_received: transaction=1670328
73777         sugov:0-559   (  559) [001] d..2 24574.141691: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
73778          <idle>-0     (-----) [001] d..1 24574.141696: cpu_idle: state=0 cpu_id=1
73779<...>-25296 ( 24741) [006] .... 24574.141703: binder_transaction: transaction=1670332 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x17
73780<...>-23903 ( 23896) [000] .... 24574.141740: binder_transaction: transaction=1670333 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
73781<...>-23903 ( 23896) [000] d..2 24574.141750: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
73782 s.nexuslauncher-24827 (24827) [005] ...2 24574.141750: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
73783 s.nexuslauncher-24827 (24827) [005] d..4 24574.141755: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=000
73784<...>-23903 ( 23896) [000] d..3 24574.141770: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=001
73785<...>-25296 ( 24741) [006] d..4 24574.141773: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
73786          <idle>-0     (-----) [001] dnh2 24574.141776: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=001
73787          <idle>-0     (-----) [001] .n.1 24574.141780: cpu_idle: state=4294967295 cpu_id=1
73788          <idle>-0     (-----) [001] d..2 24574.141785: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
73789<...>-25296 ( 24741) [006] d..5 24574.141788: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=007
73790    RenderThread-24437 (24151) [001] .... 24574.141791: binder_transaction_received: transaction=1670333
73791          <idle>-0     (-----) [007] .n.1 24574.141792: cpu_idle: state=4294967295 cpu_id=7
73792<...>-23903 ( 23896) [000] d..2 24574.141793: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
73793          <idle>-0     (-----) [007] d..2 24574.141796: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
73794  Binder:23968_5-24233 (23968) [003] .... 24574.141814: binder_transaction: transaction=1670334 dest_node=0 dest_proc=24741 dest_thread=24764 reply=1 flags=0x0 code=0x0
73795  Binder:23968_C-25014 (23968) [007] .... 24574.141814: binder_transaction_received: transaction=1670332
73796<...>-25296 ( 24741) [006] d..2 24574.141817: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=S ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
73797  Binder:23968_5-24233 (23968) [003] d..2 24574.141819: sched_waking: comm=Binder:24741_1 pid=24764 prio=129 target_cpu=003
73798 s.nexuslauncher-24827 (24827) [005] d..2 24574.141821: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
73799  Binder:23968_5-24233 (23968) [003] d..3 24574.141827: sched_wakeup: comm=Binder:24741_1 pid=24764 prio=129 target_cpu=003
73800          <idle>-0     (-----) [005] d..1 24574.141832: cpu_idle: state=0 cpu_id=5
73801          <idle>-0     (-----) [005] ...1 24574.141838: cpu_idle: state=4294967295 cpu_id=5
73802          <idle>-0     (-----) [005] d..1 24574.141839: cpu_idle: state=0 cpu_id=5
73803  Binder:23968_5-24233 (23968) [003] d..2 24574.141848: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_1 next_pid=24764 next_prio=129
73804<...>-24764 ( 24741) [003] .... 24574.141853: binder_transaction_received: transaction=1670334
73805  kworker/u16:15-18488 (18488) [000] .... 24574.141891: clk_set_rate: l3_cluster1_vote_clk 940800000
73806     kworker/6:0-21469 (21469) [006] d..2 24574.141964: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
73807          <idle>-0     (-----) [006] d..1 24574.141973: cpu_idle: state=0 cpu_id=6
73808  kworker/u16:15-18488 (18488) [000] d..2 24574.141990: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73809          <idle>-0     (-----) [000] d..1 24574.142000: cpu_idle: state=0 cpu_id=0
73810<...>-24764 ( 24741) [003] d.s2 24574.142035: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
73811          <idle>-0     (-----) [006] d.h2 24574.142049: sched_blocked_reason: pid=21469 iowait=0 caller=wait_for_tx_done+0x34/0x120
73812          <idle>-0     (-----) [006] dnh2 24574.142050: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
73813          <idle>-0     (-----) [006] .n.1 24574.142052: cpu_idle: state=4294967295 cpu_id=6
73814          <idle>-0     (-----) [006] d..2 24574.142056: 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
73815  Binder:23968_C-25014 (23968) [007] d..3 24574.142064: sched_waking: comm=lmkd pid=808 prio=98 target_cpu=001
73816          <idle>-0     (-----) [000] dnh2 24574.142086: sched_wakeup: comm=lmkd pid=808 prio=98 target_cpu=000
73817          <idle>-0     (-----) [000] .n.1 24574.142090: cpu_idle: state=4294967295 cpu_id=0
73818          <idle>-0     (-----) [000] d..2 24574.142095: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=808 next_prio=98
73819     kworker/6:0-21469 (21469) [006] d..2 24574.142110: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
73820          <idle>-0     (-----) [006] d..1 24574.142112: cpu_idle: state=0 cpu_id=6
73821<...>-24764 ( 24741) [003] d.s2 24574.142127: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
73822  Binder:23968_C-25014 (23968) [007] .... 24574.142135: binder_transaction: transaction=1670335 dest_node=1302474 dest_proc=24741 dest_thread=0 reply=0 flags=0x11 code=0x7
73823          <idle>-0     (-----) [006] d.h2 24574.142138: sched_blocked_reason: pid=21469 iowait=0 caller=wait_for_tx_done+0x34/0x120
73824          <idle>-0     (-----) [006] dnh2 24574.142139: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
73825          <idle>-0     (-----) [006] .n.1 24574.142141: cpu_idle: state=4294967295 cpu_id=6
73826  Binder:23968_C-25014 (23968) [007] d..4 24574.142143: sched_waking: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=000
73827          <idle>-0     (-----) [006] d..2 24574.142144: 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
73828     kworker/6:0-21469 (21469) [006] d..1 24574.142153: clk_enable: gcc_ufs_phy_axi_clk_src
73829            lmkd-808   (  808) [000] d.h1 24574.142157: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=000
73830     kworker/6:0-21469 (21469) [006] d..1 24574.142158: clk_enable: gcc_ufs_phy_axi_clk
73831     kworker/6:0-21469 (21469) [006] d..1 24574.142163: clk_enable: gcc_ufs_phy_axi_hw_ctl_clk
73832     kworker/6:0-21469 (21469) [006] d..1 24574.142166: clk_enable: gcc_aggre_ufs_phy_axi_clk
73833     kworker/6:0-21469 (21469) [006] d..1 24574.142170: clk_enable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
73834     kworker/6:0-21469 (21469) [006] d..1 24574.142173: clk_enable: gcc_ufs_phy_ahb_clk
73835     kworker/6:0-21469 (21469) [006] d..1 24574.142178: clk_enable: gcc_ufs_phy_unipro_core_clk_src
73836     kworker/6:0-21469 (21469) [006] d..1 24574.142181: clk_enable: gcc_ufs_phy_unipro_core_clk
73837     kworker/6:0-21469 (21469) [006] d..1 24574.142185: clk_enable: gcc_ufs_phy_unipro_core_hw_ctl_clk
73838     kworker/6:0-21469 (21469) [006] d..1 24574.142188: clk_enable: gcc_ufs_phy_ice_core_clk_src
73839     kworker/6:0-21469 (21469) [006] d..1 24574.142190: clk_enable: gcc_ufs_phy_ice_core_clk
73840     kworker/6:0-21469 (21469) [006] d..1 24574.142194: clk_enable: gcc_ufs_phy_ice_core_hw_ctl_clk
73841     kworker/6:0-21469 (21469) [006] d..1 24574.142196: clk_enable: gcc_ufs_phy_tx_symbol_0_clk
73842  Binder:23968_C-25014 (23968) [007] .... 24574.142203: binder_transaction: transaction=1670336 dest_node=0 dest_proc=24741 dest_thread=25296 reply=1 flags=0x0 code=0x0
73843  Binder:23968_C-25014 (23968) [007] d..2 24574.142205: sched_waking: comm=lowpool[3] pid=25296 prio=130 target_cpu=006
73844  Binder:23968_C-25014 (23968) [007] d..3 24574.142212: sched_wakeup: comm=lowpool[3] pid=25296 prio=130 target_cpu=007
73845  Binder:23968_C-25014 (23968) [007] d..2 24574.142223: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
73846<...>-24764 ( 24741) [003] d..1 24574.142224: sched_waking: comm=lowpool[8] pid=27168 prio=130 target_cpu=003
73847<...>-25296 ( 24741) [007] .... 24574.142225: binder_transaction_received: transaction=1670336
73848<...>-24764 ( 24741) [003] d..2 24574.142246: sched_wakeup: comm=lowpool[8] pid=27168 prio=130 target_cpu=003
73849<...>-24764 ( 24741) [003] d..1 24574.142388: sched_waking: comm=lowpool[3] pid=25296 prio=130 target_cpu=007
73850<...>-25296 ( 24741) [007] d..2 24574.142393: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
73851          <idle>-0     (-----) [007] d..1 24574.142398: cpu_idle: state=0 cpu_id=7
73852<...>-24764 ( 24741) [003] d..2 24574.142429: sched_switch: prev_comm=Binder:24741_1 prev_pid=24764 prev_prio=129 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
73853<...>-27168 ( 24741) [003] d..2 24574.142498: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
73854          <idle>-0     (-----) [003] d..1 24574.142512: cpu_idle: state=0 cpu_id=3
73855            lmkd-808   (  808) [000] d..2 24574.142569: sched_switch: prev_comm=lmkd prev_pid=808 prev_prio=98 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=120
73856<...>-25141 ( 24741) [000] .... 24574.142574: binder_transaction_received: transaction=1670335
73857<...>-25141 ( 24741) [000] d..3 24574.142700: sched_waking: comm=.gms.persistent pid=24741 prio=120 target_cpu=001
73858     kworker/6:0-21469 (21469) [006] d.h2 24574.142701: sched_wakeup: comm=lowpool[3] pid=25296 prio=130 target_cpu=006
73859     kworker/6:0-21469 (21469) [006] d..1 24574.142702: clk_enable: gcc_ufs_phy_rx_symbol_0_clk
73860<...>-25141 ( 24741) [000] d..4 24574.142727: sched_wakeup: comm=.gms.persistent pid=24741 prio=120 target_cpu=000
73861<...>-25141 ( 24741) [000] d..2 24574.142766: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=S ==> next_comm=.gms.persistent next_pid=24741 next_prio=120
73862    RenderThread-24437 (24151) [001] d..2 24574.142848: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
73863<...>-12589 ( 23968) [001] .... 24574.142856: binder_transaction_received: transaction=1670329
73864<...>-12589 ( 23968) [001] d.h1 24574.142946: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=001
73865<...>-24741 ( 24741) [000] .... 24574.142957: binder_transaction: transaction=1670337 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x11 code=0x2f
73866<...>-12589 ( 23968) [001] d.h2 24574.142961: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
73867<...>-24741 ( 24741) [000] d..4 24574.142967: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=007
73868<...>-12589 ( 23968) [001] d.h2 24574.142967: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=003
73869          <idle>-0     (-----) [003] .n.1 24574.142972: cpu_idle: state=4294967295 cpu_id=3
73870          <idle>-0     (-----) [003] d..2 24574.142980: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
73871          <idle>-0     (-----) [007] dnh2 24574.142984: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=007
73872          <idle>-0     (-----) [007] .n.1 24574.142986: cpu_idle: state=4294967295 cpu_id=7
73873          <idle>-0     (-----) [007] d..2 24574.142990: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
73874  Binder:23968_C-25014 (23968) [007] .... 24574.142992: binder_transaction_received: transaction=1670337
73875<...>-24741 ( 24741) [000] d..2 24574.143019: sched_switch: prev_comm=.gms.persistent prev_pid=24741 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73876          <idle>-0     (-----) [000] d..1 24574.143029: cpu_idle: state=0 cpu_id=0
73877          <idle>-0     (-----) [000] d.h3 24574.143066: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
73878<...>-12589 ( 23968) [001] d..2 24574.143077: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
73879          <idle>-0     (-----) [000] d.h4 24574.143084: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
73880          <idle>-0     (-----) [001] d..2 24574.143088: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
73881  Binder:23968_C-25014 (23968) [007] d..3 24574.143098: sched_waking: comm=lmkd pid=808 prio=98 target_cpu=000
73882          <idle>-0     (-----) [000] ...1 24574.143099: cpu_idle: state=4294967295 cpu_id=0
73883          <idle>-0     (-----) [000] d..1 24574.143102: cpu_idle: state=0 cpu_id=0
73884          <idle>-0     (-----) [000] dnh2 24574.143111: sched_wakeup: comm=lmkd pid=808 prio=98 target_cpu=000
73885          <idle>-0     (-----) [000] .n.1 24574.143114: cpu_idle: state=4294967295 cpu_id=0
73886  Binder:23968_C-25014 (23968) [007] d..1 24574.143116: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=001
73887          <idle>-0     (-----) [000] d..2 24574.143120: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=808 next_prio=98
73888 kgsl_worker_thr-246   (  246) [001] d..2 24574.143126: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
73889    RenderThread-24437 (24151) [003] .... 24574.143140: binder_transaction: transaction=1670338 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
73890 kgsl_worker_thr-246   (  246) [001] d..3 24574.143147: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
73891    RenderThread-24437 (24151) [003] d..4 24574.143150: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=000
73892 kgsl_worker_thr-246   (  246) [001] d.h1 24574.143152: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=001
73893 kgsl_worker_thr-246   (  246) [001] d..2 24574.143162: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
73894    RenderThread-24437 (24151) [003] dn.5 24574.143163: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
73895    RenderThread-24437 (24151) [003] d..2 24574.143169: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
73896  Binder:23968_C-25014 (23968) [007] d..2 24574.143171: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
73897<...>-23903 ( 23896) [003] .... 24574.143173: binder_transaction_received: transaction=1670338
73898          <idle>-0     (-----) [007] d..1 24574.143176: cpu_idle: state=0 cpu_id=7
73899  kworker/u16:15-18488 (18488) [001] d..2 24574.143187: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
73900     kworker/6:0-21469 (21469) [006] d..1 24574.143205: clk_enable: gcc_ufs_phy_rx_symbol_1_clk
73901<...>-23903 ( 23896) [003] .... 24574.143289: binder_transaction: transaction=1670339 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
73902<...>-23903 ( 23896) [003] d..2 24574.143312: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
73903    RenderThread-24437 (24151) [003] .... 24574.143317: binder_transaction_received: transaction=1670339
73904<...>-12589 ( 23968) [001] .... 24574.143327: binder_transaction: transaction=1670340 dest_node=0 dest_proc=24827 dest_thread=24827 reply=1 flags=0x0 code=0x0
73905<...>-12589 ( 23968) [001] d..2 24574.143332: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=005
73906<...>-12589 ( 23968) [001] dn.3 24574.143349: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
73907<...>-12589 ( 23968) [001] dnh3 24574.143383: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
73908    RenderThread-24437 (24151) [003] d..2 24574.143395: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
73909<...>-12589 ( 23968) [001] dnh4 24574.143402: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
73910          <idle>-0     (-----) [003] d..2 24574.143407: 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
73911<...>-12589 ( 23968) [001] d..2 24574.143414: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=R+ ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
73912 s.nexuslauncher-24827 (24827) [001] .... 24574.143421: binder_transaction_received: transaction=1670340
73913         sugov:0-559   (  559) [003] d..2 24574.143425: 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
73914            lmkd-808   (  808) [000] d..2 24574.143427: sched_switch: prev_comm=lmkd prev_pid=808 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73915          <idle>-0     (-----) [003] d..1 24574.143433: cpu_idle: state=0 cpu_id=3
73916          <idle>-0     (-----) [000] d.h3 24574.143453: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
73917          <idle>-0     (-----) [000] dnh4 24574.143459: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
73918          <idle>-0     (-----) [000] d..2 24574.143467: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
73919 irq/79-1436400.-24613 (24613) [000] d..2 24574.143574: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
73920          <idle>-0     (-----) [000] d..1 24574.143583: cpu_idle: state=0 cpu_id=0
73921          <idle>-0     (-----) [003] d.s3 24574.143621: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
73922          <idle>-0     (-----) [003] d.s4 24574.143629: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
73923          <idle>-0     (-----) [000] .n.1 24574.143634: cpu_idle: state=4294967295 cpu_id=0
73924          <idle>-0     (-----) [003] ...1 24574.143636: cpu_idle: state=4294967295 cpu_id=3
73925          <idle>-0     (-----) [003] d..1 24574.143638: cpu_idle: state=0 cpu_id=3
73926          <idle>-0     (-----) [000] d..2 24574.143639: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
73927 irq/79-1436400.-24613 (24613) [000] d..2 24574.143662: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73928          <idle>-0     (-----) [000] d..1 24574.143668: cpu_idle: state=0 cpu_id=0
73929     kworker/6:0-21469 (21469) [006] d..1 24574.143709: clk_enable: gcc_ufs_mem_clkref_clk
73930     kworker/6:0-21469 (21469) [006] d..1 24574.143714: clk_enable: gcc_ufs_phy_phy_aux_clk_src
73931     kworker/6:0-21469 (21469) [006] d..1 24574.143716: clk_enable: gcc_ufs_phy_phy_aux_clk
73932     kworker/6:0-21469 (21469) [006] d..1 24574.143720: clk_enable: gcc_ufs_phy_phy_aux_hw_ctl_clk
73933     kworker/6:0-21469 (21469) [006] d..2 24574.143772: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=D ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
73934<...>-25296 ( 24741) [006] d..1 24574.143776: sched_waking: comm=Binder:24741_1 pid=24764 prio=129 target_cpu=003
73935<...>-25296 ( 24741) [006] d..1 24574.143795: sched_waking: comm=lowpool[8] pid=27168 prio=130 target_cpu=003
73936          <idle>-0     (-----) [000] dnh2 24574.143796: sched_wakeup: comm=Binder:24741_1 pid=24764 prio=129 target_cpu=000
73937          <idle>-0     (-----) [000] .n.1 24574.143800: cpu_idle: state=4294967295 cpu_id=0
73938          <idle>-0     (-----) [000] d..2 24574.143807: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24741_1 next_pid=24764 next_prio=129
73939<...>-24764 ( 24741) [000] d.h3 24574.143813: sched_wakeup: comm=lowpool[8] pid=27168 prio=130 target_cpu=000
73940          <idle>-0     (-----) [003] d.s3 24574.143868: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
73941          <idle>-0     (-----) [003] ...1 24574.143878: cpu_idle: state=4294967295 cpu_id=3
73942<...>-25296 ( 24741) [006] d.h1 24574.143878: sched_blocked_reason: pid=21469 iowait=0 caller=wait_for_tx_done+0x34/0x120
73943<...>-25296 ( 24741) [006] dnh1 24574.143880: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
73944          <idle>-0     (-----) [003] d..1 24574.143881: cpu_idle: state=0 cpu_id=3
73945<...>-25296 ( 24741) [006] d..2 24574.143884: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=R ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
73946<...>-24764 ( 24741) [000] .... 24574.143918: binder_transaction: transaction=1670341 dest_node=1670324 dest_proc=24827 dest_thread=24986 reply=0 flags=0x10 code=0x1
73947     kworker/6:0-21469 (21469) [006] d..2 24574.143920: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=D ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
73948<...>-24764 ( 24741) [000] d..4 24574.143954: sched_waking: comm=GoogleApiHandle pid=24986 prio=129 target_cpu=003
73949<...>-24764 ( 24741) [000] d..5 24574.143970: sched_wakeup: comm=GoogleApiHandle pid=24986 prio=129 target_cpu=003
73950          <idle>-0     (-----) [003] dns3 24574.143979: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
73951<...>-24764 ( 24741) [000] d..2 24574.143980: sched_switch: prev_comm=Binder:24741_1 prev_pid=24764 prev_prio=129 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
73952          <idle>-0     (-----) [003] .n.1 24574.143988: cpu_idle: state=4294967295 cpu_id=3
73953<...>-25296 ( 24741) [006] d.h1 24574.143989: sched_blocked_reason: pid=21469 iowait=0 caller=wait_for_tx_done+0x34/0x120
73954<...>-25296 ( 24741) [006] dnh1 24574.143990: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
73955<...>-25296 ( 24741) [006] d..2 24574.143993: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=R ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
73956          <idle>-0     (-----) [003] d..2 24574.143995: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=GoogleApiHandle next_pid=24986 next_prio=129
73957<...>-24986 ( 24827) [003] .... 24574.144003: binder_transaction_received: transaction=1670341
73958     kworker/6:0-21469 (21469) [006] d..2 24574.144026: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=D ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
73959 s.nexuslauncher-24827 (24827) [001] .... 24574.144108: binder_transaction: transaction=1670344 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
73960 s.nexuslauncher-24827 (24827) [001] d..4 24574.144113: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=003
73961          <idle>-0     (-----) [005] dnh2 24574.144162: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
73962 s.nexuslauncher-24827 (24827) [001] d.h5 24574.144163: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
73963          <idle>-0     (-----) [005] .n.1 24574.144164: cpu_idle: state=4294967295 cpu_id=5
73964          <idle>-0     (-----) [005] d..2 24574.144167: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
73965 s.nexuslauncher-24827 (24827) [001] d.h6 24574.144176: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
73966<...>-27168 ( 24741) [000] d..2 24574.144183: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
73967<...>-23903 ( 23896) [005] .... 24574.144187: binder_transaction_received: transaction=1670344
73968         sugov:0-559   (  559) [000] d..2 24574.144195: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
73969<...>-23903 ( 23896) [005] d..1 24574.144198: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
73970 s.nexuslauncher-24827 (24827) [001] d..3 24574.144210: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
73971<...>-27168 ( 24741) [000] d..2 24574.144213: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73972<...>-23903 ( 23896) [005] d..2 24574.144213: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
73973          <idle>-0     (-----) [000] dnh3 24574.144220: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
73974          <idle>-0     (-----) [005] dnH3 24574.144235: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
73975          <idle>-0     (-----) [005] d..2 24574.144241: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
73976          <idle>-0     (-----) [000] d..2 24574.144248: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
73977    RenderThread-25194 (24827) [005] d..2 24574.144262: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
73978          <idle>-0     (-----) [005] d..1 24574.144266: cpu_idle: state=0 cpu_id=5
73979  appEventThread-23905 (23896) [000] d..2 24574.144297: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73980<...>-24986 ( 24827) [003] .... 24574.144300: binder_transaction: transaction=1670345 dest_node=0 dest_proc=24741 dest_thread=24764 reply=1 flags=0x0 code=0x0
73981<...>-25296 ( 24741) [006] d..2 24574.144300: sched_waking: comm=rcuos/6 pid=62 prio=120 target_cpu=001
73982<...>-24986 ( 24827) [003] d..2 24574.144304: sched_waking: comm=Binder:24741_1 pid=24764 prio=129 target_cpu=000
73983          <idle>-0     (-----) [000] d..1 24574.144306: cpu_idle: state=0 cpu_id=0
73984<...>-24986 ( 24827) [003] d..3 24574.144317: sched_wakeup: comm=Binder:24741_1 pid=24764 prio=129 target_cpu=003
73985 s.nexuslauncher-24827 (24827) [001] d.h1 24574.144320: sched_wakeup: comm=rcuos/6 pid=62 prio=120 target_cpu=001
73986<...>-24986 ( 24827) [003] d..2 24574.144337: sched_switch: prev_comm=GoogleApiHandle prev_pid=24986 prev_prio=129 prev_state=S ==> next_comm=Binder:24741_1 next_pid=24764 next_prio=129
73987<...>-24764 ( 24741) [003] .... 24574.144342: binder_transaction_received: transaction=1670345
73988<...>-24764 ( 24741) [003] d.s2 24574.144409: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
73989<...>-25296 ( 24741) [006] d.h1 24574.144421: sched_blocked_reason: pid=21469 iowait=0 caller=wait_for_tx_done+0x34/0x120
73990<...>-25296 ( 24741) [006] dnh1 24574.144423: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
73991<...>-25296 ( 24741) [006] d..2 24574.144427: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=R+ ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
73992     kworker/6:0-21469 (21469) [006] d..2 24574.144460: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=D ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
73993<...>-24764 ( 24741) [003] .... 24574.144479: binder_transaction: transaction=1670346 dest_node=0 dest_proc=24827 dest_thread=24986 reply=1 flags=0x0 code=0x0
73994<...>-24764 ( 24741) [003] d..2 24574.144483: sched_waking: comm=GoogleApiHandle pid=24986 prio=129 target_cpu=003
73995<...>-24764 ( 24741) [003] d..3 24574.144491: sched_wakeup: comm=GoogleApiHandle pid=24986 prio=129 target_cpu=003
73996<...>-24764 ( 24741) [003] .... 24574.144493: binder_set_priority: proc=24741 thread=24764 old=129 => new=120 desired=120
73997<...>-24764 ( 24741) [003] d..2 24574.144501: sched_switch: prev_comm=Binder:24741_1 prev_pid=24764 prev_prio=120 prev_state=R+ ==> next_comm=GoogleApiHandle next_pid=24986 next_prio=129
73998<...>-24986 ( 24827) [003] .... 24574.144504: binder_transaction_received: transaction=1670346
73999<...>-24986 ( 24827) [003] .... 24574.144599: binder_transaction: transaction=1670347 dest_node=1670342 dest_proc=24741 dest_thread=0 reply=0 flags=0x10 code=0x5f4e5446
74000<...>-24986 ( 24827) [003] ...2 24574.144603: binder_set_priority: proc=24741 thread=25141 old=120 => new=129 desired=129
74001<...>-24986 ( 24827) [003] d..4 24574.144605: sched_waking: comm=Binder:24741_4 pid=25141 prio=129 target_cpu=000
74002<...>-24986 ( 24827) [003] d..5 24574.144620: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=129 target_cpu=000
74003          <idle>-0     (-----) [000] .n.1 24574.144625: cpu_idle: state=4294967295 cpu_id=0
74004<...>-24986 ( 24827) [003] d..2 24574.144628: sched_switch: prev_comm=GoogleApiHandle prev_pid=24986 prev_prio=129 prev_state=S ==> next_comm=Binder:24741_1 next_pid=24764 next_prio=120
74005          <idle>-0     (-----) [000] d..2 24574.144631: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=129
74006<...>-25141 ( 24741) [000] .... 24574.144636: binder_transaction_received: transaction=1670347
74007<...>-24764 ( 24741) [003] d..2 24574.144665: sched_switch: prev_comm=Binder:24741_1 prev_pid=24764 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
74008          <idle>-0     (-----) [003] d..1 24574.144676: cpu_idle: state=0 cpu_id=3
74009<...>-25141 ( 24741) [000] .... 24574.144718: binder_transaction: transaction=1670348 dest_node=0 dest_proc=24827 dest_thread=24986 reply=1 flags=0x0 code=0x0
74010<...>-25141 ( 24741) [000] d..2 24574.144722: sched_waking: comm=GoogleApiHandle pid=24986 prio=129 target_cpu=003
74011<...>-25141 ( 24741) [000] d..3 24574.144735: sched_wakeup: comm=GoogleApiHandle pid=24986 prio=129 target_cpu=000
74012<...>-25141 ( 24741) [000] .... 24574.144737: binder_set_priority: proc=24741 thread=25141 old=129 => new=120 desired=120
74013 s.nexuslauncher-24827 (24827) [001] d..3 24574.144739: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
74014          <idle>-0     (-----) [005] dnh2 24574.144752: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
74015          <idle>-0     (-----) [005] .n.1 24574.144755: cpu_idle: state=4294967295 cpu_id=5
74016          <idle>-0     (-----) [005] d..2 24574.144758: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
74017 s.nexuslauncher-24827 (24827) [001] d..2 24574.144760: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=rcuos/6 next_pid=62 next_prio=120
74018<...>-25141 ( 24741) [000] d..2 24574.144762: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=S ==> next_comm=GoogleApiHandle next_pid=24986 next_prio=129
74019    RenderThread-25194 (24827) [005] d..1 24574.144763: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
74020<...>-62 ( 62) [001] d..2 24574.144766: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
74021<...>-24986 ( 24827) [000] .... 24574.144767: binder_transaction_received: transaction=1670348
74022    RenderThread-25194 (24827) [005] d..2 24574.144781: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
74023          <idle>-0     (-----) [003] dnh2 24574.144783: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=003
74024          <idle>-0     (-----) [005] d..1 24574.144783: cpu_idle: state=0 cpu_id=5
74025          <idle>-0     (-----) [003] .n.1 24574.144791: cpu_idle: state=4294967295 cpu_id=3
74026<...>-62 ( 62) [001] d..3 24574.144793: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
74027          <idle>-0     (-----) [003] d..2 24574.144798: 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
74028<...>-62 ( 62) [001] d..2 24574.144807: sched_switch: prev_comm=rcuos/6 prev_pid=62 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
74029       rcu_sched-8     (    8) [003] d..2 24574.144810: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
74030<...>-12589 ( 23968) [001] .... 24574.144811: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
74031<...>-12589 ( 23968) [001] d..2 24574.144857: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
74032          <idle>-0     (-----) [001] d..1 24574.144867: cpu_idle: state=0 cpu_id=1
74033 s.nexuslauncher-24827 (24827) [003] .... 24574.144875: binder_transaction: transaction=1670349 dest_node=1309207 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x6
74034          <idle>-0     (-----) [001] d.h4 24574.144884: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
74035 s.nexuslauncher-24827 (24827) [003] ...2 24574.144885: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
74036 s.nexuslauncher-24827 (24827) [003] d..4 24574.144887: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=001
74037<...>-25296 ( 24741) [006] d.h1 24574.144896: sched_blocked_reason: pid=21469 iowait=0 caller=ufshcd_uic_pwr_ctrl+0x3dc/0x758
74038<...>-25296 ( 24741) [006] dnh1 24574.144898: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
74039          <idle>-0     (-----) [001] ...1 24574.144899: cpu_idle: state=4294967295 cpu_id=1
74040 s.nexuslauncher-24827 (24827) [003] d..5 24574.144899: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=003
74041          <idle>-0     (-----) [001] d..1 24574.144902: cpu_idle: state=0 cpu_id=1
74042<...>-25296 ( 24741) [006] d..2 24574.144902: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=R ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
74043 s.nexuslauncher-24827 (24827) [003] d..2 24574.144907: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
74044<...>-12589 ( 23968) [003] .... 24574.144911: binder_transaction_received: transaction=1670349
74045          <idle>-0     (-----) [001] d.h2 24574.144918: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
74046          <idle>-0     (-----) [001] dnh3 24574.144926: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
74047          <idle>-0     (-----) [001] .n.1 24574.144931: cpu_idle: state=4294967295 cpu_id=1
74048     kworker/6:0-21469 (21469) [006] d..3 24574.144932: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
74049          <idle>-0     (-----) [001] d..2 24574.144936: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
74050        DispSync-23904 (23896) [001] d.h1 24574.144952: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
74051     kworker/6:0-21469 (21469) [006] d..2 24574.144955: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=D ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
74052        DispSync-23904 (23896) [001] d..1 24574.144963: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
74053        DispSync-23904 (23896) [001] d..2 24574.144978: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
74054<...>-24986 ( 24827) [000] d..2 24574.144990: sched_switch: prev_comm=GoogleApiHandle prev_pid=24986 prev_prio=129 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
74055        DispSync-23904 (23896) [001] d..2 24574.144991: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
74056  kworker/u16:15-18488 (18488) [001] d..2 24574.145022: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
74057          <idle>-0     (-----) [001] d..1 24574.145027: cpu_idle: state=0 cpu_id=1
74058   sfEventThread-23906 (23896) [000] d..3 24574.145030: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=005
74059   sfEventThread-23906 (23896) [000] d..4 24574.145053: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=001
74060          <idle>-0     (-----) [001] .n.1 24574.145058: cpu_idle: state=4294967295 cpu_id=1
74061   sfEventThread-23906 (23896) [000] d.h3 24574.145085: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
74062          <idle>-0     (-----) [001] d..2 24574.145086: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
74063   sfEventThread-23906 (23896) [000] d.h4 24574.145098: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
74064<...>-24041 ( 23968) [001] d..2 24574.145106: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
74065   sfEventThread-23906 (23896) [000] d..3 24574.145111: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
74066         sugov:0-559   (  559) [001] d..2 24574.145115: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
74067   sfEventThread-23906 (23896) [000] d..4 24574.145125: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
74068<...>-24041 ( 23968) [001] d..2 24574.145130: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
74069   sfEventThread-23906 (23896) [000] d..2 24574.145144: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=GoogleApiHandle next_pid=24986 next_prio=129
74070<...>-24986 ( 24827) [000] .... 24574.145292: binder_transaction: transaction=1670350 dest_node=1670342 dest_proc=24741 dest_thread=0 reply=0 flags=0x10 code=0x15
74071<...>-24986 ( 24827) [000] ...2 24574.145296: binder_set_priority: proc=24741 thread=25141 old=120 => new=129 desired=129
74072<...>-24986 ( 24827) [000] d..4 24574.145298: sched_waking: comm=Binder:24741_4 pid=25141 prio=129 target_cpu=000
74073<...>-24986 ( 24827) [000] d..5 24574.145306: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=129 target_cpu=000
74074<...>-24986 ( 24827) [000] d..2 24574.145314: sched_switch: prev_comm=GoogleApiHandle prev_pid=24986 prev_prio=129 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=129
74075<...>-25141 ( 24741) [000] .... 24574.145318: binder_transaction_received: transaction=1670350
74076  surfaceflinger-23896 (23896) [001] d.h3 24574.145328: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
74077  surfaceflinger-23896 (23896) [001] d.h4 24574.145351: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
74078  surfaceflinger-23896 (23896) [001] d.s1 24574.145360: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
74079  surfaceflinger-23896 (23896) [001] d.s2 24574.145368: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
74080<...>-12589 ( 23968) [003] d..3 24574.145440: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=003
74081          <idle>-0     (-----) [005] dnh2 24574.145468: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=005
74082  surfaceflinger-23896 (23896) [001] d..1 24574.145483: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
74083          <idle>-0     (-----) [005] .n.1 24574.145491: cpu_idle: state=4294967295 cpu_id=5
74084          <idle>-0     (-----) [005] d..2 24574.145493: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
74085  surfaceflinger-23896 (23896) [001] d..2 24574.145499: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
74086<...>-25141 ( 24741) [000] d..2 24574.145510: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=129 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
74087<...>-24003 ( 23968) [005] d..2 24574.145519: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
74088          <idle>-0     (-----) [005] d..1 24574.145522: cpu_idle: state=0 cpu_id=5
74089   sfEventThread-23906 (23896) [000] d..2 24574.145532: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
74090  kworker/u16:15-18488 (18488) [000] d..2 24574.145545: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=129
74091<...>-25141 ( 24741) [000] .... 24574.145556: binder_transaction: transaction=1670351 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x27
74092<...>-25141 ( 24741) [000] d..4 24574.145561: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=007
74093<...>-25141 ( 24741) [000] d..5 24574.145576: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
74094<...>-25141 ( 24741) [000] d.h5 24574.145608: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
74095<...>-25141 ( 24741) [000] dnh6 24574.145618: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
74096<...>-25141 ( 24741) [000] d..2 24574.145624: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=129 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
74097         sugov:0-559   (  559) [000] d..2 24574.145630: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
74098  Binder:23968_C-25014 (23968) [000] .... 24574.145635: binder_transaction_received: transaction=1670351
74099  surfaceflinger-23896 (23896) [001] ...1 24574.145642: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
74100  surfaceflinger-23896 (23896) [001] ...1 24574.145647: tracing_mark_write: E|23896
74101  surfaceflinger-23896 (23896) [001] .... 24574.145693: binder_transaction: transaction=1670352 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
74102  surfaceflinger-23896 (23896) [001] ...2 24574.145715: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
74103<...>-12589 ( 23968) [003] .... 24574.145716: binder_transaction: transaction=1670353 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
74104  surfaceflinger-23896 (23896) [001] d..4 24574.145723: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
74105<...>-12589 ( 23968) [003] d..4 24574.145724: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=003
74106  surfaceflinger-23896 (23896) [001] d..5 24574.145741: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
74107  Binder:23968_C-25014 (23968) [000] d..2 24574.145752: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
74108  surfaceflinger-23896 (23896) [001] d..2 24574.145752: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
74109          <idle>-0     (-----) [007] dnh2 24574.145754: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=007
74110          <idle>-0     (-----) [007] .n.1 24574.145756: cpu_idle: state=4294967295 cpu_id=7
74111  HwBinder:598_3-633   (  598) [000] .... 24574.145761: binder_transaction_received: transaction=1670352
74112     ksoftirqd/1-18    (   18) [001] d.s3 24574.145767: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
74113          <idle>-0     (-----) [007] d..2 24574.145781: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
74114<...>-24177 ( 24151) [007] .... 24574.145784: binder_transaction_received: transaction=1670353
74115<...>-25296 ( 24741) [006] d.h1 24574.145787: sched_blocked_reason: pid=21469 iowait=1 caller=blk_execute_rq+0xc0/0x118
74116<...>-25296 ( 24741) [006] dnh1 24574.145789: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
74117<...>-25296 ( 24741) [006] d..2 24574.145793: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=R ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
74118     ksoftirqd/1-18    (   18) [001] d..2 24574.145795: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
74119  HwBinder:598_3-633   (  598) [000] ...1 24574.145806: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
74120     kworker/6:0-21469 (21469) [006] d..2 24574.145807: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=D ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
74121<...>-24041 ( 23968) [001] d.h3 24574.145827: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
74122<...>-25296 ( 24741) [006] d.h1 24574.145837: sched_blocked_reason: pid=21469 iowait=0 caller=ufshcd_exec_dev_cmd+0x3a4/0x74c
74123<...>-25296 ( 24741) [006] dnh1 24574.145839: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
74124<...>-25296 ( 24741) [006] d..2 24574.145842: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=R ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
74125<...>-24177 ( 24151) [007] d..3 24574.145850: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
74126<...>-24177 ( 24151) [007] d..4 24574.145858: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
74127     kworker/6:0-21469 (21469) [006] d..3 24574.145867: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
74128<...>-24177 ( 24151) [007] d..2 24574.145883: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
74129  HwBinder:598_3-633   (  598) [000] d.h1 24574.145885: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
74130<...>-12589 ( 23968) [003] d..3 24574.145890: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=006
74131     kworker/6:0-21469 (21469) [006] d..2 24574.145898: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=S ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
74132  HwBinder:598_3-633   (  598) [000] ...1 24574.145904: tracing_mark_write: B|598|HWCSession::PresentDisplay::
74133<...>-24041 ( 23968) [001] d..2 24574.145922: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
74134<...>-24151 ( 24151) [007] d.h1 24574.145922: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=007
74135          <idle>-0     (-----) [001] d..1 24574.145929: cpu_idle: state=0 cpu_id=1
74136<...>-24151 ( 24151) [007] d..2 24574.145938: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=23994 next_prio=118
74137<...>-23994 ( 23968) [007] d..3 24574.145977: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=003
74138          <idle>-0     (-----) [001] dnh2 24574.145998: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=001
74139          <idle>-0     (-----) [001] .n.1 24574.146001: cpu_idle: state=4294967295 cpu_id=1
74140          <idle>-0     (-----) [001] d..2 24574.146006: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
74141<...>-23994 ( 23968) [007] d..2 24574.146007: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
74142          <idle>-0     (-----) [007] d..1 24574.146011: cpu_idle: state=0 cpu_id=7
74143  HwBinder:598_3-633   (  598) [000] ...1 24574.146027: tracing_mark_write: B|598|HWDeviceDRM::Commit::
74144  HwBinder:598_3-633   (  598) [000] ...1 24574.146036: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
74145<...>-23968 ( 23968) [001] .... 24574.146073: binder_transaction: transaction=1670354 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
74146<...>-23968 ( 23968) [001] d..4 24574.146078: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=007
74147          <idle>-0     (-----) [007] dnh2 24574.146096: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=007
74148          <idle>-0     (-----) [007] .n.1 24574.146098: cpu_idle: state=4294967295 cpu_id=7
74149          <idle>-0     (-----) [007] d..2 24574.146101: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
74150<...>-24177 ( 24151) [007] .... 24574.146103: binder_transaction_received: transaction=1670354
74151<...>-23968 ( 23968) [001] d..2 24574.146129: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
74152<...>-24177 ( 24151) [007] d..3 24574.146131: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
74153          <idle>-0     (-----) [001] d..1 24574.146135: cpu_idle: state=0 cpu_id=1
74154<...>-24177 ( 24151) [007] d.h3 24574.146164: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
74155          <idle>-0     (-----) [001] dnh2 24574.146166: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
74156          <idle>-0     (-----) [001] .n.1 24574.146172: cpu_idle: state=4294967295 cpu_id=1
74157          <idle>-0     (-----) [001] dnh2 24574.146178: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
74158          <idle>-0     (-----) [001] d..2 24574.146184: 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
74159<...>-24177 ( 24151) [007] d..2 24574.146190: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
74160         sugov:0-559   (  559) [001] d..2 24574.146191: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
74161          <idle>-0     (-----) [007] d..1 24574.146195: cpu_idle: state=0 cpu_id=7
74162<...>-12589 ( 23968) [003] .... 24574.146201: binder_transaction: transaction=1670355 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
74163<...>-12589 ( 23968) [003] ...2 24574.146207: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
74164<...>-12589 ( 23968) [003] d..4 24574.146209: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
74165<...>-12589 ( 23968) [003] dn.5 24574.146226: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=003
74166<...>-25296 ( 24741) [006] .... 24574.146253: binder_transaction: transaction=1670356 dest_node=1670318 dest_proc=24827 dest_thread=0 reply=0 flags=0x11 code=0x1
74167<...>-25296 ( 24741) [006] d..4 24574.146257: sched_waking: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=003
74168<...>-12589 ( 23968) [003] d..2 24574.146259: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
74169<...>-23903 ( 23896) [003] .... 24574.146264: binder_transaction_received: transaction=1670355
74170<...>-25296 ( 24741) [006] d..5 24574.146277: sched_wakeup: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=005
74171          <idle>-0     (-----) [005] .n.1 24574.146282: cpu_idle: state=4294967295 cpu_id=5
74172<...>-24151 ( 24151) [001] d..2 24574.146282: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
74173          <idle>-0     (-----) [005] d..2 24574.146285: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24827_5 next_pid=5558 next_prio=120
74174          <idle>-0     (-----) [001] d..1 24574.146288: cpu_idle: state=0 cpu_id=1
74175<...>-23903 ( 23896) [003] .... 24574.146298: binder_transaction: transaction=1670357 dest_node=0 dest_proc=23968 dest_thread=12589 reply=1 flags=0x0 code=0x0
74176<...>-5558 ( 24827) [005] .... 24574.146302: binder_transaction_received: transaction=1670356
74177<...>-23903 ( 23896) [003] .... 24574.146302: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
74178<...>-23903 ( 23896) [003] d..2 24574.146326: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
74179<...>-12589 ( 23968) [003] .... 24574.146331: binder_transaction_received: transaction=1670357
74180<...>-25296 ( 24741) [006] d..1 24574.146367: sched_waking: comm=lowpool[8] pid=27168 prio=130 target_cpu=000
74181          <idle>-0     (-----) [001] dnh2 24574.146390: sched_wakeup: comm=lowpool[8] pid=27168 prio=130 target_cpu=001
74182          <idle>-0     (-----) [001] .n.1 24574.146393: cpu_idle: state=4294967295 cpu_id=1
74183          <idle>-0     (-----) [001] d..2 24574.146398: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
74184  HwBinder:598_3-633   (  598) [000] d..2 24574.146448: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
74185<...>-25296 ( 24741) [006] d..2 24574.146453: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
74186  HwBinder:598_3-633   (  598) [000] d..3 24574.146464: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
74187          <idle>-0     (-----) [006] d..1 24574.146464: cpu_idle: state=0 cpu_id=6
74188<...>-5558 ( 24827) [005] d..2 24574.146469: sched_switch: prev_comm=Binder:24827_5 prev_pid=5558 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
74189          <idle>-0     (-----) [005] d..1 24574.146474: cpu_idle: state=0 cpu_id=5
74190<...>-27168 ( 24741) [001] d..2 24574.146474: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
74191  HwBinder:598_3-633   (  598) [000] ...1 24574.146533: tracing_mark_write: E|598
74192  HwBinder:598_3-633   (  598) [000] ...1 24574.146537: tracing_mark_write: E|598
74193  HwBinder:598_3-633   (  598) [000] ...1 24574.146581: tracing_mark_write: E|598
74194  HwBinder:598_3-633   (  598) [000] ...1 24574.146619: tracing_mark_write: E|598
74195  HwBinder:598_3-633   (  598) [000] .... 24574.146631: binder_transaction: transaction=1670358 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
74196  HwBinder:598_3-633   (  598) [000] d..2 24574.146645: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
74197          <idle>-0     (-----) [006] ...1 24574.146656: cpu_idle: state=4294967295 cpu_id=6
74198          <idle>-0     (-----) [006] d..1 24574.146658: cpu_idle: state=0 cpu_id=6
74199  HwBinder:598_3-633   (  598) [000] d..3 24574.146660: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
74200  HwBinder:598_3-633   (  598) [000] .... 24574.146663: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
74201<...>-12589 ( 23968) [003] d..2 24574.146672: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
74202  surfaceflinger-23896 (23896) [003] .... 24574.146678: binder_transaction_received: transaction=1670358
74203  HwBinder:598_3-633   (  598) [000] d..2 24574.146708: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
74204 crtc_commit:111-253   (  253) [001] d..2 24574.146795: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
74205  Binder:23968_C-25014 (23968) [000] .... 24574.146799: binder_transaction: transaction=1670359 dest_node=0 dest_proc=24741 dest_thread=25141 reply=1 flags=0x0 code=0x0
74206  Binder:23968_C-25014 (23968) [000] d..2 24574.146824: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
74207          <idle>-0     (-----) [004] ...1 24574.146845: cpu_idle: state=4294967295 cpu_id=4
74208          <idle>-0     (-----) [004] d..1 24574.146847: cpu_idle: state=0 cpu_id=4
74209          <idle>-0     (-----) [005] ...1 24574.146848: cpu_idle: state=4294967295 cpu_id=5
74210          <idle>-0     (-----) [005] d..1 24574.146849: cpu_idle: state=0 cpu_id=5
74211          <idle>-0     (-----) [006] ...1 24574.146850: cpu_idle: state=4294967295 cpu_id=6
74212          <idle>-0     (-----) [006] d..1 24574.146852: cpu_idle: state=0 cpu_id=6
74213          <idle>-0     (-----) [007] ...1 24574.146854: cpu_idle: state=4294967295 cpu_id=7
74214          <idle>-0     (-----) [007] d..1 24574.146855: cpu_idle: state=0 cpu_id=7
74215  kworker/u16:15-18488 (18488) [000] d..2 24574.146855: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=129
74216<...>-25141 ( 24741) [000] .... 24574.146861: binder_transaction_received: transaction=1670359
74217<...>-25141 ( 24741) [000] .... 24574.146955: binder_transaction: transaction=1670360 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x27
74218<...>-25141 ( 24741) [000] d..4 24574.146959: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
74219<...>-25141 ( 24741) [000] d..5 24574.146967: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
74220<...>-25141 ( 24741) [000] d..2 24574.146975: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=129 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
74221  Binder:23968_C-25014 (23968) [000] .... 24574.146979: binder_transaction_received: transaction=1670360
74222  surfaceflinger-23896 (23896) [003] d..2 24574.146979: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
74223          <idle>-0     (-----) [006] ...1 24574.147041: cpu_idle: state=4294967295 cpu_id=6
74224          <idle>-0     (-----) [006] d..1 24574.147042: cpu_idle: state=0 cpu_id=6
74225  Binder:23968_C-25014 (23968) [000] .... 24574.147112: binder_transaction: transaction=1670361 dest_node=0 dest_proc=24741 dest_thread=25141 reply=1 flags=0x0 code=0x0
74226  Binder:23968_C-25014 (23968) [000] d..2 24574.147116: sched_waking: comm=Binder:24741_4 pid=25141 prio=129 target_cpu=000
74227  Binder:23968_C-25014 (23968) [000] d..3 24574.147124: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=129 target_cpu=000
74228  Binder:23968_C-25014 (23968) [000] d..2 24574.147144: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=129
74229<...>-25141 ( 24741) [000] .... 24574.147148: binder_transaction_received: transaction=1670361
74230<...>-27168 ( 24741) [001] .... 24574.147156: binder_transaction: transaction=1670362 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x24
74231<...>-27168 ( 24741) [001] d..4 24574.147167: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
74232<...>-27168 ( 24741) [001] dn.5 24574.147180: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=001
74233<...>-27168 ( 24741) [001] d..2 24574.147186: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R+ ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
74234  Binder:23968_C-25014 (23968) [001] .... 24574.147190: binder_transaction_received: transaction=1670362
74235<...>-25141 ( 24741) [000] .... 24574.147225: binder_transaction: transaction=1670363 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x22
74236<...>-25141 ( 24741) [000] d..4 24574.147230: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=003
74237<...>-25141 ( 24741) [000] dn.5 24574.147245: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=000
74238<...>-25141 ( 24741) [000] d..2 24574.147251: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=129 prev_state=R+ ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
74239  Binder:23968_5-24233 (23968) [000] .... 24574.147256: binder_transaction_received: transaction=1670363
74240<...>-12589 ( 23968) [003] d..3 24574.147277: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
74241          <idle>-0     (-----) [006] dnh2 24574.147305: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
74242          <idle>-0     (-----) [006] .n.1 24574.147307: cpu_idle: state=4294967295 cpu_id=6
74243          <idle>-0     (-----) [006] d..2 24574.147311: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
74244<...>-12589 ( 23968) [003] d.h3 24574.147341: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
74245<...>-24073 ( 23968) [006] d..2 24574.147344: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
74246          <idle>-0     (-----) [006] d..1 24574.147348: cpu_idle: state=0 cpu_id=6
74247<...>-12589 ( 23968) [003] d.h4 24574.147352: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
74248  Binder:23968_C-25014 (23968) [001] d..2 24574.147361: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=118 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
74249         sugov:0-559   (  559) [001] d..2 24574.147370: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=118
74250  Binder:23968_5-24233 (23968) [000] .... 24574.147426: binder_transaction: transaction=1670364 dest_node=0 dest_proc=24741 dest_thread=25141 reply=1 flags=0x0 code=0x0
74251  Binder:23968_5-24233 (23968) [000] d..2 24574.147450: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=129
74252<...>-25141 ( 24741) [000] .... 24574.147455: binder_transaction_received: transaction=1670364
74253  Binder:23968_C-25014 (23968) [001] .... 24574.147457: binder_transaction: transaction=1670365 dest_node=0 dest_proc=24741 dest_thread=27168 reply=1 flags=0x0 code=0x0
74254  Binder:23968_C-25014 (23968) [001] d..2 24574.147486: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
74255<...>-27168 ( 24741) [001] .... 24574.147491: binder_transaction_received: transaction=1670365
74256<...>-27168 ( 24741) [001] d.s1 24574.147576: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
74257<...>-25141 ( 24741) [000] d.s3 24574.147578: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
74258<...>-27168 ( 24741) [001] dns2 24574.147629: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
74259<...>-25141 ( 24741) [000] d.s4 24574.147640: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
74260<...>-27168 ( 24741) [001] d..2 24574.147645: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
74261     rcu_preempt-7     (    7) [001] d..2 24574.147656: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=001
74262<...>-25141 ( 24741) [000] .... 24574.147667: binder_transaction: transaction=1670367 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x3
74263<...>-12589 ( 23968) [003] .... 24574.147668: binder_transaction: transaction=1670366 dest_node=1309275 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x1
74264<...>-25141 ( 24741) [000] d..4 24574.147670: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=001
74265     rcu_preempt-7     (    7) [001] d..3 24574.147680: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=000
74266     rcu_preempt-7     (    7) [001] d..2 24574.147682: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
74267          <idle>-0     (-----) [006] dnh2 24574.147696: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=006
74268          <idle>-0     (-----) [006] .n.1 24574.147719: cpu_idle: state=4294967295 cpu_id=6
74269          <idle>-0     (-----) [006] d..2 24574.147723: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
74270<...>-12589 ( 23968) [003] ...2 24574.147724: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
74271     rcu_preempt-7     (    7) [001] d..3 24574.147724: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
74272  Binder:23968_C-25014 (23968) [006] .... 24574.147725: binder_transaction_received: transaction=1670367
74273<...>-12589 ( 23968) [003] d..4 24574.147726: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=003
74274<...>-25141 ( 24741) [000] d..2 24574.147731: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=129 prev_state=R+ ==> next_comm=rcuop/6 next_pid=61 next_prio=120
74275<...>-12589 ( 23968) [003] dn.5 24574.147733: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=003
74276         rcuop/6-61    (   61) [000] d..2 24574.147737: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=002
74277<...>-12589 ( 23968) [003] d..2 24574.147740: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
74278     rcu_preempt-7     (    7) [001] d..2 24574.147744: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
74279<...>-23903 ( 23896) [003] .... 24574.147744: binder_transaction_received: transaction=1670366
74280         rcuop/6-61    (   61) [000] d..3 24574.147758: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=002
74281           <...>-13147 (-----) [002] d..2 24574.147768: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=R ==> next_comm=rcuop/7 next_pid=69 next_prio=120
74282<...>-23903 ( 23896) [003] d..3 24574.147776: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
74283         rcuop/6-61    (   61) [000] d..2 24574.147782: 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
74284         rcuop/7-69    (   69) [002] d..2 24574.147783: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
74285<...>-23903 ( 23896) [003] d..4 24574.147794: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
74286         rcuop/2-29    (   29) [000] d..2 24574.147799: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
74287<...>-23903 ( 23896) [003] d..2 24574.147812: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=110 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
74288<...>-12589 ( 23968) [003] d..2 24574.147828: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
74289          <idle>-0     (-----) [003] d..1 24574.147853: cpu_idle: state=0 cpu_id=3
74290          <idle>-0     (-----) [003] ...1 24574.147862: cpu_idle: state=4294967295 cpu_id=3
74291           <...>-13147 (-----) [002] d..1 24574.147864: sched_waking: comm=ReferenceQueueD pid=13139 prio=124 target_cpu=006
74292          <idle>-0     (-----) [003] d..1 24574.147864: cpu_idle: state=0 cpu_id=3
74293  kworker/u16:15-18488 (18488) [001] d..2 24574.147879: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
74294           <...>-13147 (-----) [002] d..2 24574.147889: sched_wakeup: comm=ReferenceQueueD pid=13139 prio=124 target_cpu=003
74295          <idle>-0     (-----) [003] .n.1 24574.147893: cpu_idle: state=4294967295 cpu_id=3
74296  surfaceflinger-23896 (23896) [000] ...1 24574.147914: tracing_mark_write: B|23896|HIDL::IComposerClient::getActiveConfig::client
74297  surfaceflinger-23896 (23896) [000] ...1 24574.147918: tracing_mark_write: E|23896
74298           <...>-13147 (-----) [002] d.h3 24574.147919: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
74299          <idle>-0     (-----) [003] d..2 24574.147920: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
74300           <...>-13147 (-----) [002] d.h4 24574.147928: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
74301<...>-27168 ( 24741) [001] d..2 24574.147938: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
74302  surfaceflinger-23896 (23896) [000] .... 24574.147938: binder_transaction: transaction=1670368 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x7
74303  surfaceflinger-23896 (23896) [000] ...2 24574.147943: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
74304         sugov:0-559   (  559) [001] d..2 24574.147946: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
74305  Binder:23968_C-25014 (23968) [006] .... 24574.147947: binder_transaction: transaction=1670369 dest_node=0 dest_proc=24741 dest_thread=25141 reply=1 flags=0x0 code=0x0
74306  surfaceflinger-23896 (23896) [000] d..4 24574.147947: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
74307  Binder:23968_C-25014 (23968) [006] d..2 24574.147964: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
74308  surfaceflinger-23896 (23896) [000] d..5 24574.147964: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
74309          <idle>-0     (-----) [006] d..1 24574.147969: cpu_idle: state=0 cpu_id=6
74310 ReferenceQueueD-13139 (13131) [003] d..1 24574.147969: sched_waking: comm=FinalizerDaemon pid=13140 prio=124 target_cpu=007
74311<...>-27168 ( 24741) [001] d..2 24574.147972: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
74312  surfaceflinger-23896 (23896) [000] d..2 24574.147974: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
74313  HwBinder:598_3-633   (  598) [001] .... 24574.147977: binder_transaction_received: transaction=1670368
74314         rcuop/2-29    (   29) [000] d..2 24574.147984: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=129
74315<...>-25141 ( 24741) [000] .... 24574.147989: binder_transaction_received: transaction=1670369
74316          <idle>-0     (-----) [006] dnh2 24574.147992: sched_wakeup: comm=FinalizerDaemon pid=13140 prio=124 target_cpu=006
74317          <idle>-0     (-----) [006] .n.1 24574.147994: cpu_idle: state=4294967295 cpu_id=6
74318          <idle>-0     (-----) [006] d..2 24574.147998: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerDaemon next_pid=13140 next_prio=124
74319  HwBinder:598_3-633   (  598) [001] ...1 24574.148000: tracing_mark_write: B|598|HIDL::IComposerClient::getActiveConfig::server
74320 FinalizerDaemon-13140 (13131) [006] d..1 24574.148014: sched_waking: comm=FinalizerWatchd pid=13141 prio=124 target_cpu=003
74321 ReferenceQueueD-13139 (13131) [003] d..2 24574.148016: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
74322  HwBinder:598_3-633   (  598) [001] ...1 24574.148016: tracing_mark_write: E|598
74323          <idle>-0     (-----) [003] d..1 24574.148022: cpu_idle: state=0 cpu_id=3
74324  HwBinder:598_3-633   (  598) [001] .... 24574.148024: binder_transaction: transaction=1670370 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
74325  HwBinder:598_3-633   (  598) [001] d..2 24574.148027: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
74326          <idle>-0     (-----) [003] dnh2 24574.148034: sched_wakeup: comm=FinalizerWatchd pid=13141 prio=124 target_cpu=003
74327           <...>-13147 (-----) [002] d..2 24574.148039: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
74328          <idle>-0     (-----) [003] .n.1 24574.148042: cpu_idle: state=4294967295 cpu_id=3
74329  HwBinder:598_3-633   (  598) [001] d..3 24574.148043: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
74330          <idle>-0     (-----) [003] d..2 24574.148050: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
74331  HwBinder:598_3-633   (  598) [001] .... 24574.148053: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
74332  surfaceflinger-23896 (23896) [003] .... 24574.148055: binder_transaction_received: transaction=1670370
74333           <...>-13147 (-----) [002] d..3 24574.148061: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
74334 FinalizerDaemon-13140 (13131) [006] d..2 24574.148073: sched_switch: prev_comm=FinalizerDaemon prev_pid=13140 prev_prio=124 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
74335          <idle>-0     (-----) [006] d..1 24574.148077: cpu_idle: state=0 cpu_id=6
74336  HwBinder:598_3-633   (  598) [001] d..2 24574.148078: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
74337  surfaceflinger-23896 (23896) [003] d..1 24574.148168: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=003
74338<...>-27168 ( 24741) [001] d..2 24574.148181: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
74339          <idle>-0     (-----) [005] dnh2 24574.148214: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
74340          <idle>-0     (-----) [005] .n.1 24574.148216: cpu_idle: state=4294967295 cpu_id=5
74341          <idle>-0     (-----) [005] d..2 24574.148219: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
74342  surfaceflinger-23896 (23896) [003] d..2 24574.148227: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=FinalizerWatchd next_pid=13141 next_prio=124
74343<...>-23903 ( 23896) [005] .... 24574.148234: binder_transaction: transaction=1670371 dest_node=0 dest_proc=23968 dest_thread=12589 reply=1 flags=0x0 code=0x0
74344 FinalizerWatchd-13141 (13131) [003] d..2 24574.148268: sched_switch: prev_comm=FinalizerWatchd prev_pid=13141 prev_prio=124 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
74345<...>-25141 ( 24741) [000] .... 24574.148273: binder_transaction: transaction=1670374 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x6a
74346          <idle>-0     (-----) [003] d..1 24574.148274: cpu_idle: state=0 cpu_id=3
74347<...>-25141 ( 24741) [000] d..4 24574.148277: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=006
74348     logd.writer-563   (  555) [001] d..2 24574.148289: 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
74349<...>-25141 ( 24741) [000] dn.5 24574.148293: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
74350          <idle>-0     (-----) [001] d..1 24574.148299: cpu_idle: state=0 cpu_id=1
74351<...>-25141 ( 24741) [000] d..2 24574.148324: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=129 prev_state=R+ ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
74352  Binder:23968_C-25014 (23968) [000] .... 24574.148328: binder_transaction_received: transaction=1670374
74353<...>-23903 ( 23896) [005] d..2 24574.148368: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=003
74354<...>-23903 ( 23896) [005] .... 24574.148380: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
74355          <idle>-0     (-----) [001] dnh2 24574.148388: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=001
74356          <idle>-0     (-----) [001] .n.1 24574.148392: cpu_idle: state=4294967295 cpu_id=1
74357          <idle>-0     (-----) [001] d..2 24574.148398: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
74358<...>-23903 ( 23896) [005] d..2 24574.148402: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
74359<...>-12589 ( 23968) [001] .... 24574.148402: binder_transaction_received: transaction=1670371
74360          <idle>-0     (-----) [005] d..1 24574.148406: cpu_idle: state=0 cpu_id=5
74361  Binder:23968_C-25014 (23968) [000] .... 24574.148438: binder_transaction: transaction=1670377 dest_node=0 dest_proc=24741 dest_thread=25141 reply=1 flags=0x0 code=0x0
74362<...>-12589 ( 23968) [001] d.h3 24574.148462: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
74363  Binder:23968_C-25014 (23968) [000] d..2 24574.148462: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=129
74364           <...>-13147 (-----) [002] d..2 24574.148466: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
74365<...>-25141 ( 24741) [000] .... 24574.148468: binder_transaction_received: transaction=1670377
74366           <...>-13147 (-----) [002] d..3 24574.148480: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
74367<...>-12589 ( 23968) [001] dnh4 24574.148481: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
74368<...>-12589 ( 23968) [001] d..2 24574.148503: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
74369  kworker/u16:15-18488 (18488) [001] d..2 24574.148514: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
74370          <idle>-0     (-----) [006] d.s3 24574.148519: sched_waking: comm=reflection-thre pid=25201 prio=120 target_cpu=006
74371<...>-12589 ( 23968) [001] .... 24574.148529: binder_transaction: transaction=1670378 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
74372<...>-12589 ( 23968) [001] ...2 24574.148534: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
74373<...>-12589 ( 23968) [001] d..4 24574.148551: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
74374          <idle>-0     (-----) [006] d.H4 24574.148555: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
74375          <idle>-0     (-----) [003] d.h2 24574.148555: sched_blocked_reason: pid=25201 iowait=1 caller=__filemap_fdatawait_range+0x120/0x184
74376          <idle>-0     (-----) [003] dnh2 24574.148559: sched_wakeup: comm=reflection-thre pid=25201 prio=120 target_cpu=003
74377          <idle>-0     (-----) [003] .n.1 24574.148563: cpu_idle: state=4294967295 cpu_id=3
74378<...>-12589 ( 23968) [001] dn.5 24574.148567: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=001
74379          <idle>-0     (-----) [003] d..2 24574.148568: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=reflection-thre next_pid=25201 next_prio=120
74380          <idle>-0     (-----) [006] d.s4 24574.148585: sched_waking: comm=kworker/6:1H pid=539 prio=100 target_cpu=006
74381<...>-25201 ( 24827) [003] dnh1 24574.148601: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
74382          <idle>-0     (-----) [006] dns5 24574.148603: sched_wakeup: comm=kworker/6:1H pid=539 prio=100 target_cpu=006
74383<...>-12589 ( 23968) [001] d..2 24574.148604: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
74384<...>-25201 ( 24827) [003] d..2 24574.148607: sched_switch: prev_comm=reflection-thre prev_pid=25201 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
74385<...>-23903 ( 23896) [001] .... 24574.148608: binder_transaction_received: transaction=1670378
74386          <idle>-0     (-----) [006] .n.1 24574.148613: cpu_idle: state=4294967295 cpu_id=6
74387         sugov:0-559   (  559) [003] d..2 24574.148614: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=reflection-thre next_pid=25201 next_prio=120
74388          <idle>-0     (-----) [006] d..2 24574.148617: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/6:1H next_pid=539 next_prio=100
74389<...>-23903 ( 23896) [001] .... 24574.148624: binder_transaction: transaction=1670379 dest_node=0 dest_proc=23968 dest_thread=12589 reply=1 flags=0x8 code=0x0
74390<...>-23903 ( 23896) [001] .... 24574.148628: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
74391<...>-539 ( 539) [006] d..2 24574.148634: sched_switch: prev_comm=kworker/6:1H prev_pid=539 prev_prio=100 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
74392<...>-12589 ( 23968) [006] .... 24574.148655: binder_transaction_received: transaction=1670379
74393<...>-23903 ( 23896) [001] d..2 24574.148671: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
74394     logd.writer-563   (  555) [001] d..2 24574.148720: 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
74395           <...>-13147 (-----) [002] .... 24574.148725: binder_transaction: transaction=1670380 dest_node=1668760 dest_proc=13122 dest_thread=0 reply=0 flags=0x10 code=0x1
74396          <idle>-0     (-----) [001] d..1 24574.148728: cpu_idle: state=0 cpu_id=1
74397           <...>-13147 (-----) [002] ...2 24574.148732: binder_set_priority: proc=13122 thread=13130 old=120 => new=112 desired=112
74398           <...>-13147 (-----) [002] d..4 24574.148735: sched_waking: comm=Binder:13122_2 pid=13130 prio=112 target_cpu=007
74399           <...>-13147 (-----) [002] dn.5 24574.148752: sched_wakeup: comm=Binder:13122_2 pid=13130 prio=112 target_cpu=002
74400           <...>-13147 (-----) [002] d..2 24574.148783: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=R+ ==> next_comm=Binder:13122_2 next_pid=13130 next_prio=112
74401           <...>-13130 (-----) [002] .... 24574.148790: binder_transaction_received: transaction=1670380
74402<...>-12589 ( 23968) [006] d..3 24574.148840: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=007
74403          <idle>-0     (-----) [001] dnh2 24574.148874: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=001
74404          <idle>-0     (-----) [001] .n.1 24574.148878: cpu_idle: state=4294967295 cpu_id=1
74405          <idle>-0     (-----) [001] d..2 24574.148884: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
74406<...>-25141 ( 24741) [000] .... 24574.148925: binder_transaction: transaction=1670381 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x74
74407<...>-23994 ( 23968) [001] d..3 24574.148929: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=001
74408<...>-25141 ( 24741) [000] d..4 24574.148930: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
74409<...>-25141 ( 24741) [000] dn.5 24574.148939: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
74410<...>-25141 ( 24741) [000] d..2 24574.148945: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=129 prev_state=R+ ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
74411  Binder:23968_C-25014 (23968) [000] .... 24574.148949: binder_transaction_received: transaction=1670381
74412          <idle>-0     (-----) [007] dnh2 24574.148974: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=007
74413          <idle>-0     (-----) [007] .n.1 24574.148976: cpu_idle: state=4294967295 cpu_id=7
74414          <idle>-0     (-----) [007] d..2 24574.148980: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
74415<...>-23994 ( 23968) [001] d..1 24574.148996: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=007
74416<...>-23968 ( 23968) [007] d..2 24574.149009: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
74417           <...>-13147 (-----) [007] d..2 24574.149036: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
74418<...>-12589 ( 23968) [006] dnh1 24574.149039: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=006
74419          <idle>-0     (-----) [007] d..1 24574.149039: cpu_idle: state=0 cpu_id=7
74420<...>-12589 ( 23968) [006] d..2 24574.149043: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
74421<...>-23994 ( 23968) [001] d..2 24574.149065: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
74422          <idle>-0     (-----) [001] d..1 24574.149073: cpu_idle: state=0 cpu_id=1
74423<...>-23968 ( 23968) [006] .... 24574.149091: binder_transaction: transaction=1670382 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x9
74424<...>-23968 ( 23968) [006] d..4 24574.149094: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=007
74425           <...>-13130 (-----) [002] d..2 24574.149124: sched_waking: comm=shell svc 13120 pid=13121 prio=120 target_cpu=007
74426<...>-23968 ( 23968) [006] d.h5 24574.149127: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
74427          <idle>-0     (-----) [001] dnh2 24574.149129: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=001
74428          <idle>-0     (-----) [001] .n.1 24574.149133: cpu_idle: state=4294967295 cpu_id=1
74429          <idle>-0     (-----) [001] d..2 24574.149140: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
74430<...>-25201 ( 24827) [003] dnh1 24574.149141: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
74431           <...>-13130 (-----) [002] d..3 24574.149144: sched_wakeup: comm=shell svc 13120 pid=13121 prio=120 target_cpu=002
74432<...>-24177 ( 24151) [001] .... 24574.149144: binder_transaction_received: transaction=1670382
74433<...>-25201 ( 24827) [003] d..2 24574.149149: sched_switch: prev_comm=reflection-thre prev_pid=25201 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
74434         sugov:0-559   (  559) [003] d..2 24574.149179: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=reflection-thre next_pid=25201 next_prio=120
74435<...>-23968 ( 23968) [006] .... 24574.149179: binder_transaction: transaction=1670383 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
74436           <...>-13130 (-----) [002] d..1 24574.149191: sched_waking: comm=main pid=13122 prio=120 target_cpu=007
74437<...>-23968 ( 23968) [006] d..2 24574.149196: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
74438           <...>-13130 (-----) [002] d..2 24574.149222: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=003
74439  Binder:23968_C-25014 (23968) [000] .... 24574.149225: binder_transaction: transaction=1670384 dest_node=0 dest_proc=24741 dest_thread=25141 reply=1 flags=0x0 code=0x0
74440<...>-24177 ( 24151) [001] d..3 24574.149246: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
74441  Binder:23968_C-25014 (23968) [000] d..2 24574.149251: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=129
74442<...>-25141 ( 24741) [000] .... 24574.149256: binder_transaction_received: transaction=1670384
74443          <idle>-0     (-----) [007] dnh2 24574.149293: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
74444          <idle>-0     (-----) [007] .n.1 24574.149295: cpu_idle: state=4294967295 cpu_id=7
74445          <idle>-0     (-----) [007] d..2 24574.149298: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
74446           <...>-13130 (-----) [002] .... 24574.149302: binder_transaction: transaction=1670385 dest_node=0 dest_proc=13131 dest_thread=13147 reply=1 flags=0x0 code=0x0
74447           <...>-13130 (-----) [002] d..2 24574.149306: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=007
74448<...>-12589 ( 23968) [006] d..3 24574.149312: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
74449           <...>-13130 (-----) [002] .... 24574.149318: binder_set_priority: proc=13122 thread=13130 old=112 => new=120 desired=120
74450<...>-24151 ( 24151) [007] d.h1 24574.149324: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=007
74451<...>-24177 ( 24151) [001] d..4 24574.149324: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
74452<...>-12589 ( 23968) [006] d..4 24574.149326: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=007
74453           <...>-13130 (-----) [002] d..2 24574.149329: sched_switch: prev_comm=Binder:13122_2 prev_pid=13130 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13120 next_pid=13121 next_prio=120
74454<...>-12589 ( 23968) [006] d..1 24574.149334: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=005
74455<...>-12589 ( 23968) [006] d..2 24574.149341: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=005
74456          <idle>-0     (-----) [005] .n.1 24574.149346: cpu_idle: state=4294967295 cpu_id=5
74457          <idle>-0     (-----) [005] d..2 24574.149350: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
74458<...>-24177 ( 24151) [001] .... 24574.149352: binder_transaction_received: transaction=1670383
74459<...>-12589 ( 23968) [006] d.h1 24574.149354: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
74460<...>-25141 ( 24741) [000] .... 24574.149359: binder_transaction: transaction=1670386 dest_node=1270791 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x11
74461<...>-25141 ( 24741) [000] d..4 24574.149362: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
74462 shell svc 13120-13121 ( 1007) [002] d..2 24574.149369: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
74463<...>-25141 ( 24741) [000] dn.5 24574.149370: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
74464<...>-24151 ( 24151) [007] .... 24574.149374: binder_transaction: transaction=1670387 dest_node=1271174 dest_proc=23968 dest_thread=0 reply=0 flags=0x11 code=0x42
74465<...>-25141 ( 24741) [000] d..2 24574.149376: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=129 prev_state=R+ ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
74466<...>-24151 ( 24151) [007] d..4 24574.149377: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=000
74467<...>-24003 ( 23968) [005] d..1 24574.149386: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=001
74468 shell svc 13120-13121 ( 1007) [002] d..3 24574.149395: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
74469  Binder:23968_C-25014 (23968) [000] d.h1 24574.149396: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=000
74470  Binder:23968_C-25014 (23968) [000] .... 24574.149399: binder_transaction_received: transaction=1670386
74471<...>-24003 ( 23968) [005] d..2 24574.149406: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=004
74472          <idle>-0     (-----) [004] .n.1 24574.149410: cpu_idle: state=4294967295 cpu_id=4
74473          <idle>-0     (-----) [004] d..2 24574.149413: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
74474<...>-24177 ( 24151) [001] d..2 24574.149413: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
74475 shell svc 13120-13121 ( 1007) [002] d..2 24574.149415: sched_switch: prev_comm=shell svc 13120 prev_pid=13121 prev_prio=120 prev_state=S ==> next_comm=Binder:13122_2 next_pid=13130 next_prio=120
74476<...>-24003 ( 23968) [005] d..1 24574.149433: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=004
74477<...>-24041 ( 23968) [004] d..2 24574.149438: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
74478          <idle>-0     (-----) [004] d..1 24574.149440: cpu_idle: state=0 cpu_id=4
74479<...>-24003 ( 23968) [005] d..2 24574.149444: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=004
74480          <idle>-0     (-----) [004] .n.1 24574.149448: cpu_idle: state=4294967295 cpu_id=4
74481          <idle>-0     (-----) [004] d..2 24574.149451: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
74482           <...>-13130 (-----) [002] d..2 24574.149453: sched_switch: prev_comm=Binder:13122_2 prev_pid=13130 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
74483  Binder:23968_5-24233 (23968) [002] .... 24574.149458: binder_transaction_received: transaction=1670387
74484<...>-12589 ( 23968) [006] .... 24574.149474: binder_transaction: transaction=1670388 dest_node=0 dest_proc=24827 dest_thread=24827 reply=1 flags=0x0 code=0x0
74485<...>-24003 ( 23968) [005] d..2 24574.149485: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
74486<...>-24151 ( 24151) [007] d..2 24574.149487: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
74487          <idle>-0     (-----) [005] d..1 24574.149489: cpu_idle: state=0 cpu_id=5
74488<...>-24041 ( 23968) [004] .... 24574.149492: binder_transaction: transaction=1670390 dest_node=1271137 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
74489<...>-24041 ( 23968) [004] d..4 24574.149495: sched_waking: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=001
74490<...>-24073 ( 23968) [007] d..2 24574.149500: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
74491           <...>-13147 (-----) [007] .... 24574.149502: binder_transaction_received: transaction=1670385
74492  Binder:23968_5-24233 (23968) [002] d..1 24574.149506: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
74493<...>-24041 ( 23968) [004] d..5 24574.149508: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=120 target_cpu=005
74494  Binder:23968_C-25014 (23968) [000] d..2 24574.149511: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=129
74495          <idle>-0     (-----) [005] .n.1 24574.149513: cpu_idle: state=4294967295 cpu_id=5
74496<...>-12589 ( 23968) [006] d..2 24574.149529: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=003
74497          <idle>-0     (-----) [005] d..2 24574.149530: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
74498<...>-23903 ( 23896) [005] .... 24574.149532: binder_transaction_received: transaction=1670390
74499<...>-24041 ( 23968) [004] d..1 24574.149535: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=005
74500            adbd-1007  ( 1007) [001] d..1 24574.149540: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=007
74501<...>-12589 ( 23968) [006] .... 24574.149543: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
74502<...>-24041 ( 23968) [004] d..2 24574.149544: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=004
74503<...>-23903 ( 23896) [005] d..1 24574.149544: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
74504<...>-25201 ( 24827) [003] dnh1 24574.149551: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=003
74505<...>-25201 ( 24827) [003] d..2 24574.149559: sched_switch: prev_comm=reflection-thre prev_pid=25201 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
74506  Binder:23968_5-24233 (23968) [002] d..2 24574.149560: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
74507 s.nexuslauncher-24827 (24827) [003] .... 24574.149565: binder_transaction_received: transaction=1670388
74508<...>-12589 ( 23968) [006] d..2 24574.149571: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
74509<...>-25141 ( 24741) [000] d..2 24574.149577: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=129 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
74510          <idle>-0     (-----) [006] d..1 24574.149578: cpu_idle: state=0 cpu_id=6
74511            adbd-1007  ( 1007) [001] d..2 24574.149583: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
74512            adbd-1007  ( 1007) [001] dnh2 24574.149609: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
74513<...>-23903 ( 23896) [005] d..2 24574.149609: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
74514          <idle>-0     (-----) [005] d..1 24574.149613: cpu_idle: state=0 cpu_id=5
74515            adbd-1007  ( 1007) [001] d..2 24574.149615: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
74516  Binder:23968_C-25014 (23968) [000] .... 24574.149648: binder_transaction: transaction=1670391 dest_node=0 dest_proc=24741 dest_thread=25141 reply=1 flags=0x0 code=0x0
74517   sfEventThread-23906 (23896) [001] d..2 24574.149650: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
74518  Binder:23968_C-25014 (23968) [000] d..2 24574.149652: sched_waking: comm=Binder:24741_4 pid=25141 prio=129 target_cpu=000
74519  Binder:23968_5-24233 (23968) [002] d..2 24574.149665: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=main next_pid=13122 next_prio=120
74520  Binder:23968_C-25014 (23968) [000] d..3 24574.149676: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=129 target_cpu=002
74521           <...>-13147 (-----) [007] d..3 24574.149692: sched_waking: comm=Instrumentation pid=13148 prio=120 target_cpu=001
74522  Binder:23968_C-25014 (23968) [000] d..2 24574.149699: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
74523           <...>-13147 (-----) [007] d..4 24574.149709: sched_wakeup: comm=Instrumentation pid=13148 prio=120 target_cpu=006
74524            adbd-1007  ( 1007) [001] d..2 24574.149710: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
74525          <idle>-0     (-----) [006] .n.1 24574.149714: cpu_idle: state=4294967295 cpu_id=6
74526          <idle>-0     (-----) [001] d..1 24574.149718: cpu_idle: state=0 cpu_id=1
74527 Shutdown thread-13122 (13122) [002] .... 24574.149719: binder_transaction: transaction=1670392 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x5f504e47
74528 Shutdown thread-13122 (13122) [002] d..4 24574.149723: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
74529          <idle>-0     (-----) [006] d..2 24574.149729: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Instrumentation next_pid=13148 next_prio=120
74530 Shutdown thread-13122 (13122) [002] d..5 24574.149741: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=001
74531           <...>-13147 (-----) [007] d..2 24574.149742: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
74532          <idle>-0     (-----) [001] .n.1 24574.149746: cpu_idle: state=4294967295 cpu_id=1
74533<...>-24041 ( 23968) [004] .... 24574.149746: binder_transaction: transaction=1670393 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
74534          <idle>-0     (-----) [007] d..1 24574.149747: cpu_idle: state=0 cpu_id=7
74535 Shutdown thread-13122 (13122) [002] d..2 24574.149751: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=129
74536          <idle>-0     (-----) [001] d..2 24574.149753: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
74537<...>-24041 ( 23968) [004] ...2 24574.149754: binder_set_priority: proc=23896 thread=23903 old=120 => new=110 desired=110
74538<...>-24041 ( 23968) [004] d..4 24574.149755: sched_waking: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
74539<...>-25141 ( 24741) [002] .... 24574.149756: binder_transaction_received: transaction=1670391
74540  Binder:23968_C-25014 (23968) [001] .... 24574.149758: binder_transaction_received: transaction=1670392
74541<...>-24041 ( 23968) [004] d..5 24574.149764: sched_wakeup: comm=Binder:23896_2 pid=23903 prio=110 target_cpu=005
74542          <idle>-0     (-----) [005] .n.1 24574.149768: cpu_idle: state=4294967295 cpu_id=5
74543           <...>-13148 (-----) [006] d..1 24574.149768: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=007
74544<...>-24041 ( 23968) [004] d..2 24574.149769: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=android.display next_pid=24003 next_prio=117
74545          <idle>-0     (-----) [005] d..2 24574.149772: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=110
74546<...>-23903 ( 23896) [005] .... 24574.149773: binder_transaction_received: transaction=1670393
74547  Binder:23968_C-25014 (23968) [001] .... 24574.149776: binder_transaction: transaction=1670394 dest_node=0 dest_proc=13122 dest_thread=13122 reply=1 flags=0x0 code=0x0
74548           <...>-13148 (-----) [006] d..2 24574.149777: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=007
74549<...>-24003 ( 23968) [004] d..2 24574.149779: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
74550  Binder:23968_C-25014 (23968) [001] d..2 24574.149779: sched_waking: comm=main pid=13122 prio=120 target_cpu=002
74551          <idle>-0     (-----) [007] .n.1 24574.149781: cpu_idle: state=4294967295 cpu_id=7
74552            adbd-23485 ( 1007) [000] d..2 24574.149781: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
74553          <idle>-0     (-----) [007] d..2 24574.149785: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
74554          <idle>-0     (-----) [004] d..1 24574.149785: cpu_idle: state=0 cpu_id=4
74555           <...>-13148 (-----) [006] d..2 24574.149790: sched_switch: prev_comm=Instrumentation prev_pid=13148 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
74556  Binder:23968_C-25014 (23968) [001] d..3 24574.149792: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=001
74557          <idle>-0     (-----) [006] d..1 24574.149794: cpu_idle: state=0 cpu_id=6
74558<...>-25141 ( 24741) [002] d.h2 24574.149800: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=007
74559           <...>-13147 (-----) [007] d..3 24574.149804: sched_waking: comm=Instrumentation pid=13148 prio=120 target_cpu=006
74560<...>-24376 ( 24151) [000] d..2 24574.149806: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=reflection-thre next_pid=25201 next_prio=120
74561           <...>-13147 (-----) [007] d..4 24574.149810: sched_wakeup: comm=Instrumentation pid=13148 prio=120 target_cpu=006
74562  Binder:23968_C-25014 (23968) [001] d..2 24574.149811: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=main next_pid=13122 next_prio=120
74563<...>-23903 ( 23896) [005] .... 24574.149814: binder_transaction: transaction=1670395 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
74564          <idle>-0     (-----) [006] .n.1 24574.149814: cpu_idle: state=4294967295 cpu_id=6
74565 Shutdown thread-13122 (13122) [001] .... 24574.149815: binder_transaction_received: transaction=1670394
74566<...>-23903 ( 23896) [005] d..2 24574.149816: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=004
74567          <idle>-0     (-----) [006] d..2 24574.149819: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Instrumentation next_pid=13148 next_prio=120
74568<...>-23903 ( 23896) [005] d..3 24574.149823: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=005
74569<...>-23903 ( 23896) [005] .... 24574.149824: binder_set_priority: proc=23896 thread=23903 old=110 => new=120 desired=120
74570<...>-23903 ( 23896) [005] d..2 24574.149828: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=R+ ==> next_comm=android.anim next_pid=24041 next_prio=110
74571<...>-24041 ( 23968) [005] .... 24574.149830: binder_transaction_received: transaction=1670395
74572           <...>-13147 (-----) [007] d..2 24574.149833: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
74573          <idle>-0     (-----) [007] d..1 24574.149836: cpu_idle: state=0 cpu_id=7
74574<...>-25141 ( 24741) [002] d.h3 24574.149836: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
74575 s.nexuslauncher-24827 (24827) [003] .... 24574.149846: binder_transaction: transaction=1670396 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
74576<...>-25201 ( 24827) [000] d..2 24574.149846: sched_switch: prev_comm=reflection-thre prev_pid=25201 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
74577 Shutdown thread-13122 (13122) [001] d..2 24574.149848: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
74578 s.nexuslauncher-24827 (24827) [003] ...2 24574.149851: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
74579          <idle>-0     (-----) [001] d..1 24574.149855: cpu_idle: state=0 cpu_id=1
74580<...>-24041 ( 23968) [005] d..1 24574.149859: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=002
74581   kworker/u17:2-23076 (23076) [000] d..2 24574.149865: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
74582 s.nexuslauncher-24827 (24827) [003] d..4 24574.149875: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=007
74583   kworker/u17:2-23076 (23076) [000] d..3 24574.149882: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
74584          <idle>-0     (-----) [001] dnh2 24574.149892: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=001
74585 s.nexuslauncher-24827 (24827) [003] d..5 24574.149893: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=003
74586          <idle>-0     (-----) [001] .n.1 24574.149896: cpu_idle: state=4294967295 cpu_id=1
74587   kworker/u17:2-23076 (23076) [000] d..2 24574.149897: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
74588           <...>-13148 (-----) [006] d..1 24574.149901: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=007
74589          <idle>-0     (-----) [001] d..2 24574.149902: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
74590     kworker/0:1-13012 (13012) [000] d..2 24574.149906: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
74591           <...>-13148 (-----) [006] d..2 24574.149932: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=007
74592          <idle>-0     (-----) [007] .n.1 24574.149936: cpu_idle: state=4294967295 cpu_id=7
74593 s.nexuslauncher-24827 (24827) [003] d..2 24574.149936: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
74594  Binder:23968_5-24233 (23968) [001] d..2 24574.149938: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
74595          <idle>-0     (-----) [007] d..2 24574.149939: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
74596  Binder:23896_5-25989 (23896) [003] .... 24574.149943: binder_transaction_received: transaction=1670396
74597           <...>-13148 (-----) [006] d..2 24574.149943: sched_switch: prev_comm=Instrumentation prev_pid=13148 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
74598          <idle>-0     (-----) [001] d..1 24574.149944: cpu_idle: state=0 cpu_id=1
74599          <idle>-0     (-----) [001] .n.1 24574.149946: cpu_idle: state=4294967295 cpu_id=1
74600          <idle>-0     (-----) [006] d..1 24574.149947: cpu_idle: state=0 cpu_id=6
74601     kworker/0:1-13012 (13012) [000] d..3 24574.149948: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
74602          <idle>-0     (-----) [001] d..2 24574.149953: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
74603  Binder:23896_5-25989 (23896) [003] .... 24574.149962: binder_transaction: transaction=1670397 dest_node=0 dest_proc=24827 dest_thread=24827 reply=1 flags=0x8 code=0x0
74604     kworker/0:1-13012 (13012) [000] d..2 24574.149965: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=reflection-thre next_pid=25201 next_prio=120
74605  Binder:23896_5-25989 (23896) [003] d..2 24574.149966: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=003
74606  Binder:23896_5-25989 (23896) [003] d..3 24574.149973: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=003
74607  Binder:23896_5-25989 (23896) [003] .... 24574.149975: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
74608           <...>-13147 (-----) [007] d..3 24574.149978: sched_waking: comm=Instrumentation pid=13148 prio=120 target_cpu=006
74609           <...>-13147 (-----) [007] d..4 24574.149985: sched_wakeup: comm=Instrumentation pid=13148 prio=120 target_cpu=006
74610          <idle>-0     (-----) [006] .n.1 24574.149989: cpu_idle: state=4294967295 cpu_id=6
74611          <idle>-0     (-----) [006] d..2 24574.149993: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Instrumentation next_pid=13148 next_prio=120
74612  Binder:23896_5-25989 (23896) [003] d..2 24574.149996: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
74613           <...>-13147 (-----) [007] d..2 24574.149997: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
74614 s.nexuslauncher-24827 (24827) [003] .... 24574.149999: binder_transaction_received: transaction=1670397
74615          <idle>-0     (-----) [007] d..1 24574.150001: cpu_idle: state=0 cpu_id=7
74616            adbd-23485 ( 1007) [001] d..2 24574.150003: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
74617          <idle>-0     (-----) [001] d..1 24574.150009: cpu_idle: state=0 cpu_id=1
74618           <...>-13148 (-----) [006] d..1 24574.150011: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=007
74619           <...>-13148 (-----) [006] d..2 24574.150017: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=007
74620          <idle>-0     (-----) [007] .n.1 24574.150021: cpu_idle: state=4294967295 cpu_id=7
74621<...>-25141 ( 24741) [002] d.h2 24574.150022: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
74622          <idle>-0     (-----) [007] d..2 24574.150025: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
74623           <...>-13148 (-----) [006] d..2 24574.150028: sched_switch: prev_comm=Instrumentation prev_pid=13148 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
74624          <idle>-0     (-----) [006] d..1 24574.150032: cpu_idle: state=0 cpu_id=6
74625<...>-24041 ( 23968) [005] .... 24574.150032: binder_transaction: transaction=1670398 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
74626<...>-24041 ( 23968) [005] d..4 24574.150035: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=000
74627<...>-25141 ( 24741) [002] d.h3 24574.150036: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
74628<...>-25201 ( 24827) [000] d..2 24574.150046: sched_switch: prev_comm=reflection-thre prev_pid=25201 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
74629           <...>-13147 (-----) [007] d..3 24574.150047: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
74630   kworker/u17:2-23076 (23076) [000] d..2 24574.150054: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
74631          <idle>-0     (-----) [001] dnh2 24574.150062: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=001
74632          <idle>-0     (-----) [001] .n.1 24574.150066: cpu_idle: state=4294967295 cpu_id=1
74633   kworker/u17:2-23076 (23076) [000] d..3 24574.150066: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
74634           <...>-13147 (-----) [007] d..4 24574.150067: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=006
74635          <idle>-0     (-----) [001] d..2 24574.150071: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
74636          <idle>-0     (-----) [006] .n.1 24574.150071: cpu_idle: state=4294967295 cpu_id=6
74637          <idle>-0     (-----) [006] d..2 24574.150075: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
74638<...>-24376 ( 24151) [001] .... 24574.150076: binder_transaction_received: transaction=1670398
74639<...>-24041 ( 23968) [005] d..3 24574.150089: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=001
74640   kworker/u17:2-23076 (23076) [000] d..2 24574.150094: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
74641     kworker/0:1-13012 (13012) [000] d..2 24574.150099: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
74642           <...>-13147 (-----) [007] d..2 24574.150103: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
74643          <idle>-0     (-----) [007] d..1 24574.150107: cpu_idle: state=0 cpu_id=7
74644 s.nexuslauncher-24827 (24827) [003] d..3 24574.150108: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
74645<...>-24376 ( 24151) [001] d.h1 24574.150109: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=001
74646     kworker/0:1-13012 (13012) [000] d..3 24574.150118: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
74647     kworker/0:1-13012 (13012) [000] d..2 24574.150127: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
74648          <idle>-0     (-----) [007] dnh2 24574.150131: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=007
74649          <idle>-0     (-----) [007] .n.1 24574.150134: cpu_idle: state=4294967295 cpu_id=7
74650          <idle>-0     (-----) [007] d..2 24574.150137: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
74651 s.nexuslauncher-24827 (24827) [003] .... 24574.150146: binder_transaction: transaction=1670399 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0xc
74652<...>-24376 ( 24151) [001] d..3 24574.150149: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
74653 s.nexuslauncher-24827 (24827) [003] ...2 24574.150149: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
74654 s.nexuslauncher-24827 (24827) [003] d..4 24574.150151: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=003
74655 s.nexuslauncher-24827 (24827) [003] d..5 24574.150159: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=003
74656 s.nexuslauncher-24827 (24827) [003] d..2 24574.150166: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
74657    RenderThread-25194 (24827) [007] d.h1 24574.150166: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
74658  Binder:23896_5-25989 (23896) [003] .... 24574.150170: binder_transaction_received: transaction=1670399
74659<...>-25141 ( 24741) [002] .... 24574.150181: binder_transaction: transaction=1670400 dest_node=1270632 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x1
74660    RenderThread-25194 (24827) [007] .... 24574.150184: binder_transaction: transaction=1670401 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x9
74661    RenderThread-25194 (24827) [007] ...2 24574.150191: binder_set_priority: proc=23896 thread=23986 old=120 => new=110 desired=110
74662    RenderThread-25194 (24827) [007] d..4 24574.150192: sched_waking: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=004
74663<...>-24376 ( 24151) [001] d..2 24574.150195: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=23994 next_prio=118
74664            adbd-23485 ( 1007) [000] d..2 24574.150197: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=reflection-thre next_pid=25201 next_prio=120
74665    RenderThread-25194 (24827) [007] d..5 24574.150201: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=004
74666           <...>-13131 (-----) [006] d..2 24574.150206: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
74667    RenderThread-25194 (24827) [007] d..2 24574.150206: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
74668          <idle>-0     (-----) [004] .n.1 24574.150206: cpu_idle: state=4294967295 cpu_id=4
74669          <idle>-0     (-----) [004] d..2 24574.150210: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=110
74670  Binder:23896_5-25989 (23896) [003] ...1 24574.150212: tracing_mark_write: B|23896|HIDL::IMapper::createDescriptor_2_1::passthrough
74671  Binder:23896_3-23986 (23896) [004] .... 24574.150214: binder_transaction_received: transaction=1670401
74672  Binder:23896_5-25989 (23896) [003] ...1 24574.150222: tracing_mark_write: E|23896
74673<...>-25201 ( 24827) [000] d.h1 24574.150227: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
74674  Binder:23896_5-25989 (23896) [003] ...1 24574.150235: tracing_mark_write: B|23896|HIDL::IAllocator::allocate::client
74675           <...>-13131 (-----) [006] d..1 24574.150236: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=007
74676  Binder:23896_5-25989 (23896) [003] ...1 24574.150237: tracing_mark_write: E|23896
74677<...>-23994 ( 23968) [001] d..3 24574.150237: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=006
74678           <...>-13131 (-----) [006] d..2 24574.150244: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=007
74679<...>-24151 ( 24151) [007] d..2 24574.150248: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
74680           <...>-13131 (-----) [006] d.h2 24574.150252: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=006
74681           <...>-13131 (-----) [006] d..1 24574.150254: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=007
74682<...>-25141 ( 24741) [002] d..4 24574.150257: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=001
74683  Binder:23896_5-25989 (23896) [003] .... 24574.150259: binder_transaction: transaction=1670408 dest_node=959 dest_proc=786 dest_thread=0 reply=0 flags=0x10 code=0x2
74684           <...>-13147 (-----) [007] d..2 24574.150261: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
74685           <...>-13131 (-----) [006] d..2 24574.150265: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=007
74686  Binder:23896_5-25989 (23896) [003] ...2 24574.150266: binder_set_priority: proc=786 thread=816 old=120 => new=110 desired=110
74687  Binder:23896_5-25989 (23896) [003] d..4 24574.150269: sched_waking: comm=HwBinder:786_2 pid=816 prio=110 target_cpu=007
74688<...>-25141 ( 24741) [002] dn.5 24574.150271: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=002
74689<...>-24041 ( 23968) [005] .... 24574.150273: binder_transaction: transaction=1670406 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
74690<...>-25141 ( 24741) [002] d..2 24574.150277: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=129 prev_state=R+ ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
74691<...>-24041 ( 23968) [005] ...2 24574.150278: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
74692<...>-24041 ( 23968) [005] d..4 24574.150280: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=005
74693  Binder:23968_C-25014 (23968) [002] .... 24574.150281: binder_transaction_received: transaction=1670400
74694  Binder:23896_5-25989 (23896) [003] d..5 24574.150287: sched_wakeup: comm=HwBinder:786_2 pid=816 prio=110 target_cpu=003
74695<...>-23994 ( 23968) [001] d..2 24574.150288: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
74696<...>-23968 ( 23968) [007] .... 24574.150293: binder_transaction: transaction=1670409 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
74697<...>-23968 ( 23968) [007] d..4 24574.150295: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=001
74698          <idle>-0     (-----) [001] d..1 24574.150297: cpu_idle: state=0 cpu_id=1
74699  Binder:23968_C-25014 (23968) [002] d.h2 24574.150304: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
74700<...>-24041 ( 23968) [005] d..5 24574.150318: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=004
74701           <...>-13131 (-----) [006] d..2 24574.150318: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
74702  Binder:23896_3-23986 (23896) [004] .... 24574.150319: binder_transaction: transaction=1670407 dest_node=1670402 dest_proc=24827 dest_thread=25194 reply=0 flags=0x10 code=0x2
74703  Binder:23896_3-23986 (23896) [004] d..4 24574.150323: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=007
74704          <idle>-0     (-----) [006] d..1 24574.150323: cpu_idle: state=0 cpu_id=6
74705<...>-24041 ( 23968) [005] d..2 24574.150324: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_2 next_pid=23903 next_prio=120
74706  Binder:23896_5-25989 (23896) [003] d..2 24574.150324: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=HwBinder:786_2 next_pid=816 next_prio=110
74707          <idle>-0     (-----) [001] dnh2 24574.150330: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=001
74708<...>-816 ( 786) [003] .... 24574.150331: binder_transaction_received: transaction=1670408
74709  Binder:23896_3-23986 (23896) [004] d..5 24574.150334: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=006
74710          <idle>-0     (-----) [001] .n.1 24574.150338: cpu_idle: state=4294967295 cpu_id=1
74711<...>-23968 ( 23968) [007] d..2 24574.150338: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
74712          <idle>-0     (-----) [006] .n.1 24574.150338: cpu_idle: state=4294967295 cpu_id=6
74713  Binder:23896_3-23986 (23896) [004] d..2 24574.150339: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
74714  Binder:23968_C-25014 (23968) [002] d.h3 24574.150339: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
74715          <idle>-0     (-----) [006] d..2 24574.150342: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
74716  Binder:23896_4-24423 (23896) [004] .... 24574.150342: binder_transaction_received: transaction=1670406
74717          <idle>-0     (-----) [001] d..2 24574.150344: 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
74718<...>-23903 ( 23896) [005] d..2 24574.150345: sched_switch: prev_comm=Binder:23896_2 prev_pid=23903 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
74719    RenderThread-25194 (24827) [006] .... 24574.150345: binder_transaction_received: transaction=1670407
74720          <idle>-0     (-----) [005] d..1 24574.150350: cpu_idle: state=0 cpu_id=5
74721   kworker/u17:2-23076 (23076) [001] d..2 24574.150356: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
74722    RenderThread-25194 (24827) [006] .... 24574.150360: binder_transaction: transaction=1670410 dest_node=0 dest_proc=23896 dest_thread=23986 reply=1 flags=0x0 code=0x0
74723    RenderThread-25194 (24827) [006] d..2 24574.150362: sched_waking: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=004
74724   kworker/u17:2-23076 (23076) [001] d..3 24574.150364: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
74725  Binder:23896_4-24423 (23896) [004] .... 24574.150365: binder_transaction: transaction=1670411 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
74726  Binder:23896_4-24423 (23896) [004] d..2 24574.150366: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=005
74727<...>-816 ( 786) [003] ...1 24574.150369: tracing_mark_write: B|786|HIDL::IAllocator::allocate::server
74728    RenderThread-25194 (24827) [006] d..3 24574.150370: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=006
74729  Binder:23896_4-24423 (23896) [004] d..3 24574.150373: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=004
74730  Binder:23896_4-24423 (23896) [004] .... 24574.150374: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
74731   kworker/u17:2-23076 (23076) [001] d..2 24574.150377: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
74732    RenderThread-25194 (24827) [006] d..2 24574.150379: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=110
74733  Binder:23896_3-23986 (23896) [006] .... 24574.150381: binder_transaction_received: transaction=1670410
74734  Binder:23896_4-24423 (23896) [004] d..2 24574.150387: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
74735<...>-24041 ( 23968) [004] .... 24574.150388: binder_transaction_received: transaction=1670411
74736     kworker/1:1-13091 (13091) [001] d..2 24574.150390: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
74737  Binder:23896_3-23986 (23896) [006] .... 24574.150400: binder_transaction: transaction=1670412 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
74738  Binder:23896_3-23986 (23896) [006] d..2 24574.150401: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=006
74739  Binder:23896_3-23986 (23896) [006] d..3 24574.150404: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=006
74740     kworker/1:1-13091 (13091) [001] d..3 24574.150405: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
74741  Binder:23896_3-23986 (23896) [006] .... 24574.150405: binder_set_priority: proc=23896 thread=23986 old=110 => new=120 desired=120
74742<...>-816 ( 786) [003] ...1 24574.150412: tracing_mark_write: B|786|AllocBuffer
74743  Binder:23896_3-23986 (23896) [006] d..2 24574.150415: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
74744     kworker/1:1-13091 (13091) [001] d..2 24574.150415: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
74745    RenderThread-25194 (24827) [006] .... 24574.150416: binder_transaction_received: transaction=1670412
74746           <...>-13147 (-----) [007] d..2 24574.150417: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
74747<...>-24376 ( 24151) [001] .... 24574.150419: binder_transaction_received: transaction=1670409
74748          <idle>-0     (-----) [007] d..1 24574.150422: cpu_idle: state=0 cpu_id=7
74749<...>-816 ( 786) [003] ...1 24574.150422: tracing_mark_write: B|786|ION_IOC_ALLOC size: 9400320
74750    RenderThread-25194 (24827) [006] .... 24574.150449: binder_transaction: transaction=1670413 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x11
74751    RenderThread-25194 (24827) [006] ...2 24574.150450: binder_set_priority: proc=23896 thread=23986 old=120 => new=110 desired=110
74752    RenderThread-25194 (24827) [006] d..4 24574.150451: sched_waking: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=006
74753    RenderThread-25194 (24827) [006] d..5 24574.150454: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=006
74754    RenderThread-25194 (24827) [006] d..2 24574.150457: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=110
74755  Binder:23896_3-23986 (23896) [006] .... 24574.150458: binder_transaction_received: transaction=1670413
74756  Binder:23896_3-23986 (23896) [006] d..2 24574.150470: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
74757<...>-24376 ( 24151) [001] d..3 24574.150471: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
74758          <idle>-0     (-----) [006] d..1 24574.150475: cpu_idle: state=0 cpu_id=6
74759          <idle>-0     (-----) [006] dnh2 24574.150492: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
74760          <idle>-0     (-----) [006] .n.1 24574.150494: cpu_idle: state=4294967295 cpu_id=6
74761          <idle>-0     (-----) [006] d..2 24574.150498: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
74762<...>-24376 ( 24151) [001] d..2 24574.150518: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
74763          <idle>-0     (-----) [001] d..1 24574.150526: cpu_idle: state=0 cpu_id=1
74764<...>-24151 ( 24151) [006] d..2 24574.150531: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
74765          <idle>-0     (-----) [006] d..1 24574.150535: cpu_idle: state=0 cpu_id=6
74766<...>-816 ( 786) [003] ...1 24574.150555: tracing_mark_write: E|786
74767<...>-816 ( 786) [003] ...1 24574.150558: tracing_mark_write: B|786|ION_IOC_MAP
74768<...>-816 ( 786) [003] ...1 24574.150576: tracing_mark_write: E|786
74769<...>-816 ( 786) [003] ...1 24574.150580: tracing_mark_write: E|786
74770<...>-816 ( 786) [003] ...1 24574.150582: tracing_mark_write: B|786|AllocBuffer
74771<...>-816 ( 786) [003] ...1 24574.150586: tracing_mark_write: B|786|ION_IOC_ALLOC size: 20480
74772<...>-816 ( 786) [003] ...1 24574.150595: tracing_mark_write: E|786
74773<...>-816 ( 786) [003] ...1 24574.150597: tracing_mark_write: B|786|ION_IOC_MAP
74774  Binder:23968_C-25014 (23968) [002] d..3 24574.150599: sched_waking: comm=PowerManagerSer pid=24006 prio=116 target_cpu=001
74775<...>-24041 ( 23968) [004] d..3 24574.150601: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=007
74776<...>-816 ( 786) [003] ...1 24574.150603: tracing_mark_write: E|786
74777<...>-816 ( 786) [003] ...1 24574.150606: tracing_mark_write: E|786
74778  Binder:23968_C-25014 (23968) [002] d..4 24574.150618: sched_wakeup: comm=PowerManagerSer pid=24006 prio=116 target_cpu=001
74779          <idle>-0     (-----) [007] ...1 24574.150619: cpu_idle: state=4294967295 cpu_id=7
74780          <idle>-0     (-----) [007] d..1 24574.150620: cpu_idle: state=0 cpu_id=7
74781          <idle>-0     (-----) [001] dnh2 24574.150624: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
74782          <idle>-0     (-----) [001] .n.1 24574.150645: cpu_idle: state=4294967295 cpu_id=1
74783          <idle>-0     (-----) [001] d..2 24574.150652: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=24006 next_prio=116
74784<...>-24041 ( 23968) [004] d..1 24574.150674: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=004
74785<...>-816 ( 786) [003] ...1 24574.150678: tracing_mark_write: E|786
74786<...>-24041 ( 23968) [004] d..2 24574.150684: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=005
74787<...>-816 ( 786) [003] .... 24574.150686: binder_transaction: transaction=1670414 dest_node=0 dest_proc=23896 dest_thread=25989 reply=1 flags=0x0 code=0x0
74788          <idle>-0     (-----) [005] .n.1 24574.150689: cpu_idle: state=4294967295 cpu_id=5
74789 PowerManagerSer-24006 (23968) [001] d..2 24574.150690: sched_switch: prev_comm=PowerManagerSer prev_pid=24006 prev_prio=116 prev_state=S ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
74790          <idle>-0     (-----) [005] d..2 24574.150693: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
74791<...>-816 ( 786) [003] d..2 24574.150698: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=003
74792  Binder:23968_C-25014 (23968) [002] d..2 24574.150702: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=000
74793<...>-24041 ( 23968) [004] d..2 24574.150706: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
74794          <idle>-0     (-----) [004] d..1 24574.150711: cpu_idle: state=0 cpu_id=4
74795<...>-24073 ( 23968) [001] d..2 24574.150717: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
74796<...>-24003 ( 23968) [005] d..1 24574.150719: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=001
74797          <idle>-0     (-----) [006] dnh2 24574.150723: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=006
74798          <idle>-0     (-----) [001] d..1 24574.150724: cpu_idle: state=0 cpu_id=1
74799<...>-816 ( 786) [003] .... 24574.150750: binder_set_priority: proc=786 thread=816 old=110 => new=120 desired=120
74800          <idle>-0     (-----) [006] .n.1 24574.150753: cpu_idle: state=4294967295 cpu_id=6
74801  Binder:23968_C-25014 (23968) [002] d..3 24574.150754: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=001
74802          <idle>-0     (-----) [006] d..2 24574.150757: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
74803  Binder:23896_5-25989 (23896) [006] .... 24574.150760: binder_transaction_received: transaction=1670414
74804          <idle>-0     (-----) [001] dnh2 24574.150760: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=001
74805<...>-816 ( 786) [003] d..2 24574.150762: sched_switch: prev_comm=HwBinder:786_2 prev_pid=816 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=23484 next_prio=120
74806          <idle>-0     (-----) [001] .n.1 24574.150766: cpu_idle: state=4294967295 cpu_id=1
74807  Binder:23968_C-25014 (23968) [002] d..1 24574.150769: sched_waking: comm=PowerManagerSer pid=24006 prio=116 target_cpu=001
74808          <idle>-0     (-----) [001] d..2 24574.150773: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=statsd.writer next_pid=1044 next_prio=120
74809  Binder:23896_5-25989 (23896) [006] ...1 24574.150778: tracing_mark_write: B|23896|HIDL::IMapper::importBuffer::passthrough
74810            adbd-23484 ( 1007) [003] d..2 24574.150787: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
74811<...>-24003 ( 23968) [005] .... 24574.150787: binder_transaction: transaction=1670415 dest_node=1309266 dest_proc=24827 dest_thread=0 reply=0 flags=0x11 code=0x6
74812<...>-24003 ( 23968) [005] d..4 24574.150790: sched_waking: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=005
74813          <idle>-0     (-----) [007] dnh2 24574.150797: sched_wakeup: comm=PowerManagerSer pid=24006 prio=116 target_cpu=007
74814          <idle>-0     (-----) [007] .n.1 24574.150799: cpu_idle: state=4294967295 cpu_id=7
74815  Binder:23896_5-25989 (23896) [006] ...1 24574.150801: tracing_mark_write: E|23896
74816  Binder:23896_5-25989 (23896) [006] ...1 24574.150820: tracing_mark_write: B|23896|HIDL::IMapper::getTransportSize::passthrough
74817  Binder:23896_5-25989 (23896) [006] ...1 24574.150822: tracing_mark_write: E|23896
74818          <idle>-0     (-----) [007] d..2 24574.150825: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=24006 next_prio=116
74819<...>-24003 ( 23968) [005] d..5 24574.150826: sched_wakeup: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=004
74820  Binder:23896_5-25989 (23896) [006] ...1 24574.150828: tracing_mark_write: B|23896|HIDL::IMapper::createDescriptor_2_1::passthrough
74821  Binder:23896_5-25989 (23896) [006] ...1 24574.150830: tracing_mark_write: E|23896
74822            adbd-23484 ( 1007) [003] d..3 24574.150830: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
74823          <idle>-0     (-----) [004] .n.1 24574.150831: cpu_idle: state=4294967295 cpu_id=4
74824  Binder:23896_5-25989 (23896) [006] ...1 24574.150832: tracing_mark_write: B|23896|HIDL::IAllocator::allocate::client
74825  Binder:23896_5-25989 (23896) [006] ...1 24574.150833: tracing_mark_write: E|23896
74826          <idle>-0     (-----) [004] d..2 24574.150835: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24827_5 next_pid=5558 next_prio=120
74827<...>-5558 ( 24827) [004] .... 24574.150838: binder_transaction_received: transaction=1670415
74828  Binder:23896_5-25989 (23896) [006] .... 24574.150839: binder_transaction: transaction=1670416 dest_node=959 dest_proc=786 dest_thread=0 reply=0 flags=0x10 code=0x2
74829  Binder:23896_5-25989 (23896) [006] ...2 24574.150842: binder_set_priority: proc=786 thread=813 old=120 => new=110 desired=110
74830  Binder:23896_5-25989 (23896) [006] d..4 24574.150844: sched_waking: comm=HwBinder:786_1 pid=813 prio=110 target_cpu=004
74831 PowerManagerSer-24006 (23968) [007] d..2 24574.150852: sched_switch: prev_comm=PowerManagerSer prev_pid=24006 prev_prio=116 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
74832  Binder:23896_5-25989 (23896) [006] d..5 24574.150853: sched_wakeup: comm=HwBinder:786_1 pid=813 prio=110 target_cpu=006
74833          <idle>-0     (-----) [007] d..1 24574.150855: cpu_idle: state=0 cpu_id=7
74834  Binder:23896_5-25989 (23896) [006] d..2 24574.150857: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=HwBinder:786_1 next_pid=813 next_prio=110
74835<...>-813 ( 786) [006] .... 24574.150861: binder_transaction_received: transaction=1670416
74836<...>-813 ( 786) [006] ...1 24574.150876: tracing_mark_write: B|786|HIDL::IAllocator::allocate::server
74837<...>-24003 ( 23968) [005] d..2 24574.150876: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
74838            adbd-23484 ( 1007) [003] d..2 24574.150879: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=HwBinder:786_2 next_pid=816 next_prio=120
74839          <idle>-0     (-----) [005] d..1 24574.150890: cpu_idle: state=0 cpu_id=5
74840<...>-816 ( 786) [003] d.s3 24574.150898: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
74841<...>-25201 ( 24827) [000] d.s3 24574.150905: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
74842<...>-816 ( 786) [003] d.s4 24574.150909: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
74843  Binder:23968_C-25014 (23968) [002] .... 24574.150913: binder_transaction: transaction=1670417 dest_node=0 dest_proc=24741 dest_thread=25141 reply=1 flags=0x0 code=0x0
74844<...>-813 ( 786) [006] ...1 24574.150913: tracing_mark_write: B|786|AllocBuffer
74845<...>-813 ( 786) [006] ...1 24574.150917: tracing_mark_write: B|786|ION_IOC_ALLOC size: 9400320
74846<...>-25201 ( 24827) [000] d.s4 24574.150928: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
74847<...>-5558 ( 24827) [004] d..2 24574.150930: sched_switch: prev_comm=Binder:24827_5 prev_pid=5558 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
74848          <idle>-0     (-----) [004] d..1 24574.150934: cpu_idle: state=0 cpu_id=4
74849<...>-816 ( 786) [003] d..2 24574.150936: sched_switch: prev_comm=HwBinder:786_2 prev_pid=816 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
74850  Binder:23968_C-25014 (23968) [002] d..2 24574.150938: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=129
74851<...>-25141 ( 24741) [002] .... 24574.150945: binder_transaction_received: transaction=1670417
74852<...>-1044 ( 887) [001] d..2 24574.150947: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
74853<...>-813 ( 786) [006] ...1 24574.150983: tracing_mark_write: E|786
74854<...>-813 ( 786) [006] ...1 24574.150984: tracing_mark_write: B|786|ION_IOC_MAP
74855<...>-813 ( 786) [006] ...1 24574.150990: tracing_mark_write: E|786
74856<...>-813 ( 786) [006] ...1 24574.150991: tracing_mark_write: E|786
74857<...>-813 ( 786) [006] ...1 24574.150992: tracing_mark_write: B|786|AllocBuffer
74858<...>-813 ( 786) [006] ...1 24574.150994: tracing_mark_write: B|786|ION_IOC_ALLOC size: 20480
74859<...>-813 ( 786) [006] ...1 24574.150997: tracing_mark_write: E|786
74860<...>-813 ( 786) [006] ...1 24574.150998: tracing_mark_write: B|786|ION_IOC_MAP
74861<...>-813 ( 786) [006] ...1 24574.151001: tracing_mark_write: E|786
74862<...>-813 ( 786) [006] ...1 24574.151001: tracing_mark_write: E|786
74863<...>-813 ( 786) [006] d..1 24574.151020: sched_waking: comm=HwBinder:786_2 pid=816 prio=120 target_cpu=003
74864<...>-813 ( 786) [006] d..2 24574.151034: sched_wakeup: comm=HwBinder:786_2 pid=816 prio=120 target_cpu=005
74865          <idle>-0     (-----) [005] .n.1 24574.151039: cpu_idle: state=4294967295 cpu_id=5
74866          <idle>-0     (-----) [007] ...1 24574.151055: cpu_idle: state=4294967295 cpu_id=7
74867          <idle>-0     (-----) [007] d..1 24574.151056: cpu_idle: state=0 cpu_id=7
74868<...>-813 ( 786) [006] ...1 24574.151059: tracing_mark_write: E|786
74869          <idle>-0     (-----) [005] d..2 24574.151060: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:786_2 next_pid=816 next_prio=120
74870<...>-813 ( 786) [006] .... 24574.151066: binder_transaction: transaction=1670418 dest_node=0 dest_proc=23896 dest_thread=25989 reply=1 flags=0x0 code=0x0
74871<...>-25141 ( 24741) [002] d..1 24574.151068: sched_waking: comm=GlobalScheduler pid=25211 prio=120 target_cpu=000
74872<...>-816 ( 786) [005] ...1 24574.151070: tracing_mark_write: B|786|FreeBuffer
74873<...>-813 ( 786) [006] d..2 24574.151072: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=006
74874<...>-813 ( 786) [006] d..3 24574.151075: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=006
74875<...>-816 ( 786) [005] ...1 24574.151076: tracing_mark_write: E|786
74876<...>-816 ( 786) [005] ...1 24574.151077: tracing_mark_write: B|786|FreeBuffer
74877<...>-816 ( 786) [005] ...1 24574.151078: tracing_mark_write: B|786|UnmapBuffer
74878<...>-813 ( 786) [006] .... 24574.151079: binder_set_priority: proc=786 thread=813 old=110 => new=120 desired=120
74879<...>-816 ( 786) [005] ...1 24574.151089: tracing_mark_write: E|786
74880<...>-813 ( 786) [006] d..2 24574.151089: sched_switch: prev_comm=HwBinder:786_1 prev_pid=813 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
74881  Binder:23896_5-25989 (23896) [006] .... 24574.151091: binder_transaction_received: transaction=1670418
74882<...>-816 ( 786) [005] ...1 24574.151091: tracing_mark_write: E|786
74883<...>-816 ( 786) [005] d..1 24574.151093: sched_waking: comm=HwBinder:786_1 pid=813 prio=120 target_cpu=006
74884<...>-25141 ( 24741) [002] d..2 24574.151095: sched_wakeup: comm=GlobalScheduler pid=25211 prio=120 target_cpu=003
74885  kworker/u16:15-18488 (18488) [003] .... 24574.151097: clk_set_rate: l3_cluster1_vote_clk 1401600000
74886  Binder:23896_5-25989 (23896) [006] ...1 24574.151099: tracing_mark_write: B|23896|HIDL::IMapper::importBuffer::passthrough
74887<...>-816 ( 786) [005] d..2 24574.151104: sched_wakeup: comm=HwBinder:786_1 pid=813 prio=120 target_cpu=007
74888  Binder:23896_5-25989 (23896) [006] ...1 24574.151108: tracing_mark_write: E|23896
74889          <idle>-0     (-----) [007] .n.1 24574.151108: cpu_idle: state=4294967295 cpu_id=7
74890          <idle>-0     (-----) [007] d..2 24574.151112: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:786_1 next_pid=813 next_prio=120
74891<...>-813 ( 786) [007] ...1 24574.151119: tracing_mark_write: B|786|FreeBuffer
74892  Binder:23896_5-25989 (23896) [006] ...1 24574.151119: tracing_mark_write: B|23896|HIDL::IMapper::getTransportSize::passthrough
74893  Binder:23968_5-24233 (23968) [001] d..2 24574.151120: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
74894  Binder:23896_5-25989 (23896) [006] ...1 24574.151121: tracing_mark_write: E|23896
74895<...>-816 ( 786) [005] d..2 24574.151122: sched_switch: prev_comm=HwBinder:786_2 prev_pid=816 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
74896<...>-813 ( 786) [007] ...1 24574.151124: tracing_mark_write: E|786
74897<...>-813 ( 786) [007] ...1 24574.151125: tracing_mark_write: B|786|FreeBuffer
74898  Binder:23896_5-25989 (23896) [006] ...1 24574.151125: tracing_mark_write: B|23896|HIDL::IMapper::createDescriptor_2_1::passthrough
74899<...>-813 ( 786) [007] ...1 24574.151126: tracing_mark_write: B|786|UnmapBuffer
74900  Binder:23896_5-25989 (23896) [006] ...1 24574.151127: tracing_mark_write: E|23896
74901          <idle>-0     (-----) [001] d..1 24574.151127: cpu_idle: state=0 cpu_id=1
74902  Binder:23896_5-25989 (23896) [006] ...1 24574.151129: tracing_mark_write: B|23896|HIDL::IAllocator::allocate::client
74903  Binder:23896_5-25989 (23896) [006] ...1 24574.151130: tracing_mark_write: E|23896
74904          <idle>-0     (-----) [005] d..1 24574.151130: cpu_idle: state=0 cpu_id=5
74905  Binder:23896_5-25989 (23896) [006] .... 24574.151135: binder_transaction: transaction=1670419 dest_node=959 dest_proc=786 dest_thread=0 reply=0 flags=0x10 code=0x2
74906          <idle>-0     (-----) [005] ...1 24574.151137: cpu_idle: state=4294967295 cpu_id=5
74907<...>-813 ( 786) [007] ...1 24574.151137: tracing_mark_write: E|786
74908  Binder:23896_5-25989 (23896) [006] ...2 24574.151138: binder_set_priority: proc=786 thread=816 old=120 => new=110 desired=110
74909  Binder:23896_5-25989 (23896) [006] d..4 24574.151138: sched_waking: comm=HwBinder:786_2 pid=816 prio=110 target_cpu=005
74910          <idle>-0     (-----) [005] d..1 24574.151139: cpu_idle: state=0 cpu_id=5
74911<...>-813 ( 786) [007] ...1 24574.151140: tracing_mark_write: E|786
74912  Binder:23896_5-25989 (23896) [006] d..5 24574.151145: sched_wakeup: comm=HwBinder:786_2 pid=816 prio=110 target_cpu=006
74913  Binder:23896_5-25989 (23896) [006] d..2 24574.151152: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=HwBinder:786_2 next_pid=816 next_prio=110
74914<...>-25141 ( 24741) [002] d..3 24574.151154: sched_waking: comm=FlpThread pid=25391 prio=120 target_cpu=003
74915<...>-816 ( 786) [006] .... 24574.151157: binder_transaction_received: transaction=1670419
74916<...>-813 ( 786) [007] d..2 24574.151157: sched_switch: prev_comm=HwBinder:786_1 prev_pid=813 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
74917          <idle>-0     (-----) [007] d..1 24574.151163: cpu_idle: state=0 cpu_id=7
74918<...>-816 ( 786) [006] ...1 24574.151167: tracing_mark_write: B|786|HIDL::IAllocator::allocate::server
74919<...>-25141 ( 24741) [002] d..4 24574.151168: sched_wakeup: comm=FlpThread pid=25391 prio=120 target_cpu=003
74920<...>-816 ( 786) [006] ...1 24574.151175: tracing_mark_write: B|786|AllocBuffer
74921<...>-816 ( 786) [006] ...1 24574.151177: tracing_mark_write: B|786|ION_IOC_ALLOC size: 9400320
74922<...>-25141 ( 24741) [002] d..2 24574.151215: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=129 prev_state=S ==> next_comm=FlpThread next_pid=25391 next_prio=120
74923<...>-816 ( 786) [006] ...1 24574.151228: tracing_mark_write: E|786
74924<...>-816 ( 786) [006] ...1 24574.151229: tracing_mark_write: B|786|ION_IOC_MAP
74925<...>-816 ( 786) [006] ...1 24574.151234: tracing_mark_write: E|786
74926<...>-816 ( 786) [006] ...1 24574.151235: tracing_mark_write: E|786
74927<...>-816 ( 786) [006] ...1 24574.151236: tracing_mark_write: B|786|AllocBuffer
74928<...>-816 ( 786) [006] ...1 24574.151237: tracing_mark_write: B|786|ION_IOC_ALLOC size: 20480
74929<...>-816 ( 786) [006] ...1 24574.151241: tracing_mark_write: E|786
74930<...>-816 ( 786) [006] ...1 24574.151242: tracing_mark_write: B|786|ION_IOC_MAP
74931<...>-816 ( 786) [006] ...1 24574.151244: tracing_mark_write: E|786
74932<...>-816 ( 786) [006] ...1 24574.151245: tracing_mark_write: E|786
74933<...>-816 ( 786) [006] ...1 24574.151259: tracing_mark_write: E|786
74934<...>-816 ( 786) [006] .... 24574.151262: binder_transaction: transaction=1670420 dest_node=0 dest_proc=23896 dest_thread=25989 reply=1 flags=0x0 code=0x0
74935<...>-816 ( 786) [006] d..2 24574.151265: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=006
74936<...>-816 ( 786) [006] d..3 24574.151269: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=006
74937<...>-816 ( 786) [006] .... 24574.151270: binder_set_priority: proc=786 thread=816 old=110 => new=120 desired=120
74938<...>-816 ( 786) [006] ...1 24574.151278: tracing_mark_write: B|786|FreeBuffer
74939<...>-816 ( 786) [006] ...1 24574.151280: tracing_mark_write: E|786
74940<...>-816 ( 786) [006] ...1 24574.151281: tracing_mark_write: B|786|FreeBuffer
74941<...>-816 ( 786) [006] ...1 24574.151282: tracing_mark_write: B|786|UnmapBuffer
74942<...>-816 ( 786) [006] ...1 24574.151290: tracing_mark_write: E|786
74943<...>-816 ( 786) [006] ...1 24574.151292: tracing_mark_write: E|786
74944<...>-816 ( 786) [006] d..2 24574.151300: sched_switch: prev_comm=HwBinder:786_2 prev_pid=816 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
74945  Binder:23896_5-25989 (23896) [006] .... 24574.151302: binder_transaction_received: transaction=1670420
74946  kworker/u16:15-18488 (18488) [003] d..2 24574.151302: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=GlobalScheduler next_pid=25211 next_prio=120
74947  Binder:23896_5-25989 (23896) [006] ...1 24574.151308: tracing_mark_write: B|23896|HIDL::IMapper::importBuffer::passthrough
74948  Binder:23896_5-25989 (23896) [006] ...1 24574.151316: tracing_mark_write: E|23896
74949  Binder:23896_5-25989 (23896) [006] ...1 24574.151324: tracing_mark_write: B|23896|HIDL::IMapper::getTransportSize::passthrough
74950  Binder:23896_5-25989 (23896) [006] ...1 24574.151325: tracing_mark_write: E|23896
74951          <idle>-0     (-----) [005] ...1 24574.151329: cpu_idle: state=4294967295 cpu_id=5
74952  Binder:23896_5-25989 (23896) [006] d..1 24574.151330: sched_waking: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=006
74953          <idle>-0     (-----) [005] d..1 24574.151330: cpu_idle: state=0 cpu_id=5
74954<...>-25211 ( 24741) [003] d.s2 24574.151336: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
74955          <idle>-0     (-----) [007] ...1 24574.151363: cpu_idle: state=4294967295 cpu_id=7
74956          <idle>-0     (-----) [007] d..1 24574.151364: cpu_idle: state=0 cpu_id=7
74957<...>-25201 ( 24827) [000] d..3 24574.151366: sched_waking: comm=queued-work-loo pid=25203 prio=118 target_cpu=000
74958          <idle>-0     (-----) [001] dnh2 24574.151368: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=001
74959<...>-25211 ( 24741) [003] d.s3 24574.151372: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
74960<...>-25211 ( 24741) [003] d.s3 24574.151376: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
74961  Binder:23896_5-25989 (23896) [006] .... 24574.151378: binder_transaction: transaction=1670421 dest_node=0 dest_proc=24827 dest_thread=24827 reply=1 flags=0x0 code=0x0
74962  Binder:23896_5-25989 (23896) [006] d..2 24574.151379: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=003
74963          <idle>-0     (-----) [001] .n.1 24574.151380: cpu_idle: state=4294967295 cpu_id=1
74964          <idle>-0     (-----) [001] d..2 24574.151386: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=110
74965  Binder:23896_5-25989 (23896) [006] d..3 24574.151389: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=006
74966  Binder:23896_5-25989 (23896) [006] .... 24574.151390: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
74967  Binder:23896_3-23986 (23896) [001] .... 24574.151401: binder_transaction: transaction=1670422 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
74968  Binder:23896_3-23986 (23896) [001] d..2 24574.151405: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=006
74969          <idle>-0     (-----) [005] dnh2 24574.151421: sched_wakeup: comm=queued-work-loo pid=25203 prio=118 target_cpu=005
74970  Binder:23896_5-25989 (23896) [006] d..2 24574.151423: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
74971          <idle>-0     (-----) [005] .n.1 24574.151424: cpu_idle: state=4294967295 cpu_id=5
74972<...>-25201 ( 24827) [000] d.h3 24574.151424: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
74973 s.nexuslauncher-24827 (24827) [006] .... 24574.151425: binder_transaction_received: transaction=1670421
74974          <idle>-0     (-----) [005] d..2 24574.151427: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=queued-work-loo next_pid=25203 next_prio=118
74975  Binder:23896_3-23986 (23896) [001] .... 24574.151440: binder_set_priority: proc=23896 thread=23986 old=110 => new=120 desired=120
74976<...>-25211 ( 24741) [003] d..2 24574.151440: sched_switch: prev_comm=GlobalScheduler prev_pid=25211 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
74977          <idle>-0     (-----) [004] dnh2 24574.151442: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
74978          <idle>-0     (-----) [007] dnh2 24574.151444: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=007
74979          <idle>-0     (-----) [004] .n.1 24574.151445: cpu_idle: state=4294967295 cpu_id=4
74980          <idle>-0     (-----) [007] .n.1 24574.151446: cpu_idle: state=4294967295 cpu_id=7
74981          <idle>-0     (-----) [004] d..2 24574.151448: 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
74982<...>-25203 ( 24827) [005] d..2 24574.151449: sched_switch: prev_comm=queued-work-loo prev_pid=25203 prev_prio=118 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
74983          <idle>-0     (-----) [007] d..2 24574.151450: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
74984    RenderThread-25194 (24827) [007] .... 24574.151453: binder_transaction_received: transaction=1670422
74985          <idle>-0     (-----) [005] d..1 24574.151453: cpu_idle: state=0 cpu_id=5
74986       rcu_sched-8     (    8) [003] d..2 24574.151456: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
74987         sugov:4-560   (  560) [004] d..2 24574.151456: 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
74988          <idle>-0     (-----) [004] d..1 24574.151458: cpu_idle: state=0 cpu_id=4
74989  Binder:23896_3-23986 (23896) [001] d..2 24574.151469: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
74990 s.nexuslauncher-24827 (24827) [006] .... 24574.151477: binder_transaction: transaction=1670423 dest_node=1270642 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x1
74991 s.nexuslauncher-24827 (24827) [006] ...2 24574.151480: binder_set_priority: proc=23968 thread=24233 old=120 => new=110 desired=110
74992 s.nexuslauncher-24827 (24827) [006] d..4 24574.151481: sched_waking: comm=Binder:23968_5 pid=24233 prio=110 target_cpu=001
74993    RenderThread-25194 (24827) [007] .... 24574.151482: binder_transaction: transaction=1670424 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
74994    RenderThread-25194 (24827) [007] ...2 24574.151485: binder_set_priority: proc=23896 thread=23986 old=120 => new=110 desired=110
74995    RenderThread-25194 (24827) [007] d..4 24574.151492: sched_waking: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=001
74996 s.nexuslauncher-24827 (24827) [006] d..5 24574.151492: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=110 target_cpu=006
74997    RenderThread-25194 (24827) [007] d..5 24574.151502: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=007
74998  kworker/u16:15-18488 (18488) [001] d..2 24574.151518: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
74999 s.nexuslauncher-24827 (24827) [006] d..2 24574.151519: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=110
75000  Binder:23968_5-24233 (23968) [006] .... 24574.151521: binder_transaction_received: transaction=1670423
75001          <idle>-0     (-----) [001] d..1 24574.151524: cpu_idle: state=0 cpu_id=1
75002<...>-25391 ( 24741) [002] d..1 24574.151528: sched_waking: comm=Binder:24741_4 pid=25141 prio=129 target_cpu=002
75003    RenderThread-25194 (24827) [007] d..2 24574.151538: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=110
75004  Binder:23896_3-23986 (23896) [007] .... 24574.151540: binder_transaction_received: transaction=1670424
75005  Binder:23896_3-23986 (23896) [007] .... 24574.151552: binder_transaction: transaction=1670425 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
75006  Binder:23896_3-23986 (23896) [007] d..2 24574.151554: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=007
75007<...>-25391 ( 24741) [002] d..2 24574.151557: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=129 target_cpu=003
75008  Binder:23896_3-23986 (23896) [007] d..3 24574.151558: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=007
75009  Binder:23896_3-23986 (23896) [007] .... 24574.151558: binder_set_priority: proc=23896 thread=23986 old=110 => new=120 desired=120
75010  Binder:23896_3-23986 (23896) [007] d..2 24574.151562: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
75011    RenderThread-25194 (24827) [007] .... 24574.151563: binder_transaction_received: transaction=1670425
75012            adbd-1007  ( 1007) [003] d..2 24574.151570: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=129
75013  Binder:23968_5-24233 (23968) [006] .... 24574.151618: binder_transaction: transaction=1670426 dest_node=0 dest_proc=24827 dest_thread=24827 reply=1 flags=0x0 code=0x0
75014  Binder:23968_5-24233 (23968) [006] d..2 24574.151621: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=006
75015  Binder:23968_5-24233 (23968) [006] d..3 24574.151625: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=006
75016  Binder:23968_5-24233 (23968) [006] .... 24574.151626: binder_set_priority: proc=23968 thread=24233 old=110 => new=120 desired=120
75017  Binder:23968_5-24233 (23968) [006] d..2 24574.151630: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=R+ ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
75018 s.nexuslauncher-24827 (24827) [006] .... 24574.151633: binder_transaction_received: transaction=1670426
75019<...>-25141 ( 24741) [003] .... 24574.151661: binder_transaction: transaction=1670427 dest_node=0 dest_proc=24827 dest_thread=24986 reply=1 flags=0x0 code=0x0
75020<...>-25141 ( 24741) [003] d..2 24574.151665: sched_waking: comm=GoogleApiHandle pid=24986 prio=129 target_cpu=000
75021<...>-25141 ( 24741) [003] d..3 24574.151680: sched_wakeup: comm=GoogleApiHandle pid=24986 prio=129 target_cpu=003
75022<...>-25141 ( 24741) [003] .... 24574.151682: binder_set_priority: proc=24741 thread=25141 old=129 => new=120 desired=120
75023<...>-25391 ( 24741) [002] .... 24574.151689: binder_transaction: transaction=1670428 dest_node=1270632 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x3
75024<...>-25141 ( 24741) [003] d..2 24574.151690: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=R+ ==> next_comm=GoogleApiHandle next_pid=24986 next_prio=129
75025          <idle>-0     (-----) [005] ...1 24574.151695: cpu_idle: state=4294967295 cpu_id=5
75026          <idle>-0     (-----) [005] d..1 24574.151696: cpu_idle: state=0 cpu_id=5
75027<...>-24986 ( 24827) [003] .... 24574.151697: binder_transaction_received: transaction=1670427
75028<...>-25391 ( 24741) [002] d..4 24574.151698: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=002
75029<...>-25391 ( 24741) [002] d..5 24574.151705: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=002
75030<...>-25391 ( 24741) [002] d..2 24574.151714: sched_switch: prev_comm=FlpThread prev_pid=25391 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
75031  Binder:23968_C-25014 (23968) [002] .... 24574.151719: binder_transaction_received: transaction=1670428
75032 s.nexuslauncher-24827 (24827) [006] d..2 24574.151812: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
75033<...>-24986 ( 24827) [003] d..1 24574.151813: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=006
75034<...>-24986 ( 24827) [003] d..2 24574.151833: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
75035  Binder:23968_5-24233 (23968) [006] d..2 24574.151833: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
75036          <idle>-0     (-----) [001] .n.1 24574.151838: cpu_idle: state=4294967295 cpu_id=1
75037          <idle>-0     (-----) [006] d..1 24574.151840: cpu_idle: state=0 cpu_id=6
75038          <idle>-0     (-----) [001] d..2 24574.151864: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
75039<...>-24986 ( 24827) [003] d.h3 24574.151864: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
75040    RenderThread-25194 (24827) [007] .... 24574.151873: binder_transaction: transaction=1670429 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
75041    RenderThread-25194 (24827) [007] ...2 24574.151875: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
75042    RenderThread-25194 (24827) [007] d..4 24574.151876: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=006
75043<...>-24986 ( 24827) [003] d.h4 24574.151880: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
75044 s.nexuslauncher-24827 (24827) [001] d..2 24574.151887: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75045<...>-24986 ( 24827) [003] d..1 24574.151887: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
75046    RenderThread-25194 (24827) [007] d..5 24574.151887: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
75047          <idle>-0     (-----) [001] d..1 24574.151891: cpu_idle: state=0 cpu_id=1
75048  Binder:23968_C-25014 (23968) [002] d..2 24574.151891: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
75049          <idle>-0     (-----) [005] .n.1 24574.151891: cpu_idle: state=4294967295 cpu_id=5
75050    RenderThread-25194 (24827) [007] d..2 24574.151892: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
75051          <idle>-0     (-----) [005] d..2 24574.151895: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
75052  Binder:23896_5-25989 (23896) [005] .... 24574.151897: binder_transaction_received: transaction=1670429
75053<...>-24986 ( 24827) [003] d..2 24574.151898: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
75054          <idle>-0     (-----) [001] .n.1 24574.151902: cpu_idle: state=4294967295 cpu_id=1
75055         sugov:0-559   (  559) [002] d..2 24574.151903: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
75056  Binder:23896_3-23986 (23896) [007] d..2 24574.151905: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
75057          <idle>-0     (-----) [001] d..2 24574.151907: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
75058  Binder:23896_5-25989 (23896) [005] .... 24574.151910: binder_transaction: transaction=1670430 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
75059          <idle>-0     (-----) [007] d..1 24574.151910: cpu_idle: state=0 cpu_id=7
75060  Binder:23896_5-25989 (23896) [005] d..2 24574.151912: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=007
75061  Binder:23896_5-25989 (23896) [005] d..3 24574.151919: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
75062  Binder:23896_5-25989 (23896) [005] .... 24574.151920: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
75063  Binder:23896_5-25989 (23896) [005] d..2 24574.151924: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
75064    RenderThread-25194 (24827) [005] .... 24574.151926: binder_transaction_received: transaction=1670430
75065  Binder:23968_C-25014 (23968) [002] d..2 24574.151952: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=001
75066    RenderThread-25194 (24827) [005] d..2 24574.151964: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
75067  Binder:23968_C-25014 (23968) [002] d..3 24574.151965: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=002
75068  Binder:23896_5-25989 (23896) [005] d..2 24574.151977: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
75069          <idle>-0     (-----) [005] d..1 24574.151981: cpu_idle: state=0 cpu_id=5
75070  Binder:23968_C-25014 (23968) [002] d..3 24574.152007: sched_waking: comm=PowerManagerSer pid=24006 prio=116 target_cpu=007
75071          <idle>-0     (-----) [007] dnh2 24574.152021: sched_wakeup: comm=PowerManagerSer pid=24006 prio=116 target_cpu=007
75072          <idle>-0     (-----) [007] .n.1 24574.152023: cpu_idle: state=4294967295 cpu_id=7
75073          <idle>-0     (-----) [007] d..2 24574.152026: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=24006 next_prio=116
75074<...>-24986 ( 24827) [003] d..2 24574.152029: sched_switch: prev_comm=GoogleApiHandle prev_pid=24986 prev_prio=129 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=120
75075 PowerManagerSer-24006 (23968) [007] d..2 24574.152054: sched_switch: prev_comm=PowerManagerSer prev_pid=24006 prev_prio=116 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
75076          <idle>-0     (-----) [007] d..1 24574.152058: cpu_idle: state=0 cpu_id=7
75077  Binder:23968_C-25014 (23968) [002] .... 24574.152061: binder_transaction: transaction=1670431 dest_node=0 dest_proc=24741 dest_thread=25391 reply=1 flags=0x0 code=0x0
75078<...>-25141 ( 24741) [003] d..2 24574.152063: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
75079  Binder:23968_C-25014 (23968) [002] d..2 24574.152065: sched_waking: comm=FlpThread pid=25391 prio=120 target_cpu=002
75080 s.nexuslauncher-24827 (24827) [001] d..1 24574.152078: sched_waking: comm=Jit thread pool pid=24838 prio=129 target_cpu=000
75081          <idle>-0     (-----) [003] d..1 24574.152079: cpu_idle: state=0 cpu_id=3
75082  Binder:23968_C-25014 (23968) [002] d..3 24574.152089: sched_wakeup: comm=FlpThread pid=25391 prio=120 target_cpu=003
75083          <idle>-0     (-----) [003] .n.1 24574.152094: cpu_idle: state=4294967295 cpu_id=3
75084          <idle>-0     (-----) [003] d..2 24574.152102: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FlpThread next_pid=25391 next_prio=120
75085<...>-25391 ( 24741) [003] .... 24574.152106: binder_transaction_received: transaction=1670431
75086          <idle>-0     (-----) [005] dnh2 24574.152127: sched_wakeup: comm=Jit thread pool pid=24838 prio=129 target_cpu=005
75087          <idle>-0     (-----) [005] .n.1 24574.152129: cpu_idle: state=4294967295 cpu_id=5
75088  Binder:23968_C-25014 (23968) [002] d..2 24574.152132: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=statsd.writer next_pid=1044 next_prio=120
75089          <idle>-0     (-----) [005] d..2 24574.152132: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=24838 next_prio=129
75090<...>-25391 ( 24741) [003] d..2 24574.152164: sched_switch: prev_comm=FlpThread prev_pid=25391 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
75091          <idle>-0     (-----) [003] d..1 24574.152171: cpu_idle: state=0 cpu_id=3
75092 s.nexuslauncher-24827 (24827) [001] d..2 24574.152180: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75093          <idle>-0     (-----) [001] d..1 24574.152186: cpu_idle: state=0 cpu_id=1
75094<...>-1044 ( 887) [002] d..2 24574.152238: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75095          <idle>-0     (-----) [002] d..1 24574.152255: cpu_idle: state=0 cpu_id=2
75096          <idle>-0     (-----) [007] ...1 24574.152320: cpu_idle: state=4294967295 cpu_id=7
75097          <idle>-0     (-----) [007] d..1 24574.152321: cpu_idle: state=0 cpu_id=7
75098<...>-25201 ( 24827) [000] d.h4 24574.152971: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
75099<...>-25201 ( 24827) [000] d.h5 24574.152986: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
75100          <idle>-0     (-----) [001] .n.1 24574.152991: cpu_idle: state=4294967295 cpu_id=1
75101<...>-25201 ( 24827) [000] d.h4 24574.152992: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
75102          <idle>-0     (-----) [001] d..2 24574.153000: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
75103<...>-25201 ( 24827) [000] d.h5 24574.153013: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
75104          <idle>-0     (-----) [002] .n.1 24574.153019: cpu_idle: state=4294967295 cpu_id=2
75105          <idle>-0     (-----) [002] d..2 24574.153031: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
75106  crtc_event:111-254   (  254) [001] d..2 24574.153034: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75107          <idle>-0     (-----) [001] d..1 24574.153038: cpu_idle: state=0 cpu_id=1
75108<...>-24838 ( 24827) [005] d..2 24574.153086: sched_switch: prev_comm=Jit thread pool prev_pid=24838 prev_prio=129 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
75109          <idle>-0     (-----) [005] d..1 24574.153092: cpu_idle: state=0 cpu_id=5
75110 crtc_commit:111-253   (  253) [002] d..2 24574.153147: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
75111          <idle>-0     (-----) [002] d..1 24574.153151: cpu_idle: state=0 cpu_id=2
75112          <idle>-0     (-----) [005] ...1 24574.153327: cpu_idle: state=4294967295 cpu_id=5
75113          <idle>-0     (-----) [005] d..1 24574.153328: cpu_idle: state=0 cpu_id=5
75114          <idle>-0     (-----) [002] d.s3 24574.154234: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
75115          <idle>-0     (-----) [001] d.s2 24574.154235: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
75116<...>-25201 ( 24827) [000] d.s2 24574.154239: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
75117          <idle>-0     (-----) [002] d.s4 24574.154245: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
75118<...>-25201 ( 24827) [000] dns3 24574.154247: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
75119          <idle>-0     (-----) [001] dns3 24574.154250: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
75120<...>-25201 ( 24827) [000] d..2 24574.154257: sched_switch: prev_comm=reflection-thre prev_pid=25201 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
75121          <idle>-0     (-----) [001] .n.1 24574.154261: cpu_idle: state=4294967295 cpu_id=1
75122          <idle>-0     (-----) [002] ...1 24574.154265: cpu_idle: state=4294967295 cpu_id=2
75123          <idle>-0     (-----) [001] d..2 24574.154266: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
75124          <idle>-0     (-----) [002] d..1 24574.154268: cpu_idle: state=0 cpu_id=2
75125  crtc_event:111-254   (  254) [001] d..2 24574.154277: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
75126          <idle>-0     (-----) [002] ...1 24574.154282: cpu_idle: state=4294967295 cpu_id=2
75127          <idle>-0     (-----) [003] ...1 24574.154284: cpu_idle: state=4294967295 cpu_id=3
75128          <idle>-0     (-----) [002] d..1 24574.154285: cpu_idle: state=0 cpu_id=2
75129     kworker/0:1-13012 (13012) [000] d..2 24574.154286: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
75130          <idle>-0     (-----) [003] d..1 24574.154287: cpu_idle: state=0 cpu_id=3
75131     rcu_preempt-7     (    7) [001] d..2 24574.154287: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
75132     rcu_preempt-7     (    7) [001] d..3 24574.154298: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
75133     rcu_preempt-7     (    7) [001] d..2 24574.154308: 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
75134         rcuop/0-10    (   10) [001] d..2 24574.154314: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
75135         rcuop/0-10    (   10) [001] d..3 24574.154324: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
75136     logd.writer-563   (  555) [000] d..2 24574.154438: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=reflection-thre next_pid=25201 next_prio=120
75137         rcuop/0-10    (   10) [001] d..2 24574.154440: 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
75138         rcuop/1-21    (   21) [001] d..2 24574.154462: 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
75139          <idle>-0     (-----) [001] d..1 24574.154467: cpu_idle: state=0 cpu_id=1
75140<...>-25201 ( 24827) [000] d.h5 24574.155311: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
75141<...>-25201 ( 24827) [000] d.h6 24574.155324: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
75142          <idle>-0     (-----) [002] .n.1 24574.155328: cpu_idle: state=4294967295 cpu_id=2
75143          <idle>-0     (-----) [002] d..2 24574.155333: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
75144 crtc_commit:111-253   (  253) [002] d..2 24574.155406: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75145          <idle>-0     (-----) [002] d..1 24574.155412: cpu_idle: state=0 cpu_id=2
75146<...>-25201 ( 24827) [000] d.h4 24574.155606: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
75147<...>-25201 ( 24827) [000] d.h5 24574.155617: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
75148          <idle>-0     (-----) [001] .n.1 24574.155622: cpu_idle: state=4294967295 cpu_id=1
75149          <idle>-0     (-----) [001] d..2 24574.155627: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
75150  crtc_event:111-254   (  254) [001] d..2 24574.155642: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75151          <idle>-0     (-----) [001] d..1 24574.155646: cpu_idle: state=0 cpu_id=1
75152          <idle>-0     (-----) [002] ...1 24574.157021: cpu_idle: state=4294967295 cpu_id=2
75153          <idle>-0     (-----) [002] d..1 24574.157024: cpu_idle: state=0 cpu_id=2
75154          <idle>-0     (-----) [001] d.h2 24574.157388: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
75155          <idle>-0     (-----) [001] dnh3 24574.157395: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
75156          <idle>-0     (-----) [001] .n.1 24574.157400: cpu_idle: state=4294967295 cpu_id=1
75157          <idle>-0     (-----) [001] d..2 24574.157404: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
75158        DispSync-23904 (23896) [001] d..1 24574.157429: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
75159        DispSync-23904 (23896) [001] d..2 24574.157446: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
75160          <idle>-0     (-----) [002] .n.1 24574.157450: cpu_idle: state=4294967295 cpu_id=2
75161          <idle>-0     (-----) [002] d..2 24574.157456: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
75162        DispSync-23904 (23896) [001] d..2 24574.157466: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75163          <idle>-0     (-----) [001] d..1 24574.157471: cpu_idle: state=0 cpu_id=1
75164  appEventThread-23905 (23896) [002] d..3 24574.157504: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
75165  appEventThread-23905 (23896) [002] d..4 24574.157517: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
75166          <idle>-0     (-----) [001] .n.1 24574.157523: cpu_idle: state=4294967295 cpu_id=1
75167          <idle>-0     (-----) [001] d..2 24574.157528: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
75168  appEventThread-23905 (23896) [002] d..3 24574.157529: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
75169  appEventThread-23905 (23896) [002] d..4 24574.157547: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
75170          <idle>-0     (-----) [003] dns2 24574.157596: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
75171<...>-25201 ( 24827) [000] d.s2 24574.157618: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
75172  appEventThread-23905 (23896) [002] d.H3 24574.157624: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
75173 s.nexuslauncher-24827 (24827) [001] d.s2 24574.157632: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
75174  appEventThread-23905 (23896) [002] d.H4 24574.157641: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
75175          <idle>-0     (-----) [003] dns3 24574.157647: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
75176 s.nexuslauncher-24827 (24827) [001] d.s3 24574.157648: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
75177<...>-25201 ( 24827) [000] d.s3 24574.157651: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
75178          <idle>-0     (-----) [003] .n.1 24574.157658: cpu_idle: state=4294967295 cpu_id=3
75179          <idle>-0     (-----) [003] d..2 24574.157665: 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
75180  appEventThread-23905 (23896) [002] d..2 24574.157667: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
75181       rcu_sched-8     (    8) [002] d..2 24574.157673: sched_waking: comm=rcuos/6 pid=62 prio=120 target_cpu=001
75182         sugov:0-559   (  559) [003] d..2 24574.157674: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
75183       rcu_sched-8     (    8) [002] d..3 24574.157695: sched_wakeup: comm=rcuos/6 pid=62 prio=120 target_cpu=003
75184       rcu_sched-8     (    8) [002] d..2 24574.157702: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
75185  kworker/u16:15-18488 (18488) [002] d..2 24574.157809: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75186          <idle>-0     (-----) [002] d..1 24574.157818: cpu_idle: state=0 cpu_id=2
75187 s.nexuslauncher-24827 (24827) [001] d..3 24574.157870: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
75188<...>-25201 ( 24827) [000] .... 24574.157884: binder_transaction: transaction=1670432 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xa7
75189<...>-24151 ( 24151) [003] .... 24574.157885: binder_transaction: transaction=1670433 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
75190<...>-25201 ( 24827) [000] d..4 24574.157889: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=002
75191<...>-24151 ( 24151) [003] d..4 24574.157891: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
75192 s.nexuslauncher-24827 (24827) [001] d..4 24574.157892: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
75193          <idle>-0     (-----) [002] .n.1 24574.157898: cpu_idle: state=4294967295 cpu_id=2
75194          <idle>-0     (-----) [002] d..2 24574.157906: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
75195          <idle>-0     (-----) [005] dnh2 24574.157909: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
75196<...>-24151 ( 24151) [003] d..3 24574.157926: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=003
75197          <idle>-0     (-----) [005] .n.1 24574.157931: cpu_idle: state=4294967295 cpu_id=5
75198<...>-25201 ( 24827) [000] dn.5 24574.157933: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
75199          <idle>-0     (-----) [005] d..2 24574.157935: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
75200  Binder:23896_5-25989 (23896) [005] .... 24574.157937: binder_transaction_received: transaction=1670433
75201<...>-25201 ( 24827) [000] d..2 24574.157939: sched_switch: prev_comm=reflection-thre prev_pid=25201 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
75202  Binder:23968_C-25014 (23968) [000] .... 24574.157944: binder_transaction_received: transaction=1670432
75203  Binder:23896_5-25989 (23896) [005] d..1 24574.157950: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
75204    RenderThread-25194 (24827) [002] d..2 24574.157951: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75205          <idle>-0     (-----) [006] dnh2 24574.157954: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
75206          <idle>-0     (-----) [002] d..1 24574.157958: cpu_idle: state=0 cpu_id=2
75207          <idle>-0     (-----) [006] .n.1 24574.157978: cpu_idle: state=4294967295 cpu_id=6
75208          <idle>-0     (-----) [002] dnh2 24574.157979: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
75209          <idle>-0     (-----) [006] d..2 24574.157983: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
75210          <idle>-0     (-----) [002] .n.1 24574.157983: cpu_idle: state=4294967295 cpu_id=2
75211  Binder:23896_5-25989 (23896) [005] d..2 24574.157986: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
75212          <idle>-0     (-----) [002] d..2 24574.157988: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
75213          <idle>-0     (-----) [005] d..1 24574.157989: cpu_idle: state=0 cpu_id=5
75214    RenderThread-24437 (24151) [006] d..2 24574.158002: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
75215          <idle>-0     (-----) [006] d..1 24574.158005: cpu_idle: state=0 cpu_id=6
75216  appEventThread-23905 (23896) [002] d..2 24574.158021: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75217          <idle>-0     (-----) [002] d..1 24574.158027: cpu_idle: state=0 cpu_id=2
75218<...>-24151 ( 24151) [003] d..3 24574.158054: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
75219<...>-24151 ( 24151) [003] d..4 24574.158074: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
75220          <idle>-0     (-----) [002] .n.1 24574.158079: cpu_idle: state=4294967295 cpu_id=2
75221 s.nexuslauncher-24827 (24827) [001] d..1 24574.158098: sched_waking: comm=Jit thread pool pid=24838 prio=129 target_cpu=005
75222<...>-24151 ( 24151) [003] d.h3 24574.158102: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
75223          <idle>-0     (-----) [002] d..2 24574.158102: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
75224          <idle>-0     (-----) [005] dnh2 24574.158114: sched_wakeup: comm=Jit thread pool pid=24838 prio=129 target_cpu=005
75225<...>-24151 ( 24151) [003] d.h4 24574.158115: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
75226          <idle>-0     (-----) [005] .n.1 24574.158116: cpu_idle: state=4294967295 cpu_id=5
75227          <idle>-0     (-----) [005] d..2 24574.158119: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=24838 next_prio=129
75228    RenderThread-24437 (24151) [002] d..2 24574.158125: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
75229<...>-24151 ( 24151) [003] d..2 24574.158128: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=rcuos/6 next_pid=62 next_prio=120
75230         sugov:0-559   (  559) [002] d..2 24574.158135: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
75231<...>-62 ( 62) [003] d..2 24574.158135: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
75232 s.nexuslauncher-24827 (24827) [001] d..3 24574.158144: sched_waking: comm=UiThreadHelper pid=25108 prio=118 target_cpu=005
75233<...>-62 ( 62) [003] d..3 24574.158154: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
75234<...>-62 ( 62) [003] d..2 24574.158160: 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
75235          <idle>-0     (-----) [006] dnh2 24574.158166: sched_wakeup: comm=UiThreadHelper pid=25108 prio=118 target_cpu=006
75236          <idle>-0     (-----) [006] .n.1 24574.158168: cpu_idle: state=4294967295 cpu_id=6
75237          <idle>-0     (-----) [006] d..2 24574.158171: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=UiThreadHelper next_pid=25108 next_prio=118
75238       rcu_sched-8     (    8) [003] d..2 24574.158175: 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
75239          <idle>-0     (-----) [003] d..1 24574.158184: cpu_idle: state=0 cpu_id=3
75240<...>-25108 ( 24827) [006] d..2 24574.158215: sched_switch: prev_comm=UiThreadHelper prev_pid=25108 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
75241          <idle>-0     (-----) [006] d..1 24574.158219: cpu_idle: state=0 cpu_id=6
75242    RenderThread-24437 (24151) [002] d..1 24574.158236: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
75243    RenderThread-24437 (24151) [002] d..2 24574.158247: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
75244          <idle>-0     (-----) [003] .n.1 24574.158253: cpu_idle: state=4294967295 cpu_id=3
75245          <idle>-0     (-----) [003] d..2 24574.158260: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
75246<...>-24838 ( 24827) [005] d..2 24574.158291: sched_switch: prev_comm=Jit thread pool prev_pid=24838 prev_prio=129 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
75247          <idle>-0     (-----) [005] d..1 24574.158296: cpu_idle: state=0 cpu_id=5
75248    RenderThread-24437 (24151) [002] .... 24574.158303: binder_transaction: transaction=1670434 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
75249    RenderThread-24437 (24151) [002] d..4 24574.158308: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
75250<...>-24151 ( 24151) [003] d..2 24574.158308: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
75251          <idle>-0     (-----) [003] d..1 24574.158315: cpu_idle: state=0 cpu_id=3
75252    RenderThread-24437 (24151) [002] d..5 24574.158322: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
75253    RenderThread-24437 (24151) [002] d..2 24574.158354: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
75254  Binder:23896_5-25989 (23896) [002] .... 24574.158359: binder_transaction_received: transaction=1670434
75255  Binder:23896_5-25989 (23896) [002] .... 24574.158406: binder_transaction: transaction=1670435 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
75256          <idle>-0     (-----) [006] ...1 24574.158410: cpu_idle: state=4294967295 cpu_id=6
75257          <idle>-0     (-----) [006] d..1 24574.158412: cpu_idle: state=0 cpu_id=6
75258  Binder:23896_5-25989 (23896) [002] d..2 24574.158415: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
75259  Binder:23896_5-25989 (23896) [002] d..3 24574.158422: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
75260  Binder:23896_5-25989 (23896) [002] d..2 24574.158441: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
75261    RenderThread-24437 (24151) [002] .... 24574.158445: binder_transaction_received: transaction=1670435
75262 s.nexuslauncher-24827 (24827) [001] d..1 24574.158510: sched_waking: comm=Jit thread pool pid=24838 prio=129 target_cpu=005
75263          <idle>-0     (-----) [005] dnh2 24574.158525: sched_wakeup: comm=Jit thread pool pid=24838 prio=129 target_cpu=005
75264          <idle>-0     (-----) [005] .n.1 24574.158528: cpu_idle: state=4294967295 cpu_id=5
75265          <idle>-0     (-----) [005] d..2 24574.158531: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=24838 next_prio=129
75266<...>-24838 ( 24827) [005] d..2 24574.158541: sched_switch: prev_comm=Jit thread pool prev_pid=24838 prev_prio=129 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
75267          <idle>-0     (-----) [005] d..1 24574.158543: cpu_idle: state=0 cpu_id=5
75268  Binder:23968_C-25014 (23968) [000] .... 24574.159099: binder_transaction: transaction=1670436 dest_node=0 dest_proc=24827 dest_thread=25201 reply=1 flags=0x0 code=0x0
75269  Binder:23968_C-25014 (23968) [000] d..2 24574.159125: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=reflection-thre next_pid=25201 next_prio=120
75270<...>-25201 ( 24827) [000] .... 24574.159131: binder_transaction_received: transaction=1670436
75271    RenderThread-24437 (24151) [002] d..2 24574.159472: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
75272          <idle>-0     (-----) [002] d..1 24574.159481: cpu_idle: state=0 cpu_id=2
75273          <idle>-0     (-----) [002] d.h2 24574.159563: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
75274          <idle>-0     (-----) [002] d.h3 24574.159569: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
75275          <idle>-0     (-----) [002] dnh3 24574.159573: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
75276          <idle>-0     (-----) [002] .n.1 24574.159578: cpu_idle: state=4294967295 cpu_id=2
75277          <idle>-0     (-----) [002] d..2 24574.159584: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
75278 s.nexuslauncher-24827 (24827) [001] d..3 24574.159648: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
75279 s.nexuslauncher-24827 (24827) [001] d..4 24574.159668: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=003
75280          <idle>-0     (-----) [003] .n.1 24574.159673: cpu_idle: state=4294967295 cpu_id=3
75281          <idle>-0     (-----) [003] d..2 24574.159679: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
75282<...>-25201 ( 24827) [000] d.h2 24574.159682: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
75283 s.nexuslauncher-24827 (24827) [001] d..2 24574.159682: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
75284<...>-25201 ( 24827) [000] d.h3 24574.159700: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
75285          <idle>-0     (-----) [004] ...1 24574.159702: cpu_idle: state=4294967295 cpu_id=4
75286          <idle>-0     (-----) [004] d..1 24574.159703: cpu_idle: state=0 cpu_id=4
75287          <idle>-0     (-----) [005] ...1 24574.159705: cpu_idle: state=4294967295 cpu_id=5
75288          <idle>-0     (-----) [005] d..1 24574.159706: cpu_idle: state=0 cpu_id=5
75289          <idle>-0     (-----) [006] ...1 24574.159706: cpu_idle: state=4294967295 cpu_id=6
75290          <idle>-0     (-----) [006] d..1 24574.159708: cpu_idle: state=0 cpu_id=6
75291          <idle>-0     (-----) [007] ...1 24574.159713: cpu_idle: state=4294967295 cpu_id=7
75292     kworker/1:1-13091 (13091) [001] d..2 24574.159714: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
75293          <idle>-0     (-----) [007] d..1 24574.159715: cpu_idle: state=0 cpu_id=7
75294    RenderThread-24437 (24151) [002] .... 24574.159734: binder_transaction: transaction=1670437 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
75295    RenderThread-24437 (24151) [002] d..4 24574.159744: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
75296 kgsl_worker_thr-246   (  246) [001] d..2 24574.159748: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
75297    RenderThread-24437 (24151) [002] d..5 24574.159752: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
75298    RenderThread-24437 (24151) [002] d..2 24574.159762: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
75299  Binder:23896_5-25989 (23896) [002] .... 24574.159767: binder_transaction_received: transaction=1670437
75300 kgsl_worker_thr-246   (  246) [001] d..3 24574.159773: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
75301 kgsl_worker_thr-246   (  246) [001] d..2 24574.159782: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
75302     kworker/1:1-13091 (13091) [001] d..2 24574.159789: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
75303  Binder:23896_5-25989 (23896) [002] .... 24574.159882: binder_transaction: transaction=1670438 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
75304  Binder:23896_5-25989 (23896) [002] d..2 24574.159885: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
75305  Binder:23896_5-25989 (23896) [002] d..3 24574.159893: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
75306  Binder:23896_5-25989 (23896) [002] d..2 24574.159911: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
75307    RenderThread-24437 (24151) [002] .... 24574.159915: binder_transaction_received: transaction=1670438
75308  kworker/u16:15-18488 (18488) [001] d..2 24574.159966: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75309    RenderThread-24437 (24151) [002] d..2 24574.159967: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75310          <idle>-0     (-----) [001] d..1 24574.159975: cpu_idle: state=0 cpu_id=1
75311          <idle>-0     (-----) [002] d..1 24574.159977: cpu_idle: state=0 cpu_id=2
75312          <idle>-0     (-----) [007] ...1 24574.160059: cpu_idle: state=4294967295 cpu_id=7
75313          <idle>-0     (-----) [007] d..1 24574.160060: cpu_idle: state=0 cpu_id=7
75314<...>-25201 ( 24827) [000] .... 24574.160479: binder_transaction: transaction=1670439 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xa7
75315<...>-25201 ( 24827) [000] d..4 24574.160483: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
75316<...>-25201 ( 24827) [000] dn.5 24574.160492: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
75317<...>-25201 ( 24827) [000] d..2 24574.160498: sched_switch: prev_comm=reflection-thre prev_pid=25201 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
75318  Binder:23968_C-25014 (23968) [000] .... 24574.160503: binder_transaction_received: transaction=1670439
75319          <idle>-0     (-----) [001] d.s2 24574.160904: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
75320  Binder:23968_C-25014 (23968) [000] d.s2 24574.160909: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
75321          <idle>-0     (-----) [001] dns3 24574.160917: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
75322          <idle>-0     (-----) [001] .n.1 24574.160924: cpu_idle: state=4294967295 cpu_id=1
75323          <idle>-0     (-----) [001] d..2 24574.160930: 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
75324  Binder:23968_C-25014 (23968) [000] d.s3 24574.160941: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
75325  Binder:23968_C-25014 (23968) [000] d.s2 24574.160946: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
75326     rcu_preempt-7     (    7) [001] d..2 24574.160959: 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
75327          <idle>-0     (-----) [001] d..1 24574.160964: cpu_idle: state=0 cpu_id=1
75328          <idle>-0     (-----) [001] .n.1 24574.160967: cpu_idle: state=4294967295 cpu_id=1
75329  Binder:23968_C-25014 (23968) [000] d.s3 24574.160967: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
75330          <idle>-0     (-----) [001] d..2 24574.160975: 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
75331     rcu_preempt-7     (    7) [001] d..2 24574.160980: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
75332     rcu_preempt-7     (    7) [001] d..3 24574.160996: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
75333     rcu_preempt-7     (    7) [001] d..2 24574.160998: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=000
75334     rcu_preempt-7     (    7) [001] d..3 24574.161011: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=001
75335     rcu_preempt-7     (    7) [001] d..2 24574.161021: 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
75336         rcuop/2-29    (   29) [001] d..2 24574.161026: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
75337         rcuop/2-29    (   29) [001] d..3 24574.161036: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
75338         rcuop/2-29    (   29) [001] d..2 24574.161042: 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
75339         rcuop/6-61    (   61) [001] d..2 24574.161068: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
75340          <idle>-0     (-----) [002] ...1 24574.161088: cpu_idle: state=4294967295 cpu_id=2
75341          <idle>-0     (-----) [002] d..1 24574.161090: cpu_idle: state=0 cpu_id=2
75342         rcuop/3-37    (   37) [001] d..2 24574.161091: 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
75343          <idle>-0     (-----) [001] d..1 24574.161096: cpu_idle: state=0 cpu_id=1
75344          <idle>-0     (-----) [001] d.h2 24574.161385: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
75345          <idle>-0     (-----) [001] dnh3 24574.161394: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
75346          <idle>-0     (-----) [001] .n.1 24574.161399: cpu_idle: state=4294967295 cpu_id=1
75347          <idle>-0     (-----) [001] d..2 24574.161404: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
75348        DispSync-23904 (23896) [001] d..1 24574.161428: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
75349        DispSync-23904 (23896) [001] d..2 24574.161444: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
75350          <idle>-0     (-----) [002] .n.1 24574.161449: cpu_idle: state=4294967295 cpu_id=2
75351          <idle>-0     (-----) [002] d..2 24574.161456: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
75352        DispSync-23904 (23896) [001] d..2 24574.161468: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75353          <idle>-0     (-----) [001] d..1 24574.161475: cpu_idle: state=0 cpu_id=1
75354   sfEventThread-23906 (23896) [002] d..3 24574.161503: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=004
75355   sfEventThread-23906 (23896) [002] d..4 24574.161529: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=001
75356          <idle>-0     (-----) [001] .n.1 24574.161533: cpu_idle: state=4294967295 cpu_id=1
75357   sfEventThread-23906 (23896) [002] d.h3 24574.161568: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
75358          <idle>-0     (-----) [001] d..2 24574.161569: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
75359   sfEventThread-23906 (23896) [002] d.h4 24574.161582: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
75360<...>-24041 ( 23968) [001] d..2 24574.161591: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
75361   sfEventThread-23906 (23896) [002] d..3 24574.161596: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
75362         sugov:0-559   (  559) [001] d..2 24574.161603: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
75363   sfEventThread-23906 (23896) [002] d..4 24574.161613: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
75364<...>-24041 ( 23968) [001] d..2 24574.161617: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
75365   sfEventThread-23906 (23896) [002] d..2 24574.161640: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75366          <idle>-0     (-----) [002] d..1 24574.161649: cpu_idle: state=0 cpu_id=2
75367  Binder:23968_C-25014 (23968) [000] .... 24574.161757: binder_transaction: transaction=1670440 dest_node=0 dest_proc=24827 dest_thread=25201 reply=1 flags=0x0 code=0x0
75368  Binder:23968_C-25014 (23968) [000] d..2 24574.161784: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=reflection-thre next_pid=25201 next_prio=120
75369<...>-25201 ( 24827) [000] .... 24574.161789: binder_transaction_received: transaction=1670440
75370  surfaceflinger-23896 (23896) [001] d..1 24574.162064: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
75371  surfaceflinger-23896 (23896) [001] d..2 24574.162076: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
75372          <idle>-0     (-----) [002] .n.1 24574.162081: cpu_idle: state=4294967295 cpu_id=2
75373          <idle>-0     (-----) [002] d..2 24574.162086: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
75374   sfEventThread-23906 (23896) [002] d..2 24574.162110: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75375          <idle>-0     (-----) [002] d..1 24574.162116: cpu_idle: state=0 cpu_id=2
75376    RenderThread-25194 (24827) [003] d..1 24574.162173: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
75377    RenderThread-25194 (24827) [003] d..2 24574.162194: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
75378          <idle>-0     (-----) [002] .n.1 24574.162198: cpu_idle: state=4294967295 cpu_id=2
75379          <idle>-0     (-----) [002] d..2 24574.162205: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
75380    RenderThread-25194 (24827) [003] .... 24574.162239: binder_transaction: transaction=1670441 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
75381 s.nexuslauncher-24827 (24827) [002] d..2 24574.162242: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75382    RenderThread-25194 (24827) [003] ...2 24574.162247: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
75383          <idle>-0     (-----) [002] d..1 24574.162249: cpu_idle: state=0 cpu_id=2
75384    RenderThread-25194 (24827) [003] d..4 24574.162250: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
75385    RenderThread-25194 (24827) [003] d..5 24574.162261: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
75386          <idle>-0     (-----) [002] .n.1 24574.162266: cpu_idle: state=4294967295 cpu_id=2
75387    RenderThread-25194 (24827) [003] d..2 24574.162271: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
75388          <idle>-0     (-----) [002] d..2 24574.162273: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
75389  Binder:23896_5-25989 (23896) [002] .... 24574.162277: binder_transaction_received: transaction=1670441
75390  Binder:23896_5-25989 (23896) [002] ...1 24574.162315: tracing_mark_write: B|23896|HIDL::IMapper::freeBuffer::passthrough
75391  Binder:23896_5-25989 (23896) [002] ...1 24574.162333: tracing_mark_write: B|23896|FreeBuffer
75392  Binder:23896_5-25989 (23896) [002] d..2 24574.162354: sched_waking: comm=system pid=105 prio=120 target_cpu=000
75393  Binder:23896_5-25989 (23896) [002] d..3 24574.162373: sched_wakeup: comm=system pid=105 prio=120 target_cpu=002
75394  Binder:23896_5-25989 (23896) [002] d..2 24574.162379: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
75395  Binder:23896_5-25989 (23896) [002] d..3 24574.162396: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
75396  Binder:23896_5-25989 (23896) [002] ...1 24574.162404: tracing_mark_write: E|23896
75397  Binder:23896_5-25989 (23896) [002] ...1 24574.162407: tracing_mark_write: B|23896|FreeBuffer
75398  Binder:23896_5-25989 (23896) [002] ...1 24574.162419: tracing_mark_write: E|23896
75399  Binder:23896_5-25989 (23896) [002] ...1 24574.162425: tracing_mark_write: E|23896
75400  kworker/u16:15-18488 (18488) [003] d..2 24574.162441: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=rcuop/2 next_pid=29 next_prio=120
75401  Binder:23896_5-25989 (23896) [002] ...1 24574.162442: tracing_mark_write: B|23896|HIDL::IMapper::createDescriptor_2_1::passthrough
75402  Binder:23896_5-25989 (23896) [002] ...1 24574.162448: tracing_mark_write: E|23896
75403         rcuop/2-29    (   29) [003] d..2 24574.162457: 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
75404  Binder:23896_5-25989 (23896) [002] ...1 24574.162457: tracing_mark_write: B|23896|HIDL::IAllocator::allocate::client
75405  Binder:23896_5-25989 (23896) [002] ...1 24574.162460: tracing_mark_write: E|23896
75406  Binder:23896_5-25989 (23896) [002] .... 24574.162488: binder_transaction: transaction=1670442 dest_node=959 dest_proc=786 dest_thread=0 reply=0 flags=0x10 code=0x2
75407          <idle>-0     (-----) [003] d.s4 24574.162493: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
75408  Binder:23896_5-25989 (23896) [002] ...2 24574.162496: binder_set_priority: proc=786 thread=816 old=120 => new=110 desired=110
75409          <idle>-0     (-----) [003] d.s5 24574.162499: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
75410  Binder:23896_5-25989 (23896) [002] d..4 24574.162499: sched_waking: comm=HwBinder:786_2 pid=816 prio=110 target_cpu=006
75411          <idle>-0     (-----) [003] dns5 24574.162502: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
75412  surfaceflinger-23896 (23896) [001] d.h1 24574.162508: sched_waking: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
75413          <idle>-0     (-----) [003] d..2 24574.162510: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
75414  surfaceflinger-23896 (23896) [001] dnh2 24574.162517: sched_wakeup: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
75415          <idle>-0     (-----) [005] dnh2 24574.162521: sched_wakeup: comm=HwBinder:786_2 pid=816 prio=110 target_cpu=005
75416          <idle>-0     (-----) [005] .n.1 24574.162522: cpu_idle: state=4294967295 cpu_id=5
75417  Binder:23896_5-25989 (23896) [002] d..2 24574.162524: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
75418          <idle>-0     (-----) [005] d..2 24574.162526: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:786_2 next_pid=816 next_prio=110
75419  surfaceflinger-23896 (23896) [001] d..2 24574.162526: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=R ==> next_comm=irq/80-114a000. next_pid=24617 next_prio=49
75420<...>-816 ( 786) [005] .... 24574.162534: binder_transaction_received: transaction=1670442
75421  kworker/u16:15-18488 (18488) [003] d..2 24574.162550: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
75422<...>-816 ( 786) [005] ...1 24574.162568: tracing_mark_write: B|786|HIDL::IAllocator::allocate::server
75423<...>-816 ( 786) [005] ...1 24574.162597: tracing_mark_write: B|786|AllocBuffer
75424<...>-816 ( 786) [005] ...1 24574.162603: tracing_mark_write: B|786|ION_IOC_ALLOC size: 9469952
75425<...>-24617 ( 24617) [001] d..2 24574.162640: sched_switch: prev_comm=irq/80-114a000. prev_pid=24617 prev_prio=49 prev_state=D ==> next_comm=android.anim next_pid=24041 next_prio=110
75426  surfaceflinger-23896 (23896) [003] d.s1 24574.162658: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
75427  surfaceflinger-23896 (23896) [003] d.s2 24574.162668: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
75428<...>-25201 ( 24827) [000] d..2 24574.162684: sched_switch: prev_comm=reflection-thre prev_pid=25201 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75429<...>-816 ( 786) [005] ...1 24574.162685: tracing_mark_write: E|786
75430<...>-816 ( 786) [005] ...1 24574.162686: tracing_mark_write: B|786|ION_IOC_MAP
75431<...>-816 ( 786) [005] ...1 24574.162694: tracing_mark_write: E|786
75432<...>-816 ( 786) [005] ...1 24574.162696: tracing_mark_write: E|786
75433<...>-816 ( 786) [005] ...1 24574.162697: tracing_mark_write: B|786|AllocBuffer
75434<...>-816 ( 786) [005] ...1 24574.162698: tracing_mark_write: B|786|ION_IOC_ALLOC size: 20480
75435<...>-816 ( 786) [005] ...1 24574.162702: tracing_mark_write: E|786
75436<...>-816 ( 786) [005] ...1 24574.162703: tracing_mark_write: B|786|ION_IOC_MAP
75437          <idle>-0     (-----) [000] d..1 24574.162704: cpu_idle: state=0 cpu_id=0
75438<...>-816 ( 786) [005] ...1 24574.162706: tracing_mark_write: E|786
75439<...>-816 ( 786) [005] ...1 24574.162707: tracing_mark_write: E|786
75440<...>-816 ( 786) [005] ...1 24574.162745: tracing_mark_write: E|786
75441<...>-816 ( 786) [005] .... 24574.162751: binder_transaction: transaction=1670443 dest_node=0 dest_proc=23896 dest_thread=25989 reply=1 flags=0x0 code=0x0
75442<...>-816 ( 786) [005] d..2 24574.162758: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
75443<...>-816 ( 786) [005] d..3 24574.162769: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
75444  surfaceflinger-23896 (23896) [003] ...1 24574.162774: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
75445  surfaceflinger-23896 (23896) [003] ...1 24574.162777: tracing_mark_write: E|23896
75446<...>-24041 ( 23968) [001] .... 24574.162780: binder_transaction: transaction=1670444 dest_node=1271137 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
75447<...>-24041 ( 23968) [001] d..4 24574.162786: sched_waking: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=007
75448<...>-816 ( 786) [005] d.h3 24574.162791: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
75449<...>-816 ( 786) [005] .... 24574.162805: binder_set_priority: proc=786 thread=816 old=110 => new=120 desired=120
75450  surfaceflinger-23896 (23896) [003] .... 24574.162807: binder_transaction: transaction=1670445 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
75451<...>-24041 ( 23968) [001] d..5 24574.162810: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=000
75452<...>-816 ( 786) [005] ...1 24574.162815: tracing_mark_write: B|786|FreeBuffer
75453          <idle>-0     (-----) [000] dnh2 24574.162816: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
75454<...>-816 ( 786) [005] ...1 24574.162819: tracing_mark_write: E|786
75455<...>-816 ( 786) [005] ...1 24574.162820: tracing_mark_write: B|786|FreeBuffer
75456<...>-816 ( 786) [005] ...1 24574.162821: tracing_mark_write: B|786|UnmapBuffer
75457  surfaceflinger-23896 (23896) [003] ...2 24574.162829: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
75458<...>-816 ( 786) [005] ...1 24574.162830: tracing_mark_write: E|786
75459<...>-816 ( 786) [005] d..2 24574.162832: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=004
75460  surfaceflinger-23896 (23896) [003] d..4 24574.162846: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
75461          <idle>-0     (-----) [000] .n.1 24574.162846: cpu_idle: state=4294967295 cpu_id=0
75462          <idle>-0     (-----) [000] d..2 24574.162852: 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
75463  surfaceflinger-23896 (23896) [003] d..5 24574.162860: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
75464         sugov:0-559   (  559) [000] d..2 24574.162865: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
75465<...>-24041 ( 23968) [001] d..2 24574.162869: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
75466  surfaceflinger-23896 (23896) [003] d..2 24574.162871: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
75467  HwBinder:598_3-633   (  598) [001] .... 24574.162878: binder_transaction_received: transaction=1670445
75468     ksoftirqd/3-34    (   34) [003] d.s2 24574.162881: sched_waking: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
75469<...>-816 ( 786) [005] ...1 24574.162887: tracing_mark_write: E|786
75470  Binder:23896_3-23986 (23896) [000] d.h3 24574.162890: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
75471     ksoftirqd/3-34    (   34) [003] d.s3 24574.162893: sched_wakeup: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
75472  Binder:23896_3-23986 (23896) [000] .... 24574.162894: binder_transaction_received: transaction=1670444
75473<...>-816 ( 786) [005] d..2 24574.162899: sched_switch: prev_comm=HwBinder:786_2 prev_pid=816 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
75474  HwBinder:598_3-633   (  598) [001] d..2 24574.162901: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=98 prev_state=R ==> next_comm=irq/80-114a000. next_pid=24617 next_prio=49
75475  Binder:23896_5-25989 (23896) [005] .... 24574.162901: binder_transaction_received: transaction=1670443
75476     ksoftirqd/3-34    (   34) [003] d..2 24574.162909: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
75477  Binder:23896_3-23986 (23896) [000] d..1 24574.162914: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
75478  Binder:23896_5-25989 (23896) [005] ...1 24574.162918: tracing_mark_write: B|23896|HIDL::IMapper::importBuffer::passthrough
75479  Binder:23896_3-23986 (23896) [000] dn.2 24574.162928: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
75480  Binder:23896_5-25989 (23896) [005] ...1 24574.162932: tracing_mark_write: E|23896
75481  kworker/u16:15-18488 (18488) [003] d..2 24574.162936: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
75482  Binder:23896_3-23986 (23896) [000] d..2 24574.162938: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=R+ ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
75483<...>-24617 ( 24617) [001] d..2 24574.162939: sched_switch: prev_comm=irq/80-114a000. prev_pid=24617 prev_prio=49 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
75484  Binder:23896_5-25989 (23896) [005] ...1 24574.162946: tracing_mark_write: B|23896|HIDL::IMapper::getTransportSize::passthrough
75485  Binder:23896_5-25989 (23896) [005] ...1 24574.162949: tracing_mark_write: E|23896
75486   sfEventThread-23906 (23896) [003] d..2 24574.162950: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
75487  kworker/u16:15-18488 (18488) [003] .... 24574.162954: clk_set_rate: l3_cluster1_vote_clk 576000000
75488  HwBinder:598_3-633   (  598) [000] ...1 24574.162966: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
75489  Binder:23896_5-25989 (23896) [005] .... 24574.162968: binder_transaction: transaction=1670446 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
75490  Binder:23896_5-25989 (23896) [005] d..2 24574.162971: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=003
75491  Binder:23896_5-25989 (23896) [005] d..3 24574.162981: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
75492  Binder:23896_5-25989 (23896) [005] .... 24574.162996: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
75493  Binder:23896_5-25989 (23896) [005] d..2 24574.163007: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
75494    RenderThread-25194 (24827) [005] .... 24574.163009: binder_transaction_received: transaction=1670446
75495    RenderThread-25194 (24827) [005] .... 24574.163024: binder_transaction: transaction=1670447 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x1
75496    RenderThread-25194 (24827) [005] ...2 24574.163026: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
75497    RenderThread-25194 (24827) [005] d..4 24574.163026: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
75498    RenderThread-25194 (24827) [005] d..5 24574.163030: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
75499    RenderThread-25194 (24827) [005] d..2 24574.163034: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
75500  Binder:23896_5-25989 (23896) [005] .... 24574.163035: binder_transaction_received: transaction=1670447
75501  Binder:23896_5-25989 (23896) [005] .... 24574.163051: binder_transaction: transaction=1670448 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
75502  kworker/u16:15-18488 (18488) [003] d..2 24574.163056: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
75503          <idle>-0     (-----) [003] d..1 24574.163064: cpu_idle: state=0 cpu_id=3
75504  Binder:23896_5-25989 (23896) [005] d..2 24574.163074: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
75505  Binder:23896_5-25989 (23896) [005] d..3 24574.163077: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
75506  Binder:23896_5-25989 (23896) [005] .... 24574.163078: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
75507  Binder:23896_5-25989 (23896) [005] d..2 24574.163081: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
75508    RenderThread-25194 (24827) [005] .... 24574.163083: binder_transaction_received: transaction=1670448
75509  HwBinder:598_3-633   (  598) [000] ...1 24574.163086: tracing_mark_write: B|598|HWCSession::PresentDisplay::
75510    RenderThread-25194 (24827) [005] ...1 24574.163100: tracing_mark_write: B|24827|HIDL::IMapper::importBuffer::passthrough
75511    RenderThread-25194 (24827) [005] ...1 24574.163114: tracing_mark_write: E|24827
75512    RenderThread-25194 (24827) [005] ...1 24574.163118: tracing_mark_write: B|24827|HIDL::IMapper::validateBufferSize::passthrough
75513    RenderThread-25194 (24827) [005] ...1 24574.163126: tracing_mark_write: E|24827
75514    RenderThread-25194 (24827) [005] ...1 24574.163130: tracing_mark_write: B|24827|HIDL::IMapper::getTransportSize::passthrough
75515    RenderThread-25194 (24827) [005] ...1 24574.163131: tracing_mark_write: E|24827
75516  HwBinder:598_3-633   (  598) [000] ...1 24574.163220: tracing_mark_write: B|598|HWDeviceDRM::Commit::
75517  HwBinder:598_3-633   (  598) [000] ...1 24574.163229: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
75518  HwBinder:598_3-633   (  598) [000] d.h1 24574.163426: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
75519  HwBinder:598_3-633   (  598) [000] dnh2 24574.163437: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
75520<...>-24041 ( 23968) [001] .... 24574.163446: binder_transaction: transaction=1670449 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
75521  HwBinder:598_3-633   (  598) [000] d..2 24574.163447: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=98 prev_state=R+ ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
75522<...>-24041 ( 23968) [001] ...2 24574.163470: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
75523          <idle>-0     (-----) [003] .n.1 24574.163471: cpu_idle: state=4294967295 cpu_id=3
75524<...>-24041 ( 23968) [001] d..4 24574.163474: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=004
75525          <idle>-0     (-----) [003] d..2 24574.163475: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
75526<...>-24041 ( 23968) [001] d..5 24574.163492: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
75527<...>-24041 ( 23968) [001] d.h5 24574.163524: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
75528<...>-24041 ( 23968) [001] dnh6 24574.163534: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
75529<...>-24041 ( 23968) [001] d..2 24574.163540: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
75530         sugov:0-559   (  559) [001] d..2 24574.163548: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
75531  Binder:23896_4-24423 (23896) [001] .... 24574.163557: binder_transaction_received: transaction=1670449
75532 irq/79-1436400.-24613 (24613) [000] d..2 24574.163610: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=rcuop/4 next_pid=45 next_prio=120
75533         rcuop/4-45    (   45) [000] d..2 24574.163624: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
75534  Binder:23896_3-23986 (23896) [000] d..1 24574.163631: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
75535  Binder:23896_3-23986 (23896) [000] dn.2 24574.163642: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
75536  Binder:23896_3-23986 (23896) [000] d..2 24574.163646: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
75537  HwBinder:598_3-633   (  598) [003] d.s1 24574.163657: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
75538  Binder:23896_4-24423 (23896) [001] .... 24574.163660: binder_transaction: transaction=1670450 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
75539  Binder:23896_4-24423 (23896) [001] .... 24574.163665: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
75540  HwBinder:598_3-633   (  598) [003] d.s2 24574.163665: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
75541   sfEventThread-23906 (23896) [000] d..2 24574.163681: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
75542  Binder:23896_4-24423 (23896) [001] d..2 24574.163708: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
75543<...>-24041 ( 23968) [001] .... 24574.163713: binder_transaction_received: transaction=1670450
75544  Binder:23896_3-23986 (23896) [000] d..2 24574.163715: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75545          <idle>-0     (-----) [000] d..1 24574.163729: cpu_idle: state=0 cpu_id=0
75546<...>-24041 ( 23968) [001] d..2 24574.163816: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75547          <idle>-0     (-----) [001] d..1 24574.163830: cpu_idle: state=0 cpu_id=1
75548  HwBinder:598_3-633   (  598) [003] d..2 24574.163851: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
75549  HwBinder:598_3-633   (  598) [003] d..3 24574.163872: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
75550          <idle>-0     (-----) [001] .n.1 24574.163876: cpu_idle: state=4294967295 cpu_id=1
75551          <idle>-0     (-----) [001] d..2 24574.163883: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
75552  HwBinder:598_3-633   (  598) [003] ...1 24574.163946: tracing_mark_write: E|598
75553  HwBinder:598_3-633   (  598) [003] ...1 24574.163949: tracing_mark_write: E|598
75554  HwBinder:598_3-633   (  598) [003] ...1 24574.163997: tracing_mark_write: E|598
75555  HwBinder:598_3-633   (  598) [003] ...1 24574.164036: tracing_mark_write: E|598
75556  HwBinder:598_3-633   (  598) [003] .... 24574.164046: binder_transaction: transaction=1670451 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
75557  HwBinder:598_3-633   (  598) [003] d..2 24574.164058: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
75558  HwBinder:598_3-633   (  598) [003] d..3 24574.164074: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
75559  HwBinder:598_3-633   (  598) [003] .... 24574.164077: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
75560          <idle>-0     (-----) [000] .n.1 24574.164079: cpu_idle: state=4294967295 cpu_id=0
75561          <idle>-0     (-----) [000] d..2 24574.164085: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
75562  surfaceflinger-23896 (23896) [000] .... 24574.164090: binder_transaction_received: transaction=1670451
75563  HwBinder:598_3-633   (  598) [003] d..2 24574.164128: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
75564     ksoftirqd/3-34    (   34) [003] d.s2 24574.164140: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
75565     ksoftirqd/3-34    (   34) [003] d.s3 24574.164148: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
75566  surfaceflinger-23896 (23896) [000] d..2 24574.164157: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
75567     ksoftirqd/3-34    (   34) [003] d..2 24574.164163: 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
75568          <idle>-0     (-----) [003] d..1 24574.164170: cpu_idle: state=0 cpu_id=3
75569          <idle>-0     (-----) [003] .n.1 24574.164180: cpu_idle: state=4294967295 cpu_id=3
75570          <idle>-0     (-----) [003] d..2 24574.164184: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
75571 irq/79-1436400.-24613 (24613) [000] d..2 24574.164199: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75572          <idle>-0     (-----) [000] d..1 24574.164207: cpu_idle: state=0 cpu_id=0
75573 crtc_commit:111-253   (  253) [001] d..2 24574.164216: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
75574  surfaceflinger-23896 (23896) [003] d.s1 24574.164233: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
75575          <idle>-0     (-----) [001] d..1 24574.164243: cpu_idle: state=0 cpu_id=1
75576  surfaceflinger-23896 (23896) [003] d.s2 24574.164254: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
75577          <idle>-0     (-----) [001] .n.1 24574.164259: cpu_idle: state=4294967295 cpu_id=1
75578          <idle>-0     (-----) [001] d..2 24574.164265: 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
75579       rcu_sched-8     (    8) [001] d..2 24574.164284: 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
75580          <idle>-0     (-----) [001] d..1 24574.164288: cpu_idle: state=0 cpu_id=1
75581<...>-105 ( 105) [002] d..2 24574.164430: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75582          <idle>-0     (-----) [002] d..1 24574.164442: cpu_idle: state=0 cpu_id=2
75583  surfaceflinger-23896 (23896) [003] d..2 24574.164512: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
75584          <idle>-0     (-----) [003] d..1 24574.164522: cpu_idle: state=0 cpu_id=3
75585          <idle>-0     (-----) [000] d.h3 24574.164817: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
75586          <idle>-0     (-----) [000] d.h4 24574.164828: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
75587          <idle>-0     (-----) [001] .n.1 24574.164832: cpu_idle: state=4294967295 cpu_id=1
75588          <idle>-0     (-----) [000] ...1 24574.164835: cpu_idle: state=4294967295 cpu_id=0
75589          <idle>-0     (-----) [001] d..2 24574.164836: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
75590          <idle>-0     (-----) [000] d..1 24574.164838: cpu_idle: state=0 cpu_id=0
75591    RenderThread-25194 (24827) [005] .... 24574.164853: binder_transaction: transaction=1670452 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
75592 kgsl_worker_thr-246   (  246) [001] d..2 24574.164873: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
75593          <idle>-0     (-----) [001] d..1 24574.164876: cpu_idle: state=0 cpu_id=1
75594    RenderThread-25194 (24827) [005] ...2 24574.164888: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
75595    RenderThread-25194 (24827) [005] d..4 24574.164889: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
75596    RenderThread-25194 (24827) [005] d..2 24574.164906: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
75597          <idle>-0     (-----) [000] dnh2 24574.164910: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
75598          <idle>-0     (-----) [000] .n.1 24574.164913: cpu_idle: state=4294967295 cpu_id=0
75599          <idle>-0     (-----) [000] d..2 24574.164920: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
75600  Binder:23896_4-24423 (23896) [000] .... 24574.164924: binder_transaction_received: transaction=1670452
75601  Binder:23896_5-25989 (23896) [005] d..2 24574.164926: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
75602          <idle>-0     (-----) [005] d..1 24574.164935: cpu_idle: state=0 cpu_id=5
75603          <idle>-0     (-----) [001] d.h2 24574.164967: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
75604          <idle>-0     (-----) [001] dnh3 24574.164973: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
75605          <idle>-0     (-----) [001] .n.1 24574.164978: cpu_idle: state=4294967295 cpu_id=1
75606          <idle>-0     (-----) [001] d..2 24574.164982: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
75607 kgsl_worker_thr-246   (  246) [001] d..2 24574.165002: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75608          <idle>-0     (-----) [001] d..1 24574.165006: cpu_idle: state=0 cpu_id=1
75609  Binder:23896_4-24423 (23896) [000] .... 24574.165020: binder_transaction: transaction=1670453 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
75610  Binder:23896_4-24423 (23896) [000] d..2 24574.165026: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
75611  Binder:23896_4-24423 (23896) [000] d..3 24574.165042: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
75612  Binder:23896_4-24423 (23896) [000] d.h3 24574.165072: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
75613  Binder:23896_4-24423 (23896) [000] d.h4 24574.165081: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
75614  Binder:23896_4-24423 (23896) [000] .... 24574.165084: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
75615          <idle>-0     (-----) [001] .n.1 24574.165085: cpu_idle: state=4294967295 cpu_id=1
75616          <idle>-0     (-----) [001] d..2 24574.165090: 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
75617         sugov:0-559   (  559) [001] d..2 24574.165115: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
75618  Binder:23896_4-24423 (23896) [000] d..2 24574.165121: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75619    RenderThread-25194 (24827) [001] .... 24574.165121: binder_transaction_received: transaction=1670453
75620          <idle>-0     (-----) [000] d..1 24574.165129: cpu_idle: state=0 cpu_id=0
75621    RenderThread-25194 (24827) [001] d..1 24574.165193: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
75622    RenderThread-25194 (24827) [001] d..2 24574.165213: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
75623          <idle>-0     (-----) [000] .n.1 24574.165218: cpu_idle: state=4294967295 cpu_id=0
75624          <idle>-0     (-----) [000] d..2 24574.165225: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
75625    RenderThread-25194 (24827) [001] d..2 24574.165234: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75626          <idle>-0     (-----) [001] d..1 24574.165239: cpu_idle: state=0 cpu_id=1
75627 s.nexuslauncher-24827 (24827) [000] .... 24574.165393: binder_transaction: transaction=1670454 dest_node=1309207 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xc
75628 s.nexuslauncher-24827 (24827) [000] ...2 24574.165408: binder_set_priority: proc=23968 thread=25014 old=120 => new=110 desired=110
75629 s.nexuslauncher-24827 (24827) [000] d..4 24574.165411: sched_waking: comm=Binder:23968_C pid=25014 prio=110 target_cpu=000
75630 s.nexuslauncher-24827 (24827) [000] d..5 24574.165421: sched_wakeup: comm=Binder:23968_C pid=25014 prio=110 target_cpu=000
75631 s.nexuslauncher-24827 (24827) [000] d..2 24574.165429: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=110
75632  Binder:23968_C-25014 (23968) [000] .... 24574.165436: binder_transaction_received: transaction=1670454
75633          <idle>-0     (-----) [002] ...1 24574.165600: cpu_idle: state=4294967295 cpu_id=2
75634          <idle>-0     (-----) [002] d..1 24574.165602: cpu_idle: state=0 cpu_id=2
75635  Binder:23968_C-25014 (23968) [000] d..3 24574.165645: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=001
75636  Binder:23968_C-25014 (23968) [000] d..4 24574.165659: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=001
75637          <idle>-0     (-----) [001] .n.1 24574.165664: cpu_idle: state=4294967295 cpu_id=1
75638          <idle>-0     (-----) [001] d..2 24574.165669: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
75639  Binder:23968_C-25014 (23968) [000] .... 24574.165735: binder_transaction: transaction=1670455 dest_node=0 dest_proc=24827 dest_thread=24827 reply=1 flags=0x0 code=0x0
75640  Binder:23968_C-25014 (23968) [000] d..2 24574.165739: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
75641  Binder:23968_C-25014 (23968) [000] dn.3 24574.165747: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
75642  Binder:23968_C-25014 (23968) [000] d..2 24574.165752: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=110 prev_state=R+ ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
75643 s.nexuslauncher-24827 (24827) [000] .... 24574.165757: binder_transaction_received: transaction=1670455
75644<...>-24041 ( 23968) [001] d..3 24574.165978: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=005
75645<...>-24041 ( 23968) [001] d..4 24574.166001: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=002
75646          <idle>-0     (-----) [002] .n.1 24574.166006: cpu_idle: state=4294967295 cpu_id=2
75647<...>-24041 ( 23968) [001] d.h3 24574.166030: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
75648          <idle>-0     (-----) [002] d..2 24574.166031: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
75649<...>-24041 ( 23968) [001] d.h4 24574.166043: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
75650          <idle>-0     (-----) [003] .n.1 24574.166048: cpu_idle: state=4294967295 cpu_id=3
75651          <idle>-0     (-----) [003] d..2 24574.166054: 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
75652         sugov:0-559   (  559) [003] d..2 24574.166069: 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
75653          <idle>-0     (-----) [003] d..1 24574.166074: cpu_idle: state=0 cpu_id=3
75654<...>-24003 ( 23968) [002] d..2 24574.166086: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75655          <idle>-0     (-----) [002] d..1 24574.166093: cpu_idle: state=0 cpu_id=2
75656 s.nexuslauncher-24827 (24827) [000] d.h2 24574.166123: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
75657 s.nexuslauncher-24827 (24827) [000] d.h3 24574.166141: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
75658          <idle>-0     (-----) [003] .n.1 24574.166145: cpu_idle: state=4294967295 cpu_id=3
75659          <idle>-0     (-----) [003] d..2 24574.166151: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
75660 kgsl_worker_thr-246   (  246) [003] d..2 24574.166189: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
75661          <idle>-0     (-----) [003] d..1 24574.166195: cpu_idle: state=0 cpu_id=3
75662<...>-24041 ( 23968) [001] .... 24574.166237: binder_transaction: transaction=1670456 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
75663<...>-24041 ( 23968) [001] d..4 24574.166245: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=001
75664<...>-24041 ( 23968) [001] d..5 24574.166266: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=002
75665          <idle>-0     (-----) [002] .n.1 24574.166270: cpu_idle: state=4294967295 cpu_id=2
75666          <idle>-0     (-----) [002] d..2 24574.166277: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
75667<...>-24376 ( 24151) [002] .... 24574.166283: binder_transaction_received: transaction=1670456
75668<...>-24041 ( 23968) [001] d..3 24574.166346: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=001
75669<...>-24041 ( 23968) [001] d..4 24574.166366: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=003
75670          <idle>-0     (-----) [003] .n.1 24574.166370: cpu_idle: state=4294967295 cpu_id=3
75671          <idle>-0     (-----) [003] d..2 24574.166377: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
75672<...>-24376 ( 24151) [002] d..3 24574.166385: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
75673 s.nexuslauncher-24827 (24827) [000] .... 24574.166408: binder_transaction: transaction=1670457 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
75674 s.nexuslauncher-24827 (24827) [000] d..4 24574.166413: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
75675          <idle>-0     (-----) [006] dnh2 24574.166430: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
75676          <idle>-0     (-----) [006] .n.1 24574.166432: cpu_idle: state=4294967295 cpu_id=6
75677          <idle>-0     (-----) [006] d..2 24574.166436: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
75678<...>-23994 ( 23968) [003] d..3 24574.166448: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=007
75679          <idle>-0     (-----) [005] dnh2 24574.166473: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
75680          <idle>-0     (-----) [005] .n.1 24574.166475: cpu_idle: state=4294967295 cpu_id=5
75681          <idle>-0     (-----) [005] d..2 24574.166479: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
75682  Binder:23896_4-24423 (23896) [005] .... 24574.166480: binder_transaction_received: transaction=1670457
75683<...>-24376 ( 24151) [002] d..2 24574.166484: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75684          <idle>-0     (-----) [007] dnh2 24574.166489: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=007
75685  Binder:23896_4-24423 (23896) [005] d..1 24574.166490: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
75686          <idle>-0     (-----) [007] .n.1 24574.166491: cpu_idle: state=4294967295 cpu_id=7
75687<...>-24151 ( 24151) [006] d..2 24574.166493: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
75688          <idle>-0     (-----) [002] d..1 24574.166494: cpu_idle: state=0 cpu_id=2
75689          <idle>-0     (-----) [007] d..2 24574.166495: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
75690          <idle>-0     (-----) [006] d..1 24574.166497: cpu_idle: state=0 cpu_id=6
75691  Binder:23896_4-24423 (23896) [005] d..2 24574.166504: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
75692          <idle>-0     (-----) [002] dnh2 24574.166505: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
75693          <idle>-0     (-----) [005] d..1 24574.166507: cpu_idle: state=0 cpu_id=5
75694          <idle>-0     (-----) [002] .n.1 24574.166509: cpu_idle: state=4294967295 cpu_id=2
75695          <idle>-0     (-----) [002] d..2 24574.166514: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
75696<...>-23994 ( 23968) [003] d..2 24574.166518: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
75697          <idle>-0     (-----) [003] d..1 24574.166527: cpu_idle: state=0 cpu_id=3
75698<...>-23968 ( 23968) [007] .... 24574.166532: binder_transaction: transaction=1670458 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
75699<...>-23968 ( 23968) [007] d..4 24574.166535: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=002
75700 s.nexuslauncher-24827 (24827) [000] d..3 24574.166538: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
75701          <idle>-0     (-----) [003] dnh2 24574.166554: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=003
75702          <idle>-0     (-----) [003] .n.1 24574.166558: cpu_idle: state=4294967295 cpu_id=3
75703          <idle>-0     (-----) [005] dnh2 24574.166583: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
75704          <idle>-0     (-----) [005] .n.1 24574.166585: cpu_idle: state=4294967295 cpu_id=5
75705 s.nexuslauncher-24827 (24827) [000] d.h3 24574.166585: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
75706  appEventThread-23905 (23896) [002] d..2 24574.166586: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75707          <idle>-0     (-----) [003] d..2 24574.166586: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
75708<...>-23968 ( 23968) [007] d..2 24574.166587: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
75709          <idle>-0     (-----) [005] d..2 24574.166588: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
75710<...>-24376 ( 24151) [003] .... 24574.166591: binder_transaction_received: transaction=1670458
75711          <idle>-0     (-----) [007] d..1 24574.166592: cpu_idle: state=0 cpu_id=7
75712          <idle>-0     (-----) [002] d..1 24574.166593: cpu_idle: state=0 cpu_id=2
75713    RenderThread-25194 (24827) [005] d..2 24574.166600: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
75714 s.nexuslauncher-24827 (24827) [000] d.h4 24574.166602: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
75715          <idle>-0     (-----) [005] d..1 24574.166602: cpu_idle: state=0 cpu_id=5
75716          <idle>-0     (-----) [002] .n.1 24574.166607: cpu_idle: state=4294967295 cpu_id=2
75717          <idle>-0     (-----) [002] d..2 24574.166612: 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
75718         sugov:0-559   (  559) [002] d..2 24574.166626: 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
75719<...>-24041 ( 23968) [001] .... 24574.166629: binder_transaction: transaction=1670459 dest_node=1282186 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x1
75720          <idle>-0     (-----) [002] d..1 24574.166631: cpu_idle: state=0 cpu_id=2
75721<...>-24041 ( 23968) [001] d..4 24574.166635: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=001
75722<...>-24376 ( 24151) [003] d..3 24574.166649: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
75723<...>-24041 ( 23968) [001] d..5 24574.166655: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=002
75724          <idle>-0     (-----) [002] .n.1 24574.166660: cpu_idle: state=4294967295 cpu_id=2
75725          <idle>-0     (-----) [006] dnh2 24574.166665: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
75726          <idle>-0     (-----) [002] d..2 24574.166667: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
75727          <idle>-0     (-----) [006] .n.1 24574.166667: cpu_idle: state=4294967295 cpu_id=6
75728          <idle>-0     (-----) [006] d..2 24574.166670: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
75729<...>-24177 ( 24151) [002] .... 24574.166672: binder_transaction_received: transaction=1670459
75730<...>-24041 ( 23968) [001] .... 24574.166690: binder_transaction: transaction=1670460 dest_node=1286409 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x1
75731<...>-24041 ( 23968) [001] d..4 24574.166694: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=003
75732<...>-24151 ( 24151) [006] d..2 24574.166694: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
75733<...>-24376 ( 24151) [003] d..2 24574.166695: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
75734          <idle>-0     (-----) [006] d..1 24574.166697: cpu_idle: state=0 cpu_id=6
75735          <idle>-0     (-----) [003] dn.1 24574.166704: cpu_idle: state=0 cpu_id=3
75736          <idle>-0     (-----) [003] .n.1 24574.166706: cpu_idle: state=4294967295 cpu_id=3
75737<...>-24041 ( 23968) [001] d..5 24574.166707: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=003
75738          <idle>-0     (-----) [003] d..2 24574.166716: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
75739<...>-24376 ( 24151) [003] .... 24574.166719: binder_transaction_received: transaction=1670460
75740<...>-24177 ( 24151) [002] d..3 24574.166764: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
75741<...>-24041 ( 23968) [001] .... 24574.166777: binder_transaction: transaction=1670461 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
75742          <idle>-0     (-----) [006] dnh2 24574.166777: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
75743          <idle>-0     (-----) [006] .n.1 24574.166779: cpu_idle: state=4294967295 cpu_id=6
75744          <idle>-0     (-----) [006] d..2 24574.166782: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
75745<...>-24041 ( 23968) [001] ...2 24574.166788: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
75746<...>-24041 ( 23968) [001] d..4 24574.166790: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=005
75747<...>-24041 ( 23968) [001] dn.5 24574.166805: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
75748<...>-24177 ( 24151) [002] d..2 24574.166812: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75749          <idle>-0     (-----) [002] d..1 24574.166821: cpu_idle: state=0 cpu_id=2
75750<...>-24041 ( 23968) [001] d..2 24574.166840: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
75751<...>-24376 ( 24151) [003] d..2 24574.166843: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
75752  Binder:23896_4-24423 (23896) [001] .... 24574.166845: binder_transaction_received: transaction=1670461
75753          <idle>-0     (-----) [003] d..1 24574.166852: cpu_idle: state=0 cpu_id=3
75754<...>-24151 ( 24151) [006] .... 24574.166871: binder_transaction: transaction=1670462 dest_node=1271369 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x3
75755<...>-24151 ( 24151) [006] d..4 24574.166875: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=006
75756<...>-24151 ( 24151) [006] d..5 24574.166880: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=006
75757<...>-24151 ( 24151) [006] d..2 24574.166885: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
75758  Binder:23968_5-24233 (23968) [006] .... 24574.166887: binder_transaction_received: transaction=1670462
75759  Binder:23896_4-24423 (23896) [001] .... 24574.166892: binder_transaction: transaction=1670463 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
75760  Binder:23896_4-24423 (23896) [001] .... 24574.166895: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
75761  Binder:23896_4-24423 (23896) [001] d..2 24574.166926: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
75762<...>-24041 ( 23968) [001] .... 24574.166930: binder_transaction_received: transaction=1670463
75763  Binder:23968_5-24233 (23968) [006] .... 24574.166994: binder_transaction: transaction=1670464 dest_node=0 dest_proc=24151 dest_thread=24151 reply=1 flags=0x0 code=0x0
75764  Binder:23968_5-24233 (23968) [006] d..2 24574.166997: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
75765  Binder:23968_5-24233 (23968) [006] d..3 24574.167001: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
75766  Binder:23968_5-24233 (23968) [006] d..2 24574.167012: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
75767<...>-24151 ( 24151) [006] .... 24574.167013: binder_transaction_received: transaction=1670464
75768 s.nexuslauncher-24827 (24827) [000] .... 24574.167054: binder_transaction: transaction=1670465 dest_node=1271381 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xc
75769 s.nexuslauncher-24827 (24827) [000] ...2 24574.167065: binder_set_priority: proc=23968 thread=24233 old=120 => new=110 desired=110
75770 s.nexuslauncher-24827 (24827) [000] d..4 24574.167067: sched_waking: comm=Binder:23968_5 pid=24233 prio=110 target_cpu=006
75771 s.nexuslauncher-24827 (24827) [000] d..5 24574.167087: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=110 target_cpu=002
75772<...>-24151 ( 24151) [006] d..3 24574.167092: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
75773          <idle>-0     (-----) [002] .n.1 24574.167093: cpu_idle: state=4294967295 cpu_id=2
75774 s.nexuslauncher-24827 (24827) [000] d.h5 24574.167116: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
75775          <idle>-0     (-----) [002] d..2 24574.167119: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=110
75776 s.nexuslauncher-24827 (24827) [000] d.h6 24574.167134: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
75777          <idle>-0     (-----) [003] dnh2 24574.167140: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=003
75778  Binder:23968_5-24233 (23968) [002] .... 24574.167141: binder_transaction_received: transaction=1670465
75779 s.nexuslauncher-24827 (24827) [000] d..2 24574.167146: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=110
75780          <idle>-0     (-----) [003] .n.1 24574.167147: cpu_idle: state=4294967295 cpu_id=3
75781  Binder:23968_C-25014 (23968) [000] .... 24574.167150: binder_set_priority: proc=23968 thread=25014 old=110 => new=120 desired=120
75782          <idle>-0     (-----) [003] d..2 24574.167152: 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
75783<...>-24041 ( 23968) [001] .... 24574.167157: binder_transaction: transaction=1670466 dest_node=1271185 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x1
75784         sugov:0-559   (  559) [003] d..2 24574.167160: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
75785<...>-24041 ( 23968) [001] ...2 24574.167164: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
75786<...>-24041 ( 23968) [001] d..4 24574.167166: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
75787<...>-24041 ( 23968) [001] dn.5 24574.167174: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
75788<...>-24041 ( 23968) [001] d..2 24574.167180: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
75789  Binder:23896_4-24423 (23896) [001] .... 24574.167184: binder_transaction_received: transaction=1670466
75790  Binder:23968_C-25014 (23968) [000] d..2 24574.167191: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75791    RenderThread-24437 (24151) [003] d..2 24574.167194: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
75792          <idle>-0     (-----) [003] d..1 24574.167200: cpu_idle: state=0 cpu_id=3
75793          <idle>-0     (-----) [000] d..1 24574.167200: cpu_idle: state=0 cpu_id=0
75794  Binder:23896_4-24423 (23896) [001] d..3 24574.167212: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
75795  Binder:23896_4-24423 (23896) [001] d..4 24574.167223: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
75796          <idle>-0     (-----) [003] .n.1 24574.167227: cpu_idle: state=4294967295 cpu_id=3
75797          <idle>-0     (-----) [003] d..2 24574.167232: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
75798  Binder:23896_4-24423 (23896) [001] d..2 24574.167234: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
75799<...>-24041 ( 23968) [001] d..2 24574.167247: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75800          <idle>-0     (-----) [001] d..1 24574.167254: cpu_idle: state=0 cpu_id=1
75801<...>-24151 ( 24151) [006] d..3 24574.167266: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=003
75802          <idle>-0     (-----) [000] dnh2 24574.167284: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
75803          <idle>-0     (-----) [000] .n.1 24574.167288: cpu_idle: state=4294967295 cpu_id=0
75804          <idle>-0     (-----) [000] d..2 24574.167294: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
75805<...>-24151 ( 24151) [006] d..2 24574.167295: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
75806          <idle>-0     (-----) [006] d..1 24574.167300: cpu_idle: state=0 cpu_id=6
75807  Binder:23968_5-24233 (23968) [002] d..2 24574.167301: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75808          <idle>-0     (-----) [002] d..1 24574.167310: cpu_idle: state=0 cpu_id=2
75809    RenderThread-24437 (24151) [000] d..2 24574.167322: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75810          <idle>-0     (-----) [000] d..1 24574.167329: cpu_idle: state=0 cpu_id=0
75811  surfaceflinger-23896 (23896) [003] ...1 24574.167351: tracing_mark_write: B|23896|HIDL::IComposerClient::getActiveConfig::client
75812  surfaceflinger-23896 (23896) [003] ...1 24574.167355: tracing_mark_write: E|23896
75813  surfaceflinger-23896 (23896) [003] .... 24574.167383: binder_transaction: transaction=1670467 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x7
75814  surfaceflinger-23896 (23896) [003] ...2 24574.167389: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
75815  surfaceflinger-23896 (23896) [003] d..4 24574.167396: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
75816  surfaceflinger-23896 (23896) [003] d..5 24574.167414: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
75817          <idle>-0     (-----) [001] .n.1 24574.167419: cpu_idle: state=4294967295 cpu_id=1
75818          <idle>-0     (-----) [001] d..2 24574.167423: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
75819  HwBinder:598_3-633   (  598) [001] .... 24574.167429: binder_transaction_received: transaction=1670467
75820  surfaceflinger-23896 (23896) [003] d..2 24574.167429: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
75821          <idle>-0     (-----) [003] d..1 24574.167438: cpu_idle: state=0 cpu_id=3
75822  HwBinder:598_3-633   (  598) [001] ...1 24574.167459: tracing_mark_write: B|598|HIDL::IComposerClient::getActiveConfig::server
75823  HwBinder:598_3-633   (  598) [001] ...1 24574.167482: tracing_mark_write: E|598
75824  HwBinder:598_3-633   (  598) [001] .... 24574.167491: binder_transaction: transaction=1670468 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
75825  HwBinder:598_3-633   (  598) [001] d..2 24574.167495: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
75826  HwBinder:598_3-633   (  598) [001] d..3 24574.167506: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
75827  HwBinder:598_3-633   (  598) [001] .... 24574.167509: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
75828          <idle>-0     (-----) [003] .n.1 24574.167511: cpu_idle: state=4294967295 cpu_id=3
75829          <idle>-0     (-----) [003] d..2 24574.167516: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
75830  surfaceflinger-23896 (23896) [003] .... 24574.167520: binder_transaction_received: transaction=1670468
75831  HwBinder:598_3-633   (  598) [001] d..2 24574.167542: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75832          <idle>-0     (-----) [001] d.s2 24574.167566: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
75833  surfaceflinger-23896 (23896) [003] d.s2 24574.167570: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
75834          <idle>-0     (-----) [001] dns3 24574.167578: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
75835  surfaceflinger-23896 (23896) [003] d.s3 24574.167587: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
75836          <idle>-0     (-----) [001] d..2 24574.167598: 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
75837     rcu_preempt-7     (    7) [001] d..2 24574.167608: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
75838     rcu_preempt-7     (    7) [001] d..3 24574.167636: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
75839     rcu_preempt-7     (    7) [001] d..2 24574.167648: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
75840  surfaceflinger-23896 (23896) [003] d..1 24574.167701: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
75841  kworker/u16:15-18488 (18488) [001] .... 24574.167710: clk_set_rate: l3_cluster0_vote_clk 1209600000
75842  kworker/u16:15-18488 (18488) [001] .... 24574.167716: clk_set_rate: l3_clk 1209600000
75843  surfaceflinger-23896 (23896) [003] d..2 24574.167717: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
75844          <idle>-0     (-----) [000] .n.1 24574.167722: cpu_idle: state=4294967295 cpu_id=0
75845          <idle>-0     (-----) [000] d..2 24574.167730: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
75846  surfaceflinger-23896 (23896) [003] d..2 24574.167731: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
75847         rcuop/0-10    (   10) [003] d..2 24574.167738: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
75848  Binder:23896_4-24423 (23896) [000] .... 24574.167755: binder_transaction: transaction=1670469 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
75849  kworker/u16:15-18488 (18488) [001] d..2 24574.167758: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75850          <idle>-0     (-----) [001] d..1 24574.167764: cpu_idle: state=0 cpu_id=1
75851         rcuop/0-10    (   10) [003] d..3 24574.167767: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
75852         rcuop/0-10    (   10) [003] d..2 24574.167780: 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
75853         rcuop/1-21    (   21) [003] d..2 24574.167798: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
75854          <idle>-0     (-----) [003] d..1 24574.167807: cpu_idle: state=0 cpu_id=3
75855  Binder:23896_4-24423 (23896) [000] d..2 24574.167942: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=001
75856  Binder:23896_4-24423 (23896) [000] d..3 24574.167957: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=000
75857  Binder:23896_4-24423 (23896) [000] .... 24574.167959: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
75858  Binder:23896_4-24423 (23896) [000] d..2 24574.167995: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
75859<...>-24041 ( 23968) [000] .... 24574.168000: binder_transaction_received: transaction=1670469
75860<...>-24041 ( 23968) [000] .... 24574.168042: binder_transaction: transaction=1670474 dest_node=1670472 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
75861<...>-24041 ( 23968) [000] ...2 24574.168046: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
75862<...>-24041 ( 23968) [000] d..4 24574.168048: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
75863<...>-24041 ( 23968) [000] d..5 24574.168056: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
75864<...>-24041 ( 23968) [000] d..2 24574.168063: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
75865  Binder:23896_4-24423 (23896) [000] .... 24574.168066: binder_transaction_received: transaction=1670474
75866  Binder:23896_4-24423 (23896) [000] .... 24574.168079: binder_transaction: transaction=1670475 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x8 code=0x0
75867  Binder:23896_4-24423 (23896) [000] d..2 24574.168082: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=000
75868  Binder:23896_4-24423 (23896) [000] d..3 24574.168088: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=000
75869  Binder:23896_4-24423 (23896) [000] .... 24574.168090: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
75870  Binder:23896_4-24423 (23896) [000] d..2 24574.168111: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
75871<...>-24041 ( 23968) [000] .... 24574.168114: binder_transaction_received: transaction=1670475
75872          <idle>-0     (-----) [002] ...1 24574.168422: cpu_idle: state=4294967295 cpu_id=2
75873          <idle>-0     (-----) [002] d..1 24574.168424: cpu_idle: state=0 cpu_id=2
75874          <idle>-0     (-----) [003] ...1 24574.168918: cpu_idle: state=4294967295 cpu_id=3
75875          <idle>-0     (-----) [003] d..1 24574.168921: cpu_idle: state=0 cpu_id=3
75876<...>-24041 ( 23968) [000] d..3 24574.168992: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
75877<...>-24041 ( 23968) [000] d..4 24574.169010: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
75878          <idle>-0     (-----) [001] .n.1 24574.169015: cpu_idle: state=4294967295 cpu_id=1
75879          <idle>-0     (-----) [001] d..2 24574.169021: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
75880<...>-24073 ( 23968) [001] d..2 24574.169062: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75881          <idle>-0     (-----) [001] d..1 24574.169067: cpu_idle: state=0 cpu_id=1
75882<...>-24041 ( 23968) [000] .... 24574.169109: binder_transaction: transaction=1670476 dest_node=1271185 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x1
75883<...>-24041 ( 23968) [000] ...2 24574.169115: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
75884<...>-24041 ( 23968) [000] d..4 24574.169117: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
75885<...>-24041 ( 23968) [000] dn.5 24574.169126: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
75886<...>-24041 ( 23968) [000] d..2 24574.169132: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
75887  Binder:23896_4-24423 (23896) [000] .... 24574.169136: binder_transaction_received: transaction=1670476
75888  Binder:23896_4-24423 (23896) [000] d..3 24574.169156: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
75889  Binder:23896_4-24423 (23896) [000] d..4 24574.169168: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
75890          <idle>-0     (-----) [003] .n.1 24574.169172: cpu_idle: state=4294967295 cpu_id=3
75891          <idle>-0     (-----) [003] d..2 24574.169178: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
75892  Binder:23896_4-24423 (23896) [000] d..2 24574.169180: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
75893<...>-24041 ( 23968) [000] d..2 24574.169196: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75894          <idle>-0     (-----) [000] d..1 24574.169207: cpu_idle: state=0 cpu_id=0
75895  surfaceflinger-23896 (23896) [003] ...1 24574.169253: tracing_mark_write: B|23896|HIDL::IComposerClient::getActiveConfig::client
75896  surfaceflinger-23896 (23896) [003] ...1 24574.169257: tracing_mark_write: E|23896
75897  surfaceflinger-23896 (23896) [003] .... 24574.169270: binder_transaction: transaction=1670477 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x7
75898  surfaceflinger-23896 (23896) [003] ...2 24574.169274: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
75899  surfaceflinger-23896 (23896) [003] d..4 24574.169277: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
75900  surfaceflinger-23896 (23896) [003] d..5 24574.169288: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
75901          <idle>-0     (-----) [001] .n.1 24574.169294: cpu_idle: state=4294967295 cpu_id=1
75902          <idle>-0     (-----) [001] d..2 24574.169298: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
75903  HwBinder:598_3-633   (  598) [001] .... 24574.169302: binder_transaction_received: transaction=1670477
75904  surfaceflinger-23896 (23896) [003] d..2 24574.169306: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
75905          <idle>-0     (-----) [003] d..1 24574.169314: cpu_idle: state=0 cpu_id=3
75906  HwBinder:598_3-633   (  598) [001] ...1 24574.169317: tracing_mark_write: B|598|HIDL::IComposerClient::getActiveConfig::server
75907  HwBinder:598_3-633   (  598) [001] ...1 24574.169326: tracing_mark_write: E|598
75908  HwBinder:598_3-633   (  598) [001] .... 24574.169334: binder_transaction: transaction=1670478 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
75909  HwBinder:598_3-633   (  598) [001] d..2 24574.169337: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
75910  HwBinder:598_3-633   (  598) [001] d..3 24574.169348: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
75911  HwBinder:598_3-633   (  598) [001] .... 24574.169351: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
75912          <idle>-0     (-----) [003] .n.1 24574.169354: cpu_idle: state=4294967295 cpu_id=3
75913          <idle>-0     (-----) [003] d..2 24574.169359: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
75914  surfaceflinger-23896 (23896) [003] .... 24574.169362: binder_transaction_received: transaction=1670478
75915  HwBinder:598_3-633   (  598) [001] d..2 24574.169381: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75916          <idle>-0     (-----) [001] d..1 24574.169387: cpu_idle: state=0 cpu_id=1
75917          <idle>-0     (-----) [000] d.h5 24574.169446: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
75918  surfaceflinger-23896 (23896) [003] d..1 24574.169456: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
75919          <idle>-0     (-----) [000] d.h6 24574.169459: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
75920          <idle>-0     (-----) [000] d.h5 24574.169463: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
75921          <idle>-0     (-----) [001] .n.1 24574.169464: cpu_idle: state=4294967295 cpu_id=1
75922  surfaceflinger-23896 (23896) [003] d..2 24574.169468: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
75923          <idle>-0     (-----) [001] d..2 24574.169469: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
75924          <idle>-0     (-----) [000] dnh6 24574.169479: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
75925          <idle>-0     (-----) [002] .n.1 24574.169484: cpu_idle: state=4294967295 cpu_id=2
75926  surfaceflinger-23896 (23896) [003] d..2 24574.169489: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
75927          <idle>-0     (-----) [000] .n.1 24574.169491: cpu_idle: state=4294967295 cpu_id=0
75928          <idle>-0     (-----) [002] d..2 24574.169491: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
75929  crtc_event:111-254   (  254) [001] d..2 24574.169496: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75930          <idle>-0     (-----) [003] d..1 24574.169498: cpu_idle: state=0 cpu_id=3
75931          <idle>-0     (-----) [000] d..2 24574.169498: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
75932          <idle>-0     (-----) [001] d..1 24574.169499: cpu_idle: state=0 cpu_id=1
75933  Binder:23896_4-24423 (23896) [000] .... 24574.169516: binder_transaction: transaction=1670479 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
75934  Binder:23896_4-24423 (23896) [000] d..2 24574.169588: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=000
75935 crtc_commit:111-253   (  253) [002] d..2 24574.169593: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
75936  Binder:23896_4-24423 (23896) [000] d..3 24574.169596: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=000
75937          <idle>-0     (-----) [002] d..1 24574.169597: cpu_idle: state=0 cpu_id=2
75938  Binder:23896_4-24423 (23896) [000] .... 24574.169598: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
75939  Binder:23896_4-24423 (23896) [000] d..2 24574.169630: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
75940<...>-24041 ( 23968) [000] .... 24574.169634: binder_transaction_received: transaction=1670479
75941<...>-24041 ( 23968) [000] .... 24574.169663: binder_transaction: transaction=1670484 dest_node=1670482 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
75942<...>-24041 ( 23968) [000] ...2 24574.169667: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
75943<...>-24041 ( 23968) [000] d..4 24574.169671: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
75944<...>-24041 ( 23968) [000] dn.5 24574.169678: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
75945<...>-24041 ( 23968) [000] d..2 24574.169683: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
75946  Binder:23896_4-24423 (23896) [000] .... 24574.169686: binder_transaction_received: transaction=1670484
75947  Binder:23896_4-24423 (23896) [000] .... 24574.169696: binder_transaction: transaction=1670485 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x8 code=0x0
75948  Binder:23896_4-24423 (23896) [000] .... 24574.169700: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
75949  Binder:23896_4-24423 (23896) [000] d..2 24574.169721: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
75950<...>-24041 ( 23968) [000] .... 24574.169726: binder_transaction_received: transaction=1670485
75951<...>-24041 ( 23968) [000] d..3 24574.170368: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
75952<...>-24041 ( 23968) [000] d..4 24574.170381: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
75953          <idle>-0     (-----) [001] .n.1 24574.170386: cpu_idle: state=4294967295 cpu_id=1
75954          <idle>-0     (-----) [001] d..2 24574.170391: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
75955<...>-24073 ( 23968) [001] d..2 24574.170417: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75956          <idle>-0     (-----) [001] d..1 24574.170421: cpu_idle: state=0 cpu_id=1
75957<...>-24041 ( 23968) [000] .... 24574.170508: binder_transaction: transaction=1670486 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
75958<...>-24041 ( 23968) [000] ...2 24574.170517: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
75959<...>-24041 ( 23968) [000] d..4 24574.170519: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
75960<...>-24041 ( 23968) [000] dn.5 24574.170529: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
75961<...>-24041 ( 23968) [000] d..2 24574.170535: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
75962  Binder:23896_4-24423 (23896) [000] .... 24574.170539: binder_transaction_received: transaction=1670486
75963  Binder:23896_4-24423 (23896) [000] .... 24574.170590: binder_transaction: transaction=1670487 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
75964  Binder:23896_4-24423 (23896) [000] .... 24574.170594: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
75965          <idle>-0     (-----) [003] ...1 24574.170610: cpu_idle: state=4294967295 cpu_id=3
75966          <idle>-0     (-----) [003] d..1 24574.170612: cpu_idle: state=0 cpu_id=3
75967  Binder:23896_4-24423 (23896) [000] d..2 24574.170623: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
75968<...>-24041 ( 23968) [000] .... 24574.170628: binder_transaction_received: transaction=1670487
75969<...>-24041 ( 23968) [000] d..3 24574.170681: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=007
75970<...>-24041 ( 23968) [000] d..4 24574.170703: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=001
75971          <idle>-0     (-----) [001] .n.1 24574.170707: cpu_idle: state=4294967295 cpu_id=1
75972<...>-24041 ( 23968) [000] d.h3 24574.170734: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
75973          <idle>-0     (-----) [001] d..2 24574.170735: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
75974<...>-24041 ( 23968) [000] d.h4 24574.170744: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
75975          <idle>-0     (-----) [003] .n.1 24574.170749: cpu_idle: state=4294967295 cpu_id=3
75976          <idle>-0     (-----) [003] d..2 24574.170754: 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
75977         sugov:0-559   (  559) [003] d..2 24574.170768: 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
75978          <idle>-0     (-----) [003] d..1 24574.170772: cpu_idle: state=0 cpu_id=3
75979<...>-23968 ( 23968) [001] .... 24574.170807: binder_transaction: transaction=1670488 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x18
75980<...>-23968 ( 23968) [001] d..4 24574.170812: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=003
75981<...>-23968 ( 23968) [001] d..5 24574.170829: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=002
75982          <idle>-0     (-----) [002] .n.1 24574.170834: cpu_idle: state=4294967295 cpu_id=2
75983          <idle>-0     (-----) [002] d..2 24574.170839: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
75984<...>-24376 ( 24151) [002] .... 24574.170844: binder_transaction_received: transaction=1670488
75985<...>-23968 ( 23968) [001] d..2 24574.170870: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75986          <idle>-0     (-----) [001] d..1 24574.170876: cpu_idle: state=0 cpu_id=1
75987          <idle>-0     (-----) [001] d.s2 24574.170895: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
75988<...>-24376 ( 24151) [002] d.s2 24574.170901: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
75989          <idle>-0     (-----) [001] dns3 24574.170906: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
75990<...>-24376 ( 24151) [002] d.s3 24574.170917: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
75991          <idle>-0     (-----) [001] .n.1 24574.170918: cpu_idle: state=4294967295 cpu_id=1
75992<...>-24041 ( 23968) [000] .... 24574.170920: binder_transaction: transaction=1670489 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x10
75993          <idle>-0     (-----) [003] .n.1 24574.170921: cpu_idle: state=4294967295 cpu_id=3
75994<...>-24376 ( 24151) [002] d.s2 24574.170922: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
75995          <idle>-0     (-----) [001] d..2 24574.170923: 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
75996<...>-24041 ( 23968) [000] ...2 24574.170927: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
75997          <idle>-0     (-----) [003] d..2 24574.170927: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
75998<...>-24041 ( 23968) [000] d..4 24574.170929: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
75999       rcu_sched-8     (    8) [001] d..2 24574.170930: sched_waking: comm=rcuos/6 pid=62 prio=120 target_cpu=003
76000<...>-24041 ( 23968) [000] dn.5 24574.170937: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
76001       rcu_sched-8     (    8) [001] d..3 24574.170941: sched_wakeup: comm=rcuos/6 pid=62 prio=120 target_cpu=003
76002<...>-24041 ( 23968) [000] d..2 24574.170942: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
76003  Binder:23896_4-24423 (23896) [000] .... 24574.170946: binder_transaction_received: transaction=1670489
76004<...>-24376 ( 24151) [002] d.s3 24574.170948: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
76005       rcu_sched-8     (    8) [001] d..2 24574.170958: 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
76006          <idle>-0     (-----) [001] d..1 24574.170962: cpu_idle: state=0 cpu_id=1
76007  crtc_event:111-254   (  254) [003] d..2 24574.170962: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcuos/6 next_pid=62 next_prio=120
76008<...>-62 ( 62) [003] d..2 24574.170976: sched_switch: prev_comm=rcuos/6 prev_pid=62 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
76009  Binder:23896_4-24423 (23896) [000] ...1 24574.170982: tracing_mark_write: B|23896|HIDL::IMapper::createDescriptor_2_1::passthrough
76010<...>-24041 ( 23968) [003] d..2 24574.170985: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
76011  Binder:23896_4-24423 (23896) [000] ...1 24574.170991: tracing_mark_write: E|23896
76012  Binder:23896_4-24423 (23896) [000] ...1 24574.171014: tracing_mark_write: B|23896|HIDL::IAllocator::allocate::client
76013  Binder:23896_4-24423 (23896) [000] ...1 24574.171016: tracing_mark_write: E|23896
76014  Binder:23896_4-24423 (23896) [000] .... 24574.171038: binder_transaction: transaction=1670490 dest_node=959 dest_proc=786 dest_thread=0 reply=0 flags=0x10 code=0x2
76015  Binder:23896_4-24423 (23896) [000] ...2 24574.171045: binder_set_priority: proc=786 thread=816 old=120 => new=110 desired=110
76016  Binder:23896_4-24423 (23896) [000] d..4 24574.171047: sched_waking: comm=HwBinder:786_2 pid=816 prio=110 target_cpu=005
76017<...>-24376 ( 24151) [002] d..2 24574.171053: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
76018          <idle>-0     (-----) [002] d..1 24574.171062: cpu_idle: state=0 cpu_id=2
76019  Binder:23896_4-24423 (23896) [000] d..5 24574.171065: sched_wakeup: comm=HwBinder:786_2 pid=816 prio=110 target_cpu=000
76020  Binder:23896_4-24423 (23896) [000] d..2 24574.171098: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=S ==> next_comm=HwBinder:786_2 next_pid=816 next_prio=110
76021<...>-816 ( 786) [000] .... 24574.171106: binder_transaction_received: transaction=1670490
76022<...>-816 ( 786) [000] ...1 24574.171137: tracing_mark_write: B|786|HIDL::IAllocator::allocate::server
76023<...>-816 ( 786) [000] ...1 24574.171177: tracing_mark_write: B|786|AllocBuffer
76024  kworker/u16:15-18488 (18488) [003] d..2 24574.171180: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
76025<...>-816 ( 786) [000] ...1 24574.171188: tracing_mark_write: B|786|ION_IOC_ALLOC size: 9400320
76026          <idle>-0     (-----) [003] d.s4 24574.171213: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
76027          <idle>-0     (-----) [003] d.s5 24574.171222: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
76028          <idle>-0     (-----) [003] dns5 24574.171226: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
76029          <idle>-0     (-----) [003] d..2 24574.171233: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
76030<...>-816 ( 786) [000] ...1 24574.171316: tracing_mark_write: E|786
76031<...>-816 ( 786) [000] ...1 24574.171318: tracing_mark_write: B|786|ION_IOC_MAP
76032<...>-816 ( 786) [000] ...1 24574.171336: tracing_mark_write: E|786
76033<...>-816 ( 786) [000] ...1 24574.171340: tracing_mark_write: E|786
76034<...>-816 ( 786) [000] ...1 24574.171343: tracing_mark_write: B|786|AllocBuffer
76035<...>-816 ( 786) [000] ...1 24574.171346: tracing_mark_write: B|786|ION_IOC_ALLOC size: 20480
76036<...>-816 ( 786) [000] ...1 24574.171358: tracing_mark_write: E|786
76037<...>-816 ( 786) [000] ...1 24574.171360: tracing_mark_write: B|786|ION_IOC_MAP
76038  kworker/u16:15-18488 (18488) [003] d..2 24574.171365: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
76039<...>-816 ( 786) [000] ...1 24574.171366: tracing_mark_write: E|786
76040<...>-816 ( 786) [000] ...1 24574.171369: tracing_mark_write: E|786
76041          <idle>-0     (-----) [003] d.s3 24574.171394: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
76042          <idle>-0     (-----) [003] d.s4 24574.171399: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
76043          <idle>-0     (-----) [003] dns4 24574.171402: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
76044          <idle>-0     (-----) [003] d..2 24574.171411: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
76045  kworker/u16:15-18488 (18488) [003] d..2 24574.171427: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76046          <idle>-0     (-----) [003] d..1 24574.171435: cpu_idle: state=0 cpu_id=3
76047<...>-816 ( 786) [000] ...1 24574.171436: tracing_mark_write: E|786
76048<...>-816 ( 786) [000] .... 24574.171444: binder_transaction: transaction=1670491 dest_node=0 dest_proc=23896 dest_thread=24423 reply=1 flags=0x0 code=0x0
76049<...>-816 ( 786) [000] d..2 24574.171452: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
76050<...>-816 ( 786) [000] d..3 24574.171462: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
76051<...>-816 ( 786) [000] .... 24574.171464: binder_set_priority: proc=786 thread=816 old=110 => new=120 desired=120
76052<...>-816 ( 786) [000] d..2 24574.171472: sched_switch: prev_comm=HwBinder:786_2 prev_pid=816 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
76053  Binder:23896_4-24423 (23896) [000] .... 24574.171477: binder_transaction_received: transaction=1670491
76054  Binder:23896_4-24423 (23896) [000] ...2 24574.171496: tracing_mark_write: B|23896|HIDL::IMapper::importBuffer::passthrough
76055  Binder:23896_4-24423 (23896) [000] ...1 24574.171528: tracing_mark_write: E|23896
76056  Binder:23896_4-24423 (23896) [000] ...1 24574.171553: tracing_mark_write: B|23896|HIDL::IMapper::getTransportSize::passthrough
76057  Binder:23896_4-24423 (23896) [000] ...1 24574.171558: tracing_mark_write: E|23896
76058  Binder:23896_4-24423 (23896) [000] d..3 24574.171567: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
76059  Binder:23896_4-24423 (23896) [000] d..4 24574.171579: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
76060          <idle>-0     (-----) [003] .n.1 24574.171584: cpu_idle: state=4294967295 cpu_id=3
76061          <idle>-0     (-----) [003] d..2 24574.171590: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
76062  Binder:23896_4-24423 (23896) [000] d..2 24574.171591: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=S ==> next_comm=HwBinder:786_2 next_pid=816 next_prio=120
76063<...>-816 ( 786) [000] ...1 24574.171606: tracing_mark_write: B|786|FreeBuffer
76064<...>-816 ( 786) [000] ...1 24574.171616: tracing_mark_write: E|786
76065<...>-816 ( 786) [000] ...1 24574.171618: tracing_mark_write: B|786|FreeBuffer
76066<...>-816 ( 786) [000] ...1 24574.171621: tracing_mark_write: B|786|UnmapBuffer
76067<...>-816 ( 786) [000] ...1 24574.171639: tracing_mark_write: E|786
76068  surfaceflinger-23896 (23896) [003] ...1 24574.171644: tracing_mark_write: B|23896|HIDL::IComposerClient::getActiveConfig::client
76069<...>-816 ( 786) [000] ...1 24574.171645: tracing_mark_write: E|786
76070  surfaceflinger-23896 (23896) [003] ...1 24574.171647: tracing_mark_write: E|23896
76071  surfaceflinger-23896 (23896) [003] .... 24574.171659: binder_transaction: transaction=1670492 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x7
76072  surfaceflinger-23896 (23896) [003] ...2 24574.171663: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
76073  surfaceflinger-23896 (23896) [003] d..4 24574.171667: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
76074<...>-816 ( 786) [000] d..2 24574.171673: sched_switch: prev_comm=HwBinder:786_2 prev_pid=816 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76075  surfaceflinger-23896 (23896) [003] d..5 24574.171678: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
76076          <idle>-0     (-----) [001] .n.1 24574.171682: cpu_idle: state=4294967295 cpu_id=1
76077          <idle>-0     (-----) [000] d..1 24574.171684: cpu_idle: state=0 cpu_id=0
76078          <idle>-0     (-----) [001] d..2 24574.171687: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
76079  HwBinder:598_3-633   (  598) [001] .... 24574.171691: binder_transaction_received: transaction=1670492
76080  surfaceflinger-23896 (23896) [003] d..2 24574.171694: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76081          <idle>-0     (-----) [003] d..1 24574.171705: cpu_idle: state=0 cpu_id=3
76082  HwBinder:598_3-633   (  598) [001] ...1 24574.171706: tracing_mark_write: B|598|HIDL::IComposerClient::getActiveConfig::server
76083  HwBinder:598_3-633   (  598) [001] ...1 24574.171716: tracing_mark_write: E|598
76084  HwBinder:598_3-633   (  598) [001] .... 24574.171723: binder_transaction: transaction=1670493 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
76085  HwBinder:598_3-633   (  598) [001] d..2 24574.171727: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
76086  HwBinder:598_3-633   (  598) [001] d..3 24574.171738: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
76087  HwBinder:598_3-633   (  598) [001] .... 24574.171741: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
76088          <idle>-0     (-----) [003] .n.1 24574.171754: cpu_idle: state=4294967295 cpu_id=3
76089          <idle>-0     (-----) [003] d..2 24574.171766: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
76090  surfaceflinger-23896 (23896) [003] .... 24574.171770: binder_transaction_received: transaction=1670493
76091  HwBinder:598_3-633   (  598) [001] d..2 24574.171785: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
76092          <idle>-0     (-----) [001] d..1 24574.171791: cpu_idle: state=0 cpu_id=1
76093          <idle>-0     (-----) [000] d.h5 24574.171794: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
76094          <idle>-0     (-----) [000] d.h6 24574.171804: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
76095          <idle>-0     (-----) [002] .n.1 24574.171810: cpu_idle: state=4294967295 cpu_id=2
76096          <idle>-0     (-----) [000] ...1 24574.171813: cpu_idle: state=4294967295 cpu_id=0
76097          <idle>-0     (-----) [002] d..2 24574.171816: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
76098          <idle>-0     (-----) [000] d..1 24574.171816: cpu_idle: state=0 cpu_id=0
76099 crtc_commit:111-253   (  253) [002] d..2 24574.171883: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
76100          <idle>-0     (-----) [002] d..1 24574.171890: cpu_idle: state=0 cpu_id=2
76101          <idle>-0     (-----) [000] d.h5 24574.172081: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
76102          <idle>-0     (-----) [000] dnh6 24574.172092: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
76103          <idle>-0     (-----) [000] .n.1 24574.172101: cpu_idle: state=4294967295 cpu_id=0
76104          <idle>-0     (-----) [000] d..2 24574.172107: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
76105  crtc_event:111-254   (  254) [000] d..2 24574.172122: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76106          <idle>-0     (-----) [000] d..1 24574.172128: cpu_idle: state=0 cpu_id=0
76107  surfaceflinger-23896 (23896) [003] d..2 24574.173196: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
76108          <idle>-0     (-----) [000] d.h3 24574.173198: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
76109          <idle>-0     (-----) [003] dn.1 24574.173205: cpu_idle: state=0 cpu_id=3
76110          <idle>-0     (-----) [003] .n.1 24574.173207: cpu_idle: state=4294967295 cpu_id=3
76111          <idle>-0     (-----) [000] d.h4 24574.173208: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
76112          <idle>-0     (-----) [000] ...1 24574.173215: cpu_idle: state=4294967295 cpu_id=0
76113          <idle>-0     (-----) [003] d..2 24574.173216: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
76114          <idle>-0     (-----) [000] d..1 24574.173218: cpu_idle: state=0 cpu_id=0
76115 kgsl_worker_thr-246   (  246) [003] d..2 24574.173230: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
76116          <idle>-0     (-----) [003] d..1 24574.173234: cpu_idle: state=0 cpu_id=3
76117          <idle>-0     (-----) [003] d.h2 24574.173285: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
76118          <idle>-0     (-----) [003] dnh3 24574.173292: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
76119          <idle>-0     (-----) [003] .n.1 24574.173297: cpu_idle: state=4294967295 cpu_id=3
76120          <idle>-0     (-----) [003] d..2 24574.173302: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
76121  surfaceflinger-23896 (23896) [003] d..1 24574.173311: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
76122  surfaceflinger-23896 (23896) [003] d..2 24574.173324: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
76123          <idle>-0     (-----) [001] .n.1 24574.173329: cpu_idle: state=4294967295 cpu_id=1
76124          <idle>-0     (-----) [001] d..2 24574.173334: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
76125 kgsl_worker_thr-246   (  246) [001] d..2 24574.173366: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
76126          <idle>-0     (-----) [001] d..1 24574.173370: cpu_idle: state=0 cpu_id=1
76127          <idle>-0     (-----) [001] d.h2 24574.173461: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
76128          <idle>-0     (-----) [002] ...1 24574.173467: cpu_idle: state=4294967295 cpu_id=2
76129          <idle>-0     (-----) [001] dnh3 24574.173467: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
76130          <idle>-0     (-----) [002] d..1 24574.173469: cpu_idle: state=0 cpu_id=2
76131          <idle>-0     (-----) [001] .n.1 24574.173472: cpu_idle: state=4294967295 cpu_id=1
76132          <idle>-0     (-----) [001] d..2 24574.173475: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
76133 kgsl_worker_thr-246   (  246) [001] d..2 24574.173485: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
76134  surfaceflinger-23896 (23896) [003] d..2 24574.173493: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76135 kgsl_worker_thr-246   (  246) [001] d..3 24574.173500: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
76136          <idle>-0     (-----) [003] d..2 24574.173505: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
76137 kgsl_worker_thr-246   (  246) [001] d..2 24574.173520: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
76138          <idle>-0     (-----) [001] d..1 24574.173524: cpu_idle: state=0 cpu_id=1
76139  kworker/u16:15-18488 (18488) [003] d..2 24574.173776: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
76140          <idle>-0     (-----) [003] d.s4 24574.173803: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
76141          <idle>-0     (-----) [003] d.s5 24574.173811: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
76142          <idle>-0     (-----) [003] dns5 24574.173814: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
76143          <idle>-0     (-----) [003] d..2 24574.173822: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
76144  kworker/u16:15-18488 (18488) [003] d..2 24574.173838: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76145          <idle>-0     (-----) [003] d..1 24574.173846: cpu_idle: state=0 cpu_id=3
76146          <idle>-0     (-----) [001] d.h2 24574.173856: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
76147          <idle>-0     (-----) [001] dnh3 24574.173864: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
76148          <idle>-0     (-----) [001] .n.1 24574.173869: cpu_idle: state=4294967295 cpu_id=1
76149          <idle>-0     (-----) [001] d..2 24574.173873: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
76150        DispSync-23904 (23896) [001] d..1 24574.173891: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
76151        DispSync-23904 (23896) [001] d..2 24574.173901: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
76152          <idle>-0     (-----) [002] .n.1 24574.173905: cpu_idle: state=4294967295 cpu_id=2
76153          <idle>-0     (-----) [002] d..2 24574.173911: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
76154        DispSync-23904 (23896) [001] d..2 24574.173921: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
76155          <idle>-0     (-----) [001] d..1 24574.173926: cpu_idle: state=0 cpu_id=1
76156  appEventThread-23905 (23896) [002] d..3 24574.173978: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
76157  appEventThread-23905 (23896) [002] d..4 24574.173998: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
76158          <idle>-0     (-----) [000] .n.1 24574.174003: cpu_idle: state=4294967295 cpu_id=0
76159  appEventThread-23905 (23896) [002] d.h3 24574.174028: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
76160          <idle>-0     (-----) [000] d..2 24574.174029: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
76161  appEventThread-23905 (23896) [002] d.h3 24574.174037: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
76162          <idle>-0     (-----) [004] dnh2 24574.174042: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
76163          <idle>-0     (-----) [004] .n.1 24574.174043: cpu_idle: state=4294967295 cpu_id=4
76164  appEventThread-23905 (23896) [002] d.h4 24574.174045: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
76165          <idle>-0     (-----) [004] d..2 24574.174047: 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
76166          <idle>-0     (-----) [003] .n.1 24574.174050: cpu_idle: state=4294967295 cpu_id=3
76167          <idle>-0     (-----) [003] d..2 24574.174056: 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
76168         sugov:4-560   (  560) [004] .... 24574.174064: clk_set_rate: perfcl_clk 1843200000
76169         sugov:4-560   (  560) [004] .... 24574.174066: clk_set_rate: cpu7_perfcl_clk 2803200000
76170  appEventThread-23905 (23896) [002] d..2 24574.174068: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
76171         sugov:0-559   (  559) [003] d..2 24574.174069: 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
76172         sugov:4-560   (  560) [004] .... 24574.174071: clk_set_rate: cpu6_perfcl_clk 2803200000
76173          <idle>-0     (-----) [003] d..1 24574.174074: cpu_idle: state=0 cpu_id=3
76174         sugov:4-560   (  560) [004] .... 24574.174075: clk_set_rate: cpu5_perfcl_clk 2803200000
76175          <idle>-0     (-----) [002] d..1 24574.174076: cpu_idle: state=0 cpu_id=2
76176         sugov:4-560   (  560) [004] .... 24574.174079: clk_set_rate: cpu4_perfcl_clk 1843200000
76177         sugov:4-560   (  560) [004] .... 24574.174084: cpu_frequency: state=1843200 cpu_id=4
76178<...>-24151 ( 24151) [000] .... 24574.174210: binder_transaction: transaction=1670494 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
76179         sugov:4-560   (  560) [004] d..2 24574.174214: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
76180          <idle>-0     (-----) [001] d.s2 24574.174232: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
76181          <idle>-0     (-----) [004] d..1 24574.174241: cpu_idle: state=0 cpu_id=4
76182          <idle>-0     (-----) [001] dns3 24574.174242: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
76183<...>-24151 ( 24151) [000] d..4 24574.174246: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
76184          <idle>-0     (-----) [003] d.s3 24574.174246: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
76185          <idle>-0     (-----) [001] .n.1 24574.174247: cpu_idle: state=4294967295 cpu_id=1
76186          <idle>-0     (-----) [001] d..2 24574.174251: 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
76187          <idle>-0     (-----) [003] ...1 24574.174261: cpu_idle: state=4294967295 cpu_id=3
76188          <idle>-0     (-----) [004] dnh2 24574.174261: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
76189          <idle>-0     (-----) [003] d..1 24574.174263: cpu_idle: state=0 cpu_id=3
76190          <idle>-0     (-----) [004] .n.1 24574.174263: cpu_idle: state=4294967295 cpu_id=4
76191          <idle>-0     (-----) [004] d..2 24574.174267: 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
76192<...>-24151 ( 24151) [000] d..5 24574.174267: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
76193         sugov:4-560   (  560) [004] .... 24574.174269: cpu_frequency: state=1843200 cpu_id=5
76194         sugov:4-560   (  560) [004] .... 24574.174271: cpu_frequency: state=1843200 cpu_id=6
76195          <idle>-0     (-----) [002] .n.1 24574.174272: cpu_idle: state=4294967295 cpu_id=2
76196         sugov:4-560   (  560) [004] .... 24574.174273: cpu_frequency: state=1843200 cpu_id=7
76197     rcu_preempt-7     (    7) [001] d..2 24574.174274: 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
76198          <idle>-0     (-----) [001] d..1 24574.174279: cpu_idle: state=0 cpu_id=1
76199          <idle>-0     (-----) [002] d..2 24574.174299: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
76200         sugov:4-560   (  560) [004] d..2 24574.174300: 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
76201  Binder:23896_5-25989 (23896) [002] .... 24574.174303: binder_transaction_received: transaction=1670494
76202          <idle>-0     (-----) [004] d..1 24574.174303: cpu_idle: state=0 cpu_id=4
76203  Binder:23896_5-25989 (23896) [002] d..1 24574.174318: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
76204  Binder:23896_5-25989 (23896) [002] d..2 24574.174333: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
76205          <idle>-0     (-----) [001] .n.1 24574.174337: cpu_idle: state=4294967295 cpu_id=1
76206          <idle>-0     (-----) [001] d..2 24574.174343: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
76207  Binder:23896_5-25989 (23896) [002] d..2 24574.174355: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
76208          <idle>-0     (-----) [002] d..1 24574.174362: cpu_idle: state=0 cpu_id=2
76209  appEventThread-23905 (23896) [001] d..2 24574.174372: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
76210          <idle>-0     (-----) [001] d..1 24574.174378: cpu_idle: state=0 cpu_id=1
76211<...>-24151 ( 24151) [000] d.h2 24574.174451: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
76212<...>-24151 ( 24151) [000] d.h3 24574.174464: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
76213          <idle>-0     (-----) [001] .n.1 24574.174467: cpu_idle: state=4294967295 cpu_id=1
76214          <idle>-0     (-----) [001] d..2 24574.174473: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
76215 kgsl_worker_thr-246   (  246) [001] d..2 24574.174499: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
76216 kgsl_worker_thr-246   (  246) [001] d..3 24574.174508: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
76217          <idle>-0     (-----) [003] .n.1 24574.174513: cpu_idle: state=4294967295 cpu_id=3
76218          <idle>-0     (-----) [003] d..2 24574.174519: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
76219 kgsl_worker_thr-246   (  246) [001] d..2 24574.174520: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
76220          <idle>-0     (-----) [001] d..1 24574.174526: cpu_idle: state=0 cpu_id=1
76221  surfaceflinger-23896 (23896) [003] d..1 24574.174694: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
76222  surfaceflinger-23896 (23896) [003] d..2 24574.174711: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
76223          <idle>-0     (-----) [001] .n.1 24574.174715: cpu_idle: state=4294967295 cpu_id=1
76224          <idle>-0     (-----) [001] d..2 24574.174722: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
76225  surfaceflinger-23896 (23896) [003] d..2 24574.174733: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76226          <idle>-0     (-----) [003] d..1 24574.174741: cpu_idle: state=0 cpu_id=3
76227<...>-24151 ( 24151) [000] d..3 24574.174778: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
76228  Binder:23896_4-24423 (23896) [001] ...1 24574.174782: tracing_mark_write: B|23896|HIDL::IMapper::freeBuffer::passthrough
76229  Binder:23896_4-24423 (23896) [001] ...1 24574.174794: tracing_mark_write: B|23896|FreeBuffer
76230<...>-24151 ( 24151) [000] d..4 24574.174797: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
76231          <idle>-0     (-----) [002] .n.1 24574.174801: cpu_idle: state=4294967295 cpu_id=2
76232  Binder:23896_4-24423 (23896) [001] ...1 24574.174804: tracing_mark_write: E|23896
76233  Binder:23896_4-24423 (23896) [001] ...1 24574.174807: tracing_mark_write: B|23896|FreeBuffer
76234          <idle>-0     (-----) [002] d..2 24574.174808: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
76235  Binder:23896_4-24423 (23896) [001] ...1 24574.174809: tracing_mark_write: B|23896|UnmapBuffer
76236<...>-24151 ( 24151) [000] d..2 24574.174818: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76237          <idle>-0     (-----) [000] d..1 24574.174829: cpu_idle: state=0 cpu_id=0
76238  Binder:23896_4-24423 (23896) [001] ...1 24574.174833: tracing_mark_write: E|23896
76239  Binder:23896_4-24423 (23896) [001] ...1 24574.174838: tracing_mark_write: E|23896
76240  Binder:23896_4-24423 (23896) [001] ...1 24574.174843: tracing_mark_write: E|23896
76241  Binder:23896_4-24423 (23896) [001] .... 24574.174855: binder_transaction: transaction=1670495 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
76242  Binder:23896_4-24423 (23896) [001] d..2 24574.174865: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=003
76243  Binder:23896_4-24423 (23896) [001] d..3 24574.174879: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=001
76244  Binder:23896_4-24423 (23896) [001] .... 24574.174881: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
76245  Binder:23896_4-24423 (23896) [001] d..2 24574.174913: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
76246<...>-24041 ( 23968) [001] .... 24574.174917: binder_transaction_received: transaction=1670495
76247<...>-24041 ( 23968) [001] ...1 24574.174954: tracing_mark_write: B|23968|HIDL::IMapper::importBuffer::passthrough
76248<...>-24041 ( 23968) [001] ...1 24574.174984: tracing_mark_write: E|23968
76249<...>-24041 ( 23968) [001] ...1 24574.174992: tracing_mark_write: B|23968|HIDL::IMapper::validateBufferSize::passthrough
76250<...>-24041 ( 23968) [001] ...1 24574.175007: tracing_mark_write: E|23968
76251<...>-24041 ( 23968) [001] ...1 24574.175015: tracing_mark_write: B|23968|HIDL::IMapper::getTransportSize::passthrough
76252<...>-24041 ( 23968) [001] ...1 24574.175019: tracing_mark_write: E|23968
76253    RenderThread-24437 (24151) [002] d..1 24574.175211: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
76254    RenderThread-24437 (24151) [002] d..2 24574.175223: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
76255          <idle>-0     (-----) [000] .n.1 24574.175229: cpu_idle: state=4294967295 cpu_id=0
76256          <idle>-0     (-----) [000] d..2 24574.175235: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
76257    RenderThread-24437 (24151) [002] .... 24574.175267: binder_transaction: transaction=1670496 dest_node=1285651 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
76258    RenderThread-24437 (24151) [002] d..4 24574.175272: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
76259    RenderThread-24437 (24151) [002] d..5 24574.175284: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=002
76260    RenderThread-24437 (24151) [002] d..2 24574.175292: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
76261  Binder:23896_4-24423 (23896) [002] .... 24574.175296: binder_transaction_received: transaction=1670496
76262<...>-24151 ( 24151) [000] d..2 24574.175308: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76263          <idle>-0     (-----) [000] d..1 24574.175316: cpu_idle: state=0 cpu_id=0
76264  Binder:23896_4-24423 (23896) [002] .... 24574.175340: binder_transaction: transaction=1670497 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
76265  Binder:23896_4-24423 (23896) [002] d..2 24574.175347: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
76266  Binder:23896_4-24423 (23896) [002] d..3 24574.175354: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
76267  Binder:23896_4-24423 (23896) [002] d..2 24574.175374: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
76268    RenderThread-24437 (24151) [002] .... 24574.175378: binder_transaction_received: transaction=1670497
76269<...>-24041 ( 23968) [001] d..3 24574.175685: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
76270<...>-24041 ( 23968) [001] d..4 24574.175704: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
76271          <idle>-0     (-----) [000] .n.1 24574.175709: cpu_idle: state=4294967295 cpu_id=0
76272          <idle>-0     (-----) [000] d..2 24574.175715: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
76273<...>-24073 ( 23968) [000] d..2 24574.175747: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76274          <idle>-0     (-----) [000] d..1 24574.175755: cpu_idle: state=0 cpu_id=0
76275          <idle>-0     (-----) [003] ...1 24574.175877: cpu_idle: state=4294967295 cpu_id=3
76276          <idle>-0     (-----) [003] d..1 24574.175879: cpu_idle: state=0 cpu_id=3
76277<...>-24041 ( 23968) [001] .... 24574.176179: binder_transaction: transaction=1670498 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
76278<...>-24041 ( 23968) [001] d..4 24574.176183: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=002
76279<...>-24041 ( 23968) [001] d..5 24574.176201: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=000
76280          <idle>-0     (-----) [000] .n.1 24574.176206: cpu_idle: state=4294967295 cpu_id=0
76281          <idle>-0     (-----) [000] d..2 24574.176212: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
76282<...>-24376 ( 24151) [000] .... 24574.176216: binder_transaction_received: transaction=1670498
76283<...>-24041 ( 23968) [001] d..3 24574.176279: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=003
76284<...>-24041 ( 23968) [001] d..4 24574.176294: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=003
76285          <idle>-0     (-----) [003] .n.1 24574.176298: cpu_idle: state=4294967295 cpu_id=3
76286          <idle>-0     (-----) [003] d..2 24574.176305: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
76287<...>-24376 ( 24151) [000] d..2 24574.176306: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76288          <idle>-0     (-----) [000] d..1 24574.176315: cpu_idle: state=0 cpu_id=0
76289<...>-23994 ( 23968) [003] d..3 24574.176376: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=001
76290<...>-23994 ( 23968) [003] d..4 24574.176394: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=000
76291          <idle>-0     (-----) [000] .n.1 24574.176399: cpu_idle: state=4294967295 cpu_id=0
76292          <idle>-0     (-----) [000] d..2 24574.176406: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
76293<...>-23994 ( 23968) [003] d..2 24574.176430: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76294          <idle>-0     (-----) [003] d..1 24574.176439: cpu_idle: state=0 cpu_id=3
76295<...>-23968 ( 23968) [000] .... 24574.176461: binder_transaction: transaction=1670499 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
76296<...>-23968 ( 23968) [000] d..4 24574.176465: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=000
76297<...>-23968 ( 23968) [000] d..5 24574.176483: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=003
76298          <idle>-0     (-----) [003] .n.1 24574.176489: cpu_idle: state=4294967295 cpu_id=3
76299          <idle>-0     (-----) [003] d..2 24574.176495: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
76300<...>-24376 ( 24151) [003] .... 24574.176500: binder_transaction_received: transaction=1670499
76301<...>-23968 ( 23968) [000] d..2 24574.176522: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76302          <idle>-0     (-----) [000] d..1 24574.176531: cpu_idle: state=0 cpu_id=0
76303<...>-24376 ( 24151) [003] d..2 24574.176587: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76304          <idle>-0     (-----) [003] d..1 24574.176596: cpu_idle: state=0 cpu_id=3
76305<...>-24041 ( 23968) [001] .... 24574.176683: binder_transaction: transaction=1670500 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
76306<...>-24041 ( 23968) [001] ...2 24574.176712: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
76307<...>-24041 ( 23968) [001] d..4 24574.176714: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
76308<...>-24041 ( 23968) [001] dn.5 24574.176728: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
76309<...>-24041 ( 23968) [001] d..2 24574.176734: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
76310  Binder:23896_4-24423 (23896) [001] .... 24574.176738: binder_transaction_received: transaction=1670500
76311          <idle>-0     (-----) [000] ...1 24574.176876: cpu_idle: state=4294967295 cpu_id=0
76312          <idle>-0     (-----) [000] d..1 24574.176879: cpu_idle: state=0 cpu_id=0
76313  Binder:23896_4-24423 (23896) [001] .... 24574.176892: binder_transaction: transaction=1670501 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
76314  Binder:23896_4-24423 (23896) [001] .... 24574.176896: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
76315  Binder:23896_4-24423 (23896) [001] d..2 24574.176937: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
76316<...>-24041 ( 23968) [001] .... 24574.176942: binder_transaction_received: transaction=1670501
76317    RenderThread-24437 (24151) [002] .... 24574.177057: binder_transaction: transaction=1670502 dest_node=1285651 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
76318    RenderThread-24437 (24151) [002] d..4 24574.177065: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
76319          <idle>-0     (-----) [000] d.h3 24574.177066: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
76320    RenderThread-24437 (24151) [002] d..5 24574.177082: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=002
76321          <idle>-0     (-----) [000] dnh4 24574.177085: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
76322          <idle>-0     (-----) [000] .n.1 24574.177090: cpu_idle: state=4294967295 cpu_id=0
76323    RenderThread-24437 (24151) [002] d..2 24574.177092: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
76324  Binder:23896_4-24423 (23896) [002] .... 24574.177096: binder_transaction_received: transaction=1670502
76325          <idle>-0     (-----) [000] d..2 24574.177096: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
76326 kgsl_worker_thr-246   (  246) [000] d..2 24574.177133: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76327          <idle>-0     (-----) [000] d..1 24574.177139: cpu_idle: state=0 cpu_id=0
76328  Binder:23896_4-24423 (23896) [002] .... 24574.177197: binder_transaction: transaction=1670503 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
76329  Binder:23896_4-24423 (23896) [002] d..2 24574.177201: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
76330  Binder:23896_4-24423 (23896) [002] d..3 24574.177210: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
76331<...>-24041 ( 23968) [001] .... 24574.177225: binder_transaction: transaction=1670504 dest_node=1308959 dest_proc=24827 dest_thread=0 reply=0 flags=0x11 code=0x1
76332  Binder:23896_4-24423 (23896) [002] d..2 24574.177229: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
76333    RenderThread-24437 (24151) [002] .... 24574.177233: binder_transaction_received: transaction=1670503
76334<...>-24041 ( 23968) [001] d..4 24574.177297: sched_waking: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=004
76335<...>-24041 ( 23968) [001] d..5 24574.177322: sched_wakeup: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=000
76336          <idle>-0     (-----) [000] .n.1 24574.177326: cpu_idle: state=4294967295 cpu_id=0
76337<...>-24041 ( 23968) [001] d.h5 24574.177356: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
76338          <idle>-0     (-----) [000] d..2 24574.177356: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24827_5 next_pid=5558 next_prio=120
76339<...>-24041 ( 23968) [001] d.h6 24574.177365: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
76340<...>-5558 ( 24827) [000] .... 24574.177370: binder_transaction_received: transaction=1670504
76341          <idle>-0     (-----) [003] .n.1 24574.177371: cpu_idle: state=4294967295 cpu_id=3
76342          <idle>-0     (-----) [003] d..2 24574.177377: 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
76343         sugov:0-559   (  559) [003] d..2 24574.177390: 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
76344          <idle>-0     (-----) [003] d..1 24574.177396: cpu_idle: state=0 cpu_id=3
76345    RenderThread-24437 (24151) [002] d..1 24574.177542: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
76346    RenderThread-24437 (24151) [002] d..2 24574.177567: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
76347          <idle>-0     (-----) [003] .n.1 24574.177572: cpu_idle: state=4294967295 cpu_id=3
76348<...>-5558 ( 24827) [000] d.s2 24574.177575: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
76349          <idle>-0     (-----) [003] d..2 24574.177578: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
76350<...>-5558 ( 24827) [000] d.s3 24574.177620: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
76351<...>-24151 ( 24151) [003] d..2 24574.177625: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76352          <idle>-0     (-----) [003] d..1 24574.177631: cpu_idle: state=0 cpu_id=3
76353<...>-5558 ( 24827) [000] .... 24574.177637: binder_transaction: transaction=1670511 dest_node=1670482 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
76354    RenderThread-24437 (24151) [002] d..1 24574.177637: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
76355<...>-5558 ( 24827) [000] d..4 24574.177641: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=002
76356    RenderThread-24437 (24151) [002] d..2 24574.177649: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
76357          <idle>-0     (-----) [003] .n.1 24574.177653: cpu_idle: state=4294967295 cpu_id=3
76358          <idle>-0     (-----) [003] d..2 24574.177659: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
76359          <idle>-0     (-----) [005] dnh2 24574.177684: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
76360          <idle>-0     (-----) [005] .n.1 24574.177686: cpu_idle: state=4294967295 cpu_id=5
76361    RenderThread-24437 (24151) [002] .... 24574.177686: binder_transaction: transaction=1670512 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
76362          <idle>-0     (-----) [005] d..2 24574.177690: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
76363    RenderThread-24437 (24151) [002] d..4 24574.177690: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
76364<...>-5558 ( 24827) [000] d..2 24574.177692: sched_switch: prev_comm=Binder:24827_5 prev_pid=5558 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
76365    RenderThread-24437 (24151) [002] dn.5 24574.177698: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
76366  Binder:23896_4-24423 (23896) [005] .... 24574.177701: binder_transaction_received: transaction=1670511
76367    RenderThread-24437 (24151) [002] d..2 24574.177704: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
76368  Binder:23896_5-25989 (23896) [002] .... 24574.177708: binder_transaction_received: transaction=1670512
76369  Binder:23896_4-24423 (23896) [005] .... 24574.177711: binder_transaction: transaction=1670513 dest_node=0 dest_proc=24827 dest_thread=5558 reply=1 flags=0x8 code=0x0
76370  Binder:23896_4-24423 (23896) [005] d..2 24574.177713: sched_waking: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=000
76371  Binder:23896_4-24423 (23896) [005] d..3 24574.177724: sched_wakeup: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=005
76372  Binder:23896_4-24423 (23896) [005] d..2 24574.177752: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=Binder:24827_5 next_pid=5558 next_prio=120
76373<...>-5558 ( 24827) [005] .... 24574.177754: binder_transaction_received: transaction=1670513
76374  Binder:23896_5-25989 (23896) [002] .... 24574.177761: binder_transaction: transaction=1670514 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
76375  Binder:23896_5-25989 (23896) [002] d..2 24574.177786: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
76376  kworker/u16:15-18488 (18488) [000] .... 24574.177788: clk_set_rate: l3_cluster0_vote_clk 844800000
76377    RenderThread-24437 (24151) [002] .... 24574.177791: binder_transaction_received: transaction=1670514
76378  kworker/u16:15-18488 (18488) [000] .... 24574.177793: clk_set_rate: l3_clk 844800000
76379<...>-24151 ( 24151) [003] d..1 24574.177829: sched_waking: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=006
76380<...>-5558 ( 24827) [005] .... 24574.177832: binder_transaction: transaction=1670515 dest_node=1670472 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
76381<...>-5558 ( 24827) [005] d..4 24574.177836: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
76382  kworker/u16:15-18488 (18488) [000] d..2 24574.177842: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76383<...>-24041 ( 23968) [001] d.h1 24574.177842: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
76384<...>-5558 ( 24827) [005] d..5 24574.177849: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
76385          <idle>-0     (-----) [000] d..1 24574.177852: cpu_idle: state=0 cpu_id=0
76386          <idle>-0     (-----) [006] dnh2 24574.177855: sched_wakeup: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=006
76387          <idle>-0     (-----) [006] .n.1 24574.177858: cpu_idle: state=4294967295 cpu_id=6
76388<...>-5558 ( 24827) [005] d.h5 24574.177877: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
76389          <idle>-0     (-----) [006] d..2 24574.177881: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=pool-1-thread-1 next_pid=24340 next_prio=120
76390<...>-24041 ( 23968) [001] d.h2 24574.177881: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
76391          <idle>-0     (-----) [000] .n.1 24574.177886: cpu_idle: state=4294967295 cpu_id=0
76392<...>-5558 ( 24827) [005] d..2 24574.177890: sched_switch: prev_comm=Binder:24827_5 prev_pid=5558 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
76393<...>-24151 ( 24151) [003] dnh1 24574.177892: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
76394          <idle>-0     (-----) [000] d..2 24574.177893: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
76395  Binder:23896_5-25989 (23896) [005] .... 24574.177893: binder_transaction_received: transaction=1670515
76396<...>-24151 ( 24151) [003] d..2 24574.177901: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
76397  Binder:23896_5-25989 (23896) [005] .... 24574.177903: binder_transaction: transaction=1670516 dest_node=0 dest_proc=24827 dest_thread=5558 reply=1 flags=0x8 code=0x0
76398  Binder:23896_5-25989 (23896) [005] d..2 24574.177905: sched_waking: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=005
76399  Binder:23896_5-25989 (23896) [005] d..3 24574.177909: sched_wakeup: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=005
76400         sugov:0-559   (  559) [003] d..2 24574.177910: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
76401        DispSync-23904 (23896) [000] d..1 24574.177910: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
76402  Binder:23896_5-25989 (23896) [005] d..2 24574.177917: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=Binder:24827_5 next_pid=5558 next_prio=120
76403<...>-5558 ( 24827) [005] .... 24574.177918: binder_transaction_received: transaction=1670516
76404        DispSync-23904 (23896) [000] d..2 24574.177928: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
76405<...>-24151 ( 24151) [003] d..2 24574.177936: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
76406        DispSync-23904 (23896) [000] d..2 24574.177949: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76407          <idle>-0     (-----) [000] d..1 24574.177957: cpu_idle: state=0 cpu_id=0
76408<...>-24041 ( 23968) [001] d..3 24574.177980: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
76409<...>-24340 ( 24151) [006] .... 24574.177980: binder_transaction: transaction=1670517 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x84
76410<...>-24340 ( 24151) [006] d..4 24574.177985: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=000
76411   sfEventThread-23906 (23896) [003] d..3 24574.177995: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
76412<...>-24041 ( 23968) [001] d..4 24574.177996: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
76413          <idle>-0     (-----) [000] .n.1 24574.178001: cpu_idle: state=4294967295 cpu_id=0
76414<...>-24340 ( 24151) [006] d..5 24574.178006: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=006
76415          <idle>-0     (-----) [000] d..2 24574.178012: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
76416   sfEventThread-23906 (23896) [003] d..4 24574.178020: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
76417<...>-24073 ( 23968) [000] d..2 24574.178043: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
76418<...>-24340 ( 24151) [006] d..2 24574.178044: sched_switch: prev_comm=pool-1-thread-1 prev_pid=24340 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
76419  Binder:23968_C-25014 (23968) [006] .... 24574.178048: binder_transaction_received: transaction=1670517
76420   sfEventThread-23906 (23896) [003] d..2 24574.178058: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
76421<...>-5558 ( 24827) [005] d..2 24574.178145: sched_switch: prev_comm=Binder:24827_5 prev_pid=5558 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
76422          <idle>-0     (-----) [005] d..1 24574.178153: cpu_idle: state=0 cpu_id=5
76423  Binder:23968_C-25014 (23968) [006] .... 24574.178239: binder_transaction: transaction=1670518 dest_node=0 dest_proc=24151 dest_thread=24340 reply=1 flags=0x0 code=0x0
76424  Binder:23968_C-25014 (23968) [006] d..2 24574.178243: sched_waking: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=006
76425  Binder:23968_C-25014 (23968) [006] d..3 24574.178250: sched_wakeup: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=006
76426  Binder:23968_C-25014 (23968) [006] d..2 24574.178266: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=pool-1-thread-1 next_pid=24340 next_prio=120
76427<...>-24340 ( 24151) [006] .... 24574.178269: binder_transaction_received: transaction=1670518
76428<...>-24151 ( 24151) [003] d..2 24574.178275: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76429          <idle>-0     (-----) [003] d..1 24574.178286: cpu_idle: state=0 cpu_id=3
76430<...>-24340 ( 24151) [006] d..3 24574.178318: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
76431          <idle>-0     (-----) [003] dnh2 24574.178336: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
76432          <idle>-0     (-----) [003] .n.1 24574.178341: cpu_idle: state=4294967295 cpu_id=3
76433<...>-24041 ( 23968) [001] .... 24574.178346: binder_transaction: transaction=1670519 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
76434          <idle>-0     (-----) [003] d..2 24574.178347: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
76435<...>-24041 ( 23968) [001] d..4 24574.178352: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=003
76436<...>-24041 ( 23968) [001] d.h5 24574.178405: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
76437          <idle>-0     (-----) [007] dnh2 24574.178406: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
76438          <idle>-0     (-----) [007] .n.1 24574.178409: cpu_idle: state=4294967295 cpu_id=7
76439          <idle>-0     (-----) [007] d..2 24574.178414: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
76440<...>-24041 ( 23968) [001] d.h6 24574.178417: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
76441<...>-24151 ( 24151) [003] d..2 24574.178422: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
76442<...>-24376 ( 24151) [007] .... 24574.178428: binder_transaction_received: transaction=1670519
76443<...>-24340 ( 24151) [006] .... 24574.178431: binder_transaction: transaction=1670520 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x37
76444<...>-24340 ( 24151) [006] d..4 24574.178435: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=006
76445         sugov:0-559   (  559) [003] d..2 24574.178439: 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
76446<...>-24340 ( 24151) [006] d..5 24574.178440: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=006
76447<...>-24340 ( 24151) [006] d..2 24574.178445: sched_switch: prev_comm=pool-1-thread-1 prev_pid=24340 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
76448          <idle>-0     (-----) [003] d..1 24574.178447: cpu_idle: state=0 cpu_id=3
76449  Binder:23968_C-25014 (23968) [006] .... 24574.178448: binder_transaction_received: transaction=1670520
76450<...>-24376 ( 24151) [007] d..3 24574.178472: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
76451          <idle>-0     (-----) [003] dnh2 24574.178488: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
76452          <idle>-0     (-----) [003] .n.1 24574.178492: cpu_idle: state=4294967295 cpu_id=3
76453<...>-24041 ( 23968) [001] d..3 24574.178495: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=003
76454          <idle>-0     (-----) [003] d..2 24574.178498: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
76455<...>-24376 ( 24151) [007] d..2 24574.178505: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
76456          <idle>-0     (-----) [007] d..1 24574.178512: cpu_idle: state=0 cpu_id=7
76457          <idle>-0     (-----) [007] dnh2 24574.178545: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=007
76458          <idle>-0     (-----) [007] .n.1 24574.178548: cpu_idle: state=4294967295 cpu_id=7
76459          <idle>-0     (-----) [007] d..2 24574.178552: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
76460<...>-24151 ( 24151) [003] d..2 24574.178554: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76461  Binder:23968_C-25014 (23968) [006] d..2 24574.178558: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
76462    RenderThread-24437 (24151) [002] d..2 24574.178561: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
76463          <idle>-0     (-----) [003] d..1 24574.178562: cpu_idle: state=0 cpu_id=3
76464          <idle>-0     (-----) [006] d..1 24574.178567: cpu_idle: state=0 cpu_id=6
76465          <idle>-0     (-----) [002] d..1 24574.178575: cpu_idle: state=0 cpu_id=2
76466<...>-23994 ( 23968) [007] d..3 24574.178590: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=000
76467          <idle>-0     (-----) [002] dnh2 24574.178614: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=002
76468          <idle>-0     (-----) [002] .n.1 24574.178618: cpu_idle: state=4294967295 cpu_id=2
76469          <idle>-0     (-----) [002] d..2 24574.178625: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
76470<...>-23994 ( 23968) [007] d..2 24574.178626: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
76471          <idle>-0     (-----) [007] d..1 24574.178631: cpu_idle: state=0 cpu_id=7
76472<...>-23968 ( 23968) [002] d.h3 24574.178632: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
76473<...>-23968 ( 23968) [002] d.h4 24574.178648: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
76474<...>-23968 ( 23968) [002] d.h4 24574.178653: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=003
76475          <idle>-0     (-----) [003] .n.1 24574.178659: cpu_idle: state=4294967295 cpu_id=3
76476          <idle>-0     (-----) [003] d..2 24574.178665: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
76477  surfaceflinger-23896 (23896) [000] d..1 24574.178706: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
76478  surfaceflinger-23896 (23896) [000] d..2 24574.178724: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
76479<...>-23968 ( 23968) [002] d..2 24574.178732: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
76480  surfaceflinger-23896 (23896) [000] d.h3 24574.178749: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
76481   sfEventThread-23906 (23896) [002] d..2 24574.178754: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
76482<...>-23968 ( 23968) [002] .... 24574.178758: binder_transaction: transaction=1670521 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
76483<...>-23968 ( 23968) [002] dn.4 24574.178763: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
76484  surfaceflinger-23896 (23896) [000] d.h4 24574.178765: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
76485<...>-24041 ( 23968) [001] .... 24574.178769: binder_transaction: transaction=1670522 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
76486  surfaceflinger-23896 (23896) [000] d..1 24574.178773: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
76487<...>-24041 ( 23968) [001] ...2 24574.178782: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
76488  surfaceflinger-23896 (23896) [000] d..2 24574.178784: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
76489<...>-24041 ( 23968) [001] d..4 24574.178785: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
76490          <idle>-0     (-----) [006] dnh2 24574.178787: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
76491<...>-23968 ( 23968) [002] d..2 24574.178787: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
76492          <idle>-0     (-----) [006] .n.1 24574.178789: cpu_idle: state=4294967295 cpu_id=6
76493    RenderThread-24437 (24151) [003] d..2 24574.178792: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
76494          <idle>-0     (-----) [006] d..2 24574.178794: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
76495<...>-24376 ( 24151) [006] .... 24574.178797: binder_transaction_received: transaction=1670521
76496<...>-24041 ( 23968) [001] dn.5 24574.178802: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
76497<...>-24041 ( 23968) [001] d..2 24574.178837: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
76498 kgsl_worker_thr-246   (  246) [002] d..2 24574.178837: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
76499   sfEventThread-23906 (23896) [003] d..2 24574.178838: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
76500  Binder:23896_5-25989 (23896) [001] .... 24574.178842: binder_transaction_received: transaction=1670522
76501<...>-24376 ( 24151) [006] d..3 24574.178849: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
76502<...>-24376 ( 24151) [006] d..4 24574.178867: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
76503          <idle>-0     (-----) [007] .n.1 24574.178872: cpu_idle: state=4294967295 cpu_id=7
76504          <idle>-0     (-----) [007] d..2 24574.178889: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
76505  Binder:23896_5-25989 (23896) [001] .... 24574.178890: binder_transaction: transaction=1670523 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
76506  Binder:23896_5-25989 (23896) [001] .... 24574.178894: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
76507    RenderThread-24437 (24151) [003] .... 24574.178897: binder_transaction: transaction=1670524 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
76508<...>-23968 ( 23968) [002] d..2 24574.178905: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
76509    RenderThread-24437 (24151) [003] d..4 24574.178906: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
76510<...>-24376 ( 24151) [006] d..2 24574.178913: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
76511          <idle>-0     (-----) [002] d..1 24574.178917: cpu_idle: state=0 cpu_id=2
76512          <idle>-0     (-----) [006] d..1 24574.178919: cpu_idle: state=0 cpu_id=6
76513    RenderThread-24437 (24151) [003] dn.5 24574.178925: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=003
76514<...>-24151 ( 24151) [007] d..2 24574.178930: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
76515          <idle>-0     (-----) [007] d..1 24574.178935: cpu_idle: state=0 cpu_id=7
76516    RenderThread-24437 (24151) [003] dnh5 24574.178960: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
76517    RenderThread-24437 (24151) [003] dnh6 24574.178974: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
76518          <idle>-0     (-----) [002] .n.1 24574.178979: cpu_idle: state=4294967295 cpu_id=2
76519    RenderThread-24437 (24151) [003] d..2 24574.178980: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
76520          <idle>-0     (-----) [002] d..2 24574.178985: 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
76521  Binder:23896_4-24423 (23896) [003] .... 24574.178986: binder_transaction_received: transaction=1670524
76522  Binder:23896_5-25989 (23896) [001] d..2 24574.178997: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
76523         sugov:0-559   (  559) [002] d..2 24574.179000: 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
76524<...>-24041 ( 23968) [001] .... 24574.179002: binder_transaction_received: transaction=1670523
76525          <idle>-0     (-----) [002] d..1 24574.179006: cpu_idle: state=0 cpu_id=2
76526  Binder:23896_4-24423 (23896) [003] .... 24574.179065: binder_transaction: transaction=1670525 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
76527  Binder:23896_4-24423 (23896) [003] d..2 24574.179092: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
76528    RenderThread-24437 (24151) [003] .... 24574.179098: binder_transaction_received: transaction=1670525
76529    RenderThread-24437 (24151) [003] d..2 24574.179154: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76530          <idle>-0     (-----) [003] d..1 24574.179166: cpu_idle: state=0 cpu_id=3
76531  surfaceflinger-23896 (23896) [000] ...1 24574.179406: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
76532  surfaceflinger-23896 (23896) [000] ...1 24574.179412: tracing_mark_write: E|23896
76533  surfaceflinger-23896 (23896) [000] .... 24574.179457: binder_transaction: transaction=1670526 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
76534  surfaceflinger-23896 (23896) [000] ...2 24574.179479: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
76535  surfaceflinger-23896 (23896) [000] d..4 24574.179487: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
76536  surfaceflinger-23896 (23896) [000] d..5 24574.179507: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
76537          <idle>-0     (-----) [002] .n.1 24574.179511: cpu_idle: state=4294967295 cpu_id=2
76538          <idle>-0     (-----) [002] d..2 24574.179517: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
76539  surfaceflinger-23896 (23896) [000] d..2 24574.179520: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
76540  HwBinder:598_3-633   (  598) [002] .... 24574.179525: binder_transaction_received: transaction=1670526
76541<...>-24073 ( 23968) [000] d..2 24574.179557: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76542<...>-24041 ( 23968) [001] d..1 24574.179568: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=002
76543          <idle>-0     (-----) [000] d..1 24574.179568: cpu_idle: state=0 cpu_id=0
76544  HwBinder:598_3-633   (  598) [002] ...1 24574.179569: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
76545<...>-24041 ( 23968) [001] d..2 24574.179592: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=000
76546          <idle>-0     (-----) [000] .n.1 24574.179598: cpu_idle: state=4294967295 cpu_id=0
76547          <idle>-0     (-----) [000] d..2 24574.179606: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
76548  HwBinder:598_3-633   (  598) [002] ...1 24574.179689: tracing_mark_write: B|598|HWCSession::PresentDisplay::
76549<...>-24003 ( 23968) [000] d..1 24574.179697: sched_waking: comm=Binder:23968_5 pid=24233 prio=110 target_cpu=002
76550<...>-24041 ( 23968) [001] d..2 24574.179707: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
76551<...>-24003 ( 23968) [000] d..2 24574.179719: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=110 target_cpu=001
76552          <idle>-0     (-----) [001] d..2 24574.179726: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=110
76553  Binder:23968_5-24233 (23968) [001] d..1 24574.179764: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=006
76554  Binder:23968_5-24233 (23968) [001] d..2 24574.179786: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=003
76555<...>-24003 ( 23968) [000] d..2 24574.179791: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76556          <idle>-0     (-----) [003] .n.1 24574.179792: cpu_idle: state=4294967295 cpu_id=3
76557          <idle>-0     (-----) [000] d..1 24574.179801: cpu_idle: state=0 cpu_id=0
76558  Binder:23968_5-24233 (23968) [001] d.h3 24574.179819: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
76559          <idle>-0     (-----) [003] d..2 24574.179820: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
76560  Binder:23968_5-24233 (23968) [001] d.h4 24574.179832: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
76561  Binder:23968_5-24233 (23968) [001] d..1 24574.179838: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=003
76562          <idle>-0     (-----) [000] .n.1 24574.179838: cpu_idle: state=4294967295 cpu_id=0
76563  Binder:23968_C-25014 (23968) [003] d..2 24574.179842: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76564          <idle>-0     (-----) [000] d..2 24574.179844: 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
76565          <idle>-0     (-----) [003] dn.1 24574.179849: cpu_idle: state=0 cpu_id=3
76566          <idle>-0     (-----) [003] .n.1 24574.179851: cpu_idle: state=4294967295 cpu_id=3
76567  Binder:23968_5-24233 (23968) [001] d..2 24574.179851: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=003
76568         sugov:0-559   (  559) [000] d..2 24574.179858: 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
76569          <idle>-0     (-----) [003] d..2 24574.179860: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
76570          <idle>-0     (-----) [000] d..1 24574.179864: cpu_idle: state=0 cpu_id=0
76571  Binder:23968_C-25014 (23968) [003] d..1 24574.179903: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=001
76572  Binder:23968_C-25014 (23968) [003] d..2 24574.179921: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=000
76573          <idle>-0     (-----) [000] .n.1 24574.179926: cpu_idle: state=4294967295 cpu_id=0
76574          <idle>-0     (-----) [000] d..2 24574.179932: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
76575  Binder:23968_5-24233 (23968) [001] .... 24574.179957: binder_transaction: transaction=1670527 dest_node=1280245 dest_proc=24133 dest_thread=0 reply=0 flags=0x11 code=0x3
76576  Binder:23968_5-24233 (23968) [001] d..4 24574.179966: sched_waking: comm=Binder:24133_4 pid=24431 prio=120 target_cpu=001
76577  Binder:23968_5-24233 (23968) [001] d..5 24574.179982: sched_wakeup: comm=Binder:24133_4 pid=24431 prio=120 target_cpu=001
76578<...>-24041 ( 23968) [000] .... 24574.179988: binder_transaction: transaction=1670528 dest_node=1271137 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
76579<...>-24041 ( 23968) [000] d..4 24574.179993: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=003
76580  Binder:23968_5-24233 (23968) [001] .... 24574.180031: binder_transaction: transaction=1670529 dest_node=1669023 dest_proc=13131 dest_thread=0 reply=0 flags=0x11 code=0x4
76581  Binder:23968_5-24233 (23968) [001] d..4 24574.180039: sched_waking: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=007
76582          <idle>-0     (-----) [005] dnh2 24574.180040: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
76583  Binder:23968_C-25014 (23968) [003] d..2 24574.180042: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76584          <idle>-0     (-----) [005] .n.1 24574.180043: cpu_idle: state=4294967295 cpu_id=5
76585          <idle>-0     (-----) [005] d..2 24574.180047: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
76586  Binder:23896_4-24423 (23896) [005] .... 24574.180050: binder_transaction_received: transaction=1670528
76587          <idle>-0     (-----) [003] d..1 24574.180052: cpu_idle: state=0 cpu_id=3
76588<...>-24041 ( 23968) [000] d..1 24574.180052: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=003
76589  Binder:23896_4-24423 (23896) [005] d..1 24574.180063: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
76590  Binder:23968_5-24233 (23968) [001] d..5 24574.180066: sched_wakeup: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=003
76591<...>-24041 ( 23968) [000] d..2 24574.180071: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=003
76592          <idle>-0     (-----) [003] .n.1 24574.180072: cpu_idle: state=4294967295 cpu_id=3
76593          <idle>-0     (-----) [003] d..2 24574.180079: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_3 next_pid=13145 next_prio=120
76594  Binder:23968_5-24233 (23968) [001] dnh4 24574.180115: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
76595           <...>-13145 (-----) [003] .... 24574.180121: binder_transaction_received: transaction=1670529
76596  Binder:23968_5-24233 (23968) [001] d..2 24574.180121: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=110 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
76597  Binder:23896_4-24423 (23896) [005] d..2 24574.180121: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
76598          <idle>-0     (-----) [005] d..1 24574.180125: cpu_idle: state=0 cpu_id=5
76599   sfEventThread-23906 (23896) [001] d..2 24574.180149: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=Binder:24133_4 next_pid=24431 next_prio=120
76600<...>-24431 ( 24133) [001] .... 24574.180157: binder_transaction_received: transaction=1670527
76601  HwBinder:598_3-633   (  598) [002] ...1 24574.180208: tracing_mark_write: B|598|HWDeviceDRM::Validate::
76602           <...>-13145 (-----) [003] d..3 24574.180290: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=006
76603          <idle>-0     (-----) [006] dnh2 24574.180313: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=006
76604          <idle>-0     (-----) [006] .n.1 24574.180316: cpu_idle: state=4294967295 cpu_id=6
76605          <idle>-0     (-----) [006] d..2 24574.180320: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
76606<...>-24431 ( 24133) [001] d..3 24574.180347: sched_waking: comm=putmethod.latin pid=24133 prio=120 target_cpu=000
76607<...>-24041 ( 23968) [000] .... 24574.180354: binder_transaction: transaction=1670530 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
76608           <...>-13145 (-----) [003] d..1 24574.180364: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=006
76609<...>-24041 ( 23968) [000] ...2 24574.180368: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
76610           <...>-13131 (-----) [006] d..2 24574.180369: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
76611<...>-24041 ( 23968) [000] d..4 24574.180371: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=005
76612          <idle>-0     (-----) [006] d..1 24574.180373: cpu_idle: state=0 cpu_id=6
76613<...>-24431 ( 24133) [001] d..4 24574.180380: sched_wakeup: comm=putmethod.latin pid=24133 prio=120 target_cpu=001
76614          <idle>-0     (-----) [006] d.h2 24574.180382: sched_blocked_reason: pid=13131 iowait=0 caller=do_page_fault+0x4e0/0x594
76615          <idle>-0     (-----) [006] dnh2 24574.180384: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=006
76616          <idle>-0     (-----) [006] .n.1 24574.180386: cpu_idle: state=4294967295 cpu_id=6
76617<...>-24041 ( 23968) [000] dn.5 24574.180389: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
76618          <idle>-0     (-----) [006] d..2 24574.180390: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
76619<...>-24041 ( 23968) [000] dnh5 24574.180421: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
76620<...>-24431 ( 24133) [001] d..2 24574.180425: sched_switch: prev_comm=Binder:24133_4 prev_pid=24431 prev_prio=120 prev_state=S ==> next_comm=putmethod.latin next_pid=24133 next_prio=120
76621           <...>-13145 (-----) [003] d..2 24574.180428: sched_switch: prev_comm=Binder:13131_3 prev_pid=13145 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
76622<...>-24041 ( 23968) [000] dnh6 24574.180439: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
76623  Binder:23968_C-25014 (23968) [003] d..2 24574.180445: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
76624<...>-24041 ( 23968) [000] d..2 24574.180453: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
76625         sugov:0-559   (  559) [003] d..2 24574.180458: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
76626  Binder:23896_4-24423 (23896) [000] .... 24574.180458: binder_transaction_received: transaction=1670530
76627  Binder:23968_C-25014 (23968) [003] d..2 24574.180476: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76628          <idle>-0     (-----) [003] d..1 24574.180485: cpu_idle: state=0 cpu_id=3
76629  Binder:23896_4-24423 (23896) [000] .... 24574.180517: binder_transaction: transaction=1670531 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
76630  Binder:23896_4-24423 (23896) [000] .... 24574.180521: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
76631 putmethod.latin-24133 (24133) [001] d..2 24574.180526: sched_switch: prev_comm=putmethod.latin prev_pid=24133 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=110
76632  Binder:23896_4-24423 (23896) [000] d..2 24574.180556: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
76633<...>-24041 ( 23968) [000] .... 24574.180561: binder_transaction_received: transaction=1670531
76634  Binder:23968_5-24233 (23968) [001] .... 24574.180582: binder_transaction: transaction=1670532 dest_node=1669023 dest_proc=13131 dest_thread=0 reply=0 flags=0x11 code=0x3
76635  Binder:23968_5-24233 (23968) [001] d..4 24574.180587: sched_waking: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=003
76636  Binder:23968_5-24233 (23968) [001] d..5 24574.180600: sched_wakeup: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=003
76637          <idle>-0     (-----) [003] .n.1 24574.180605: cpu_idle: state=4294967295 cpu_id=3
76638          <idle>-0     (-----) [003] d..2 24574.180611: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_3 next_pid=13145 next_prio=120
76639           <...>-13145 (-----) [003] .... 24574.180615: binder_transaction_received: transaction=1670532
76640  Binder:23968_5-24233 (23968) [001] d..3 24574.180639: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=002
76641<...>-24041 ( 23968) [000] .... 24574.180659: binder_transaction: transaction=1670533 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
76642<...>-24041 ( 23968) [000] ...2 24574.180664: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
76643<...>-24041 ( 23968) [000] d..4 24574.180683: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
76644          <idle>-0     (-----) [007] dnh2 24574.180686: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=007
76645          <idle>-0     (-----) [007] .n.1 24574.180689: cpu_idle: state=4294967295 cpu_id=7
76646<...>-24041 ( 23968) [000] dn.5 24574.180692: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
76647          <idle>-0     (-----) [007] d..2 24574.180692: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
76648  HwBinder:598_3-633   (  598) [002] ...1 24574.180694: tracing_mark_write: E|598
76649<...>-24041 ( 23968) [000] d..2 24574.180698: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
76650  Binder:23896_4-24423 (23896) [000] .... 24574.180702: binder_transaction_received: transaction=1670533
76651  Binder:23896_4-24423 (23896) [000] .... 24574.180723: binder_transaction: transaction=1670534 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
76652  Binder:23896_4-24423 (23896) [000] .... 24574.180726: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
76653  Binder:23968_5-24233 (23968) [001] .... 24574.180730: binder_transaction: transaction=1670535 dest_node=1309202 dest_proc=24827 dest_thread=0 reply=0 flags=0x11 code=0x4
76654  Binder:23968_5-24233 (23968) [001] d..4 24574.180735: sched_waking: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=005
76655  Binder:23896_4-24423 (23896) [000] d..2 24574.180750: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
76656          <idle>-0     (-----) [005] dnh2 24574.180752: sched_wakeup: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=005
76657          <idle>-0     (-----) [005] .n.1 24574.180755: cpu_idle: state=4294967295 cpu_id=5
76658<...>-24041 ( 23968) [000] .... 24574.180755: binder_transaction_received: transaction=1670534
76659          <idle>-0     (-----) [005] d..2 24574.180758: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24827_5 next_pid=5558 next_prio=120
76660<...>-5558 ( 24827) [005] .... 24574.180760: binder_transaction_received: transaction=1670535
76661           <...>-13131 (-----) [006] .... 24574.180762: binder_transaction: transaction=1670536 dest_node=3 dest_proc=587 dest_thread=0 reply=0 flags=0x10 code=0x1
76662           <...>-13145 (-----) [003] d..2 24574.180768: sched_switch: prev_comm=Binder:13131_3 prev_pid=13145 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76663           <...>-13131 (-----) [006] d..4 24574.180770: sched_waking: comm=servicemanager pid=587 prio=120 target_cpu=002
76664<...>-24041 ( 23968) [000] d..1 24574.180773: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=003
76665          <idle>-0     (-----) [003] d..1 24574.180780: cpu_idle: state=0 cpu_id=3
76666<...>-23968 ( 23968) [007] .... 24574.180781: binder_transaction: transaction=1670537 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xb
76667<...>-24041 ( 23968) [000] d..2 24574.180785: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=003
76668<...>-23968 ( 23968) [007] d..4 24574.180790: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
76669          <idle>-0     (-----) [003] .n.1 24574.180790: cpu_idle: state=4294967295 cpu_id=3
76670          <idle>-0     (-----) [003] dn.2 24574.180797: sched_wakeup: comm=servicemanager pid=587 prio=120 target_cpu=003
76671  HwBinder:598_3-633   (  598) [002] ...1 24574.180798: tracing_mark_write: B|598|HWDeviceDRM::Commit::
76672           <...>-13131 (-----) [006] d..2 24574.180803: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
76673  Binder:23968_5-24233 (23968) [001] .... 24574.180804: binder_transaction: transaction=1670538 dest_node=1280245 dest_proc=24133 dest_thread=0 reply=0 flags=0x11 code=0x2
76674  HwBinder:598_3-633   (  598) [002] ...1 24574.180805: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
76675          <idle>-0     (-----) [003] d..2 24574.180805: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=servicemanager next_pid=587 next_prio=120
76676          <idle>-0     (-----) [006] d..1 24574.180810: cpu_idle: state=0 cpu_id=6
76677<...>-23968 ( 23968) [007] d..5 24574.180810: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
76678<...>-587 ( 587) [003] .... 24574.180815: binder_transaction_received: transaction=1670536
76679  Binder:23968_5-24233 (23968) [001] d..4 24574.180816: sched_waking: comm=Binder:24133_4 pid=24431 prio=120 target_cpu=001
76680  Binder:23968_5-24233 (23968) [001] d..5 24574.180827: sched_wakeup: comm=Binder:24133_4 pid=24431 prio=120 target_cpu=001
76681<...>-5558 ( 24827) [005] d..2 24574.180832: sched_switch: prev_comm=Binder:24827_5 prev_pid=5558 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
76682<...>-23968 ( 23968) [007] d..2 24574.180836: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
76683          <idle>-0     (-----) [005] d..1 24574.180838: cpu_idle: state=0 cpu_id=5
76684<...>-24376 ( 24151) [007] .... 24574.180839: binder_transaction_received: transaction=1670537
76685<...>-24376 ( 24151) [007] d.s2 24574.180904: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
76686  Binder:23968_5-24233 (23968) [001] d.s1 24574.180906: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
76687  HwBinder:598_3-633   (  598) [002] d.h1 24574.180933: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
76688  Binder:23968_5-24233 (23968) [001] d.s2 24574.180939: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
76689<...>-24376 ( 24151) [007] d..3 24574.180989: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
76690  Binder:23968_5-24233 (23968) [001] .... 24574.180999: binder_transaction: transaction=1670539 dest_node=1280245 dest_proc=24133 dest_thread=0 reply=0 flags=0x11 code=0x6
76691<...>-24376 ( 24151) [007] d..4 24574.181003: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
76692          <idle>-0     (-----) [006] .n.1 24574.181008: cpu_idle: state=4294967295 cpu_id=6
76693          <idle>-0     (-----) [006] d..2 24574.181014: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
76694<...>-24376 ( 24151) [007] d..2 24574.181041: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
76695<...>-24041 ( 23968) [000] .... 24574.181048: binder_transaction: transaction=1670540 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
76696          <idle>-0     (-----) [007] d..1 24574.181048: cpu_idle: state=0 cpu_id=7
76697  Binder:23968_5-24233 (23968) [001] .... 24574.181050: binder_transaction: transaction=1670541 dest_node=1280245 dest_proc=24133 dest_thread=0 reply=0 flags=0x11 code=0x6
76698<...>-24041 ( 23968) [000] d..4 24574.181053: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
76699<...>-587 ( 587) [003] .... 24574.181055: binder_transaction: transaction=1670542 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
76700          <idle>-0     (-----) [007] dnh2 24574.181073: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
76701          <idle>-0     (-----) [007] .n.1 24574.181075: cpu_idle: state=4294967295 cpu_id=7
76702<...>-587 ( 587) [003] d..2 24574.181077: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=006
76703          <idle>-0     (-----) [007] d..2 24574.181080: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
76704<...>-24376 ( 24151) [007] .... 24574.181082: binder_transaction_received: transaction=1670540
76705<...>-24376 ( 24151) [007] d.h1 24574.181106: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=007
76706<...>-587 ( 587) [003] d..2 24574.181117: sched_switch: prev_comm=servicemanager prev_pid=587 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
76707  Binder:23968_5-24233 (23968) [001] .... 24574.181131: binder_transaction: transaction=1670544 dest_node=1280245 dest_proc=24133 dest_thread=0 reply=0 flags=0x11 code=0x4
76708<...>-24376 ( 24151) [007] d..2 24574.181133: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
76709           <...>-13131 (-----) [007] .... 24574.181137: binder_transaction_received: transaction=1670542
76710<...>-24041 ( 23968) [000] d..3 24574.181137: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=007
76711  HwBinder:598_3-633   (  598) [002] d..2 24574.181139: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
76712  Binder:23968_C-25014 (23968) [003] d..2 24574.181142: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76713          <idle>-0     (-----) [003] d..1 24574.181152: cpu_idle: state=0 cpu_id=3
76714<...>-24151 ( 24151) [006] d..2 24574.181166: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
76715<...>-24041 ( 23968) [000] d..4 24574.181167: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=003
76716          <idle>-0     (-----) [006] d..1 24574.181172: cpu_idle: state=0 cpu_id=6
76717  HwBinder:598_3-633   (  598) [002] d..3 24574.181172: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
76718          <idle>-0     (-----) [003] .n.1 24574.181172: cpu_idle: state=4294967295 cpu_id=3
76719          <idle>-0     (-----) [003] d..2 24574.181179: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
76720<...>-24041 ( 23968) [000] d.h3 24574.181210: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
76721<...>-24041 ( 23968) [000] d.h4 24574.181223: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
76722  Binder:23968_5-24233 (23968) [001] d..2 24574.181235: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
76723  HwBinder:598_3-633   (  598) [002] ...1 24574.181245: tracing_mark_write: E|598
76724         sugov:0-559   (  559) [001] d..2 24574.181246: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:24133_4 next_pid=24431 next_prio=120
76725  HwBinder:598_3-633   (  598) [002] ...1 24574.181248: tracing_mark_write: E|598
76726<...>-24431 ( 24133) [001] .... 24574.181251: binder_transaction_received: transaction=1670538
76727  HwBinder:598_3-633   (  598) [002] ...1 24574.181288: tracing_mark_write: E|598
76728           <...>-13131 (-----) [007] d..2 24574.181334: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
76729  HwBinder:598_3-633   (  598) [002] ...1 24574.181335: tracing_mark_write: E|598
76730          <idle>-0     (-----) [007] d..1 24574.181342: cpu_idle: state=0 cpu_id=7
76731  HwBinder:598_3-633   (  598) [002] .... 24574.181347: binder_transaction: transaction=1670547 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
76732  HwBinder:598_3-633   (  598) [002] d..2 24574.181364: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
76733  HwBinder:598_3-633   (  598) [002] d..3 24574.181380: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
76734<...>-24431 ( 24133) [001] dn.3 24574.181381: sched_waking: comm=putmethod.latin pid=24133 prio=120 target_cpu=001
76735  HwBinder:598_3-633   (  598) [002] .... 24574.181383: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
76736<...>-24431 ( 24133) [001] dn.4 24574.181394: sched_wakeup: comm=putmethod.latin pid=24133 prio=120 target_cpu=001
76737<...>-24431 ( 24133) [001] d..2 24574.181403: sched_switch: prev_comm=Binder:24133_4 prev_pid=24431 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
76738  surfaceflinger-23896 (23896) [001] .... 24574.181410: binder_transaction_received: transaction=1670547
76739<...>-24041 ( 23968) [000] .... 24574.181427: binder_transaction: transaction=1670548 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
76740<...>-24041 ( 23968) [000] ...2 24574.181433: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
76741<...>-24041 ( 23968) [000] d..4 24574.181436: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
76742  HwBinder:598_3-633   (  598) [002] d..2 24574.181439: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
76743<...>-24041 ( 23968) [000] dn.5 24574.181445: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
76744<...>-24041 ( 23968) [000] d..2 24574.181451: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
76745     rcu_preempt-7     (    7) [002] d..2 24574.181452: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
76746  Binder:23896_4-24423 (23896) [000] .... 24574.181456: binder_transaction_received: transaction=1670548
76747     rcu_preempt-7     (    7) [002] d..3 24574.181479: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
76748  Binder:23896_4-24423 (23896) [000] .... 24574.181479: binder_transaction: transaction=1670549 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
76749     rcu_preempt-7     (    7) [002] d..2 24574.181482: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
76750  Binder:23896_4-24423 (23896) [000] .... 24574.181483: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
76751     rcu_preempt-7     (    7) [002] d..3 24574.181492: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
76752     rcu_preempt-7     (    7) [002] d..2 24574.181494: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=001
76753  Binder:23896_4-24423 (23896) [000] d..2 24574.181508: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
76754     rcu_preempt-7     (    7) [002] d..3 24574.181513: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=003
76755<...>-24041 ( 23968) [000] .... 24574.181513: binder_transaction_received: transaction=1670549
76756     rcu_preempt-7     (    7) [002] d..2 24574.181526: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
76757 crtc_commit:111-253   (  253) [003] d..2 24574.181539: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcuop/4 next_pid=45 next_prio=120
76758         rcuop/4-45    (   45) [003] d..2 24574.181546: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=000
76759         rcuop/4-45    (   45) [003] d..3 24574.181573: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=003
76760         rcuop/4-45    (   45) [003] d..2 24574.181582: 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
76761         rcuop/5-53    (   53) [003] d..2 24574.181595: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
76762         rcuop/6-61    (   61) [003] d..2 24574.181601: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=002
76763         rcuop/6-61    (   61) [003] d..3 24574.181622: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=003
76764         rcuop/6-61    (   61) [003] d..2 24574.181630: 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
76765         rcuop/7-69    (   69) [003] d..2 24574.181644: 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
76766         rcuop/2-29    (   29) [003] d..2 24574.181656: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=23994 next_prio=118
76767  kworker/u16:15-18488 (18488) [002] d..2 24574.181684: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
76768          <idle>-0     (-----) [002] d..1 24574.181696: cpu_idle: state=0 cpu_id=2
76769<...>-23994 ( 23968) [003] d.s2 24574.181722: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
76770<...>-23994 ( 23968) [003] d.s3 24574.181743: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
76771<...>-23994 ( 23968) [003] d.s3 24574.181747: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
76772<...>-23994 ( 23968) [003] d..3 24574.181779: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=007
76773<...>-23994 ( 23968) [003] d..4 24574.181798: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=002
76774          <idle>-0     (-----) [002] .n.1 24574.181803: cpu_idle: state=4294967295 cpu_id=2
76775  surfaceflinger-23896 (23896) [001] d..2 24574.181809: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=putmethod.latin next_pid=24133 next_prio=120
76776          <idle>-0     (-----) [002] d..2 24574.181812: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
76777<...>-23994 ( 23968) [003] d.h3 24574.181841: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
76778 putmethod.latin-24133 (24133) [001] d..2 24574.181845: sched_switch: prev_comm=putmethod.latin prev_pid=24133 prev_prio=120 prev_state=S ==> next_comm=Binder:24133_4 next_pid=24431 next_prio=120
76779<...>-24431 ( 24133) [001] d..1 24574.181851: sched_waking: comm=putmethod.latin pid=24133 prio=120 target_cpu=001
76780<...>-23968 ( 23968) [002] d..2 24574.181851: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
76781          <idle>-0     (-----) [002] d..1 24574.181858: cpu_idle: state=0 cpu_id=2
76782          <idle>-0     (-----) [002] .n.1 24574.181860: cpu_idle: state=4294967295 cpu_id=2
76783<...>-23994 ( 23968) [003] d.h4 24574.181862: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
76784<...>-24431 ( 24133) [001] d..2 24574.181865: sched_wakeup: comm=putmethod.latin pid=24133 prio=120 target_cpu=001
76785<...>-23994 ( 23968) [003] d..1 24574.181869: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=002
76786          <idle>-0     (-----) [002] d..2 24574.181870: 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
76787         sugov:0-559   (  559) [002] d..2 24574.181886: 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
76788          <idle>-0     (-----) [002] d..1 24574.181890: cpu_idle: state=0 cpu_id=2
76789<...>-24431 ( 24133) [001] d..4 24574.181896: sched_waking: comm=Binder:24133_7 pid=12580 prio=120 target_cpu=001
76790          <idle>-0     (-----) [006] dnh2 24574.181910: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=006
76791          <idle>-0     (-----) [006] .n.1 24574.181912: cpu_idle: state=4294967295 cpu_id=6
76792          <idle>-0     (-----) [006] d..2 24574.181917: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
76793<...>-24431 ( 24133) [001] d..5 24574.181918: sched_wakeup: comm=Binder:24133_7 pid=12580 prio=120 target_cpu=001
76794<...>-24431 ( 24133) [001] .... 24574.181924: binder_transaction_received: transaction=1670539
76795<...>-23994 ( 23968) [003] d..2 24574.181937: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
76796<...>-23968 ( 23968) [006] .... 24574.181957: binder_transaction: transaction=1670550 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
76797<...>-23968 ( 23968) [006] d..4 24574.181961: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
76798<...>-23968 ( 23968) [006] d..5 24574.181970: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
76799          <idle>-0     (-----) [007] .n.1 24574.181974: cpu_idle: state=4294967295 cpu_id=7
76800          <idle>-0     (-----) [007] d..2 24574.181980: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
76801<...>-24376 ( 24151) [007] .... 24574.181983: binder_transaction_received: transaction=1670550
76802<...>-23968 ( 23968) [006] d..2 24574.182010: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
76803          <idle>-0     (-----) [006] d..1 24574.182016: cpu_idle: state=0 cpu_id=6
76804  kworker/u16:15-18488 (18488) [003] .... 24574.182027: clk_set_rate: l3_cluster1_vote_clk 300000000
76805<...>-24431 ( 24133) [001] d..4 24574.182029: sched_waking: comm=Binder:24133_2 pid=24157 prio=120 target_cpu=001
76806<...>-24376 ( 24151) [007] d..3 24574.182032: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
76807<...>-24431 ( 24133) [001] d..5 24574.182045: sched_wakeup: comm=Binder:24133_2 pid=24157 prio=120 target_cpu=001
76808<...>-24431 ( 24133) [001] .... 24574.182055: binder_transaction_received: transaction=1670541
76809          <idle>-0     (-----) [002] dnh2 24574.182071: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
76810<...>-24041 ( 23968) [000] d..3 24574.182074: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
76811          <idle>-0     (-----) [002] .n.1 24574.182075: cpu_idle: state=4294967295 cpu_id=2
76812          <idle>-0     (-----) [002] d..2 24574.182080: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
76813<...>-24376 ( 24151) [007] d..2 24574.182092: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
76814          <idle>-0     (-----) [007] d..1 24574.182099: cpu_idle: state=0 cpu_id=7
76815          <idle>-0     (-----) [006] dnh2 24574.182126: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
76816          <idle>-0     (-----) [006] .n.1 24574.182129: cpu_idle: state=4294967295 cpu_id=6
76817          <idle>-0     (-----) [006] d..2 24574.182133: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
76818<...>-24073 ( 23968) [006] d..2 24574.182156: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
76819  kworker/u16:15-18488 (18488) [003] d..2 24574.182158: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76820          <idle>-0     (-----) [006] d..1 24574.182160: cpu_idle: state=0 cpu_id=6
76821<...>-24431 ( 24133) [001] d..4 24574.182169: sched_waking: comm=Binder:24133_5 pid=25451 prio=120 target_cpu=000
76822          <idle>-0     (-----) [003] d..1 24574.182169: cpu_idle: state=0 cpu_id=3
76823<...>-24151 ( 24151) [002] d..2 24574.182180: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
76824<...>-24431 ( 24133) [001] d..5 24574.182185: sched_wakeup: comm=Binder:24133_5 pid=25451 prio=120 target_cpu=000
76825          <idle>-0     (-----) [002] d..1 24574.182188: cpu_idle: state=0 cpu_id=2
76826<...>-24041 ( 23968) [000] d..1 24574.182188: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=003
76827<...>-24431 ( 24133) [001] .... 24574.182193: binder_transaction_received: transaction=1670544
76828<...>-24041 ( 23968) [000] d..2 24574.182207: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=002
76829          <idle>-0     (-----) [002] .n.1 24574.182211: cpu_idle: state=4294967295 cpu_id=2
76830          <idle>-0     (-----) [002] d..2 24574.182219: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
76831<...>-24041 ( 23968) [000] d..2 24574.182245: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=Binder:24133_5 next_pid=25451 next_prio=120
76832<...>-25451 ( 24133) [000] d..2 24574.182279: sched_switch: prev_comm=Binder:24133_5 prev_pid=25451 prev_prio=120 prev_state=S ==> next_comm=Binder:24133_2 next_pid=24157 next_prio=120
76833<...>-24157 ( 24133) [000] d..2 24574.182298: sched_switch: prev_comm=Binder:24133_2 prev_pid=24157 prev_prio=120 prev_state=S ==> next_comm=putmethod.latin next_pid=24133 next_prio=120
76834  Binder:23968_C-25014 (23968) [002] d..1 24574.182314: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=000
76835  Binder:23968_C-25014 (23968) [002] d..2 24574.182333: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=003
76836          <idle>-0     (-----) [003] .n.1 24574.182338: cpu_idle: state=4294967295 cpu_id=3
76837          <idle>-0     (-----) [003] d..2 24574.182346: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
76838<...>-24431 ( 24133) [001] d..2 24574.182348: sched_switch: prev_comm=Binder:24133_4 prev_pid=24431 prev_prio=120 prev_state=S ==> next_comm=Binder:24133_7 next_pid=12580 next_prio=120
76839  Binder:24133_7-12580 (24133) [001] d..2 24574.182359: sched_switch: prev_comm=Binder:24133_7 prev_pid=12580 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=110
76840 putmethod.latin-24133 (24133) [000] .... 24574.182393: binder_transaction: transaction=1670551 dest_node=1271381 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x21
76841 putmethod.latin-24133 (24133) [000] d..4 24574.182403: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=006
76842 putmethod.latin-24133 (24133) [000] d..5 24574.182424: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=000
76843 putmethod.latin-24133 (24133) [000] d.h5 24574.182456: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
76844 putmethod.latin-24133 (24133) [000] d.h6 24574.182470: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
76845 putmethod.latin-24133 (24133) [000] d..2 24574.182481: sched_switch: prev_comm=putmethod.latin prev_pid=24133 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
76846<...>-24003 ( 23968) [003] d..2 24574.182481: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
76847<...>-12589 ( 23968) [000] .... 24574.182489: binder_transaction_received: transaction=1670551
76848         sugov:0-559   (  559) [003] d..2 24574.182491: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=android.display next_pid=24003 next_prio=117
76849  Binder:23968_5-24233 (23968) [001] d..1 24574.182502: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=002
76850  Binder:23968_C-25014 (23968) [002] d..2 24574.182513: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
76851          <idle>-0     (-----) [002] dn.1 24574.182523: cpu_idle: state=0 cpu_id=2
76852          <idle>-0     (-----) [002] .n.1 24574.182526: cpu_idle: state=4294967295 cpu_id=2
76853  Binder:23968_5-24233 (23968) [001] d..2 24574.182527: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=002
76854          <idle>-0     (-----) [002] d..2 24574.182536: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
76855<...>-24003 ( 23968) [003] d..3 24574.182537: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=001
76856  Binder:23968_C-25014 (23968) [002] d..2 24574.182554: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
76857<...>-12589 ( 23968) [000] d..1 24574.182559: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=002
76858          <idle>-0     (-----) [002] d..1 24574.182559: cpu_idle: state=0 cpu_id=2
76859  Binder:23968_5-24233 (23968) [001] .... 24574.182575: binder_transaction: transaction=1670552 dest_node=0 dest_proc=24827 dest_thread=24827 reply=1 flags=0x0 code=0x0
76860          <idle>-0     (-----) [006] dnh2 24574.182586: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=006
76861          <idle>-0     (-----) [006] .n.1 24574.182589: cpu_idle: state=4294967295 cpu_id=6
76862<...>-12589 ( 23968) [000] d..2 24574.182590: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=002
76863  Binder:23968_5-24233 (23968) [001] d..2 24574.182593: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
76864          <idle>-0     (-----) [006] d..2 24574.182593: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
76865          <idle>-0     (-----) [002] .n.1 24574.182595: cpu_idle: state=4294967295 cpu_id=2
76866          <idle>-0     (-----) [002] d..2 24574.182601: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
76867  Binder:23968_5-24233 (23968) [001] dn.3 24574.182610: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
76868  Binder:23968_5-24233 (23968) [001] d..2 24574.182617: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=110 prev_state=R+ ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
76869 s.nexuslauncher-24827 (24827) [001] .... 24574.182625: binder_transaction_received: transaction=1670552
76870  Binder:23968_C-25014 (23968) [002] .... 24574.182651: binder_transaction: transaction=1670553 dest_node=0 dest_proc=24151 dest_thread=24340 reply=1 flags=0x0 code=0x0
76871  Binder:23968_C-25014 (23968) [002] d..2 24574.182657: sched_waking: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=006
76872  Binder:23968_C-25014 (23968) [002] d..3 24574.182675: sched_wakeup: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=002
76873<...>-12589 ( 23968) [000] .... 24574.182684: binder_transaction: transaction=1670554 dest_node=1309202 dest_proc=24827 dest_thread=0 reply=0 flags=0x11 code=0x6
76874<...>-12589 ( 23968) [000] d..4 24574.182690: sched_waking: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=005
76875<...>-23993 ( 23968) [006] .... 24574.182715: binder_transaction: transaction=1670555 dest_node=1307515 dest_proc=24827 dest_thread=0 reply=0 flags=0x11 code=0x11
76876          <idle>-0     (-----) [005] dnh2 24574.182719: sched_wakeup: comm=Binder:24827_5 pid=5558 prio=120 target_cpu=005
76877          <idle>-0     (-----) [005] .n.1 24574.182723: cpu_idle: state=4294967295 cpu_id=5
76878<...>-23993 ( 23968) [006] d..4 24574.182725: sched_waking: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=006
76879          <idle>-0     (-----) [005] d..2 24574.182729: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24827_5 next_pid=5558 next_prio=120
76880  Binder:23968_C-25014 (23968) [002] d..2 24574.182733: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=pool-1-thread-1 next_pid=24340 next_prio=120
76881<...>-24340 ( 24151) [002] .... 24574.182739: binder_transaction_received: transaction=1670553
76882<...>-23993 ( 23968) [006] d..5 24574.182742: sched_wakeup: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=007
76883<...>-5558 ( 24827) [005] .... 24574.182744: binder_transaction_received: transaction=1670554
76884          <idle>-0     (-----) [007] .n.1 24574.182746: cpu_idle: state=4294967295 cpu_id=7
76885          <idle>-0     (-----) [007] d..2 24574.182752: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24827_4 next_pid=25554 next_prio=120
76886<...>-25554 ( 24827) [007] .... 24574.182756: binder_transaction_received: transaction=1670555
76887<...>-12589 ( 23968) [000] .... 24574.182772: binder_transaction: transaction=1670556 dest_node=0 dest_proc=24133 dest_thread=24133 reply=1 flags=0x0 code=0x0
76888<...>-12589 ( 23968) [000] d..2 24574.182776: sched_waking: comm=putmethod.latin pid=24133 prio=120 target_cpu=000
76889<...>-12589 ( 23968) [000] dn.3 24574.182785: sched_wakeup: comm=putmethod.latin pid=24133 prio=120 target_cpu=000
76890<...>-12589 ( 23968) [000] d..2 24574.182791: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=R+ ==> next_comm=putmethod.latin next_pid=24133 next_prio=120
76891<...>-23993 ( 23968) [006] .... 24574.182791: binder_transaction: transaction=1670557 dest_node=1276465 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x11
76892<...>-5558 ( 24827) [005] d..2 24574.182793: sched_switch: prev_comm=Binder:24827_5 prev_pid=5558 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
76893 putmethod.latin-24133 (24133) [000] .... 24574.182796: binder_transaction_received: transaction=1670556
76894          <idle>-0     (-----) [005] d..1 24574.182798: cpu_idle: state=0 cpu_id=5
76895<...>-24003 ( 23968) [003] d..2 24574.182802: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76896          <idle>-0     (-----) [003] d..1 24574.182813: cpu_idle: state=0 cpu_id=3
76897<...>-23993 ( 23968) [006] d..4 24574.182825: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
76898<...>-25554 ( 24827) [007] ...1 24574.182852: tracing_mark_write: B|24827|HIDL::IMapper::importBuffer::passthrough
76899          <idle>-0     (-----) [003] dnh2 24574.182862: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=003
76900          <idle>-0     (-----) [003] .n.1 24574.182866: cpu_idle: state=4294967295 cpu_id=3
76901          <idle>-0     (-----) [003] d..2 24574.182873: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
76902<...>-24376 ( 24151) [003] .... 24574.182878: binder_transaction_received: transaction=1670557
76903<...>-25554 ( 24827) [007] ...1 24574.182890: tracing_mark_write: E|24827
76904<...>-23993 ( 23968) [006] d..2 24574.182893: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
76905<...>-25554 ( 24827) [007] ...1 24574.182898: tracing_mark_write: B|24827|HIDL::IMapper::validateBufferSize::passthrough
76906          <idle>-0     (-----) [006] d..1 24574.182899: cpu_idle: state=0 cpu_id=6
76907<...>-25554 ( 24827) [007] ...1 24574.182912: tracing_mark_write: E|24827
76908<...>-25554 ( 24827) [007] ...1 24574.182917: tracing_mark_write: B|24827|HIDL::IMapper::getTransportSize::passthrough
76909<...>-25554 ( 24827) [007] ...1 24574.182919: tracing_mark_write: E|24827
76910<...>-25554 ( 24827) [007] d..2 24574.182999: sched_switch: prev_comm=Binder:24827_4 prev_pid=25554 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
76911          <idle>-0     (-----) [007] d..1 24574.183006: cpu_idle: state=0 cpu_id=7
76912<...>-24376 ( 24151) [003] ...1 24574.183016: tracing_mark_write: B|24151|HIDL::IMapper::importBuffer::passthrough
76913<...>-24376 ( 24151) [003] ...1 24574.183069: tracing_mark_write: E|24151
76914<...>-24376 ( 24151) [003] ...1 24574.183075: tracing_mark_write: B|24151|HIDL::IMapper::validateBufferSize::passthrough
76915<...>-24376 ( 24151) [003] ...1 24574.183085: tracing_mark_write: E|24151
76916 putmethod.latin-24133 (24133) [000] d..2 24574.183090: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
76917<...>-24376 ( 24151) [003] ...1 24574.183092: tracing_mark_write: B|24151|HIDL::IMapper::getTransportSize::passthrough
76918<...>-24376 ( 24151) [003] ...1 24574.183096: tracing_mark_write: E|24151
76919 s.nexuslauncher-24827 (24827) [001] d..3 24574.183100: sched_waking: comm=UiThreadHelper pid=25108 prio=118 target_cpu=006
76920<...>-24340 ( 24151) [002] .... 24574.183109: binder_transaction: transaction=1670558 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xd
76921<...>-24340 ( 24151) [002] d..4 24574.183114: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=002
76922 putmethod.latin-24133 (24133) [000] d..3 24574.183125: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
76923          <idle>-0     (-----) [005] dnh2 24574.183130: sched_wakeup: comm=UiThreadHelper pid=25108 prio=118 target_cpu=005
76924<...>-24340 ( 24151) [002] d..5 24574.183131: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=002
76925          <idle>-0     (-----) [005] .n.1 24574.183133: cpu_idle: state=4294967295 cpu_id=5
76926          <idle>-0     (-----) [005] d..2 24574.183137: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=UiThreadHelper next_pid=25108 next_prio=118
76927<...>-24340 ( 24151) [002] d..2 24574.183141: sched_switch: prev_comm=pool-1-thread-1 prev_pid=24340 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
76928<...>-24376 ( 24151) [003] d..3 24574.183143: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
76929          <idle>-0     (-----) [006] dnh2 24574.183199: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
76930<...>-24376 ( 24151) [003] d.h3 24574.183201: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
76931          <idle>-0     (-----) [006] .n.1 24574.183201: cpu_idle: state=4294967295 cpu_id=6
76932          <idle>-0     (-----) [006] d..2 24574.183206: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
76933<...>-24376 ( 24151) [003] dnh4 24574.183209: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
76934<...>-24376 ( 24151) [003] d..2 24574.183216: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
76935         sugov:0-559   (  559) [003] d..2 24574.183224: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
76936<...>-24151 ( 24151) [006] d..2 24574.183226: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
76937          <idle>-0     (-----) [006] d..1 24574.183230: cpu_idle: state=0 cpu_id=6
76938<...>-24376 ( 24151) [003] d..1 24574.183232: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
76939<...>-25108 ( 24827) [005] .... 24574.183244: binder_transaction: transaction=1670559 dest_node=1309457 dest_proc=24151 dest_thread=0 reply=0 flags=0x10 code=0x9
76940          <idle>-0     (-----) [006] dnh2 24574.183245: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
76941          <idle>-0     (-----) [006] .n.1 24574.183247: cpu_idle: state=4294967295 cpu_id=6
76942<...>-25108 ( 24827) [005] ...2 24574.183249: binder_set_priority: proc=24151 thread=24177 old=120 => new=118 desired=118
76943          <idle>-0     (-----) [006] d..2 24574.183250: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
76944<...>-25108 ( 24827) [005] d..4 24574.183251: sched_waking: comm=Binder:24151_3 pid=24177 prio=118 target_cpu=002
76945     logd.writer-563   (  555) [002] d..2 24574.183264: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
76946  Binder:23968_C-25014 (23968) [002] .... 24574.183270: binder_transaction_received: transaction=1670558
76947<...>-25108 ( 24827) [005] d..5 24574.183278: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=118 target_cpu=007
76948          <idle>-0     (-----) [007] .n.1 24574.183283: cpu_idle: state=4294967295 cpu_id=7
76949          <idle>-0     (-----) [007] d..2 24574.183301: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=118
76950 s.nexuslauncher-24827 (24827) [001] .... 24574.183307: binder_transaction: transaction=1670560 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
76951<...>-24177 ( 24151) [007] .... 24574.183307: binder_transaction_received: transaction=1670559
76952<...>-25108 ( 24827) [005] d..2 24574.183308: sched_switch: prev_comm=UiThreadHelper prev_pid=25108 prev_prio=118 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
76953 s.nexuslauncher-24827 (24827) [001] d..4 24574.183313: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
76954 putmethod.latin-24133 (24133) [000] d..3 24574.183314: sched_waking: comm=queued-work-loo pid=24217 prio=118 target_cpu=001
76955          <idle>-0     (-----) [005] d..1 24574.183315: cpu_idle: state=0 cpu_id=5
76956<...>-24376 ( 24151) [003] d..2 24574.183328: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76957 putmethod.latin-24133 (24133) [000] d..4 24574.183332: sched_wakeup: comm=queued-work-loo pid=24217 prio=118 target_cpu=001
76958          <idle>-0     (-----) [003] d..1 24574.183339: cpu_idle: state=0 cpu_id=3
76959<...>-24151 ( 24151) [006] d..1 24574.183360: sched_waking: comm=HeapTaskDaemon pid=24168 prio=124 target_cpu=006
76960          <idle>-0     (-----) [005] dnh2 24574.183365: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
76961          <idle>-0     (-----) [005] .n.1 24574.183368: cpu_idle: state=4294967295 cpu_id=5
76962          <idle>-0     (-----) [005] d..2 24574.183374: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
76963  Binder:23896_4-24423 (23896) [005] .... 24574.183377: binder_transaction_received: transaction=1670560
76964  Binder:23896_4-24423 (23896) [005] d..1 24574.183395: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
76965          <idle>-0     (-----) [003] dnh2 24574.183404: sched_wakeup: comm=HeapTaskDaemon pid=24168 prio=124 target_cpu=003
76966          <idle>-0     (-----) [003] .n.1 24574.183409: cpu_idle: state=4294967295 cpu_id=3
76967          <idle>-0     (-----) [003] d..2 24574.183415: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=24168 next_prio=124
76968  Binder:23968_C-25014 (23968) [002] dnh1 24574.183421: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
76969  Binder:23896_4-24423 (23896) [005] d..2 24574.183426: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
76970  Binder:23968_C-25014 (23968) [002] d..2 24574.183430: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
76971          <idle>-0     (-----) [005] d..1 24574.183431: cpu_idle: state=0 cpu_id=5
76972  appEventThread-23905 (23896) [002] d..2 24574.183482: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
76973<...>-24177 ( 24151) [007] .... 24574.183486: binder_transaction: transaction=1670561 dest_node=0 dest_proc=24827 dest_thread=25108 reply=1 flags=0x0 code=0x0
76974<...>-24177 ( 24151) [007] d..2 24574.183490: sched_waking: comm=UiThreadHelper pid=25108 prio=118 target_cpu=005
76975<...>-24177 ( 24151) [007] d..3 24574.183500: sched_wakeup: comm=UiThreadHelper pid=25108 prio=118 target_cpu=007
76976<...>-24177 ( 24151) [007] .... 24574.183502: binder_set_priority: proc=24151 thread=24177 old=118 => new=120 desired=120
76977<...>-24177 ( 24151) [007] d..2 24574.183530: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=R+ ==> next_comm=UiThreadHelper next_pid=25108 next_prio=118
76978<...>-25108 ( 24827) [007] .... 24574.183557: binder_transaction_received: transaction=1670561
76979<...>-25108 ( 24827) [007] d..2 24574.183654: sched_switch: prev_comm=UiThreadHelper prev_pid=25108 prev_prio=118 prev_state=S ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
76980<...>-24177 ( 24151) [007] d..2 24574.183673: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
76981          <idle>-0     (-----) [007] d..1 24574.183679: cpu_idle: state=0 cpu_id=7
76982 putmethod.latin-24133 (24133) [000] d..3 24574.183687: sched_waking: comm=MetricsManager pid=24844 prio=139 target_cpu=001
76983<...>-24151 ( 24151) [006] d..3 24574.183695: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=003
76984 putmethod.latin-24133 (24133) [000] d..4 24574.183705: sched_wakeup: comm=MetricsManager pid=24844 prio=139 target_cpu=001
76985<...>-24151 ( 24151) [006] d..4 24574.183713: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
76986          <idle>-0     (-----) [007] .n.1 24574.183718: cpu_idle: state=4294967295 cpu_id=7
76987          <idle>-0     (-----) [007] d..2 24574.183736: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
76988    RenderThread-24437 (24151) [007] d..2 24574.183761: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
76989          <idle>-0     (-----) [007] d..1 24574.183765: cpu_idle: state=0 cpu_id=7
76990<...>-24151 ( 24151) [006] d..2 24574.183785: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
76991          <idle>-0     (-----) [006] d..1 24574.183792: cpu_idle: state=0 cpu_id=6
76992<...>-24168 ( 24151) [003] d..1 24574.183815: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
76993          <idle>-0     (-----) [006] dnh2 24574.183830: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
76994          <idle>-0     (-----) [006] .n.1 24574.183833: cpu_idle: state=4294967295 cpu_id=6
76995          <idle>-0     (-----) [006] d..2 24574.183837: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
76996 s.nexuslauncher-24827 (24827) [001] d..3 24574.183842: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
76997  Binder:23968_C-25014 (23968) [002] .... 24574.183853: binder_transaction: transaction=1670562 dest_node=0 dest_proc=24151 dest_thread=24340 reply=1 flags=0x0 code=0x0
76998  Binder:23968_C-25014 (23968) [002] d..2 24574.183859: sched_waking: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=002
76999          <idle>-0     (-----) [005] dnh2 24574.183865: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
77000          <idle>-0     (-----) [005] .n.1 24574.183867: cpu_idle: state=4294967295 cpu_id=5
77001  Binder:23968_C-25014 (23968) [002] d..3 24574.183869: sched_wakeup: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=002
77002          <idle>-0     (-----) [005] d..2 24574.183871: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
77003 putmethod.latin-24133 (24133) [000] d..2 24574.183872: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
77004 s.nexuslauncher-24827 (24827) [001] d..2 24574.183874: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=queued-work-loo next_pid=24217 next_prio=118
77005 putmethod.latin-24133 (24133) [000] d..3 24574.183892: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
77006  Binder:23968_C-25014 (23968) [002] d..2 24574.183901: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=pool-1-thread-1 next_pid=24340 next_prio=120
77007<...>-24340 ( 24151) [002] .... 24574.183906: binder_transaction_received: transaction=1670562
77008<...>-24217 ( 24133) [001] d..2 24574.183913: sched_switch: prev_comm=queued-work-loo prev_pid=24217 prev_prio=118 prev_state=S ==> next_comm=MetricsManager next_pid=24844 next_prio=139
77009<...>-24151 ( 24151) [006] d..2 24574.183974: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
77010          <idle>-0     (-----) [006] d..1 24574.183982: cpu_idle: state=0 cpu_id=6
77011    RenderThread-25194 (24827) [005] d..1 24574.183985: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
77012    RenderThread-25194 (24827) [005] d..2 24574.184002: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=006
77013          <idle>-0     (-----) [006] .n.1 24574.184007: cpu_idle: state=4294967295 cpu_id=6
77014          <idle>-0     (-----) [006] d..2 24574.184024: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
77015<...>-24844 ( 24133) [001] d..2 24574.184034: sched_switch: prev_comm=MetricsManager prev_pid=24844 prev_prio=139 prev_state=S ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=110
77016  Binder:23968_5-24233 (23968) [001] .... 24574.184039: binder_set_priority: proc=23968 thread=24233 old=110 => new=120 desired=120
77017<...>-24340 ( 24151) [002] d..2 24574.184062: sched_switch: prev_comm=pool-1-thread-1 prev_pid=24340 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
77018    RenderThread-25194 (24827) [005] .... 24574.184071: binder_transaction: transaction=1670563 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
77019    RenderThread-25194 (24827) [005] ...2 24574.184075: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
77020    RenderThread-25194 (24827) [005] d..4 24574.184077: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=005
77021    RenderThread-25194 (24827) [005] d..5 24574.184082: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=005
77022    RenderThread-25194 (24827) [005] d..2 24574.184088: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
77023  Binder:23896_4-24423 (23896) [005] .... 24574.184091: binder_transaction_received: transaction=1670563
77024  Binder:23968_5-24233 (23968) [001] d..2 24574.184101: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
77025          <idle>-0     (-----) [001] d..1 24574.184119: cpu_idle: state=0 cpu_id=1
77026  Binder:23896_4-24423 (23896) [005] ...1 24574.184126: tracing_mark_write: B|23896|HIDL::IMapper::freeBuffer::passthrough
77027     logd.writer-563   (  555) [002] d..2 24574.184128: 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
77028  Binder:23896_4-24423 (23896) [005] ...1 24574.184139: tracing_mark_write: B|23896|FreeBuffer
77029          <idle>-0     (-----) [002] d..1 24574.184140: cpu_idle: state=0 cpu_id=2
77030  Binder:23896_4-24423 (23896) [005] d..2 24574.184154: sched_waking: comm=system pid=105 prio=120 target_cpu=002
77031  Binder:23896_4-24423 (23896) [005] ...1 24574.184182: tracing_mark_write: E|23896
77032  Binder:23896_4-24423 (23896) [005] ...1 24574.184184: tracing_mark_write: B|23896|FreeBuffer
77033          <idle>-0     (-----) [001] dnh2 24574.184184: sched_wakeup: comm=system pid=105 prio=120 target_cpu=001
77034          <idle>-0     (-----) [001] .n.1 24574.184189: cpu_idle: state=4294967295 cpu_id=1
77035  Binder:23896_4-24423 (23896) [005] ...1 24574.184190: tracing_mark_write: E|23896
77036  Binder:23896_4-24423 (23896) [005] ...1 24574.184194: tracing_mark_write: E|23896
77037          <idle>-0     (-----) [001] d..2 24574.184197: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system next_pid=105 next_prio=120
77038  Binder:23896_4-24423 (23896) [005] ...1 24574.184207: tracing_mark_write: B|23896|HIDL::IMapper::createDescriptor_2_1::passthrough
77039  Binder:23896_4-24423 (23896) [005] ...1 24574.184211: tracing_mark_write: E|23896
77040  Binder:23896_4-24423 (23896) [005] ...1 24574.184245: tracing_mark_write: B|23896|HIDL::IAllocator::allocate::client
77041  Binder:23896_4-24423 (23896) [005] ...1 24574.184247: tracing_mark_write: E|23896
77042  Binder:23896_4-24423 (23896) [005] .... 24574.184267: binder_transaction: transaction=1670564 dest_node=959 dest_proc=786 dest_thread=0 reply=0 flags=0x10 code=0x2
77043  Binder:23896_4-24423 (23896) [005] ...2 24574.184273: binder_set_priority: proc=786 thread=816 old=120 => new=110 desired=110
77044  Binder:23896_4-24423 (23896) [005] d..4 24574.184275: sched_waking: comm=HwBinder:786_2 pid=816 prio=110 target_cpu=000
77045  Binder:23896_4-24423 (23896) [005] dn.5 24574.184289: sched_wakeup: comm=HwBinder:786_2 pid=816 prio=110 target_cpu=005
77046  Binder:23896_4-24423 (23896) [005] d..2 24574.184312: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:786_2 next_pid=816 next_prio=110
77047<...>-816 ( 786) [005] .... 24574.184317: binder_transaction_received: transaction=1670564
77048<...>-816 ( 786) [005] ...1 24574.184352: tracing_mark_write: B|786|HIDL::IAllocator::allocate::server
77049 putmethod.latin-24133 (24133) [000] d..3 24574.184385: sched_waking: comm=MetricsManager pid=24844 prio=139 target_cpu=001
77050<...>-816 ( 786) [005] ...1 24574.184390: tracing_mark_write: B|786|AllocBuffer
77051<...>-816 ( 786) [005] ...1 24574.184397: tracing_mark_write: B|786|ION_IOC_ALLOC size: 9469952
77052 putmethod.latin-24133 (24133) [000] d..4 24574.184402: sched_wakeup: comm=MetricsManager pid=24844 prio=139 target_cpu=001
77053<...>-105 ( 105) [001] d..2 24574.184413: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=MetricsManager next_pid=24844 next_prio=139
77054 s.nexuslauncher-24827 (24827) [006] .... 24574.184475: binder_transaction: transaction=1670565 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x22
77055 s.nexuslauncher-24827 (24827) [006] ...2 24574.184482: binder_set_priority: proc=23968 thread=24233 old=120 => new=110 desired=110
77056 s.nexuslauncher-24827 (24827) [006] d..4 24574.184484: sched_waking: comm=Binder:23968_5 pid=24233 prio=110 target_cpu=001
77057 s.nexuslauncher-24827 (24827) [006] dn.5 24574.184498: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=110 target_cpu=006
77058<...>-816 ( 786) [005] ...1 24574.184498: tracing_mark_write: E|786
77059<...>-816 ( 786) [005] ...1 24574.184500: tracing_mark_write: B|786|ION_IOC_MAP
77060<...>-816 ( 786) [005] ...1 24574.184512: tracing_mark_write: E|786
77061<...>-816 ( 786) [005] ...1 24574.184515: tracing_mark_write: E|786
77062<...>-816 ( 786) [005] ...1 24574.184516: tracing_mark_write: B|786|AllocBuffer
77063<...>-816 ( 786) [005] ...1 24574.184518: tracing_mark_write: B|786|ION_IOC_ALLOC size: 20480
77064 s.nexuslauncher-24827 (24827) [006] d..2 24574.184523: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=110
77065<...>-816 ( 786) [005] ...1 24574.184524: tracing_mark_write: E|786
77066<...>-816 ( 786) [005] ...1 24574.184525: tracing_mark_write: B|786|ION_IOC_MAP
77067  Binder:23968_5-24233 (23968) [006] .... 24574.184526: binder_transaction_received: transaction=1670565
77068<...>-816 ( 786) [005] ...1 24574.184529: tracing_mark_write: E|786
77069<...>-816 ( 786) [005] ...1 24574.184531: tracing_mark_write: E|786
77070<...>-816 ( 786) [005] ...1 24574.184583: tracing_mark_write: E|786
77071<...>-816 ( 786) [005] .... 24574.184589: binder_transaction: transaction=1670566 dest_node=0 dest_proc=23896 dest_thread=24423 reply=1 flags=0x0 code=0x0
77072<...>-816 ( 786) [005] .... 24574.184597: binder_set_priority: proc=786 thread=816 old=110 => new=120 desired=120
77073<...>-816 ( 786) [005] ...1 24574.184610: tracing_mark_write: B|786|FreeBuffer
77074<...>-816 ( 786) [005] ...1 24574.184615: tracing_mark_write: E|786
77075<...>-816 ( 786) [005] ...1 24574.184616: tracing_mark_write: B|786|FreeBuffer
77076<...>-816 ( 786) [005] ...1 24574.184617: tracing_mark_write: B|786|UnmapBuffer
77077<...>-816 ( 786) [005] ...1 24574.184631: tracing_mark_write: E|786
77078<...>-816 ( 786) [005] ...1 24574.184634: tracing_mark_write: E|786
77079<...>-24844 ( 24133) [001] d..2 24574.184635: sched_switch: prev_comm=MetricsManager prev_pid=24844 prev_prio=139 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
77080  Binder:23968_5-24233 (23968) [006] .... 24574.184647: binder_transaction: transaction=1670567 dest_node=0 dest_proc=24827 dest_thread=24827 reply=1 flags=0x0 code=0x0
77081<...>-816 ( 786) [005] d..2 24574.184649: sched_switch: prev_comm=HwBinder:786_2 prev_pid=816 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
77082  Binder:23968_5-24233 (23968) [006] .... 24574.184651: binder_set_priority: proc=23968 thread=24233 old=110 => new=120 desired=120
77083  Binder:23896_4-24423 (23896) [005] .... 24574.184653: binder_transaction_received: transaction=1670566
77084  Binder:23896_4-24423 (23896) [005] ...1 24574.184672: tracing_mark_write: B|23896|HIDL::IMapper::importBuffer::passthrough
77085  Binder:23968_5-24233 (23968) [006] d..2 24574.184675: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
77086 s.nexuslauncher-24827 (24827) [006] .... 24574.184678: binder_transaction_received: transaction=1670567
77087  Binder:23896_4-24423 (23896) [005] ...1 24574.184689: tracing_mark_write: E|23896
77088  Binder:23896_4-24423 (23896) [005] ...1 24574.184708: tracing_mark_write: B|23896|HIDL::IMapper::getTransportSize::passthrough
77089  Binder:23896_4-24423 (23896) [005] ...1 24574.184711: tracing_mark_write: E|23896
77090  Binder:23896_4-24423 (23896) [005] .... 24574.184741: binder_transaction: transaction=1670568 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
77091  Binder:23896_4-24423 (23896) [005] d..2 24574.184744: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
77092  Binder:23896_4-24423 (23896) [005] dn.3 24574.184751: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
77093  Binder:23896_4-24423 (23896) [005] d..2 24574.184755: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
77094    RenderThread-25194 (24827) [005] .... 24574.184758: binder_transaction_received: transaction=1670568
77095    RenderThread-25194 (24827) [005] .... 24574.184781: binder_transaction: transaction=1670569 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x1
77096    RenderThread-25194 (24827) [005] ...2 24574.184785: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
77097    RenderThread-25194 (24827) [005] d..4 24574.184787: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
77098    RenderThread-25194 (24827) [005] d..2 24574.184806: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
77099  Binder:23896_4-24423 (23896) [005] .... 24574.184808: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
77100          <idle>-0     (-----) [002] dnh2 24574.184812: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
77101          <idle>-0     (-----) [002] .n.1 24574.184817: cpu_idle: state=4294967295 cpu_id=2
77102          <idle>-0     (-----) [002] d..2 24574.184826: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
77103  Binder:23896_4-24423 (23896) [005] d..2 24574.184829: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
77104  Binder:23896_5-25989 (23896) [002] .... 24574.184834: binder_transaction_received: transaction=1670569
77105          <idle>-0     (-----) [005] d..1 24574.184837: cpu_idle: state=0 cpu_id=5
77106  Binder:23896_5-25989 (23896) [002] .... 24574.184896: binder_transaction: transaction=1670570 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
77107  Binder:23896_5-25989 (23896) [002] d..2 24574.184906: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
77108  Binder:23896_5-25989 (23896) [002] d..3 24574.184927: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
77109  Binder:23896_5-25989 (23896) [002] .... 24574.184960: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
77110  Binder:23896_5-25989 (23896) [002] d..2 24574.184995: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
77111 putmethod.latin-24133 (24133) [000] d..3 24574.184997: sched_waking: comm=MetricsManager pid=24844 prio=139 target_cpu=001
77112    RenderThread-25194 (24827) [002] .... 24574.185001: binder_transaction_received: transaction=1670570
77113 putmethod.latin-24133 (24133) [000] d..4 24574.185017: sched_wakeup: comm=MetricsManager pid=24844 prio=139 target_cpu=001
77114<...>-105 ( 105) [001] d..2 24574.185026: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=MetricsManager next_pid=24844 next_prio=139
77115    RenderThread-25194 (24827) [002] ...1 24574.185043: tracing_mark_write: B|24827|HIDL::IMapper::importBuffer::passthrough
77116    RenderThread-25194 (24827) [002] ...1 24574.185078: tracing_mark_write: E|24827
77117    RenderThread-25194 (24827) [002] ...1 24574.185086: tracing_mark_write: B|24827|HIDL::IMapper::validateBufferSize::passthrough
77118    RenderThread-25194 (24827) [002] ...1 24574.185102: tracing_mark_write: E|24827
77119    RenderThread-25194 (24827) [002] ...1 24574.185111: tracing_mark_write: B|24827|HIDL::IMapper::getTransportSize::passthrough
77120 putmethod.latin-24133 (24133) [000] d..2 24574.185113: sched_switch: prev_comm=putmethod.latin prev_pid=24133 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
77121    RenderThread-25194 (24827) [002] ...1 24574.185114: tracing_mark_write: E|24827
77122<...>-12589 ( 23968) [000] d..2 24574.185174: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77123          <idle>-0     (-----) [000] d..1 24574.185193: cpu_idle: state=0 cpu_id=0
77124<...>-24844 ( 24133) [001] d..1 24574.185306: sched_waking: comm=Primes-1 pid=25145 prio=120 target_cpu=001
77125<...>-24844 ( 24133) [001] d..2 24574.185334: sched_wakeup: comm=Primes-1 pid=25145 prio=120 target_cpu=000
77126          <idle>-0     (-----) [000] .n.1 24574.185339: cpu_idle: state=4294967295 cpu_id=0
77127          <idle>-0     (-----) [000] d..2 24574.185349: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Primes-1 next_pid=25145 next_prio=120
77128 s.nexuslauncher-24827 (24827) [006] d..2 24574.185488: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
77129<...>-24844 ( 24133) [001] d..2 24574.185498: sched_switch: prev_comm=MetricsManager prev_pid=24844 prev_prio=139 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
77130          <idle>-0     (-----) [006] d..1 24574.185499: cpu_idle: state=0 cpu_id=6
77131<...>-25145 ( 24133) [000] d..3 24574.185643: sched_waking: comm=putmethod.latin pid=24133 prio=120 target_cpu=000
77132<...>-25145 ( 24133) [000] d..4 24574.185658: sched_wakeup: comm=putmethod.latin pid=24133 prio=120 target_cpu=000
77133<...>-25145 ( 24133) [000] d.h4 24574.185945: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
77134<...>-25145 ( 24133) [000] dnh5 24574.185973: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
77135<...>-25145 ( 24133) [000] dnh4 24574.185979: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
77136<...>-25145 ( 24133) [000] dnh5 24574.185997: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
77137    RenderThread-25194 (24827) [002] d..2 24574.186012: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
77138<...>-25145 ( 24133) [000] d..2 24574.186014: sched_switch: prev_comm=Primes-1 prev_pid=25145 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
77139  crtc_event:111-254   (  254) [000] d..2 24574.186042: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=Primes-1 next_pid=25145 next_prio=120
77140 crtc_commit:111-253   (  253) [002] d..2 24574.186130: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=RenderThread next_pid=25194 next_prio=110
77141<...>-25145 ( 24133) [000] d..3 24574.186639: sched_waking: comm=GoogleApiHandle pid=24732 prio=129 target_cpu=001
77142<...>-25145 ( 24133) [000] d..4 24574.186677: sched_wakeup: comm=GoogleApiHandle pid=24732 prio=129 target_cpu=000
77143<...>-25145 ( 24133) [000] d..2 24574.186773: sched_switch: prev_comm=Primes-1 prev_pid=25145 prev_prio=120 prev_state=S ==> next_comm=GoogleApiHandle next_pid=24732 next_prio=129
77144<...>-105 ( 105) [001] d..2 24574.187343: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
77145          <idle>-0     (-----) [001] d..1 24574.187367: cpu_idle: state=0 cpu_id=1
77146<...>-24732 ( 24133) [000] .... 24574.187431: binder_transaction: transaction=1670571 dest_node=1669354 dest_proc=24741 dest_thread=0 reply=0 flags=0x11 code=0x1
77147<...>-24732 ( 24133) [000] d..4 24574.187491: sched_waking: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=003
77148<...>-24732 ( 24133) [000] d..5 24574.187516: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=000
77149    RenderThread-25194 (24827) [002] d.s2 24574.187583: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
77150<...>-24732 ( 24133) [000] d..2 24574.187590: sched_switch: prev_comm=GoogleApiHandle prev_pid=24732 prev_prio=129 prev_state=R ==> next_comm=putmethod.latin next_pid=24133 next_prio=120
77151    RenderThread-25194 (24827) [002] d.s3 24574.187613: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
77152    RenderThread-25194 (24827) [002] d.s1 24574.187617: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
77153          <idle>-0     (-----) [001] .n.1 24574.187620: cpu_idle: state=4294967295 cpu_id=1
77154          <idle>-0     (-----) [001] d..2 24574.187629: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
77155 putmethod.latin-24133 (24133) [000] d..2 24574.187632: sched_switch: prev_comm=putmethod.latin prev_pid=24133 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=120
77156<...>-25141 ( 24741) [000] .... 24574.187643: binder_transaction_received: transaction=1670571
77157    RenderThread-25194 (24827) [002] d.s2 24574.187648: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
77158    RenderThread-25194 (24827) [002] d.s2 24574.187657: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
77159  crtc_event:111-254   (  254) [001] d..2 24574.187658: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
77160    RenderThread-25194 (24827) [002] d.s3 24574.187681: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
77161     rcu_preempt-7     (    7) [001] d..2 24574.187688: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
77162  kworker/u16:15-18488 (18488) [001] .... 24574.187810: clk_set_rate: l3_cluster0_vote_clk 1305600000
77163<...>-25141 ( 24741) [000] d.h2 24574.187816: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
77164  kworker/u16:15-18488 (18488) [001] .... 24574.187818: clk_set_rate: l3_clk 1305600000
77165<...>-25141 ( 24741) [000] d.h3 24574.187838: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
77166  kworker/u16:15-18488 (18488) [001] d..2 24574.187847: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
77167 kgsl_worker_thr-246   (  246) [001] d..2 24574.187883: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
77168  kworker/u16:15-18488 (18488) [001] d..2 24574.187910: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
77169          <idle>-0     (-----) [001] d..1 24574.187916: cpu_idle: state=0 cpu_id=1
77170    RenderThread-25194 (24827) [002] .... 24574.187930: binder_transaction: transaction=1670574 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
77171    RenderThread-25194 (24827) [002] ...2 24574.187943: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
77172    RenderThread-25194 (24827) [002] d..4 24574.187946: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
77173    RenderThread-25194 (24827) [002] dn.5 24574.187955: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
77174    RenderThread-25194 (24827) [002] d..2 24574.187960: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
77175  Binder:23896_5-25989 (23896) [002] .... 24574.187967: binder_transaction_received: transaction=1670574
77176          <idle>-0     (-----) [001] d.h2 24574.187983: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
77177          <idle>-0     (-----) [001] dnh3 24574.187990: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
77178          <idle>-0     (-----) [001] .n.1 24574.187995: cpu_idle: state=4294967295 cpu_id=1
77179          <idle>-0     (-----) [001] d..2 24574.188000: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
77180 kgsl_worker_thr-246   (  246) [001] d..2 24574.188012: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
77181 kgsl_worker_thr-246   (  246) [001] d..3 24574.188021: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
77182 kgsl_worker_thr-246   (  246) [001] d..2 24574.188032: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
77183  Binder:23896_5-25989 (23896) [002] .... 24574.188108: binder_transaction: transaction=1670575 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
77184  Binder:23896_5-25989 (23896) [002] .... 24574.188113: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
77185  Binder:23896_5-25989 (23896) [002] d..2 24574.188143: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
77186    RenderThread-25194 (24827) [002] .... 24574.188148: binder_transaction_received: transaction=1670575
77187    RenderThread-25194 (24827) [002] d..2 24574.188238: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
77188  kworker/u16:15-18488 (18488) [001] d..2 24574.188254: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
77189          <idle>-0     (-----) [002] d..1 24574.188255: cpu_idle: state=0 cpu_id=2
77190          <idle>-0     (-----) [001] d..1 24574.188260: cpu_idle: state=0 cpu_id=1
77191<...>-25141 ( 24741) [000] d.h4 24574.188270: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
77192<...>-25141 ( 24741) [000] d.h5 24574.188283: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
77193          <idle>-0     (-----) [002] .n.1 24574.188289: cpu_idle: state=4294967295 cpu_id=2
77194          <idle>-0     (-----) [002] d..2 24574.188296: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
77195 crtc_commit:111-253   (  253) [002] d..2 24574.188390: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
77196          <idle>-0     (-----) [002] d..1 24574.188397: cpu_idle: state=0 cpu_id=2
77197<...>-25141 ( 24741) [000] d.h4 24574.188558: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
77198<...>-25141 ( 24741) [000] d.h5 24574.188570: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
77199          <idle>-0     (-----) [001] .n.1 24574.188575: cpu_idle: state=4294967295 cpu_id=1
77200          <idle>-0     (-----) [001] d..2 24574.188580: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
77201  crtc_event:111-254   (  254) [001] d..2 24574.188600: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
77202          <idle>-0     (-----) [001] d..1 24574.188605: cpu_idle: state=0 cpu_id=1
77203<...>-25141 ( 24741) [000] d..1 24574.188810: sched_waking: comm=lowpool[8] pid=27168 prio=130 target_cpu=001
77204<...>-25141 ( 24741) [000] d..2 24574.188837: sched_wakeup: comm=lowpool[8] pid=27168 prio=130 target_cpu=001
77205          <idle>-0     (-----) [001] .n.1 24574.188842: cpu_idle: state=4294967295 cpu_id=1
77206          <idle>-0     (-----) [001] d..2 24574.188848: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
77207<...>-25141 ( 24741) [000] d..2 24574.188922: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=S ==> next_comm=GoogleApiHandle next_pid=24732 next_prio=129
77208<...>-24732 ( 24133) [000] d..2 24574.188995: sched_switch: prev_comm=GoogleApiHandle prev_pid=24732 prev_prio=129 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77209          <idle>-0     (-----) [000] d..1 24574.189010: cpu_idle: state=0 cpu_id=0
77210          <idle>-0     (-----) [000] d.h3 24574.189146: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
77211          <idle>-0     (-----) [000] dnh4 24574.189158: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
77212          <idle>-0     (-----) [000] .n.1 24574.189165: cpu_idle: state=4294967295 cpu_id=0
77213          <idle>-0     (-----) [000] d..2 24574.189171: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
77214<...>-27168 ( 24741) [001] .... 24574.189204: binder_transaction: transaction=1670576 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x17
77215 kgsl_worker_thr-246   (  246) [000] d..2 24574.189207: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77216          <idle>-0     (-----) [000] d..1 24574.189212: cpu_idle: state=0 cpu_id=0
77217<...>-27168 ( 24741) [001] d..4 24574.189222: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=000
77218<...>-27168 ( 24741) [001] d..5 24574.189237: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=001
77219<...>-27168 ( 24741) [001] d..2 24574.189247: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
77220<...>-12589 ( 23968) [001] .... 24574.189255: binder_transaction_received: transaction=1670576
77221          <idle>-0     (-----) [002] ...1 24574.189556: cpu_idle: state=4294967295 cpu_id=2
77222          <idle>-0     (-----) [002] d..1 24574.189559: cpu_idle: state=0 cpu_id=2
77223<...>-12589 ( 23968) [001] d..3 24574.189858: sched_waking: comm=lmkd pid=808 prio=98 target_cpu=000
77224<...>-12589 ( 23968) [001] d..4 24574.189873: sched_wakeup: comm=lmkd pid=808 prio=98 target_cpu=000
77225          <idle>-0     (-----) [000] .n.1 24574.189877: cpu_idle: state=4294967295 cpu_id=0
77226          <idle>-0     (-----) [000] d..2 24574.189882: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=808 next_prio=98
77227<...>-12589 ( 23968) [001] .... 24574.189999: binder_transaction: transaction=1670577 dest_node=1302474 dest_proc=24741 dest_thread=0 reply=0 flags=0x11 code=0x7
77228<...>-12589 ( 23968) [001] d..4 24574.190014: sched_waking: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=000
77229<...>-12589 ( 23968) [001] d..5 24574.190025: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=000
77230<...>-12589 ( 23968) [001] .... 24574.190144: binder_transaction: transaction=1670578 dest_node=0 dest_proc=24741 dest_thread=27168 reply=1 flags=0x0 code=0x0
77231<...>-12589 ( 23968) [001] d..2 24574.190149: sched_waking: comm=lowpool[8] pid=27168 prio=130 target_cpu=001
77232<...>-12589 ( 23968) [001] d..3 24574.190156: sched_wakeup: comm=lowpool[8] pid=27168 prio=130 target_cpu=001
77233<...>-12589 ( 23968) [001] d..2 24574.190178: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
77234<...>-27168 ( 24741) [001] .... 24574.190183: binder_transaction_received: transaction=1670578
77235            lmkd-808   (  808) [000] d.h1 24574.190325: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
77236            lmkd-808   (  808) [000] d.h2 24574.190343: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
77237          <idle>-0     (-----) [002] .n.1 24574.190347: cpu_idle: state=4294967295 cpu_id=2
77238          <idle>-0     (-----) [002] d..2 24574.190354: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
77239        DispSync-23904 (23896) [002] d..1 24574.190379: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
77240        DispSync-23904 (23896) [002] d..2 24574.190397: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
77241<...>-27168 ( 24741) [001] d..2 24574.190408: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
77242        DispSync-23904 (23896) [002] d..2 24574.190424: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
77243          <idle>-0     (-----) [002] d..1 24574.190430: cpu_idle: state=0 cpu_id=2
77244  appEventThread-23905 (23896) [001] d..3 24574.190468: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=006
77245  appEventThread-23905 (23896) [001] d..4 24574.190493: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
77246          <idle>-0     (-----) [002] .n.1 24574.190497: cpu_idle: state=4294967295 cpu_id=2
77247          <idle>-0     (-----) [002] d..2 24574.190544: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
77248  appEventThread-23905 (23896) [001] d.h3 24574.190544: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
77249  appEventThread-23905 (23896) [001] d.h4 24574.190560: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
77250            lmkd-808   (  808) [000] d..2 24574.190565: sched_switch: prev_comm=lmkd prev_pid=808 prev_prio=98 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=120
77251 s.nexuslauncher-24827 (24827) [002] d..2 24574.190568: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
77252<...>-25141 ( 24741) [000] .... 24574.190569: binder_transaction_received: transaction=1670577
77253  appEventThread-23905 (23896) [001] d..3 24574.190574: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
77254         sugov:0-559   (  559) [002] d..2 24574.190580: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
77255          <idle>-0     (-----) [006] dnh2 24574.190594: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
77256          <idle>-0     (-----) [006] .n.1 24574.190596: cpu_idle: state=4294967295 cpu_id=6
77257  appEventThread-23905 (23896) [001] d..2 24574.190601: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
77258          <idle>-0     (-----) [006] d..2 24574.190602: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
77259<...>-25141 ( 24741) [000] d..3 24574.190700: sched_waking: comm=.gms.persistent pid=24741 prio=120 target_cpu=000
77260<...>-25141 ( 24741) [000] d..4 24574.190727: sched_wakeup: comm=.gms.persistent pid=24741 prio=120 target_cpu=002
77261<...>-25141 ( 24741) [000] d..2 24574.190773: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77262          <idle>-0     (-----) [000] d..1 24574.190784: cpu_idle: state=0 cpu_id=0
77263 s.nexuslauncher-24827 (24827) [002] d..1 24574.190823: sched_waking: comm=HeapTaskDaemon pid=24849 prio=124 target_cpu=000
77264 s.nexuslauncher-24827 (24827) [002] d..2 24574.190841: sched_wakeup: comm=HeapTaskDaemon pid=24849 prio=124 target_cpu=000
77265          <idle>-0     (-----) [000] .n.1 24574.190846: cpu_idle: state=4294967295 cpu_id=0
77266<...>-24151 ( 24151) [006] .... 24574.190846: binder_transaction: transaction=1670579 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
77267<...>-24151 ( 24151) [006] d..4 24574.190851: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
77268          <idle>-0     (-----) [000] d..2 24574.190854: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=24849 next_prio=124
77269<...>-24151 ( 24151) [006] d..5 24574.190869: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
77270          <idle>-0     (-----) [005] .n.1 24574.190875: cpu_idle: state=4294967295 cpu_id=5
77271          <idle>-0     (-----) [005] d..2 24574.190893: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
77272<...>-24849 ( 24827) [000] d.s2 24574.190903: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
77273  Binder:23896_5-25989 (23896) [005] .... 24574.190904: binder_transaction_received: transaction=1670579
77274 s.nexuslauncher-24827 (24827) [002] .... 24574.190904: binder_transaction: transaction=1670580 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
77275 s.nexuslauncher-24827 (24827) [002] d..4 24574.190909: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
77276<...>-24849 ( 24827) [000] d.s3 24574.190917: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
77277  Binder:23896_5-25989 (23896) [005] d..1 24574.190917: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
77278<...>-27168 ( 24741) [001] d..2 24574.190929: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
77279<...>-24849 ( 24827) [000] dnh1 24574.190932: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
77280          <idle>-0     (-----) [007] dnh2 24574.190934: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=007
77281<...>-24849 ( 24827) [000] d..2 24574.190937: sched_switch: prev_comm=HeapTaskDaemon prev_pid=24849 prev_prio=124 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
77282          <idle>-0     (-----) [007] .n.1 24574.190938: cpu_idle: state=4294967295 cpu_id=7
77283  Binder:23896_5-25989 (23896) [005] d..2 24574.190940: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
77284          <idle>-0     (-----) [007] d..2 24574.190942: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
77285          <idle>-0     (-----) [005] d..1 24574.190943: cpu_idle: state=0 cpu_id=5
77286  Binder:23896_4-24423 (23896) [007] .... 24574.190946: binder_transaction_received: transaction=1670580
77287  Binder:23896_4-24423 (23896) [007] d..2 24574.190968: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
77288  appEventThread-23905 (23896) [000] d..1 24574.190969: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=007
77289          <idle>-0     (-----) [007] d..1 24574.190972: cpu_idle: state=0 cpu_id=7
77290          <idle>-0     (-----) [005] dnh2 24574.190990: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
77291          <idle>-0     (-----) [005] .n.1 24574.190993: cpu_idle: state=4294967295 cpu_id=5
77292          <idle>-0     (-----) [005] d..2 24574.190996: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
77293  appEventThread-23905 (23896) [000] d..2 24574.190996: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=HeapTaskDaemon next_pid=24849 next_prio=124
77294  Binder:23896_4-24423 (23896) [005] d..1 24574.191001: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
77295<...>-24849 ( 24827) [000] dnh1 24574.191013: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
77296<...>-24849 ( 24827) [000] d..2 24574.191018: sched_switch: prev_comm=HeapTaskDaemon prev_pid=24849 prev_prio=124 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
77297  Binder:23896_4-24423 (23896) [005] d..2 24574.191018: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
77298          <idle>-0     (-----) [005] d..1 24574.191021: cpu_idle: state=0 cpu_id=5
77299  appEventThread-23905 (23896) [000] d..2 24574.191032: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=HeapTaskDaemon next_pid=24849 next_prio=124
77300  kworker/u16:15-18488 (18488) [001] d..2 24574.191202: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
77301<...>-24151 ( 24151) [006] d..3 24574.191222: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
77302<...>-24151 ( 24151) [006] d..4 24574.191233: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
77303          <idle>-0     (-----) [007] .n.1 24574.191237: cpu_idle: state=4294967295 cpu_id=7
77304          <idle>-0     (-----) [007] d..2 24574.191241: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
77305<...>-24168 ( 24151) [003] d.s2 24574.191242: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
77306<...>-24151 ( 24151) [006] d..2 24574.191245: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
77307          <idle>-0     (-----) [006] d..1 24574.191255: cpu_idle: state=0 cpu_id=6
77308<...>-24168 ( 24151) [003] d.s3 24574.191258: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
77309<...>-24168 ( 24151) [003] d.s3 24574.191265: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
77310<...>-27168 ( 24741) [001] d..2 24574.191274: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
77311 s.nexuslauncher-24827 (24827) [002] d..2 24574.191320: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=.gms.persistent next_pid=24741 next_prio=120
77312  kworker/u16:15-18488 (18488) [001] .... 24574.191331: clk_set_rate: l3_cluster1_vote_clk 576000000
77313    RenderThread-24437 (24151) [007] d..1 24574.191336: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
77314<...>-24849 ( 24827) [000] d..1 24574.191341: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
77315    RenderThread-24437 (24151) [007] d..2 24574.191344: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
77316          <idle>-0     (-----) [006] .n.1 24574.191349: cpu_idle: state=4294967295 cpu_id=6
77317          <idle>-0     (-----) [006] d..2 24574.191354: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
77318          <idle>-0     (-----) [005] dnh2 24574.191389: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=005
77319<...>-24849 ( 24827) [000] d.h3 24574.191392: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
77320          <idle>-0     (-----) [005] .n.1 24574.191392: cpu_idle: state=4294967295 cpu_id=5
77321          <idle>-0     (-----) [005] d..2 24574.191396: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
77322    RenderThread-24437 (24151) [007] .... 24574.191397: binder_transaction: transaction=1670581 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
77323<...>-24151 ( 24151) [006] d..2 24574.191398: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
77324    RenderThread-24437 (24151) [007] d..4 24574.191400: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
77325<...>-24849 ( 24827) [000] d.h4 24574.191402: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
77326          <idle>-0     (-----) [006] d..1 24574.191403: cpu_idle: state=0 cpu_id=6
77327    RenderThread-24437 (24151) [007] dn.5 24574.191409: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=007
77328    RenderThread-24437 (24151) [007] d..2 24574.191413: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
77329<...>-24741 ( 24741) [002] d..2 24574.191414: sched_switch: prev_comm=.gms.persistent prev_pid=24741 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
77330  Binder:23896_4-24423 (23896) [007] .... 24574.191416: binder_transaction_received: transaction=1670581
77331         sugov:0-559   (  559) [002] d..2 24574.191424: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=.gms.persistent next_pid=24741 next_prio=120
77332  kworker/u16:15-18488 (18488) [001] d..2 24574.191453: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
77333  Binder:23896_4-24423 (23896) [007] .... 24574.191456: binder_transaction: transaction=1670582 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
77334 s.nexuslauncher-24827 (24827) [005] d..3 24574.191468: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
77335  Binder:23896_4-24423 (23896) [007] d..2 24574.191475: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
77336    RenderThread-24437 (24151) [007] .... 24574.191478: binder_transaction_received: transaction=1670582
77337<...>-24168 ( 24151) [003] d.s2 24574.191481: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
77338 s.nexuslauncher-24827 (24827) [005] d..4 24574.191486: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=006
77339          <idle>-0     (-----) [006] .n.1 24574.191490: cpu_idle: state=4294967295 cpu_id=6
77340          <idle>-0     (-----) [006] d..2 24574.191507: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
77341<...>-24168 ( 24151) [003] d.s3 24574.191511: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
77342<...>-24168 ( 24151) [003] d.s3 24574.191514: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
77343 s.nexuslauncher-24827 (24827) [005] d..2 24574.191515: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
77344          <idle>-0     (-----) [005] d..1 24574.191520: cpu_idle: state=0 cpu_id=5
77345<...>-24741 ( 24741) [002] .... 24574.191579: binder_transaction: transaction=1670583 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x11 code=0x2f
77346<...>-24741 ( 24741) [002] d..4 24574.191591: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=001
77347<...>-24741 ( 24741) [002] d..5 24574.191623: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=001
77348<...>-27168 ( 24741) [001] d..2 24574.191630: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
77349<...>-12589 ( 23968) [001] .... 24574.191639: binder_transaction_received: transaction=1670583
77350<...>-24741 ( 24741) [002] d..2 24574.191673: sched_switch: prev_comm=.gms.persistent prev_pid=24741 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
77351  kworker/u16:15-18488 (18488) [002] d..2 24574.191696: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
77352          <idle>-0     (-----) [002] d..1 24574.191706: cpu_idle: state=0 cpu_id=2
77353    RenderThread-25194 (24827) [006] d..1 24574.191730: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=005
77354    RenderThread-25194 (24827) [006] d..2 24574.191739: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=005
77355          <idle>-0     (-----) [005] .n.1 24574.191743: cpu_idle: state=4294967295 cpu_id=5
77356          <idle>-0     (-----) [005] d..2 24574.191748: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
77357    RenderThread-25194 (24827) [006] d..1 24574.191751: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=003
77358          <idle>-0     (-----) [002] dnh2 24574.191774: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=002
77359          <idle>-0     (-----) [002] .n.1 24574.191778: cpu_idle: state=4294967295 cpu_id=2
77360          <idle>-0     (-----) [002] d..2 24574.191784: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
77361    RenderThread-25194 (24827) [006] .... 24574.191795: binder_transaction: transaction=1670584 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
77362    RenderThread-25194 (24827) [006] ...2 24574.191799: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
77363    RenderThread-25194 (24827) [006] d..4 24574.191800: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=007
77364    RenderThread-25194 (24827) [006] d..5 24574.191809: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=006
77365    RenderThread-25194 (24827) [006] d..2 24574.191814: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
77366  Binder:23896_4-24423 (23896) [006] .... 24574.191817: binder_transaction_received: transaction=1670584
77367 s.nexuslauncher-24827 (24827) [005] d..2 24574.191845: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
77368  Binder:23896_4-24423 (23896) [006] ...1 24574.191848: tracing_mark_write: B|23896|HIDL::IMapper::freeBuffer::passthrough
77369          <idle>-0     (-----) [005] d..1 24574.191850: cpu_idle: state=0 cpu_id=5
77370<...>-24849 ( 24827) [000] d..1 24574.191857: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=005
77371  Binder:23896_4-24423 (23896) [006] ...1 24574.191862: tracing_mark_write: B|23896|FreeBuffer
77372          <idle>-0     (-----) [005] dnh2 24574.191873: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=005
77373          <idle>-0     (-----) [005] .n.1 24574.191875: cpu_idle: state=4294967295 cpu_id=5
77374  Binder:23896_4-24423 (23896) [006] d..2 24574.191877: sched_waking: comm=system pid=105 prio=120 target_cpu=001
77375          <idle>-0     (-----) [005] d..2 24574.191880: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
77376 s.nexuslauncher-24827 (24827) [005] d..1 24574.191884: sched_waking: comm=HeapTaskDaemon pid=24849 prio=124 target_cpu=000
77377<...>-27853 ( 24827) [002] d..2 24574.191890: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
77378<...>-24849 ( 24827) [000] d..2 24574.191891: sched_switch: prev_comm=HeapTaskDaemon prev_pid=24849 prev_prio=124 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77379<...>-12589 ( 23968) [001] d..3 24574.191894: sched_waking: comm=lmkd pid=808 prio=98 target_cpu=000
77380  Binder:23896_4-24423 (23896) [006] d..2 24574.191896: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=003
77381          <idle>-0     (-----) [002] dnh3 24574.191899: sched_wakeup: comm=system pid=105 prio=120 target_cpu=002
77382          <idle>-0     (-----) [002] d..2 24574.191906: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system next_pid=105 next_prio=120
77383 s.nexuslauncher-24827 (24827) [005] d..2 24574.191907: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
77384<...>-12589 ( 23968) [001] d..4 24574.191907: sched_wakeup: comm=lmkd pid=808 prio=98 target_cpu=000
77385          <idle>-0     (-----) [005] d..1 24574.191910: cpu_idle: state=0 cpu_id=5
77386          <idle>-0     (-----) [000] dnh2 24574.191916: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=000
77387          <idle>-0     (-----) [000] dnh2 24574.191918: sched_wakeup: comm=HeapTaskDaemon pid=24849 prio=124 target_cpu=000
77388  Binder:23896_4-24423 (23896) [006] ...1 24574.191920: tracing_mark_write: E|23896
77389  Binder:23896_4-24423 (23896) [006] ...1 24574.191921: tracing_mark_write: B|23896|FreeBuffer
77390          <idle>-0     (-----) [000] d..2 24574.191929: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=808 next_prio=98
77391  Binder:23896_4-24423 (23896) [006] ...1 24574.191929: tracing_mark_write: E|23896
77392  Binder:23896_4-24423 (23896) [006] ...1 24574.191932: tracing_mark_write: E|23896
77393  Binder:23896_4-24423 (23896) [006] ...1 24574.191945: tracing_mark_write: B|23896|HIDL::IMapper::createDescriptor_2_1::passthrough
77394  Binder:23896_4-24423 (23896) [006] ...1 24574.191950: tracing_mark_write: E|23896
77395  Binder:23896_4-24423 (23896) [006] ...1 24574.191958: tracing_mark_write: B|23896|HIDL::IAllocator::allocate::client
77396  Binder:23896_4-24423 (23896) [006] ...1 24574.191960: tracing_mark_write: E|23896
77397  Binder:23896_4-24423 (23896) [006] .... 24574.191979: binder_transaction: transaction=1670585 dest_node=959 dest_proc=786 dest_thread=0 reply=0 flags=0x10 code=0x2
77398  Binder:23896_4-24423 (23896) [006] ...2 24574.191984: binder_set_priority: proc=786 thread=816 old=120 => new=110 desired=110
77399  Binder:23896_4-24423 (23896) [006] d..4 24574.191986: sched_waking: comm=HwBinder:786_2 pid=816 prio=110 target_cpu=005
77400  Binder:23896_4-24423 (23896) [006] dn.5 24574.191996: sched_wakeup: comm=HwBinder:786_2 pid=816 prio=110 target_cpu=006
77401  Binder:23896_4-24423 (23896) [006] d..2 24574.192000: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:786_2 next_pid=816 next_prio=110
77402<...>-816 ( 786) [006] .... 24574.192005: binder_transaction_received: transaction=1670585
77403<...>-12589 ( 23968) [001] d..2 24574.192024: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
77404<...>-816 ( 786) [006] ...1 24574.192035: tracing_mark_write: B|786|HIDL::IAllocator::allocate::server
77405<...>-816 ( 786) [006] ...1 24574.192069: tracing_mark_write: B|786|AllocBuffer
77406<...>-816 ( 786) [006] ...1 24574.192076: tracing_mark_write: B|786|ION_IOC_ALLOC size: 9469952
77407<...>-816 ( 786) [006] ...1 24574.192166: tracing_mark_write: E|786
77408<...>-816 ( 786) [006] ...1 24574.192168: tracing_mark_write: B|786|ION_IOC_MAP
77409<...>-816 ( 786) [006] ...1 24574.192177: tracing_mark_write: E|786
77410<...>-816 ( 786) [006] ...1 24574.192179: tracing_mark_write: E|786
77411<...>-816 ( 786) [006] ...1 24574.192180: tracing_mark_write: B|786|AllocBuffer
77412<...>-816 ( 786) [006] ...1 24574.192182: tracing_mark_write: B|786|ION_IOC_ALLOC size: 20480
77413<...>-816 ( 786) [006] ...1 24574.192188: tracing_mark_write: E|786
77414<...>-816 ( 786) [006] ...1 24574.192189: tracing_mark_write: B|786|ION_IOC_MAP
77415<...>-816 ( 786) [006] ...1 24574.192192: tracing_mark_write: E|786
77416<...>-816 ( 786) [006] ...1 24574.192193: tracing_mark_write: E|786
77417<...>-816 ( 786) [006] ...1 24574.192233: tracing_mark_write: E|786
77418<...>-816 ( 786) [006] .... 24574.192239: binder_transaction: transaction=1670586 dest_node=0 dest_proc=23896 dest_thread=24423 reply=1 flags=0x0 code=0x0
77419<...>-816 ( 786) [006] .... 24574.192247: binder_set_priority: proc=786 thread=816 old=110 => new=120 desired=120
77420<...>-816 ( 786) [006] ...1 24574.192259: tracing_mark_write: B|786|FreeBuffer
77421<...>-816 ( 786) [006] ...1 24574.192264: tracing_mark_write: E|786
77422<...>-816 ( 786) [006] ...1 24574.192265: tracing_mark_write: B|786|FreeBuffer
77423<...>-816 ( 786) [006] ...1 24574.192266: tracing_mark_write: B|786|UnmapBuffer
77424<...>-816 ( 786) [006] ...1 24574.192281: tracing_mark_write: E|786
77425<...>-816 ( 786) [006] ...1 24574.192284: tracing_mark_write: E|786
77426<...>-816 ( 786) [006] d..2 24574.192297: sched_switch: prev_comm=HwBinder:786_2 prev_pid=816 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
77427  Binder:23896_4-24423 (23896) [006] .... 24574.192300: binder_transaction_received: transaction=1670586
77428  Binder:23896_4-24423 (23896) [006] ...1 24574.192316: tracing_mark_write: B|23896|HIDL::IMapper::importBuffer::passthrough
77429  Binder:23896_4-24423 (23896) [006] ...1 24574.192335: tracing_mark_write: E|23896
77430  Binder:23896_4-24423 (23896) [006] ...1 24574.192352: tracing_mark_write: B|23896|HIDL::IMapper::getTransportSize::passthrough
77431  Binder:23896_4-24423 (23896) [006] ...1 24574.192355: tracing_mark_write: E|23896
77432<...>-27168 ( 24741) [001] d..2 24574.192372: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=001
77433  Binder:23896_4-24423 (23896) [006] .... 24574.192381: binder_transaction: transaction=1670587 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
77434  Binder:23896_4-24423 (23896) [006] d..2 24574.192385: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=006
77435  Binder:23896_4-24423 (23896) [006] dn.3 24574.192391: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=006
77436<...>-27168 ( 24741) [001] dn.3 24574.192392: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=001
77437  Binder:23896_4-24423 (23896) [006] d..2 24574.192394: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
77438    RenderThread-25194 (24827) [006] .... 24574.192397: binder_transaction_received: transaction=1670587
77439<...>-27168 ( 24741) [001] d..2 24574.192399: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R+ ==> next_comm=rcuos/0 next_pid=11 next_prio=120
77440<...>-11 ( 11) [001] d..2 24574.192407: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
77441<...>-11 ( 11) [001] d..3 24574.192419: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
77442    RenderThread-25194 (24827) [006] .... 24574.192421: binder_transaction: transaction=1670588 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x1
77443    RenderThread-25194 (24827) [006] ...2 24574.192424: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
77444<...>-11 ( 11) [001] d..2 24574.192426: sched_switch: prev_comm=rcuos/0 prev_pid=11 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
77445    RenderThread-25194 (24827) [006] d..4 24574.192426: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
77446    RenderThread-25194 (24827) [006] d..5 24574.192436: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
77447            lmkd-808   (  808) [000] d..2 24574.192438: sched_switch: prev_comm=lmkd prev_pid=808 prev_prio=98 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
77448       rcu_sched-8     (    8) [001] d..2 24574.192440: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
77449          <idle>-0     (-----) [005] .n.1 24574.192441: cpu_idle: state=4294967295 cpu_id=5
77450    RenderThread-25194 (24827) [006] d..2 24574.192442: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
77451  Binder:23896_4-24423 (23896) [006] .... 24574.192444: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
77452          <idle>-0     (-----) [005] d..2 24574.192445: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
77453  Binder:23896_5-25989 (23896) [005] .... 24574.192449: binder_transaction_received: transaction=1670588
77454         rcuop/6-61    (   61) [000] d..2 24574.192450: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=HeapTaskDaemon next_pid=24849 next_prio=124
77455  Binder:23896_4-24423 (23896) [006] d..2 24574.192465: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
77456          <idle>-0     (-----) [006] d..1 24574.192480: cpu_idle: state=0 cpu_id=6
77457  Binder:23896_5-25989 (23896) [005] .... 24574.192488: binder_transaction: transaction=1670589 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
77458  Binder:23896_5-25989 (23896) [005] d..2 24574.192496: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=006
77459  Binder:23896_5-25989 (23896) [005] d..3 24574.192507: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
77460  Binder:23896_5-25989 (23896) [005] .... 24574.192508: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
77461  Binder:23896_5-25989 (23896) [005] d..2 24574.192527: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
77462    RenderThread-25194 (24827) [005] .... 24574.192530: binder_transaction_received: transaction=1670589
77463    RenderThread-25194 (24827) [005] ...1 24574.192560: tracing_mark_write: B|24827|HIDL::IMapper::importBuffer::passthrough
77464    RenderThread-25194 (24827) [005] ...1 24574.192590: tracing_mark_write: E|24827
77465    RenderThread-25194 (24827) [005] ...1 24574.192597: tracing_mark_write: B|24827|HIDL::IMapper::validateBufferSize::passthrough
77466<...>-24849 ( 24827) [000] d..1 24574.192604: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=002
77467    RenderThread-25194 (24827) [005] ...1 24574.192612: tracing_mark_write: E|24827
77468    RenderThread-25194 (24827) [005] ...1 24574.192617: tracing_mark_write: B|24827|HIDL::IMapper::getTransportSize::passthrough
77469    RenderThread-25194 (24827) [005] ...1 24574.192619: tracing_mark_write: E|24827
77470          <idle>-0     (-----) [006] dnh2 24574.192674: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=006
77471          <idle>-0     (-----) [006] .n.1 24574.192686: cpu_idle: state=4294967295 cpu_id=6
77472          <idle>-0     (-----) [006] d..2 24574.192692: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
77473<...>-27853 ( 24827) [006] d..1 24574.192700: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=005
77474<...>-27853 ( 24827) [006] d..2 24574.192713: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=004
77475          <idle>-0     (-----) [004] .n.1 24574.192719: cpu_idle: state=4294967295 cpu_id=4
77476          <idle>-0     (-----) [004] d..2 24574.192726: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
77477<...>-27853 ( 24827) [006] d..1 24574.192744: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=004
77478 s.nexuslauncher-24827 (24827) [004] d..2 24574.192750: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
77479<...>-27853 ( 24827) [006] d..2 24574.192757: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=004
77480          <idle>-0     (-----) [004] d..2 24574.192760: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
77481 s.nexuslauncher-24827 (24827) [004] d..2 24574.192787: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
77482<...>-27853 ( 24827) [006] d..1 24574.192790: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=004
77483          <idle>-0     (-----) [004] d..1 24574.192790: cpu_idle: state=0 cpu_id=4
77484<...>-27853 ( 24827) [006] d..2 24574.192795: sched_blocked_reason: pid=24827 iowait=0 caller=do_page_fault+0x4e0/0x594
77485<...>-27853 ( 24827) [006] d..2 24574.192799: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=004
77486          <idle>-0     (-----) [004] .n.1 24574.192803: cpu_idle: state=4294967295 cpu_id=4
77487          <idle>-0     (-----) [004] d..2 24574.192807: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
77488    RenderThread-24437 (24151) [007] .... 24574.192864: binder_transaction: transaction=1670590 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
77489    RenderThread-24437 (24151) [007] d..4 24574.192871: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
77490 s.nexuslauncher-24827 (24827) [004] .... 24574.192874: binder_transaction: transaction=1670591 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x11 code=0x10
77491    RenderThread-24437 (24151) [007] dn.5 24574.192884: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
77492 s.nexuslauncher-24827 (24827) [004] d..4 24574.192887: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=001
77493    RenderThread-24437 (24151) [007] d..2 24574.192889: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
77494  Binder:23896_5-25989 (23896) [007] .... 24574.192893: binder_transaction_received: transaction=1670590
77495<...>-27168 ( 24741) [001] dnh1 24574.192922: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=001
77496<...>-27168 ( 24741) [001] d..2 24574.192930: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
77497<...>-12589 ( 23968) [001] .... 24574.192938: binder_transaction_received: transaction=1670591
77498<...>-27853 ( 24827) [006] .... 24574.192964: binder_transaction: transaction=1670592 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
77499<...>-27853 ( 24827) [006] ...2 24574.192973: binder_set_priority: proc=23896 thread=24423 old=120 => new=118 desired=118
77500 s.nexuslauncher-24827 (24827) [004] d..2 24574.192973: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
77501<...>-27853 ( 24827) [006] d..4 24574.192974: sched_waking: comm=Binder:23896_4 pid=24423 prio=118 target_cpu=006
77502          <idle>-0     (-----) [004] d..1 24574.192979: cpu_idle: state=0 cpu_id=4
77503<...>-27853 ( 24827) [006] d..5 24574.192980: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=118 target_cpu=006
77504<...>-27853 ( 24827) [006] d..2 24574.192986: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=118
77505  Binder:23896_4-24423 (23896) [006] .... 24574.192989: binder_transaction_received: transaction=1670592
77506  Binder:23896_5-25989 (23896) [007] .... 24574.193008: binder_transaction: transaction=1670593 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
77507  Binder:23896_5-25989 (23896) [007] d..2 24574.193022: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
77508    RenderThread-24437 (24151) [007] .... 24574.193025: binder_transaction_received: transaction=1670593
77509  Binder:23896_4-24423 (23896) [006] d..1 24574.193054: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
77510    RenderThread-24437 (24151) [007] d..2 24574.193072: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
77511  Binder:23896_4-24423 (23896) [006] .... 24574.193077: binder_transaction: transaction=1670594 dest_node=0 dest_proc=24827 dest_thread=27853 reply=1 flags=0x0 code=0x0
77512  Binder:23896_4-24423 (23896) [006] d..2 24574.193079: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=006
77513<...>-24849 ( 24827) [000] dnh1 24574.193081: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
77514  Binder:23896_4-24423 (23896) [006] d..3 24574.193083: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=006
77515  Binder:23896_4-24423 (23896) [006] .... 24574.193084: binder_set_priority: proc=23896 thread=24423 old=118 => new=120 desired=120
77516          <idle>-0     (-----) [007] d..1 24574.193087: cpu_idle: state=0 cpu_id=7
77517  Binder:23896_4-24423 (23896) [006] d..2 24574.193088: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
77518<...>-27853 ( 24827) [006] .... 24574.193090: binder_transaction_received: transaction=1670594
77519<...>-24849 ( 24827) [000] dnh2 24574.193094: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
77520<...>-24849 ( 24827) [000] dnh3 24574.193112: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
77521<...>-27853 ( 24827) [006] d..2 24574.193120: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
77522<...>-105 ( 105) [002] d..2 24574.193124: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
77523<...>-24849 ( 24827) [000] d..2 24574.193128: sched_switch: prev_comm=HeapTaskDaemon prev_pid=24849 prev_prio=124 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
77524  Binder:23896_4-24423 (23896) [006] d..2 24574.193143: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
77525          <idle>-0     (-----) [006] d..1 24574.193150: cpu_idle: state=0 cpu_id=6
77526        DispSync-23904 (23896) [000] d..1 24574.193152: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
77527        DispSync-23904 (23896) [000] d..2 24574.193170: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
77528<...>-24168 ( 24151) [003] d..2 24574.193184: sched_switch: prev_comm=HeapTaskDaemon prev_pid=24168 prev_prio=124 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
77529        DispSync-23904 (23896) [000] d..2 24574.193186: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=HeapTaskDaemon next_pid=24849 next_prio=124
77530 kgsl_worker_thr-246   (  246) [002] d..2 24574.193237: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
77531   sfEventThread-23906 (23896) [003] d..3 24574.193245: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=000
77532<...>-24849 ( 24827) [000] d..2 24574.193272: sched_switch: prev_comm=HeapTaskDaemon prev_pid=24849 prev_prio=124 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
77533          <idle>-0     (-----) [000] d..1 24574.193286: cpu_idle: state=0 cpu_id=0
77534          <idle>-0     (-----) [006] dnh2 24574.193302: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=006
77535    RenderThread-25194 (24827) [005] d..1 24574.193303: sched_waking: comm=HeapTaskDaemon pid=24849 prio=124 target_cpu=000
77536          <idle>-0     (-----) [006] .n.1 24574.193305: cpu_idle: state=4294967295 cpu_id=6
77537          <idle>-0     (-----) [006] d..2 24574.193309: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
77538   sfEventThread-23906 (23896) [003] d..3 24574.193314: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
77539          <idle>-0     (-----) [000] d.h2 24574.193321: sched_blocked_reason: pid=24849 iowait=0 caller=do_page_fault+0x4e0/0x594
77540          <idle>-0     (-----) [000] dnh2 24574.193324: sched_wakeup: comm=HeapTaskDaemon pid=24849 prio=124 target_cpu=000
77541          <idle>-0     (-----) [000] .n.1 24574.193332: cpu_idle: state=4294967295 cpu_id=0
77542    RenderThread-25194 (24827) [005] d..2 24574.193333: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D|K ==> next_comm=swapper/5 next_pid=0 next_prio=120
77543   sfEventThread-23906 (23896) [003] d..4 24574.193334: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
77544          <idle>-0     (-----) [000] d..2 24574.193338: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
77545          <idle>-0     (-----) [005] d..1 24574.193340: cpu_idle: state=0 cpu_id=5
77546<...>-12589 ( 23968) [001] d..2 24574.193351: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=002
77547   sfEventThread-23906 (23896) [003] d..2 24574.193356: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=HeapTaskDaemon next_pid=24168 next_prio=124
77548<...>-12589 ( 23968) [001] d..3 24574.193379: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=002
77549<...>-105 ( 105) [002] d..2 24574.193387: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=statsd.writer next_pid=1044 next_prio=120
77550<...>-24041 ( 23968) [006] .... 24574.193450: binder_transaction: transaction=1670595 dest_node=1271137 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
77551<...>-12589 ( 23968) [001] d..3 24574.193453: sched_waking: comm=PowerManagerSer pid=24006 prio=116 target_cpu=007
77552<...>-24041 ( 23968) [006] d..4 24574.193454: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=006
77553<...>-24041 ( 23968) [006] d..5 24574.193467: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
77554          <idle>-0     (-----) [005] .n.1 24574.193472: cpu_idle: state=4294967295 cpu_id=5
77555          <idle>-0     (-----) [007] dnh2 24574.193475: sched_wakeup: comm=PowerManagerSer pid=24006 prio=116 target_cpu=007
77556          <idle>-0     (-----) [005] d..2 24574.193477: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
77557          <idle>-0     (-----) [007] .n.1 24574.193478: cpu_idle: state=4294967295 cpu_id=7
77558  Binder:23896_4-24423 (23896) [005] .... 24574.193480: binder_transaction_received: transaction=1670595
77559          <idle>-0     (-----) [007] d..2 24574.193484: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=24006 next_prio=116
77560  Binder:23896_4-24423 (23896) [005] d..1 24574.193492: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
77561<...>-1044 ( 887) [002] dnh1 24574.193511: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
77562  Binder:23896_4-24423 (23896) [005] d..2 24574.193515: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
77563          <idle>-0     (-----) [005] d..1 24574.193518: cpu_idle: state=0 cpu_id=5
77564<...>-1044 ( 887) [002] d..2 24574.193519: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
77565 PowerManagerSer-24006 (23968) [007] d..2 24574.193533: sched_switch: prev_comm=PowerManagerSer prev_pid=24006 prev_prio=116 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
77566          <idle>-0     (-----) [007] d..1 24574.193538: cpu_idle: state=0 cpu_id=7
77567   sfEventThread-23906 (23896) [002] d..2 24574.193550: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=statsd.writer next_pid=1044 next_prio=120
77568<...>-12589 ( 23968) [001] d..2 24574.193572: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
77569<...>-1044 ( 887) [002] d..2 24574.193625: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
77570<...>-24041 ( 23968) [006] .... 24574.193791: binder_transaction: transaction=1670596 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
77571<...>-24041 ( 23968) [006] ...2 24574.193802: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
77572<...>-24041 ( 23968) [006] d..4 24574.193803: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=005
77573<...>-24041 ( 23968) [006] d..5 24574.193813: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=006
77574<...>-24041 ( 23968) [006] d..2 24574.193818: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
77575  Binder:23896_4-24423 (23896) [006] .... 24574.193821: binder_transaction_received: transaction=1670596
77576  Binder:23896_4-24423 (23896) [006] .... 24574.193855: binder_transaction: transaction=1670597 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
77577  Binder:23896_4-24423 (23896) [006] d..2 24574.193857: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=006
77578  Binder:23896_4-24423 (23896) [006] dn.3 24574.193862: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=006
77579  Binder:23896_4-24423 (23896) [006] d..2 24574.193865: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=R+ ==> next_comm=android.anim next_pid=24041 next_prio=110
77580<...>-24041 ( 23968) [006] .... 24574.193867: binder_transaction_received: transaction=1670597
77581<...>-24041 ( 23968) [006] d..1 24574.193890: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=001
77582<...>-24041 ( 23968) [006] d..2 24574.193905: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
77583          <idle>-0     (-----) [007] .n.1 24574.193910: cpu_idle: state=4294967295 cpu_id=7
77584          <idle>-0     (-----) [007] d..2 24574.193928: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
77585<...>-24041 ( 23968) [006] d..2 24574.193960: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
77586  Binder:23896_4-24423 (23896) [006] .... 24574.193963: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
77587  Binder:23896_4-24423 (23896) [006] d..2 24574.193986: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
77588          <idle>-0     (-----) [006] d..1 24574.193992: cpu_idle: state=0 cpu_id=6
77589<...>-105 ( 105) [002] d..2 24574.194047: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
77590          <idle>-0     (-----) [002] d..1 24574.194064: cpu_idle: state=0 cpu_id=2
77591          <idle>-0     (-----) [006] ...1 24574.194222: cpu_idle: state=4294967295 cpu_id=6
77592          <idle>-0     (-----) [006] d..1 24574.194223: cpu_idle: state=0 cpu_id=6
77593<...>-27168 ( 24741) [001] d.s1 24574.194241: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
77594<...>-27168 ( 24741) [001] dns2 24574.194258: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
77595<...>-27168 ( 24741) [001] d..2 24574.194269: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
77596     rcu_preempt-7     (    7) [001] d..2 24574.194276: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
77597     rcu_preempt-7     (    7) [001] d..3 24574.194302: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
77598     rcu_preempt-7     (    7) [001] d..2 24574.194314: 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
77599         rcuop/0-10    (   10) [001] d..2 24574.194320: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
77600         rcuop/0-10    (   10) [001] d..3 24574.194342: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
77601<...>-12589 ( 23968) [007] d..2 24574.194357: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
77602         rcuop/0-10    (   10) [001] d..2 24574.194359: 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
77603          <idle>-0     (-----) [007] d..1 24574.194364: cpu_idle: state=0 cpu_id=7
77604         rcuop/1-21    (   21) [001] d..2 24574.194368: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
77605  surfaceflinger-23896 (23896) [000] ...1 24574.194555: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
77606  surfaceflinger-23896 (23896) [000] ...1 24574.194560: tracing_mark_write: E|23896
77607  surfaceflinger-23896 (23896) [000] .... 24574.194607: binder_transaction: transaction=1670598 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
77608  surfaceflinger-23896 (23896) [000] ...2 24574.194631: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
77609  surfaceflinger-23896 (23896) [000] d..4 24574.194641: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
77610  surfaceflinger-23896 (23896) [000] d..5 24574.194655: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
77611          <idle>-0     (-----) [002] .n.1 24574.194661: cpu_idle: state=4294967295 cpu_id=2
77612  surfaceflinger-23896 (23896) [000] d..2 24574.194667: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=HeapTaskDaemon next_pid=24849 next_prio=124
77613          <idle>-0     (-----) [002] d..2 24574.194668: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
77614<...>-24849 ( 24827) [000] d..1 24574.194672: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
77615  HwBinder:598_3-633   (  598) [002] .... 24574.194678: binder_transaction_received: transaction=1670598
77616          <idle>-0     (-----) [005] d.h2 24574.194689: sched_blocked_reason: pid=25194 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
77617          <idle>-0     (-----) [005] dnh2 24574.194691: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
77618          <idle>-0     (-----) [005] .n.1 24574.194693: cpu_idle: state=4294967295 cpu_id=5
77619          <idle>-0     (-----) [005] d..2 24574.194697: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
77620  HwBinder:598_3-633   (  598) [002] ...1 24574.194728: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
77621  HwBinder:598_3-633   (  598) [002] ...1 24574.194848: tracing_mark_write: B|598|HWCSession::PresentDisplay::
77622<...>-24849 ( 24827) [000] d.h1 24574.195301: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
77623<...>-24849 ( 24827) [000] dnh2 24574.195311: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
77624<...>-24849 ( 24827) [000] d..2 24574.195322: sched_switch: prev_comm=HeapTaskDaemon prev_pid=24849 prev_prio=124 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
77625  HwBinder:598_3-633   (  598) [002] ...1 24574.195323: tracing_mark_write: B|598|HWDeviceDRM::Validate::
77626 irq/79-1436400.-24613 (24613) [000] d..2 24574.195487: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=HeapTaskDaemon next_pid=24849 next_prio=124
77627<...>-24168 ( 24151) [003] d.s2 24574.195513: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
77628<...>-24168 ( 24151) [003] d.s3 24574.195525: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
77629<...>-24849 ( 24827) [000] d..2 24574.195532: sched_switch: prev_comm=HeapTaskDaemon prev_pid=24849 prev_prio=124 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
77630 irq/79-1436400.-24613 (24613) [000] d..2 24574.195553: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=HeapTaskDaemon next_pid=24849 next_prio=124
77631  HwBinder:598_3-633   (  598) [002] ...1 24574.195774: tracing_mark_write: E|598
77632    RenderThread-25194 (24827) [005] .... 24574.195817: binder_transaction: transaction=1670599 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
77633    RenderThread-25194 (24827) [005] ...2 24574.195824: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
77634    RenderThread-25194 (24827) [005] d..4 24574.195826: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=006
77635    RenderThread-25194 (24827) [005] d..5 24574.195837: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=005
77636    RenderThread-25194 (24827) [005] d..2 24574.195844: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
77637  Binder:23896_4-24423 (23896) [005] .... 24574.195847: binder_transaction_received: transaction=1670599
77638  HwBinder:598_3-633   (  598) [002] ...1 24574.195872: tracing_mark_write: B|598|HWDeviceDRM::Commit::
77639  HwBinder:598_3-633   (  598) [002] ...1 24574.195878: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
77640  Binder:23896_4-24423 (23896) [005] .... 24574.195925: binder_transaction: transaction=1670600 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
77641  Binder:23896_4-24423 (23896) [005] d..2 24574.195929: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
77642  Binder:23896_4-24423 (23896) [005] dn.3 24574.195933: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
77643  Binder:23896_4-24423 (23896) [005] d..2 24574.195936: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
77644    RenderThread-25194 (24827) [005] .... 24574.195939: binder_transaction_received: transaction=1670600
77645    RenderThread-25194 (24827) [005] d..2 24574.195990: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
77646  Binder:23896_4-24423 (23896) [005] .... 24574.195992: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
77647  Binder:23896_4-24423 (23896) [005] d..2 24574.196016: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
77648          <idle>-0     (-----) [005] d..1 24574.196026: cpu_idle: state=0 cpu_id=5
77649  HwBinder:598_3-633   (  598) [002] d..2 24574.196156: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
77650  HwBinder:598_3-633   (  598) [002] d..3 24574.196184: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
77651<...>-27168 ( 24741) [001] d..2 24574.196197: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
77652  HwBinder:598_3-633   (  598) [002] ...1 24574.196256: tracing_mark_write: E|598
77653  HwBinder:598_3-633   (  598) [002] ...1 24574.196259: tracing_mark_write: E|598
77654  HwBinder:598_3-633   (  598) [002] ...1 24574.196302: tracing_mark_write: E|598
77655  HwBinder:598_3-633   (  598) [002] ...1 24574.196354: tracing_mark_write: E|598
77656  HwBinder:598_3-633   (  598) [002] .... 24574.196369: binder_transaction: transaction=1670601 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
77657  HwBinder:598_3-633   (  598) [002] d..2 24574.196384: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
77658  HwBinder:598_3-633   (  598) [002] d..3 24574.196395: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
77659  HwBinder:598_3-633   (  598) [002] .... 24574.196398: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
77660<...>-24849 ( 24827) [000] d..2 24574.196406: sched_switch: prev_comm=HeapTaskDaemon prev_pid=24849 prev_prio=124 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
77661  surfaceflinger-23896 (23896) [000] .... 24574.196414: binder_transaction_received: transaction=1670601
77662  HwBinder:598_3-633   (  598) [002] d..2 24574.196468: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
77663          <idle>-0     (-----) [002] d..1 24574.196486: cpu_idle: state=0 cpu_id=2
77664 crtc_commit:111-253   (  253) [001] d..2 24574.196549: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
77665  surfaceflinger-23896 (23896) [000] d..2 24574.196840: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=HeapTaskDaemon next_pid=24849 next_prio=124
77666<...>-27168 ( 24741) [001] d.s1 24574.197582: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
77667<...>-24849 ( 24827) [000] d.H2 24574.197644: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
77668<...>-24849 ( 24827) [000] dnH2 24574.197658: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
77669<...>-27168 ( 24741) [001] d.s2 24574.197659: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
77670          <idle>-0     (-----) [004] dnh2 24574.197665: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
77671          <idle>-0     (-----) [004] .n.1 24574.197668: cpu_idle: state=4294967295 cpu_id=4
77672<...>-24849 ( 24827) [000] dnH3 24574.197670: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
77673          <idle>-0     (-----) [004] d..2 24574.197675: 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
77674          <idle>-0     (-----) [002] .n.1 24574.197683: cpu_idle: state=4294967295 cpu_id=2
77675<...>-24849 ( 24827) [000] dnH2 24574.197686: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
77676          <idle>-0     (-----) [002] d..2 24574.197694: 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
77677         sugov:4-560   (  560) [004] .... 24574.197702: clk_set_rate: perfcl_clk 1459200000
77678<...>-24849 ( 24827) [000] dnH3 24574.197703: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
77679         sugov:4-560   (  560) [004] .... 24574.197705: clk_set_rate: cpu7_perfcl_clk 1843200000
77680         sugov:4-560   (  560) [004] .... 24574.197710: clk_set_rate: cpu6_perfcl_clk 1843200000
77681         sugov:0-559   (  559) [002] d..2 24574.197713: 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
77682         sugov:4-560   (  560) [004] .... 24574.197714: clk_set_rate: cpu5_perfcl_clk 1843200000
77683<...>-24849 ( 24827) [000] dns2 24574.197718: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
77684          <idle>-0     (-----) [002] d..1 24574.197718: cpu_idle: state=0 cpu_id=2
77685         sugov:4-560   (  560) [004] .... 24574.197719: clk_set_rate: cpu4_perfcl_clk 1459200000
77686         sugov:4-560   (  560) [004] .... 24574.197725: cpu_frequency: state=1459200 cpu_id=4
77687         sugov:4-560   (  560) [004] .... 24574.197739: cpu_frequency: state=1459200 cpu_id=5
77688         sugov:4-560   (  560) [004] .... 24574.197742: cpu_frequency: state=1459200 cpu_id=6
77689         sugov:4-560   (  560) [004] .... 24574.197744: cpu_frequency: state=1459200 cpu_id=7
77690<...>-24849 ( 24827) [000] dns3 24574.197748: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
77691<...>-24849 ( 24827) [000] d..2 24574.197757: sched_switch: prev_comm=HeapTaskDaemon prev_pid=24849 prev_prio=124 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
77692         sugov:4-560   (  560) [004] d..2 24574.197758: 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
77693<...>-27168 ( 24741) [001] d..2 24574.197759: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
77694          <idle>-0     (-----) [004] d..1 24574.197767: cpu_idle: state=0 cpu_id=4
77695 kgsl_worker_thr-246   (  246) [000] d..2 24574.197835: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
77696       rcu_sched-8     (    8) [000] d..2 24574.197851: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=001
77697  kworker/u16:15-18488 (18488) [001] .... 24574.197856: clk_set_rate: l3_cluster0_vote_clk 1401600000
77698  kworker/u16:15-18488 (18488) [001] .... 24574.197862: clk_set_rate: l3_clk 1401600000
77699       rcu_sched-8     (    8) [000] d..3 24574.197872: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=001
77700       rcu_sched-8     (    8) [000] d..2 24574.197880: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=HeapTaskDaemon next_pid=24849 next_prio=124
77701  kworker/u16:15-18488 (18488) [001] d..2 24574.197902: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcuos/0 next_pid=11 next_prio=120
77702<...>-11 ( 11) [001] d..2 24574.197909: sched_waking: comm=rcuos/1 pid=22 prio=120 target_cpu=000
77703<...>-11 ( 11) [001] d..3 24574.197927: sched_wakeup: comm=rcuos/1 pid=22 prio=120 target_cpu=000
77704<...>-11 ( 11) [001] d..2 24574.197931: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
77705<...>-24849 ( 24827) [000] d..2 24574.197936: sched_switch: prev_comm=HeapTaskDaemon prev_pid=24849 prev_prio=124 prev_state=R ==> next_comm=rcuos/1 next_pid=22 next_prio=120
77706<...>-11 ( 11) [001] d..3 24574.197945: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
77707<...>-22 ( 22) [000] d..2 24574.197952: sched_switch: prev_comm=rcuos/1 prev_pid=22 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
77708<...>-11 ( 11) [001] d..2 24574.197959: sched_switch: prev_comm=rcuos/0 prev_pid=11 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
77709       rcu_sched-8     (    8) [000] d..2 24574.197961: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=HeapTaskDaemon next_pid=24849 next_prio=124
77710<...>-27168 ( 24741) [001] .... 24574.198415: binder_transaction: transaction=1670602 dest_node=1670572 dest_proc=24133 dest_thread=0 reply=0 flags=0x11 code=0x1
77711<...>-27168 ( 24741) [001] d..4 24574.198424: sched_waking: comm=Binder:24133_7 pid=12580 prio=120 target_cpu=001
77712<...>-27168 ( 24741) [001] d..5 24574.198452: sched_wakeup: comm=Binder:24133_7 pid=12580 prio=120 target_cpu=000
77713<...>-24849 ( 24827) [000] d..2 24574.198461: sched_switch: prev_comm=HeapTaskDaemon prev_pid=24849 prev_prio=124 prev_state=R ==> next_comm=Binder:24133_7 next_pid=12580 next_prio=120
77714<...>-27168 ( 24741) [001] d.h2 24574.198466: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
77715  Binder:24133_7-12580 (24133) [000] .... 24574.198469: binder_transaction_received: transaction=1670602
77716<...>-27168 ( 24741) [001] dnh3 24574.198475: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
77717<...>-27168 ( 24741) [001] d..2 24574.198482: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
77718  kworker/u16:15-18488 (18488) [001] d..1 24574.198507: clk_disable: gcc_ufs_phy_phy_aux_hw_ctl_clk
77719  kworker/u16:15-18488 (18488) [001] d..1 24574.198522: clk_disable: gcc_ufs_phy_phy_aux_clk
77720  kworker/u16:15-18488 (18488) [001] d..1 24574.198530: clk_disable: gcc_ufs_phy_phy_aux_clk_src
77721  kworker/u16:15-18488 (18488) [001] d..1 24574.198540: clk_disable: gcc_ufs_mem_clkref_clk
77722  kworker/u16:15-18488 (18488) [001] d..1 24574.198552: clk_disable: gcc_ufs_phy_axi_hw_ctl_clk
77723  kworker/u16:15-18488 (18488) [001] d..1 24574.198555: clk_disable: gcc_ufs_phy_axi_clk
77724  kworker/u16:15-18488 (18488) [001] d..1 24574.198561: clk_disable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
77725  kworker/u16:15-18488 (18488) [001] d..1 24574.198565: clk_disable: gcc_aggre_ufs_phy_axi_clk
77726  kworker/u16:15-18488 (18488) [001] d..1 24574.198569: clk_disable: gcc_ufs_phy_axi_clk_src
77727  kworker/u16:15-18488 (18488) [001] d..1 24574.198575: clk_disable: gcc_ufs_phy_ahb_clk
77728  kworker/u16:15-18488 (18488) [001] d..1 24574.198581: clk_disable: gcc_ufs_phy_unipro_core_hw_ctl_clk
77729  kworker/u16:15-18488 (18488) [001] d..1 24574.198584: clk_disable: gcc_ufs_phy_unipro_core_clk
77730  kworker/u16:15-18488 (18488) [001] d..1 24574.198589: clk_disable: gcc_ufs_phy_unipro_core_clk_src
77731  kworker/u16:15-18488 (18488) [001] d..1 24574.198594: clk_disable: gcc_ufs_phy_ice_core_hw_ctl_clk
77732  kworker/u16:15-18488 (18488) [001] d..1 24574.198597: clk_disable: gcc_ufs_phy_ice_core_clk
77733  kworker/u16:15-18488 (18488) [001] d..1 24574.198602: clk_disable: gcc_ufs_phy_ice_core_clk_src
77734  kworker/u16:15-18488 (18488) [001] d..2 24574.198882: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
77735  Binder:24133_7-12580 (24133) [000] d..3 24574.198918: sched_waking: comm=putmethod.latin pid=24133 prio=120 target_cpu=000
77736<...>-24168 ( 24151) [003] d.s2 24574.198923: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
77737<...>-24168 ( 24151) [003] d.s3 24574.198939: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
77738  Binder:24133_7-12580 (24133) [000] d..4 24574.198940: sched_wakeup: comm=putmethod.latin pid=24133 prio=120 target_cpu=000
77739<...>-24168 ( 24151) [003] d.s3 24574.198947: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
77740<...>-27168 ( 24741) [001] d..2 24574.198956: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
77741  kworker/u16:15-18488 (18488) [001] d..2 24574.198972: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
77742  Binder:24133_7-12580 (24133) [000] d..2 24574.199025: sched_switch: prev_comm=Binder:24133_7 prev_pid=12580 prev_prio=120 prev_state=S ==> next_comm=putmethod.latin next_pid=24133 next_prio=120
77743<...>-27168 ( 24741) [001] d..1 24574.199068: sched_waking: comm=lowpool[3] pid=25296 prio=130 target_cpu=006
77744<...>-27168 ( 24741) [001] d..2 24574.199106: sched_wakeup: comm=lowpool[3] pid=25296 prio=130 target_cpu=002
77745          <idle>-0     (-----) [002] .n.1 24574.199110: cpu_idle: state=4294967295 cpu_id=2
77746<...>-27168 ( 24741) [001] d.h3 24574.199136: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
77747          <idle>-0     (-----) [002] d..2 24574.199137: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
77748<...>-27168 ( 24741) [001] dnh4 24574.199152: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
77749<...>-27168 ( 24741) [001] d..2 24574.199158: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
77750         sugov:0-559   (  559) [001] d..2 24574.199165: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
77751<...>-27168 ( 24741) [001] d..1 24574.199170: sched_waking: comm=lowpool[3] pid=25296 prio=130 target_cpu=002
77752<...>-25296 ( 24741) [002] d..2 24574.199177: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
77753<...>-27168 ( 24741) [001] d..2 24574.199187: sched_wakeup: comm=lowpool[3] pid=25296 prio=130 target_cpu=002
77754          <idle>-0     (-----) [002] d..2 24574.199191: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
77755 putmethod.latin-24133 (24133) [000] d..2 24574.199258: sched_switch: prev_comm=putmethod.latin prev_pid=24133 prev_prio=120 prev_state=S ==> next_comm=HeapTaskDaemon next_pid=24849 next_prio=124
77756<...>-27168 ( 24741) [001] d..2 24574.199378: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
77757          <idle>-0     (-----) [001] d..1 24574.199396: cpu_idle: state=0 cpu_id=1
77758<...>-25296 ( 24741) [002] .... 24574.199698: binder_transaction: transaction=1670603 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x24
77759<...>-25296 ( 24741) [002] d..4 24574.199711: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
77760<...>-25296 ( 24741) [002] dn.5 24574.199729: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=002
77761<...>-25296 ( 24741) [002] dnh5 24574.199760: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
77762<...>-25296 ( 24741) [002] dnh6 24574.199769: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
77763          <idle>-0     (-----) [001] .n.1 24574.199775: cpu_idle: state=4294967295 cpu_id=1
77764<...>-25296 ( 24741) [002] d..2 24574.199775: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
77765          <idle>-0     (-----) [001] d..2 24574.199780: 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
77766<...>-12589 ( 23968) [002] .... 24574.199782: binder_transaction_received: transaction=1670603
77767         sugov:0-559   (  559) [001] d..2 24574.199794: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
77768          <idle>-0     (-----) [001] d..1 24574.199798: cpu_idle: state=0 cpu_id=1
77769<...>-12589 ( 23968) [002] .... 24574.200108: binder_transaction: transaction=1670604 dest_node=0 dest_proc=24741 dest_thread=25296 reply=1 flags=0x0 code=0x0
77770<...>-12589 ( 23968) [002] d..2 24574.200141: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
77771<...>-25296 ( 24741) [002] .... 24574.200146: binder_transaction_received: transaction=1670604
77772<...>-25296 ( 24741) [002] d..2 24574.200322: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
77773          <idle>-0     (-----) [002] d..1 24574.200332: cpu_idle: state=0 cpu_id=2
77774          <idle>-0     (-----) [007] d.h2 24574.200469: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=007
77775          <idle>-0     (-----) [001] dnh2 24574.200494: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=001
77776          <idle>-0     (-----) [001] .n.1 24574.200517: cpu_idle: state=4294967295 cpu_id=1
77777          <idle>-0     (-----) [007] d.h3 24574.200519: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
77778          <idle>-0     (-----) [001] d..2 24574.200521: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
77779          <idle>-0     (-----) [007] ...1 24574.200537: cpu_idle: state=4294967295 cpu_id=7
77780          <idle>-0     (-----) [007] d..1 24574.200540: cpu_idle: state=0 cpu_id=7
77781          <idle>-0     (-----) [002] dnh2 24574.200543: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
77782          <idle>-0     (-----) [002] .n.1 24574.200547: cpu_idle: state=4294967295 cpu_id=2
77783          <idle>-0     (-----) [002] d..2 24574.200553: 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
77784         sugov:0-559   (  559) [002] d..2 24574.200565: 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
77785          <idle>-0     (-----) [002] d..1 24574.200571: cpu_idle: state=0 cpu_id=2
77786           <...>-13147 (-----) [001] d..2 24574.200721: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
77787           <...>-13147 (-----) [001] d..3 24574.200740: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
77788           <...>-13147 (-----) [001] d..2 24574.200800: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
77789     logd.writer-563   (  555) [001] d.s1 24574.200896: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
77790<...>-24849 ( 24827) [000] d.s2 24574.200901: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
77791     logd.writer-563   (  555) [001] d.s2 24574.200912: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
77792<...>-24849 ( 24827) [000] d.s3 24574.200918: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
77793     logd.writer-563   (  555) [001] d..2 24574.200976: 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
77794     rcu_preempt-7     (    7) [001] d..2 24574.200986: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=000
77795     rcu_preempt-7     (    7) [001] d..3 24574.201011: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=001
77796     rcu_preempt-7     (    7) [001] d..2 24574.201013: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
77797     rcu_preempt-7     (    7) [001] d..3 24574.201035: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
77798     rcu_preempt-7     (    7) [001] d..2 24574.201037: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
77799     rcu_preempt-7     (    7) [001] d..3 24574.201057: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
77800     rcu_preempt-7     (    7) [001] d..2 24574.201066: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
77801<...>-24168 ( 24151) [003] d..2 24574.201068: sched_switch: prev_comm=HeapTaskDaemon prev_pid=24168 prev_prio=124 prev_state=R ==> next_comm=rcuop/4 next_pid=45 next_prio=120
77802         rcuop/4-45    (   45) [003] d..2 24574.201075: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=003
77803         rcuop/4-45    (   45) [003] d..3 24574.201101: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
77804         rcuop/4-45    (   45) [003] d..2 24574.201110: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=HeapTaskDaemon next_pid=24168 next_prio=124
77805  kworker/u16:15-18488 (18488) [001] d..2 24574.201178: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
77806         rcuop/6-61    (   61) [001] d..2 24574.201194: 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
77807         rcuop/2-29    (   29) [001] d..2 24574.201200: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
77808         rcuop/2-29    (   29) [001] d..3 24574.201212: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
77809         rcuop/2-29    (   29) [001] d..2 24574.201222: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
77810         rcuop/5-53    (   53) [001] d..2 24574.201232: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
77811         rcuop/3-37    (   37) [001] d..2 24574.201273: 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
77812          <idle>-0     (-----) [001] d..1 24574.201281: cpu_idle: state=0 cpu_id=1
77813          <idle>-0     (-----) [002] ...1 24574.201810: cpu_idle: state=4294967295 cpu_id=2
77814          <idle>-0     (-----) [002] d..1 24574.201812: cpu_idle: state=0 cpu_id=2
77815<...>-24849 ( 24827) [000] d.h4 24574.202431: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
77816<...>-24849 ( 24827) [000] d.h5 24574.202447: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
77817<...>-24849 ( 24827) [000] d.h4 24574.202452: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
77818          <idle>-0     (-----) [001] .n.1 24574.202452: cpu_idle: state=4294967295 cpu_id=1
77819          <idle>-0     (-----) [001] d..2 24574.202459: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
77820<...>-24849 ( 24827) [000] d.h5 24574.202470: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
77821          <idle>-0     (-----) [002] .n.1 24574.202474: cpu_idle: state=4294967295 cpu_id=2
77822          <idle>-0     (-----) [002] d..2 24574.202481: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
77823  crtc_event:111-254   (  254) [001] d..2 24574.202487: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
77824          <idle>-0     (-----) [001] d..1 24574.202492: cpu_idle: state=0 cpu_id=1
77825 crtc_commit:111-253   (  253) [002] d..2 24574.202628: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
77826          <idle>-0     (-----) [002] d..1 24574.202632: cpu_idle: state=0 cpu_id=2
77827          <idle>-0     (-----) [002] d.s3 24574.204228: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
77828<...>-24849 ( 24827) [000] d.s1 24574.204231: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
77829          <idle>-0     (-----) [002] d.s4 24574.204238: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
77830          <idle>-0     (-----) [001] .n.1 24574.204243: cpu_idle: state=4294967295 cpu_id=1
77831          <idle>-0     (-----) [001] d..2 24574.204249: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
77832          <idle>-0     (-----) [002] ...1 24574.204256: cpu_idle: state=4294967295 cpu_id=2
77833<...>-24849 ( 24827) [000] d.s2 24574.204258: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
77834          <idle>-0     (-----) [002] d..1 24574.204259: cpu_idle: state=0 cpu_id=2
77835  crtc_event:111-254   (  254) [001] d..2 24574.204265: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
77836       rcu_sched-8     (    8) [001] d..2 24574.204282: 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
77837          <idle>-0     (-----) [001] d..1 24574.204286: cpu_idle: state=0 cpu_id=1
77838<...>-24849 ( 24827) [000] d.h4 24574.204771: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
77839<...>-24849 ( 24827) [000] d.h5 24574.204782: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
77840          <idle>-0     (-----) [002] .n.1 24574.204787: cpu_idle: state=4294967295 cpu_id=2
77841          <idle>-0     (-----) [002] d..2 24574.204792: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
77842 crtc_commit:111-253   (  253) [002] d..2 24574.204868: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
77843          <idle>-0     (-----) [002] d..1 24574.204874: cpu_idle: state=0 cpu_id=2
77844<...>-24849 ( 24827) [000] d.h4 24574.205058: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
77845<...>-24849 ( 24827) [000] d.h5 24574.205067: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
77846          <idle>-0     (-----) [001] .n.1 24574.205072: cpu_idle: state=4294967295 cpu_id=1
77847          <idle>-0     (-----) [001] d..2 24574.205076: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
77848  crtc_event:111-254   (  254) [001] d..2 24574.205089: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
77849          <idle>-0     (-----) [001] d..1 24574.205092: cpu_idle: state=0 cpu_id=1
77850<...>-24849 ( 24827) [000] d.h1 24574.205800: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
77851<...>-24849 ( 24827) [000] d.h2 24574.205821: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
77852          <idle>-0     (-----) [002] .n.1 24574.205826: cpu_idle: state=4294967295 cpu_id=2
77853          <idle>-0     (-----) [002] d..2 24574.205832: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
77854        DispSync-23904 (23896) [002] d..1 24574.205864: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
77855        DispSync-23904 (23896) [002] d..2 24574.205882: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
77856          <idle>-0     (-----) [001] .n.1 24574.205886: cpu_idle: state=4294967295 cpu_id=1
77857          <idle>-0     (-----) [001] d..2 24574.205890: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
77858        DispSync-23904 (23896) [002] d..2 24574.205906: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
77859          <idle>-0     (-----) [002] d..1 24574.205911: cpu_idle: state=0 cpu_id=2
77860   sfEventThread-23906 (23896) [001] d..3 24574.205942: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=006
77861   sfEventThread-23906 (23896) [001] d..4 24574.205965: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=002
77862          <idle>-0     (-----) [002] .n.1 24574.205970: cpu_idle: state=4294967295 cpu_id=2
77863   sfEventThread-23906 (23896) [001] d.h3 24574.205998: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
77864          <idle>-0     (-----) [002] d..2 24574.205999: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
77865   sfEventThread-23906 (23896) [001] d.h4 24574.206010: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
77866<...>-24041 ( 23968) [002] d..2 24574.206019: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
77867   sfEventThread-23906 (23896) [001] d..3 24574.206026: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
77868         sugov:0-559   (  559) [002] d..2 24574.206026: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
77869   sfEventThread-23906 (23896) [001] d..4 24574.206040: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
77870<...>-24041 ( 23968) [002] d..2 24574.206045: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
77871   sfEventThread-23906 (23896) [001] d..2 24574.206070: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
77872          <idle>-0     (-----) [001] d..1 24574.206076: cpu_idle: state=0 cpu_id=1
77873  surfaceflinger-23896 (23896) [002] d..2 24574.206566: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
77874  surfaceflinger-23896 (23896) [002] d..3 24574.206596: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
77875<...>-24849 ( 24827) [000] d..2 24574.206605: sched_switch: prev_comm=HeapTaskDaemon prev_pid=24849 prev_prio=124 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
77876         rcuop/2-29    (   29) [000] d..2 24574.206615: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=HeapTaskDaemon next_pid=24849 next_prio=124
77877  surfaceflinger-23896 (23896) [002] d..1 24574.206762: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
77878  surfaceflinger-23896 (23896) [002] d..2 24574.206773: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
77879          <idle>-0     (-----) [001] .n.1 24574.206778: cpu_idle: state=4294967295 cpu_id=1
77880          <idle>-0     (-----) [001] d..2 24574.206782: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
77881  surfaceflinger-23896 (23896) [002] d.h1 24574.206805: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
77882   sfEventThread-23906 (23896) [001] d..2 24574.206809: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
77883          <idle>-0     (-----) [001] d..1 24574.206813: cpu_idle: state=0 cpu_id=1
77884  surfaceflinger-23896 (23896) [002] d.h2 24574.206819: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
77885          <idle>-0     (-----) [001] .n.1 24574.206823: cpu_idle: state=4294967295 cpu_id=1
77886          <idle>-0     (-----) [001] d..2 24574.206827: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
77887        DispSync-23904 (23896) [001] d..1 24574.206837: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
77888        DispSync-23904 (23896) [001] d..2 24574.206849: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
77889<...>-24849 ( 24827) [000] d..2 24574.206858: sched_switch: prev_comm=HeapTaskDaemon prev_pid=24849 prev_prio=124 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
77890        DispSync-23904 (23896) [001] d..2 24574.206865: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
77891          <idle>-0     (-----) [001] d..1 24574.206870: cpu_idle: state=0 cpu_id=1
77892  appEventThread-23905 (23896) [000] d..3 24574.206910: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=004
77893  appEventThread-23905 (23896) [000] d..4 24574.206931: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
77894          <idle>-0     (-----) [001] .n.1 24574.206936: cpu_idle: state=4294967295 cpu_id=1
77895  appEventThread-23905 (23896) [000] d.h3 24574.206961: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
77896          <idle>-0     (-----) [001] d..2 24574.206962: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
77897  appEventThread-23905 (23896) [000] d.h4 24574.206974: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
77898 s.nexuslauncher-24827 (24827) [001] d..2 24574.206983: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
77899  appEventThread-23905 (23896) [000] d..3 24574.206988: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
77900         sugov:0-559   (  559) [001] d..2 24574.206991: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
77901          <idle>-0     (-----) [006] dnh2 24574.207007: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
77902          <idle>-0     (-----) [006] .n.1 24574.207010: cpu_idle: state=4294967295 cpu_id=6
77903  appEventThread-23905 (23896) [000] d..2 24574.207014: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=HeapTaskDaemon next_pid=24849 next_prio=124
77904          <idle>-0     (-----) [006] d..2 24574.207016: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
77905<...>-24151 ( 24151) [006] .... 24574.207221: binder_transaction: transaction=1670605 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
77906<...>-24151 ( 24151) [006] d..4 24574.207229: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
77907<...>-24151 ( 24151) [006] d..5 24574.207241: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
77908 s.nexuslauncher-24827 (24827) [001] .... 24574.207247: binder_transaction: transaction=1670606 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
77909          <idle>-0     (-----) [005] .n.1 24574.207248: cpu_idle: state=4294967295 cpu_id=5
77910 s.nexuslauncher-24827 (24827) [001] d..4 24574.207254: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
77911          <idle>-0     (-----) [005] d..2 24574.207254: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
77912<...>-24151 ( 24151) [006] d..3 24574.207268: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
77913  Binder:23896_4-24423 (23896) [005] .... 24574.207271: binder_transaction_received: transaction=1670605
77914          <idle>-0     (-----) [007] dnh2 24574.207277: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
77915  surfaceflinger-23896 (23896) [002] ...1 24574.207280: tracing_mark_write: B|23896|HIDL::IComposerClient::createLayer::client
77916<...>-24151 ( 24151) [006] d..4 24574.207280: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
77917          <idle>-0     (-----) [007] .n.1 24574.207283: cpu_idle: state=4294967295 cpu_id=7
77918  Binder:23896_4-24423 (23896) [005] d..1 24574.207284: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
77919  surfaceflinger-23896 (23896) [002] ...1 24574.207285: tracing_mark_write: E|23896
77920          <idle>-0     (-----) [007] d..2 24574.207289: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
77921 s.nexuslauncher-24827 (24827) [001] d..3 24574.207290: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
77922  Binder:23896_5-25989 (23896) [007] .... 24574.207294: binder_transaction_received: transaction=1670606
77923  Binder:23896_4-24423 (23896) [005] d..2 24574.207312: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
77924 s.nexuslauncher-24827 (24827) [001] dnh2 24574.207312: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
77925          <idle>-0     (-----) [004] dnh2 24574.207312: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=004
77926          <idle>-0     (-----) [004] .n.1 24574.207315: cpu_idle: state=4294967295 cpu_id=4
77927          <idle>-0     (-----) [005] d..1 24574.207317: cpu_idle: state=0 cpu_id=5
77928 s.nexuslauncher-24827 (24827) [001] d..2 24574.207319: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
77929          <idle>-0     (-----) [004] d..2 24574.207320: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
77930  surfaceflinger-23896 (23896) [002] .... 24574.207325: binder_transaction: transaction=1670607 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x5
77931  Binder:23896_5-25989 (23896) [007] d..2 24574.207326: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
77932  surfaceflinger-23896 (23896) [002] ...2 24574.207333: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
77933    RenderThread-25194 (24827) [004] d..2 24574.207339: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
77934  appEventThread-23905 (23896) [001] d..2 24574.207342: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
77935  surfaceflinger-23896 (23896) [002] d..4 24574.207343: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
77936          <idle>-0     (-----) [004] d..1 24574.207344: cpu_idle: state=0 cpu_id=4
77937    RenderThread-24437 (24151) [007] d..2 24574.207355: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
77938  surfaceflinger-23896 (23896) [002] d..5 24574.207360: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
77939          <idle>-0     (-----) [007] d..1 24574.207362: cpu_idle: state=0 cpu_id=7
77940 s.nexuslauncher-24827 (24827) [001] d..2 24574.207368: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
77941  surfaceflinger-23896 (23896) [002] d..2 24574.207371: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=110
77942  HwBinder:598_3-633   (  598) [001] .... 24574.207376: binder_transaction_received: transaction=1670607
77943<...>-24151 ( 24151) [006] d..3 24574.207413: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
77944  HwBinder:598_3-633   (  598) [001] ...1 24574.207421: tracing_mark_write: B|598|HIDL::IComposerClient::createLayer::server
77945<...>-24151 ( 24151) [006] d..4 24574.207424: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=007
77946          <idle>-0     (-----) [007] .n.1 24574.207428: cpu_idle: state=4294967295 cpu_id=7
77947          <idle>-0     (-----) [007] d..2 24574.207434: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
77948<...>-24151 ( 24151) [006] d..2 24574.207437: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
77949          <idle>-0     (-----) [006] d..1 24574.207445: cpu_idle: state=0 cpu_id=6
77950  HwBinder:598_3-633   (  598) [001] ...1 24574.207470: tracing_mark_write: E|598
77951  HwBinder:598_3-633   (  598) [001] .... 24574.207481: binder_transaction: transaction=1670608 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
77952  HwBinder:598_3-633   (  598) [001] d..2 24574.207486: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
77953  HwBinder:598_3-633   (  598) [001] d..3 24574.207497: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
77954<...>-24041 ( 23968) [002] d..2 24574.207503: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
77955  HwBinder:598_3-633   (  598) [001] .... 24574.207507: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
77956  surfaceflinger-23896 (23896) [002] .... 24574.207512: binder_transaction_received: transaction=1670608
77957    RenderThread-24437 (24151) [007] d..1 24574.207512: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
77958    RenderThread-24437 (24151) [007] d..2 24574.207520: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
77959          <idle>-0     (-----) [006] .n.1 24574.207525: cpu_idle: state=4294967295 cpu_id=6
77960          <idle>-0     (-----) [006] d..2 24574.207531: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
77961  HwBinder:598_3-633   (  598) [001] d..2 24574.207537: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
77962 s.nexuslauncher-24827 (24827) [001] d.s1 24574.207563: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
77963<...>-24849 ( 24827) [000] d.s2 24574.207570: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
77964 s.nexuslauncher-24827 (24827) [001] d.s2 24574.207584: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
77965    RenderThread-24437 (24151) [007] .... 24574.207585: binder_transaction: transaction=1670609 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
77966<...>-24151 ( 24151) [006] d..2 24574.207587: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
77967    RenderThread-24437 (24151) [007] d..4 24574.207588: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
77968 s.nexuslauncher-24827 (24827) [001] d.s2 24574.207592: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
77969<...>-24849 ( 24827) [000] d.s3 24574.207593: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
77970    RenderThread-24437 (24151) [007] dn.5 24574.207593: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
77971          <idle>-0     (-----) [006] d..1 24574.207594: cpu_idle: state=0 cpu_id=6
77972    RenderThread-24437 (24151) [007] d..2 24574.207597: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
77973 s.nexuslauncher-24827 (24827) [001] d.s3 24574.207600: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
77974  Binder:23896_5-25989 (23896) [007] .... 24574.207601: binder_transaction_received: transaction=1670609
77975  Binder:23896_5-25989 (23896) [007] .... 24574.207638: binder_transaction: transaction=1670610 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
77976  Binder:23896_5-25989 (23896) [007] d..2 24574.207658: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
77977    RenderThread-24437 (24151) [007] .... 24574.207661: binder_transaction_received: transaction=1670610
77978  surfaceflinger-23896 (23896) [002] ...1 24574.207747: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
77979  surfaceflinger-23896 (23896) [002] ...1 24574.207751: tracing_mark_write: E|23896
77980  surfaceflinger-23896 (23896) [002] .... 24574.207780: binder_transaction: transaction=1670611 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
77981  surfaceflinger-23896 (23896) [002] ...2 24574.207804: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
77982  surfaceflinger-23896 (23896) [002] d..4 24574.207807: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
77983  surfaceflinger-23896 (23896) [002] d..5 24574.207818: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
77984  surfaceflinger-23896 (23896) [002] d..2 24574.207828: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
77985 s.nexuslauncher-24827 (24827) [001] d..2 24574.207830: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
77986          <idle>-0     (-----) [006] ...1 24574.207830: cpu_idle: state=4294967295 cpu_id=6
77987          <idle>-0     (-----) [006] d..1 24574.207832: cpu_idle: state=0 cpu_id=6
77988  HwBinder:598_3-633   (  598) [001] .... 24574.207835: binder_transaction_received: transaction=1670611
77989     rcu_preempt-7     (    7) [002] d..2 24574.207840: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
77990  HwBinder:598_3-633   (  598) [001] ...1 24574.207858: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
77991  HwBinder:598_3-633   (  598) [001] ...1 24574.207932: tracing_mark_write: B|598|HIDL::IMapper::importBuffer::passthrough
77992  kworker/u16:15-18488 (18488) [002] d..2 24574.207953: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
77993          <idle>-0     (-----) [002] d..1 24574.207962: cpu_idle: state=0 cpu_id=2
77994  HwBinder:598_3-633   (  598) [001] ...1 24574.207972: tracing_mark_write: E|598
77995  HwBinder:598_3-633   (  598) [001] ...1 24574.208085: tracing_mark_write: B|598|HWCSession::PresentDisplay::
77996  HwBinder:598_3-633   (  598) [001] ...1 24574.208605: tracing_mark_write: B|598|HWDeviceDRM::Validate::
77997    RenderThread-24437 (24151) [007] .... 24574.209072: binder_transaction: transaction=1670612 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
77998    RenderThread-24437 (24151) [007] d..4 24574.209079: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
77999    RenderThread-24437 (24151) [007] dn.5 24574.209086: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
78000    RenderThread-24437 (24151) [007] d..2 24574.209090: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
78001  Binder:23896_5-25989 (23896) [007] .... 24574.209094: binder_transaction_received: transaction=1670612
78002  Binder:23896_5-25989 (23896) [007] .... 24574.209172: binder_transaction: transaction=1670613 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
78003  Binder:23896_5-25989 (23896) [007] d..2 24574.209188: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
78004    RenderThread-24437 (24151) [007] .... 24574.209192: binder_transaction_received: transaction=1670613
78005    RenderThread-24437 (24151) [007] d..2 24574.209232: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
78006          <idle>-0     (-----) [007] d..1 24574.209242: cpu_idle: state=0 cpu_id=7
78007  HwBinder:598_3-633   (  598) [001] ...1 24574.209283: tracing_mark_write: E|598
78008  HwBinder:598_3-633   (  598) [001] ...1 24574.209391: tracing_mark_write: B|598|HWDeviceDRM::Commit::
78009  HwBinder:598_3-633   (  598) [001] ...1 24574.209397: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
78010<...>-24849 ( 24827) [000] d.h2 24574.209442: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
78011<...>-24849 ( 24827) [000] d.h3 24574.209463: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
78012          <idle>-0     (-----) [002] .n.1 24574.209469: cpu_idle: state=4294967295 cpu_id=2
78013          <idle>-0     (-----) [002] d..2 24574.209476: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
78014 kgsl_worker_thr-246   (  246) [002] d..2 24574.209520: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
78015 kgsl_worker_thr-246   (  246) [002] d..3 24574.209532: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
78016 kgsl_worker_thr-246   (  246) [002] d..2 24574.209605: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
78017  kworker/u16:15-18488 (18488) [002] d..2 24574.209804: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78018          <idle>-0     (-----) [002] d..1 24574.209811: cpu_idle: state=0 cpu_id=2
78019  HwBinder:598_3-633   (  598) [001] d..2 24574.209852: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
78020  HwBinder:598_3-633   (  598) [001] d..3 24574.209866: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
78021          <idle>-0     (-----) [002] .n.1 24574.209872: cpu_idle: state=4294967295 cpu_id=2
78022          <idle>-0     (-----) [002] d..2 24574.209878: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
78023  HwBinder:598_3-633   (  598) [001] ...1 24574.209931: tracing_mark_write: E|598
78024  HwBinder:598_3-633   (  598) [001] ...1 24574.209934: tracing_mark_write: E|598
78025  HwBinder:598_3-633   (  598) [001] ...1 24574.209975: tracing_mark_write: E|598
78026  HwBinder:598_3-633   (  598) [001] ...1 24574.210016: tracing_mark_write: E|598
78027  HwBinder:598_3-633   (  598) [001] .... 24574.210027: binder_transaction: transaction=1670614 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
78028  HwBinder:598_3-633   (  598) [001] d..2 24574.210041: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
78029  HwBinder:598_3-633   (  598) [001] d..3 24574.210057: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
78030  HwBinder:598_3-633   (  598) [001] .... 24574.210060: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
78031<...>-24849 ( 24827) [000] d..2 24574.210068: sched_switch: prev_comm=HeapTaskDaemon prev_pid=24849 prev_prio=124 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
78032  surfaceflinger-23896 (23896) [000] .... 24574.210075: binder_transaction_received: transaction=1670614
78033  HwBinder:598_3-633   (  598) [001] d..2 24574.210108: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
78034       rcu_sched-8     (    8) [001] d..2 24574.210116: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=001
78035       rcu_sched-8     (    8) [001] d..3 24574.210141: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=002
78036       rcu_sched-8     (    8) [001] d..2 24574.210150: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
78037  surfaceflinger-23896 (23896) [000] d..1 24574.210452: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
78038  surfaceflinger-23896 (23896) [000] d..2 24574.210465: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
78039 s.nexuslauncher-24827 (24827) [001] d..2 24574.210476: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
78040  surfaceflinger-23896 (23896) [000] d..2 24574.210486: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=HeapTaskDaemon next_pid=24849 next_prio=124
78041        DispSync-23904 (23896) [001] d..2 24574.210499: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
78042 s.nexuslauncher-24827 (24827) [001] d..3 24574.210584: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=004
78043          <idle>-0     (-----) [005] dnh2 24574.210608: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
78044          <idle>-0     (-----) [005] .n.1 24574.210611: cpu_idle: state=4294967295 cpu_id=5
78045          <idle>-0     (-----) [005] d..2 24574.210616: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
78046 s.nexuslauncher-24827 (24827) [001] d..2 24574.210618: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
78047          <idle>-0     (-----) [001] d..1 24574.210636: cpu_idle: state=0 cpu_id=1
78048    RenderThread-25194 (24827) [005] d..1 24574.210704: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
78049          <idle>-0     (-----) [001] dnh2 24574.210723: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
78050          <idle>-0     (-----) [001] .n.1 24574.210727: cpu_idle: state=4294967295 cpu_id=1
78051    RenderThread-25194 (24827) [005] d..1 24574.210727: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=006
78052          <idle>-0     (-----) [001] d..2 24574.210733: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
78053    RenderThread-25194 (24827) [005] d..2 24574.210738: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=006
78054          <idle>-0     (-----) [006] .n.1 24574.210742: cpu_idle: state=4294967295 cpu_id=6
78055          <idle>-0     (-----) [006] d..2 24574.210747: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
78056    RenderThread-25194 (24827) [005] .... 24574.210781: binder_transaction: transaction=1670615 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
78057    RenderThread-25194 (24827) [005] ...2 24574.210785: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
78058    RenderThread-25194 (24827) [005] d..4 24574.210788: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=007
78059    RenderThread-25194 (24827) [005] dn.5 24574.210797: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
78060    RenderThread-25194 (24827) [005] d..2 24574.210801: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
78061 s.nexuslauncher-24827 (24827) [001] d..2 24574.210804: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
78062  Binder:23896_5-25989 (23896) [005] .... 24574.210804: binder_transaction_received: transaction=1670615
78063          <idle>-0     (-----) [001] d..1 24574.210812: cpu_idle: state=0 cpu_id=1
78064  Binder:23896_5-25989 (23896) [005] .... 24574.210836: binder_transaction: transaction=1670616 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
78065<...>-24849 ( 24827) [000] d.s2 24574.210907: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
78066  Binder:23896_5-25989 (23896) [005] .... 24574.210916: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
78067<...>-24849 ( 24827) [000] d.s3 24574.210919: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
78068  Binder:23896_5-25989 (23896) [005] d..2 24574.210935: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
78069    RenderThread-25194 (24827) [005] .... 24574.210939: binder_transaction_received: transaction=1670616
78070<...>-27853 ( 24827) [006] .... 24574.210958: binder_transaction: transaction=1670617 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
78071<...>-27853 ( 24827) [006] ...2 24574.210970: binder_set_priority: proc=23896 thread=25989 old=120 => new=118 desired=118
78072<...>-27853 ( 24827) [006] d..4 24574.210971: sched_waking: comm=Binder:23896_5 pid=25989 prio=118 target_cpu=005
78073<...>-27853 ( 24827) [006] d..5 24574.210981: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=118 target_cpu=006
78074<...>-27853 ( 24827) [006] d..2 24574.210988: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=118
78075  Binder:23896_5-25989 (23896) [006] .... 24574.210991: binder_transaction_received: transaction=1670617
78076  Binder:23896_5-25989 (23896) [006] d..1 24574.211053: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
78077  Binder:23896_5-25989 (23896) [006] .... 24574.211068: binder_transaction: transaction=1670618 dest_node=0 dest_proc=24827 dest_thread=27853 reply=1 flags=0x0 code=0x0
78078          <idle>-0     (-----) [001] dnh2 24574.211069: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
78079  Binder:23896_5-25989 (23896) [006] d..2 24574.211071: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=006
78080          <idle>-0     (-----) [001] .n.1 24574.211073: cpu_idle: state=4294967295 cpu_id=1
78081  Binder:23896_5-25989 (23896) [006] d..3 24574.211076: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=006
78082  Binder:23896_5-25989 (23896) [006] .... 24574.211077: binder_set_priority: proc=23896 thread=25989 old=118 => new=120 desired=120
78083          <idle>-0     (-----) [001] d..2 24574.211079: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
78084  Binder:23896_5-25989 (23896) [006] d..2 24574.211099: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
78085        DispSync-23904 (23896) [001] d..2 24574.211100: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
78086<...>-27853 ( 24827) [006] .... 24574.211102: binder_transaction_received: transaction=1670618
78087          <idle>-0     (-----) [001] d..1 24574.211107: cpu_idle: state=0 cpu_id=1
78088<...>-27853 ( 24827) [006] d..2 24574.211132: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
78089          <idle>-0     (-----) [006] d..1 24574.211141: cpu_idle: state=0 cpu_id=6
78090    RenderThread-25194 (24827) [005] .... 24574.211887: binder_transaction: transaction=1670619 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
78091    RenderThread-25194 (24827) [005] ...2 24574.211893: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
78092    RenderThread-25194 (24827) [005] d..4 24574.211894: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=006
78093    RenderThread-25194 (24827) [005] dn.5 24574.211905: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
78094    RenderThread-25194 (24827) [005] d..2 24574.211909: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
78095  Binder:23896_5-25989 (23896) [005] .... 24574.211913: binder_transaction_received: transaction=1670619
78096  Binder:23896_5-25989 (23896) [005] .... 24574.211971: binder_transaction: transaction=1670620 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
78097  Binder:23896_5-25989 (23896) [005] .... 24574.211974: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
78098  Binder:23896_5-25989 (23896) [005] d..2 24574.211993: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
78099    RenderThread-25194 (24827) [005] .... 24574.211997: binder_transaction_received: transaction=1670620
78100    RenderThread-25194 (24827) [005] d..2 24574.212049: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
78101          <idle>-0     (-----) [005] d..1 24574.212059: cpu_idle: state=0 cpu_id=5
78102          <idle>-0     (-----) [001] ...1 24574.212336: cpu_idle: state=4294967295 cpu_id=1
78103          <idle>-0     (-----) [001] d..1 24574.212338: cpu_idle: state=0 cpu_id=1
78104 crtc_commit:111-253   (  253) [002] d..2 24574.212448: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcuos/0 next_pid=11 next_prio=120
78105<...>-11 ( 11) [002] d..2 24574.212455: sched_waking: comm=rcuos/1 pid=22 prio=120 target_cpu=000
78106<...>-11 ( 11) [002] d..3 24574.212487: sched_wakeup: comm=rcuos/1 pid=22 prio=120 target_cpu=001
78107          <idle>-0     (-----) [001] .n.1 24574.212491: cpu_idle: state=4294967295 cpu_id=1
78108<...>-11 ( 11) [002] d..2 24574.212496: sched_switch: prev_comm=rcuos/0 prev_pid=11 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
78109          <idle>-0     (-----) [001] d..2 24574.212497: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuos/1 next_pid=22 next_prio=120
78110<...>-22 ( 22) [001] d..2 24574.212518: sched_switch: prev_comm=rcuos/1 prev_pid=22 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
78111          <idle>-0     (-----) [001] d..1 24574.212523: cpu_idle: state=0 cpu_id=1
78112  kworker/u16:15-18488 (18488) [002] d..2 24574.212704: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
78113          <idle>-0     (-----) [002] d..1 24574.212710: cpu_idle: state=0 cpu_id=2
78114<...>-24168 ( 24151) [003] d.s2 24574.212740: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
78115<...>-24168 ( 24151) [003] d.s3 24574.212767: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
78116<...>-24168 ( 24151) [003] d.s3 24574.212775: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
78117          <idle>-0     (-----) [001] .n.1 24574.212779: cpu_idle: state=4294967295 cpu_id=1
78118          <idle>-0     (-----) [001] d..2 24574.212785: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
78119  kworker/u16:15-18488 (18488) [001] .... 24574.212828: clk_set_rate: l3_cluster1_vote_clk 300000000
78120  kworker/u16:15-18488 (18488) [001] d..2 24574.212942: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
78121          <idle>-0     (-----) [001] d..1 24574.212949: cpu_idle: state=0 cpu_id=1
78122<...>-24168 ( 24151) [003] d.s2 24574.212965: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
78123<...>-24168 ( 24151) [003] d.s3 24574.212971: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
78124<...>-24168 ( 24151) [003] d.s3 24574.212977: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
78125          <idle>-0     (-----) [001] .n.1 24574.212982: cpu_idle: state=4294967295 cpu_id=1
78126          <idle>-0     (-----) [001] d..2 24574.212989: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
78127<...>-24849 ( 24827) [000] d.h2 24574.213032: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
78128<...>-24849 ( 24827) [000] d.h3 24574.213045: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
78129          <idle>-0     (-----) [002] .n.1 24574.213050: cpu_idle: state=4294967295 cpu_id=2
78130          <idle>-0     (-----) [002] d..2 24574.213054: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
78131  kworker/u16:15-18488 (18488) [001] d..2 24574.213103: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
78132 kgsl_worker_thr-246   (  246) [002] d..2 24574.213104: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78133          <idle>-0     (-----) [002] d..1 24574.213108: cpu_idle: state=0 cpu_id=2
78134          <idle>-0     (-----) [001] d..1 24574.213110: cpu_idle: state=0 cpu_id=1
78135<...>-24168 ( 24151) [003] d.s2 24574.213955: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
78136<...>-24168 ( 24151) [003] d.s3 24574.213962: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
78137<...>-24168 ( 24151) [003] d.s3 24574.213968: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
78138          <idle>-0     (-----) [001] .n.1 24574.213973: cpu_idle: state=4294967295 cpu_id=1
78139          <idle>-0     (-----) [001] d..2 24574.213978: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
78140  kworker/u16:15-18488 (18488) [001] d..2 24574.213993: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
78141          <idle>-0     (-----) [001] d..1 24574.213998: cpu_idle: state=0 cpu_id=1
78142          <idle>-0     (-----) [002] d.s2 24574.214230: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
78143          <idle>-0     (-----) [002] dns3 24574.214241: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
78144          <idle>-0     (-----) [002] .n.1 24574.214247: cpu_idle: state=4294967295 cpu_id=2
78145          <idle>-0     (-----) [002] d..2 24574.214252: 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
78146     rcu_preempt-7     (    7) [002] d..2 24574.214260: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
78147     rcu_preempt-7     (    7) [002] d..3 24574.214284: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
78148     rcu_preempt-7     (    7) [002] d..2 24574.214295: 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
78149         rcuop/0-10    (   10) [002] d..2 24574.214300: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
78150         rcuop/0-10    (   10) [002] d..3 24574.214320: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
78151         rcuop/0-10    (   10) [002] d..2 24574.214333: 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
78152         rcuop/1-21    (   21) [002] d..2 24574.215042: 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
78153          <idle>-0     (-----) [002] d..1 24574.215049: cpu_idle: state=0 cpu_id=2
78154          <idle>-0     (-----) [001] ...1 24574.215559: cpu_idle: state=4294967295 cpu_id=1
78155          <idle>-0     (-----) [001] d..1 24574.215561: cpu_idle: state=0 cpu_id=1
78156<...>-24168 ( 24151) [003] d.h2 24574.217570: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
78157<...>-24849 ( 24827) [000] d.h2 24574.217573: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
78158<...>-24168 ( 24151) [003] dnh3 24574.217578: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
78159<...>-24849 ( 24827) [000] dnh3 24574.217580: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
78160<...>-24849 ( 24827) [000] dns2 24574.217589: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
78161<...>-24849 ( 24827) [000] dns3 24574.217634: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
78162<...>-24168 ( 24151) [003] dnH2 24574.217640: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
78163<...>-24849 ( 24827) [000] d..2 24574.217642: sched_switch: prev_comm=HeapTaskDaemon prev_pid=24849 prev_prio=124 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
78164<...>-24168 ( 24151) [003] dnH2 24574.217650: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
78165          <idle>-0     (-----) [004] dnh2 24574.217655: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
78166          <idle>-0     (-----) [004] .n.1 24574.217657: cpu_idle: state=4294967295 cpu_id=4
78167          <idle>-0     (-----) [004] d..2 24574.217662: 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
78168          <idle>-0     (-----) [001] .n.1 24574.217667: cpu_idle: state=4294967295 cpu_id=1
78169<...>-24168 ( 24151) [003] dnH3 24574.217668: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
78170         sugov:4-560   (  560) [004] .... 24574.217673: clk_set_rate: perfcl_clk 902400000
78171         sugov:4-560   (  560) [004] .... 24574.217673: clk_set_rate: cpu7_perfcl_clk 1459200000
78172          <idle>-0     (-----) [001] d..2 24574.217675: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
78173         sugov:4-560   (  560) [004] .... 24574.217678: clk_set_rate: cpu6_perfcl_clk 1459200000
78174<...>-24168 ( 24151) [003] d..2 24574.217678: sched_switch: prev_comm=HeapTaskDaemon prev_pid=24168 prev_prio=124 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
78175         sugov:4-560   (  560) [004] .... 24574.217683: clk_set_rate: cpu5_perfcl_clk 1459200000
78176         sugov:4-560   (  560) [004] .... 24574.217687: clk_set_rate: cpu4_perfcl_clk 902400000
78177     migration/0-13    (   13) [000] d..2 24574.217689: 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
78178         sugov:4-560   (  560) [004] .... 24574.217691: cpu_frequency: state=902400 cpu_id=4
78179         sugov:4-560   (  560) [004] .... 24574.217696: cpu_frequency: state=902400 cpu_id=5
78180         sugov:4-560   (  560) [004] .... 24574.217698: cpu_frequency: state=902400 cpu_id=6
78181         sugov:4-560   (  560) [004] .... 24574.217701: cpu_frequency: state=902400 cpu_id=7
78182         sugov:0-559   (  559) [000] d..2 24574.217704: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=HeapTaskDaemon next_pid=24849 next_prio=124
78183          <idle>-0     (-----) [006] .n.1 24574.217705: cpu_idle: state=4294967295 cpu_id=6
78184          <idle>-0     (-----) [006] d..2 24574.217730: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=24168 next_prio=124
78185         sugov:4-560   (  560) [004] d..3 24574.217734: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
78186<...>-33 ( 33) [003] d..2 24574.217741: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78187<...>-24849 ( 24827) [000] dnh1 24574.217745: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
78188         sugov:4-560   (  560) [004] d..2 24574.217747: 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
78189<...>-24849 ( 24827) [000] d..2 24574.217751: sched_switch: prev_comm=HeapTaskDaemon prev_pid=24849 prev_prio=124 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
78190          <idle>-0     (-----) [004] d..1 24574.217758: cpu_idle: state=0 cpu_id=4
78191          <idle>-0     (-----) [004] .n.1 24574.217774: cpu_idle: state=4294967295 cpu_id=4
78192          <idle>-0     (-----) [003] d..1 24574.217776: cpu_idle: state=0 cpu_id=3
78193          <idle>-0     (-----) [004] d..2 24574.217792: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=24849 next_prio=124
78194  kworker/u16:15-18488 (18488) [001] d..2 24574.217800: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
78195     migration/0-13    (   13) [000] d..2 24574.217801: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78196          <idle>-0     (-----) [001] d..1 24574.217805: cpu_idle: state=0 cpu_id=1
78197          <idle>-0     (-----) [000] d..1 24574.217817: cpu_idle: state=0 cpu_id=0
78198          <idle>-0     (-----) [003] ...1 24574.218886: cpu_idle: state=4294967295 cpu_id=3
78199          <idle>-0     (-----) [003] d..1 24574.218889: cpu_idle: state=0 cpu_id=3
78200          <idle>-0     (-----) [000] d.h5 24574.218900: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
78201          <idle>-0     (-----) [000] d.h6 24574.218912: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
78202          <idle>-0     (-----) [001] .n.1 24574.218916: cpu_idle: state=4294967295 cpu_id=1
78203          <idle>-0     (-----) [000] d.h5 24574.218916: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
78204          <idle>-0     (-----) [001] d..2 24574.218922: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
78205          <idle>-0     (-----) [000] d.h6 24574.218924: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
78206          <idle>-0     (-----) [002] .n.1 24574.218930: cpu_idle: state=4294967295 cpu_id=2
78207          <idle>-0     (-----) [000] ...1 24574.218935: cpu_idle: state=4294967295 cpu_id=0
78208          <idle>-0     (-----) [002] d..2 24574.218936: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
78209          <idle>-0     (-----) [000] d..1 24574.218938: cpu_idle: state=0 cpu_id=0
78210  crtc_event:111-254   (  254) [001] d..2 24574.218947: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
78211          <idle>-0     (-----) [001] d..1 24574.218951: cpu_idle: state=0 cpu_id=1
78212 crtc_commit:111-253   (  253) [002] d..2 24574.219063: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
78213          <idle>-0     (-----) [002] d..1 24574.219067: cpu_idle: state=0 cpu_id=2
78214          <idle>-0     (-----) [002] d.s3 24574.220896: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
78215<...>-24168 ( 24151) [006] d.s2 24574.220904: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
78216          <idle>-0     (-----) [002] d.s4 24574.220907: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
78217          <idle>-0     (-----) [001] .n.1 24574.220911: cpu_idle: state=4294967295 cpu_id=1
78218          <idle>-0     (-----) [002] d.s2 24574.220911: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
78219          <idle>-0     (-----) [001] d..2 24574.220917: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
78220          <idle>-0     (-----) [002] dns3 24574.220923: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
78221  crtc_event:111-254   (  254) [001] d.h1 24574.220926: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
78222          <idle>-0     (-----) [002] .n.1 24574.220934: cpu_idle: state=4294967295 cpu_id=2
78223  crtc_event:111-254   (  254) [001] d..2 24574.220936: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
78224          <idle>-0     (-----) [002] d..2 24574.220939: 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
78225     rcu_preempt-7     (    7) [002] d..2 24574.220956: 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
78226          <idle>-0     (-----) [002] d..1 24574.220963: cpu_idle: state=0 cpu_id=2
78227  kworker/u16:15-18488 (18488) [001] d..2 24574.221110: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
78228          <idle>-0     (-----) [001] d..1 24574.221115: cpu_idle: state=0 cpu_id=1
78229          <idle>-0     (-----) [003] d.s3 24574.221140: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
78230          <idle>-0     (-----) [003] d.s4 24574.221160: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
78231          <idle>-0     (-----) [003] dns4 24574.221164: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
78232          <idle>-0     (-----) [003] .n.1 24574.221191: cpu_idle: state=4294967295 cpu_id=3
78233          <idle>-0     (-----) [003] d..2 24574.221198: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
78234          <idle>-0     (-----) [000] d.h5 24574.221247: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
78235          <idle>-0     (-----) [000] d.h6 24574.221256: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
78236          <idle>-0     (-----) [002] .n.1 24574.221261: cpu_idle: state=4294967295 cpu_id=2
78237          <idle>-0     (-----) [000] ...1 24574.221264: cpu_idle: state=4294967295 cpu_id=0
78238          <idle>-0     (-----) [002] d..2 24574.221266: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
78239          <idle>-0     (-----) [000] d..1 24574.221268: cpu_idle: state=0 cpu_id=0
78240  kworker/u16:15-18488 (18488) [003] .... 24574.221268: clk_set_rate: l3_cluster1_vote_clk 576000000
78241  kworker/u16:15-18488 (18488) [003] d..2 24574.221316: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78242          <idle>-0     (-----) [003] d..1 24574.221323: cpu_idle: state=0 cpu_id=3
78243 crtc_commit:111-253   (  253) [002] d..2 24574.221342: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78244          <idle>-0     (-----) [002] d..1 24574.221349: cpu_idle: state=0 cpu_id=2
78245          <idle>-0     (-----) [000] d.h5 24574.221532: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
78246          <idle>-0     (-----) [000] d.h6 24574.221541: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
78247          <idle>-0     (-----) [001] .n.1 24574.221545: cpu_idle: state=4294967295 cpu_id=1
78248          <idle>-0     (-----) [001] d..2 24574.221550: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
78249          <idle>-0     (-----) [000] ...1 24574.221553: cpu_idle: state=4294967295 cpu_id=0
78250          <idle>-0     (-----) [000] d..1 24574.221556: cpu_idle: state=0 cpu_id=0
78251  crtc_event:111-254   (  254) [001] d..2 24574.221565: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
78252          <idle>-0     (-----) [001] d..1 24574.221569: cpu_idle: state=0 cpu_id=1
78253          <idle>-0     (-----) [001] d.h2 24574.222240: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
78254          <idle>-0     (-----) [001] dnh3 24574.222249: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
78255          <idle>-0     (-----) [001] .n.1 24574.222253: cpu_idle: state=4294967295 cpu_id=1
78256          <idle>-0     (-----) [001] d..2 24574.222259: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
78257        DispSync-23904 (23896) [001] d..1 24574.222280: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
78258        DispSync-23904 (23896) [001] d..2 24574.222296: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
78259          <idle>-0     (-----) [000] .n.1 24574.222300: cpu_idle: state=4294967295 cpu_id=0
78260          <idle>-0     (-----) [000] d..2 24574.222307: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
78261        DispSync-23904 (23896) [001] d..2 24574.222318: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
78262          <idle>-0     (-----) [001] d..1 24574.222323: cpu_idle: state=0 cpu_id=1
78263   sfEventThread-23906 (23896) [000] d..3 24574.222363: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
78264   sfEventThread-23906 (23896) [000] d..4 24574.222381: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
78265          <idle>-0     (-----) [001] .n.1 24574.222385: cpu_idle: state=4294967295 cpu_id=1
78266          <idle>-0     (-----) [001] d..2 24574.222390: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
78267   sfEventThread-23906 (23896) [000] d..2 24574.222402: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78268          <idle>-0     (-----) [000] d..1 24574.222410: cpu_idle: state=0 cpu_id=0
78269          <idle>-0     (-----) [003] ...1 24574.222433: cpu_idle: state=4294967295 cpu_id=3
78270          <idle>-0     (-----) [003] d..1 24574.222436: cpu_idle: state=0 cpu_id=3
78271  surfaceflinger-23896 (23896) [001] d..1 24574.222980: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
78272  surfaceflinger-23896 (23896) [001] d..2 24574.222992: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
78273          <idle>-0     (-----) [000] .n.1 24574.222997: cpu_idle: state=4294967295 cpu_id=0
78274          <idle>-0     (-----) [000] d..2 24574.223002: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
78275   sfEventThread-23906 (23896) [000] d..2 24574.223025: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78276          <idle>-0     (-----) [000] d..1 24574.223031: cpu_idle: state=0 cpu_id=0
78277  surfaceflinger-23896 (23896) [001] d.h1 24574.223273: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
78278  surfaceflinger-23896 (23896) [001] d.h2 24574.223288: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
78279          <idle>-0     (-----) [000] .n.1 24574.223293: cpu_idle: state=4294967295 cpu_id=0
78280          <idle>-0     (-----) [000] d..2 24574.223298: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
78281        DispSync-23904 (23896) [000] d..1 24574.223308: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
78282        DispSync-23904 (23896) [000] d..2 24574.223324: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
78283          <idle>-0     (-----) [002] .n.1 24574.223328: cpu_idle: state=4294967295 cpu_id=2
78284          <idle>-0     (-----) [002] d..2 24574.223334: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
78285        DispSync-23904 (23896) [000] d..2 24574.223339: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78286          <idle>-0     (-----) [000] d..1 24574.223345: cpu_idle: state=0 cpu_id=0
78287  appEventThread-23905 (23896) [002] d..3 24574.223375: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
78288  appEventThread-23905 (23896) [002] d..4 24574.223395: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
78289          <idle>-0     (-----) [000] .n.1 24574.223400: cpu_idle: state=4294967295 cpu_id=0
78290  appEventThread-23905 (23896) [002] d..3 24574.223406: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
78291          <idle>-0     (-----) [000] d..2 24574.223407: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
78292  appEventThread-23905 (23896) [002] d..4 24574.223427: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
78293          <idle>-0     (-----) [003] .n.1 24574.223432: cpu_idle: state=4294967295 cpu_id=3
78294  appEventThread-23905 (23896) [002] d.h3 24574.223461: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
78295          <idle>-0     (-----) [003] d..2 24574.223462: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
78296          <idle>-0     (-----) [007] dnh2 24574.223485: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
78297          <idle>-0     (-----) [007] .n.1 24574.223489: cpu_idle: state=4294967295 cpu_id=7
78298  appEventThread-23905 (23896) [002] d..2 24574.223494: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78299          <idle>-0     (-----) [007] d..2 24574.223496: 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
78300          <idle>-0     (-----) [002] d..1 24574.223501: cpu_idle: state=0 cpu_id=2
78301         sugov:4-560   (  560) [007] .... 24574.223519: clk_set_rate: perfcl_clk 1459200000
78302         sugov:4-560   (  560) [007] .... 24574.223520: clk_set_rate: cpu7_perfcl_clk 902400000
78303         sugov:4-560   (  560) [007] .... 24574.223526: clk_set_rate: cpu6_perfcl_clk 902400000
78304         sugov:4-560   (  560) [007] .... 24574.223531: clk_set_rate: cpu5_perfcl_clk 902400000
78305         sugov:4-560   (  560) [007] .... 24574.223536: clk_set_rate: cpu4_perfcl_clk 1459200000
78306         sugov:4-560   (  560) [007] .... 24574.223542: cpu_frequency: state=1459200 cpu_id=4
78307         sugov:4-560   (  560) [007] .... 24574.223554: cpu_frequency: state=1459200 cpu_id=5
78308         sugov:4-560   (  560) [007] .... 24574.223557: cpu_frequency: state=1459200 cpu_id=6
78309         sugov:4-560   (  560) [007] .... 24574.223559: cpu_frequency: state=1459200 cpu_id=7
78310         sugov:4-560   (  560) [007] d..2 24574.223574: 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
78311          <idle>-0     (-----) [007] d..1 24574.223580: cpu_idle: state=0 cpu_id=7
78312  surfaceflinger-23896 (23896) [001] ...1 24574.223636: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
78313  surfaceflinger-23896 (23896) [001] ...1 24574.223642: tracing_mark_write: E|23896
78314 s.nexuslauncher-24827 (24827) [000] .... 24574.223678: binder_transaction: transaction=1670621 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
78315<...>-24151 ( 24151) [003] .... 24574.223678: binder_transaction: transaction=1670622 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
78316<...>-24151 ( 24151) [003] d..4 24574.223691: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
78317  surfaceflinger-23896 (23896) [001] .... 24574.223693: binder_transaction: transaction=1670623 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
78318<...>-24151 ( 24151) [003] d..5 24574.223715: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
78319          <idle>-0     (-----) [002] .n.1 24574.223719: cpu_idle: state=4294967295 cpu_id=2
78320  surfaceflinger-23896 (23896) [001] ...2 24574.223724: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
78321 s.nexuslauncher-24827 (24827) [000] d..4 24574.223745: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
78322          <idle>-0     (-----) [002] d..2 24574.223745: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
78323  surfaceflinger-23896 (23896) [001] d..4 24574.223746: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
78324  surfaceflinger-23896 (23896) [001] d..5 24574.223765: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
78325          <idle>-0     (-----) [005] dnh2 24574.223769: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
78326  Binder:23896_5-25989 (23896) [002] d..2 24574.223770: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
78327          <idle>-0     (-----) [005] .n.1 24574.223773: cpu_idle: state=4294967295 cpu_id=5
78328          <idle>-0     (-----) [005] d..2 24574.223779: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
78329  HwBinder:598_3-633   (  598) [002] .... 24574.223783: binder_transaction_received: transaction=1670623
78330  Binder:23896_4-24423 (23896) [005] .... 24574.223783: binder_transaction_received: transaction=1670621
78331 s.nexuslauncher-24827 (24827) [000] d..3 24574.223789: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
78332<...>-24151 ( 24151) [003] d..3 24574.223790: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=007
78333  surfaceflinger-23896 (23896) [001] d..2 24574.223790: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
78334          <idle>-0     (-----) [001] d..1 24574.223801: cpu_idle: state=0 cpu_id=1
78335  Binder:23896_4-24423 (23896) [005] d..1 24574.223803: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
78336 s.nexuslauncher-24827 (24827) [000] d..4 24574.223814: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
78337          <idle>-0     (-----) [001] .n.1 24574.223820: cpu_idle: state=4294967295 cpu_id=1
78338<...>-24151 ( 24151) [003] d..4 24574.223822: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=001
78339          <idle>-0     (-----) [001] dn.2 24574.223825: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
78340  HwBinder:598_3-633   (  598) [002] ...1 24574.223832: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
78341          <idle>-0     (-----) [001] d..2 24574.223850: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
78342  Binder:23896_4-24423 (23896) [005] d..2 24574.223856: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
78343          <idle>-0     (-----) [005] d..1 24574.223862: cpu_idle: state=0 cpu_id=5
78344  appEventThread-23905 (23896) [001] d..2 24574.223872: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
78345  HwBinder:598_3-633   (  598) [002] ...1 24574.223892: tracing_mark_write: B|598|HIDL::IMapper::importBuffer::passthrough
78346    RenderThread-25194 (24827) [001] d..2 24574.223901: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
78347  HwBinder:598_3-633   (  598) [002] ...1 24574.223926: tracing_mark_write: E|598
78348    RenderThread-24437 (24151) [001] d..2 24574.223931: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
78349          <idle>-0     (-----) [001] d..1 24574.223940: cpu_idle: state=0 cpu_id=1
78350<...>-24151 ( 24151) [003] d..3 24574.223978: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=001
78351<...>-24151 ( 24151) [003] d..4 24574.223989: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=001
78352          <idle>-0     (-----) [001] .n.1 24574.223994: cpu_idle: state=4294967295 cpu_id=1
78353          <idle>-0     (-----) [001] d..2 24574.224001: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
78354<...>-24151 ( 24151) [003] d..2 24574.224007: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78355          <idle>-0     (-----) [003] d..1 24574.224018: cpu_idle: state=0 cpu_id=3
78356  HwBinder:598_3-633   (  598) [002] ...1 24574.224024: tracing_mark_write: B|598|HWCSession::PresentDisplay::
78357    RenderThread-24437 (24151) [001] d..1 24574.224118: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
78358    RenderThread-24437 (24151) [001] d..2 24574.224132: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
78359          <idle>-0     (-----) [003] .n.1 24574.224137: cpu_idle: state=4294967295 cpu_id=3
78360          <idle>-0     (-----) [003] d..2 24574.224144: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
78361    RenderThread-24437 (24151) [001] .... 24574.224183: binder_transaction: transaction=1670624 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
78362    RenderThread-24437 (24151) [001] d..4 24574.224187: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
78363<...>-24151 ( 24151) [003] d..2 24574.224196: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78364    RenderThread-24437 (24151) [001] dn.5 24574.224203: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
78365          <idle>-0     (-----) [003] d..1 24574.224203: cpu_idle: state=0 cpu_id=3
78366    RenderThread-24437 (24151) [001] dnH5 24574.224250: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
78367 s.nexuslauncher-24827 (24827) [000] d..3 24574.224252: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
78368          <idle>-0     (-----) [007] dnh2 24574.224265: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
78369          <idle>-0     (-----) [007] .n.1 24574.224267: cpu_idle: state=4294967295 cpu_id=7
78370 s.nexuslauncher-24827 (24827) [000] d..4 24574.224270: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=003
78371          <idle>-0     (-----) [007] d..2 24574.224271: 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
78372    RenderThread-24437 (24151) [001] d..2 24574.224271: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
78373          <idle>-0     (-----) [003] .n.1 24574.224274: cpu_idle: state=4294967295 cpu_id=3
78374  Binder:23896_4-24423 (23896) [001] .... 24574.224277: binder_transaction_received: transaction=1670624
78375         sugov:4-560   (  560) [007] d..2 24574.224279: 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
78376          <idle>-0     (-----) [003] d..2 24574.224281: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
78377          <idle>-0     (-----) [007] d..1 24574.224283: cpu_idle: state=0 cpu_id=7
78378 s.nexuslauncher-24827 (24827) [000] d..2 24574.224287: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78379          <idle>-0     (-----) [000] d..1 24574.224298: cpu_idle: state=0 cpu_id=0
78380  Binder:23896_4-24423 (23896) [001] .... 24574.224333: binder_transaction: transaction=1670625 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
78381  Binder:23896_4-24423 (23896) [001] d..2 24574.224372: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
78382    RenderThread-24437 (24151) [001] .... 24574.224377: binder_transaction_received: transaction=1670625
78383    RenderThread-25194 (24827) [003] d..1 24574.224408: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
78384    RenderThread-25194 (24827) [003] d..2 24574.224421: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
78385          <idle>-0     (-----) [000] .n.1 24574.224426: cpu_idle: state=4294967295 cpu_id=0
78386          <idle>-0     (-----) [000] d..2 24574.224433: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
78387    RenderThread-25194 (24827) [003] d..1 24574.224438: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=006
78388          <idle>-0     (-----) [005] dnh2 24574.224463: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
78389          <idle>-0     (-----) [005] .n.1 24574.224466: cpu_idle: state=4294967295 cpu_id=5
78390          <idle>-0     (-----) [005] d..2 24574.224470: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
78391 s.nexuslauncher-24827 (24827) [000] d..2 24574.224539: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78392    RenderThread-25194 (24827) [003] .... 24574.224546: binder_transaction: transaction=1670626 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
78393    RenderThread-25194 (24827) [003] ...2 24574.224565: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
78394          <idle>-0     (-----) [000] d..1 24574.224570: cpu_idle: state=0 cpu_id=0
78395    RenderThread-25194 (24827) [003] d..4 24574.224576: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
78396  HwBinder:598_3-633   (  598) [002] ...1 24574.224610: tracing_mark_write: B|598|HWDeviceDRM::Validate::
78397    RenderThread-25194 (24827) [003] d..5 24574.224650: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=003
78398    RenderThread-25194 (24827) [003] d..2 24574.224696: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
78399  Binder:23896_4-24423 (23896) [003] .... 24574.224736: binder_transaction_received: transaction=1670626
78400  Binder:23896_4-24423 (23896) [003] .... 24574.224820: binder_transaction: transaction=1670627 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
78401  Binder:23896_4-24423 (23896) [003] d..2 24574.224827: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=003
78402  Binder:23896_4-24423 (23896) [003] dn.3 24574.224835: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=003
78403  Binder:23896_4-24423 (23896) [003] d..2 24574.224840: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
78404    RenderThread-25194 (24827) [003] .... 24574.224844: binder_transaction_received: transaction=1670627
78405<...>-27853 ( 24827) [005] .... 24574.224904: binder_transaction: transaction=1670628 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
78406<...>-27853 ( 24827) [005] ...2 24574.224915: binder_set_priority: proc=23896 thread=23986 old=120 => new=118 desired=118
78407<...>-27853 ( 24827) [005] d..4 24574.224918: sched_waking: comm=Binder:23896_3 pid=23986 prio=118 target_cpu=000
78408<...>-27853 ( 24827) [005] d..5 24574.224932: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=118 target_cpu=005
78409<...>-27853 ( 24827) [005] d.h4 24574.224958: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
78410<...>-27853 ( 24827) [005] d.h5 24574.224966: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
78411          <idle>-0     (-----) [007] .n.1 24574.224970: cpu_idle: state=4294967295 cpu_id=7
78412<...>-27853 ( 24827) [005] d..2 24574.224973: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=118
78413          <idle>-0     (-----) [007] d..2 24574.224974: 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
78414  Binder:23896_3-23986 (23896) [005] .... 24574.224980: binder_transaction_received: transaction=1670628
78415         sugov:4-560   (  560) [007] d..2 24574.224982: 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
78416          <idle>-0     (-----) [007] d..1 24574.224986: cpu_idle: state=0 cpu_id=7
78417  Binder:23896_3-23986 (23896) [005] .... 24574.225055: binder_transaction: transaction=1670629 dest_node=0 dest_proc=24827 dest_thread=27853 reply=1 flags=0x0 code=0x0
78418  Binder:23896_3-23986 (23896) [005] d..2 24574.225058: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
78419  Binder:23896_3-23986 (23896) [005] d..3 24574.225063: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
78420  Binder:23896_3-23986 (23896) [005] .... 24574.225064: binder_set_priority: proc=23896 thread=23986 old=118 => new=120 desired=120
78421  Binder:23896_3-23986 (23896) [005] d..2 24574.225085: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
78422<...>-27853 ( 24827) [005] .... 24574.225088: binder_transaction_received: transaction=1670629
78423<...>-24849 ( 24827) [004] d..1 24574.225104: sched_waking: comm=ReferenceQueueD pid=24846 prio=124 target_cpu=000
78424<...>-27853 ( 24827) [005] d..2 24574.225120: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
78425          <idle>-0     (-----) [000] dnh2 24574.225126: sched_wakeup: comm=ReferenceQueueD pid=24846 prio=124 target_cpu=000
78426          <idle>-0     (-----) [005] d..1 24574.225127: cpu_idle: state=0 cpu_id=5
78427          <idle>-0     (-----) [000] .n.1 24574.225130: cpu_idle: state=4294967295 cpu_id=0
78428          <idle>-0     (-----) [000] d..2 24574.225136: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=24846 next_prio=124
78429<...>-24849 ( 24827) [004] d..2 24574.225212: sched_switch: prev_comm=HeapTaskDaemon prev_pid=24849 prev_prio=124 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
78430          <idle>-0     (-----) [004] d..1 24574.225226: cpu_idle: state=0 cpu_id=4
78431  HwBinder:598_3-633   (  598) [002] ...1 24574.225287: tracing_mark_write: E|598
78432<...>-24846 ( 24827) [000] d..5 24574.225331: sched_waking: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=000
78433<...>-24846 ( 24827) [000] d..6 24574.225348: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=000
78434<...>-24846 ( 24827) [000] d..5 24574.225376: sched_waking: comm=Binder:24741_1 pid=24764 prio=120 target_cpu=003
78435  HwBinder:598_3-633   (  598) [002] ...1 24574.225399: tracing_mark_write: B|598|HWDeviceDRM::Commit::
78436  HwBinder:598_3-633   (  598) [002] ...1 24574.225405: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
78437<...>-24846 ( 24827) [000] d..6 24574.225408: sched_wakeup: comm=Binder:24741_1 pid=24764 prio=120 target_cpu=001
78438    RenderThread-24437 (24151) [001] d..2 24574.225420: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:24741_1 next_pid=24764 next_prio=120
78439<...>-24846 ( 24827) [000] d..5 24574.225465: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=002
78440          <idle>-0     (-----) [007] dnh2 24574.225514: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
78441          <idle>-0     (-----) [007] .n.1 24574.225517: cpu_idle: state=4294967295 cpu_id=7
78442<...>-24764 ( 24741) [001] d..2 24574.225520: sched_switch: prev_comm=Binder:24741_1 prev_pid=24764 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
78443          <idle>-0     (-----) [007] d..2 24574.225521: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
78444<...>-12589 ( 23968) [007] d..2 24574.225571: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
78445          <idle>-0     (-----) [007] d..1 24574.225577: cpu_idle: state=0 cpu_id=7
78446<...>-24846 ( 24827) [000] d..5 24574.225700: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
78447          <idle>-0     (-----) [007] dnh2 24574.225717: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
78448          <idle>-0     (-----) [007] .n.1 24574.225720: cpu_idle: state=4294967295 cpu_id=7
78449          <idle>-0     (-----) [007] d..2 24574.225725: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
78450<...>-12589 ( 23968) [007] d..2 24574.225744: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
78451          <idle>-0     (-----) [007] d..1 24574.225747: cpu_idle: state=0 cpu_id=7
78452<...>-24846 ( 24827) [000] d..5 24574.225754: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
78453          <idle>-0     (-----) [007] dnh2 24574.225766: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
78454          <idle>-0     (-----) [007] .n.1 24574.225769: cpu_idle: state=4294967295 cpu_id=7
78455<...>-24846 ( 24827) [000] d..5 24574.225772: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=006
78456          <idle>-0     (-----) [007] d..2 24574.225772: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
78457<...>-12589 ( 23968) [007] d.h2 24574.225803: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
78458<...>-24846 ( 24827) [000] d..5 24574.225816: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=002
78459<...>-24846 ( 24827) [000] d..6 24574.225838: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=002
78460  HwBinder:598_3-633   (  598) [002] d..2 24574.225841: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
78461<...>-24846 ( 24827) [000] d..5 24574.225843: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=006
78462    RenderThread-25194 (24827) [003] d..2 24574.225861: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
78463  HwBinder:598_3-633   (  598) [002] d..3 24574.225862: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
78464<...>-12589 ( 23968) [007] d.h1 24574.225865: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
78465  Binder:23896_4-24423 (23896) [003] .... 24574.225867: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
78466<...>-24846 ( 24827) [000] d..5 24574.225873: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
78467    RenderThread-24437 (24151) [001] d..2 24574.225873: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
78468<...>-12589 ( 23968) [007] d..2 24574.225874: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
78469  Binder:23968_5-24233 (23968) [007] d.h2 24574.225888: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
78470<...>-24846 ( 24827) [000] d..5 24574.225890: sched_waking: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=003
78471<...>-24846 ( 24827) [000] d..6 24574.225911: sched_wakeup: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=003
78472  Binder:23896_4-24423 (23896) [003] d..2 24574.225916: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_8 next_pid=24659 next_prio=120
78473<...>-24659 ( 23968) [003] d..2 24574.225931: sched_switch: prev_comm=Binder:23968_8 prev_pid=24659 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78474<...>-24846 ( 24827) [000] d..5 24574.225933: sched_waking: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=003
78475  HwBinder:598_3-633   (  598) [002] ...1 24574.225933: tracing_mark_write: E|598
78476  HwBinder:598_3-633   (  598) [002] ...1 24574.225936: tracing_mark_write: E|598
78477<...>-24846 ( 24827) [000] d..6 24574.225942: sched_wakeup: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=003
78478          <idle>-0     (-----) [003] d..2 24574.225947: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_8 next_pid=24659 next_prio=120
78479<...>-24659 ( 23968) [003] d.h3 24574.225958: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=003
78480<...>-24846 ( 24827) [000] d..5 24574.225960: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
78481  Binder:23968_5-24233 (23968) [007] d..2 24574.225962: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
78482<...>-24846 ( 24827) [000] d..5 24574.225975: sched_waking: comm=Binder:23968_14 pid=27763 prio=120 target_cpu=000
78483  Binder:23968_1-23981 (23968) [007] d.h1 24574.225976: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
78484  HwBinder:598_3-633   (  598) [002] ...1 24574.225980: tracing_mark_write: E|598
78485          <idle>-0     (-----) [005] d.h2 24574.226006: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
78486<...>-24846 ( 24827) [000] dn.6 24574.226007: sched_wakeup: comm=Binder:23968_14 pid=27763 prio=120 target_cpu=000
78487          <idle>-0     (-----) [005] dnh2 24574.226009: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
78488          <idle>-0     (-----) [005] .n.1 24574.226012: cpu_idle: state=4294967295 cpu_id=5
78489<...>-24846 ( 24827) [000] d..2 24574.226013: sched_switch: prev_comm=ReferenceQueueD prev_pid=24846 prev_prio=124 prev_state=R+ ==> next_comm=Binder:23968_14 next_pid=27763 next_prio=120
78490          <idle>-0     (-----) [005] d..2 24574.226017: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
78491<...>-27763 ( 23968) [000] d..2 24574.226025: sched_switch: prev_comm=Binder:23968_14 prev_pid=27763 prev_prio=120 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=120
78492  HwBinder:598_3-633   (  598) [002] ...1 24574.226025: tracing_mark_write: E|598
78493  Binder:23968_1-23981 (23968) [007] d..2 24574.226026: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
78494<...>-24659 ( 23968) [003] d..2 24574.226027: sched_switch: prev_comm=Binder:23968_8 prev_pid=24659 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78495  Binder:23968_5-24233 (23968) [007] d..2 24574.226029: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
78496          <idle>-0     (-----) [003] d..1 24574.226034: cpu_idle: state=0 cpu_id=3
78497<...>-25141 ( 24741) [000] d..2 24574.226035: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=24846 next_prio=124
78498<...>-12589 ( 23968) [007] d..2 24574.226035: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
78499  HwBinder:598_3-633   (  598) [002] .... 24574.226039: binder_transaction: transaction=1670630 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
78500          <idle>-0     (-----) [007] d..1 24574.226039: cpu_idle: state=0 cpu_id=7
78501  HwBinder:598_3-633   (  598) [002] d..2 24574.226057: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
78502  HwBinder:598_3-633   (  598) [002] d..3 24574.226074: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
78503  HwBinder:598_3-633   (  598) [002] .... 24574.226077: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
78504          <idle>-0     (-----) [003] .n.1 24574.226078: cpu_idle: state=4294967295 cpu_id=3
78505          <idle>-0     (-----) [003] d..2 24574.226085: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
78506<...>-24846 ( 24827) [000] d..5 24574.226090: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
78507  surfaceflinger-23896 (23896) [003] .... 24574.226092: binder_transaction_received: transaction=1670630
78508          <idle>-0     (-----) [007] dnh2 24574.226103: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
78509          <idle>-0     (-----) [007] .n.1 24574.226106: cpu_idle: state=4294967295 cpu_id=7
78510<...>-24846 ( 24827) [000] d..5 24574.226108: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
78511          <idle>-0     (-----) [007] d..2 24574.226109: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
78512<...>-12589 ( 23968) [007] d.h2 24574.226122: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
78513    RenderThread-25194 (24827) [005] .... 24574.226133: binder_transaction: transaction=1670631 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
78514<...>-24846 ( 24827) [000] d..5 24574.226136: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
78515    RenderThread-25194 (24827) [005] ...2 24574.226139: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
78516    RenderThread-25194 (24827) [005] d..4 24574.226140: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=003
78517  HwBinder:598_3-633   (  598) [002] d..2 24574.226145: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
78518<...>-24846 ( 24827) [000] d..5 24574.226146: sched_waking: comm=Binder:23968_14 pid=27763 prio=120 target_cpu=000
78519<...>-12589 ( 23968) [007] d.h1 24574.226149: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
78520    RenderThread-25194 (24827) [005] d..5 24574.226152: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=005
78521<...>-24846 ( 24827) [000] dn.6 24574.226176: sched_wakeup: comm=Binder:23968_14 pid=27763 prio=120 target_cpu=000
78522    RenderThread-25194 (24827) [005] d..2 24574.226180: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
78523<...>-24846 ( 24827) [000] d..2 24574.226182: sched_switch: prev_comm=ReferenceQueueD prev_pid=24846 prev_prio=124 prev_state=R+ ==> next_comm=Binder:23968_14 next_pid=27763 next_prio=120
78524<...>-12589 ( 23968) [007] d..2 24574.226183: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
78525  Binder:23896_4-24423 (23896) [005] .... 24574.226183: binder_transaction_received: transaction=1670631
78526  Binder:23968_1-23981 (23968) [007] d..2 24574.226187: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
78527<...>-27763 ( 23968) [000] d..2 24574.226188: sched_switch: prev_comm=Binder:23968_14 prev_pid=27763 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=24846 next_prio=124
78528  Binder:23968_5-24233 (23968) [007] d..2 24574.226192: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
78529          <idle>-0     (-----) [007] d..1 24574.226196: cpu_idle: state=0 cpu_id=7
78530<...>-24846 ( 24827) [000] d..5 24574.226201: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=002
78531  Binder:23968_C-25014 (23968) [002] d..2 24574.226208: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
78532  Binder:23896_5-25989 (23896) [002] .... 24574.226214: binder_transaction_received: transaction=1670622
78533  Binder:23896_5-25989 (23896) [002] d..1 24574.226235: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
78534          <idle>-0     (-----) [007] dnh2 24574.226254: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=007
78535          <idle>-0     (-----) [007] .n.1 24574.226257: cpu_idle: state=4294967295 cpu_id=7
78536  Binder:23896_4-24423 (23896) [005] .... 24574.226258: binder_transaction: transaction=1670632 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
78537          <idle>-0     (-----) [007] d..2 24574.226260: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
78538  Binder:23896_4-24423 (23896) [005] d..2 24574.226260: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
78539  Binder:23896_4-24423 (23896) [005] dn.3 24574.226265: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
78540  Binder:23896_5-25989 (23896) [002] d..2 24574.226267: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
78541  Binder:23896_4-24423 (23896) [005] d..2 24574.226269: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
78542    RenderThread-25194 (24827) [005] .... 24574.226272: binder_transaction_received: transaction=1670632
78543<...>-24846 ( 24827) [000] d..2 24574.226273: sched_switch: prev_comm=ReferenceQueueD prev_pid=24846 prev_prio=124 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
78544  Binder:23968_C-25014 (23968) [007] d..2 24574.226279: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
78545          <idle>-0     (-----) [007] d..1 24574.226283: cpu_idle: state=0 cpu_id=7
78546  Binder:23896_5-25989 (23896) [002] d..2 24574.226300: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78547          <idle>-0     (-----) [002] d..1 24574.226314: cpu_idle: state=0 cpu_id=2
78548  appEventThread-23905 (23896) [000] d..2 24574.226320: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=ReferenceQueueD next_pid=24846 next_prio=124
78549    RenderThread-25194 (24827) [005] d..2 24574.226321: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
78550  Binder:23896_4-24423 (23896) [005] .... 24574.226324: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
78551<...>-24846 ( 24827) [000] d..5 24574.226326: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=007
78552<...>-24846 ( 24827) [000] d..6 24574.226345: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=002
78553  Binder:23896_4-24423 (23896) [005] d..2 24574.226349: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
78554          <idle>-0     (-----) [002] .n.1 24574.226351: cpu_idle: state=4294967295 cpu_id=2
78555          <idle>-0     (-----) [005] d..1 24574.226356: cpu_idle: state=0 cpu_id=5
78556          <idle>-0     (-----) [002] d..2 24574.226373: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
78557<...>-24846 ( 24827) [000] d..5 24574.226387: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
78558          <idle>-0     (-----) [007] dnh2 24574.226401: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
78559          <idle>-0     (-----) [007] .n.1 24574.226404: cpu_idle: state=4294967295 cpu_id=7
78560          <idle>-0     (-----) [007] d..2 24574.226408: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
78561<...>-24846 ( 24827) [000] d..5 24574.226409: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
78562  Binder:23968_5-24233 (23968) [007] d.h2 24574.226421: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
78563<...>-24846 ( 24827) [000] d..5 24574.226423: sched_waking: comm=Binder:23968_14 pid=27763 prio=120 target_cpu=000
78564<...>-24846 ( 24827) [000] dn.6 24574.226440: sched_wakeup: comm=Binder:23968_14 pid=27763 prio=120 target_cpu=000
78565<...>-24846 ( 24827) [000] d..2 24574.226445: sched_switch: prev_comm=ReferenceQueueD prev_pid=24846 prev_prio=124 prev_state=R+ ==> next_comm=Binder:23968_14 next_pid=27763 next_prio=120
78566<...>-27763 ( 23968) [000] d..2 24574.226452: sched_switch: prev_comm=Binder:23968_14 prev_pid=27763 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=24846 next_prio=124
78567  Binder:23968_5-24233 (23968) [007] d..2 24574.226453: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
78568  Binder:23968_C-25014 (23968) [002] d..2 24574.226456: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78569  Binder:23968_1-23981 (23968) [007] d..2 24574.226458: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
78570          <idle>-0     (-----) [002] d..1 24574.226461: cpu_idle: state=0 cpu_id=2
78571          <idle>-0     (-----) [007] d..1 24574.226462: cpu_idle: state=0 cpu_id=7
78572<...>-24846 ( 24827) [000] d..5 24574.226465: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=007
78573<...>-24846 ( 24827) [000] d..6 24574.226482: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=002
78574          <idle>-0     (-----) [002] .n.1 24574.226487: cpu_idle: state=4294967295 cpu_id=2
78575          <idle>-0     (-----) [002] d..2 24574.226509: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
78576<...>-24846 ( 24827) [000] d..5 24574.226520: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
78577  surfaceflinger-23896 (23896) [003] d..2 24574.226524: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78578          <idle>-0     (-----) [007] dnh2 24574.226533: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
78579          <idle>-0     (-----) [003] d..1 24574.226533: cpu_idle: state=0 cpu_id=3
78580          <idle>-0     (-----) [007] .n.1 24574.226535: cpu_idle: state=4294967295 cpu_id=7
78581<...>-24846 ( 24827) [000] d..5 24574.226537: sched_waking: comm=Binder:23968_14 pid=27763 prio=120 target_cpu=000
78582          <idle>-0     (-----) [007] d..2 24574.226538: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
78583<...>-24846 ( 24827) [000] d..6 24574.226552: sched_wakeup: comm=Binder:23968_14 pid=27763 prio=120 target_cpu=003
78584<...>-24846 ( 24827) [000] d..5 24574.226556: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=002
78585          <idle>-0     (-----) [003] .n.1 24574.226556: cpu_idle: state=4294967295 cpu_id=3
78586          <idle>-0     (-----) [003] d..2 24574.226564: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_14 next_pid=27763 next_prio=120
78587  Binder:23968_1-23981 (23968) [002] d..2 24574.226565: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78588          <idle>-0     (-----) [002] d..1 24574.226570: cpu_idle: state=0 cpu_id=2
78589          <idle>-0     (-----) [002] .n.1 24574.226572: cpu_idle: state=4294967295 cpu_id=2
78590<...>-24846 ( 24827) [000] d..6 24574.226573: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=002
78591          <idle>-0     (-----) [002] d..2 24574.226578: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
78592  Binder:23968_5-24233 (23968) [007] d..2 24574.226587: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
78593          <idle>-0     (-----) [007] d..1 24574.226590: cpu_idle: state=0 cpu_id=7
78594  Binder:23968_1-23981 (23968) [002] d..2 24574.226590: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78595<...>-24846 ( 24827) [000] d..5 24574.226591: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=002
78596          <idle>-0     (-----) [002] d..1 24574.226594: cpu_idle: state=0 cpu_id=2
78597<...>-24846 ( 24827) [000] d..6 24574.226600: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=002
78598          <idle>-0     (-----) [002] .n.1 24574.226604: cpu_idle: state=4294967295 cpu_id=2
78599          <idle>-0     (-----) [002] d..2 24574.226610: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
78600<...>-24846 ( 24827) [000] d..5 24574.226611: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
78601<...>-24846 ( 24827) [000] d..5 24574.226619: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=002
78602          <idle>-0     (-----) [007] dnh2 24574.226623: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
78603          <idle>-0     (-----) [007] .n.1 24574.226626: cpu_idle: state=4294967295 cpu_id=7
78604          <idle>-0     (-----) [007] d..2 24574.226629: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
78605<...>-24846 ( 24827) [000] d..6 24574.226637: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=002
78606  Binder:23968_5-24233 (23968) [007] d..2 24574.226644: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
78607          <idle>-0     (-----) [007] d..1 24574.226647: cpu_idle: state=0 cpu_id=7
78608<...>-24846 ( 24827) [000] d..5 24574.226650: sched_waking: comm=Binder:23968_14 pid=27763 prio=120 target_cpu=003
78609<...>-27763 ( 23968) [003] d..2 24574.226652: sched_switch: prev_comm=Binder:23968_14 prev_pid=27763 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78610<...>-24846 ( 24827) [000] d..6 24574.226663: sched_wakeup: comm=Binder:23968_14 pid=27763 prio=120 target_cpu=003
78611          <idle>-0     (-----) [003] d..2 24574.226667: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_14 next_pid=27763 next_prio=120
78612<...>-27763 ( 23968) [003] d..2 24574.226680: sched_switch: prev_comm=Binder:23968_14 prev_pid=27763 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78613<...>-24846 ( 24827) [000] d..5 24574.226680: sched_waking: comm=Binder:23968_14 pid=27763 prio=120 target_cpu=003
78614          <idle>-0     (-----) [003] d..1 24574.226684: cpu_idle: state=0 cpu_id=3
78615<...>-24846 ( 24827) [000] d..6 24574.226688: sched_wakeup: comm=Binder:23968_14 pid=27763 prio=120 target_cpu=003
78616<...>-24846 ( 24827) [000] d..5 24574.226691: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
78617          <idle>-0     (-----) [003] .n.1 24574.226694: cpu_idle: state=4294967295 cpu_id=3
78618          <idle>-0     (-----) [003] d..2 24574.226699: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_14 next_pid=27763 next_prio=120
78619          <idle>-0     (-----) [007] dnh2 24574.226703: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
78620          <idle>-0     (-----) [007] .n.1 24574.226705: cpu_idle: state=4294967295 cpu_id=7
78621          <idle>-0     (-----) [007] d..2 24574.226708: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
78622<...>-27763 ( 23968) [003] d..2 24574.226710: sched_switch: prev_comm=Binder:23968_14 prev_pid=27763 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78623<...>-24846 ( 24827) [000] d..5 24574.226710: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
78624  Binder:23968_1-23981 (23968) [002] d..2 24574.226713: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
78625  Binder:23968_5-24233 (23968) [007] d..2 24574.226713: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
78626          <idle>-0     (-----) [003] d..1 24574.226715: cpu_idle: state=0 cpu_id=3
78627          <idle>-0     (-----) [007] d..1 24574.226717: cpu_idle: state=0 cpu_id=7
78628<...>-24846 ( 24827) [000] d..5 24574.226722: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=002
78629          <idle>-0     (-----) [007] dnh2 24574.226725: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
78630          <idle>-0     (-----) [007] .n.1 24574.226728: cpu_idle: state=4294967295 cpu_id=7
78631          <idle>-0     (-----) [007] d..2 24574.226731: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
78632<...>-24846 ( 24827) [000] d..6 24574.226735: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=003
78633  Binder:23968_C-25014 (23968) [002] d..3 24574.226738: sched_waking: comm=Binder:23968_14 pid=27763 prio=120 target_cpu=003
78634          <idle>-0     (-----) [003] .n.1 24574.226740: cpu_idle: state=4294967295 cpu_id=3
78635          <idle>-0     (-----) [003] d..2 24574.226746: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
78636  Binder:23968_C-25014 (23968) [002] d..4 24574.226759: sched_wakeup: comm=Binder:23968_14 pid=27763 prio=120 target_cpu=003
78637<...>-24846 ( 24827) [000] d..5 24574.226762: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
78638  Binder:23968_5-24233 (23968) [007] d.h2 24574.226775: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
78639<...>-24846 ( 24827) [000] d..5 24574.226777: sched_waking: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=003
78640<...>-24846 ( 24827) [000] d..6 24574.226795: sched_wakeup: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=003
78641  Binder:23968_5-24233 (23968) [007] d..3 24574.226798: sched_waking: comm=Binder:23968_4 pid=24097 prio=120 target_cpu=002
78642<...>-24846 ( 24827) [000] d..5 24574.226817: sched_waking: comm=Binder:23968_13 pid=27744 prio=120 target_cpu=002
78643  Binder:23968_C-25014 (23968) [002] d.h2 24574.226822: sched_wakeup: comm=Binder:23968_4 pid=24097 prio=120 target_cpu=002
78644<...>-24846 ( 24827) [000] d..6 24574.226843: sched_wakeup: comm=Binder:23968_13 pid=27744 prio=120 target_cpu=002
78645<...>-24846 ( 24827) [000] d..5 24574.226847: sched_waking: comm=Binder:23968_7 pid=24238 prio=120 target_cpu=001
78646<...>-24846 ( 24827) [000] d..6 24574.226865: sched_wakeup: comm=Binder:23968_7 pid=24238 prio=120 target_cpu=001
78647  Binder:23968_5-24233 (23968) [007] d..2 24574.226872: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
78648<...>-12589 ( 23968) [007] d..2 24574.226878: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
78649<...>-24846 ( 24827) [000] d..5 24574.226879: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
78650          <idle>-0     (-----) [007] d..1 24574.226882: cpu_idle: state=0 cpu_id=7
78651<...>-24846 ( 24827) [000] d..5 24574.226889: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
78652          <idle>-0     (-----) [007] dnh2 24574.226893: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
78653          <idle>-0     (-----) [007] .n.1 24574.226896: cpu_idle: state=4294967295 cpu_id=7
78654          <idle>-0     (-----) [007] dnh2 24574.226901: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
78655  Binder:23968_1-23981 (23968) [003] d..2 24574.226903: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_8 next_pid=24659 next_prio=120
78656          <idle>-0     (-----) [007] d..2 24574.226906: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
78657<...>-24846 ( 24827) [000] d..5 24574.226907: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=002
78658<...>-24659 ( 23968) [003] d..2 24574.226909: sched_switch: prev_comm=Binder:23968_8 prev_pid=24659 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_14 next_pid=27763 next_prio=120
78659  Binder:23968_C-25014 (23968) [002] d..2 24574.226912: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_4 next_pid=24097 next_prio=120
78660 crtc_commit:111-253   (  253) [001] d..2 24574.226928: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=Binder:23968_7 next_pid=24238 next_prio=120
78661<...>-24846 ( 24827) [000] d..6 24574.226931: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=002
78662<...>-24846 ( 24827) [000] d..5 24574.226937: sched_waking: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=003
78663<...>-24846 ( 24827) [000] d..6 24574.226952: sched_wakeup: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=003
78664<...>-24097 ( 23968) [002] d..2 24574.226962: sched_switch: prev_comm=Binder:23968_4 prev_pid=24097 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_13 next_pid=27744 next_prio=120
78665<...>-24846 ( 24827) [000] d..5 24574.226964: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
78666<...>-24238 ( 23968) [001] d..2 24574.226964: sched_switch: prev_comm=Binder:23968_7 prev_pid=24238 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
78667<...>-12589 ( 23968) [007] d..2 24574.226966: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
78668  Binder:23968_5-24233 (23968) [007] d.h2 24574.226979: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
78669<...>-24846 ( 24827) [000] d..5 24574.226981: sched_waking: comm=Binder:23968_7 pid=24238 prio=120 target_cpu=001
78670<...>-24846 ( 24827) [000] d..6 24574.227000: sched_wakeup: comm=Binder:23968_7 pid=24238 prio=120 target_cpu=001
78671    RenderThread-24437 (24151) [001] d..2 24574.227009: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_7 next_pid=24238 next_prio=120
78672<...>-24846 ( 24827) [000] d.h6 24574.227024: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
78673<...>-24846 ( 24827) [000] dnh7 24574.227039: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
78674<...>-24846 ( 24827) [000] d..2 24574.227054: sched_switch: prev_comm=ReferenceQueueD prev_pid=24846 prev_prio=124 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
78675<...>-24238 ( 23968) [001] d..2 24574.227056: sched_switch: prev_comm=Binder:23968_7 prev_pid=24238 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
78676<...>-27763 ( 23968) [003] d..2 24574.227057: sched_switch: prev_comm=Binder:23968_14 prev_pid=27763 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_8 next_pid=24659 next_prio=120
78677  Binder:23968_5-24233 (23968) [007] d..2 24574.227058: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
78678<...>-12589 ( 23968) [007] d..2 24574.227064: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
78679<...>-24659 ( 23968) [003] d..2 24574.227067: sched_switch: prev_comm=Binder:23968_8 prev_pid=24659 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78680          <idle>-0     (-----) [007] d..1 24574.227067: cpu_idle: state=0 cpu_id=7
78681<...>-27744 ( 23968) [002] d..2 24574.227073: sched_switch: prev_comm=Binder:23968_13 prev_pid=27744 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
78682          <idle>-0     (-----) [003] d..1 24574.227074: cpu_idle: state=0 cpu_id=3
78683  Binder:23968_C-25014 (23968) [002] d..2 24574.227084: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78684          <idle>-0     (-----) [002] d..1 24574.227089: cpu_idle: state=0 cpu_id=2
78685 kgsl_worker_thr-246   (  246) [000] d..2 24574.227091: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
78686 kgsl_worker_thr-246   (  246) [000] d..3 24574.227116: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
78687          <idle>-0     (-----) [002] .n.1 24574.227121: cpu_idle: state=4294967295 cpu_id=2
78688          <idle>-0     (-----) [002] d..2 24574.227126: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
78689 kgsl_worker_thr-246   (  246) [000] d..2 24574.227131: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=ReferenceQueueD next_pid=24846 next_prio=124
78690<...>-24846 ( 24827) [000] d..5 24574.227147: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=002
78691<...>-24846 ( 24827) [000] d..6 24574.227161: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=003
78692          <idle>-0     (-----) [003] .n.1 24574.227166: cpu_idle: state=4294967295 cpu_id=3
78693          <idle>-0     (-----) [003] d..2 24574.227172: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
78694<...>-24846 ( 24827) [000] d..5 24574.227175: sched_waking: comm=Binder:23968_13 pid=27744 prio=120 target_cpu=002
78695          <idle>-0     (-----) [007] dnh2 24574.227214: sched_wakeup: comm=Binder:23968_13 pid=27744 prio=120 target_cpu=007
78696          <idle>-0     (-----) [007] .n.1 24574.227217: cpu_idle: state=4294967295 cpu_id=7
78697          <idle>-0     (-----) [007] d..2 24574.227220: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_13 next_pid=27744 next_prio=120
78698<...>-27744 ( 23968) [007] d..2 24574.227226: sched_switch: prev_comm=Binder:23968_13 prev_pid=27744 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
78699<...>-24846 ( 24827) [000] d..5 24574.227228: sched_waking: comm=Binder:23968_13 pid=27744 prio=120 target_cpu=007
78700          <idle>-0     (-----) [007] d..1 24574.227229: cpu_idle: state=0 cpu_id=7
78701          <idle>-0     (-----) [007] dnh2 24574.227242: sched_wakeup: comm=Binder:23968_13 pid=27744 prio=120 target_cpu=007
78702          <idle>-0     (-----) [007] .n.1 24574.227244: cpu_idle: state=4294967295 cpu_id=7
78703<...>-24846 ( 24827) [000] d..5 24574.227247: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
78704          <idle>-0     (-----) [007] d..2 24574.227248: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_13 next_pid=27744 next_prio=120
78705<...>-27744 ( 23968) [007] d.h2 24574.227261: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
78706<...>-24846 ( 24827) [000] d..5 24574.227263: sched_waking: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=003
78707<...>-24846 ( 24827) [000] d..6 24574.227280: sched_wakeup: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=003
78708  Binder:23968_C-25014 (23968) [003] d..2 24574.227318: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_8 next_pid=24659 next_prio=120
78709<...>-24846 ( 24827) [000] d..5 24574.227324: sched_waking: comm=Binder:23968_13 pid=27744 prio=120 target_cpu=007
78710<...>-27744 ( 23968) [007] d..2 24574.227324: sched_switch: prev_comm=Binder:23968_13 prev_pid=27744 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
78711<...>-24659 ( 23968) [003] d..2 24574.227329: sched_switch: prev_comm=Binder:23968_8 prev_pid=24659 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78712          <idle>-0     (-----) [003] d..1 24574.227336: cpu_idle: state=0 cpu_id=3
78713<...>-24846 ( 24827) [000] d..6 24574.227343: sched_wakeup: comm=Binder:23968_13 pid=27744 prio=120 target_cpu=003
78714    RenderThread-24437 (24151) [001] .... 24574.227346: binder_transaction: transaction=1670633 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
78715          <idle>-0     (-----) [003] .n.1 24574.227348: cpu_idle: state=4294967295 cpu_id=3
78716    RenderThread-24437 (24151) [001] d..4 24574.227356: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
78717<...>-24846 ( 24827) [000] d..5 24574.227369: sched_waking: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=003
78718          <idle>-0     (-----) [003] d..2 24574.227369: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_13 next_pid=27744 next_prio=120
78719    RenderThread-24437 (24151) [001] dn.5 24574.227382: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
78720<...>-12589 ( 23968) [007] d.h2 24574.227418: sched_wakeup: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=007
78721    RenderThread-24437 (24151) [001] d..2 24574.227422: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
78722  Binder:23896_4-24423 (23896) [001] .... 24574.227427: binder_transaction_received: transaction=1670633
78723<...>-12589 ( 23968) [007] d..2 24574.227451: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_8 next_pid=24659 next_prio=120
78724<...>-24659 ( 23968) [007] d..2 24574.227457: sched_switch: prev_comm=Binder:23968_8 prev_pid=24659 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
78725<...>-24846 ( 24827) [000] d..5 24574.227458: sched_waking: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=007
78726          <idle>-0     (-----) [007] d..1 24574.227460: cpu_idle: state=0 cpu_id=7
78727<...>-24846 ( 24827) [000] d..5 24574.227467: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
78728          <idle>-0     (-----) [007] dnh2 24574.227472: sched_wakeup: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=007
78729          <idle>-0     (-----) [007] .n.1 24574.227474: cpu_idle: state=4294967295 cpu_id=7
78730<...>-27744 ( 23968) [003] d..3 24574.227476: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=003
78731          <idle>-0     (-----) [007] dnh2 24574.227480: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
78732          <idle>-0     (-----) [007] d..2 24574.227484: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_8 next_pid=24659 next_prio=120
78733  kworker/u16:15-18488 (18488) [002] d..2 24574.227484: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
78734          <idle>-0     (-----) [002] d..1 24574.227489: cpu_idle: state=0 cpu_id=2
78735<...>-27744 ( 23968) [003] d..4 24574.227496: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=003
78736  Binder:23896_4-24423 (23896) [001] .... 24574.227496: binder_transaction: transaction=1670634 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
78737  Binder:23896_4-24423 (23896) [001] d..2 24574.227519: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
78738    RenderThread-24437 (24151) [001] .... 24574.227524: binder_transaction_received: transaction=1670634
78739<...>-27744 ( 23968) [003] d.s4 24574.227528: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
78740<...>-27744 ( 23968) [003] d.s5 24574.227534: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
78741<...>-27744 ( 23968) [003] d.s5 24574.227540: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
78742<...>-24846 ( 24827) [000] d..5 24574.227545: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
78743<...>-24168 ( 24151) [006] d.s2 24574.227566: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
78744<...>-24659 ( 23968) [007] d.H2 24574.227567: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
78745          <idle>-0     (-----) [002] dns2 24574.227569: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
78746<...>-24846 ( 24827) [000] dnh1 24574.227584: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
78747<...>-27744 ( 23968) [003] d..2 24574.227589: sched_switch: prev_comm=Binder:23968_13 prev_pid=27744 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
78748          <idle>-0     (-----) [002] dns3 24574.227595: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
78749<...>-24659 ( 23968) [007] d..2 24574.227598: sched_switch: prev_comm=Binder:23968_8 prev_pid=24659 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
78750<...>-24846 ( 24827) [000] d..2 24574.227600: sched_switch: prev_comm=ReferenceQueueD prev_pid=24846 prev_prio=124 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
78751  Binder:23968_C-25014 (23968) [003] d..2 24574.227601: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78752<...>-12589 ( 23968) [007] d..2 24574.227602: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
78753          <idle>-0     (-----) [002] .n.1 24574.227607: cpu_idle: state=4294967295 cpu_id=2
78754          <idle>-0     (-----) [003] d..1 24574.227608: cpu_idle: state=0 cpu_id=3
78755  Binder:23968_5-24233 (23968) [007] d..2 24574.227610: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
78756          <idle>-0     (-----) [002] d..2 24574.227612: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
78757          <idle>-0     (-----) [007] d..1 24574.227614: cpu_idle: state=0 cpu_id=7
78758  kworker/u16:15-18488 (18488) [002] d..2 24574.227631: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78759          <idle>-0     (-----) [002] d..1 24574.227638: cpu_idle: state=0 cpu_id=2
78760  kworker/u16:10-23868 (23868) [000] d.h4 24574.227657: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
78761    RenderThread-24437 (24151) [001] d..2 24574.227660: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
78762     rcu_preempt-7     (    7) [001] d..2 24574.227670: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
78763  kworker/u16:10-23868 (23868) [000] d.h5 24574.227673: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
78764          <idle>-0     (-----) [002] .n.1 24574.227678: cpu_idle: state=4294967295 cpu_id=2
78765          <idle>-0     (-----) [002] d..2 24574.227683: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
78766     rcu_preempt-7     (    7) [001] d..3 24574.227695: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
78767     rcu_preempt-7     (    7) [001] d..2 24574.227697: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
78768     rcu_preempt-7     (    7) [001] d..3 24574.227716: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
78769  kworker/u16:10-23868 (23868) [000] .... 24574.227719: clk_set_rate: l3_cluster0_vote_clk 748800000
78770  kworker/u16:10-23868 (23868) [000] .... 24574.227724: clk_set_rate: l3_clk 748800000
78771     rcu_preempt-7     (    7) [001] d..2 24574.227727: 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
78772         rcuop/4-45    (   45) [001] d..2 24574.227732: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
78773         rcuop/4-45    (   45) [001] d..3 24574.227743: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
78774         rcuop/4-45    (   45) [001] d..2 24574.227751: 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
78775  kworker/u16:10-23868 (23868) [000] d..2 24574.227761: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=24846 next_prio=124
78776         rcuop/5-53    (   53) [001] d..2 24574.227773: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
78777<...>-24846 ( 24827) [000] d..5 24574.227781: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
78778          <idle>-0     (-----) [001] d..1 24574.227789: cpu_idle: state=0 cpu_id=1
78779          <idle>-0     (-----) [007] dnh2 24574.227796: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
78780          <idle>-0     (-----) [007] .n.1 24574.227804: cpu_idle: state=4294967295 cpu_id=7
78781<...>-24846 ( 24827) [000] d..5 24574.227804: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=007
78782 kgsl_worker_thr-246   (  246) [002] d..2 24574.227808: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
78783          <idle>-0     (-----) [007] d..2 24574.227810: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
78784<...>-24846 ( 24827) [000] d..6 24574.227826: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=001
78785         rcuop/2-29    (   29) [002] d..2 24574.227828: 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
78786          <idle>-0     (-----) [001] .n.1 24574.227832: cpu_idle: state=4294967295 cpu_id=1
78787          <idle>-0     (-----) [002] d..1 24574.227836: cpu_idle: state=0 cpu_id=2
78788          <idle>-0     (-----) [001] d..2 24574.227857: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
78789<...>-24846 ( 24827) [000] d..5 24574.227869: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=001
78790<...>-12589 ( 23968) [001] d..2 24574.227873: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
78791          <idle>-0     (-----) [001] d..1 24574.227879: cpu_idle: state=0 cpu_id=1
78792<...>-24846 ( 24827) [000] d..6 24574.227885: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=001
78793<...>-24846 ( 24827) [000] d..5 24574.227888: sched_waking: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=007
78794          <idle>-0     (-----) [001] .n.1 24574.227889: cpu_idle: state=4294967295 cpu_id=1
78795          <idle>-0     (-----) [001] d..2 24574.227895: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
78796<...>-24846 ( 24827) [000] d..6 24574.227905: sched_wakeup: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=002
78797          <idle>-0     (-----) [002] .n.1 24574.227910: cpu_idle: state=4294967295 cpu_id=2
78798          <idle>-0     (-----) [002] d..2 24574.227932: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_8 next_pid=24659 next_prio=120
78799  Binder:23968_5-24233 (23968) [007] d..2 24574.227940: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
78800          <idle>-0     (-----) [007] d..1 24574.227943: cpu_idle: state=0 cpu_id=7
78801<...>-24659 ( 23968) [002] d..2 24574.227945: sched_switch: prev_comm=Binder:23968_8 prev_pid=24659 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78802          <idle>-0     (-----) [002] d..1 24574.227951: cpu_idle: state=0 cpu_id=2
78803<...>-12589 ( 23968) [001] d..2 24574.227961: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
78804          <idle>-0     (-----) [001] d..1 24574.227968: cpu_idle: state=0 cpu_id=1
78805<...>-24846 ( 24827) [000] d..3 24574.228204: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
78806<...>-24846 ( 24827) [000] d..4 24574.228226: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
78807          <idle>-0     (-----) [001] .n.1 24574.228230: cpu_idle: state=4294967295 cpu_id=1
78808<...>-24846 ( 24827) [000] d.h3 24574.228257: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
78809          <idle>-0     (-----) [001] d..2 24574.228257: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
78810<...>-24846 ( 24827) [000] d.h4 24574.228273: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
78811          <idle>-0     (-----) [002] .n.1 24574.228278: cpu_idle: state=4294967295 cpu_id=2
78812          <idle>-0     (-----) [002] d..2 24574.228284: 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
78813    RenderThread-25194 (24827) [001] d..2 24574.228293: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
78814<...>-24846 ( 24827) [000] d..3 24574.228294: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
78815          <idle>-0     (-----) [001] d..1 24574.228300: cpu_idle: state=0 cpu_id=1
78816         sugov:0-559   (  559) [002] d..2 24574.228301: 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
78817          <idle>-0     (-----) [001] .n.1 24574.228302: cpu_idle: state=4294967295 cpu_id=1
78818<...>-24846 ( 24827) [000] d..4 24574.228304: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
78819          <idle>-0     (-----) [002] d..1 24574.228306: cpu_idle: state=0 cpu_id=2
78820          <idle>-0     (-----) [001] d..2 24574.228309: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
78821    RenderThread-25194 (24827) [001] d..2 24574.228332: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
78822          <idle>-0     (-----) [001] d..1 24574.228338: cpu_idle: state=0 cpu_id=1
78823<...>-24846 ( 24827) [000] d..1 24574.228360: sched_waking: comm=FinalizerDaemon pid=24847 prio=124 target_cpu=002
78824<...>-24846 ( 24827) [000] d..2 24574.228379: sched_wakeup: comm=FinalizerDaemon pid=24847 prio=124 target_cpu=001
78825          <idle>-0     (-----) [001] .n.1 24574.228383: cpu_idle: state=4294967295 cpu_id=1
78826          <idle>-0     (-----) [001] d..2 24574.228390: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerDaemon next_pid=24847 next_prio=124
78827<...>-24847 ( 24827) [001] d..1 24574.228423: sched_waking: comm=FinalizerWatchd pid=24848 prio=124 target_cpu=000
78828<...>-24846 ( 24827) [000] d..2 24574.228443: sched_switch: prev_comm=ReferenceQueueD prev_pid=24846 prev_prio=124 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78829<...>-24847 ( 24827) [001] d..2 24574.228444: sched_wakeup: comm=FinalizerWatchd pid=24848 prio=124 target_cpu=002
78830          <idle>-0     (-----) [002] .n.1 24574.228449: cpu_idle: state=4294967295 cpu_id=2
78831          <idle>-0     (-----) [002] d..2 24574.228455: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerWatchd next_pid=24848 next_prio=124
78832          <idle>-0     (-----) [000] d..1 24574.228460: cpu_idle: state=0 cpu_id=0
78833<...>-24848 ( 24827) [002] d..2 24574.228518: sched_switch: prev_comm=FinalizerWatchd prev_pid=24848 prev_prio=124 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78834          <idle>-0     (-----) [002] d..1 24574.228526: cpu_idle: state=0 cpu_id=2
78835<...>-24847 ( 24827) [001] d..2 24574.228648: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
78836<...>-24847 ( 24827) [001] d..3 24574.228663: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
78837          <idle>-0     (-----) [003] ...1 24574.228720: cpu_idle: state=4294967295 cpu_id=3
78838          <idle>-0     (-----) [003] d..1 24574.228723: cpu_idle: state=0 cpu_id=3
78839<...>-24847 ( 24827) [001] d..5 24574.228726: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
78840<...>-24847 ( 24827) [001] d..6 24574.228743: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
78841<...>-24847 ( 24827) [001] d..5 24574.228748: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
78842          <idle>-0     (-----) [000] .n.1 24574.228749: cpu_idle: state=4294967295 cpu_id=0
78843          <idle>-0     (-----) [000] d..2 24574.228757: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
78844<...>-24847 ( 24827) [001] d..6 24574.228759: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
78845          <idle>-0     (-----) [002] .n.1 24574.228764: cpu_idle: state=4294967295 cpu_id=2
78846          <idle>-0     (-----) [002] d..2 24574.228771: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
78847  Binder:23896_5-25989 (23896) [002] d..2 24574.228785: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78848          <idle>-0     (-----) [002] d..1 24574.228792: cpu_idle: state=0 cpu_id=2
78849  Binder:23896_4-24423 (23896) [000] d..3 24574.228798: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
78850  Binder:23896_4-24423 (23896) [000] d..4 24574.228811: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
78851          <idle>-0     (-----) [003] .n.1 24574.228815: cpu_idle: state=4294967295 cpu_id=3
78852          <idle>-0     (-----) [003] d..2 24574.228821: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
78853<...>-24847 ( 24827) [001] d..5 24574.228830: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
78854<...>-24847 ( 24827) [001] d..6 24574.228841: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
78855          <idle>-0     (-----) [002] .n.1 24574.228846: cpu_idle: state=4294967295 cpu_id=2
78856<...>-24847 ( 24827) [001] d..5 24574.228847: sched_waking: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=005
78857          <idle>-0     (-----) [002] d..2 24574.228852: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
78858  surfaceflinger-23896 (23896) [003] d..2 24574.228863: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78859          <idle>-0     (-----) [005] dnh2 24574.228867: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=005
78860          <idle>-0     (-----) [005] .n.1 24574.228870: cpu_idle: state=4294967295 cpu_id=5
78861          <idle>-0     (-----) [003] d..1 24574.228871: cpu_idle: state=0 cpu_id=3
78862  Binder:23896_4-24423 (23896) [000] d..3 24574.228876: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
78863          <idle>-0     (-----) [005] d..2 24574.228876: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
78864  Binder:23896_3-23986 (23896) [005] d..2 24574.228885: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
78865  Binder:23896_4-24423 (23896) [000] d..4 24574.228886: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
78866          <idle>-0     (-----) [005] d..1 24574.228888: cpu_idle: state=0 cpu_id=5
78867          <idle>-0     (-----) [003] .n.1 24574.228891: cpu_idle: state=4294967295 cpu_id=3
78868  Binder:23896_5-25989 (23896) [002] d..2 24574.228893: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78869          <idle>-0     (-----) [003] d..2 24574.228897: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
78870          <idle>-0     (-----) [002] d..1 24574.228900: cpu_idle: state=0 cpu_id=2
78871  surfaceflinger-23896 (23896) [003] d..2 24574.228925: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78872          <idle>-0     (-----) [003] d..1 24574.228932: cpu_idle: state=0 cpu_id=3
78873  Binder:23896_4-24423 (23896) [000] d..2 24574.228966: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78874<...>-24847 ( 24827) [001] d..3 24574.228970: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
78875          <idle>-0     (-----) [000] d..1 24574.228979: cpu_idle: state=0 cpu_id=0
78876<...>-24847 ( 24827) [001] d..4 24574.228988: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
78877          <idle>-0     (-----) [000] .n.1 24574.228994: cpu_idle: state=4294967295 cpu_id=0
78878          <idle>-0     (-----) [000] d..2 24574.229001: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
78879    RenderThread-25194 (24827) [000] d..2 24574.229029: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78880          <idle>-0     (-----) [000] d..1 24574.229036: cpu_idle: state=0 cpu_id=0
78881<...>-24847 ( 24827) [001] ...1 24574.229144: tracing_mark_write: B|24827|HIDL::IMapper::freeBuffer::passthrough
78882<...>-24847 ( 24827) [001] ...1 24574.229164: tracing_mark_write: B|24827|FreeBuffer
78883<...>-24847 ( 24827) [001] d..2 24574.229188: sched_waking: comm=system pid=105 prio=120 target_cpu=002
78884<...>-24847 ( 24827) [001] d..3 24574.229216: sched_wakeup: comm=system pid=105 prio=120 target_cpu=000
78885          <idle>-0     (-----) [000] .n.1 24574.229222: cpu_idle: state=4294967295 cpu_id=0
78886          <idle>-0     (-----) [000] d..2 24574.229228: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system next_pid=105 next_prio=120
78887<...>-24847 ( 24827) [001] ...1 24574.229230: tracing_mark_write: E|24827
78888<...>-24847 ( 24827) [001] ...1 24574.229234: tracing_mark_write: B|24827|FreeBuffer
78889<...>-24847 ( 24827) [001] ...1 24574.229248: tracing_mark_write: E|24827
78890<...>-24847 ( 24827) [001] ...1 24574.229255: tracing_mark_write: E|24827
78891          <idle>-0     (-----) [002] ...1 24574.230074: cpu_idle: state=4294967295 cpu_id=2
78892          <idle>-0     (-----) [002] d..1 24574.230077: cpu_idle: state=0 cpu_id=2
78893          <idle>-0     (-----) [003] ...1 24574.230207: cpu_idle: state=4294967295 cpu_id=3
78894          <idle>-0     (-----) [003] d..1 24574.230209: cpu_idle: state=0 cpu_id=3
78895<...>-24168 ( 24151) [006] d.s2 24574.230902: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
78896<...>-24168 ( 24151) [006] d.s2 24574.230925: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
78897          <idle>-0     (-----) [002] dnh2 24574.230932: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
78898<...>-24168 ( 24151) [006] dns3 24574.230933: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
78899          <idle>-0     (-----) [002] .n.1 24574.230936: cpu_idle: state=4294967295 cpu_id=2
78900<...>-24168 ( 24151) [006] d..2 24574.230939: sched_switch: prev_comm=HeapTaskDaemon prev_pid=24168 prev_prio=124 prev_state=R ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
78901          <idle>-0     (-----) [002] d..2 24574.230944: 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
78902     kworker/6:0-21469 (21469) [006] d..2 24574.230974: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=S ==> next_comm=HeapTaskDaemon next_pid=24168 next_prio=124
78903<...>-24847 ( 24827) [001] ...1 24574.231067: tracing_mark_write: B|24827|HIDL::IMapper::freeBuffer::passthrough
78904<...>-24847 ( 24827) [001] ...1 24574.231078: tracing_mark_write: B|24827|FreeBuffer
78905<...>-24847 ( 24827) [001] ...1 24574.231089: tracing_mark_write: E|24827
78906<...>-24847 ( 24827) [001] ...1 24574.231092: tracing_mark_write: B|24827|FreeBuffer
78907<...>-24847 ( 24827) [001] ...1 24574.231100: tracing_mark_write: E|24827
78908<...>-24847 ( 24827) [001] ...1 24574.231106: tracing_mark_write: E|24827
78909<...>-24847 ( 24827) [001] d..2 24574.231138: sched_switch: prev_comm=FinalizerDaemon prev_pid=24847 prev_prio=124 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
78910  kworker/u16:10-23868 (23868) [002] d..2 24574.231165: 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
78911          <idle>-0     (-----) [002] d..1 24574.231174: cpu_idle: state=0 cpu_id=2
78912          <idle>-0     (-----) [003] d.s3 24574.231198: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
78913          <idle>-0     (-----) [003] d.s4 24574.231220: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
78914          <idle>-0     (-----) [003] dns4 24574.231225: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
78915          <idle>-0     (-----) [003] .n.1 24574.231230: cpu_idle: state=4294967295 cpu_id=3
78916<...>-105 ( 105) [000] d..2 24574.231234: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78917          <idle>-0     (-----) [003] d..2 24574.231238: 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
78918          <idle>-0     (-----) [000] d..1 24574.231244: cpu_idle: state=0 cpu_id=0
78919     logd.writer-563   (  555) [001] d..2 24574.231272: 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
78920          <idle>-0     (-----) [001] d..1 24574.231283: cpu_idle: state=0 cpu_id=1
78921  kworker/u16:10-23868 (23868) [003] .... 24574.231304: clk_set_rate: l3_cluster1_vote_clk 940800000
78922  kworker/u16:10-23868 (23868) [003] .... 24574.231311: clk_set_rate: l3_clk 940800000
78923  kworker/u16:10-23868 (23868) [003] d..2 24574.231470: 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
78924          <idle>-0     (-----) [003] d.s4 24574.231497: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
78925          <idle>-0     (-----) [003] d.s5 24574.231502: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
78926          <idle>-0     (-----) [003] dns5 24574.231505: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
78927          <idle>-0     (-----) [003] d..2 24574.231512: 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
78928  kworker/u16:10-23868 (23868) [003] d..2 24574.231527: 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
78929          <idle>-0     (-----) [003] d..1 24574.231536: cpu_idle: state=0 cpu_id=3
78930          <idle>-0     (-----) [002] ...1 24574.232370: cpu_idle: state=4294967295 cpu_id=2
78931          <idle>-0     (-----) [002] d..1 24574.232372: cpu_idle: state=0 cpu_id=2
78932          <idle>-0     (-----) [000] ...1 24574.232483: cpu_idle: state=4294967295 cpu_id=0
78933          <idle>-0     (-----) [000] d..1 24574.232486: cpu_idle: state=0 cpu_id=0
78934          <idle>-0     (-----) [003] ...1 24574.232871: cpu_idle: state=4294967295 cpu_id=3
78935          <idle>-0     (-----) [003] d..1 24574.232873: cpu_idle: state=0 cpu_id=3
78936<...>-24168 ( 24151) [006] d.h1 24574.232939: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=006
78937<...>-24168 ( 24151) [006] d.h2 24574.232983: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
78938          <idle>-0     (-----) [000] dnh2 24574.232986: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=000
78939          <idle>-0     (-----) [000] .n.1 24574.232990: cpu_idle: state=4294967295 cpu_id=0
78940          <idle>-0     (-----) [000] d..2 24574.232996: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
78941          <idle>-0     (-----) [002] dnh2 24574.232999: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
78942          <idle>-0     (-----) [002] .n.1 24574.233002: cpu_idle: state=4294967295 cpu_id=2
78943          <idle>-0     (-----) [002] d..2 24574.233008: 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
78944         sugov:0-559   (  559) [002] d..2 24574.233024: 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
78945          <idle>-0     (-----) [002] d..1 24574.233029: cpu_idle: state=0 cpu_id=2
78946<...>-23993 ( 23968) [000] .... 24574.233170: binder_transaction: transaction=1670635 dest_node=1307515 dest_proc=24827 dest_thread=0 reply=0 flags=0x11 code=0x1
78947<...>-23993 ( 23968) [000] d..4 24574.233180: sched_waking: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=007
78948<...>-23993 ( 23968) [000] d..5 24574.233204: sched_wakeup: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=001
78949          <idle>-0     (-----) [001] .n.1 24574.233210: cpu_idle: state=4294967295 cpu_id=1
78950          <idle>-0     (-----) [001] d..2 24574.233236: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24827_4 next_pid=25554 next_prio=120
78951<...>-25554 ( 24827) [001] .... 24574.233243: binder_transaction_received: transaction=1670635
78952<...>-23993 ( 23968) [000] .... 24574.233281: binder_transaction: transaction=1670636 dest_node=1276465 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x1
78953<...>-23993 ( 23968) [000] d..4 24574.233288: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=007
78954<...>-23993 ( 23968) [000] d..5 24574.233310: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=002
78955          <idle>-0     (-----) [002] .n.1 24574.233314: cpu_idle: state=4294967295 cpu_id=2
78956          <idle>-0     (-----) [002] d..2 24574.233336: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
78957<...>-24177 ( 24151) [002] .... 24574.233343: binder_transaction_received: transaction=1670636
78958<...>-23993 ( 23968) [000] d..2 24574.233390: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78959          <idle>-0     (-----) [000] d..1 24574.233399: cpu_idle: state=0 cpu_id=0
78960<...>-25554 ( 24827) [001] .... 24574.233571: binder_transaction: transaction=1670637 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x10
78961<...>-25554 ( 24827) [001] d..4 24574.233579: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=001
78962<...>-25554 ( 24827) [001] d..5 24574.233589: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=001
78963<...>-25554 ( 24827) [001] d..2 24574.233598: sched_switch: prev_comm=Binder:24827_4 prev_pid=25554 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
78964<...>-24177 ( 24151) [002] .... 24574.233603: binder_transaction: transaction=1670638 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x5c
78965<...>-12589 ( 23968) [001] .... 24574.233604: binder_transaction_received: transaction=1670637
78966<...>-24177 ( 24151) [002] d..4 24574.233609: sched_waking: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=002
78967<...>-24177 ( 24151) [002] d..5 24574.233619: sched_wakeup: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=002
78968<...>-24177 ( 24151) [002] d..2 24574.233628: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_8 next_pid=24659 next_prio=120
78969<...>-24659 ( 23968) [002] .... 24574.233634: binder_transaction_received: transaction=1670638
78970<...>-12589 ( 23968) [001] d..1 24574.233688: sched_waking: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=002
78971<...>-24659 ( 23968) [002] d..2 24574.233694: sched_switch: prev_comm=Binder:23968_8 prev_pid=24659 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78972          <idle>-0     (-----) [002] d..1 24574.233705: cpu_idle: state=0 cpu_id=2
78973<...>-12589 ( 23968) [001] d..2 24574.233713: sched_wakeup: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=000
78974          <idle>-0     (-----) [000] .n.1 24574.233718: cpu_idle: state=4294967295 cpu_id=0
78975          <idle>-0     (-----) [000] d..2 24574.233726: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_8 next_pid=24659 next_prio=120
78976<...>-24659 ( 23968) [000] .... 24574.233989: binder_transaction: transaction=1670639 dest_node=0 dest_proc=24151 dest_thread=24177 reply=1 flags=0x0 code=0x0
78977<...>-24659 ( 23968) [000] d..2 24574.233995: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=002
78978<...>-24659 ( 23968) [000] d..3 24574.234009: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=000
78979<...>-12589 ( 23968) [001] .... 24574.234020: binder_transaction: transaction=1670640 dest_node=0 dest_proc=24827 dest_thread=25554 reply=1 flags=0x0 code=0x0
78980<...>-12589 ( 23968) [001] d..2 24574.234026: sched_waking: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=001
78981<...>-24659 ( 23968) [000] d..2 24574.234034: sched_switch: prev_comm=Binder:23968_8 prev_pid=24659 prev_prio=120 prev_state=S ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
78982<...>-12589 ( 23968) [001] d..3 24574.234036: sched_wakeup: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=001
78983<...>-24177 ( 24151) [000] .... 24574.234040: binder_transaction_received: transaction=1670639
78984<...>-12589 ( 23968) [001] d..2 24574.234061: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=Binder:24827_4 next_pid=25554 next_prio=120
78985<...>-25554 ( 24827) [001] .... 24574.234066: binder_transaction_received: transaction=1670640
78986<...>-24177 ( 24151) [000] d..3 24574.234107: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
78987<...>-24177 ( 24151) [000] d..4 24574.234127: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
78988          <idle>-0     (-----) [002] .n.1 24574.234132: cpu_idle: state=4294967295 cpu_id=2
78989          <idle>-0     (-----) [002] d..2 24574.234140: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
78990<...>-24177 ( 24151) [000] d..2 24574.234163: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78991          <idle>-0     (-----) [000] d..1 24574.234172: cpu_idle: state=0 cpu_id=0
78992<...>-25554 ( 24827) [001] d.s1 24574.234236: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
78993<...>-25554 ( 24827) [001] d.s2 24574.234249: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
78994<...>-24151 ( 24151) [002] d..1 24574.234333: sched_waking: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=002
78995<...>-24151 ( 24151) [002] d..2 24574.234355: sched_wakeup: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=000
78996          <idle>-0     (-----) [000] .n.1 24574.234361: cpu_idle: state=4294967295 cpu_id=0
78997          <idle>-0     (-----) [000] d..2 24574.234370: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=pool-1-thread-1 next_pid=24340 next_prio=120
78998<...>-24151 ( 24151) [002] d..2 24574.234420: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
78999     rcu_preempt-7     (    7) [002] d..2 24574.234442: 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
79000          <idle>-0     (-----) [002] d..1 24574.234451: cpu_idle: state=0 cpu_id=2
79001<...>-24340 ( 24151) [000] .... 24574.234477: binder_transaction: transaction=1670641 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x37
79002<...>-24340 ( 24151) [000] d..4 24574.234481: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=001
79003<...>-24340 ( 24151) [000] d..5 24574.234496: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=000
79004<...>-24340 ( 24151) [000] d..2 24574.234504: sched_switch: prev_comm=pool-1-thread-1 prev_pid=24340 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
79005<...>-12589 ( 23968) [000] .... 24574.234510: binder_transaction_received: transaction=1670641
79006<...>-25554 ( 24827) [001] .... 24574.234545: binder_transaction: transaction=1670642 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x2e
79007<...>-25554 ( 24827) [001] d..4 24574.234550: sched_waking: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=000
79008<...>-25554 ( 24827) [001] d..5 24574.234564: sched_wakeup: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=001
79009<...>-25554 ( 24827) [001] d..2 24574.234573: sched_switch: prev_comm=Binder:24827_4 prev_pid=25554 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_8 next_pid=24659 next_prio=120
79010<...>-24659 ( 23968) [001] .... 24574.234577: binder_transaction_received: transaction=1670642
79011<...>-24659 ( 23968) [001] d..2 24574.234715: sched_switch: prev_comm=Binder:23968_8 prev_pid=24659 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
79012          <idle>-0     (-----) [001] d..1 24574.234729: cpu_idle: state=0 cpu_id=1
79013<...>-24168 ( 24151) [006] d..1 24574.234758: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=000
79014<...>-12589 ( 23968) [000] d..1 24574.234774: sched_waking: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=001
79015          <idle>-0     (-----) [001] dnh2 24574.234782: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=001
79016<...>-12589 ( 23968) [000] d..2 24574.234786: sched_wakeup: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=001
79017          <idle>-0     (-----) [001] .n.1 24574.234791: cpu_idle: state=4294967295 cpu_id=1
79018          <idle>-0     (-----) [001] d..2 24574.234798: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
79019<...>-24177 ( 24151) [001] d..2 24574.234849: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_8 next_pid=24659 next_prio=120
79020<...>-12589 ( 23968) [000] .... 24574.234926: binder_transaction: transaction=1670643 dest_node=0 dest_proc=24151 dest_thread=24340 reply=1 flags=0x0 code=0x0
79021<...>-12589 ( 23968) [000] d..2 24574.234931: sched_waking: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=000
79022<...>-12589 ( 23968) [000] d..3 24574.234941: sched_wakeup: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=000
79023<...>-12589 ( 23968) [000] d..2 24574.234964: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=pool-1-thread-1 next_pid=24340 next_prio=120
79024<...>-24340 ( 24151) [000] .... 24574.234969: binder_transaction_received: transaction=1670643
79025<...>-24340 ( 24151) [000] d..2 24574.235014: sched_switch: prev_comm=pool-1-thread-1 prev_pid=24340 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79026          <idle>-0     (-----) [000] d..1 24574.235023: cpu_idle: state=0 cpu_id=0
79027<...>-24659 ( 23968) [001] .... 24574.235123: binder_transaction: transaction=1670644 dest_node=0 dest_proc=24827 dest_thread=25554 reply=1 flags=0x0 code=0x0
79028<...>-24659 ( 23968) [001] d..2 24574.235128: sched_waking: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=001
79029<...>-24659 ( 23968) [001] d..3 24574.235138: sched_wakeup: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=001
79030<...>-24659 ( 23968) [001] d..2 24574.235161: sched_switch: prev_comm=Binder:23968_8 prev_pid=24659 prev_prio=120 prev_state=S ==> next_comm=Binder:24827_4 next_pid=25554 next_prio=120
79031<...>-25554 ( 24827) [001] .... 24574.235166: binder_transaction_received: transaction=1670644
79032          <idle>-0     (-----) [000] d.h5 24574.235379: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
79033          <idle>-0     (-----) [000] dnh6 24574.235398: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
79034          <idle>-0     (-----) [000] dnh5 24574.235402: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
79035          <idle>-0     (-----) [000] dnh6 24574.235416: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
79036          <idle>-0     (-----) [002] .n.1 24574.235422: cpu_idle: state=4294967295 cpu_id=2
79037          <idle>-0     (-----) [000] .n.1 24574.235427: cpu_idle: state=4294967295 cpu_id=0
79038          <idle>-0     (-----) [002] d..2 24574.235429: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
79039          <idle>-0     (-----) [000] d..2 24574.235434: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
79040  crtc_event:111-254   (  254) [000] d..2 24574.235462: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79041          <idle>-0     (-----) [000] d..1 24574.235468: cpu_idle: state=0 cpu_id=0
79042<...>-25554 ( 24827) [001] .... 24574.235560: binder_transaction: transaction=1670645 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xe
79043<...>-25554 ( 24827) [001] d..4 24574.235565: sched_waking: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=001
79044 crtc_commit:111-253   (  253) [002] d..2 24574.235569: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
79045          <idle>-0     (-----) [002] d..1 24574.235574: cpu_idle: state=0 cpu_id=2
79046<...>-25554 ( 24827) [001] d..5 24574.235575: sched_wakeup: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=001
79047<...>-25554 ( 24827) [001] d..2 24574.235584: sched_switch: prev_comm=Binder:24827_4 prev_pid=25554 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_8 next_pid=24659 next_prio=120
79048<...>-24659 ( 23968) [001] .... 24574.235588: binder_transaction_received: transaction=1670645
79049<...>-24659 ( 23968) [001] .... 24574.236051: binder_transaction: transaction=1670646 dest_node=0 dest_proc=24827 dest_thread=25554 reply=1 flags=0x0 code=0x0
79050<...>-24659 ( 23968) [001] d..2 24574.236057: sched_waking: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=001
79051<...>-24659 ( 23968) [001] d..3 24574.236066: sched_wakeup: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=001
79052<...>-24659 ( 23968) [001] d..2 24574.236090: sched_switch: prev_comm=Binder:23968_8 prev_pid=24659 prev_prio=120 prev_state=S ==> next_comm=Binder:24827_4 next_pid=25554 next_prio=120
79053<...>-25554 ( 24827) [001] .... 24574.236095: binder_transaction_received: transaction=1670646
79054<...>-25554 ( 24827) [001] .... 24574.236363: binder_transaction: transaction=1670647 dest_node=1272303 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x8
79055<...>-25554 ( 24827) [001] d..4 24574.236367: sched_waking: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=001
79056<...>-25554 ( 24827) [001] d..5 24574.236376: sched_wakeup: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=001
79057<...>-25554 ( 24827) [001] d..2 24574.236385: sched_switch: prev_comm=Binder:24827_4 prev_pid=25554 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_8 next_pid=24659 next_prio=120
79058<...>-24659 ( 23968) [001] .... 24574.236390: binder_transaction_received: transaction=1670647
79059<...>-24659 ( 23968) [001] .... 24574.236578: binder_transaction: transaction=1670648 dest_node=0 dest_proc=24827 dest_thread=25554 reply=1 flags=0x0 code=0x0
79060<...>-24659 ( 23968) [001] d..2 24574.236583: sched_waking: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=001
79061<...>-24659 ( 23968) [001] d..3 24574.236592: sched_wakeup: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=001
79062<...>-24659 ( 23968) [001] d..2 24574.236614: sched_switch: prev_comm=Binder:23968_8 prev_pid=24659 prev_prio=120 prev_state=S ==> next_comm=Binder:24827_4 next_pid=25554 next_prio=120
79063<...>-25554 ( 24827) [001] .... 24574.236619: binder_transaction_received: transaction=1670648
79064<...>-24168 ( 24151) [006] d.s3 24574.237577: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
79065          <idle>-0     (-----) [002] d.H3 24574.237662: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
79066          <idle>-0     (-----) [002] d.H3 24574.237677: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
79067          <idle>-0     (-----) [007] dnh2 24574.237683: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
79068          <idle>-0     (-----) [002] dnH4 24574.237686: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
79069          <idle>-0     (-----) [007] .n.1 24574.237686: cpu_idle: state=4294967295 cpu_id=7
79070          <idle>-0     (-----) [007] d..2 24574.237690: 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
79071          <idle>-0     (-----) [002] dns3 24574.237692: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
79072          <idle>-0     (-----) [002] dns4 24574.237700: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
79073         sugov:4-560   (  560) [007] .... 24574.237714: clk_set_rate: perfcl_clk 1612800000
79074          <idle>-0     (-----) [002] .n.1 24574.237714: cpu_idle: state=4294967295 cpu_id=2
79075         sugov:4-560   (  560) [007] .... 24574.237716: clk_set_rate: cpu7_perfcl_clk 1459200000
79076          <idle>-0     (-----) [002] d..2 24574.237719: 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
79077         sugov:4-560   (  560) [007] .... 24574.237722: clk_set_rate: cpu6_perfcl_clk 1459200000
79078         sugov:4-560   (  560) [007] .... 24574.237726: clk_set_rate: cpu5_perfcl_clk 1459200000
79079          <idle>-0     (-----) [000] dnh5 24574.237728: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
79080         sugov:4-560   (  560) [007] .... 24574.237730: clk_set_rate: cpu4_perfcl_clk 1612800000
79081         sugov:4-560   (  560) [007] .... 24574.237735: cpu_frequency: state=1612800 cpu_id=4
79082         sugov:0-559   (  559) [002] d..2 24574.237737: 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
79083          <idle>-0     (-----) [000] dnh6 24574.237743: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
79084          <idle>-0     (-----) [002] d..2 24574.237746: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
79085         sugov:4-560   (  560) [007] .... 24574.237747: cpu_frequency: state=1612800 cpu_id=5
79086         sugov:4-560   (  560) [007] .... 24574.237748: cpu_frequency: state=1612800 cpu_id=6
79087         sugov:4-560   (  560) [007] .... 24574.237750: cpu_frequency: state=1612800 cpu_id=7
79088         sugov:4-560   (  560) [007] d..2 24574.237762: 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
79089          <idle>-0     (-----) [000] dnh2 24574.237763: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
79090<...>-24168 ( 24151) [006] d..1 24574.237763: sched_waking: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=000
79091          <idle>-0     (-----) [007] d..1 24574.237767: cpu_idle: state=0 cpu_id=7
79092          <idle>-0     (-----) [000] .n.1 24574.237769: cpu_idle: state=4294967295 cpu_id=0
79093          <idle>-0     (-----) [000] d..2 24574.237777: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
79094          <idle>-0     (-----) [003] dnh2 24574.237783: sched_wakeup: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=003
79095          <idle>-0     (-----) [003] .n.1 24574.237786: cpu_idle: state=4294967295 cpu_id=3
79096  crtc_event:111-254   (  254) [000] d..2 24574.237789: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
79097          <idle>-0     (-----) [003] d..2 24574.237793: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=pool-1-thread-1 next_pid=24340 next_prio=120
79098 crtc_commit:111-253   (  253) [002] d..2 24574.237835: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79099          <idle>-0     (-----) [002] d..1 24574.237849: cpu_idle: state=0 cpu_id=2
79100          <idle>-0     (-----) [002] ...1 24574.237859: cpu_idle: state=4294967295 cpu_id=2
79101          <idle>-0     (-----) [002] d..1 24574.237861: cpu_idle: state=0 cpu_id=2
79102  kworker/u16:10-23868 (23868) [000] .... 24574.237894: clk_set_rate: l3_cluster0_vote_clk 1132800000
79103  kworker/u16:10-23868 (23868) [000] .... 24574.237899: clk_set_rate: l3_clk 1132800000
79104  kworker/u16:10-23868 (23868) [000] d..2 24574.237940: 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
79105          <idle>-0     (-----) [000] d..1 24574.237947: cpu_idle: state=0 cpu_id=0
79106          <idle>-0     (-----) [007] ...1 24574.237963: cpu_idle: state=4294967295 cpu_id=7
79107          <idle>-0     (-----) [007] d..1 24574.237965: cpu_idle: state=0 cpu_id=7
79108          <idle>-0     (-----) [000] d.h5 24574.238019: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
79109          <idle>-0     (-----) [000] dnh6 24574.238026: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
79110          <idle>-0     (-----) [000] .n.1 24574.238038: cpu_idle: state=4294967295 cpu_id=0
79111          <idle>-0     (-----) [000] d..2 24574.238043: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
79112  crtc_event:111-254   (  254) [000] d..2 24574.238058: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79113          <idle>-0     (-----) [000] d..1 24574.238062: cpu_idle: state=0 cpu_id=0
79114<...>-24168 ( 24151) [006] d..1 24574.238076: sched_waking: comm=ReferenceQueueD pid=24165 prio=124 target_cpu=000
79115          <idle>-0     (-----) [000] dnh2 24574.238094: sched_wakeup: comm=ReferenceQueueD pid=24165 prio=124 target_cpu=000
79116          <idle>-0     (-----) [000] .n.1 24574.238098: cpu_idle: state=4294967295 cpu_id=0
79117          <idle>-0     (-----) [000] d..2 24574.238103: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=24165 next_prio=124
79118<...>-24168 ( 24151) [006] d..2 24574.238126: sched_switch: prev_comm=HeapTaskDaemon prev_pid=24168 prev_prio=124 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
79119          <idle>-0     (-----) [006] d..1 24574.238139: cpu_idle: state=0 cpu_id=6
79120<...>-24340 ( 24151) [003] .... 24574.238158: binder_transaction: transaction=1670649 dest_node=1270773 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xd
79121<...>-24340 ( 24151) [003] d..4 24574.238163: sched_waking: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=001
79122<...>-24340 ( 24151) [003] d..5 24574.238178: sched_wakeup: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=003
79123<...>-24340 ( 24151) [003] d..2 24574.238188: sched_switch: prev_comm=pool-1-thread-1 prev_pid=24340 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_8 next_pid=24659 next_prio=120
79124<...>-24659 ( 23968) [003] .... 24574.238193: binder_transaction_received: transaction=1670649
79125<...>-24659 ( 23968) [003] .... 24574.238539: binder_transaction: transaction=1670650 dest_node=0 dest_proc=24151 dest_thread=24340 reply=1 flags=0x0 code=0x0
79126<...>-24659 ( 23968) [003] d..2 24574.238545: sched_waking: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=003
79127<...>-24659 ( 23968) [003] d..3 24574.238553: sched_wakeup: comm=pool-1-thread-1 pid=24340 prio=120 target_cpu=003
79128<...>-24165 ( 24151) [000] d..5 24574.238559: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=000
79129<...>-24165 ( 24151) [000] d..6 24574.238580: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=002
79130<...>-24659 ( 23968) [003] d..3 24574.238583: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=007
79131          <idle>-0     (-----) [002] .n.1 24574.238584: cpu_idle: state=4294967295 cpu_id=2
79132          <idle>-0     (-----) [002] d..2 24574.238590: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
79133          <idle>-0     (-----) [006] dnh2 24574.238609: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=006
79134          <idle>-0     (-----) [006] .n.1 24574.238612: cpu_idle: state=4294967295 cpu_id=6
79135          <idle>-0     (-----) [006] d..2 24574.238617: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
79136<...>-24659 ( 23968) [003] d..2 24574.238621: sched_switch: prev_comm=Binder:23968_8 prev_pid=24659 prev_prio=120 prev_state=S ==> next_comm=pool-1-thread-1 next_pid=24340 next_prio=120
79137<...>-24340 ( 24151) [003] .... 24574.238625: binder_transaction_received: transaction=1670650
79138  Binder:23968_5-24233 (23968) [006] d..2 24574.238627: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
79139          <idle>-0     (-----) [006] d..1 24574.238631: cpu_idle: state=0 cpu_id=6
79140<...>-24165 ( 24151) [000] d..5 24574.238639: sched_waking: comm=Binder:28152_1 pid=28166 prio=120 target_cpu=000
79141<...>-12589 ( 23968) [002] d..2 24574.238649: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79142          <idle>-0     (-----) [002] d..1 24574.238654: cpu_idle: state=0 cpu_id=2
79143<...>-24165 ( 24151) [000] d..6 24574.238666: sched_wakeup: comm=Binder:28152_1 pid=28166 prio=120 target_cpu=001
79144<...>-25554 ( 24827) [001] d..2 24574.238677: sched_switch: prev_comm=Binder:24827_4 prev_pid=25554 prev_prio=120 prev_state=R ==> next_comm=Binder:28152_1 next_pid=28166 next_prio=120
79145<...>-24165 ( 24151) [000] d..5 24574.238689: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=002
79146<...>-24165 ( 24151) [000] d..6 24574.238699: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=002
79147          <idle>-0     (-----) [002] .n.1 24574.238704: cpu_idle: state=4294967295 cpu_id=2
79148          <idle>-0     (-----) [002] d..2 24574.238709: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
79149<...>-24165 ( 24151) [000] d.h1 24574.238734: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
79150<...>-28166 ( 28152) [001] d..2 24574.238739: sched_switch: prev_comm=Binder:28152_1 prev_pid=28166 prev_prio=120 prev_state=S ==> next_comm=Binder:24827_4 next_pid=25554 next_prio=120
79151<...>-12589 ( 23968) [002] d..2 24574.238741: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79152          <idle>-0     (-----) [002] d..1 24574.238745: cpu_idle: state=0 cpu_id=2
79153<...>-24165 ( 24151) [000] d.h2 24574.238754: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
79154          <idle>-0     (-----) [002] .n.1 24574.238758: cpu_idle: state=4294967295 cpu_id=2
79155          <idle>-0     (-----) [002] d..2 24574.238763: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
79156<...>-24340 ( 24151) [003] d..2 24574.238777: sched_switch: prev_comm=pool-1-thread-1 prev_pid=24340 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79157          <idle>-0     (-----) [003] d..1 24574.238787: cpu_idle: state=0 cpu_id=3
79158        DispSync-23904 (23896) [002] d..1 24574.238791: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
79159        DispSync-23904 (23896) [002] d..2 24574.238811: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
79160          <idle>-0     (-----) [003] .n.1 24574.238817: cpu_idle: state=4294967295 cpu_id=3
79161          <idle>-0     (-----) [003] d..2 24574.238823: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
79162        DispSync-23904 (23896) [002] d..2 24574.238834: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79163          <idle>-0     (-----) [002] d..1 24574.238839: cpu_idle: state=0 cpu_id=2
79164   sfEventThread-23906 (23896) [003] d..3 24574.238880: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
79165   sfEventThread-23906 (23896) [003] d..4 24574.238900: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
79166          <idle>-0     (-----) [002] .n.1 24574.238904: cpu_idle: state=4294967295 cpu_id=2
79167          <idle>-0     (-----) [002] d..2 24574.238908: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
79168<...>-24165 ( 24151) [000] d..5 24574.238920: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=002
79169   sfEventThread-23906 (23896) [003] d..2 24574.238922: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79170          <idle>-0     (-----) [003] d..1 24574.238929: cpu_idle: state=0 cpu_id=3
79171<...>-24165 ( 24151) [000] d..6 24574.238936: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=003
79172          <idle>-0     (-----) [003] .n.1 24574.238940: cpu_idle: state=4294967295 cpu_id=3
79173          <idle>-0     (-----) [003] d..2 24574.238947: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
79174<...>-12589 ( 23968) [003] d..2 24574.238985: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79175          <idle>-0     (-----) [003] d..1 24574.238992: cpu_idle: state=0 cpu_id=3
79176<...>-24165 ( 24151) [000] d..5 24574.239186: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=003
79177<...>-24165 ( 24151) [000] d..6 24574.239197: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=003
79178          <idle>-0     (-----) [003] .n.1 24574.239202: cpu_idle: state=4294967295 cpu_id=3
79179          <idle>-0     (-----) [003] d..2 24574.239208: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
79180<...>-12589 ( 23968) [003] d..2 24574.239235: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79181          <idle>-0     (-----) [003] d..1 24574.239242: cpu_idle: state=0 cpu_id=3
79182<...>-24165 ( 24151) [000] d..3 24574.239414: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=001
79183<...>-24165 ( 24151) [000] d..4 24574.239434: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=003
79184          <idle>-0     (-----) [003] .n.1 24574.239439: cpu_idle: state=4294967295 cpu_id=3
79185          <idle>-0     (-----) [003] d..2 24574.239445: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
79186<...>-24165 ( 24151) [000] d..3 24574.239474: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=003
79187    RenderThread-24437 (24151) [003] d..2 24574.239485: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79188          <idle>-0     (-----) [003] dn.1 24574.239493: cpu_idle: state=0 cpu_id=3
79189          <idle>-0     (-----) [003] .n.1 24574.239495: cpu_idle: state=4294967295 cpu_id=3
79190<...>-24165 ( 24151) [000] d..4 24574.239496: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=003
79191          <idle>-0     (-----) [003] d..2 24574.239504: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
79192    RenderThread-24437 (24151) [003] d..2 24574.239521: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79193          <idle>-0     (-----) [003] d..1 24574.239527: cpu_idle: state=0 cpu_id=3
79194  surfaceflinger-23896 (23896) [002] d..1 24574.239543: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
79195<...>-24165 ( 24151) [000] d..1 24574.239547: sched_waking: comm=FinalizerDaemon pid=24166 prio=124 target_cpu=001
79196  surfaceflinger-23896 (23896) [002] d..2 24574.239556: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
79197          <idle>-0     (-----) [003] .n.1 24574.239560: cpu_idle: state=4294967295 cpu_id=3
79198          <idle>-0     (-----) [003] d..2 24574.239565: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
79199          <idle>-0     (-----) [006] dnh2 24574.239600: sched_wakeup: comm=FinalizerDaemon pid=24166 prio=124 target_cpu=006
79200<...>-24165 ( 24151) [000] d.h3 24574.239601: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
79201          <idle>-0     (-----) [006] .n.1 24574.239602: cpu_idle: state=4294967295 cpu_id=6
79202          <idle>-0     (-----) [006] d..2 24574.239606: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerDaemon next_pid=24166 next_prio=124
79203   sfEventThread-23906 (23896) [003] d..2 24574.239610: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79204<...>-24165 ( 24151) [000] d.h3 24574.239610: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
79205          <idle>-0     (-----) [007] dnh2 24574.239615: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
79206          <idle>-0     (-----) [003] d..1 24574.239616: cpu_idle: state=0 cpu_id=3
79207          <idle>-0     (-----) [007] .n.1 24574.239617: cpu_idle: state=4294967295 cpu_id=7
79208<...>-24166 ( 24151) [006] d..2 24574.239619: sched_switch: prev_comm=FinalizerDaemon prev_pid=24166 prev_prio=124 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
79209          <idle>-0     (-----) [007] d..2 24574.239621: 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
79210          <idle>-0     (-----) [006] d..1 24574.239622: cpu_idle: state=0 cpu_id=6
79211<...>-24165 ( 24151) [000] d.h4 24574.239624: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
79212         sugov:4-560   (  560) [007] d..2 24574.239628: 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
79213          <idle>-0     (-----) [003] .n.1 24574.239629: cpu_idle: state=4294967295 cpu_id=3
79214<...>-24165 ( 24151) [000] d..1 24574.239630: sched_waking: comm=FinalizerDaemon pid=24166 prio=124 target_cpu=006
79215          <idle>-0     (-----) [007] d..1 24574.239631: cpu_idle: state=0 cpu_id=7
79216          <idle>-0     (-----) [003] d..2 24574.239634: 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
79217          <idle>-0     (-----) [006] dnh2 24574.239643: sched_wakeup: comm=FinalizerDaemon pid=24166 prio=124 target_cpu=006
79218          <idle>-0     (-----) [006] .n.1 24574.239645: cpu_idle: state=4294967295 cpu_id=6
79219         sugov:0-559   (  559) [003] d..2 24574.239648: 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
79220          <idle>-0     (-----) [006] d..2 24574.239648: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerDaemon next_pid=24166 next_prio=124
79221          <idle>-0     (-----) [003] d..1 24574.239653: cpu_idle: state=0 cpu_id=3
79222<...>-24166 ( 24151) [006] d..1 24574.239663: sched_waking: comm=FinalizerWatchd pid=24167 prio=124 target_cpu=000
79223<...>-24165 ( 24151) [000] d..2 24574.239676: sched_switch: prev_comm=ReferenceQueueD prev_pid=24165 prev_prio=124 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79224          <idle>-0     (-----) [003] dnh2 24574.239684: sched_wakeup: comm=FinalizerWatchd pid=24167 prio=124 target_cpu=003
79225          <idle>-0     (-----) [000] d..1 24574.239688: cpu_idle: state=0 cpu_id=0
79226          <idle>-0     (-----) [003] .n.1 24574.239688: cpu_idle: state=4294967295 cpu_id=3
79227          <idle>-0     (-----) [003] d..2 24574.239693: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerWatchd next_pid=24167 next_prio=124
79228<...>-24167 ( 24151) [003] d..2 24574.239743: sched_switch: prev_comm=FinalizerWatchd prev_pid=24167 prev_prio=124 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79229  surfaceflinger-23896 (23896) [002] d.h1 24574.239749: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
79230          <idle>-0     (-----) [003] d..1 24574.239750: cpu_idle: state=0 cpu_id=3
79231  surfaceflinger-23896 (23896) [002] d.h2 24574.239764: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
79232          <idle>-0     (-----) [000] .n.1 24574.239770: cpu_idle: state=4294967295 cpu_id=0
79233          <idle>-0     (-----) [000] d..2 24574.239776: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
79234        DispSync-23904 (23896) [000] d..1 24574.239789: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
79235        DispSync-23904 (23896) [000] d..2 24574.239806: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
79236          <idle>-0     (-----) [003] .n.1 24574.239812: cpu_idle: state=4294967295 cpu_id=3
79237          <idle>-0     (-----) [003] d..2 24574.239817: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
79238        DispSync-23904 (23896) [000] d..2 24574.239825: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79239          <idle>-0     (-----) [000] d..1 24574.239832: cpu_idle: state=0 cpu_id=0
79240  appEventThread-23905 (23896) [003] d..3 24574.239860: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
79241  appEventThread-23905 (23896) [003] d..4 24574.239875: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
79242          <idle>-0     (-----) [000] .n.1 24574.239881: cpu_idle: state=4294967295 cpu_id=0
79243  appEventThread-23905 (23896) [003] d..3 24574.239887: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
79244          <idle>-0     (-----) [000] d..2 24574.239887: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
79245          <idle>-0     (-----) [007] dnh2 24574.239928: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
79246          <idle>-0     (-----) [007] .n.1 24574.239930: cpu_idle: state=4294967295 cpu_id=7
79247          <idle>-0     (-----) [007] d..2 24574.239934: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
79248  appEventThread-23905 (23896) [003] d..2 24574.239947: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79249          <idle>-0     (-----) [003] d..1 24574.239955: cpu_idle: state=0 cpu_id=3
79250<...>-24151 ( 24151) [007] .... 24574.240069: binder_transaction: transaction=1670651 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
79251<...>-24151 ( 24151) [007] d..4 24574.240076: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
79252 s.nexuslauncher-24827 (24827) [000] .... 24574.240095: binder_transaction: transaction=1670652 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
79253          <idle>-0     (-----) [003] dnh2 24574.240099: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=003
79254 s.nexuslauncher-24827 (24827) [000] d..4 24574.240102: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
79255          <idle>-0     (-----) [003] .n.1 24574.240103: cpu_idle: state=4294967295 cpu_id=3
79256<...>-24151 ( 24151) [007] d..3 24574.240105: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=003
79257          <idle>-0     (-----) [003] d..2 24574.240109: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
79258          <idle>-0     (-----) [005] dnh2 24574.240153: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
79259  Binder:23896_4-24423 (23896) [003] d.h2 24574.240154: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=003
79260 s.nexuslauncher-24827 (24827) [000] d.h5 24574.240155: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
79261          <idle>-0     (-----) [005] .n.1 24574.240156: cpu_idle: state=4294967295 cpu_id=5
79262          <idle>-0     (-----) [005] d..2 24574.240160: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
79263 s.nexuslauncher-24827 (24827) [000] d.h5 24574.240168: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
79264          <idle>-0     (-----) [004] dnh2 24574.240176: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
79265          <idle>-0     (-----) [004] .n.1 24574.240179: cpu_idle: state=4294967295 cpu_id=4
79266 s.nexuslauncher-24827 (24827) [000] d.h6 24574.240181: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
79267          <idle>-0     (-----) [004] d..2 24574.240185: 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
79268<...>-25554 ( 24827) [001] d..2 24574.240189: sched_switch: prev_comm=Binder:24827_4 prev_pid=25554 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
79269         sugov:4-560   (  560) [004] d..2 24574.240195: 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
79270  Binder:23896_5-25989 (23896) [005] .... 24574.240196: binder_transaction_received: transaction=1670652
79271  Binder:23896_4-24423 (23896) [003] .... 24574.240196: binder_transaction_received: transaction=1670651
79272          <idle>-0     (-----) [004] d..1 24574.240199: cpu_idle: state=0 cpu_id=4
79273  surfaceflinger-23896 (23896) [002] ...1 24574.240202: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
79274         sugov:0-559   (  559) [001] d..2 24574.240204: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:24827_4 next_pid=25554 next_prio=120
79275  surfaceflinger-23896 (23896) [002] ...1 24574.240208: tracing_mark_write: E|23896
79276  Binder:23896_5-25989 (23896) [005] d..1 24574.240210: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
79277  Binder:23896_5-25989 (23896) [005] d..1 24574.240222: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=003
79278 s.nexuslauncher-24827 (24827) [000] d..3 24574.240223: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
79279  Binder:23896_4-24423 (23896) [003] d..2 24574.240223: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
79280<...>-24151 ( 24151) [007] d..2 24574.240224: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
79281<...>-25554 ( 24827) [001] dnh1 24574.240227: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
79282          <idle>-0     (-----) [007] d..1 24574.240232: cpu_idle: state=0 cpu_id=7
79283<...>-25554 ( 24827) [001] d..2 24574.240232: sched_switch: prev_comm=Binder:24827_4 prev_pid=25554 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
79284  Binder:23896_5-25989 (23896) [005] d..2 24574.240245: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=007
79285  surfaceflinger-23896 (23896) [002] .... 24574.240258: binder_transaction: transaction=1670653 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
79286          <idle>-0     (-----) [007] dnh2 24574.240267: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=007
79287          <idle>-0     (-----) [007] .n.1 24574.240270: cpu_idle: state=4294967295 cpu_id=7
79288  appEventThread-23905 (23896) [001] d..2 24574.240271: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:24827_4 next_pid=25554 next_prio=120
79289          <idle>-0     (-----) [007] d..2 24574.240274: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
79290  surfaceflinger-23896 (23896) [002] ...2 24574.240287: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
79291  Binder:23896_5-25989 (23896) [005] d..2 24574.240289: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
79292  Binder:23896_4-24423 (23896) [005] d..1 24574.240293: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
79293  surfaceflinger-23896 (23896) [002] d..4 24574.240295: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
79294    RenderThread-25194 (24827) [007] d..2 24574.240298: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
79295          <idle>-0     (-----) [007] d..1 24574.240302: cpu_idle: state=0 cpu_id=7
79296<...>-25554 ( 24827) [001] dnh1 24574.240305: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
79297  Binder:23896_4-24423 (23896) [005] d..2 24574.240309: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
79298          <idle>-0     (-----) [005] d..1 24574.240313: cpu_idle: state=0 cpu_id=5
79299  surfaceflinger-23896 (23896) [002] d..5 24574.240314: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
79300<...>-25554 ( 24827) [001] d..2 24574.240320: sched_switch: prev_comm=Binder:24827_4 prev_pid=25554 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
79301  surfaceflinger-23896 (23896) [002] d..2 24574.240342: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79302    RenderThread-24437 (24151) [003] d..2 24574.240348: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
79303          <idle>-0     (-----) [002] d..1 24574.240348: cpu_idle: state=0 cpu_id=2
79304  HwBinder:598_3-633   (  598) [003] .... 24574.240357: binder_transaction_received: transaction=1670653
79305  appEventThread-23905 (23896) [001] d..2 24574.240358: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:24827_4 next_pid=25554 next_prio=120
79306  HwBinder:598_3-633   (  598) [003] ...1 24574.240404: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
79307  HwBinder:598_3-633   (  598) [003] ...1 24574.240466: tracing_mark_write: B|598|HIDL::IMapper::importBuffer::passthrough
79308  HwBinder:598_3-633   (  598) [003] ...1 24574.240500: tracing_mark_write: E|598
79309  HwBinder:598_3-633   (  598) [003] ...1 24574.240593: tracing_mark_write: B|598|HWCSession::PresentDisplay::
79310 s.nexuslauncher-24827 (24827) [000] d..3 24574.240601: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=007
79311 s.nexuslauncher-24827 (24827) [000] d..4 24574.240624: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
79312          <idle>-0     (-----) [002] .n.1 24574.240628: cpu_idle: state=4294967295 cpu_id=2
79313 s.nexuslauncher-24827 (24827) [000] d.h3 24574.240656: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
79314          <idle>-0     (-----) [002] d..2 24574.240657: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
79315 s.nexuslauncher-24827 (24827) [000] d.h3 24574.240664: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
79316          <idle>-0     (-----) [004] dnh2 24574.240670: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
79317          <idle>-0     (-----) [004] .n.1 24574.240672: cpu_idle: state=4294967295 cpu_id=4
79318 s.nexuslauncher-24827 (24827) [000] d.h4 24574.240672: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
79319          <idle>-0     (-----) [004] d..2 24574.240675: 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
79320         sugov:4-560   (  560) [004] d..2 24574.240682: 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
79321<...>-25554 ( 24827) [001] d..2 24574.240683: sched_switch: prev_comm=Binder:24827_4 prev_pid=25554 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
79322          <idle>-0     (-----) [004] d..1 24574.240685: cpu_idle: state=0 cpu_id=4
79323 s.nexuslauncher-24827 (24827) [000] d..2 24574.240691: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79324         sugov:0-559   (  559) [001] d..2 24574.240693: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:24827_4 next_pid=25554 next_prio=120
79325          <idle>-0     (-----) [000] d..1 24574.240701: cpu_idle: state=0 cpu_id=0
79326    RenderThread-25194 (24827) [002] d..1 24574.240778: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
79327    RenderThread-25194 (24827) [002] d..2 24574.240791: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
79328          <idle>-0     (-----) [000] .n.1 24574.240796: cpu_idle: state=4294967295 cpu_id=0
79329          <idle>-0     (-----) [000] d..2 24574.240803: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
79330    RenderThread-25194 (24827) [002] d..1 24574.240808: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
79331<...>-24166 ( 24151) [006] ...1 24574.240820: tracing_mark_write: B|24151|HIDL::IMapper::freeBuffer::passthrough
79332          <idle>-0     (-----) [005] dnh2 24574.240827: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
79333          <idle>-0     (-----) [005] .n.1 24574.240829: cpu_idle: state=4294967295 cpu_id=5
79334          <idle>-0     (-----) [005] d..2 24574.240833: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
79335<...>-24166 ( 24151) [006] ...1 24574.240833: tracing_mark_write: B|24151|FreeBuffer
79336<...>-24166 ( 24151) [006] ...1 24574.240845: tracing_mark_write: E|24151
79337<...>-24166 ( 24151) [006] ...1 24574.240847: tracing_mark_write: B|24151|FreeBuffer
79338<...>-24166 ( 24151) [006] ...1 24574.240851: tracing_mark_write: E|24151
79339<...>-24166 ( 24151) [006] ...1 24574.240855: tracing_mark_write: E|24151
79340 s.nexuslauncher-24827 (24827) [000] d..2 24574.240863: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79341          <idle>-0     (-----) [000] d..1 24574.240870: cpu_idle: state=0 cpu_id=0
79342    RenderThread-25194 (24827) [002] .... 24574.240872: binder_transaction: transaction=1670654 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
79343    RenderThread-25194 (24827) [002] ...2 24574.240877: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
79344    RenderThread-25194 (24827) [002] d.s5 24574.240877: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
79345    RenderThread-25194 (24827) [002] d.s6 24574.240877: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
79346<...>-24166 ( 24151) [006] d..2 24574.240881: sched_switch: prev_comm=FinalizerDaemon prev_pid=24166 prev_prio=124 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
79347<...>-27853 ( 24827) [005] d.s2 24574.240903: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
79348          <idle>-0     (-----) [006] d..1 24574.240911: cpu_idle: state=0 cpu_id=6
79349<...>-25554 ( 24827) [001] dnh2 24574.240936: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
79350    RenderThread-25194 (24827) [002] d..4 24574.240943: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=005
79351<...>-25554 ( 24827) [001] d..2 24574.240946: sched_switch: prev_comm=Binder:24827_4 prev_pid=25554 prev_prio=120 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
79352    RenderThread-25194 (24827) [002] d..5 24574.240955: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
79353     rcu_preempt-7     (    7) [001] d..2 24574.240956: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
79354     rcu_preempt-7     (    7) [001] d..3 24574.240991: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
79355    RenderThread-25194 (24827) [002] d..2 24574.240993: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
79356          <idle>-0     (-----) [000] .n.1 24574.240996: cpu_idle: state=4294967295 cpu_id=0
79357  Binder:23896_4-24423 (23896) [002] .... 24574.240998: binder_transaction_received: transaction=1670654
79358<...>-27853 ( 24827) [005] .... 24574.241000: binder_transaction: transaction=1670655 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
79359          <idle>-0     (-----) [000] d..2 24574.241004: 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
79360     rcu_preempt-7     (    7) [001] d..2 24574.241005: 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
79361<...>-27853 ( 24827) [005] ...2 24574.241009: binder_set_priority: proc=23896 thread=25989 old=120 => new=118 desired=118
79362         rcuop/0-10    (   10) [000] d..2 24574.241010: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
79363<...>-27853 ( 24827) [005] d..4 24574.241011: sched_waking: comm=Binder:23896_5 pid=25989 prio=118 target_cpu=005
79364<...>-27853 ( 24827) [005] d..5 24574.241017: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=118 target_cpu=005
79365<...>-27853 ( 24827) [005] d..2 24574.241023: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=118
79366  Binder:23896_5-25989 (23896) [005] .... 24574.241030: binder_transaction_received: transaction=1670655
79367         rcuop/0-10    (   10) [000] d..3 24574.241033: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
79368         rcuop/0-10    (   10) [000] d..2 24574.241046: 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
79369  Binder:23896_4-24423 (23896) [002] .... 24574.241052: binder_transaction: transaction=1670656 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
79370         rcuop/1-21    (   21) [000] d..2 24574.241070: 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
79371  HwBinder:598_3-633   (  598) [003] ...1 24574.241071: tracing_mark_write: B|598|HWDeviceDRM::Validate::
79372          <idle>-0     (-----) [000] d..1 24574.241076: cpu_idle: state=0 cpu_id=0
79373  Binder:23896_4-24423 (23896) [002] d..2 24574.241084: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
79374  Binder:23896_4-24423 (23896) [002] d..3 24574.241091: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
79375  Binder:23896_4-24423 (23896) [002] .... 24574.241094: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
79376  Binder:23896_4-24423 (23896) [002] d..2 24574.241102: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
79377  Binder:23896_5-25989 (23896) [005] .... 24574.241106: binder_transaction: transaction=1670657 dest_node=0 dest_proc=24827 dest_thread=27853 reply=1 flags=0x0 code=0x0
79378  Binder:23896_5-25989 (23896) [005] d..2 24574.241108: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
79379    RenderThread-25194 (24827) [002] .... 24574.241111: binder_transaction_received: transaction=1670656
79380  Binder:23896_5-25989 (23896) [005] d..3 24574.241112: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
79381  Binder:23896_5-25989 (23896) [005] .... 24574.241113: binder_set_priority: proc=23896 thread=25989 old=118 => new=120 desired=120
79382  Binder:23896_5-25989 (23896) [005] d..2 24574.241118: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
79383<...>-27853 ( 24827) [005] .... 24574.241120: binder_transaction_received: transaction=1670657
79384<...>-27853 ( 24827) [005] d..2 24574.241143: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
79385  Binder:23896_5-25989 (23896) [005] d..2 24574.241167: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
79386          <idle>-0     (-----) [005] d..1 24574.241174: cpu_idle: state=0 cpu_id=5
79387  kworker/u16:10-23868 (23868) [001] d..2 24574.241294: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=Binder:24827_4 next_pid=25554 next_prio=120
79388  HwBinder:598_3-633   (  598) [003] d.s1 24574.241325: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
79389  HwBinder:598_3-633   (  598) [003] d.s2 24574.241336: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
79390  HwBinder:598_3-633   (  598) [003] ...1 24574.241726: tracing_mark_write: E|598
79391  HwBinder:598_3-633   (  598) [003] ...1 24574.241832: tracing_mark_write: B|598|HWDeviceDRM::Commit::
79392  HwBinder:598_3-633   (  598) [003] ...1 24574.241838: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
79393          <idle>-0     (-----) [000] ...1 24574.242188: cpu_idle: state=4294967295 cpu_id=0
79394          <idle>-0     (-----) [000] d..1 24574.242191: cpu_idle: state=0 cpu_id=0
79395  HwBinder:598_3-633   (  598) [003] d..2 24574.242268: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
79396  HwBinder:598_3-633   (  598) [003] d..3 24574.242288: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
79397          <idle>-0     (-----) [000] .n.1 24574.242292: cpu_idle: state=4294967295 cpu_id=0
79398          <idle>-0     (-----) [000] d..2 24574.242297: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
79399  HwBinder:598_3-633   (  598) [003] ...1 24574.242357: tracing_mark_write: E|598
79400  HwBinder:598_3-633   (  598) [003] ...1 24574.242361: tracing_mark_write: E|598
79401  HwBinder:598_3-633   (  598) [003] ...1 24574.242399: tracing_mark_write: E|598
79402  HwBinder:598_3-633   (  598) [003] ...1 24574.242436: tracing_mark_write: E|598
79403  HwBinder:598_3-633   (  598) [003] .... 24574.242449: binder_transaction: transaction=1670658 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
79404  HwBinder:598_3-633   (  598) [003] d..2 24574.242464: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
79405  HwBinder:598_3-633   (  598) [003] d..3 24574.242480: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
79406  HwBinder:598_3-633   (  598) [003] .... 24574.242484: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
79407<...>-25554 ( 24827) [001] d..2 24574.242493: sched_switch: prev_comm=Binder:24827_4 prev_pid=25554 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
79408  surfaceflinger-23896 (23896) [001] .... 24574.242501: binder_transaction_received: transaction=1670658
79409  HwBinder:598_3-633   (  598) [003] d..2 24574.242540: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
79410     ksoftirqd/3-34    (   34) [003] d.s2 24574.242554: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
79411     ksoftirqd/3-34    (   34) [003] d.s3 24574.242575: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
79412     ksoftirqd/3-34    (   34) [003] d.s3 24574.242580: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
79413     ksoftirqd/3-34    (   34) [003] d..2 24574.242589: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
79414    RenderThread-24437 (24151) [003] d..1 24574.242595: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
79415    RenderThread-25194 (24827) [002] .... 24574.242600: binder_transaction: transaction=1670659 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
79416    RenderThread-25194 (24827) [002] ...2 24574.242608: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
79417    RenderThread-25194 (24827) [002] d..4 24574.242611: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
79418          <idle>-0     (-----) [006] dnh2 24574.242617: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
79419          <idle>-0     (-----) [006] .n.1 24574.242620: cpu_idle: state=4294967295 cpu_id=6
79420          <idle>-0     (-----) [006] d..2 24574.242625: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
79421          <idle>-0     (-----) [005] dnh2 24574.242630: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
79422    RenderThread-25194 (24827) [002] d..2 24574.242633: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
79423          <idle>-0     (-----) [005] .n.1 24574.242633: cpu_idle: state=4294967295 cpu_id=5
79424          <idle>-0     (-----) [005] d..2 24574.242637: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
79425  Binder:23896_5-25989 (23896) [005] .... 24574.242640: binder_transaction_received: transaction=1670659
79426    RenderThread-24437 (24151) [003] .... 24574.242664: binder_transaction: transaction=1670660 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
79427    RenderThread-24437 (24151) [003] d..4 24574.242668: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=002
79428  Binder:23896_4-24423 (23896) [002] d..2 24574.242670: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79429<...>-24151 ( 24151) [006] d..2 24574.242677: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
79430          <idle>-0     (-----) [006] d..1 24574.242682: cpu_idle: state=0 cpu_id=6
79431    RenderThread-24437 (24151) [003] dn.5 24574.242684: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=003
79432          <idle>-0     (-----) [002] d..1 24574.242684: cpu_idle: state=0 cpu_id=2
79433    RenderThread-24437 (24151) [003] d..2 24574.242689: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
79434  Binder:23896_4-24423 (23896) [003] .... 24574.242694: binder_transaction_received: transaction=1670660
79435  Binder:23896_5-25989 (23896) [005] .... 24574.242700: binder_transaction: transaction=1670661 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
79436  Binder:23896_5-25989 (23896) [005] d..2 24574.242703: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
79437  Binder:23896_5-25989 (23896) [005] dn.3 24574.242714: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
79438  Binder:23896_4-24423 (23896) [003] .... 24574.242733: binder_transaction: transaction=1670662 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
79439  Binder:23896_5-25989 (23896) [005] dnh3 24574.242740: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
79440  Binder:23896_5-25989 (23896) [005] dnh4 24574.242747: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
79441  Binder:23896_5-25989 (23896) [005] dnh3 24574.242748: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
79442          <idle>-0     (-----) [004] .n.1 24574.242752: cpu_idle: state=4294967295 cpu_id=4
79443          <idle>-0     (-----) [004] d..2 24574.242756: 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
79444  Binder:23896_5-25989 (23896) [005] d..2 24574.242759: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
79445  Binder:23896_4-24423 (23896) [003] d..2 24574.242760: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
79446    RenderThread-25194 (24827) [005] .... 24574.242762: binder_transaction_received: transaction=1670661
79447          <idle>-0     (-----) [002] dnh2 24574.242765: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
79448    RenderThread-24437 (24151) [003] .... 24574.242765: binder_transaction_received: transaction=1670662
79449          <idle>-0     (-----) [002] .n.1 24574.242770: cpu_idle: state=4294967295 cpu_id=2
79450         sugov:4-560   (  560) [004] d..2 24574.242772: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
79451  Binder:23896_5-25989 (23896) [004] .... 24574.242775: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
79452          <idle>-0     (-----) [002] d..2 24574.242775: 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
79453         sugov:0-559   (  559) [002] d..2 24574.242790: 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
79454          <idle>-0     (-----) [002] d..1 24574.242796: cpu_idle: state=0 cpu_id=2
79455  Binder:23896_5-25989 (23896) [004] d..2 24574.242804: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
79456          <idle>-0     (-----) [004] d..1 24574.242809: cpu_idle: state=0 cpu_id=4
79457    RenderThread-25194 (24827) [005] d..2 24574.242814: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
79458          <idle>-0     (-----) [005] d..1 24574.242821: cpu_idle: state=0 cpu_id=5
79459  surfaceflinger-23896 (23896) [001] d..2 24574.242882: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=Binder:24827_4 next_pid=25554 next_prio=120
79460 crtc_commit:111-253   (  253) [000] d..2 24574.243392: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
79461  kworker/u16:10-23868 (23868) [000] d..2 24574.243424: 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
79462          <idle>-0     (-----) [000] d..1 24574.243432: cpu_idle: state=0 cpu_id=0
79463          <idle>-0     (-----) [000] d.h3 24574.243695: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
79464          <idle>-0     (-----) [000] d.h4 24574.243708: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
79465          <idle>-0     (-----) [002] .n.1 24574.243714: cpu_idle: state=4294967295 cpu_id=2
79466          <idle>-0     (-----) [002] d..2 24574.243719: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
79467          <idle>-0     (-----) [000] ...1 24574.243719: cpu_idle: state=4294967295 cpu_id=0
79468          <idle>-0     (-----) [000] d..1 24574.243722: cpu_idle: state=0 cpu_id=0
79469 kgsl_worker_thr-246   (  246) [002] d..2 24574.243761: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
79470 kgsl_worker_thr-246   (  246) [002] d..3 24574.243783: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
79471 kgsl_worker_thr-246   (  246) [002] d..2 24574.243797: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
79472  kworker/u16:10-23868 (23868) [002] d..2 24574.243990: 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
79473          <idle>-0     (-----) [002] d..1 24574.243997: cpu_idle: state=0 cpu_id=2
79474          <idle>-0     (-----) [000] ...1 24574.244084: cpu_idle: state=4294967295 cpu_id=0
79475<...>-25554 ( 24827) [001] d..3 24574.244085: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
79476          <idle>-0     (-----) [000] d..1 24574.244087: cpu_idle: state=0 cpu_id=0
79477<...>-25554 ( 24827) [001] d..4 24574.244108: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
79478          <idle>-0     (-----) [000] .n.1 24574.244112: cpu_idle: state=4294967295 cpu_id=0
79479    RenderThread-24437 (24151) [003] .... 24574.244129: binder_transaction: transaction=1670663 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
79480    RenderThread-24437 (24151) [003] d..4 24574.244139: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
79481<...>-25554 ( 24827) [001] d.h3 24574.244143: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
79482          <idle>-0     (-----) [000] d..2 24574.244143: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
79483<...>-25554 ( 24827) [001] d.h3 24574.244154: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
79484          <idle>-0     (-----) [004] dnh2 24574.244157: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
79485    RenderThread-24437 (24151) [003] dn.5 24574.244158: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=003
79486          <idle>-0     (-----) [004] .n.1 24574.244159: cpu_idle: state=4294967295 cpu_id=4
79487<...>-25554 ( 24827) [001] d.h4 24574.244163: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
79488          <idle>-0     (-----) [004] d..2 24574.244163: 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
79489          <idle>-0     (-----) [002] .n.1 24574.244168: cpu_idle: state=4294967295 cpu_id=2
79490          <idle>-0     (-----) [002] d..2 24574.244188: 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
79491         sugov:4-560   (  560) [004] d..2 24574.244192: 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
79492    RenderThread-24437 (24151) [003] d..2 24574.244192: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
79493    RenderThread-25194 (24827) [000] d..2 24574.244194: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79494          <idle>-0     (-----) [004] d..1 24574.244195: cpu_idle: state=0 cpu_id=4
79495  Binder:23896_5-25989 (23896) [003] .... 24574.244197: binder_transaction_received: transaction=1670663
79496          <idle>-0     (-----) [000] d..1 24574.244200: cpu_idle: state=0 cpu_id=0
79497         sugov:0-559   (  559) [002] d..2 24574.244210: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
79498  Binder:23896_5-25989 (23896) [003] d.s2 24574.244239: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
79499  Binder:23896_5-25989 (23896) [003] d.s3 24574.244254: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
79500    RenderThread-24437 (24151) [002] d..2 24574.244259: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
79501  Binder:23896_5-25989 (23896) [003] d.s2 24574.244264: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
79502  Binder:23896_5-25989 (23896) [003] d.s3 24574.244272: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
79503  kworker/u16:10-23868 (23868) [002] d..2 24574.244316: 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
79504          <idle>-0     (-----) [002] d..1 24574.244325: cpu_idle: state=0 cpu_id=2
79505  Binder:23896_5-25989 (23896) [003] .... 24574.244346: binder_transaction: transaction=1670664 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
79506  Binder:23896_5-25989 (23896) [003] d..2 24574.244350: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
79507  Binder:23896_5-25989 (23896) [003] d..3 24574.244368: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
79508          <idle>-0     (-----) [000] .n.1 24574.244372: cpu_idle: state=4294967295 cpu_id=0
79509          <idle>-0     (-----) [000] d..2 24574.244379: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
79510    RenderThread-24437 (24151) [000] .... 24574.244385: binder_transaction_received: transaction=1670664
79511  Binder:23896_5-25989 (23896) [003] d..2 24574.244390: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
79512     kworker/3:1-12662 (12662) [003] d..2 24574.244419: 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
79513          <idle>-0     (-----) [003] d..1 24574.244435: cpu_idle: state=0 cpu_id=3
79514    RenderThread-24437 (24151) [000] d.h2 24574.244443: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
79515    RenderThread-24437 (24151) [000] d.h3 24574.244456: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
79516          <idle>-0     (-----) [002] .n.1 24574.244460: cpu_idle: state=4294967295 cpu_id=2
79517          <idle>-0     (-----) [002] d..2 24574.244466: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
79518    RenderThread-24437 (24151) [000] d..2 24574.244493: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79519          <idle>-0     (-----) [000] d..1 24574.244501: cpu_idle: state=0 cpu_id=0
79520 kgsl_worker_thr-246   (  246) [002] d..2 24574.244554: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79521          <idle>-0     (-----) [002] d..1 24574.244561: cpu_idle: state=0 cpu_id=2
79522          <idle>-0     (-----) [003] ...1 24574.245547: cpu_idle: state=4294967295 cpu_id=3
79523          <idle>-0     (-----) [003] d..1 24574.245550: cpu_idle: state=0 cpu_id=3
79524          <idle>-0     (-----) [002] ...1 24574.245883: cpu_idle: state=4294967295 cpu_id=2
79525          <idle>-0     (-----) [002] d..1 24574.245885: cpu_idle: state=0 cpu_id=2
79526          <idle>-0     (-----) [000] ...1 24574.245902: cpu_idle: state=4294967295 cpu_id=0
79527          <idle>-0     (-----) [000] d..1 24574.245904: cpu_idle: state=0 cpu_id=0
79528<...>-25554 ( 24827) [001] d.s1 24574.247574: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
79529<...>-25554 ( 24827) [001] dns2 24574.247587: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
79530<...>-25554 ( 24827) [001] dns2 24574.247591: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
79531<...>-25554 ( 24827) [001] dns3 24574.247614: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
79532          <idle>-0     (-----) [000] .n.1 24574.247619: cpu_idle: state=4294967295 cpu_id=0
79533<...>-25554 ( 24827) [001] d..2 24574.247621: sched_switch: prev_comm=Binder:24827_4 prev_pid=25554 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
79534          <idle>-0     (-----) [000] d..2 24574.247627: 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
79535     rcu_preempt-7     (    7) [001] d..2 24574.247638: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=Binder:24827_4 next_pid=25554 next_prio=120
79536  kworker/u16:10-23868 (23868) [000] .... 24574.247690: clk_set_rate: l3_cluster0_vote_clk 1401600000
79537  kworker/u16:10-23868 (23868) [000] .... 24574.247696: clk_set_rate: l3_clk 1401600000
79538  kworker/u16:10-23868 (23868) [000] d..2 24574.247737: 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
79539          <idle>-0     (-----) [000] d..1 24574.247744: cpu_idle: state=0 cpu_id=0
79540          <idle>-0     (-----) [000] ...1 24574.248942: cpu_idle: state=4294967295 cpu_id=0
79541          <idle>-0     (-----) [000] d..1 24574.248945: cpu_idle: state=0 cpu_id=0
79542<...>-25554 ( 24827) [001] d.h1 24574.250848: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=001
79543<...>-25554 ( 24827) [001] d.h2 24574.250871: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=000
79544          <idle>-0     (-----) [000] .n.1 24574.250874: cpu_idle: state=4294967295 cpu_id=0
79545          <idle>-0     (-----) [000] d..2 24574.250881: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
79546<...>-25554 ( 24827) [001] d.s2 24574.250895: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
79547<...>-25554 ( 24827) [001] dns3 24574.250919: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
79548<...>-25554 ( 24827) [001] d..2 24574.250927: sched_switch: prev_comm=Binder:24827_4 prev_pid=25554 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
79549  kworker/u16:10-23868 (23868) [001] d..2 24574.251091: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=Binder:24827_4 next_pid=25554 next_prio=120
79550           <...>-13147 (-----) [000] d..2 24574.251096: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
79551           <...>-13147 (-----) [000] d..3 24574.251112: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
79552          <idle>-0     (-----) [003] d.s3 24574.251130: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
79553          <idle>-0     (-----) [003] d.s4 24574.251144: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
79554          <idle>-0     (-----) [003] dns4 24574.251147: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
79555          <idle>-0     (-----) [003] .n.1 24574.251152: cpu_idle: state=4294967295 cpu_id=3
79556          <idle>-0     (-----) [003] d..2 24574.251159: 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
79557           <...>-13147 (-----) [000] d..2 24574.251172: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
79558  kworker/u16:10-23868 (23868) [003] .... 24574.251190: clk_set_rate: l3_cluster1_vote_clk 300000000
79559     logd.writer-563   (  555) [000] d..2 24574.251290: 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
79560  kworker/u16:10-23868 (23868) [003] d..2 24574.251296: 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
79561          <idle>-0     (-----) [000] d..1 24574.251298: cpu_idle: state=0 cpu_id=0
79562          <idle>-0     (-----) [003] d.s4 24574.251321: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
79563          <idle>-0     (-----) [003] d.s5 24574.251328: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
79564          <idle>-0     (-----) [003] dns5 24574.251331: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
79565          <idle>-0     (-----) [003] d..2 24574.251338: 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
79566  kworker/u16:10-23868 (23868) [003] d..2 24574.251353: 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
79567          <idle>-0     (-----) [003] d..1 24574.251361: cpu_idle: state=0 cpu_id=3
79568          <idle>-0     (-----) [005] d.h2 24574.251551: sched_waking: comm=queued-work-loo pid=25203 prio=118 target_cpu=005
79569          <idle>-0     (-----) [000] dnh2 24574.251576: sched_wakeup: comm=queued-work-loo pid=25203 prio=118 target_cpu=000
79570          <idle>-0     (-----) [000] .n.1 24574.251598: cpu_idle: state=4294967295 cpu_id=0
79571          <idle>-0     (-----) [005] d.h3 24574.251600: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
79572          <idle>-0     (-----) [000] d..2 24574.251604: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=queued-work-loo next_pid=25203 next_prio=118
79573          <idle>-0     (-----) [005] d.h4 24574.251607: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
79574          <idle>-0     (-----) [005] d.h3 24574.251608: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
79575          <idle>-0     (-----) [004] .n.1 24574.251612: cpu_idle: state=4294967295 cpu_id=4
79576          <idle>-0     (-----) [005] ...1 24574.251616: cpu_idle: state=4294967295 cpu_id=5
79577          <idle>-0     (-----) [004] d..2 24574.251616: 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
79578          <idle>-0     (-----) [005] d..1 24574.251619: cpu_idle: state=0 cpu_id=5
79579          <idle>-0     (-----) [002] dnh2 24574.251622: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
79580         sugov:4-560   (  560) [004] d..2 24574.251624: 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
79581          <idle>-0     (-----) [002] .n.1 24574.251625: cpu_idle: state=4294967295 cpu_id=2
79582          <idle>-0     (-----) [004] d..1 24574.251627: cpu_idle: state=0 cpu_id=4
79583          <idle>-0     (-----) [002] d..2 24574.251631: 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
79584         sugov:0-559   (  559) [002] d..2 24574.251645: 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
79585          <idle>-0     (-----) [002] d..1 24574.251650: cpu_idle: state=0 cpu_id=2
79586<...>-25203 ( 24827) [000] d.h4 24574.251847: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
79587<...>-25203 ( 24827) [000] d.h5 24574.251867: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
79588<...>-25203 ( 24827) [000] d.h4 24574.251872: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
79589          <idle>-0     (-----) [002] .n.1 24574.251872: cpu_idle: state=4294967295 cpu_id=2
79590          <idle>-0     (-----) [002] d..2 24574.251877: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
79591<...>-25203 ( 24827) [000] d.h5 24574.251884: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
79592          <idle>-0     (-----) [003] .n.1 24574.251890: cpu_idle: state=4294967295 cpu_id=3
79593          <idle>-0     (-----) [003] d..2 24574.251895: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
79594  crtc_event:111-254   (  254) [002] d..2 24574.251902: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79595          <idle>-0     (-----) [002] d..1 24574.251907: cpu_idle: state=0 cpu_id=2
79596 crtc_commit:111-253   (  253) [003] d..2 24574.252020: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
79597          <idle>-0     (-----) [003] d..1 24574.252024: cpu_idle: state=0 cpu_id=3
79598<...>-25203 ( 24827) [000] d..3 24574.253221: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
79599<...>-25203 ( 24827) [000] d..4 24574.253234: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
79600          <idle>-0     (-----) [003] .n.1 24574.253238: cpu_idle: state=4294967295 cpu_id=3
79601<...>-25203 ( 24827) [000] d..3 24574.253243: sched_waking: comm=kworker/0:1H pid=531 prio=100 target_cpu=000
79602          <idle>-0     (-----) [003] d..2 24574.253243: 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
79603<...>-25203 ( 24827) [000] dn.4 24574.253253: sched_wakeup: comm=kworker/0:1H pid=531 prio=100 target_cpu=000
79604<...>-25203 ( 24827) [000] d..2 24574.253258: sched_switch: prev_comm=queued-work-loo prev_pid=25203 prev_prio=118 prev_state=R+ ==> next_comm=kworker/0:1H next_pid=531 next_prio=100
79605          <idle>-0     (-----) [002] ...1 24574.253273: cpu_idle: state=4294967295 cpu_id=2
79606    kworker/0:1H-531   (  531) [000] d..2 24574.253273: sched_switch: prev_comm=kworker/0:1H prev_pid=531 prev_prio=100 prev_state=S ==> next_comm=queued-work-loo next_pid=25203 next_prio=118
79607          <idle>-0     (-----) [002] d..1 24574.253275: cpu_idle: state=0 cpu_id=2
79608<...>-25203 ( 24827) [000] d..2 24574.253292: sched_switch: prev_comm=queued-work-loo prev_pid=25203 prev_prio=118 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
79609          <idle>-0     (-----) [000] d..1 24574.253301: cpu_idle: state=0 cpu_id=0
79610  kworker/u16:10-23868 (23868) [003] d..2 24574.253405: 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
79611          <idle>-0     (-----) [003] d..1 24574.253410: cpu_idle: state=0 cpu_id=3
79612          <idle>-0     (-----) [003] d.s3 24574.253469: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
79613          <idle>-0     (-----) [003] d.s4 24574.253476: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
79614          <idle>-0     (-----) [003] dns4 24574.253479: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
79615          <idle>-0     (-----) [003] .n.1 24574.253483: cpu_idle: state=4294967295 cpu_id=3
79616          <idle>-0     (-----) [003] d..2 24574.253488: 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
79617  kworker/u16:10-23868 (23868) [003] d..2 24574.253563: 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
79618          <idle>-0     (-----) [003] d.s4 24574.253582: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
79619          <idle>-0     (-----) [003] d.s5 24574.253587: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
79620          <idle>-0     (-----) [003] dns5 24574.253589: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
79621          <idle>-0     (-----) [003] d..2 24574.253595: 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
79622  kworker/u16:10-23868 (23868) [003] d..1 24574.253609: clk_enable: gcc_ufs_phy_axi_clk_src
79623  kworker/u16:10-23868 (23868) [003] d..1 24574.253623: clk_enable: gcc_ufs_phy_axi_clk
79624  kworker/u16:10-23868 (23868) [003] d..1 24574.253629: clk_enable: gcc_ufs_phy_axi_hw_ctl_clk
79625  kworker/u16:10-23868 (23868) [003] d..1 24574.253635: clk_enable: gcc_aggre_ufs_phy_axi_clk
79626  kworker/u16:10-23868 (23868) [003] d..1 24574.253639: clk_enable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
79627  kworker/u16:10-23868 (23868) [003] d..1 24574.253644: clk_enable: gcc_ufs_phy_ahb_clk
79628  kworker/u16:10-23868 (23868) [003] d..1 24574.253651: clk_enable: gcc_ufs_phy_unipro_core_clk_src
79629  kworker/u16:10-23868 (23868) [003] d..1 24574.253655: clk_enable: gcc_ufs_phy_unipro_core_clk
79630  kworker/u16:10-23868 (23868) [003] d..1 24574.253659: clk_enable: gcc_ufs_phy_unipro_core_hw_ctl_clk
79631  kworker/u16:10-23868 (23868) [003] d..1 24574.253664: clk_enable: gcc_ufs_phy_ice_core_clk_src
79632  kworker/u16:10-23868 (23868) [003] d..1 24574.253668: clk_enable: gcc_ufs_phy_ice_core_clk
79633  kworker/u16:10-23868 (23868) [003] d..1 24574.253672: clk_enable: gcc_ufs_phy_ice_core_hw_ctl_clk
79634  kworker/u16:10-23868 (23868) [003] d..1 24574.253682: clk_enable: gcc_ufs_mem_clkref_clk
79635  kworker/u16:10-23868 (23868) [003] d..1 24574.253688: clk_enable: gcc_ufs_phy_phy_aux_clk_src
79636  kworker/u16:10-23868 (23868) [003] d..1 24574.253691: clk_enable: gcc_ufs_phy_phy_aux_clk
79637  kworker/u16:10-23868 (23868) [003] d..1 24574.253695: clk_enable: gcc_ufs_phy_phy_aux_hw_ctl_clk
79638<...>-25554 ( 24827) [001] .... 24574.253707: binder_transaction: transaction=1670665 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0xc8
79639<...>-25554 ( 24827) [001] d..4 24574.253716: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=003
79640  kworker/u16:10-23868 (23868) [003] d..3 24574.253730: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
79641<...>-25554 ( 24827) [001] dn.5 24574.253732: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=001
79642<...>-25554 ( 24827) [001] d..2 24574.253738: sched_switch: prev_comm=Binder:24827_4 prev_pid=25554 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
79643<...>-12589 ( 23968) [001] .... 24574.253747: binder_transaction_received: transaction=1670665
79644  kworker/u16:10-23868 (23868) [003] d..4 24574.253755: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
79645          <idle>-0     (-----) [000] ...1 24574.253818: cpu_idle: state=4294967295 cpu_id=0
79646          <idle>-0     (-----) [002] ...1 24574.253820: cpu_idle: state=4294967295 cpu_id=2
79647          <idle>-0     (-----) [000] d..1 24574.253820: cpu_idle: state=0 cpu_id=0
79648  kworker/u16:10-23868 (23868) [003] d..2 24574.253821: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
79649          <idle>-0     (-----) [002] d..1 24574.253822: cpu_idle: state=0 cpu_id=2
79650  kworker/u16:15-18488 (18488) [003] d..2 24574.253835: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79651          <idle>-0     (-----) [003] d..1 24574.253840: cpu_idle: state=0 cpu_id=3
79652          <idle>-0     (-----) [000] d.h5 24574.254166: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
79653          <idle>-0     (-----) [000] d.h6 24574.254177: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
79654          <idle>-0     (-----) [003] .n.1 24574.254181: cpu_idle: state=4294967295 cpu_id=3
79655          <idle>-0     (-----) [000] ...1 24574.254184: cpu_idle: state=4294967295 cpu_id=0
79656          <idle>-0     (-----) [003] d..2 24574.254185: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
79657          <idle>-0     (-----) [000] d..1 24574.254187: cpu_idle: state=0 cpu_id=0
79658<...>-12589 ( 23968) [001] .... 24574.254189: binder_transaction: transaction=1670666 dest_node=0 dest_proc=24827 dest_thread=25554 reply=1 flags=0x0 code=0x0
79659 crtc_commit:111-253   (  253) [003] d.s2 24574.254229: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
79660          <idle>-0     (-----) [000] d.s3 24574.254229: sched_waking: comm=kworker/0:1H pid=531 prio=100 target_cpu=000
79661          <idle>-0     (-----) [000] dns4 24574.254234: sched_wakeup: comm=kworker/0:1H pid=531 prio=100 target_cpu=000
79662<...>-12589 ( 23968) [001] d.s1 24574.254235: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
79663 crtc_commit:111-253   (  253) [003] d.s3 24574.254240: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
79664          <idle>-0     (-----) [002] .n.1 24574.254245: cpu_idle: state=4294967295 cpu_id=2
79665          <idle>-0     (-----) [002] d..2 24574.254250: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
79666<...>-12589 ( 23968) [001] d.s2 24574.254261: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
79667          <idle>-0     (-----) [000] .n.1 24574.254266: cpu_idle: state=4294967295 cpu_id=0
79668          <idle>-0     (-----) [000] d..2 24574.254272: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1H next_pid=531 next_prio=100
79669  crtc_event:111-254   (  254) [002] d..2 24574.254281: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
79670    kworker/0:1H-531   (  531) [000] d..2 24574.254285: sched_switch: prev_comm=kworker/0:1H prev_pid=531 prev_prio=100 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79671     rcu_preempt-7     (    7) [002] d..2 24574.254288: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
79672          <idle>-0     (-----) [000] d..1 24574.254291: cpu_idle: state=0 cpu_id=0
79673<...>-12589 ( 23968) [001] d..2 24574.254294: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
79674 crtc_commit:111-253   (  253) [003] d..2 24574.254294: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79675          <idle>-0     (-----) [003] d..1 24574.254302: cpu_idle: state=0 cpu_id=3
79676     rcu_preempt-7     (    7) [002] d..3 24574.254307: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
79677          <idle>-0     (-----) [001] d..2 24574.254313: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
79678     rcu_preempt-7     (    7) [002] d..2 24574.254317: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
79679     rcu_preempt-7     (    7) [002] d..3 24574.254328: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
79680         rcuop/2-29    (   29) [001] d..2 24574.254333: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
79681     rcu_preempt-7     (    7) [002] d..2 24574.254339: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=Binder:24827_4 next_pid=25554 next_prio=120
79682         rcuop/2-29    (   29) [001] d..3 24574.254345: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
79683<...>-25554 ( 24827) [002] .... 24574.254347: binder_transaction_received: transaction=1670666
79684         rcuop/2-29    (   29) [001] d..2 24574.254358: 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
79685         rcuop/4-45    (   45) [001] d..2 24574.254362: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
79686         rcuop/4-45    (   45) [001] d..3 24574.254372: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
79687         rcuop/4-45    (   45) [001] d..2 24574.254378: 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
79688         rcuop/3-37    (   37) [001] d..2 24574.254388: 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
79689         rcuop/5-53    (   53) [001] d..2 24574.254403: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
79690          <idle>-0     (-----) [001] d..1 24574.254410: cpu_idle: state=0 cpu_id=1
79691<...>-25554 ( 24827) [002] ...1 24574.254421: tracing_mark_write: B|24827|HIDL::IMapper::importBuffer::passthrough
79692          <idle>-0     (-----) [000] d.h5 24574.254458: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
79693<...>-25554 ( 24827) [002] ...1 24574.254463: tracing_mark_write: E|24827
79694          <idle>-0     (-----) [000] dnh6 24574.254470: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
79695<...>-25554 ( 24827) [002] ...1 24574.254473: tracing_mark_write: B|24827|HIDL::IMapper::validateBufferSize::passthrough
79696          <idle>-0     (-----) [000] .n.1 24574.254479: cpu_idle: state=4294967295 cpu_id=0
79697          <idle>-0     (-----) [000] d..2 24574.254484: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
79698<...>-25554 ( 24827) [002] ...1 24574.254491: tracing_mark_write: E|24827
79699  crtc_event:111-254   (  254) [000] d..2 24574.254498: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79700<...>-25554 ( 24827) [002] ...1 24574.254500: tracing_mark_write: B|24827|HIDL::IMapper::getTransportSize::passthrough
79701          <idle>-0     (-----) [000] d..1 24574.254502: cpu_idle: state=0 cpu_id=0
79702<...>-25554 ( 24827) [002] ...1 24574.254504: tracing_mark_write: E|24827
79703<...>-25554 ( 24827) [002] d..3 24574.254684: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
79704<...>-25554 ( 24827) [002] d..4 24574.254700: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
79705          <idle>-0     (-----) [000] .n.1 24574.254704: cpu_idle: state=4294967295 cpu_id=0
79706          <idle>-0     (-----) [000] d..2 24574.254710: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
79707<...>-25554 ( 24827) [002] d..2 24574.254758: sched_switch: prev_comm=Binder:24827_4 prev_pid=25554 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79708          <idle>-0     (-----) [002] d..1 24574.254768: cpu_idle: state=0 cpu_id=2
79709 s.nexuslauncher-24827 (24827) [000] d..2 24574.254772: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79710          <idle>-0     (-----) [000] d..1 24574.254778: cpu_idle: state=0 cpu_id=0
79711          <idle>-0     (-----) [001] d.h4 24574.254922: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
79712          <idle>-0     (-----) [001] d.h5 24574.254931: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
79713          <idle>-0     (-----) [003] .n.1 24574.254936: cpu_idle: state=4294967295 cpu_id=3
79714          <idle>-0     (-----) [003] d..2 24574.254943: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
79715  kworker/u16:15-18488 (18488) [003] d..2 24574.254958: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79716          <idle>-0     (-----) [003] d..1 24574.254964: cpu_idle: state=0 cpu_id=3
79717          <idle>-0     (-----) [001] d.s3 24574.254966: sched_waking: comm=queued-work-loo pid=25203 prio=118 target_cpu=000
79718          <idle>-0     (-----) [001] d.s4 24574.254972: sched_blocked_reason: pid=25203 iowait=1 caller=__filemap_fdatawait_range+0x120/0x184
79719          <idle>-0     (-----) [001] d.s4 24574.254977: sched_wakeup: comm=queued-work-loo pid=25203 prio=118 target_cpu=000
79720          <idle>-0     (-----) [000] .n.1 24574.254982: cpu_idle: state=4294967295 cpu_id=0
79721          <idle>-0     (-----) [000] d..2 24574.254988: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=queued-work-loo next_pid=25203 next_prio=118
79722          <idle>-0     (-----) [001] d.s4 24574.254993: sched_waking: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
79723          <idle>-0     (-----) [001] dns5 24574.255001: sched_wakeup: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
79724          <idle>-0     (-----) [001] .n.1 24574.255013: cpu_idle: state=4294967295 cpu_id=1
79725          <idle>-0     (-----) [001] d..2 24574.255020: 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
79726    kworker/1:1H-533   (  533) [001] d..2 24574.255036: 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
79727          <idle>-0     (-----) [001] d..1 24574.255044: cpu_idle: state=0 cpu_id=1
79728<...>-25203 ( 24827) [000] d..3 24574.255058: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
79729<...>-25203 ( 24827) [000] d..4 24574.255068: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
79730          <idle>-0     (-----) [003] .n.1 24574.255073: cpu_idle: state=4294967295 cpu_id=3
79731          <idle>-0     (-----) [003] d..2 24574.255079: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
79732  kworker/u16:15-18488 (18488) [003] d..2 24574.255091: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79733<...>-25203 ( 24827) [000] d..2 24574.255095: sched_switch: prev_comm=queued-work-loo prev_pid=25203 prev_prio=118 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
79734          <idle>-0     (-----) [003] d..1 24574.255097: cpu_idle: state=0 cpu_id=3
79735          <idle>-0     (-----) [000] d..1 24574.255101: cpu_idle: state=0 cpu_id=0
79736          <idle>-0     (-----) [001] d.h4 24574.255127: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
79737          <idle>-0     (-----) [001] d.h5 24574.255136: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
79738          <idle>-0     (-----) [003] .n.1 24574.255141: cpu_idle: state=4294967295 cpu_id=3
79739          <idle>-0     (-----) [003] d..2 24574.255146: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
79740          <idle>-0     (-----) [001] d.s3 24574.255151: sched_waking: comm=queued-work-loo pid=25203 prio=118 target_cpu=000
79741          <idle>-0     (-----) [001] d.s4 24574.255156: sched_blocked_reason: pid=25203 iowait=1 caller=wait_on_node_pages_writeback+0x140/0x248
79742  kworker/u16:15-18488 (18488) [003] d..2 24574.255158: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79743          <idle>-0     (-----) [001] d.s4 24574.255161: sched_wakeup: comm=queued-work-loo pid=25203 prio=118 target_cpu=000
79744          <idle>-0     (-----) [003] d..1 24574.255163: cpu_idle: state=0 cpu_id=3
79745          <idle>-0     (-----) [001] d.s4 24574.255165: sched_waking: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
79746          <idle>-0     (-----) [000] .n.1 24574.255166: cpu_idle: state=4294967295 cpu_id=0
79747          <idle>-0     (-----) [001] dns5 24574.255170: sched_wakeup: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
79748          <idle>-0     (-----) [000] d..2 24574.255172: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=queued-work-loo next_pid=25203 next_prio=118
79749          <idle>-0     (-----) [001] .n.1 24574.255177: cpu_idle: state=4294967295 cpu_id=1
79750          <idle>-0     (-----) [001] d..2 24574.255183: 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
79751    kworker/1:1H-533   (  533) [001] d..2 24574.255196: 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
79752          <idle>-0     (-----) [001] d..1 24574.255204: cpu_idle: state=0 cpu_id=1
79753<...>-25203 ( 24827) [000] d.h1 24574.255208: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
79754<...>-25203 ( 24827) [000] d.h2 24574.255226: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
79755          <idle>-0     (-----) [002] .n.1 24574.255231: cpu_idle: state=4294967295 cpu_id=2
79756          <idle>-0     (-----) [002] d..2 24574.255238: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
79757        DispSync-23904 (23896) [002] d..1 24574.255262: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
79758        DispSync-23904 (23896) [002] d..2 24574.255273: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
79759          <idle>-0     (-----) [003] .n.1 24574.255278: cpu_idle: state=4294967295 cpu_id=3
79760          <idle>-0     (-----) [003] d..2 24574.255283: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
79761        DispSync-23904 (23896) [002] d..2 24574.255295: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79762          <idle>-0     (-----) [002] d..1 24574.255300: cpu_idle: state=0 cpu_id=2
79763   sfEventThread-23906 (23896) [003] d..3 24574.255323: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
79764   sfEventThread-23906 (23896) [003] d..4 24574.255334: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
79765          <idle>-0     (-----) [001] .n.1 24574.255339: cpu_idle: state=4294967295 cpu_id=1
79766          <idle>-0     (-----) [001] d..2 24574.255345: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
79767   sfEventThread-23906 (23896) [003] d..2 24574.255354: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79768          <idle>-0     (-----) [003] d..1 24574.255361: cpu_idle: state=0 cpu_id=3
79769<...>-25203 ( 24827) [000] d..2 24574.255501: sched_switch: prev_comm=queued-work-loo prev_pid=25203 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79770          <idle>-0     (-----) [000] d..1 24574.255513: cpu_idle: state=0 cpu_id=0
79771  surfaceflinger-23896 (23896) [001] d..1 24574.255926: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
79772  surfaceflinger-23896 (23896) [001] d..2 24574.255939: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
79773          <idle>-0     (-----) [003] .n.1 24574.255944: cpu_idle: state=4294967295 cpu_id=3
79774          <idle>-0     (-----) [003] d..2 24574.255949: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
79775   sfEventThread-23906 (23896) [003] d..2 24574.255972: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79776          <idle>-0     (-----) [003] d..1 24574.255978: cpu_idle: state=0 cpu_id=3
79777          <idle>-0     (-----) [002] d.h2 24574.256211: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
79778          <idle>-0     (-----) [002] dnh3 24574.256217: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
79779          <idle>-0     (-----) [002] .n.1 24574.256222: cpu_idle: state=4294967295 cpu_id=2
79780          <idle>-0     (-----) [002] d..2 24574.256227: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
79781        DispSync-23904 (23896) [002] d..1 24574.256234: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
79782        DispSync-23904 (23896) [002] d..2 24574.256250: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
79783          <idle>-0     (-----) [003] .n.1 24574.256255: cpu_idle: state=4294967295 cpu_id=3
79784          <idle>-0     (-----) [003] d..2 24574.256260: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
79785        DispSync-23904 (23896) [002] d..2 24574.256265: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79786          <idle>-0     (-----) [002] d..1 24574.256271: cpu_idle: state=0 cpu_id=2
79787  appEventThread-23905 (23896) [003] d..3 24574.256295: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
79788  appEventThread-23905 (23896) [003] d..4 24574.256305: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
79789          <idle>-0     (-----) [000] .n.1 24574.256310: cpu_idle: state=4294967295 cpu_id=0
79790  appEventThread-23905 (23896) [003] d..3 24574.256314: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
79791          <idle>-0     (-----) [000] d..2 24574.256316: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
79792  appEventThread-23905 (23896) [003] d..4 24574.256335: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
79793          <idle>-0     (-----) [002] .n.1 24574.256338: cpu_idle: state=4294967295 cpu_id=2
79794  appEventThread-23905 (23896) [003] d.h3 24574.256366: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
79795          <idle>-0     (-----) [002] d..2 24574.256367: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
79796  appEventThread-23905 (23896) [003] d.h3 24574.256375: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
79797          <idle>-0     (-----) [004] dnh2 24574.256379: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
79798          <idle>-0     (-----) [004] .n.1 24574.256381: cpu_idle: state=4294967295 cpu_id=4
79799  appEventThread-23905 (23896) [003] d.h4 24574.256383: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
79800          <idle>-0     (-----) [004] d..2 24574.256385: 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
79801<...>-24151 ( 24151) [002] d..2 24574.256389: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
79802         sugov:4-560   (  560) [004] d..2 24574.256392: 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
79803          <idle>-0     (-----) [004] d..1 24574.256395: cpu_idle: state=0 cpu_id=4
79804         sugov:0-559   (  559) [002] d..2 24574.256400: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
79805  appEventThread-23905 (23896) [003] d..2 24574.256410: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79806          <idle>-0     (-----) [003] d..1 24574.256418: cpu_idle: state=0 cpu_id=3
79807 s.nexuslauncher-24827 (24827) [000] .... 24574.256497: binder_transaction: transaction=1670667 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
79808 s.nexuslauncher-24827 (24827) [000] d..4 24574.256504: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=003
79809 s.nexuslauncher-24827 (24827) [000] d..5 24574.256518: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=003
79810          <idle>-0     (-----) [003] .n.1 24574.256523: cpu_idle: state=4294967295 cpu_id=3
79811          <idle>-0     (-----) [003] d..2 24574.256529: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
79812  Binder:23896_5-25989 (23896) [003] .... 24574.256533: binder_transaction_received: transaction=1670667
79813 s.nexuslauncher-24827 (24827) [000] d..3 24574.256546: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
79814  Binder:23896_5-25989 (23896) [003] d..1 24574.256549: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
79815<...>-24151 ( 24151) [002] .... 24574.256553: binder_transaction: transaction=1670668 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
79816<...>-24151 ( 24151) [002] d..4 24574.256558: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=003
79817  Binder:23896_5-25989 (23896) [003] d..2 24574.256563: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
79818  surfaceflinger-23896 (23896) [001] ...1 24574.256569: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
79819  surfaceflinger-23896 (23896) [001] ...1 24574.256573: tracing_mark_write: E|23896
79820          <idle>-0     (-----) [005] dnh2 24574.256589: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
79821          <idle>-0     (-----) [005] .n.1 24574.256591: cpu_idle: state=4294967295 cpu_id=5
79822          <idle>-0     (-----) [005] d..2 24574.256597: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
79823          <idle>-0     (-----) [006] dnh2 24574.256604: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=006
79824  surfaceflinger-23896 (23896) [001] .... 24574.256618: binder_transaction: transaction=1670669 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
79825          <idle>-0     (-----) [006] .n.1 24574.256626: cpu_idle: state=4294967295 cpu_id=6
79826<...>-24151 ( 24151) [002] d..2 24574.256630: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
79827    RenderThread-25194 (24827) [005] d..2 24574.256631: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
79828          <idle>-0     (-----) [006] d..2 24574.256632: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
79829          <idle>-0     (-----) [005] d..1 24574.256635: cpu_idle: state=0 cpu_id=5
79830  Binder:23896_4-24423 (23896) [006] .... 24574.256636: binder_transaction_received: transaction=1670668
79831  surfaceflinger-23896 (23896) [001] ...2 24574.256639: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
79832  Binder:23896_5-25989 (23896) [003] d..2 24574.256640: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79833          <idle>-0     (-----) [003] d..1 24574.256646: cpu_idle: state=0 cpu_id=3
79834  surfaceflinger-23896 (23896) [001] d..4 24574.256647: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
79835  Binder:23896_4-24423 (23896) [006] d..1 24574.256650: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
79836  appEventThread-23905 (23896) [002] d..2 24574.256654: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
79837  surfaceflinger-23896 (23896) [001] d..5 24574.256659: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
79838          <idle>-0     (-----) [003] .n.1 24574.256664: cpu_idle: state=4294967295 cpu_id=3
79839<...>-24151 ( 24151) [002] dnh1 24574.256669: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
79840          <idle>-0     (-----) [003] d..2 24574.256669: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
79841<...>-24151 ( 24151) [002] d..2 24574.256674: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
79842  surfaceflinger-23896 (23896) [001] d..2 24574.256677: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
79843  HwBinder:598_3-633   (  598) [003] .... 24574.256677: binder_transaction_received: transaction=1670669
79844  Binder:23896_4-24423 (23896) [006] d..2 24574.256679: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
79845          <idle>-0     (-----) [006] d..1 24574.256684: cpu_idle: state=0 cpu_id=6
79846          <idle>-0     (-----) [001] d..1 24574.256686: cpu_idle: state=0 cpu_id=1
79847  appEventThread-23905 (23896) [002] d..2 24574.256689: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
79848<...>-24151 ( 24151) [002] d..3 24574.256703: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
79849<...>-24151 ( 24151) [002] d..4 24574.256719: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=001
79850  HwBinder:598_3-633   (  598) [003] ...1 24574.256720: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
79851          <idle>-0     (-----) [001] .n.1 24574.256725: cpu_idle: state=4294967295 cpu_id=1
79852          <idle>-0     (-----) [001] d..2 24574.256731: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
79853    RenderThread-24437 (24151) [001] d..2 24574.256762: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
79854          <idle>-0     (-----) [001] d..1 24574.256769: cpu_idle: state=0 cpu_id=1
79855<...>-24151 ( 24151) [002] d..3 24574.256804: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=001
79856<...>-24151 ( 24151) [002] d..4 24574.256817: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=001
79857          <idle>-0     (-----) [001] .n.1 24574.256822: cpu_idle: state=4294967295 cpu_id=1
79858  HwBinder:598_3-633   (  598) [003] ...1 24574.256826: tracing_mark_write: B|598|HWCSession::PresentDisplay::
79859          <idle>-0     (-----) [001] d..2 24574.256828: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
79860<...>-24151 ( 24151) [002] d..2 24574.256833: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79861          <idle>-0     (-----) [002] d..1 24574.256840: cpu_idle: state=0 cpu_id=2
79862    RenderThread-24437 (24151) [001] d..1 24574.256933: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
79863 s.nexuslauncher-24827 (24827) [000] d..3 24574.256943: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
79864    RenderThread-24437 (24151) [001] d..2 24574.256944: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
79865          <idle>-0     (-----) [002] .n.1 24574.256948: cpu_idle: state=4294967295 cpu_id=2
79866          <idle>-0     (-----) [002] d..2 24574.256955: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
79867          <idle>-0     (-----) [005] dnh2 24574.256959: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
79868          <idle>-0     (-----) [005] .n.1 24574.256962: cpu_idle: state=4294967295 cpu_id=5
79869          <idle>-0     (-----) [005] d..2 24574.256965: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
79870 s.nexuslauncher-24827 (24827) [000] d..2 24574.256971: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79871          <idle>-0     (-----) [000] d..1 24574.256980: cpu_idle: state=0 cpu_id=0
79872    RenderThread-24437 (24151) [001] .... 24574.256990: binder_transaction: transaction=1670670 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
79873<...>-24151 ( 24151) [002] d..2 24574.256993: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79874    RenderThread-24437 (24151) [001] d..4 24574.256994: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=006
79875          <idle>-0     (-----) [002] d..1 24574.256999: cpu_idle: state=0 cpu_id=2
79876    RenderThread-24437 (24151) [001] dn.5 24574.257009: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
79877    RenderThread-25194 (24827) [005] d..1 24574.257022: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
79878    RenderThread-24437 (24151) [001] dnh5 24574.257040: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
79879    RenderThread-25194 (24827) [005] d..1 24574.257051: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
79880          <idle>-0     (-----) [000] dnh2 24574.257051: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
79881          <idle>-0     (-----) [004] dnh2 24574.257053: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
79882    RenderThread-24437 (24151) [001] d..2 24574.257054: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
79883          <idle>-0     (-----) [004] .n.1 24574.257056: cpu_idle: state=4294967295 cpu_id=4
79884          <idle>-0     (-----) [000] .n.1 24574.257056: cpu_idle: state=4294967295 cpu_id=0
79885          <idle>-0     (-----) [004] d..2 24574.257059: 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
79886  Binder:23896_4-24423 (23896) [001] .... 24574.257059: binder_transaction_received: transaction=1670670
79887          <idle>-0     (-----) [000] d..2 24574.257062: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
79888         sugov:4-560   (  560) [004] .... 24574.257078: clk_set_rate: perfcl_clk 1689600000
79889         sugov:4-560   (  560) [004] .... 24574.257080: clk_set_rate: cpu7_perfcl_clk 1612800000
79890         sugov:4-560   (  560) [004] .... 24574.257085: clk_set_rate: cpu6_perfcl_clk 1612800000
79891          <idle>-0     (-----) [002] dnh2 24574.257089: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=002
79892         sugov:4-560   (  560) [004] .... 24574.257089: clk_set_rate: cpu5_perfcl_clk 1612800000
79893          <idle>-0     (-----) [002] .n.1 24574.257093: cpu_idle: state=4294967295 cpu_id=2
79894         sugov:4-560   (  560) [004] .... 24574.257094: clk_set_rate: cpu4_perfcl_clk 1689600000
79895         sugov:4-560   (  560) [004] .... 24574.257099: cpu_frequency: state=1689600 cpu_id=4
79896          <idle>-0     (-----) [002] d..2 24574.257100: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
79897  Binder:23896_4-24423 (23896) [001] .... 24574.257102: binder_transaction: transaction=1670671 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
79898         sugov:4-560   (  560) [004] .... 24574.257108: cpu_frequency: state=1689600 cpu_id=5
79899         sugov:4-560   (  560) [004] .... 24574.257110: cpu_frequency: state=1689600 cpu_id=6
79900    RenderThread-25194 (24827) [005] .... 24574.257111: binder_transaction: transaction=1670672 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
79901         sugov:4-560   (  560) [004] .... 24574.257112: cpu_frequency: state=1689600 cpu_id=7
79902 s.nexuslauncher-24827 (24827) [000] d..2 24574.257114: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79903    RenderThread-25194 (24827) [005] ...2 24574.257114: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
79904    RenderThread-25194 (24827) [005] d..4 24574.257116: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=003
79905         sugov:4-560   (  560) [004] d..2 24574.257119: 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
79906          <idle>-0     (-----) [000] d..1 24574.257122: cpu_idle: state=0 cpu_id=0
79907          <idle>-0     (-----) [004] d..1 24574.257123: cpu_idle: state=0 cpu_id=4
79908    RenderThread-25194 (24827) [005] d..5 24574.257128: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
79909    RenderThread-25194 (24827) [005] d..2 24574.257152: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
79910  Binder:23896_5-25989 (23896) [005] .... 24574.257155: binder_transaction_received: transaction=1670672
79911  Binder:23896_4-24423 (23896) [001] d..2 24574.257157: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
79912    RenderThread-24437 (24151) [001] .... 24574.257162: binder_transaction_received: transaction=1670671
79913  Binder:23896_5-25989 (23896) [005] .... 24574.257177: binder_transaction: transaction=1670673 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
79914  Binder:23896_5-25989 (23896) [005] d..2 24574.257181: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
79915  Binder:23896_5-25989 (23896) [005] dn.3 24574.257186: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
79916  Binder:23896_5-25989 (23896) [005] d..2 24574.257189: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
79917    RenderThread-25194 (24827) [005] .... 24574.257191: binder_transaction_received: transaction=1670673
79918<...>-27853 ( 24827) [002] .... 24574.257252: binder_transaction: transaction=1670674 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
79919  HwBinder:598_3-633   (  598) [003] ...1 24574.257257: tracing_mark_write: B|598|HWDeviceDRM::Validate::
79920<...>-27853 ( 24827) [002] ...2 24574.257267: binder_set_priority: proc=23896 thread=24423 old=120 => new=118 desired=118
79921<...>-27853 ( 24827) [002] d..4 24574.257269: sched_waking: comm=Binder:23896_4 pid=24423 prio=118 target_cpu=001
79922<...>-27853 ( 24827) [002] d..5 24574.257281: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=118 target_cpu=002
79923<...>-27853 ( 24827) [002] d..2 24574.257290: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=118
79924  Binder:23896_4-24423 (23896) [002] .... 24574.257294: binder_transaction_received: transaction=1670674
79925  Binder:23896_4-24423 (23896) [002] .... 24574.257366: binder_transaction: transaction=1670675 dest_node=0 dest_proc=24827 dest_thread=27853 reply=1 flags=0x0 code=0x0
79926  Binder:23896_4-24423 (23896) [002] d..2 24574.257369: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=002
79927  Binder:23896_4-24423 (23896) [002] d..3 24574.257377: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=002
79928  Binder:23896_4-24423 (23896) [002] .... 24574.257379: binder_set_priority: proc=23896 thread=24423 old=118 => new=120 desired=120
79929  Binder:23896_4-24423 (23896) [002] d..2 24574.257407: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
79930<...>-27853 ( 24827) [002] .... 24574.257411: binder_transaction_received: transaction=1670675
79931<...>-27853 ( 24827) [002] d..2 24574.257446: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79932          <idle>-0     (-----) [002] d..1 24574.257454: cpu_idle: state=0 cpu_id=2
79933    RenderThread-25194 (24827) [005] d.H2 24574.257600: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
79934    RenderThread-25194 (24827) [005] d.s2 24574.257611: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
79935          <idle>-0     (-----) [002] dnh2 24574.257616: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
79936          <idle>-0     (-----) [002] .n.1 24574.257620: cpu_idle: state=4294967295 cpu_id=2
79937  HwBinder:598_3-633   (  598) [003] d.h1 24574.257626: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
79938          <idle>-0     (-----) [002] d..2 24574.257627: 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
79939         sugov:0-559   (  559) [002] d..2 24574.257641: 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
79940          <idle>-0     (-----) [002] d..1 24574.257645: cpu_idle: state=0 cpu_id=2
79941  HwBinder:598_3-633   (  598) [003] ...1 24574.257736: tracing_mark_write: E|598
79942  HwBinder:598_3-633   (  598) [003] ...1 24574.257838: tracing_mark_write: B|598|HWDeviceDRM::Commit::
79943  HwBinder:598_3-633   (  598) [003] ...1 24574.257845: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
79944    RenderThread-25194 (24827) [005] .... 24574.258085: binder_transaction: transaction=1670676 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
79945    RenderThread-25194 (24827) [005] ...2 24574.258090: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
79946    RenderThread-25194 (24827) [005] d..4 24574.258092: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
79947          <idle>-0     (-----) [000] ...1 24574.258096: cpu_idle: state=4294967295 cpu_id=0
79948          <idle>-0     (-----) [000] d..1 24574.258098: cpu_idle: state=0 cpu_id=0
79949    RenderThread-25194 (24827) [005] d..2 24574.258111: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
79950          <idle>-0     (-----) [000] dnh2 24574.258112: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
79951  Binder:23896_5-25989 (23896) [005] .... 24574.258113: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
79952          <idle>-0     (-----) [000] .n.1 24574.258115: cpu_idle: state=4294967295 cpu_id=0
79953          <idle>-0     (-----) [000] d..2 24574.258122: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
79954  Binder:23896_4-24423 (23896) [000] .... 24574.258127: binder_transaction_received: transaction=1670676
79955  Binder:23896_5-25989 (23896) [005] d..2 24574.258140: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
79956  HwBinder:598_3-633   (  598) [003] d..2 24574.258145: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
79957          <idle>-0     (-----) [005] d..1 24574.258147: cpu_idle: state=0 cpu_id=5
79958  HwBinder:598_3-633   (  598) [003] d..3 24574.258164: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
79959          <idle>-0     (-----) [002] .n.1 24574.258169: cpu_idle: state=4294967295 cpu_id=2
79960          <idle>-0     (-----) [002] d..2 24574.258173: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
79961  Binder:23896_4-24423 (23896) [000] .... 24574.258217: binder_transaction: transaction=1670677 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
79962  Binder:23896_4-24423 (23896) [000] d..2 24574.258222: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
79963  HwBinder:598_3-633   (  598) [003] ...1 24574.258225: tracing_mark_write: E|598
79964  HwBinder:598_3-633   (  598) [003] ...1 24574.258228: tracing_mark_write: E|598
79965  Binder:23896_4-24423 (23896) [000] d..3 24574.258239: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
79966  HwBinder:598_3-633   (  598) [003] ...1 24574.258266: tracing_mark_write: E|598
79967  Binder:23896_4-24423 (23896) [000] d.h3 24574.258270: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
79968  Binder:23896_4-24423 (23896) [000] d.h4 24574.258283: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
79969    RenderThread-24437 (24151) [001] d..2 24574.258289: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=sugov:0 next_pid=559 next_prio=49
79970  Binder:23896_4-24423 (23896) [000] .... 24574.258294: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
79971  Binder:23896_4-24423 (23896) [000] d..2 24574.258303: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
79972  HwBinder:598_3-633   (  598) [003] ...1 24574.258306: tracing_mark_write: E|598
79973    RenderThread-25194 (24827) [000] .... 24574.258307: binder_transaction_received: transaction=1670677
79974         sugov:0-559   (  559) [001] d..2 24574.258312: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
79975  HwBinder:598_3-633   (  598) [003] .... 24574.258320: binder_transaction: transaction=1670678 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
79976          <idle>-0     (-----) [001] d..1 24574.258320: cpu_idle: state=0 cpu_id=1
79977  HwBinder:598_3-633   (  598) [003] d..2 24574.258335: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
79978  HwBinder:598_3-633   (  598) [003] d..3 24574.258346: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
79979  HwBinder:598_3-633   (  598) [003] .... 24574.258349: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
79980          <idle>-0     (-----) [001] .n.1 24574.258351: cpu_idle: state=4294967295 cpu_id=1
79981          <idle>-0     (-----) [001] d..2 24574.258356: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
79982  surfaceflinger-23896 (23896) [001] d.h3 24574.258363: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=001
79983    RenderThread-25194 (24827) [000] d..2 24574.258370: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
79984          <idle>-0     (-----) [006] d.h2 24574.258407: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
79985          <idle>-0     (-----) [006] dnh2 24574.258408: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
79986  surfaceflinger-23896 (23896) [001] .... 24574.258410: binder_transaction_received: transaction=1670678
79987          <idle>-0     (-----) [006] .n.1 24574.258412: cpu_idle: state=4294967295 cpu_id=6
79988  HwBinder:598_3-633   (  598) [003] d..2 24574.258412: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
79989          <idle>-0     (-----) [006] d..2 24574.258417: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
79990  Binder:23896_4-24423 (23896) [000] d..2 24574.258417: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79991          <idle>-0     (-----) [000] d..1 24574.258426: cpu_idle: state=0 cpu_id=0
79992          <idle>-0     (-----) [000] ...1 24574.258439: cpu_idle: state=4294967295 cpu_id=0
79993          <idle>-0     (-----) [000] d..1 24574.258441: cpu_idle: state=0 cpu_id=0
79994  kworker/u16:15-18488 (18488) [003] .... 24574.258498: clk_set_rate: l3_cluster0_vote_clk 1305600000
79995  kworker/u16:15-18488 (18488) [003] .... 24574.258502: clk_set_rate: l3_clk 1305600000
79996    RenderThread-24437 (24151) [006] .... 24574.258530: binder_transaction: transaction=1670679 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
79997    RenderThread-24437 (24151) [006] d..4 24574.258536: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
79998  kworker/u16:15-18488 (18488) [003] d..2 24574.258540: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79999    RenderThread-24437 (24151) [006] dn.5 24574.258550: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=006
80000          <idle>-0     (-----) [003] d..1 24574.258550: cpu_idle: state=0 cpu_id=3
80001    RenderThread-24437 (24151) [006] d..2 24574.258574: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
80002  Binder:23896_4-24423 (23896) [006] .... 24574.258577: binder_transaction_received: transaction=1670679
80003  Binder:23896_4-24423 (23896) [006] .... 24574.258626: binder_transaction: transaction=1670680 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
80004  Binder:23896_4-24423 (23896) [006] d..2 24574.258640: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
80005    RenderThread-24437 (24151) [006] .... 24574.258643: binder_transaction_received: transaction=1670680
80006    RenderThread-24437 (24151) [006] d..2 24574.258679: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
80007          <idle>-0     (-----) [006] d..1 24574.258688: cpu_idle: state=0 cpu_id=6
80008 crtc_commit:111-253   (  253) [002] d..2 24574.258705: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
80009          <idle>-0     (-----) [002] d..1 24574.258710: cpu_idle: state=0 cpu_id=2
80010  surfaceflinger-23896 (23896) [001] d..2 24574.258788: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
80011          <idle>-0     (-----) [001] d..1 24574.258798: cpu_idle: state=0 cpu_id=1
80012          <idle>-0     (-----) [000] d.h3 24574.259246: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
80013          <idle>-0     (-----) [000] d.h4 24574.259258: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
80014          <idle>-0     (-----) [002] .n.1 24574.259264: cpu_idle: state=4294967295 cpu_id=2
80015          <idle>-0     (-----) [000] ...1 24574.259267: cpu_idle: state=4294967295 cpu_id=0
80016          <idle>-0     (-----) [002] d..2 24574.259268: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
80017          <idle>-0     (-----) [000] d..1 24574.259270: cpu_idle: state=0 cpu_id=0
80018 kgsl_worker_thr-246   (  246) [002] d..2 24574.259293: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
80019 kgsl_worker_thr-246   (  246) [002] d..3 24574.259319: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
80020          <idle>-0     (-----) [000] ...1 24574.259323: cpu_idle: state=4294967295 cpu_id=0
80021          <idle>-0     (-----) [000] d..1 24574.259325: cpu_idle: state=0 cpu_id=0
80022 kgsl_worker_thr-246   (  246) [002] d..2 24574.259332: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
80023  kworker/u16:15-18488 (18488) [002] d..2 24574.259514: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80024          <idle>-0     (-----) [002] d..1 24574.259519: cpu_idle: state=0 cpu_id=2
80025          <idle>-0     (-----) [000] d.h3 24574.259690: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
80026          <idle>-0     (-----) [000] d.h4 24574.259699: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
80027          <idle>-0     (-----) [002] .n.1 24574.259703: cpu_idle: state=4294967295 cpu_id=2
80028          <idle>-0     (-----) [000] ...1 24574.259705: cpu_idle: state=4294967295 cpu_id=0
80029          <idle>-0     (-----) [002] d..2 24574.259708: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
80030          <idle>-0     (-----) [000] d..1 24574.259708: cpu_idle: state=0 cpu_id=0
80031 kgsl_worker_thr-246   (  246) [002] d..2 24574.259783: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80032          <idle>-0     (-----) [002] d..1 24574.259788: cpu_idle: state=0 cpu_id=2
80033          <idle>-0     (-----) [001] ...1 24574.259911: cpu_idle: state=4294967295 cpu_id=1
80034          <idle>-0     (-----) [001] d..1 24574.259914: cpu_idle: state=0 cpu_id=1
80035          <idle>-0     (-----) [002] d.s2 24574.260904: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
80036          <idle>-0     (-----) [002] dns3 24574.260915: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
80037          <idle>-0     (-----) [002] dns3 24574.260918: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
80038          <idle>-0     (-----) [002] dns4 24574.260925: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
80039          <idle>-0     (-----) [002] .n.1 24574.260939: cpu_idle: state=4294967295 cpu_id=2
80040          <idle>-0     (-----) [002] d..2 24574.260945: 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
80041          <idle>-0     (-----) [000] ...1 24574.260948: cpu_idle: state=4294967295 cpu_id=0
80042          <idle>-0     (-----) [000] d..1 24574.260951: cpu_idle: state=0 cpu_id=0
80043     rcu_preempt-7     (    7) [002] d..2 24574.260958: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
80044     rcu_preempt-7     (    7) [002] d..3 24574.260980: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
80045     rcu_preempt-7     (    7) [002] d..2 24574.260990: 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
80046         rcuop/0-10    (   10) [002] d..2 24574.260995: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
80047         rcuop/0-10    (   10) [002] d..3 24574.261015: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
80048         rcuop/0-10    (   10) [002] d..2 24574.261023: 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
80049         rcuop/1-21    (   21) [002] d..2 24574.261036: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
80050  kworker/u16:15-18488 (18488) [002] d..2 24574.261228: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
80051          <idle>-0     (-----) [002] d..1 24574.261235: cpu_idle: state=0 cpu_id=2
80052          <idle>-0     (-----) [003] d.s3 24574.261261: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
80053          <idle>-0     (-----) [003] d.s4 24574.261268: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
80054          <idle>-0     (-----) [003] d.s4 24574.261274: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
80055          <idle>-0     (-----) [002] .n.1 24574.261278: cpu_idle: state=4294967295 cpu_id=2
80056          <idle>-0     (-----) [003] ...1 24574.261279: cpu_idle: state=4294967295 cpu_id=3
80057          <idle>-0     (-----) [003] d..1 24574.261282: cpu_idle: state=0 cpu_id=3
80058          <idle>-0     (-----) [002] d..2 24574.261285: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
80059  kworker/u16:15-18488 (18488) [002] d..2 24574.261388: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
80060          <idle>-0     (-----) [002] d..1 24574.261395: cpu_idle: state=0 cpu_id=2
80061          <idle>-0     (-----) [003] d.s3 24574.261408: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
80062          <idle>-0     (-----) [003] d.s4 24574.261425: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
80063          <idle>-0     (-----) [003] dns4 24574.261428: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
80064          <idle>-0     (-----) [003] .n.1 24574.261432: cpu_idle: state=4294967295 cpu_id=3
80065          <idle>-0     (-----) [003] d..2 24574.261439: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
80066  kworker/u16:15-18488 (18488) [003] d..2 24574.261459: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80067          <idle>-0     (-----) [003] d..1 24574.261463: cpu_idle: state=0 cpu_id=3
80068          <idle>-0     (-----) [003] d.s3 24574.264231: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
80069          <idle>-0     (-----) [003] dns4 24574.264240: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
80070          <idle>-0     (-----) [003] .n.1 24574.264250: cpu_idle: state=4294967295 cpu_id=3
80071          <idle>-0     (-----) [003] d..2 24574.264255: 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
80072          <idle>-0     (-----) [000] ...1 24574.264280: cpu_idle: state=4294967295 cpu_id=0
80073          <idle>-0     (-----) [001] ...1 24574.264283: cpu_idle: state=4294967295 cpu_id=1
80074          <idle>-0     (-----) [000] d..1 24574.264283: cpu_idle: state=0 cpu_id=0
80075          <idle>-0     (-----) [002] ...1 24574.264285: cpu_idle: state=4294967295 cpu_id=2
80076          <idle>-0     (-----) [001] d..1 24574.264286: cpu_idle: state=0 cpu_id=1
80077          <idle>-0     (-----) [002] d..1 24574.264288: cpu_idle: state=0 cpu_id=2
80078     kworker/3:1-12662 (12662) [003] d..2 24574.264294: 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
80079          <idle>-0     (-----) [003] d..1 24574.264301: cpu_idle: state=0 cpu_id=3
80080          <idle>-0     (-----) [001] ...1 24574.265396: cpu_idle: state=4294967295 cpu_id=1
80081          <idle>-0     (-----) [001] d..1 24574.265398: cpu_idle: state=0 cpu_id=1
80082          <idle>-0     (-----) [000] ...1 24574.265581: cpu_idle: state=4294967295 cpu_id=0
80083          <idle>-0     (-----) [000] d..1 24574.265583: cpu_idle: state=0 cpu_id=0
80084          <idle>-0     (-----) [002] d.s2 24574.267563: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
80085          <idle>-0     (-----) [002] dns3 24574.267572: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
80086          <idle>-0     (-----) [002] dns3 24574.267575: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
80087          <idle>-0     (-----) [002] dns4 24574.267592: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
80088          <idle>-0     (-----) [002] .n.1 24574.267598: cpu_idle: state=4294967295 cpu_id=2
80089          <idle>-0     (-----) [002] d..2 24574.267605: 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
80090     rcu_preempt-7     (    7) [002] d..2 24574.267609: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
80091     rcu_preempt-7     (    7) [002] d..3 24574.267634: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
80092          <idle>-0     (-----) [000] .n.1 24574.267638: cpu_idle: state=4294967295 cpu_id=0
80093     rcu_preempt-7     (    7) [002] d..2 24574.267642: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
80094          <idle>-0     (-----) [000] d..2 24574.267646: 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
80095         rcuop/2-29    (   29) [000] d..2 24574.267655: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
80096         rcuop/2-29    (   29) [000] d..3 24574.267681: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
80097         rcuop/2-29    (   29) [000] d..2 24574.267698: 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
80098  kworker/u16:15-18488 (18488) [002] .... 24574.267700: clk_set_rate: l3_cluster0_vote_clk 300000000
80099  kworker/u16:15-18488 (18488) [002] .... 24574.267703: clk_set_rate: l3_clk 300000000
80100         rcuop/3-37    (   37) [000] d..2 24574.267722: 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
80101          <idle>-0     (-----) [000] d..1 24574.267733: cpu_idle: state=0 cpu_id=0
80102  kworker/u16:15-18488 (18488) [002] d..2 24574.267743: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80103          <idle>-0     (-----) [002] d..1 24574.267756: cpu_idle: state=0 cpu_id=2
80104          <idle>-0     (-----) [000] d.h5 24574.268318: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
80105          <idle>-0     (-----) [000] dnh6 24574.268332: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
80106          <idle>-0     (-----) [000] dnh5 24574.268337: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
80107          <idle>-0     (-----) [000] dnh6 24574.268347: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
80108          <idle>-0     (-----) [002] .n.1 24574.268353: cpu_idle: state=4294967295 cpu_id=2
80109          <idle>-0     (-----) [000] .n.1 24574.268360: cpu_idle: state=4294967295 cpu_id=0
80110          <idle>-0     (-----) [002] d..2 24574.268361: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
80111          <idle>-0     (-----) [000] d..2 24574.268368: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
80112  crtc_event:111-254   (  254) [000] d..2 24574.268401: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80113          <idle>-0     (-----) [000] d..1 24574.268409: cpu_idle: state=0 cpu_id=0
80114 crtc_commit:111-253   (  253) [002] d..2 24574.268511: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
80115          <idle>-0     (-----) [002] d..1 24574.268517: cpu_idle: state=0 cpu_id=2
80116          <idle>-0     (-----) [000] d.h5 24574.270635: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
80117          <idle>-0     (-----) [000] d.h6 24574.270649: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
80118          <idle>-0     (-----) [002] .n.1 24574.270654: cpu_idle: state=4294967295 cpu_id=2
80119          <idle>-0     (-----) [000] ...1 24574.270658: cpu_idle: state=4294967295 cpu_id=0
80120          <idle>-0     (-----) [002] d..2 24574.270659: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
80121          <idle>-0     (-----) [000] d..1 24574.270662: cpu_idle: state=0 cpu_id=0
80122 crtc_commit:111-253   (  253) [002] d..2 24574.270724: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80123          <idle>-0     (-----) [002] d..1 24574.270732: cpu_idle: state=0 cpu_id=2
80124          <idle>-0     (-----) [002] d.s3 24574.270908: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
80125          <idle>-0     (-----) [002] d.s4 24574.270925: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
80126          <idle>-0     (-----) [002] d.s3 24574.270930: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
80127          <idle>-0     (-----) [002] dns4 24574.270943: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
80128          <idle>-0     (-----) [000] .n.1 24574.270955: cpu_idle: state=4294967295 cpu_id=0
80129          <idle>-0     (-----) [002] .n.1 24574.270958: cpu_idle: state=4294967295 cpu_id=2
80130          <idle>-0     (-----) [000] d..2 24574.270964: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
80131          <idle>-0     (-----) [002] d..2 24574.270966: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
80132  crtc_event:111-254   (  254) [000] d..2 24574.270995: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80133          <idle>-0     (-----) [000] d..1 24574.271019: cpu_idle: state=0 cpu_id=0
80134          <idle>-0     (-----) [000] ...1 24574.271029: cpu_idle: state=4294967295 cpu_id=0
80135          <idle>-0     (-----) [000] d..1 24574.271031: cpu_idle: state=0 cpu_id=0
80136  kworker/u16:15-18488 (18488) [002] d..2 24574.271165: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
80137          <idle>-0     (-----) [002] d..1 24574.271174: cpu_idle: state=0 cpu_id=2
80138          <idle>-0     (-----) [003] d.s3 24574.271197: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
80139          <idle>-0     (-----) [003] d.s4 24574.271205: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
80140          <idle>-0     (-----) [003] d.s4 24574.271213: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
80141          <idle>-0     (-----) [002] .n.1 24574.271219: cpu_idle: state=4294967295 cpu_id=2
80142          <idle>-0     (-----) [003] ...1 24574.271220: cpu_idle: state=4294967295 cpu_id=3
80143          <idle>-0     (-----) [003] d..1 24574.271224: cpu_idle: state=0 cpu_id=3
80144          <idle>-0     (-----) [002] d..2 24574.271226: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
80145  kworker/u16:15-18488 (18488) [002] d..2 24574.271273: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80146          <idle>-0     (-----) [002] d..1 24574.271279: cpu_idle: state=0 cpu_id=2
80147          <idle>-0     (-----) [002] d.h2 24574.271681: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
80148          <idle>-0     (-----) [002] dnh3 24574.271694: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
80149          <idle>-0     (-----) [002] .n.1 24574.271701: cpu_idle: state=4294967295 cpu_id=2
80150          <idle>-0     (-----) [002] d..2 24574.271706: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
80151        DispSync-23904 (23896) [002] d..1 24574.271735: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
80152        DispSync-23904 (23896) [002] d..2 24574.271750: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
80153          <idle>-0     (-----) [003] .n.1 24574.271755: cpu_idle: state=4294967295 cpu_id=3
80154          <idle>-0     (-----) [003] d..2 24574.271763: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
80155        DispSync-23904 (23896) [002] d..2 24574.271779: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80156          <idle>-0     (-----) [002] d..1 24574.271787: cpu_idle: state=0 cpu_id=2
80157   sfEventThread-23906 (23896) [003] d..3 24574.271832: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
80158   sfEventThread-23906 (23896) [003] d..4 24574.271850: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
80159          <idle>-0     (-----) [001] .n.1 24574.271854: cpu_idle: state=4294967295 cpu_id=1
80160          <idle>-0     (-----) [001] d..2 24574.271863: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
80161   sfEventThread-23906 (23896) [003] d..2 24574.271884: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80162          <idle>-0     (-----) [003] d..1 24574.271895: cpu_idle: state=0 cpu_id=3
80163  surfaceflinger-23896 (23896) [001] d..1 24574.272534: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
80164  surfaceflinger-23896 (23896) [001] d..2 24574.272556: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
80165          <idle>-0     (-----) [003] .n.1 24574.272561: cpu_idle: state=4294967295 cpu_id=3
80166          <idle>-0     (-----) [003] d..2 24574.272569: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
80167   sfEventThread-23906 (23896) [003] d..2 24574.272599: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80168          <idle>-0     (-----) [003] d..1 24574.272606: cpu_idle: state=0 cpu_id=3
80169          <idle>-0     (-----) [002] d.h2 24574.272690: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
80170          <idle>-0     (-----) [002] dnh3 24574.272698: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
80171          <idle>-0     (-----) [002] .n.1 24574.272703: cpu_idle: state=4294967295 cpu_id=2
80172          <idle>-0     (-----) [002] d..2 24574.272709: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
80173        DispSync-23904 (23896) [002] d..1 24574.272720: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
80174        DispSync-23904 (23896) [002] d..2 24574.272739: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
80175          <idle>-0     (-----) [003] .n.1 24574.272744: cpu_idle: state=4294967295 cpu_id=3
80176          <idle>-0     (-----) [003] d..2 24574.272751: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
80177        DispSync-23904 (23896) [002] d..2 24574.272762: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80178          <idle>-0     (-----) [002] d..1 24574.272769: cpu_idle: state=0 cpu_id=2
80179  appEventThread-23905 (23896) [003] d..3 24574.272799: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
80180  appEventThread-23905 (23896) [003] d..4 24574.272820: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
80181          <idle>-0     (-----) [000] .n.1 24574.272824: cpu_idle: state=4294967295 cpu_id=0
80182          <idle>-0     (-----) [000] d..2 24574.272833: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
80183  appEventThread-23905 (23896) [003] d..3 24574.272835: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
80184  appEventThread-23905 (23896) [003] d..4 24574.272851: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
80185          <idle>-0     (-----) [002] .n.1 24574.272856: cpu_idle: state=4294967295 cpu_id=2
80186          <idle>-0     (-----) [002] d..2 24574.272864: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
80187  appEventThread-23905 (23896) [003] d..2 24574.272880: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80188          <idle>-0     (-----) [003] d..1 24574.272892: cpu_idle: state=0 cpu_id=3
80189<...>-24151 ( 24151) [002] .... 24574.273132: binder_transaction: transaction=1670681 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
80190<...>-24151 ( 24151) [002] d..4 24574.273143: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=006
80191<...>-24151 ( 24151) [002] d..5 24574.273178: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=003
80192          <idle>-0     (-----) [003] .n.1 24574.273183: cpu_idle: state=4294967295 cpu_id=3
80193<...>-24151 ( 24151) [002] d.h5 24574.273224: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
80194          <idle>-0     (-----) [003] d..2 24574.273225: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
80195<...>-24151 ( 24151) [002] dnh6 24574.273238: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
80196  Binder:23896_4-24423 (23896) [003] .... 24574.273247: binder_transaction_received: transaction=1670681
80197 s.nexuslauncher-24827 (24827) [000] .... 24574.273248: binder_transaction: transaction=1670682 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
80198<...>-24151 ( 24151) [002] d..2 24574.273250: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
80199 s.nexuslauncher-24827 (24827) [000] d..4 24574.273258: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
80200  surfaceflinger-23896 (23896) [001] ...1 24574.273260: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
80201         sugov:0-559   (  559) [002] d..2 24574.273262: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
80202  surfaceflinger-23896 (23896) [001] ...1 24574.273266: tracing_mark_write: E|23896
80203  Binder:23896_4-24423 (23896) [003] d..1 24574.273277: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
80204          <idle>-0     (-----) [005] dnh2 24574.273288: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
80205          <idle>-0     (-----) [005] .n.1 24574.273292: cpu_idle: state=4294967295 cpu_id=5
80206          <idle>-0     (-----) [005] d..2 24574.273299: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
80207  Binder:23896_4-24423 (23896) [003] d..2 24574.273301: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
80208  Binder:23896_5-25989 (23896) [005] .... 24574.273303: binder_transaction_received: transaction=1670682
80209 s.nexuslauncher-24827 (24827) [000] d..3 24574.273313: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
80210<...>-24151 ( 24151) [002] d..2 24574.273313: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
80211  surfaceflinger-23896 (23896) [001] .... 24574.273323: binder_transaction: transaction=1670683 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
80212  Binder:23896_4-24423 (23896) [003] d..2 24574.273343: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80213  Binder:23896_5-25989 (23896) [005] d..2 24574.273345: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
80214  surfaceflinger-23896 (23896) [001] ...2 24574.273347: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
80215          <idle>-0     (-----) [005] d..1 24574.273350: cpu_idle: state=0 cpu_id=5
80216          <idle>-0     (-----) [003] d..1 24574.273357: cpu_idle: state=0 cpu_id=3
80217          <idle>-0     (-----) [006] dnh2 24574.273384: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=006
80218  surfaceflinger-23896 (23896) [001] d..4 24574.273385: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
80219          <idle>-0     (-----) [006] .n.1 24574.273388: cpu_idle: state=4294967295 cpu_id=6
80220  appEventThread-23905 (23896) [002] d..2 24574.273390: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
80221          <idle>-0     (-----) [006] d..2 24574.273395: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
80222  surfaceflinger-23896 (23896) [001] d..5 24574.273406: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
80223          <idle>-0     (-----) [003] .n.1 24574.273412: cpu_idle: state=4294967295 cpu_id=3
80224          <idle>-0     (-----) [003] d..2 24574.273421: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
80225<...>-24151 ( 24151) [002] d..3 24574.273423: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
80226  HwBinder:598_3-633   (  598) [003] .... 24574.273431: binder_transaction_received: transaction=1670683
80227    RenderThread-25194 (24827) [006] d..2 24574.273434: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
80228          <idle>-0     (-----) [006] d..1 24574.273440: cpu_idle: state=0 cpu_id=6
80229  surfaceflinger-23896 (23896) [001] d..2 24574.273441: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
80230          <idle>-0     (-----) [006] dnh2 24574.273449: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
80231          <idle>-0     (-----) [006] .n.1 24574.273451: cpu_idle: state=4294967295 cpu_id=6
80232          <idle>-0     (-----) [006] d..2 24574.273456: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
80233          <idle>-0     (-----) [001] d..1 24574.273459: cpu_idle: state=0 cpu_id=1
80234    RenderThread-24437 (24151) [006] d..2 24574.273474: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
80235  HwBinder:598_3-633   (  598) [003] ...1 24574.273474: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
80236          <idle>-0     (-----) [006] d..1 24574.273477: cpu_idle: state=0 cpu_id=6
80237  HwBinder:598_3-633   (  598) [003] ...1 24574.273595: tracing_mark_write: B|598|HWCSession::PresentDisplay::
80238<...>-24151 ( 24151) [002] d..3 24574.273595: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
80239<...>-24151 ( 24151) [002] d..4 24574.273629: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=001
80240          <idle>-0     (-----) [001] .n.1 24574.273635: cpu_idle: state=4294967295 cpu_id=1
80241          <idle>-0     (-----) [001] d..2 24574.273675: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
80242<...>-24151 ( 24151) [002] d..2 24574.273698: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80243          <idle>-0     (-----) [002] d..1 24574.273712: cpu_idle: state=0 cpu_id=2
80244 s.nexuslauncher-24827 (24827) [000] d..3 24574.273727: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=006
80245 s.nexuslauncher-24827 (24827) [000] d..4 24574.273767: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
80246          <idle>-0     (-----) [002] .n.1 24574.273772: cpu_idle: state=4294967295 cpu_id=2
80247          <idle>-0     (-----) [002] d..2 24574.273782: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
80248 s.nexuslauncher-24827 (24827) [000] d.h3 24574.273824: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
80249    RenderThread-24437 (24151) [001] d..1 24574.273827: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
80250 s.nexuslauncher-24827 (24827) [000] dnh4 24574.273843: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
80251 s.nexuslauncher-24827 (24827) [000] d..2 24574.273855: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
80252         sugov:0-559   (  559) [000] d..2 24574.273867: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
80253          <idle>-0     (-----) [006] dnh2 24574.273867: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
80254          <idle>-0     (-----) [006] .n.1 24574.273871: cpu_idle: state=4294967295 cpu_id=6
80255          <idle>-0     (-----) [006] d..2 24574.273907: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
80256 s.nexuslauncher-24827 (24827) [000] d..2 24574.273922: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80257    RenderThread-25194 (24827) [002] d..1 24574.273925: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
80258          <idle>-0     (-----) [000] d..1 24574.273941: cpu_idle: state=0 cpu_id=0
80259          <idle>-0     (-----) [000] .n.1 24574.273945: cpu_idle: state=4294967295 cpu_id=0
80260    RenderThread-25194 (24827) [002] d..2 24574.273947: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
80261          <idle>-0     (-----) [000] d..2 24574.273959: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
80262<...>-24151 ( 24151) [006] d..2 24574.273967: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
80263    RenderThread-25194 (24827) [002] d..1 24574.273968: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=002
80264    RenderThread-24437 (24151) [001] .... 24574.273969: binder_transaction: transaction=1670684 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
80265          <idle>-0     (-----) [006] d..1 24574.273974: cpu_idle: state=0 cpu_id=6
80266    RenderThread-24437 (24151) [001] d..4 24574.273978: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
80267          <idle>-0     (-----) [005] dnh2 24574.274004: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
80268          <idle>-0     (-----) [005] .n.1 24574.274006: cpu_idle: state=4294967295 cpu_id=5
80269    RenderThread-24437 (24151) [001] dn.5 24574.274008: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
80270          <idle>-0     (-----) [005] d..2 24574.274010: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
80271    RenderThread-24437 (24151) [001] d..2 24574.274052: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
80272  Binder:23896_5-25989 (23896) [001] .... 24574.274062: binder_transaction_received: transaction=1670684
80273 s.nexuslauncher-24827 (24827) [000] d..2 24574.274066: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80274          <idle>-0     (-----) [000] d..1 24574.274078: cpu_idle: state=0 cpu_id=0
80275    RenderThread-25194 (24827) [002] .... 24574.274108: binder_transaction: transaction=1670685 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
80276    RenderThread-25194 (24827) [002] ...2 24574.274116: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
80277    RenderThread-25194 (24827) [002] d..4 24574.274120: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=003
80278    RenderThread-25194 (24827) [002] d..5 24574.274140: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
80279  Binder:23896_5-25989 (23896) [001] .... 24574.274149: binder_transaction: transaction=1670686 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
80280    RenderThread-25194 (24827) [002] d..2 24574.274155: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
80281  HwBinder:598_3-633   (  598) [003] ...1 24574.274155: tracing_mark_write: B|598|HWDeviceDRM::Validate::
80282  Binder:23896_4-24423 (23896) [002] .... 24574.274163: binder_transaction_received: transaction=1670685
80283  Binder:23896_5-25989 (23896) [001] d..2 24574.274193: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
80284<...>-27853 ( 24827) [005] .... 24574.274197: binder_transaction: transaction=1670687 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
80285    RenderThread-24437 (24151) [001] .... 24574.274204: binder_transaction_received: transaction=1670686
80286<...>-27853 ( 24827) [005] ...2 24574.274211: binder_set_priority: proc=23896 thread=25989 old=120 => new=118 desired=118
80287<...>-27853 ( 24827) [005] d..4 24574.274248: sched_waking: comm=Binder:23896_5 pid=25989 prio=118 target_cpu=001
80288  Binder:23896_4-24423 (23896) [002] d.s1 24574.274253: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
80289<...>-27853 ( 24827) [005] d..5 24574.274264: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=118 target_cpu=005
80290  Binder:23896_4-24423 (23896) [002] d.s2 24574.274272: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
80291<...>-27853 ( 24827) [005] d..2 24574.274301: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=118
80292  Binder:23896_5-25989 (23896) [005] .... 24574.274306: binder_transaction_received: transaction=1670687
80293  Binder:23896_4-24423 (23896) [002] .... 24574.274320: binder_transaction: transaction=1670688 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
80294  Binder:23896_4-24423 (23896) [002] d..2 24574.274333: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
80295  Binder:23896_4-24423 (23896) [002] d..3 24574.274354: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
80296  Binder:23896_4-24423 (23896) [002] .... 24574.274358: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
80297          <idle>-0     (-----) [000] .n.1 24574.274360: cpu_idle: state=4294967295 cpu_id=0
80298  Binder:23896_4-24423 (23896) [002] d..2 24574.274370: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
80299          <idle>-0     (-----) [000] d..2 24574.274373: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
80300    RenderThread-25194 (24827) [000] .... 24574.274382: binder_transaction_received: transaction=1670688
80301     rcu_preempt-7     (    7) [002] d..2 24574.274390: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
80302  Binder:23896_5-25989 (23896) [005] .... 24574.274411: binder_transaction: transaction=1670689 dest_node=0 dest_proc=24827 dest_thread=27853 reply=1 flags=0x0 code=0x0
80303  Binder:23896_5-25989 (23896) [005] d..2 24574.274415: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
80304  Binder:23896_5-25989 (23896) [005] d..3 24574.274422: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
80305  Binder:23896_5-25989 (23896) [005] .... 24574.274424: binder_set_priority: proc=23896 thread=25989 old=118 => new=120 desired=120
80306  Binder:23896_5-25989 (23896) [005] d..2 24574.274430: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
80307<...>-27853 ( 24827) [005] .... 24574.274433: binder_transaction_received: transaction=1670689
80308  Binder:23896_4-24423 (23896) [002] d..2 24574.274444: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80309          <idle>-0     (-----) [002] d..1 24574.274462: cpu_idle: state=0 cpu_id=2
80310<...>-27853 ( 24827) [005] d..2 24574.274477: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
80311  Binder:23896_5-25989 (23896) [005] d..2 24574.274513: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
80312          <idle>-0     (-----) [005] d..1 24574.274526: cpu_idle: state=0 cpu_id=5
80313  HwBinder:598_3-633   (  598) [003] ...1 24574.274661: tracing_mark_write: E|598
80314  HwBinder:598_3-633   (  598) [003] ...1 24574.274796: tracing_mark_write: B|598|HWDeviceDRM::Commit::
80315  HwBinder:598_3-633   (  598) [003] ...1 24574.274806: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
80316  HwBinder:598_3-633   (  598) [003] d..2 24574.275183: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
80317    RenderThread-25194 (24827) [000] .... 24574.275205: binder_transaction: transaction=1670690 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
80318  HwBinder:598_3-633   (  598) [003] d..3 24574.275210: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
80319          <idle>-0     (-----) [002] .n.1 24574.275214: cpu_idle: state=4294967295 cpu_id=2
80320    RenderThread-25194 (24827) [000] ...2 24574.275220: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
80321          <idle>-0     (-----) [002] d..2 24574.275224: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
80322    RenderThread-25194 (24827) [000] d..4 24574.275225: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
80323    RenderThread-25194 (24827) [000] d..5 24574.275256: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
80324    RenderThread-25194 (24827) [000] d.h5 24574.275303: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
80325  HwBinder:598_3-633   (  598) [003] ...1 24574.275303: tracing_mark_write: E|598
80326  HwBinder:598_3-633   (  598) [003] ...1 24574.275308: tracing_mark_write: E|598
80327    RenderThread-25194 (24827) [000] d.h6 24574.275321: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
80328    RenderThread-24437 (24151) [001] d..2 24574.275337: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
80329    RenderThread-25194 (24827) [000] d..2 24574.275357: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
80330  HwBinder:598_3-633   (  598) [003] ...1 24574.275358: tracing_mark_write: E|598
80331         sugov:0-559   (  559) [001] d..2 24574.275362: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
80332  Binder:23896_5-25989 (23896) [000] .... 24574.275366: binder_transaction_received: transaction=1670690
80333  HwBinder:598_3-633   (  598) [003] ...1 24574.275403: tracing_mark_write: E|598
80334  HwBinder:598_3-633   (  598) [003] .... 24574.275418: binder_transaction: transaction=1670691 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
80335  HwBinder:598_3-633   (  598) [003] d..2 24574.275438: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
80336  HwBinder:598_3-633   (  598) [003] d..3 24574.275464: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
80337  HwBinder:598_3-633   (  598) [003] .... 24574.275469: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
80338  Binder:23896_5-25989 (23896) [000] d..2 24574.275481: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
80339  surfaceflinger-23896 (23896) [000] .... 24574.275491: binder_transaction_received: transaction=1670691
80340  HwBinder:598_3-633   (  598) [003] d..2 24574.275565: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80341          <idle>-0     (-----) [003] d..1 24574.275585: cpu_idle: state=0 cpu_id=3
80342  surfaceflinger-23896 (23896) [000] d.h2 24574.275811: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
80343  surfaceflinger-23896 (23896) [000] d.h3 24574.275843: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
80344          <idle>-0     (-----) [003] .n.1 24574.275850: cpu_idle: state=4294967295 cpu_id=3
80345          <idle>-0     (-----) [003] d..2 24574.275859: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
80346 crtc_commit:111-253   (  253) [002] d..2 24574.275881: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
80347 kgsl_worker_thr-246   (  246) [003] d..2 24574.275905: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
80348  Binder:23896_5-25989 (23896) [002] .... 24574.275924: binder_transaction: transaction=1670692 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
80349  Binder:23896_5-25989 (23896) [002] d..2 24574.275930: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
80350 kgsl_worker_thr-246   (  246) [003] d..3 24574.275946: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
80351  Binder:23896_5-25989 (23896) [002] dn.3 24574.275951: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
80352  Binder:23896_5-25989 (23896) [002] d..2 24574.275958: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
80353    RenderThread-25194 (24827) [002] .... 24574.275967: binder_transaction_received: transaction=1670692
80354 kgsl_worker_thr-246   (  246) [003] d..2 24574.275967: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
80355  surfaceflinger-23896 (23896) [000] d..2 24574.276038: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
80356  Binder:23896_5-25989 (23896) [000] .... 24574.276044: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
80357    RenderThread-25194 (24827) [002] d..2 24574.276083: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80358          <idle>-0     (-----) [002] d..1 24574.276100: cpu_idle: state=0 cpu_id=2
80359  Binder:23896_5-25989 (23896) [000] d..2 24574.276106: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80360          <idle>-0     (-----) [000] d..1 24574.276161: cpu_idle: state=0 cpu_id=0
80361  kworker/u16:15-18488 (18488) [003] d..2 24574.276183: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80362          <idle>-0     (-----) [003] d..1 24574.276198: cpu_idle: state=0 cpu_id=3
80363    RenderThread-24437 (24151) [001] .... 24574.276249: binder_transaction: transaction=1670693 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
80364    RenderThread-24437 (24151) [001] d..4 24574.276262: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
80365    RenderThread-24437 (24151) [001] dn.5 24574.276287: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
80366    RenderThread-24437 (24151) [001] d..2 24574.276296: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
80367  Binder:23896_5-25989 (23896) [001] .... 24574.276304: binder_transaction_received: transaction=1670693
80368  Binder:23896_5-25989 (23896) [001] .... 24574.276411: binder_transaction: transaction=1670694 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
80369  Binder:23896_5-25989 (23896) [001] d..2 24574.276451: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
80370    RenderThread-24437 (24151) [001] .... 24574.276459: binder_transaction_received: transaction=1670694
80371          <idle>-0     (-----) [000] d.h3 24574.276483: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
80372          <idle>-0     (-----) [000] d.h4 24574.276501: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
80373          <idle>-0     (-----) [003] .n.1 24574.276507: cpu_idle: state=4294967295 cpu_id=3
80374          <idle>-0     (-----) [000] ...1 24574.276511: cpu_idle: state=4294967295 cpu_id=0
80375          <idle>-0     (-----) [000] d..1 24574.276514: cpu_idle: state=0 cpu_id=0
80376          <idle>-0     (-----) [003] d..2 24574.276515: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
80377    RenderThread-24437 (24151) [001] d..2 24574.276555: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
80378          <idle>-0     (-----) [001] d..1 24574.276579: cpu_idle: state=0 cpu_id=1
80379 kgsl_worker_thr-246   (  246) [003] d..2 24574.276636: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80380          <idle>-0     (-----) [003] d..1 24574.276648: cpu_idle: state=0 cpu_id=3
80381          <idle>-0     (-----) [003] d..2 24574.277879: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
80382          <idle>-0     (-----) [003] dn.3 24574.277894: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
80383          <idle>-0     (-----) [003] dnH3 24574.277962: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
80384          <idle>-0     (-----) [003] dnH3 24574.277977: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
80385          <idle>-0     (-----) [004] dnh2 24574.277983: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
80386          <idle>-0     (-----) [004] .n.1 24574.277985: cpu_idle: state=4294967295 cpu_id=4
80387          <idle>-0     (-----) [003] dnH4 24574.277989: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
80388          <idle>-0     (-----) [004] d..2 24574.277990: 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
80389          <idle>-0     (-----) [001] .n.1 24574.277996: cpu_idle: state=4294967295 cpu_id=1
80390          <idle>-0     (-----) [003] dns3 24574.277997: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
80391         sugov:4-560   (  560) [004] .... 24574.278002: clk_set_rate: perfcl_clk 825600000
80392         sugov:4-560   (  560) [004] .... 24574.278002: clk_set_rate: cpu7_perfcl_clk 1689600000
80393         sugov:4-560   (  560) [004] .... 24574.278007: clk_set_rate: cpu6_perfcl_clk 1689600000
80394          <idle>-0     (-----) [001] d..2 24574.278008: 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
80395         sugov:4-560   (  560) [004] .... 24574.278013: clk_set_rate: cpu5_perfcl_clk 1689600000
80396         sugov:4-560   (  560) [004] .... 24574.278018: clk_set_rate: cpu4_perfcl_clk 825600000
80397         sugov:4-560   (  560) [004] .... 24574.278025: cpu_frequency: state=825600 cpu_id=4
80398         sugov:4-560   (  560) [004] .... 24574.278028: cpu_frequency: state=825600 cpu_id=5
80399         sugov:4-560   (  560) [004] .... 24574.278030: cpu_frequency: state=825600 cpu_id=6
80400          <idle>-0     (-----) [003] dns4 24574.278031: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
80401         sugov:4-560   (  560) [004] .... 24574.278033: cpu_frequency: state=825600 cpu_id=7
80402          <idle>-0     (-----) [003] .n.1 24574.278038: cpu_idle: state=4294967295 cpu_id=3
80403         sugov:0-559   (  559) [001] d..2 24574.278039: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
80404          <idle>-0     (-----) [003] d..2 24574.278051: 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
80405         sugov:4-560   (  560) [004] d..2 24574.278054: 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
80406          <idle>-0     (-----) [004] d..1 24574.278061: cpu_idle: state=0 cpu_id=4
80407     ksoftirqd/3-34    (   34) [003] d..2 24574.278077: 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
80408          <idle>-0     (-----) [003] d..1 24574.278103: cpu_idle: state=0 cpu_id=3
80409          <idle>-0     (-----) [003] ...1 24574.278114: cpu_idle: state=4294967295 cpu_id=3
80410          <idle>-0     (-----) [003] d..1 24574.278117: cpu_idle: state=0 cpu_id=3
80411  kworker/u16:15-18488 (18488) [001] .... 24574.278124: clk_set_rate: l3_cluster0_vote_clk 652800000
80412  kworker/u16:15-18488 (18488) [001] .... 24574.278130: clk_set_rate: l3_clk 652800000
80413  kworker/u16:15-18488 (18488) [001] d..2 24574.278179: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
80414          <idle>-0     (-----) [001] d..1 24574.278190: cpu_idle: state=0 cpu_id=1
80415          <idle>-0     (-----) [003] ...1 24574.279547: cpu_idle: state=4294967295 cpu_id=3
80416          <idle>-0     (-----) [003] d..1 24574.279549: cpu_idle: state=0 cpu_id=3
80417          <idle>-0     (-----) [002] d.s2 24574.280903: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
80418          <idle>-0     (-----) [002] dns3 24574.280917: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
80419          <idle>-0     (-----) [002] dns3 24574.280921: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
80420          <idle>-0     (-----) [002] dns4 24574.280941: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
80421          <idle>-0     (-----) [002] .n.1 24574.280954: cpu_idle: state=4294967295 cpu_id=2
80422          <idle>-0     (-----) [002] d..2 24574.280962: 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
80423     rcu_preempt-7     (    7) [002] d..2 24574.280971: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
80424     rcu_preempt-7     (    7) [002] d..3 24574.280982: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
80425     rcu_preempt-7     (    7) [002] d..2 24574.280989: 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
80426         rcuop/0-10    (   10) [002] d..2 24574.280993: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
80427         rcuop/0-10    (   10) [002] d..3 24574.281003: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
80428         rcuop/0-10    (   10) [002] d..2 24574.281033: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
80429         rcuop/0-10    (   10) [002] d..3 24574.281041: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
80430         rcuop/0-10    (   10) [002] d..2 24574.281047: 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
80431     rcu_preempt-7     (    7) [002] d..2 24574.281055: 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
80432         rcuop/1-21    (   21) [002] d..2 24574.281069: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
80433  kworker/u16:15-18488 (18488) [002] d..2 24574.281253: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
80434          <idle>-0     (-----) [002] d..1 24574.281263: cpu_idle: state=0 cpu_id=2
80435          <idle>-0     (-----) [003] d.s3 24574.281285: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
80436          <idle>-0     (-----) [003] d.s4 24574.281293: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
80437          <idle>-0     (-----) [003] d.s4 24574.281300: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
80438          <idle>-0     (-----) [002] .n.1 24574.281305: cpu_idle: state=4294967295 cpu_id=2
80439          <idle>-0     (-----) [003] ...1 24574.281305: cpu_idle: state=4294967295 cpu_id=3
80440          <idle>-0     (-----) [003] d..1 24574.281309: cpu_idle: state=0 cpu_id=3
80441          <idle>-0     (-----) [002] d..2 24574.281313: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
80442  kworker/u16:15-18488 (18488) [002] d..2 24574.281332: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80443          <idle>-0     (-----) [002] d..1 24574.281338: cpu_idle: state=0 cpu_id=2
80444          <idle>-0     (-----) [003] ...1 24574.282773: cpu_idle: state=4294967295 cpu_id=3
80445          <idle>-0     (-----) [003] d..1 24574.282775: cpu_idle: state=0 cpu_id=3
80446          <idle>-0     (-----) [000] d.h5 24574.284775: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
80447          <idle>-0     (-----) [000] dnh6 24574.284785: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
80448          <idle>-0     (-----) [000] dnh5 24574.284788: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
80449          <idle>-0     (-----) [000] dnh6 24574.284797: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
80450          <idle>-0     (-----) [002] .n.1 24574.284802: cpu_idle: state=4294967295 cpu_id=2
80451          <idle>-0     (-----) [000] .n.1 24574.284806: cpu_idle: state=4294967295 cpu_id=0
80452          <idle>-0     (-----) [002] d..2 24574.284809: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
80453          <idle>-0     (-----) [000] d..2 24574.284814: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
80454  crtc_event:111-254   (  254) [000] d..2 24574.284838: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80455          <idle>-0     (-----) [000] d..2 24574.284840: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
80456          <idle>-0     (-----) [000] dn.3 24574.284850: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
80457          <idle>-0     (-----) [000] d..2 24574.284856: 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
80458     ksoftirqd/0-3     (    3) [000] d..2 24574.284875: 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
80459          <idle>-0     (-----) [000] d..1 24574.284882: cpu_idle: state=0 cpu_id=0
80460 crtc_commit:111-253   (  253) [002] d..2 24574.284900: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
80461          <idle>-0     (-----) [002] d..1 24574.284905: cpu_idle: state=0 cpu_id=2
80462          <idle>-0     (-----) [000] d.h5 24574.287107: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
80463          <idle>-0     (-----) [000] d.h6 24574.287119: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
80464          <idle>-0     (-----) [002] .n.1 24574.287123: cpu_idle: state=4294967295 cpu_id=2
80465          <idle>-0     (-----) [000] ...1 24574.287127: cpu_idle: state=4294967295 cpu_id=0
80466          <idle>-0     (-----) [002] d..2 24574.287127: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
80467          <idle>-0     (-----) [000] d..1 24574.287130: cpu_idle: state=0 cpu_id=0
80468 crtc_commit:111-253   (  253) [002] d..2 24574.287175: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80469          <idle>-0     (-----) [002] d..1 24574.287180: cpu_idle: state=0 cpu_id=2
80470          <idle>-0     (-----) [000] d.h5 24574.287417: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
80471          <idle>-0     (-----) [000] dnh6 24574.287423: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
80472          <idle>-0     (-----) [000] .n.1 24574.287433: cpu_idle: state=4294967295 cpu_id=0
80473          <idle>-0     (-----) [000] d..2 24574.287439: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
80474  crtc_event:111-254   (  254) [000] d..2 24574.287456: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80475          <idle>-0     (-----) [000] d..1 24574.287461: cpu_idle: state=0 cpu_id=0
80476          <idle>-0     (-----) [002] d.s3 24574.287566: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
80477          <idle>-0     (-----) [002] d.s4 24574.287579: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
80478          <idle>-0     (-----) [002] d.s2 24574.287582: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
80479          <idle>-0     (-----) [000] .n.1 24574.287584: cpu_idle: state=4294967295 cpu_id=0
80480          <idle>-0     (-----) [000] d..2 24574.287590: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
80481          <idle>-0     (-----) [002] dns3 24574.287592: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
80482          <idle>-0     (-----) [002] dns3 24574.287594: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
80483  crtc_event:111-254   (  254) [000] d..2 24574.287608: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80484          <idle>-0     (-----) [000] d..1 24574.287613: cpu_idle: state=0 cpu_id=0
80485          <idle>-0     (-----) [002] dns4 24574.287619: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
80486          <idle>-0     (-----) [000] .n.1 24574.287624: cpu_idle: state=4294967295 cpu_id=0
80487          <idle>-0     (-----) [002] .n.1 24574.287626: cpu_idle: state=4294967295 cpu_id=2
80488          <idle>-0     (-----) [000] d..2 24574.287630: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
80489          <idle>-0     (-----) [002] d..2 24574.287632: 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
80490     rcu_preempt-7     (    7) [002] d..2 24574.287651: 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
80491          <idle>-0     (-----) [002] d..1 24574.287673: cpu_idle: state=0 cpu_id=2
80492          <idle>-0     (-----) [002] ...1 24574.287682: cpu_idle: state=4294967295 cpu_id=2
80493          <idle>-0     (-----) [002] d..1 24574.287684: cpu_idle: state=0 cpu_id=2
80494  kworker/u16:15-18488 (18488) [000] .... 24574.287686: clk_set_rate: l3_cluster0_vote_clk 300000000
80495  kworker/u16:15-18488 (18488) [000] .... 24574.287689: clk_set_rate: l3_clk 300000000
80496  kworker/u16:15-18488 (18488) [000] d..2 24574.287732: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80497          <idle>-0     (-----) [000] d..1 24574.287740: cpu_idle: state=0 cpu_id=0
80498          <idle>-0     (-----) [002] d.h2 24574.288158: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
80499          <idle>-0     (-----) [002] dnh3 24574.288171: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
80500          <idle>-0     (-----) [002] .n.1 24574.288176: cpu_idle: state=4294967295 cpu_id=2
80501          <idle>-0     (-----) [002] d..2 24574.288184: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
80502        DispSync-23904 (23896) [002] d..1 24574.288211: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
80503        DispSync-23904 (23896) [002] d..2 24574.288226: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
80504          <idle>-0     (-----) [003] .n.1 24574.288230: cpu_idle: state=4294967295 cpu_id=3
80505          <idle>-0     (-----) [003] d..2 24574.288240: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
80506        DispSync-23904 (23896) [002] d..2 24574.288259: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80507          <idle>-0     (-----) [002] d..1 24574.288268: cpu_idle: state=0 cpu_id=2
80508   sfEventThread-23906 (23896) [003] d..3 24574.288297: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
80509   sfEventThread-23906 (23896) [003] d..4 24574.288318: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
80510          <idle>-0     (-----) [000] .n.1 24574.288323: cpu_idle: state=4294967295 cpu_id=0
80511          <idle>-0     (-----) [000] d..2 24574.288330: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
80512   sfEventThread-23906 (23896) [003] d..2 24574.288353: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80513          <idle>-0     (-----) [003] d..1 24574.288365: cpu_idle: state=0 cpu_id=3
80514  surfaceflinger-23896 (23896) [000] d..1 24574.288962: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
80515  surfaceflinger-23896 (23896) [000] d..2 24574.288984: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
80516          <idle>-0     (-----) [003] .n.1 24574.288990: cpu_idle: state=4294967295 cpu_id=3
80517          <idle>-0     (-----) [003] d..2 24574.288998: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
80518   sfEventThread-23906 (23896) [003] d..2 24574.289028: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80519          <idle>-0     (-----) [003] d..1 24574.289035: cpu_idle: state=0 cpu_id=3
80520          <idle>-0     (-----) [002] d.h2 24574.289163: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
80521          <idle>-0     (-----) [002] dnh3 24574.289171: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
80522          <idle>-0     (-----) [002] .n.1 24574.289176: cpu_idle: state=4294967295 cpu_id=2
80523          <idle>-0     (-----) [002] d..2 24574.289182: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
80524        DispSync-23904 (23896) [002] d..1 24574.289192: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
80525        DispSync-23904 (23896) [002] d..2 24574.289210: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
80526          <idle>-0     (-----) [001] .n.1 24574.289216: cpu_idle: state=4294967295 cpu_id=1
80527          <idle>-0     (-----) [001] d..2 24574.289224: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
80528        DispSync-23904 (23896) [002] d..2 24574.289233: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80529          <idle>-0     (-----) [002] d..1 24574.289241: cpu_idle: state=0 cpu_id=2
80530  appEventThread-23905 (23896) [001] d..3 24574.289280: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
80531  appEventThread-23905 (23896) [001] d..4 24574.289310: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
80532          <idle>-0     (-----) [002] .n.1 24574.289315: cpu_idle: state=4294967295 cpu_id=2
80533          <idle>-0     (-----) [002] d..2 24574.289324: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
80534  appEventThread-23905 (23896) [001] d..3 24574.289324: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
80535  appEventThread-23905 (23896) [001] d..4 24574.289349: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
80536          <idle>-0     (-----) [003] .n.1 24574.289354: cpu_idle: state=4294967295 cpu_id=3
80537  appEventThread-23905 (23896) [001] d.h3 24574.289391: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
80538          <idle>-0     (-----) [003] d..2 24574.289393: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
80539          <idle>-0     (-----) [004] dnh2 24574.289410: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
80540          <idle>-0     (-----) [004] .n.1 24574.289413: cpu_idle: state=4294967295 cpu_id=4
80541          <idle>-0     (-----) [004] d..2 24574.289420: 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
80542         sugov:4-560   (  560) [004] d..2 24574.289434: 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
80543  appEventThread-23905 (23896) [001] d..2 24574.289439: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
80544          <idle>-0     (-----) [004] d..1 24574.289440: cpu_idle: state=0 cpu_id=4
80545          <idle>-0     (-----) [001] d..1 24574.289455: cpu_idle: state=0 cpu_id=1
80546 s.nexuslauncher-24827 (24827) [002] .... 24574.289621: binder_transaction: transaction=1670695 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
80547 s.nexuslauncher-24827 (24827) [002] d..4 24574.289632: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
80548  surfaceflinger-23896 (23896) [000] ...1 24574.289653: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
80549 s.nexuslauncher-24827 (24827) [002] d..5 24574.289658: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
80550  surfaceflinger-23896 (23896) [000] ...1 24574.289660: tracing_mark_write: E|23896
80551          <idle>-0     (-----) [001] .n.1 24574.289664: cpu_idle: state=4294967295 cpu_id=1
80552<...>-24151 ( 24151) [003] .... 24574.289667: binder_transaction: transaction=1670696 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
80553          <idle>-0     (-----) [001] d..2 24574.289675: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
80554<...>-24151 ( 24151) [003] d..4 24574.289678: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=002
80555 s.nexuslauncher-24827 (24827) [002] d..3 24574.289695: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
80556  surfaceflinger-23896 (23896) [000] .... 24574.289709: binder_transaction: transaction=1670697 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
80557          <idle>-0     (-----) [005] dnh2 24574.289731: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
80558  surfaceflinger-23896 (23896) [000] ...2 24574.289733: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
80559          <idle>-0     (-----) [005] dnh2 24574.289734: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
80560          <idle>-0     (-----) [005] .n.1 24574.289772: cpu_idle: state=4294967295 cpu_id=5
80561  surfaceflinger-23896 (23896) [000] d..4 24574.289772: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
80562  Binder:23896_5-25989 (23896) [001] .... 24574.289777: binder_transaction_received: transaction=1670695
80563          <idle>-0     (-----) [005] d..2 24574.289782: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
80564  surfaceflinger-23896 (23896) [000] d..5 24574.289795: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
80565  Binder:23896_5-25989 (23896) [001] d..1 24574.289805: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
80566<...>-24151 ( 24151) [003] d..2 24574.289814: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
80567    RenderThread-25194 (24827) [005] d..2 24574.289818: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
80568  Binder:23896_4-24423 (23896) [005] .... 24574.289825: binder_transaction_received: transaction=1670696
80569  HwBinder:598_3-633   (  598) [003] .... 24574.289825: binder_transaction_received: transaction=1670697
80570  Binder:23896_5-25989 (23896) [001] d..2 24574.289828: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
80571  surfaceflinger-23896 (23896) [000] d..2 24574.289836: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=appEventThread next_pid=23905 next_prio=97
80572  HwBinder:598_3-633   (  598) [003] ...1 24574.289869: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
80573  Binder:23896_5-25989 (23896) [001] d..2 24574.289878: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
80574  Binder:23896_4-24423 (23896) [005] d..2 24574.289880: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
80575          <idle>-0     (-----) [001] d..1 24574.289891: cpu_idle: state=0 cpu_id=1
80576  appEventThread-23905 (23896) [000] d..2 24574.289891: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80577          <idle>-0     (-----) [005] d..1 24574.289891: cpu_idle: state=0 cpu_id=5
80578          <idle>-0     (-----) [000] d..1 24574.289908: cpu_idle: state=0 cpu_id=0
80579  HwBinder:598_3-633   (  598) [003] ...1 24574.289977: tracing_mark_write: B|598|HWCSession::PresentDisplay::
80580 s.nexuslauncher-24827 (24827) [002] d..3 24574.290185: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
80581 s.nexuslauncher-24827 (24827) [002] d..4 24574.290221: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
80582          <idle>-0     (-----) [000] .n.1 24574.290227: cpu_idle: state=4294967295 cpu_id=0
80583 s.nexuslauncher-24827 (24827) [002] d.h3 24574.290267: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
80584          <idle>-0     (-----) [000] d..2 24574.290268: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
80585          <idle>-0     (-----) [004] dnh2 24574.290286: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
80586          <idle>-0     (-----) [004] .n.1 24574.290289: cpu_idle: state=4294967295 cpu_id=4
80587          <idle>-0     (-----) [004] d..2 24574.290294: 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
80588         sugov:4-560   (  560) [004] d..2 24574.290306: 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
80589 s.nexuslauncher-24827 (24827) [002] d..2 24574.290311: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80590          <idle>-0     (-----) [004] d..1 24574.290311: cpu_idle: state=0 cpu_id=4
80591          <idle>-0     (-----) [002] d..1 24574.290328: cpu_idle: state=0 cpu_id=2
80592    RenderThread-25194 (24827) [000] d..1 24574.290422: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
80593    RenderThread-25194 (24827) [000] d..2 24574.290453: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
80594          <idle>-0     (-----) [001] .n.1 24574.290459: cpu_idle: state=4294967295 cpu_id=1
80595          <idle>-0     (-----) [001] d..2 24574.290469: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
80596    RenderThread-25194 (24827) [000] d..1 24574.290474: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
80597  HwBinder:598_3-633   (  598) [003] ...1 24574.290485: tracing_mark_write: B|598|HWDeviceDRM::Validate::
80598    RenderThread-25194 (24827) [000] d..2 24574.290499: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=002
80599          <idle>-0     (-----) [002] .n.1 24574.290505: cpu_idle: state=4294967295 cpu_id=2
80600          <idle>-0     (-----) [002] d..2 24574.290545: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
80601 s.nexuslauncher-24827 (24827) [001] d..2 24574.290591: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
80602          <idle>-0     (-----) [001] d..1 24574.290606: cpu_idle: state=0 cpu_id=1
80603    RenderThread-25194 (24827) [000] .... 24574.290611: binder_transaction: transaction=1670698 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
80604    RenderThread-25194 (24827) [000] ...2 24574.290621: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
80605    RenderThread-25194 (24827) [000] d..4 24574.290624: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=005
80606    RenderThread-25194 (24827) [000] d..5 24574.290649: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
80607    RenderThread-25194 (24827) [000] d..2 24574.290691: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
80608  Binder:23896_4-24423 (23896) [000] .... 24574.290700: binder_transaction_received: transaction=1670698
80609  Binder:23896_4-24423 (23896) [000] .... 24574.290767: binder_transaction: transaction=1670699 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
80610<...>-27853 ( 24827) [002] .... 24574.290776: binder_transaction: transaction=1670700 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
80611  Binder:23896_4-24423 (23896) [000] d..2 24574.290780: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
80612  Binder:23896_4-24423 (23896) [000] d..3 24574.290792: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
80613  Binder:23896_4-24423 (23896) [000] .... 24574.290796: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
80614<...>-27853 ( 24827) [002] ...2 24574.290797: binder_set_priority: proc=23896 thread=25989 old=120 => new=118 desired=118
80615<...>-27853 ( 24827) [002] d..4 24574.290800: sched_waking: comm=Binder:23896_5 pid=25989 prio=118 target_cpu=001
80616  Binder:23896_4-24423 (23896) [000] d..2 24574.290807: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
80617    RenderThread-25194 (24827) [000] .... 24574.290814: binder_transaction_received: transaction=1670699
80618<...>-27853 ( 24827) [002] d..5 24574.290823: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=118 target_cpu=002
80619<...>-27853 ( 24827) [002] d..2 24574.290837: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=118
80620  Binder:23896_5-25989 (23896) [002] .... 24574.290845: binder_transaction_received: transaction=1670700
80621  Binder:23896_5-25989 (23896) [002] d.s2 24574.290926: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
80622  Binder:23896_5-25989 (23896) [002] d.s2 24574.290943: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
80623          <idle>-0     (-----) [007] dnh2 24574.290951: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
80624  Binder:23896_5-25989 (23896) [002] d.s2 24574.290955: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
80625          <idle>-0     (-----) [007] .n.1 24574.290955: cpu_idle: state=4294967295 cpu_id=7
80626          <idle>-0     (-----) [007] d..2 24574.290964: 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
80627          <idle>-0     (-----) [006] dnh2 24574.290968: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
80628          <idle>-0     (-----) [006] .n.1 24574.290973: cpu_idle: state=4294967295 cpu_id=6
80629  HwBinder:598_3-633   (  598) [003] ...1 24574.290979: tracing_mark_write: E|598
80630          <idle>-0     (-----) [006] d..2 24574.290983: 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
80631  Binder:23896_5-25989 (23896) [002] d.s3 24574.290992: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
80632     kworker/7:0-12892 (12892) [007] d..2 24574.290993: 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
80633          <idle>-0     (-----) [007] d..1 24574.291000: cpu_idle: state=0 cpu_id=7
80634     kworker/6:0-21469 (21469) [006] d..2 24574.291006: 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
80635          <idle>-0     (-----) [006] d..1 24574.291013: cpu_idle: state=0 cpu_id=6
80636  Binder:23896_5-25989 (23896) [002] .... 24574.291099: binder_transaction: transaction=1670701 dest_node=0 dest_proc=24827 dest_thread=27853 reply=1 flags=0x0 code=0x0
80637  Binder:23896_5-25989 (23896) [002] d..2 24574.291105: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=002
80638  HwBinder:598_3-633   (  598) [003] ...1 24574.291111: tracing_mark_write: B|598|HWDeviceDRM::Commit::
80639  HwBinder:598_3-633   (  598) [003] ...1 24574.291120: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
80640  Binder:23896_5-25989 (23896) [002] d..3 24574.291128: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=001
80641  Binder:23896_5-25989 (23896) [002] .... 24574.291132: binder_set_priority: proc=23896 thread=25989 old=118 => new=120 desired=120
80642          <idle>-0     (-----) [001] .n.1 24574.291135: cpu_idle: state=4294967295 cpu_id=1
80643          <idle>-0     (-----) [001] d..2 24574.291146: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
80644<...>-27853 ( 24827) [001] .... 24574.291155: binder_transaction_received: transaction=1670701
80645  Binder:23896_5-25989 (23896) [002] d..2 24574.291182: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
80646<...>-27853 ( 24827) [001] d..2 24574.291243: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
80647  Binder:23896_4-24423 (23896) [001] d..2 24574.291322: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
80648          <idle>-0     (-----) [001] d..1 24574.291340: cpu_idle: state=0 cpu_id=1
80649  kworker/u16:15-18488 (18488) [002] d..2 24574.291466: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
80650          <idle>-0     (-----) [002] d..1 24574.291479: cpu_idle: state=0 cpu_id=2
80651  HwBinder:598_3-633   (  598) [003] d.s1 24574.291487: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
80652  HwBinder:598_3-633   (  598) [003] d.s2 24574.291503: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
80653  HwBinder:598_3-633   (  598) [003] d..2 24574.291566: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
80654  HwBinder:598_3-633   (  598) [003] d..3 24574.291588: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
80655          <idle>-0     (-----) [002] .n.1 24574.291594: cpu_idle: state=4294967295 cpu_id=2
80656          <idle>-0     (-----) [002] d..2 24574.291602: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
80657  HwBinder:598_3-633   (  598) [003] ...1 24574.291681: tracing_mark_write: E|598
80658  HwBinder:598_3-633   (  598) [003] ...1 24574.291686: tracing_mark_write: E|598
80659  HwBinder:598_3-633   (  598) [003] ...1 24574.291734: tracing_mark_write: E|598
80660  HwBinder:598_3-633   (  598) [003] ...1 24574.291777: tracing_mark_write: E|598
80661  HwBinder:598_3-633   (  598) [003] .... 24574.291792: binder_transaction: transaction=1670702 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
80662  HwBinder:598_3-633   (  598) [003] d..2 24574.291813: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
80663  HwBinder:598_3-633   (  598) [003] d..3 24574.291836: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
80664  HwBinder:598_3-633   (  598) [003] .... 24574.291840: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
80665          <idle>-0     (-----) [001] .n.1 24574.291842: cpu_idle: state=4294967295 cpu_id=1
80666          <idle>-0     (-----) [001] d..2 24574.291850: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
80667  surfaceflinger-23896 (23896) [001] .... 24574.291859: binder_transaction_received: transaction=1670702
80668  HwBinder:598_3-633   (  598) [003] d..2 24574.291916: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
80669     ksoftirqd/3-34    (   34) [003] d.s2 24574.291932: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
80670     ksoftirqd/3-34    (   34) [003] d.s3 24574.291948: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
80671     ksoftirqd/3-34    (   34) [003] d.s3 24574.291953: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
80672     ksoftirqd/3-34    (   34) [003] d..2 24574.291965: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
80673<...>-24151 ( 24151) [003] d..3 24574.291993: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=001
80674          <idle>-0     (-----) [006] dnh2 24574.292059: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
80675<...>-24151 ( 24151) [003] d.h3 24574.292061: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
80676          <idle>-0     (-----) [006] .n.1 24574.292062: cpu_idle: state=4294967295 cpu_id=6
80677          <idle>-0     (-----) [006] d..2 24574.292069: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
80678    RenderThread-25194 (24827) [000] .... 24574.292075: binder_transaction: transaction=1670703 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
80679          <idle>-0     (-----) [004] dnh2 24574.292080: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
80680          <idle>-0     (-----) [004] .n.1 24574.292083: cpu_idle: state=4294967295 cpu_id=4
80681    RenderThread-25194 (24827) [000] ...2 24574.292089: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
80682          <idle>-0     (-----) [004] d..2 24574.292089: 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
80683    RenderThread-25194 (24827) [000] d..4 24574.292093: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
80684    RenderThread-24437 (24151) [006] d..2 24574.292097: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
80685         sugov:4-560   (  560) [004] d..2 24574.292101: 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
80686          <idle>-0     (-----) [006] d..1 24574.292103: cpu_idle: state=0 cpu_id=6
80687          <idle>-0     (-----) [004] d..1 24574.292107: cpu_idle: state=0 cpu_id=4
80688    RenderThread-25194 (24827) [000] d..5 24574.292118: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
80689    RenderThread-25194 (24827) [000] d..2 24574.292132: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
80690  Binder:23896_4-24423 (23896) [000] .... 24574.292140: binder_transaction_received: transaction=1670703
80691 crtc_commit:111-253   (  253) [002] d..2 24574.292227: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
80692  Binder:23896_4-24423 (23896) [000] .... 24574.292255: binder_transaction: transaction=1670704 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
80693<...>-24151 ( 24151) [003] d..3 24574.292261: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
80694  Binder:23896_4-24423 (23896) [000] d..2 24574.292263: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
80695  Binder:23896_4-24423 (23896) [000] d..3 24574.292278: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
80696  Binder:23896_4-24423 (23896) [000] .... 24574.292282: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
80697          <idle>-0     (-----) [006] dnh2 24574.292288: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
80698          <idle>-0     (-----) [006] .n.1 24574.292292: cpu_idle: state=4294967295 cpu_id=6
80699  Binder:23896_4-24423 (23896) [000] d..2 24574.292294: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
80700          <idle>-0     (-----) [006] d..2 24574.292298: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
80701    RenderThread-25194 (24827) [000] .... 24574.292301: binder_transaction_received: transaction=1670704
80702  kworker/u16:15-18488 (18488) [002] d..2 24574.292308: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80703          <idle>-0     (-----) [002] d..1 24574.292320: cpu_idle: state=0 cpu_id=2
80704  surfaceflinger-23896 (23896) [001] d..2 24574.292321: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
80705<...>-24151 ( 24151) [003] d..2 24574.292321: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80706          <idle>-0     (-----) [001] d..1 24574.292341: cpu_idle: state=0 cpu_id=1
80707          <idle>-0     (-----) [003] d..1 24574.292343: cpu_idle: state=0 cpu_id=3
80708    RenderThread-24437 (24151) [006] d..1 24574.292384: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
80709    RenderThread-25194 (24827) [000] d..2 24574.292395: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
80710          <idle>-0     (-----) [001] dnh2 24574.292422: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
80711          <idle>-0     (-----) [001] .n.1 24574.292428: cpu_idle: state=4294967295 cpu_id=1
80712          <idle>-0     (-----) [001] d..2 24574.292436: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
80713  Binder:23896_4-24423 (23896) [000] d..2 24574.292451: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80714    RenderThread-24437 (24151) [006] .... 24574.292461: binder_transaction: transaction=1670705 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
80715    RenderThread-24437 (24151) [006] d..4 24574.292469: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
80716          <idle>-0     (-----) [000] d..1 24574.292471: cpu_idle: state=0 cpu_id=0
80717    RenderThread-24437 (24151) [006] dn.5 24574.292490: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=006
80718    RenderThread-24437 (24151) [006] d..2 24574.292527: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
80719  Binder:23896_4-24423 (23896) [006] .... 24574.292534: binder_transaction_received: transaction=1670705
80720<...>-24151 ( 24151) [001] d..2 24574.292543: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
80721          <idle>-0     (-----) [001] d..1 24574.292558: cpu_idle: state=0 cpu_id=1
80722  Binder:23896_4-24423 (23896) [006] .... 24574.292590: binder_transaction: transaction=1670706 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
80723  Binder:23896_4-24423 (23896) [006] d..2 24574.292624: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
80724    RenderThread-24437 (24151) [006] .... 24574.292629: binder_transaction_received: transaction=1670706
80725          <idle>-0     (-----) [000] d.h3 24574.293645: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
80726          <idle>-0     (-----) [000] d.h4 24574.293665: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
80727          <idle>-0     (-----) [003] .n.1 24574.293672: cpu_idle: state=4294967295 cpu_id=3
80728          <idle>-0     (-----) [000] ...1 24574.293678: cpu_idle: state=4294967295 cpu_id=0
80729          <idle>-0     (-----) [003] d..2 24574.293681: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
80730          <idle>-0     (-----) [000] d..1 24574.293682: cpu_idle: state=0 cpu_id=0
80731 kgsl_worker_thr-246   (  246) [003] d..2 24574.293736: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
80732 kgsl_worker_thr-246   (  246) [003] d..3 24574.293771: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
80733 kgsl_worker_thr-246   (  246) [003] d..2 24574.293795: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
80734          <idle>-0     (-----) [001] ...1 24574.293944: cpu_idle: state=4294967295 cpu_id=1
80735          <idle>-0     (-----) [001] d..1 24574.293947: cpu_idle: state=0 cpu_id=1
80736          <idle>-0     (-----) [000] ...1 24574.294027: cpu_idle: state=4294967295 cpu_id=0
80737          <idle>-0     (-----) [000] d..1 24574.294030: cpu_idle: state=0 cpu_id=0
80738    RenderThread-24437 (24151) [006] .... 24574.294116: binder_transaction: transaction=1670707 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
80739    RenderThread-24437 (24151) [006] d..4 24574.294128: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=006
80740    RenderThread-24437 (24151) [006] dn.5 24574.294142: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=006
80741  kworker/u16:15-18488 (18488) [003] d..2 24574.294148: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
80742    RenderThread-24437 (24151) [006] d..2 24574.294151: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
80743  Binder:23896_4-24423 (23896) [006] .... 24574.294158: binder_transaction_received: transaction=1670707
80744          <idle>-0     (-----) [003] d.s4 24574.294188: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
80745          <idle>-0     (-----) [003] d.s5 24574.294197: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
80746          <idle>-0     (-----) [003] dns5 24574.294202: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
80747          <idle>-0     (-----) [003] d..2 24574.294214: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
80748          <idle>-0     (-----) [002] d.s2 24574.294251: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
80749          <idle>-0     (-----) [002] dns3 24574.294268: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
80750          <idle>-0     (-----) [002] dns3 24574.294273: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
80751  kworker/u16:15-18488 (18488) [003] d..2 24574.294275: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80752          <idle>-0     (-----) [002] dns4 24574.294288: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
80753          <idle>-0     (-----) [003] d..2 24574.294294: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
80754          <idle>-0     (-----) [002] .n.1 24574.294310: cpu_idle: state=4294967295 cpu_id=2
80755  Binder:23896_4-24423 (23896) [006] .... 24574.294316: binder_transaction: transaction=1670708 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
80756          <idle>-0     (-----) [002] d..2 24574.294317: 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
80757     rcu_preempt-7     (    7) [002] d..2 24574.294329: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
80758     rcu_preempt-7     (    7) [002] d..3 24574.294341: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
80759  Binder:23896_4-24423 (23896) [006] d..2 24574.294348: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
80760     rcu_preempt-7     (    7) [002] d..2 24574.294350: 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
80761  kworker/u16:15-18488 (18488) [003] d..2 24574.294352: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80762    RenderThread-24437 (24151) [006] .... 24574.294356: binder_transaction_received: transaction=1670708
80763         rcuop/0-10    (   10) [002] d..2 24574.294356: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
80764          <idle>-0     (-----) [003] d..1 24574.294361: cpu_idle: state=0 cpu_id=3
80765         rcuop/0-10    (   10) [002] d..3 24574.294370: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
80766         rcuop/0-10    (   10) [002] d..2 24574.294378: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
80767          <idle>-0     (-----) [000] d.h3 24574.294381: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
80768         rcuop/0-10    (   10) [002] d..3 24574.294386: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
80769         rcuop/0-10    (   10) [002] d..2 24574.294392: 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
80770          <idle>-0     (-----) [000] d.h4 24574.294395: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
80771          <idle>-0     (-----) [003] .n.1 24574.294401: cpu_idle: state=4294967295 cpu_id=3
80772    RenderThread-24437 (24151) [006] d..2 24574.294402: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=001
80773     rcu_preempt-7     (    7) [002] d..2 24574.294402: 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
80774          <idle>-0     (-----) [000] ...1 24574.294403: cpu_idle: state=4294967295 cpu_id=0
80775          <idle>-0     (-----) [000] d..1 24574.294406: cpu_idle: state=0 cpu_id=0
80776          <idle>-0     (-----) [003] d..2 24574.294409: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
80777         rcuop/1-21    (   21) [002] d..2 24574.294424: 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
80778          <idle>-0     (-----) [002] d..1 24574.294435: cpu_idle: state=0 cpu_id=2
80779          <idle>-0     (-----) [002] dnh2 24574.294452: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
80780          <idle>-0     (-----) [002] .n.1 24574.294456: cpu_idle: state=4294967295 cpu_id=2
80781          <idle>-0     (-----) [002] d..2 24574.294464: 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
80782         rcuop/6-61    (   61) [002] d..2 24574.294484: 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
80783    RenderThread-24437 (24151) [006] d..2 24574.294488: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
80784          <idle>-0     (-----) [002] d..1 24574.294490: cpu_idle: state=0 cpu_id=2
80785          <idle>-0     (-----) [006] d..1 24574.294504: cpu_idle: state=0 cpu_id=6
80786 kgsl_worker_thr-246   (  246) [003] d..2 24574.294539: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80787          <idle>-0     (-----) [003] d..1 24574.294552: cpu_idle: state=0 cpu_id=3
80788          <idle>-0     (-----) [003] ...1 24574.296138: cpu_idle: state=4294967295 cpu_id=3
80789          <idle>-0     (-----) [003] d..1 24574.296140: cpu_idle: state=0 cpu_id=3
80790          <idle>-0     (-----) [002] d.H3 24574.300976: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
80791          <idle>-0     (-----) [002] d.H3 24574.300992: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
80792          <idle>-0     (-----) [004] dnh2 24574.300999: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
80793          <idle>-0     (-----) [004] .n.1 24574.301002: cpu_idle: state=4294967295 cpu_id=4
80794          <idle>-0     (-----) [002] d.H4 24574.301005: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
80795          <idle>-0     (-----) [004] d..2 24574.301008: 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
80796          <idle>-0     (-----) [001] .n.1 24574.301010: cpu_idle: state=4294967295 cpu_id=1
80797          <idle>-0     (-----) [002] d.s2 24574.301012: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
80798          <idle>-0     (-----) [001] d..2 24574.301021: 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
80799         sugov:4-560   (  560) [004] d..2 24574.301023: 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
80800          <idle>-0     (-----) [002] dns3 24574.301027: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
80801          <idle>-0     (-----) [004] d..1 24574.301029: cpu_idle: state=0 cpu_id=4
80802          <idle>-0     (-----) [002] dns3 24574.301030: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
80803         sugov:0-559   (  559) [001] .... 24574.301057: clk_set_rate: pwrcl_clk 979200000
80804          <idle>-0     (-----) [002] dns4 24574.301057: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
80805          <idle>-0     (-----) [002] .n.1 24574.301071: cpu_idle: state=4294967295 cpu_id=2
80806          <idle>-0     (-----) [002] d..2 24574.301082: 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
80807     rcu_preempt-7     (    7) [002] d..2 24574.301112: 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
80808          <idle>-0     (-----) [002] d..1 24574.301121: cpu_idle: state=0 cpu_id=2
80809         sugov:0-559   (  559) [001] .... 24574.301146: clk_set_rate: cpu3_pwrcl_clk 1766400000
80810         sugov:0-559   (  559) [001] .... 24574.301155: clk_set_rate: cpu2_pwrcl_clk 1766400000
80811         sugov:0-559   (  559) [001] .... 24574.301162: clk_set_rate: cpu1_pwrcl_clk 1766400000
80812         sugov:0-559   (  559) [001] .... 24574.301170: clk_set_rate: cpu0_pwrcl_clk 979200000
80813          <idle>-0     (-----) [003] ...1 24574.301181: cpu_idle: state=4294967295 cpu_id=3
80814          <idle>-0     (-----) [003] d..1 24574.301190: cpu_idle: state=0 cpu_id=3
80815          <idle>-0     (-----) [000] d.h5 24574.301293: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
80816          <idle>-0     (-----) [000] dnh6 24574.301313: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
80817          <idle>-0     (-----) [000] dnh5 24574.301320: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
80818          <idle>-0     (-----) [000] dnh6 24574.301334: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
80819         sugov:0-559   (  559) [001] .... 24574.301334: cpu_frequency: state=979200 cpu_id=0
80820          <idle>-0     (-----) [002] .n.1 24574.301341: cpu_idle: state=4294967295 cpu_id=2
80821          <idle>-0     (-----) [002] d..2 24574.301353: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
80822          <idle>-0     (-----) [000] dnh2 24574.301355: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=000
80823          <idle>-0     (-----) [000] dnh3 24574.301388: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=003
80824          <idle>-0     (-----) [003] .n.1 24574.301394: cpu_idle: state=4294967295 cpu_id=3
80825          <idle>-0     (-----) [000] .n.1 24574.301397: cpu_idle: state=4294967295 cpu_id=0
80826          <idle>-0     (-----) [003] d..2 24574.301412: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
80827          <idle>-0     (-----) [000] d..2 24574.301413: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
80828  crtc_event:111-254   (  254) [000] d..2 24574.301434: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
80829 crtc_commit:111-253   (  253) [002] d..2 24574.301435: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
80830          <idle>-0     (-----) [002] d..1 24574.301446: cpu_idle: state=0 cpu_id=2
80831  crtc_event:111-254   (  254) [000] d..3 24574.301452: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
80832          <idle>-0     (-----) [002] .n.1 24574.301457: cpu_idle: state=4294967295 cpu_id=2
80833          <idle>-0     (-----) [002] d..2 24574.301467: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
80834  crtc_event:111-254   (  254) [000] d..2 24574.301480: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80835          <idle>-0     (-----) [000] d..1 24574.301494: cpu_idle: state=0 cpu_id=0
80836         sugov:0-559   (  559) [001] d..2 24574.301506: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
80837           <...>-13147 (-----) [003] d.s2 24574.301545: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
80838 crtc_commit:111-253   (  253) [002] d..2 24574.301562: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
80839           <...>-13147 (-----) [003] d.s3 24574.301586: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
80840          <idle>-0     (-----) [002] d..2 24574.301606: 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
80841         sugov:0-559   (  559) [002] .... 24574.301624: cpu_frequency: state=979200 cpu_id=1
80842         sugov:0-559   (  559) [002] .... 24574.301634: cpu_frequency: state=979200 cpu_id=2
80843         sugov:0-559   (  559) [002] .... 24574.301637: cpu_frequency: state=979200 cpu_id=3
80844  kworker/u16:15-18488 (18488) [001] .... 24574.301639: clk_set_rate: l3_cluster0_vote_clk 480000000
80845  kworker/u16:15-18488 (18488) [001] .... 24574.301646: clk_set_rate: l3_clk 480000000
80846         sugov:0-559   (  559) [002] d..2 24574.301662: 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
80847          <idle>-0     (-----) [002] d..1 24574.301672: cpu_idle: state=0 cpu_id=2
80848  kworker/u16:15-18488 (18488) [001] d..2 24574.301767: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
80849          <idle>-0     (-----) [001] d..1 24574.301782: cpu_idle: state=0 cpu_id=1
80850           <...>-13147 (-----) [003] d..2 24574.301892: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
80851           <...>-13147 (-----) [003] d..3 24574.301926: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
80852           <...>-13147 (-----) [003] d..2 24574.302046: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
80853     logd.writer-563   (  555) [003] d..2 24574.302214: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80854          <idle>-0     (-----) [003] d..1 24574.302233: cpu_idle: state=0 cpu_id=3
80855          <idle>-0     (-----) [000] ...1 24574.303036: cpu_idle: state=4294967295 cpu_id=0
80856          <idle>-0     (-----) [000] d..1 24574.303042: cpu_idle: state=0 cpu_id=0
80857          <idle>-0     (-----) [000] d.h5 24574.303587: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
80858          <idle>-0     (-----) [000] d.h6 24574.303603: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
80859          <idle>-0     (-----) [002] .n.1 24574.303609: cpu_idle: state=4294967295 cpu_id=2
80860          <idle>-0     (-----) [000] ...1 24574.303615: cpu_idle: state=4294967295 cpu_id=0
80861          <idle>-0     (-----) [002] d..2 24574.303616: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
80862          <idle>-0     (-----) [000] d..1 24574.303621: cpu_idle: state=0 cpu_id=0
80863 crtc_commit:111-253   (  253) [002] d..2 24574.303699: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80864          <idle>-0     (-----) [002] d..1 24574.303708: cpu_idle: state=0 cpu_id=2
80865          <idle>-0     (-----) [000] d.h5 24574.303898: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
80866          <idle>-0     (-----) [000] dnh6 24574.303908: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
80867          <idle>-0     (-----) [000] .n.1 24574.303924: cpu_idle: state=4294967295 cpu_id=0
80868          <idle>-0     (-----) [000] d..2 24574.303934: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
80869  crtc_event:111-254   (  254) [000] d..2 24574.303959: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80870          <idle>-0     (-----) [000] d..1 24574.303969: cpu_idle: state=0 cpu_id=0
80871          <idle>-0     (-----) [002] d.s3 24574.304244: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
80872          <idle>-0     (-----) [002] d.s4 24574.304262: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
80873          <idle>-0     (-----) [000] .n.1 24574.304268: cpu_idle: state=4294967295 cpu_id=0
80874          <idle>-0     (-----) [002] ...1 24574.304275: cpu_idle: state=4294967295 cpu_id=2
80875          <idle>-0     (-----) [000] d..2 24574.304278: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
80876          <idle>-0     (-----) [002] d..1 24574.304280: cpu_idle: state=0 cpu_id=2
80877  crtc_event:111-254   (  254) [000] d..2 24574.304307: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80878          <idle>-0     (-----) [000] d..1 24574.304316: cpu_idle: state=0 cpu_id=0
80879          <idle>-0     (-----) [002] d.h2 24574.304629: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
80880          <idle>-0     (-----) [002] dnh3 24574.304643: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
80881          <idle>-0     (-----) [002] .n.1 24574.304651: cpu_idle: state=4294967295 cpu_id=2
80882          <idle>-0     (-----) [002] d..2 24574.304658: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
80883        DispSync-23904 (23896) [002] d..1 24574.304685: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
80884        DispSync-23904 (23896) [002] d..2 24574.304701: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
80885          <idle>-0     (-----) [003] .n.1 24574.304708: cpu_idle: state=4294967295 cpu_id=3
80886          <idle>-0     (-----) [003] d..2 24574.304720: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
80887        DispSync-23904 (23896) [002] d..2 24574.304737: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80888          <idle>-0     (-----) [002] d..1 24574.304745: cpu_idle: state=0 cpu_id=2
80889   sfEventThread-23906 (23896) [003] d..3 24574.304773: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
80890   sfEventThread-23906 (23896) [003] d..4 24574.304795: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
80891          <idle>-0     (-----) [001] .n.1 24574.304800: cpu_idle: state=4294967295 cpu_id=1
80892          <idle>-0     (-----) [001] d..2 24574.304810: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
80893   sfEventThread-23906 (23896) [003] d..2 24574.304835: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80894          <idle>-0     (-----) [003] d..1 24574.304849: cpu_idle: state=0 cpu_id=3
80895  surfaceflinger-23896 (23896) [001] d.h2 24574.305138: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
80896  surfaceflinger-23896 (23896) [001] d.h3 24574.305163: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
80897          <idle>-0     (-----) [002] d.h2 24574.305638: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
80898  surfaceflinger-23896 (23896) [001] d..1 24574.305646: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
80899          <idle>-0     (-----) [002] dnh3 24574.305649: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
80900          <idle>-0     (-----) [002] .n.1 24574.305656: cpu_idle: state=4294967295 cpu_id=2
80901          <idle>-0     (-----) [002] d..2 24574.305662: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
80902  surfaceflinger-23896 (23896) [001] d..2 24574.305667: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
80903          <idle>-0     (-----) [003] .n.1 24574.305672: cpu_idle: state=4294967295 cpu_id=3
80904        DispSync-23904 (23896) [002] d..1 24574.305673: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
80905          <idle>-0     (-----) [003] d..2 24574.305682: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
80906        DispSync-23904 (23896) [002] d..2 24574.305688: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
80907          <idle>-0     (-----) [000] .n.1 24574.305693: cpu_idle: state=4294967295 cpu_id=0
80908          <idle>-0     (-----) [000] d..2 24574.305702: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
80909        DispSync-23904 (23896) [002] d..2 24574.305721: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80910   sfEventThread-23906 (23896) [003] d..2 24574.305723: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80911          <idle>-0     (-----) [002] d..1 24574.305729: cpu_idle: state=0 cpu_id=2
80912          <idle>-0     (-----) [003] d..1 24574.305733: cpu_idle: state=0 cpu_id=3
80913  appEventThread-23905 (23896) [000] d..3 24574.305760: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
80914  appEventThread-23905 (23896) [000] d..4 24574.305790: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
80915          <idle>-0     (-----) [002] .n.1 24574.305795: cpu_idle: state=4294967295 cpu_id=2
80916          <idle>-0     (-----) [002] d..2 24574.305805: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
80917  appEventThread-23905 (23896) [000] d..3 24574.305805: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
80918  appEventThread-23905 (23896) [000] d..4 24574.305828: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
80919          <idle>-0     (-----) [003] .n.1 24574.305833: cpu_idle: state=4294967295 cpu_id=3
80920          <idle>-0     (-----) [003] d..2 24574.305845: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
80921  appEventThread-23905 (23896) [000] d..2 24574.305866: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80922          <idle>-0     (-----) [000] d..1 24574.305879: cpu_idle: state=0 cpu_id=0
80923<...>-24151 ( 24151) [003] .... 24574.306097: binder_transaction: transaction=1670709 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
80924<...>-24151 ( 24151) [003] d..4 24574.306109: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=006
80925<...>-24151 ( 24151) [003] d..5 24574.306145: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
80926          <idle>-0     (-----) [000] .n.1 24574.306151: cpu_idle: state=4294967295 cpu_id=0
80927<...>-24151 ( 24151) [003] d.h5 24574.306193: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
80928          <idle>-0     (-----) [000] d..2 24574.306194: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
80929<...>-24151 ( 24151) [003] d.h5 24574.306206: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
80930          <idle>-0     (-----) [004] dnh2 24574.306212: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
80931          <idle>-0     (-----) [004] .n.1 24574.306215: cpu_idle: state=4294967295 cpu_id=4
80932          <idle>-0     (-----) [004] d..2 24574.306220: 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
80933<...>-24151 ( 24151) [003] d.h6 24574.306226: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
80934         sugov:4-560   (  560) [004] d..2 24574.306232: 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
80935 s.nexuslauncher-24827 (24827) [002] .... 24574.306236: binder_transaction: transaction=1670710 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
80936          <idle>-0     (-----) [004] d..1 24574.306238: cpu_idle: state=0 cpu_id=4
80937  Binder:23896_4-24423 (23896) [000] d..2 24574.306239: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
80938 s.nexuslauncher-24827 (24827) [002] d..4 24574.306246: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
80939         sugov:0-559   (  559) [000] .... 24574.306262: clk_set_rate: pwrcl_clk 1056000000
80940         sugov:0-559   (  559) [000] .... 24574.306271: clk_set_rate: cpu3_pwrcl_clk 979200000
80941<...>-24151 ( 24151) [003] d..3 24574.306277: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
80942         sugov:0-559   (  559) [000] .... 24574.306280: clk_set_rate: cpu2_pwrcl_clk 979200000
80943         sugov:0-559   (  559) [000] .... 24574.306287: clk_set_rate: cpu1_pwrcl_clk 979200000
80944         sugov:0-559   (  559) [000] .... 24574.306295: clk_set_rate: cpu0_pwrcl_clk 1056000000
80945         sugov:0-559   (  559) [000] .... 24574.306304: cpu_frequency: state=1056000 cpu_id=0
80946         sugov:0-559   (  559) [000] .... 24574.306318: cpu_frequency: state=1056000 cpu_id=1
80947         sugov:0-559   (  559) [000] .... 24574.306322: cpu_frequency: state=1056000 cpu_id=2
80948         sugov:0-559   (  559) [000] .... 24574.306325: cpu_frequency: state=1056000 cpu_id=3
80949          <idle>-0     (-----) [005] dnh2 24574.306326: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
80950          <idle>-0     (-----) [006] dnh2 24574.306329: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
80951          <idle>-0     (-----) [005] .n.1 24574.306332: cpu_idle: state=4294967295 cpu_id=5
80952          <idle>-0     (-----) [006] .n.1 24574.306334: cpu_idle: state=4294967295 cpu_id=6
80953          <idle>-0     (-----) [005] d..2 24574.306340: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
80954         sugov:0-559   (  559) [000] d..2 24574.306341: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
80955  Binder:23896_5-25989 (23896) [005] .... 24574.306344: binder_transaction_received: transaction=1670710
80956          <idle>-0     (-----) [006] d..2 24574.306344: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
80957  Binder:23896_4-24423 (23896) [000] .... 24574.306346: binder_transaction_received: transaction=1670709
80958 s.nexuslauncher-24827 (24827) [002] d..3 24574.306358: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
80959  Binder:23896_5-25989 (23896) [005] d..1 24574.306361: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
80960    RenderThread-24437 (24151) [006] d..2 24574.306370: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
80961          <idle>-0     (-----) [006] d..1 24574.306377: cpu_idle: state=0 cpu_id=6
80962  Binder:23896_4-24423 (23896) [000] dnh2 24574.306388: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
80963  Binder:23896_5-25989 (23896) [005] d..1 24574.306392: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
80964          <idle>-0     (-----) [006] dnh2 24574.306416: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=006
80965  Binder:23896_4-24423 (23896) [000] d..2 24574.306420: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
80966          <idle>-0     (-----) [006] .n.1 24574.306420: cpu_idle: state=4294967295 cpu_id=6
80967  Binder:23896_5-25989 (23896) [005] d..2 24574.306423: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
80968          <idle>-0     (-----) [006] d..2 24574.306427: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
80969  Binder:23896_5-25989 (23896) [005] d..2 24574.306446: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
80970  appEventThread-23905 (23896) [000] d..2 24574.306450: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
80971          <idle>-0     (-----) [005] d..1 24574.306454: cpu_idle: state=0 cpu_id=5
80972  Binder:23896_4-24423 (23896) [000] d..1 24574.306459: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
80973    RenderThread-25194 (24827) [006] d..2 24574.306460: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
80974          <idle>-0     (-----) [006] d..1 24574.306467: cpu_idle: state=0 cpu_id=6
80975  Binder:23896_4-24423 (23896) [000] dn.2 24574.306469: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
80976  Binder:23896_4-24423 (23896) [000] d..2 24574.306476: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
80977  appEventThread-23905 (23896) [000] d..2 24574.306488: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
80978  Binder:23896_4-24423 (23896) [000] d..1 24574.306492: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
80979  Binder:23896_4-24423 (23896) [000] dn.2 24574.306499: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
80980  Binder:23896_4-24423 (23896) [000] d..2 24574.306505: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
80981  appEventThread-23905 (23896) [000] d..2 24574.306526: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
80982  Binder:23896_4-24423 (23896) [000] d..2 24574.306567: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80983          <idle>-0     (-----) [000] d..1 24574.306583: cpu_idle: state=0 cpu_id=0
80984  surfaceflinger-23896 (23896) [001] ...1 24574.306679: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
80985  surfaceflinger-23896 (23896) [001] ...1 24574.306686: tracing_mark_write: E|23896
80986<...>-24151 ( 24151) [003] d..3 24574.306721: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
80987          <idle>-0     (-----) [006] dnh2 24574.306742: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
80988  surfaceflinger-23896 (23896) [001] .... 24574.306744: binder_transaction: transaction=1670711 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
80989          <idle>-0     (-----) [006] .n.1 24574.306746: cpu_idle: state=4294967295 cpu_id=6
80990          <idle>-0     (-----) [006] d..2 24574.306752: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
80991<...>-24151 ( 24151) [003] d..2 24574.306768: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80992  surfaceflinger-23896 (23896) [001] ...2 24574.306772: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
80993  surfaceflinger-23896 (23896) [001] d..4 24574.306782: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
80994          <idle>-0     (-----) [003] d..1 24574.306786: cpu_idle: state=0 cpu_id=3
80995 s.nexuslauncher-24827 (24827) [002] d..3 24574.306792: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=006
80996  surfaceflinger-23896 (23896) [001] d..5 24574.306803: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
80997          <idle>-0     (-----) [003] .n.1 24574.306809: cpu_idle: state=4294967295 cpu_id=3
80998          <idle>-0     (-----) [003] d..2 24574.306819: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
80999  surfaceflinger-23896 (23896) [001] d..2 24574.306823: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
81000 s.nexuslauncher-24827 (24827) [002] d..4 24574.306827: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
81001    RenderThread-24437 (24151) [006] d..1 24574.306830: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
81002  HwBinder:598_3-633   (  598) [003] .... 24574.306831: binder_transaction_received: transaction=1670711
81003          <idle>-0     (-----) [000] .n.1 24574.306833: cpu_idle: state=4294967295 cpu_id=0
81004  kworker/u16:15-18488 (18488) [001] d..1 24574.306858: clk_disable: gcc_ufs_phy_phy_aux_hw_ctl_clk
81005 s.nexuslauncher-24827 (24827) [002] d.h3 24574.306873: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
81006          <idle>-0     (-----) [000] d..2 24574.306873: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
81007  kworker/u16:15-18488 (18488) [001] d..1 24574.306878: clk_disable: gcc_ufs_phy_phy_aux_clk
81008  HwBinder:598_3-633   (  598) [003] ...1 24574.306881: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
81009    RenderThread-24437 (24151) [006] d..2 24574.306884: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
81010 s.nexuslauncher-24827 (24827) [002] d.h3 24574.306886: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
81011  kworker/u16:15-18488 (18488) [001] d..1 24574.306889: clk_disable: gcc_ufs_phy_phy_aux_clk_src
81012          <idle>-0     (-----) [007] .n.1 24574.306890: cpu_idle: state=4294967295 cpu_id=7
81013          <idle>-0     (-----) [004] dnh2 24574.306892: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
81014          <idle>-0     (-----) [007] d..2 24574.306897: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
81015  kworker/u16:15-18488 (18488) [001] d..1 24574.306901: clk_disable: gcc_ufs_mem_clkref_clk
81016  kworker/u16:15-18488 (18488) [001] d..1 24574.306915: clk_disable: gcc_ufs_phy_axi_hw_ctl_clk
81017  kworker/u16:15-18488 (18488) [001] d..1 24574.306920: clk_disable: gcc_ufs_phy_axi_clk
81018          <idle>-0     (-----) [004] .n.1 24574.306923: cpu_idle: state=4294967295 cpu_id=4
81019    RenderThread-24437 (24151) [006] d..1 24574.306928: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
81020          <idle>-0     (-----) [004] d..2 24574.306928: 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
81021  kworker/u16:15-18488 (18488) [001] d..1 24574.306929: clk_disable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
81022<...>-24151 ( 24151) [007] d..2 24574.306932: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
81023 s.nexuslauncher-24827 (24827) [002] dnh4 24574.306932: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
81024  kworker/u16:15-18488 (18488) [001] d..1 24574.306934: clk_disable: gcc_aggre_ufs_phy_axi_clk
81025          <idle>-0     (-----) [007] d..1 24574.306939: cpu_idle: state=0 cpu_id=7
81026         sugov:4-560   (  560) [004] d..2 24574.306939: 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
81027  kworker/u16:15-18488 (18488) [001] d..1 24574.306941: clk_disable: gcc_ufs_phy_axi_clk_src
81028 s.nexuslauncher-24827 (24827) [002] d..2 24574.306944: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
81029          <idle>-0     (-----) [004] d..1 24574.306944: cpu_idle: state=0 cpu_id=4
81030    RenderThread-24437 (24151) [006] d..2 24574.306944: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
81031  kworker/u16:15-18488 (18488) [001] d..1 24574.306948: clk_disable: gcc_ufs_phy_ahb_clk
81032          <idle>-0     (-----) [007] .n.1 24574.306949: cpu_idle: state=4294967295 cpu_id=7
81033          <idle>-0     (-----) [007] d..2 24574.306956: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
81034  kworker/u16:15-18488 (18488) [001] d..1 24574.306956: clk_disable: gcc_ufs_phy_unipro_core_hw_ctl_clk
81035         sugov:0-559   (  559) [002] d..2 24574.306957: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
81036  kworker/u16:15-18488 (18488) [001] d..1 24574.306961: clk_disable: gcc_ufs_phy_unipro_core_clk
81037  kworker/u16:15-18488 (18488) [001] d..1 24574.306967: clk_disable: gcc_ufs_phy_unipro_core_clk_src
81038  kworker/u16:15-18488 (18488) [001] d..1 24574.306975: clk_disable: gcc_ufs_phy_ice_core_hw_ctl_clk
81039  kworker/u16:15-18488 (18488) [001] d..1 24574.306979: clk_disable: gcc_ufs_phy_ice_core_clk
81040 s.nexuslauncher-24827 (24827) [002] d..2 24574.306984: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
81041  kworker/u16:15-18488 (18488) [001] d..1 24574.306986: clk_disable: gcc_ufs_phy_ice_core_clk_src
81042    RenderThread-24437 (24151) [006] .... 24574.306986: binder_transaction: transaction=1670712 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
81043    RenderThread-24437 (24151) [006] d..4 24574.306991: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
81044          <idle>-0     (-----) [002] d..1 24574.306996: cpu_idle: state=0 cpu_id=2
81045    RenderThread-24437 (24151) [006] dn.5 24574.307007: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=006
81046    RenderThread-25194 (24827) [000] d..1 24574.307018: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
81047  HwBinder:598_3-633   (  598) [003] ...1 24574.307021: tracing_mark_write: B|598|HWCSession::PresentDisplay::
81048<...>-24151 ( 24151) [007] d..2 24574.307035: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
81049    RenderThread-24437 (24151) [006] d..2 24574.307036: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
81050  Binder:23896_4-24423 (23896) [006] .... 24574.307042: binder_transaction_received: transaction=1670712
81051          <idle>-0     (-----) [007] d..1 24574.307045: cpu_idle: state=0 cpu_id=7
81052    RenderThread-25194 (24827) [000] d..2 24574.307050: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
81053          <idle>-0     (-----) [002] .n.1 24574.307055: cpu_idle: state=4294967295 cpu_id=2
81054          <idle>-0     (-----) [002] d..2 24574.307064: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
81055    RenderThread-25194 (24827) [000] d..1 24574.307072: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=001
81056  Binder:23896_4-24423 (23896) [006] .... 24574.307087: binder_transaction: transaction=1670713 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
81057  HwBinder:598_3-633   (  598) [003] d.s1 24574.307093: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
81058          <idle>-0     (-----) [005] dnh2 24574.307107: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
81059  HwBinder:598_3-633   (  598) [003] d.s2 24574.307110: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
81060          <idle>-0     (-----) [005] .n.1 24574.307111: cpu_idle: state=4294967295 cpu_id=5
81061  Binder:23896_4-24423 (23896) [006] d..2 24574.307119: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
81062    RenderThread-24437 (24151) [006] .... 24574.307125: binder_transaction_received: transaction=1670713
81063          <idle>-0     (-----) [005] d..2 24574.307155: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
81064 s.nexuslauncher-24827 (24827) [002] d..2 24574.307174: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
81065          <idle>-0     (-----) [002] d..1 24574.307186: cpu_idle: state=0 cpu_id=2
81066    RenderThread-25194 (24827) [000] .... 24574.307219: binder_transaction: transaction=1670714 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
81067    RenderThread-25194 (24827) [000] ...2 24574.307229: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
81068    RenderThread-25194 (24827) [000] d..4 24574.307232: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=006
81069    RenderThread-25194 (24827) [000] dn.5 24574.307257: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
81070    RenderThread-25194 (24827) [000] d..2 24574.307298: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
81071  Binder:23896_4-24423 (23896) [000] .... 24574.307305: binder_transaction_received: transaction=1670714
81072  kworker/u16:15-18488 (18488) [001] d..2 24574.307313: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
81073<...>-27853 ( 24827) [005] .... 24574.307329: binder_transaction: transaction=1670715 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
81074          <idle>-0     (-----) [001] d..1 24574.307331: cpu_idle: state=0 cpu_id=1
81075<...>-27853 ( 24827) [005] ...2 24574.307345: binder_set_priority: proc=23896 thread=25989 old=120 => new=118 desired=118
81076<...>-27853 ( 24827) [005] d..4 24574.307348: sched_waking: comm=Binder:23896_5 pid=25989 prio=118 target_cpu=005
81077<...>-27853 ( 24827) [005] d..5 24574.307358: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=118 target_cpu=005
81078  Binder:23896_4-24423 (23896) [000] .... 24574.307367: binder_transaction: transaction=1670716 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
81079<...>-27853 ( 24827) [005] d..2 24574.307369: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=118
81080  Binder:23896_5-25989 (23896) [005] .... 24574.307375: binder_transaction_received: transaction=1670715
81081  Binder:23896_4-24423 (23896) [000] .... 24574.307381: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
81082  Binder:23896_4-24423 (23896) [000] d..2 24574.307432: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
81083    RenderThread-25194 (24827) [000] .... 24574.307441: binder_transaction_received: transaction=1670716
81084  Binder:23896_5-25989 (23896) [005] .... 24574.307477: binder_transaction: transaction=1670717 dest_node=0 dest_proc=24827 dest_thread=27853 reply=1 flags=0x0 code=0x0
81085  Binder:23896_5-25989 (23896) [005] d..2 24574.307481: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
81086  Binder:23896_5-25989 (23896) [005] d..3 24574.307488: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
81087  Binder:23896_5-25989 (23896) [005] .... 24574.307490: binder_set_priority: proc=23896 thread=25989 old=118 => new=120 desired=120
81088  Binder:23896_5-25989 (23896) [005] d..2 24574.307499: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
81089<...>-27853 ( 24827) [005] .... 24574.307503: binder_transaction_received: transaction=1670717
81090<...>-27853 ( 24827) [005] d..2 24574.307548: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
81091          <idle>-0     (-----) [002] d.s2 24574.307582: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
81092          <idle>-0     (-----) [002] dns3 24574.307601: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
81093          <idle>-0     (-----) [002] .n.1 24574.307610: cpu_idle: state=4294967295 cpu_id=2
81094          <idle>-0     (-----) [002] d..2 24574.307619: 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
81095  Binder:23896_5-25989 (23896) [005] d..2 24574.307627: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
81096     rcu_preempt-7     (    7) [002] d..2 24574.307628: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
81097          <idle>-0     (-----) [005] d..1 24574.307641: cpu_idle: state=0 cpu_id=5
81098     rcu_preempt-7     (    7) [002] d..3 24574.307644: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
81099     rcu_preempt-7     (    7) [002] d..2 24574.307658: 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
81100         rcuop/0-10    (   10) [002] d..2 24574.307663: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
81101         rcuop/0-10    (   10) [002] d..3 24574.307676: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
81102         rcuop/0-10    (   10) [002] d..2 24574.307690: 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
81103         rcuop/1-21    (   21) [002] d..2 24574.307714: 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
81104          <idle>-0     (-----) [002] d..1 24574.307726: cpu_idle: state=0 cpu_id=2
81105  HwBinder:598_3-633   (  598) [003] ...1 24574.307823: tracing_mark_write: B|598|HWDeviceDRM::Validate::
81106    RenderThread-25194 (24827) [000] d..2 24574.308175: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
81107    RenderThread-25194 (24827) [000] d..3 24574.308209: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
81108          <idle>-0     (-----) [002] .n.1 24574.308214: cpu_idle: state=4294967295 cpu_id=2
81109          <idle>-0     (-----) [002] d..2 24574.308223: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
81110    RenderThread-24437 (24151) [006] d..2 24574.308266: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
81111          <idle>-0     (-----) [006] d..1 24574.308280: cpu_idle: state=0 cpu_id=6
81112 kgsl_worker_thr-246   (  246) [002] d..2 24574.308291: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
81113          <idle>-0     (-----) [002] d..1 24574.308299: cpu_idle: state=0 cpu_id=2
81114          <idle>-0     (-----) [006] d.h2 24574.308352: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
81115          <idle>-0     (-----) [001] d.h2 24574.308386: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
81116    RenderThread-25194 (24827) [000] .... 24574.308388: binder_transaction: transaction=1670718 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
81117          <idle>-0     (-----) [001] dnh2 24574.308392: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=001
81118    RenderThread-25194 (24827) [000] ...2 24574.308403: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
81119    RenderThread-25194 (24827) [000] d..4 24574.308421: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
81120          <idle>-0     (-----) [001] .n.1 24574.308424: cpu_idle: state=4294967295 cpu_id=1
81121  HwBinder:598_3-633   (  598) [003] ...1 24574.308425: tracing_mark_write: E|598
81122          <idle>-0     (-----) [006] d.h3 24574.308427: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
81123          <idle>-0     (-----) [001] d..2 24574.308437: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
81124          <idle>-0     (-----) [006] d.h4 24574.308439: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
81125          <idle>-0     (-----) [006] d.h3 24574.308441: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
81126          <idle>-0     (-----) [004] .n.1 24574.308444: cpu_idle: state=4294967295 cpu_id=4
81127          <idle>-0     (-----) [004] d..2 24574.308450: 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
81128    RenderThread-25194 (24827) [000] d..5 24574.308450: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
81129          <idle>-0     (-----) [006] ...1 24574.308454: cpu_idle: state=4294967295 cpu_id=6
81130          <idle>-0     (-----) [006] d..1 24574.308460: cpu_idle: state=0 cpu_id=6
81131          <idle>-0     (-----) [002] dnh2 24574.308460: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
81132         sugov:4-560   (  560) [004] d..2 24574.308461: 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
81133          <idle>-0     (-----) [004] d..1 24574.308466: cpu_idle: state=0 cpu_id=4
81134          <idle>-0     (-----) [002] .n.1 24574.308498: cpu_idle: state=4294967295 cpu_id=2
81135          <idle>-0     (-----) [002] d..2 24574.308506: 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
81136    RenderThread-25194 (24827) [000] d..2 24574.308511: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
81137  Binder:23896_5-25989 (23896) [000] .... 24574.308520: binder_transaction_received: transaction=1670718
81138    RenderThread-24437 (24151) [001] d..1 24574.308523: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
81139         sugov:0-559   (  559) [002] d..2 24574.308526: 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
81140          <idle>-0     (-----) [002] d..1 24574.308534: cpu_idle: state=0 cpu_id=2
81141    RenderThread-24437 (24151) [001] d..2 24574.308546: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
81142          <idle>-0     (-----) [002] .n.1 24574.308551: cpu_idle: state=4294967295 cpu_id=2
81143          <idle>-0     (-----) [002] d..2 24574.308559: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
81144 kgsl_worker_thr-246   (  246) [002] d..2 24574.308586: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
81145  HwBinder:598_3-633   (  598) [003] ...1 24574.308593: tracing_mark_write: B|598|HWDeviceDRM::Commit::
81146  HwBinder:598_3-633   (  598) [003] ...1 24574.308604: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
81147 kgsl_worker_thr-246   (  246) [002] d..3 24574.308628: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
81148 kgsl_worker_thr-246   (  246) [002] d..2 24574.308641: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
81149  Binder:23896_5-25989 (23896) [000] .... 24574.308650: binder_transaction: transaction=1670719 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
81150  Binder:23896_5-25989 (23896) [000] d..2 24574.308658: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
81151  Binder:23896_5-25989 (23896) [000] dn.3 24574.308672: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
81152  Binder:23896_5-25989 (23896) [000] d..2 24574.308680: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
81153    RenderThread-25194 (24827) [000] .... 24574.308688: binder_transaction_received: transaction=1670719
81154  kworker/u16:10-23868 (23868) [002] d..2 24574.308689: 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
81155          <idle>-0     (-----) [006] ...1 24574.308698: cpu_idle: state=4294967295 cpu_id=6
81156          <idle>-0     (-----) [002] d..1 24574.308698: cpu_idle: state=0 cpu_id=2
81157          <idle>-0     (-----) [006] d..1 24574.308702: cpu_idle: state=0 cpu_id=6
81158    RenderThread-24437 (24151) [001] .... 24574.308776: binder_transaction: transaction=1670720 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
81159    RenderThread-24437 (24151) [001] d..4 24574.308788: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
81160    RenderThread-24437 (24151) [001] dn.5 24574.308811: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
81161    RenderThread-24437 (24151) [001] d..2 24574.308821: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
81162  Binder:23896_4-24423 (23896) [001] .... 24574.308828: binder_transaction_received: transaction=1670720
81163    RenderThread-25194 (24827) [000] d..2 24574.308832: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
81164  Binder:23896_5-25989 (23896) [000] .... 24574.308838: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
81165  Binder:23896_5-25989 (23896) [000] d..2 24574.308904: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81166          <idle>-0     (-----) [000] d..1 24574.308924: cpu_idle: state=0 cpu_id=0
81167  Binder:23896_4-24423 (23896) [001] .... 24574.308936: binder_transaction: transaction=1670721 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
81168  Binder:23896_4-24423 (23896) [001] d..2 24574.308978: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
81169    RenderThread-24437 (24151) [001] .... 24574.308987: binder_transaction_received: transaction=1670721
81170    RenderThread-24437 (24151) [001] d..2 24574.309077: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
81171          <idle>-0     (-----) [001] d..1 24574.309094: cpu_idle: state=0 cpu_id=1
81172  HwBinder:598_3-633   (  598) [003] d..2 24574.309105: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
81173  HwBinder:598_3-633   (  598) [003] d..3 24574.309128: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
81174          <idle>-0     (-----) [002] .n.1 24574.309133: cpu_idle: state=4294967295 cpu_id=2
81175          <idle>-0     (-----) [002] d..2 24574.309142: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
81176  HwBinder:598_3-633   (  598) [003] ...1 24574.309230: tracing_mark_write: E|598
81177  HwBinder:598_3-633   (  598) [003] ...1 24574.309236: tracing_mark_write: E|598
81178  HwBinder:598_3-633   (  598) [003] ...1 24574.309294: tracing_mark_write: E|598
81179  HwBinder:598_3-633   (  598) [003] ...1 24574.309352: tracing_mark_write: E|598
81180  HwBinder:598_3-633   (  598) [003] .... 24574.309371: binder_transaction: transaction=1670722 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
81181  HwBinder:598_3-633   (  598) [003] d..2 24574.309398: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
81182  HwBinder:598_3-633   (  598) [003] d..3 24574.309416: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
81183  HwBinder:598_3-633   (  598) [003] .... 24574.309420: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
81184          <idle>-0     (-----) [001] .n.1 24574.309422: cpu_idle: state=4294967295 cpu_id=1
81185          <idle>-0     (-----) [001] d..2 24574.309433: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
81186  surfaceflinger-23896 (23896) [001] .... 24574.309442: binder_transaction_received: transaction=1670722
81187  HwBinder:598_3-633   (  598) [003] d..2 24574.309504: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
81188     ksoftirqd/3-34    (   34) [003] d.s2 24574.309528: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
81189     ksoftirqd/3-34    (   34) [003] d.s3 24574.309563: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
81190     ksoftirqd/3-34    (   34) [003] d.s3 24574.309569: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
81191     ksoftirqd/3-34    (   34) [003] d..2 24574.309580: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
81192  kworker/u16:15-18488 (18488) [003] d..2 24574.309620: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
81193          <idle>-0     (-----) [003] d..1 24574.309640: cpu_idle: state=0 cpu_id=3
81194  surfaceflinger-23896 (23896) [001] d..2 24574.309987: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
81195          <idle>-0     (-----) [001] d..1 24574.310004: cpu_idle: state=0 cpu_id=1
81196 crtc_commit:111-253   (  253) [002] d..2 24574.310364: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
81197          <idle>-0     (-----) [002] d..1 24574.310376: cpu_idle: state=0 cpu_id=2
81198          <idle>-0     (-----) [000] d.h3 24574.310458: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
81199          <idle>-0     (-----) [000] d.h4 24574.310476: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
81200          <idle>-0     (-----) [002] .n.1 24574.310481: cpu_idle: state=4294967295 cpu_id=2
81201          <idle>-0     (-----) [002] d..2 24574.310490: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
81202          <idle>-0     (-----) [000] ...1 24574.310502: cpu_idle: state=4294967295 cpu_id=0
81203          <idle>-0     (-----) [000] d..1 24574.310508: cpu_idle: state=0 cpu_id=0
81204 kgsl_worker_thr-246   (  246) [002] d..2 24574.310533: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
81205          <idle>-0     (-----) [002] d..1 24574.310542: cpu_idle: state=0 cpu_id=2
81206          <idle>-0     (-----) [000] d.h3 24574.310610: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
81207          <idle>-0     (-----) [000] d.h4 24574.310624: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
81208          <idle>-0     (-----) [002] .n.1 24574.310630: cpu_idle: state=4294967295 cpu_id=2
81209          <idle>-0     (-----) [000] ...1 24574.310635: cpu_idle: state=4294967295 cpu_id=0
81210          <idle>-0     (-----) [002] d..2 24574.310637: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
81211          <idle>-0     (-----) [000] d..1 24574.310641: cpu_idle: state=0 cpu_id=0
81212 kgsl_worker_thr-246   (  246) [002] d..2 24574.310754: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
81213          <idle>-0     (-----) [002] d..1 24574.310764: cpu_idle: state=0 cpu_id=2
81214          <idle>-0     (-----) [003] d..2 24574.310939: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
81215          <idle>-0     (-----) [003] dn.3 24574.310948: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
81216          <idle>-0     (-----) [003] .n.1 24574.310952: cpu_idle: state=4294967295 cpu_id=3
81217          <idle>-0     (-----) [003] d..2 24574.310963: 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
81218     ksoftirqd/3-34    (   34) [003] d.s2 24574.310972: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
81219     ksoftirqd/3-34    (   34) [003] d.s3 24574.310995: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
81220          <idle>-0     (-----) [000] .n.1 24574.311001: cpu_idle: state=4294967295 cpu_id=0
81221          <idle>-0     (-----) [000] d..2 24574.311015: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
81222     ksoftirqd/3-34    (   34) [003] d..2 24574.311023: 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
81223          <idle>-0     (-----) [003] d..1 24574.311033: cpu_idle: state=0 cpu_id=3
81224  kworker/u16:15-18488 (18488) [000] d..2 24574.311300: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
81225          <idle>-0     (-----) [000] d..1 24574.311316: cpu_idle: state=0 cpu_id=0
81226          <idle>-0     (-----) [003] d.s3 24574.311318: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
81227          <idle>-0     (-----) [003] d.s4 24574.311344: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
81228          <idle>-0     (-----) [003] dns4 24574.311348: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
81229          <idle>-0     (-----) [003] .n.1 24574.311355: cpu_idle: state=4294967295 cpu_id=3
81230          <idle>-0     (-----) [003] d..2 24574.311365: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
81231  kworker/u16:15-18488 (18488) [003] d..2 24574.311398: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
81232          <idle>-0     (-----) [003] d..1 24574.311408: cpu_idle: state=0 cpu_id=3
81233          <idle>-0     (-----) [000] ...1 24574.312890: cpu_idle: state=4294967295 cpu_id=0
81234          <idle>-0     (-----) [000] d..1 24574.312894: cpu_idle: state=0 cpu_id=0
81235          <idle>-0     (-----) [002] d.s2 24574.314241: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
81236          <idle>-0     (-----) [002] dns3 24574.314258: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
81237          <idle>-0     (-----) [002] .n.1 24574.314276: cpu_idle: state=4294967295 cpu_id=2
81238          <idle>-0     (-----) [002] d..2 24574.314287: 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
81239     rcu_preempt-7     (    7) [002] d..2 24574.314300: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
81240     rcu_preempt-7     (    7) [002] d..3 24574.314317: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
81241     rcu_preempt-7     (    7) [002] d..2 24574.314330: 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
81242         rcuop/6-61    (   61) [002] d..2 24574.314360: 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
81243          <idle>-0     (-----) [002] d..1 24574.314371: cpu_idle: state=0 cpu_id=2
81244          <idle>-0     (-----) [000] d.h5 24574.317783: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
81245          <idle>-0     (-----) [000] dnh6 24574.317804: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
81246          <idle>-0     (-----) [000] dnh5 24574.317809: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
81247          <idle>-0     (-----) [000] dnh6 24574.317821: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
81248          <idle>-0     (-----) [002] .n.1 24574.317827: cpu_idle: state=4294967295 cpu_id=2
81249          <idle>-0     (-----) [002] d..2 24574.317837: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
81250          <idle>-0     (-----) [000] dnh3 24574.317902: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
81251          <idle>-0     (-----) [000] .n.1 24574.317919: cpu_idle: state=4294967295 cpu_id=0
81252          <idle>-0     (-----) [004] dnh2 24574.317921: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
81253          <idle>-0     (-----) [004] .n.1 24574.317926: cpu_idle: state=4294967295 cpu_id=4
81254 crtc_commit:111-253   (  253) [002] d..2 24574.317931: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
81255          <idle>-0     (-----) [004] d..2 24574.317931: 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
81256          <idle>-0     (-----) [000] d..2 24574.317932: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
81257          <idle>-0     (-----) [002] d..2 24574.317935: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
81258         sugov:4-560   (  560) [004] d..2 24574.317943: 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
81259          <idle>-0     (-----) [004] d..1 24574.317949: cpu_idle: state=0 cpu_id=4
81260          <idle>-0     (-----) [002] dn.3 24574.317950: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
81261  crtc_event:111-254   (  254) [000] d..2 24574.317951: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
81262          <idle>-0     (-----) [002] d..2 24574.317961: 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
81263     ksoftirqd/2-26    (   26) [002] d.s2 24574.317976: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
81264  crtc_event:111-254   (  254) [000] d..3 24574.317980: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
81265          <idle>-0     (-----) [003] .n.1 24574.317985: cpu_idle: state=4294967295 cpu_id=3
81266     ksoftirqd/2-26    (   26) [002] d.s3 24574.317993: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
81267          <idle>-0     (-----) [003] d..2 24574.318003: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
81268     ksoftirqd/2-26    (   26) [002] d.s2 24574.318003: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
81269  crtc_event:111-254   (  254) [000] d..2 24574.318010: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81270     ksoftirqd/2-26    (   26) [002] d.s3 24574.318019: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
81271          <idle>-0     (-----) [000] d..1 24574.318022: cpu_idle: state=0 cpu_id=0
81272     ksoftirqd/2-26    (   26) [002] d.s2 24574.318025: sched_waking: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
81273     ksoftirqd/2-26    (   26) [002] d.s2 24574.318040: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
81274          <idle>-0     (-----) [005] dnh2 24574.318051: sched_wakeup: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
81275          <idle>-0     (-----) [005] .n.1 24574.318055: cpu_idle: state=4294967295 cpu_id=5
81276          <idle>-0     (-----) [004] dnh2 24574.318060: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
81277     ksoftirqd/2-26    (   26) [002] d..2 24574.318061: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
81278          <idle>-0     (-----) [004] .n.1 24574.318064: cpu_idle: state=4294967295 cpu_id=4
81279          <idle>-0     (-----) [005] d..2 24574.318067: 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
81280          <idle>-0     (-----) [004] d..2 24574.318070: 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
81281     kworker/2:0-12895 (12895) [002] d..2 24574.318076: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
81282     kworker/4:0-24269 (24269) [004] d..2 24574.318094: 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
81283     kworker/5:0-24254 (24254) [005] d..2 24574.318094: 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
81284 crtc_commit:111-253   (  253) [003] d..2 24574.318098: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
81285          <idle>-0     (-----) [004] d..1 24574.318099: cpu_idle: state=0 cpu_id=4
81286          <idle>-0     (-----) [006] dnh2 24574.318099: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
81287          <idle>-0     (-----) [005] d..1 24574.318101: cpu_idle: state=0 cpu_id=5
81288          <idle>-0     (-----) [006] .n.1 24574.318103: cpu_idle: state=4294967295 cpu_id=6
81289     kworker/2:0-12895 (12895) [002] d..2 24574.318112: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
81290          <idle>-0     (-----) [006] d..2 24574.318113: 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
81291          <idle>-0     (-----) [002] d..1 24574.318121: cpu_idle: state=0 cpu_id=2
81292     kworker/3:1-12662 (12662) [003] d..2 24574.318130: 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
81293          <idle>-0     (-----) [003] d..1 24574.318137: cpu_idle: state=0 cpu_id=3
81294     kworker/6:0-21469 (21469) [006] d..2 24574.318139: 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
81295          <idle>-0     (-----) [006] d..1 24574.318146: cpu_idle: state=0 cpu_id=6
81296          <idle>-0     (-----) [000] d.h5 24574.320096: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
81297          <idle>-0     (-----) [000] d.h6 24574.320111: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
81298          <idle>-0     (-----) [003] .n.1 24574.320117: cpu_idle: state=4294967295 cpu_id=3
81299          <idle>-0     (-----) [003] d..2 24574.320125: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
81300          <idle>-0     (-----) [000] ...1 24574.320125: cpu_idle: state=4294967295 cpu_id=0
81301          <idle>-0     (-----) [000] d..1 24574.320130: cpu_idle: state=0 cpu_id=0
81302 crtc_commit:111-253   (  253) [003] d..2 24574.320189: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
81303          <idle>-0     (-----) [003] d..1 24574.320196: cpu_idle: state=0 cpu_id=3
81304          <idle>-0     (-----) [000] d.h5 24574.320405: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
81305          <idle>-0     (-----) [000] dnh6 24574.320413: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
81306          <idle>-0     (-----) [000] .n.1 24574.320428: cpu_idle: state=4294967295 cpu_id=0
81307          <idle>-0     (-----) [000] d..2 24574.320436: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
81308  crtc_event:111-254   (  254) [000] d..2 24574.320458: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81309          <idle>-0     (-----) [000] d..1 24574.320467: cpu_idle: state=0 cpu_id=0
81310          <idle>-0     (-----) [002] d.s2 24574.320905: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
81311          <idle>-0     (-----) [003] d.s3 24574.320908: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
81312          <idle>-0     (-----) [002] dns3 24574.320921: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
81313          <idle>-0     (-----) [003] d.s4 24574.320925: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
81314          <idle>-0     (-----) [002] dns3 24574.320926: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
81315          <idle>-0     (-----) [000] .n.1 24574.320931: cpu_idle: state=4294967295 cpu_id=0
81316          <idle>-0     (-----) [000] d..2 24574.320941: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
81317          <idle>-0     (-----) [003] ...1 24574.320948: cpu_idle: state=4294967295 cpu_id=3
81318          <idle>-0     (-----) [003] d..1 24574.320954: cpu_idle: state=0 cpu_id=3
81319          <idle>-0     (-----) [002] dns4 24574.320962: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
81320  crtc_event:111-254   (  254) [000] d..2 24574.320976: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
81321          <idle>-0     (-----) [002] .n.1 24574.320978: cpu_idle: state=4294967295 cpu_id=2
81322          <idle>-0     (-----) [002] d..2 24574.320986: 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
81323     rcu_preempt-7     (    7) [002] d..2 24574.321019: 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
81324          <idle>-0     (-----) [002] d..1 24574.321046: cpu_idle: state=0 cpu_id=2
81325  kworker/u16:15-18488 (18488) [000] .... 24574.321049: clk_set_rate: l3_cluster0_vote_clk 300000000
81326  kworker/u16:15-18488 (18488) [000] .... 24574.321057: clk_set_rate: l3_clk 300000000
81327          <idle>-0     (-----) [002] d.h2 24574.321099: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
81328          <idle>-0     (-----) [002] dnh3 24574.321116: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
81329          <idle>-0     (-----) [002] .n.1 24574.321124: cpu_idle: state=4294967295 cpu_id=2
81330          <idle>-0     (-----) [002] d..2 24574.321133: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
81331        DispSync-23904 (23896) [002] d..1 24574.321170: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
81332        DispSync-23904 (23896) [002] d..2 24574.321187: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
81333          <idle>-0     (-----) [003] .n.1 24574.321194: cpu_idle: state=4294967295 cpu_id=3
81334          <idle>-0     (-----) [003] d..2 24574.321205: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
81335        DispSync-23904 (23896) [002] d..2 24574.321228: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
81336          <idle>-0     (-----) [002] d..1 24574.321243: cpu_idle: state=0 cpu_id=2
81337  kworker/u16:15-18488 (18488) [000] d..2 24574.321295: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
81338   sfEventThread-23906 (23896) [003] d.s1 24574.321311: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
81339          <idle>-0     (-----) [000] d..1 24574.321312: cpu_idle: state=0 cpu_id=0
81340   sfEventThread-23906 (23896) [003] d.s2 24574.321327: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
81341   sfEventThread-23906 (23896) [003] d..3 24574.321335: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
81342   sfEventThread-23906 (23896) [003] d..4 24574.321354: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
81343          <idle>-0     (-----) [001] .n.1 24574.321362: cpu_idle: state=4294967295 cpu_id=1
81344          <idle>-0     (-----) [001] d..2 24574.321374: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
81345   sfEventThread-23906 (23896) [003] d..2 24574.321383: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
81346     ksoftirqd/3-34    (   34) [003] d.s2 24574.321397: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
81347     ksoftirqd/3-34    (   34) [003] d.s3 24574.321407: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
81348     ksoftirqd/3-34    (   34) [003] d.s3 24574.321416: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
81349          <idle>-0     (-----) [000] .n.1 24574.321422: cpu_idle: state=4294967295 cpu_id=0
81350          <idle>-0     (-----) [000] d..2 24574.321435: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
81351     ksoftirqd/3-34    (   34) [003] d..2 24574.321442: 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
81352          <idle>-0     (-----) [003] d..1 24574.321459: cpu_idle: state=0 cpu_id=3
81353  kworker/u16:15-18488 (18488) [000] d..2 24574.321469: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81354          <idle>-0     (-----) [000] d..1 24574.321479: cpu_idle: state=0 cpu_id=0
81355          <idle>-0     (-----) [002] d.h2 24574.322116: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
81356          <idle>-0     (-----) [002] dnh3 24574.322127: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
81357          <idle>-0     (-----) [002] .n.1 24574.322134: cpu_idle: state=4294967295 cpu_id=2
81358          <idle>-0     (-----) [002] d..2 24574.322143: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
81359        DispSync-23904 (23896) [002] d..1 24574.322157: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
81360        DispSync-23904 (23896) [002] d..2 24574.322173: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
81361          <idle>-0     (-----) [000] .n.1 24574.322178: cpu_idle: state=4294967295 cpu_id=0
81362          <idle>-0     (-----) [000] d..2 24574.322188: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
81363        DispSync-23904 (23896) [002] d..2 24574.322203: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
81364          <idle>-0     (-----) [002] d..1 24574.322214: cpu_idle: state=0 cpu_id=2
81365  surfaceflinger-23896 (23896) [001] d..1 24574.322225: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
81366  surfaceflinger-23896 (23896) [001] d..2 24574.322250: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
81367          <idle>-0     (-----) [003] .n.1 24574.322256: cpu_idle: state=4294967295 cpu_id=3
81368          <idle>-0     (-----) [003] d..2 24574.322267: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
81369  appEventThread-23905 (23896) [000] d..3 24574.322269: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
81370  appEventThread-23905 (23896) [000] d..4 24574.322296: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
81371          <idle>-0     (-----) [002] .n.1 24574.322301: cpu_idle: state=4294967295 cpu_id=2
81372          <idle>-0     (-----) [002] d..2 24574.322313: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
81373  appEventThread-23905 (23896) [000] d..3 24574.322319: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
81374   sfEventThread-23906 (23896) [003] d..2 24574.322321: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
81375          <idle>-0     (-----) [003] d..1 24574.322331: cpu_idle: state=0 cpu_id=3
81376  appEventThread-23905 (23896) [000] d..4 24574.322351: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
81377          <idle>-0     (-----) [003] .n.1 24574.322356: cpu_idle: state=4294967295 cpu_id=3
81378  appEventThread-23905 (23896) [000] d.h3 24574.322401: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
81379          <idle>-0     (-----) [003] d..2 24574.322402: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
81380          <idle>-0     (-----) [004] dnh2 24574.322421: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
81381          <idle>-0     (-----) [004] .n.1 24574.322425: cpu_idle: state=4294967295 cpu_id=4
81382          <idle>-0     (-----) [004] d..2 24574.322431: 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
81383         sugov:4-560   (  560) [004] d..2 24574.322444: 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
81384          <idle>-0     (-----) [004] d..1 24574.322450: cpu_idle: state=0 cpu_id=4
81385  appEventThread-23905 (23896) [000] d..2 24574.322459: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81386          <idle>-0     (-----) [000] d..1 24574.322478: cpu_idle: state=0 cpu_id=0
81387<...>-24151 ( 24151) [003] .... 24574.322746: binder_transaction: transaction=1670723 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
81388 s.nexuslauncher-24827 (24827) [002] .... 24574.322754: binder_transaction: transaction=1670724 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
81389<...>-24151 ( 24151) [003] d..4 24574.322760: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
81390<...>-24151 ( 24151) [003] d..5 24574.322798: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
81391          <idle>-0     (-----) [000] .n.1 24574.322804: cpu_idle: state=4294967295 cpu_id=0
81392 s.nexuslauncher-24827 (24827) [002] d..4 24574.322804: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
81393          <idle>-0     (-----) [000] d..2 24574.322821: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
81394          <idle>-0     (-----) [005] dnh2 24574.322851: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
81395          <idle>-0     (-----) [005] .n.1 24574.322895: cpu_idle: state=4294967295 cpu_id=5
81396 s.nexuslauncher-24827 (24827) [002] d.h5 24574.322898: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
81397          <idle>-0     (-----) [005] d..2 24574.322902: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
81398          <idle>-0     (-----) [004] dnh2 24574.322920: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
81399  Binder:23896_5-25989 (23896) [005] .... 24574.322922: binder_transaction_received: transaction=1670724
81400  Binder:23896_4-24423 (23896) [000] .... 24574.322923: binder_transaction_received: transaction=1670723
81401          <idle>-0     (-----) [004] .n.1 24574.322923: cpu_idle: state=4294967295 cpu_id=4
81402          <idle>-0     (-----) [004] d..2 24574.322929: 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
81403         sugov:4-560   (  560) [004] d..2 24574.322940: 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
81404          <idle>-0     (-----) [004] d..1 24574.322945: cpu_idle: state=0 cpu_id=4
81405  Binder:23896_5-25989 (23896) [005] d..1 24574.322946: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
81406<...>-24151 ( 24151) [003] d..3 24574.322963: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=001
81407 s.nexuslauncher-24827 (24827) [002] d..3 24574.322963: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
81408  Binder:23896_5-25989 (23896) [005] d..1 24574.322968: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
81409          <idle>-0     (-----) [006] dnh2 24574.323002: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=006
81410  Binder:23896_4-24423 (23896) [000] d..2 24574.323004: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81411          <idle>-0     (-----) [006] dnh2 24574.323005: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
81412          <idle>-0     (-----) [006] .n.1 24574.323009: cpu_idle: state=4294967295 cpu_id=6
81413 s.nexuslauncher-24827 (24827) [002] dnh2 24574.323011: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
81414          <idle>-0     (-----) [006] d..2 24574.323015: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
81415          <idle>-0     (-----) [000] d..1 24574.323019: cpu_idle: state=0 cpu_id=0
81416    RenderThread-25194 (24827) [006] d..2 24574.323065: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
81417 s.nexuslauncher-24827 (24827) [002] d..2 24574.323071: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
81418          <idle>-0     (-----) [000] dnh2 24574.323081: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
81419          <idle>-0     (-----) [000] .n.1 24574.323089: cpu_idle: state=4294967295 cpu_id=0
81420  Binder:23896_5-25989 (23896) [005] d..2 24574.323093: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
81421    RenderThread-24437 (24151) [006] d..2 24574.323096: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
81422          <idle>-0     (-----) [000] d..2 24574.323098: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
81423          <idle>-0     (-----) [005] d..1 24574.323102: cpu_idle: state=0 cpu_id=5
81424          <idle>-0     (-----) [006] d..1 24574.323104: cpu_idle: state=0 cpu_id=6
81425  appEventThread-23905 (23896) [002] d..2 24574.323136: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
81426  Binder:23896_4-24423 (23896) [000] d..2 24574.323156: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81427          <idle>-0     (-----) [000] d..1 24574.323171: cpu_idle: state=0 cpu_id=0
81428<...>-24151 ( 24151) [003] d..3 24574.323220: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
81429<...>-24151 ( 24151) [003] d..4 24574.323257: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
81430          <idle>-0     (-----) [000] .n.1 24574.323263: cpu_idle: state=4294967295 cpu_id=0
81431          <idle>-0     (-----) [000] d..2 24574.323302: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
81432  surfaceflinger-23896 (23896) [001] ...1 24574.323318: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
81433  surfaceflinger-23896 (23896) [001] ...1 24574.323326: tracing_mark_write: E|23896
81434<...>-24151 ( 24151) [003] d..2 24574.323332: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
81435          <idle>-0     (-----) [003] d..1 24574.323355: cpu_idle: state=0 cpu_id=3
81436  surfaceflinger-23896 (23896) [001] .... 24574.323393: binder_transaction: transaction=1670725 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
81437  surfaceflinger-23896 (23896) [001] ...2 24574.323425: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
81438  surfaceflinger-23896 (23896) [001] d..4 24574.323433: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
81439  surfaceflinger-23896 (23896) [001] d..5 24574.323459: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
81440          <idle>-0     (-----) [003] .n.1 24574.323466: cpu_idle: state=4294967295 cpu_id=3
81441          <idle>-0     (-----) [003] d..2 24574.323478: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
81442  HwBinder:598_3-633   (  598) [003] .... 24574.323491: binder_transaction_received: transaction=1670725
81443    RenderThread-24437 (24151) [000] d..1 24574.323494: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
81444  surfaceflinger-23896 (23896) [001] d..2 24574.323497: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
81445          <idle>-0     (-----) [001] d..1 24574.323515: cpu_idle: state=0 cpu_id=1
81446    RenderThread-24437 (24151) [000] d..2 24574.323530: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
81447          <idle>-0     (-----) [001] .n.1 24574.323536: cpu_idle: state=4294967295 cpu_id=1
81448  HwBinder:598_3-633   (  598) [003] ...1 24574.323549: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
81449          <idle>-0     (-----) [001] d..2 24574.323550: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
81450    RenderThread-24437 (24151) [000] .... 24574.323604: binder_transaction: transaction=1670726 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
81451    RenderThread-24437 (24151) [000] d..4 24574.323613: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
81452    RenderThread-24437 (24151) [000] dn.5 24574.323630: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
81453    RenderThread-24437 (24151) [000] d..2 24574.323640: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
81454  Binder:23896_4-24423 (23896) [000] .... 24574.323649: binder_transaction_received: transaction=1670726
81455<...>-24151 ( 24151) [001] d..2 24574.323672: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
81456          <idle>-0     (-----) [001] d..1 24574.323688: cpu_idle: state=0 cpu_id=1
81457 s.nexuslauncher-24827 (24827) [002] d..3 24574.323696: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=006
81458  HwBinder:598_3-633   (  598) [003] ...1 24574.323719: tracing_mark_write: B|598|HWCSession::PresentDisplay::
81459  Binder:23896_4-24423 (23896) [000] .... 24574.323722: binder_transaction: transaction=1670727 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
81460 s.nexuslauncher-24827 (24827) [002] d..4 24574.323738: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
81461          <idle>-0     (-----) [001] .n.1 24574.323745: cpu_idle: state=4294967295 cpu_id=1
81462 s.nexuslauncher-24827 (24827) [002] d.h3 24574.323792: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
81463          <idle>-0     (-----) [001] d..2 24574.323797: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
81464  Binder:23896_4-24423 (23896) [000] d..2 24574.323804: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
81465          <idle>-0     (-----) [004] dnh2 24574.323814: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
81466    RenderThread-24437 (24151) [000] .... 24574.323814: binder_transaction_received: transaction=1670727
81467          <idle>-0     (-----) [004] .n.1 24574.323818: cpu_idle: state=4294967295 cpu_id=4
81468          <idle>-0     (-----) [004] d..2 24574.323823: 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
81469         sugov:4-560   (  560) [004] d..2 24574.323834: 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
81470          <idle>-0     (-----) [004] d..1 24574.323839: cpu_idle: state=0 cpu_id=4
81471 s.nexuslauncher-24827 (24827) [002] d..2 24574.323847: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
81472          <idle>-0     (-----) [002] d..1 24574.323868: cpu_idle: state=0 cpu_id=2
81473    RenderThread-25194 (24827) [001] d.h1 24574.323917: sched_waking: comm=queued-work-loo pid=24217 prio=118 target_cpu=001
81474    RenderThread-25194 (24827) [001] d.h2 24574.323954: sched_wakeup: comm=queued-work-loo pid=24217 prio=118 target_cpu=001
81475    RenderThread-25194 (24827) [001] d..1 24574.324090: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
81476    RenderThread-25194 (24827) [001] d..2 24574.324108: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
81477          <idle>-0     (-----) [002] .n.1 24574.324115: cpu_idle: state=4294967295 cpu_id=2
81478          <idle>-0     (-----) [002] d..2 24574.324128: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
81479    RenderThread-25194 (24827) [001] d..1 24574.324138: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
81480          <idle>-0     (-----) [005] dnh2 24574.324165: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
81481          <idle>-0     (-----) [005] .n.1 24574.324170: cpu_idle: state=4294967295 cpu_id=5
81482          <idle>-0     (-----) [005] d..2 24574.324176: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
81483    RenderThread-25194 (24827) [001] .... 24574.324284: binder_transaction: transaction=1670728 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
81484    RenderThread-25194 (24827) [001] ...2 24574.324295: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
81485    RenderThread-25194 (24827) [001] d..4 24574.324300: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
81486 s.nexuslauncher-24827 (24827) [002] d..2 24574.324310: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
81487          <idle>-0     (-----) [002] d..1 24574.324324: cpu_idle: state=0 cpu_id=2
81488    RenderThread-25194 (24827) [001] d..5 24574.324331: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
81489          <idle>-0     (-----) [002] .n.1 24574.324337: cpu_idle: state=4294967295 cpu_id=2
81490          <idle>-0     (-----) [002] d..2 24574.324349: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
81491    RenderThread-25194 (24827) [001] d..2 24574.324350: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=queued-work-loo next_pid=24217 next_prio=118
81492  Binder:23896_4-24423 (23896) [002] .... 24574.324362: binder_transaction_received: transaction=1670728
81493  Binder:23896_4-24423 (23896) [002] .... 24574.324437: binder_transaction: transaction=1670729 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
81494  Binder:23896_4-24423 (23896) [002] d..2 24574.324455: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
81495<...>-27853 ( 24827) [005] .... 24574.324457: binder_transaction: transaction=1670730 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
81496<...>-27853 ( 24827) [005] ...2 24574.324478: binder_set_priority: proc=23896 thread=25989 old=120 => new=118 desired=118
81497<...>-27853 ( 24827) [005] d..4 24574.324481: sched_waking: comm=Binder:23896_5 pid=25989 prio=118 target_cpu=005
81498  Binder:23896_4-24423 (23896) [002] d..3 24574.324483: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
81499  Binder:23896_4-24423 (23896) [002] .... 24574.324489: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
81500<...>-27853 ( 24827) [005] d..5 24574.324493: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=118 target_cpu=005
81501<...>-27853 ( 24827) [005] d..2 24574.324505: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=118
81502  HwBinder:598_3-633   (  598) [003] ...1 24574.324510: tracing_mark_write: B|598|HWDeviceDRM::Validate::
81503  Binder:23896_5-25989 (23896) [005] .... 24574.324513: binder_transaction_received: transaction=1670730
81504  Binder:23896_4-24423 (23896) [002] d..2 24574.324549: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
81505    RenderThread-25194 (24827) [002] .... 24574.324559: binder_transaction_received: transaction=1670729
81506  Binder:23896_5-25989 (23896) [005] .... 24574.324634: binder_transaction: transaction=1670731 dest_node=0 dest_proc=24827 dest_thread=27853 reply=1 flags=0x0 code=0x0
81507  Binder:23896_5-25989 (23896) [005] d..2 24574.324638: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
81508  Binder:23896_5-25989 (23896) [005] d..3 24574.324646: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
81509  Binder:23896_5-25989 (23896) [005] .... 24574.324649: binder_set_priority: proc=23896 thread=25989 old=118 => new=120 desired=120
81510  Binder:23896_5-25989 (23896) [005] d..2 24574.324657: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
81511<...>-27853 ( 24827) [005] .... 24574.324662: binder_transaction_received: transaction=1670731
81512<...>-27853 ( 24827) [005] d..2 24574.324711: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
81513  Binder:23896_5-25989 (23896) [005] d..2 24574.324759: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
81514          <idle>-0     (-----) [005] d..1 24574.324775: cpu_idle: state=0 cpu_id=5
81515<...>-24217 ( 24133) [001] d..2 24574.324966: sched_switch: prev_comm=queued-work-loo prev_pid=24217 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
81516          <idle>-0     (-----) [001] d..1 24574.324991: cpu_idle: state=0 cpu_id=1
81517  HwBinder:598_3-633   (  598) [003] ...1 24574.325136: tracing_mark_write: E|598
81518  HwBinder:598_3-633   (  598) [003] ...1 24574.325317: tracing_mark_write: B|598|HWDeviceDRM::Commit::
81519  HwBinder:598_3-633   (  598) [003] ...1 24574.325329: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
81520    RenderThread-25194 (24827) [002] d..2 24574.325364: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
81521    RenderThread-25194 (24827) [002] d..3 24574.325406: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
81522    RenderThread-24437 (24151) [000] d..2 24574.325419: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
81523 kgsl_worker_thr-246   (  246) [000] d..2 24574.325453: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
81524          <idle>-0     (-----) [000] d..1 24574.325472: cpu_idle: state=0 cpu_id=0
81525          <idle>-0     (-----) [000] d.h2 24574.325487: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
81526          <idle>-0     (-----) [000] d.h3 24574.325501: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
81527          <idle>-0     (-----) [000] dnh3 24574.325507: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
81528          <idle>-0     (-----) [000] .n.1 24574.325517: cpu_idle: state=4294967295 cpu_id=0
81529          <idle>-0     (-----) [000] d..2 24574.325528: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
81530    RenderThread-24437 (24151) [000] d..1 24574.325640: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
81531    RenderThread-24437 (24151) [000] d..2 24574.325666: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
81532    RenderThread-25194 (24827) [002] .... 24574.325667: binder_transaction: transaction=1670732 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
81533          <idle>-0     (-----) [001] .n.1 24574.325674: cpu_idle: state=4294967295 cpu_id=1
81534    RenderThread-25194 (24827) [002] ...2 24574.325684: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
81535          <idle>-0     (-----) [001] d..2 24574.325687: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
81536    RenderThread-25194 (24827) [002] d..4 24574.325690: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
81537    RenderThread-25194 (24827) [002] d..5 24574.325723: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
81538 kgsl_worker_thr-246   (  246) [001] d..2 24574.325731: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
81539    RenderThread-25194 (24827) [002] d.h5 24574.325777: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
81540          <idle>-0     (-----) [004] dnh2 24574.325797: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
81541          <idle>-0     (-----) [004] .n.1 24574.325801: cpu_idle: state=4294967295 cpu_id=4
81542          <idle>-0     (-----) [004] d..2 24574.325806: 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
81543    RenderThread-25194 (24827) [002] d..2 24574.325809: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
81544 kgsl_worker_thr-246   (  246) [001] d..3 24574.325815: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
81545         sugov:4-560   (  560) [004] d..2 24574.325818: 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
81546  Binder:23896_5-25989 (23896) [002] .... 24574.325821: binder_transaction_received: transaction=1670732
81547          <idle>-0     (-----) [004] d..1 24574.325824: cpu_idle: state=0 cpu_id=4
81548 kgsl_worker_thr-246   (  246) [001] d..2 24574.325858: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
81549  HwBinder:598_3-633   (  598) [003] d..2 24574.325871: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
81550  kworker/u16:15-18488 (18488) [001] d..2 24574.325891: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
81551          <idle>-0     (-----) [001] d..1 24574.325904: cpu_idle: state=0 cpu_id=1
81552  HwBinder:598_3-633   (  598) [003] d..3 24574.325914: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
81553          <idle>-0     (-----) [001] .n.1 24574.325919: cpu_idle: state=4294967295 cpu_id=1
81554          <idle>-0     (-----) [001] d..2 24574.325929: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
81555    RenderThread-24437 (24151) [000] .... 24574.325932: binder_transaction: transaction=1670733 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
81556    RenderThread-24437 (24151) [000] d..4 24574.325947: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=002
81557 crtc_commit:111-253   (  253) [001] d.h2 24574.325954: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
81558    RenderThread-24437 (24151) [000] dn.5 24574.325975: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
81559 crtc_commit:111-253   (  253) [001] d.h3 24574.325981: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
81560    RenderThread-24437 (24151) [000] d..2 24574.325986: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
81561  Binder:23896_4-24423 (23896) [000] .... 24574.325999: binder_transaction_received: transaction=1670733
81562  Binder:23896_5-25989 (23896) [002] d..2 24574.326001: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
81563 kgsl_worker_thr-246   (  246) [002] d..1 24574.326023: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
81564  HwBinder:598_3-633   (  598) [003] ...1 24574.326040: tracing_mark_write: E|598
81565 kgsl_worker_thr-246   (  246) [002] d..2 24574.326044: sched_blocked_reason: pid=18488 iowait=0 caller=kgsl_devfreq_get_dev_status+0x2f4/0x428
81566  HwBinder:598_3-633   (  598) [003] ...1 24574.326046: tracing_mark_write: E|598
81567 kgsl_worker_thr-246   (  246) [002] d..2 24574.326052: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
81568 kgsl_worker_thr-246   (  246) [002] d..2 24574.326070: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
81569  Binder:23896_5-25989 (23896) [002] .... 24574.326085: binder_transaction: transaction=1670734 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
81570  Binder:23896_5-25989 (23896) [002] d..2 24574.326093: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
81571  Binder:23896_5-25989 (23896) [002] dn.3 24574.326103: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
81572  Binder:23896_5-25989 (23896) [002] d..2 24574.326110: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
81573  HwBinder:598_3-633   (  598) [003] ...1 24574.326115: tracing_mark_write: E|598
81574    RenderThread-25194 (24827) [002] .... 24574.326119: binder_transaction_received: transaction=1670734
81575  Binder:23896_4-24423 (23896) [000] .... 24574.326145: binder_transaction: transaction=1670735 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
81576  HwBinder:598_3-633   (  598) [003] ...1 24574.326184: tracing_mark_write: E|598
81577  Binder:23896_4-24423 (23896) [000] d..2 24574.326195: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
81578    RenderThread-24437 (24151) [000] .... 24574.326206: binder_transaction_received: transaction=1670735
81579  HwBinder:598_3-633   (  598) [003] .... 24574.326206: binder_transaction: transaction=1670736 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
81580  HwBinder:598_3-633   (  598) [003] d..2 24574.326235: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
81581    RenderThread-25194 (24827) [002] d..2 24574.326245: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
81582  Binder:23896_5-25989 (23896) [002] .... 24574.326252: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
81583  HwBinder:598_3-633   (  598) [003] d..3 24574.326270: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
81584  Binder:23896_5-25989 (23896) [002] d..2 24574.326279: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
81585  HwBinder:598_3-633   (  598) [003] .... 24574.326286: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
81586  surfaceflinger-23896 (23896) [002] .... 24574.326290: binder_transaction_received: transaction=1670736
81587    RenderThread-24437 (24151) [000] d..2 24574.326330: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81588          <idle>-0     (-----) [000] d..1 24574.326352: cpu_idle: state=0 cpu_id=0
81589  HwBinder:598_3-633   (  598) [003] d..2 24574.326411: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
81590          <idle>-0     (-----) [003] d..1 24574.326435: cpu_idle: state=0 cpu_id=3
81591  surfaceflinger-23896 (23896) [002] d..2 24574.326556: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
81592  surfaceflinger-23896 (23896) [002] d..3 24574.326610: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
81593  surfaceflinger-23896 (23896) [002] d..2 24574.327000: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
81594  Binder:23896_5-25989 (23896) [002] d..2 24574.327068: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
81595          <idle>-0     (-----) [002] d..1 24574.327086: cpu_idle: state=0 cpu_id=2
81596 crtc_commit:111-253   (  253) [001] d..2 24574.327275: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcuop/2 next_pid=29 next_prio=120
81597         rcuop/2-29    (   29) [001] d..2 24574.327301: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
81598          <idle>-0     (-----) [000] d.h3 24574.327514: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
81599          <idle>-0     (-----) [000] d.h4 24574.327534: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
81600          <idle>-0     (-----) [002] .n.1 24574.327542: cpu_idle: state=4294967295 cpu_id=2
81601          <idle>-0     (-----) [000] ...1 24574.327551: cpu_idle: state=4294967295 cpu_id=0
81602          <idle>-0     (-----) [000] d..1 24574.327556: cpu_idle: state=0 cpu_id=0
81603          <idle>-0     (-----) [002] dns2 24574.327590: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
81604          <idle>-0     (-----) [002] dns3 24574.327610: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
81605          <idle>-0     (-----) [002] d..2 24574.327627: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
81606  kworker/u16:15-18488 (18488) [001] d..2 24574.327654: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
81607          <idle>-0     (-----) [001] d..1 24574.327674: cpu_idle: state=0 cpu_id=1
81608 kgsl_worker_thr-246   (  246) [002] d..2 24574.327695: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
81609     rcu_preempt-7     (    7) [002] d..2 24574.327711: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
81610     rcu_preempt-7     (    7) [002] d..3 24574.327735: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
81611     rcu_preempt-7     (    7) [002] d..2 24574.327756: 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
81612         rcuop/0-10    (   10) [002] d..2 24574.327764: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
81613         rcuop/0-10    (   10) [002] d..3 24574.327782: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
81614         rcuop/0-10    (   10) [002] d..2 24574.327792: 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
81615          <idle>-0     (-----) [003] ...1 24574.327821: cpu_idle: state=4294967295 cpu_id=3
81616          <idle>-0     (-----) [003] d..1 24574.327826: cpu_idle: state=0 cpu_id=3
81617         rcuop/1-21    (   21) [002] d..2 24574.327828: 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
81618          <idle>-0     (-----) [002] d..1 24574.327845: cpu_idle: state=0 cpu_id=2
81619          <idle>-0     (-----) [001] ...1 24574.328876: cpu_idle: state=4294967295 cpu_id=1
81620          <idle>-0     (-----) [001] d..1 24574.328881: cpu_idle: state=0 cpu_id=1
81621          <idle>-0     (-----) [002] d.s2 24574.334241: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
81622          <idle>-0     (-----) [002] dns3 24574.334255: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
81623          <idle>-0     (-----) [002] dns3 24574.334261: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
81624          <idle>-0     (-----) [000] d.h5 24574.334269: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
81625          <idle>-0     (-----) [000] dnh6 24574.334282: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
81626          <idle>-0     (-----) [000] dnh5 24574.334294: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
81627          <idle>-0     (-----) [002] dns4 24574.334294: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
81628          <idle>-0     (-----) [002] dns3 24574.334307: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
81629          <idle>-0     (-----) [000] dnh6 24574.334308: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
81630          <idle>-0     (-----) [001] .n.1 24574.334313: cpu_idle: state=4294967295 cpu_id=1
81631          <idle>-0     (-----) [002] dns4 24574.334319: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
81632          <idle>-0     (-----) [000] .n.1 24574.334323: cpu_idle: state=4294967295 cpu_id=0
81633          <idle>-0     (-----) [001] d..2 24574.334325: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
81634          <idle>-0     (-----) [000] d..2 24574.334338: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
81635          <idle>-0     (-----) [002] .n.1 24574.334338: cpu_idle: state=4294967295 cpu_id=2
81636          <idle>-0     (-----) [002] d..2 24574.334351: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
81637  crtc_event:111-254   (  254) [000] d..2 24574.334370: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
81638     kworker/2:0-12895 (12895) [002] d..2 24574.334436: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
81639     rcu_preempt-7     (    7) [002] d..2 24574.334479: 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
81640          <idle>-0     (-----) [002] d..1 24574.334500: cpu_idle: state=0 cpu_id=2
81641 crtc_commit:111-253   (  253) [001] d..2 24574.334543: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
81642          <idle>-0     (-----) [001] d..1 24574.334553: cpu_idle: state=0 cpu_id=1
81643  kworker/u16:15-18488 (18488) [000] d..2 24574.334737: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
81644          <idle>-0     (-----) [000] d..1 24574.334755: cpu_idle: state=0 cpu_id=0
81645          <idle>-0     (-----) [003] d.s3 24574.335200: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
81646          <idle>-0     (-----) [003] d.s4 24574.335214: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
81647          <idle>-0     (-----) [003] d.s4 24574.335224: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
81648          <idle>-0     (-----) [000] .n.1 24574.335231: cpu_idle: state=4294967295 cpu_id=0
81649          <idle>-0     (-----) [003] ...1 24574.335234: cpu_idle: state=4294967295 cpu_id=3
81650          <idle>-0     (-----) [003] d..1 24574.335241: cpu_idle: state=0 cpu_id=3
81651          <idle>-0     (-----) [000] d..2 24574.335243: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
81652  kworker/u16:15-18488 (18488) [000] .... 24574.335347: clk_set_rate: l3_cluster0_vote_clk 403200000
81653  kworker/u16:15-18488 (18488) [000] .... 24574.335356: clk_set_rate: l3_clk 403200000
81654  kworker/u16:15-18488 (18488) [000] d..2 24574.335422: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81655          <idle>-0     (-----) [000] d..1 24574.335438: cpu_idle: state=0 cpu_id=0
81656          <idle>-0     (-----) [003] ...1 24574.336539: cpu_idle: state=4294967295 cpu_id=3
81657          <idle>-0     (-----) [003] d..1 24574.336543: cpu_idle: state=0 cpu_id=3
81658          <idle>-0     (-----) [000] d.h5 24574.336589: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
81659          <idle>-0     (-----) [000] d.h6 24574.336607: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
81660          <idle>-0     (-----) [001] .n.1 24574.336612: cpu_idle: state=4294967295 cpu_id=1
81661          <idle>-0     (-----) [001] d..2 24574.336621: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
81662          <idle>-0     (-----) [000] ...1 24574.336624: cpu_idle: state=4294967295 cpu_id=0
81663          <idle>-0     (-----) [000] d..1 24574.336628: cpu_idle: state=0 cpu_id=0
81664 crtc_commit:111-253   (  253) [001] d..2 24574.336696: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
81665          <idle>-0     (-----) [001] d..1 24574.336704: cpu_idle: state=0 cpu_id=1
81666          <idle>-0     (-----) [000] d.h5 24574.336884: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
81667          <idle>-0     (-----) [000] dnh6 24574.336894: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
81668          <idle>-0     (-----) [000] .n.1 24574.336910: cpu_idle: state=4294967295 cpu_id=0
81669          <idle>-0     (-----) [000] d..2 24574.336919: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
81670  crtc_event:111-254   (  254) [000] d..2 24574.336945: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81671          <idle>-0     (-----) [000] d..1 24574.336956: cpu_idle: state=0 cpu_id=0
81672          <idle>-0     (-----) [002] d.h2 24574.337573: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
81673          <idle>-0     (-----) [002] dnh3 24574.337624: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
81674          <idle>-0     (-----) [002] .n.1 24574.337633: cpu_idle: state=4294967295 cpu_id=2
81675          <idle>-0     (-----) [002] d..2 24574.337643: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
81676          <idle>-0     (-----) [001] d.H3 24574.337651: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
81677          <idle>-0     (-----) [001] d.H3 24574.337666: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
81678        DispSync-23904 (23896) [002] d..1 24574.337669: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
81679          <idle>-0     (-----) [004] dnh2 24574.337673: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
81680          <idle>-0     (-----) [004] .n.1 24574.337676: cpu_idle: state=4294967295 cpu_id=4
81681          <idle>-0     (-----) [004] d..2 24574.337681: 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
81682          <idle>-0     (-----) [001] dnH4 24574.337686: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
81683        DispSync-23904 (23896) [002] d..2 24574.337686: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
81684          <idle>-0     (-----) [003] .n.1 24574.337691: cpu_idle: state=4294967295 cpu_id=3
81685          <idle>-0     (-----) [001] dns3 24574.337694: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
81686         sugov:4-560   (  560) [004] d..2 24574.337694: 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
81687          <idle>-0     (-----) [004] d..1 24574.337700: cpu_idle: state=0 cpu_id=4
81688          <idle>-0     (-----) [003] d..2 24574.337703: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
81689          <idle>-0     (-----) [001] dns4 24574.337707: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
81690          <idle>-0     (-----) [000] .n.1 24574.337714: cpu_idle: state=4294967295 cpu_id=0
81691        DispSync-23904 (23896) [002] d..2 24574.337725: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
81692          <idle>-0     (-----) [000] d..2 24574.337725: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
81693          <idle>-0     (-----) [001] .n.1 24574.337728: cpu_idle: state=4294967295 cpu_id=1
81694          <idle>-0     (-----) [002] d..1 24574.337735: cpu_idle: state=0 cpu_id=2
81695          <idle>-0     (-----) [001] d..2 24574.337736: 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
81696  crtc_event:111-254   (  254) [000] d..2 24574.337753: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81697          <idle>-0     (-----) [000] d..1 24574.337762: cpu_idle: state=0 cpu_id=0
81698   sfEventThread-23906 (23896) [003] d..3 24574.337763: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
81699         sugov:0-559   (  559) [001] .... 24574.337768: clk_set_rate: pwrcl_clk 902400000
81700         sugov:0-559   (  559) [001] .... 24574.337779: clk_set_rate: cpu3_pwrcl_clk 1056000000
81701   sfEventThread-23906 (23896) [003] d..4 24574.337783: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
81702         sugov:0-559   (  559) [001] .... 24574.337788: clk_set_rate: cpu2_pwrcl_clk 1056000000
81703          <idle>-0     (-----) [002] .n.1 24574.337788: cpu_idle: state=4294967295 cpu_id=2
81704         sugov:0-559   (  559) [001] .... 24574.337796: clk_set_rate: cpu1_pwrcl_clk 1056000000
81705          <idle>-0     (-----) [002] d..2 24574.337796: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
81706         sugov:0-559   (  559) [001] .... 24574.337803: clk_set_rate: cpu0_pwrcl_clk 902400000
81707   sfEventThread-23906 (23896) [003] d..2 24574.337828: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
81708          <idle>-0     (-----) [003] d..1 24574.337848: cpu_idle: state=0 cpu_id=3
81709         sugov:0-559   (  559) [001] .... 24574.337916: cpu_frequency: state=902400 cpu_id=0
81710         sugov:0-559   (  559) [001] .... 24574.337937: cpu_frequency: state=902400 cpu_id=1
81711         sugov:0-559   (  559) [001] .... 24574.337942: cpu_frequency: state=902400 cpu_id=2
81712         sugov:0-559   (  559) [001] .... 24574.337946: cpu_frequency: state=902400 cpu_id=3
81713         sugov:0-559   (  559) [001] d..2 24574.337976: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
81714          <idle>-0     (-----) [001] d..1 24574.337993: cpu_idle: state=0 cpu_id=1
81715  surfaceflinger-23896 (23896) [002] d.h1 24574.338579: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
81716  surfaceflinger-23896 (23896) [002] d.h2 24574.338612: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
81717          <idle>-0     (-----) [003] .n.1 24574.338618: cpu_idle: state=4294967295 cpu_id=3
81718          <idle>-0     (-----) [003] d..2 24574.338629: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
81719        DispSync-23904 (23896) [003] d..1 24574.338645: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
81720  surfaceflinger-23896 (23896) [002] d..1 24574.338650: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
81721        DispSync-23904 (23896) [003] d..2 24574.338676: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
81722          <idle>-0     (-----) [000] .n.1 24574.338682: cpu_idle: state=4294967295 cpu_id=0
81723  surfaceflinger-23896 (23896) [002] d..2 24574.338683: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
81724          <idle>-0     (-----) [000] d..2 24574.338691: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
81725        DispSync-23904 (23896) [003] d..2 24574.338740: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=sfEventThread next_pid=23906 next_prio=97
81726   sfEventThread-23906 (23896) [003] d..2 24574.338785: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
81727  appEventThread-23905 (23896) [000] d..3 24574.338795: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
81728          <idle>-0     (-----) [003] d..1 24574.338798: cpu_idle: state=0 cpu_id=3
81729  appEventThread-23905 (23896) [000] d..4 24574.338827: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
81730          <idle>-0     (-----) [001] .n.1 24574.338833: cpu_idle: state=4294967295 cpu_id=1
81731          <idle>-0     (-----) [001] d..2 24574.338846: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
81732  appEventThread-23905 (23896) [000] d..3 24574.338847: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
81733  appEventThread-23905 (23896) [000] d..4 24574.338875: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
81734          <idle>-0     (-----) [003] .n.1 24574.338881: cpu_idle: state=4294967295 cpu_id=3
81735          <idle>-0     (-----) [003] d..2 24574.338893: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
81736  appEventThread-23905 (23896) [000] d..2 24574.338918: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81737          <idle>-0     (-----) [000] d..1 24574.338935: cpu_idle: state=0 cpu_id=0
81738<...>-24151 ( 24151) [003] .... 24574.339186: binder_transaction: transaction=1670737 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
81739<...>-24151 ( 24151) [003] d..4 24574.339197: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
81740<...>-24151 ( 24151) [003] d..5 24574.339233: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
81741          <idle>-0     (-----) [000] .n.1 24574.339240: cpu_idle: state=4294967295 cpu_id=0
81742 s.nexuslauncher-24827 (24827) [001] .... 24574.339243: binder_transaction: transaction=1670738 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
81743          <idle>-0     (-----) [000] d..2 24574.339252: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
81744 s.nexuslauncher-24827 (24827) [001] d..4 24574.339254: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
81745<...>-24151 ( 24151) [003] d..3 24574.339277: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
81746 s.nexuslauncher-24827 (24827) [001] d.h5 24574.339339: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
81747          <idle>-0     (-----) [005] dnh2 24574.339339: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
81748          <idle>-0     (-----) [005] .n.1 24574.339344: cpu_idle: state=4294967295 cpu_id=5
81749          <idle>-0     (-----) [005] d..2 24574.339353: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
81750 s.nexuslauncher-24827 (24827) [001] d.h5 24574.339355: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
81751  surfaceflinger-23896 (23896) [002] ...1 24574.339355: tracing_mark_write: B|23896|HIDL::IComposerClient::destroyLayer::client
81752          <idle>-0     (-----) [006] dnh2 24574.339358: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
81753  surfaceflinger-23896 (23896) [002] ...1 24574.339363: tracing_mark_write: E|23896
81754          <idle>-0     (-----) [004] dnh2 24574.339396: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
81755          <idle>-0     (-----) [006] .n.1 24574.339397: cpu_idle: state=4294967295 cpu_id=6
81756          <idle>-0     (-----) [004] .n.1 24574.339400: cpu_idle: state=4294967295 cpu_id=4
81757          <idle>-0     (-----) [006] d..2 24574.339404: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
81758 s.nexuslauncher-24827 (24827) [001] dnh6 24574.339405: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
81759          <idle>-0     (-----) [004] d..2 24574.339406: 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
81760  surfaceflinger-23896 (23896) [002] .... 24574.339407: binder_transaction: transaction=1670739 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x6
81761  Binder:23896_4-24423 (23896) [005] .... 24574.339413: binder_transaction_received: transaction=1670738
81762  Binder:23896_5-25989 (23896) [000] .... 24574.339414: binder_transaction_received: transaction=1670737
81763         sugov:4-560   (  560) [004] d..2 24574.339416: 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
81764  surfaceflinger-23896 (23896) [002] ...2 24574.339417: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
81765 s.nexuslauncher-24827 (24827) [001] d..2 24574.339419: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
81766          <idle>-0     (-----) [004] d..1 24574.339421: cpu_idle: state=0 cpu_id=4
81767  surfaceflinger-23896 (23896) [002] d..4 24574.339424: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
81768    RenderThread-24437 (24151) [006] d..2 24574.339425: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
81769          <idle>-0     (-----) [006] d..1 24574.339432: cpu_idle: state=0 cpu_id=6
81770  Binder:23896_4-24423 (23896) [005] d..1 24574.339432: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
81771         sugov:0-559   (  559) [001] d..2 24574.339435: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
81772  surfaceflinger-23896 (23896) [002] d..5 24574.339460: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
81773  Binder:23896_4-24423 (23896) [005] d..1 24574.339465: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
81774 s.nexuslauncher-24827 (24827) [001] dnh1 24574.339468: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
81775 s.nexuslauncher-24827 (24827) [001] d..2 24574.339483: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
81776  Binder:23896_5-25989 (23896) [000] d..2 24574.339485: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81777          <idle>-0     (-----) [000] d..1 24574.339499: cpu_idle: state=0 cpu_id=0
81778  surfaceflinger-23896 (23896) [002] d..2 24574.339515: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
81779  Binder:23896_4-24423 (23896) [005] d..2 24574.339521: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
81780<...>-24151 ( 24151) [003] d..3 24574.339525: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
81781          <idle>-0     (-----) [000] dnh2 24574.339526: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
81782          <idle>-0     (-----) [005] d..1 24574.339529: cpu_idle: state=0 cpu_id=5
81783          <idle>-0     (-----) [002] d..1 24574.339530: cpu_idle: state=0 cpu_id=2
81784          <idle>-0     (-----) [000] .n.1 24574.339536: cpu_idle: state=4294967295 cpu_id=0
81785          <idle>-0     (-----) [000] d..2 24574.339547: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
81786  HwBinder:598_3-633   (  598) [000] .... 24574.339559: binder_transaction_received: transaction=1670739
81787<...>-24151 ( 24151) [003] d..4 24574.339561: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
81788  appEventThread-23905 (23896) [001] d..2 24574.339566: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
81789          <idle>-0     (-----) [002] .n.1 24574.339567: cpu_idle: state=4294967295 cpu_id=2
81790 s.nexuslauncher-24827 (24827) [001] d..3 24574.339593: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
81791  HwBinder:598_3-633   (  598) [000] ...1 24574.339603: tracing_mark_write: B|598|HIDL::IComposerClient::destroyLayer::server
81792          <idle>-0     (-----) [002] d..2 24574.339608: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
81793<...>-24151 ( 24151) [003] d..2 24574.339636: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
81794  HwBinder:598_3-633   (  598) [000] ...1 24574.339652: tracing_mark_write: B|598|HIDL::IMapper::freeBuffer::passthrough
81795          <idle>-0     (-----) [003] d..1 24574.339656: cpu_idle: state=0 cpu_id=3
81796  HwBinder:598_3-633   (  598) [000] ...1 24574.339673: tracing_mark_write: B|598|FreeBuffer
81797          <idle>-0     (-----) [005] dnh2 24574.339679: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
81798          <idle>-0     (-----) [005] .n.1 24574.339684: cpu_idle: state=4294967295 cpu_id=5
81799          <idle>-0     (-----) [005] d..2 24574.339690: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
81800  HwBinder:598_3-633   (  598) [000] ...1 24574.339703: tracing_mark_write: E|598
81801  HwBinder:598_3-633   (  598) [000] ...1 24574.339708: tracing_mark_write: B|598|FreeBuffer
81802  HwBinder:598_3-633   (  598) [000] ...1 24574.339713: tracing_mark_write: B|598|UnmapBuffer
81803    RenderThread-25194 (24827) [005] d..2 24574.339732: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
81804          <idle>-0     (-----) [005] d..1 24574.339743: cpu_idle: state=0 cpu_id=5
81805    RenderThread-24437 (24151) [002] d..1 24574.339759: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
81806  HwBinder:598_3-633   (  598) [000] ...1 24574.339770: tracing_mark_write: E|598
81807  HwBinder:598_3-633   (  598) [000] ...1 24574.339783: tracing_mark_write: E|598
81808    RenderThread-24437 (24151) [002] d..2 24574.339785: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
81809          <idle>-0     (-----) [003] .n.1 24574.339791: cpu_idle: state=4294967295 cpu_id=3
81810  HwBinder:598_3-633   (  598) [000] ...1 24574.339792: tracing_mark_write: E|598
81811  HwBinder:598_3-633   (  598) [000] ...1 24574.339797: tracing_mark_write: B|598|HIDL::IMapper::freeBuffer::passthrough
81812          <idle>-0     (-----) [003] d..2 24574.339804: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
81813  HwBinder:598_3-633   (  598) [000] ...1 24574.339805: tracing_mark_write: B|598|FreeBuffer
81814  HwBinder:598_3-633   (  598) [000] ...1 24574.339817: tracing_mark_write: E|598
81815  HwBinder:598_3-633   (  598) [000] ...1 24574.339821: tracing_mark_write: B|598|FreeBuffer
81816  HwBinder:598_3-633   (  598) [000] ...1 24574.339826: tracing_mark_write: B|598|UnmapBuffer
81817  HwBinder:598_3-633   (  598) [000] ...1 24574.339846: tracing_mark_write: E|598
81818    RenderThread-24437 (24151) [002] .... 24574.339855: binder_transaction: transaction=1670740 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
81819  HwBinder:598_3-633   (  598) [000] ...1 24574.339857: tracing_mark_write: E|598
81820  HwBinder:598_3-633   (  598) [000] ...1 24574.339862: tracing_mark_write: E|598
81821    RenderThread-24437 (24151) [002] d..4 24574.339864: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
81822  HwBinder:598_3-633   (  598) [000] ...1 24574.339881: tracing_mark_write: E|598
81823<...>-24151 ( 24151) [003] d..2 24574.339893: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
81824    RenderThread-24437 (24151) [002] dn.5 24574.339893: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=002
81825  HwBinder:598_3-633   (  598) [000] .... 24574.339895: binder_transaction: transaction=1670741 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
81826  HwBinder:598_3-633   (  598) [000] d..2 24574.339904: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
81827          <idle>-0     (-----) [003] d..1 24574.339907: cpu_idle: state=0 cpu_id=3
81828    RenderThread-24437 (24151) [002] dnh5 24574.339947: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
81829    RenderThread-24437 (24151) [002] dnh5 24574.339961: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
81830  HwBinder:598_3-633   (  598) [000] d..3 24574.339966: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
81831          <idle>-0     (-----) [004] dnh2 24574.339968: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
81832          <idle>-0     (-----) [004] .n.1 24574.339971: cpu_idle: state=4294967295 cpu_id=4
81833  HwBinder:598_3-633   (  598) [000] .... 24574.339971: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
81834          <idle>-0     (-----) [003] .n.1 24574.339971: cpu_idle: state=4294967295 cpu_id=3
81835    RenderThread-24437 (24151) [002] dnh6 24574.339975: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
81836          <idle>-0     (-----) [004] d..2 24574.339976: 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
81837          <idle>-0     (-----) [003] d..2 24574.339982: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
81838         sugov:4-560   (  560) [004] d..2 24574.339987: 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
81839    RenderThread-24437 (24151) [002] d..2 24574.339988: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
81840          <idle>-0     (-----) [004] d..1 24574.339992: cpu_idle: state=0 cpu_id=4
81841  surfaceflinger-23896 (23896) [003] .... 24574.339994: binder_transaction_received: transaction=1670741
81842 s.nexuslauncher-24827 (24827) [001] d..2 24574.339995: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
81843  Binder:23896_4-24423 (23896) [002] .... 24574.339998: binder_transaction_received: transaction=1670740
81844         sugov:0-559   (  559) [001] d..2 24574.340015: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
81845  HwBinder:598_3-633   (  598) [000] d..2 24574.340029: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
81846  Binder:23896_5-25989 (23896) [000] d..1 24574.340045: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
81847  Binder:23896_5-25989 (23896) [000] d..2 24574.340061: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
81848  Binder:23896_4-24423 (23896) [002] .... 24574.340071: binder_transaction: transaction=1670742 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
81849 s.nexuslauncher-24827 (24827) [001] d..2 24574.340075: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
81850  Binder:23896_5-25989 (23896) [000] d..2 24574.340110: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81851  appEventThread-23905 (23896) [001] d..2 24574.340120: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
81852  Binder:23896_4-24423 (23896) [002] d..2 24574.340127: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
81853          <idle>-0     (-----) [000] d..1 24574.340129: cpu_idle: state=0 cpu_id=0
81854    RenderThread-24437 (24151) [002] .... 24574.340138: binder_transaction_received: transaction=1670742
81855 s.nexuslauncher-24827 (24827) [001] d..3 24574.340259: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
81856 s.nexuslauncher-24827 (24827) [001] d..4 24574.340296: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
81857          <idle>-0     (-----) [000] .n.1 24574.340302: cpu_idle: state=4294967295 cpu_id=0
81858          <idle>-0     (-----) [000] d..2 24574.340341: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
81859 s.nexuslauncher-24827 (24827) [001] d..2 24574.340367: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
81860          <idle>-0     (-----) [001] d..1 24574.340387: cpu_idle: state=0 cpu_id=1
81861  surfaceflinger-23896 (23896) [003] ...1 24574.340436: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
81862  surfaceflinger-23896 (23896) [003] ...1 24574.340443: tracing_mark_write: E|23896
81863  surfaceflinger-23896 (23896) [003] .... 24574.340489: binder_transaction: transaction=1670743 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
81864    RenderThread-25194 (24827) [000] d..1 24574.340503: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
81865  surfaceflinger-23896 (23896) [003] ...2 24574.340516: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
81866  surfaceflinger-23896 (23896) [003] d..4 24574.340524: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
81867    RenderThread-25194 (24827) [000] d..2 24574.340528: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
81868          <idle>-0     (-----) [001] .n.1 24574.340534: cpu_idle: state=4294967295 cpu_id=1
81869    RenderThread-25194 (24827) [000] d..1 24574.340551: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
81870          <idle>-0     (-----) [001] d..2 24574.340552: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
81871  surfaceflinger-23896 (23896) [003] d..5 24574.340564: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
81872 s.nexuslauncher-24827 (24827) [001] d..2 24574.340575: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
81873          <idle>-0     (-----) [005] dnh2 24574.340579: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
81874          <idle>-0     (-----) [005] .n.1 24574.340584: cpu_idle: state=4294967295 cpu_id=5
81875  HwBinder:598_3-633   (  598) [001] .... 24574.340587: binder_transaction_received: transaction=1670743
81876          <idle>-0     (-----) [005] d..2 24574.340591: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
81877  surfaceflinger-23896 (23896) [003] d..2 24574.340603: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
81878          <idle>-0     (-----) [003] d..1 24574.340624: cpu_idle: state=0 cpu_id=3
81879  HwBinder:598_3-633   (  598) [001] ...1 24574.340630: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
81880    RenderThread-25194 (24827) [000] .... 24574.340637: binder_transaction: transaction=1670744 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
81881    RenderThread-25194 (24827) [000] ...2 24574.340647: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
81882    RenderThread-25194 (24827) [000] d..4 24574.340652: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
81883    RenderThread-25194 (24827) [000] dn.5 24574.340676: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
81884    RenderThread-25194 (24827) [000] d..2 24574.340687: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
81885  Binder:23896_4-24423 (23896) [000] .... 24574.340696: binder_transaction_received: transaction=1670744
81886  Binder:23896_4-24423 (23896) [000] .... 24574.340760: binder_transaction: transaction=1670745 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
81887<...>-27853 ( 24827) [005] .... 24574.340769: binder_transaction: transaction=1670746 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
81888  Binder:23896_4-24423 (23896) [000] .... 24574.340775: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
81889  HwBinder:598_3-633   (  598) [001] ...1 24574.340778: tracing_mark_write: B|598|HWCSession::PresentDisplay::
81890<...>-27853 ( 24827) [005] ...2 24574.340784: binder_set_priority: proc=23896 thread=25989 old=120 => new=118 desired=118
81891<...>-27853 ( 24827) [005] d..4 24574.340788: sched_waking: comm=Binder:23896_5 pid=25989 prio=118 target_cpu=000
81892<...>-27853 ( 24827) [005] d..5 24574.340812: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=118 target_cpu=005
81893<...>-27853 ( 24827) [005] d.h5 24574.340848: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
81894<...>-27853 ( 24827) [005] d.h6 24574.340860: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
81895<...>-27853 ( 24827) [005] d.h5 24574.340862: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
81896          <idle>-0     (-----) [004] .n.1 24574.340865: cpu_idle: state=4294967295 cpu_id=4
81897          <idle>-0     (-----) [004] d..2 24574.340871: 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
81898         sugov:4-560   (  560) [004] d..2 24574.340887: 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
81899<...>-27853 ( 24827) [005] d..2 24574.340890: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=118
81900          <idle>-0     (-----) [003] dnh2 24574.340894: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
81901          <idle>-0     (-----) [003] .n.1 24574.340902: cpu_idle: state=4294967295 cpu_id=3
81902          <idle>-0     (-----) [003] d..2 24574.340914: 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
81903    RenderThread-24437 (24151) [002] d.s1 24574.340925: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
81904  Binder:23896_5-25989 (23896) [005] .... 24574.340927: binder_transaction_received: transaction=1670746
81905          <idle>-0     (-----) [004] d..1 24574.340929: cpu_idle: state=0 cpu_id=4
81906         sugov:0-559   (  559) [003] d..2 24574.340942: 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
81907          <idle>-0     (-----) [003] d..1 24574.340954: cpu_idle: state=0 cpu_id=3
81908  Binder:23896_4-24423 (23896) [000] d..2 24574.340968: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
81909    RenderThread-24437 (24151) [002] d.s2 24574.340975: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
81910          <idle>-0     (-----) [003] .n.1 24574.340980: cpu_idle: state=4294967295 cpu_id=3
81911    RenderThread-25194 (24827) [000] .... 24574.340980: binder_transaction_received: transaction=1670745
81912          <idle>-0     (-----) [003] d..2 24574.340992: 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
81913     rcu_preempt-7     (    7) [003] d..2 24574.341003: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
81914  Binder:23896_5-25989 (23896) [005] .... 24574.341027: binder_transaction: transaction=1670747 dest_node=0 dest_proc=24827 dest_thread=27853 reply=1 flags=0x0 code=0x0
81915  Binder:23896_5-25989 (23896) [005] d..2 24574.341032: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
81916  Binder:23896_5-25989 (23896) [005] d..3 24574.341040: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
81917  Binder:23896_5-25989 (23896) [005] .... 24574.341043: binder_set_priority: proc=23896 thread=25989 old=118 => new=120 desired=120
81918     rcu_preempt-7     (    7) [003] d..3 24574.341043: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
81919  Binder:23896_5-25989 (23896) [005] d..2 24574.341052: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
81920<...>-27853 ( 24827) [005] .... 24574.341057: binder_transaction_received: transaction=1670747
81921     rcu_preempt-7     (    7) [003] d..2 24574.341061: 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
81922         rcuop/2-29    (   29) [003] d..2 24574.341088: 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
81923          <idle>-0     (-----) [003] d..1 24574.341100: cpu_idle: state=0 cpu_id=3
81924<...>-27853 ( 24827) [005] d..2 24574.341106: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
81925  Binder:23896_5-25989 (23896) [005] d..2 24574.341151: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
81926          <idle>-0     (-----) [005] d..1 24574.341165: cpu_idle: state=0 cpu_id=5
81927  HwBinder:598_3-633   (  598) [001] ...1 24574.341589: tracing_mark_write: B|598|HWDeviceDRM::Validate::
81928    RenderThread-24437 (24151) [002] .... 24574.341619: binder_transaction: transaction=1670748 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
81929    RenderThread-24437 (24151) [002] d..4 24574.341636: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
81930    RenderThread-24437 (24151) [002] dn.5 24574.341668: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
81931    RenderThread-24437 (24151) [002] dnh5 24574.341719: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
81932    RenderThread-24437 (24151) [002] dnh5 24574.341734: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
81933          <idle>-0     (-----) [004] dnh2 24574.341739: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
81934          <idle>-0     (-----) [004] .n.1 24574.341743: cpu_idle: state=4294967295 cpu_id=4
81935    RenderThread-24437 (24151) [002] dnh6 24574.341748: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
81936          <idle>-0     (-----) [004] d..2 24574.341748: 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
81937          <idle>-0     (-----) [003] .n.1 24574.341754: cpu_idle: state=4294967295 cpu_id=3
81938    RenderThread-24437 (24151) [002] d..2 24574.341761: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
81939         sugov:4-560   (  560) [004] d..2 24574.341761: 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
81940          <idle>-0     (-----) [003] d..2 24574.341764: 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
81941          <idle>-0     (-----) [004] d..1 24574.341767: cpu_idle: state=0 cpu_id=4
81942  Binder:23896_5-25989 (23896) [002] .... 24574.341771: binder_transaction_received: transaction=1670748
81943    RenderThread-25194 (24827) [000] d.h2 24574.341772: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
81944         sugov:0-559   (  559) [003] d..2 24574.341788: 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
81945          <idle>-0     (-----) [003] d..1 24574.341797: cpu_idle: state=0 cpu_id=3
81946    RenderThread-25194 (24827) [000] d.h3 24574.341809: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
81947          <idle>-0     (-----) [003] .n.1 24574.341813: cpu_idle: state=4294967295 cpu_id=3
81948          <idle>-0     (-----) [003] d..2 24574.341823: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
81949 kgsl_worker_thr-246   (  246) [003] d..2 24574.341900: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
81950  Binder:23896_5-25989 (23896) [002] .... 24574.341917: binder_transaction: transaction=1670749 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
81951 kgsl_worker_thr-246   (  246) [003] d..3 24574.341939: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
81952 kgsl_worker_thr-246   (  246) [003] d..2 24574.341960: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
81953  Binder:23896_5-25989 (23896) [002] d..2 24574.341968: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
81954    RenderThread-24437 (24151) [002] .... 24574.341979: binder_transaction_received: transaction=1670749
81955  kworker/u16:15-18488 (18488) [003] d..2 24574.342008: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
81956          <idle>-0     (-----) [003] d..1 24574.342020: cpu_idle: state=0 cpu_id=3
81957    RenderThread-24437 (24151) [002] d..2 24574.342082: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
81958    RenderThread-25194 (24827) [000] .... 24574.342091: binder_transaction: transaction=1670750 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
81959          <idle>-0     (-----) [002] d..1 24574.342106: cpu_idle: state=0 cpu_id=2
81960    RenderThread-25194 (24827) [000] ...2 24574.342107: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
81961    RenderThread-25194 (24827) [000] d..4 24574.342112: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
81962    RenderThread-25194 (24827) [000] d..5 24574.342138: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
81963    RenderThread-25194 (24827) [000] d..2 24574.342157: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
81964  Binder:23896_5-25989 (23896) [000] .... 24574.342166: binder_transaction_received: transaction=1670750
81965  HwBinder:598_3-633   (  598) [001] ...1 24574.342205: tracing_mark_write: E|598
81966  Binder:23896_5-25989 (23896) [000] .... 24574.342303: binder_transaction: transaction=1670751 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
81967  Binder:23896_5-25989 (23896) [000] d..2 24574.342311: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
81968  Binder:23896_5-25989 (23896) [000] dn.3 24574.342328: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
81969  Binder:23896_5-25989 (23896) [000] d..2 24574.342338: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
81970    RenderThread-25194 (24827) [000] .... 24574.342346: binder_transaction_received: transaction=1670751
81971  HwBinder:598_3-633   (  598) [001] ...1 24574.342373: tracing_mark_write: B|598|HWDeviceDRM::Commit::
81972  HwBinder:598_3-633   (  598) [001] ...1 24574.342385: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
81973    RenderThread-25194 (24827) [000] d..2 24574.342450: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
81974  Binder:23896_5-25989 (23896) [000] .... 24574.342457: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
81975  Binder:23896_5-25989 (23896) [000] d..2 24574.342528: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81976          <idle>-0     (-----) [000] d..1 24574.342550: cpu_idle: state=0 cpu_id=0
81977  HwBinder:598_3-633   (  598) [001] d..2 24574.342907: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
81978  HwBinder:598_3-633   (  598) [001] d..3 24574.342945: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
81979          <idle>-0     (-----) [002] .n.1 24574.342953: cpu_idle: state=4294967295 cpu_id=2
81980          <idle>-0     (-----) [002] d..2 24574.342965: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
81981  HwBinder:598_3-633   (  598) [001] ...1 24574.343050: tracing_mark_write: E|598
81982  HwBinder:598_3-633   (  598) [001] ...1 24574.343056: tracing_mark_write: E|598
81983  HwBinder:598_3-633   (  598) [001] ...1 24574.343115: tracing_mark_write: E|598
81984  HwBinder:598_3-633   (  598) [001] ...1 24574.343171: tracing_mark_write: E|598
81985  HwBinder:598_3-633   (  598) [001] .... 24574.343189: binder_transaction: transaction=1670752 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
81986  HwBinder:598_3-633   (  598) [001] d..2 24574.343215: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
81987  HwBinder:598_3-633   (  598) [001] d..3 24574.343234: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
81988  HwBinder:598_3-633   (  598) [001] .... 24574.343240: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
81989          <idle>-0     (-----) [003] .n.1 24574.343240: cpu_idle: state=4294967295 cpu_id=3
81990          <idle>-0     (-----) [003] d..2 24574.343250: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
81991  surfaceflinger-23896 (23896) [003] .... 24574.343260: binder_transaction_received: transaction=1670752
81992  HwBinder:598_3-633   (  598) [001] d..2 24574.343324: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
81993 s.nexuslauncher-24827 (24827) [001] d..2 24574.343472: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
81994          <idle>-0     (-----) [001] d..1 24574.343494: cpu_idle: state=0 cpu_id=1
81995          <idle>-0     (-----) [000] d.h3 24574.343691: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
81996          <idle>-0     (-----) [000] dnh4 24574.343713: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
81997          <idle>-0     (-----) [000] .n.1 24574.343727: cpu_idle: state=4294967295 cpu_id=0
81998          <idle>-0     (-----) [000] d..2 24574.343738: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
81999 kgsl_worker_thr-246   (  246) [000] d..2 24574.343802: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82000          <idle>-0     (-----) [000] d..1 24574.343817: cpu_idle: state=0 cpu_id=0
82001  surfaceflinger-23896 (23896) [003] d..2 24574.343822: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82002          <idle>-0     (-----) [003] d..1 24574.343840: cpu_idle: state=0 cpu_id=3
82003 crtc_commit:111-253   (  253) [002] d.s2 24574.344258: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
82004 crtc_commit:111-253   (  253) [002] d.s3 24574.344284: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
82005          <idle>-0     (-----) [000] .n.1 24574.344290: cpu_idle: state=4294967295 cpu_id=0
82006 crtc_commit:111-253   (  253) [002] d.s2 24574.344292: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
82007 crtc_commit:111-253   (  253) [002] d.s3 24574.344304: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
82008          <idle>-0     (-----) [000] d..2 24574.344305: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
82009 crtc_commit:111-253   (  253) [002] d.s2 24574.344311: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
82010 crtc_commit:111-253   (  253) [002] d.s3 24574.344329: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
82011 crtc_commit:111-253   (  253) [002] d.s2 24574.344334: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
82012          <idle>-0     (-----) [001] .n.1 24574.344337: cpu_idle: state=4294967295 cpu_id=1
82013     kworker/0:1-13012 (13012) [000] d..2 24574.344350: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82014          <idle>-0     (-----) [001] d..2 24574.344353: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
82015          <idle>-0     (-----) [000] d..1 24574.344361: cpu_idle: state=0 cpu_id=0
82016 crtc_commit:111-253   (  253) [002] d.s3 24574.344378: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
82017          <idle>-0     (-----) [000] .n.1 24574.344384: cpu_idle: state=4294967295 cpu_id=0
82018     kworker/1:1-13091 (13091) [001] d..2 24574.344393: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
82019          <idle>-0     (-----) [000] d..2 24574.344395: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
82020          <idle>-0     (-----) [001] d..1 24574.344406: cpu_idle: state=0 cpu_id=1
82021  kworker/u16:15-18488 (18488) [000] .... 24574.344476: clk_set_rate: l3_cluster0_vote_clk 480000000
82022  kworker/u16:15-18488 (18488) [000] .... 24574.344484: clk_set_rate: l3_clk 480000000
82023  kworker/u16:15-18488 (18488) [000] d..2 24574.344844: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
82024          <idle>-0     (-----) [000] d..1 24574.344860: cpu_idle: state=0 cpu_id=0
82025          <idle>-0     (-----) [003] d.s3 24574.344871: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
82026          <idle>-0     (-----) [003] d.s4 24574.344885: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
82027          <idle>-0     (-----) [003] d.s4 24574.344894: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
82028          <idle>-0     (-----) [000] .n.1 24574.344901: cpu_idle: state=4294967295 cpu_id=0
82029          <idle>-0     (-----) [003] ...1 24574.344904: cpu_idle: state=4294967295 cpu_id=3
82030          <idle>-0     (-----) [003] d..1 24574.344909: cpu_idle: state=0 cpu_id=3
82031          <idle>-0     (-----) [000] d..2 24574.344913: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
82032  kworker/u16:15-18488 (18488) [000] d..2 24574.344944: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82033          <idle>-0     (-----) [000] d..1 24574.344955: cpu_idle: state=0 cpu_id=0
82034 crtc_commit:111-253   (  253) [002] d..2 24574.345786: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
82035     kworker/2:0-12895 (12895) [002] d..2 24574.345827: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82036          <idle>-0     (-----) [002] d..1 24574.345845: cpu_idle: state=0 cpu_id=2
82037          <idle>-0     (-----) [001] ...1 24574.346085: cpu_idle: state=4294967295 cpu_id=1
82038          <idle>-0     (-----) [001] d..1 24574.346090: cpu_idle: state=0 cpu_id=1
82039          <idle>-0     (-----) [000] ...1 24574.346331: cpu_idle: state=4294967295 cpu_id=0
82040          <idle>-0     (-----) [000] d..1 24574.346336: cpu_idle: state=0 cpu_id=0
82041          <idle>-0     (-----) [003] d.s2 24574.347577: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
82042          <idle>-0     (-----) [003] dns3 24574.347594: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
82043          <idle>-0     (-----) [003] .n.1 24574.347616: cpu_idle: state=4294967295 cpu_id=3
82044          <idle>-0     (-----) [003] d..2 24574.347628: 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
82045     rcu_preempt-7     (    7) [003] d..2 24574.347645: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
82046     rcu_preempt-7     (    7) [003] d..3 24574.347686: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
82047     rcu_preempt-7     (    7) [003] d..2 24574.347702: 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
82048         rcuop/0-10    (   10) [003] d..2 24574.347710: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
82049         rcuop/0-10    (   10) [003] d..3 24574.347745: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
82050         rcuop/0-10    (   10) [003] d..2 24574.347756: 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
82051         rcuop/1-21    (   21) [003] d..2 24574.347807: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82052          <idle>-0     (-----) [003] d..1 24574.347819: cpu_idle: state=0 cpu_id=3
82053          <idle>-0     (-----) [000] d.h5 24574.350744: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
82054          <idle>-0     (-----) [000] dnh6 24574.350760: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
82055          <idle>-0     (-----) [000] dnh5 24574.350767: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
82056          <idle>-0     (-----) [000] dnh6 24574.350780: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
82057          <idle>-0     (-----) [002] .n.1 24574.350787: cpu_idle: state=4294967295 cpu_id=2
82058          <idle>-0     (-----) [000] .n.1 24574.350794: cpu_idle: state=4294967295 cpu_id=0
82059          <idle>-0     (-----) [002] d..2 24574.350799: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
82060          <idle>-0     (-----) [000] d..2 24574.350805: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
82061  crtc_event:111-254   (  254) [000] d..2 24574.350844: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82062          <idle>-0     (-----) [000] d..1 24574.350857: cpu_idle: state=0 cpu_id=0
82063 crtc_commit:111-253   (  253) [002] d..2 24574.351034: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
82064          <idle>-0     (-----) [002] d..1 24574.351045: cpu_idle: state=0 cpu_id=2
82065          <idle>-0     (-----) [003] d.h2 24574.352091: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=003
82066          <idle>-0     (-----) [003] d.h3 24574.352122: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=000
82067          <idle>-0     (-----) [000] .n.1 24574.352129: cpu_idle: state=4294967295 cpu_id=0
82068          <idle>-0     (-----) [003] ...1 24574.352134: cpu_idle: state=4294967295 cpu_id=3
82069          <idle>-0     (-----) [003] d..1 24574.352139: cpu_idle: state=0 cpu_id=3
82070          <idle>-0     (-----) [000] d..2 24574.352142: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
82071           <...>-13147 (-----) [000] d..2 24574.352586: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
82072           <...>-13147 (-----) [000] d..3 24574.352626: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
82073           <...>-13147 (-----) [000] d..2 24574.352772: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
82074     logd.writer-563   (  555) [000] d..2 24574.352974: 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
82075          <idle>-0     (-----) [000] d.h6 24574.353076: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
82076          <idle>-0     (-----) [000] d.h7 24574.353095: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
82077          <idle>-0     (-----) [002] .n.1 24574.353101: cpu_idle: state=4294967295 cpu_id=2
82078          <idle>-0     (-----) [002] d..2 24574.353109: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
82079          <idle>-0     (-----) [000] d..1 24574.353123: cpu_idle: state=0 cpu_id=0
82080 crtc_commit:111-253   (  253) [002] d..2 24574.353289: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82081          <idle>-0     (-----) [002] d..1 24574.353299: cpu_idle: state=0 cpu_id=2
82082          <idle>-0     (-----) [000] d.h5 24574.353361: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
82083          <idle>-0     (-----) [000] dnh6 24574.353372: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
82084          <idle>-0     (-----) [000] .n.1 24574.353388: cpu_idle: state=4294967295 cpu_id=0
82085          <idle>-0     (-----) [000] d..2 24574.353399: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
82086  crtc_event:111-254   (  254) [000] d..2 24574.353427: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82087          <idle>-0     (-----) [000] d..1 24574.353438: cpu_idle: state=0 cpu_id=0
82088          <idle>-0     (-----) [003] d.h2 24574.354067: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
82089          <idle>-0     (-----) [003] dnh3 24574.354082: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
82090          <idle>-0     (-----) [003] .n.1 24574.354089: cpu_idle: state=4294967295 cpu_id=3
82091          <idle>-0     (-----) [003] d..2 24574.354100: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
82092        DispSync-23904 (23896) [003] d..1 24574.354127: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
82093        DispSync-23904 (23896) [003] d..2 24574.354150: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
82094          <idle>-0     (-----) [002] .n.1 24574.354156: cpu_idle: state=4294967295 cpu_id=2
82095          <idle>-0     (-----) [002] d..2 24574.354166: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
82096        DispSync-23904 (23896) [003] d..2 24574.354185: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82097          <idle>-0     (-----) [003] d..1 24574.354195: cpu_idle: state=0 cpu_id=3
82098          <idle>-0     (-----) [003] d.s2 24574.354237: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
82099   sfEventThread-23906 (23896) [002] d.s2 24574.354247: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
82100          <idle>-0     (-----) [003] dns3 24574.354252: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
82101          <idle>-0     (-----) [003] .n.1 24574.354262: cpu_idle: state=4294967295 cpu_id=3
82102   sfEventThread-23906 (23896) [002] d.s3 24574.354267: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
82103          <idle>-0     (-----) [003] d..2 24574.354271: 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
82104          <idle>-0     (-----) [000] .n.1 24574.354273: cpu_idle: state=4294967295 cpu_id=0
82105   sfEventThread-23906 (23896) [002] d.s2 24574.354274: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
82106          <idle>-0     (-----) [000] d..2 24574.354286: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
82107     rcu_preempt-7     (    7) [003] d..2 24574.354300: 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
82108          <idle>-0     (-----) [003] d..1 24574.354311: cpu_idle: state=0 cpu_id=3
82109  crtc_event:111-254   (  254) [000] d..2 24574.354317: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82110   sfEventThread-23906 (23896) [002] d.s3 24574.354319: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
82111          <idle>-0     (-----) [003] .n.1 24574.354325: cpu_idle: state=4294967295 cpu_id=3
82112          <idle>-0     (-----) [000] d..1 24574.354326: cpu_idle: state=0 cpu_id=0
82113          <idle>-0     (-----) [003] d..2 24574.354336: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
82114   sfEventThread-23906 (23896) [002] d..3 24574.354342: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
82115   sfEventThread-23906 (23896) [002] d..4 24574.354365: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
82116          <idle>-0     (-----) [001] .n.1 24574.354370: cpu_idle: state=4294967295 cpu_id=1
82117          <idle>-0     (-----) [001] d..2 24574.354381: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
82118   sfEventThread-23906 (23896) [002] d..2 24574.354421: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82119          <idle>-0     (-----) [002] d..1 24574.354438: cpu_idle: state=0 cpu_id=2
82120  kworker/u16:15-18488 (18488) [003] d..2 24574.354569: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
82121          <idle>-0     (-----) [003] d.s4 24574.354611: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
82122          <idle>-0     (-----) [003] d.s5 24574.354626: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
82123          <idle>-0     (-----) [003] dns5 24574.354632: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
82124          <idle>-0     (-----) [003] d..2 24574.354645: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
82125  kworker/u16:15-18488 (18488) [003] .... 24574.354742: clk_set_rate: l3_cluster0_vote_clk 300000000
82126  kworker/u16:15-18488 (18488) [003] .... 24574.354747: clk_set_rate: l3_clk 300000000
82127  kworker/u16:15-18488 (18488) [003] d..2 24574.354805: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82128          <idle>-0     (-----) [003] d..1 24574.354820: cpu_idle: state=0 cpu_id=3
82129  surfaceflinger-23896 (23896) [001] d..2 24574.355055: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
82130          <idle>-0     (-----) [003] d.h2 24574.355060: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
82131          <idle>-0     (-----) [003] dnh3 24574.355079: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
82132          <idle>-0     (-----) [003] .n.1 24574.355089: cpu_idle: state=4294967295 cpu_id=3
82133          <idle>-0     (-----) [003] d..2 24574.355105: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
82134  surfaceflinger-23896 (23896) [001] d..3 24574.355114: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
82135          <idle>-0     (-----) [000] .n.1 24574.355118: cpu_idle: state=4294967295 cpu_id=0
82136        DispSync-23904 (23896) [003] d..1 24574.355124: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
82137          <idle>-0     (-----) [000] d..2 24574.355132: 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
82138        DispSync-23904 (23896) [003] d..2 24574.355151: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
82139          <idle>-0     (-----) [002] .n.1 24574.355159: cpu_idle: state=4294967295 cpu_id=2
82140         rcuop/0-10    (   10) [000] d..2 24574.355159: 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
82141          <idle>-0     (-----) [000] d..1 24574.355170: cpu_idle: state=0 cpu_id=0
82142          <idle>-0     (-----) [002] d..2 24574.355171: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
82143        DispSync-23904 (23896) [003] d..2 24574.355190: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82144          <idle>-0     (-----) [003] d..1 24574.355203: cpu_idle: state=0 cpu_id=3
82145  appEventThread-23905 (23896) [002] d..3 24574.355244: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
82146  appEventThread-23905 (23896) [002] d..4 24574.355277: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
82147          <idle>-0     (-----) [000] .n.1 24574.355283: cpu_idle: state=4294967295 cpu_id=0
82148          <idle>-0     (-----) [000] d..2 24574.355295: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
82149  appEventThread-23905 (23896) [002] d..3 24574.355299: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
82150  appEventThread-23905 (23896) [002] d..4 24574.355321: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
82151          <idle>-0     (-----) [003] .n.1 24574.355328: cpu_idle: state=4294967295 cpu_id=3
82152          <idle>-0     (-----) [003] d..2 24574.355342: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
82153  appEventThread-23905 (23896) [002] d..2 24574.355366: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82154          <idle>-0     (-----) [002] d..1 24574.355384: cpu_idle: state=0 cpu_id=2
82155  surfaceflinger-23896 (23896) [001] d..1 24574.355409: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
82156  surfaceflinger-23896 (23896) [001] d..2 24574.355436: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
82157          <idle>-0     (-----) [002] .n.1 24574.355442: cpu_idle: state=4294967295 cpu_id=2
82158          <idle>-0     (-----) [002] d..2 24574.355454: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
82159   sfEventThread-23906 (23896) [002] d..2 24574.355507: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82160          <idle>-0     (-----) [002] d..1 24574.355520: cpu_idle: state=0 cpu_id=2
82161<...>-24151 ( 24151) [003] .... 24574.355727: binder_transaction: transaction=1670753 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
82162<...>-24151 ( 24151) [003] d..4 24574.355742: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
82163<...>-24151 ( 24151) [003] d..5 24574.355781: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
82164          <idle>-0     (-----) [002] .n.1 24574.355786: cpu_idle: state=4294967295 cpu_id=2
82165 s.nexuslauncher-24827 (24827) [000] .... 24574.355792: binder_transaction: transaction=1670754 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
82166          <idle>-0     (-----) [002] d..2 24574.355800: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
82167 s.nexuslauncher-24827 (24827) [000] d..4 24574.355806: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
82168<...>-24151 ( 24151) [003] d..3 24574.355833: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
82169          <idle>-0     (-----) [005] dnh2 24574.355860: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
82170          <idle>-0     (-----) [005] .n.1 24574.355913: cpu_idle: state=4294967295 cpu_id=5
82171          <idle>-0     (-----) [006] dnh2 24574.355915: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
82172 s.nexuslauncher-24827 (24827) [000] d.h5 24574.355915: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
82173          <idle>-0     (-----) [006] .n.1 24574.355919: cpu_idle: state=4294967295 cpu_id=6
82174          <idle>-0     (-----) [005] d..2 24574.355964: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
82175          <idle>-0     (-----) [006] d..2 24574.355966: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
82176 s.nexuslauncher-24827 (24827) [000] d.h5 24574.355973: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
82177          <idle>-0     (-----) [004] dnh2 24574.355980: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
82178          <idle>-0     (-----) [004] .n.1 24574.355984: cpu_idle: state=4294967295 cpu_id=4
82179    RenderThread-24437 (24151) [006] d..2 24574.355987: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
82180          <idle>-0     (-----) [004] d..2 24574.355989: 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
82181          <idle>-0     (-----) [006] d..1 24574.355993: cpu_idle: state=0 cpu_id=6
82182 s.nexuslauncher-24827 (24827) [000] dnh6 24574.355997: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
82183         sugov:4-560   (  560) [004] d..2 24574.356002: 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
82184  Binder:23896_4-24423 (23896) [005] .... 24574.356007: binder_transaction_received: transaction=1670754
82185  Binder:23896_5-25989 (23896) [002] .... 24574.356007: binder_transaction_received: transaction=1670753
82186          <idle>-0     (-----) [004] d..1 24574.356008: cpu_idle: state=0 cpu_id=4
82187 s.nexuslauncher-24827 (24827) [000] d..2 24574.356013: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
82188  Binder:23896_4-24423 (23896) [005] d..1 24574.356030: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
82189         sugov:0-559   (  559) [000] d..2 24574.356030: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
82190  Binder:23896_4-24423 (23896) [005] d..1 24574.356051: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
82191 s.nexuslauncher-24827 (24827) [000] dnh1 24574.356058: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
82192 s.nexuslauncher-24827 (24827) [000] d..2 24574.356073: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
82193  Binder:23896_5-25989 (23896) [002] d..2 24574.356078: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82194          <idle>-0     (-----) [002] d..1 24574.356095: cpu_idle: state=0 cpu_id=2
82195          <idle>-0     (-----) [002] dnh2 24574.356113: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
82196  Binder:23896_4-24423 (23896) [005] d..2 24574.356119: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
82197          <idle>-0     (-----) [002] .n.1 24574.356120: cpu_idle: state=4294967295 cpu_id=2
82198          <idle>-0     (-----) [005] d..1 24574.356128: cpu_idle: state=0 cpu_id=5
82199  appEventThread-23905 (23896) [000] d..2 24574.356129: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
82200          <idle>-0     (-----) [002] d..2 24574.356131: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
82201<...>-24151 ( 24151) [003] d..3 24574.356133: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
82202  Binder:23896_5-25989 (23896) [002] d..1 24574.356143: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
82203          <idle>-0     (-----) [006] dnh2 24574.356161: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
82204  Binder:23896_5-25989 (23896) [002] d..2 24574.356163: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
82205          <idle>-0     (-----) [006] .n.1 24574.356166: cpu_idle: state=4294967295 cpu_id=6
82206 s.nexuslauncher-24827 (24827) [000] dn.3 24574.356166: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
82207          <idle>-0     (-----) [006] d..2 24574.356171: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
82208<...>-24151 ( 24151) [003] d..2 24574.356200: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82209          <idle>-0     (-----) [005] dnh2 24574.356210: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
82210          <idle>-0     (-----) [003] d..1 24574.356221: cpu_idle: state=0 cpu_id=3
82211          <idle>-0     (-----) [005] .n.1 24574.356249: cpu_idle: state=4294967295 cpu_id=5
82212          <idle>-0     (-----) [005] d..2 24574.356258: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
82213 s.nexuslauncher-24827 (24827) [000] d..2 24574.356261: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
82214  Binder:23896_5-25989 (23896) [002] d..2 24574.356264: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82215    RenderThread-24437 (24151) [006] d..1 24574.356279: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
82216          <idle>-0     (-----) [002] d..1 24574.356282: cpu_idle: state=0 cpu_id=2
82217    RenderThread-25194 (24827) [005] d..2 24574.356300: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
82218  appEventThread-23905 (23896) [000] d..2 24574.356303: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
82219          <idle>-0     (-----) [003] dnh2 24574.356309: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
82220          <idle>-0     (-----) [005] d..1 24574.356311: cpu_idle: state=0 cpu_id=5
82221          <idle>-0     (-----) [003] .n.1 24574.356316: cpu_idle: state=4294967295 cpu_id=3
82222          <idle>-0     (-----) [003] d..2 24574.356330: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
82223    RenderThread-24437 (24151) [006] .... 24574.356350: binder_transaction: transaction=1670755 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
82224    RenderThread-24437 (24151) [006] d..4 24574.356357: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
82225    RenderThread-24437 (24151) [006] d..5 24574.356378: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=006
82226    RenderThread-24437 (24151) [006] d.h5 24574.356418: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
82227    RenderThread-24437 (24151) [006] d.h6 24574.356431: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
82228          <idle>-0     (-----) [004] .n.1 24574.356436: cpu_idle: state=4294967295 cpu_id=4
82229<...>-24151 ( 24151) [003] d..2 24574.356441: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82230          <idle>-0     (-----) [004] d..2 24574.356442: 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
82231    RenderThread-24437 (24151) [006] d..2 24574.356444: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
82232  Binder:23896_5-25989 (23896) [006] .... 24574.356453: binder_transaction_received: transaction=1670755
82233         sugov:4-560   (  560) [004] d..2 24574.356455: 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
82234          <idle>-0     (-----) [003] d..1 24574.356457: cpu_idle: state=0 cpu_id=3
82235          <idle>-0     (-----) [004] d..1 24574.356460: cpu_idle: state=0 cpu_id=4
82236  Binder:23896_5-25989 (23896) [006] .... 24574.356517: binder_transaction: transaction=1670756 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
82237  Binder:23896_5-25989 (23896) [006] d..2 24574.356527: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
82238  Binder:23896_5-25989 (23896) [006] d..3 24574.356537: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
82239  Binder:23896_5-25989 (23896) [006] d..2 24574.356561: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
82240    RenderThread-24437 (24151) [006] .... 24574.356565: binder_transaction_received: transaction=1670756
82241  surfaceflinger-23896 (23896) [001] ...1 24574.356655: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
82242  surfaceflinger-23896 (23896) [001] ...1 24574.356664: tracing_mark_write: E|23896
82243  surfaceflinger-23896 (23896) [001] .... 24574.356736: binder_transaction: transaction=1670757 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
82244  surfaceflinger-23896 (23896) [001] ...2 24574.356769: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
82245  surfaceflinger-23896 (23896) [001] d..4 24574.356779: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
82246  surfaceflinger-23896 (23896) [001] d..5 24574.356816: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
82247          <idle>-0     (-----) [002] .n.1 24574.356823: cpu_idle: state=4294967295 cpu_id=2
82248          <idle>-0     (-----) [002] d..2 24574.356834: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
82249  HwBinder:598_3-633   (  598) [002] .... 24574.356849: binder_transaction_received: transaction=1670757
82250  surfaceflinger-23896 (23896) [001] d..2 24574.356857: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
82251          <idle>-0     (-----) [001] d..1 24574.356887: cpu_idle: state=0 cpu_id=1
82252  HwBinder:598_3-633   (  598) [002] ...1 24574.356910: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
82253 s.nexuslauncher-24827 (24827) [000] d..3 24574.356918: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
82254 s.nexuslauncher-24827 (24827) [000] d..4 24574.356964: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
82255          <idle>-0     (-----) [001] .n.1 24574.356973: cpu_idle: state=4294967295 cpu_id=1
82256 s.nexuslauncher-24827 (24827) [000] d.h3 24574.357022: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
82257          <idle>-0     (-----) [001] d..2 24574.357025: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
82258 s.nexuslauncher-24827 (24827) [000] d.h3 24574.357037: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
82259          <idle>-0     (-----) [004] dnh2 24574.357043: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
82260          <idle>-0     (-----) [004] .n.1 24574.357047: cpu_idle: state=4294967295 cpu_id=4
82261          <idle>-0     (-----) [004] d..2 24574.357052: 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
82262 s.nexuslauncher-24827 (24827) [000] d.h4 24574.357059: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
82263         sugov:4-560   (  560) [004] d..2 24574.357063: 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
82264          <idle>-0     (-----) [003] .n.1 24574.357066: cpu_idle: state=4294967295 cpu_id=3
82265          <idle>-0     (-----) [004] d..1 24574.357069: cpu_idle: state=0 cpu_id=4
82266  HwBinder:598_3-633   (  598) [002] ...1 24574.357078: tracing_mark_write: B|598|HWCSession::PresentDisplay::
82267          <idle>-0     (-----) [003] d..2 24574.357078: 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
82268 s.nexuslauncher-24827 (24827) [000] d..2 24574.357103: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82269         sugov:0-559   (  559) [003] .... 24574.357118: clk_set_rate: pwrcl_clk 1056000000
82270          <idle>-0     (-----) [000] d..1 24574.357127: cpu_idle: state=0 cpu_id=0
82271         sugov:0-559   (  559) [003] .... 24574.357132: clk_set_rate: cpu3_pwrcl_clk 902400000
82272         sugov:0-559   (  559) [003] .... 24574.357144: clk_set_rate: cpu2_pwrcl_clk 902400000
82273         sugov:0-559   (  559) [003] .... 24574.357153: clk_set_rate: cpu1_pwrcl_clk 902400000
82274         sugov:0-559   (  559) [003] .... 24574.357161: clk_set_rate: cpu0_pwrcl_clk 1056000000
82275         sugov:0-559   (  559) [003] .... 24574.357171: cpu_frequency: state=1056000 cpu_id=0
82276         sugov:0-559   (  559) [003] .... 24574.357199: cpu_frequency: state=1056000 cpu_id=1
82277         sugov:0-559   (  559) [003] .... 24574.357206: cpu_frequency: state=1056000 cpu_id=2
82278         sugov:0-559   (  559) [003] .... 24574.357212: cpu_frequency: state=1056000 cpu_id=3
82279         sugov:0-559   (  559) [003] d..2 24574.357244: 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
82280          <idle>-0     (-----) [003] d..1 24574.357256: cpu_idle: state=0 cpu_id=3
82281  HwBinder:598_3-633   (  598) [002] ...1 24574.357256: tracing_mark_write: B|598|HWDeviceDRM::Commit::
82282    RenderThread-25194 (24827) [001] d..1 24574.357260: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
82283  HwBinder:598_3-633   (  598) [002] ...1 24574.357271: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
82284    RenderThread-25194 (24827) [001] d..2 24574.357287: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
82285          <idle>-0     (-----) [000] .n.1 24574.357296: cpu_idle: state=4294967295 cpu_id=0
82286          <idle>-0     (-----) [000] d..2 24574.357310: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
82287    RenderThread-25194 (24827) [001] d..1 24574.357319: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
82288    RenderThread-25194 (24827) [001] d..2 24574.357352: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=003
82289          <idle>-0     (-----) [003] .n.1 24574.357359: cpu_idle: state=4294967295 cpu_id=3
82290          <idle>-0     (-----) [003] d..2 24574.357404: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
82291 s.nexuslauncher-24827 (24827) [000] d..2 24574.357431: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82292          <idle>-0     (-----) [000] d..1 24574.357449: cpu_idle: state=0 cpu_id=0
82293    RenderThread-25194 (24827) [001] .... 24574.357494: binder_transaction: transaction=1670758 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
82294    RenderThread-25194 (24827) [001] ...2 24574.357504: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
82295    RenderThread-25194 (24827) [001] d..4 24574.357511: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=006
82296    RenderThread-25194 (24827) [001] d..5 24574.357540: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
82297    RenderThread-25194 (24827) [001] d.H5 24574.357630: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
82298    RenderThread-25194 (24827) [001] d.H5 24574.357647: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
82299          <idle>-0     (-----) [004] dnh2 24574.357653: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
82300          <idle>-0     (-----) [004] .n.1 24574.357657: cpu_idle: state=4294967295 cpu_id=4
82301          <idle>-0     (-----) [004] d..2 24574.357663: 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
82302    RenderThread-25194 (24827) [001] d.H6 24574.357670: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
82303         sugov:4-560   (  560) [004] d..2 24574.357676: 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
82304          <idle>-0     (-----) [000] .n.1 24574.357680: cpu_idle: state=4294967295 cpu_id=0
82305          <idle>-0     (-----) [004] d..1 24574.357682: cpu_idle: state=0 cpu_id=4
82306          <idle>-0     (-----) [000] d..2 24574.357709: 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
82307         sugov:0-559   (  559) [000] d..2 24574.357742: 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
82308          <idle>-0     (-----) [000] d..1 24574.357753: cpu_idle: state=0 cpu_id=0
82309    RenderThread-25194 (24827) [001] d..2 24574.357765: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
82310  Binder:23896_5-25989 (23896) [001] .... 24574.357776: binder_transaction_received: transaction=1670758
82311<...>-27853 ( 24827) [003] .... 24574.357835: binder_transaction: transaction=1670759 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
82312  Binder:23896_5-25989 (23896) [001] .... 24574.357855: binder_transaction: transaction=1670760 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
82313<...>-27853 ( 24827) [003] ...2 24574.357865: binder_set_priority: proc=23896 thread=24423 old=120 => new=118 desired=118
82314<...>-27853 ( 24827) [003] d..4 24574.357870: sched_waking: comm=Binder:23896_4 pid=24423 prio=118 target_cpu=005
82315<...>-27853 ( 24827) [003] d..5 24574.357905: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=118 target_cpu=003
82316  HwBinder:598_3-633   (  598) [002] d..2 24574.357922: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
82317  Binder:23896_5-25989 (23896) [001] d..2 24574.357955: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
82318<...>-27853 ( 24827) [003] d..2 24574.357968: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=118
82319  Binder:23896_5-25989 (23896) [001] dn.3 24574.357972: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
82320  Binder:23896_4-24423 (23896) [003] .... 24574.357981: binder_transaction_received: transaction=1670759
82321  Binder:23896_5-25989 (23896) [001] d..2 24574.357982: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
82322  HwBinder:598_3-633   (  598) [002] d..3 24574.357986: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
82323    RenderThread-25194 (24827) [001] .... 24574.357992: binder_transaction_received: transaction=1670760
82324    RenderThread-24437 (24151) [006] .... 24574.358018: binder_transaction: transaction=1670761 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
82325          <idle>-0     (-----) [000] .n.1 24574.358025: cpu_idle: state=4294967295 cpu_id=0
82326    RenderThread-24437 (24151) [006] d..4 24574.358035: sched_waking: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=005
82327          <idle>-0     (-----) [000] d..2 24574.358035: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
82328    RenderThread-24437 (24151) [006] dn.5 24574.358060: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=006
82329    RenderThread-24437 (24151) [006] d..2 24574.358069: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
82330  Binder:23896_3-23986 (23896) [006] .... 24574.358082: binder_transaction_received: transaction=1670761
82331  HwBinder:598_3-633   (  598) [002] ...1 24574.358112: tracing_mark_write: E|598
82332  HwBinder:598_3-633   (  598) [002] ...1 24574.358119: tracing_mark_write: E|598
82333  Binder:23896_4-24423 (23896) [003] .... 24574.358150: binder_transaction: transaction=1670762 dest_node=0 dest_proc=24827 dest_thread=27853 reply=1 flags=0x0 code=0x0
82334  Binder:23896_4-24423 (23896) [003] d..2 24574.358160: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=003
82335  Binder:23896_4-24423 (23896) [003] d..3 24574.358178: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=003
82336  Binder:23896_4-24423 (23896) [003] .... 24574.358182: binder_set_priority: proc=23896 thread=24423 old=118 => new=120 desired=120
82337  HwBinder:598_3-633   (  598) [002] ...1 24574.358210: tracing_mark_write: E|598
82338  Binder:23896_3-23986 (23896) [006] .... 24574.358220: binder_transaction: transaction=1670763 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
82339  Binder:23896_4-24423 (23896) [003] d..2 24574.358249: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
82340 crtc_commit:111-253   (  253) [000] d.h2 24574.358249: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
82341<...>-27853 ( 24827) [003] .... 24574.358259: binder_transaction_received: transaction=1670762
82342  Binder:23896_3-23986 (23896) [006] d..2 24574.358266: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
82343    RenderThread-24437 (24151) [006] .... 24574.358272: binder_transaction_received: transaction=1670763
82344  HwBinder:598_3-633   (  598) [002] ...1 24574.358274: tracing_mark_write: E|598
82345 crtc_commit:111-253   (  253) [000] d.h3 24574.358282: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
82346  HwBinder:598_3-633   (  598) [002] .... 24574.358295: binder_transaction: transaction=1670764 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
82347<...>-27853 ( 24827) [003] d..2 24574.358296: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
82348  HwBinder:598_3-633   (  598) [002] d..2 24574.358322: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
82349  HwBinder:598_3-633   (  598) [002] d..3 24574.358346: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
82350  HwBinder:598_3-633   (  598) [002] .... 24574.358352: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
82351    RenderThread-24437 (24151) [006] d..2 24574.358361: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
82352 kgsl_worker_thr-246   (  246) [003] d..2 24574.358362: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
82353    RenderThread-25194 (24827) [001] d..2 24574.358369: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
82354          <idle>-0     (-----) [006] d..1 24574.358381: cpu_idle: state=0 cpu_id=6
82355  surfaceflinger-23896 (23896) [001] .... 24574.358385: binder_transaction_received: transaction=1670764
82356 kgsl_worker_thr-246   (  246) [003] d..3 24574.358387: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
82357 kgsl_worker_thr-246   (  246) [003] d..2 24574.358413: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
82358<...>-27853 ( 24827) [003] d..2 24574.358460: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
82359  HwBinder:598_3-633   (  598) [002] d..2 24574.358479: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
82360  kworker/u16:15-18488 (18488) [003] d..2 24574.358886: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82361          <idle>-0     (-----) [003] d..1 24574.358901: cpu_idle: state=0 cpu_id=3
82362 crtc_commit:111-253   (  253) [000] d..2 24574.358922: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
82363  surfaceflinger-23896 (23896) [001] d..2 24574.358933: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
82364  Binder:23896_5-25989 (23896) [001] .... 24574.358941: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
82365          <idle>-0     (-----) [000] d..1 24574.358941: cpu_idle: state=0 cpu_id=0
82366  Binder:23896_5-25989 (23896) [001] d..2 24574.359025: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
82367          <idle>-0     (-----) [001] d..1 24574.359051: cpu_idle: state=0 cpu_id=1
82368          <idle>-0     (-----) [000] ...1 24574.359472: cpu_idle: state=4294967295 cpu_id=0
82369          <idle>-0     (-----) [000] d..1 24574.359476: cpu_idle: state=0 cpu_id=0
82370    RenderThread-25194 (24827) [002] .... 24574.359542: binder_transaction: transaction=1670765 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
82371    RenderThread-25194 (24827) [002] ...2 24574.359560: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
82372    RenderThread-25194 (24827) [002] d..4 24574.359565: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
82373    RenderThread-25194 (24827) [002] d..5 24574.359596: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
82374    RenderThread-25194 (24827) [002] d..2 24574.359613: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
82375  Binder:23896_5-25989 (23896) [002] .... 24574.359623: binder_transaction_received: transaction=1670765
82376  Binder:23896_5-25989 (23896) [002] .... 24574.359770: binder_transaction: transaction=1670766 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
82377  Binder:23896_5-25989 (23896) [002] d..2 24574.359781: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
82378  Binder:23896_5-25989 (23896) [002] dn.3 24574.359800: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
82379  Binder:23896_5-25989 (23896) [002] d..2 24574.359809: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
82380    RenderThread-25194 (24827) [002] .... 24574.359819: binder_transaction_received: transaction=1670766
82381    RenderThread-25194 (24827) [002] d..2 24574.359956: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
82382  Binder:23896_5-25989 (23896) [002] .... 24574.359964: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
82383  Binder:23896_5-25989 (23896) [002] d..2 24574.360036: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82384          <idle>-0     (-----) [002] d..1 24574.360061: cpu_idle: state=0 cpu_id=2
82385          <idle>-0     (-----) [001] ...1 24574.360544: cpu_idle: state=4294967295 cpu_id=1
82386          <idle>-0     (-----) [001] d..1 24574.360549: cpu_idle: state=0 cpu_id=1
82387          <idle>-0     (-----) [003] d.s2 24574.360920: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
82388          <idle>-0     (-----) [003] dns3 24574.360942: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
82389          <idle>-0     (-----) [003] dns3 24574.360950: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
82390          <idle>-0     (-----) [003] dns4 24574.360961: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
82391          <idle>-0     (-----) [003] .n.1 24574.360976: cpu_idle: state=4294967295 cpu_id=3
82392          <idle>-0     (-----) [003] d..2 24574.360987: 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
82393     rcu_preempt-7     (    7) [003] d..2 24574.361004: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
82394     rcu_preempt-7     (    7) [003] d..3 24574.361024: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
82395     rcu_preempt-7     (    7) [003] d..2 24574.361044: 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
82396         rcuop/2-29    (   29) [003] d..2 24574.361068: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
82397          <idle>-0     (-----) [000] d.h3 24574.361304: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
82398          <idle>-0     (-----) [000] d.h4 24574.361325: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
82399  kworker/u16:15-18488 (18488) [003] d..2 24574.361335: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
82400          <idle>-0     (-----) [000] ...1 24574.361350: cpu_idle: state=4294967295 cpu_id=0
82401          <idle>-0     (-----) [000] d..1 24574.361356: cpu_idle: state=0 cpu_id=0
82402 kgsl_worker_thr-246   (  246) [003] d.s3 24574.361378: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
82403          <idle>-0     (-----) [002] ...1 24574.361393: cpu_idle: state=4294967295 cpu_id=2
82404 kgsl_worker_thr-246   (  246) [003] d.s4 24574.361397: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
82405          <idle>-0     (-----) [002] d..1 24574.361398: cpu_idle: state=0 cpu_id=2
82406 kgsl_worker_thr-246   (  246) [003] d..2 24574.361473: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
82407     ksoftirqd/3-34    (   34) [003] d.s2 24574.361501: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
82408     ksoftirqd/3-34    (   34) [003] d.s3 24574.361522: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
82409     ksoftirqd/3-34    (   34) [003] d.s3 24574.361531: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
82410     ksoftirqd/3-34    (   34) [003] d..2 24574.361544: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
82411  kworker/u16:15-18488 (18488) [003] d..2 24574.361583: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82412          <idle>-0     (-----) [003] d..1 24574.361600: cpu_idle: state=0 cpu_id=3
82413          <idle>-0     (-----) [000] ...1 24574.362635: cpu_idle: state=4294967295 cpu_id=0
82414          <idle>-0     (-----) [000] d..1 24574.362640: cpu_idle: state=0 cpu_id=0
82415          <idle>-0     (-----) [000] d.h5 24574.367232: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
82416          <idle>-0     (-----) [000] dnh6 24574.367252: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
82417          <idle>-0     (-----) [000] dnh5 24574.367260: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
82418          <idle>-0     (-----) [000] dnh6 24574.367281: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
82419          <idle>-0     (-----) [001] .n.1 24574.367286: cpu_idle: state=4294967295 cpu_id=1
82420          <idle>-0     (-----) [000] .n.1 24574.367298: cpu_idle: state=4294967295 cpu_id=0
82421          <idle>-0     (-----) [001] d..2 24574.367300: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
82422          <idle>-0     (-----) [000] d..2 24574.367311: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
82423  crtc_event:111-254   (  254) [000] d..2 24574.367358: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82424          <idle>-0     (-----) [000] d..2 24574.367364: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
82425          <idle>-0     (-----) [000] dn.3 24574.367386: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
82426          <idle>-0     (-----) [000] d..2 24574.367396: 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
82427     ksoftirqd/0-3     (    3) [000] d.s2 24574.367417: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
82428     ksoftirqd/0-3     (    3) [000] d.s3 24574.367469: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
82429     ksoftirqd/0-3     (    3) [000] d..2 24574.367489: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
82430 crtc_commit:111-253   (  253) [001] d..2 24574.367523: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
82431          <idle>-0     (-----) [001] d..2 24574.367554: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
82432          <idle>-0     (-----) [003] d.s2 24574.367577: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
82433          <idle>-0     (-----) [001] dn.3 24574.367577: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
82434  kworker/u16:15-18488 (18488) [000] d.s4 24574.367586: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
82435          <idle>-0     (-----) [003] dns3 24574.367593: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
82436  kworker/u16:15-18488 (18488) [000] dns5 24574.367603: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
82437          <idle>-0     (-----) [003] .n.1 24574.367607: cpu_idle: state=4294967295 cpu_id=3
82438          <idle>-0     (-----) [001] dns3 24574.367613: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
82439          <idle>-0     (-----) [003] d..2 24574.367620: 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
82440  kworker/u16:15-18488 (18488) [000] d..2 24574.367626: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
82441          <idle>-0     (-----) [001] dns4 24574.367650: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
82442     rcu_preempt-7     (    7) [003] d..2 24574.367654: 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
82443          <idle>-0     (-----) [002] .n.1 24574.367655: cpu_idle: state=4294967295 cpu_id=2
82444          <idle>-0     (-----) [003] d..1 24574.367664: cpu_idle: state=0 cpu_id=3
82445          <idle>-0     (-----) [002] d..2 24574.367668: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
82446     kworker/0:1-13012 (13012) [000] d..2 24574.367670: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
82447          <idle>-0     (-----) [001] d..2 24574.367671: 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
82448  crtc_event:111-254   (  254) [002] d..2 24574.367711: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82449     ksoftirqd/1-18    (   18) [001] d..2 24574.367713: 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
82450          <idle>-0     (-----) [001] d..1 24574.367728: cpu_idle: state=0 cpu_id=1
82451          <idle>-0     (-----) [002] d..1 24574.367744: cpu_idle: state=0 cpu_id=2
82452          <idle>-0     (-----) [002] ...1 24574.367759: cpu_idle: state=4294967295 cpu_id=2
82453          <idle>-0     (-----) [002] d..1 24574.367762: cpu_idle: state=0 cpu_id=2
82454  kworker/u16:15-18488 (18488) [000] .... 24574.367782: clk_set_rate: l3_cluster0_vote_clk 403200000
82455  kworker/u16:15-18488 (18488) [000] .... 24574.367795: clk_set_rate: l3_clk 403200000
82456  kworker/u16:15-18488 (18488) [000] d..2 24574.368098: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
82457          <idle>-0     (-----) [000] d..1 24574.368114: cpu_idle: state=0 cpu_id=0
82458          <idle>-0     (-----) [003] d.s3 24574.368601: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
82459          <idle>-0     (-----) [003] d.s4 24574.368611: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
82460          <idle>-0     (-----) [003] d.s4 24574.368619: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
82461          <idle>-0     (-----) [000] .n.1 24574.368626: cpu_idle: state=4294967295 cpu_id=0
82462          <idle>-0     (-----) [003] ...1 24574.368629: cpu_idle: state=4294967295 cpu_id=3
82463          <idle>-0     (-----) [003] d..1 24574.368634: cpu_idle: state=0 cpu_id=3
82464          <idle>-0     (-----) [000] d..2 24574.368637: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
82465  kworker/u16:15-18488 (18488) [000] d..2 24574.368667: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82466          <idle>-0     (-----) [000] d..1 24574.368677: cpu_idle: state=0 cpu_id=0
82467          <idle>-0     (-----) [000] d.h5 24574.369538: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
82468          <idle>-0     (-----) [000] d.h6 24574.369556: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
82469          <idle>-0     (-----) [001] .n.1 24574.369562: cpu_idle: state=4294967295 cpu_id=1
82470          <idle>-0     (-----) [001] d..2 24574.369572: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
82471          <idle>-0     (-----) [000] ...1 24574.369572: cpu_idle: state=4294967295 cpu_id=0
82472          <idle>-0     (-----) [000] d..1 24574.369577: cpu_idle: state=0 cpu_id=0
82473 crtc_commit:111-253   (  253) [001] d..2 24574.369654: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
82474          <idle>-0     (-----) [001] d..1 24574.369666: cpu_idle: state=0 cpu_id=1
82475          <idle>-0     (-----) [000] d.h5 24574.369833: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
82476          <idle>-0     (-----) [000] d.h6 24574.369848: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
82477          <idle>-0     (-----) [002] .n.1 24574.369853: cpu_idle: state=4294967295 cpu_id=2
82478          <idle>-0     (-----) [002] d..2 24574.369862: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
82479          <idle>-0     (-----) [000] ...1 24574.369866: cpu_idle: state=4294967295 cpu_id=0
82480          <idle>-0     (-----) [000] d..1 24574.369871: cpu_idle: state=0 cpu_id=0
82481  crtc_event:111-254   (  254) [002] d..2 24574.369887: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82482          <idle>-0     (-----) [002] d..1 24574.369897: cpu_idle: state=0 cpu_id=2
82483          <idle>-0     (-----) [003] d.h2 24574.370531: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
82484          <idle>-0     (-----) [003] dnh3 24574.370547: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
82485          <idle>-0     (-----) [003] .n.1 24574.370554: cpu_idle: state=4294967295 cpu_id=3
82486          <idle>-0     (-----) [003] d..2 24574.370564: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
82487        DispSync-23904 (23896) [003] d..1 24574.370594: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
82488        DispSync-23904 (23896) [003] d..2 24574.370610: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
82489          <idle>-0     (-----) [002] .n.1 24574.370615: cpu_idle: state=4294967295 cpu_id=2
82490          <idle>-0     (-----) [002] d..2 24574.370624: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
82491        DispSync-23904 (23896) [003] d..2 24574.370644: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82492          <idle>-0     (-----) [003] d..1 24574.370655: cpu_idle: state=0 cpu_id=3
82493   sfEventThread-23906 (23896) [002] d..3 24574.370684: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
82494   sfEventThread-23906 (23896) [002] d..4 24574.370703: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
82495          <idle>-0     (-----) [001] .n.1 24574.370708: cpu_idle: state=4294967295 cpu_id=1
82496          <idle>-0     (-----) [001] d..2 24574.370718: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
82497   sfEventThread-23906 (23896) [002] d..2 24574.370735: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82498          <idle>-0     (-----) [002] d..1 24574.370748: cpu_idle: state=0 cpu_id=2
82499  surfaceflinger-23896 (23896) [001] d..1 24574.371517: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
82500          <idle>-0     (-----) [003] d.h2 24574.371522: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
82501          <idle>-0     (-----) [003] dnh3 24574.371532: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
82502  surfaceflinger-23896 (23896) [001] d..2 24574.371539: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
82503          <idle>-0     (-----) [003] .n.1 24574.371540: cpu_idle: state=4294967295 cpu_id=3
82504          <idle>-0     (-----) [002] .n.1 24574.371545: cpu_idle: state=4294967295 cpu_id=2
82505          <idle>-0     (-----) [003] d..2 24574.371550: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
82506          <idle>-0     (-----) [002] d..2 24574.371556: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
82507        DispSync-23904 (23896) [003] d..1 24574.371562: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
82508        DispSync-23904 (23896) [003] d..2 24574.371578: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
82509          <idle>-0     (-----) [000] .n.1 24574.371583: cpu_idle: state=4294967295 cpu_id=0
82510          <idle>-0     (-----) [000] d..2 24574.371596: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
82511   sfEventThread-23906 (23896) [002] d..2 24574.371597: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82512          <idle>-0     (-----) [002] d..1 24574.371608: cpu_idle: state=0 cpu_id=2
82513        DispSync-23904 (23896) [003] d..2 24574.371609: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82514          <idle>-0     (-----) [003] d..1 24574.371617: cpu_idle: state=0 cpu_id=3
82515  appEventThread-23905 (23896) [000] d..3 24574.371660: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
82516  appEventThread-23905 (23896) [000] d..4 24574.371690: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
82517          <idle>-0     (-----) [002] .n.1 24574.371695: cpu_idle: state=4294967295 cpu_id=2
82518          <idle>-0     (-----) [002] d..2 24574.371706: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
82519  appEventThread-23905 (23896) [000] d..3 24574.371709: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
82520  appEventThread-23905 (23896) [000] d..4 24574.371729: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
82521          <idle>-0     (-----) [003] .n.1 24574.371735: cpu_idle: state=4294967295 cpu_id=3
82522          <idle>-0     (-----) [003] d..2 24574.371744: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
82523  appEventThread-23905 (23896) [000] d..2 24574.371771: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82524          <idle>-0     (-----) [000] d..1 24574.371786: cpu_idle: state=0 cpu_id=0
82525<...>-24151 ( 24151) [003] .... 24574.372033: binder_transaction: transaction=1670767 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
82526<...>-24151 ( 24151) [003] d..4 24574.372045: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
82527 s.nexuslauncher-24827 (24827) [002] .... 24574.372050: binder_transaction: transaction=1670768 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
82528<...>-24151 ( 24151) [003] d..5 24574.372078: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
82529          <idle>-0     (-----) [000] .n.1 24574.372083: cpu_idle: state=4294967295 cpu_id=0
82530 s.nexuslauncher-24827 (24827) [002] d..4 24574.372085: sched_waking: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=006
82531          <idle>-0     (-----) [000] d..2 24574.372095: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
82532  Binder:23896_5-25989 (23896) [000] .... 24574.372122: binder_transaction_received: transaction=1670767
82533          <idle>-0     (-----) [005] dnh2 24574.372125: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=005
82534          <idle>-0     (-----) [005] .n.1 24574.372129: cpu_idle: state=4294967295 cpu_id=5
82535          <idle>-0     (-----) [005] d..2 24574.372137: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
82536  Binder:23896_3-23986 (23896) [005] .... 24574.372143: binder_transaction_received: transaction=1670768
82537  Binder:23896_5-25989 (23896) [000] d..1 24574.372150: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
82538 s.nexuslauncher-24827 (24827) [002] d..3 24574.372153: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
82539<...>-24151 ( 24151) [003] d..3 24574.372160: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
82540  Binder:23896_5-25989 (23896) [000] d..2 24574.372173: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
82541  Binder:23896_5-25989 (23896) [000] d..1 24574.372179: sched_waking: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=005
82542  Binder:23896_3-23986 (23896) [005] d..2 24574.372186: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
82543          <idle>-0     (-----) [006] dnh2 24574.372192: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=006
82544          <idle>-0     (-----) [006] dnh2 24574.372194: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
82545          <idle>-0     (-----) [005] d..1 24574.372194: cpu_idle: state=0 cpu_id=5
82546<...>-24151 ( 24151) [003] d..2 24574.372195: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
82547          <idle>-0     (-----) [006] .n.1 24574.372199: cpu_idle: state=4294967295 cpu_id=6
82548          <idle>-0     (-----) [005] dnh2 24574.372245: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=005
82549 s.nexuslauncher-24827 (24827) [002] d.h3 24574.372246: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
82550          <idle>-0     (-----) [005] .n.1 24574.372249: cpu_idle: state=4294967295 cpu_id=5
82551          <idle>-0     (-----) [006] d..2 24574.372250: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
82552  appEventThread-23905 (23896) [003] d..2 24574.372254: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
82553          <idle>-0     (-----) [005] d..2 24574.372255: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
82554  Binder:23896_5-25989 (23896) [000] d..2 24574.372261: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82555  Binder:23896_3-23986 (23896) [005] d..1 24574.372261: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
82556          <idle>-0     (-----) [004] dnh2 24574.372268: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
82557          <idle>-0     (-----) [004] .n.1 24574.372271: cpu_idle: state=4294967295 cpu_id=4
82558          <idle>-0     (-----) [004] d..2 24574.372276: 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
82559          <idle>-0     (-----) [000] d..1 24574.372276: cpu_idle: state=0 cpu_id=0
82560    RenderThread-25194 (24827) [006] d..2 24574.372282: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
82561         sugov:4-560   (  560) [004] d..2 24574.372288: 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
82562          <idle>-0     (-----) [000] dnh2 24574.372291: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
82563          <idle>-0     (-----) [004] d..1 24574.372294: cpu_idle: state=0 cpu_id=4
82564          <idle>-0     (-----) [000] .n.1 24574.372298: cpu_idle: state=4294967295 cpu_id=0
82565  Binder:23896_3-23986 (23896) [005] d..2 24574.372306: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
82566          <idle>-0     (-----) [000] d..2 24574.372306: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
82567    RenderThread-24437 (24151) [006] d..2 24574.372307: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
82568          <idle>-0     (-----) [005] d..1 24574.372313: cpu_idle: state=0 cpu_id=5
82569          <idle>-0     (-----) [006] d..1 24574.372314: cpu_idle: state=0 cpu_id=6
82570  appEventThread-23905 (23896) [000] d..2 24574.372356: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82571          <idle>-0     (-----) [000] d..1 24574.372368: cpu_idle: state=0 cpu_id=0
82572<...>-24151 ( 24151) [003] d..3 24574.372390: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
82573          <idle>-0     (-----) [006] dnh2 24574.372412: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
82574          <idle>-0     (-----) [006] .n.1 24574.372416: cpu_idle: state=4294967295 cpu_id=6
82575          <idle>-0     (-----) [006] d..2 24574.372422: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
82576<...>-24151 ( 24151) [003] d..2 24574.372437: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82577          <idle>-0     (-----) [003] d..1 24574.372450: cpu_idle: state=0 cpu_id=3
82578  surfaceflinger-23896 (23896) [001] ...1 24574.372456: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
82579  surfaceflinger-23896 (23896) [001] ...1 24574.372464: tracing_mark_write: E|23896
82580    RenderThread-24437 (24151) [006] d..1 24574.372504: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
82581  surfaceflinger-23896 (23896) [001] .... 24574.372522: binder_transaction: transaction=1670769 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
82582          <idle>-0     (-----) [003] dnh2 24574.372528: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
82583          <idle>-0     (-----) [003] .n.1 24574.372534: cpu_idle: state=4294967295 cpu_id=3
82584          <idle>-0     (-----) [003] d..2 24574.372542: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
82585  surfaceflinger-23896 (23896) [001] ...2 24574.372548: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
82586  surfaceflinger-23896 (23896) [001] d..4 24574.372557: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
82587    RenderThread-24437 (24151) [006] .... 24574.372560: binder_transaction: transaction=1670770 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
82588    RenderThread-24437 (24151) [006] d..4 24574.372568: sched_waking: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=005
82589    RenderThread-24437 (24151) [006] dn.5 24574.372585: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=006
82590  surfaceflinger-23896 (23896) [001] d..5 24574.372586: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
82591    RenderThread-24437 (24151) [006] d..2 24574.372592: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
82592          <idle>-0     (-----) [000] .n.1 24574.372592: cpu_idle: state=4294967295 cpu_id=0
82593  Binder:23896_3-23986 (23896) [006] .... 24574.372598: binder_transaction_received: transaction=1670770
82594          <idle>-0     (-----) [000] d..2 24574.372601: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
82595  HwBinder:598_3-633   (  598) [000] .... 24574.372614: binder_transaction_received: transaction=1670769
82596  surfaceflinger-23896 (23896) [001] d..2 24574.372620: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
82597<...>-24151 ( 24151) [003] d..2 24574.372622: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82598          <idle>-0     (-----) [003] d..1 24574.372632: cpu_idle: state=0 cpu_id=3
82599          <idle>-0     (-----) [001] d..1 24574.372639: cpu_idle: state=0 cpu_id=1
82600  Binder:23896_3-23986 (23896) [006] .... 24574.372650: binder_transaction: transaction=1670771 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
82601  HwBinder:598_3-633   (  598) [000] ...1 24574.372665: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
82602  Binder:23896_3-23986 (23896) [006] d..2 24574.372683: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
82603    RenderThread-24437 (24151) [006] .... 24574.372689: binder_transaction_received: transaction=1670771
82604 s.nexuslauncher-24827 (24827) [002] d..3 24574.372714: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=006
82605 s.nexuslauncher-24827 (24827) [002] d..4 24574.372755: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
82606          <idle>-0     (-----) [001] .n.1 24574.372760: cpu_idle: state=4294967295 cpu_id=1
82607 s.nexuslauncher-24827 (24827) [002] d.h3 24574.372804: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
82608  HwBinder:598_3-633   (  598) [000] ...1 24574.372804: tracing_mark_write: B|598|HWCSession::PresentDisplay::
82609          <idle>-0     (-----) [001] d..2 24574.372806: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
82610 s.nexuslauncher-24827 (24827) [002] d.h3 24574.372817: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
82611          <idle>-0     (-----) [004] dnh2 24574.372823: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
82612          <idle>-0     (-----) [004] .n.1 24574.372827: cpu_idle: state=4294967295 cpu_id=4
82613          <idle>-0     (-----) [004] d..2 24574.372832: 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
82614 s.nexuslauncher-24827 (24827) [002] d.h4 24574.372837: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
82615         sugov:4-560   (  560) [004] d..2 24574.372842: 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
82616          <idle>-0     (-----) [003] .n.1 24574.372843: cpu_idle: state=4294967295 cpu_id=3
82617          <idle>-0     (-----) [004] d..1 24574.372849: cpu_idle: state=0 cpu_id=4
82618          <idle>-0     (-----) [003] d..2 24574.372851: 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
82619 s.nexuslauncher-24827 (24827) [002] d..2 24574.372874: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82620         sugov:0-559   (  559) [003] .... 24574.372882: clk_set_rate: pwrcl_clk 1228800000
82621          <idle>-0     (-----) [002] d..1 24574.372895: cpu_idle: state=0 cpu_id=2
82622         sugov:0-559   (  559) [003] .... 24574.372895: clk_set_rate: cpu3_pwrcl_clk 1056000000
82623         sugov:0-559   (  559) [003] .... 24574.372905: clk_set_rate: cpu2_pwrcl_clk 1056000000
82624         sugov:0-559   (  559) [003] .... 24574.372913: clk_set_rate: cpu1_pwrcl_clk 1056000000
82625         sugov:0-559   (  559) [003] .... 24574.372921: clk_set_rate: cpu0_pwrcl_clk 1228800000
82626         sugov:0-559   (  559) [003] .... 24574.372929: cpu_frequency: state=1228800 cpu_id=0
82627         sugov:0-559   (  559) [003] .... 24574.372951: cpu_frequency: state=1228800 cpu_id=1
82628         sugov:0-559   (  559) [003] .... 24574.372955: cpu_frequency: state=1228800 cpu_id=2
82629         sugov:0-559   (  559) [003] .... 24574.372958: cpu_frequency: state=1228800 cpu_id=3
82630    RenderThread-25194 (24827) [001] d..1 24574.372969: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
82631  HwBinder:598_3-633   (  598) [000] ...1 24574.372984: tracing_mark_write: B|598|HWDeviceDRM::Commit::
82632         sugov:0-559   (  559) [003] d..2 24574.372987: 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
82633          <idle>-0     (-----) [003] d..1 24574.372994: cpu_idle: state=0 cpu_id=3
82634    RenderThread-25194 (24827) [001] d..2 24574.372995: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
82635  HwBinder:598_3-633   (  598) [000] ...1 24574.372996: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
82636          <idle>-0     (-----) [002] .n.1 24574.373003: cpu_idle: state=4294967295 cpu_id=2
82637          <idle>-0     (-----) [002] d..2 24574.373016: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
82638    RenderThread-25194 (24827) [001] d..1 24574.373017: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=003
82639    RenderThread-25194 (24827) [001] d..2 24574.373032: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=003
82640          <idle>-0     (-----) [003] .n.1 24574.373038: cpu_idle: state=4294967295 cpu_id=3
82641          <idle>-0     (-----) [003] d..2 24574.373046: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
82642    RenderThread-25194 (24827) [001] .... 24574.373094: binder_transaction: transaction=1670772 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
82643    RenderThread-25194 (24827) [001] ...2 24574.373102: binder_set_priority: proc=23896 thread=23986 old=120 => new=110 desired=110
82644    RenderThread-25194 (24827) [001] d..4 24574.373107: sched_waking: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=006
82645 s.nexuslauncher-24827 (24827) [002] d..2 24574.373115: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82646          <idle>-0     (-----) [002] d..1 24574.373129: cpu_idle: state=0 cpu_id=2
82647    RenderThread-25194 (24827) [001] dn.5 24574.373132: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=001
82648    RenderThread-25194 (24827) [001] d..2 24574.373178: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=110
82649  Binder:23896_3-23986 (23896) [001] .... 24574.373186: binder_transaction_received: transaction=1670772
82650  Binder:23896_3-23986 (23896) [001] .... 24574.373242: binder_transaction: transaction=1670773 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
82651  Binder:23896_3-23986 (23896) [001] .... 24574.373254: binder_set_priority: proc=23896 thread=23986 old=110 => new=120 desired=120
82652<...>-27853 ( 24827) [003] .... 24574.373298: binder_transaction: transaction=1670774 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
82653  Binder:23896_3-23986 (23896) [001] d..2 24574.373304: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
82654    RenderThread-25194 (24827) [001] .... 24574.373315: binder_transaction_received: transaction=1670773
82655<...>-27853 ( 24827) [003] ...2 24574.373323: binder_set_priority: proc=23896 thread=23986 old=120 => new=118 desired=118
82656<...>-27853 ( 24827) [003] d..4 24574.373328: sched_waking: comm=Binder:23896_3 pid=23986 prio=118 target_cpu=001
82657<...>-27853 ( 24827) [003] d..5 24574.373352: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=118 target_cpu=003
82658<...>-27853 ( 24827) [003] d..2 24574.373366: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=118
82659  Binder:23896_3-23986 (23896) [003] .... 24574.373374: binder_transaction_received: transaction=1670774
82660          <idle>-0     (-----) [004] ...1 24574.373483: cpu_idle: state=4294967295 cpu_id=4
82661          <idle>-0     (-----) [004] d..1 24574.373486: cpu_idle: state=0 cpu_id=4
82662  Binder:23896_3-23986 (23896) [003] .... 24574.373500: binder_transaction: transaction=1670775 dest_node=0 dest_proc=24827 dest_thread=27853 reply=1 flags=0x0 code=0x0
82663  Binder:23896_3-23986 (23896) [003] d..2 24574.373508: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=003
82664  HwBinder:598_3-633   (  598) [000] d..2 24574.373515: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
82665  Binder:23896_3-23986 (23896) [003] d..3 24574.373522: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=003
82666  Binder:23896_3-23986 (23896) [003] .... 24574.373525: binder_set_priority: proc=23896 thread=23986 old=118 => new=120 desired=120
82667  HwBinder:598_3-633   (  598) [000] d..3 24574.373545: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
82668          <idle>-0     (-----) [002] .n.1 24574.373551: cpu_idle: state=4294967295 cpu_id=2
82669          <idle>-0     (-----) [002] d..2 24574.373560: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
82670  Binder:23896_3-23986 (23896) [003] d..2 24574.373575: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
82671<...>-27853 ( 24827) [003] .... 24574.373582: binder_transaction_received: transaction=1670775
82672  HwBinder:598_3-633   (  598) [000] ...1 24574.373643: tracing_mark_write: E|598
82673<...>-27853 ( 24827) [003] d..2 24574.373647: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82674  HwBinder:598_3-633   (  598) [000] ...1 24574.373648: tracing_mark_write: E|598
82675          <idle>-0     (-----) [003] d..1 24574.373660: cpu_idle: state=0 cpu_id=3
82676    RenderThread-24437 (24151) [006] .... 24574.373723: binder_transaction: transaction=1670776 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
82677    RenderThread-24437 (24151) [006] d..4 24574.373735: sched_waking: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=003
82678    RenderThread-24437 (24151) [006] dn.5 24574.373758: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=006
82679  HwBinder:598_3-633   (  598) [000] ...1 24574.373765: tracing_mark_write: E|598
82680    RenderThread-24437 (24151) [006] dnh5 24574.373796: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
82681    RenderThread-24437 (24151) [006] dnh6 24574.373808: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
82682    RenderThread-24437 (24151) [006] dnh5 24574.373810: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
82683          <idle>-0     (-----) [004] .n.1 24574.373813: cpu_idle: state=4294967295 cpu_id=4
82684  HwBinder:598_3-633   (  598) [000] ...1 24574.373816: tracing_mark_write: E|598
82685          <idle>-0     (-----) [004] d..2 24574.373820: 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
82686    RenderThread-24437 (24151) [006] d..2 24574.373824: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
82687  Binder:23896_3-23986 (23896) [006] .... 24574.373831: binder_transaction_received: transaction=1670776
82688          <idle>-0     (-----) [003] dnh2 24574.373831: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
82689  HwBinder:598_3-633   (  598) [000] .... 24574.373833: binder_transaction: transaction=1670777 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
82690         sugov:4-560   (  560) [004] d..2 24574.373834: 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
82691          <idle>-0     (-----) [003] .n.1 24574.373838: cpu_idle: state=4294967295 cpu_id=3
82692          <idle>-0     (-----) [004] d..1 24574.373840: cpu_idle: state=0 cpu_id=4
82693          <idle>-0     (-----) [003] d..2 24574.373844: 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
82694  HwBinder:598_3-633   (  598) [000] d..2 24574.373856: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
82695         sugov:0-559   (  559) [003] d..2 24574.373880: 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
82696  HwBinder:598_3-633   (  598) [000] d..3 24574.373890: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
82697          <idle>-0     (-----) [003] d..2 24574.373895: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
82698  HwBinder:598_3-633   (  598) [000] .... 24574.373901: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
82699  surfaceflinger-23896 (23896) [003] .... 24574.373909: binder_transaction_received: transaction=1670777
82700  Binder:23896_3-23986 (23896) [006] .... 24574.373939: binder_transaction: transaction=1670778 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
82701  HwBinder:598_3-633   (  598) [000] d.h2 24574.373954: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
82702  Binder:23896_3-23986 (23896) [006] d..2 24574.373968: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
82703    RenderThread-24437 (24151) [006] .... 24574.373974: binder_transaction_received: transaction=1670778
82704  HwBinder:598_3-633   (  598) [000] d.h3 24574.373976: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
82705    RenderThread-25194 (24827) [001] d..2 24574.373991: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
82706 kgsl_worker_thr-246   (  246) [001] d..2 24574.374016: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=RenderThread next_pid=25194 next_prio=110
82707    RenderThread-24437 (24151) [006] d..2 24574.374041: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
82708          <idle>-0     (-----) [006] d..1 24574.374057: cpu_idle: state=0 cpu_id=6
82709    RenderThread-25194 (24827) [001] d..1 24574.374060: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
82710  HwBinder:598_3-633   (  598) [000] d..2 24574.374063: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82711    RenderThread-25194 (24827) [001] d..2 24574.374083: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
82712          <idle>-0     (-----) [000] d..2 24574.374092: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
82713 kgsl_worker_thr-246   (  246) [000] d..2 24574.374130: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
82714 kgsl_worker_thr-246   (  246) [000] d..3 24574.374149: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
82715 kgsl_worker_thr-246   (  246) [000] d..2 24574.374209: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
82716  surfaceflinger-23896 (23896) [003] d.s1 24574.374246: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
82717  surfaceflinger-23896 (23896) [003] d.s2 24574.374288: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
82718    RenderThread-25194 (24827) [001] .... 24574.374297: binder_transaction: transaction=1670779 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
82719    RenderThread-25194 (24827) [001] ...2 24574.374310: binder_set_priority: proc=23896 thread=23986 old=120 => new=110 desired=110
82720    RenderThread-25194 (24827) [001] d..4 24574.374315: sched_waking: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=006
82721    RenderThread-25194 (24827) [001] dn.5 24574.374340: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=110 target_cpu=001
82722 crtc_commit:111-253   (  253) [002] d..2 24574.374347: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
82723     rcu_preempt-7     (    7) [002] d..2 24574.374357: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
82724    RenderThread-25194 (24827) [001] dnh5 24574.374391: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
82725    RenderThread-25194 (24827) [001] dnh5 24574.374404: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
82726          <idle>-0     (-----) [004] dnh2 24574.374409: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
82727          <idle>-0     (-----) [004] .n.1 24574.374413: cpu_idle: state=4294967295 cpu_id=4
82728          <idle>-0     (-----) [004] d..2 24574.374418: 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
82729    RenderThread-25194 (24827) [001] dnh6 24574.374428: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
82730         sugov:4-560   (  560) [004] d..2 24574.374431: 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
82731          <idle>-0     (-----) [004] d..1 24574.374436: cpu_idle: state=0 cpu_id=4
82732     rcu_preempt-7     (    7) [002] dn.3 24574.374437: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
82733    RenderThread-25194 (24827) [001] d..2 24574.374448: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=110
82734     rcu_preempt-7     (    7) [002] d..2 24574.374449: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
82735  Binder:23896_3-23986 (23896) [001] .... 24574.374457: binder_transaction_received: transaction=1670779
82736         sugov:0-559   (  559) [002] d..2 24574.374461: 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
82737         rcuop/0-10    (   10) [002] d..2 24574.374470: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
82738  surfaceflinger-23896 (23896) [003] d..2 24574.374489: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82739         rcuop/0-10    (   10) [002] d..3 24574.374501: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
82740         rcuop/0-10    (   10) [002] d..2 24574.374513: 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
82741          <idle>-0     (-----) [003] d..2 24574.374515: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
82742     rcu_preempt-7     (    7) [002] d..2 24574.374537: 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
82743         rcuop/1-21    (   21) [003] d..2 24574.374541: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82744          <idle>-0     (-----) [002] d..1 24574.374552: cpu_idle: state=0 cpu_id=2
82745          <idle>-0     (-----) [003] d..1 24574.374554: cpu_idle: state=0 cpu_id=3
82746  Binder:23896_3-23986 (23896) [001] .... 24574.374579: binder_transaction: transaction=1670780 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
82747  Binder:23896_3-23986 (23896) [001] .... 24574.374587: binder_set_priority: proc=23896 thread=23986 old=110 => new=120 desired=120
82748  Binder:23896_3-23986 (23896) [001] d..2 24574.374636: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
82749    RenderThread-25194 (24827) [001] .... 24574.374647: binder_transaction_received: transaction=1670780
82750  kworker/u16:15-18488 (18488) [000] d..2 24574.374657: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82751          <idle>-0     (-----) [000] d..1 24574.374671: cpu_idle: state=0 cpu_id=0
82752    RenderThread-25194 (24827) [001] d..2 24574.374775: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
82753          <idle>-0     (-----) [001] d..1 24574.374797: cpu_idle: state=0 cpu_id=1
82754          <idle>-0     (-----) [000] ...1 24574.375269: cpu_idle: state=4294967295 cpu_id=0
82755          <idle>-0     (-----) [000] d..1 24574.375273: cpu_idle: state=0 cpu_id=0
82756          <idle>-0     (-----) [003] ...1 24574.375685: cpu_idle: state=4294967295 cpu_id=3
82757          <idle>-0     (-----) [003] d..1 24574.375689: cpu_idle: state=0 cpu_id=3
82758          <idle>-0     (-----) [000] d.h3 24574.375992: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
82759          <idle>-0     (-----) [000] dnh4 24574.376004: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
82760          <idle>-0     (-----) [000] .n.1 24574.376014: cpu_idle: state=4294967295 cpu_id=0
82761          <idle>-0     (-----) [000] d..2 24574.376022: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
82762 kgsl_worker_thr-246   (  246) [000] d..2 24574.376080: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82763          <idle>-0     (-----) [000] d..1 24574.376091: cpu_idle: state=0 cpu_id=0
82764          <idle>-0     (-----) [000] d..2 24574.377630: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
82765          <idle>-0     (-----) [000] dn.3 24574.377643: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
82766          <idle>-0     (-----) [000] dnh3 24574.377651: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
82767          <idle>-0     (-----) [000] dnh3 24574.377664: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
82768          <idle>-0     (-----) [004] dnh2 24574.377671: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
82769          <idle>-0     (-----) [004] .n.1 24574.377674: cpu_idle: state=4294967295 cpu_id=4
82770          <idle>-0     (-----) [000] dnh4 24574.377677: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
82771          <idle>-0     (-----) [004] d..2 24574.377679: 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
82772          <idle>-0     (-----) [002] .n.1 24574.377683: cpu_idle: state=4294967295 cpu_id=2
82773          <idle>-0     (-----) [000] dns3 24574.377686: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
82774          <idle>-0     (-----) [002] d..2 24574.377695: 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
82775         sugov:4-560   (  560) [004] d..2 24574.377695: 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
82776          <idle>-0     (-----) [004] d..1 24574.377700: cpu_idle: state=0 cpu_id=4
82777          <idle>-0     (-----) [000] dns4 24574.377701: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
82778          <idle>-0     (-----) [000] .n.1 24574.377711: cpu_idle: state=4294967295 cpu_id=0
82779         sugov:0-559   (  559) [002] d..2 24574.377721: 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
82780          <idle>-0     (-----) [000] d..2 24574.377724: 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
82781          <idle>-0     (-----) [002] d..1 24574.377728: cpu_idle: state=0 cpu_id=2
82782     ksoftirqd/0-3     (    3) [000] d..2 24574.377736: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
82783  kworker/u16:15-18488 (18488) [000] d..2 24574.377863: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82784          <idle>-0     (-----) [000] d..1 24574.377874: cpu_idle: state=0 cpu_id=0
82785          <idle>-0     (-----) [002] d.s2 24574.380908: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
82786          <idle>-0     (-----) [002] dns3 24574.380925: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
82787          <idle>-0     (-----) [002] .n.1 24574.380940: cpu_idle: state=4294967295 cpu_id=2
82788          <idle>-0     (-----) [002] d..2 24574.380948: 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
82789     rcu_preempt-7     (    7) [002] d..2 24574.380962: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
82790     rcu_preempt-7     (    7) [002] d..3 24574.380976: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
82791     rcu_preempt-7     (    7) [002] d..2 24574.380978: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
82792     rcu_preempt-7     (    7) [002] d..3 24574.381010: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
82793     rcu_preempt-7     (    7) [002] d..2 24574.381021: 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
82794         rcuop/2-29    (   29) [002] d..2 24574.381028: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
82795         rcuop/2-29    (   29) [002] d..3 24574.381062: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
82796         rcuop/2-29    (   29) [002] d..2 24574.381071: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
82797         rcuop/2-29    (   29) [002] d..3 24574.381080: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
82798         rcuop/2-29    (   29) [002] d..2 24574.381089: 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
82799         rcuop/3-37    (   37) [002] d..2 24574.381105: 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
82800         rcuop/0-10    (   10) [002] d..2 24574.381109: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
82801         rcuop/0-10    (   10) [002] d..3 24574.381133: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
82802         rcuop/0-10    (   10) [002] d..2 24574.381141: 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
82803         rcuop/1-21    (   21) [002] d..2 24574.381156: 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
82804     rcu_preempt-7     (    7) [002] d..2 24574.381178: 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
82805          <idle>-0     (-----) [002] d..1 24574.381190: cpu_idle: state=0 cpu_id=2
82806          <idle>-0     (-----) [000] d.h5 24574.383680: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
82807          <idle>-0     (-----) [000] d.h6 24574.383700: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
82808          <idle>-0     (-----) [002] .n.1 24574.383705: cpu_idle: state=4294967295 cpu_id=2
82809          <idle>-0     (-----) [000] d.h5 24574.383707: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
82810          <idle>-0     (-----) [002] d..2 24574.383716: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
82811          <idle>-0     (-----) [000] dnh6 24574.383729: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
82812          <idle>-0     (-----) [000] .n.1 24574.383740: cpu_idle: state=4294967295 cpu_id=0
82813          <idle>-0     (-----) [000] d..2 24574.383752: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
82814  crtc_event:111-254   (  254) [002] d..2 24574.383754: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82815          <idle>-0     (-----) [002] d..1 24574.383763: cpu_idle: state=0 cpu_id=2
82816 crtc_commit:111-253   (  253) [000] d..2 24574.383924: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
82817          <idle>-0     (-----) [000] d..1 24574.383932: cpu_idle: state=0 cpu_id=0
82818          <idle>-0     (-----) [000] d.s3 24574.384245: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
82819          <idle>-0     (-----) [000] d.s4 24574.384260: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
82820          <idle>-0     (-----) [002] .n.1 24574.384265: cpu_idle: state=4294967295 cpu_id=2
82821          <idle>-0     (-----) [002] d..2 24574.384274: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
82822          <idle>-0     (-----) [000] ...1 24574.384280: cpu_idle: state=4294967295 cpu_id=0
82823          <idle>-0     (-----) [000] d..1 24574.384287: cpu_idle: state=0 cpu_id=0
82824  crtc_event:111-254   (  254) [002] d..2 24574.384302: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82825          <idle>-0     (-----) [002] d..1 24574.384309: cpu_idle: state=0 cpu_id=2
82826          <idle>-0     (-----) [000] ...1 24574.385743: cpu_idle: state=4294967295 cpu_id=0
82827          <idle>-0     (-----) [000] d..1 24574.385747: cpu_idle: state=0 cpu_id=0
82828          <idle>-0     (-----) [000] d.h5 24574.385997: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
82829          <idle>-0     (-----) [000] dnh6 24574.386006: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
82830          <idle>-0     (-----) [000] .n.1 24574.386017: cpu_idle: state=4294967295 cpu_id=0
82831          <idle>-0     (-----) [000] d..2 24574.386025: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
82832 crtc_commit:111-253   (  253) [000] d..2 24574.386096: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82833          <idle>-0     (-----) [000] d..1 24574.386106: cpu_idle: state=0 cpu_id=0
82834          <idle>-0     (-----) [000] d.h5 24574.386308: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
82835          <idle>-0     (-----) [000] d.h6 24574.386322: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
82836          <idle>-0     (-----) [002] .n.1 24574.386327: cpu_idle: state=4294967295 cpu_id=2
82837          <idle>-0     (-----) [002] d..2 24574.386333: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
82838          <idle>-0     (-----) [000] ...1 24574.386342: cpu_idle: state=4294967295 cpu_id=0
82839          <idle>-0     (-----) [000] d..1 24574.386346: cpu_idle: state=0 cpu_id=0
82840  crtc_event:111-254   (  254) [002] d..2 24574.386352: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82841          <idle>-0     (-----) [002] d..1 24574.386357: cpu_idle: state=0 cpu_id=2
82842          <idle>-0     (-----) [003] d.h2 24574.386984: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
82843          <idle>-0     (-----) [003] dnh3 24574.387001: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
82844          <idle>-0     (-----) [003] .n.1 24574.387007: cpu_idle: state=4294967295 cpu_id=3
82845          <idle>-0     (-----) [003] d..2 24574.387015: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
82846        DispSync-23904 (23896) [003] d..1 24574.387040: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
82847        DispSync-23904 (23896) [003] d..2 24574.387054: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
82848          <idle>-0     (-----) [002] .n.1 24574.387058: cpu_idle: state=4294967295 cpu_id=2
82849          <idle>-0     (-----) [002] d..2 24574.387065: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
82850        DispSync-23904 (23896) [003] d..2 24574.387082: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82851          <idle>-0     (-----) [003] d..1 24574.387092: cpu_idle: state=0 cpu_id=3
82852   sfEventThread-23906 (23896) [002] d..3 24574.387125: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
82853   sfEventThread-23906 (23896) [002] d..4 24574.387146: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
82854          <idle>-0     (-----) [003] .n.1 24574.387150: cpu_idle: state=4294967295 cpu_id=3
82855          <idle>-0     (-----) [003] d..2 24574.387159: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
82856   sfEventThread-23906 (23896) [002] d..2 24574.387175: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82857          <idle>-0     (-----) [002] d..1 24574.387184: cpu_idle: state=0 cpu_id=2
82858          <idle>-0     (-----) [002] d.s2 24574.387572: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
82859  surfaceflinger-23896 (23896) [003] d.s2 24574.387581: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
82860          <idle>-0     (-----) [002] dns3 24574.387588: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
82861          <idle>-0     (-----) [002] .n.1 24574.387597: cpu_idle: state=4294967295 cpu_id=2
82862          <idle>-0     (-----) [002] d..2 24574.387605: 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
82863  surfaceflinger-23896 (23896) [003] d.s3 24574.387621: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
82864     rcu_preempt-7     (    7) [002] d..2 24574.387632: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
82865  surfaceflinger-23896 (23896) [003] d.s2 24574.387638: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
82866  surfaceflinger-23896 (23896) [003] d.s3 24574.387663: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
82867  kworker/u16:15-18488 (18488) [002] d..2 24574.387681: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
82868  kworker/u16:10-23868 (23868) [002] d..2 24574.387694: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
82869  kworker/u16:15-18488 (18488) [002] .... 24574.387723: clk_set_rate: l3_cluster0_vote_clk 300000000
82870  kworker/u16:15-18488 (18488) [002] .... 24574.387730: clk_set_rate: l3_clk 300000000
82871  surfaceflinger-23896 (23896) [003] d.h1 24574.387988: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
82872  surfaceflinger-23896 (23896) [003] d.h2 24574.388019: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
82873          <idle>-0     (-----) [001] .n.1 24574.388027: cpu_idle: state=4294967295 cpu_id=1
82874          <idle>-0     (-----) [001] d..2 24574.388041: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
82875  kworker/u16:15-18488 (18488) [002] d..2 24574.388056: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
82876        DispSync-23904 (23896) [001] d..1 24574.388064: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
82877          <idle>-0     (-----) [002] d..1 24574.388074: cpu_idle: state=0 cpu_id=2
82878  surfaceflinger-23896 (23896) [003] d.s1 24574.388076: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
82879        DispSync-23904 (23896) [001] d..2 24574.388085: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
82880          <idle>-0     (-----) [000] .n.1 24574.388090: cpu_idle: state=4294967295 cpu_id=0
82881  surfaceflinger-23896 (23896) [003] d.s2 24574.388094: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
82882          <idle>-0     (-----) [000] d..2 24574.388102: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
82883        DispSync-23904 (23896) [001] d..2 24574.388125: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
82884          <idle>-0     (-----) [001] d..1 24574.388139: cpu_idle: state=0 cpu_id=1
82885  appEventThread-23905 (23896) [000] d..3 24574.388167: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
82886  surfaceflinger-23896 (23896) [003] d..1 24574.388176: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
82887  surfaceflinger-23896 (23896) [003] d..2 24574.388198: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
82888  appEventThread-23905 (23896) [000] d..4 24574.388201: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
82889          <idle>-0     (-----) [002] .n.1 24574.388204: cpu_idle: state=4294967295 cpu_id=2
82890          <idle>-0     (-----) [001] .n.1 24574.388208: cpu_idle: state=4294967295 cpu_id=1
82891          <idle>-0     (-----) [002] d..2 24574.388215: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
82892          <idle>-0     (-----) [001] d..2 24574.388219: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
82893  appEventThread-23905 (23896) [000] d..3 24574.388220: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
82894  appEventThread-23905 (23896) [000] d.h3 24574.388296: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
82895   sfEventThread-23906 (23896) [002] d..2 24574.388296: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82896          <idle>-0     (-----) [006] dnh2 24574.388297: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
82897          <idle>-0     (-----) [006] .n.1 24574.388303: cpu_idle: state=4294967295 cpu_id=6
82898          <idle>-0     (-----) [002] d..1 24574.388306: cpu_idle: state=0 cpu_id=2
82899          <idle>-0     (-----) [006] d..2 24574.388314: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
82900          <idle>-0     (-----) [004] dnh2 24574.388316: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
82901          <idle>-0     (-----) [004] .n.1 24574.388320: cpu_idle: state=4294967295 cpu_id=4
82902          <idle>-0     (-----) [004] d..2 24574.388328: 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
82903         sugov:4-560   (  560) [004] d..2 24574.388339: 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
82904          <idle>-0     (-----) [004] d..1 24574.388345: cpu_idle: state=0 cpu_id=4
82905  appEventThread-23905 (23896) [000] d..2 24574.388351: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82906          <idle>-0     (-----) [000] d..1 24574.388368: cpu_idle: state=0 cpu_id=0
82907<...>-24151 ( 24151) [006] .... 24574.388603: binder_transaction: transaction=1670781 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
82908<...>-24151 ( 24151) [006] d..4 24574.388613: sched_waking: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=001
82909          <idle>-0     (-----) [000] dnh2 24574.388653: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=000
82910          <idle>-0     (-----) [000] .n.1 24574.388659: cpu_idle: state=4294967295 cpu_id=0
82911          <idle>-0     (-----) [000] d..2 24574.388669: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
82912<...>-24151 ( 24151) [006] d..3 24574.388671: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
82913  Binder:23896_3-23986 (23896) [000] .... 24574.388677: binder_transaction_received: transaction=1670781
82914  Binder:23896_3-23986 (23896) [000] d..1 24574.388707: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
82915 s.nexuslauncher-24827 (24827) [001] .... 24574.388733: binder_transaction: transaction=1670782 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
82916          <idle>-0     (-----) [002] dnh2 24574.388736: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
82917 s.nexuslauncher-24827 (24827) [001] d..4 24574.388746: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
82918          <idle>-0     (-----) [002] .n.1 24574.388749: cpu_idle: state=4294967295 cpu_id=2
82919  Binder:23896_3-23986 (23896) [000] d..2 24574.388752: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
82920          <idle>-0     (-----) [002] d..2 24574.388758: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
82921          <idle>-0     (-----) [005] dnh2 24574.388797: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
82922          <idle>-0     (-----) [005] .n.1 24574.388801: cpu_idle: state=4294967295 cpu_id=5
82923  appEventThread-23905 (23896) [002] d..2 24574.388802: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
82924          <idle>-0     (-----) [005] d..2 24574.388807: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
82925<...>-24151 ( 24151) [006] d..3 24574.388851: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
82926 s.nexuslauncher-24827 (24827) [001] d.h5 24574.388859: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
82927  Binder:23896_5-25989 (23896) [005] .... 24574.388876: binder_transaction_received: transaction=1670782
82928    RenderThread-24437 (24151) [002] d..2 24574.388878: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82929          <idle>-0     (-----) [004] dnh2 24574.388879: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
82930          <idle>-0     (-----) [004] .n.1 24574.388882: cpu_idle: state=4294967295 cpu_id=4
82931          <idle>-0     (-----) [004] d..2 24574.388887: 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
82932  Binder:23896_5-25989 (23896) [005] d..1 24574.388893: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
82933          <idle>-0     (-----) [002] d..1 24574.388895: cpu_idle: state=0 cpu_id=2
82934         sugov:4-560   (  560) [004] d..2 24574.388898: 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
82935          <idle>-0     (-----) [004] d..1 24574.388903: cpu_idle: state=0 cpu_id=4
82936  Binder:23896_3-23986 (23896) [000] d..2 24574.388905: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82937          <idle>-0     (-----) [002] dnh2 24574.388910: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
82938 s.nexuslauncher-24827 (24827) [001] d..3 24574.388914: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
82939          <idle>-0     (-----) [002] dnh2 24574.388916: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
82940          <idle>-0     (-----) [000] d..1 24574.388920: cpu_idle: state=0 cpu_id=0
82941<...>-24151 ( 24151) [006] d..2 24574.388921: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
82942  Binder:23896_5-25989 (23896) [005] d..2 24574.388923: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
82943          <idle>-0     (-----) [002] .n.1 24574.388924: cpu_idle: state=4294967295 cpu_id=2
82944          <idle>-0     (-----) [005] d..1 24574.388931: cpu_idle: state=0 cpu_id=5
82945          <idle>-0     (-----) [002] d..2 24574.388933: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
82946          <idle>-0     (-----) [006] d..1 24574.388937: cpu_idle: state=0 cpu_id=6
82947 s.nexuslauncher-24827 (24827) [001] d..4 24574.388949: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
82948          <idle>-0     (-----) [000] .n.1 24574.388952: cpu_idle: state=4294967295 cpu_id=0
82949          <idle>-0     (-----) [000] d..2 24574.388965: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
82950  appEventThread-23905 (23896) [002] d..2 24574.388967: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
82951    RenderThread-25194 (24827) [000] d..2 24574.389023: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82952          <idle>-0     (-----) [000] d..1 24574.389036: cpu_idle: state=0 cpu_id=0
82953  surfaceflinger-23896 (23896) [003] ...1 24574.389076: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
82954  surfaceflinger-23896 (23896) [003] ...1 24574.389085: tracing_mark_write: E|23896
82955    RenderThread-24437 (24151) [002] d..1 24574.389141: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
82956  surfaceflinger-23896 (23896) [003] .... 24574.389156: binder_transaction: transaction=1670783 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
82957    RenderThread-24437 (24151) [002] d..2 24574.389178: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
82958          <idle>-0     (-----) [000] .n.1 24574.389183: cpu_idle: state=4294967295 cpu_id=0
82959  surfaceflinger-23896 (23896) [003] ...2 24574.389184: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
82960  surfaceflinger-23896 (23896) [003] d..4 24574.389223: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
82961          <idle>-0     (-----) [000] d..2 24574.389228: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
82962  surfaceflinger-23896 (23896) [003] d..5 24574.389255: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
82963<...>-24151 ( 24151) [000] d..2 24574.389271: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
82964  surfaceflinger-23896 (23896) [003] d..2 24574.389278: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
82965  HwBinder:598_3-633   (  598) [000] .... 24574.389288: binder_transaction_received: transaction=1670783
82966     ksoftirqd/3-34    (   34) [003] d.s2 24574.389301: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
82967    RenderThread-24437 (24151) [002] .... 24574.389308: binder_transaction: transaction=1670784 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
82968    RenderThread-24437 (24151) [002] d..4 24574.389319: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
82969     ksoftirqd/3-34    (   34) [003] d.s3 24574.389337: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
82970     ksoftirqd/3-34    (   34) [003] d.s3 24574.389344: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
82971  HwBinder:598_3-633   (  598) [000] ...1 24574.389346: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
82972    RenderThread-24437 (24151) [002] d..5 24574.389350: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
82973     ksoftirqd/3-34    (   34) [003] d..2 24574.389357: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
82974    RenderThread-24437 (24151) [002] d.h5 24574.389395: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
82975  kworker/u16:15-18488 (18488) [003] d..2 24574.389409: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82976          <idle>-0     (-----) [004] dnh2 24574.389415: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
82977          <idle>-0     (-----) [004] .n.1 24574.389419: cpu_idle: state=4294967295 cpu_id=4
82978          <idle>-0     (-----) [004] d..2 24574.389425: 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
82979    RenderThread-24437 (24151) [002] d..2 24574.389426: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
82980          <idle>-0     (-----) [003] d..1 24574.389429: cpu_idle: state=0 cpu_id=3
82981         sugov:4-560   (  560) [004] d..2 24574.389436: 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
82982  Binder:23896_5-25989 (23896) [002] .... 24574.389436: binder_transaction_received: transaction=1670784
82983          <idle>-0     (-----) [004] d..1 24574.389441: cpu_idle: state=0 cpu_id=4
82984 s.nexuslauncher-24827 (24827) [001] d..3 24574.389468: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
82985 s.nexuslauncher-24827 (24827) [001] d..4 24574.389504: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=003
82986  HwBinder:598_3-633   (  598) [000] ...1 24574.389511: tracing_mark_write: B|598|HWCSession::PresentDisplay::
82987          <idle>-0     (-----) [003] .n.1 24574.389512: cpu_idle: state=4294967295 cpu_id=3
82988  Binder:23896_5-25989 (23896) [002] .... 24574.389512: binder_transaction: transaction=1670785 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
82989          <idle>-0     (-----) [003] d..2 24574.389523: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
82990  Binder:23896_5-25989 (23896) [002] d..2 24574.389527: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
82991  Binder:23896_5-25989 (23896) [002] d..3 24574.389542: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=002
82992 s.nexuslauncher-24827 (24827) [001] d..2 24574.389544: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
82993          <idle>-0     (-----) [001] d..1 24574.389570: cpu_idle: state=0 cpu_id=1
82994  Binder:23896_5-25989 (23896) [002] d..2 24574.389583: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
82995    RenderThread-24437 (24151) [002] .... 24574.389591: binder_transaction_received: transaction=1670785
82996  HwBinder:598_3-633   (  598) [000] ...1 24574.389705: tracing_mark_write: B|598|HWDeviceDRM::Commit::
82997  HwBinder:598_3-633   (  598) [000] ...1 24574.389720: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
82998    RenderThread-25194 (24827) [003] d..1 24574.389730: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
82999    RenderThread-25194 (24827) [003] d..2 24574.389753: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
83000          <idle>-0     (-----) [001] .n.1 24574.389760: cpu_idle: state=4294967295 cpu_id=1
83001          <idle>-0     (-----) [001] d..2 24574.389772: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
83002    RenderThread-25194 (24827) [003] d..1 24574.389779: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=003
83003          <idle>-0     (-----) [005] dnh2 24574.389852: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
83004          <idle>-0     (-----) [005] .n.1 24574.389859: cpu_idle: state=4294967295 cpu_id=5
83005          <idle>-0     (-----) [005] d..2 24574.389865: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
83006 s.nexuslauncher-24827 (24827) [001] d..2 24574.389886: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
83007          <idle>-0     (-----) [001] d..1 24574.389902: cpu_idle: state=0 cpu_id=1
83008    RenderThread-25194 (24827) [003] .... 24574.389925: binder_transaction: transaction=1670786 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
83009    RenderThread-25194 (24827) [003] ...2 24574.389935: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
83010    RenderThread-25194 (24827) [003] d..4 24574.389940: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
83011    RenderThread-25194 (24827) [003] d..5 24574.389962: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=003
83012    RenderThread-25194 (24827) [003] d..2 24574.389977: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
83013  Binder:23896_5-25989 (23896) [003] .... 24574.389986: binder_transaction_received: transaction=1670786
83014  Binder:23896_5-25989 (23896) [003] .... 24574.390050: binder_transaction: transaction=1670787 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
83015  Binder:23896_5-25989 (23896) [003] d..2 24574.390064: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=003
83016  Binder:23896_5-25989 (23896) [003] dn.3 24574.390078: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=003
83017  Binder:23896_5-25989 (23896) [003] d..2 24574.390087: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
83018    RenderThread-25194 (24827) [003] .... 24574.390095: binder_transaction_received: transaction=1670787
83019<...>-27853 ( 24827) [005] .... 24574.390115: binder_transaction: transaction=1670788 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
83020<...>-27853 ( 24827) [005] ...2 24574.390134: binder_set_priority: proc=23896 thread=23986 old=120 => new=118 desired=118
83021<...>-27853 ( 24827) [005] d..4 24574.390137: sched_waking: comm=Binder:23896_3 pid=23986 prio=118 target_cpu=000
83022<...>-27853 ( 24827) [005] d..5 24574.390161: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=118 target_cpu=005
83023<...>-27853 ( 24827) [005] d.h5 24574.390202: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
83024<...>-27853 ( 24827) [005] d.h6 24574.390215: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
83025          <idle>-0     (-----) [004] .n.1 24574.390221: cpu_idle: state=4294967295 cpu_id=4
83026          <idle>-0     (-----) [004] d..2 24574.390227: 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
83027<...>-27853 ( 24827) [005] d..2 24574.390229: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=118
83028  Binder:23896_3-23986 (23896) [005] .... 24574.390236: binder_transaction_received: transaction=1670788
83029         sugov:4-560   (  560) [004] d..2 24574.390239: 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
83030          <idle>-0     (-----) [004] d..1 24574.390244: cpu_idle: state=0 cpu_id=4
83031  HwBinder:598_3-633   (  598) [000] d..2 24574.390323: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
83032  HwBinder:598_3-633   (  598) [000] d..3 24574.390361: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
83033          <idle>-0     (-----) [001] .n.1 24574.390367: cpu_idle: state=4294967295 cpu_id=1
83034  Binder:23896_3-23986 (23896) [005] .... 24574.390371: binder_transaction: transaction=1670789 dest_node=0 dest_proc=24827 dest_thread=27853 reply=1 flags=0x0 code=0x0
83035  Binder:23896_3-23986 (23896) [005] d..2 24574.390376: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
83036          <idle>-0     (-----) [001] d..2 24574.390377: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
83037  Binder:23896_3-23986 (23896) [005] d..3 24574.390386: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
83038  Binder:23896_3-23986 (23896) [005] .... 24574.390388: binder_set_priority: proc=23896 thread=23986 old=118 => new=120 desired=120
83039  Binder:23896_3-23986 (23896) [005] d..2 24574.390427: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
83040<...>-27853 ( 24827) [005] .... 24574.390431: binder_transaction_received: transaction=1670789
83041  HwBinder:598_3-633   (  598) [000] ...1 24574.390475: tracing_mark_write: E|598
83042  HwBinder:598_3-633   (  598) [000] ...1 24574.390481: tracing_mark_write: E|598
83043<...>-27853 ( 24827) [005] d..2 24574.390496: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
83044          <idle>-0     (-----) [005] d..1 24574.390514: cpu_idle: state=0 cpu_id=5
83045  HwBinder:598_3-633   (  598) [000] ...1 24574.390552: tracing_mark_write: E|598
83046  HwBinder:598_3-633   (  598) [000] ...1 24574.390608: tracing_mark_write: E|598
83047  HwBinder:598_3-633   (  598) [000] .... 24574.390628: binder_transaction: transaction=1670790 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
83048  HwBinder:598_3-633   (  598) [000] d..2 24574.390651: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
83049  HwBinder:598_3-633   (  598) [000] d..3 24574.390679: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
83050  HwBinder:598_3-633   (  598) [000] .... 24574.390684: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
83051    RenderThread-24437 (24151) [002] d..2 24574.390703: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
83052  surfaceflinger-23896 (23896) [002] .... 24574.390719: binder_transaction_received: transaction=1670790
83053  HwBinder:598_3-633   (  598) [000] d..2 24574.390771: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
83054<...>-24151 ( 24151) [000] d..2 24574.390898: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
83055    RenderThread-25194 (24827) [003] d.s2 24574.390931: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
83056  Binder:23896_5-25989 (23896) [000] .... 24574.390946: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
83057    RenderThread-25194 (24827) [003] d.s3 24574.390981: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
83058  Binder:23896_5-25989 (23896) [000] d..2 24574.390993: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
83059     rcu_preempt-7     (    7) [000] d..2 24574.391003: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
83060     rcu_preempt-7     (    7) [000] d..3 24574.391041: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
83061     rcu_preempt-7     (    7) [000] d..2 24574.391044: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
83062     rcu_preempt-7     (    7) [000] d..3 24574.391065: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
83063     rcu_preempt-7     (    7) [000] d..2 24574.391076: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
83064  Binder:23896_5-25989 (23896) [000] d..2 24574.391134: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83065          <idle>-0     (-----) [000] d..1 24574.391155: cpu_idle: state=0 cpu_id=0
83066    RenderThread-25194 (24827) [003] d..2 24574.391214: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
83067          <idle>-0     (-----) [003] d..1 24574.391232: cpu_idle: state=0 cpu_id=3
83068 crtc_commit:111-253   (  253) [001] d..2 24574.391236: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcuop/0 next_pid=10 next_prio=120
83069         rcuop/0-10    (   10) [001] d..2 24574.391245: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
83070  surfaceflinger-23896 (23896) [002] d..2 24574.391290: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
83071          <idle>-0     (-----) [003] d.h2 24574.391291: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=003
83072         rcuop/0-10    (   10) [001] d..3 24574.391310: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
83073          <idle>-0     (-----) [003] d.h3 24574.391311: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
83074          <idle>-0     (-----) [003] d.h3 24574.391320: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
83075         rcuop/0-10    (   10) [001] d..2 24574.391322: 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
83076          <idle>-0     (-----) [000] .n.1 24574.391328: cpu_idle: state=4294967295 cpu_id=0
83077         rcuop/2-29    (   29) [001] d..2 24574.391328: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
83078          <idle>-0     (-----) [003] ...1 24574.391332: cpu_idle: state=4294967295 cpu_id=3
83079          <idle>-0     (-----) [003] d..1 24574.391339: cpu_idle: state=0 cpu_id=3
83080          <idle>-0     (-----) [000] d..2 24574.391340: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
83081         rcuop/2-29    (   29) [001] d..3 24574.391360: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
83082          <idle>-0     (-----) [003] .n.1 24574.391365: cpu_idle: state=4294967295 cpu_id=3
83083         rcuop/2-29    (   29) [001] d..2 24574.391365: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
83084    RenderThread-24437 (24151) [002] d..2 24574.391366: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
83085          <idle>-0     (-----) [003] d..2 24574.391377: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/3 next_pid=37 next_prio=120
83086         rcuop/2-29    (   29) [001] d..3 24574.391400: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
83087         rcuop/3-37    (   37) [003] d..2 24574.391413: 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
83088    RenderThread-24437 (24151) [002] d..3 24574.391426: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
83089         rcuop/2-29    (   29) [001] d..2 24574.391436: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
83090     rcu_preempt-7     (    7) [003] d..2 24574.391437: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
83091         rcuop/1-21    (   21) [001] d..2 24574.391461: 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
83092          <idle>-0     (-----) [001] d..1 24574.391480: cpu_idle: state=0 cpu_id=1
83093 kgsl_worker_thr-246   (  246) [003] d..2 24574.391491: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
83094     rcu_preempt-7     (    7) [003] d..2 24574.391517: 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
83095          <idle>-0     (-----) [003] d..1 24574.391526: cpu_idle: state=0 cpu_id=3
83096          <idle>-0     (-----) [003] d.h2 24574.391591: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
83097          <idle>-0     (-----) [003] dnh3 24574.391603: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
83098          <idle>-0     (-----) [003] .n.1 24574.391610: cpu_idle: state=4294967295 cpu_id=3
83099          <idle>-0     (-----) [003] d..2 24574.391618: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
83100    RenderThread-25194 (24827) [000] .... 24574.391634: binder_transaction: transaction=1670791 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
83101    RenderThread-25194 (24827) [000] ...2 24574.391649: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
83102    RenderThread-25194 (24827) [000] d..4 24574.391654: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
83103    RenderThread-25194 (24827) [000] d..5 24574.391673: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
83104 kgsl_worker_thr-246   (  246) [003] d..2 24574.391705: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
83105    RenderThread-25194 (24827) [000] d..2 24574.391716: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83106  Binder:23896_5-25989 (23896) [003] .... 24574.391717: binder_transaction_received: transaction=1670791
83107          <idle>-0     (-----) [000] d..1 24574.391736: cpu_idle: state=0 cpu_id=0
83108    RenderThread-24437 (24151) [002] .... 24574.391760: binder_transaction: transaction=1670792 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
83109  Binder:23896_5-25989 (23896) [003] d.h1 24574.391774: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
83110    RenderThread-24437 (24151) [002] d..4 24574.391777: sched_waking: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=005
83111  Binder:23896_5-25989 (23896) [003] d.h2 24574.391804: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
83112    RenderThread-24437 (24151) [002] dn.5 24574.391810: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=002
83113          <idle>-0     (-----) [001] .n.1 24574.391811: cpu_idle: state=4294967295 cpu_id=1
83114          <idle>-0     (-----) [001] d..2 24574.391821: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
83115 kgsl_worker_thr-246   (  246) [001] d..2 24574.391848: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
83116    RenderThread-24437 (24151) [002] dnh5 24574.391871: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
83117          <idle>-0     (-----) [004] dnh2 24574.391891: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
83118    RenderThread-24437 (24151) [002] d..2 24574.391894: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
83119          <idle>-0     (-----) [004] .n.1 24574.391894: cpu_idle: state=4294967295 cpu_id=4
83120 kgsl_worker_thr-246   (  246) [001] d..3 24574.391898: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
83121          <idle>-0     (-----) [004] d..2 24574.391899: 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
83122  Binder:23896_3-23986 (23896) [002] .... 24574.391906: binder_transaction_received: transaction=1670792
83123         sugov:4-560   (  560) [004] d..2 24574.391911: 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
83124  Binder:23896_5-25989 (23896) [003] .... 24574.391914: binder_transaction: transaction=1670793 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
83125          <idle>-0     (-----) [004] d..1 24574.391917: cpu_idle: state=0 cpu_id=4
83126  Binder:23896_5-25989 (23896) [003] d..2 24574.391923: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
83127 kgsl_worker_thr-246   (  246) [001] d..2 24574.391944: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
83128  Binder:23896_5-25989 (23896) [003] dn.3 24574.391948: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=003
83129  Binder:23896_5-25989 (23896) [003] d..2 24574.391958: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
83130    RenderThread-25194 (24827) [003] .... 24574.391968: binder_transaction_received: transaction=1670793
83131  kworker/u16:15-18488 (18488) [001] d..2 24574.391976: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
83132          <idle>-0     (-----) [001] d..1 24574.391987: cpu_idle: state=0 cpu_id=1
83133  Binder:23896_3-23986 (23896) [002] .... 24574.392034: binder_transaction: transaction=1670794 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
83134          <idle>-0     (-----) [001] d.h2 24574.392044: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
83135          <idle>-0     (-----) [001] dnh3 24574.392057: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
83136          <idle>-0     (-----) [001] .n.1 24574.392066: cpu_idle: state=4294967295 cpu_id=1
83137          <idle>-0     (-----) [001] d..2 24574.392074: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
83138  Binder:23896_3-23986 (23896) [002] d..2 24574.392081: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
83139 kgsl_worker_thr-246   (  246) [001] d..1 24574.392088: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
83140    RenderThread-25194 (24827) [003] d..2 24574.392088: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
83141    RenderThread-24437 (24151) [002] .... 24574.392091: binder_transaction_received: transaction=1670794
83142  Binder:23896_5-25989 (23896) [003] .... 24574.392096: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
83143 kgsl_worker_thr-246   (  246) [001] d..2 24574.392102: sched_blocked_reason: pid=18488 iowait=0 caller=kgsl_devfreq_get_dev_status+0x2f4/0x428
83144 kgsl_worker_thr-246   (  246) [001] d..2 24574.392108: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
83145 kgsl_worker_thr-246   (  246) [001] d..2 24574.392122: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
83146  Binder:23896_5-25989 (23896) [003] d..2 24574.392165: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
83147          <idle>-0     (-----) [003] d..1 24574.392182: cpu_idle: state=0 cpu_id=3
83148    RenderThread-24437 (24151) [002] d..2 24574.392216: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83149          <idle>-0     (-----) [002] d..1 24574.392241: cpu_idle: state=0 cpu_id=2
83150  kworker/u16:15-18488 (18488) [001] d..2 24574.392566: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
83151          <idle>-0     (-----) [001] d..1 24574.392580: cpu_idle: state=0 cpu_id=1
83152          <idle>-0     (-----) [000] ...1 24574.392908: cpu_idle: state=4294967295 cpu_id=0
83153          <idle>-0     (-----) [000] d..1 24574.392912: cpu_idle: state=0 cpu_id=0
83154          <idle>-0     (-----) [000] d.h3 24574.393126: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
83155          <idle>-0     (-----) [000] d.h4 24574.393146: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
83156          <idle>-0     (-----) [001] .n.1 24574.393153: cpu_idle: state=4294967295 cpu_id=1
83157          <idle>-0     (-----) [001] d..2 24574.393163: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
83158          <idle>-0     (-----) [000] ...1 24574.393168: cpu_idle: state=4294967295 cpu_id=0
83159          <idle>-0     (-----) [000] d..1 24574.393175: cpu_idle: state=0 cpu_id=0
83160 kgsl_worker_thr-246   (  246) [001] d..2 24574.393218: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
83161          <idle>-0     (-----) [001] d..1 24574.393228: cpu_idle: state=0 cpu_id=1
83162          <idle>-0     (-----) [000] ...1 24574.393299: cpu_idle: state=4294967295 cpu_id=0
83163          <idle>-0     (-----) [000] d..1 24574.393303: cpu_idle: state=0 cpu_id=0
83164          <idle>-0     (-----) [000] d.h3 24574.393564: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
83165          <idle>-0     (-----) [002] ...1 24574.393573: cpu_idle: state=4294967295 cpu_id=2
83166          <idle>-0     (-----) [000] d.h4 24574.393578: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
83167          <idle>-0     (-----) [002] d..1 24574.393578: cpu_idle: state=0 cpu_id=2
83168          <idle>-0     (-----) [001] .n.1 24574.393584: cpu_idle: state=4294967295 cpu_id=1
83169          <idle>-0     (-----) [000] ...1 24574.393589: cpu_idle: state=4294967295 cpu_id=0
83170          <idle>-0     (-----) [001] d..2 24574.393592: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
83171          <idle>-0     (-----) [000] d..1 24574.393594: cpu_idle: state=0 cpu_id=0
83172 kgsl_worker_thr-246   (  246) [001] d..2 24574.393653: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
83173          <idle>-0     (-----) [001] d..1 24574.393662: cpu_idle: state=0 cpu_id=1
83174          <idle>-0     (-----) [000] d..2 24574.394990: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
83175          <idle>-0     (-----) [000] dn.3 24574.395000: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
83176          <idle>-0     (-----) [000] .n.1 24574.395004: cpu_idle: state=4294967295 cpu_id=0
83177          <idle>-0     (-----) [000] d..2 24574.395017: 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
83178          <idle>-0     (-----) [001] ...1 24574.395027: cpu_idle: state=4294967295 cpu_id=1
83179          <idle>-0     (-----) [001] d..1 24574.395030: cpu_idle: state=0 cpu_id=1
83180     ksoftirqd/0-3     (    3) [000] d.s2 24574.395031: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
83181     ksoftirqd/0-3     (    3) [000] d.s3 24574.395072: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
83182     ksoftirqd/0-3     (    3) [000] d..2 24574.395084: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
83183  kworker/u16:15-18488 (18488) [000] d..2 24574.395388: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
83184          <idle>-0     (-----) [000] d..1 24574.395402: cpu_idle: state=0 cpu_id=0
83185          <idle>-0     (-----) [003] d.s3 24574.395422: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
83186          <idle>-0     (-----) [003] d.s4 24574.395434: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
83187          <idle>-0     (-----) [003] d.s4 24574.395445: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
83188          <idle>-0     (-----) [000] .n.1 24574.395450: cpu_idle: state=4294967295 cpu_id=0
83189          <idle>-0     (-----) [003] ...1 24574.395456: cpu_idle: state=4294967295 cpu_id=3
83190          <idle>-0     (-----) [003] d..1 24574.395460: cpu_idle: state=0 cpu_id=3
83191          <idle>-0     (-----) [000] d..2 24574.395461: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
83192  kworker/u16:15-18488 (18488) [000] d..2 24574.395497: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83193          <idle>-0     (-----) [000] d..1 24574.395508: cpu_idle: state=0 cpu_id=0
83194          <idle>-0     (-----) [003] d.H3 24574.397666: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
83195          <idle>-0     (-----) [003] d.H3 24574.397683: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
83196          <idle>-0     (-----) [004] dnh2 24574.397690: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
83197          <idle>-0     (-----) [004] .n.1 24574.397695: cpu_idle: state=4294967295 cpu_id=4
83198          <idle>-0     (-----) [003] d.H4 24574.397700: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
83199          <idle>-0     (-----) [004] d..2 24574.397700: 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
83200          <idle>-0     (-----) [002] .n.1 24574.397705: cpu_idle: state=4294967295 cpu_id=2
83201          <idle>-0     (-----) [003] d.s2 24574.397707: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
83202         sugov:4-560   (  560) [004] d..2 24574.397714: 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
83203          <idle>-0     (-----) [002] d..2 24574.397719: 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
83204          <idle>-0     (-----) [004] d..1 24574.397720: cpu_idle: state=0 cpu_id=4
83205          <idle>-0     (-----) [003] dns3 24574.397725: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
83206          <idle>-0     (-----) [003] dns3 24574.397731: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
83207          <idle>-0     (-----) [003] dns4 24574.397762: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
83208         sugov:0-559   (  559) [002] .... 24574.397766: clk_set_rate: pwrcl_clk 979200000
83209          <idle>-0     (-----) [003] .n.1 24574.397786: cpu_idle: state=4294967295 cpu_id=3
83210          <idle>-0     (-----) [003] d..2 24574.397800: 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
83211         sugov:0-559   (  559) [002] .... 24574.397802: clk_set_rate: cpu3_pwrcl_clk 1228800000
83212         sugov:0-559   (  559) [002] .... 24574.397815: clk_set_rate: cpu2_pwrcl_clk 1228800000
83213         sugov:0-559   (  559) [002] .... 24574.397824: clk_set_rate: cpu1_pwrcl_clk 1228800000
83214         sugov:0-559   (  559) [002] .... 24574.397832: clk_set_rate: cpu0_pwrcl_clk 979200000
83215     rcu_preempt-7     (    7) [003] d..2 24574.397835: 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
83216          <idle>-0     (-----) [003] d..1 24574.397853: cpu_idle: state=0 cpu_id=3
83217         sugov:0-559   (  559) [002] .... 24574.397955: cpu_frequency: state=979200 cpu_id=0
83218         sugov:0-559   (  559) [002] .... 24574.397988: cpu_frequency: state=979200 cpu_id=1
83219         sugov:0-559   (  559) [002] .... 24574.397993: cpu_frequency: state=979200 cpu_id=2
83220         sugov:0-559   (  559) [002] .... 24574.397997: cpu_frequency: state=979200 cpu_id=3
83221         sugov:0-559   (  559) [002] d..2 24574.398024: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
83222  kworker/u16:15-18488 (18488) [002] d..2 24574.398278: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
83223          <idle>-0     (-----) [002] d..1 24574.398297: cpu_idle: state=0 cpu_id=2
83224          <idle>-0     (-----) [003] d.s3 24574.398790: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
83225          <idle>-0     (-----) [003] d.s4 24574.398803: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
83226          <idle>-0     (-----) [003] d.s4 24574.398812: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
83227          <idle>-0     (-----) [002] .n.1 24574.398820: cpu_idle: state=4294967295 cpu_id=2
83228          <idle>-0     (-----) [003] ...1 24574.398823: cpu_idle: state=4294967295 cpu_id=3
83229          <idle>-0     (-----) [003] d..1 24574.398828: cpu_idle: state=0 cpu_id=3
83230          <idle>-0     (-----) [002] d..2 24574.398833: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
83231  kworker/u16:15-18488 (18488) [002] .... 24574.398945: clk_set_rate: l3_cluster0_vote_clk 480000000
83232  kworker/u16:15-18488 (18488) [002] .... 24574.398958: clk_set_rate: l3_clk 480000000
83233  kworker/u16:15-18488 (18488) [002] d..2 24574.399013: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83234          <idle>-0     (-----) [002] d..1 24574.399029: cpu_idle: state=0 cpu_id=2
83235          <idle>-0     (-----) [000] d.h5 24574.400171: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
83236          <idle>-0     (-----) [000] d.h6 24574.400195: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
83237          <idle>-0     (-----) [002] .n.1 24574.400202: cpu_idle: state=4294967295 cpu_id=2
83238          <idle>-0     (-----) [000] d.h5 24574.400202: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
83239          <idle>-0     (-----) [002] d..2 24574.400213: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
83240          <idle>-0     (-----) [000] d.h6 24574.400214: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
83241          <idle>-0     (-----) [001] .n.1 24574.400219: cpu_idle: state=4294967295 cpu_id=1
83242          <idle>-0     (-----) [001] d..2 24574.400229: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
83243          <idle>-0     (-----) [000] ...1 24574.400235: cpu_idle: state=4294967295 cpu_id=0
83244          <idle>-0     (-----) [000] d..1 24574.400240: cpu_idle: state=0 cpu_id=0
83245  crtc_event:111-254   (  254) [002] d..2 24574.400256: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83246          <idle>-0     (-----) [002] d..1 24574.400266: cpu_idle: state=0 cpu_id=2
83247 crtc_commit:111-253   (  253) [001] d..2 24574.400429: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
83248          <idle>-0     (-----) [001] d..1 24574.400437: cpu_idle: state=0 cpu_id=1
83249          <idle>-0     (-----) [001] d.s3 24574.400913: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
83250          <idle>-0     (-----) [001] d.s4 24574.400931: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
83251          <idle>-0     (-----) [002] .n.1 24574.400937: cpu_idle: state=4294967295 cpu_id=2
83252          <idle>-0     (-----) [002] d..2 24574.400948: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
83253          <idle>-0     (-----) [001] ...1 24574.400954: cpu_idle: state=4294967295 cpu_id=1
83254          <idle>-0     (-----) [001] d..1 24574.400959: cpu_idle: state=0 cpu_id=1
83255  crtc_event:111-254   (  254) [002] d..2 24574.400983: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83256          <idle>-0     (-----) [002] d..1 24574.400994: cpu_idle: state=0 cpu_id=2
83257          <idle>-0     (-----) [000] d.h5 24574.402481: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
83258          <idle>-0     (-----) [000] d.h6 24574.402496: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
83259          <idle>-0     (-----) [001] .n.1 24574.402502: cpu_idle: state=4294967295 cpu_id=1
83260          <idle>-0     (-----) [000] ...1 24574.402510: cpu_idle: state=4294967295 cpu_id=0
83261          <idle>-0     (-----) [001] d..2 24574.402511: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
83262          <idle>-0     (-----) [000] d..1 24574.402515: cpu_idle: state=0 cpu_id=0
83263          <idle>-0     (-----) [002] ...1 24574.402595: cpu_idle: state=4294967295 cpu_id=2
83264          <idle>-0     (-----) [002] d..1 24574.402600: cpu_idle: state=0 cpu_id=2
83265 crtc_commit:111-253   (  253) [001] d..2 24574.402605: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
83266          <idle>-0     (-----) [001] d..1 24574.402615: cpu_idle: state=0 cpu_id=1
83267          <idle>-0     (-----) [000] d.h5 24574.402791: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
83268          <idle>-0     (-----) [000] d.h6 24574.402805: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
83269          <idle>-0     (-----) [002] .n.1 24574.402810: cpu_idle: state=4294967295 cpu_id=2
83270          <idle>-0     (-----) [002] d..2 24574.402819: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
83271          <idle>-0     (-----) [000] d.h2 24574.402831: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=000
83272  crtc_event:111-254   (  254) [002] d..2 24574.402843: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83273          <idle>-0     (-----) [000] dnh3 24574.402852: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=000
83274          <idle>-0     (-----) [002] d..1 24574.402853: cpu_idle: state=0 cpu_id=2
83275          <idle>-0     (-----) [000] .n.1 24574.402860: cpu_idle: state=4294967295 cpu_id=0
83276          <idle>-0     (-----) [000] d..2 24574.402872: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
83277           <...>-13147 (-----) [000] d..2 24574.403295: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
83278           <...>-13147 (-----) [000] d..3 24574.403322: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
83279           <...>-13147 (-----) [000] d..2 24574.403451: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
83280          <idle>-0     (-----) [001] d.h2 24574.403467: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
83281          <idle>-0     (-----) [001] dnh3 24574.403484: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
83282          <idle>-0     (-----) [001] .n.1 24574.403492: cpu_idle: state=4294967295 cpu_id=1
83283          <idle>-0     (-----) [001] d..2 24574.403501: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
83284        DispSync-23904 (23896) [001] d..1 24574.403532: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
83285        DispSync-23904 (23896) [001] d..2 24574.403550: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
83286          <idle>-0     (-----) [002] .n.1 24574.403556: cpu_idle: state=4294967295 cpu_id=2
83287          <idle>-0     (-----) [002] d..2 24574.403566: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
83288        DispSync-23904 (23896) [001] d..2 24574.403586: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
83289          <idle>-0     (-----) [001] d..1 24574.403597: cpu_idle: state=0 cpu_id=1
83290   sfEventThread-23906 (23896) [002] d..3 24574.403618: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
83291     logd.writer-563   (  555) [000] d..2 24574.403625: 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
83292          <idle>-0     (-----) [000] d..1 24574.403641: cpu_idle: state=0 cpu_id=0
83293          <idle>-0     (-----) [000] .n.1 24574.403646: cpu_idle: state=4294967295 cpu_id=0
83294   sfEventThread-23906 (23896) [002] d..4 24574.403647: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
83295          <idle>-0     (-----) [000] d..2 24574.403661: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
83296   sfEventThread-23906 (23896) [002] d..2 24574.403679: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83297          <idle>-0     (-----) [002] d..1 24574.403694: cpu_idle: state=0 cpu_id=2
83298          <idle>-0     (-----) [003] d.s2 24574.404240: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
83299          <idle>-0     (-----) [003] dns3 24574.404255: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
83300          <idle>-0     (-----) [003] .n.1 24574.404262: cpu_idle: state=4294967295 cpu_id=3
83301          <idle>-0     (-----) [003] d..2 24574.404273: 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
83302     rcu_preempt-7     (    7) [003] d..2 24574.404281: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
83303     rcu_preempt-7     (    7) [003] d..3 24574.404316: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
83304     rcu_preempt-7     (    7) [003] d..2 24574.404328: 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
83305         rcuop/2-29    (   29) [003] d..2 24574.404334: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
83306  surfaceflinger-23896 (23896) [000] d..2 24574.404346: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
83307         rcuop/2-29    (   29) [003] d..3 24574.404347: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
83308         rcuop/2-29    (   29) [003] d..2 24574.404355: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
83309         rcuop/2-29    (   29) [003] d..3 24574.404366: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
83310         rcuop/2-29    (   29) [003] d..2 24574.404374: 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
83311         rcuop/3-37    (   37) [003] d..2 24574.404392: 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
83312  surfaceflinger-23896 (23896) [000] d..3 24574.404403: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
83313     rcu_preempt-7     (    7) [003] d..2 24574.404413: 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
83314         rcuop/0-10    (   10) [003] d..2 24574.404439: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
83315          <idle>-0     (-----) [003] d..1 24574.404452: cpu_idle: state=0 cpu_id=3
83316          <idle>-0     (-----) [001] d.h2 24574.404469: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
83317          <idle>-0     (-----) [001] dnh3 24574.404480: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
83318          <idle>-0     (-----) [001] .n.1 24574.404488: cpu_idle: state=4294967295 cpu_id=1
83319          <idle>-0     (-----) [001] d..2 24574.404498: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
83320        DispSync-23904 (23896) [001] d..1 24574.404511: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
83321        DispSync-23904 (23896) [001] d..2 24574.404527: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
83322          <idle>-0     (-----) [002] .n.1 24574.404534: cpu_idle: state=4294967295 cpu_id=2
83323          <idle>-0     (-----) [002] d..2 24574.404545: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
83324        DispSync-23904 (23896) [001] d..2 24574.404553: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
83325          <idle>-0     (-----) [001] d..1 24574.404565: cpu_idle: state=0 cpu_id=1
83326  appEventThread-23905 (23896) [002] d..3 24574.404599: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
83327  appEventThread-23905 (23896) [002] d..4 24574.404623: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
83328          <idle>-0     (-----) [001] .n.1 24574.404629: cpu_idle: state=4294967295 cpu_id=1
83329  appEventThread-23905 (23896) [002] d..3 24574.404639: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
83330          <idle>-0     (-----) [001] d..2 24574.404642: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
83331  surfaceflinger-23896 (23896) [000] d..1 24574.404653: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
83332  appEventThread-23905 (23896) [002] d..4 24574.404664: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
83333          <idle>-0     (-----) [003] .n.1 24574.404670: cpu_idle: state=4294967295 cpu_id=3
83334          <idle>-0     (-----) [003] d..2 24574.404681: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
83335  surfaceflinger-23896 (23896) [000] d..2 24574.404681: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
83336 s.nexuslauncher-24827 (24827) [001] d..2 24574.404692: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
83337  appEventThread-23905 (23896) [002] d..2 24574.404710: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83338          <idle>-0     (-----) [002] d..1 24574.404725: cpu_idle: state=0 cpu_id=2
83339   sfEventThread-23906 (23896) [001] d..2 24574.404735: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
83340<...>-24151 ( 24151) [003] .... 24574.405002: binder_transaction: transaction=1670795 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
83341<...>-24151 ( 24151) [003] d..4 24574.405012: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=003
83342<...>-24151 ( 24151) [003] d..5 24574.405047: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
83343          <idle>-0     (-----) [002] .n.1 24574.405053: cpu_idle: state=4294967295 cpu_id=2
83344 s.nexuslauncher-24827 (24827) [001] .... 24574.405057: binder_transaction: transaction=1670796 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
83345 s.nexuslauncher-24827 (24827) [001] d..4 24574.405066: sched_waking: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=002
83346          <idle>-0     (-----) [002] d..2 24574.405066: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
83347<...>-24151 ( 24151) [003] d..3 24574.405088: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=002
83348 s.nexuslauncher-24827 (24827) [001] d.h5 24574.405147: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
83349          <idle>-0     (-----) [005] dnh2 24574.405147: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=005
83350          <idle>-0     (-----) [005] .n.1 24574.405154: cpu_idle: state=4294967295 cpu_id=5
83351 s.nexuslauncher-24827 (24827) [001] d.h5 24574.405160: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
83352          <idle>-0     (-----) [005] d..2 24574.405162: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
83353          <idle>-0     (-----) [004] dnh2 24574.405167: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
83354          <idle>-0     (-----) [006] dnh2 24574.405170: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
83355          <idle>-0     (-----) [004] .n.1 24574.405210: cpu_idle: state=4294967295 cpu_id=4
83356          <idle>-0     (-----) [006] .n.1 24574.405212: cpu_idle: state=4294967295 cpu_id=6
83357          <idle>-0     (-----) [004] d..2 24574.405216: 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
83358 s.nexuslauncher-24827 (24827) [001] dnh6 24574.405219: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
83359          <idle>-0     (-----) [006] d..2 24574.405221: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
83360         sugov:4-560   (  560) [004] d..2 24574.405227: 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
83361  Binder:23896_3-23986 (23896) [005] .... 24574.405228: binder_transaction_received: transaction=1670796
83362  Binder:23896_5-25989 (23896) [002] .... 24574.405229: binder_transaction_received: transaction=1670795
83363          <idle>-0     (-----) [004] d..1 24574.405232: cpu_idle: state=0 cpu_id=4
83364 s.nexuslauncher-24827 (24827) [001] d..2 24574.405232: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
83365         sugov:0-559   (  559) [001] d..2 24574.405247: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
83366  Binder:23896_3-23986 (23896) [005] d..1 24574.405250: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
83367    RenderThread-24437 (24151) [006] d..2 24574.405251: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
83368          <idle>-0     (-----) [006] d..1 24574.405258: cpu_idle: state=0 cpu_id=6
83369  Binder:23896_3-23986 (23896) [005] d..1 24574.405274: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
83370 s.nexuslauncher-24827 (24827) [001] dnh1 24574.405281: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
83371  Binder:23896_5-25989 (23896) [002] d..2 24574.405283: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83372 s.nexuslauncher-24827 (24827) [001] d..2 24574.405293: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
83373          <idle>-0     (-----) [002] d..1 24574.405296: cpu_idle: state=0 cpu_id=2
83374          <idle>-0     (-----) [002] dnh2 24574.405310: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
83375          <idle>-0     (-----) [002] .n.1 24574.405317: cpu_idle: state=4294967295 cpu_id=2
83376  Binder:23896_3-23986 (23896) [005] d..2 24574.405320: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
83377<...>-24151 ( 24151) [003] d..3 24574.405321: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
83378          <idle>-0     (-----) [002] d..2 24574.405326: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
83379          <idle>-0     (-----) [005] d..1 24574.405329: cpu_idle: state=0 cpu_id=5
83380  Binder:23896_5-25989 (23896) [002] d..1 24574.405336: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
83381  appEventThread-23905 (23896) [001] d..2 24574.405339: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
83382          <idle>-0     (-----) [006] dnh2 24574.405346: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
83383          <idle>-0     (-----) [006] .n.1 24574.405350: cpu_idle: state=4294967295 cpu_id=6
83384          <idle>-0     (-----) [006] d..2 24574.405356: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
83385 s.nexuslauncher-24827 (24827) [001] dn.3 24574.405356: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=003
83386  Binder:23896_5-25989 (23896) [002] d..2 24574.405358: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
83387<...>-24151 ( 24151) [003] d..2 24574.405376: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
83388          <idle>-0     (-----) [003] d..1 24574.405393: cpu_idle: state=0 cpu_id=3
83389          <idle>-0     (-----) [005] dnh2 24574.405404: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
83390  Binder:23896_5-25989 (23896) [002] d..2 24574.405406: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83391          <idle>-0     (-----) [005] .n.1 24574.405408: cpu_idle: state=4294967295 cpu_id=5
83392          <idle>-0     (-----) [002] d..1 24574.405419: cpu_idle: state=0 cpu_id=2
83393          <idle>-0     (-----) [005] d..2 24574.405442: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
83394    RenderThread-24437 (24151) [006] d..1 24574.405447: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
83395 s.nexuslauncher-24827 (24827) [001] d..2 24574.405447: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
83396          <idle>-0     (-----) [002] dnh2 24574.405478: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
83397  appEventThread-23905 (23896) [001] d..2 24574.405479: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
83398    RenderThread-25194 (24827) [005] d..2 24574.405482: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
83399          <idle>-0     (-----) [002] .n.1 24574.405485: cpu_idle: state=4294967295 cpu_id=2
83400          <idle>-0     (-----) [005] d..1 24574.405491: cpu_idle: state=0 cpu_id=5
83401          <idle>-0     (-----) [002] d..2 24574.405495: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
83402    RenderThread-24437 (24151) [006] .... 24574.405511: binder_transaction: transaction=1670797 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
83403    RenderThread-24437 (24151) [006] d..4 24574.405517: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
83404    RenderThread-24437 (24151) [006] d..5 24574.405536: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=006
83405    RenderThread-24437 (24151) [006] d..2 24574.405575: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
83406  Binder:23896_5-25989 (23896) [006] .... 24574.405582: binder_transaction_received: transaction=1670797
83407<...>-24151 ( 24151) [002] d..2 24574.405594: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83408          <idle>-0     (-----) [002] d..1 24574.405609: cpu_idle: state=0 cpu_id=2
83409  Binder:23896_5-25989 (23896) [006] .... 24574.405630: binder_transaction: transaction=1670798 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
83410  Binder:23896_5-25989 (23896) [006] d..2 24574.405640: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
83411  Binder:23896_5-25989 (23896) [006] d..3 24574.405650: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
83412  Binder:23896_5-25989 (23896) [006] d..2 24574.405672: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
83413    RenderThread-24437 (24151) [006] .... 24574.405676: binder_transaction_received: transaction=1670798
83414  surfaceflinger-23896 (23896) [000] ...1 24574.405684: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
83415  surfaceflinger-23896 (23896) [000] ...1 24574.405693: tracing_mark_write: E|23896
83416  surfaceflinger-23896 (23896) [000] .... 24574.405762: binder_transaction: transaction=1670799 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
83417  surfaceflinger-23896 (23896) [000] ...2 24574.405791: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
83418  surfaceflinger-23896 (23896) [000] d..4 24574.405801: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
83419  surfaceflinger-23896 (23896) [000] d..5 24574.405832: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
83420          <idle>-0     (-----) [003] .n.1 24574.405838: cpu_idle: state=4294967295 cpu_id=3
83421          <idle>-0     (-----) [003] d..2 24574.405849: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
83422  HwBinder:598_3-633   (  598) [003] .... 24574.405862: binder_transaction_received: transaction=1670799
83423  surfaceflinger-23896 (23896) [000] d..2 24574.405862: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83424          <idle>-0     (-----) [000] d..1 24574.405880: cpu_idle: state=0 cpu_id=0
83425  HwBinder:598_3-633   (  598) [003] ...1 24574.405924: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
83426 s.nexuslauncher-24827 (24827) [001] d..3 24574.405968: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
83427 s.nexuslauncher-24827 (24827) [001] d..4 24574.406005: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
83428          <idle>-0     (-----) [000] .n.1 24574.406012: cpu_idle: state=4294967295 cpu_id=0
83429 s.nexuslauncher-24827 (24827) [001] d.h3 24574.406054: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
83430          <idle>-0     (-----) [000] d..2 24574.406056: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
83431 s.nexuslauncher-24827 (24827) [001] d.h3 24574.406066: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
83432          <idle>-0     (-----) [004] dnh2 24574.406072: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
83433          <idle>-0     (-----) [004] .n.1 24574.406076: cpu_idle: state=4294967295 cpu_id=4
83434          <idle>-0     (-----) [004] d..2 24574.406081: 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
83435  HwBinder:598_3-633   (  598) [003] ...1 24574.406083: tracing_mark_write: B|598|HWCSession::PresentDisplay::
83436 s.nexuslauncher-24827 (24827) [001] d.h4 24574.406085: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
83437         sugov:4-560   (  560) [004] d..2 24574.406091: 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
83438          <idle>-0     (-----) [002] .n.1 24574.406092: cpu_idle: state=4294967295 cpu_id=2
83439          <idle>-0     (-----) [004] d..1 24574.406096: cpu_idle: state=0 cpu_id=4
83440          <idle>-0     (-----) [002] d..2 24574.406103: 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
83441 s.nexuslauncher-24827 (24827) [001] d..2 24574.406119: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
83442         sugov:0-559   (  559) [002] .... 24574.406132: clk_set_rate: pwrcl_clk 1056000000
83443          <idle>-0     (-----) [001] d..1 24574.406139: cpu_idle: state=0 cpu_id=1
83444         sugov:0-559   (  559) [002] .... 24574.406144: clk_set_rate: cpu3_pwrcl_clk 979200000
83445         sugov:0-559   (  559) [002] .... 24574.406154: clk_set_rate: cpu2_pwrcl_clk 979200000
83446         sugov:0-559   (  559) [002] .... 24574.406163: clk_set_rate: cpu1_pwrcl_clk 979200000
83447         sugov:0-559   (  559) [002] .... 24574.406171: clk_set_rate: cpu0_pwrcl_clk 1056000000
83448         sugov:0-559   (  559) [002] .... 24574.406181: cpu_frequency: state=1056000 cpu_id=0
83449         sugov:0-559   (  559) [002] .... 24574.406199: cpu_frequency: state=1056000 cpu_id=1
83450         sugov:0-559   (  559) [002] .... 24574.406203: cpu_frequency: state=1056000 cpu_id=2
83451         sugov:0-559   (  559) [002] .... 24574.406207: cpu_frequency: state=1056000 cpu_id=3
83452         sugov:0-559   (  559) [002] d..2 24574.406233: 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
83453          <idle>-0     (-----) [002] d..1 24574.406244: cpu_idle: state=0 cpu_id=2
83454    RenderThread-25194 (24827) [000] d..1 24574.406247: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
83455    RenderThread-25194 (24827) [000] d..2 24574.406267: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
83456          <idle>-0     (-----) [001] .n.1 24574.406274: cpu_idle: state=4294967295 cpu_id=1
83457  HwBinder:598_3-633   (  598) [003] ...1 24574.406278: tracing_mark_write: B|598|HWDeviceDRM::Commit::
83458          <idle>-0     (-----) [001] d..2 24574.406286: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
83459    RenderThread-25194 (24827) [000] d..1 24574.406290: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
83460  HwBinder:598_3-633   (  598) [003] ...1 24574.406292: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
83461    RenderThread-25194 (24827) [000] d..2 24574.406322: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=002
83462          <idle>-0     (-----) [002] .n.1 24574.406327: cpu_idle: state=4294967295 cpu_id=2
83463          <idle>-0     (-----) [002] d..2 24574.406367: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
83464 s.nexuslauncher-24827 (24827) [001] d..2 24574.406391: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
83465          <idle>-0     (-----) [001] d..1 24574.406406: cpu_idle: state=0 cpu_id=1
83466    RenderThread-25194 (24827) [000] .... 24574.406442: binder_transaction: transaction=1670800 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
83467    RenderThread-25194 (24827) [000] ...2 24574.406450: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
83468    RenderThread-25194 (24827) [000] d..4 24574.406454: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=006
83469    RenderThread-25194 (24827) [000] d..5 24574.406479: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
83470    RenderThread-25194 (24827) [000] d..2 24574.406524: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
83471  Binder:23896_5-25989 (23896) [000] .... 24574.406533: binder_transaction_received: transaction=1670800
83472  Binder:23896_5-25989 (23896) [000] .... 24574.406592: binder_transaction: transaction=1670801 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
83473  Binder:23896_5-25989 (23896) [000] d..2 24574.406604: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
83474  Binder:23896_5-25989 (23896) [000] dn.3 24574.406618: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
83475    RenderThread-24437 (24151) [006] d..2 24574.406625: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
83476  Binder:23896_5-25989 (23896) [000] d..2 24574.406626: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
83477    RenderThread-25194 (24827) [000] .... 24574.406633: binder_transaction_received: transaction=1670801
83478          <idle>-0     (-----) [006] d..1 24574.406639: cpu_idle: state=0 cpu_id=6
83479<...>-27853 ( 24827) [002] .... 24574.406661: binder_transaction: transaction=1670802 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
83480<...>-27853 ( 24827) [002] ...2 24574.406683: binder_set_priority: proc=23896 thread=23986 old=120 => new=118 desired=118
83481<...>-27853 ( 24827) [002] d..4 24574.406687: sched_waking: comm=Binder:23896_3 pid=23986 prio=118 target_cpu=005
83482          <idle>-0     (-----) [006] d.h2 24574.406715: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
83483<...>-27853 ( 24827) [002] dn.5 24574.406718: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=118 target_cpu=002
83484          <idle>-0     (-----) [006] d.h3 24574.406723: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
83485          <idle>-0     (-----) [006] dnh3 24574.406727: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
83486<...>-27853 ( 24827) [002] dnh5 24574.406768: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
83487          <idle>-0     (-----) [006] .n.1 24574.406768: cpu_idle: state=4294967295 cpu_id=6
83488          <idle>-0     (-----) [006] d..2 24574.406776: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
83489<...>-27853 ( 24827) [002] dnh5 24574.406780: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
83490          <idle>-0     (-----) [004] dnh2 24574.406786: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
83491          <idle>-0     (-----) [004] .n.1 24574.406790: cpu_idle: state=4294967295 cpu_id=4
83492          <idle>-0     (-----) [004] d..2 24574.406795: 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
83493<...>-27853 ( 24827) [002] dnh6 24574.406798: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
83494         sugov:4-560   (  560) [004] d..2 24574.406805: 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
83495          <idle>-0     (-----) [001] .n.1 24574.406805: cpu_idle: state=4294967295 cpu_id=1
83496<...>-27853 ( 24827) [002] d..2 24574.406810: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=R+ ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=118
83497          <idle>-0     (-----) [004] d..1 24574.406810: cpu_idle: state=0 cpu_id=4
83498          <idle>-0     (-----) [001] d..2 24574.406815: 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
83499  Binder:23896_3-23986 (23896) [002] .... 24574.406819: binder_transaction_received: transaction=1670802
83500         sugov:0-559   (  559) [001] .... 24574.406839: clk_set_rate: pwrcl_clk 1132800000
83501         sugov:0-559   (  559) [001] .... 24574.406849: clk_set_rate: cpu3_pwrcl_clk 1056000000
83502         sugov:0-559   (  559) [001] .... 24574.406859: clk_set_rate: cpu2_pwrcl_clk 1056000000
83503         sugov:0-559   (  559) [001] .... 24574.406868: clk_set_rate: cpu1_pwrcl_clk 1056000000
83504         sugov:0-559   (  559) [001] .... 24574.406876: clk_set_rate: cpu0_pwrcl_clk 1132800000
83505         sugov:0-559   (  559) [001] .... 24574.406885: cpu_frequency: state=1132800 cpu_id=0
83506         sugov:0-559   (  559) [001] .... 24574.406901: cpu_frequency: state=1132800 cpu_id=1
83507    RenderThread-25194 (24827) [000] d.h2 24574.406903: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
83508         sugov:0-559   (  559) [001] .... 24574.406905: cpu_frequency: state=1132800 cpu_id=2
83509         sugov:0-559   (  559) [001] .... 24574.406908: cpu_frequency: state=1132800 cpu_id=3
83510  HwBinder:598_3-633   (  598) [003] d..2 24574.406934: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
83511    RenderThread-25194 (24827) [000] d.h3 24574.406937: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
83512    RenderThread-24437 (24151) [006] .... 24574.406939: binder_transaction: transaction=1670803 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
83513    RenderThread-24437 (24151) [006] d..4 24574.406951: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=003
83514  Binder:23896_3-23986 (23896) [002] d..2 24574.406953: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=118 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
83515         sugov:0-559   (  559) [001] d..2 24574.406960: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
83516  Binder:23896_5-25989 (23896) [001] .... 24574.406967: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
83517  HwBinder:598_3-633   (  598) [003] d..3 24574.406973: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
83518    RenderThread-24437 (24151) [006] dn.5 24574.406976: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=006
83519 kgsl_worker_thr-246   (  246) [002] d..2 24574.407010: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
83520  Binder:23896_5-25989 (23896) [001] d..2 24574.407012: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
83521    RenderThread-24437 (24151) [006] d..2 24574.407013: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
83522  Binder:23896_4-24423 (23896) [006] .... 24574.407023: binder_transaction_received: transaction=1670803
83523 kgsl_worker_thr-246   (  246) [002] d..3 24574.407051: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
83524 kgsl_worker_thr-246   (  246) [002] d..2 24574.407068: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=118
83525  Binder:23896_3-23986 (23896) [002] .... 24574.407087: binder_transaction: transaction=1670804 dest_node=0 dest_proc=24827 dest_thread=27853 reply=1 flags=0x0 code=0x0
83526  HwBinder:598_3-633   (  598) [003] ...1 24574.407087: tracing_mark_write: E|598
83527  HwBinder:598_3-633   (  598) [003] ...1 24574.407093: tracing_mark_write: E|598
83528  Binder:23896_3-23986 (23896) [002] .... 24574.407095: binder_set_priority: proc=23896 thread=23986 old=118 => new=120 desired=120
83529  Binder:23896_4-24423 (23896) [006] .... 24574.407141: binder_transaction: transaction=1670805 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
83530  Binder:23896_3-23986 (23896) [002] d..2 24574.407148: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
83531<...>-27853 ( 24827) [002] .... 24574.407157: binder_transaction_received: transaction=1670804
83532  HwBinder:598_3-633   (  598) [003] ...1 24574.407169: tracing_mark_write: E|598
83533  Binder:23896_4-24423 (23896) [006] d..2 24574.407172: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
83534    RenderThread-24437 (24151) [006] .... 24574.407178: binder_transaction_received: transaction=1670805
83535<...>-27853 ( 24827) [002] d..2 24574.407222: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83536  HwBinder:598_3-633   (  598) [003] ...1 24574.407229: tracing_mark_write: E|598
83537          <idle>-0     (-----) [002] d..1 24574.407240: cpu_idle: state=0 cpu_id=2
83538    RenderThread-24437 (24151) [006] d..2 24574.407246: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
83539  HwBinder:598_3-633   (  598) [003] .... 24574.407248: binder_transaction: transaction=1670806 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
83540          <idle>-0     (-----) [006] d..1 24574.407259: cpu_idle: state=0 cpu_id=6
83541  HwBinder:598_3-633   (  598) [003] d..2 24574.407270: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
83542  HwBinder:598_3-633   (  598) [003] d..3 24574.407295: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
83543  HwBinder:598_3-633   (  598) [003] .... 24574.407300: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
83544          <idle>-0     (-----) [002] .n.1 24574.407302: cpu_idle: state=4294967295 cpu_id=2
83545          <idle>-0     (-----) [002] d..2 24574.407312: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
83546  surfaceflinger-23896 (23896) [002] .... 24574.407321: binder_transaction_received: transaction=1670806
83547  HwBinder:598_3-633   (  598) [003] d..2 24574.407385: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
83548    RenderThread-25194 (24827) [000] d.s2 24574.407595: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
83549    RenderThread-25194 (24827) [000] d.s3 24574.407642: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
83550 crtc_commit:111-253   (  253) [001] d..2 24574.407870: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
83551  surfaceflinger-23896 (23896) [002] d..2 24574.407890: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83552          <idle>-0     (-----) [002] d..1 24574.407909: cpu_idle: state=0 cpu_id=2
83553  Binder:23896_5-25989 (23896) [001] d..2 24574.407937: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
83554          <idle>-0     (-----) [001] d..1 24574.407953: cpu_idle: state=0 cpu_id=1
83555  kworker/u16:15-18488 (18488) [003] d..2 24574.408001: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
83556    RenderThread-25194 (24827) [000] .... 24574.408060: binder_transaction: transaction=1670807 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
83557    RenderThread-25194 (24827) [000] ...2 24574.408073: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
83558    RenderThread-25194 (24827) [000] d..4 24574.408077: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
83559    RenderThread-25194 (24827) [000] d..5 24574.408101: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
83560    RenderThread-25194 (24827) [000] d..2 24574.408115: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
83561  Binder:23896_5-25989 (23896) [000] .... 24574.408123: binder_transaction_received: transaction=1670807
83562  kworker/u16:10-23868 (23868) [003] d..2 24574.408188: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
83563  kworker/u16:15-18488 (18488) [003] d..2 24574.408221: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
83564          <idle>-0     (-----) [003] d..1 24574.408233: cpu_idle: state=0 cpu_id=3
83565  Binder:23896_5-25989 (23896) [000] .... 24574.408260: binder_transaction: transaction=1670808 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
83566  Binder:23896_5-25989 (23896) [000] d..2 24574.408268: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
83567  Binder:23896_5-25989 (23896) [000] dn.3 24574.408287: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
83568  Binder:23896_5-25989 (23896) [000] d..2 24574.408295: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
83569    RenderThread-25194 (24827) [000] .... 24574.408301: binder_transaction_received: transaction=1670808
83570    RenderThread-25194 (24827) [000] d..2 24574.408415: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
83571  Binder:23896_5-25989 (23896) [000] .... 24574.408422: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
83572  Binder:23896_5-25989 (23896) [000] d..2 24574.408480: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83573          <idle>-0     (-----) [000] d..1 24574.408497: cpu_idle: state=0 cpu_id=0
83574          <idle>-0     (-----) [002] ...1 24574.409058: cpu_idle: state=4294967295 cpu_id=2
83575          <idle>-0     (-----) [002] d..1 24574.409062: cpu_idle: state=0 cpu_id=2
83576          <idle>-0     (-----) [001] ...1 24574.409429: cpu_idle: state=4294967295 cpu_id=1
83577          <idle>-0     (-----) [001] d..1 24574.409434: cpu_idle: state=0 cpu_id=1
83578          <idle>-0     (-----) [000] d.h3 24574.409915: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
83579          <idle>-0     (-----) [000] d.h4 24574.409932: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
83580          <idle>-0     (-----) [002] .n.1 24574.409937: cpu_idle: state=4294967295 cpu_id=2
83581          <idle>-0     (-----) [002] d..2 24574.409947: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
83582          <idle>-0     (-----) [000] ...1 24574.409948: cpu_idle: state=4294967295 cpu_id=0
83583          <idle>-0     (-----) [000] d..1 24574.409954: cpu_idle: state=0 cpu_id=0
83584 kgsl_worker_thr-246   (  246) [002] d..2 24574.410031: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83585          <idle>-0     (-----) [002] d..1 24574.410043: cpu_idle: state=0 cpu_id=2
83586          <idle>-0     (-----) [003] d.s2 24574.410912: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
83587          <idle>-0     (-----) [003] dns3 24574.410931: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
83588          <idle>-0     (-----) [003] dns3 24574.410936: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
83589          <idle>-0     (-----) [003] dns4 24574.410950: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
83590          <idle>-0     (-----) [003] .n.1 24574.410957: cpu_idle: state=4294967295 cpu_id=3
83591          <idle>-0     (-----) [003] d..2 24574.410966: 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
83592     rcu_preempt-7     (    7) [003] d..2 24574.410984: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
83593     rcu_preempt-7     (    7) [003] d..3 24574.411000: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
83594     rcu_preempt-7     (    7) [003] d..2 24574.411017: 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
83595         rcuop/2-29    (   29) [003] d..2 24574.411038: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
83596  kworker/u16:15-18488 (18488) [003] d..2 24574.411124: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
83597          <idle>-0     (-----) [003] d..1 24574.411137: cpu_idle: state=0 cpu_id=3
83598          <idle>-0     (-----) [002] ...1 24574.411223: cpu_idle: state=4294967295 cpu_id=2
83599          <idle>-0     (-----) [002] d..1 24574.411227: cpu_idle: state=0 cpu_id=2
83600          <idle>-0     (-----) [000] d.h5 24574.416646: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
83601          <idle>-0     (-----) [000] d.h6 24574.416662: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
83602          <idle>-0     (-----) [002] .n.1 24574.416667: cpu_idle: state=4294967295 cpu_id=2
83603          <idle>-0     (-----) [000] d.h5 24574.416669: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
83604          <idle>-0     (-----) [002] d..2 24574.416678: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
83605          <idle>-0     (-----) [000] d.h6 24574.416680: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
83606          <idle>-0     (-----) [001] .n.1 24574.416685: cpu_idle: state=4294967295 cpu_id=1
83607          <idle>-0     (-----) [000] d..2 24574.416693: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
83608          <idle>-0     (-----) [001] d..2 24574.416695: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
83609          <idle>-0     (-----) [000] dn.3 24574.416705: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
83610          <idle>-0     (-----) [000] .n.1 24574.416709: cpu_idle: state=4294967295 cpu_id=0
83611  crtc_event:111-254   (  254) [002] d..2 24574.416721: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83612          <idle>-0     (-----) [000] d..2 24574.416722: 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
83613          <idle>-0     (-----) [002] d..1 24574.416732: cpu_idle: state=0 cpu_id=2
83614     ksoftirqd/0-3     (    3) [000] d..2 24574.416753: 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
83615          <idle>-0     (-----) [000] d..1 24574.416762: cpu_idle: state=0 cpu_id=0
83616 crtc_commit:111-253   (  253) [001] d..2 24574.416881: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
83617          <idle>-0     (-----) [001] d..1 24574.416889: cpu_idle: state=0 cpu_id=1
83618          <idle>-0     (-----) [003] d.s2 24574.417570: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
83619          <idle>-0     (-----) [003] dns3 24574.417620: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
83620          <idle>-0     (-----) [003] .n.1 24574.417636: cpu_idle: state=4294967295 cpu_id=3
83621          <idle>-0     (-----) [003] d..2 24574.417646: 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
83622          <idle>-0     (-----) [001] d.H3 24574.417649: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
83623          <idle>-0     (-----) [004] dnh2 24574.417669: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
83624          <idle>-0     (-----) [001] d.s3 24574.417669: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
83625     rcu_preempt-7     (    7) [003] d..2 24574.417670: 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
83626          <idle>-0     (-----) [004] .n.1 24574.417673: cpu_idle: state=4294967295 cpu_id=4
83627          <idle>-0     (-----) [004] d..2 24574.417678: 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
83628          <idle>-0     (-----) [003] d..1 24574.417680: cpu_idle: state=0 cpu_id=3
83629          <idle>-0     (-----) [001] d.s4 24574.417685: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
83630         sugov:4-560   (  560) [004] d..2 24574.417690: 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
83631          <idle>-0     (-----) [002] .n.1 24574.417691: cpu_idle: state=4294967295 cpu_id=2
83632          <idle>-0     (-----) [001] d.s3 24574.417691: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
83633          <idle>-0     (-----) [004] d..1 24574.417697: cpu_idle: state=0 cpu_id=4
83634          <idle>-0     (-----) [002] d..2 24574.417700: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
83635          <idle>-0     (-----) [001] dns4 24574.417724: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
83636  crtc_event:111-254   (  254) [002] d..2 24574.417726: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83637          <idle>-0     (-----) [002] d..1 24574.417734: cpu_idle: state=0 cpu_id=2
83638          <idle>-0     (-----) [001] .n.1 24574.417743: cpu_idle: state=4294967295 cpu_id=1
83639          <idle>-0     (-----) [001] d..2 24574.417752: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
83640  kworker/u16:15-18488 (18488) [001] d..2 24574.418017: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
83641          <idle>-0     (-----) [001] d..1 24574.418029: cpu_idle: state=0 cpu_id=1
83642          <idle>-0     (-----) [003] d.s3 24574.418060: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
83643          <idle>-0     (-----) [003] d.s4 24574.418070: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
83644          <idle>-0     (-----) [003] d.s4 24574.418078: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
83645          <idle>-0     (-----) [001] .n.1 24574.418084: cpu_idle: state=4294967295 cpu_id=1
83646          <idle>-0     (-----) [003] ...1 24574.418087: cpu_idle: state=4294967295 cpu_id=3
83647          <idle>-0     (-----) [003] d..1 24574.418092: cpu_idle: state=0 cpu_id=3
83648          <idle>-0     (-----) [001] d..2 24574.418093: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
83649  kworker/u16:15-18488 (18488) [001] .... 24574.418150: clk_set_rate: l3_cluster0_vote_clk 300000000
83650  kworker/u16:15-18488 (18488) [001] .... 24574.418158: clk_set_rate: l3_clk 300000000
83651  kworker/u16:15-18488 (18488) [001] d..2 24574.418214: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
83652          <idle>-0     (-----) [001] d..1 24574.418226: cpu_idle: state=0 cpu_id=1
83653          <idle>-0     (-----) [000] d.h5 24574.418960: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
83654          <idle>-0     (-----) [000] d.h6 24574.418978: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
83655          <idle>-0     (-----) [001] .n.1 24574.418985: cpu_idle: state=4294967295 cpu_id=1
83656          <idle>-0     (-----) [000] ...1 24574.418993: cpu_idle: state=4294967295 cpu_id=0
83657          <idle>-0     (-----) [001] d..2 24574.418994: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
83658          <idle>-0     (-----) [000] d..1 24574.418999: cpu_idle: state=0 cpu_id=0
83659 crtc_commit:111-253   (  253) [001] d..2 24574.419106: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
83660          <idle>-0     (-----) [001] d..1 24574.419117: cpu_idle: state=0 cpu_id=1
83661          <idle>-0     (-----) [000] d.h5 24574.419269: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
83662          <idle>-0     (-----) [000] d.h6 24574.419284: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
83663          <idle>-0     (-----) [002] .n.1 24574.419290: cpu_idle: state=4294967295 cpu_id=2
83664          <idle>-0     (-----) [002] d..2 24574.419298: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
83665          <idle>-0     (-----) [000] ...1 24574.419305: cpu_idle: state=4294967295 cpu_id=0
83666          <idle>-0     (-----) [000] d..1 24574.419309: cpu_idle: state=0 cpu_id=0
83667  crtc_event:111-254   (  254) [002] d..2 24574.419321: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83668          <idle>-0     (-----) [002] d..1 24574.419330: cpu_idle: state=0 cpu_id=2
83669          <idle>-0     (-----) [001] d.h2 24574.419931: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
83670          <idle>-0     (-----) [001] dnh3 24574.419950: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
83671          <idle>-0     (-----) [001] .n.1 24574.419960: cpu_idle: state=4294967295 cpu_id=1
83672          <idle>-0     (-----) [001] d..2 24574.419969: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
83673        DispSync-23904 (23896) [001] d..1 24574.420006: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
83674        DispSync-23904 (23896) [001] d..2 24574.420030: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
83675          <idle>-0     (-----) [000] .n.1 24574.420035: cpu_idle: state=4294967295 cpu_id=0
83676          <idle>-0     (-----) [000] d..2 24574.420047: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
83677        DispSync-23904 (23896) [001] d..2 24574.420064: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
83678          <idle>-0     (-----) [001] d..1 24574.420077: cpu_idle: state=0 cpu_id=1
83679   sfEventThread-23906 (23896) [000] d..3 24574.420135: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
83680   sfEventThread-23906 (23896) [000] d..4 24574.420155: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
83681          <idle>-0     (-----) [002] .n.1 24574.420160: cpu_idle: state=4294967295 cpu_id=2
83682          <idle>-0     (-----) [002] d..2 24574.420169: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
83683   sfEventThread-23906 (23896) [000] d..2 24574.420191: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83684          <idle>-0     (-----) [000] d..1 24574.420205: cpu_idle: state=0 cpu_id=0
83685          <idle>-0     (-----) [001] d.h2 24574.420951: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
83686          <idle>-0     (-----) [001] dnh3 24574.420962: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
83687          <idle>-0     (-----) [001] .n.1 24574.420969: cpu_idle: state=4294967295 cpu_id=1
83688          <idle>-0     (-----) [001] d..2 24574.420980: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
83689        DispSync-23904 (23896) [001] d..1 24574.420994: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
83690        DispSync-23904 (23896) [001] d..2 24574.421017: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
83691          <idle>-0     (-----) [000] .n.1 24574.421024: cpu_idle: state=4294967295 cpu_id=0
83692          <idle>-0     (-----) [000] d..2 24574.421035: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
83693        DispSync-23904 (23896) [001] d..2 24574.421049: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
83694          <idle>-0     (-----) [001] d..1 24574.421062: cpu_idle: state=0 cpu_id=1
83695  appEventThread-23905 (23896) [000] d..3 24574.421102: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
83696  appEventThread-23905 (23896) [000] d..4 24574.421125: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
83697  surfaceflinger-23896 (23896) [002] d..1 24574.421131: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
83698          <idle>-0     (-----) [001] .n.1 24574.421132: cpu_idle: state=4294967295 cpu_id=1
83699          <idle>-0     (-----) [001] d..2 24574.421143: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
83700  appEventThread-23905 (23896) [000] d..3 24574.421146: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
83701  surfaceflinger-23896 (23896) [002] d..2 24574.421165: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
83702          <idle>-0     (-----) [003] .n.1 24574.421170: cpu_idle: state=4294967295 cpu_id=3
83703  appEventThread-23905 (23896) [000] d..4 24574.421184: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
83704          <idle>-0     (-----) [003] d..2 24574.421192: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
83705  appEventThread-23905 (23896) [000] d..2 24574.421234: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83706          <idle>-0     (-----) [000] d..1 24574.421249: cpu_idle: state=0 cpu_id=0
83707   sfEventThread-23906 (23896) [003] d..2 24574.421250: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
83708 s.nexuslauncher-24827 (24827) [001] .... 24574.421595: binder_transaction: transaction=1670809 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
83709<...>-24151 ( 24151) [003] .... 24574.421606: binder_transaction: transaction=1670810 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
83710 s.nexuslauncher-24827 (24827) [001] d..4 24574.421607: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
83711 s.nexuslauncher-24827 (24827) [001] d..5 24574.421635: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
83712          <idle>-0     (-----) [000] .n.1 24574.421641: cpu_idle: state=4294967295 cpu_id=0
83713<...>-24151 ( 24151) [003] d..4 24574.421644: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=006
83714          <idle>-0     (-----) [000] d..2 24574.421654: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
83715  Binder:23896_5-25989 (23896) [000] .... 24574.421687: binder_transaction_received: transaction=1670809
83716          <idle>-0     (-----) [005] dnh2 24574.421692: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
83717          <idle>-0     (-----) [005] .n.1 24574.421697: cpu_idle: state=4294967295 cpu_id=5
83718          <idle>-0     (-----) [005] d..2 24574.421706: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
83719  Binder:23896_4-24423 (23896) [005] .... 24574.421711: binder_transaction_received: transaction=1670810
83720  Binder:23896_5-25989 (23896) [000] d..1 24574.421717: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
83721 s.nexuslauncher-24827 (24827) [001] d..3 24574.421723: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
83722<...>-24151 ( 24151) [003] d..3 24574.421727: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
83723  Binder:23896_5-25989 (23896) [000] d..2 24574.421748: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
83724  Binder:23896_4-24423 (23896) [005] d..2 24574.421750: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
83725  Binder:23896_5-25989 (23896) [000] d..1 24574.421754: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
83726          <idle>-0     (-----) [005] d..1 24574.421758: cpu_idle: state=0 cpu_id=5
83727          <idle>-0     (-----) [006] dnh2 24574.421762: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=006
83728          <idle>-0     (-----) [006] dnh2 24574.421765: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
83729          <idle>-0     (-----) [006] .n.1 24574.421770: cpu_idle: state=4294967295 cpu_id=6
83730<...>-24151 ( 24151) [003] d..2 24574.421773: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
83731          <idle>-0     (-----) [005] dnh2 24574.421777: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
83732          <idle>-0     (-----) [006] d..2 24574.421781: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
83733          <idle>-0     (-----) [005] .n.1 24574.421783: cpu_idle: state=4294967295 cpu_id=5
83734          <idle>-0     (-----) [005] d..2 24574.421830: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
83735 s.nexuslauncher-24827 (24827) [001] d.h3 24574.421831: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
83736    RenderThread-25194 (24827) [006] d..2 24574.421836: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
83737  Binder:23896_4-24423 (23896) [005] d..1 24574.421837: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
83738  appEventThread-23905 (23896) [003] d..2 24574.421840: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
83739  Binder:23896_5-25989 (23896) [000] d..2 24574.421848: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83740          <idle>-0     (-----) [004] dnh2 24574.421854: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
83741          <idle>-0     (-----) [004] .n.1 24574.421858: cpu_idle: state=4294967295 cpu_id=4
83742          <idle>-0     (-----) [004] d..2 24574.421863: 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
83743          <idle>-0     (-----) [000] d..1 24574.421865: cpu_idle: state=0 cpu_id=0
83744    RenderThread-24437 (24151) [006] d..2 24574.421866: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
83745         sugov:4-560   (  560) [004] d..2 24574.421874: 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
83746          <idle>-0     (-----) [006] d..1 24574.421875: cpu_idle: state=0 cpu_id=6
83747          <idle>-0     (-----) [000] dnh2 24574.421881: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
83748          <idle>-0     (-----) [004] d..1 24574.421881: cpu_idle: state=0 cpu_id=4
83749          <idle>-0     (-----) [000] .n.1 24574.421889: cpu_idle: state=4294967295 cpu_id=0
83750  Binder:23896_4-24423 (23896) [005] d..2 24574.421890: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
83751          <idle>-0     (-----) [000] d..2 24574.421897: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
83752          <idle>-0     (-----) [005] d..1 24574.421898: cpu_idle: state=0 cpu_id=5
83753  appEventThread-23905 (23896) [000] d..2 24574.421951: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83754          <idle>-0     (-----) [000] d..1 24574.421963: cpu_idle: state=0 cpu_id=0
83755<...>-24151 ( 24151) [003] d..3 24574.422007: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
83756          <idle>-0     (-----) [006] dnh2 24574.422032: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
83757          <idle>-0     (-----) [006] .n.1 24574.422037: cpu_idle: state=4294967295 cpu_id=6
83758          <idle>-0     (-----) [006] d..2 24574.422044: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
83759<...>-24151 ( 24151) [003] d..2 24574.422056: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
83760          <idle>-0     (-----) [003] d..1 24574.422071: cpu_idle: state=0 cpu_id=3
83761  surfaceflinger-23896 (23896) [002] ...1 24574.422134: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
83762  surfaceflinger-23896 (23896) [002] ...1 24574.422142: tracing_mark_write: E|23896
83763    RenderThread-24437 (24151) [006] d..1 24574.422203: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
83764  surfaceflinger-23896 (23896) [002] .... 24574.422220: binder_transaction: transaction=1670811 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
83765          <idle>-0     (-----) [000] dnh2 24574.422237: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
83766          <idle>-0     (-----) [000] .n.1 24574.422243: cpu_idle: state=4294967295 cpu_id=0
83767  surfaceflinger-23896 (23896) [002] ...2 24574.422249: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
83768          <idle>-0     (-----) [000] d..2 24574.422253: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
83769  surfaceflinger-23896 (23896) [002] d..4 24574.422260: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
83770    RenderThread-24437 (24151) [006] .... 24574.422279: binder_transaction: transaction=1670812 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
83771  surfaceflinger-23896 (23896) [002] d..5 24574.422287: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
83772    RenderThread-24437 (24151) [006] d..4 24574.422287: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
83773          <idle>-0     (-----) [003] .n.1 24574.422293: cpu_idle: state=4294967295 cpu_id=3
83774          <idle>-0     (-----) [003] d..2 24574.422303: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
83775    RenderThread-24437 (24151) [006] dn.5 24574.422304: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=006
83776    RenderThread-24437 (24151) [006] d..2 24574.422312: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
83777  HwBinder:598_3-633   (  598) [003] .... 24574.422316: binder_transaction_received: transaction=1670811
83778  Binder:23896_4-24423 (23896) [006] .... 24574.422320: binder_transaction_received: transaction=1670812
83779  surfaceflinger-23896 (23896) [002] d..2 24574.422323: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83780          <idle>-0     (-----) [002] d..1 24574.422345: cpu_idle: state=0 cpu_id=2
83781<...>-24151 ( 24151) [000] d..2 24574.422379: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83782  HwBinder:598_3-633   (  598) [003] ...1 24574.422381: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
83783  Binder:23896_4-24423 (23896) [006] .... 24574.422381: binder_transaction: transaction=1670813 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
83784          <idle>-0     (-----) [000] d..1 24574.422398: cpu_idle: state=0 cpu_id=0
83785  Binder:23896_4-24423 (23896) [006] d..2 24574.422417: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
83786    RenderThread-24437 (24151) [006] .... 24574.422423: binder_transaction_received: transaction=1670813
83787 s.nexuslauncher-24827 (24827) [001] d..3 24574.422438: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=006
83788 s.nexuslauncher-24827 (24827) [001] d..4 24574.422480: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
83789          <idle>-0     (-----) [000] .n.1 24574.422487: cpu_idle: state=4294967295 cpu_id=0
83790 s.nexuslauncher-24827 (24827) [001] d.h3 24574.422537: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
83791          <idle>-0     (-----) [000] d..2 24574.422538: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
83792  HwBinder:598_3-633   (  598) [003] ...1 24574.422553: tracing_mark_write: B|598|HWCSession::PresentDisplay::
83793          <idle>-0     (-----) [004] dnh2 24574.422557: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
83794          <idle>-0     (-----) [004] .n.1 24574.422562: cpu_idle: state=4294967295 cpu_id=4
83795          <idle>-0     (-----) [004] d..2 24574.422566: 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
83796         sugov:4-560   (  560) [004] d..2 24574.422577: 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
83797          <idle>-0     (-----) [004] d..1 24574.422582: cpu_idle: state=0 cpu_id=4
83798 s.nexuslauncher-24827 (24827) [001] d..2 24574.422588: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
83799          <idle>-0     (-----) [001] d..1 24574.422609: cpu_idle: state=0 cpu_id=1
83800    RenderThread-25194 (24827) [000] d..1 24574.422740: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
83801    RenderThread-25194 (24827) [000] d..2 24574.422764: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
83802  HwBinder:598_3-633   (  598) [003] ...1 24574.422769: tracing_mark_write: B|598|HWDeviceDRM::Commit::
83803          <idle>-0     (-----) [001] .n.1 24574.422772: cpu_idle: state=4294967295 cpu_id=1
83804          <idle>-0     (-----) [001] d..2 24574.422785: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
83805  HwBinder:598_3-633   (  598) [003] ...1 24574.422788: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
83806    RenderThread-25194 (24827) [000] d..1 24574.422789: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=002
83807    RenderThread-25194 (24827) [000] d..2 24574.422810: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=002
83808          <idle>-0     (-----) [002] .n.1 24574.422818: cpu_idle: state=4294967295 cpu_id=2
83809          <idle>-0     (-----) [002] d..2 24574.422834: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
83810    RenderThread-25194 (24827) [000] .... 24574.422879: binder_transaction: transaction=1670814 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
83811    RenderThread-25194 (24827) [000] ...2 24574.422889: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
83812    RenderThread-25194 (24827) [000] d..4 24574.422894: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=006
83813 s.nexuslauncher-24827 (24827) [001] d..2 24574.422901: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
83814          <idle>-0     (-----) [001] d..1 24574.422918: cpu_idle: state=0 cpu_id=1
83815    RenderThread-25194 (24827) [000] dn.5 24574.422924: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
83816    RenderThread-25194 (24827) [000] d..2 24574.422981: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
83817  Binder:23896_4-24423 (23896) [000] .... 24574.422992: binder_transaction_received: transaction=1670814
83818  Binder:23896_4-24423 (23896) [000] .... 24574.423061: binder_transaction: transaction=1670815 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
83819  Binder:23896_4-24423 (23896) [000] .... 24574.423077: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
83820  Binder:23896_4-24423 (23896) [000] d..2 24574.423135: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
83821    RenderThread-25194 (24827) [000] .... 24574.423146: binder_transaction_received: transaction=1670815
83822<...>-27853 ( 24827) [002] .... 24574.423171: binder_transaction: transaction=1670816 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
83823<...>-27853 ( 24827) [002] ...2 24574.423201: binder_set_priority: proc=23896 thread=24423 old=120 => new=118 desired=118
83824<...>-27853 ( 24827) [002] d..4 24574.423206: sched_waking: comm=Binder:23896_4 pid=24423 prio=118 target_cpu=000
83825<...>-27853 ( 24827) [002] dn.5 24574.423235: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=118 target_cpu=002
83826<...>-27853 ( 24827) [002] d..2 24574.423247: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=118
83827  Binder:23896_4-24423 (23896) [002] .... 24574.423257: binder_transaction_received: transaction=1670816
83828  Binder:23896_4-24423 (23896) [002] .... 24574.423419: binder_transaction: transaction=1670817 dest_node=0 dest_proc=24827 dest_thread=27853 reply=1 flags=0x0 code=0x0
83829  Binder:23896_4-24423 (23896) [002] .... 24574.423428: binder_set_priority: proc=23896 thread=24423 old=118 => new=120 desired=120
83830  HwBinder:598_3-633   (  598) [003] d..2 24574.423464: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
83831  HwBinder:598_3-633   (  598) [003] d..3 24574.423492: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
83832  Binder:23896_4-24423 (23896) [002] d..2 24574.423494: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
83833          <idle>-0     (-----) [001] .n.1 24574.423498: cpu_idle: state=4294967295 cpu_id=1
83834<...>-27853 ( 24827) [002] .... 24574.423505: binder_transaction_received: transaction=1670817
83835          <idle>-0     (-----) [001] d..2 24574.423509: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
83836<...>-27853 ( 24827) [002] d..2 24574.423589: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83837          <idle>-0     (-----) [002] d..1 24574.423610: cpu_idle: state=0 cpu_id=2
83838  HwBinder:598_3-633   (  598) [003] ...1 24574.423622: tracing_mark_write: E|598
83839  HwBinder:598_3-633   (  598) [003] ...1 24574.423628: tracing_mark_write: E|598
83840  HwBinder:598_3-633   (  598) [003] ...1 24574.423713: tracing_mark_write: E|598
83841  HwBinder:598_3-633   (  598) [003] ...1 24574.423783: tracing_mark_write: E|598
83842  HwBinder:598_3-633   (  598) [003] .... 24574.423803: binder_transaction: transaction=1670818 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
83843  HwBinder:598_3-633   (  598) [003] d..2 24574.423826: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
83844    RenderThread-25194 (24827) [000] d..2 24574.423828: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
83845  HwBinder:598_3-633   (  598) [003] d..3 24574.423851: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
83846          <idle>-0     (-----) [002] .n.1 24574.423860: cpu_idle: state=4294967295 cpu_id=2
83847  HwBinder:598_3-633   (  598) [003] .... 24574.423863: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
83848    RenderThread-25194 (24827) [000] dn.3 24574.423868: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
83849          <idle>-0     (-----) [002] d..2 24574.423872: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
83850    RenderThread-25194 (24827) [000] d..2 24574.423882: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
83851  surfaceflinger-23896 (23896) [002] .... 24574.423883: binder_transaction_received: transaction=1670818
83852  HwBinder:598_3-633   (  598) [003] d..2 24574.423977: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
83853          <idle>-0     (-----) [003] d..1 24574.423993: cpu_idle: state=0 cpu_id=3
83854 kgsl_worker_thr-246   (  246) [000] d..2 24574.424039: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
83855 kgsl_worker_thr-246   (  246) [000] d..3 24574.424063: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
83856 kgsl_worker_thr-246   (  246) [000] d..2 24574.424081: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
83857    RenderThread-24437 (24151) [006] .... 24574.424168: binder_transaction: transaction=1670819 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
83858    RenderThread-24437 (24151) [006] d..4 24574.424182: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=002
83859    RenderThread-24437 (24151) [006] dn.5 24574.424210: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=006
83860    RenderThread-24437 (24151) [006] dnH5 24574.424285: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
83861 crtc_commit:111-253   (  253) [001] d.s2 24574.424286: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
83862    RenderThread-24437 (24151) [006] dnH6 24574.424299: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
83863          <idle>-0     (-----) [004] .n.1 24574.424305: cpu_idle: state=4294967295 cpu_id=4
83864          <idle>-0     (-----) [004] d..2 24574.424313: 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
83865    RenderThread-24437 (24151) [006] d..2 24574.424318: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
83866  Binder:23896_4-24423 (23896) [006] .... 24574.424326: binder_transaction_received: transaction=1670819
83867         sugov:4-560   (  560) [004] d..2 24574.424328: 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
83868          <idle>-0     (-----) [004] d..1 24574.424334: cpu_idle: state=0 cpu_id=4
83869 crtc_commit:111-253   (  253) [001] d.s3 24574.424338: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
83870          <idle>-0     (-----) [003] ...1 24574.424353: cpu_idle: state=4294967295 cpu_id=3
83871          <idle>-0     (-----) [003] d..1 24574.424360: cpu_idle: state=0 cpu_id=3
83872    RenderThread-25194 (24827) [000] d.h2 24574.424432: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
83873  Binder:23896_4-24423 (23896) [006] .... 24574.424463: binder_transaction: transaction=1670820 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
83874    RenderThread-25194 (24827) [000] d.h3 24574.424464: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
83875          <idle>-0     (-----) [003] .n.1 24574.424469: cpu_idle: state=4294967295 cpu_id=3
83876          <idle>-0     (-----) [003] d..2 24574.424480: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
83877  Binder:23896_4-24423 (23896) [006] d..2 24574.424498: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
83878    RenderThread-24437 (24151) [006] .... 24574.424506: binder_transaction_received: transaction=1670820
83879 crtc_commit:111-253   (  253) [001] d..2 24574.424531: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
83880 kgsl_worker_thr-246   (  246) [003] d..2 24574.424579: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
83881  surfaceflinger-23896 (23896) [002] d..2 24574.424584: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
83882    RenderThread-24437 (24151) [006] d..2 24574.424587: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
83883          <idle>-0     (-----) [003] d..1 24574.424593: cpu_idle: state=0 cpu_id=3
83884     rcu_preempt-7     (    7) [002] d..2 24574.424600: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
83885          <idle>-0     (-----) [006] d..1 24574.424607: cpu_idle: state=0 cpu_id=6
83886     rcu_preempt-7     (    7) [002] d..3 24574.424648: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
83887     rcu_preempt-7     (    7) [002] d..2 24574.424669: 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
83888         rcuop/0-10    (   10) [002] d..2 24574.424707: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83889          <idle>-0     (-----) [002] d..1 24574.424726: cpu_idle: state=0 cpu_id=2
83890    RenderThread-25194 (24827) [000] .... 24574.424771: binder_transaction: transaction=1670821 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
83891    RenderThread-25194 (24827) [000] ...2 24574.424788: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
83892    RenderThread-25194 (24827) [000] d..4 24574.424795: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=006
83893    RenderThread-25194 (24827) [000] dn.5 24574.424827: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
83894    RenderThread-25194 (24827) [000] dnh5 24574.424880: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
83895          <idle>-0     (-----) [004] dnh2 24574.424900: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
83896    RenderThread-25194 (24827) [000] d..2 24574.424904: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
83897          <idle>-0     (-----) [004] .n.1 24574.424905: cpu_idle: state=4294967295 cpu_id=4
83898          <idle>-0     (-----) [004] d..2 24574.424909: 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
83899  Binder:23896_4-24423 (23896) [000] .... 24574.424914: binder_transaction_received: transaction=1670821
83900         sugov:4-560   (  560) [004] d..2 24574.424921: 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
83901          <idle>-0     (-----) [004] d..1 24574.424926: cpu_idle: state=0 cpu_id=4
83902  Binder:23896_4-24423 (23896) [000] .... 24574.425055: binder_transaction: transaction=1670822 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
83903  Binder:23896_4-24423 (23896) [000] .... 24574.425066: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
83904  Binder:23896_4-24423 (23896) [000] d..2 24574.425123: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
83905    RenderThread-25194 (24827) [000] .... 24574.425133: binder_transaction_received: transaction=1670822
83906  kworker/u16:15-18488 (18488) [001] d..2 24574.425210: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
83907          <idle>-0     (-----) [001] d..1 24574.425230: cpu_idle: state=0 cpu_id=1
83908    RenderThread-25194 (24827) [000] d..2 24574.425290: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83909          <idle>-0     (-----) [000] d..1 24574.425317: cpu_idle: state=0 cpu_id=0
83910          <idle>-0     (-----) [003] ...1 24574.425827: cpu_idle: state=4294967295 cpu_id=3
83911          <idle>-0     (-----) [003] d..1 24574.425831: cpu_idle: state=0 cpu_id=3
83912          <idle>-0     (-----) [000] ...1 24574.426646: cpu_idle: state=4294967295 cpu_id=0
83913          <idle>-0     (-----) [000] d..1 24574.426650: cpu_idle: state=0 cpu_id=0
83914          <idle>-0     (-----) [000] d.h3 24574.426679: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
83915          <idle>-0     (-----) [000] d.h4 24574.426700: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
83916          <idle>-0     (-----) [003] .n.1 24574.426704: cpu_idle: state=4294967295 cpu_id=3
83917          <idle>-0     (-----) [003] d..2 24574.426715: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
83918          <idle>-0     (-----) [000] ...1 24574.426715: cpu_idle: state=4294967295 cpu_id=0
83919          <idle>-0     (-----) [000] d..1 24574.426721: cpu_idle: state=0 cpu_id=0
83920          <idle>-0     (-----) [001] ...1 24574.426738: cpu_idle: state=4294967295 cpu_id=1
83921          <idle>-0     (-----) [001] d..1 24574.426743: cpu_idle: state=0 cpu_id=1
83922 kgsl_worker_thr-246   (  246) [003] d..2 24574.426784: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
83923          <idle>-0     (-----) [003] d..1 24574.426795: cpu_idle: state=0 cpu_id=3
83924          <idle>-0     (-----) [000] d..2 24574.428144: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
83925          <idle>-0     (-----) [000] dn.3 24574.428160: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
83926          <idle>-0     (-----) [000] .n.1 24574.428164: cpu_idle: state=4294967295 cpu_id=0
83927          <idle>-0     (-----) [000] d..2 24574.428178: 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
83928     ksoftirqd/0-3     (    3) [000] d.s2 24574.428193: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
83929     ksoftirqd/0-3     (    3) [000] d.s3 24574.428235: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
83930     ksoftirqd/0-3     (    3) [000] d..2 24574.428253: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
83931  kworker/u16:15-18488 (18488) [000] .... 24574.428324: clk_set_rate: l3_cluster0_vote_clk 403200000
83932  kworker/u16:15-18488 (18488) [000] .... 24574.428338: clk_set_rate: l3_clk 403200000
83933  kworker/u16:15-18488 (18488) [000] d..2 24574.428758: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
83934          <idle>-0     (-----) [000] d..1 24574.428773: cpu_idle: state=0 cpu_id=0
83935          <idle>-0     (-----) [003] d.s3 24574.429270: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
83936          <idle>-0     (-----) [003] d.s4 24574.429284: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
83937          <idle>-0     (-----) [003] d.s4 24574.429294: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
83938          <idle>-0     (-----) [000] .n.1 24574.429300: cpu_idle: state=4294967295 cpu_id=0
83939          <idle>-0     (-----) [003] ...1 24574.429303: cpu_idle: state=4294967295 cpu_id=3
83940          <idle>-0     (-----) [003] d..1 24574.429308: cpu_idle: state=0 cpu_id=3
83941          <idle>-0     (-----) [000] d..2 24574.429311: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
83942  kworker/u16:15-18488 (18488) [000] d..2 24574.429340: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83943          <idle>-0     (-----) [000] d..1 24574.429350: cpu_idle: state=0 cpu_id=0
83944          <idle>-0     (-----) [002] d.s2 24574.430909: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
83945          <idle>-0     (-----) [002] dns3 24574.430924: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
83946          <idle>-0     (-----) [002] .n.1 24574.430941: cpu_idle: state=4294967295 cpu_id=2
83947          <idle>-0     (-----) [002] d..2 24574.430952: 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
83948     rcu_preempt-7     (    7) [002] d..2 24574.430966: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
83949     rcu_preempt-7     (    7) [002] d..3 24574.431001: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
83950     rcu_preempt-7     (    7) [002] d..2 24574.431014: 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
83951         rcuop/2-29    (   29) [002] d..2 24574.431045: 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
83952          <idle>-0     (-----) [002] d..1 24574.431057: cpu_idle: state=0 cpu_id=2
83953          <idle>-0     (-----) [000] d.h5 24574.433121: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
83954          <idle>-0     (-----) [000] d.h6 24574.433140: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
83955          <idle>-0     (-----) [002] .n.1 24574.433146: cpu_idle: state=4294967295 cpu_id=2
83956          <idle>-0     (-----) [000] d.h5 24574.433147: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
83957          <idle>-0     (-----) [002] d..2 24574.433155: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
83958          <idle>-0     (-----) [000] d.h6 24574.433157: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
83959          <idle>-0     (-----) [001] .n.1 24574.433162: cpu_idle: state=4294967295 cpu_id=1
83960          <idle>-0     (-----) [001] d..2 24574.433174: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
83961          <idle>-0     (-----) [000] ...1 24574.433177: cpu_idle: state=4294967295 cpu_id=0
83962          <idle>-0     (-----) [000] d..1 24574.433182: cpu_idle: state=0 cpu_id=0
83963  crtc_event:111-254   (  254) [002] d..2 24574.433196: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83964          <idle>-0     (-----) [002] d..1 24574.433205: cpu_idle: state=0 cpu_id=2
83965 crtc_commit:111-253   (  253) [001] d..2 24574.433367: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
83966          <idle>-0     (-----) [001] d..1 24574.433375: cpu_idle: state=0 cpu_id=1
83967          <idle>-0     (-----) [001] d.s3 24574.434241: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
83968          <idle>-0     (-----) [001] d.s4 24574.434259: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
83969          <idle>-0     (-----) [002] .n.1 24574.434264: cpu_idle: state=4294967295 cpu_id=2
83970          <idle>-0     (-----) [001] d.s3 24574.434269: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
83971          <idle>-0     (-----) [002] d..2 24574.434274: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
83972          <idle>-0     (-----) [001] dns4 24574.434288: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
83973  crtc_event:111-254   (  254) [002] d..2 24574.434304: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83974          <idle>-0     (-----) [001] .n.1 24574.434307: cpu_idle: state=4294967295 cpu_id=1
83975          <idle>-0     (-----) [002] d..1 24574.434310: cpu_idle: state=0 cpu_id=2
83976          <idle>-0     (-----) [001] d..2 24574.434317: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
83977     kworker/1:1-13091 (13091) [001] d..2 24574.434412: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
83978          <idle>-0     (-----) [001] d..1 24574.434422: cpu_idle: state=0 cpu_id=1
83979          <idle>-0     (-----) [000] d.h5 24574.435433: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
83980          <idle>-0     (-----) [000] d.h6 24574.435447: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
83981          <idle>-0     (-----) [001] .n.1 24574.435454: cpu_idle: state=4294967295 cpu_id=1
83982          <idle>-0     (-----) [001] d..2 24574.435462: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
83983          <idle>-0     (-----) [000] ...1 24574.435475: cpu_idle: state=4294967295 cpu_id=0
83984          <idle>-0     (-----) [000] d..1 24574.435479: cpu_idle: state=0 cpu_id=0
83985 crtc_commit:111-253   (  253) [001] d..2 24574.435550: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
83986          <idle>-0     (-----) [001] d..1 24574.435561: cpu_idle: state=0 cpu_id=1
83987          <idle>-0     (-----) [000] d.h5 24574.435747: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
83988          <idle>-0     (-----) [000] d.h6 24574.435761: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
83989          <idle>-0     (-----) [002] .n.1 24574.435767: cpu_idle: state=4294967295 cpu_id=2
83990          <idle>-0     (-----) [002] d..2 24574.435774: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
83991          <idle>-0     (-----) [000] ...1 24574.435779: cpu_idle: state=4294967295 cpu_id=0
83992          <idle>-0     (-----) [000] d..1 24574.435784: cpu_idle: state=0 cpu_id=0
83993  crtc_event:111-254   (  254) [002] d..2 24574.435796: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83994          <idle>-0     (-----) [002] d..1 24574.435802: cpu_idle: state=0 cpu_id=2
83995          <idle>-0     (-----) [001] d.h2 24574.436411: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
83996          <idle>-0     (-----) [001] dnh3 24574.436426: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
83997          <idle>-0     (-----) [001] .n.1 24574.436434: cpu_idle: state=4294967295 cpu_id=1
83998          <idle>-0     (-----) [001] d..2 24574.436443: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
83999        DispSync-23904 (23896) [001] d..1 24574.436473: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
84000        DispSync-23904 (23896) [001] d..2 24574.436490: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
84001          <idle>-0     (-----) [003] .n.1 24574.436495: cpu_idle: state=4294967295 cpu_id=3
84002          <idle>-0     (-----) [003] d..2 24574.436506: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
84003        DispSync-23904 (23896) [001] d..2 24574.436524: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
84004          <idle>-0     (-----) [001] d..1 24574.436534: cpu_idle: state=0 cpu_id=1
84005   sfEventThread-23906 (23896) [003] d..3 24574.436576: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
84006   sfEventThread-23906 (23896) [003] d..4 24574.436595: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
84007          <idle>-0     (-----) [002] .n.1 24574.436600: cpu_idle: state=4294967295 cpu_id=2
84008          <idle>-0     (-----) [002] d..2 24574.436606: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
84009   sfEventThread-23906 (23896) [003] d..2 24574.436633: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
84010          <idle>-0     (-----) [003] d..1 24574.436645: cpu_idle: state=0 cpu_id=3
84011          <idle>-0     (-----) [001] d.h2 24574.437407: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
84012          <idle>-0     (-----) [001] dnh3 24574.437417: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
84013          <idle>-0     (-----) [001] .n.1 24574.437424: cpu_idle: state=4294967295 cpu_id=1
84014          <idle>-0     (-----) [001] d..2 24574.437432: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
84015  surfaceflinger-23896 (23896) [002] d..1 24574.437440: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
84016        DispSync-23904 (23896) [001] d..1 24574.437444: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
84017        DispSync-23904 (23896) [001] d..2 24574.437457: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
84018  surfaceflinger-23896 (23896) [002] d..2 24574.437461: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
84019          <idle>-0     (-----) [000] .n.1 24574.437462: cpu_idle: state=4294967295 cpu_id=0
84020          <idle>-0     (-----) [003] .n.1 24574.437466: cpu_idle: state=4294967295 cpu_id=3
84021          <idle>-0     (-----) [000] d..2 24574.437473: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
84022          <idle>-0     (-----) [003] d..2 24574.437475: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
84023        DispSync-23904 (23896) [001] d..2 24574.437483: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
84024          <idle>-0     (-----) [001] d..1 24574.437494: cpu_idle: state=0 cpu_id=1
84025   sfEventThread-23906 (23896) [003] d..2 24574.437513: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
84026          <idle>-0     (-----) [003] d..1 24574.437523: cpu_idle: state=0 cpu_id=3
84027  appEventThread-23905 (23896) [000] d..3 24574.437536: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
84028  appEventThread-23905 (23896) [000] d..4 24574.437560: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
84029          <idle>-0     (-----) [001] .n.1 24574.437566: cpu_idle: state=4294967295 cpu_id=1
84030          <idle>-0     (-----) [001] d..2 24574.437582: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
84031  appEventThread-23905 (23896) [000] d..3 24574.437653: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
84032  surfaceflinger-23896 (23896) [002] d.H2 24574.437655: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
84033  surfaceflinger-23896 (23896) [002] d.H2 24574.437671: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
84034          <idle>-0     (-----) [004] dnh2 24574.437677: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
84035          <idle>-0     (-----) [004] .n.1 24574.437681: cpu_idle: state=4294967295 cpu_id=4
84036  appEventThread-23905 (23896) [000] d..4 24574.437685: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
84037          <idle>-0     (-----) [004] d..2 24574.437686: 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
84038          <idle>-0     (-----) [003] .n.1 24574.437690: cpu_idle: state=4294967295 cpu_id=3
84039         sugov:4-560   (  560) [004] d..2 24574.437698: 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
84040  surfaceflinger-23896 (23896) [002] d.H3 24574.437701: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
84041          <idle>-0     (-----) [004] d..1 24574.437704: cpu_idle: state=0 cpu_id=4
84042          <idle>-0     (-----) [003] d..2 24574.437707: 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
84043  surfaceflinger-23896 (23896) [002] d.s1 24574.437714: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
84044  appEventThread-23905 (23896) [000] d..2 24574.437732: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84045         sugov:0-559   (  559) [003] .... 24574.437743: clk_set_rate: pwrcl_clk 979200000
84046  surfaceflinger-23896 (23896) [002] d.s2 24574.437749: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
84047         sugov:0-559   (  559) [003] .... 24574.437758: clk_set_rate: cpu3_pwrcl_clk 1132800000
84048          <idle>-0     (-----) [000] d..2 24574.437758: 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
84049  surfaceflinger-23896 (23896) [002] d.s2 24574.437764: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
84050         sugov:0-559   (  559) [003] .... 24574.437769: clk_set_rate: cpu2_pwrcl_clk 1132800000
84051         sugov:0-559   (  559) [003] .... 24574.437778: clk_set_rate: cpu1_pwrcl_clk 1132800000
84052  surfaceflinger-23896 (23896) [002] d.s3 24574.437778: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
84053         sugov:0-559   (  559) [003] .... 24574.437787: clk_set_rate: cpu0_pwrcl_clk 979200000
84054     rcu_preempt-7     (    7) [000] d..2 24574.437790: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
84055  surfaceflinger-23896 (23896) [002] d.s2 24574.437798: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
84056  surfaceflinger-23896 (23896) [002] d.s3 24574.437819: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
84057         sugov:0-559   (  559) [003] .... 24574.437908: cpu_frequency: state=979200 cpu_id=0
84058         sugov:0-559   (  559) [003] .... 24574.437932: cpu_frequency: state=979200 cpu_id=1
84059         sugov:0-559   (  559) [003] .... 24574.437936: cpu_frequency: state=979200 cpu_id=2
84060         sugov:0-559   (  559) [003] .... 24574.437940: cpu_frequency: state=979200 cpu_id=3
84061         sugov:0-559   (  559) [003] d..2 24574.437961: 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
84062  kworker/u16:10-23868 (23868) [003] d..2 24574.437978: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
84063 s.nexuslauncher-24827 (24827) [001] .... 24574.437982: binder_transaction: transaction=1670823 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
84064 s.nexuslauncher-24827 (24827) [001] d..4 24574.437993: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
84065          <idle>-0     (-----) [005] dnh2 24574.438069: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
84066          <idle>-0     (-----) [005] .n.1 24574.438074: cpu_idle: state=4294967295 cpu_id=5
84067          <idle>-0     (-----) [005] d..2 24574.438081: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
84068  Binder:23896_4-24423 (23896) [005] .... 24574.438084: binder_transaction_received: transaction=1670823
84069  kworker/u16:15-18488 (18488) [000] d..2 24574.438089: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
84070  Binder:23896_4-24423 (23896) [005] d..1 24574.438098: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
84071          <idle>-0     (-----) [000] d..1 24574.438104: cpu_idle: state=0 cpu_id=0
84072 s.nexuslauncher-24827 (24827) [001] d..3 24574.438109: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
84073<...>-24151 ( 24151) [003] d.s2 24574.438122: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
84074          <idle>-0     (-----) [000] dnh2 24574.438124: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
84075  Binder:23896_4-24423 (23896) [005] d..2 24574.438124: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
84076          <idle>-0     (-----) [005] d..1 24574.438131: cpu_idle: state=0 cpu_id=5
84077 s.nexuslauncher-24827 (24827) [001] d..4 24574.438134: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
84078          <idle>-0     (-----) [000] .n.1 24574.438146: cpu_idle: state=4294967295 cpu_id=0
84079          <idle>-0     (-----) [000] d..2 24574.438155: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
84080<...>-24151 ( 24151) [003] d.s3 24574.438175: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
84081<...>-24151 ( 24151) [003] d.s3 24574.438182: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
84082  appEventThread-23905 (23896) [000] d..2 24574.438194: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
84083    RenderThread-25194 (24827) [000] d..2 24574.438253: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84084          <idle>-0     (-----) [000] d..1 24574.438267: cpu_idle: state=0 cpu_id=0
84085<...>-24151 ( 24151) [003] .... 24574.438407: binder_transaction: transaction=1670824 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
84086<...>-24151 ( 24151) [003] d..4 24574.438420: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
84087<...>-24151 ( 24151) [003] d..5 24574.438457: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
84088          <idle>-0     (-----) [000] .n.1 24574.438463: cpu_idle: state=4294967295 cpu_id=0
84089<...>-24151 ( 24151) [003] d.h5 24574.438508: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
84090          <idle>-0     (-----) [000] d..2 24574.438509: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
84091<...>-24151 ( 24151) [003] d.h5 24574.438522: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
84092          <idle>-0     (-----) [004] dnh2 24574.438528: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
84093          <idle>-0     (-----) [004] .n.1 24574.438532: cpu_idle: state=4294967295 cpu_id=4
84094          <idle>-0     (-----) [004] d..2 24574.438537: 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
84095<...>-24151 ( 24151) [003] d.h6 24574.438543: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
84096         sugov:4-560   (  560) [004] d..2 24574.438547: 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
84097          <idle>-0     (-----) [004] d..1 24574.438553: cpu_idle: state=0 cpu_id=4
84098  Binder:23896_4-24423 (23896) [000] d..2 24574.438557: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
84099         sugov:0-559   (  559) [000] d..2 24574.438573: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
84100  Binder:23896_4-24423 (23896) [000] .... 24574.438578: binder_transaction_received: transaction=1670824
84101<...>-24151 ( 24151) [003] d..3 24574.438599: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
84102  Binder:23896_4-24423 (23896) [000] d..1 24574.438611: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
84103  Binder:23896_4-24423 (23896) [000] dn.2 24574.438623: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
84104  Binder:23896_4-24423 (23896) [000] d..2 24574.438632: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
84105          <idle>-0     (-----) [006] dnh2 24574.438634: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
84106          <idle>-0     (-----) [006] .n.1 24574.438639: cpu_idle: state=4294967295 cpu_id=6
84107          <idle>-0     (-----) [006] d..2 24574.438649: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
84108  appEventThread-23905 (23896) [000] d..2 24574.438651: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
84109  Binder:23896_4-24423 (23896) [000] d..1 24574.438656: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
84110  Binder:23896_4-24423 (23896) [000] dn.2 24574.438665: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
84111  Binder:23896_4-24423 (23896) [000] d..2 24574.438671: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
84112    RenderThread-24437 (24151) [006] d..2 24574.438676: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
84113          <idle>-0     (-----) [006] d..1 24574.438684: cpu_idle: state=0 cpu_id=6
84114  appEventThread-23905 (23896) [000] d..2 24574.438703: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
84115  Binder:23896_4-24423 (23896) [000] d..2 24574.438745: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84116          <idle>-0     (-----) [000] d..1 24574.438760: cpu_idle: state=0 cpu_id=0
84117  surfaceflinger-23896 (23896) [002] ...1 24574.438806: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
84118  surfaceflinger-23896 (23896) [002] ...1 24574.438815: tracing_mark_write: E|23896
84119 s.nexuslauncher-24827 (24827) [001] d..3 24574.438817: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
84120 s.nexuslauncher-24827 (24827) [001] d..4 24574.438843: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
84121          <idle>-0     (-----) [000] .n.1 24574.438849: cpu_idle: state=4294967295 cpu_id=0
84122          <idle>-0     (-----) [000] d..2 24574.438861: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
84123 s.nexuslauncher-24827 (24827) [001] d..2 24574.438880: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
84124  surfaceflinger-23896 (23896) [002] .... 24574.438893: binder_transaction: transaction=1670825 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
84125          <idle>-0     (-----) [001] d..1 24574.438901: cpu_idle: state=0 cpu_id=1
84126  surfaceflinger-23896 (23896) [002] ...2 24574.438923: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
84127  surfaceflinger-23896 (23896) [002] d..4 24574.438934: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
84128<...>-24151 ( 24151) [003] d..3 24574.438952: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
84129  surfaceflinger-23896 (23896) [002] d..5 24574.438967: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
84130          <idle>-0     (-----) [006] dnh2 24574.438974: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
84131          <idle>-0     (-----) [001] .n.1 24574.438975: cpu_idle: state=4294967295 cpu_id=1
84132          <idle>-0     (-----) [006] .n.1 24574.438978: cpu_idle: state=4294967295 cpu_id=6
84133          <idle>-0     (-----) [006] d..2 24574.438984: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
84134          <idle>-0     (-----) [001] d..2 24574.438986: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
84135<...>-24151 ( 24151) [003] d..2 24574.438989: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
84136  HwBinder:598_3-633   (  598) [001] .... 24574.439001: binder_transaction_received: transaction=1670825
84137  surfaceflinger-23896 (23896) [002] d..2 24574.439001: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84138          <idle>-0     (-----) [002] d..1 24574.439021: cpu_idle: state=0 cpu_id=2
84139  HwBinder:598_3-633   (  598) [001] ...1 24574.439067: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
84140    RenderThread-25194 (24827) [000] d..1 24574.439088: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
84141    RenderThread-24437 (24151) [006] d..1 24574.439094: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
84142    RenderThread-25194 (24827) [000] d..2 24574.439129: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
84143          <idle>-0     (-----) [002] dnh2 24574.439141: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
84144          <idle>-0     (-----) [002] .n.1 24574.439152: cpu_idle: state=4294967295 cpu_id=2
84145          <idle>-0     (-----) [002] d..2 24574.439165: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
84146    RenderThread-25194 (24827) [000] d..1 24574.439177: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=002
84147    RenderThread-24437 (24151) [006] .... 24574.439181: binder_transaction: transaction=1670826 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
84148    RenderThread-24437 (24151) [006] d..4 24574.439187: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
84149    RenderThread-24437 (24151) [006] dn.5 24574.439206: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=006
84150    RenderThread-24437 (24151) [006] d..2 24574.439215: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
84151  Binder:23896_4-24423 (23896) [006] .... 24574.439222: binder_transaction_received: transaction=1670826
84152  kworker/u16:15-18488 (18488) [003] .... 24574.439229: clk_set_rate: l3_cluster0_vote_clk 300000000
84153  kworker/u16:15-18488 (18488) [003] .... 24574.439235: clk_set_rate: l3_clk 300000000
84154          <idle>-0     (-----) [005] dnh2 24574.439263: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
84155    RenderThread-25194 (24827) [000] d.h3 24574.439266: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
84156          <idle>-0     (-----) [005] .n.1 24574.439269: cpu_idle: state=4294967295 cpu_id=5
84157          <idle>-0     (-----) [005] d..2 24574.439276: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
84158  Binder:23896_4-24423 (23896) [006] .... 24574.439280: binder_transaction: transaction=1670827 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
84159  HwBinder:598_3-633   (  598) [001] ...1 24574.439288: tracing_mark_write: B|598|HWCSession::PresentDisplay::
84160          <idle>-0     (-----) [004] dnh2 24574.439289: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
84161          <idle>-0     (-----) [004] .n.1 24574.439294: cpu_idle: state=4294967295 cpu_id=4
84162  kworker/u16:15-18488 (18488) [003] d..2 24574.439297: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
84163          <idle>-0     (-----) [004] d..2 24574.439299: 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
84164         sugov:4-560   (  560) [004] d..2 24574.439310: 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
84165          <idle>-0     (-----) [004] d..1 24574.439316: cpu_idle: state=0 cpu_id=4
84166  Binder:23896_4-24423 (23896) [006] d..2 24574.439317: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
84167          <idle>-0     (-----) [003] d..1 24574.439318: cpu_idle: state=0 cpu_id=3
84168    RenderThread-24437 (24151) [006] .... 24574.439322: binder_transaction_received: transaction=1670827
84169    RenderThread-25194 (24827) [000] .... 24574.439366: binder_transaction: transaction=1670828 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
84170 s.nexuslauncher-24827 (24827) [002] d..2 24574.439379: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
84171    RenderThread-25194 (24827) [000] ...2 24574.439379: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
84172    RenderThread-25194 (24827) [000] d..4 24574.439384: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=006
84173    RenderThread-25194 (24827) [000] d..5 24574.439415: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
84174    RenderThread-25194 (24827) [000] d.h5 24574.439464: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
84175    RenderThread-25194 (24827) [000] d.h6 24574.439488: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
84176<...>-24151 ( 24151) [002] d..2 24574.439500: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
84177    RenderThread-25194 (24827) [000] d..2 24574.439526: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
84178<...>-27853 ( 24827) [005] .... 24574.439527: binder_transaction: transaction=1670829 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
84179  HwBinder:598_3-633   (  598) [001] ...1 24574.439530: tracing_mark_write: B|598|HWDeviceDRM::Commit::
84180         sugov:0-559   (  559) [002] d..2 24574.439533: 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
84181  Binder:23896_4-24423 (23896) [000] .... 24574.439537: binder_transaction_received: transaction=1670828
84182  HwBinder:598_3-633   (  598) [001] ...1 24574.439545: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
84183<...>-27853 ( 24827) [005] ...2 24574.439551: binder_set_priority: proc=23896 thread=25989 old=120 => new=118 desired=118
84184          <idle>-0     (-----) [002] d..1 24574.439555: cpu_idle: state=0 cpu_id=2
84185<...>-27853 ( 24827) [005] d..4 24574.439556: sched_waking: comm=Binder:23896_5 pid=25989 prio=118 target_cpu=000
84186<...>-27853 ( 24827) [005] d..5 24574.439582: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=118 target_cpu=005
84187  Binder:23896_4-24423 (23896) [000] .... 24574.439625: binder_transaction: transaction=1670830 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
84188<...>-27853 ( 24827) [005] d..2 24574.439628: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=118
84189  Binder:23896_5-25989 (23896) [005] .... 24574.439636: binder_transaction_received: transaction=1670829
84190  Binder:23896_4-24423 (23896) [000] d..2 24574.439643: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
84191  Binder:23896_4-24423 (23896) [000] d..3 24574.439659: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
84192  Binder:23896_4-24423 (23896) [000] .... 24574.439664: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
84193  Binder:23896_4-24423 (23896) [000] d..2 24574.439681: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
84194    RenderThread-25194 (24827) [000] .... 24574.439690: binder_transaction_received: transaction=1670830
84195  Binder:23896_5-25989 (23896) [005] .... 24574.439780: binder_transaction: transaction=1670831 dest_node=0 dest_proc=24827 dest_thread=27853 reply=1 flags=0x0 code=0x0
84196  Binder:23896_5-25989 (23896) [005] d..2 24574.439788: sched_waking: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
84197  Binder:23896_5-25989 (23896) [005] d..3 24574.439797: sched_wakeup: comm=hwuiTask1 pid=27853 prio=118 target_cpu=005
84198  Binder:23896_5-25989 (23896) [005] .... 24574.439800: binder_set_priority: proc=23896 thread=25989 old=118 => new=120 desired=120
84199  Binder:23896_5-25989 (23896) [005] d..2 24574.439810: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=hwuiTask1 next_pid=27853 next_prio=118
84200<...>-27853 ( 24827) [005] .... 24574.439815: binder_transaction_received: transaction=1670831
84201<...>-27853 ( 24827) [005] d..2 24574.439871: sched_switch: prev_comm=hwuiTask1 prev_pid=27853 prev_prio=118 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
84202  Binder:23896_5-25989 (23896) [005] d..2 24574.439922: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
84203          <idle>-0     (-----) [005] d..1 24574.439937: cpu_idle: state=0 cpu_id=5
84204  HwBinder:598_3-633   (  598) [001] d..2 24574.440299: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
84205  HwBinder:598_3-633   (  598) [001] d..3 24574.440345: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
84206          <idle>-0     (-----) [003] .n.1 24574.440351: cpu_idle: state=4294967295 cpu_id=3
84207          <idle>-0     (-----) [003] d..2 24574.440364: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
84208  HwBinder:598_3-633   (  598) [001] ...1 24574.440485: tracing_mark_write: E|598
84209  HwBinder:598_3-633   (  598) [001] ...1 24574.440492: tracing_mark_write: E|598
84210  HwBinder:598_3-633   (  598) [001] ...1 24574.440585: tracing_mark_write: E|598
84211    RenderThread-25194 (24827) [000] d..2 24574.440610: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
84212    RenderThread-25194 (24827) [000] d..3 24574.440649: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
84213          <idle>-0     (-----) [002] .n.1 24574.440656: cpu_idle: state=4294967295 cpu_id=2
84214  HwBinder:598_3-633   (  598) [001] ...1 24574.440663: tracing_mark_write: E|598
84215          <idle>-0     (-----) [002] d..2 24574.440668: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
84216  HwBinder:598_3-633   (  598) [001] .... 24574.440685: binder_transaction: transaction=1670832 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
84217  HwBinder:598_3-633   (  598) [001] d..2 24574.440712: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
84218  HwBinder:598_3-633   (  598) [001] d..3 24574.440745: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
84219 kgsl_worker_thr-246   (  246) [002] d..2 24574.440745: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
84220  HwBinder:598_3-633   (  598) [001] .... 24574.440752: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
84221    RenderThread-25194 (24827) [000] d..2 24574.440766: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
84222  surfaceflinger-23896 (23896) [000] .... 24574.440782: binder_transaction_received: transaction=1670832
84223 kgsl_worker_thr-246   (  246) [002] d..3 24574.440800: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
84224 kgsl_worker_thr-246   (  246) [002] d..2 24574.440819: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
84225    RenderThread-24437 (24151) [006] .... 24574.440862: binder_transaction: transaction=1670833 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
84226    RenderThread-24437 (24151) [006] d..4 24574.440876: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
84227  HwBinder:598_3-633   (  598) [001] d..2 24574.440895: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
84228    RenderThread-24437 (24151) [006] d..5 24574.440898: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=006
84229    RenderThread-24437 (24151) [006] d..2 24574.440951: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
84230  Binder:23896_5-25989 (23896) [006] .... 24574.440959: binder_transaction_received: transaction=1670833
84231  Binder:23896_4-24423 (23896) [001] d..2 24574.441042: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
84232          <idle>-0     (-----) [001] d..1 24574.441067: cpu_idle: state=0 cpu_id=1
84233  Binder:23896_5-25989 (23896) [006] .... 24574.441117: binder_transaction: transaction=1670834 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
84234  Binder:23896_5-25989 (23896) [006] d..2 24574.441122: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
84235  Binder:23896_5-25989 (23896) [006] d..3 24574.441133: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=006
84236  Binder:23896_5-25989 (23896) [006] d..2 24574.441161: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
84237    RenderThread-24437 (24151) [006] .... 24574.441167: binder_transaction_received: transaction=1670834
84238    RenderThread-24437 (24151) [006] d..2 24574.441250: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
84239          <idle>-0     (-----) [006] d..1 24574.441269: cpu_idle: state=0 cpu_id=6
84240 crtc_commit:111-253   (  253) [003] d..2 24574.441367: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
84241          <idle>-0     (-----) [003] d..1 24574.441387: cpu_idle: state=0 cpu_id=3
84242  kworker/u16:15-18488 (18488) [002] d..2 24574.441526: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84243          <idle>-0     (-----) [002] d..1 24574.441546: cpu_idle: state=0 cpu_id=2
84244  surfaceflinger-23896 (23896) [000] d..2 24574.441694: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
84245    RenderThread-25194 (24827) [000] .... 24574.441853: binder_transaction: transaction=1670835 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
84246    RenderThread-25194 (24827) [000] ...2 24574.441870: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
84247    RenderThread-25194 (24827) [000] d..4 24574.441876: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=006
84248    RenderThread-25194 (24827) [000] d..5 24574.441911: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
84249    RenderThread-25194 (24827) [000] d.h5 24574.441974: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
84250    RenderThread-25194 (24827) [000] d.h5 24574.441990: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
84251          <idle>-0     (-----) [004] dnh2 24574.441997: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
84252          <idle>-0     (-----) [004] .n.1 24574.442001: cpu_idle: state=4294967295 cpu_id=4
84253    RenderThread-25194 (24827) [000] d.h6 24574.442006: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
84254          <idle>-0     (-----) [004] d..2 24574.442006: 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
84255          <idle>-0     (-----) [002] .n.1 24574.442014: cpu_idle: state=4294967295 cpu_id=2
84256         sugov:4-560   (  560) [004] d..2 24574.442019: 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
84257          <idle>-0     (-----) [004] d..1 24574.442025: cpu_idle: state=0 cpu_id=4
84258          <idle>-0     (-----) [002] d..2 24574.442026: 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
84259    RenderThread-25194 (24827) [000] d..2 24574.442028: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
84260  Binder:23896_5-25989 (23896) [000] .... 24574.442039: binder_transaction_received: transaction=1670835
84261         sugov:0-559   (  559) [002] d..2 24574.442052: 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
84262          <idle>-0     (-----) [002] d..1 24574.442064: cpu_idle: state=0 cpu_id=2
84263  Binder:23896_5-25989 (23896) [000] .... 24574.442182: binder_transaction: transaction=1670836 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
84264  Binder:23896_5-25989 (23896) [000] d..2 24574.442192: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
84265  Binder:23896_5-25989 (23896) [000] dn.3 24574.442212: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
84266  Binder:23896_5-25989 (23896) [000] d..2 24574.442225: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
84267    RenderThread-25194 (24827) [000] .... 24574.442233: binder_transaction_received: transaction=1670836
84268    RenderThread-25194 (24827) [000] d..2 24574.442400: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
84269  Binder:23896_5-25989 (23896) [000] .... 24574.442408: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
84270  Binder:23896_5-25989 (23896) [000] d..2 24574.442488: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84271          <idle>-0     (-----) [000] d..1 24574.442509: cpu_idle: state=0 cpu_id=0
84272          <idle>-0     (-----) [001] ...1 24574.442662: cpu_idle: state=4294967295 cpu_id=1
84273          <idle>-0     (-----) [001] d..1 24574.442668: cpu_idle: state=0 cpu_id=1
84274          <idle>-0     (-----) [000] d.h3 24574.443370: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
84275          <idle>-0     (-----) [000] d.h4 24574.443393: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
84276          <idle>-0     (-----) [002] .n.1 24574.443399: cpu_idle: state=4294967295 cpu_id=2
84277          <idle>-0     (-----) [002] d..2 24574.443410: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
84278          <idle>-0     (-----) [000] ...1 24574.443411: cpu_idle: state=4294967295 cpu_id=0
84279          <idle>-0     (-----) [000] d..1 24574.443418: cpu_idle: state=0 cpu_id=0
84280 kgsl_worker_thr-246   (  246) [002] d..2 24574.443484: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84281          <idle>-0     (-----) [002] d..1 24574.443496: cpu_idle: state=0 cpu_id=2
84282          <idle>-0     (-----) [000] ...1 24574.443792: cpu_idle: state=4294967295 cpu_id=0
84283          <idle>-0     (-----) [000] d..1 24574.443796: cpu_idle: state=0 cpu_id=0
84284          <idle>-0     (-----) [000] d.h3 24574.444018: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
84285          <idle>-0     (-----) [000] d.h4 24574.444033: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
84286          <idle>-0     (-----) [002] .n.1 24574.444039: cpu_idle: state=4294967295 cpu_id=2
84287          <idle>-0     (-----) [000] ...1 24574.444046: cpu_idle: state=4294967295 cpu_id=0
84288          <idle>-0     (-----) [002] d..2 24574.444048: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
84289          <idle>-0     (-----) [000] d..1 24574.444050: cpu_idle: state=0 cpu_id=0
84290 kgsl_worker_thr-246   (  246) [002] d..2 24574.444122: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84291          <idle>-0     (-----) [002] d..1 24574.444135: cpu_idle: state=0 cpu_id=2
84292          <idle>-0     (-----) [000] d.s2 24574.444255: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
84293          <idle>-0     (-----) [000] dns3 24574.444277: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
84294          <idle>-0     (-----) [000] dns3 24574.444286: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
84295          <idle>-0     (-----) [000] dns4 24574.444326: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
84296          <idle>-0     (-----) [000] .n.1 24574.444344: cpu_idle: state=4294967295 cpu_id=0
84297          <idle>-0     (-----) [000] d..2 24574.444357: 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
84298     rcu_preempt-7     (    7) [000] d..2 24574.444378: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
84299     rcu_preempt-7     (    7) [000] d..3 24574.444419: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
84300     rcu_preempt-7     (    7) [000] d..2 24574.444444: 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
84301         rcuop/0-10    (   10) [000] d..2 24574.444474: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
84302  kworker/u16:15-18488 (18488) [000] d..2 24574.444826: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
84303          <idle>-0     (-----) [000] d..1 24574.444844: cpu_idle: state=0 cpu_id=0
84304          <idle>-0     (-----) [003] d.s3 24574.444863: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
84305          <idle>-0     (-----) [003] d.s4 24574.444880: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
84306          <idle>-0     (-----) [003] d.s4 24574.444893: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
84307          <idle>-0     (-----) [000] .n.1 24574.444899: cpu_idle: state=4294967295 cpu_id=0
84308          <idle>-0     (-----) [003] ...1 24574.444907: cpu_idle: state=4294967295 cpu_id=3
84309          <idle>-0     (-----) [000] d..2 24574.444912: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
84310          <idle>-0     (-----) [003] d..1 24574.444913: cpu_idle: state=0 cpu_id=3
84311  kworker/u16:15-18488 (18488) [000] d..2 24574.444947: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84312          <idle>-0     (-----) [000] d..1 24574.444957: cpu_idle: state=0 cpu_id=0
84313          <idle>-0     (-----) [002] ...1 24574.445856: cpu_idle: state=4294967295 cpu_id=2
84314          <idle>-0     (-----) [002] d..1 24574.445861: cpu_idle: state=0 cpu_id=2
84315          <idle>-0     (-----) [000] d.h5 24574.449626: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
84316          <idle>-0     (-----) [000] d.h6 24574.449655: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
84317          <idle>-0     (-----) [002] .n.1 24574.449661: cpu_idle: state=4294967295 cpu_id=2
84318          <idle>-0     (-----) [000] d.h5 24574.449665: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
84319          <idle>-0     (-----) [002] d..2 24574.449674: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
84320          <idle>-0     (-----) [000] d.h6 24574.449679: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
84321          <idle>-0     (-----) [003] .n.1 24574.449685: cpu_idle: state=4294967295 cpu_id=3
84322          <idle>-0     (-----) [000] d..2 24574.449695: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
84323          <idle>-0     (-----) [003] d..2 24574.449700: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
84324          <idle>-0     (-----) [000] dn.3 24574.449710: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
84325          <idle>-0     (-----) [000] .n.1 24574.449714: cpu_idle: state=4294967295 cpu_id=0
84326  crtc_event:111-254   (  254) [002] d..2 24574.449731: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84327          <idle>-0     (-----) [000] d..2 24574.449731: 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
84328          <idle>-0     (-----) [002] d..1 24574.449744: cpu_idle: state=0 cpu_id=2
84329     ksoftirqd/0-3     (    3) [000] d.s2 24574.449747: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
84330     ksoftirqd/0-3     (    3) [000] d.s3 24574.449765: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
84331     ksoftirqd/0-3     (    3) [000] d..2 24574.449782: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
84332  kworker/u16:15-18488 (18488) [000] .... 24574.449855: clk_set_rate: l3_cluster0_vote_clk 403200000
84333  kworker/u16:15-18488 (18488) [000] .... 24574.449863: clk_set_rate: l3_clk 403200000
84334 crtc_commit:111-253   (  253) [003] d..2 24574.449957: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
84335          <idle>-0     (-----) [003] d..1 24574.449966: cpu_idle: state=0 cpu_id=3
84336  kworker/u16:15-18488 (18488) [000] d..2 24574.450162: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
84337          <idle>-0     (-----) [000] d..1 24574.450174: cpu_idle: state=0 cpu_id=0
84338          <idle>-0     (-----) [003] d.s3 24574.450670: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
84339          <idle>-0     (-----) [003] d.s4 24574.450704: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
84340          <idle>-0     (-----) [003] dns4 24574.450709: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
84341          <idle>-0     (-----) [003] .n.1 24574.450718: cpu_idle: state=4294967295 cpu_id=3
84342          <idle>-0     (-----) [003] d..2 24574.450726: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
84343  kworker/u16:15-18488 (18488) [003] d..2 24574.450764: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
84344          <idle>-0     (-----) [003] d..1 24574.450773: cpu_idle: state=0 cpu_id=3
84345          <idle>-0     (-----) [000] d.s2 24574.450913: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
84346          <idle>-0     (-----) [003] d.s3 24574.450914: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
84347          <idle>-0     (-----) [000] dns3 24574.450932: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
84348          <idle>-0     (-----) [003] d.s4 24574.450933: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
84349          <idle>-0     (-----) [002] .n.1 24574.450939: cpu_idle: state=4294967295 cpu_id=2
84350          <idle>-0     (-----) [000] .n.1 24574.450943: cpu_idle: state=4294967295 cpu_id=0
84351          <idle>-0     (-----) [002] d..2 24574.450950: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
84352          <idle>-0     (-----) [000] d..2 24574.450953: 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
84353          <idle>-0     (-----) [003] ...1 24574.450957: cpu_idle: state=4294967295 cpu_id=3
84354          <idle>-0     (-----) [003] d..1 24574.450963: cpu_idle: state=0 cpu_id=3
84355  crtc_event:111-254   (  254) [002] d..2 24574.450981: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84356     rcu_preempt-7     (    7) [000] d..2 24574.450984: 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
84357          <idle>-0     (-----) [002] d..1 24574.450993: cpu_idle: state=0 cpu_id=2
84358          <idle>-0     (-----) [000] d..1 24574.450994: cpu_idle: state=0 cpu_id=0
84359          <idle>-0     (-----) [000] d.h5 24574.451915: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
84360          <idle>-0     (-----) [000] d.h6 24574.451935: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
84361          <idle>-0     (-----) [003] .n.1 24574.451941: cpu_idle: state=4294967295 cpu_id=3
84362          <idle>-0     (-----) [000] ...1 24574.451951: cpu_idle: state=4294967295 cpu_id=0
84363          <idle>-0     (-----) [003] d..2 24574.451951: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
84364          <idle>-0     (-----) [000] d..1 24574.451956: cpu_idle: state=0 cpu_id=0
84365 crtc_commit:111-253   (  253) [003] d..2 24574.452051: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
84366          <idle>-0     (-----) [003] d..1 24574.452065: cpu_idle: state=0 cpu_id=3
84367          <idle>-0     (-----) [000] d.h5 24574.452226: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
84368          <idle>-0     (-----) [000] d.h6 24574.452242: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
84369          <idle>-0     (-----) [002] .n.1 24574.452248: cpu_idle: state=4294967295 cpu_id=2
84370          <idle>-0     (-----) [002] d..2 24574.452257: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
84371          <idle>-0     (-----) [000] ...1 24574.452262: cpu_idle: state=4294967295 cpu_id=0
84372          <idle>-0     (-----) [000] d..1 24574.452267: cpu_idle: state=0 cpu_id=0
84373  crtc_event:111-254   (  254) [002] d..2 24574.452281: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84374          <idle>-0     (-----) [002] d..1 24574.452291: cpu_idle: state=0 cpu_id=2
84375          <idle>-0     (-----) [001] d.h2 24574.452868: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
84376          <idle>-0     (-----) [001] dnh3 24574.452887: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
84377          <idle>-0     (-----) [001] .n.1 24574.452895: cpu_idle: state=4294967295 cpu_id=1
84378          <idle>-0     (-----) [001] d..2 24574.452907: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
84379        DispSync-23904 (23896) [001] d..1 24574.452938: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
84380        DispSync-23904 (23896) [001] d..2 24574.452957: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
84381          <idle>-0     (-----) [003] .n.1 24574.452962: cpu_idle: state=4294967295 cpu_id=3
84382          <idle>-0     (-----) [003] d..2 24574.452973: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
84383        DispSync-23904 (23896) [001] d..2 24574.452992: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
84384          <idle>-0     (-----) [001] d..1 24574.453003: cpu_idle: state=0 cpu_id=1
84385   sfEventThread-23906 (23896) [003] d..3 24574.453045: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
84386   sfEventThread-23906 (23896) [003] d..4 24574.453067: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
84387          <idle>-0     (-----) [000] .n.1 24574.453071: cpu_idle: state=4294967295 cpu_id=0
84388          <idle>-0     (-----) [000] d..2 24574.453081: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
84389   sfEventThread-23906 (23896) [003] d..2 24574.453102: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
84390          <idle>-0     (-----) [003] d..1 24574.453118: cpu_idle: state=0 cpu_id=3
84391  surfaceflinger-23896 (23896) [000] d.h1 24574.453495: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=000
84392  surfaceflinger-23896 (23896) [000] d.h2 24574.453536: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=001
84393          <idle>-0     (-----) [001] .n.1 24574.453541: cpu_idle: state=4294967295 cpu_id=1
84394          <idle>-0     (-----) [001] d..2 24574.453554: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
84395           <...>-13147 (-----) [001] d.h1 24574.453882: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
84396           <...>-13147 (-----) [001] d.h2 24574.453914: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
84397          <idle>-0     (-----) [002] .n.1 24574.453919: cpu_idle: state=4294967295 cpu_id=2
84398          <idle>-0     (-----) [002] d..2 24574.453929: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
84399        DispSync-23904 (23896) [002] d..1 24574.453953: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
84400           <...>-13147 (-----) [001] d..2 24574.453959: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
84401        DispSync-23904 (23896) [002] d..2 24574.453986: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
84402          <idle>-0     (-----) [003] .n.1 24574.453993: cpu_idle: state=4294967295 cpu_id=3
84403           <...>-13147 (-----) [001] d..3 24574.453996: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
84404          <idle>-0     (-----) [003] d..2 24574.454002: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
84405        DispSync-23904 (23896) [002] d..2 24574.454024: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84406          <idle>-0     (-----) [002] d..1 24574.454038: cpu_idle: state=0 cpu_id=2
84407  appEventThread-23905 (23896) [003] d..3 24574.454058: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
84408  appEventThread-23905 (23896) [003] d..4 24574.454082: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
84409          <idle>-0     (-----) [002] .n.1 24574.454088: cpu_idle: state=4294967295 cpu_id=2
84410  appEventThread-23905 (23896) [003] d..3 24574.454098: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
84411          <idle>-0     (-----) [002] d..2 24574.454103: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
84412  surfaceflinger-23896 (23896) [000] d..1 24574.454121: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
84413           <...>-13147 (-----) [001] d..2 24574.454126: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
84414          <idle>-0     (-----) [006] dnh2 24574.454185: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
84415  appEventThread-23905 (23896) [003] d.h3 24574.454186: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
84416  surfaceflinger-23896 (23896) [000] d..2 24574.454189: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
84417          <idle>-0     (-----) [006] .n.1 24574.454190: cpu_idle: state=4294967295 cpu_id=6
84418  appEventThread-23905 (23896) [003] d.h3 24574.454200: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
84419          <idle>-0     (-----) [006] d..2 24574.454200: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
84420     logd.writer-563   (  555) [001] d..2 24574.454207: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
84421          <idle>-0     (-----) [004] dnh2 24574.454207: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
84422          <idle>-0     (-----) [004] .n.1 24574.454210: cpu_idle: state=4294967295 cpu_id=4
84423  appEventThread-23905 (23896) [003] d.h4 24574.454214: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
84424          <idle>-0     (-----) [004] d..2 24574.454218: 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
84425         sugov:4-560   (  560) [004] d..2 24574.454244: 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
84426          <idle>-0     (-----) [004] d..1 24574.454249: cpu_idle: state=0 cpu_id=4
84427 s.nexuslauncher-24827 (24827) [002] d..2 24574.454267: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
84428   sfEventThread-23906 (23896) [001] d..2 24574.454285: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
84429         sugov:0-559   (  559) [002] d..2 24574.454285: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
84430  appEventThread-23905 (23896) [003] d..2 24574.454289: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
84431          <idle>-0     (-----) [003] d..1 24574.454306: cpu_idle: state=0 cpu_id=3
84432     logd.writer-563   (  555) [001] d..2 24574.454396: 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
84433          <idle>-0     (-----) [001] d..1 24574.454415: cpu_idle: state=0 cpu_id=1
84434<...>-24151 ( 24151) [006] d..2 24574.454433: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
84435          <idle>-0     (-----) [006] d..1 24574.454446: cpu_idle: state=0 cpu_id=6
84436 s.nexuslauncher-24827 (24827) [002] .... 24574.454574: binder_transaction: transaction=1670837 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
84437 s.nexuslauncher-24827 (24827) [002] d..4 24574.454586: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
84438 s.nexuslauncher-24827 (24827) [002] d..5 24574.454620: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
84439          <idle>-0     (-----) [001] .n.1 24574.454627: cpu_idle: state=4294967295 cpu_id=1
84440          <idle>-0     (-----) [001] d..2 24574.454641: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
84441  Binder:23896_5-25989 (23896) [001] .... 24574.454649: binder_transaction_received: transaction=1670837
84442 s.nexuslauncher-24827 (24827) [002] d..3 24574.454662: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
84443  Binder:23896_5-25989 (23896) [001] d..1 24574.454686: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
84444 s.nexuslauncher-24827 (24827) [002] d..4 24574.454689: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=003
84445          <idle>-0     (-----) [003] .n.1 24574.454697: cpu_idle: state=4294967295 cpu_id=3
84446  Binder:23896_5-25989 (23896) [001] dn.2 24574.454713: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
84447          <idle>-0     (-----) [003] d..2 24574.454715: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
84448  Binder:23896_5-25989 (23896) [001] d..2 24574.454723: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
84449  appEventThread-23905 (23896) [001] d..2 24574.454743: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
84450  Binder:23896_5-25989 (23896) [001] d..1 24574.454749: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
84451  Binder:23896_5-25989 (23896) [001] dn.2 24574.454757: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
84452  Binder:23896_5-25989 (23896) [001] d..2 24574.454764: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
84453    RenderThread-25194 (24827) [003] d..2 24574.454777: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
84454          <idle>-0     (-----) [003] d..1 24574.454792: cpu_idle: state=0 cpu_id=3
84455  appEventThread-23905 (23896) [001] d..2 24574.454802: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
84456  Binder:23896_5-25989 (23896) [001] d..2 24574.454847: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
84457          <idle>-0     (-----) [001] d..1 24574.454864: cpu_idle: state=0 cpu_id=1
84458 s.nexuslauncher-24827 (24827) [002] d..3 24574.455083: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=003
84459 s.nexuslauncher-24827 (24827) [002] d..4 24574.455118: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
84460          <idle>-0     (-----) [001] .n.1 24574.455125: cpu_idle: state=4294967295 cpu_id=1
84461          <idle>-0     (-----) [001] d..2 24574.455136: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
84462 s.nexuslauncher-24827 (24827) [002] d..2 24574.455156: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84463          <idle>-0     (-----) [002] d..1 24574.455175: cpu_idle: state=0 cpu_id=2
84464  surfaceflinger-23896 (23896) [000] ...1 24574.455232: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
84465  surfaceflinger-23896 (23896) [000] ...1 24574.455241: tracing_mark_write: E|23896
84466  surfaceflinger-23896 (23896) [000] .... 24574.455306: binder_transaction: transaction=1670838 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
84467  surfaceflinger-23896 (23896) [000] ...2 24574.455334: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
84468  surfaceflinger-23896 (23896) [000] d..4 24574.455343: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
84469    RenderThread-25194 (24827) [001] d..1 24574.455343: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
84470    RenderThread-25194 (24827) [001] d..2 24574.455369: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
84471          <idle>-0     (-----) [002] .n.1 24574.455376: cpu_idle: state=4294967295 cpu_id=2
84472  surfaceflinger-23896 (23896) [000] d..5 24574.455385: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
84473          <idle>-0     (-----) [002] d..2 24574.455393: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
84474  HwBinder:598_3-633   (  598) [002] .... 24574.455407: binder_transaction_received: transaction=1670838
84475  surfaceflinger-23896 (23896) [000] d..2 24574.455433: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84476          <idle>-0     (-----) [000] d..1 24574.455448: cpu_idle: state=0 cpu_id=0
84477    RenderThread-25194 (24827) [001] .... 24574.455450: binder_transaction: transaction=1670839 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
84478    RenderThread-25194 (24827) [001] ...2 24574.455460: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
84479    RenderThread-25194 (24827) [001] d..4 24574.455464: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
84480  HwBinder:598_3-633   (  598) [002] ...1 24574.455469: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
84481    RenderThread-25194 (24827) [001] d..5 24574.455479: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
84482    RenderThread-25194 (24827) [001] d..2 24574.455495: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
84483  Binder:23896_5-25989 (23896) [001] .... 24574.455503: binder_transaction_received: transaction=1670839
84484  Binder:23896_5-25989 (23896) [001] .... 24574.455573: binder_transaction: transaction=1670840 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
84485  Binder:23896_5-25989 (23896) [001] d..2 24574.455587: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
84486  Binder:23896_5-25989 (23896) [001] dn.3 24574.455603: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
84487  Binder:23896_5-25989 (23896) [001] d..2 24574.455613: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
84488    RenderThread-25194 (24827) [001] .... 24574.455620: binder_transaction_received: transaction=1670840
84489  HwBinder:598_3-633   (  598) [002] ...1 24574.455642: tracing_mark_write: B|598|HWCSession::PresentDisplay::
84490  HwBinder:598_3-633   (  598) [002] ...1 24574.455851: tracing_mark_write: B|598|HWDeviceDRM::Commit::
84491  HwBinder:598_3-633   (  598) [002] ...1 24574.455869: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
84492          <idle>-0     (-----) [003] ...1 24574.456452: cpu_idle: state=4294967295 cpu_id=3
84493          <idle>-0     (-----) [003] d..1 24574.456456: cpu_idle: state=0 cpu_id=3
84494  HwBinder:598_3-633   (  598) [002] d..2 24574.456521: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
84495  HwBinder:598_3-633   (  598) [002] d..3 24574.456549: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
84496          <idle>-0     (-----) [003] .n.1 24574.456553: cpu_idle: state=4294967295 cpu_id=3
84497          <idle>-0     (-----) [003] d..2 24574.456563: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
84498  HwBinder:598_3-633   (  598) [002] ...1 24574.456664: tracing_mark_write: E|598
84499  HwBinder:598_3-633   (  598) [002] ...1 24574.456670: tracing_mark_write: E|598
84500  HwBinder:598_3-633   (  598) [002] ...1 24574.456745: tracing_mark_write: E|598
84501  HwBinder:598_3-633   (  598) [002] ...1 24574.456804: tracing_mark_write: E|598
84502  HwBinder:598_3-633   (  598) [002] .... 24574.456822: binder_transaction: transaction=1670841 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
84503  HwBinder:598_3-633   (  598) [002] d..2 24574.456846: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
84504  HwBinder:598_3-633   (  598) [002] d..3 24574.456865: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
84505  HwBinder:598_3-633   (  598) [002] .... 24574.456871: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
84506          <idle>-0     (-----) [000] .n.1 24574.456872: cpu_idle: state=4294967295 cpu_id=0
84507          <idle>-0     (-----) [000] d..2 24574.456881: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
84508  surfaceflinger-23896 (23896) [000] .... 24574.456890: binder_transaction_received: transaction=1670841
84509  HwBinder:598_3-633   (  598) [002] d..2 24574.456958: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
84510    RenderThread-25194 (24827) [001] .... 24574.457035: binder_transaction: transaction=1670842 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
84511    RenderThread-25194 (24827) [001] ...2 24574.457049: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
84512    RenderThread-25194 (24827) [001] d..4 24574.457054: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
84513 s.nexuslauncher-24827 (24827) [002] d..2 24574.457104: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84514          <idle>-0     (-----) [005] dnh2 24574.457106: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=005
84515          <idle>-0     (-----) [005] .n.1 24574.457111: cpu_idle: state=4294967295 cpu_id=5
84516          <idle>-0     (-----) [002] d..1 24574.457123: cpu_idle: state=0 cpu_id=2
84517    RenderThread-25194 (24827) [001] d.h5 24574.457160: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
84518          <idle>-0     (-----) [005] d..2 24574.457162: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
84519  Binder:23896_4-24423 (23896) [005] .... 24574.457178: binder_transaction_received: transaction=1670842
84520          <idle>-0     (-----) [004] dnh2 24574.457180: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
84521          <idle>-0     (-----) [004] .n.1 24574.457185: cpu_idle: state=4294967295 cpu_id=4
84522          <idle>-0     (-----) [004] d..2 24574.457190: 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
84523    RenderThread-25194 (24827) [001] d..2 24574.457195: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
84524         sugov:4-560   (  560) [004] d..2 24574.457200: 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
84525  Binder:23896_5-25989 (23896) [001] .... 24574.457202: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
84526          <idle>-0     (-----) [004] d..1 24574.457205: cpu_idle: state=0 cpu_id=4
84527  Binder:23896_4-24423 (23896) [005] d..1 24574.457238: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
84528  surfaceflinger-23896 (23896) [000] d..2 24574.457248: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84529          <idle>-0     (-----) [000] d..1 24574.457263: cpu_idle: state=0 cpu_id=0
84530          <idle>-0     (-----) [000] dnh2 24574.457278: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
84531  Binder:23896_5-25989 (23896) [001] d..2 24574.457281: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
84532          <idle>-0     (-----) [000] .n.1 24574.457285: cpu_idle: state=4294967295 cpu_id=0
84533          <idle>-0     (-----) [000] d..2 24574.457292: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
84534          <idle>-0     (-----) [001] d..1 24574.457302: cpu_idle: state=0 cpu_id=1
84535  Binder:23896_4-24423 (23896) [005] .... 24574.457312: binder_transaction: transaction=1670843 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
84536  Binder:23896_4-24423 (23896) [005] d..2 24574.457318: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
84537  Binder:23896_4-24423 (23896) [005] dn.3 24574.457338: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
84538  Binder:23896_4-24423 (23896) [005] d..2 24574.457376: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
84539    RenderThread-25194 (24827) [005] .... 24574.457382: binder_transaction_received: transaction=1670843
84540 crtc_commit:111-253   (  253) [003] d..2 24574.457413: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
84541          <idle>-0     (-----) [003] d..1 24574.457428: cpu_idle: state=0 cpu_id=3
84542    RenderThread-25194 (24827) [005] d..2 24574.457454: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
84543  Binder:23896_4-24423 (23896) [005] .... 24574.457459: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
84544  Binder:23896_4-24423 (23896) [005] d..2 24574.457510: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
84545  surfaceflinger-23896 (23896) [000] d..1 24574.457516: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
84546          <idle>-0     (-----) [005] d..1 24574.457525: cpu_idle: state=0 cpu_id=5
84547  surfaceflinger-23896 (23896) [000] d..2 24574.457537: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
84548          <idle>-0     (-----) [002] .n.1 24574.457543: cpu_idle: state=4294967295 cpu_id=2
84549          <idle>-0     (-----) [002] d..2 24574.457568: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
84550  surfaceflinger-23896 (23896) [000] d.s1 24574.457626: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
84551        DispSync-23904 (23896) [002] d.h4 24574.457657: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
84552  surfaceflinger-23896 (23896) [000] d.s2 24574.457685: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
84553        DispSync-23904 (23896) [002] d.h5 24574.457689: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
84554  surfaceflinger-23896 (23896) [000] d.s2 24574.457692: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
84555          <idle>-0     (-----) [003] .n.1 24574.457696: cpu_idle: state=4294967295 cpu_id=3
84556          <idle>-0     (-----) [003] d..2 24574.457708: 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
84557  surfaceflinger-23896 (23896) [000] d.s3 24574.457716: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
84558        DispSync-23904 (23896) [002] d..2 24574.457725: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
84559     rcu_preempt-7     (    7) [002] d..2 24574.457740: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
84560         sugov:0-559   (  559) [003] .... 24574.457747: clk_set_rate: pwrcl_clk 1056000000
84561         sugov:0-559   (  559) [003] .... 24574.457768: clk_set_rate: cpu3_pwrcl_clk 979200000
84562  surfaceflinger-23896 (23896) [000] d..2 24574.457768: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84563         sugov:0-559   (  559) [003] .... 24574.457780: clk_set_rate: cpu2_pwrcl_clk 979200000
84564         sugov:0-559   (  559) [003] .... 24574.457789: clk_set_rate: cpu1_pwrcl_clk 979200000
84565     rcu_preempt-7     (    7) [002] d..3 24574.457789: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
84566         sugov:0-559   (  559) [003] .... 24574.457799: clk_set_rate: cpu0_pwrcl_clk 1056000000
84567          <idle>-0     (-----) [000] d..2 24574.457802: 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
84568         sugov:0-559   (  559) [003] .... 24574.457809: cpu_frequency: state=1056000 cpu_id=0
84569     rcu_preempt-7     (    7) [002] d..2 24574.457826: 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
84570         sugov:0-559   (  559) [003] .... 24574.457836: cpu_frequency: state=1056000 cpu_id=1
84571         sugov:0-559   (  559) [003] .... 24574.457842: cpu_frequency: state=1056000 cpu_id=2
84572          <idle>-0     (-----) [002] d..1 24574.457844: cpu_idle: state=0 cpu_id=2
84573         rcuop/2-29    (   29) [000] d..2 24574.457848: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84574         sugov:0-559   (  559) [003] .... 24574.457848: cpu_frequency: state=1056000 cpu_id=3
84575          <idle>-0     (-----) [000] d..1 24574.457857: cpu_idle: state=0 cpu_id=0
84576         sugov:0-559   (  559) [003] d..2 24574.457866: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
84577  kworker/u16:15-18488 (18488) [003] .... 24574.457992: clk_set_rate: l3_cluster0_vote_clk 480000000
84578  kworker/u16:15-18488 (18488) [003] .... 24574.458002: clk_set_rate: l3_clk 480000000
84579  kworker/u16:15-18488 (18488) [003] d..2 24574.458048: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
84580          <idle>-0     (-----) [003] d..1 24574.458063: cpu_idle: state=0 cpu_id=3
84581          <idle>-0     (-----) [001] ...1 24574.458586: cpu_idle: state=4294967295 cpu_id=1
84582          <idle>-0     (-----) [001] d..1 24574.458592: cpu_idle: state=0 cpu_id=1
84583          <idle>-0     (-----) [000] d.h3 24574.458907: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
84584          <idle>-0     (-----) [000] d.h4 24574.458926: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
84585          <idle>-0     (-----) [002] .n.1 24574.458932: cpu_idle: state=4294967295 cpu_id=2
84586          <idle>-0     (-----) [000] ...1 24574.458941: cpu_idle: state=4294967295 cpu_id=0
84587          <idle>-0     (-----) [002] d..2 24574.458943: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
84588          <idle>-0     (-----) [000] d..1 24574.458946: cpu_idle: state=0 cpu_id=0
84589 kgsl_worker_thr-246   (  246) [002] d..2 24574.459008: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
84590 kgsl_worker_thr-246   (  246) [002] d..3 24574.459045: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
84591 kgsl_worker_thr-246   (  246) [002] d..2 24574.459070: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
84592          <idle>-0     (-----) [003] ...1 24574.459679: cpu_idle: state=4294967295 cpu_id=3
84593  kworker/u16:15-18488 (18488) [002] d..2 24574.459682: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84594          <idle>-0     (-----) [003] d..1 24574.459683: cpu_idle: state=0 cpu_id=3
84595          <idle>-0     (-----) [002] d..1 24574.459695: cpu_idle: state=0 cpu_id=2
84596          <idle>-0     (-----) [002] d.s2 24574.464244: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
84597          <idle>-0     (-----) [002] dns3 24574.464259: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
84598          <idle>-0     (-----) [002] dns3 24574.464264: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
84599          <idle>-0     (-----) [002] dns4 24574.464275: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
84600          <idle>-0     (-----) [002] .n.1 24574.464291: cpu_idle: state=4294967295 cpu_id=2
84601          <idle>-0     (-----) [002] d..2 24574.464302: 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
84602     rcu_preempt-7     (    7) [002] d..2 24574.464314: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
84603     rcu_preempt-7     (    7) [002] d..3 24574.464351: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
84604     rcu_preempt-7     (    7) [002] d..2 24574.464364: 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
84605         rcuop/0-10    (   10) [002] d..2 24574.464386: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
84606  kworker/u16:15-18488 (18488) [002] d..2 24574.464638: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
84607          <idle>-0     (-----) [002] d..1 24574.464651: cpu_idle: state=0 cpu_id=2
84608          <idle>-0     (-----) [003] d.s3 24574.464667: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
84609          <idle>-0     (-----) [003] d.s4 24574.464701: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
84610          <idle>-0     (-----) [003] dns4 24574.464708: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
84611          <idle>-0     (-----) [003] .n.1 24574.464716: cpu_idle: state=4294967295 cpu_id=3
84612          <idle>-0     (-----) [003] d..2 24574.464728: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
84613  kworker/u16:15-18488 (18488) [003] d..2 24574.464764: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
84614          <idle>-0     (-----) [003] d..1 24574.464775: cpu_idle: state=0 cpu_id=3
84615          <idle>-0     (-----) [000] d.h5 24574.466070: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
84616          <idle>-0     (-----) [000] d.h6 24574.466088: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
84617          <idle>-0     (-----) [002] .n.1 24574.466093: cpu_idle: state=4294967295 cpu_id=2
84618          <idle>-0     (-----) [000] d.h5 24574.466094: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
84619          <idle>-0     (-----) [002] d..2 24574.466104: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
84620          <idle>-0     (-----) [000] d.h6 24574.466106: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
84621          <idle>-0     (-----) [003] .n.1 24574.466111: cpu_idle: state=4294967295 cpu_id=3
84622          <idle>-0     (-----) [003] d..2 24574.466120: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
84623          <idle>-0     (-----) [000] ...1 24574.466123: cpu_idle: state=4294967295 cpu_id=0
84624          <idle>-0     (-----) [000] d..1 24574.466127: cpu_idle: state=0 cpu_id=0
84625  crtc_event:111-254   (  254) [002] d..2 24574.466143: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84626          <idle>-0     (-----) [002] d..1 24574.466151: cpu_idle: state=0 cpu_id=2
84627 crtc_commit:111-253   (  253) [003] d..2 24574.466312: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
84628          <idle>-0     (-----) [003] d..1 24574.466320: cpu_idle: state=0 cpu_id=3
84629          <idle>-0     (-----) [003] d.s3 24574.467578: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
84630          <idle>-0     (-----) [003] d.s4 24574.467595: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
84631          <idle>-0     (-----) [002] .n.1 24574.467600: cpu_idle: state=4294967295 cpu_id=2
84632          <idle>-0     (-----) [003] d.s3 24574.467601: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
84633          <idle>-0     (-----) [002] d..2 24574.467610: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
84634          <idle>-0     (-----) [003] dns4 24574.467616: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
84635          <idle>-0     (-----) [003] .n.1 24574.467635: cpu_idle: state=4294967295 cpu_id=3
84636  crtc_event:111-254   (  254) [002] d..2 24574.467640: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84637          <idle>-0     (-----) [003] d..2 24574.467644: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
84638          <idle>-0     (-----) [002] d..1 24574.467646: cpu_idle: state=0 cpu_id=2
84639  kworker/u16:15-18488 (18488) [003] .... 24574.467668: clk_set_rate: l3_cluster0_vote_clk 300000000
84640  kworker/u16:15-18488 (18488) [003] .... 24574.467674: clk_set_rate: l3_clk 300000000
84641  kworker/u16:15-18488 (18488) [003] d..2 24574.467938: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
84642          <idle>-0     (-----) [003] d.s4 24574.467987: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
84643          <idle>-0     (-----) [003] d.s5 24574.467998: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
84644          <idle>-0     (-----) [003] dns5 24574.468003: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
84645          <idle>-0     (-----) [003] d..2 24574.468016: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
84646  kworker/u16:15-18488 (18488) [003] d..2 24574.468046: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
84647          <idle>-0     (-----) [003] d..1 24574.468063: cpu_idle: state=0 cpu_id=3
84648          <idle>-0     (-----) [000] d.h5 24574.468392: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
84649          <idle>-0     (-----) [000] d.h6 24574.468407: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
84650          <idle>-0     (-----) [003] .n.1 24574.468415: cpu_idle: state=4294967295 cpu_id=3
84651          <idle>-0     (-----) [000] ...1 24574.468422: cpu_idle: state=4294967295 cpu_id=0
84652          <idle>-0     (-----) [003] d..2 24574.468425: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
84653          <idle>-0     (-----) [000] d..1 24574.468427: cpu_idle: state=0 cpu_id=0
84654 crtc_commit:111-253   (  253) [003] d..2 24574.468524: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
84655          <idle>-0     (-----) [003] d..1 24574.468539: cpu_idle: state=0 cpu_id=3
84656          <idle>-0     (-----) [000] d.h5 24574.468702: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
84657          <idle>-0     (-----) [000] d.h6 24574.468717: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
84658          <idle>-0     (-----) [002] .n.1 24574.468722: cpu_idle: state=4294967295 cpu_id=2
84659          <idle>-0     (-----) [002] d..2 24574.468729: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
84660          <idle>-0     (-----) [000] ...1 24574.468739: cpu_idle: state=4294967295 cpu_id=0
84661          <idle>-0     (-----) [000] d..1 24574.468743: cpu_idle: state=0 cpu_id=0
84662  crtc_event:111-254   (  254) [002] d..2 24574.468753: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84663          <idle>-0     (-----) [002] d..1 24574.468760: cpu_idle: state=0 cpu_id=2
84664          <idle>-0     (-----) [000] d.h2 24574.469641: sched_waking: comm=HeapTaskDaemon pid=13142 prio=124 target_cpu=000
84665          <idle>-0     (-----) [000] dnh3 24574.469667: sched_wakeup: comm=HeapTaskDaemon pid=13142 prio=124 target_cpu=000
84666          <idle>-0     (-----) [000] .n.1 24574.469676: cpu_idle: state=4294967295 cpu_id=0
84667          <idle>-0     (-----) [000] d..2 24574.469690: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=13142 next_prio=124
84668  HeapTaskDaemon-13142 (13131) [000] d..2 24574.469906: sched_switch: prev_comm=HeapTaskDaemon prev_pid=13142 prev_prio=124 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84669          <idle>-0     (-----) [000] d..1 24574.469923: cpu_idle: state=0 cpu_id=0
84670          <idle>-0     (-----) [002] d.h2 24574.470321: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
84671          <idle>-0     (-----) [002] dnh3 24574.470335: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
84672          <idle>-0     (-----) [002] .n.1 24574.470344: cpu_idle: state=4294967295 cpu_id=2
84673          <idle>-0     (-----) [003] ...1 24574.470348: cpu_idle: state=4294967295 cpu_id=3
84674          <idle>-0     (-----) [002] d..2 24574.470350: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
84675          <idle>-0     (-----) [003] d..1 24574.470352: cpu_idle: state=0 cpu_id=3
84676        DispSync-23904 (23896) [002] d..1 24574.470374: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
84677        DispSync-23904 (23896) [002] d..2 24574.470391: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
84678          <idle>-0     (-----) [001] .n.1 24574.470396: cpu_idle: state=4294967295 cpu_id=1
84679          <idle>-0     (-----) [001] d..2 24574.470409: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
84680        DispSync-23904 (23896) [002] d..2 24574.470421: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84681          <idle>-0     (-----) [002] d..1 24574.470431: cpu_idle: state=0 cpu_id=2
84682  appEventThread-23905 (23896) [001] d..3 24574.470480: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
84683  appEventThread-23905 (23896) [001] d..4 24574.470516: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
84684          <idle>-0     (-----) [000] .n.1 24574.470521: cpu_idle: state=4294967295 cpu_id=0
84685          <idle>-0     (-----) [000] d..2 24574.470535: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
84686  appEventThread-23905 (23896) [001] d..2 24574.470559: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
84687          <idle>-0     (-----) [001] d..1 24574.470576: cpu_idle: state=0 cpu_id=1
84688          <idle>-0     (-----) [002] d.s2 24574.470907: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
84689          <idle>-0     (-----) [002] dns3 24574.470928: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
84690          <idle>-0     (-----) [002] .n.1 24574.470939: cpu_idle: state=4294967295 cpu_id=2
84691          <idle>-0     (-----) [002] d..2 24574.470948: 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
84692 s.nexuslauncher-24827 (24827) [000] .... 24574.470976: binder_transaction: transaction=1670844 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
84693     rcu_preempt-7     (    7) [002] d..2 24574.470980: 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
84694 s.nexuslauncher-24827 (24827) [000] d..4 24574.470991: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
84695          <idle>-0     (-----) [002] d..1 24574.470991: cpu_idle: state=0 cpu_id=2
84696 s.nexuslauncher-24827 (24827) [000] d..5 24574.471031: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
84697          <idle>-0     (-----) [001] .n.1 24574.471037: cpu_idle: state=4294967295 cpu_id=1
84698 s.nexuslauncher-24827 (24827) [000] d.h5 24574.471082: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
84699          <idle>-0     (-----) [001] d..2 24574.471085: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
84700 s.nexuslauncher-24827 (24827) [000] d.h5 24574.471098: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
84701          <idle>-0     (-----) [004] dnh2 24574.471105: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
84702          <idle>-0     (-----) [004] .n.1 24574.471111: cpu_idle: state=4294967295 cpu_id=4
84703 s.nexuslauncher-24827 (24827) [000] d.h6 24574.471115: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
84704          <idle>-0     (-----) [004] d..2 24574.471116: 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
84705          <idle>-0     (-----) [003] .n.1 24574.471120: cpu_idle: state=4294967295 cpu_id=3
84706  Binder:23896_4-24423 (23896) [001] .... 24574.471125: binder_transaction_received: transaction=1670844
84707         sugov:4-560   (  560) [004] d..2 24574.471128: 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
84708          <idle>-0     (-----) [003] d..2 24574.471134: 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
84709          <idle>-0     (-----) [004] d..1 24574.471135: cpu_idle: state=0 cpu_id=4
84710         sugov:0-559   (  559) [003] d..2 24574.471160: 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
84711  Binder:23896_4-24423 (23896) [001] d..1 24574.471162: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
84712 s.nexuslauncher-24827 (24827) [000] d..3 24574.471168: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
84713          <idle>-0     (-----) [003] d..1 24574.471169: cpu_idle: state=0 cpu_id=3
84714  Binder:23896_4-24423 (23896) [001] d..2 24574.471190: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
84715          <idle>-0     (-----) [002] .n.1 24574.471196: cpu_idle: state=4294967295 cpu_id=2
84716          <idle>-0     (-----) [002] d..2 24574.471209: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
84717 s.nexuslauncher-24827 (24827) [000] d..4 24574.471220: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
84718  appEventThread-23905 (23896) [002] d..2 24574.471280: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
84719  Binder:23896_4-24423 (23896) [001] d..2 24574.471280: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
84720          <idle>-0     (-----) [001] d..1 24574.471296: cpu_idle: state=0 cpu_id=1
84721    RenderThread-25194 (24827) [002] d..2 24574.471346: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84722          <idle>-0     (-----) [002] d..1 24574.471361: cpu_idle: state=0 cpu_id=2
84723 s.nexuslauncher-24827 (24827) [000] d..3 24574.471686: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
84724 s.nexuslauncher-24827 (24827) [000] d..4 24574.471712: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
84725          <idle>-0     (-----) [002] .n.1 24574.471717: cpu_idle: state=4294967295 cpu_id=2
84726          <idle>-0     (-----) [002] d..2 24574.471730: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
84727 s.nexuslauncher-24827 (24827) [000] d..2 24574.471750: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84728          <idle>-0     (-----) [000] d..1 24574.471770: cpu_idle: state=0 cpu_id=0
84729    RenderThread-25194 (24827) [002] d..1 24574.471940: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
84730    RenderThread-25194 (24827) [002] d..2 24574.471963: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
84731          <idle>-0     (-----) [000] .n.1 24574.471970: cpu_idle: state=4294967295 cpu_id=0
84732          <idle>-0     (-----) [000] d..2 24574.471985: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
84733    RenderThread-25194 (24827) [002] .... 24574.472044: binder_transaction: transaction=1670845 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
84734    RenderThread-25194 (24827) [002] ...2 24574.472056: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
84735    RenderThread-25194 (24827) [002] d..4 24574.472060: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
84736    RenderThread-25194 (24827) [002] d..5 24574.472085: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
84737 s.nexuslauncher-24827 (24827) [000] d..2 24574.472094: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84738    RenderThread-25194 (24827) [002] d..2 24574.472102: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
84739          <idle>-0     (-----) [000] d..1 24574.472111: cpu_idle: state=0 cpu_id=0
84740  Binder:23896_4-24423 (23896) [002] .... 24574.472112: binder_transaction_received: transaction=1670845
84741  Binder:23896_4-24423 (23896) [002] .... 24574.472203: binder_transaction: transaction=1670846 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
84742  Binder:23896_4-24423 (23896) [002] d..2 24574.472220: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
84743  Binder:23896_4-24423 (23896) [002] dn.3 24574.472236: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
84744  Binder:23896_4-24423 (23896) [002] d..2 24574.472246: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
84745    RenderThread-25194 (24827) [002] .... 24574.472255: binder_transaction_received: transaction=1670846
84746          <idle>-0     (-----) [001] ...1 24574.472676: cpu_idle: state=4294967295 cpu_id=1
84747          <idle>-0     (-----) [001] d..1 24574.472680: cpu_idle: state=0 cpu_id=1
84748    RenderThread-25194 (24827) [002] d..2 24574.473592: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
84749          <idle>-0     (-----) [000] ...1 24574.473593: cpu_idle: state=4294967295 cpu_id=0
84750          <idle>-0     (-----) [000] d..1 24574.473597: cpu_idle: state=0 cpu_id=0
84751  Binder:23896_4-24423 (23896) [002] .... 24574.473602: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
84752  Binder:23896_4-24423 (23896) [002] d..2 24574.473689: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84753          <idle>-0     (-----) [002] d.h3 24574.473703: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
84754          <idle>-0     (-----) [002] d.h4 24574.473726: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
84755          <idle>-0     (-----) [002] d.h4 24574.473735: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
84756          <idle>-0     (-----) [000] .n.1 24574.473740: cpu_idle: state=4294967295 cpu_id=0
84757          <idle>-0     (-----) [000] d..2 24574.473753: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
84758          <idle>-0     (-----) [002] d..1 24574.473760: cpu_idle: state=0 cpu_id=2
84759    RenderThread-25194 (24827) [000] .... 24574.474025: binder_transaction: transaction=1670847 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
84760    RenderThread-25194 (24827) [000] ...2 24574.474041: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
84761    RenderThread-25194 (24827) [000] d..4 24574.474045: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
84762    RenderThread-25194 (24827) [000] d..5 24574.474074: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
84763    RenderThread-25194 (24827) [000] d..2 24574.474091: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
84764  Binder:23896_4-24423 (23896) [000] .... 24574.474101: binder_transaction_received: transaction=1670847
84765  Binder:23896_4-24423 (23896) [000] d.s2 24574.474260: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
84766  Binder:23896_4-24423 (23896) [000] d.s3 24574.474308: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
84767          <idle>-0     (-----) [001] .n.1 24574.474313: cpu_idle: state=4294967295 cpu_id=1
84768          <idle>-0     (-----) [001] d..2 24574.474329: 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
84769     rcu_preempt-7     (    7) [001] d..2 24574.474339: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
84770          <idle>-0     (-----) [002] d.h2 24574.474353: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
84771          <idle>-0     (-----) [002] dnh3 24574.474370: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
84772          <idle>-0     (-----) [002] .n.1 24574.474377: cpu_idle: state=4294967295 cpu_id=2
84773     rcu_preempt-7     (    7) [001] d..3 24574.474381: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
84774          <idle>-0     (-----) [002] d..2 24574.474390: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
84775  Binder:23896_4-24423 (23896) [000] .... 24574.474392: binder_transaction: transaction=1670848 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
84776     rcu_preempt-7     (    7) [001] d..2 24574.474398: 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
84777  Binder:23896_4-24423 (23896) [000] d..2 24574.474401: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
84778        DispSync-23904 (23896) [002] d..1 24574.474415: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
84779  Binder:23896_4-24423 (23896) [000] dn.3 24574.474417: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
84780  Binder:23896_4-24423 (23896) [000] d..2 24574.474427: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
84781        DispSync-23904 (23896) [002] d..2 24574.474435: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
84782    RenderThread-25194 (24827) [000] .... 24574.474437: binder_transaction_received: transaction=1670848
84783         rcuop/2-29    (   29) [001] d..2 24574.474461: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=sfEventThread next_pid=23906 next_prio=97
84784        DispSync-23904 (23896) [002] d..2 24574.474474: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84785          <idle>-0     (-----) [002] d..1 24574.474489: cpu_idle: state=0 cpu_id=2
84786   sfEventThread-23906 (23896) [001] d..3 24574.474525: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
84787   sfEventThread-23906 (23896) [001] d..4 24574.474546: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
84788    RenderThread-25194 (24827) [000] d..2 24574.474557: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
84789   sfEventThread-23906 (23896) [001] d..2 24574.474586: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
84790  Binder:23896_4-24423 (23896) [001] .... 24574.474592: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
84791  Binder:23896_4-24423 (23896) [001] d..2 24574.474663: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
84792          <idle>-0     (-----) [001] d..1 24574.474682: cpu_idle: state=0 cpu_id=1
84793  surfaceflinger-23896 (23896) [000] d..1 24574.475057: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
84794  surfaceflinger-23896 (23896) [000] d..2 24574.475083: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
84795          <idle>-0     (-----) [001] .n.1 24574.475090: cpu_idle: state=4294967295 cpu_id=1
84796          <idle>-0     (-----) [001] d..2 24574.475102: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
84797   sfEventThread-23906 (23896) [001] d..2 24574.475141: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
84798          <idle>-0     (-----) [001] d..1 24574.475151: cpu_idle: state=0 cpu_id=1
84799  surfaceflinger-23896 (23896) [000] ...1 24574.475352: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
84800  surfaceflinger-23896 (23896) [000] ...1 24574.475365: tracing_mark_write: E|23896
84801  surfaceflinger-23896 (23896) [000] .... 24574.475446: binder_transaction: transaction=1670849 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
84802  surfaceflinger-23896 (23896) [000] ...2 24574.475483: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
84803  surfaceflinger-23896 (23896) [000] d..4 24574.475497: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
84804  surfaceflinger-23896 (23896) [000] d..5 24574.475525: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
84805          <idle>-0     (-----) [002] .n.1 24574.475531: cpu_idle: state=4294967295 cpu_id=2
84806          <idle>-0     (-----) [002] d..2 24574.475543: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
84807  surfaceflinger-23896 (23896) [000] d.h5 24574.475559: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
84808  surfaceflinger-23896 (23896) [000] d.h6 24574.475583: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
84809          <idle>-0     (-----) [001] .n.1 24574.475589: cpu_idle: state=4294967295 cpu_id=1
84810          <idle>-0     (-----) [001] d..2 24574.475600: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
84811  HwBinder:598_3-633   (  598) [002] .... 24574.475608: binder_transaction_received: transaction=1670849
84812  surfaceflinger-23896 (23896) [000] d..2 24574.475632: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84813          <idle>-0     (-----) [000] d..1 24574.475653: cpu_idle: state=0 cpu_id=0
84814 kgsl_worker_thr-246   (  246) [001] d..2 24574.475665: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
84815  HwBinder:598_3-633   (  598) [002] ...1 24574.475678: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
84816 kgsl_worker_thr-246   (  246) [001] d..3 24574.475708: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
84817 kgsl_worker_thr-246   (  246) [001] d..2 24574.475735: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
84818  HwBinder:598_3-633   (  598) [002] ...1 24574.475840: tracing_mark_write: B|598|HWCSession::PresentDisplay::
84819  kworker/u16:15-18488 (18488) [001] d..2 24574.476286: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
84820          <idle>-0     (-----) [001] d..1 24574.476302: cpu_idle: state=0 cpu_id=1
84821  HwBinder:598_3-633   (  598) [002] ...1 24574.477068: tracing_mark_write: B|598|HWDeviceDRM::Validate::
84822          <idle>-0     (-----) [000] ...1 24574.477136: cpu_idle: state=4294967295 cpu_id=0
84823          <idle>-0     (-----) [000] d..1 24574.477140: cpu_idle: state=0 cpu_id=0
84824  HwBinder:598_3-633   (  598) [002] d.H2 24574.477689: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
84825  HwBinder:598_3-633   (  598) [002] d.H2 24574.477710: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
84826          <idle>-0     (-----) [004] dnh2 24574.477716: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
84827          <idle>-0     (-----) [004] .n.1 24574.477721: cpu_idle: state=4294967295 cpu_id=4
84828          <idle>-0     (-----) [004] d..2 24574.477726: 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
84829  HwBinder:598_3-633   (  598) [002] d.H3 24574.477727: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
84830          <idle>-0     (-----) [003] .n.1 24574.477731: cpu_idle: state=4294967295 cpu_id=3
84831  HwBinder:598_3-633   (  598) [002] d.s2 24574.477737: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
84832         sugov:4-560   (  560) [004] d..2 24574.477741: 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
84833          <idle>-0     (-----) [003] d..2 24574.477742: 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
84834          <idle>-0     (-----) [004] d..1 24574.477747: cpu_idle: state=0 cpu_id=4
84835         sugov:0-559   (  559) [003] .... 24574.477777: clk_set_rate: pwrcl_clk 1228800000
84836  HwBinder:598_3-633   (  598) [002] d.s3 24574.477782: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
84837         sugov:0-559   (  559) [003] .... 24574.477795: clk_set_rate: cpu3_pwrcl_clk 1056000000
84838         sugov:0-559   (  559) [003] .... 24574.477808: clk_set_rate: cpu2_pwrcl_clk 1056000000
84839         sugov:0-559   (  559) [003] .... 24574.477817: clk_set_rate: cpu1_pwrcl_clk 1056000000
84840         sugov:0-559   (  559) [003] .... 24574.477826: clk_set_rate: cpu0_pwrcl_clk 1228800000
84841         sugov:0-559   (  559) [003] .... 24574.477837: cpu_frequency: state=1228800 cpu_id=0
84842         sugov:0-559   (  559) [003] .... 24574.477863: cpu_frequency: state=1228800 cpu_id=1
84843         sugov:0-559   (  559) [003] .... 24574.477867: cpu_frequency: state=1228800 cpu_id=2
84844         sugov:0-559   (  559) [003] .... 24574.477874: cpu_frequency: state=1228800 cpu_id=3
84845         sugov:0-559   (  559) [003] d..2 24574.477894: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
84846  HwBinder:598_3-633   (  598) [002] ...1 24574.478123: tracing_mark_write: E|598
84847  kworker/u16:15-18488 (18488) [003] d..2 24574.478173: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
84848          <idle>-0     (-----) [003] d..1 24574.478188: cpu_idle: state=0 cpu_id=3
84849  HwBinder:598_3-633   (  598) [002] ...1 24574.478326: tracing_mark_write: B|598|HWDeviceDRM::Commit::
84850  HwBinder:598_3-633   (  598) [002] ...1 24574.478341: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
84851          <idle>-0     (-----) [003] d.s3 24574.478678: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
84852          <idle>-0     (-----) [003] d.s4 24574.478688: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
84853          <idle>-0     (-----) [003] dns4 24574.478694: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
84854          <idle>-0     (-----) [003] .n.1 24574.478701: cpu_idle: state=4294967295 cpu_id=3
84855          <idle>-0     (-----) [003] d..2 24574.478712: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
84856  HwBinder:598_3-633   (  598) [002] d..2 24574.478776: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
84857  HwBinder:598_3-633   (  598) [002] d..3 24574.478812: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
84858          <idle>-0     (-----) [001] .n.1 24574.478818: cpu_idle: state=4294967295 cpu_id=1
84859          <idle>-0     (-----) [001] d..2 24574.478830: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
84860  kworker/u16:15-18488 (18488) [003] .... 24574.478851: clk_set_rate: l3_cluster0_vote_clk 480000000
84861  kworker/u16:15-18488 (18488) [003] .... 24574.478857: clk_set_rate: l3_clk 480000000
84862  kworker/u16:15-18488 (18488) [003] d..2 24574.478903: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
84863          <idle>-0     (-----) [003] d..1 24574.478916: cpu_idle: state=0 cpu_id=3
84864  HwBinder:598_3-633   (  598) [002] ...1 24574.478940: tracing_mark_write: E|598
84865  HwBinder:598_3-633   (  598) [002] ...1 24574.478945: tracing_mark_write: E|598
84866  HwBinder:598_3-633   (  598) [002] ...1 24574.479001: tracing_mark_write: E|598
84867  HwBinder:598_3-633   (  598) [002] ...1 24574.479057: tracing_mark_write: E|598
84868  HwBinder:598_3-633   (  598) [002] .... 24574.479073: binder_transaction: transaction=1670850 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
84869  HwBinder:598_3-633   (  598) [002] d..2 24574.479095: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
84870  HwBinder:598_3-633   (  598) [002] d..3 24574.479112: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
84871          <idle>-0     (-----) [000] .n.1 24574.479116: cpu_idle: state=4294967295 cpu_id=0
84872  HwBinder:598_3-633   (  598) [002] .... 24574.479117: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
84873          <idle>-0     (-----) [000] d..2 24574.479126: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
84874  surfaceflinger-23896 (23896) [000] .... 24574.479135: binder_transaction_received: transaction=1670850
84875  HwBinder:598_3-633   (  598) [002] d..2 24574.479200: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84876          <idle>-0     (-----) [002] d..1 24574.479216: cpu_idle: state=0 cpu_id=2
84877  surfaceflinger-23896 (23896) [000] d..2 24574.479548: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84878          <idle>-0     (-----) [000] d..1 24574.479563: cpu_idle: state=0 cpu_id=0
84879 crtc_commit:111-253   (  253) [001] d..2 24574.479657: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
84880          <idle>-0     (-----) [001] d..1 24574.479666: cpu_idle: state=0 cpu_id=1
84881          <idle>-0     (-----) [002] ...1 24574.480757: cpu_idle: state=4294967295 cpu_id=2
84882          <idle>-0     (-----) [002] d..1 24574.480761: cpu_idle: state=0 cpu_id=2
84883          <idle>-0     (-----) [001] d.s2 24574.480911: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
84884          <idle>-0     (-----) [001] dns3 24574.480928: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
84885          <idle>-0     (-----) [001] .n.1 24574.480947: cpu_idle: state=4294967295 cpu_id=1
84886          <idle>-0     (-----) [001] d..2 24574.480955: 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
84887     rcu_preempt-7     (    7) [001] d..2 24574.480967: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
84888     rcu_preempt-7     (    7) [001] d..3 24574.481000: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
84889     rcu_preempt-7     (    7) [001] d..2 24574.481011: 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
84890         rcuop/0-10    (   10) [001] d..2 24574.481025: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
84891         rcuop/0-10    (   10) [001] d..3 24574.481035: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
84892         rcuop/0-10    (   10) [001] d..2 24574.481044: 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
84893     rcu_preempt-7     (    7) [001] d..2 24574.481066: 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
84894          <idle>-0     (-----) [001] d..1 24574.481077: cpu_idle: state=0 cpu_id=1
84895          <idle>-0     (-----) [000] d.h5 24574.482546: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
84896          <idle>-0     (-----) [000] d.h6 24574.482566: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
84897          <idle>-0     (-----) [002] .n.1 24574.482572: cpu_idle: state=4294967295 cpu_id=2
84898          <idle>-0     (-----) [000] d.h5 24574.482573: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
84899          <idle>-0     (-----) [002] d..2 24574.482582: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
84900          <idle>-0     (-----) [000] d.h6 24574.482584: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
84901          <idle>-0     (-----) [001] .n.1 24574.482590: cpu_idle: state=4294967295 cpu_id=1
84902          <idle>-0     (-----) [001] d..2 24574.482599: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
84903          <idle>-0     (-----) [000] ...1 24574.482599: cpu_idle: state=4294967295 cpu_id=0
84904          <idle>-0     (-----) [000] d..1 24574.482605: cpu_idle: state=0 cpu_id=0
84905  crtc_event:111-254   (  254) [002] d..2 24574.482621: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84906          <idle>-0     (-----) [002] d..1 24574.482629: cpu_idle: state=0 cpu_id=2
84907 crtc_commit:111-253   (  253) [001] d..2 24574.482782: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
84908          <idle>-0     (-----) [001] d..1 24574.482789: cpu_idle: state=0 cpu_id=1
84909          <idle>-0     (-----) [001] d.s3 24574.484241: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
84910          <idle>-0     (-----) [001] d.s4 24574.484256: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
84911          <idle>-0     (-----) [002] .n.1 24574.484261: cpu_idle: state=4294967295 cpu_id=2
84912          <idle>-0     (-----) [001] ...1 24574.484266: cpu_idle: state=4294967295 cpu_id=1
84913          <idle>-0     (-----) [002] d..2 24574.484269: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
84914          <idle>-0     (-----) [001] d..1 24574.484270: cpu_idle: state=0 cpu_id=1
84915  crtc_event:111-254   (  254) [002] d..2 24574.484297: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84916          <idle>-0     (-----) [002] d..1 24574.484304: cpu_idle: state=0 cpu_id=2
84917          <idle>-0     (-----) [000] d.h5 24574.484860: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
84918          <idle>-0     (-----) [000] d.h6 24574.484874: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
84919          <idle>-0     (-----) [001] .n.1 24574.484879: cpu_idle: state=4294967295 cpu_id=1
84920          <idle>-0     (-----) [000] ...1 24574.484886: cpu_idle: state=4294967295 cpu_id=0
84921          <idle>-0     (-----) [001] d..2 24574.484886: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
84922          <idle>-0     (-----) [000] d..1 24574.484891: cpu_idle: state=0 cpu_id=0
84923 crtc_commit:111-253   (  253) [001] d..2 24574.484945: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
84924          <idle>-0     (-----) [001] d..1 24574.484952: cpu_idle: state=0 cpu_id=1
84925          <idle>-0     (-----) [000] d.h5 24574.485174: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
84926          <idle>-0     (-----) [000] d.h6 24574.485187: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
84927          <idle>-0     (-----) [002] .n.1 24574.485192: cpu_idle: state=4294967295 cpu_id=2
84928          <idle>-0     (-----) [002] d..2 24574.485199: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
84929          <idle>-0     (-----) [000] ...1 24574.485207: cpu_idle: state=4294967295 cpu_id=0
84930          <idle>-0     (-----) [000] d..1 24574.485211: cpu_idle: state=0 cpu_id=0
84931  crtc_event:111-254   (  254) [002] d..2 24574.485220: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84932          <idle>-0     (-----) [002] d..1 24574.485227: cpu_idle: state=0 cpu_id=2
84933          <idle>-0     (-----) [002] d.h2 24574.486825: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
84934          <idle>-0     (-----) [002] dnh3 24574.486837: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
84935          <idle>-0     (-----) [002] .n.1 24574.486844: cpu_idle: state=4294967295 cpu_id=2
84936          <idle>-0     (-----) [002] d..2 24574.486852: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
84937        DispSync-23904 (23896) [002] d..1 24574.486872: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
84938        DispSync-23904 (23896) [002] d..2 24574.486893: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
84939          <idle>-0     (-----) [001] .n.1 24574.486898: cpu_idle: state=4294967295 cpu_id=1
84940          <idle>-0     (-----) [001] d..2 24574.486905: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
84941        DispSync-23904 (23896) [002] d..2 24574.486920: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84942          <idle>-0     (-----) [002] d..1 24574.486929: cpu_idle: state=0 cpu_id=2
84943  appEventThread-23905 (23896) [001] d..3 24574.486955: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
84944  appEventThread-23905 (23896) [001] d..4 24574.486976: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
84945          <idle>-0     (-----) [000] .n.1 24574.486980: cpu_idle: state=4294967295 cpu_id=0
84946          <idle>-0     (-----) [000] d..2 24574.486994: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
84947  appEventThread-23905 (23896) [001] d..2 24574.487007: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
84948          <idle>-0     (-----) [001] d..1 24574.487015: cpu_idle: state=0 cpu_id=1
84949 s.nexuslauncher-24827 (24827) [000] .... 24574.487283: binder_transaction: transaction=1670851 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
84950 s.nexuslauncher-24827 (24827) [000] d..4 24574.487292: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
84951 s.nexuslauncher-24827 (24827) [000] d..5 24574.487317: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
84952          <idle>-0     (-----) [001] .n.1 24574.487322: cpu_idle: state=4294967295 cpu_id=1
84953          <idle>-0     (-----) [001] d..2 24574.487331: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
84954  Binder:23896_4-24423 (23896) [001] .... 24574.487337: binder_transaction_received: transaction=1670851
84955 s.nexuslauncher-24827 (24827) [000] d..3 24574.487352: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
84956  Binder:23896_4-24423 (23896) [001] d..1 24574.487361: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
84957 s.nexuslauncher-24827 (24827) [000] d..4 24574.487384: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
84958  Binder:23896_4-24423 (23896) [001] d..2 24574.487390: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
84959          <idle>-0     (-----) [002] .n.1 24574.487390: cpu_idle: state=4294967295 cpu_id=2
84960          <idle>-0     (-----) [002] d..2 24574.487398: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
84961  Binder:23896_4-24423 (23896) [001] d..2 24574.487429: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
84962          <idle>-0     (-----) [001] d..1 24574.487437: cpu_idle: state=0 cpu_id=1
84963  appEventThread-23905 (23896) [002] d..2 24574.487437: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
84964    RenderThread-25194 (24827) [002] d..2 24574.487486: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84965          <idle>-0     (-----) [002] d..1 24574.487496: cpu_idle: state=0 cpu_id=2
84966          <idle>-0     (-----) [001] d.s2 24574.487575: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
84967          <idle>-0     (-----) [001] dns3 24574.487590: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
84968          <idle>-0     (-----) [001] dns3 24574.487594: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
84969          <idle>-0     (-----) [001] dns4 24574.487620: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
84970          <idle>-0     (-----) [001] .n.1 24574.487630: cpu_idle: state=4294967295 cpu_id=1
84971          <idle>-0     (-----) [001] d..2 24574.487638: 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
84972     rcu_preempt-7     (    7) [001] d..2 24574.487653: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
84973  kworker/u16:15-18488 (18488) [001] .... 24574.487706: clk_set_rate: l3_cluster0_vote_clk 300000000
84974  kworker/u16:15-18488 (18488) [001] .... 24574.487711: clk_set_rate: l3_clk 300000000
84975 s.nexuslauncher-24827 (24827) [000] d..3 24574.487767: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
84976 s.nexuslauncher-24827 (24827) [000] d..4 24574.487793: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
84977          <idle>-0     (-----) [002] .n.1 24574.487800: cpu_idle: state=4294967295 cpu_id=2
84978          <idle>-0     (-----) [002] d..2 24574.487814: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
84979 s.nexuslauncher-24827 (24827) [000] d..2 24574.487853: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84980          <idle>-0     (-----) [000] d..1 24574.487872: cpu_idle: state=0 cpu_id=0
84981    RenderThread-25194 (24827) [002] d..1 24574.488002: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
84982    RenderThread-25194 (24827) [002] d..2 24574.488023: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
84983          <idle>-0     (-----) [000] .n.1 24574.488029: cpu_idle: state=4294967295 cpu_id=0
84984  kworker/u16:15-18488 (18488) [001] d..2 24574.488041: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
84985          <idle>-0     (-----) [000] d..2 24574.488041: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
84986          <idle>-0     (-----) [001] d..1 24574.488059: cpu_idle: state=0 cpu_id=1
84987          <idle>-0     (-----) [003] d.s3 24574.488079: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
84988          <idle>-0     (-----) [003] d.s4 24574.488091: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
84989    RenderThread-25194 (24827) [002] .... 24574.488099: binder_transaction: transaction=1670852 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
84990          <idle>-0     (-----) [003] d.s4 24574.488101: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
84991          <idle>-0     (-----) [001] .n.1 24574.488107: cpu_idle: state=4294967295 cpu_id=1
84992    RenderThread-25194 (24827) [002] ...2 24574.488108: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
84993          <idle>-0     (-----) [003] ...1 24574.488110: cpu_idle: state=4294967295 cpu_id=3
84994    RenderThread-25194 (24827) [002] d..4 24574.488113: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
84995          <idle>-0     (-----) [003] d..1 24574.488115: cpu_idle: state=0 cpu_id=3
84996          <idle>-0     (-----) [001] d..2 24574.488119: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
84997    RenderThread-25194 (24827) [002] dn.5 24574.488143: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
84998 s.nexuslauncher-24827 (24827) [000] d..2 24574.488146: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84999  kworker/u16:15-18488 (18488) [001] d..2 24574.488158: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
85000    RenderThread-25194 (24827) [002] d..2 24574.488159: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
85001          <idle>-0     (-----) [000] d..1 24574.488161: cpu_idle: state=0 cpu_id=0
85002          <idle>-0     (-----) [001] d..1 24574.488168: cpu_idle: state=0 cpu_id=1
85003  Binder:23896_4-24423 (23896) [002] .... 24574.488169: binder_transaction_received: transaction=1670852
85004  Binder:23896_4-24423 (23896) [002] .... 24574.488249: binder_transaction: transaction=1670853 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
85005  Binder:23896_4-24423 (23896) [002] .... 24574.488263: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
85006  Binder:23896_4-24423 (23896) [002] d..2 24574.488314: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
85007    RenderThread-25194 (24827) [002] .... 24574.488325: binder_transaction_received: transaction=1670853
85008    RenderThread-25194 (24827) [002] d..2 24574.490038: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
85009          <idle>-0     (-----) [002] d..1 24574.490057: cpu_idle: state=0 cpu_id=2
85010          <idle>-0     (-----) [002] d.h2 24574.490116: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
85011          <idle>-0     (-----) [002] d.h3 24574.490139: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
85012          <idle>-0     (-----) [002] d.h3 24574.490147: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
85013          <idle>-0     (-----) [000] .n.1 24574.490154: cpu_idle: state=4294967295 cpu_id=0
85014          <idle>-0     (-----) [002] ...1 24574.490159: cpu_idle: state=4294967295 cpu_id=2
85015          <idle>-0     (-----) [002] d..1 24574.490164: cpu_idle: state=0 cpu_id=2
85016          <idle>-0     (-----) [000] d..2 24574.490166: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
85017    RenderThread-25194 (24827) [000] .... 24574.490463: binder_transaction: transaction=1670854 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
85018    RenderThread-25194 (24827) [000] ...2 24574.490478: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
85019    RenderThread-25194 (24827) [000] d..4 24574.490482: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
85020    RenderThread-25194 (24827) [000] dn.5 24574.490510: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
85021    RenderThread-25194 (24827) [000] d..2 24574.490521: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
85022  Binder:23896_4-24423 (23896) [000] .... 24574.490531: binder_transaction_received: transaction=1670854
85023  Binder:23896_4-24423 (23896) [000] .... 24574.490717: binder_transaction: transaction=1670855 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
85024  Binder:23896_4-24423 (23896) [000] .... 24574.490727: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
85025  Binder:23896_4-24423 (23896) [000] d..2 24574.490781: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
85026    RenderThread-25194 (24827) [000] .... 24574.490791: binder_transaction_received: transaction=1670855
85027          <idle>-0     (-----) [002] d.h2 24574.490820: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
85028          <idle>-0     (-----) [002] dnh3 24574.490834: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
85029          <idle>-0     (-----) [002] .n.1 24574.490841: cpu_idle: state=4294967295 cpu_id=2
85030          <idle>-0     (-----) [002] d..2 24574.490850: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
85031        DispSync-23904 (23896) [002] d..1 24574.490878: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
85032    RenderThread-25194 (24827) [000] d..2 24574.490886: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85033        DispSync-23904 (23896) [002] d..2 24574.490898: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
85034          <idle>-0     (-----) [001] .n.1 24574.490904: cpu_idle: state=4294967295 cpu_id=1
85035          <idle>-0     (-----) [001] d..2 24574.490915: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
85036          <idle>-0     (-----) [000] d.s4 24574.490935: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
85037        DispSync-23904 (23896) [002] d..1 24574.490945: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
85038          <idle>-0     (-----) [000] dns5 24574.490958: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
85039   sfEventThread-23906 (23896) [001] d..2 24574.490959: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
85040          <idle>-0     (-----) [001] d..1 24574.490966: cpu_idle: state=0 cpu_id=1
85041          <idle>-0     (-----) [000] dns4 24574.490973: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
85042        DispSync-23904 (23896) [002] d..2 24574.490975: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
85043          <idle>-0     (-----) [001] .n.1 24574.490980: cpu_idle: state=4294967295 cpu_id=1
85044          <idle>-0     (-----) [001] d..2 24574.490987: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
85045        DispSync-23904 (23896) [002] d..2 24574.491012: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85046          <idle>-0     (-----) [000] dns5 24574.491012: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
85047          <idle>-0     (-----) [002] d..1 24574.491027: cpu_idle: state=0 cpu_id=2
85048          <idle>-0     (-----) [000] d..2 24574.491028: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
85049   sfEventThread-23906 (23896) [001] d..3 24574.491036: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
85050   sfEventThread-23906 (23896) [001] d..4 24574.491066: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
85051          <idle>-0     (-----) [003] .n.1 24574.491071: cpu_idle: state=4294967295 cpu_id=3
85052     kworker/0:1-13012 (13012) [000] d..2 24574.491072: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
85053     rcu_preempt-7     (    7) [000] d..2 24574.491080: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
85054          <idle>-0     (-----) [003] d..2 24574.491083: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
85055     rcu_preempt-7     (    7) [000] d..3 24574.491099: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
85056   sfEventThread-23906 (23896) [001] d..2 24574.491109: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
85057     rcu_preempt-7     (    7) [000] d..2 24574.491130: 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
85058         rcuop/0-10    (   10) [001] d..2 24574.491140: 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
85059          <idle>-0     (-----) [000] d..1 24574.491148: cpu_idle: state=0 cpu_id=0
85060          <idle>-0     (-----) [001] d..1 24574.491155: cpu_idle: state=0 cpu_id=1
85061  surfaceflinger-23896 (23896) [003] d..2 24574.491488: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
85062  surfaceflinger-23896 (23896) [003] d..3 24574.491540: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
85063  surfaceflinger-23896 (23896) [003] d..1 24574.491576: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
85064  surfaceflinger-23896 (23896) [003] d..2 24574.491593: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
85065          <idle>-0     (-----) [001] .n.1 24574.491600: cpu_idle: state=4294967295 cpu_id=1
85066          <idle>-0     (-----) [001] d..2 24574.491609: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
85067   sfEventThread-23906 (23896) [001] d..2 24574.491643: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
85068          <idle>-0     (-----) [001] d..1 24574.491653: cpu_idle: state=0 cpu_id=1
85069  surfaceflinger-23896 (23896) [003] ...1 24574.491826: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
85070  surfaceflinger-23896 (23896) [003] ...1 24574.491835: tracing_mark_write: E|23896
85071  surfaceflinger-23896 (23896) [003] .... 24574.491909: binder_transaction: transaction=1670856 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
85072  surfaceflinger-23896 (23896) [003] ...2 24574.491943: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
85073  surfaceflinger-23896 (23896) [003] d..4 24574.491951: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
85074  surfaceflinger-23896 (23896) [003] d..5 24574.491972: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
85075          <idle>-0     (-----) [002] .n.1 24574.491978: cpu_idle: state=4294967295 cpu_id=2
85076          <idle>-0     (-----) [002] d..2 24574.491988: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
85077  surfaceflinger-23896 (23896) [003] d..2 24574.491996: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
85078  HwBinder:598_3-633   (  598) [002] .... 24574.492002: binder_transaction_received: transaction=1670856
85079         rcuop/2-29    (   29) [003] d..2 24574.492005: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
85080         rcuop/2-29    (   29) [003] d..3 24574.492041: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
85081         rcuop/2-29    (   29) [003] d..2 24574.492053: 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
85082  HwBinder:598_3-633   (  598) [002] ...1 24574.492062: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
85083     rcu_preempt-7     (    7) [003] d..2 24574.492080: 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
85084          <idle>-0     (-----) [003] d..1 24574.492097: cpu_idle: state=0 cpu_id=3
85085  HwBinder:598_3-633   (  598) [002] ...1 24574.492211: tracing_mark_write: B|598|HWCSession::PresentDisplay::
85086          <idle>-0     (-----) [001] ...1 24574.492818: cpu_idle: state=4294967295 cpu_id=1
85087          <idle>-0     (-----) [001] d..1 24574.492822: cpu_idle: state=0 cpu_id=1
85088          <idle>-0     (-----) [000] d.h3 24574.492928: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
85089          <idle>-0     (-----) [000] d.h4 24574.492951: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
85090          <idle>-0     (-----) [001] .n.1 24574.492955: cpu_idle: state=4294967295 cpu_id=1
85091          <idle>-0     (-----) [001] d..2 24574.492965: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
85092          <idle>-0     (-----) [000] ...1 24574.492969: cpu_idle: state=4294967295 cpu_id=0
85093          <idle>-0     (-----) [000] d..1 24574.492976: cpu_idle: state=0 cpu_id=0
85094  HwBinder:598_3-633   (  598) [002] ...1 24574.492977: tracing_mark_write: B|598|HWDeviceDRM::Validate::
85095 kgsl_worker_thr-246   (  246) [001] d..2 24574.493041: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
85096 kgsl_worker_thr-246   (  246) [001] d..3 24574.493062: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
85097 kgsl_worker_thr-246   (  246) [001] d..2 24574.493087: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
85098  HwBinder:598_3-633   (  598) [002] ...1 24574.493537: tracing_mark_write: E|598
85099  kworker/u16:15-18488 (18488) [001] d..2 24574.493638: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
85100          <idle>-0     (-----) [001] d..1 24574.493653: cpu_idle: state=0 cpu_id=1
85101  HwBinder:598_3-633   (  598) [002] ...1 24574.493691: tracing_mark_write: B|598|HWDeviceDRM::Commit::
85102  HwBinder:598_3-633   (  598) [002] ...1 24574.493704: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
85103  HwBinder:598_3-633   (  598) [002] d..2 24574.494124: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
85104  HwBinder:598_3-633   (  598) [002] d..3 24574.494154: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
85105          <idle>-0     (-----) [001] .n.1 24574.494160: cpu_idle: state=4294967295 cpu_id=1
85106          <idle>-0     (-----) [001] d..2 24574.494171: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
85107 crtc_commit:111-253   (  253) [001] d.s2 24574.494252: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
85108 crtc_commit:111-253   (  253) [001] d.s3 24574.494272: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
85109  HwBinder:598_3-633   (  598) [002] ...1 24574.494326: tracing_mark_write: E|598
85110  HwBinder:598_3-633   (  598) [002] ...1 24574.494332: tracing_mark_write: E|598
85111  HwBinder:598_3-633   (  598) [002] ...1 24574.494392: tracing_mark_write: E|598
85112  HwBinder:598_3-633   (  598) [002] ...1 24574.494465: tracing_mark_write: E|598
85113  HwBinder:598_3-633   (  598) [002] .... 24574.494486: binder_transaction: transaction=1670857 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
85114  HwBinder:598_3-633   (  598) [002] d..2 24574.494512: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
85115  HwBinder:598_3-633   (  598) [002] d..3 24574.494532: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
85116  HwBinder:598_3-633   (  598) [002] .... 24574.494537: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
85117          <idle>-0     (-----) [003] .n.1 24574.494539: cpu_idle: state=4294967295 cpu_id=3
85118          <idle>-0     (-----) [003] d..2 24574.494552: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
85119  surfaceflinger-23896 (23896) [003] .... 24574.494561: binder_transaction_received: transaction=1670857
85120  HwBinder:598_3-633   (  598) [002] d..2 24574.494651: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85121          <idle>-0     (-----) [002] d..1 24574.494673: cpu_idle: state=0 cpu_id=2
85122  surfaceflinger-23896 (23896) [003] d..2 24574.495091: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
85123          <idle>-0     (-----) [003] d..1 24574.495105: cpu_idle: state=0 cpu_id=3
85124 crtc_commit:111-253   (  253) [001] d..2 24574.495126: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
85125  kworker/u16:15-18488 (18488) [001] d..2 24574.495398: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
85126          <idle>-0     (-----) [001] d..1 24574.495416: cpu_idle: state=0 cpu_id=1
85127          <idle>-0     (-----) [003] d.s3 24574.495432: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
85128          <idle>-0     (-----) [003] d.s4 24574.495467: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
85129          <idle>-0     (-----) [003] dns4 24574.495473: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
85130          <idle>-0     (-----) [003] .n.1 24574.495482: cpu_idle: state=4294967295 cpu_id=3
85131          <idle>-0     (-----) [003] d..2 24574.495491: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
85132  kworker/u16:15-18488 (18488) [003] d..2 24574.495530: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
85133          <idle>-0     (-----) [003] d..1 24574.495538: cpu_idle: state=0 cpu_id=3
85134          <idle>-0     (-----) [002] ...1 24574.496170: cpu_idle: state=4294967295 cpu_id=2
85135          <idle>-0     (-----) [002] d..1 24574.496175: cpu_idle: state=0 cpu_id=2
85136          <idle>-0     (-----) [001] ...1 24574.496991: cpu_idle: state=4294967295 cpu_id=1
85137          <idle>-0     (-----) [001] d..1 24574.496994: cpu_idle: state=0 cpu_id=1
85138          <idle>-0     (-----) [003] d.H3 24574.497690: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
85139          <idle>-0     (-----) [003] d.H3 24574.497708: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
85140          <idle>-0     (-----) [004] dnh2 24574.497713: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
85141          <idle>-0     (-----) [004] .n.1 24574.497717: cpu_idle: state=4294967295 cpu_id=4
85142          <idle>-0     (-----) [003] dnH4 24574.497721: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
85143          <idle>-0     (-----) [004] d..2 24574.497723: 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
85144          <idle>-0     (-----) [003] dns2 24574.497729: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
85145         sugov:4-560   (  560) [004] d..2 24574.497737: 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
85146          <idle>-0     (-----) [004] d..1 24574.497743: cpu_idle: state=0 cpu_id=4
85147          <idle>-0     (-----) [003] dns3 24574.497747: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
85148          <idle>-0     (-----) [003] dns3 24574.497753: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
85149          <idle>-0     (-----) [003] dns4 24574.497765: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
85150          <idle>-0     (-----) [003] .n.1 24574.497786: cpu_idle: state=4294967295 cpu_id=3
85151          <idle>-0     (-----) [003] d..2 24574.497793: 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
85152         sugov:0-559   (  559) [003] .... 24574.497835: clk_set_rate: pwrcl_clk 825600000
85153         sugov:0-559   (  559) [003] .... 24574.497856: clk_set_rate: cpu3_pwrcl_clk 1228800000
85154         sugov:0-559   (  559) [003] .... 24574.497869: clk_set_rate: cpu2_pwrcl_clk 1228800000
85155         sugov:0-559   (  559) [003] .... 24574.497879: clk_set_rate: cpu1_pwrcl_clk 1228800000
85156         sugov:0-559   (  559) [003] .... 24574.497889: clk_set_rate: cpu0_pwrcl_clk 825600000
85157         sugov:0-559   (  559) [003] .... 24574.498012: cpu_frequency: state=825600 cpu_id=0
85158         sugov:0-559   (  559) [003] .... 24574.498044: cpu_frequency: state=825600 cpu_id=1
85159         sugov:0-559   (  559) [003] .... 24574.498049: cpu_frequency: state=825600 cpu_id=2
85160         sugov:0-559   (  559) [003] .... 24574.498054: cpu_frequency: state=825600 cpu_id=3
85161         sugov:0-559   (  559) [003] d..2 24574.498079: 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
85162     rcu_preempt-7     (    7) [003] d..2 24574.498097: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
85163     rcu_preempt-7     (    7) [003] d..3 24574.498119: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
85164     rcu_preempt-7     (    7) [003] d..2 24574.498134: 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
85165         rcuop/2-29    (   29) [003] d..2 24574.498141: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
85166         rcuop/2-29    (   29) [003] d..3 24574.498172: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
85167         rcuop/2-29    (   29) [003] d..2 24574.498178: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
85168         rcuop/2-29    (   29) [003] d..3 24574.498193: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
85169         rcuop/2-29    (   29) [003] d..2 24574.498204: 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
85170         rcuop/3-37    (   37) [003] d..2 24574.498231: 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
85171     rcu_preempt-7     (    7) [003] d..2 24574.498246: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
85172  kworker/u16:15-18488 (18488) [003] d..2 24574.498483: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
85173          <idle>-0     (-----) [003] d..1 24574.498503: cpu_idle: state=0 cpu_id=3
85174          <idle>-0     (-----) [003] d.s3 24574.498989: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
85175          <idle>-0     (-----) [003] d.s4 24574.499007: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
85176          <idle>-0     (-----) [003] dns4 24574.499014: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
85177          <idle>-0     (-----) [003] .n.1 24574.499023: cpu_idle: state=4294967295 cpu_id=3
85178          <idle>-0     (-----) [000] d.h5 24574.499032: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
85179          <idle>-0     (-----) [003] d..2 24574.499038: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
85180          <idle>-0     (-----) [000] d.h6 24574.499055: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
85181          <idle>-0     (-----) [002] .n.1 24574.499060: cpu_idle: state=4294967295 cpu_id=2
85182          <idle>-0     (-----) [000] d.h5 24574.499062: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
85183          <idle>-0     (-----) [002] d..2 24574.499075: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
85184          <idle>-0     (-----) [000] d.h6 24574.499076: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
85185          <idle>-0     (-----) [001] .n.1 24574.499082: cpu_idle: state=4294967295 cpu_id=1
85186          <idle>-0     (-----) [000] ...1 24574.499095: cpu_idle: state=4294967295 cpu_id=0
85187          <idle>-0     (-----) [001] d..2 24574.499095: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
85188          <idle>-0     (-----) [000] d..1 24574.499102: cpu_idle: state=0 cpu_id=0
85189  crtc_event:111-254   (  254) [002] d..2 24574.499125: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85190          <idle>-0     (-----) [002] d..1 24574.499137: cpu_idle: state=0 cpu_id=2
85191  kworker/u16:15-18488 (18488) [003] .... 24574.499161: clk_set_rate: l3_cluster0_vote_clk 480000000
85192  kworker/u16:15-18488 (18488) [003] .... 24574.499168: clk_set_rate: l3_clk 480000000
85193  kworker/u16:15-18488 (18488) [003] d..2 24574.499223: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
85194          <idle>-0     (-----) [003] d..1 24574.499238: cpu_idle: state=0 cpu_id=3
85195 crtc_commit:111-253   (  253) [001] d..2 24574.499324: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
85196          <idle>-0     (-----) [001] d..1 24574.499334: cpu_idle: state=0 cpu_id=1
85197          <idle>-0     (-----) [001] d.s3 24574.500916: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
85198          <idle>-0     (-----) [001] d.s4 24574.500936: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
85199          <idle>-0     (-----) [002] .n.1 24574.500942: cpu_idle: state=4294967295 cpu_id=2
85200          <idle>-0     (-----) [002] d..2 24574.500956: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
85201          <idle>-0     (-----) [001] ...1 24574.500959: cpu_idle: state=4294967295 cpu_id=1
85202          <idle>-0     (-----) [001] d..1 24574.500966: cpu_idle: state=0 cpu_id=1
85203  crtc_event:111-254   (  254) [002] d..2 24574.500991: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85204          <idle>-0     (-----) [002] d..1 24574.501001: cpu_idle: state=0 cpu_id=2
85205          <idle>-0     (-----) [000] d.h5 24574.501342: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
85206          <idle>-0     (-----) [000] d.h6 24574.501359: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
85207          <idle>-0     (-----) [001] .n.1 24574.501365: cpu_idle: state=4294967295 cpu_id=1
85208          <idle>-0     (-----) [000] ...1 24574.501375: cpu_idle: state=4294967295 cpu_id=0
85209          <idle>-0     (-----) [001] d..2 24574.501375: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
85210          <idle>-0     (-----) [000] d..1 24574.501381: cpu_idle: state=0 cpu_id=0
85211 crtc_commit:111-253   (  253) [001] d..2 24574.501451: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
85212          <idle>-0     (-----) [001] d..1 24574.501464: cpu_idle: state=0 cpu_id=1
85213          <idle>-0     (-----) [000] d.h5 24574.501655: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
85214          <idle>-0     (-----) [000] d.h6 24574.501671: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
85215          <idle>-0     (-----) [002] .n.1 24574.501676: cpu_idle: state=4294967295 cpu_id=2
85216          <idle>-0     (-----) [002] d..2 24574.501685: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
85217          <idle>-0     (-----) [000] ...1 24574.501694: cpu_idle: state=4294967295 cpu_id=0
85218          <idle>-0     (-----) [000] d..1 24574.501699: cpu_idle: state=0 cpu_id=0
85219  crtc_event:111-254   (  254) [002] d..2 24574.501712: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85220          <idle>-0     (-----) [002] d..1 24574.501722: cpu_idle: state=0 cpu_id=2
85221          <idle>-0     (-----) [002] d.h2 24574.503382: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
85222          <idle>-0     (-----) [002] dnh3 24574.503398: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
85223          <idle>-0     (-----) [002] .n.1 24574.503407: cpu_idle: state=4294967295 cpu_id=2
85224          <idle>-0     (-----) [002] d..2 24574.503417: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
85225        DispSync-23904 (23896) [002] d..1 24574.503441: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
85226        DispSync-23904 (23896) [002] d..2 24574.503467: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
85227          <idle>-0     (-----) [000] .n.1 24574.503472: cpu_idle: state=4294967295 cpu_id=0
85228          <idle>-0     (-----) [000] d..2 24574.503487: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
85229        DispSync-23904 (23896) [002] d..2 24574.503502: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85230          <idle>-0     (-----) [002] d..1 24574.503515: cpu_idle: state=0 cpu_id=2
85231  appEventThread-23905 (23896) [000] d..3 24574.503555: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
85232  appEventThread-23905 (23896) [000] d..4 24574.503590: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
85233          <idle>-0     (-----) [001] .n.1 24574.503595: cpu_idle: state=4294967295 cpu_id=1
85234          <idle>-0     (-----) [001] d..2 24574.503609: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
85235  appEventThread-23905 (23896) [000] d..2 24574.503636: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85236          <idle>-0     (-----) [000] d..1 24574.503653: cpu_idle: state=0 cpu_id=0
85237 s.nexuslauncher-24827 (24827) [001] .... 24574.503997: binder_transaction: transaction=1670858 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
85238 s.nexuslauncher-24827 (24827) [001] d..4 24574.504012: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
85239 s.nexuslauncher-24827 (24827) [001] d..5 24574.504045: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
85240          <idle>-0     (-----) [000] .n.1 24574.504050: cpu_idle: state=4294967295 cpu_id=0
85241          <idle>-0     (-----) [000] d..2 24574.504065: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
85242  Binder:23896_4-24423 (23896) [000] .... 24574.504073: binder_transaction_received: transaction=1670858
85243 s.nexuslauncher-24827 (24827) [001] d..3 24574.504089: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
85244  Binder:23896_4-24423 (23896) [000] d..1 24574.504107: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
85245 s.nexuslauncher-24827 (24827) [001] d..4 24574.504121: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
85246          <idle>-0     (-----) [002] .n.1 24574.504127: cpu_idle: state=4294967295 cpu_id=2
85247  Binder:23896_4-24423 (23896) [000] d..2 24574.504137: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
85248          <idle>-0     (-----) [002] d..2 24574.504141: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
85249          <idle>-0     (-----) [003] .n.1 24574.504143: cpu_idle: state=4294967295 cpu_id=3
85250          <idle>-0     (-----) [003] d..2 24574.504156: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
85251 s.nexuslauncher-24827 (24827) [001] d.h1 24574.504168: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=001
85252  Binder:23896_4-24423 (23896) [000] d..2 24574.504183: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85253          <idle>-0     (-----) [000] dn.1 24574.504198: cpu_idle: state=0 cpu_id=0
85254 s.nexuslauncher-24827 (24827) [001] d.h2 24574.504202: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=000
85255    RenderThread-25194 (24827) [002] d..2 24574.504206: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85256          <idle>-0     (-----) [000] .n.1 24574.504207: cpu_idle: state=4294967295 cpu_id=0
85257  appEventThread-23905 (23896) [003] d..2 24574.504211: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
85258          <idle>-0     (-----) [000] d..2 24574.504222: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
85259          <idle>-0     (-----) [002] d..1 24574.504236: cpu_idle: state=0 cpu_id=2
85260          <idle>-0     (-----) [003] d.s3 24574.504242: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
85261          <idle>-0     (-----) [003] dns4 24574.504261: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
85262          <idle>-0     (-----) [003] d..2 24574.504277: 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
85263     rcu_preempt-7     (    7) [003] d..2 24574.504311: 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
85264          <idle>-0     (-----) [003] d..1 24574.504325: cpu_idle: state=0 cpu_id=3
85265 s.nexuslauncher-24827 (24827) [001] d..3 24574.504580: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
85266 s.nexuslauncher-24827 (24827) [001] d..4 24574.504606: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
85267          <idle>-0     (-----) [002] .n.1 24574.504612: cpu_idle: state=4294967295 cpu_id=2
85268          <idle>-0     (-----) [002] d..2 24574.504625: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
85269           <...>-13147 (-----) [000] d..2 24574.504641: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
85270 s.nexuslauncher-24827 (24827) [001] d..2 24574.504645: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
85271          <idle>-0     (-----) [001] d..1 24574.504667: cpu_idle: state=0 cpu_id=1
85272           <...>-13147 (-----) [000] d..3 24574.504677: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
85273    RenderThread-25194 (24827) [002] d..1 24574.504801: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
85274           <...>-13147 (-----) [000] d..2 24574.504806: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
85275    RenderThread-25194 (24827) [002] d..2 24574.504826: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
85276          <idle>-0     (-----) [001] .n.1 24574.504833: cpu_idle: state=4294967295 cpu_id=1
85277          <idle>-0     (-----) [001] d..2 24574.504846: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
85278    RenderThread-25194 (24827) [002] .... 24574.504899: binder_transaction: transaction=1670859 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
85279    RenderThread-25194 (24827) [002] ...2 24574.504910: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
85280    RenderThread-25194 (24827) [002] d..4 24574.504914: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
85281    RenderThread-25194 (24827) [002] dn.5 24574.504938: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
85282    RenderThread-25194 (24827) [002] d..2 24574.504949: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
85283  Binder:23896_4-24423 (23896) [002] .... 24574.504958: binder_transaction_received: transaction=1670859
85284 s.nexuslauncher-24827 (24827) [001] d..2 24574.504969: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
85285     logd.writer-563   (  555) [000] d..2 24574.504972: 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
85286          <idle>-0     (-----) [001] d..1 24574.504985: cpu_idle: state=0 cpu_id=1
85287          <idle>-0     (-----) [000] d..1 24574.504993: cpu_idle: state=0 cpu_id=0
85288  Binder:23896_4-24423 (23896) [002] .... 24574.505034: binder_transaction: transaction=1670860 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
85289  Binder:23896_4-24423 (23896) [002] .... 24574.505050: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
85290  Binder:23896_4-24423 (23896) [002] d..2 24574.505113: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
85291    RenderThread-25194 (24827) [002] .... 24574.505124: binder_transaction_received: transaction=1670860
85292    RenderThread-25194 (24827) [002] d..2 24574.506650: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
85293          <idle>-0     (-----) [002] d..1 24574.506668: cpu_idle: state=0 cpu_id=2
85294          <idle>-0     (-----) [002] d.h2 24574.506731: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
85295          <idle>-0     (-----) [002] d.h3 24574.506753: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
85296          <idle>-0     (-----) [002] d.h3 24574.506763: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
85297          <idle>-0     (-----) [000] .n.1 24574.506770: cpu_idle: state=4294967295 cpu_id=0
85298          <idle>-0     (-----) [002] ...1 24574.506776: cpu_idle: state=4294967295 cpu_id=2
85299          <idle>-0     (-----) [002] d..1 24574.506781: cpu_idle: state=0 cpu_id=2
85300          <idle>-0     (-----) [000] d..2 24574.506784: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
85301    RenderThread-25194 (24827) [000] .... 24574.507065: binder_transaction: transaction=1670861 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
85302    RenderThread-25194 (24827) [000] ...2 24574.507079: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
85303    RenderThread-25194 (24827) [000] d..4 24574.507084: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
85304    RenderThread-25194 (24827) [000] dn.5 24574.507115: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
85305    RenderThread-25194 (24827) [000] d..2 24574.507127: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
85306  Binder:23896_4-24423 (23896) [000] .... 24574.507136: binder_transaction_received: transaction=1670861
85307          <idle>-0     (-----) [002] d.h2 24574.507301: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
85308          <idle>-0     (-----) [002] dnh3 24574.507316: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
85309  Binder:23896_4-24423 (23896) [000] .... 24574.507318: binder_transaction: transaction=1670862 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
85310          <idle>-0     (-----) [002] .n.1 24574.507323: cpu_idle: state=4294967295 cpu_id=2
85311  Binder:23896_4-24423 (23896) [000] .... 24574.507329: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
85312          <idle>-0     (-----) [002] d..2 24574.507337: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
85313        DispSync-23904 (23896) [002] d..1 24574.507362: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
85314        DispSync-23904 (23896) [002] d..2 24574.507381: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
85315  Binder:23896_4-24423 (23896) [000] d..2 24574.507386: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
85316          <idle>-0     (-----) [001] .n.1 24574.507388: cpu_idle: state=4294967295 cpu_id=1
85317    RenderThread-25194 (24827) [000] .... 24574.507398: binder_transaction_received: transaction=1670862
85318          <idle>-0     (-----) [001] d..2 24574.507400: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
85319        DispSync-23904 (23896) [002] d..2 24574.507419: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85320          <idle>-0     (-----) [002] d..1 24574.507436: cpu_idle: state=0 cpu_id=2
85321   sfEventThread-23906 (23896) [001] d..3 24574.507452: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
85322   sfEventThread-23906 (23896) [001] d..4 24574.507479: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
85323          <idle>-0     (-----) [003] .n.1 24574.507484: cpu_idle: state=4294967295 cpu_id=3
85324    RenderThread-25194 (24827) [000] d..2 24574.507494: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85325          <idle>-0     (-----) [003] d..2 24574.507495: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
85326          <idle>-0     (-----) [000] d..1 24574.507514: cpu_idle: state=0 cpu_id=0
85327   sfEventThread-23906 (23896) [001] d..2 24574.507517: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
85328          <idle>-0     (-----) [001] d..1 24574.507533: cpu_idle: state=0 cpu_id=1
85329  surfaceflinger-23896 (23896) [003] d.s2 24574.507583: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
85330  surfaceflinger-23896 (23896) [003] d.s3 24574.507604: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
85331  surfaceflinger-23896 (23896) [003] d..1 24574.508053: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
85332  surfaceflinger-23896 (23896) [003] d..2 24574.508077: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
85333          <idle>-0     (-----) [001] .n.1 24574.508083: cpu_idle: state=4294967295 cpu_id=1
85334          <idle>-0     (-----) [001] d..2 24574.508097: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
85335   sfEventThread-23906 (23896) [001] d..2 24574.508142: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
85336          <idle>-0     (-----) [001] d..1 24574.508154: cpu_idle: state=0 cpu_id=1
85337  surfaceflinger-23896 (23896) [003] ...1 24574.508333: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
85338  surfaceflinger-23896 (23896) [003] ...1 24574.508342: tracing_mark_write: E|23896
85339  surfaceflinger-23896 (23896) [003] .... 24574.508415: binder_transaction: transaction=1670863 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
85340  surfaceflinger-23896 (23896) [003] ...2 24574.508446: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
85341  surfaceflinger-23896 (23896) [003] d..4 24574.508458: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
85342  surfaceflinger-23896 (23896) [003] d..5 24574.508483: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
85343          <idle>-0     (-----) [002] .n.1 24574.508490: cpu_idle: state=4294967295 cpu_id=2
85344          <idle>-0     (-----) [002] d..2 24574.508503: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
85345  surfaceflinger-23896 (23896) [003] d..2 24574.508506: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
85346  HwBinder:598_3-633   (  598) [002] .... 24574.508515: binder_transaction_received: transaction=1670863
85347  kworker/u16:15-18488 (18488) [003] .... 24574.508578: clk_set_rate: l3_cluster0_vote_clk 300000000
85348  kworker/u16:15-18488 (18488) [003] .... 24574.508585: clk_set_rate: l3_clk 300000000
85349  HwBinder:598_3-633   (  598) [002] ...1 24574.508605: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
85350  HwBinder:598_3-633   (  598) [002] ...1 24574.508780: tracing_mark_write: B|598|HWCSession::PresentDisplay::
85351  kworker/u16:15-18488 (18488) [003] d..2 24574.508934: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
85352          <idle>-0     (-----) [003] d.s4 24574.508987: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
85353          <idle>-0     (-----) [003] d.s5 24574.509006: sched_blocked_reason: pid=18488 iowait=0 caller=wait_for_tx_done+0x34/0x120
85354          <idle>-0     (-----) [003] dns5 24574.509012: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
85355          <idle>-0     (-----) [003] d..2 24574.509027: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
85356  kworker/u16:15-18488 (18488) [003] d..2 24574.509064: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
85357          <idle>-0     (-----) [003] d..1 24574.509079: cpu_idle: state=0 cpu_id=3
85358          <idle>-0     (-----) [000] d.h3 24574.509324: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
85359          <idle>-0     (-----) [000] d.h4 24574.509352: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
85360          <idle>-0     (-----) [001] .n.1 24574.509357: cpu_idle: state=4294967295 cpu_id=1
85361          <idle>-0     (-----) [001] d..2 24574.509369: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
85362          <idle>-0     (-----) [000] ...1 24574.509377: cpu_idle: state=4294967295 cpu_id=0
85363          <idle>-0     (-----) [000] d..1 24574.509385: cpu_idle: state=0 cpu_id=0
85364 kgsl_worker_thr-246   (  246) [001] d..2 24574.509461: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
85365 kgsl_worker_thr-246   (  246) [001] d..3 24574.509485: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
85366          <idle>-0     (-----) [003] .n.1 24574.509492: cpu_idle: state=4294967295 cpu_id=3
85367          <idle>-0     (-----) [003] d..2 24574.509505: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
85368 kgsl_worker_thr-246   (  246) [001] d..2 24574.509529: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
85369          <idle>-0     (-----) [001] d..1 24574.509544: cpu_idle: state=0 cpu_id=1
85370  HwBinder:598_3-633   (  598) [002] ...1 24574.509641: tracing_mark_write: B|598|HWDeviceDRM::Validate::
85371  kworker/u16:15-18488 (18488) [003] d..2 24574.510126: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
85372          <idle>-0     (-----) [003] d..1 24574.510139: cpu_idle: state=0 cpu_id=3
85373  HwBinder:598_3-633   (  598) [002] ...1 24574.510375: tracing_mark_write: E|598
85374  HwBinder:598_3-633   (  598) [002] ...1 24574.510581: tracing_mark_write: B|598|HWDeviceDRM::Commit::
85375  HwBinder:598_3-633   (  598) [002] ...1 24574.510596: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
85376          <idle>-0     (-----) [003] d.s2 24574.510921: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
85377          <idle>-0     (-----) [003] dns3 24574.510943: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
85378          <idle>-0     (-----) [003] .n.1 24574.510953: cpu_idle: state=4294967295 cpu_id=3
85379          <idle>-0     (-----) [003] d..2 24574.510963: 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
85380     rcu_preempt-7     (    7) [003] d..2 24574.510978: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
85381     rcu_preempt-7     (    7) [003] d..3 24574.510999: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
85382     rcu_preempt-7     (    7) [003] d..2 24574.511013: 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
85383         rcuop/2-29    (   29) [003] d..2 24574.511019: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
85384         rcuop/2-29    (   29) [003] d..3 24574.511039: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
85385         rcuop/2-29    (   29) [003] d..2 24574.511047: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
85386         rcuop/2-29    (   29) [003] d..3 24574.511060: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
85387         rcuop/2-29    (   29) [003] d..2 24574.511070: 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
85388         rcuop/3-37    (   37) [003] d..2 24574.511092: 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
85389     rcu_preempt-7     (    7) [003] d..2 24574.511127: 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
85390          <idle>-0     (-----) [003] d..1 24574.511144: cpu_idle: state=0 cpu_id=3
85391  HwBinder:598_3-633   (  598) [002] d..2 24574.511227: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
85392  HwBinder:598_3-633   (  598) [002] d..3 24574.511260: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
85393          <idle>-0     (-----) [001] .n.1 24574.511264: cpu_idle: state=4294967295 cpu_id=1
85394          <idle>-0     (-----) [001] d..2 24574.511278: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
85395  HwBinder:598_3-633   (  598) [002] ...1 24574.511401: tracing_mark_write: E|598
85396  HwBinder:598_3-633   (  598) [002] ...1 24574.511409: tracing_mark_write: E|598
85397  HwBinder:598_3-633   (  598) [002] ...1 24574.511483: tracing_mark_write: E|598
85398  HwBinder:598_3-633   (  598) [002] ...1 24574.511561: tracing_mark_write: E|598
85399  HwBinder:598_3-633   (  598) [002] .... 24574.511583: binder_transaction: transaction=1670864 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
85400  HwBinder:598_3-633   (  598) [002] d..2 24574.511613: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
85401  HwBinder:598_3-633   (  598) [002] d..3 24574.511636: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
85402          <idle>-0     (-----) [003] .n.1 24574.511642: cpu_idle: state=4294967295 cpu_id=3
85403  HwBinder:598_3-633   (  598) [002] .... 24574.511643: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
85404          <idle>-0     (-----) [003] d..2 24574.511655: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
85405  surfaceflinger-23896 (23896) [003] .... 24574.511667: binder_transaction_received: transaction=1670864
85406  HwBinder:598_3-633   (  598) [002] d..2 24574.511766: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85407          <idle>-0     (-----) [002] d..1 24574.511792: cpu_idle: state=0 cpu_id=2
85408 crtc_commit:111-253   (  253) [001] d..2 24574.512231: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
85409          <idle>-0     (-----) [001] d..1 24574.512249: cpu_idle: state=0 cpu_id=1
85410  surfaceflinger-23896 (23896) [003] d..2 24574.512284: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
85411          <idle>-0     (-----) [003] d..1 24574.512307: cpu_idle: state=0 cpu_id=3
85412          <idle>-0     (-----) [002] ...1 24574.513327: cpu_idle: state=4294967295 cpu_id=2
85413          <idle>-0     (-----) [002] d..1 24574.513333: cpu_idle: state=0 cpu_id=2
85414          <idle>-0     (-----) [000] d.h5 24574.515520: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
85415          <idle>-0     (-----) [000] d.h6 24574.515542: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
85416          <idle>-0     (-----) [002] .n.1 24574.515547: cpu_idle: state=4294967295 cpu_id=2
85417          <idle>-0     (-----) [000] d.h5 24574.515548: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
85418          <idle>-0     (-----) [002] d..2 24574.515563: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
85419          <idle>-0     (-----) [000] d.h6 24574.515564: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
85420          <idle>-0     (-----) [001] .n.1 24574.515570: cpu_idle: state=4294967295 cpu_id=1
85421          <idle>-0     (-----) [000] d..2 24574.515580: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
85422          <idle>-0     (-----) [001] d..2 24574.515584: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
85423          <idle>-0     (-----) [000] dn.3 24574.515602: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
85424          <idle>-0     (-----) [000] .n.1 24574.515608: cpu_idle: state=4294967295 cpu_id=0
85425  crtc_event:111-254   (  254) [002] d..2 24574.515623: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85426          <idle>-0     (-----) [000] d..2 24574.515627: 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
85427          <idle>-0     (-----) [002] d..1 24574.515635: cpu_idle: state=0 cpu_id=2
85428     ksoftirqd/0-3     (    3) [000] d.s2 24574.515651: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
85429     ksoftirqd/0-3     (    3) [000] d.s3 24574.515707: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
85430     ksoftirqd/0-3     (    3) [000] d..2 24574.515724: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
85431 crtc_commit:111-253   (  253) [001] d..2 24574.515800: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
85432          <idle>-0     (-----) [001] d..1 24574.515811: cpu_idle: state=0 cpu_id=1
85433  kworker/u16:15-18488 (18488) [000] d..2 24574.515824: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85434          <idle>-0     (-----) [000] d..1 24574.515839: cpu_idle: state=0 cpu_id=0
85435          <idle>-0     (-----) [003] d.s2 24574.517584: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
85436          <idle>-0     (-----) [003] dns3 24574.517673: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
85437          <idle>-0     (-----) [003] .n.1 24574.517696: cpu_idle: state=4294967295 cpu_id=3
85438          <idle>-0     (-----) [003] d..2 24574.517711: 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
85439          <idle>-0     (-----) [001] d.H3 24574.517712: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
85440          <idle>-0     (-----) [001] d.H3 24574.517735: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
85441          <idle>-0     (-----) [004] dnh2 24574.517742: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
85442          <idle>-0     (-----) [004] .n.1 24574.517747: cpu_idle: state=4294967295 cpu_id=4
85443          <idle>-0     (-----) [004] d..2 24574.517755: 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
85444          <idle>-0     (-----) [001] d.H4 24574.517762: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
85445         sugov:4-560   (  560) [004] d..2 24574.517768: 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
85446     rcu_preempt-7     (    7) [003] d..2 24574.517772: 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
85447          <idle>-0     (-----) [004] d..1 24574.517774: cpu_idle: state=0 cpu_id=4
85448          <idle>-0     (-----) [001] d.s3 24574.517785: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
85449          <idle>-0     (-----) [001] d.s4 24574.517801: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
85450          <idle>-0     (-----) [002] .n.1 24574.517808: cpu_idle: state=4294967295 cpu_id=2
85451          <idle>-0     (-----) [001] d.s3 24574.517810: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
85452         sugov:0-559   (  559) [003] .... 24574.517819: clk_set_rate: pwrcl_clk 748800000
85453          <idle>-0     (-----) [002] d..2 24574.517820: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
85454         sugov:0-559   (  559) [003] .... 24574.517835: clk_set_rate: cpu3_pwrcl_clk 825600000
85455          <idle>-0     (-----) [000] d.h5 24574.517836: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
85456         sugov:0-559   (  559) [003] .... 24574.517848: clk_set_rate: cpu2_pwrcl_clk 825600000
85457         sugov:0-559   (  559) [003] .... 24574.517858: clk_set_rate: cpu1_pwrcl_clk 825600000
85458          <idle>-0     (-----) [000] d.h6 24574.517860: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
85459  crtc_event:111-254   (  254) [002] d..2 24574.517862: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85460         sugov:0-559   (  559) [003] .... 24574.517868: clk_set_rate: cpu0_pwrcl_clk 748800000
85461          <idle>-0     (-----) [001] dns4 24574.517870: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
85462          <idle>-0     (-----) [002] d..1 24574.517872: cpu_idle: state=0 cpu_id=2
85463          <idle>-0     (-----) [000] ...1 24574.517894: cpu_idle: state=4294967295 cpu_id=0
85464          <idle>-0     (-----) [000] d..1 24574.517903: cpu_idle: state=0 cpu_id=0
85465          <idle>-0     (-----) [001] .n.1 24574.517911: cpu_idle: state=4294967295 cpu_id=1
85466          <idle>-0     (-----) [001] d..2 24574.517922: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
85467         sugov:0-559   (  559) [003] .... 24574.517984: cpu_frequency: state=748800 cpu_id=0
85468 crtc_commit:111-253   (  253) [001] d..2 24574.518001: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
85469         sugov:0-559   (  559) [003] .... 24574.518013: cpu_frequency: state=748800 cpu_id=1
85470         sugov:0-559   (  559) [003] .... 24574.518019: cpu_frequency: state=748800 cpu_id=2
85471         sugov:0-559   (  559) [003] .... 24574.518023: cpu_frequency: state=748800 cpu_id=3
85472         sugov:0-559   (  559) [003] d..2 24574.518060: 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
85473          <idle>-0     (-----) [003] d..1 24574.518113: cpu_idle: state=0 cpu_id=3
85474          <idle>-0     (-----) [000] d.h5 24574.518134: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
85475          <idle>-0     (-----) [000] d.h6 24574.518153: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
85476          <idle>-0     (-----) [002] .n.1 24574.518159: cpu_idle: state=4294967295 cpu_id=2
85477          <idle>-0     (-----) [002] d..2 24574.518170: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
85478          <idle>-0     (-----) [000] ...1 24574.518179: cpu_idle: state=4294967295 cpu_id=0
85479          <idle>-0     (-----) [000] d..1 24574.518186: cpu_idle: state=0 cpu_id=0
85480  crtc_event:111-254   (  254) [002] d..2 24574.518218: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85481          <idle>-0     (-----) [002] d..1 24574.518241: cpu_idle: state=0 cpu_id=2
85482  kworker/u16:15-18488 (18488) [001] d..2 24574.518271: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
85483          <idle>-0     (-----) [001] d..1 24574.518294: cpu_idle: state=0 cpu_id=1
85484          <idle>-0     (-----) [002] d.h2 24574.519770: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
85485          <idle>-0     (-----) [002] dnh3 24574.519790: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
85486          <idle>-0     (-----) [002] .n.1 24574.519800: cpu_idle: state=4294967295 cpu_id=2
85487          <idle>-0     (-----) [002] d..2 24574.519811: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
85488        DispSync-23904 (23896) [002] d..1 24574.519842: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
85489        DispSync-23904 (23896) [002] d..2 24574.519864: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
85490          <idle>-0     (-----) [003] .n.1 24574.519871: cpu_idle: state=4294967295 cpu_id=3
85491          <idle>-0     (-----) [003] d..2 24574.519884: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
85492        DispSync-23904 (23896) [002] d..2 24574.519904: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85493          <idle>-0     (-----) [002] d..1 24574.519920: cpu_idle: state=0 cpu_id=2
85494  appEventThread-23905 (23896) [003] d..3 24574.519953: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
85495  appEventThread-23905 (23896) [003] d..4 24574.519992: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
85496          <idle>-0     (-----) [000] .n.1 24574.519997: cpu_idle: state=4294967295 cpu_id=0
85497          <idle>-0     (-----) [000] d..2 24574.520017: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
85498  appEventThread-23905 (23896) [003] d..2 24574.520041: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
85499          <idle>-0     (-----) [003] d..1 24574.520056: cpu_idle: state=0 cpu_id=3
85500 s.nexuslauncher-24827 (24827) [000] .... 24574.520495: binder_transaction: transaction=1670865 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
85501 s.nexuslauncher-24827 (24827) [000] d..4 24574.520509: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
85502 s.nexuslauncher-24827 (24827) [000] d..5 24574.520555: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
85503          <idle>-0     (-----) [001] .n.1 24574.520563: cpu_idle: state=4294967295 cpu_id=1
85504          <idle>-0     (-----) [003] d.h2 24574.520569: sched_waking: comm=CCodecWatchdog pid=25015 prio=120 target_cpu=003
85505 s.nexuslauncher-24827 (24827) [000] d.h4 24574.520571: sched_waking: comm=CCodecWatchdog pid=24367 prio=120 target_cpu=000
85506          <idle>-0     (-----) [001] d..2 24574.520579: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
85507          <idle>-0     (-----) [003] dnh3 24574.520603: sched_wakeup: comm=CCodecWatchdog pid=25015 prio=120 target_cpu=003
85508 s.nexuslauncher-24827 (24827) [000] d.h5 24574.520614: sched_wakeup: comm=CCodecWatchdog pid=24367 prio=120 target_cpu=002
85509          <idle>-0     (-----) [003] .n.1 24574.520616: cpu_idle: state=4294967295 cpu_id=3
85510          <idle>-0     (-----) [002] .n.1 24574.520622: cpu_idle: state=4294967295 cpu_id=2
85511  Binder:23896_4-24423 (23896) [001] .... 24574.520630: binder_transaction_received: transaction=1670865
85512          <idle>-0     (-----) [003] d..2 24574.520633: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=25015 next_prio=120
85513          <idle>-0     (-----) [002] d..2 24574.520639: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=24367 next_prio=120
85514 s.nexuslauncher-24827 (24827) [000] d..3 24574.520676: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
85515  Binder:23896_4-24423 (23896) [001] d..1 24574.520681: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
85516  Binder:23896_4-24423 (23896) [001] d..2 24574.520707: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
85517          <idle>-0     (-----) [005] dnh2 24574.520729: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
85518  CCodecWatchdog-25015 (24655) [003] d..2 24574.520731: sched_switch: prev_comm=CCodecWatchdog prev_pid=25015 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
85519          <idle>-0     (-----) [005] .n.1 24574.520734: cpu_idle: state=4294967295 cpu_id=5
85520          <idle>-0     (-----) [005] d..2 24574.520789: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
85521 s.nexuslauncher-24827 (24827) [000] d.h3 24574.520789: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
85522  appEventThread-23905 (23896) [003] d..2 24574.520796: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=CCodecWatchdog next_pid=25015 next_prio=120
85523 s.nexuslauncher-24827 (24827) [000] d.h3 24574.520806: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
85524  Binder:23896_4-24423 (23896) [001] d..2 24574.520809: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
85525          <idle>-0     (-----) [004] dnh2 24574.520812: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
85526          <idle>-0     (-----) [004] .n.1 24574.520817: cpu_idle: state=4294967295 cpu_id=4
85527          <idle>-0     (-----) [004] d..2 24574.520822: 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
85528    RenderThread-25194 (24827) [005] d..2 24574.520824: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
85529          <idle>-0     (-----) [001] d..1 24574.520830: cpu_idle: state=0 cpu_id=1
85530         sugov:4-560   (  560) [004] d..2 24574.520833: 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
85531          <idle>-0     (-----) [005] d..1 24574.520833: cpu_idle: state=0 cpu_id=5
85532 s.nexuslauncher-24827 (24827) [000] d.h4 24574.520837: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
85533          <idle>-0     (-----) [004] d..1 24574.520839: cpu_idle: state=0 cpu_id=4
85534          <idle>-0     (-----) [001] .n.1 24574.520846: cpu_idle: state=4294967295 cpu_id=1
85535  CCodecWatchdog-24367 (24151) [002] d..2 24574.520846: sched_switch: prev_comm=CCodecWatchdog prev_pid=24367 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85536          <idle>-0     (-----) [001] d..2 24574.520859: 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
85537          <idle>-0     (-----) [002] d..1 24574.520863: cpu_idle: state=0 cpu_id=2
85538         sugov:0-559   (  559) [001] d..2 24574.520891: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
85539          <idle>-0     (-----) [001] d.s4 24574.520929: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
85540          <idle>-0     (-----) [001] dns5 24574.520962: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
85541  CCodecWatchdog-25015 (24655) [003] d..2 24574.520971: sched_switch: prev_comm=CCodecWatchdog prev_pid=25015 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
85542          <idle>-0     (-----) [001] d..2 24574.520979: 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
85543          <idle>-0     (-----) [003] d..1 24574.520986: cpu_idle: state=0 cpu_id=3
85544     rcu_preempt-7     (    7) [001] d..2 24574.520988: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
85545     rcu_preempt-7     (    7) [001] d..3 24574.521034: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
85546     rcu_preempt-7     (    7) [001] d..2 24574.521049: 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
85547         rcuop/2-29    (   29) [001] d..2 24574.521055: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
85548         rcuop/2-29    (   29) [001] d..3 24574.521093: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
85549         rcuop/2-29    (   29) [001] d..2 24574.521097: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
85550         rcuop/2-29    (   29) [001] d..3 24574.521111: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
85551         rcuop/2-29    (   29) [001] d..2 24574.521122: 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
85552         rcuop/3-37    (   37) [001] d..2 24574.521138: 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
85553     rcu_preempt-7     (    7) [001] d..2 24574.521167: 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
85554          <idle>-0     (-----) [001] d..1 24574.521185: cpu_idle: state=0 cpu_id=1
85555 s.nexuslauncher-24827 (24827) [000] d..3 24574.521406: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
85556 s.nexuslauncher-24827 (24827) [000] d..4 24574.521458: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
85557          <idle>-0     (-----) [001] .n.1 24574.521464: cpu_idle: state=4294967295 cpu_id=1
85558 s.nexuslauncher-24827 (24827) [000] d.h3 24574.521520: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
85559          <idle>-0     (-----) [001] d..2 24574.521522: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
85560 s.nexuslauncher-24827 (24827) [000] d.h3 24574.521537: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
85561          <idle>-0     (-----) [004] dnh2 24574.521543: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
85562          <idle>-0     (-----) [004] .n.1 24574.521547: cpu_idle: state=4294967295 cpu_id=4
85563          <idle>-0     (-----) [004] d..2 24574.521552: 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
85564 s.nexuslauncher-24827 (24827) [000] d.h4 24574.521562: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
85565         sugov:4-560   (  560) [004] d..2 24574.521564: 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
85566          <idle>-0     (-----) [003] .n.1 24574.521569: cpu_idle: state=4294967295 cpu_id=3
85567          <idle>-0     (-----) [004] d..1 24574.521570: cpu_idle: state=0 cpu_id=4
85568          <idle>-0     (-----) [003] d..2 24574.521579: 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
85569 s.nexuslauncher-24827 (24827) [000] d..2 24574.521611: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85570         sugov:0-559   (  559) [003] d..2 24574.521612: 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
85571          <idle>-0     (-----) [003] d..1 24574.521626: cpu_idle: state=0 cpu_id=3
85572          <idle>-0     (-----) [000] d..1 24574.521636: cpu_idle: state=0 cpu_id=0
85573    RenderThread-25194 (24827) [001] d..1 24574.521769: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
85574    RenderThread-25194 (24827) [001] d..2 24574.521796: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
85575          <idle>-0     (-----) [000] .n.1 24574.521804: cpu_idle: state=4294967295 cpu_id=0
85576          <idle>-0     (-----) [000] d..2 24574.521823: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
85577    RenderThread-25194 (24827) [001] .... 24574.521895: binder_transaction: transaction=1670866 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
85578    RenderThread-25194 (24827) [001] ...2 24574.521907: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
85579    RenderThread-25194 (24827) [001] d..4 24574.521912: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
85580    RenderThread-25194 (24827) [001] dn.5 24574.521931: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
85581    RenderThread-25194 (24827) [001] d..2 24574.521945: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
85582  Binder:23896_4-24423 (23896) [001] .... 24574.521957: binder_transaction_received: transaction=1670866
85583 s.nexuslauncher-24827 (24827) [000] d..2 24574.521992: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
85584    RenderThread-25194 (24827) [000] d..2 24574.522025: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85585          <idle>-0     (-----) [000] d..1 24574.522043: cpu_idle: state=0 cpu_id=0
85586  Binder:23896_4-24423 (23896) [001] .... 24574.522056: binder_transaction: transaction=1670867 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
85587  Binder:23896_4-24423 (23896) [001] d..2 24574.522079: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
85588  Binder:23896_4-24423 (23896) [001] d..3 24574.522110: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
85589  Binder:23896_4-24423 (23896) [001] .... 24574.522115: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
85590  Binder:23896_4-24423 (23896) [001] d..2 24574.522186: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
85591    RenderThread-25194 (24827) [001] .... 24574.522196: binder_transaction_received: transaction=1670867
85592          <idle>-0     (-----) [002] d.h2 24574.523776: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
85593          <idle>-0     (-----) [002] dnh3 24574.523795: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
85594          <idle>-0     (-----) [002] .n.1 24574.523805: cpu_idle: state=4294967295 cpu_id=2
85595          <idle>-0     (-----) [002] d..2 24574.523819: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
85596        DispSync-23904 (23896) [002] d..1 24574.523841: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
85597        DispSync-23904 (23896) [002] d..2 24574.523870: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
85598          <idle>-0     (-----) [003] .n.1 24574.523875: cpu_idle: state=4294967295 cpu_id=3
85599          <idle>-0     (-----) [003] d..2 24574.523888: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
85600        DispSync-23904 (23896) [002] d..2 24574.523909: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85601          <idle>-0     (-----) [002] d..1 24574.523927: cpu_idle: state=0 cpu_id=2
85602   sfEventThread-23906 (23896) [003] d..3 24574.523941: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
85603   sfEventThread-23906 (23896) [003] d..4 24574.523979: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
85604          <idle>-0     (-----) [002] .n.1 24574.523985: cpu_idle: state=4294967295 cpu_id=2
85605          <idle>-0     (-----) [002] d..2 24574.523997: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
85606   sfEventThread-23906 (23896) [003] d..2 24574.524019: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
85607          <idle>-0     (-----) [003] d..1 24574.524037: cpu_idle: state=0 cpu_id=3
85608    RenderThread-25194 (24827) [001] d..2 24574.524100: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
85609          <idle>-0     (-----) [001] d..1 24574.524124: cpu_idle: state=0 cpu_id=1
85610          <idle>-0     (-----) [001] d.h2 24574.524169: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
85611          <idle>-0     (-----) [001] d.h3 24574.524196: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
85612          <idle>-0     (-----) [001] d.h3 24574.524207: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
85613          <idle>-0     (-----) [000] .n.1 24574.524215: cpu_idle: state=4294967295 cpu_id=0
85614          <idle>-0     (-----) [001] d..2 24574.524223: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
85615          <idle>-0     (-----) [000] d..2 24574.524239: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
85616          <idle>-0     (-----) [001] dn.3 24574.524243: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
85617          <idle>-0     (-----) [001] .n.1 24574.524250: cpu_idle: state=4294967295 cpu_id=1
85618          <idle>-0     (-----) [001] d..2 24574.524269: 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
85619     ksoftirqd/1-18    (   18) [001] d..2 24574.524323: 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
85620          <idle>-0     (-----) [001] d..1 24574.524336: cpu_idle: state=0 cpu_id=1
85621    RenderThread-25194 (24827) [000] .... 24574.524592: binder_transaction: transaction=1670868 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
85622    RenderThread-25194 (24827) [000] ...2 24574.524612: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
85623    RenderThread-25194 (24827) [000] d..4 24574.524618: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
85624    RenderThread-25194 (24827) [000] dn.5 24574.524651: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
85625    RenderThread-25194 (24827) [000] d..2 24574.524665: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
85626  Binder:23896_4-24423 (23896) [000] .... 24574.524679: binder_transaction_received: transaction=1670868
85627  surfaceflinger-23896 (23896) [002] d..1 24574.524683: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
85628  surfaceflinger-23896 (23896) [002] d..2 24574.524714: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
85629          <idle>-0     (-----) [003] .n.1 24574.524720: cpu_idle: state=4294967295 cpu_id=3
85630          <idle>-0     (-----) [003] d..2 24574.524736: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
85631   sfEventThread-23906 (23896) [003] d..2 24574.524788: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
85632          <idle>-0     (-----) [003] d..1 24574.524802: cpu_idle: state=0 cpu_id=3
85633  Binder:23896_4-24423 (23896) [000] .... 24574.524868: binder_transaction: transaction=1670869 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
85634  Binder:23896_4-24423 (23896) [000] .... 24574.524880: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
85635  surfaceflinger-23896 (23896) [002] ...1 24574.524890: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
85636  surfaceflinger-23896 (23896) [002] ...1 24574.524903: tracing_mark_write: E|23896
85637  Binder:23896_4-24423 (23896) [000] d..2 24574.524953: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
85638    RenderThread-25194 (24827) [000] .... 24574.524966: binder_transaction_received: transaction=1670869
85639  surfaceflinger-23896 (23896) [002] .... 24574.524993: binder_transaction: transaction=1670870 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
85640  surfaceflinger-23896 (23896) [002] ...2 24574.525031: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
85641  surfaceflinger-23896 (23896) [002] d..4 24574.525044: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
85642  surfaceflinger-23896 (23896) [002] d..5 24574.525087: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
85643          <idle>-0     (-----) [003] .n.1 24574.525092: cpu_idle: state=4294967295 cpu_id=3
85644    RenderThread-25194 (24827) [000] d..2 24574.525093: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85645          <idle>-0     (-----) [003] d..2 24574.525105: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
85646          <idle>-0     (-----) [000] d..1 24574.525118: cpu_idle: state=0 cpu_id=0
85647  HwBinder:598_3-633   (  598) [003] .... 24574.525121: binder_transaction_received: transaction=1670870
85648  surfaceflinger-23896 (23896) [002] d..2 24574.525129: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85649          <idle>-0     (-----) [002] d..1 24574.525154: cpu_idle: state=0 cpu_id=2
85650  HwBinder:598_3-633   (  598) [003] ...1 24574.525193: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
85651  HwBinder:598_3-633   (  598) [003] ...1 24574.525394: tracing_mark_write: B|598|HWCSession::PresentDisplay::
85652  HwBinder:598_3-633   (  598) [003] ...1 24574.526342: tracing_mark_write: B|598|HWDeviceDRM::Validate::
85653          <idle>-0     (-----) [000] d.h3 24574.526979: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
85654          <idle>-0     (-----) [000] d.h4 24574.527007: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
85655          <idle>-0     (-----) [001] .n.1 24574.527014: cpu_idle: state=4294967295 cpu_id=1
85656          <idle>-0     (-----) [001] d..2 24574.527024: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
85657          <idle>-0     (-----) [000] ...1 24574.527034: cpu_idle: state=4294967295 cpu_id=0
85658          <idle>-0     (-----) [000] d..1 24574.527042: cpu_idle: state=0 cpu_id=0
85659 kgsl_worker_thr-246   (  246) [001] d..2 24574.527115: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
85660 kgsl_worker_thr-246   (  246) [001] d..3 24574.527140: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
85661 kgsl_worker_thr-246   (  246) [001] d..2 24574.527173: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
85662  HwBinder:598_3-633   (  598) [003] ...1 24574.527178: tracing_mark_write: E|598
85663  HwBinder:598_3-633   (  598) [003] ...1 24574.527391: tracing_mark_write: B|598|HWDeviceDRM::Commit::
85664  HwBinder:598_3-633   (  598) [003] ...1 24574.527406: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
85665  HwBinder:598_3-633   (  598) [003] d.s2 24574.527604: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
85666  HwBinder:598_3-633   (  598) [003] d.s3 24574.527687: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
85667  kworker/u16:15-18488 (18488) [001] dns1 24574.527811: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
85668  kworker/u16:15-18488 (18488) [001] dns2 24574.527863: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
85669  kworker/u16:15-18488 (18488) [001] d..2 24574.527885: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
85670  kworker/u16:10-23868 (23868) [001] .... 24574.527984: clk_set_rate: l3_cluster0_vote_clk 403200000
85671  kworker/u16:10-23868 (23868) [001] .... 24574.528000: clk_set_rate: l3_clk 403200000
85672  HwBinder:598_3-633   (  598) [003] d..2 24574.528226: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
85673  HwBinder:598_3-633   (  598) [003] d..3 24574.528268: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
85674          <idle>-0     (-----) [002] .n.1 24574.528274: cpu_idle: state=4294967295 cpu_id=2
85675          <idle>-0     (-----) [002] d..2 24574.528291: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
85676  HwBinder:598_3-633   (  598) [003] ...1 24574.528404: tracing_mark_write: E|598
85677  HwBinder:598_3-633   (  598) [003] ...1 24574.528412: tracing_mark_write: E|598
85678  kworker/u16:10-23868 (23868) [001] d..2 24574.528440: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
85679  HwBinder:598_3-633   (  598) [003] ...1 24574.528486: tracing_mark_write: E|598
85680  kworker/u16:15-18488 (18488) [001] d..2 24574.528495: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
85681          <idle>-0     (-----) [001] d..1 24574.528515: cpu_idle: state=0 cpu_id=1
85682  HwBinder:598_3-633   (  598) [003] ...1 24574.528565: tracing_mark_write: E|598
85683  HwBinder:598_3-633   (  598) [003] .... 24574.528587: binder_transaction: transaction=1670871 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
85684  HwBinder:598_3-633   (  598) [003] d..2 24574.528616: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
85685  HwBinder:598_3-633   (  598) [003] d..3 24574.528649: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
85686  HwBinder:598_3-633   (  598) [003] .... 24574.528655: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
85687          <idle>-0     (-----) [001] .n.1 24574.528655: cpu_idle: state=4294967295 cpu_id=1
85688          <idle>-0     (-----) [001] d..2 24574.528668: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
85689  surfaceflinger-23896 (23896) [001] .... 24574.528683: binder_transaction_received: transaction=1670871
85690  HwBinder:598_3-633   (  598) [003] d..2 24574.528758: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
85691     rcu_preempt-7     (    7) [003] d..2 24574.528803: 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
85692          <idle>-0     (-----) [003] d..1 24574.528822: cpu_idle: state=0 cpu_id=3
85693          <idle>-0     (-----) [003] d.s3 24574.528963: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
85694  surfaceflinger-23896 (23896) [001] d..2 24574.528964: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
85695          <idle>-0     (-----) [003] d.s4 24574.529003: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
85696          <idle>-0     (-----) [003] dns4 24574.529010: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
85697          <idle>-0     (-----) [003] .n.1 24574.529020: cpu_idle: state=4294967295 cpu_id=3
85698  surfaceflinger-23896 (23896) [001] d..3 24574.529031: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
85699          <idle>-0     (-----) [003] d..2 24574.529036: 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
85700  kworker/u16:10-23868 (23868) [003] d..2 24574.529076: 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
85701          <idle>-0     (-----) [003] d..1 24574.529090: cpu_idle: state=0 cpu_id=3
85702 crtc_commit:111-253   (  253) [002] d..2 24574.529207: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcuop/0 next_pid=10 next_prio=120
85703         rcuop/0-10    (   10) [002] d..2 24574.529245: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85704          <idle>-0     (-----) [002] d..1 24574.529263: cpu_idle: state=0 cpu_id=2
85705  surfaceflinger-23896 (23896) [001] d..2 24574.529393: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
85706          <idle>-0     (-----) [001] d..1 24574.529418: cpu_idle: state=0 cpu_id=1
85707          <idle>-0     (-----) [001] ...1 24574.530548: cpu_idle: state=4294967295 cpu_id=1
85708          <idle>-0     (-----) [001] d..1 24574.530554: cpu_idle: state=0 cpu_id=1
85709          <idle>-0     (-----) [000] d.h5 24574.531990: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
85710          <idle>-0     (-----) [000] d.h6 24574.532011: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
85711          <idle>-0     (-----) [002] .n.1 24574.532019: cpu_idle: state=4294967295 cpu_id=2
85712          <idle>-0     (-----) [000] d.h5 24574.532019: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
85713          <idle>-0     (-----) [002] d..2 24574.532033: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
85714          <idle>-0     (-----) [000] dnh6 24574.532049: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
85715          <idle>-0     (-----) [000] .n.1 24574.532065: cpu_idle: state=4294967295 cpu_id=0
85716          <idle>-0     (-----) [000] d..2 24574.532080: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
85717  crtc_event:111-254   (  254) [002] d..2 24574.532089: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85718          <idle>-0     (-----) [002] d..2 24574.532094: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
85719          <idle>-0     (-----) [002] dn.3 24574.532115: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
85720          <idle>-0     (-----) [002] d..2 24574.532126: 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
85721     ksoftirqd/2-26    (   26) [002] d..2 24574.532162: 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
85722          <idle>-0     (-----) [002] d..1 24574.532174: cpu_idle: state=0 cpu_id=2
85723 crtc_commit:111-253   (  253) [000] d..2 24574.532290: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
85724          <idle>-0     (-----) [000] d..1 24574.532302: cpu_idle: state=0 cpu_id=0
85725          <idle>-0     (-----) [003] d.s2 24574.534248: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
85726          <idle>-0     (-----) [003] dns3 24574.534267: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
85727          <idle>-0     (-----) [003] dns3 24574.534279: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
85728          <idle>-0     (-----) [003] dns4 24574.534296: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
85729          <idle>-0     (-----) [000] d.h5 24574.534313: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
85730          <idle>-0     (-----) [003] .n.1 24574.534316: cpu_idle: state=4294967295 cpu_id=3
85731          <idle>-0     (-----) [000] dnh6 24574.534326: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
85732          <idle>-0     (-----) [003] d..2 24574.534331: 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
85733          <idle>-0     (-----) [000] dns3 24574.534369: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
85734          <idle>-0     (-----) [000] dns4 24574.534385: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
85735          <idle>-0     (-----) [002] .n.1 24574.534391: cpu_idle: state=4294967295 cpu_id=2
85736          <idle>-0     (-----) [000] .n.1 24574.534402: cpu_idle: state=4294967295 cpu_id=0
85737          <idle>-0     (-----) [002] d..2 24574.534403: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
85738          <idle>-0     (-----) [000] d..2 24574.534411: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
85739     kworker/3:1-12662 (12662) [003] d..2 24574.534416: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
85740     rcu_preempt-7     (    7) [003] d..2 24574.534428: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
85741  crtc_event:111-254   (  254) [002] d..2 24574.534439: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85742          <idle>-0     (-----) [002] d..1 24574.534449: cpu_idle: state=0 cpu_id=2
85743     rcu_preempt-7     (    7) [003] d..3 24574.534474: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
85744          <idle>-0     (-----) [002] .n.1 24574.534479: cpu_idle: state=4294967295 cpu_id=2
85745          <idle>-0     (-----) [002] d..2 24574.534492: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
85746 crtc_commit:111-253   (  253) [000] d..2 24574.534494: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85747         rcuop/2-29    (   29) [002] d..2 24574.534500: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
85748     rcu_preempt-7     (    7) [003] d..2 24574.534506: 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
85749          <idle>-0     (-----) [000] d..1 24574.534512: cpu_idle: state=0 cpu_id=0
85750          <idle>-0     (-----) [003] d..1 24574.534522: cpu_idle: state=0 cpu_id=3
85751         rcuop/2-29    (   29) [002] d..3 24574.534549: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
85752          <idle>-0     (-----) [003] .n.1 24574.534555: cpu_idle: state=4294967295 cpu_id=3
85753          <idle>-0     (-----) [003] d..2 24574.534571: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/3 next_pid=37 next_prio=120
85754         rcuop/2-29    (   29) [002] d..2 24574.534573: 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
85755          <idle>-0     (-----) [002] d..1 24574.534584: cpu_idle: state=0 cpu_id=2
85756         rcuop/3-37    (   37) [003] d..2 24574.534602: 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
85757          <idle>-0     (-----) [000] d.h5 24574.534609: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
85758          <idle>-0     (-----) [003] d..1 24574.534615: cpu_idle: state=0 cpu_id=3
85759          <idle>-0     (-----) [000] d.h6 24574.534628: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
85760          <idle>-0     (-----) [002] .n.1 24574.534634: cpu_idle: state=4294967295 cpu_id=2
85761          <idle>-0     (-----) [002] d..2 24574.534644: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
85762          <idle>-0     (-----) [000] ...1 24574.534655: cpu_idle: state=4294967295 cpu_id=0
85763          <idle>-0     (-----) [000] d..1 24574.534662: cpu_idle: state=0 cpu_id=0
85764  crtc_event:111-254   (  254) [002] d..2 24574.534678: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85765          <idle>-0     (-----) [002] d..1 24574.534688: cpu_idle: state=0 cpu_id=2
85766          <idle>-0     (-----) [002] d.h2 24574.536251: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
85767          <idle>-0     (-----) [002] dnh3 24574.536266: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
85768          <idle>-0     (-----) [002] .n.1 24574.536276: cpu_idle: state=4294967295 cpu_id=2
85769          <idle>-0     (-----) [002] d..2 24574.536287: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
85770        DispSync-23904 (23896) [002] d..1 24574.536309: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
85771        DispSync-23904 (23896) [002] d..2 24574.536327: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
85772          <idle>-0     (-----) [003] .n.1 24574.536333: cpu_idle: state=4294967295 cpu_id=3
85773          <idle>-0     (-----) [003] d..2 24574.536344: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
85774        DispSync-23904 (23896) [002] d..2 24574.536362: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85775          <idle>-0     (-----) [002] d..1 24574.536375: cpu_idle: state=0 cpu_id=2
85776  appEventThread-23905 (23896) [003] d..3 24574.536414: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
85777  appEventThread-23905 (23896) [003] d..4 24574.536441: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
85778          <idle>-0     (-----) [000] .n.1 24574.536446: cpu_idle: state=4294967295 cpu_id=0
85779          <idle>-0     (-----) [000] d..2 24574.536464: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
85780  appEventThread-23905 (23896) [003] d..2 24574.536488: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
85781          <idle>-0     (-----) [003] d..1 24574.536504: cpu_idle: state=0 cpu_id=3
85782 s.nexuslauncher-24827 (24827) [000] .... 24574.536854: binder_transaction: transaction=1670872 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
85783 s.nexuslauncher-24827 (24827) [000] d..4 24574.536868: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
85784 s.nexuslauncher-24827 (24827) [000] d..5 24574.536907: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
85785          <idle>-0     (-----) [001] .n.1 24574.536911: cpu_idle: state=4294967295 cpu_id=1
85786          <idle>-0     (-----) [001] d..2 24574.536929: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
85787  Binder:23896_4-24423 (23896) [001] .... 24574.536938: binder_transaction_received: transaction=1670872
85788 s.nexuslauncher-24827 (24827) [000] d..3 24574.536953: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
85789  Binder:23896_4-24423 (23896) [001] d..1 24574.536977: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
85790 s.nexuslauncher-24827 (24827) [000] d..4 24574.536985: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
85791          <idle>-0     (-----) [002] .n.1 24574.536992: cpu_idle: state=4294967295 cpu_id=2
85792  Binder:23896_4-24423 (23896) [001] d..2 24574.537000: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
85793          <idle>-0     (-----) [002] d..2 24574.537006: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
85794          <idle>-0     (-----) [003] .n.1 24574.537007: cpu_idle: state=4294967295 cpu_id=3
85795          <idle>-0     (-----) [003] d..2 24574.537019: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
85796  Binder:23896_4-24423 (23896) [001] d..2 24574.537055: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
85797  appEventThread-23905 (23896) [003] d..2 24574.537067: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
85798          <idle>-0     (-----) [001] d..1 24574.537073: cpu_idle: state=0 cpu_id=1
85799          <idle>-0     (-----) [003] d..1 24574.537079: cpu_idle: state=0 cpu_id=3
85800    RenderThread-25194 (24827) [002] d..2 24574.537080: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85801          <idle>-0     (-----) [002] d..1 24574.537095: cpu_idle: state=0 cpu_id=2
85802 s.nexuslauncher-24827 (24827) [000] d..3 24574.537402: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
85803 s.nexuslauncher-24827 (24827) [000] d..4 24574.537440: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
85804          <idle>-0     (-----) [001] .n.1 24574.537446: cpu_idle: state=4294967295 cpu_id=1
85805          <idle>-0     (-----) [001] d..2 24574.537461: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
85806 s.nexuslauncher-24827 (24827) [000] d..2 24574.537483: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85807          <idle>-0     (-----) [000] d..1 24574.537505: cpu_idle: state=0 cpu_id=0
85808    RenderThread-25194 (24827) [001] d.H2 24574.537703: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
85809    RenderThread-25194 (24827) [001] d.H2 24574.537724: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
85810          <idle>-0     (-----) [004] dnh2 24574.537729: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
85811          <idle>-0     (-----) [004] .n.1 24574.537734: cpu_idle: state=4294967295 cpu_id=4
85812          <idle>-0     (-----) [004] d..2 24574.537739: 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
85813    RenderThread-25194 (24827) [001] d.H3 24574.537743: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
85814          <idle>-0     (-----) [003] .n.1 24574.537749: cpu_idle: state=4294967295 cpu_id=3
85815         sugov:4-560   (  560) [004] d..2 24574.537753: 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
85816    RenderThread-25194 (24827) [001] d.s2 24574.537753: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
85817          <idle>-0     (-----) [004] d..1 24574.537758: cpu_idle: state=0 cpu_id=4
85818          <idle>-0     (-----) [003] d..2 24574.537765: 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
85819    RenderThread-25194 (24827) [001] d.s3 24574.537778: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
85820         sugov:0-559   (  559) [003] .... 24574.537802: clk_set_rate: pwrcl_clk 902400000
85821         sugov:0-559   (  559) [003] .... 24574.537818: clk_set_rate: cpu3_pwrcl_clk 748800000
85822         sugov:0-559   (  559) [003] .... 24574.537830: clk_set_rate: cpu2_pwrcl_clk 748800000
85823         sugov:0-559   (  559) [003] .... 24574.537840: clk_set_rate: cpu1_pwrcl_clk 748800000
85824         sugov:0-559   (  559) [003] .... 24574.537850: clk_set_rate: cpu0_pwrcl_clk 902400000
85825         sugov:0-559   (  559) [003] .... 24574.537862: cpu_frequency: state=902400 cpu_id=0
85826         sugov:0-559   (  559) [003] .... 24574.537887: cpu_frequency: state=902400 cpu_id=1
85827         sugov:0-559   (  559) [003] .... 24574.537892: cpu_frequency: state=902400 cpu_id=2
85828         sugov:0-559   (  559) [003] .... 24574.537896: cpu_frequency: state=902400 cpu_id=3
85829    RenderThread-25194 (24827) [001] d..1 24574.537914: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
85830         sugov:0-559   (  559) [003] d..2 24574.537915: 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
85831    RenderThread-25194 (24827) [001] d..2 24574.537933: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
85832          <idle>-0     (-----) [000] .n.1 24574.537941: cpu_idle: state=4294967295 cpu_id=0
85833          <idle>-0     (-----) [000] d..2 24574.537957: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
85834    RenderThread-25194 (24827) [001] .... 24574.538029: binder_transaction: transaction=1670873 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
85835    RenderThread-25194 (24827) [001] ...2 24574.538039: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
85836    RenderThread-25194 (24827) [001] d..4 24574.538043: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
85837    RenderThread-25194 (24827) [001] dn.5 24574.538061: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
85838    RenderThread-25194 (24827) [001] d..2 24574.538074: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
85839 s.nexuslauncher-24827 (24827) [000] d..2 24574.538081: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85840  Binder:23896_4-24423 (23896) [001] .... 24574.538082: binder_transaction_received: transaction=1670873
85841          <idle>-0     (-----) [000] d..1 24574.538097: cpu_idle: state=0 cpu_id=0
85842  Binder:23896_4-24423 (23896) [001] .... 24574.538157: binder_transaction: transaction=1670874 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
85843  kworker/u16:10-23868 (23868) [003] d..2 24574.538169: 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
85844  Binder:23896_4-24423 (23896) [001] .... 24574.538171: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
85845          <idle>-0     (-----) [003] d.s4 24574.538220: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
85846  Binder:23896_4-24423 (23896) [001] d..2 24574.538229: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
85847          <idle>-0     (-----) [003] d.s5 24574.538237: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
85848    RenderThread-25194 (24827) [001] .... 24574.538240: binder_transaction_received: transaction=1670874
85849          <idle>-0     (-----) [003] dns5 24574.538243: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
85850          <idle>-0     (-----) [003] d..2 24574.538257: 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
85851  kworker/u16:10-23868 (23868) [003] .... 24574.538362: clk_set_rate: l3_cluster0_vote_clk 300000000
85852  kworker/u16:10-23868 (23868) [003] .... 24574.538368: clk_set_rate: l3_clk 300000000
85853  kworker/u16:10-23868 (23868) [003] d..2 24574.538421: 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
85854          <idle>-0     (-----) [003] d..1 24574.538435: cpu_idle: state=0 cpu_id=3
85855          <idle>-0     (-----) [007] d.h2 24574.539364: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=007
85856          <idle>-0     (-----) [002] dnh2 24574.539413: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=002
85857          <idle>-0     (-----) [002] .n.1 24574.539450: cpu_idle: state=4294967295 cpu_id=2
85858          <idle>-0     (-----) [007] d.h3 24574.539454: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
85859          <idle>-0     (-----) [002] d..2 24574.539463: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=bluetooth@1.0-s next_pid=24508 next_prio=98
85860          <idle>-0     (-----) [007] d.h4 24574.539466: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
85861          <idle>-0     (-----) [007] d.h3 24574.539469: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
85862          <idle>-0     (-----) [004] .n.1 24574.539470: cpu_idle: state=4294967295 cpu_id=4
85863          <idle>-0     (-----) [004] d..2 24574.539477: 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
85864          <idle>-0     (-----) [007] ...1 24574.539483: cpu_idle: state=4294967295 cpu_id=7
85865          <idle>-0     (-----) [007] d..1 24574.539488: cpu_idle: state=0 cpu_id=7
85866         sugov:4-560   (  560) [004] d..2 24574.539488: 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
85867          <idle>-0     (-----) [003] dnh2 24574.539493: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
85868          <idle>-0     (-----) [004] d..1 24574.539495: cpu_idle: state=0 cpu_id=4
85869          <idle>-0     (-----) [003] .n.1 24574.539502: cpu_idle: state=4294967295 cpu_id=3
85870          <idle>-0     (-----) [003] d..2 24574.539509: 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
85871         sugov:0-559   (  559) [003] d..2 24574.539535: 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
85872          <idle>-0     (-----) [003] d..1 24574.539543: cpu_idle: state=0 cpu_id=3
85873 bluetooth@1.0-s-24508 (  759) [002] d..2 24574.539628: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85874          <idle>-0     (-----) [002] d..1 24574.539641: cpu_idle: state=0 cpu_id=2
85875    RenderThread-25194 (24827) [001] d..2 24574.539964: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
85876          <idle>-0     (-----) [001] d..1 24574.539985: cpu_idle: state=0 cpu_id=1
85877          <idle>-0     (-----) [001] d.h2 24574.540041: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
85878          <idle>-0     (-----) [001] d.h3 24574.540067: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
85879          <idle>-0     (-----) [001] d.h3 24574.540076: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
85880          <idle>-0     (-----) [000] .n.1 24574.540083: cpu_idle: state=4294967295 cpu_id=0
85881          <idle>-0     (-----) [001] ...1 24574.540089: cpu_idle: state=4294967295 cpu_id=1
85882          <idle>-0     (-----) [001] d..1 24574.540098: cpu_idle: state=0 cpu_id=1
85883          <idle>-0     (-----) [000] d..2 24574.540098: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
85884          <idle>-0     (-----) [002] d.h2 24574.540239: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
85885          <idle>-0     (-----) [002] dnh3 24574.540258: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
85886          <idle>-0     (-----) [002] .n.1 24574.540268: cpu_idle: state=4294967295 cpu_id=2
85887          <idle>-0     (-----) [002] d..2 24574.540278: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
85888        DispSync-23904 (23896) [002] d..1 24574.540303: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
85889        DispSync-23904 (23896) [002] d..2 24574.540322: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
85890          <idle>-0     (-----) [003] .n.1 24574.540328: cpu_idle: state=4294967295 cpu_id=3
85891          <idle>-0     (-----) [003] d..2 24574.540337: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
85892        DispSync-23904 (23896) [002] d..2 24574.540356: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85893          <idle>-0     (-----) [002] d..1 24574.540370: cpu_idle: state=0 cpu_id=2
85894   sfEventThread-23906 (23896) [003] d..3 24574.540389: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
85895   sfEventThread-23906 (23896) [003] d..4 24574.540411: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
85896          <idle>-0     (-----) [001] .n.1 24574.540416: cpu_idle: state=4294967295 cpu_id=1
85897    RenderThread-25194 (24827) [000] .... 24574.540416: binder_transaction: transaction=1670875 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
85898          <idle>-0     (-----) [001] d..2 24574.540430: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
85899    RenderThread-25194 (24827) [000] ...2 24574.540438: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
85900    RenderThread-25194 (24827) [000] d..4 24574.540442: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
85901   sfEventThread-23906 (23896) [003] d..2 24574.540447: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
85902          <idle>-0     (-----) [003] d..1 24574.540458: cpu_idle: state=0 cpu_id=3
85903    RenderThread-25194 (24827) [000] dn.5 24574.540473: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
85904    RenderThread-25194 (24827) [000] d..2 24574.540485: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
85905  Binder:23896_4-24423 (23896) [000] .... 24574.540497: binder_transaction_received: transaction=1670875
85906  Binder:23896_4-24423 (23896) [000] d..1 24574.540607: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
85907  Binder:23896_4-24423 (23896) [000] d..2 24574.540633: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
85908          <idle>-0     (-----) [003] .n.1 24574.540639: cpu_idle: state=4294967295 cpu_id=3
85909          <idle>-0     (-----) [003] d..2 24574.540648: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
85910   sfEventThread-23906 (23896) [003] d..2 24574.540690: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
85911          <idle>-0     (-----) [003] d..1 24574.540698: cpu_idle: state=0 cpu_id=3
85912  Binder:23896_4-24423 (23896) [000] .... 24574.540705: binder_transaction: transaction=1670876 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
85913  Binder:23896_4-24423 (23896) [000] .... 24574.540716: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
85914  Binder:23896_4-24423 (23896) [000] d..2 24574.540784: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
85915    RenderThread-25194 (24827) [000] .... 24574.540796: binder_transaction_received: transaction=1670876
85916          <idle>-0     (-----) [003] d.s2 24574.540913: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
85917    RenderThread-25194 (24827) [000] d..2 24574.540917: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85918          <idle>-0     (-----) [003] d.s3 24574.540963: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
85919          <idle>-0     (-----) [003] ...1 24574.540993: cpu_idle: state=4294967295 cpu_id=3
85920          <idle>-0     (-----) [000] d..2 24574.540999: 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
85921          <idle>-0     (-----) [003] d..1 24574.541002: cpu_idle: state=0 cpu_id=3
85922     rcu_preempt-7     (    7) [000] d..2 24574.541032: 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
85923          <idle>-0     (-----) [000] d..1 24574.541051: cpu_idle: state=0 cpu_id=0
85924  surfaceflinger-23896 (23896) [001] ...1 24574.541235: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
85925  surfaceflinger-23896 (23896) [001] ...1 24574.541247: tracing_mark_write: E|23896
85926  surfaceflinger-23896 (23896) [001] .... 24574.541331: binder_transaction: transaction=1670877 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
85927  surfaceflinger-23896 (23896) [001] ...2 24574.541369: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
85928  surfaceflinger-23896 (23896) [001] d..4 24574.541380: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
85929  surfaceflinger-23896 (23896) [001] d..5 24574.541413: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
85930          <idle>-0     (-----) [003] .n.1 24574.541420: cpu_idle: state=4294967295 cpu_id=3
85931          <idle>-0     (-----) [003] d..2 24574.541433: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
85932  HwBinder:598_3-633   (  598) [003] .... 24574.541449: binder_transaction_received: transaction=1670877
85933  surfaceflinger-23896 (23896) [001] d..2 24574.541452: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
85934          <idle>-0     (-----) [001] d..1 24574.541477: cpu_idle: state=0 cpu_id=1
85935  HwBinder:598_3-633   (  598) [003] ...1 24574.541511: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
85936  HwBinder:598_3-633   (  598) [003] ...1 24574.541689: tracing_mark_write: B|598|HWCSession::PresentDisplay::
85937          <idle>-0     (-----) [000] d.h3 24574.541947: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
85938          <idle>-0     (-----) [000] d.h4 24574.541972: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
85939          <idle>-0     (-----) [001] .n.1 24574.541980: cpu_idle: state=4294967295 cpu_id=1
85940          <idle>-0     (-----) [001] d..2 24574.541993: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
85941          <idle>-0     (-----) [000] ...1 24574.541994: cpu_idle: state=4294967295 cpu_id=0
85942          <idle>-0     (-----) [000] d..1 24574.541999: cpu_idle: state=0 cpu_id=0
85943 kgsl_worker_thr-246   (  246) [001] d..2 24574.542077: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
85944 kgsl_worker_thr-246   (  246) [001] d..3 24574.542123: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
85945 kgsl_worker_thr-246   (  246) [001] d..2 24574.542156: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
85946  HwBinder:598_3-633   (  598) [003] ...1 24574.542513: tracing_mark_write: B|598|HWDeviceDRM::Validate::
85947  kworker/u16:10-23868 (23868) [001] d..2 24574.542768: 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
85948          <idle>-0     (-----) [001] d..1 24574.542788: cpu_idle: state=0 cpu_id=1
85949  HwBinder:598_3-633   (  598) [003] ...1 24574.543171: tracing_mark_write: E|598
85950  HwBinder:598_3-633   (  598) [003] ...1 24574.543356: tracing_mark_write: B|598|HWDeviceDRM::Commit::
85951  HwBinder:598_3-633   (  598) [003] ...1 24574.543369: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
85952  HwBinder:598_3-633   (  598) [003] d..2 24574.543883: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
85953  HwBinder:598_3-633   (  598) [003] d..3 24574.543916: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
85954          <idle>-0     (-----) [000] .n.1 24574.543920: cpu_idle: state=4294967295 cpu_id=0
85955          <idle>-0     (-----) [000] d..2 24574.543934: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
85956  HwBinder:598_3-633   (  598) [003] ...1 24574.544045: tracing_mark_write: E|598
85957  HwBinder:598_3-633   (  598) [003] ...1 24574.544052: tracing_mark_write: E|598
85958          <idle>-0     (-----) [001] ...1 24574.544110: cpu_idle: state=4294967295 cpu_id=1
85959          <idle>-0     (-----) [001] d..1 24574.544115: cpu_idle: state=0 cpu_id=1
85960  HwBinder:598_3-633   (  598) [003] ...1 24574.544122: tracing_mark_write: E|598
85961  HwBinder:598_3-633   (  598) [003] ...1 24574.544195: tracing_mark_write: E|598
85962 crtc_commit:111-253   (  253) [000] d.s2 24574.544251: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
85963  HwBinder:598_3-633   (  598) [003] .... 24574.544258: binder_transaction: transaction=1670878 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
85964  HwBinder:598_3-633   (  598) [003] d..2 24574.544286: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
85965 crtc_commit:111-253   (  253) [000] d.s3 24574.544298: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
85966 crtc_commit:111-253   (  253) [000] d.s2 24574.544305: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
85967  HwBinder:598_3-633   (  598) [003] d..3 24574.544309: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
85968          <idle>-0     (-----) [001] .n.1 24574.544314: cpu_idle: state=4294967295 cpu_id=1
85969  HwBinder:598_3-633   (  598) [003] .... 24574.544315: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
85970 crtc_commit:111-253   (  253) [000] d.s3 24574.544319: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
85971          <idle>-0     (-----) [001] d..2 24574.544328: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
85972  surfaceflinger-23896 (23896) [001] .... 24574.544339: binder_transaction_received: transaction=1670878
85973  HwBinder:598_3-633   (  598) [003] d..2 24574.544450: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
85974     rcu_preempt-7     (    7) [003] d..2 24574.544463: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
85975     rcu_preempt-7     (    7) [003] d..3 24574.544509: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
85976     rcu_preempt-7     (    7) [003] d..2 24574.544533: 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
85977         rcuop/0-10    (   10) [003] d..2 24574.544545: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
85978         rcuop/0-10    (   10) [003] d..3 24574.544590: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
85979         rcuop/0-10    (   10) [003] d..2 24574.544605: 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
85980         rcuop/1-21    (   21) [003] d..2 24574.544649: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
85981          <idle>-0     (-----) [003] d..1 24574.544669: cpu_idle: state=0 cpu_id=3
85982  surfaceflinger-23896 (23896) [001] d..2 24574.544925: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
85983          <idle>-0     (-----) [001] d..1 24574.544948: cpu_idle: state=0 cpu_id=1
85984 crtc_commit:111-253   (  253) [000] d..2 24574.544974: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
85985  kworker/u16:10-23868 (23868) [000] d..2 24574.545259: 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
85986          <idle>-0     (-----) [000] d..1 24574.545279: cpu_idle: state=0 cpu_id=0
85987          <idle>-0     (-----) [003] d.s3 24574.545292: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
85988          <idle>-0     (-----) [003] d.s4 24574.545306: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
85989          <idle>-0     (-----) [003] d.s4 24574.545316: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
85990          <idle>-0     (-----) [000] .n.1 24574.545323: cpu_idle: state=4294967295 cpu_id=0
85991          <idle>-0     (-----) [003] ...1 24574.545328: cpu_idle: state=4294967295 cpu_id=3
85992          <idle>-0     (-----) [003] d..1 24574.545333: cpu_idle: state=0 cpu_id=3
85993          <idle>-0     (-----) [000] d..2 24574.545337: 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
85994  kworker/u16:10-23868 (23868) [000] d..2 24574.545371: 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
85995          <idle>-0     (-----) [000] d..1 24574.545381: cpu_idle: state=0 cpu_id=0
85996          <idle>-0     (-----) [001] ...1 24574.546509: cpu_idle: state=4294967295 cpu_id=1
85997          <idle>-0     (-----) [001] d..1 24574.546514: cpu_idle: state=0 cpu_id=1
85998          <idle>-0     (-----) [000] d.h5 24574.548466: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
85999          <idle>-0     (-----) [000] d.h6 24574.548490: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
86000          <idle>-0     (-----) [002] .n.1 24574.548496: cpu_idle: state=4294967295 cpu_id=2
86001          <idle>-0     (-----) [000] d.h5 24574.548498: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
86002          <idle>-0     (-----) [000] dnh6 24574.548507: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
86003          <idle>-0     (-----) [002] d..2 24574.548511: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
86004          <idle>-0     (-----) [000] .n.1 24574.548523: cpu_idle: state=4294967295 cpu_id=0
86005          <idle>-0     (-----) [000] d..2 24574.548538: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
86006  crtc_event:111-254   (  254) [002] d..2 24574.548563: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86007          <idle>-0     (-----) [002] d..2 24574.548568: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
86008          <idle>-0     (-----) [002] dn.3 24574.548584: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
86009          <idle>-0     (-----) [002] d..2 24574.548595: 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
86010     ksoftirqd/2-26    (   26) [002] d.s2 24574.548611: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
86011     ksoftirqd/2-26    (   26) [002] d.s3 24574.548655: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
86012     ksoftirqd/2-26    (   26) [002] d..2 24574.548674: 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
86013  kworker/u16:10-23868 (23868) [002] .... 24574.548760: clk_set_rate: l3_cluster0_vote_clk 403200000
86014  kworker/u16:10-23868 (23868) [002] .... 24574.548768: clk_set_rate: l3_clk 403200000
86015 crtc_commit:111-253   (  253) [000] d..2 24574.548777: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
86016          <idle>-0     (-----) [000] d..1 24574.548788: cpu_idle: state=0 cpu_id=0
86017  kworker/u16:10-23868 (23868) [002] d..2 24574.549053: 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
86018          <idle>-0     (-----) [002] d..1 24574.549070: cpu_idle: state=0 cpu_id=2
86019          <idle>-0     (-----) [003] d.s3 24574.549548: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
86020          <idle>-0     (-----) [003] d.s4 24574.549582: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
86021          <idle>-0     (-----) [003] dns4 24574.549588: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
86022          <idle>-0     (-----) [003] .n.1 24574.549595: cpu_idle: state=4294967295 cpu_id=3
86023          <idle>-0     (-----) [003] d..2 24574.549612: 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
86024  kworker/u16:10-23868 (23868) [003] d..2 24574.549652: 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
86025          <idle>-0     (-----) [003] d..1 24574.549661: cpu_idle: state=0 cpu_id=3
86026          <idle>-0     (-----) [000] d.h5 24574.550775: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
86027          <idle>-0     (-----) [000] dnh6 24574.550787: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
86028          <idle>-0     (-----) [000] .n.1 24574.550799: cpu_idle: state=4294967295 cpu_id=0
86029          <idle>-0     (-----) [000] d..2 24574.550807: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
86030 crtc_commit:111-253   (  253) [000] d..2 24574.550876: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86031          <idle>-0     (-----) [003] d.s2 24574.550908: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
86032          <idle>-0     (-----) [000] d.s4 24574.550914: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
86033          <idle>-0     (-----) [000] d.s5 24574.550932: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
86034          <idle>-0     (-----) [002] .n.1 24574.550938: cpu_idle: state=4294967295 cpu_id=2
86035          <idle>-0     (-----) [003] d.s3 24574.550945: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
86036          <idle>-0     (-----) [002] d..2 24574.550952: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
86037          <idle>-0     (-----) [000] d..2 24574.550965: 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
86038          <idle>-0     (-----) [003] ...1 24574.550975: cpu_idle: state=4294967295 cpu_id=3
86039          <idle>-0     (-----) [003] d..1 24574.550983: cpu_idle: state=0 cpu_id=3
86040  crtc_event:111-254   (  254) [002] d..2 24574.550987: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86041     rcu_preempt-7     (    7) [000] d..2 24574.550996: 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
86042          <idle>-0     (-----) [002] d..1 24574.550996: cpu_idle: state=0 cpu_id=2
86043          <idle>-0     (-----) [000] d.h5 24574.551088: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
86044          <idle>-0     (-----) [000] d.h6 24574.551104: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
86045          <idle>-0     (-----) [002] .n.1 24574.551110: cpu_idle: state=4294967295 cpu_id=2
86046          <idle>-0     (-----) [002] d..2 24574.551119: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
86047          <idle>-0     (-----) [000] d..1 24574.551132: cpu_idle: state=0 cpu_id=0
86048  crtc_event:111-254   (  254) [002] d..2 24574.551145: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86049          <idle>-0     (-----) [002] d..1 24574.551154: cpu_idle: state=0 cpu_id=2
86050          <idle>-0     (-----) [003] ...1 24574.552592: cpu_idle: state=4294967295 cpu_id=3
86051          <idle>-0     (-----) [003] d..1 24574.552596: cpu_idle: state=0 cpu_id=3
86052          <idle>-0     (-----) [002] d.h2 24574.552711: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
86053          <idle>-0     (-----) [002] dnh3 24574.552725: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
86054          <idle>-0     (-----) [002] .n.1 24574.552733: cpu_idle: state=4294967295 cpu_id=2
86055          <idle>-0     (-----) [002] d..2 24574.552743: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
86056        DispSync-23904 (23896) [002] d..1 24574.552759: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
86057        DispSync-23904 (23896) [002] d..2 24574.552777: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
86058          <idle>-0     (-----) [003] .n.1 24574.552782: cpu_idle: state=4294967295 cpu_id=3
86059          <idle>-0     (-----) [003] d..2 24574.552793: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
86060        DispSync-23904 (23896) [002] d..2 24574.552806: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86061          <idle>-0     (-----) [002] d..1 24574.552818: cpu_idle: state=0 cpu_id=2
86062  appEventThread-23905 (23896) [003] d..3 24574.552855: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
86063  appEventThread-23905 (23896) [003] d..4 24574.552880: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
86064          <idle>-0     (-----) [000] .n.1 24574.552887: cpu_idle: state=4294967295 cpu_id=0
86065          <idle>-0     (-----) [000] d..2 24574.552901: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
86066  appEventThread-23905 (23896) [003] d..2 24574.552921: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
86067          <idle>-0     (-----) [003] d..1 24574.552937: cpu_idle: state=0 cpu_id=3
86068 s.nexuslauncher-24827 (24827) [000] .... 24574.553264: binder_transaction: transaction=1670879 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
86069 s.nexuslauncher-24827 (24827) [000] d..4 24574.553277: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
86070 s.nexuslauncher-24827 (24827) [000] d..5 24574.553312: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
86071          <idle>-0     (-----) [001] .n.1 24574.553316: cpu_idle: state=4294967295 cpu_id=1
86072          <idle>-0     (-----) [001] d..2 24574.553332: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
86073  Binder:23896_4-24423 (23896) [001] .... 24574.553341: binder_transaction_received: transaction=1670879
86074 s.nexuslauncher-24827 (24827) [000] d..3 24574.553355: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
86075  Binder:23896_4-24423 (23896) [001] d..1 24574.553378: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
86076 s.nexuslauncher-24827 (24827) [000] d..4 24574.553381: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
86077          <idle>-0     (-----) [002] .n.1 24574.553388: cpu_idle: state=4294967295 cpu_id=2
86078  Binder:23896_4-24423 (23896) [001] d..2 24574.553399: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
86079          <idle>-0     (-----) [002] d..2 24574.553401: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
86080          <idle>-0     (-----) [003] .n.1 24574.553405: cpu_idle: state=4294967295 cpu_id=3
86081          <idle>-0     (-----) [003] d..2 24574.553415: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
86082  Binder:23896_4-24423 (23896) [001] d..2 24574.553444: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
86083    RenderThread-25194 (24827) [002] d..2 24574.553457: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86084  appEventThread-23905 (23896) [003] d..2 24574.553458: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
86085          <idle>-0     (-----) [001] d..1 24574.553460: cpu_idle: state=0 cpu_id=1
86086          <idle>-0     (-----) [003] d..1 24574.553469: cpu_idle: state=0 cpu_id=3
86087          <idle>-0     (-----) [002] d..1 24574.553470: cpu_idle: state=0 cpu_id=2
86088 s.nexuslauncher-24827 (24827) [000] d..3 24574.553769: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
86089 s.nexuslauncher-24827 (24827) [000] d..4 24574.553804: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
86090          <idle>-0     (-----) [001] .n.1 24574.553810: cpu_idle: state=4294967295 cpu_id=1
86091          <idle>-0     (-----) [001] d..2 24574.553823: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
86092 s.nexuslauncher-24827 (24827) [000] d..2 24574.553843: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86093          <idle>-0     (-----) [000] d..1 24574.553860: cpu_idle: state=0 cpu_id=0
86094    RenderThread-25194 (24827) [001] d..1 24574.554023: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
86095    RenderThread-25194 (24827) [001] d..2 24574.554046: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
86096          <idle>-0     (-----) [000] .n.1 24574.554053: cpu_idle: state=4294967295 cpu_id=0
86097          <idle>-0     (-----) [000] d..2 24574.554066: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
86098    RenderThread-25194 (24827) [001] .... 24574.554117: binder_transaction: transaction=1670880 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
86099    RenderThread-25194 (24827) [001] ...2 24574.554126: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
86100    RenderThread-25194 (24827) [001] d..4 24574.554131: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
86101    RenderThread-25194 (24827) [001] dn.5 24574.554148: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
86102    RenderThread-25194 (24827) [001] d..2 24574.554159: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
86103  Binder:23896_4-24423 (23896) [001] .... 24574.554168: binder_transaction_received: transaction=1670880
86104 s.nexuslauncher-24827 (24827) [000] d..2 24574.554179: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86105          <idle>-0     (-----) [000] d..1 24574.554192: cpu_idle: state=0 cpu_id=0
86106  Binder:23896_4-24423 (23896) [001] .... 24574.554304: binder_transaction: transaction=1670881 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
86107  Binder:23896_4-24423 (23896) [001] .... 24574.554319: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
86108  Binder:23896_4-24423 (23896) [001] d..2 24574.554378: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
86109    RenderThread-25194 (24827) [001] .... 24574.554390: binder_transaction_received: transaction=1670881
86110          <idle>-0     (-----) [000] d.h2 24574.554851: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=000
86111          <idle>-0     (-----) [000] dnh3 24574.554873: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=000
86112          <idle>-0     (-----) [000] .n.1 24574.554883: cpu_idle: state=4294967295 cpu_id=0
86113          <idle>-0     (-----) [000] d..2 24574.554897: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
86114           <...>-13147 (-----) [000] d..2 24574.555254: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
86115           <...>-13147 (-----) [000] d..3 24574.555284: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
86116           <...>-13147 (-----) [000] d..2 24574.555411: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
86117     logd.writer-563   (  555) [000] d..2 24574.555577: 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
86118          <idle>-0     (-----) [000] d..1 24574.555592: cpu_idle: state=0 cpu_id=0
86119    RenderThread-25194 (24827) [001] d..2 24574.555721: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
86120          <idle>-0     (-----) [001] d..1 24574.555740: cpu_idle: state=0 cpu_id=1
86121          <idle>-0     (-----) [001] d.h2 24574.555797: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
86122          <idle>-0     (-----) [001] d.h3 24574.555819: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
86123          <idle>-0     (-----) [001] d.h3 24574.555828: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
86124          <idle>-0     (-----) [000] .n.1 24574.555835: cpu_idle: state=4294967295 cpu_id=0
86125          <idle>-0     (-----) [001] ...1 24574.555839: cpu_idle: state=4294967295 cpu_id=1
86126          <idle>-0     (-----) [000] d..2 24574.555846: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
86127          <idle>-0     (-----) [001] d..1 24574.555847: cpu_idle: state=0 cpu_id=1
86128    RenderThread-25194 (24827) [000] .... 24574.556120: binder_transaction: transaction=1670882 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
86129    RenderThread-25194 (24827) [000] ...2 24574.556135: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
86130    RenderThread-25194 (24827) [000] d..4 24574.556139: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
86131    RenderThread-25194 (24827) [000] dn.5 24574.556170: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
86132    RenderThread-25194 (24827) [000] d..2 24574.556181: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
86133  Binder:23896_4-24423 (23896) [000] .... 24574.556191: binder_transaction_received: transaction=1670882
86134  Binder:23896_4-24423 (23896) [000] .... 24574.556387: binder_transaction: transaction=1670883 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
86135  Binder:23896_4-24423 (23896) [000] .... 24574.556398: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
86136  Binder:23896_4-24423 (23896) [000] d..2 24574.556459: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
86137    RenderThread-25194 (24827) [000] .... 24574.556469: binder_transaction_received: transaction=1670883
86138    RenderThread-25194 (24827) [000] d..2 24574.556579: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86139          <idle>-0     (-----) [000] d..1 24574.556595: cpu_idle: state=0 cpu_id=0
86140          <idle>-0     (-----) [002] d.h2 24574.556706: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
86141          <idle>-0     (-----) [002] dnh3 24574.556722: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
86142          <idle>-0     (-----) [002] .n.1 24574.556731: cpu_idle: state=4294967295 cpu_id=2
86143          <idle>-0     (-----) [002] d..2 24574.556743: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
86144        DispSync-23904 (23896) [002] d..1 24574.556761: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
86145        DispSync-23904 (23896) [002] d..2 24574.556777: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
86146          <idle>-0     (-----) [003] .n.1 24574.556783: cpu_idle: state=4294967295 cpu_id=3
86147          <idle>-0     (-----) [003] d..2 24574.556793: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
86148        DispSync-23904 (23896) [002] d..2 24574.556806: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86149          <idle>-0     (-----) [002] d..1 24574.556816: cpu_idle: state=0 cpu_id=2
86150   sfEventThread-23906 (23896) [003] d..3 24574.556834: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
86151   sfEventThread-23906 (23896) [003] d..4 24574.556854: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
86152          <idle>-0     (-----) [001] .n.1 24574.556858: cpu_idle: state=4294967295 cpu_id=1
86153          <idle>-0     (-----) [001] d..2 24574.556871: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
86154   sfEventThread-23906 (23896) [003] d..2 24574.556885: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
86155          <idle>-0     (-----) [003] d..1 24574.556898: cpu_idle: state=0 cpu_id=3
86156  surfaceflinger-23896 (23896) [001] d..1 24574.557320: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
86157  surfaceflinger-23896 (23896) [001] d..2 24574.557346: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
86158          <idle>-0     (-----) [003] .n.1 24574.557352: cpu_idle: state=4294967295 cpu_id=3
86159          <idle>-0     (-----) [003] d..2 24574.557362: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
86160   sfEventThread-23906 (23896) [003] d..2 24574.557396: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
86161          <idle>-0     (-----) [003] d..1 24574.557405: cpu_idle: state=0 cpu_id=3
86162          <idle>-0     (-----) [000] d.H3 24574.557612: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
86163  surfaceflinger-23896 (23896) [001] d.s2 24574.557640: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
86164          <idle>-0     (-----) [000] dnH4 24574.557662: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
86165          <idle>-0     (-----) [002] d.H3 24574.557670: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
86166          <idle>-0     (-----) [000] dns2 24574.557680: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
86167          <idle>-0     (-----) [002] d.H3 24574.557686: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
86168          <idle>-0     (-----) [004] dnh2 24574.557693: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
86169  surfaceflinger-23896 (23896) [001] d.s3 24574.557696: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
86170          <idle>-0     (-----) [004] .n.1 24574.557697: cpu_idle: state=4294967295 cpu_id=4
86171          <idle>-0     (-----) [004] d..2 24574.557702: 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
86172          <idle>-0     (-----) [002] d.H4 24574.557702: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
86173          <idle>-0     (-----) [003] .n.1 24574.557708: cpu_idle: state=4294967295 cpu_id=3
86174          <idle>-0     (-----) [002] d.s3 24574.557715: sched_waking: comm=msm_watchdog pid=77 prio=0 target_cpu=002
86175         sugov:4-560   (  560) [004] d..2 24574.557715: 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
86176          <idle>-0     (-----) [003] d..2 24574.557719: 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
86177          <idle>-0     (-----) [004] d..1 24574.557721: cpu_idle: state=0 cpu_id=4
86178          <idle>-0     (-----) [000] dns3 24574.557727: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
86179          <idle>-0     (-----) [002] dns4 24574.557730: sched_wakeup: comm=msm_watchdog pid=77 prio=0 target_cpu=002
86180  surfaceflinger-23896 (23896) [001] ...1 24574.557750: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
86181          <idle>-0     (-----) [002] .n.1 24574.557753: cpu_idle: state=4294967295 cpu_id=2
86182         sugov:0-559   (  559) [003] d..2 24574.557753: 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
86183          <idle>-0     (-----) [000] .n.1 24574.557756: cpu_idle: state=4294967295 cpu_id=0
86184  surfaceflinger-23896 (23896) [001] ...1 24574.557759: tracing_mark_write: E|23896
86185          <idle>-0     (-----) [003] d..1 24574.557762: cpu_idle: state=0 cpu_id=3
86186          <idle>-0     (-----) [002] d..2 24574.557763: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=msm_watchdog next_pid=77 next_prio=0
86187          <idle>-0     (-----) [000] d..2 24574.557765: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
86188          <idle>-0     (-----) [003] ...1 24574.557813: cpu_idle: state=4294967295 cpu_id=3
86189          <idle>-0     (-----) [003] d..1 24574.557820: cpu_idle: state=0 cpu_id=3
86190          <idle>-0     (-----) [004] ...1 24574.557820: cpu_idle: state=4294967295 cpu_id=4
86191          <idle>-0     (-----) [004] d..1 24574.557823: cpu_idle: state=0 cpu_id=4
86192  surfaceflinger-23896 (23896) [001] .... 24574.557829: binder_transaction: transaction=1670884 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
86193          <idle>-0     (-----) [005] ...1 24574.557833: cpu_idle: state=4294967295 cpu_id=5
86194          <idle>-0     (-----) [005] d..1 24574.557837: cpu_idle: state=0 cpu_id=5
86195          <idle>-0     (-----) [006] ...1 24574.557850: cpu_idle: state=4294967295 cpu_id=6
86196          <idle>-0     (-----) [006] d..1 24574.557855: cpu_idle: state=0 cpu_id=6
86197  surfaceflinger-23896 (23896) [001] ...2 24574.557858: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
86198          <idle>-0     (-----) [007] ...1 24574.557860: cpu_idle: state=4294967295 cpu_id=7
86199 kgsl_worker_thr-246   (  246) [000] d..2 24574.557861: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
86200          <idle>-0     (-----) [007] d..1 24574.557864: cpu_idle: state=0 cpu_id=7
86201  surfaceflinger-23896 (23896) [001] d..4 24574.557866: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
86202  kworker/u16:10-23868 (23868) [000] d..2 24574.557867: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
86203  surfaceflinger-23896 (23896) [001] d..5 24574.557890: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
86204<...>-77 ( 77) [002] d..2 24574.557892: sched_switch: prev_comm=msm_watchdog prev_pid=77 prev_prio=0 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86205          <idle>-0     (-----) [003] .n.1 24574.557894: cpu_idle: state=4294967295 cpu_id=3
86206          <idle>-0     (-----) [003] d..2 24574.557904: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
86207          <idle>-0     (-----) [002] d..1 24574.557905: cpu_idle: state=0 cpu_id=2
86208  kworker/u16:10-23868 (23868) [000] d..3 24574.557916: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
86209  HwBinder:598_3-633   (  598) [003] .... 24574.557919: binder_transaction_received: transaction=1670884
86210  surfaceflinger-23896 (23896) [001] d..2 24574.557920: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
86211          <idle>-0     (-----) [002] .n.1 24574.557921: cpu_idle: state=4294967295 cpu_id=2
86212     rcu_preempt-7     (    7) [001] d..2 24574.557934: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
86213          <idle>-0     (-----) [002] d..2 24574.557935: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
86214  HwBinder:598_3-633   (  598) [003] ...1 24574.557970: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
86215     rcu_preempt-7     (    7) [001] d..3 24574.557980: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
86216     rcu_preempt-7     (    7) [001] d..2 24574.558013: 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
86217         rcuop/2-29    (   29) [001] d..2 24574.558050: 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
86218          <idle>-0     (-----) [001] d..1 24574.558068: cpu_idle: state=0 cpu_id=1
86219  HwBinder:598_3-633   (  598) [003] ...1 24574.558097: tracing_mark_write: B|598|HWCSession::PresentDisplay::
86220  kworker/u16:15-18488 (18488) [002] d..2 24574.558489: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86221          <idle>-0     (-----) [002] d..1 24574.558504: cpu_idle: state=0 cpu_id=2
86222  kworker/u16:10-23868 (23868) [000] d..2 24574.558619: 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
86223          <idle>-0     (-----) [000] d..1 24574.558637: cpu_idle: state=0 cpu_id=0
86224  HwBinder:598_3-633   (  598) [003] ...1 24574.558851: tracing_mark_write: B|598|HWDeviceDRM::Validate::
86225  HwBinder:598_3-633   (  598) [003] ...1 24574.559510: tracing_mark_write: E|598
86226  HwBinder:598_3-633   (  598) [003] ...1 24574.559693: tracing_mark_write: B|598|HWDeviceDRM::Commit::
86227  HwBinder:598_3-633   (  598) [003] ...1 24574.559706: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
86228          <idle>-0     (-----) [000] ...1 24574.560159: cpu_idle: state=4294967295 cpu_id=0
86229          <idle>-0     (-----) [000] d..1 24574.560165: cpu_idle: state=0 cpu_id=0
86230  HwBinder:598_3-633   (  598) [003] d..2 24574.560211: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
86231  HwBinder:598_3-633   (  598) [003] d..3 24574.560240: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
86232          <idle>-0     (-----) [000] .n.1 24574.560244: cpu_idle: state=4294967295 cpu_id=0
86233          <idle>-0     (-----) [000] d..2 24574.560255: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
86234  HwBinder:598_3-633   (  598) [003] ...1 24574.560355: tracing_mark_write: E|598
86235  HwBinder:598_3-633   (  598) [003] ...1 24574.560362: tracing_mark_write: E|598
86236  HwBinder:598_3-633   (  598) [003] ...1 24574.560422: tracing_mark_write: E|598
86237  HwBinder:598_3-633   (  598) [003] ...1 24574.560482: tracing_mark_write: E|598
86238  HwBinder:598_3-633   (  598) [003] .... 24574.560501: binder_transaction: transaction=1670885 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
86239  HwBinder:598_3-633   (  598) [003] d..2 24574.560528: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
86240  HwBinder:598_3-633   (  598) [003] d..3 24574.560549: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
86241  HwBinder:598_3-633   (  598) [003] .... 24574.560554: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
86242          <idle>-0     (-----) [001] .n.1 24574.560554: cpu_idle: state=4294967295 cpu_id=1
86243          <idle>-0     (-----) [001] d..2 24574.560566: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
86244  surfaceflinger-23896 (23896) [001] .... 24574.560575: binder_transaction_received: transaction=1670885
86245  HwBinder:598_3-633   (  598) [003] d..2 24574.560653: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
86246          <idle>-0     (-----) [003] d..1 24574.560673: cpu_idle: state=0 cpu_id=3
86247  surfaceflinger-23896 (23896) [001] d..2 24574.561124: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
86248          <idle>-0     (-----) [001] d..1 24574.561139: cpu_idle: state=0 cpu_id=1
86249 crtc_commit:111-253   (  253) [000] d..2 24574.561183: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
86250          <idle>-0     (-----) [000] d..1 24574.561200: cpu_idle: state=0 cpu_id=0
86251          <idle>-0     (-----) [003] ...1 24574.561905: cpu_idle: state=4294967295 cpu_id=3
86252          <idle>-0     (-----) [003] d..1 24574.561910: cpu_idle: state=0 cpu_id=3
86253          <idle>-0     (-----) [000] ...1 24574.562721: cpu_idle: state=4294967295 cpu_id=0
86254          <idle>-0     (-----) [000] d..1 24574.562725: cpu_idle: state=0 cpu_id=0
86255          <idle>-0     (-----) [001] d.s2 24574.564249: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
86256          <idle>-0     (-----) [001] dns3 24574.564270: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
86257          <idle>-0     (-----) [001] dns3 24574.564276: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
86258          <idle>-0     (-----) [001] dns4 24574.564311: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
86259          <idle>-0     (-----) [001] .n.1 24574.564326: cpu_idle: state=4294967295 cpu_id=1
86260          <idle>-0     (-----) [001] d..2 24574.564337: 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
86261     rcu_preempt-7     (    7) [001] d..2 24574.564351: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
86262     rcu_preempt-7     (    7) [001] d..3 24574.564390: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
86263     rcu_preempt-7     (    7) [001] d..2 24574.564404: 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
86264         rcuop/0-10    (   10) [001] d..2 24574.564413: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
86265         rcuop/0-10    (   10) [001] d..3 24574.564452: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
86266         rcuop/0-10    (   10) [001] d..2 24574.564457: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
86267         rcuop/0-10    (   10) [001] d..3 24574.564468: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
86268         rcuop/0-10    (   10) [001] d..2 24574.564479: 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
86269         rcuop/1-21    (   21) [001] d..2 24574.564496: 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
86270     rcu_preempt-7     (    7) [001] d..2 24574.564511: 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
86271  kworker/u16:10-23868 (23868) [001] d..2 24574.564605: 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
86272          <idle>-0     (-----) [001] d..1 24574.564621: cpu_idle: state=0 cpu_id=1
86273          <idle>-0     (-----) [000] d.h5 24574.564935: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
86274          <idle>-0     (-----) [000] d.h6 24574.564957: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
86275          <idle>-0     (-----) [002] .n.1 24574.564963: cpu_idle: state=4294967295 cpu_id=2
86276          <idle>-0     (-----) [000] d.h5 24574.564964: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
86277          <idle>-0     (-----) [000] dnh6 24574.564972: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
86278          <idle>-0     (-----) [002] d..2 24574.564975: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
86279          <idle>-0     (-----) [000] .n.1 24574.564988: cpu_idle: state=4294967295 cpu_id=0
86280          <idle>-0     (-----) [000] d..2 24574.565000: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
86281  crtc_event:111-254   (  254) [002] d..2 24574.565014: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86282          <idle>-0     (-----) [002] d..1 24574.565024: cpu_idle: state=0 cpu_id=2
86283 crtc_commit:111-253   (  253) [000] d..2 24574.565198: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
86284          <idle>-0     (-----) [000] d..1 24574.565207: cpu_idle: state=0 cpu_id=0
86285          <idle>-0     (-----) [000] d.h5 24574.567253: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
86286          <idle>-0     (-----) [000] dnh6 24574.567265: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
86287          <idle>-0     (-----) [000] .n.1 24574.567278: cpu_idle: state=4294967295 cpu_id=0
86288          <idle>-0     (-----) [000] d..2 24574.567284: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
86289 crtc_commit:111-253   (  253) [000] d..2 24574.567352: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86290          <idle>-0     (-----) [000] d..1 24574.567361: cpu_idle: state=0 cpu_id=0
86291          <idle>-0     (-----) [000] d.h5 24574.567568: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
86292          <idle>-0     (-----) [000] d.h6 24574.567585: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
86293          <idle>-0     (-----) [002] .n.1 24574.567591: cpu_idle: state=4294967295 cpu_id=2
86294          <idle>-0     (-----) [000] d..2 24574.567605: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
86295          <idle>-0     (-----) [002] d..2 24574.567606: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
86296          <idle>-0     (-----) [000] dn.3 24574.567622: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
86297  crtc_event:111-254   (  254) [002] d..2 24574.567640: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86298          <idle>-0     (-----) [002] d..1 24574.567648: cpu_idle: state=0 cpu_id=2
86299          <idle>-0     (-----) [000] dns3 24574.567657: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
86300          <idle>-0     (-----) [000] dns4 24574.567673: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
86301          <idle>-0     (-----) [002] .n.1 24574.567679: cpu_idle: state=4294967295 cpu_id=2
86302          <idle>-0     (-----) [000] dns3 24574.567679: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
86303          <idle>-0     (-----) [002] d..2 24574.567688: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
86304  crtc_event:111-254   (  254) [002] d..2 24574.567716: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86305          <idle>-0     (-----) [000] dns4 24574.567721: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
86306          <idle>-0     (-----) [002] d..1 24574.567724: cpu_idle: state=0 cpu_id=2
86307          <idle>-0     (-----) [000] .n.1 24574.567735: cpu_idle: state=4294967295 cpu_id=0
86308          <idle>-0     (-----) [000] d..2 24574.567746: 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
86309     ksoftirqd/0-3     (    3) [000] d..2 24574.567762: 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
86310  kworker/u16:10-23868 (23868) [000] .... 24574.567793: clk_set_rate: l3_cluster0_vote_clk 300000000
86311  kworker/u16:10-23868 (23868) [000] .... 24574.567801: clk_set_rate: l3_clk 300000000
86312  kworker/u16:10-23868 (23868) [000] d..2 24574.568128: 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
86313          <idle>-0     (-----) [000] d..1 24574.568147: cpu_idle: state=0 cpu_id=0
86314          <idle>-0     (-----) [003] d.s3 24574.568168: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
86315          <idle>-0     (-----) [003] d.s4 24574.568183: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
86316          <idle>-0     (-----) [003] d.s4 24574.568194: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
86317          <idle>-0     (-----) [000] .n.1 24574.568201: cpu_idle: state=4294967295 cpu_id=0
86318          <idle>-0     (-----) [003] ...1 24574.568206: cpu_idle: state=4294967295 cpu_id=3
86319          <idle>-0     (-----) [003] d..1 24574.568214: cpu_idle: state=0 cpu_id=3
86320          <idle>-0     (-----) [000] d..2 24574.568215: 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
86321  kworker/u16:10-23868 (23868) [000] d..2 24574.568248: 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
86322          <idle>-0     (-----) [000] d..1 24574.568259: cpu_idle: state=0 cpu_id=0
86323          <idle>-0     (-----) [002] d.h2 24574.569176: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
86324          <idle>-0     (-----) [002] dnh3 24574.569193: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
86325          <idle>-0     (-----) [002] .n.1 24574.569202: cpu_idle: state=4294967295 cpu_id=2
86326          <idle>-0     (-----) [002] d..2 24574.569213: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
86327        DispSync-23904 (23896) [002] d..1 24574.569231: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
86328        DispSync-23904 (23896) [002] d..2 24574.569250: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
86329          <idle>-0     (-----) [003] .n.1 24574.569256: cpu_idle: state=4294967295 cpu_id=3
86330          <idle>-0     (-----) [003] d..2 24574.569270: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
86331        DispSync-23904 (23896) [002] d..2 24574.569282: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86332          <idle>-0     (-----) [002] d..1 24574.569295: cpu_idle: state=0 cpu_id=2
86333  appEventThread-23905 (23896) [003] d..3 24574.569333: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
86334  appEventThread-23905 (23896) [003] d..4 24574.569361: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
86335          <idle>-0     (-----) [000] .n.1 24574.569366: cpu_idle: state=4294967295 cpu_id=0
86336          <idle>-0     (-----) [000] d..2 24574.569381: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
86337  appEventThread-23905 (23896) [003] d..2 24574.569410: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
86338          <idle>-0     (-----) [003] d..1 24574.569429: cpu_idle: state=0 cpu_id=3
86339 s.nexuslauncher-24827 (24827) [000] .... 24574.569827: binder_transaction: transaction=1670886 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
86340 s.nexuslauncher-24827 (24827) [000] d..4 24574.569841: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
86341 s.nexuslauncher-24827 (24827) [000] d..5 24574.569885: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
86342          <idle>-0     (-----) [001] .n.1 24574.569891: cpu_idle: state=4294967295 cpu_id=1
86343          <idle>-0     (-----) [001] d..2 24574.569907: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
86344  Binder:23896_4-24423 (23896) [001] .... 24574.569917: binder_transaction_received: transaction=1670886
86345 s.nexuslauncher-24827 (24827) [000] d..3 24574.569936: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
86346  Binder:23896_4-24423 (23896) [001] d..1 24574.569962: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
86347 s.nexuslauncher-24827 (24827) [000] d..4 24574.569967: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
86348          <idle>-0     (-----) [002] .n.1 24574.569973: cpu_idle: state=4294967295 cpu_id=2
86349  Binder:23896_4-24423 (23896) [001] d..2 24574.569985: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
86350          <idle>-0     (-----) [002] d..2 24574.569986: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
86351          <idle>-0     (-----) [003] .n.1 24574.569992: cpu_idle: state=4294967295 cpu_id=3
86352          <idle>-0     (-----) [003] d..2 24574.570003: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
86353  Binder:23896_4-24423 (23896) [001] d..2 24574.570035: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
86354          <idle>-0     (-----) [001] d..1 24574.570048: cpu_idle: state=0 cpu_id=1
86355  appEventThread-23905 (23896) [003] d..2 24574.570048: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
86356    RenderThread-25194 (24827) [002] d..2 24574.570050: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86357          <idle>-0     (-----) [003] d..1 24574.570061: cpu_idle: state=0 cpu_id=3
86358          <idle>-0     (-----) [002] d..1 24574.570063: cpu_idle: state=0 cpu_id=2
86359 s.nexuslauncher-24827 (24827) [000] d..3 24574.570422: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
86360 s.nexuslauncher-24827 (24827) [000] d..4 24574.570460: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
86361          <idle>-0     (-----) [001] .n.1 24574.570466: cpu_idle: state=4294967295 cpu_id=1
86362          <idle>-0     (-----) [001] d..2 24574.570478: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
86363 s.nexuslauncher-24827 (24827) [000] d..2 24574.570503: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86364          <idle>-0     (-----) [000] d..1 24574.570527: cpu_idle: state=0 cpu_id=0
86365    RenderThread-25194 (24827) [001] d..1 24574.570722: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
86366    RenderThread-25194 (24827) [001] d..2 24574.570747: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
86367          <idle>-0     (-----) [000] .n.1 24574.570754: cpu_idle: state=4294967295 cpu_id=0
86368          <idle>-0     (-----) [000] d..2 24574.570769: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
86369    RenderThread-25194 (24827) [001] .... 24574.570829: binder_transaction: transaction=1670887 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
86370    RenderThread-25194 (24827) [001] ...2 24574.570839: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
86371    RenderThread-25194 (24827) [001] d..4 24574.570844: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
86372    RenderThread-25194 (24827) [001] dn.5 24574.570864: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
86373    RenderThread-25194 (24827) [001] d..2 24574.570876: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
86374 s.nexuslauncher-24827 (24827) [000] d..2 24574.570899: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86375  Binder:23896_4-24423 (23896) [001] d.s3 24574.570922: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
86376  Binder:23896_4-24423 (23896) [001] d.s4 24574.570959: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
86377          <idle>-0     (-----) [000] d..2 24574.570973: 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
86378  Binder:23896_4-24423 (23896) [001] .... 24574.570974: binder_transaction_received: transaction=1670887
86379     rcu_preempt-7     (    7) [000] d..2 24574.570988: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
86380     rcu_preempt-7     (    7) [000] d..3 24574.571035: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
86381     rcu_preempt-7     (    7) [000] d..2 24574.571048: 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
86382         rcuop/0-10    (   10) [000] d..2 24574.571054: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
86383  Binder:23896_4-24423 (23896) [001] .... 24574.571064: binder_transaction: transaction=1670888 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
86384  Binder:23896_4-24423 (23896) [001] .... 24574.571082: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
86385         rcuop/0-10    (   10) [000] d..3 24574.571084: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
86386         rcuop/0-10    (   10) [000] d..2 24574.571095: 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
86387         rcuop/1-21    (   21) [000] d..2 24574.571136: 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
86388  Binder:23896_4-24423 (23896) [001] d..2 24574.571146: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
86389          <idle>-0     (-----) [000] d..1 24574.571153: cpu_idle: state=0 cpu_id=0
86390    RenderThread-25194 (24827) [001] .... 24574.571158: binder_transaction_received: transaction=1670888
86391          <idle>-0     (-----) [003] ...1 24574.571504: cpu_idle: state=4294967295 cpu_id=3
86392          <idle>-0     (-----) [003] d..1 24574.571509: cpu_idle: state=0 cpu_id=3
86393          <idle>-0     (-----) [000] ...1 24574.572543: cpu_idle: state=4294967295 cpu_id=0
86394          <idle>-0     (-----) [000] d..1 24574.572548: cpu_idle: state=0 cpu_id=0
86395    RenderThread-25194 (24827) [001] d..2 24574.572769: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
86396          <idle>-0     (-----) [001] d..1 24574.572789: cpu_idle: state=0 cpu_id=1
86397          <idle>-0     (-----) [001] d.h2 24574.572842: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
86398          <idle>-0     (-----) [001] d.h3 24574.572866: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
86399          <idle>-0     (-----) [001] d.h3 24574.572877: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
86400          <idle>-0     (-----) [000] .n.1 24574.572882: cpu_idle: state=4294967295 cpu_id=0
86401          <idle>-0     (-----) [001] ...1 24574.572889: cpu_idle: state=4294967295 cpu_id=1
86402          <idle>-0     (-----) [000] d..2 24574.572896: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
86403          <idle>-0     (-----) [001] d..1 24574.572896: cpu_idle: state=0 cpu_id=1
86404          <idle>-0     (-----) [002] d.h2 24574.573179: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
86405          <idle>-0     (-----) [002] dnh3 24574.573195: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
86406          <idle>-0     (-----) [002] .n.1 24574.573204: cpu_idle: state=4294967295 cpu_id=2
86407    RenderThread-25194 (24827) [000] .... 24574.573208: binder_transaction: transaction=1670889 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
86408          <idle>-0     (-----) [002] d..2 24574.573216: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
86409    RenderThread-25194 (24827) [000] ...2 24574.573226: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
86410    RenderThread-25194 (24827) [000] d..4 24574.573231: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
86411        DispSync-23904 (23896) [002] d..1 24574.573233: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
86412        DispSync-23904 (23896) [002] d..2 24574.573252: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
86413          <idle>-0     (-----) [003] .n.1 24574.573258: cpu_idle: state=4294967295 cpu_id=3
86414    RenderThread-25194 (24827) [000] dn.5 24574.573261: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
86415          <idle>-0     (-----) [003] d..2 24574.573270: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
86416    RenderThread-25194 (24827) [000] d..2 24574.573274: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
86417  Binder:23896_4-24423 (23896) [000] .... 24574.573286: binder_transaction_received: transaction=1670889
86418        DispSync-23904 (23896) [002] d..2 24574.573295: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86419          <idle>-0     (-----) [002] d..1 24574.573311: cpu_idle: state=0 cpu_id=2
86420   sfEventThread-23906 (23896) [003] d..3 24574.573318: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
86421   sfEventThread-23906 (23896) [003] d..4 24574.573340: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
86422          <idle>-0     (-----) [001] .n.1 24574.573345: cpu_idle: state=4294967295 cpu_id=1
86423          <idle>-0     (-----) [001] d..2 24574.573358: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
86424   sfEventThread-23906 (23896) [003] d..2 24574.573380: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
86425          <idle>-0     (-----) [003] d..1 24574.573395: cpu_idle: state=0 cpu_id=3
86426  Binder:23896_4-24423 (23896) [000] d..1 24574.573398: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
86427  Binder:23896_4-24423 (23896) [000] d..2 24574.573424: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
86428          <idle>-0     (-----) [003] .n.1 24574.573429: cpu_idle: state=4294967295 cpu_id=3
86429          <idle>-0     (-----) [003] d..2 24574.573440: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
86430   sfEventThread-23906 (23896) [003] d..2 24574.573479: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
86431          <idle>-0     (-----) [003] d..1 24574.573490: cpu_idle: state=0 cpu_id=3
86432  Binder:23896_4-24423 (23896) [000] .... 24574.573505: binder_transaction: transaction=1670890 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
86433  Binder:23896_4-24423 (23896) [000] .... 24574.573516: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
86434  Binder:23896_4-24423 (23896) [000] d..2 24574.573580: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
86435    RenderThread-25194 (24827) [000] .... 24574.573592: binder_transaction_received: transaction=1670890
86436    RenderThread-25194 (24827) [000] d..2 24574.573702: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86437          <idle>-0     (-----) [000] d..1 24574.573726: cpu_idle: state=0 cpu_id=0
86438  surfaceflinger-23896 (23896) [001] d..2 24574.573769: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
86439  surfaceflinger-23896 (23896) [001] d..3 24574.573825: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
86440  surfaceflinger-23896 (23896) [001] ...1 24574.574148: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
86441  surfaceflinger-23896 (23896) [001] ...1 24574.574160: tracing_mark_write: E|23896
86442  surfaceflinger-23896 (23896) [001] .... 24574.574291: binder_transaction: transaction=1670891 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
86443  surfaceflinger-23896 (23896) [001] ...2 24574.574326: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
86444  surfaceflinger-23896 (23896) [001] d..4 24574.574338: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
86445  surfaceflinger-23896 (23896) [001] d..5 24574.574363: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
86446          <idle>-0     (-----) [003] .n.1 24574.574368: cpu_idle: state=4294967295 cpu_id=3
86447          <idle>-0     (-----) [003] d..2 24574.574382: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
86448  surfaceflinger-23896 (23896) [001] d..2 24574.574388: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
86449  HwBinder:598_3-633   (  598) [003] .... 24574.574395: binder_transaction_received: transaction=1670891
86450         rcuop/0-10    (   10) [001] d..2 24574.574397: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
86451         rcuop/0-10    (   10) [001] d..3 24574.574440: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
86452  HwBinder:598_3-633   (  598) [003] ...1 24574.574450: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
86453         rcuop/0-10    (   10) [001] d..2 24574.574452: 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
86454     rcu_preempt-7     (    7) [001] d..2 24574.574490: 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
86455          <idle>-0     (-----) [001] d..1 24574.574510: cpu_idle: state=0 cpu_id=1
86456  HwBinder:598_3-633   (  598) [003] ...1 24574.574613: tracing_mark_write: B|598|HWCSession::PresentDisplay::
86457          <idle>-0     (-----) [000] d.h3 24574.574715: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
86458          <idle>-0     (-----) [000] dnh4 24574.574734: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
86459          <idle>-0     (-----) [000] .n.1 24574.574753: cpu_idle: state=4294967295 cpu_id=0
86460          <idle>-0     (-----) [000] d..2 24574.574769: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
86461  HwBinder:598_3-633   (  598) [003] ...1 24574.574793: tracing_mark_write: B|598|HWDeviceDRM::Commit::
86462  HwBinder:598_3-633   (  598) [003] ...1 24574.574806: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
86463 kgsl_worker_thr-246   (  246) [000] d..2 24574.574849: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
86464 kgsl_worker_thr-246   (  246) [000] d..3 24574.574873: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
86465 kgsl_worker_thr-246   (  246) [000] d..2 24574.574905: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
86466  HwBinder:598_3-633   (  598) [003] d..2 24574.575410: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
86467  HwBinder:598_3-633   (  598) [003] d..3 24574.575450: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
86468          <idle>-0     (-----) [001] .n.1 24574.575457: cpu_idle: state=4294967295 cpu_id=1
86469  kworker/u16:10-23868 (23868) [000] d..2 24574.575467: 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
86470          <idle>-0     (-----) [001] d..2 24574.575469: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
86471          <idle>-0     (-----) [000] d..1 24574.575487: cpu_idle: state=0 cpu_id=0
86472  HwBinder:598_3-633   (  598) [003] ...1 24574.575579: tracing_mark_write: E|598
86473  HwBinder:598_3-633   (  598) [003] ...1 24574.575586: tracing_mark_write: E|598
86474  HwBinder:598_3-633   (  598) [003] ...1 24574.575658: tracing_mark_write: E|598
86475  HwBinder:598_3-633   (  598) [003] ...1 24574.575725: tracing_mark_write: E|598
86476  HwBinder:598_3-633   (  598) [003] .... 24574.575745: binder_transaction: transaction=1670892 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
86477  HwBinder:598_3-633   (  598) [003] d..2 24574.575771: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
86478  HwBinder:598_3-633   (  598) [003] d..3 24574.575808: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
86479          <idle>-0     (-----) [002] .n.1 24574.575812: cpu_idle: state=4294967295 cpu_id=2
86480  HwBinder:598_3-633   (  598) [003] .... 24574.575814: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
86481          <idle>-0     (-----) [002] d..2 24574.575825: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
86482  surfaceflinger-23896 (23896) [002] .... 24574.575838: binder_transaction_received: transaction=1670892
86483  HwBinder:598_3-633   (  598) [003] d..2 24574.575923: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
86484          <idle>-0     (-----) [003] d..1 24574.575947: cpu_idle: state=0 cpu_id=3
86485  surfaceflinger-23896 (23896) [002] d..2 24574.576086: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
86486  surfaceflinger-23896 (23896) [002] d..3 24574.576122: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
86487 crtc_commit:111-253   (  253) [001] d..2 24574.576386: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcuop/2 next_pid=29 next_prio=120
86488         rcuop/2-29    (   29) [001] d..2 24574.576419: 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
86489          <idle>-0     (-----) [001] d..1 24574.576435: cpu_idle: state=0 cpu_id=1
86490  surfaceflinger-23896 (23896) [002] d..2 24574.576440: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86491          <idle>-0     (-----) [002] d..1 24574.576464: cpu_idle: state=0 cpu_id=2
86492          <idle>-0     (-----) [000] ...1 24574.577083: cpu_idle: state=4294967295 cpu_id=0
86493          <idle>-0     (-----) [000] d..1 24574.577089: cpu_idle: state=0 cpu_id=0
86494          <idle>-0     (-----) [003] d..2 24574.577600: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
86495          <idle>-0     (-----) [003] dn.3 24574.577624: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
86496          <idle>-0     (-----) [003] dnH3 24574.577730: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
86497          <idle>-0     (-----) [003] dnH3 24574.577748: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
86498          <idle>-0     (-----) [004] dnh2 24574.577753: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
86499          <idle>-0     (-----) [004] .n.1 24574.577757: cpu_idle: state=4294967295 cpu_id=4
86500          <idle>-0     (-----) [004] d..2 24574.577763: 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
86501          <idle>-0     (-----) [003] dnH4 24574.577773: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
86502         sugov:4-560   (  560) [004] d..2 24574.577780: 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
86503          <idle>-0     (-----) [002] .n.1 24574.577781: cpu_idle: state=4294967295 cpu_id=2
86504          <idle>-0     (-----) [004] d..1 24574.577786: cpu_idle: state=0 cpu_id=4
86505          <idle>-0     (-----) [003] dns3 24574.577789: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
86506          <idle>-0     (-----) [002] d..2 24574.577797: 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
86507         sugov:0-559   (  559) [002] d..2 24574.577834: 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
86508          <idle>-0     (-----) [003] dns4 24574.577846: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
86509          <idle>-0     (-----) [002] d..2 24574.577860: 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
86510          <idle>-0     (-----) [003] .n.1 24574.577861: cpu_idle: state=4294967295 cpu_id=3
86511          <idle>-0     (-----) [003] d..2 24574.577878: 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
86512     ksoftirqd/3-34    (   34) [003] d..2 24574.577919: 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
86513          <idle>-0     (-----) [003] d..1 24574.577968: cpu_idle: state=0 cpu_id=3
86514  kworker/u16:10-23868 (23868) [002] d..2 24574.578214: 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
86515          <idle>-0     (-----) [002] d..1 24574.578230: cpu_idle: state=0 cpu_id=2
86516          <idle>-0     (-----) [003] d.s3 24574.578735: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
86517          <idle>-0     (-----) [003] d.s4 24574.578749: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
86518          <idle>-0     (-----) [003] d.s4 24574.578759: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
86519          <idle>-0     (-----) [002] .n.1 24574.578766: cpu_idle: state=4294967295 cpu_id=2
86520          <idle>-0     (-----) [003] ...1 24574.578772: cpu_idle: state=4294967295 cpu_id=3
86521          <idle>-0     (-----) [003] d..1 24574.578778: cpu_idle: state=0 cpu_id=3
86522          <idle>-0     (-----) [002] d..2 24574.578779: 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
86523  kworker/u16:10-23868 (23868) [002] .... 24574.578874: clk_set_rate: l3_cluster0_vote_clk 403200000
86524  kworker/u16:10-23868 (23868) [002] .... 24574.578887: clk_set_rate: l3_clk 403200000
86525  kworker/u16:10-23868 (23868) [002] d..2 24574.578960: 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
86526          <idle>-0     (-----) [002] d..1 24574.578976: cpu_idle: state=0 cpu_id=2
86527          <idle>-0     (-----) [001] d.s2 24574.580915: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
86528          <idle>-0     (-----) [001] dns3 24574.580939: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
86529          <idle>-0     (-----) [001] .n.1 24574.580958: cpu_idle: state=4294967295 cpu_id=1
86530          <idle>-0     (-----) [001] d..2 24574.580971: 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
86531     rcu_preempt-7     (    7) [001] d..2 24574.580983: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
86532     rcu_preempt-7     (    7) [001] d..3 24574.581003: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
86533     rcu_preempt-7     (    7) [001] d..2 24574.581017: 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
86534         rcuop/0-10    (   10) [001] d..2 24574.581023: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
86535         rcuop/0-10    (   10) [001] d..3 24574.581057: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
86536         rcuop/0-10    (   10) [001] d..2 24574.581069: 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
86537         rcuop/1-21    (   21) [001] d..2 24574.581098: 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
86538          <idle>-0     (-----) [001] d..1 24574.581113: cpu_idle: state=0 cpu_id=1
86539          <idle>-0     (-----) [000] d.h5 24574.581411: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
86540          <idle>-0     (-----) [000] d.h6 24574.581434: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
86541          <idle>-0     (-----) [002] .n.1 24574.581440: cpu_idle: state=4294967295 cpu_id=2
86542          <idle>-0     (-----) [000] d.h5 24574.581442: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
86543          <idle>-0     (-----) [002] d..2 24574.581454: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
86544          <idle>-0     (-----) [000] d.h6 24574.581456: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
86545          <idle>-0     (-----) [001] .n.1 24574.581462: cpu_idle: state=4294967295 cpu_id=1
86546          <idle>-0     (-----) [001] d..2 24574.581473: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
86547          <idle>-0     (-----) [000] ...1 24574.581474: cpu_idle: state=4294967295 cpu_id=0
86548          <idle>-0     (-----) [000] d..1 24574.581481: cpu_idle: state=0 cpu_id=0
86549  crtc_event:111-254   (  254) [002] d..2 24574.581497: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86550          <idle>-0     (-----) [002] d..1 24574.581507: cpu_idle: state=0 cpu_id=2
86551 crtc_commit:111-253   (  253) [001] d..2 24574.581671: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
86552          <idle>-0     (-----) [001] d..1 24574.581681: cpu_idle: state=0 cpu_id=1
86553          <idle>-0     (-----) [000] d.h5 24574.583731: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
86554          <idle>-0     (-----) [000] d.h6 24574.583747: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
86555          <idle>-0     (-----) [001] .n.1 24574.583753: cpu_idle: state=4294967295 cpu_id=1
86556          <idle>-0     (-----) [001] d..2 24574.583761: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
86557          <idle>-0     (-----) [000] ...1 24574.583762: cpu_idle: state=4294967295 cpu_id=0
86558          <idle>-0     (-----) [000] d..1 24574.583766: cpu_idle: state=0 cpu_id=0
86559 crtc_commit:111-253   (  253) [001] d..2 24574.583836: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
86560          <idle>-0     (-----) [001] d..1 24574.583846: cpu_idle: state=0 cpu_id=1
86561          <idle>-0     (-----) [000] d.h5 24574.584044: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
86562          <idle>-0     (-----) [000] d.h6 24574.584059: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
86563          <idle>-0     (-----) [002] .n.1 24574.584065: cpu_idle: state=4294967295 cpu_id=2
86564          <idle>-0     (-----) [002] d..2 24574.584075: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
86565          <idle>-0     (-----) [000] ...1 24574.584080: cpu_idle: state=4294967295 cpu_id=0
86566          <idle>-0     (-----) [000] d..1 24574.584084: cpu_idle: state=0 cpu_id=0
86567  crtc_event:111-254   (  254) [002] d..2 24574.584101: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86568          <idle>-0     (-----) [002] d..1 24574.584111: cpu_idle: state=0 cpu_id=2
86569          <idle>-0     (-----) [001] d.s3 24574.584249: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
86570          <idle>-0     (-----) [001] d.s4 24574.584268: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
86571          <idle>-0     (-----) [002] .n.1 24574.584274: cpu_idle: state=4294967295 cpu_id=2
86572          <idle>-0     (-----) [001] ...1 24574.584282: cpu_idle: state=4294967295 cpu_id=1
86573          <idle>-0     (-----) [002] d..2 24574.584284: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
86574          <idle>-0     (-----) [001] d..1 24574.584287: cpu_idle: state=0 cpu_id=1
86575  crtc_event:111-254   (  254) [002] d..2 24574.584315: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86576          <idle>-0     (-----) [002] d..1 24574.584323: cpu_idle: state=0 cpu_id=2
86577          <idle>-0     (-----) [002] d.h2 24574.585651: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
86578          <idle>-0     (-----) [002] dnh3 24574.585666: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
86579          <idle>-0     (-----) [002] .n.1 24574.585675: cpu_idle: state=4294967295 cpu_id=2
86580          <idle>-0     (-----) [002] d..2 24574.585684: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
86581        DispSync-23904 (23896) [002] d..1 24574.585701: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
86582        DispSync-23904 (23896) [002] d..2 24574.585717: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
86583          <idle>-0     (-----) [003] .n.1 24574.585723: cpu_idle: state=4294967295 cpu_id=3
86584          <idle>-0     (-----) [003] d..2 24574.585735: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
86585        DispSync-23904 (23896) [002] d..2 24574.585747: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86586          <idle>-0     (-----) [002] d..1 24574.585759: cpu_idle: state=0 cpu_id=2
86587  appEventThread-23905 (23896) [003] d..3 24574.585785: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
86588  appEventThread-23905 (23896) [003] d..4 24574.585808: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
86589          <idle>-0     (-----) [000] .n.1 24574.585814: cpu_idle: state=4294967295 cpu_id=0
86590          <idle>-0     (-----) [000] d..2 24574.585831: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
86591  appEventThread-23905 (23896) [003] d..2 24574.585854: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
86592          <idle>-0     (-----) [003] d..1 24574.585868: cpu_idle: state=0 cpu_id=3
86593 s.nexuslauncher-24827 (24827) [000] .... 24574.586152: binder_transaction: transaction=1670893 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
86594 s.nexuslauncher-24827 (24827) [000] d..4 24574.586166: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
86595 s.nexuslauncher-24827 (24827) [000] d..5 24574.586204: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
86596          <idle>-0     (-----) [001] .n.1 24574.586208: cpu_idle: state=4294967295 cpu_id=1
86597          <idle>-0     (-----) [001] d..2 24574.586219: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
86598  Binder:23896_4-24423 (23896) [001] .... 24574.586227: binder_transaction_received: transaction=1670893
86599 s.nexuslauncher-24827 (24827) [000] d..3 24574.586244: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
86600  Binder:23896_4-24423 (23896) [001] d..1 24574.586264: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
86601 s.nexuslauncher-24827 (24827) [000] d..4 24574.586272: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
86602          <idle>-0     (-----) [002] .n.1 24574.586277: cpu_idle: state=4294967295 cpu_id=2
86603  Binder:23896_4-24423 (23896) [001] d..2 24574.586282: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
86604          <idle>-0     (-----) [003] .n.1 24574.586289: cpu_idle: state=4294967295 cpu_id=3
86605          <idle>-0     (-----) [002] d..2 24574.586290: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
86606          <idle>-0     (-----) [003] d..2 24574.586299: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
86607  Binder:23896_4-24423 (23896) [001] d..2 24574.586329: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
86608  appEventThread-23905 (23896) [003] d..2 24574.586339: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
86609          <idle>-0     (-----) [001] d..1 24574.586340: cpu_idle: state=0 cpu_id=1
86610    RenderThread-25194 (24827) [002] d..2 24574.586345: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86611          <idle>-0     (-----) [003] d..1 24574.586351: cpu_idle: state=0 cpu_id=3
86612          <idle>-0     (-----) [002] d..1 24574.586357: cpu_idle: state=0 cpu_id=2
86613 s.nexuslauncher-24827 (24827) [000] d..3 24574.586666: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
86614 s.nexuslauncher-24827 (24827) [000] d..4 24574.586700: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
86615          <idle>-0     (-----) [001] .n.1 24574.586705: cpu_idle: state=4294967295 cpu_id=1
86616          <idle>-0     (-----) [001] d..2 24574.586716: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
86617 s.nexuslauncher-24827 (24827) [000] d..2 24574.586737: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86618          <idle>-0     (-----) [000] d..1 24574.586757: cpu_idle: state=0 cpu_id=0
86619    RenderThread-25194 (24827) [001] d..1 24574.586891: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
86620    RenderThread-25194 (24827) [001] d..2 24574.586913: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
86621          <idle>-0     (-----) [000] .n.1 24574.586920: cpu_idle: state=4294967295 cpu_id=0
86622          <idle>-0     (-----) [000] d..2 24574.586934: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
86623    RenderThread-25194 (24827) [001] .... 24574.586980: binder_transaction: transaction=1670894 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
86624    RenderThread-25194 (24827) [001] ...2 24574.586990: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
86625    RenderThread-25194 (24827) [001] d..4 24574.586994: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
86626    RenderThread-25194 (24827) [001] dn.5 24574.587012: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
86627    RenderThread-25194 (24827) [001] d..2 24574.587023: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
86628  Binder:23896_4-24423 (23896) [001] .... 24574.587031: binder_transaction_received: transaction=1670894
86629  Binder:23896_4-24423 (23896) [001] .... 24574.587100: binder_transaction: transaction=1670895 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
86630  Binder:23896_4-24423 (23896) [001] .... 24574.587114: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
86631  Binder:23896_4-24423 (23896) [001] d..2 24574.587171: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
86632    RenderThread-25194 (24827) [001] .... 24574.587181: binder_transaction_received: transaction=1670895
86633    RenderThread-25194 (24827) [001] d.s1 24574.587592: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
86634    RenderThread-25194 (24827) [001] d.s2 24574.587638: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
86635 s.nexuslauncher-24827 (24827) [000] .... 24574.587644: binder_transaction: transaction=1670896 dest_node=1270791 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x32
86636    RenderThread-25194 (24827) [001] d.s2 24574.587645: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
86637 s.nexuslauncher-24827 (24827) [000] ...2 24574.587666: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
86638 s.nexuslauncher-24827 (24827) [000] d..4 24574.587674: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=001
86639    RenderThread-25194 (24827) [001] d.s3 24574.587675: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
86640 s.nexuslauncher-24827 (24827) [000] d..5 24574.587715: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=002
86641          <idle>-0     (-----) [002] .n.1 24574.587720: cpu_idle: state=4294967295 cpu_id=2
86642          <idle>-0     (-----) [002] d..2 24574.587736: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
86643 s.nexuslauncher-24827 (24827) [000] d..2 24574.587738: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
86644<...>-12589 ( 23968) [002] .... 24574.587756: binder_transaction_received: transaction=1670896
86645     rcu_preempt-7     (    7) [000] d..2 24574.587759: 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
86646  kworker/u16:10-23868 (23868) [000] .... 24574.587848: clk_set_rate: l3_cluster0_vote_clk 300000000
86647  kworker/u16:10-23868 (23868) [000] .... 24574.587855: clk_set_rate: l3_clk 300000000
86648  kworker/u16:10-23868 (23868) [000] d..2 24574.588203: 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
86649          <idle>-0     (-----) [000] d..1 24574.588225: cpu_idle: state=0 cpu_id=0
86650          <idle>-0     (-----) [003] d.s3 24574.588237: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
86651          <idle>-0     (-----) [003] d.s4 24574.588250: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
86652          <idle>-0     (-----) [003] d.s4 24574.588260: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
86653          <idle>-0     (-----) [000] .n.1 24574.588267: cpu_idle: state=4294967295 cpu_id=0
86654          <idle>-0     (-----) [003] ...1 24574.588272: cpu_idle: state=4294967295 cpu_id=3
86655          <idle>-0     (-----) [003] d..1 24574.588279: cpu_idle: state=0 cpu_id=3
86656          <idle>-0     (-----) [000] d..2 24574.588282: 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
86657  kworker/u16:10-23868 (23868) [000] d..2 24574.588315: 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
86658          <idle>-0     (-----) [000] d..1 24574.588326: cpu_idle: state=0 cpu_id=0
86659<...>-12589 ( 23968) [002] .... 24574.588634: binder_transaction: transaction=1670897 dest_node=0 dest_proc=24827 dest_thread=24827 reply=1 flags=0x0 code=0x0
86660<...>-12589 ( 23968) [002] d..2 24574.588647: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
86661    RenderThread-25194 (24827) [001] d..2 24574.588652: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
86662          <idle>-0     (-----) [001] d..1 24574.588673: cpu_idle: state=0 cpu_id=1
86663<...>-12589 ( 23968) [002] d..3 24574.588678: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
86664<...>-12589 ( 23968) [002] .... 24574.588684: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
86665          <idle>-0     (-----) [001] d.h2 24574.588725: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
86666<...>-12589 ( 23968) [002] d..2 24574.588750: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
86667          <idle>-0     (-----) [001] d.h3 24574.588752: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
86668 s.nexuslauncher-24827 (24827) [002] .... 24574.588762: binder_transaction_received: transaction=1670897
86669          <idle>-0     (-----) [001] d.h3 24574.588762: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
86670          <idle>-0     (-----) [000] .n.1 24574.588768: cpu_idle: state=4294967295 cpu_id=0
86671          <idle>-0     (-----) [001] ...1 24574.588774: cpu_idle: state=4294967295 cpu_id=1
86672          <idle>-0     (-----) [000] d..2 24574.588780: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
86673          <idle>-0     (-----) [001] d..1 24574.588782: cpu_idle: state=0 cpu_id=1
86674    RenderThread-25194 (24827) [000] .... 24574.589081: binder_transaction: transaction=1670898 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
86675    RenderThread-25194 (24827) [000] ...2 24574.589097: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
86676    RenderThread-25194 (24827) [000] d..4 24574.589102: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
86677    RenderThread-25194 (24827) [000] dn.5 24574.589133: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
86678    RenderThread-25194 (24827) [000] d..2 24574.589145: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
86679  Binder:23896_4-24423 (23896) [000] .... 24574.589157: binder_transaction_received: transaction=1670898
86680  Binder:23896_4-24423 (23896) [000] .... 24574.589341: binder_transaction: transaction=1670899 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
86681  Binder:23896_4-24423 (23896) [000] .... 24574.589352: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
86682  Binder:23896_4-24423 (23896) [000] d..2 24574.589417: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
86683    RenderThread-25194 (24827) [000] .... 24574.589429: binder_transaction_received: transaction=1670899
86684    RenderThread-25194 (24827) [000] d..2 24574.589536: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86685          <idle>-0     (-----) [000] d..1 24574.589557: cpu_idle: state=0 cpu_id=0
86686 s.nexuslauncher-24827 (24827) [002] d.h1 24574.589647: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
86687 s.nexuslauncher-24827 (24827) [002] d.h2 24574.589690: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
86688          <idle>-0     (-----) [003] .n.1 24574.589694: cpu_idle: state=4294967295 cpu_id=3
86689          <idle>-0     (-----) [003] d..2 24574.589708: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
86690        DispSync-23904 (23896) [003] d..1 24574.589729: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
86691        DispSync-23904 (23896) [003] d..2 24574.589760: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
86692          <idle>-0     (-----) [001] .n.1 24574.589766: cpu_idle: state=4294967295 cpu_id=1
86693          <idle>-0     (-----) [001] d..2 24574.589779: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
86694        DispSync-23904 (23896) [003] d..2 24574.589798: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
86695          <idle>-0     (-----) [003] d..1 24574.589813: cpu_idle: state=0 cpu_id=3
86696   sfEventThread-23906 (23896) [001] d..3 24574.589840: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
86697   sfEventThread-23906 (23896) [001] d..4 24574.589877: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
86698          <idle>-0     (-----) [003] .n.1 24574.589881: cpu_idle: state=4294967295 cpu_id=3
86699          <idle>-0     (-----) [003] d..2 24574.589893: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
86700   sfEventThread-23906 (23896) [001] d..2 24574.589919: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
86701          <idle>-0     (-----) [001] d..1 24574.589938: cpu_idle: state=0 cpu_id=1
86702  surfaceflinger-23896 (23896) [003] d..1 24574.590341: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
86703  surfaceflinger-23896 (23896) [003] d..2 24574.590369: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
86704          <idle>-0     (-----) [001] .n.1 24574.590376: cpu_idle: state=4294967295 cpu_id=1
86705          <idle>-0     (-----) [001] d..2 24574.590388: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
86706   sfEventThread-23906 (23896) [001] d..2 24574.590427: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
86707          <idle>-0     (-----) [001] d..1 24574.590439: cpu_idle: state=0 cpu_id=1
86708          <idle>-0     (-----) [000] d.h3 24574.590565: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
86709          <idle>-0     (-----) [000] dnh4 24574.590585: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
86710          <idle>-0     (-----) [000] .n.1 24574.590603: cpu_idle: state=4294967295 cpu_id=0
86711          <idle>-0     (-----) [000] d..2 24574.590616: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
86712  surfaceflinger-23896 (23896) [003] ...1 24574.590618: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
86713  surfaceflinger-23896 (23896) [003] ...1 24574.590627: tracing_mark_write: E|23896
86714 kgsl_worker_thr-246   (  246) [000] d..2 24574.590687: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
86715  surfaceflinger-23896 (23896) [003] .... 24574.590703: binder_transaction: transaction=1670900 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
86716 kgsl_worker_thr-246   (  246) [000] d..3 24574.590710: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
86717  surfaceflinger-23896 (23896) [003] ...2 24574.590736: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
86718 kgsl_worker_thr-246   (  246) [000] d..2 24574.590737: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
86719  surfaceflinger-23896 (23896) [003] d..4 24574.590747: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
86720  surfaceflinger-23896 (23896) [003] d..5 24574.590783: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
86721          <idle>-0     (-----) [001] .n.1 24574.590789: cpu_idle: state=4294967295 cpu_id=1
86722          <idle>-0     (-----) [001] d..2 24574.590800: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
86723  HwBinder:598_3-633   (  598) [001] .... 24574.590815: binder_transaction_received: transaction=1670900
86724  surfaceflinger-23896 (23896) [003] d..2 24574.590821: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
86725          <idle>-0     (-----) [003] d..1 24574.590843: cpu_idle: state=0 cpu_id=3
86726  HwBinder:598_3-633   (  598) [001] ...1 24574.590930: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
86727  HwBinder:598_3-633   (  598) [001] ...1 24574.591093: tracing_mark_write: B|598|HWCSession::PresentDisplay::
86728  HwBinder:598_3-633   (  598) [001] ...1 24574.591303: tracing_mark_write: B|598|HWDeviceDRM::Commit::
86729  HwBinder:598_3-633   (  598) [001] ...1 24574.591316: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
86730  kworker/u16:10-23868 (23868) [000] d..2 24574.591330: 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
86731          <idle>-0     (-----) [000] d..1 24574.591345: cpu_idle: state=0 cpu_id=0
86732  HwBinder:598_3-633   (  598) [001] d..2 24574.592046: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
86733  HwBinder:598_3-633   (  598) [001] d..3 24574.592087: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
86734          <idle>-0     (-----) [003] .n.1 24574.592093: cpu_idle: state=4294967295 cpu_id=3
86735          <idle>-0     (-----) [003] d..2 24574.592108: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
86736  HwBinder:598_3-633   (  598) [001] ...1 24574.592215: tracing_mark_write: E|598
86737  HwBinder:598_3-633   (  598) [001] ...1 24574.592222: tracing_mark_write: E|598
86738  HwBinder:598_3-633   (  598) [001] ...1 24574.592306: tracing_mark_write: E|598
86739  HwBinder:598_3-633   (  598) [001] ...1 24574.592379: tracing_mark_write: E|598
86740  HwBinder:598_3-633   (  598) [001] .... 24574.592398: binder_transaction: transaction=1670901 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
86741 s.nexuslauncher-24827 (24827) [002] d..3 24574.592423: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
86742  HwBinder:598_3-633   (  598) [001] d..2 24574.592429: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
86743 s.nexuslauncher-24827 (24827) [002] d..4 24574.592455: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
86744          <idle>-0     (-----) [000] .n.1 24574.592460: cpu_idle: state=4294967295 cpu_id=0
86745          <idle>-0     (-----) [000] d..2 24574.592474: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
86746  HwBinder:598_3-633   (  598) [001] d..3 24574.592487: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
86747    RenderThread-25194 (24827) [000] d..2 24574.592497: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
86748  HwBinder:598_3-633   (  598) [001] .... 24574.592506: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
86749  surfaceflinger-23896 (23896) [000] .... 24574.592515: binder_transaction_received: transaction=1670901
86750  HwBinder:598_3-633   (  598) [001] d..2 24574.592622: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
86751          <idle>-0     (-----) [001] d..1 24574.592646: cpu_idle: state=0 cpu_id=1
86752  surfaceflinger-23896 (23896) [000] d..2 24574.592784: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
86753  surfaceflinger-23896 (23896) [000] d..3 24574.592844: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
86754 crtc_commit:111-253   (  253) [003] d..2 24574.593066: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcuop/0 next_pid=10 next_prio=120
86755         rcuop/0-10    (   10) [003] d..2 24574.593098: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
86756          <idle>-0     (-----) [003] d..1 24574.593116: cpu_idle: state=0 cpu_id=3
86757  surfaceflinger-23896 (23896) [000] d..2 24574.593159: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
86758    RenderThread-25194 (24827) [000] d..2 24574.593226: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86759          <idle>-0     (-----) [000] d..1 24574.593241: cpu_idle: state=0 cpu_id=0
86760          <idle>-0     (-----) [001] ...1 24574.594099: cpu_idle: state=4294967295 cpu_id=1
86761          <idle>-0     (-----) [001] d..1 24574.594103: cpu_idle: state=0 cpu_id=1
86762          <idle>-0     (-----) [000] d.s2 24574.594255: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
86763 s.nexuslauncher-24827 (24827) [002] d.s2 24574.594270: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
86764          <idle>-0     (-----) [000] dns3 24574.594278: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
86765          <idle>-0     (-----) [000] .n.1 24574.594303: cpu_idle: state=4294967295 cpu_id=0
86766 s.nexuslauncher-24827 (24827) [002] d.s3 24574.594308: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
86767          <idle>-0     (-----) [000] d..2 24574.594318: 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
86768     rcu_preempt-7     (    7) [000] d..2 24574.594332: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
86769     rcu_preempt-7     (    7) [000] d..3 24574.594376: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
86770     rcu_preempt-7     (    7) [000] d..2 24574.594400: 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
86771  kworker/u16:10-23868 (23868) [000] d..2 24574.594510: 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
86772          <idle>-0     (-----) [000] d..1 24574.594527: cpu_idle: state=0 cpu_id=0
86773 s.nexuslauncher-24827 (24827) [002] d..3 24574.596429: sched_waking: comm=UiThreadHelper pid=25108 prio=118 target_cpu=007
86774 s.nexuslauncher-24827 (24827) [002] d..4 24574.596489: sched_wakeup: comm=UiThreadHelper pid=25108 prio=118 target_cpu=000
86775          <idle>-0     (-----) [000] .n.1 24574.596494: cpu_idle: state=4294967295 cpu_id=0
86776 s.nexuslauncher-24827 (24827) [002] d.h3 24574.596561: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
86777          <idle>-0     (-----) [000] d..2 24574.596564: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=UiThreadHelper next_pid=25108 next_prio=118
86778 s.nexuslauncher-24827 (24827) [002] d.h3 24574.596578: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
86779          <idle>-0     (-----) [004] dnh2 24574.596583: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
86780          <idle>-0     (-----) [004] .n.1 24574.596587: cpu_idle: state=4294967295 cpu_id=4
86781          <idle>-0     (-----) [004] d..2 24574.596592: 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
86782 s.nexuslauncher-24827 (24827) [002] d.h4 24574.596606: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
86783          <idle>-0     (-----) [001] .n.1 24574.596611: cpu_idle: state=4294967295 cpu_id=1
86784         sugov:4-560   (  560) [004] d..2 24574.596612: 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
86785          <idle>-0     (-----) [004] d..1 24574.596618: cpu_idle: state=0 cpu_id=4
86786          <idle>-0     (-----) [001] d..2 24574.596627: 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
86787         sugov:0-559   (  559) [001] d..2 24574.596686: 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
86788         rcuop/2-29    (   29) [001] d..2 24574.596722: 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
86789          <idle>-0     (-----) [001] d..1 24574.596738: cpu_idle: state=0 cpu_id=1
86790 s.nexuslauncher-24827 (24827) [002] d..2 24574.596761: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86791          <idle>-0     (-----) [002] d..1 24574.596789: cpu_idle: state=0 cpu_id=2
86792<...>-25108 ( 24827) [000] d.H2 24574.597693: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
86793<...>-25108 ( 24827) [000] d.H2 24574.597713: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
86794          <idle>-0     (-----) [004] dnh2 24574.597720: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
86795          <idle>-0     (-----) [004] .n.1 24574.597724: cpu_idle: state=4294967295 cpu_id=4
86796          <idle>-0     (-----) [004] d..2 24574.597730: 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
86797<...>-25108 ( 24827) [000] d.H3 24574.597735: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
86798          <idle>-0     (-----) [001] .n.1 24574.597738: cpu_idle: state=4294967295 cpu_id=1
86799<...>-25108 ( 24827) [000] d.s2 24574.597744: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
86800         sugov:4-560   (  560) [004] d..2 24574.597744: 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
86801          <idle>-0     (-----) [004] d..1 24574.597750: cpu_idle: state=0 cpu_id=4
86802          <idle>-0     (-----) [001] d..2 24574.597752: 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
86803         sugov:0-559   (  559) [001] d..2 24574.597781: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
86804          <idle>-0     (-----) [001] d..1 24574.597794: cpu_idle: state=0 cpu_id=1
86805<...>-25108 ( 24827) [000] d.s3 24574.597802: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
86806          <idle>-0     (-----) [001] .n.1 24574.597808: cpu_idle: state=4294967295 cpu_id=1
86807          <idle>-0     (-----) [001] d..2 24574.597821: 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
86808<...>-25108 ( 24827) [000] d.H5 24574.597933: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
86809<...>-25108 ( 24827) [000] d.H6 24574.597954: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
86810          <idle>-0     (-----) [002] .n.1 24574.597962: cpu_idle: state=4294967295 cpu_id=2
86811<...>-25108 ( 24827) [000] d.H5 24574.597964: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
86812          <idle>-0     (-----) [002] d..2 24574.597976: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
86813<...>-25108 ( 24827) [000] d.H6 24574.597979: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
86814          <idle>-0     (-----) [003] .n.1 24574.597986: cpu_idle: state=4294967295 cpu_id=3
86815          <idle>-0     (-----) [003] d..2 24574.598000: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
86816  crtc_event:111-254   (  254) [002] d..2 24574.598029: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86817          <idle>-0     (-----) [002] d..1 24574.598076: cpu_idle: state=0 cpu_id=2
86818 crtc_commit:111-253   (  253) [003] d..2 24574.598245: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
86819          <idle>-0     (-----) [003] d..1 24574.598256: cpu_idle: state=0 cpu_id=3
86820  kworker/u16:10-23868 (23868) [001] d..2 24574.598341: 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
86821          <idle>-0     (-----) [001] d..1 24574.598359: cpu_idle: state=0 cpu_id=1
86822          <idle>-0     (-----) [003] d.s3 24574.598959: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
86823          <idle>-0     (-----) [003] d.s4 24574.598998: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
86824          <idle>-0     (-----) [003] dns4 24574.599005: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
86825          <idle>-0     (-----) [003] .n.1 24574.599016: cpu_idle: state=4294967295 cpu_id=3
86826          <idle>-0     (-----) [003] d..2 24574.599025: 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
86827  kworker/u16:10-23868 (23868) [003] .... 24574.599160: clk_set_rate: l3_cluster0_vote_clk 576000000
86828  kworker/u16:10-23868 (23868) [003] .... 24574.599168: clk_set_rate: l3_clk 576000000
86829  kworker/u16:10-23868 (23868) [003] d..2 24574.599228: 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
86830          <idle>-0     (-----) [003] d..1 24574.599239: cpu_idle: state=0 cpu_id=3
86831<...>-25108 ( 24827) [000] d..3 24574.599315: sched_waking: comm=GoogleApiHandle pid=24986 prio=129 target_cpu=003
86832<...>-25108 ( 24827) [000] d..4 24574.599355: sched_wakeup: comm=GoogleApiHandle pid=24986 prio=129 target_cpu=001
86833          <idle>-0     (-----) [001] .n.1 24574.599361: cpu_idle: state=4294967295 cpu_id=1
86834          <idle>-0     (-----) [001] d..2 24574.599374: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=GoogleApiHandle next_pid=24986 next_prio=129
86835<...>-25108 ( 24827) [000] d..2 24574.599428: sched_switch: prev_comm=UiThreadHelper prev_pid=25108 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86836          <idle>-0     (-----) [000] d..1 24574.599442: cpu_idle: state=0 cpu_id=0
86837          <idle>-0     (-----) [002] ...1 24574.599990: cpu_idle: state=4294967295 cpu_id=2
86838          <idle>-0     (-----) [002] d..1 24574.599994: cpu_idle: state=0 cpu_id=2
86839          <idle>-0     (-----) [000] d.h5 24574.600203: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
86840          <idle>-0     (-----) [000] d.h6 24574.600220: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
86841          <idle>-0     (-----) [003] .n.1 24574.600226: cpu_idle: state=4294967295 cpu_id=3
86842          <idle>-0     (-----) [003] d..2 24574.600234: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
86843          <idle>-0     (-----) [000] ...1 24574.600236: cpu_idle: state=4294967295 cpu_id=0
86844          <idle>-0     (-----) [000] d..1 24574.600240: cpu_idle: state=0 cpu_id=0
86845 crtc_commit:111-253   (  253) [003] d..2 24574.600313: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
86846          <idle>-0     (-----) [003] d..1 24574.600321: cpu_idle: state=0 cpu_id=3
86847          <idle>-0     (-----) [000] d.h5 24574.600507: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
86848          <idle>-0     (-----) [000] d.h6 24574.600521: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
86849          <idle>-0     (-----) [002] .n.1 24574.600526: cpu_idle: state=4294967295 cpu_id=2
86850          <idle>-0     (-----) [002] d..2 24574.600538: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
86851          <idle>-0     (-----) [000] ...1 24574.600539: cpu_idle: state=4294967295 cpu_id=0
86852          <idle>-0     (-----) [000] d..1 24574.600544: cpu_idle: state=0 cpu_id=0
86853  crtc_event:111-254   (  254) [002] d..2 24574.600564: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86854          <idle>-0     (-----) [002] d..1 24574.600575: cpu_idle: state=0 cpu_id=2
86855<...>-24986 ( 24827) [001] .... 24574.600751: binder_transaction: transaction=1670902 dest_node=1669735 dest_proc=24741 dest_thread=0 reply=0 flags=0x11 code=0x1
86856<...>-24986 ( 24827) [001] d..4 24574.600856: sched_waking: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=000
86857<...>-24986 ( 24827) [001] d..5 24574.600891: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=000
86858          <idle>-0     (-----) [003] d.s3 24574.600909: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
86859          <idle>-0     (-----) [000] dns2 24574.600923: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
86860          <idle>-0     (-----) [003] d.s4 24574.600927: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
86861          <idle>-0     (-----) [002] .n.1 24574.600933: cpu_idle: state=4294967295 cpu_id=2
86862          <idle>-0     (-----) [002] d..2 24574.600944: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
86863          <idle>-0     (-----) [003] ...1 24574.600953: cpu_idle: state=4294967295 cpu_id=3
86864          <idle>-0     (-----) [003] d..1 24574.600958: cpu_idle: state=0 cpu_id=3
86865          <idle>-0     (-----) [000] dns3 24574.600969: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
86866          <idle>-0     (-----) [000] .n.1 24574.600979: cpu_idle: state=4294967295 cpu_id=0
86867  crtc_event:111-254   (  254) [002] d..2 24574.600984: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
86868          <idle>-0     (-----) [000] d..2 24574.600990: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=120
86869<...>-25141 ( 24741) [000] .... 24574.601005: binder_transaction_received: transaction=1670902
86870     rcu_preempt-7     (    7) [002] d..2 24574.601014: 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
86871          <idle>-0     (-----) [002] d..1 24574.601025: cpu_idle: state=0 cpu_id=2
86872<...>-24986 ( 24827) [001] d..2 24574.601084: sched_switch: prev_comm=GoogleApiHandle prev_pid=24986 prev_prio=129 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
86873          <idle>-0     (-----) [001] d..1 24574.601104: cpu_idle: state=0 cpu_id=1
86874          <idle>-0     (-----) [003] d.h2 24574.602132: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
86875          <idle>-0     (-----) [003] dnh3 24574.602146: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
86876          <idle>-0     (-----) [003] .n.1 24574.602153: cpu_idle: state=4294967295 cpu_id=3
86877          <idle>-0     (-----) [003] d..2 24574.602162: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
86878        DispSync-23904 (23896) [003] d..1 24574.602182: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
86879        DispSync-23904 (23896) [003] d..2 24574.602205: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
86880          <idle>-0     (-----) [002] .n.1 24574.602210: cpu_idle: state=4294967295 cpu_id=2
86881          <idle>-0     (-----) [002] d..2 24574.602219: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
86882        DispSync-23904 (23896) [003] d..2 24574.602235: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
86883          <idle>-0     (-----) [003] d..1 24574.602245: cpu_idle: state=0 cpu_id=3
86884  appEventThread-23905 (23896) [002] d..3 24574.602288: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
86885  appEventThread-23905 (23896) [002] d..4 24574.602319: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
86886          <idle>-0     (-----) [001] .n.1 24574.602326: cpu_idle: state=4294967295 cpu_id=1
86887          <idle>-0     (-----) [001] d..2 24574.602340: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
86888  appEventThread-23905 (23896) [002] d..2 24574.602359: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86889          <idle>-0     (-----) [002] d..1 24574.602372: cpu_idle: state=0 cpu_id=2
86890 s.nexuslauncher-24827 (24827) [001] .... 24574.602639: binder_transaction: transaction=1670905 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
86891 s.nexuslauncher-24827 (24827) [001] d..4 24574.602651: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
86892 s.nexuslauncher-24827 (24827) [001] d..5 24574.602687: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=002
86893          <idle>-0     (-----) [002] .n.1 24574.602692: cpu_idle: state=4294967295 cpu_id=2
86894          <idle>-0     (-----) [002] d..2 24574.602704: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
86895  Binder:23896_4-24423 (23896) [002] .... 24574.602712: binder_transaction_received: transaction=1670905
86896<...>-25141 ( 24741) [000] d..1 24574.602733: sched_waking: comm=lowpool[3] pid=25296 prio=130 target_cpu=002
86897  Binder:23896_4-24423 (23896) [002] d..1 24574.602747: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
86898<...>-25141 ( 24741) [000] d..2 24574.602768: sched_wakeup: comm=lowpool[3] pid=25296 prio=130 target_cpu=002
86899  Binder:23896_4-24423 (23896) [002] d..2 24574.602784: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
86900          <idle>-0     (-----) [003] .n.1 24574.602790: cpu_idle: state=4294967295 cpu_id=3
86901          <idle>-0     (-----) [003] d..2 24574.602799: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
86902  Binder:23896_4-24423 (23896) [002] d..2 24574.602817: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
86903  appEventThread-23905 (23896) [003] d..2 24574.602847: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
86904          <idle>-0     (-----) [003] d..1 24574.602857: cpu_idle: state=0 cpu_id=3
86905<...>-25141 ( 24741) [000] d..2 24574.602945: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86906          <idle>-0     (-----) [000] d..1 24574.602963: cpu_idle: state=0 cpu_id=0
86907<...>-25296 ( 24741) [002] .... 24574.603441: binder_transaction: transaction=1670906 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x17
86908<...>-25296 ( 24741) [002] d..4 24574.603469: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=002
86909<...>-25296 ( 24741) [002] dn.5 24574.603489: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=002
86910<...>-25296 ( 24741) [002] d..2 24574.603500: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
86911<...>-12589 ( 23968) [002] .... 24574.603514: binder_transaction_received: transaction=1670906
86912<...>-12589 ( 23968) [002] d..3 24574.604176: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=000
86913<...>-12589 ( 23968) [002] d..4 24574.604206: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=000
86914          <idle>-0     (-----) [000] .n.1 24574.604212: cpu_idle: state=4294967295 cpu_id=0
86915          <idle>-0     (-----) [000] d..2 24574.604230: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
86916<...>-23993 ( 23968) [000] d..2 24574.604329: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86917          <idle>-0     (-----) [000] d..1 24574.604341: cpu_idle: state=0 cpu_id=0
86918<...>-12589 ( 23968) [002] d..3 24574.604568: sched_waking: comm=lmkd pid=808 prio=98 target_cpu=000
86919<...>-12589 ( 23968) [002] d..4 24574.604595: sched_wakeup: comm=lmkd pid=808 prio=98 target_cpu=000
86920          <idle>-0     (-----) [000] .n.1 24574.604602: cpu_idle: state=4294967295 cpu_id=0
86921          <idle>-0     (-----) [000] d..2 24574.604612: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=808 next_prio=98
86922<...>-12589 ( 23968) [002] .... 24574.604817: binder_transaction: transaction=1670907 dest_node=1302474 dest_proc=24741 dest_thread=0 reply=0 flags=0x11 code=0x7
86923<...>-12589 ( 23968) [002] d..4 24574.604843: sched_waking: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=000
86924<...>-12589 ( 23968) [002] d..5 24574.604865: sched_wakeup: comm=Binder:24741_4 pid=25141 prio=120 target_cpu=000
86925<...>-12589 ( 23968) [002] .... 24574.605094: binder_transaction: transaction=1670908 dest_node=0 dest_proc=24741 dest_thread=25296 reply=1 flags=0x0 code=0x0
86926<...>-12589 ( 23968) [002] d..2 24574.605147: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
86927<...>-25296 ( 24741) [002] .... 24574.605159: binder_transaction_received: transaction=1670908
86928 s.nexuslauncher-24827 (24827) [001] d..3 24574.605404: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
86929 s.nexuslauncher-24827 (24827) [001] d..4 24574.605439: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=003
86930          <idle>-0     (-----) [003] .n.1 24574.605444: cpu_idle: state=4294967295 cpu_id=3
86931            lmkd-808   (  808) [000] d.h1 24574.605452: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=000
86932          <idle>-0     (-----) [003] d..2 24574.605456: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
86933 s.nexuslauncher-24827 (24827) [001] d..2 24574.605474: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
86934          <idle>-0     (-----) [001] d..1 24574.605495: cpu_idle: state=0 cpu_id=1
86935          <idle>-0     (-----) [006] dnh2 24574.605499: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=006
86936          <idle>-0     (-----) [006] .n.1 24574.605540: cpu_idle: state=4294967295 cpu_id=6
86937            lmkd-808   (  808) [000] d.h2 24574.605542: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
86938          <idle>-0     (-----) [006] d..2 24574.605549: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
86939            lmkd-808   (  808) [000] d.h2 24574.605555: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
86940          <idle>-0     (-----) [004] dnh2 24574.605561: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
86941          <idle>-0     (-----) [004] .n.1 24574.605564: cpu_idle: state=4294967295 cpu_id=4
86942          <idle>-0     (-----) [004] d..2 24574.605569: 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
86943            lmkd-808   (  808) [000] d.h3 24574.605570: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
86944          <idle>-0     (-----) [001] .n.1 24574.605577: cpu_idle: state=4294967295 cpu_id=1
86945         sugov:4-560   (  560) [004] d..2 24574.605579: 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
86946          <idle>-0     (-----) [004] d..1 24574.605584: cpu_idle: state=0 cpu_id=4
86947          <idle>-0     (-----) [001] d..2 24574.605588: 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
86948         sugov:0-559   (  559) [001] d..2 24574.605614: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
86949          <idle>-0     (-----) [001] d..1 24574.605625: cpu_idle: state=0 cpu_id=1
86950           <...>-13147 (-----) [006] d..2 24574.605767: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
86951            lmkd-808   (  808) [000] d..2 24574.605779: sched_switch: prev_comm=lmkd prev_pid=808 prev_prio=98 prev_state=S ==> next_comm=Binder:24741_4 next_pid=25141 next_prio=120
86952<...>-25141 ( 24741) [000] .... 24574.605788: binder_transaction_received: transaction=1670907
86953    RenderThread-25194 (24827) [003] d.h1 24574.605834: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
86954           <...>-13147 (-----) [006] d..2 24574.605901: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
86955          <idle>-0     (-----) [006] d..1 24574.605914: cpu_idle: state=0 cpu_id=6
86956<...>-25141 ( 24741) [000] d..3 24574.606023: sched_waking: comm=.gms.persistent pid=24741 prio=120 target_cpu=002
86957<...>-25141 ( 24741) [000] d..4 24574.606077: sched_wakeup: comm=.gms.persistent pid=24741 prio=120 target_cpu=003
86958    RenderThread-25194 (24827) [003] d.h1 24574.606121: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
86959    RenderThread-25194 (24827) [003] d.h2 24574.606151: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
86960          <idle>-0     (-----) [001] .n.1 24574.606157: cpu_idle: state=4294967295 cpu_id=1
86961<...>-25141 ( 24741) [000] d..2 24574.606164: sched_switch: prev_comm=Binder:24741_4 prev_pid=25141 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86962          <idle>-0     (-----) [001] d..2 24574.606166: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
86963          <idle>-0     (-----) [000] d..1 24574.606183: cpu_idle: state=0 cpu_id=0
86964        DispSync-23904 (23896) [001] d..1 24574.606191: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
86965        DispSync-23904 (23896) [001] d..2 24574.606219: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
86966          <idle>-0     (-----) [000] .n.1 24574.606227: cpu_idle: state=4294967295 cpu_id=0
86967          <idle>-0     (-----) [000] d..2 24574.606238: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
86968        DispSync-23904 (23896) [001] d..2 24574.606251: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
86969          <idle>-0     (-----) [001] d..1 24574.606265: cpu_idle: state=0 cpu_id=1
86970   sfEventThread-23906 (23896) [000] d..3 24574.606294: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
86971   sfEventThread-23906 (23896) [000] d..4 24574.606322: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
86972          <idle>-0     (-----) [001] .n.1 24574.606328: cpu_idle: state=4294967295 cpu_id=1
86973          <idle>-0     (-----) [001] d..2 24574.606338: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
86974   sfEventThread-23906 (23896) [000] d..2 24574.606356: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86975          <idle>-0     (-----) [000] d..1 24574.606372: cpu_idle: state=0 cpu_id=0
86976          <idle>-0     (-----) [000] d.h2 24574.606718: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
86977          <idle>-0     (-----) [000] dnh3 24574.606729: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
86978          <idle>-0     (-----) [000] .n.1 24574.606739: cpu_idle: state=4294967295 cpu_id=0
86979          <idle>-0     (-----) [000] d..2 24574.606750: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
86980  surfaceflinger-23896 (23896) [001] d..1 24574.606892: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
86981  surfaceflinger-23896 (23896) [001] d..2 24574.606919: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
86982    RenderThread-25194 (24827) [003] d..2 24574.606940: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
86983 irq/79-1436400.-24613 (24613) [000] d..2 24574.606965: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
86984          <idle>-0     (-----) [000] d..1 24574.606978: cpu_idle: state=0 cpu_id=0
86985   sfEventThread-23906 (23896) [003] d.s3 24574.606979: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
86986   sfEventThread-23906 (23896) [003] d.s4 24574.606997: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
86987   sfEventThread-23906 (23896) [003] d..2 24574.607040: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=.gms.persistent next_pid=24741 next_prio=120
86988<...>-25296 ( 24741) [002] d..2 24574.607052: sched_waking: comm=rcuos/2 pid=30 prio=120 target_cpu=000
86989  surfaceflinger-23896 (23896) [001] ...1 24574.607058: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
86990  surfaceflinger-23896 (23896) [001] ...1 24574.607068: tracing_mark_write: E|23896
86991<...>-25296 ( 24741) [002] d..3 24574.607105: sched_wakeup: comm=rcuos/2 pid=30 prio=120 target_cpu=001
86992  surfaceflinger-23896 (23896) [001] .... 24574.607140: binder_transaction: transaction=1670909 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
86993  surfaceflinger-23896 (23896) [001] ...2 24574.607175: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
86994  surfaceflinger-23896 (23896) [001] d..4 24574.607186: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
86995  surfaceflinger-23896 (23896) [001] d..5 24574.607214: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
86996          <idle>-0     (-----) [000] .n.1 24574.607221: cpu_idle: state=4294967295 cpu_id=0
86997          <idle>-0     (-----) [000] d..2 24574.607231: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
86998  surfaceflinger-23896 (23896) [001] d..2 24574.607233: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcuos/2 next_pid=30 next_prio=120
86999  HwBinder:598_3-633   (  598) [000] .... 24574.607245: binder_transaction_received: transaction=1670909
87000<...>-30 ( 30) [001] d..2 24574.607245: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
87001<...>-30 ( 30) [001] d..3 24574.607269: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
87002<...>-30 ( 30) [001] d..2 24574.607281: sched_switch: prev_comm=rcuos/2 prev_pid=30 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
87003  HwBinder:598_3-633   (  598) [000] ...1 24574.607311: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
87004       rcu_sched-8     (    8) [001] d..2 24574.607312: 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
87005          <idle>-0     (-----) [001] d..1 24574.607328: cpu_idle: state=0 cpu_id=1
87006  HwBinder:598_3-633   (  598) [000] ...1 24574.607459: tracing_mark_write: B|598|HWCSession::PresentDisplay::
87007<...>-24741 ( 24741) [003] .... 24574.607462: binder_transaction: transaction=1670910 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x11 code=0x2f
87008<...>-24741 ( 24741) [003] d..4 24574.607484: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=002
87009<...>-24741 ( 24741) [003] d..5 24574.607518: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=001
87010          <idle>-0     (-----) [001] .n.1 24574.607524: cpu_idle: state=4294967295 cpu_id=1
87011          <idle>-0     (-----) [001] d..2 24574.607536: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
87012<...>-12589 ( 23968) [001] .... 24574.607584: binder_transaction_received: transaction=1670910
87013<...>-25296 ( 24741) [002] d.s1 24574.607588: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
87014<...>-24741 ( 24741) [003] d.s2 24574.607592: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
87015<...>-24741 ( 24741) [003] d.s3 24574.607608: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
87016  HwBinder:598_3-633   (  598) [000] d..2 24574.607621: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=98 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
87017<...>-25296 ( 24741) [002] d.s2 24574.607646: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
87018<...>-24741 ( 24741) [003] d..2 24574.607668: sched_switch: prev_comm=.gms.persistent prev_pid=24741 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
87019<...>-25296 ( 24741) [002] d.s2 24574.607675: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
87020<...>-12589 ( 23968) [001] d..2 24574.607687: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
87021     ksoftirqd/3-34    (   34) [003] d..2 24574.607690: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
87022 irq/79-1436400.-24613 (24613) [000] d..2 24574.607714: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
87023<...>-25296 ( 24741) [002] d.s3 24574.607723: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
87024     rcu_preempt-7     (    7) [000] d..2 24574.607726: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
87025     rcu_preempt-7     (    7) [000] d..3 24574.607767: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
87026     rcu_preempt-7     (    7) [000] d..2 24574.607783: 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
87027         rcuop/0-10    (   10) [000] d..2 24574.607803: 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
87028  HwBinder:598_3-633   (  598) [001] ...1 24574.607815: tracing_mark_write: B|598|HWDeviceDRM::Commit::
87029  HwBinder:598_3-633   (  598) [001] ...1 24574.607847: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
87030  kworker/u16:10-23868 (23868) [000] d..2 24574.608254: 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
87031          <idle>-0     (-----) [000] d..1 24574.608269: cpu_idle: state=0 cpu_id=0
87032    RenderThread-25194 (24827) [003] d.s2 24574.608282: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
87033    RenderThread-25194 (24827) [003] d.s3 24574.608329: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
87034    RenderThread-25194 (24827) [003] d.s3 24574.608338: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
87035  HwBinder:598_3-633   (  598) [001] d..2 24574.608604: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
87036  HwBinder:598_3-633   (  598) [001] d..3 24574.608636: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
87037          <idle>-0     (-----) [000] .n.1 24574.608642: cpu_idle: state=4294967295 cpu_id=0
87038          <idle>-0     (-----) [000] d..2 24574.608653: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
87039  HwBinder:598_3-633   (  598) [001] ...1 24574.608767: tracing_mark_write: E|598
87040  HwBinder:598_3-633   (  598) [001] ...1 24574.608773: tracing_mark_write: E|598
87041  HwBinder:598_3-633   (  598) [001] ...1 24574.608871: tracing_mark_write: E|598
87042  HwBinder:598_3-633   (  598) [001] ...1 24574.608954: tracing_mark_write: E|598
87043  HwBinder:598_3-633   (  598) [001] .... 24574.608976: binder_transaction: transaction=1670911 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
87044  HwBinder:598_3-633   (  598) [001] d..2 24574.609004: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
87045  HwBinder:598_3-633   (  598) [001] d..3 24574.609030: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
87046  HwBinder:598_3-633   (  598) [001] .... 24574.609035: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
87047    RenderThread-25194 (24827) [003] d..2 24574.609047: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
87048  surfaceflinger-23896 (23896) [003] .... 24574.609061: binder_transaction_received: transaction=1670911
87049  HwBinder:598_3-633   (  598) [001] d..2 24574.609132: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
87050 crtc_commit:111-253   (  253) [000] d..2 24574.609558: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
87051          <idle>-0     (-----) [000] d..1 24574.609571: cpu_idle: state=0 cpu_id=0
87052<...>-12589 ( 23968) [001] d..3 24574.609621: sched_waking: comm=lmkd pid=808 prio=98 target_cpu=000
87053<...>-12589 ( 23968) [001] d..4 24574.609644: sched_wakeup: comm=lmkd pid=808 prio=98 target_cpu=000
87054          <idle>-0     (-----) [000] .n.1 24574.609650: cpu_idle: state=4294967295 cpu_id=0
87055          <idle>-0     (-----) [000] d..2 24574.609661: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=808 next_prio=98
87056  surfaceflinger-23896 (23896) [003] d..2 24574.609672: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
87057    RenderThread-25194 (24827) [003] d..1 24574.609734: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
87058          <idle>-0     (-----) [005] dnh2 24574.609780: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=005
87059          <idle>-0     (-----) [005] .n.1 24574.609828: cpu_idle: state=4294967295 cpu_id=5
87060    RenderThread-25194 (24827) [003] d.h3 24574.609830: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
87061          <idle>-0     (-----) [005] d..2 24574.609836: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
87062          <idle>-0     (-----) [004] dnh2 24574.609850: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
87063          <idle>-0     (-----) [004] .n.1 24574.609854: cpu_idle: state=4294967295 cpu_id=4
87064          <idle>-0     (-----) [004] d..2 24574.609859: 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
87065         sugov:4-560   (  560) [004] d..2 24574.609869: 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
87066          <idle>-0     (-----) [004] d..1 24574.609874: cpu_idle: state=0 cpu_id=4
87067<...>-12589 ( 23968) [001] d..2 24574.609896: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
87068          <idle>-0     (-----) [001] d..1 24574.609912: cpu_idle: state=0 cpu_id=1
87069    RenderThread-25194 (24827) [003] .... 24574.609964: binder_transaction: transaction=1670912 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
87070 s.nexuslauncher-24827 (24827) [005] d..3 24574.609964: sched_waking: comm=UiThreadHelper pid=25108 prio=118 target_cpu=000
87071    RenderThread-25194 (24827) [003] ...2 24574.609977: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
87072    RenderThread-25194 (24827) [003] d..4 24574.609983: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
87073          <idle>-0     (-----) [001] dnh2 24574.610000: sched_wakeup: comm=UiThreadHelper pid=25108 prio=118 target_cpu=001
87074          <idle>-0     (-----) [001] .n.1 24574.610014: cpu_idle: state=4294967295 cpu_id=1
87075    RenderThread-25194 (24827) [003] d..5 24574.610019: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
87076          <idle>-0     (-----) [001] d..2 24574.610029: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
87077 s.nexuslauncher-24827 (24827) [005] d..2 24574.610042: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
87078  Binder:23896_4-24423 (23896) [001] .... 24574.610044: binder_transaction_received: transaction=1670912
87079    RenderThread-25194 (24827) [003] d..2 24574.610053: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
87080          <idle>-0     (-----) [005] d..1 24574.610054: cpu_idle: state=0 cpu_id=5
87081  Binder:23896_4-24423 (23896) [001] .... 24574.610163: binder_transaction: transaction=1670913 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
87082  Binder:23896_4-24423 (23896) [001] d..2 24574.610180: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=003
87083     logd.writer-563   (  555) [003] d..2 24574.610224: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
87084          <idle>-0     (-----) [005] dnh2 24574.610224: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
87085          <idle>-0     (-----) [005] .n.1 24574.610229: cpu_idle: state=4294967295 cpu_id=5
87086  Binder:23896_4-24423 (23896) [001] .... 24574.610268: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
87087          <idle>-0     (-----) [005] d..2 24574.610270: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
87088    RenderThread-25194 (24827) [005] .... 24574.610276: binder_transaction_received: transaction=1670913
87089  kworker/u16:10-23868 (23868) [003] d..2 24574.610289: 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
87090          <idle>-0     (-----) [003] d..1 24574.610313: cpu_idle: state=0 cpu_id=3
87091  Binder:23896_4-24423 (23896) [001] d..2 24574.610327: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=UiThreadHelper next_pid=25108 next_prio=118
87092<...>-25108 ( 24827) [001] .... 24574.610638: binder_transaction: transaction=1670914 dest_node=1309457 dest_proc=24151 dest_thread=0 reply=0 flags=0x10 code=0x9
87093<...>-25108 ( 24827) [001] ...2 24574.610657: binder_set_priority: proc=24151 thread=24177 old=120 => new=118 desired=118
87094<...>-25108 ( 24827) [001] d..4 24574.610664: sched_waking: comm=Binder:24151_3 pid=24177 prio=118 target_cpu=001
87095            lmkd-808   (  808) [000] d..2 24574.610675: sched_switch: prev_comm=lmkd prev_pid=808 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87096<...>-25108 ( 24827) [001] dn.5 24574.610688: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=118 target_cpu=001
87097          <idle>-0     (-----) [000] d..1 24574.610690: cpu_idle: state=0 cpu_id=0
87098<...>-25108 ( 24827) [001] d..2 24574.610699: sched_switch: prev_comm=UiThreadHelper prev_pid=25108 prev_prio=118 prev_state=R+ ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=118
87099<...>-24177 ( 24151) [001] .... 24574.610715: binder_transaction_received: transaction=1670914
87100<...>-24177 ( 24151) [001] d.s1 24574.610920: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
87101<...>-24177 ( 24151) [001] d.s2 24574.610945: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
87102<...>-24177 ( 24151) [001] d..3 24574.611176: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
87103<...>-24177 ( 24151) [001] d..4 24574.611214: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
87104          <idle>-0     (-----) [000] .n.1 24574.611221: cpu_idle: state=4294967295 cpu_id=0
87105<...>-24177 ( 24151) [001] d.h3 24574.611266: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
87106          <idle>-0     (-----) [000] d..2 24574.611273: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
87107          <idle>-0     (-----) [004] dnh2 24574.611285: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
87108          <idle>-0     (-----) [004] .n.1 24574.611289: cpu_idle: state=4294967295 cpu_id=4
87109          <idle>-0     (-----) [004] d..2 24574.611294: 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
87110         sugov:4-560   (  560) [004] d..2 24574.611305: 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
87111          <idle>-0     (-----) [004] d..1 24574.611310: cpu_idle: state=0 cpu_id=4
87112<...>-24177 ( 24151) [001] .... 24574.611402: binder_transaction: transaction=1670915 dest_node=0 dest_proc=24827 dest_thread=25108 reply=1 flags=0x0 code=0x0
87113<...>-24177 ( 24151) [001] .... 24574.611412: binder_set_priority: proc=24151 thread=24177 old=118 => new=120 desired=120
87114<...>-24177 ( 24151) [001] d..2 24574.611435: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=R+ ==> next_comm=rcu_sched next_pid=8 next_prio=120
87115       rcu_sched-8     (    8) [001] d..2 24574.611461: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
87116<...>-24177 ( 24151) [001] d..2 24574.611505: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=UiThreadHelper next_pid=25108 next_prio=118
87117<...>-25108 ( 24827) [001] .... 24574.611518: binder_transaction_received: transaction=1670915
87118<...>-24151 ( 24151) [000] .... 24574.611527: binder_transaction: transaction=1670916 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
87119<...>-24151 ( 24151) [000] d..4 24574.611538: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
87120<...>-24151 ( 24151) [000] d..5 24574.611572: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=003
87121          <idle>-0     (-----) [003] .n.1 24574.611581: cpu_idle: state=4294967295 cpu_id=3
87122          <idle>-0     (-----) [003] d..2 24574.611595: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
87123  Binder:23896_4-24423 (23896) [003] .... 24574.611604: binder_transaction_received: transaction=1670916
87124  Binder:23896_4-24423 (23896) [003] d..1 24574.611642: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
87125<...>-25108 ( 24827) [001] d..2 24574.611643: sched_switch: prev_comm=UiThreadHelper prev_pid=25108 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
87126          <idle>-0     (-----) [001] d..1 24574.611661: cpu_idle: state=0 cpu_id=1
87127  Binder:23896_4-24423 (23896) [003] d..2 24574.611672: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
87128          <idle>-0     (-----) [001] .n.1 24574.611679: cpu_idle: state=4294967295 cpu_id=1
87129          <idle>-0     (-----) [001] d..2 24574.611691: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
87130  Binder:23896_4-24423 (23896) [003] d..2 24574.611715: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
87131          <idle>-0     (-----) [003] d..1 24574.611731: cpu_idle: state=0 cpu_id=3
87132<...>-24151 ( 24151) [000] d..3 24574.611781: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=006
87133  appEventThread-23905 (23896) [001] d..2 24574.611781: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
87134          <idle>-0     (-----) [001] d..1 24574.611794: cpu_idle: state=0 cpu_id=1
87135<...>-24151 ( 24151) [000] d..4 24574.611818: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=001
87136          <idle>-0     (-----) [001] .n.1 24574.611823: cpu_idle: state=4294967295 cpu_id=1
87137<...>-24151 ( 24151) [000] d.h3 24574.611871: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
87138          <idle>-0     (-----) [001] d..2 24574.611874: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
87139          <idle>-0     (-----) [004] dnh2 24574.611891: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
87140          <idle>-0     (-----) [004] .n.1 24574.611895: cpu_idle: state=4294967295 cpu_id=4
87141          <idle>-0     (-----) [004] d..2 24574.611899: 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
87142         sugov:4-560   (  560) [004] d..2 24574.611909: 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
87143          <idle>-0     (-----) [004] d..1 24574.611914: cpu_idle: state=0 cpu_id=4
87144    RenderThread-24437 (24151) [001] d..2 24574.611960: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
87145          <idle>-0     (-----) [001] d..1 24574.611972: cpu_idle: state=0 cpu_id=1
87146<...>-24151 ( 24151) [000] d..2 24574.612147: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87147          <idle>-0     (-----) [000] d..1 24574.612160: cpu_idle: state=0 cpu_id=0
87148    RenderThread-25194 (24827) [005] d..2 24574.612931: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
87149          <idle>-0     (-----) [005] d..1 24574.612946: cpu_idle: state=0 cpu_id=5
87150          <idle>-0     (-----) [005] d.h2 24574.613022: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
87151          <idle>-0     (-----) [000] d.h2 24574.613056: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
87152          <idle>-0     (-----) [000] dnh2 24574.613063: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
87153          <idle>-0     (-----) [000] .n.1 24574.613098: cpu_idle: state=4294967295 cpu_id=0
87154          <idle>-0     (-----) [005] d.h3 24574.613100: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
87155          <idle>-0     (-----) [000] d..2 24574.613107: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
87156          <idle>-0     (-----) [005] d.h4 24574.613112: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
87157          <idle>-0     (-----) [005] d.h3 24574.613114: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
87158          <idle>-0     (-----) [004] .n.1 24574.613117: cpu_idle: state=4294967295 cpu_id=4
87159          <idle>-0     (-----) [004] d..2 24574.613123: 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
87160          <idle>-0     (-----) [005] ...1 24574.613128: cpu_idle: state=4294967295 cpu_id=5
87161         sugov:4-560   (  560) [004] d..2 24574.613133: 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
87162          <idle>-0     (-----) [005] d..1 24574.613134: cpu_idle: state=0 cpu_id=5
87163          <idle>-0     (-----) [001] dnh2 24574.613138: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
87164          <idle>-0     (-----) [004] d..1 24574.613138: cpu_idle: state=0 cpu_id=4
87165          <idle>-0     (-----) [001] .n.1 24574.613145: cpu_idle: state=4294967295 cpu_id=1
87166          <idle>-0     (-----) [001] d..2 24574.613155: 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
87167         sugov:0-559   (  559) [001] d..2 24574.613183: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
87168          <idle>-0     (-----) [001] d..1 24574.613192: cpu_idle: state=0 cpu_id=1
87169    RenderThread-25194 (24827) [000] .... 24574.613591: binder_transaction: transaction=1670917 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
87170    RenderThread-25194 (24827) [000] ...2 24574.613610: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
87171    RenderThread-25194 (24827) [000] d..4 24574.613616: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=003
87172          <idle>-0     (-----) [003] ...1 24574.613632: cpu_idle: state=4294967295 cpu_id=3
87173          <idle>-0     (-----) [003] d..1 24574.613637: cpu_idle: state=0 cpu_id=3
87174    RenderThread-25194 (24827) [000] dn.5 24574.613646: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
87175    RenderThread-25194 (24827) [000] d..2 24574.613658: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
87176  Binder:23896_4-24423 (23896) [000] .... 24574.613670: binder_transaction_received: transaction=1670917
87177  Binder:23896_4-24423 (23896) [000] .... 24574.613898: binder_transaction: transaction=1670918 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
87178  Binder:23896_4-24423 (23896) [000] .... 24574.613908: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
87179  Binder:23896_4-24423 (23896) [000] d..2 24574.613967: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
87180    RenderThread-25194 (24827) [000] .... 24574.613977: binder_transaction_received: transaction=1670918
87181    RenderThread-25194 (24827) [000] d..2 24574.614120: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87182          <idle>-0     (-----) [000] d..1 24574.614133: cpu_idle: state=0 cpu_id=0
87183          <idle>-0     (-----) [000] d.s2 24574.614249: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
87184<...>-25296 ( 24741) [002] d.s2 24574.614263: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
87185          <idle>-0     (-----) [000] dns3 24574.614270: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
87186<...>-25296 ( 24741) [002] d.s3 24574.614314: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
87187<...>-25296 ( 24741) [002] d.s2 24574.614324: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
87188<...>-25296 ( 24741) [002] dns3 24574.614351: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
87189<...>-25296 ( 24741) [002] d..2 24574.614368: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=R+ ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
87190     kworker/2:0-12895 (12895) [002] d..2 24574.614408: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=lowpool[3] next_pid=25296 next_prio=130
87191          <idle>-0     (-----) [000] dnH6 24574.614411: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
87192          <idle>-0     (-----) [000] dnH7 24574.614444: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
87193          <idle>-0     (-----) [003] .n.1 24574.614448: cpu_idle: state=4294967295 cpu_id=3
87194          <idle>-0     (-----) [000] dnH6 24574.614453: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
87195          <idle>-0     (-----) [003] d..2 24574.614462: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
87196          <idle>-0     (-----) [000] dnH7 24574.614474: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
87197          <idle>-0     (-----) [001] .n.1 24574.614480: cpu_idle: state=4294967295 cpu_id=1
87198          <idle>-0     (-----) [001] d..2 24574.614491: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
87199          <idle>-0     (-----) [000] .n.1 24574.614521: cpu_idle: state=4294967295 cpu_id=0
87200          <idle>-0     (-----) [000] d..2 24574.614535: 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
87201  crtc_event:111-254   (  254) [003] d..2 24574.614539: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
87202     rcu_preempt-7     (    7) [000] d..2 24574.614577: 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
87203          <idle>-0     (-----) [000] d..1 24574.614590: cpu_idle: state=0 cpu_id=0
87204  kworker/u16:10-23868 (23868) [003] d..2 24574.614628: 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
87205          <idle>-0     (-----) [003] d..1 24574.614639: cpu_idle: state=0 cpu_id=3
87206 crtc_commit:111-253   (  253) [001] d..2 24574.614738: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
87207          <idle>-0     (-----) [001] d..1 24574.614747: cpu_idle: state=0 cpu_id=1
87208<...>-25296 ( 24741) [002] .... 24574.615027: binder_transaction: transaction=1670919 dest_node=1670903 dest_proc=24827 dest_thread=0 reply=0 flags=0x11 code=0x1
87209<...>-25296 ( 24741) [002] d..4 24574.615043: sched_waking: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=002
87210          <idle>-0     (-----) [005] dnh2 24574.615097: sched_wakeup: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=005
87211          <idle>-0     (-----) [005] .n.1 24574.615139: cpu_idle: state=4294967295 cpu_id=5
87212<...>-25296 ( 24741) [002] d.h5 24574.615141: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
87213          <idle>-0     (-----) [005] d..2 24574.615148: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24827_4 next_pid=25554 next_prio=120
87214<...>-25296 ( 24741) [002] d.h5 24574.615155: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
87215          <idle>-0     (-----) [004] dnh2 24574.615161: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
87216          <idle>-0     (-----) [004] .n.1 24574.615165: cpu_idle: state=4294967295 cpu_id=4
87217          <idle>-0     (-----) [004] d..2 24574.615170: 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
87218<...>-25296 ( 24741) [002] d.h6 24574.615171: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
87219          <idle>-0     (-----) [001] .n.1 24574.615176: cpu_idle: state=4294967295 cpu_id=1
87220<...>-25554 ( 24827) [005] .... 24574.615181: binder_transaction_received: transaction=1670919
87221         sugov:4-560   (  560) [004] d..2 24574.615181: 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
87222          <idle>-0     (-----) [001] d..2 24574.615183: 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
87223          <idle>-0     (-----) [004] d..1 24574.615188: cpu_idle: state=0 cpu_id=4
87224         sugov:0-559   (  559) [001] d..2 24574.615203: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
87225          <idle>-0     (-----) [001] d..1 24574.615210: cpu_idle: state=0 cpu_id=1
87226<...>-25296 ( 24741) [002] d..1 24574.615470: sched_waking: comm=lowpool[8] pid=27168 prio=130 target_cpu=001
87227<...>-25296 ( 24741) [002] d..2 24574.615524: sched_wakeup: comm=lowpool[8] pid=27168 prio=130 target_cpu=000
87228          <idle>-0     (-----) [000] .n.1 24574.615529: cpu_idle: state=4294967295 cpu_id=0
87229          <idle>-0     (-----) [000] d..2 24574.615542: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
87230<...>-25554 ( 24827) [005] d..2 24574.615789: sched_switch: prev_comm=Binder:24827_4 prev_pid=25554 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
87231          <idle>-0     (-----) [005] d..1 24574.615802: cpu_idle: state=0 cpu_id=5
87232<...>-25296 ( 24741) [002] d..2 24574.615894: sched_switch: prev_comm=lowpool[3] prev_pid=25296 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87233          <idle>-0     (-----) [002] d..1 24574.615940: cpu_idle: state=0 cpu_id=2
87234<...>-27168 ( 24741) [000] d.h2 24574.616342: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
87235<...>-27168 ( 24741) [000] d.h3 24574.616385: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
87236          <idle>-0     (-----) [003] .n.1 24574.616390: cpu_idle: state=4294967295 cpu_id=3
87237          <idle>-0     (-----) [003] d..2 24574.616400: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
87238 kgsl_worker_thr-246   (  246) [003] d..2 24574.616492: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
87239 kgsl_worker_thr-246   (  246) [003] d..3 24574.616511: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
87240 kgsl_worker_thr-246   (  246) [003] d..2 24574.616685: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
87241<...>-27168 ( 24741) [000] d.h4 24574.616706: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
87242<...>-27168 ( 24741) [000] d.h5 24574.616726: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
87243          <idle>-0     (-----) [001] .n.1 24574.616731: cpu_idle: state=4294967295 cpu_id=1
87244          <idle>-0     (-----) [001] d..2 24574.616738: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
87245<...>-27168 ( 24741) [000] .... 24574.616870: binder_transaction: transaction=1670920 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x24
87246 crtc_commit:111-253   (  253) [001] d..2 24574.616886: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
87247          <idle>-0     (-----) [001] d..1 24574.616894: cpu_idle: state=0 cpu_id=1
87248<...>-27168 ( 24741) [000] d..4 24574.616901: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=001
87249<...>-27168 ( 24741) [000] dn.5 24574.616928: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=000
87250<...>-27168 ( 24741) [000] dnh7 24574.617013: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
87251<...>-27168 ( 24741) [000] dnh8 24574.617040: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
87252          <idle>-0     (-----) [002] .n.1 24574.617049: cpu_idle: state=4294967295 cpu_id=2
87253          <idle>-0     (-----) [002] d..2 24574.617062: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
87254<...>-27168 ( 24741) [000] d..2 24574.617068: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
87255<...>-12589 ( 23968) [000] .... 24574.617083: binder_transaction_received: transaction=1670920
87256  crtc_event:111-254   (  254) [002] d..2 24574.617098: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87257          <idle>-0     (-----) [002] d..1 24574.617110: cpu_idle: state=0 cpu_id=2
87258  kworker/u16:10-23868 (23868) [003] d..2 24574.617341: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
87259<...>-27168 ( 24741) [003] d..2 24574.617370: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
87260          <idle>-0     (-----) [003] d..1 24574.617386: cpu_idle: state=0 cpu_id=3
87261<...>-12589 ( 23968) [000] d.s2 24574.617632: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
87262          <idle>-0     (-----) [001] d.H3 24574.617665: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
87263<...>-12589 ( 23968) [000] d.s3 24574.617680: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
87264          <idle>-0     (-----) [001] dnH3 24574.617680: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
87265          <idle>-0     (-----) [004] dnh2 24574.617686: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
87266          <idle>-0     (-----) [004] .n.1 24574.617689: cpu_idle: state=4294967295 cpu_id=4
87267          <idle>-0     (-----) [004] d..2 24574.617695: 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
87268          <idle>-0     (-----) [001] dnH4 24574.617704: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
87269         sugov:4-560   (  560) [004] d..2 24574.617709: 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
87270          <idle>-0     (-----) [003] .n.1 24574.617712: cpu_idle: state=4294967295 cpu_id=3
87271          <idle>-0     (-----) [004] d..1 24574.617714: cpu_idle: state=0 cpu_id=4
87272          <idle>-0     (-----) [001] dns3 24574.617717: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
87273          <idle>-0     (-----) [003] d..2 24574.617724: 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
87274          <idle>-0     (-----) [001] dns4 24574.617731: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
87275          <idle>-0     (-----) [001] dns2 24574.617735: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
87276          <idle>-0     (-----) [002] .n.1 24574.617739: cpu_idle: state=4294967295 cpu_id=2
87277          <idle>-0     (-----) [002] d..2 24574.617750: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
87278         sugov:0-559   (  559) [003] .... 24574.617769: clk_set_rate: pwrcl_clk 1689600000
87279          <idle>-0     (-----) [001] dns3 24574.617771: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
87280  crtc_event:111-254   (  254) [002] d..2 24574.617780: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87281          <idle>-0     (-----) [002] d..1 24574.617791: cpu_idle: state=0 cpu_id=2
87282          <idle>-0     (-----) [001] .n.1 24574.617792: cpu_idle: state=4294967295 cpu_id=1
87283          <idle>-0     (-----) [001] d..2 24574.617803: 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
87284         sugov:0-559   (  559) [003] d..2 24574.617936: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=rcu_sched next_pid=8 next_prio=120
87285       rcu_sched-8     (    8) [003] d..2 24574.617959: sched_waking: comm=rcuos/2 pid=30 prio=120 target_cpu=001
87286<...>-12589 ( 23968) [000] .... 24574.617982: binder_transaction: transaction=1670921 dest_node=0 dest_proc=24741 dest_thread=27168 reply=1 flags=0x0 code=0x0
87287<...>-12589 ( 23968) [000] d..2 24574.617994: sched_waking: comm=lowpool[8] pid=27168 prio=130 target_cpu=003
87288       rcu_sched-8     (    8) [003] d..3 24574.618013: sched_wakeup: comm=rcuos/2 pid=30 prio=120 target_cpu=003
87289  kworker/u16:10-23868 (23868) [001] d..2 24574.618022: 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
87290<...>-12589 ( 23968) [000] d..3 24574.618031: sched_wakeup: comm=lowpool[8] pid=27168 prio=130 target_cpu=000
87291          <idle>-0     (-----) [001] d..1 24574.618034: cpu_idle: state=0 cpu_id=1
87292       rcu_sched-8     (    8) [003] d..2 24574.618036: 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
87293<...>-30 ( 30) [003] d.s4 24574.618086: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
87294<...>-12589 ( 23968) [000] d..2 24574.618090: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=27168 next_prio=130
87295<...>-27168 ( 24741) [000] .... 24574.618099: binder_transaction_received: transaction=1670921
87296<...>-30 ( 30) [003] d.s5 24574.618111: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
87297          <idle>-0     (-----) [002] .n.1 24574.618115: cpu_idle: state=4294967295 cpu_id=2
87298          <idle>-0     (-----) [002] d..2 24574.618125: 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
87299<...>-30 ( 30) [003] d..2 24574.618135: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
87300         sugov:0-559   (  559) [002] .... 24574.618150: clk_set_rate: cpu3_pwrcl_clk 902400000
87301<...>-30 ( 30) [003] d..3 24574.618151: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
87302<...>-30 ( 30) [003] d..2 24574.618162: sched_switch: prev_comm=rcuos/2 prev_pid=30 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
87303         sugov:0-559   (  559) [002] .... 24574.618163: clk_set_rate: cpu2_pwrcl_clk 902400000
87304         sugov:0-559   (  559) [002] .... 24574.618172: clk_set_rate: cpu1_pwrcl_clk 902400000
87305         sugov:0-559   (  559) [002] .... 24574.618180: clk_set_rate: cpu0_pwrcl_clk 1689600000
87306       rcu_sched-8     (    8) [003] d..2 24574.618188: 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
87307         sugov:0-559   (  559) [002] d..1 24574.618194: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
87308          <idle>-0     (-----) [003] d..1 24574.618203: cpu_idle: state=0 cpu_id=3
87309         sugov:0-559   (  559) [002] d..2 24574.618208: sched_blocked_reason: pid=23868 iowait=0 caller=clk_get_rate+0x214/0x218
87310         sugov:0-559   (  559) [002] d..2 24574.618219: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
87311         sugov:0-559   (  559) [002] .... 24574.618224: cpu_frequency: state=1689600 cpu_id=0
87312          <idle>-0     (-----) [001] .n.1 24574.618225: cpu_idle: state=4294967295 cpu_id=1
87313          <idle>-0     (-----) [001] d..2 24574.618238: 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
87314         sugov:0-559   (  559) [002] .... 24574.618255: cpu_frequency: state=1689600 cpu_id=1
87315  kworker/u16:10-23868 (23868) [001] .... 24574.618257: clk_set_rate: l3_cluster1_vote_clk 576000000
87316         sugov:0-559   (  559) [002] .... 24574.618259: cpu_frequency: state=1689600 cpu_id=2
87317         sugov:0-559   (  559) [002] .... 24574.618263: cpu_frequency: state=1689600 cpu_id=3
87318         sugov:0-559   (  559) [002] d..2 24574.618285: 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
87319          <idle>-0     (-----) [002] d..1 24574.618294: cpu_idle: state=0 cpu_id=2
87320<...>-27168 ( 24741) [000] d..2 24574.618383: sched_switch: prev_comm=lowpool[8] prev_pid=27168 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87321          <idle>-0     (-----) [000] d..1 24574.618393: cpu_idle: state=0 cpu_id=0
87322  kworker/u16:10-23868 (23868) [001] d..2 24574.618520: 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
87323          <idle>-0     (-----) [001] d..1 24574.618528: cpu_idle: state=0 cpu_id=1
87324          <idle>-0     (-----) [003] d.s3 24574.618554: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
87325          <idle>-0     (-----) [003] d.s4 24574.618562: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
87326          <idle>-0     (-----) [003] d.s4 24574.618569: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
87327          <idle>-0     (-----) [001] .n.1 24574.618574: cpu_idle: state=4294967295 cpu_id=1
87328          <idle>-0     (-----) [003] ...1 24574.618575: cpu_idle: state=4294967295 cpu_id=3
87329          <idle>-0     (-----) [003] d..1 24574.618578: cpu_idle: state=0 cpu_id=3
87330          <idle>-0     (-----) [001] d..2 24574.618581: 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
87331  kworker/u16:10-23868 (23868) [001] d.h1 24574.618599: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
87332  kworker/u16:10-23868 (23868) [001] d.h2 24574.618623: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
87333          <idle>-0     (-----) [002] .n.1 24574.618629: cpu_idle: state=4294967295 cpu_id=2
87334          <idle>-0     (-----) [002] d..2 24574.618636: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
87335        DispSync-23904 (23896) [002] d..1 24574.618691: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
87336  kworker/u16:10-23868 (23868) [001] d..2 24574.618696: 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
87337          <idle>-0     (-----) [001] d..1 24574.618706: cpu_idle: state=0 cpu_id=1
87338        DispSync-23904 (23896) [002] d..2 24574.618712: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
87339          <idle>-0     (-----) [001] .n.1 24574.618717: cpu_idle: state=4294967295 cpu_id=1
87340          <idle>-0     (-----) [001] d..2 24574.618724: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
87341        DispSync-23904 (23896) [002] d..2 24574.618740: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87342          <idle>-0     (-----) [002] d..1 24574.618748: cpu_idle: state=0 cpu_id=2
87343  appEventThread-23905 (23896) [001] d..3 24574.618805: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=005
87344  appEventThread-23905 (23896) [001] d..4 24574.618834: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
87345          <idle>-0     (-----) [000] .n.1 24574.618841: cpu_idle: state=4294967295 cpu_id=0
87346  appEventThread-23905 (23896) [001] d.h3 24574.618873: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
87347          <idle>-0     (-----) [000] d..2 24574.618875: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
87348  appEventThread-23905 (23896) [001] d.h3 24574.618882: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
87349          <idle>-0     (-----) [004] dnh2 24574.618889: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
87350  appEventThread-23905 (23896) [001] d.h4 24574.618893: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
87351          <idle>-0     (-----) [004] .n.1 24574.618893: cpu_idle: state=4294967295 cpu_id=4
87352          <idle>-0     (-----) [004] d..2 24574.618898: 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
87353          <idle>-0     (-----) [002] .n.1 24574.618898: cpu_idle: state=4294967295 cpu_id=2
87354          <idle>-0     (-----) [002] d..2 24574.618904: 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
87355         sugov:4-560   (  560) [004] d..2 24574.618907: 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
87356          <idle>-0     (-----) [004] d..1 24574.618912: cpu_idle: state=0 cpu_id=4
87357  appEventThread-23905 (23896) [001] d..3 24574.618913: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
87358         sugov:0-559   (  559) [002] .... 24574.618921: clk_set_rate: pwrcl_clk 1766400000
87359         sugov:0-559   (  559) [002] .... 24574.618928: clk_set_rate: cpu3_pwrcl_clk 1689600000
87360  appEventThread-23905 (23896) [001] d..4 24574.618932: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
87361         sugov:0-559   (  559) [002] .... 24574.618937: clk_set_rate: cpu2_pwrcl_clk 1689600000
87362          <idle>-0     (-----) [003] .n.1 24574.618937: cpu_idle: state=4294967295 cpu_id=3
87363         sugov:0-559   (  559) [002] .... 24574.618944: clk_set_rate: cpu1_pwrcl_clk 1689600000
87364          <idle>-0     (-----) [003] d..2 24574.618946: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
87365         sugov:0-559   (  559) [002] .... 24574.618952: clk_set_rate: cpu0_pwrcl_clk 1766400000
87366         sugov:0-559   (  559) [002] .... 24574.618960: cpu_frequency: state=1766400 cpu_id=0
87367  appEventThread-23905 (23896) [001] d..2 24574.618961: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
87368          <idle>-0     (-----) [001] d..1 24574.618974: cpu_idle: state=0 cpu_id=1
87369         sugov:0-559   (  559) [002] d..2 24574.619102: 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
87370          <idle>-0     (-----) [002] d..1 24574.619110: cpu_idle: state=0 cpu_id=2
87371<...>-24151 ( 24151) [003] d.s2 24574.619129: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
87372<...>-24151 ( 24151) [003] d.s3 24574.619145: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
87373          <idle>-0     (-----) [002] .n.1 24574.619150: cpu_idle: state=4294967295 cpu_id=2
87374          <idle>-0     (-----) [002] d..2 24574.619157: 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
87375         sugov:0-559   (  559) [002] .... 24574.619163: cpu_frequency: state=1766400 cpu_id=1
87376         sugov:0-559   (  559) [002] .... 24574.619167: cpu_frequency: state=1766400 cpu_id=2
87377         sugov:0-559   (  559) [002] .... 24574.619169: cpu_frequency: state=1766400 cpu_id=3
87378         sugov:0-559   (  559) [002] d..2 24574.619182: 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
87379          <idle>-0     (-----) [002] d..1 24574.619187: cpu_idle: state=0 cpu_id=2
87380<...>-24151 ( 24151) [003] .... 24574.619265: binder_transaction: transaction=1670922 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
87381 s.nexuslauncher-24827 (24827) [000] .... 24574.619269: binder_transaction: transaction=1670923 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
87382<...>-24151 ( 24151) [003] d..4 24574.619273: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
87383<...>-24151 ( 24151) [003] d..5 24574.619298: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
87384          <idle>-0     (-----) [001] .n.1 24574.619304: cpu_idle: state=4294967295 cpu_id=1
87385 s.nexuslauncher-24827 (24827) [000] d..4 24574.619305: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
87386          <idle>-0     (-----) [001] d..2 24574.619318: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
87387 s.nexuslauncher-24827 (24827) [000] d..5 24574.619337: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
87388          <idle>-0     (-----) [002] .n.1 24574.619341: cpu_idle: state=4294967295 cpu_id=2
87389  Binder:23896_4-24423 (23896) [001] .... 24574.619344: binder_transaction_received: transaction=1670922
87390          <idle>-0     (-----) [002] d..2 24574.619350: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
87391  Binder:23896_5-25989 (23896) [002] .... 24574.619359: binder_transaction_received: transaction=1670923
87392  Binder:23896_4-24423 (23896) [001] d..1 24574.619368: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
87393 s.nexuslauncher-24827 (24827) [000] d..3 24574.619377: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
87394  Binder:23896_4-24423 (23896) [001] dn.2 24574.619377: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
87395  Binder:23896_4-24423 (23896) [001] d..2 24574.619384: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
87396  appEventThread-23905 (23896) [001] d..2 24574.619399: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
87397  Binder:23896_4-24423 (23896) [001] d..1 24574.619402: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
87398 s.nexuslauncher-24827 (24827) [000] d.h3 24574.619441: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
87399          <idle>-0     (-----) [005] dnh2 24574.619442: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=005
87400  Binder:23896_5-25989 (23896) [002] d..2 24574.619442: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87401          <idle>-0     (-----) [005] .n.1 24574.619448: cpu_idle: state=4294967295 cpu_id=5
87402          <idle>-0     (-----) [002] d..1 24574.619449: cpu_idle: state=0 cpu_id=2
87403  Binder:23896_4-24423 (23896) [001] d..2 24574.619454: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
87404          <idle>-0     (-----) [005] d..2 24574.619456: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
87405          <idle>-0     (-----) [004] dnh2 24574.619459: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
87406          <idle>-0     (-----) [002] .n.1 24574.619459: cpu_idle: state=4294967295 cpu_id=2
87407          <idle>-0     (-----) [004] .n.1 24574.619462: cpu_idle: state=4294967295 cpu_id=4
87408          <idle>-0     (-----) [002] d..2 24574.619465: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
87409          <idle>-0     (-----) [004] d..2 24574.619467: 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
87410         sugov:4-560   (  560) [004] d..2 24574.619477: 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
87411  Binder:23896_4-24423 (23896) [001] d..2 24574.619479: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
87412          <idle>-0     (-----) [004] d..1 24574.619482: cpu_idle: state=0 cpu_id=4
87413          <idle>-0     (-----) [001] d..1 24574.619489: cpu_idle: state=0 cpu_id=1
87414    RenderThread-25194 (24827) [005] d..2 24574.619491: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
87415  appEventThread-23905 (23896) [002] d..1 24574.619493: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
87416          <idle>-0     (-----) [005] d..1 24574.619499: cpu_idle: state=0 cpu_id=5
87417  appEventThread-23905 (23896) [002] d..2 24574.619514: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
87418          <idle>-0     (-----) [001] .n.1 24574.619520: cpu_idle: state=4294967295 cpu_id=1
87419          <idle>-0     (-----) [001] d..2 24574.619528: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
87420  appEventThread-23905 (23896) [002] d..2 24574.619534: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87421  Binder:23896_5-25989 (23896) [001] d..1 24574.619535: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
87422          <idle>-0     (-----) [002] d..1 24574.619541: cpu_idle: state=0 cpu_id=2
87423  Binder:23896_5-25989 (23896) [001] d..2 24574.619546: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
87424          <idle>-0     (-----) [002] .n.1 24574.619551: cpu_idle: state=4294967295 cpu_id=2
87425          <idle>-0     (-----) [002] d..2 24574.619557: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
87426  Binder:23896_5-25989 (23896) [001] d..2 24574.619571: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
87427  appEventThread-23905 (23896) [002] d..2 24574.619578: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87428          <idle>-0     (-----) [001] d..1 24574.619580: cpu_idle: state=0 cpu_id=1
87429          <idle>-0     (-----) [002] d..1 24574.619584: cpu_idle: state=0 cpu_id=2
87430<...>-24151 ( 24151) [003] d..3 24574.619912: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=001
87431<...>-24151 ( 24151) [003] d..4 24574.619933: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=001
87432          <idle>-0     (-----) [001] .n.1 24574.619939: cpu_idle: state=4294967295 cpu_id=1
87433          <idle>-0     (-----) [001] d..2 24574.619947: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
87434<...>-24151 ( 24151) [003] d..2 24574.619960: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
87435          <idle>-0     (-----) [003] d..1 24574.619971: cpu_idle: state=0 cpu_id=3
87436    RenderThread-24437 (24151) [001] d..1 24574.620230: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
87437    RenderThread-24437 (24151) [001] d..2 24574.620254: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
87438          <idle>-0     (-----) [002] .n.1 24574.620259: cpu_idle: state=4294967295 cpu_id=2
87439          <idle>-0     (-----) [002] d..2 24574.620266: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
87440<...>-24151 ( 24151) [002] d..2 24574.620340: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87441          <idle>-0     (-----) [002] d..1 24574.620350: cpu_idle: state=0 cpu_id=2
87442    RenderThread-24437 (24151) [001] .... 24574.620352: binder_transaction: transaction=1670924 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
87443    RenderThread-24437 (24151) [001] d..4 24574.620360: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
87444    RenderThread-24437 (24151) [001] dn.5 24574.620370: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
87445    RenderThread-24437 (24151) [001] d..2 24574.620378: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
87446  Binder:23896_5-25989 (23896) [001] .... 24574.620385: binder_transaction_received: transaction=1670924
87447  Binder:23896_5-25989 (23896) [001] .... 24574.620469: binder_transaction: transaction=1670925 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
87448  Binder:23896_5-25989 (23896) [001] d..2 24574.620510: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
87449    RenderThread-24437 (24151) [001] .... 24574.620517: binder_transaction_received: transaction=1670925
87450 s.nexuslauncher-24827 (24827) [000] .... 24574.620705: binder_transaction: transaction=1670926 dest_node=1670509 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x1
87451 s.nexuslauncher-24827 (24827) [000] ...2 24574.620715: binder_set_priority: proc=23968 thread=12589 old=120 => new=110 desired=110
87452 s.nexuslauncher-24827 (24827) [000] d..4 24574.620718: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=000
87453 s.nexuslauncher-24827 (24827) [000] dn.5 24574.620730: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=000
87454 s.nexuslauncher-24827 (24827) [000] d..2 24574.620738: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
87455<...>-12589 ( 23968) [000] .... 24574.620745: binder_transaction_received: transaction=1670926
87456<...>-12589 ( 23968) [000] d.s1 24574.620914: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
87457<...>-12589 ( 23968) [000] d.s2 24574.620949: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
87458    RenderThread-24437 (24151) [001] d..2 24574.620961: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
87459     rcu_preempt-7     (    7) [001] d..2 24574.620973: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
87460     rcu_preempt-7     (    7) [001] d..3 24574.620994: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
87461     rcu_preempt-7     (    7) [001] d..2 24574.621007: 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
87462         rcuop/2-29    (   29) [001] d..2 24574.621016: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
87463         rcuop/2-29    (   29) [001] d..3 24574.621049: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
87464          <idle>-0     (-----) [002] .n.1 24574.621054: cpu_idle: state=4294967295 cpu_id=2
87465         rcuop/2-29    (   29) [001] d..2 24574.621059: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
87466          <idle>-0     (-----) [002] d..2 24574.621064: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/3 next_pid=37 next_prio=120
87467         rcuop/3-37    (   37) [002] d..2 24574.621101: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
87468 s.nexuslauncher-24827 (24827) [002] d..2 24574.621123: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87469          <idle>-0     (-----) [002] d..1 24574.621130: cpu_idle: state=0 cpu_id=2
87470<...>-12589 ( 23968) [000] d..3 24574.621416: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=002
87471<...>-12589 ( 23968) [000] d..4 24574.621445: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=002
87472          <idle>-0     (-----) [002] .n.1 24574.621449: cpu_idle: state=4294967295 cpu_id=2
87473          <idle>-0     (-----) [002] d..2 24574.621459: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
87474<...>-24041 ( 23968) [002] d..1 24574.621507: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=000
87475<...>-12589 ( 23968) [000] d..2 24574.621522: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87476<...>-24041 ( 23968) [002] d..2 24574.621539: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=000
87477          <idle>-0     (-----) [000] d..2 24574.621545: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
87478<...>-12589 ( 23968) [000] d..3 24574.621599: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=003
87479<...>-24041 ( 23968) [002] .... 24574.621619: binder_transaction: transaction=1670927 dest_node=1271137 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
87480<...>-12589 ( 23968) [000] d..4 24574.621622: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=003
87481<...>-24041 ( 23968) [002] d..4 24574.621626: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
87482          <idle>-0     (-----) [003] .n.1 24574.621628: cpu_idle: state=4294967295 cpu_id=3
87483          <idle>-0     (-----) [003] d..2 24574.621639: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
87484<...>-24041 ( 23968) [002] d.h5 24574.621685: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
87485          <idle>-0     (-----) [005] dnh2 24574.621686: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
87486          <idle>-0     (-----) [005] .n.1 24574.621690: cpu_idle: state=4294967295 cpu_id=5
87487          <idle>-0     (-----) [005] d..2 24574.621696: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
87488          <idle>-0     (-----) [004] dnh2 24574.621702: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
87489  Binder:23896_5-25989 (23896) [005] .... 24574.621702: binder_transaction_received: transaction=1670927
87490          <idle>-0     (-----) [004] .n.1 24574.621705: cpu_idle: state=4294967295 cpu_id=4
87491          <idle>-0     (-----) [004] d..2 24574.621710: 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
87492         sugov:4-560   (  560) [004] d..2 24574.621720: 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
87493          <idle>-0     (-----) [004] d..1 24574.621724: cpu_idle: state=0 cpu_id=4
87494<...>-12589 ( 23968) [000] d..3 24574.621726: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=000
87495  Binder:23896_5-25989 (23896) [005] d..1 24574.621730: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
87496<...>-24003 ( 23968) [003] dnh1 24574.621753: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
87497<...>-24003 ( 23968) [003] d..2 24574.621764: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
87498          <idle>-0     (-----) [006] dnh2 24574.621769: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=006
87499  Binder:23896_5-25989 (23896) [005] d..2 24574.621804: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
87500<...>-24041 ( 23968) [002] d..2 24574.621805: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87501          <idle>-0     (-----) [006] .n.1 24574.621805: cpu_idle: state=4294967295 cpu_id=6
87502   sfEventThread-23906 (23896) [003] d..2 24574.621812: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=android.display next_pid=24003 next_prio=117
87503          <idle>-0     (-----) [006] d..2 24574.621814: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
87504          <idle>-0     (-----) [005] d..1 24574.621815: cpu_idle: state=0 cpu_id=5
87505          <idle>-0     (-----) [002] d..1 24574.621815: cpu_idle: state=0 cpu_id=2
87506<...>-12589 ( 23968) [000] d..3 24574.621833: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=006
87507<...>-12589 ( 23968) [000] d..4 24574.621863: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=002
87508          <idle>-0     (-----) [002] .n.1 24574.621868: cpu_idle: state=4294967295 cpu_id=2
87509<...>-24003 ( 23968) [003] d..1 24574.621876: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=006
87510          <idle>-0     (-----) [002] d..2 24574.621895: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
87511<...>-23993 ( 23968) [006] d..2 24574.621908: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
87512          <idle>-0     (-----) [006] d..1 24574.621919: cpu_idle: state=0 cpu_id=6
87513          <idle>-0     (-----) [006] dnh2 24574.621933: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=006
87514          <idle>-0     (-----) [006] .n.1 24574.621937: cpu_idle: state=4294967295 cpu_id=6
87515          <idle>-0     (-----) [006] d..2 24574.621945: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
87516<...>-24003 ( 23968) [003] d..2 24574.621960: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
87517          <idle>-0     (-----) [003] d..1 24574.621968: cpu_idle: state=0 cpu_id=3
87518<...>-23993 ( 23968) [006] .... 24574.622084: binder_transaction: transaction=1670928 dest_node=1303079 dest_proc=24827 dest_thread=0 reply=0 flags=0x11 code=0x2a
87519<...>-23968 ( 23968) [002] .... 24574.622099: binder_transaction: transaction=1670929 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x19
87520<...>-23993 ( 23968) [006] d..4 24574.622104: sched_waking: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=005
87521<...>-23968 ( 23968) [002] d..4 24574.622111: sched_waking: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=001
87522          <idle>-0     (-----) [003] dnh2 24574.622138: sched_wakeup: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=003
87523<...>-12589 ( 23968) [000] .... 24574.622152: binder_transaction: transaction=1670930 dest_node=1669080 dest_proc=13131 dest_thread=0 reply=0 flags=0x11 code=0x4
87524<...>-12589 ( 23968) [000] d..4 24574.622167: sched_waking: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=003
87525          <idle>-0     (-----) [003] .n.1 24574.622168: cpu_idle: state=4294967295 cpu_id=3
87526          <idle>-0     (-----) [007] dnh2 24574.622172: sched_wakeup: comm=Binder:24151_3 pid=24177 prio=120 target_cpu=007
87527          <idle>-0     (-----) [007] .n.1 24574.622176: cpu_idle: state=4294967295 cpu_id=7
87528<...>-23968 ( 23968) [002] d.h5 24574.622210: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
87529          <idle>-0     (-----) [007] d..2 24574.622211: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_3 next_pid=24177 next_prio=120
87530          <idle>-0     (-----) [003] d..2 24574.622212: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24827_4 next_pid=25554 next_prio=120
87531<...>-25554 ( 24827) [003] .... 24574.622220: binder_transaction_received: transaction=1670928
87532<...>-12589 ( 23968) [000] d..5 24574.622223: sched_wakeup: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=003
87533<...>-24177 ( 24151) [007] .... 24574.622225: binder_transaction_received: transaction=1670929
87534          <idle>-0     (-----) [004] dnh2 24574.622227: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
87535          <idle>-0     (-----) [004] .n.1 24574.622230: cpu_idle: state=4294967295 cpu_id=4
87536          <idle>-0     (-----) [004] d..2 24574.622235: 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
87537         sugov:4-560   (  560) [004] d..2 24574.622244: 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
87538          <idle>-0     (-----) [004] d..1 24574.622249: cpu_idle: state=0 cpu_id=4
87539<...>-12589 ( 23968) [000] d..3 24574.622268: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=003
87540<...>-23968 ( 23968) [002] d..2 24574.622287: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87541          <idle>-0     (-----) [002] d..1 24574.622298: cpu_idle: state=0 cpu_id=2
87542          <idle>-0     (-----) [005] dnh2 24574.622330: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=005
87543          <idle>-0     (-----) [005] .n.1 24574.622334: cpu_idle: state=4294967295 cpu_id=5
87544          <idle>-0     (-----) [005] d..2 24574.622342: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
87545<...>-23993 ( 23968) [006] d..2 24574.622353: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
87546<...>-12589 ( 23968) [000] d..3 24574.622362: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=002
87547          <idle>-0     (-----) [006] d..1 24574.622367: cpu_idle: state=0 cpu_id=6
87548<...>-24177 ( 24151) [007] d..3 24574.622374: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
87549<...>-12589 ( 23968) [000] d..4 24574.622376: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=002
87550          <idle>-0     (-----) [002] .n.1 24574.622382: cpu_idle: state=4294967295 cpu_id=2
87551          <idle>-0     (-----) [002] d..2 24574.622390: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
87552<...>-24003 ( 23968) [005] d..2 24574.622397: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
87553          <idle>-0     (-----) [005] d..1 24574.622408: cpu_idle: state=0 cpu_id=5
87554<...>-24177 ( 24151) [007] d..4 24574.622409: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
87555          <idle>-0     (-----) [006] .n.1 24574.622414: cpu_idle: state=4294967295 cpu_id=6
87556          <idle>-0     (-----) [006] d..2 24574.622446: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
87557<...>-25554 ( 24827) [003] d..2 24574.622461: sched_switch: prev_comm=Binder:24827_4 prev_pid=25554 prev_prio=120 prev_state=S ==> next_comm=Binder:13131_3 next_pid=13145 next_prio=120
87558<...>-23968 ( 23968) [002] .... 24574.622471: binder_transaction: transaction=1670931 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x19
87559           <...>-13145 (-----) [003] .... 24574.622474: binder_transaction_received: transaction=1670930
87560<...>-24177 ( 24151) [007] d..4 24574.622496: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=003
87561<...>-12589 ( 23968) [000] .... 24574.622505: binder_transaction: transaction=1670932 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
87562<...>-23968 ( 23968) [002] d..2 24574.622520: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87563<...>-12589 ( 23968) [000] ...2 24574.622529: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
87564          <idle>-0     (-----) [002] d..1 24574.622529: cpu_idle: state=0 cpu_id=2
87565<...>-24177 ( 24151) [007] .... 24574.622531: binder_transaction_received: transaction=1670931
87566<...>-12589 ( 23968) [000] d..4 24574.622533: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
87567           <...>-13145 (-----) [003] d.h1 24574.622539: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=003
87568<...>-12589 ( 23968) [000] d..5 24574.622553: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
87569<...>-12589 ( 23968) [000] d..2 24574.622597: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
87570          <idle>-0     (-----) [002] d.h2 24574.622602: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
87571  Binder:23896_5-25989 (23896) [000] .... 24574.622604: binder_transaction_received: transaction=1670932
87572          <idle>-0     (-----) [002] dnh3 24574.622613: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
87573          <idle>-0     (-----) [002] .n.1 24574.622619: cpu_idle: state=4294967295 cpu_id=2
87574          <idle>-0     (-----) [002] d..2 24574.622625: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
87575        DispSync-23904 (23896) [002] d..1 24574.622647: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
87576<...>-24177 ( 24151) [007] d..2 24574.622648: sched_switch: prev_comm=Binder:24151_3 prev_pid=24177 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
87577          <idle>-0     (-----) [007] d..1 24574.622664: cpu_idle: state=0 cpu_id=7
87578        DispSync-23904 (23896) [002] d..2 24574.622664: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
87579    RenderThread-24437 (24151) [001] d..2 24574.622681: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
87580        DispSync-23904 (23896) [002] d..2 24574.622688: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87581          <idle>-0     (-----) [002] d..1 24574.622698: cpu_idle: state=0 cpu_id=2
87582  Binder:23896_5-25989 (23896) [000] .... 24574.622719: binder_transaction: transaction=1670933 dest_node=0 dest_proc=23968 dest_thread=12589 reply=1 flags=0x0 code=0x0
87583  Binder:23896_5-25989 (23896) [000] d..2 24574.622723: sched_waking: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=000
87584  Binder:23896_5-25989 (23896) [000] d..3 24574.622735: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=110 target_cpu=000
87585  Binder:23896_5-25989 (23896) [000] .... 24574.622738: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
87586   sfEventThread-23906 (23896) [001] d..3 24574.622751: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
87587           <...>-13145 (-----) [003] d..3 24574.622769: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=007
87588  Binder:23896_5-25989 (23896) [000] d..2 24574.622778: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=110
87589   sfEventThread-23906 (23896) [001] d..4 24574.622779: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
87590<...>-12589 ( 23968) [000] .... 24574.622782: binder_transaction_received: transaction=1670933
87591          <idle>-0     (-----) [002] .n.1 24574.622784: cpu_idle: state=4294967295 cpu_id=2
87592          <idle>-0     (-----) [002] d..2 24574.622791: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
87593   sfEventThread-23906 (23896) [001] d..2 24574.622797: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
87594          <idle>-0     (-----) [007] dnh2 24574.622803: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=007
87595          <idle>-0     (-----) [007] .n.1 24574.622808: cpu_idle: state=4294967295 cpu_id=7
87596          <idle>-0     (-----) [007] d..2 24574.622817: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
87597<...>-12589 ( 23968) [000] d..1 24574.622821: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=002
87598<...>-12589 ( 23968) [000] d.h3 24574.622879: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
87599          <idle>-0     (-----) [005] dnh2 24574.622880: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=005
87600          <idle>-0     (-----) [005] .n.1 24574.622885: cpu_idle: state=4294967295 cpu_id=5
87601          <idle>-0     (-----) [005] d..2 24574.622893: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=110
87602          <idle>-0     (-----) [004] dnh2 24574.622896: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
87603          <idle>-0     (-----) [004] .n.1 24574.622899: cpu_idle: state=4294967295 cpu_id=4
87604          <idle>-0     (-----) [004] d..2 24574.622904: 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
87605           <...>-13145 (-----) [003] d..2 24574.622905: sched_switch: prev_comm=Binder:13131_3 prev_pid=13145 prev_prio=120 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
87606         sugov:4-560   (  560) [004] d..2 24574.622913: 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
87607          <idle>-0     (-----) [004] d..1 24574.622918: cpu_idle: state=0 cpu_id=4
87608<...>-24376 ( 24151) [003] d..2 24574.622931: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
87609           <...>-13131 (-----) [007] .... 24574.622932: binder_transaction: transaction=1670934 dest_node=1669040 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
87610          <idle>-0     (-----) [003] d..1 24574.622940: cpu_idle: state=0 cpu_id=3
87611           <...>-13131 (-----) [007] d..4 24574.622940: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
87612          <idle>-0     (-----) [003] dnh2 24574.622970: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=003
87613          <idle>-0     (-----) [003] .n.1 24574.622975: cpu_idle: state=4294967295 cpu_id=3
87614          <idle>-0     (-----) [003] d..2 24574.622981: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
87615<...>-24151 ( 24151) [006] d..2 24574.622985: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
87616  Binder:23896_5-25989 (23896) [003] .... 24574.622987: binder_transaction_received: transaction=1670934
87617           <...>-13131 (-----) [007] d..3 24574.622996: sched_waking: comm=RenderThread pid=13151 prio=120 target_cpu=007
87618          <idle>-0     (-----) [006] d..1 24574.622999: cpu_idle: state=0 cpu_id=6
87619  Binder:23896_5-25989 (23896) [003] d..1 24574.623008: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
87620           <...>-13131 (-----) [007] d..4 24574.623022: sched_wakeup: comm=RenderThread pid=13151 prio=120 target_cpu=006
87621          <idle>-0     (-----) [006] .n.1 24574.623029: cpu_idle: state=4294967295 cpu_id=6
87622  Binder:23896_5-25989 (23896) [003] d..2 24574.623029: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
87623    RenderThread-24437 (24151) [001] d..2 24574.623038: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
87624          <idle>-0     (-----) [006] d..2 24574.623038: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=120
87625           <...>-13131 (-----) [007] d..2 24574.623062: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
87626<...>-12589 ( 23968) [000] .... 24574.623066: binder_transaction: transaction=1670935 dest_node=0 dest_proc=24827 dest_thread=24827 reply=1 flags=0x0 code=0x0
87627  Binder:23896_5-25989 (23896) [003] d..2 24574.623068: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
87628<...>-12589 ( 23968) [000] d..2 24574.623072: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
87629          <idle>-0     (-----) [007] d..1 24574.623075: cpu_idle: state=0 cpu_id=7
87630          <idle>-0     (-----) [003] d..1 24574.623075: cpu_idle: state=0 cpu_id=3
87631  appEventThread-23905 (23896) [001] d..2 24574.623077: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
87632<...>-12589 ( 23968) [000] d..3 24574.623091: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
87633<...>-12589 ( 23968) [000] .... 24574.623095: binder_set_priority: proc=23968 thread=12589 old=110 => new=120 desired=120
87634           <...>-13151 (-----) [006] d..2 24574.623098: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
87635          <idle>-0     (-----) [006] d..1 24574.623106: cpu_idle: state=0 cpu_id=6
87636<...>-12589 ( 23968) [000] d..2 24574.623139: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
87637 s.nexuslauncher-24827 (24827) [000] .... 24574.623146: binder_transaction_received: transaction=1670935
87638    RenderThread-24437 (24151) [001] .... 24574.623190: binder_transaction: transaction=1670936 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
87639    RenderThread-24437 (24151) [001] d..4 24574.623203: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=003
87640    RenderThread-24437 (24151) [001] dn.5 24574.623221: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
87641    RenderThread-24437 (24151) [001] d..2 24574.623228: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
87642  Binder:23896_5-25989 (23896) [001] .... 24574.623233: binder_transaction_received: transaction=1670936
87643 s.nexuslauncher-24827 (24827) [000] d.h2 24574.623311: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
87644  Binder:23896_5-25989 (23896) [001] d..1 24574.623325: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
87645 s.nexuslauncher-24827 (24827) [000] d.h3 24574.623331: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
87646          <idle>-0     (-----) [003] .n.1 24574.623336: cpu_idle: state=4294967295 cpu_id=3
87647          <idle>-0     (-----) [003] d..2 24574.623342: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
87648  Binder:23896_5-25989 (23896) [001] d..2 24574.623344: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
87649 s.nexuslauncher-24827 (24827) [000] d..2 24574.623359: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
87650   sfEventThread-23906 (23896) [000] d..2 24574.623385: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
87651  Binder:23896_5-25989 (23896) [001] .... 24574.623405: binder_transaction: transaction=1670937 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
87652 kgsl_worker_thr-246   (  246) [003] d..2 24574.623420: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
87653          <idle>-0     (-----) [003] d..1 24574.623425: cpu_idle: state=0 cpu_id=3
87654  Binder:23896_5-25989 (23896) [001] d..2 24574.623434: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
87655<...>-24041 ( 23968) [005] .... 24574.623436: binder_transaction: transaction=1670938 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
87656    RenderThread-24437 (24151) [001] .... 24574.623442: binder_transaction_received: transaction=1670937
87657<...>-24041 ( 23968) [005] d..4 24574.623444: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=003
87658          <idle>-0     (-----) [003] dnh2 24574.623469: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=003
87659          <idle>-0     (-----) [003] .n.1 24574.623473: cpu_idle: state=4294967295 cpu_id=3
87660          <idle>-0     (-----) [003] d..2 24574.623478: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
87661<...>-24376 ( 24151) [003] .... 24574.623484: binder_transaction_received: transaction=1670938
87662    RenderThread-24437 (24151) [001] d..2 24574.623560: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
87663          <idle>-0     (-----) [001] d..1 24574.623575: cpu_idle: state=0 cpu_id=1
87664<...>-24041 ( 23968) [005] d..3 24574.623604: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=003
87665<...>-24376 ( 24151) [003] d..3 24574.623640: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
87666          <idle>-0     (-----) [001] dnh2 24574.623641: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=001
87667          <idle>-0     (-----) [001] .n.1 24574.623646: cpu_idle: state=4294967295 cpu_id=1
87668          <idle>-0     (-----) [001] d..2 24574.623654: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
87669  surfaceflinger-23896 (23896) [002] ...1 24574.623658: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
87670          <idle>-0     (-----) [006] dnh2 24574.623664: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
87671          <idle>-0     (-----) [006] .n.1 24574.623669: cpu_idle: state=4294967295 cpu_id=6
87672  surfaceflinger-23896 (23896) [002] ...1 24574.623669: tracing_mark_write: E|23896
87673          <idle>-0     (-----) [006] d..2 24574.623675: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
87674<...>-24376 ( 24151) [003] d..2 24574.623749: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
87675<...>-24151 ( 24151) [006] d..2 24574.623750: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
87676          <idle>-0     (-----) [003] d..1 24574.623758: cpu_idle: state=0 cpu_id=3
87677          <idle>-0     (-----) [006] d..1 24574.623760: cpu_idle: state=0 cpu_id=6
87678  surfaceflinger-23896 (23896) [002] .... 24574.623766: binder_transaction: transaction=1670939 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
87679<...>-23994 ( 23968) [001] d..3 24574.623778: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=002
87680  surfaceflinger-23896 (23896) [002] ...2 24574.623803: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
87681<...>-23994 ( 23968) [001] d..4 24574.623804: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=003
87682          <idle>-0     (-----) [003] .n.1 24574.623809: cpu_idle: state=4294967295 cpu_id=3
87683          <idle>-0     (-----) [003] d..2 24574.623817: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
87684  surfaceflinger-23896 (23896) [002] d..4 24574.623822: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
87685  surfaceflinger-23896 (23896) [002] d..5 24574.623852: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
87686<...>-23994 ( 23968) [001] d..2 24574.623856: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
87687<...>-23968 ( 23968) [003] d..2 24574.623863: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
87688          <idle>-0     (-----) [001] d..1 24574.623867: cpu_idle: state=0 cpu_id=1
87689  surfaceflinger-23896 (23896) [002] d..2 24574.623876: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87690  HwBinder:598_3-633   (  598) [003] .... 24574.623879: binder_transaction_received: transaction=1670939
87691          <idle>-0     (-----) [002] d..1 24574.623888: cpu_idle: state=0 cpu_id=2
87692  HwBinder:598_3-633   (  598) [003] ...1 24574.623982: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
87693 s.nexuslauncher-24827 (24827) [000] d..3 24574.624058: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=005
87694 s.nexuslauncher-24827 (24827) [000] d..4 24574.624089: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
87695          <idle>-0     (-----) [001] .n.1 24574.624095: cpu_idle: state=4294967295 cpu_id=1
87696 s.nexuslauncher-24827 (24827) [000] d.h3 24574.624130: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
87697          <idle>-0     (-----) [001] d..2 24574.624132: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
87698          <idle>-0     (-----) [004] dnh2 24574.624147: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
87699          <idle>-0     (-----) [004] .n.1 24574.624151: cpu_idle: state=4294967295 cpu_id=4
87700          <idle>-0     (-----) [004] d..2 24574.624155: 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
87701  HwBinder:598_3-633   (  598) [003] ...1 24574.624164: tracing_mark_write: B|598|HWCSession::PresentDisplay::
87702 s.nexuslauncher-24827 (24827) [000] d..2 24574.624164: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87703         sugov:4-560   (  560) [004] d..2 24574.624165: 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
87704          <idle>-0     (-----) [004] d..1 24574.624170: cpu_idle: state=0 cpu_id=4
87705          <idle>-0     (-----) [000] d..1 24574.624178: cpu_idle: state=0 cpu_id=0
87706<...>-24041 ( 23968) [005] .... 24574.624204: binder_transaction: transaction=1670940 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
87707  HwBinder:598_3-633   (  598) [003] d.s1 24574.624245: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
87708  HwBinder:598_3-633   (  598) [003] d.s2 24574.624263: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
87709<...>-24041 ( 23968) [005] ...2 24574.624288: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
87710<...>-24041 ( 23968) [005] d..4 24574.624291: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
87711<...>-24041 ( 23968) [005] d..5 24574.624310: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
87712<...>-24041 ( 23968) [005] d..2 24574.624352: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
87713  Binder:23896_5-25989 (23896) [005] .... 24574.624358: binder_transaction_received: transaction=1670940
87714  HwBinder:598_3-633   (  598) [003] ...1 24574.624465: tracing_mark_write: B|598|HWDeviceDRM::Commit::
87715  HwBinder:598_3-633   (  598) [003] ...1 24574.624480: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
87716  Binder:23896_5-25989 (23896) [005] .... 24574.624520: binder_transaction: transaction=1670941 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
87717  Binder:23896_5-25989 (23896) [005] d..2 24574.624524: sched_waking: comm=android.anim pid=24041 prio=110 target_cpu=005
87718  Binder:23896_5-25989 (23896) [005] d..3 24574.624534: sched_wakeup: comm=android.anim pid=24041 prio=110 target_cpu=005
87719  Binder:23896_5-25989 (23896) [005] .... 24574.624536: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
87720  Binder:23896_5-25989 (23896) [005] d..2 24574.624546: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=android.anim next_pid=24041 next_prio=110
87721<...>-24041 ( 23968) [005] .... 24574.624550: binder_transaction_received: transaction=1670941
87722    RenderThread-25194 (24827) [001] d..1 24574.624566: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
87723    RenderThread-25194 (24827) [001] d..2 24574.624584: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
87724          <idle>-0     (-----) [000] .n.1 24574.624591: cpu_idle: state=4294967295 cpu_id=0
87725          <idle>-0     (-----) [000] d..2 24574.624602: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
87726    RenderThread-25194 (24827) [001] .... 24574.624656: binder_transaction: transaction=1670942 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
87727    RenderThread-25194 (24827) [001] ...2 24574.624662: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
87728    RenderThread-25194 (24827) [001] d..4 24574.624665: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
87729    RenderThread-25194 (24827) [001] d..5 24574.624676: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
87730    RenderThread-25194 (24827) [001] d..2 24574.624688: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
87731  Binder:23896_4-24423 (23896) [001] .... 24574.624696: binder_transaction_received: transaction=1670942
87732 s.nexuslauncher-24827 (24827) [000] d..2 24574.624730: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87733          <idle>-0     (-----) [000] d..1 24574.624741: cpu_idle: state=0 cpu_id=0
87734  Binder:23896_4-24423 (23896) [001] .... 24574.624766: binder_transaction: transaction=1670943 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
87735  Binder:23896_4-24423 (23896) [001] d..2 24574.624778: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
87736  Binder:23896_4-24423 (23896) [001] d..3 24574.624789: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
87737  Binder:23896_4-24423 (23896) [001] .... 24574.624791: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
87738  Binder:23896_4-24423 (23896) [001] d..2 24574.624822: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
87739    RenderThread-25194 (24827) [001] .... 24574.624827: binder_transaction_received: transaction=1670943
87740          <idle>-0     (-----) [002] ...1 24574.625021: cpu_idle: state=4294967295 cpu_id=2
87741          <idle>-0     (-----) [002] d..1 24574.625024: cpu_idle: state=0 cpu_id=2
87742  HwBinder:598_3-633   (  598) [003] d..2 24574.625222: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
87743  HwBinder:598_3-633   (  598) [003] d..3 24574.625250: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
87744          <idle>-0     (-----) [002] .n.1 24574.625254: cpu_idle: state=4294967295 cpu_id=2
87745          <idle>-0     (-----) [002] d..2 24574.625262: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
87746  HwBinder:598_3-633   (  598) [003] ...1 24574.625355: tracing_mark_write: E|598
87747  HwBinder:598_3-633   (  598) [003] ...1 24574.625359: tracing_mark_write: E|598
87748<...>-24041 ( 23968) [005] d..3 24574.625428: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
87749  HwBinder:598_3-633   (  598) [003] ...1 24574.625443: tracing_mark_write: E|598
87750<...>-24041 ( 23968) [005] d.h3 24574.625493: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
87751          <idle>-0     (-----) [000] dnh2 24574.625493: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
87752          <idle>-0     (-----) [000] .n.1 24574.625498: cpu_idle: state=4294967295 cpu_id=0
87753<...>-24041 ( 23968) [005] d.h4 24574.625505: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
87754          <idle>-0     (-----) [000] d..2 24574.625506: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
87755          <idle>-0     (-----) [004] .n.1 24574.625509: cpu_idle: state=4294967295 cpu_id=4
87756          <idle>-0     (-----) [004] d..2 24574.625515: 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
87757  HwBinder:598_3-633   (  598) [003] ...1 24574.625523: tracing_mark_write: E|598
87758         sugov:4-560   (  560) [004] d..2 24574.625538: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
87759  HwBinder:598_3-633   (  598) [003] .... 24574.625542: binder_transaction: transaction=1670944 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
87760  HwBinder:598_3-633   (  598) [003] d..2 24574.625558: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
87761<...>-24073 ( 23968) [000] d..2 24574.625577: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87762  HwBinder:598_3-633   (  598) [003] d..3 24574.625585: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
87763  Binder:23896_5-25989 (23896) [004] d..2 24574.625587: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
87764          <idle>-0     (-----) [000] d..2 24574.625590: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
87765          <idle>-0     (-----) [004] d..1 24574.625594: cpu_idle: state=0 cpu_id=4
87766  HwBinder:598_3-633   (  598) [003] .... 24574.625595: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
87767  surfaceflinger-23896 (23896) [000] .... 24574.625601: binder_transaction_received: transaction=1670944
87768  HwBinder:598_3-633   (  598) [003] d..2 24574.625672: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
87769       rcu_sched-8     (    8) [003] d..2 24574.625699: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
87770<...>-23968 ( 23968) [003] .... 24574.625762: binder_transaction: transaction=1670945 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
87771<...>-23968 ( 23968) [003] d..4 24574.625770: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=003
87772          <idle>-0     (-----) [006] dnh2 24574.625831: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
87773          <idle>-0     (-----) [006] .n.1 24574.625836: cpu_idle: state=4294967295 cpu_id=6
87774          <idle>-0     (-----) [006] d..2 24574.625845: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
87775<...>-24376 ( 24151) [006] .... 24574.625850: binder_transaction_received: transaction=1670945
87776<...>-23968 ( 23968) [003] d..2 24574.625886: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
87777          <idle>-0     (-----) [003] d..1 24574.625900: cpu_idle: state=0 cpu_id=3
87778<...>-24376 ( 24151) [006] d..3 24574.625943: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
87779<...>-24376 ( 24151) [006] d.h3 24574.626004: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
87780          <idle>-0     (-----) [003] dnh2 24574.626005: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
87781          <idle>-0     (-----) [003] .n.1 24574.626010: cpu_idle: state=4294967295 cpu_id=3
87782<...>-24376 ( 24151) [006] d.h4 24574.626016: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
87783          <idle>-0     (-----) [003] d..2 24574.626018: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
87784          <idle>-0     (-----) [004] .n.1 24574.626021: cpu_idle: state=4294967295 cpu_id=4
87785          <idle>-0     (-----) [004] d..2 24574.626027: 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
87786         sugov:4-560   (  560) [004] d..2 24574.626039: 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
87787          <idle>-0     (-----) [004] d..1 24574.626045: cpu_idle: state=0 cpu_id=4
87788<...>-24376 ( 24151) [006] d..2 24574.626075: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
87789<...>-24041 ( 23968) [005] .... 24574.626078: binder_transaction: transaction=1670946 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
87790<...>-24041 ( 23968) [005] d..4 24574.626086: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
87791          <idle>-0     (-----) [006] d..1 24574.626087: cpu_idle: state=0 cpu_id=6
87792<...>-24041 ( 23968) [005] d..5 24574.626105: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
87793          <idle>-0     (-----) [006] .n.1 24574.626111: cpu_idle: state=4294967295 cpu_id=6
87794<...>-24151 ( 24151) [003] d..2 24574.626116: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
87795          <idle>-0     (-----) [006] d..2 24574.626120: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
87796<...>-24376 ( 24151) [006] .... 24574.626124: binder_transaction_received: transaction=1670946
87797          <idle>-0     (-----) [003] d..1 24574.626126: cpu_idle: state=0 cpu_id=3
87798 crtc_commit:111-253   (  253) [002] d..2 24574.626128: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
87799          <idle>-0     (-----) [002] d..1 24574.626138: cpu_idle: state=0 cpu_id=2
87800  surfaceflinger-23896 (23896) [000] d..2 24574.626144: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87801          <idle>-0     (-----) [000] d..1 24574.626158: cpu_idle: state=0 cpu_id=0
87802<...>-24376 ( 24151) [006] d..3 24574.626184: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
87803<...>-24041 ( 23968) [005] d..3 24574.626198: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=001
87804          <idle>-0     (-----) [000] dnh2 24574.626217: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
87805          <idle>-0     (-----) [000] .n.1 24574.626223: cpu_idle: state=4294967295 cpu_id=0
87806          <idle>-0     (-----) [000] d..2 24574.626229: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
87807          <idle>-0     (-----) [002] dnh2 24574.626230: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=002
87808          <idle>-0     (-----) [002] .n.1 24574.626235: cpu_idle: state=4294967295 cpu_id=2
87809          <idle>-0     (-----) [002] d..2 24574.626242: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
87810<...>-24376 ( 24151) [006] d..2 24574.626244: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
87811          <idle>-0     (-----) [006] d..1 24574.626255: cpu_idle: state=0 cpu_id=6
87812<...>-24151 ( 24151) [000] d..2 24574.626307: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87813          <idle>-0     (-----) [000] d..1 24574.626318: cpu_idle: state=0 cpu_id=0
87814<...>-23994 ( 23968) [002] d..3 24574.626323: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=003
87815<...>-23994 ( 23968) [002] d..4 24574.626346: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=000
87816          <idle>-0     (-----) [000] .n.1 24574.626352: cpu_idle: state=4294967295 cpu_id=0
87817          <idle>-0     (-----) [000] d..2 24574.626361: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
87818<...>-23994 ( 23968) [002] d..2 24574.626388: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87819          <idle>-0     (-----) [002] d..1 24574.626400: cpu_idle: state=0 cpu_id=2
87820<...>-23968 ( 23968) [000] .... 24574.626438: binder_transaction: transaction=1670947 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
87821<...>-23968 ( 23968) [000] d..4 24574.626445: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
87822          <idle>-0     (-----) [006] dnh2 24574.626468: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
87823<...>-24041 ( 23968) [005] .... 24574.626470: binder_transaction: transaction=1670948 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
87824          <idle>-0     (-----) [006] .n.1 24574.626472: cpu_idle: state=4294967295 cpu_id=6
87825<...>-24041 ( 23968) [005] ...2 24574.626478: binder_set_priority: proc=23896 thread=25989 old=120 => new=116 desired=116
87826          <idle>-0     (-----) [006] d..2 24574.626480: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
87827<...>-24041 ( 23968) [005] d..4 24574.626481: sched_waking: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=004
87828<...>-24376 ( 24151) [006] .... 24574.626483: binder_transaction_received: transaction=1670947
87829<...>-24041 ( 23968) [005] d..5 24574.626498: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=005
87830<...>-23968 ( 23968) [000] d..2 24574.626510: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87831<...>-24041 ( 23968) [005] d..2 24574.626510: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
87832  Binder:23896_5-25989 (23896) [005] .... 24574.626517: binder_transaction_received: transaction=1670948
87833          <idle>-0     (-----) [000] d..1 24574.626521: cpu_idle: state=0 cpu_id=0
87834<...>-24376 ( 24151) [006] d..3 24574.626538: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
87835  Binder:23896_5-25989 (23896) [005] .... 24574.626552: binder_transaction: transaction=1670949 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
87836  Binder:23896_5-25989 (23896) [005] d..2 24574.626556: sched_waking: comm=android.anim pid=24041 prio=116 target_cpu=005
87837          <idle>-0     (-----) [000] dnh2 24574.626559: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
87838          <idle>-0     (-----) [000] .n.1 24574.626565: cpu_idle: state=4294967295 cpu_id=0
87839  Binder:23896_5-25989 (23896) [005] d..3 24574.626565: sched_wakeup: comm=android.anim pid=24041 prio=116 target_cpu=005
87840  Binder:23896_5-25989 (23896) [005] .... 24574.626568: binder_set_priority: proc=23896 thread=25989 old=116 => new=120 desired=120
87841          <idle>-0     (-----) [000] d..2 24574.626572: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
87842<...>-24376 ( 24151) [006] d..2 24574.626588: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
87843  Binder:23896_5-25989 (23896) [005] d..2 24574.626594: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=116
87844          <idle>-0     (-----) [006] d..1 24574.626598: cpu_idle: state=0 cpu_id=6
87845<...>-24041 ( 23968) [005] .... 24574.626599: binder_transaction_received: transaction=1670949
87846<...>-24151 ( 24151) [000] d..2 24574.626638: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87847          <idle>-0     (-----) [000] d..1 24574.626648: cpu_idle: state=0 cpu_id=0
87848<...>-24041 ( 23968) [005] d..3 24574.627171: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
87849          <idle>-0     (-----) [000] dnh2 24574.627194: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
87850          <idle>-0     (-----) [000] .n.1 24574.627199: cpu_idle: state=4294967295 cpu_id=0
87851          <idle>-0     (-----) [000] d..2 24574.627206: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
87852<...>-24041 ( 23968) [005] d..1 24574.627247: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=006
87853<...>-24073 ( 23968) [000] d..2 24574.627250: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87854          <idle>-0     (-----) [000] d..1 24574.627261: cpu_idle: state=0 cpu_id=0
87855<...>-24041 ( 23968) [005] d.h3 24574.627307: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
87856          <idle>-0     (-----) [000] dnh2 24574.627308: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=000
87857<...>-24041 ( 23968) [005] d.h4 24574.627319: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
87858          <idle>-0     (-----) [004] .n.1 24574.627324: cpu_idle: state=4294967295 cpu_id=4
87859          <idle>-0     (-----) [004] d..2 24574.627330: 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
87860         sugov:4-560   (  560) [004] d..2 24574.627341: 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
87861          <idle>-0     (-----) [004] d..1 24574.627347: cpu_idle: state=0 cpu_id=4
87862          <idle>-0     (-----) [000] .n.1 24574.627368: cpu_idle: state=4294967295 cpu_id=0
87863          <idle>-0     (-----) [000] d..2 24574.627375: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
87864    RenderThread-25194 (24827) [001] .... 24574.627390: binder_transaction: transaction=1670950 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
87865    RenderThread-25194 (24827) [001] ...2 24574.627400: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
87866    RenderThread-25194 (24827) [001] d..4 24574.627403: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=005
87867    RenderThread-25194 (24827) [001] d..5 24574.627427: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
87868    RenderThread-25194 (24827) [001] d..2 24574.627474: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
87869  Binder:23896_5-25989 (23896) [001] .... 24574.627480: binder_transaction_received: transaction=1670950
87870<...>-24041 ( 23968) [005] d..2 24574.627486: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
87871<...>-23993 ( 23968) [000] d..1 24574.627491: sched_waking: comm=android.anim pid=24041 prio=116 target_cpu=005
87872          <idle>-0     (-----) [005] d..1 24574.627507: cpu_idle: state=0 cpu_id=5
87873<...>-23993 ( 23968) [000] d..2 24574.627518: sched_wakeup: comm=android.anim pid=24041 prio=116 target_cpu=002
87874          <idle>-0     (-----) [002] .n.1 24574.627526: cpu_idle: state=4294967295 cpu_id=2
87875          <idle>-0     (-----) [002] d..2 24574.627554: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=116
87876  Binder:23896_5-25989 (23896) [001] d.s1 24574.627583: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
87877  Binder:23896_5-25989 (23896) [001] d.s2 24574.627625: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
87878<...>-23993 ( 23968) [000] d..2 24574.627634: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
87879  Binder:23896_5-25989 (23896) [001] d.s2 24574.627647: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
87880<...>-24041 ( 23968) [002] .... 24574.627654: binder_transaction: transaction=1670951 dest_node=1271137 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
87881<...>-24041 ( 23968) [002] d..4 24574.627660: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
87882     rcu_preempt-7     (    7) [000] d..2 24574.627667: 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
87883          <idle>-0     (-----) [000] d..1 24574.627677: cpu_idle: state=0 cpu_id=0
87884  Binder:23896_5-25989 (23896) [001] d.s3 24574.627687: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
87885          <idle>-0     (-----) [000] .n.1 24574.627693: cpu_idle: state=4294967295 cpu_id=0
87886<...>-24041 ( 23968) [002] d..5 24574.627693: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
87887          <idle>-0     (-----) [000] d..2 24574.627702: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
87888  Binder:23896_4-24423 (23896) [000] .... 24574.627708: binder_transaction_received: transaction=1670951
87889<...>-24041 ( 23968) [002] d..1 24574.627710: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=000
87890<...>-24041 ( 23968) [002] d..2 24574.627728: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=003
87891          <idle>-0     (-----) [003] .n.1 24574.627733: cpu_idle: state=4294967295 cpu_id=3
87892  Binder:23896_4-24423 (23896) [000] d..1 24574.627737: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
87893          <idle>-0     (-----) [003] d..2 24574.627744: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
87894  Binder:23896_4-24423 (23896) [000] d..2 24574.627760: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
87895<...>-23993 ( 23968) [003] d..2 24574.627769: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=sfEventThread next_pid=23906 next_prio=97
87896  Binder:23896_5-25989 (23896) [001] .... 24574.627771: binder_transaction: transaction=1670952 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
87897  Binder:23896_5-25989 (23896) [001] d..2 24574.627776: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
87898  Binder:23896_5-25989 (23896) [001] d..3 24574.627785: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
87899  Binder:23896_5-25989 (23896) [001] .... 24574.627788: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
87900  Binder:23896_4-24423 (23896) [000] d..2 24574.627793: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
87901  Binder:23896_5-25989 (23896) [001] d..2 24574.627797: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
87902    RenderThread-25194 (24827) [001] .... 24574.627803: binder_transaction_received: transaction=1670952
87903   sfEventThread-23906 (23896) [003] d..2 24574.627829: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
87904          <idle>-0     (-----) [003] d..1 24574.627835: cpu_idle: state=0 cpu_id=3
87905    RenderThread-25194 (24827) [001] d..2 24574.627914: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
87906  kworker/u16:10-23868 (23868) [000] .... 24574.627919: clk_set_rate: l3_cluster0_vote_clk 1305600000
87907  kworker/u16:10-23868 (23868) [000] .... 24574.627931: clk_set_rate: l3_clk 1305600000
87908  Binder:23896_5-25989 (23896) [001] d..2 24574.627956: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
87909          <idle>-0     (-----) [001] d..1 24574.627974: cpu_idle: state=0 cpu_id=1
87910<...>-24041 ( 23968) [002] .... 24574.628086: binder_transaction: transaction=1670953 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
87911<...>-24041 ( 23968) [002] ...2 24574.628107: binder_set_priority: proc=23896 thread=25989 old=120 => new=116 desired=116
87912<...>-24041 ( 23968) [002] d..4 24574.628109: sched_waking: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=001
87913<...>-24041 ( 23968) [002] dn.5 24574.628124: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=002
87914<...>-24041 ( 23968) [002] d..2 24574.628131: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
87915  Binder:23896_5-25989 (23896) [002] .... 24574.628136: binder_transaction_received: transaction=1670953
87916  Binder:23896_5-25989 (23896) [002] .... 24574.628199: binder_transaction: transaction=1670954 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
87917  Binder:23896_5-25989 (23896) [002] .... 24574.628203: binder_set_priority: proc=23896 thread=25989 old=116 => new=120 desired=120
87918  Binder:23896_5-25989 (23896) [002] d..2 24574.628235: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=116
87919<...>-24041 ( 23968) [002] .... 24574.628239: binder_transaction_received: transaction=1670954
87920<...>-24041 ( 23968) [002] d..1 24574.628305: sched_waking: comm=TaskSnapshotPer pid=24113 prio=130 target_cpu=001
87921  kworker/u16:10-23868 (23868) [000] d..2 24574.628337: 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
87922<...>-24041 ( 23968) [002] d..2 24574.628347: sched_wakeup: comm=TaskSnapshotPer pid=24113 prio=130 target_cpu=000
87923          <idle>-0     (-----) [000] d..2 24574.628353: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=24113 next_prio=130
87924<...>-24041 ( 23968) [002] d..1 24574.628372: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=003
87925<...>-24041 ( 23968) [002] d..2 24574.628382: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=003
87926          <idle>-0     (-----) [003] .n.1 24574.628387: cpu_idle: state=4294967295 cpu_id=3
87927          <idle>-0     (-----) [003] d..2 24574.628392: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
87928<...>-24041 ( 23968) [002] d..2 24574.628426: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87929          <idle>-0     (-----) [002] d..1 24574.628436: cpu_idle: state=0 cpu_id=2
87930<...>-23993 ( 23968) [003] d..1 24574.628437: sched_waking: comm=android.anim pid=24041 prio=116 target_cpu=002
87931<...>-23993 ( 23968) [003] d..2 24574.628447: sched_wakeup: comm=android.anim pid=24041 prio=116 target_cpu=002
87932          <idle>-0     (-----) [002] .n.1 24574.628452: cpu_idle: state=4294967295 cpu_id=2
87933          <idle>-0     (-----) [002] d..2 24574.628459: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=116
87934<...>-23993 ( 23968) [003] d..2 24574.628615: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
87935          <idle>-0     (-----) [003] d..1 24574.628621: cpu_idle: state=0 cpu_id=3
87936<...>-24041 ( 23968) [002] .... 24574.628649: binder_transaction: transaction=1670955 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
87937<...>-24041 ( 23968) [002] d..4 24574.628655: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
87938<...>-24113 ( 23968) [000] d.h2 24574.628667: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
87939<...>-24041 ( 23968) [002] d..5 24574.628675: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=001
87940          <idle>-0     (-----) [001] .n.1 24574.628681: cpu_idle: state=4294967295 cpu_id=1
87941<...>-24113 ( 23968) [000] d.h3 24574.628681: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
87942          <idle>-0     (-----) [003] .n.1 24574.628685: cpu_idle: state=4294967295 cpu_id=3
87943<...>-24041 ( 23968) [002] d.h5 24574.628709: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
87944          <idle>-0     (-----) [003] d..2 24574.628710: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
87945          <idle>-0     (-----) [001] d..2 24574.628711: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
87946<...>-24376 ( 24151) [001] .... 24574.628721: binder_transaction_received: transaction=1670955
87947          <idle>-0     (-----) [004] dnh2 24574.628726: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
87948          <idle>-0     (-----) [004] .n.1 24574.628729: cpu_idle: state=4294967295 cpu_id=4
87949          <idle>-0     (-----) [004] d..2 24574.628734: 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
87950         sugov:4-560   (  560) [004] d..2 24574.628744: 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
87951          <idle>-0     (-----) [004] d..1 24574.628750: cpu_idle: state=0 cpu_id=4
87952 kgsl_worker_thr-246   (  246) [003] d..2 24574.628775: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=002
87953<...>-24041 ( 23968) [002] d..3 24574.628788: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=002
87954<...>-24376 ( 24151) [001] d..3 24574.628793: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=000
87955 kgsl_worker_thr-246   (  246) [003] d..3 24574.628806: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
87956          <idle>-0     (-----) [006] dnh2 24574.628842: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
87957          <idle>-0     (-----) [006] dnh2 24574.628844: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=006
87958 kgsl_worker_thr-246   (  246) [003] d..2 24574.628846: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
87959          <idle>-0     (-----) [006] .n.1 24574.628849: cpu_idle: state=4294967295 cpu_id=6
87960<...>-24376 ( 24151) [001] d..2 24574.628855: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
87961          <idle>-0     (-----) [006] d..2 24574.628857: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
87962          <idle>-0     (-----) [001] d..1 24574.628866: cpu_idle: state=0 cpu_id=1
87963<...>-23994 ( 23968) [006] d..3 24574.628917: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=000
87964          <idle>-0     (-----) [001] dnh2 24574.628943: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=001
87965          <idle>-0     (-----) [001] .n.1 24574.628948: cpu_idle: state=4294967295 cpu_id=1
87966          <idle>-0     (-----) [001] d..2 24574.628955: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
87967<...>-23994 ( 23968) [006] d..2 24574.628967: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
87968<...>-24041 ( 23968) [002] .... 24574.629012: binder_transaction: transaction=1670956 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
87969<...>-23968 ( 23968) [001] .... 24574.629015: binder_transaction: transaction=1670957 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
87970<...>-24041 ( 23968) [002] ...2 24574.629017: binder_set_priority: proc=23896 thread=25989 old=120 => new=116 desired=116
87971<...>-24041 ( 23968) [002] d..4 24574.629019: sched_waking: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=002
87972<...>-23968 ( 23968) [001] d..4 24574.629019: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=001
87973<...>-24151 ( 24151) [006] d..2 24574.629027: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
87974<...>-24041 ( 23968) [002] dn.5 24574.629028: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=002
87975<...>-24041 ( 23968) [002] d..2 24574.629034: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
87976  Binder:23896_5-25989 (23896) [002] .... 24574.629038: binder_transaction_received: transaction=1670956
87977          <idle>-0     (-----) [006] d..1 24574.629038: cpu_idle: state=0 cpu_id=6
87978  Binder:23896_5-25989 (23896) [002] .... 24574.629061: binder_transaction: transaction=1670958 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
87979  Binder:23896_5-25989 (23896) [002] .... 24574.629064: binder_set_priority: proc=23896 thread=25989 old=116 => new=120 desired=120
87980          <idle>-0     (-----) [006] dnh2 24574.629072: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
87981          <idle>-0     (-----) [006] .n.1 24574.629077: cpu_idle: state=4294967295 cpu_id=6
87982          <idle>-0     (-----) [006] d..2 24574.629084: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
87983<...>-24376 ( 24151) [006] .... 24574.629088: binder_transaction_received: transaction=1670957
87984  Binder:23896_5-25989 (23896) [002] d..2 24574.629090: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=116
87985<...>-24041 ( 23968) [002] .... 24574.629095: binder_transaction_received: transaction=1670958
87986<...>-23968 ( 23968) [001] d..2 24574.629107: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
87987          <idle>-0     (-----) [001] d..1 24574.629117: cpu_idle: state=0 cpu_id=1
87988<...>-24376 ( 24151) [006] d..3 24574.629150: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
87989          <idle>-0     (-----) [001] dnh2 24574.629199: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
87990          <idle>-0     (-----) [001] .n.1 24574.629203: cpu_idle: state=4294967295 cpu_id=1
87991          <idle>-0     (-----) [001] d..2 24574.629209: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
87992  kworker/u16:15-18488 (18488) [003] d.s2 24574.629228: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
87993<...>-24376 ( 24151) [006] d..2 24574.629239: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
87994  kworker/u16:15-18488 (18488) [003] d.s3 24574.629240: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
87995  kworker/u16:15-18488 (18488) [003] d.s3 24574.629248: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
87996          <idle>-0     (-----) [006] d..1 24574.629250: cpu_idle: state=0 cpu_id=6
87997<...>-24151 ( 24151) [001] d..2 24574.629264: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
87998          <idle>-0     (-----) [001] d..1 24574.629274: cpu_idle: state=0 cpu_id=1
87999  kworker/u16:15-18488 (18488) [003] d..2 24574.629277: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
88000          <idle>-0     (-----) [003] d..1 24574.629283: cpu_idle: state=0 cpu_id=3
88001<...>-24113 ( 23968) [000] d..2 24574.629488: sched_switch: prev_comm=TaskSnapshotPer prev_pid=24113 prev_prio=130 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
88002  kworker/u16:10-23868 (23868) [000] d..2 24574.629512: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=24113 next_prio=130
88003<...>-24041 ( 23968) [002] d..3 24574.629594: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
88004<...>-24041 ( 23968) [002] d..4 24574.629613: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
88005          <idle>-0     (-----) [001] .n.1 24574.629619: cpu_idle: state=4294967295 cpu_id=1
88006          <idle>-0     (-----) [001] d..2 24574.629625: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
88007<...>-24073 ( 23968) [001] d..2 24574.629659: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88008<...>-24041 ( 23968) [002] d..1 24574.629661: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=003
88009          <idle>-0     (-----) [001] d..1 24574.629666: cpu_idle: state=0 cpu_id=1
88010<...>-24041 ( 23968) [002] d..2 24574.629677: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=001
88011          <idle>-0     (-----) [001] .n.1 24574.629683: cpu_idle: state=4294967295 cpu_id=1
88012          <idle>-0     (-----) [001] d..2 24574.629689: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
88013<...>-24041 ( 23968) [002] d..2 24574.629716: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
88014          <idle>-0     (-----) [002] d..1 24574.629724: cpu_idle: state=0 cpu_id=2
88015<...>-23993 ( 23968) [001] d..2 24574.629944: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
88016<...>-23993 ( 23968) [001] d..3 24574.629963: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
88017<...>-23993 ( 23968) [001] .... 24574.630370: binder_transaction: transaction=1670959 dest_node=1668777 dest_proc=13131 dest_thread=0 reply=0 flags=0x11 code=0x27
88018<...>-23993 ( 23968) [001] d..4 24574.630379: sched_waking: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=003
88019<...>-24113 ( 23968) [000] d..3 24574.630397: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
88020<...>-23993 ( 23968) [001] d..5 24574.630400: sched_wakeup: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=002
88021          <idle>-0     (-----) [002] .n.1 24574.630404: cpu_idle: state=4294967295 cpu_id=2
88022<...>-24113 ( 23968) [000] dn.4 24574.630410: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
88023          <idle>-0     (-----) [002] d..2 24574.630412: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_3 next_pid=13145 next_prio=120
88024<...>-24113 ( 23968) [000] d..2 24574.630417: sched_switch: prev_comm=TaskSnapshotPer prev_pid=24113 prev_prio=130 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
88025           <...>-13145 (-----) [002] .... 24574.630419: binder_transaction_received: transaction=1670959
88026<...>-23993 ( 23968) [001] d..3 24574.630432: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=006
88027<...>-23993 ( 23968) [001] d..4 24574.630451: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=003
88028          <idle>-0     (-----) [003] .n.1 24574.630456: cpu_idle: state=4294967295 cpu_id=3
88029<...>-23993 ( 23968) [001] d.h3 24574.630485: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
88030          <idle>-0     (-----) [003] d..2 24574.630485: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
88031          <idle>-0     (-----) [004] dnh2 24574.630499: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
88032          <idle>-0     (-----) [004] .n.1 24574.630502: cpu_idle: state=4294967295 cpu_id=4
88033          <idle>-0     (-----) [004] d..2 24574.630507: 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
88034         sugov:4-560   (  560) [004] d..2 24574.630516: 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
88035          <idle>-0     (-----) [004] d..1 24574.630521: cpu_idle: state=0 cpu_id=4
88036<...>-23994 ( 23968) [003] d..2 24574.630534: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=24113 next_prio=130
88037<...>-24113 ( 23968) [003] d..3 24574.630549: sched_waking: comm=kworker/3:1H pid=697 prio=100 target_cpu=003
88038<...>-24113 ( 23968) [003] dn.4 24574.630560: sched_wakeup: comm=kworker/3:1H pid=697 prio=100 target_cpu=003
88039<...>-24113 ( 23968) [003] d..2 24574.630565: sched_switch: prev_comm=TaskSnapshotPer prev_pid=24113 prev_prio=130 prev_state=R+ ==> next_comm=kworker/3:1H next_pid=697 next_prio=100
88040<...>-697 ( 697) [003] d..2 24574.630585: sched_switch: prev_comm=kworker/3:1H prev_pid=697 prev_prio=100 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=24113 next_prio=130
88041<...>-24113 ( 23968) [003] d..2 24574.630607: sched_switch: prev_comm=TaskSnapshotPer prev_pid=24113 prev_prio=130 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
88042          <idle>-0     (-----) [003] d..1 24574.630612: cpu_idle: state=0 cpu_id=3
88043<...>-23993 ( 23968) [001] d..2 24574.630646: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=002
88044  kworker/u16:10-23868 (23868) [000] d..2 24574.630646: 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
88045          <idle>-0     (-----) [000] d..1 24574.630654: cpu_idle: state=0 cpu_id=0
88046<...>-23993 ( 23968) [001] d..3 24574.630666: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=002
88047           <...>-13145 (-----) [002] d..2 24574.630679: sched_switch: prev_comm=Binder:13131_3 prev_pid=13145 prev_prio=120 prev_state=S ==> next_comm=statsd.writer next_pid=1044 next_prio=120
88048          <idle>-0     (-----) [000] d.h5 24574.630824: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
88049          <idle>-0     (-----) [000] dnh6 24574.630840: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
88050          <idle>-0     (-----) [000] dnh5 24574.630845: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
88051<...>-23993 ( 23968) [001] .... 24574.630851: binder_transaction: transaction=1670960 dest_node=1668777 dest_proc=13131 dest_thread=0 reply=0 flags=0x11 code=0x33
88052          <idle>-0     (-----) [000] dnh6 24574.630858: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
88053          <idle>-0     (-----) [003] .n.1 24574.630863: cpu_idle: state=4294967295 cpu_id=3
88054          <idle>-0     (-----) [003] d..2 24574.630869: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
88055          <idle>-0     (-----) [000] .n.1 24574.630869: cpu_idle: state=4294967295 cpu_id=0
88056<...>-23993 ( 23968) [001] d..4 24574.630872: sched_waking: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=002
88057          <idle>-0     (-----) [000] d..2 24574.630876: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
88058          <idle>-0     (-----) [006] dnh2 24574.630899: sched_wakeup: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=006
88059          <idle>-0     (-----) [006] .n.1 24574.630904: cpu_idle: state=4294967295 cpu_id=6
88060          <idle>-0     (-----) [006] d..2 24574.630913: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_3 next_pid=13145 next_prio=120
88061 crtc_commit:111-253   (  253) [003] d.s2 24574.630939: sched_waking: comm=kworker/3:1H pid=697 prio=100 target_cpu=003
88062           <...>-13145 (-----) [006] .... 24574.630942: binder_transaction_received: transaction=1670960
88063 crtc_commit:111-253   (  253) [003] d.s3 24574.630945: sched_wakeup: comm=kworker/3:1H pid=697 prio=100 target_cpu=003
88064 crtc_commit:111-253   (  253) [003] d.s1 24574.630947: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
88065  crtc_event:111-254   (  254) [000] d..2 24574.630950: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88066          <idle>-0     (-----) [000] d..1 24574.630955: cpu_idle: state=0 cpu_id=0
88067<...>-1044 ( 887) [002] d..2 24574.630958: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
88068 crtc_commit:111-253   (  253) [003] d.s2 24574.630969: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
88069          <idle>-0     (-----) [000] .n.1 24574.630973: cpu_idle: state=4294967295 cpu_id=0
88070 crtc_commit:111-253   (  253) [003] d.s1 24574.630975: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
88071          <idle>-0     (-----) [000] d..2 24574.630979: 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
88072 crtc_commit:111-253   (  253) [003] d.s2 24574.630984: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
88073       rcu_sched-8     (    8) [000] d..2 24574.630990: sched_waking: comm=rcuos/2 pid=30 prio=120 target_cpu=003
88074       rcu_sched-8     (    8) [000] d..3 24574.631015: sched_wakeup: comm=rcuos/2 pid=30 prio=120 target_cpu=001
88075       rcu_sched-8     (    8) [000] d..2 24574.631029: 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
88076          <idle>-0     (-----) [000] d..1 24574.631033: cpu_idle: state=0 cpu_id=0
88077<...>-23993 ( 23968) [001] d..1 24574.631083: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=005
88078 crtc_commit:111-253   (  253) [003] d..2 24574.631097: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=kworker/3:1H next_pid=697 next_prio=100
88079<...>-23993 ( 23968) [001] d..2 24574.631106: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=000
88080     logd.writer-563   (  555) [002] d..2 24574.631107: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=rcuos/2 next_pid=30 next_prio=120
88081          <idle>-0     (-----) [000] .n.1 24574.631110: cpu_idle: state=4294967295 cpu_id=0
88082<...>-697 ( 697) [003] d..2 24574.631110: sched_switch: prev_comm=kworker/3:1H prev_pid=697 prev_prio=100 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
88083     ksoftirqd/3-34    (   34) [003] d.s2 24574.631123: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
88084<...>-23993 ( 23968) [001] d.h3 24574.631139: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
88085          <idle>-0     (-----) [000] d..2 24574.631140: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
88086<...>-30 ( 30) [002] d..2 24574.631147: sched_switch: prev_comm=rcuos/2 prev_pid=30 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
88087          <idle>-0     (-----) [004] dnh2 24574.631154: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
88088          <idle>-0     (-----) [002] d..1 24574.631155: cpu_idle: state=0 cpu_id=2
88089          <idle>-0     (-----) [004] .n.1 24574.631157: cpu_idle: state=4294967295 cpu_id=4
88090     ksoftirqd/3-34    (   34) [003] d.s3 24574.631158: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
88091          <idle>-0     (-----) [004] d..2 24574.631162: 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
88092     ksoftirqd/3-34    (   34) [003] d.s3 24574.631164: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
88093          <idle>-0     (-----) [002] .n.1 24574.631169: cpu_idle: state=4294967295 cpu_id=2
88094         sugov:4-560   (  560) [004] d..2 24574.631172: 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
88095          <idle>-0     (-----) [002] d..2 24574.631175: 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
88096          <idle>-0     (-----) [004] d..1 24574.631177: cpu_idle: state=0 cpu_id=4
88097<...>-24003 ( 23968) [000] d..1 24574.631177: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=003
88098     ksoftirqd/3-34    (   34) [003] d..2 24574.631178: 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
88099          <idle>-0     (-----) [003] d..1 24574.631183: cpu_idle: state=0 cpu_id=3
88100<...>-23993 ( 23968) [001] d..2 24574.631185: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88101<...>-24003 ( 23968) [000] d..2 24574.631188: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=003
88102          <idle>-0     (-----) [003] .n.1 24574.631193: cpu_idle: state=4294967295 cpu_id=3
88103          <idle>-0     (-----) [001] d..1 24574.631195: cpu_idle: state=0 cpu_id=1
88104          <idle>-0     (-----) [003] d..2 24574.631198: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
88105<...>-23994 ( 23968) [003] d..1 24574.631231: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=000
88106<...>-24003 ( 23968) [000] d..2 24574.631241: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88107          <idle>-0     (-----) [000] d..1 24574.631246: cpu_idle: state=0 cpu_id=0
88108<...>-23994 ( 23968) [003] d..2 24574.631252: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=000
88109          <idle>-0     (-----) [000] .n.1 24574.631256: cpu_idle: state=4294967295 cpu_id=0
88110          <idle>-0     (-----) [000] d..2 24574.631263: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
88111  kworker/u16:10-23868 (23868) [002] d..2 24574.631280: 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
88112          <idle>-0     (-----) [002] d..1 24574.631286: cpu_idle: state=0 cpu_id=2
88113<...>-23994 ( 23968) [003] d.s2 24574.631291: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
88114           <...>-13145 (-----) [006] d..2 24574.631295: sched_switch: prev_comm=Binder:13131_3 prev_pid=13145 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
88115          <idle>-0     (-----) [006] d..1 24574.631307: cpu_idle: state=0 cpu_id=6
88116<...>-23994 ( 23968) [003] d.s3 24574.631311: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
88117<...>-23994 ( 23968) [003] d.s3 24574.631314: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
88118<...>-23994 ( 23968) [003] .... 24574.631366: binder_transaction: transaction=1670961 dest_node=1303001 dest_proc=24655 dest_thread=0 reply=0 flags=0x11 code=0x1
88119<...>-23994 ( 23968) [003] d..4 24574.631375: sched_waking: comm=Binder:24655_1 pid=24669 prio=120 target_cpu=003
88120<...>-23994 ( 23968) [003] d..5 24574.631393: sched_wakeup: comm=Binder:24655_1 pid=24669 prio=120 target_cpu=003
88121<...>-24003 ( 23968) [000] d..2 24574.631437: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
88122  kworker/u16:10-23868 (23868) [000] d..1 24574.631465: clk_enable: gcc_ufs_phy_axi_clk_src
88123<...>-23994 ( 23968) [003] d..3 24574.631477: sched_waking: comm=android.fg pid=24001 prio=120 target_cpu=000
88124  kworker/u16:10-23868 (23868) [000] d..1 24574.631487: clk_enable: gcc_ufs_phy_axi_clk
88125  kworker/u16:10-23868 (23868) [000] d..1 24574.631497: clk_enable: gcc_ufs_phy_axi_hw_ctl_clk
88126<...>-23994 ( 23968) [003] d..4 24574.631499: sched_wakeup: comm=android.fg pid=24001 prio=120 target_cpu=001
88127          <idle>-0     (-----) [001] .n.1 24574.631505: cpu_idle: state=4294967295 cpu_id=1
88128  kworker/u16:10-23868 (23868) [000] d..1 24574.631506: clk_enable: gcc_aggre_ufs_phy_axi_clk
88129  kworker/u16:10-23868 (23868) [000] d..1 24574.631512: clk_enable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
88130          <idle>-0     (-----) [001] d..2 24574.631512: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.fg next_pid=24001 next_prio=120
88131  kworker/u16:10-23868 (23868) [000] d..1 24574.631517: clk_enable: gcc_ufs_phy_ahb_clk
88132<...>-23994 ( 23968) [003] d..3 24574.631522: sched_waking: comm=android.bg pid=23992 prio=130 target_cpu=001
88133  kworker/u16:10-23868 (23868) [000] d..1 24574.631527: clk_enable: gcc_ufs_phy_unipro_core_clk_src
88134  kworker/u16:10-23868 (23868) [000] d..1 24574.631532: clk_enable: gcc_ufs_phy_unipro_core_clk
88135<...>-23994 ( 23968) [003] d..4 24574.631535: sched_wakeup: comm=android.bg pid=23992 prio=130 target_cpu=001
88136  kworker/u16:10-23868 (23868) [000] d..1 24574.631537: clk_enable: gcc_ufs_phy_unipro_core_hw_ctl_clk
88137  kworker/u16:10-23868 (23868) [000] d..1 24574.631544: clk_enable: gcc_ufs_phy_ice_core_clk_src
88138  kworker/u16:10-23868 (23868) [000] d..1 24574.631548: clk_enable: gcc_ufs_phy_ice_core_clk
88139  kworker/u16:10-23868 (23868) [000] d..1 24574.631554: clk_enable: gcc_ufs_phy_ice_core_hw_ctl_clk
88140<...>-23994 ( 23968) [003] d..3 24574.631557: sched_waking: comm=tworkPolicy.uid pid=24082 prio=118 target_cpu=000
88141  kworker/u16:10-23868 (23868) [000] d..1 24574.631569: clk_enable: gcc_ufs_mem_clkref_clk
88142      android.fg-24001 (23968) [001] d..2 24574.631571: sched_switch: prev_comm=android.fg prev_pid=24001 prev_prio=120 prev_state=S ==> next_comm=android.bg next_pid=23992 next_prio=130
88143<...>-23994 ( 23968) [003] d..4 24574.631575: sched_wakeup: comm=tworkPolicy.uid pid=24082 prio=118 target_cpu=002
88144  kworker/u16:10-23868 (23868) [000] d..1 24574.631578: clk_enable: gcc_ufs_phy_phy_aux_clk_src
88145          <idle>-0     (-----) [002] .n.1 24574.631580: cpu_idle: state=4294967295 cpu_id=2
88146  kworker/u16:10-23868 (23868) [000] d..1 24574.631582: clk_enable: gcc_ufs_phy_phy_aux_clk
88147  kworker/u16:10-23868 (23868) [000] d..1 24574.631586: clk_enable: gcc_ufs_phy_phy_aux_hw_ctl_clk
88148          <idle>-0     (-----) [002] d..2 24574.631586: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=tworkPolicy.uid next_pid=24082 next_prio=118
88149<...>-23994 ( 23968) [003] d..3 24574.631592: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=001
88150          <idle>-0     (-----) [006] dnh2 24574.631636: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=006
88151  kworker/u16:10-23868 (23868) [000] d..3 24574.631636: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
88152          <idle>-0     (-----) [006] .n.1 24574.631640: cpu_idle: state=4294967295 cpu_id=6
88153<...>-23994 ( 23968) [003] d..3 24574.631642: sched_waking: comm=android.bg pid=23992 prio=130 target_cpu=001
88154<...>-23992 ( 23968) [001] d..2 24574.631642: sched_switch: prev_comm=android.bg prev_pid=23992 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88155          <idle>-0     (-----) [006] d..2 24574.631647: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
88156          <idle>-0     (-----) [001] dn.1 24574.631651: cpu_idle: state=0 cpu_id=1
88157          <idle>-0     (-----) [001] .n.1 24574.631653: cpu_idle: state=4294967295 cpu_id=1
88158<...>-23994 ( 23968) [003] d..4 24574.631653: sched_wakeup: comm=android.bg pid=23992 prio=130 target_cpu=001
88159  kworker/u16:10-23868 (23868) [000] d..4 24574.631661: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
88160          <idle>-0     (-----) [001] d..2 24574.631667: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
88161 tworkPolicy.uid-24082 (23968) [002] d..1 24574.631672: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=003
88162<...>-23994 ( 23968) [003] d..2 24574.631676: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=Binder:24655_1 next_pid=24669 next_prio=120
88163  Binder:24655_1-24669 (24655) [003] .... 24574.631684: binder_transaction_received: transaction=1670961
88164  kworker/u16:15-18488 (18488) [001] d..2 24574.631699: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=android.bg next_pid=23992 next_prio=130
88165 tworkPolicy.uid-24082 (23968) [002] d.h3 24574.631728: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
88166          <idle>-0     (-----) [007] dnh2 24574.631730: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=007
88167<...>-23968 ( 23968) [006] d..2 24574.631733: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
88168          <idle>-0     (-----) [007] .n.1 24574.631735: cpu_idle: state=4294967295 cpu_id=7
88169 tworkPolicy.uid-24082 (23968) [002] d..1 24574.631741: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=006
88170          <idle>-0     (-----) [004] dnh2 24574.631743: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
88171          <idle>-0     (-----) [006] d..1 24574.631743: cpu_idle: state=0 cpu_id=6
88172          <idle>-0     (-----) [004] .n.1 24574.631747: cpu_idle: state=4294967295 cpu_id=4
88173          <idle>-0     (-----) [007] d..2 24574.631747: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
88174  kworker/u16:10-23868 (23868) [000] d..2 24574.631749: 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
88175          <idle>-0     (-----) [004] d..2 24574.631751: 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
88176          <idle>-0     (-----) [000] d..1 24574.631754: cpu_idle: state=0 cpu_id=0
88177          <idle>-0     (-----) [006] dnh2 24574.631758: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=006
88178         sugov:4-560   (  560) [004] d..2 24574.631761: 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
88179          <idle>-0     (-----) [006] .n.1 24574.631763: cpu_idle: state=4294967295 cpu_id=6
88180          <idle>-0     (-----) [004] d..1 24574.631766: cpu_idle: state=0 cpu_id=4
88181          <idle>-0     (-----) [006] d..2 24574.631770: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
88182<...>-23994 ( 23968) [007] d..1 24574.631784: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=006
88183 tworkPolicy.uid-24082 (23968) [002] d..2 24574.631786: sched_switch: prev_comm=tworkPolicy.uid prev_pid=24082 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
88184<...>-23968 ( 23968) [006] d..2 24574.631788: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
88185          <idle>-0     (-----) [002] d..1 24574.631794: cpu_idle: state=0 cpu_id=2
88186          <idle>-0     (-----) [006] d..1 24574.631795: cpu_idle: state=0 cpu_id=6
88187<...>-23994 ( 23968) [007] d..2 24574.631800: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=006
88188          <idle>-0     (-----) [006] .n.1 24574.631806: cpu_idle: state=4294967295 cpu_id=6
88189          <idle>-0     (-----) [006] d..2 24574.631811: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
88190<...>-23994 ( 23968) [007] d..2 24574.631845: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
88191          <idle>-0     (-----) [007] d..1 24574.631855: cpu_idle: state=0 cpu_id=7
88192<...>-23968 ( 23968) [006] d..2 24574.631879: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
88193          <idle>-0     (-----) [006] d..1 24574.631888: cpu_idle: state=0 cpu_id=6
88194  Binder:24655_1-24669 (24655) [003] d..1 24574.631924: sched_waking: comm=Jit thread pool pid=24662 prio=129 target_cpu=002
88195  Binder:24655_1-24669 (24655) [003] d..2 24574.631957: sched_wakeup: comm=Jit thread pool pid=24662 prio=129 target_cpu=000
88196          <idle>-0     (-----) [000] .n.1 24574.631961: cpu_idle: state=4294967295 cpu_id=0
88197          <idle>-0     (-----) [000] d..2 24574.631967: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=24662 next_prio=129
88198  Binder:24655_1-24669 (24655) [003] d..2 24574.632039: sched_switch: prev_comm=Binder:24655_1 prev_pid=24669 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
88199          <idle>-0     (-----) [003] d..1 24574.632046: cpu_idle: state=0 cpu_id=3
88200<...>-23992 ( 23968) [001] d.h3 24574.632824: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
88201<...>-23992 ( 23968) [001] d.h4 24574.632850: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
88202          <idle>-0     (-----) [002] .n.1 24574.632855: cpu_idle: state=4294967295 cpu_id=2
88203          <idle>-0     (-----) [002] d..2 24574.632862: 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
88204  kworker/u16:10-23868 (23868) [002] d..2 24574.632879: 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
88205          <idle>-0     (-----) [002] d..1 24574.632884: cpu_idle: state=0 cpu_id=2
88206<...>-23992 ( 23968) [001] d.s2 24574.632909: sched_waking: comm=TaskSnapshotPer pid=24113 prio=130 target_cpu=003
88207<...>-23992 ( 23968) [001] d.s3 24574.632929: sched_blocked_reason: pid=24113 iowait=1 caller=__filemap_fdatawait_range+0x120/0x184
88208<...>-23992 ( 23968) [001] d.s3 24574.632932: sched_wakeup: comm=TaskSnapshotPer pid=24113 prio=130 target_cpu=001
88209<...>-23992 ( 23968) [001] d.s3 24574.632954: sched_waking: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
88210<...>-23992 ( 23968) [001] dns4 24574.632965: sched_wakeup: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
88211<...>-23992 ( 23968) [001] d..2 24574.632985: sched_switch: prev_comm=android.bg prev_pid=23992 prev_prio=130 prev_state=R+ ==> next_comm=kworker/1:1H next_pid=533 next_prio=100
88212    kworker/1:1H-533   (  533) [001] d..2 24574.632997: sched_switch: prev_comm=kworker/1:1H prev_pid=533 prev_prio=100 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=24113 next_prio=130
88213<...>-24662 ( 24655) [000] d.h4 24574.633130: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
88214<...>-24662 ( 24655) [000] d.h5 24574.633144: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
88215          <idle>-0     (-----) [003] .n.1 24574.633148: cpu_idle: state=4294967295 cpu_id=3
88216<...>-24113 ( 23968) [001] d..3 24574.633151: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
88217          <idle>-0     (-----) [003] d..2 24574.633153: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
88218<...>-24113 ( 23968) [001] d..4 24574.633161: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
88219          <idle>-0     (-----) [002] .n.1 24574.633165: cpu_idle: state=4294967295 cpu_id=2
88220          <idle>-0     (-----) [002] d..2 24574.633171: 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
88221  kworker/u16:10-23868 (23868) [002] d..2 24574.633186: 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
88222<...>-24113 ( 23968) [001] d..2 24574.633188: sched_switch: prev_comm=TaskSnapshotPer prev_pid=24113 prev_prio=130 prev_state=D ==> next_comm=android.bg next_pid=23992 next_prio=130
88223          <idle>-0     (-----) [002] d..1 24574.633190: cpu_idle: state=0 cpu_id=2
88224<...>-23992 ( 23968) [001] d.h3 24574.633221: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
88225<...>-23992 ( 23968) [001] d.h4 24574.633230: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
88226          <idle>-0     (-----) [002] .n.1 24574.633234: cpu_idle: state=4294967295 cpu_id=2
88227          <idle>-0     (-----) [002] d..2 24574.633240: 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
88228<...>-23992 ( 23968) [001] d.s2 24574.633242: sched_waking: comm=TaskSnapshotPer pid=24113 prio=130 target_cpu=001
88229  kworker/u16:10-23868 (23868) [002] d..2 24574.633250: 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
88230          <idle>-0     (-----) [002] d..1 24574.633255: cpu_idle: state=0 cpu_id=2
88231<...>-23992 ( 23968) [001] d.s3 24574.633258: sched_blocked_reason: pid=24113 iowait=1 caller=wait_on_node_pages_writeback+0x140/0x248
88232 crtc_commit:111-253   (  253) [003] d..2 24574.633259: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
88233          <idle>-0     (-----) [003] d..1 24574.633263: cpu_idle: state=0 cpu_id=3
88234<...>-23992 ( 23968) [001] d.s3 24574.633263: sched_wakeup: comm=TaskSnapshotPer pid=24113 prio=130 target_cpu=002
88235          <idle>-0     (-----) [002] .n.1 24574.633268: cpu_idle: state=4294967295 cpu_id=2
88236<...>-23992 ( 23968) [001] d.s3 24574.633268: sched_waking: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
88237<...>-23992 ( 23968) [001] dns4 24574.633273: sched_wakeup: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
88238          <idle>-0     (-----) [002] d..2 24574.633273: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=24113 next_prio=130
88239<...>-23992 ( 23968) [001] d..2 24574.633282: sched_switch: prev_comm=android.bg prev_pid=23992 prev_prio=130 prev_state=R+ ==> next_comm=kworker/1:1H next_pid=533 next_prio=100
88240    kworker/1:1H-533   (  533) [001] d..2 24574.633289: sched_switch: prev_comm=kworker/1:1H prev_pid=533 prev_prio=100 prev_state=S ==> next_comm=android.bg next_pid=23992 next_prio=130
88241<...>-24662 ( 24655) [000] d.h5 24574.633416: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
88242<...>-24662 ( 24655) [000] d.h6 24574.633433: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
88243          <idle>-0     (-----) [003] .n.1 24574.633437: cpu_idle: state=4294967295 cpu_id=3
88244          <idle>-0     (-----) [003] d..2 24574.633442: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
88245  crtc_event:111-254   (  254) [003] d..2 24574.633460: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
88246          <idle>-0     (-----) [003] d..1 24574.633463: cpu_idle: state=0 cpu_id=3
88247<...>-24113 ( 23968) [002] d..3 24574.633620: sched_waking: comm=RenderThread pid=27905 prio=116 target_cpu=007
88248<...>-24113 ( 23968) [002] d..4 24574.633646: sched_wakeup: comm=RenderThread pid=27905 prio=116 target_cpu=003
88249          <idle>-0     (-----) [003] .n.1 24574.633650: cpu_idle: state=4294967295 cpu_id=3
88250<...>-24113 ( 23968) [002] d.h3 24574.633678: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
88251          <idle>-0     (-----) [003] d..2 24574.633679: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27905 next_prio=116
88252          <idle>-0     (-----) [004] dnh2 24574.633693: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
88253          <idle>-0     (-----) [004] .n.1 24574.633696: cpu_idle: state=4294967295 cpu_id=4
88254          <idle>-0     (-----) [004] d..2 24574.633700: 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
88255<...>-24113 ( 23968) [002] d..2 24574.633705: sched_switch: prev_comm=TaskSnapshotPer prev_pid=24113 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
88256         sugov:4-560   (  560) [004] d..2 24574.633710: 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
88257          <idle>-0     (-----) [004] d..1 24574.633714: cpu_idle: state=0 cpu_id=4
88258          <idle>-0     (-----) [002] d..1 24574.633717: cpu_idle: state=0 cpu_id=2
88259<...>-27905 ( 23968) [003] d..2 24574.633786: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
88260<...>-27905 ( 23968) [003] d..3 24574.633800: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
88261<...>-27905 ( 23968) [003] d.s2 24574.634233: sched_waking: comm=kworker/3:1H pid=697 prio=100 target_cpu=003
88262<...>-24662 ( 24655) [000] d.s1 24574.634239: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
88263<...>-27905 ( 23968) [003] dns3 24574.634241: sched_wakeup: comm=kworker/3:1H pid=697 prio=100 target_cpu=003
88264<...>-27905 ( 23968) [003] dns2 24574.634245: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
88265<...>-27905 ( 23968) [003] dns3 24574.634260: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
88266          <idle>-0     (-----) [002] .n.1 24574.634266: cpu_idle: state=4294967295 cpu_id=2
88267<...>-24662 ( 24655) [000] d.s2 24574.634270: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
88268<...>-27905 ( 23968) [003] d..2 24574.634270: sched_switch: prev_comm=RenderThread prev_pid=27905 prev_prio=116 prev_state=R+ ==> next_comm=kworker/3:1H next_pid=697 next_prio=100
88269          <idle>-0     (-----) [002] d..2 24574.634272: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
88270<...>-24662 ( 24655) [000] d.s2 24574.634277: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
88271<...>-23992 ( 23968) [001] d..2 24574.634278: sched_switch: prev_comm=android.bg prev_pid=23992 prev_prio=130 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
88272<...>-697 ( 697) [003] d..2 24574.634280: sched_switch: prev_comm=kworker/3:1H prev_pid=697 prev_prio=100 prev_state=S ==> next_comm=RenderThread next_pid=27905 next_prio=116
88273<...>-24662 ( 24655) [000] dns3 24574.634286: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
88274     rcu_preempt-7     (    7) [001] d..2 24574.634288: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
88275  crtc_event:111-254   (  254) [002] d..2 24574.634299: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
88276<...>-24662 ( 24655) [000] d..2 24574.634301: sched_switch: prev_comm=Jit thread pool prev_pid=24662 prev_prio=129 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
88277     rcu_preempt-7     (    7) [001] d..3 24574.634317: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
88278     rcu_preempt-7     (    7) [001] d..2 24574.634331: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=android.bg next_pid=23992 next_prio=130
88279     kworker/0:1-13012 (13012) [000] d..2 24574.634353: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=Jit thread pool next_pid=24662 next_prio=129
88280     logd.writer-563   (  555) [002] d..2 24574.634423: 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
88281         rcuop/0-10    (   10) [002] d..2 24574.634432: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
88282         rcuop/0-10    (   10) [002] d..3 24574.634459: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
88283<...>-23992 ( 23968) [001] d..2 24574.634468: sched_switch: prev_comm=android.bg prev_pid=23992 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88284         rcuop/0-10    (   10) [002] d..2 24574.634473: 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
88285          <idle>-0     (-----) [001] d..1 24574.634480: cpu_idle: state=0 cpu_id=1
88286         rcuop/1-21    (   21) [002] d..2 24574.634491: 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
88287          <idle>-0     (-----) [002] d..1 24574.634498: cpu_idle: state=0 cpu_id=2
88288          <idle>-0     (-----) [002] d.h2 24574.635057: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
88289          <idle>-0     (-----) [002] dnh3 24574.635066: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
88290          <idle>-0     (-----) [002] .n.1 24574.635072: cpu_idle: state=4294967295 cpu_id=2
88291          <idle>-0     (-----) [002] d..2 24574.635077: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
88292        DispSync-23904 (23896) [002] d..1 24574.635115: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
88293        DispSync-23904 (23896) [002] d..2 24574.635126: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
88294          <idle>-0     (-----) [001] .n.1 24574.635132: cpu_idle: state=4294967295 cpu_id=1
88295          <idle>-0     (-----) [001] d..2 24574.635139: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
88296        DispSync-23904 (23896) [002] d..2 24574.635149: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
88297          <idle>-0     (-----) [002] d..1 24574.635155: cpu_idle: state=0 cpu_id=2
88298  appEventThread-23905 (23896) [001] d..3 24574.635213: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
88299  appEventThread-23905 (23896) [001] d..4 24574.635234: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
88300          <idle>-0     (-----) [002] .n.1 24574.635238: cpu_idle: state=4294967295 cpu_id=2
88301          <idle>-0     (-----) [002] d..2 24574.635247: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
88302  appEventThread-23905 (23896) [001] d..3 24574.635250: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
88303  appEventThread-23905 (23896) [001] d.h3 24574.635297: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
88304          <idle>-0     (-----) [006] dnh2 24574.635299: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
88305          <idle>-0     (-----) [006] .n.1 24574.635303: cpu_idle: state=4294967295 cpu_id=6
88306          <idle>-0     (-----) [006] d..2 24574.635311: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
88307          <idle>-0     (-----) [004] dnh2 24574.635313: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
88308          <idle>-0     (-----) [004] .n.1 24574.635316: cpu_idle: state=4294967295 cpu_id=4
88309  appEventThread-23905 (23896) [001] d..3 24574.635317: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=007
88310          <idle>-0     (-----) [004] d..2 24574.635321: 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
88311         sugov:4-560   (  560) [004] d..2 24574.635331: 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
88312          <idle>-0     (-----) [004] d..1 24574.635336: cpu_idle: state=0 cpu_id=4
88313          <idle>-0     (-----) [007] dnh2 24574.635338: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=007
88314          <idle>-0     (-----) [007] .n.1 24574.635343: cpu_idle: state=4294967295 cpu_id=7
88315  appEventThread-23905 (23896) [001] d..2 24574.635349: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88316          <idle>-0     (-----) [007] d..2 24574.635351: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
88317          <idle>-0     (-----) [001] d..1 24574.635357: cpu_idle: state=0 cpu_id=1
88318<...>-24151 ( 24151) [006] .... 24574.635534: binder_transaction: transaction=1670962 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
88319 s.nexuslauncher-24827 (24827) [002] .... 24574.635545: binder_transaction: transaction=1670963 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
88320<...>-24151 ( 24151) [006] d..4 24574.635545: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
88321 s.nexuslauncher-24827 (24827) [002] d..4 24574.635567: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
88322          <idle>-0     (-----) [001] dnh2 24574.635573: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
88323          <idle>-0     (-----) [001] .n.1 24574.635577: cpu_idle: state=4294967295 cpu_id=1
88324          <idle>-0     (-----) [001] d..2 24574.635584: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
88325          <idle>-0     (-----) [005] dnh2 24574.635625: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
88326  Binder:23896_5-25989 (23896) [001] .... 24574.635626: binder_transaction_received: transaction=1670962
88327          <idle>-0     (-----) [005] .n.1 24574.635629: cpu_idle: state=4294967295 cpu_id=5
88328          <idle>-0     (-----) [005] d..2 24574.635640: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
88329  Binder:23896_4-24423 (23896) [005] .... 24574.635648: binder_transaction_received: transaction=1670963
88330  Binder:23896_5-25989 (23896) [001] d..1 24574.635654: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
88331  Binder:23896_5-25989 (23896) [001] d..2 24574.635671: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
88332 s.nexuslauncher-24827 (24827) [002] d..2 24574.635681: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
88333  Binder:23896_5-25989 (23896) [001] d..1 24574.635686: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
88334<...>-24151 ( 24151) [006] d..2 24574.635691: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
88335  Binder:23896_4-24423 (23896) [005] d..2 24574.635695: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
88336          <idle>-0     (-----) [005] d..1 24574.635705: cpu_idle: state=0 cpu_id=5
88337          <idle>-0     (-----) [006] d..1 24574.635705: cpu_idle: state=0 cpu_id=6
88338          <idle>-0     (-----) [005] dnh2 24574.635714: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
88339          <idle>-0     (-----) [005] .n.1 24574.635717: cpu_idle: state=4294967295 cpu_id=5
88340  appEventThread-23905 (23896) [002] d..2 24574.635722: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
88341          <idle>-0     (-----) [005] d..2 24574.635723: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
88342  Binder:23896_5-25989 (23896) [001] d..2 24574.635727: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88343  Binder:23896_4-24423 (23896) [005] d..1 24574.635731: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
88344          <idle>-0     (-----) [001] d..1 24574.635735: cpu_idle: state=0 cpu_id=1
88345 s.nexuslauncher-24827 (24827) [002] d..2 24574.635738: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
88346          <idle>-0     (-----) [002] dnh2 24574.635750: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
88347          <idle>-0     (-----) [002] d..2 24574.635758: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
88348  Binder:23896_4-24423 (23896) [005] d..2 24574.635769: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
88349          <idle>-0     (-----) [005] d..1 24574.635777: cpu_idle: state=0 cpu_id=5
88350  appEventThread-23905 (23896) [002] d..2 24574.635780: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
88351          <idle>-0     (-----) [002] d..1 24574.635787: cpu_idle: state=0 cpu_id=2
88352           <...>-13131 (-----) [007] d..3 24574.636263: sched_waking: comm=RenderThread pid=13151 prio=120 target_cpu=006
88353          <idle>-0     (-----) [001] dnh2 24574.636322: sched_wakeup: comm=RenderThread pid=13151 prio=120 target_cpu=001
88354           <...>-13131 (-----) [007] d.h3 24574.636322: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
88355          <idle>-0     (-----) [001] .n.1 24574.636327: cpu_idle: state=4294967295 cpu_id=1
88356          <idle>-0     (-----) [001] d..2 24574.636333: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=120
88357           <...>-13131 (-----) [007] d.h4 24574.636334: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
88358          <idle>-0     (-----) [004] .n.1 24574.636338: cpu_idle: state=4294967295 cpu_id=4
88359          <idle>-0     (-----) [004] d..2 24574.636343: 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
88360         sugov:4-560   (  560) [004] d..2 24574.636353: 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
88361          <idle>-0     (-----) [004] d..1 24574.636359: cpu_idle: state=0 cpu_id=4
88362           <...>-13131 (-----) [007] d..2 24574.636360: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
88363          <idle>-0     (-----) [007] d..1 24574.636374: cpu_idle: state=0 cpu_id=7
88364<...>-24662 ( 24655) [000] d..2 24574.636548: sched_switch: prev_comm=Jit thread pool prev_pid=24662 prev_prio=129 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88365          <idle>-0     (-----) [000] d..1 24574.636563: cpu_idle: state=0 cpu_id=0
88366           <...>-13151 (-----) [001] d..1 24574.636577: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=007
88367          <idle>-0     (-----) [007] dnh2 24574.636597: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=007
88368          <idle>-0     (-----) [007] .n.1 24574.636601: cpu_idle: state=4294967295 cpu_id=7
88369           <...>-13151 (-----) [001] d..2 24574.636606: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88370          <idle>-0     (-----) [007] d..2 24574.636610: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
88371          <idle>-0     (-----) [001] d..1 24574.636613: cpu_idle: state=0 cpu_id=1
88372           <...>-13131 (-----) [007] d..3 24574.636629: sched_waking: comm=RenderThread pid=13151 prio=120 target_cpu=001
88373          <idle>-0     (-----) [001] dnh2 24574.636645: sched_wakeup: comm=RenderThread pid=13151 prio=120 target_cpu=001
88374          <idle>-0     (-----) [001] .n.1 24574.636649: cpu_idle: state=4294967295 cpu_id=1
88375           <...>-13131 (-----) [007] d..2 24574.636651: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
88376          <idle>-0     (-----) [001] d..2 24574.636655: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=120
88377          <idle>-0     (-----) [007] d..1 24574.636658: cpu_idle: state=0 cpu_id=7
88378<...>-27905 ( 23968) [003] d..2 24574.637146: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
88379<...>-27905 ( 23968) [003] d..3 24574.637161: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
88380           <...>-13151 (-----) [001] ...1 24574.637249: tracing_mark_write: B|13131|HIDL::IMapper::freeBuffer::passthrough
88381           <...>-13151 (-----) [001] ...1 24574.637530: tracing_mark_write: B|13131|FreeBuffer
88382           <...>-13151 (-----) [001] d.s2 24574.637578: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
88383           <...>-13151 (-----) [001] d.s3 24574.637630: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
88384<...>-27905 ( 23968) [003] d.H2 24574.637635: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
88385<...>-27905 ( 23968) [003] d.H2 24574.637646: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
88386          <idle>-0     (-----) [004] dnh2 24574.637650: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
88387           <...>-13151 (-----) [001] ...1 24574.637652: tracing_mark_write: E|13131
88388          <idle>-0     (-----) [004] .n.1 24574.637654: cpu_idle: state=4294967295 cpu_id=4
88389           <...>-13151 (-----) [001] ...1 24574.637656: tracing_mark_write: B|13131|FreeBuffer
88390          <idle>-0     (-----) [004] d..2 24574.637658: 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
88391           <...>-13151 (-----) [001] ...1 24574.637659: tracing_mark_write: B|13131|UnmapBuffer
88392<...>-27905 ( 23968) [003] d.H3 24574.637660: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
88393          <idle>-0     (-----) [002] .n.1 24574.637665: cpu_idle: state=4294967295 cpu_id=2
88394         sugov:4-560   (  560) [004] d..2 24574.637670: 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
88395          <idle>-0     (-----) [002] d..2 24574.637673: 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
88396          <idle>-0     (-----) [004] d..1 24574.637677: cpu_idle: state=0 cpu_id=4
88397          <idle>-0     (-----) [000] ...1 24574.637678: cpu_idle: state=4294967295 cpu_id=0
88398          <idle>-0     (-----) [000] d..1 24574.637681: cpu_idle: state=0 cpu_id=0
88399           <...>-13151 (-----) [001] ...1 24574.637685: tracing_mark_write: E|13131
88400           <...>-13151 (-----) [001] ...1 24574.637693: tracing_mark_write: E|13131
88401         sugov:0-559   (  559) [002] d..2 24574.637701: 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
88402           <...>-13151 (-----) [001] ...1 24574.637704: tracing_mark_write: E|13131
88403           <...>-13151 (-----) [001] ...1 24574.637716: tracing_mark_write: B|13131|HIDL::IMapper::freeBuffer::passthrough
88404           <...>-13151 (-----) [001] ...1 24574.637720: tracing_mark_write: B|13131|FreeBuffer
88405           <...>-13151 (-----) [001] ...1 24574.637741: tracing_mark_write: E|13131
88406           <...>-13151 (-----) [001] ...1 24574.637744: tracing_mark_write: B|13131|FreeBuffer
88407           <...>-13151 (-----) [001] ...1 24574.637752: tracing_mark_write: B|13131|UnmapBuffer
88408           <...>-13151 (-----) [001] ...1 24574.637771: tracing_mark_write: E|13131
88409           <...>-13151 (-----) [001] ...1 24574.637780: tracing_mark_write: E|13131
88410           <...>-13151 (-----) [001] ...1 24574.637785: tracing_mark_write: E|13131
88411           <...>-13151 (-----) [001] .... 24574.637821: binder_transaction: transaction=1670964 dest_node=1669126 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0xa
88412           <...>-13151 (-----) [001] d..4 24574.637827: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
88413  kworker/u16:10-23868 (23868) [002] .... 24574.637839: clk_set_rate: l3_cluster1_vote_clk 300000000
88414           <...>-13151 (-----) [001] d..5 24574.637845: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
88415           <...>-13151 (-----) [001] d..2 24574.637877: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
88416  Binder:23896_4-24423 (23896) [001] .... 24574.637884: binder_transaction_received: transaction=1670964
88417  Binder:23896_4-24423 (23896) [001] ...1 24574.637936: tracing_mark_write: B|23896|HIDL::IMapper::freeBuffer::passthrough
88418  Binder:23896_4-24423 (23896) [001] ...1 24574.637957: tracing_mark_write: B|23896|FreeBuffer
88419  Binder:23896_4-24423 (23896) [001] d..2 24574.637987: sched_waking: comm=system pid=105 prio=120 target_cpu=000
88420  Binder:23896_4-24423 (23896) [001] d..3 24574.638013: sched_wakeup: comm=system pid=105 prio=120 target_cpu=001
88421  Binder:23896_4-24423 (23896) [001] ...1 24574.638027: tracing_mark_write: E|23896
88422  Binder:23896_4-24423 (23896) [001] ...1 24574.638030: tracing_mark_write: B|23896|FreeBuffer
88423  Binder:23896_4-24423 (23896) [001] ...1 24574.638043: tracing_mark_write: E|23896
88424  Binder:23896_4-24423 (23896) [001] ...1 24574.638049: tracing_mark_write: E|23896
88425  kworker/u16:10-23868 (23868) [002] d..2 24574.638062: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=system next_pid=105 next_prio=120
88426<...>-27905 ( 23968) [003] d.s2 24574.638088: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
88427<...>-27905 ( 23968) [003] d.s3 24574.638111: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
88428<...>-27905 ( 23968) [003] d.s3 24574.638114: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
88429  Binder:23896_4-24423 (23896) [001] ...1 24574.638162: tracing_mark_write: B|23896|HIDL::IMapper::freeBuffer::passthrough
88430  Binder:23896_4-24423 (23896) [001] ...1 24574.638169: tracing_mark_write: B|23896|FreeBuffer
88431  Binder:23896_4-24423 (23896) [001] ...1 24574.638250: tracing_mark_write: E|23896
88432  Binder:23896_4-24423 (23896) [001] ...1 24574.638253: tracing_mark_write: B|23896|FreeBuffer
88433  Binder:23896_4-24423 (23896) [001] ...1 24574.638265: tracing_mark_write: E|23896
88434  Binder:23896_4-24423 (23896) [001] ...1 24574.638269: tracing_mark_write: E|23896
88435  Binder:23896_4-24423 (23896) [001] d..5 24574.638304: sched_waking: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=006
88436  Binder:23896_4-24423 (23896) [001] d..6 24574.638325: sched_wakeup: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=000
88437          <idle>-0     (-----) [000] .n.1 24574.638330: cpu_idle: state=4294967295 cpu_id=0
88438  Binder:23896_4-24423 (23896) [001] d.h6 24574.638354: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
88439          <idle>-0     (-----) [000] d..2 24574.638355: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_3 next_pid=13145 next_prio=120
88440  Binder:23896_4-24423 (23896) [001] d.h6 24574.638362: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
88441          <idle>-0     (-----) [004] dnh2 24574.638368: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
88442          <idle>-0     (-----) [004] .n.1 24574.638371: cpu_idle: state=4294967295 cpu_id=4
88443          <idle>-0     (-----) [004] d..2 24574.638376: 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
88444  Binder:23896_4-24423 (23896) [001] d.h7 24574.638376: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
88445  Binder:23896_4-24423 (23896) [001] .... 24574.638383: binder_transaction: transaction=1670965 dest_node=0 dest_proc=13131 dest_thread=13151 reply=1 flags=0x0 code=0x0
88446         sugov:4-560   (  560) [004] d..2 24574.638385: 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
88447           <...>-13145 (-----) [000] d..2 24574.638387: sched_switch: prev_comm=Binder:13131_3 prev_pid=13145 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
88448  Binder:23896_4-24423 (23896) [001] d..2 24574.638389: sched_waking: comm=RenderThread pid=13151 prio=120 target_cpu=001
88449          <idle>-0     (-----) [004] d..1 24574.638392: cpu_idle: state=0 cpu_id=4
88450         sugov:0-559   (  559) [000] d..2 24574.638396: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:13131_3 next_pid=13145 next_prio=120
88451          <idle>-0     (-----) [006] dnh2 24574.638428: sched_wakeup: comm=RenderThread pid=13151 prio=120 target_cpu=006
88452          <idle>-0     (-----) [006] .n.1 24574.638432: cpu_idle: state=4294967295 cpu_id=6
88453           <...>-13145 (-----) [000] d..2 24574.638440: sched_switch: prev_comm=Binder:13131_3 prev_pid=13145 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88454          <idle>-0     (-----) [006] d..2 24574.638440: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=120
88455  Binder:23896_4-24423 (23896) [001] d..5 24574.638446: sched_waking: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=000
88456          <idle>-0     (-----) [000] d..1 24574.638447: cpu_idle: state=0 cpu_id=0
88457  Binder:23896_4-24423 (23896) [001] d..6 24574.638455: sched_wakeup: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=000
88458           <...>-13151 (-----) [006] .... 24574.638459: binder_transaction_received: transaction=1670965
88459          <idle>-0     (-----) [000] .n.1 24574.638461: cpu_idle: state=4294967295 cpu_id=0
88460           <...>-13151 (-----) [006] d..3 24574.638463: sched_waking: comm=Binder:13131_1 pid=13143 prio=120 target_cpu=000
88461          <idle>-0     (-----) [000] d..2 24574.638467: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_3 next_pid=13145 next_prio=120
88462  Binder:23896_4-24423 (23896) [001] d..2 24574.638468: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
88463           <...>-13151 (-----) [006] d..4 24574.638491: sched_wakeup: comm=Binder:13131_1 pid=13143 prio=120 target_cpu=007
88464          <idle>-0     (-----) [007] .n.1 24574.638496: cpu_idle: state=4294967295 cpu_id=7
88465          <idle>-0     (-----) [007] d..2 24574.638518: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_1 next_pid=13143 next_prio=120
88466           <...>-13143 (-----) [007] d..2 24574.638533: sched_switch: prev_comm=Binder:13131_1 prev_pid=13143 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
88467          <idle>-0     (-----) [007] d..1 24574.638539: cpu_idle: state=0 cpu_id=7
88468           <...>-13145 (-----) [000] d..2 24574.638542: sched_switch: prev_comm=Binder:13131_3 prev_pid=13145 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88469          <idle>-0     (-----) [000] d..1 24574.638549: cpu_idle: state=0 cpu_id=0
88470           <...>-13151 (-----) [006] d..1 24574.638562: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=007
88471  kworker/u16:10-23868 (23868) [001] .... 24574.638575: clk_set_rate: l3_cluster0_vote_clk 1132800000
88472  kworker/u16:10-23868 (23868) [001] .... 24574.638579: clk_set_rate: l3_clk 1132800000
88473          <idle>-0     (-----) [000] dnh2 24574.638607: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
88474          <idle>-0     (-----) [000] .n.1 24574.638612: cpu_idle: state=4294967295 cpu_id=0
88475          <idle>-0     (-----) [000] d..2 24574.638617: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
88476           <...>-13151 (-----) [006] d..2 24574.638627: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
88477  kworker/u16:10-23868 (23868) [001] d..2 24574.638633: 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
88478          <idle>-0     (-----) [006] d..1 24574.638638: cpu_idle: state=0 cpu_id=6
88479          <idle>-0     (-----) [001] d..1 24574.638644: cpu_idle: state=0 cpu_id=1
88480           <...>-13131 (-----) [000] d..3 24574.638737: sched_waking: comm=RenderThread pid=13151 prio=120 target_cpu=006
88481           <...>-13131 (-----) [000] d..4 24574.638759: sched_wakeup: comm=RenderThread pid=13151 prio=120 target_cpu=001
88482          <idle>-0     (-----) [001] .n.1 24574.638764: cpu_idle: state=4294967295 cpu_id=1
88483          <idle>-0     (-----) [001] d..2 24574.638789: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=120
88484           <...>-13131 (-----) [000] d..2 24574.638805: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88485           <...>-13151 (-----) [001] d..1 24574.638808: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
88486          <idle>-0     (-----) [000] d..1 24574.638813: cpu_idle: state=0 cpu_id=0
88487           <...>-13151 (-----) [001] d..2 24574.638818: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
88488          <idle>-0     (-----) [000] .n.1 24574.638823: cpu_idle: state=4294967295 cpu_id=0
88489          <idle>-0     (-----) [000] d..2 24574.638829: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
88490           <...>-13151 (-----) [001] d..2 24574.638838: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88491          <idle>-0     (-----) [001] d..1 24574.638844: cpu_idle: state=0 cpu_id=1
88492           <...>-13131 (-----) [000] .... 24574.638993: binder_transaction: transaction=1670966 dest_node=1669030 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x6
88493           <...>-13131 (-----) [000] d.h2 24574.639047: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
88494           <...>-13131 (-----) [000] dnh3 24574.639058: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
88495<...>-105 ( 105) [002] d.h1 24574.639059: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
88496           <...>-13131 (-----) [000] d..2 24574.639068: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=R+ ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
88497<...>-105 ( 105) [002] d.h2 24574.639080: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
88498          <idle>-0     (-----) [001] .n.1 24574.639084: cpu_idle: state=4294967295 cpu_id=1
88499          <idle>-0     (-----) [001] d..2 24574.639089: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
88500        DispSync-23904 (23896) [001] d..1 24574.639121: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
88501        DispSync-23904 (23896) [001] d..2 24574.639142: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
88502<...>-105 ( 105) [002] d..2 24574.639152: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
88503        DispSync-23904 (23896) [001] d..2 24574.639164: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88504          <idle>-0     (-----) [001] d..1 24574.639169: cpu_idle: state=0 cpu_id=1
88505   sfEventThread-23906 (23896) [002] d..3 24574.639205: sched_waking: comm=android.anim pid=24041 prio=116 target_cpu=002
88506 irq/79-1436400.-24613 (24613) [000] d..2 24574.639213: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
88507           <...>-13131 (-----) [000] d..4 24574.639221: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=000
88508   sfEventThread-23906 (23896) [002] d..4 24574.639228: sched_wakeup: comm=android.anim pid=24041 prio=116 target_cpu=001
88509           <...>-13131 (-----) [000] d..5 24574.639232: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=000
88510          <idle>-0     (-----) [001] .n.1 24574.639232: cpu_idle: state=4294967295 cpu_id=1
88511          <idle>-0     (-----) [001] d..2 24574.639238: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=116
88512           <...>-13131 (-----) [000] d..2 24574.639240: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
88513   sfEventThread-23906 (23896) [002] d..3 24574.639247: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
88514<...>-12589 ( 23968) [000] .... 24574.639250: binder_transaction_received: transaction=1670966
88515   sfEventThread-23906 (23896) [002] d..4 24574.639260: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
88516<...>-27905 ( 23968) [003] d.s2 24574.639261: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
88517<...>-12589 ( 23968) [000] d..2 24574.639272: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
88518   sfEventThread-23906 (23896) [002] d..2 24574.639274: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
88519<...>-27905 ( 23968) [003] d.s3 24574.639281: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
88520  surfaceflinger-23896 (23896) [000] d..2 24574.639290: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=R+ ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
88521<...>-105 ( 105) [002] d..2 24574.639321: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
88522 irq/79-1436400.-24613 (24613) [000] d..2 24574.639333: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
88523<...>-24041 ( 23968) [001] .... 24574.639485: binder_transaction: transaction=1670967 dest_node=1271137 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
88524<...>-24041 ( 23968) [001] d..4 24574.639491: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
88525<...>-24041 ( 23968) [001] d.h5 24574.639538: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
88526          <idle>-0     (-----) [005] dnh2 24574.639539: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
88527          <idle>-0     (-----) [005] .n.1 24574.639543: cpu_idle: state=4294967295 cpu_id=5
88528<...>-24041 ( 23968) [001] d.h5 24574.639547: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
88529          <idle>-0     (-----) [005] d..2 24574.639551: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
88530          <idle>-0     (-----) [004] dnh2 24574.639553: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
88531<...>-24041 ( 23968) [001] d.h6 24574.639556: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
88532          <idle>-0     (-----) [004] .n.1 24574.639556: cpu_idle: state=4294967295 cpu_id=4
88533  Binder:23896_4-24423 (23896) [005] .... 24574.639559: binder_transaction_received: transaction=1670967
88534          <idle>-0     (-----) [004] d..2 24574.639561: 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
88535<...>-12589 ( 23968) [000] d..2 24574.639566: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
88536         sugov:4-560   (  560) [004] d..2 24574.639570: 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
88537  Binder:23896_4-24423 (23896) [005] d..1 24574.639571: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
88538          <idle>-0     (-----) [004] d..1 24574.639575: cpu_idle: state=0 cpu_id=4
88539         sugov:0-559   (  559) [000] d..2 24574.639576: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
88540<...>-12589 ( 23968) [000] dnh1 24574.639591: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
88541<...>-12589 ( 23968) [000] d..2 24574.639596: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
88542  Binder:23896_4-24423 (23896) [005] d..2 24574.639602: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
88543          <idle>-0     (-----) [005] d..1 24574.639609: cpu_idle: state=0 cpu_id=5
88544   sfEventThread-23906 (23896) [000] d..2 24574.639620: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
88545<...>-12589 ( 23968) [000] d..2 24574.639898: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88546          <idle>-0     (-----) [000] d..1 24574.639908: cpu_idle: state=0 cpu_id=0
88547<...>-24041 ( 23968) [001] .... 24574.640209: binder_transaction: transaction=1670968 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
88548<...>-24041 ( 23968) [001] ...2 24574.640239: binder_set_priority: proc=23896 thread=24423 old=120 => new=116 desired=116
88549<...>-24041 ( 23968) [001] d..4 24574.640244: sched_waking: comm=Binder:23896_4 pid=24423 prio=116 target_cpu=005
88550<...>-24041 ( 23968) [001] d..5 24574.640262: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=116 target_cpu=001
88551<...>-24041 ( 23968) [001] d.h5 24574.640292: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
88552<...>-24041 ( 23968) [001] d.h5 24574.640301: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
88553          <idle>-0     (-----) [004] dnh2 24574.640306: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
88554<...>-24041 ( 23968) [001] d.h6 24574.640309: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
88555          <idle>-0     (-----) [004] .n.1 24574.640310: cpu_idle: state=4294967295 cpu_id=4
88556          <idle>-0     (-----) [004] d..2 24574.640314: 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
88557          <idle>-0     (-----) [000] .n.1 24574.640315: cpu_idle: state=4294967295 cpu_id=0
88558<...>-24041 ( 23968) [001] d..2 24574.640319: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=116
88559          <idle>-0     (-----) [000] d..2 24574.640321: 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
88560         sugov:4-560   (  560) [004] d..2 24574.640323: 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
88561  Binder:23896_4-24423 (23896) [001] .... 24574.640325: binder_transaction_received: transaction=1670968
88562          <idle>-0     (-----) [004] d..1 24574.640328: cpu_idle: state=0 cpu_id=4
88563         sugov:0-559   (  559) [000] d..2 24574.640333: 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
88564          <idle>-0     (-----) [000] d..1 24574.640339: cpu_idle: state=0 cpu_id=0
88565  Binder:23896_4-24423 (23896) [001] .... 24574.640402: binder_transaction: transaction=1670969 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
88566  Binder:23896_4-24423 (23896) [001] d..2 24574.640406: sched_waking: comm=android.anim pid=24041 prio=116 target_cpu=001
88567  Binder:23896_4-24423 (23896) [001] d..3 24574.640414: sched_wakeup: comm=android.anim pid=24041 prio=116 target_cpu=001
88568  Binder:23896_4-24423 (23896) [001] .... 24574.640417: binder_set_priority: proc=23896 thread=24423 old=116 => new=120 desired=120
88569  Binder:23896_4-24423 (23896) [001] d..2 24574.640426: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=android.anim next_pid=24041 next_prio=116
88570<...>-24041 ( 23968) [001] .... 24574.640430: binder_transaction_received: transaction=1670969
88571  surfaceflinger-23896 (23896) [002] d..1 24574.640453: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
88572  surfaceflinger-23896 (23896) [002] d..2 24574.640466: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
88573          <idle>-0     (-----) [000] .n.1 24574.640471: cpu_idle: state=4294967295 cpu_id=0
88574<...>-24041 ( 23968) [001] d..1 24574.640473: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=000
88575          <idle>-0     (-----) [000] d..2 24574.640476: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
88576          <idle>-0     (-----) [006] dnh2 24574.640523: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=006
88577          <idle>-0     (-----) [006] .n.1 24574.640528: cpu_idle: state=4294967295 cpu_id=6
88578   sfEventThread-23906 (23896) [000] d..2 24574.640531: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
88579          <idle>-0     (-----) [006] d..2 24574.640535: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
88580  Binder:23896_4-24423 (23896) [000] d..2 24574.640567: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88581          <idle>-0     (-----) [000] d..1 24574.640575: cpu_idle: state=0 cpu_id=0
88582<...>-24041 ( 23968) [001] d..2 24574.640583: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88583          <idle>-0     (-----) [001] d..1 24574.640590: cpu_idle: state=0 cpu_id=1
88584<...>-12589 ( 23968) [006] .... 24574.640689: binder_transaction: transaction=1670970 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
88585<...>-12589 ( 23968) [006] ...2 24574.640703: binder_set_priority: proc=23896 thread=24423 old=120 => new=116 desired=116
88586<...>-12589 ( 23968) [006] d..4 24574.640705: sched_waking: comm=Binder:23896_4 pid=24423 prio=116 target_cpu=000
88587<...>-12589 ( 23968) [006] d..5 24574.640723: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=116 target_cpu=006
88588<...>-12589 ( 23968) [006] d..2 24574.640757: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=116 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=116
88589  Binder:23896_4-24423 (23896) [006] .... 24574.640762: binder_transaction_received: transaction=1670970
88590  Binder:23896_4-24423 (23896) [006] .... 24574.640810: binder_transaction: transaction=1670971 dest_node=0 dest_proc=23968 dest_thread=12589 reply=1 flags=0x0 code=0x0
88591  Binder:23896_4-24423 (23896) [006] d..2 24574.640814: sched_waking: comm=Binder:23968_16 pid=12589 prio=116 target_cpu=006
88592  Binder:23896_4-24423 (23896) [006] d..3 24574.640822: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=116 target_cpu=006
88593  Binder:23896_4-24423 (23896) [006] .... 24574.640824: binder_set_priority: proc=23896 thread=24423 old=116 => new=120 desired=120
88594  Binder:23896_4-24423 (23896) [006] d..2 24574.640832: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=116
88595<...>-12589 ( 23968) [006] .... 24574.640837: binder_transaction_received: transaction=1670971
88596  surfaceflinger-23896 (23896) [002] d.s2 24574.640908: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
88597          <idle>-0     (-----) [001] d.s2 24574.640908: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
88598  surfaceflinger-23896 (23896) [002] d.s3 24574.640921: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
88599          <idle>-0     (-----) [001] dns3 24574.640922: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
88600          <idle>-0     (-----) [001] .n.1 24574.640931: cpu_idle: state=4294967295 cpu_id=1
88601          <idle>-0     (-----) [001] d..2 24574.640936: 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
88602     rcu_preempt-7     (    7) [001] d..2 24574.640965: 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
88603          <idle>-0     (-----) [001] d..1 24574.640972: cpu_idle: state=0 cpu_id=1
88604  surfaceflinger-23896 (23896) [002] ...1 24574.641162: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
88605  surfaceflinger-23896 (23896) [002] ...1 24574.641167: tracing_mark_write: E|23896
88606<...>-12589 ( 23968) [006] d..3 24574.641180: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=000
88607          <idle>-0     (-----) [000] dnh2 24574.641206: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=000
88608          <idle>-0     (-----) [000] .n.1 24574.641211: cpu_idle: state=4294967295 cpu_id=0
88609          <idle>-0     (-----) [000] d..2 24574.641217: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
88610  surfaceflinger-23896 (23896) [002] .... 24574.641241: binder_transaction: transaction=1670972 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
88611  surfaceflinger-23896 (23896) [002] ...2 24574.641272: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
88612<...>-24003 ( 23968) [000] d..2 24574.641276: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88613          <idle>-0     (-----) [000] d..1 24574.641284: cpu_idle: state=0 cpu_id=0
88614  surfaceflinger-23896 (23896) [002] d..4 24574.641286: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
88615  surfaceflinger-23896 (23896) [002] d..5 24574.641306: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
88616          <idle>-0     (-----) [000] .n.1 24574.641311: cpu_idle: state=4294967295 cpu_id=0
88617          <idle>-0     (-----) [000] d..2 24574.641317: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
88618  surfaceflinger-23896 (23896) [002] d..2 24574.641318: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
88619  HwBinder:598_3-633   (  598) [000] .... 24574.641329: binder_transaction_received: transaction=1670972
88620          <idle>-0     (-----) [001] ...1 24574.641351: cpu_idle: state=4294967295 cpu_id=1
88621          <idle>-0     (-----) [001] d..1 24574.641353: cpu_idle: state=0 cpu_id=1
88622     kworker/2:0-12895 (12895) [002] d..2 24574.641354: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
88623  HwBinder:598_3-633   (  598) [000] ...1 24574.641405: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
88624<...>-12589 ( 23968) [006] .... 24574.641483: binder_transaction: transaction=1670973 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
88625<...>-12589 ( 23968) [006] d..4 24574.641494: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
88626          <idle>-0     (-----) [001] dnh2 24574.641549: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=001
88627<...>-12589 ( 23968) [006] d.h5 24574.641549: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
88628          <idle>-0     (-----) [001] .n.1 24574.641553: cpu_idle: state=4294967295 cpu_id=1
88629          <idle>-0     (-----) [001] d..2 24574.641559: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
88630<...>-12589 ( 23968) [006] d.h6 24574.641560: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
88631<...>-12589 ( 23968) [006] d.h5 24574.641562: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
88632  HwBinder:598_3-633   (  598) [000] ...1 24574.641564: tracing_mark_write: B|598|HWCSession::PresentDisplay::
88633          <idle>-0     (-----) [004] .n.1 24574.641564: cpu_idle: state=4294967295 cpu_id=4
88634          <idle>-0     (-----) [004] d..2 24574.641569: 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
88635<...>-24376 ( 24151) [001] dnh2 24574.641580: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
88636         sugov:4-560   (  560) [004] d..2 24574.641589: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
88637<...>-24376 ( 24151) [001] d..2 24574.641592: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
88638         sugov:0-559   (  559) [001] d..2 24574.641600: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
88639<...>-24376 ( 24151) [001] .... 24574.641604: binder_transaction_received: transaction=1670973
88640  Binder:23896_4-24423 (23896) [004] d..2 24574.641614: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
88641          <idle>-0     (-----) [004] d..1 24574.641620: cpu_idle: state=0 cpu_id=4
88642<...>-12589 ( 23968) [006] d..3 24574.641729: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=007
88643<...>-12589 ( 23968) [006] d..4 24574.641749: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=007
88644          <idle>-0     (-----) [007] .n.1 24574.641755: cpu_idle: state=4294967295 cpu_id=7
88645          <idle>-0     (-----) [007] d..2 24574.641761: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
88646<...>-24376 ( 24151) [001] d..3 24574.641778: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
88647<...>-23994 ( 23968) [007] d.h1 24574.641827: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
88648<...>-23994 ( 23968) [007] d..3 24574.641870: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=006
88649<...>-24376 ( 24151) [001] d..2 24574.641885: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88650<...>-23994 ( 23968) [007] d..4 24574.641887: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=006
88651          <idle>-0     (-----) [001] d..1 24574.641894: cpu_idle: state=0 cpu_id=1
88652<...>-23994 ( 23968) [007] d..2 24574.641923: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
88653<...>-24151 ( 24151) [007] d..2 24574.642041: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
88654<...>-12589 ( 23968) [006] .... 24574.642046: binder_transaction: transaction=1670974 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
88655<...>-12589 ( 23968) [006] ...2 24574.642053: binder_set_priority: proc=23896 thread=24423 old=120 => new=116 desired=116
88656          <idle>-0     (-----) [007] d..1 24574.642054: cpu_idle: state=0 cpu_id=7
88657<...>-12589 ( 23968) [006] d..4 24574.642056: sched_waking: comm=Binder:23896_4 pid=24423 prio=116 target_cpu=004
88658          <idle>-0     (-----) [001] dnh2 24574.642112: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=116 target_cpu=001
88659<...>-12589 ( 23968) [006] d.h5 24574.642113: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
88660          <idle>-0     (-----) [001] .n.1 24574.642116: cpu_idle: state=4294967295 cpu_id=1
88661          <idle>-0     (-----) [001] d..2 24574.642123: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=116
88662<...>-12589 ( 23968) [006] d.h6 24574.642125: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
88663<...>-12589 ( 23968) [006] d.h5 24574.642126: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
88664          <idle>-0     (-----) [004] .n.1 24574.642130: cpu_idle: state=4294967295 cpu_id=4
88665          <idle>-0     (-----) [004] d..2 24574.642135: 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
88666  Binder:23896_4-24423 (23896) [001] dnh2 24574.642142: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
88667  Binder:23896_4-24423 (23896) [001] d..2 24574.642148: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=116 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
88668         sugov:4-560   (  560) [004] d..2 24574.642149: 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
88669          <idle>-0     (-----) [004] d..1 24574.642155: cpu_idle: state=0 cpu_id=4
88670<...>-12589 ( 23968) [006] d..2 24574.642156: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=116 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
88671         sugov:0-559   (  559) [001] d..2 24574.642156: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=116
88672  Binder:23896_4-24423 (23896) [001] .... 24574.642160: binder_transaction_received: transaction=1670974
88673  HwBinder:598_3-633   (  598) [000] ...1 24574.642171: tracing_mark_write: B|598|HWDeviceDRM::Validate::
88674  Binder:23896_4-24423 (23896) [001] .... 24574.642189: binder_transaction: transaction=1670975 dest_node=0 dest_proc=23968 dest_thread=12589 reply=1 flags=0x0 code=0x0
88675  Binder:23896_4-24423 (23896) [001] d..2 24574.642193: sched_waking: comm=Binder:23968_16 pid=12589 prio=116 target_cpu=006
88676  Binder:23896_4-24423 (23896) [001] d..3 24574.642212: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=116 target_cpu=001
88677  Binder:23896_4-24423 (23896) [001] .... 24574.642242: binder_set_priority: proc=23896 thread=24423 old=116 => new=120 desired=120
88678  Binder:23896_4-24423 (23896) [001] d..2 24574.642268: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=116
88679<...>-23968 ( 23968) [006] .... 24574.642268: binder_transaction: transaction=1670976 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
88680<...>-12589 ( 23968) [001] .... 24574.642273: binder_transaction_received: transaction=1670975
88681<...>-23968 ( 23968) [006] d..4 24574.642276: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=001
88682<...>-23968 ( 23968) [006] d..5 24574.642300: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
88683          <idle>-0     (-----) [007] .n.1 24574.642306: cpu_idle: state=4294967295 cpu_id=7
88684          <idle>-0     (-----) [007] d..2 24574.642332: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
88685<...>-24376 ( 24151) [007] .... 24574.642336: binder_transaction_received: transaction=1670976
88686<...>-23968 ( 23968) [006] d..2 24574.642389: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
88687          <idle>-0     (-----) [006] d..1 24574.642406: cpu_idle: state=0 cpu_id=6
88688<...>-24376 ( 24151) [007] d..3 24574.642420: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
88689<...>-24376 ( 24151) [007] d..4 24574.642443: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
88690          <idle>-0     (-----) [006] .n.1 24574.642449: cpu_idle: state=4294967295 cpu_id=6
88691          <idle>-0     (-----) [006] d..2 24574.642458: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
88692<...>-24376 ( 24151) [007] d..2 24574.642490: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
88693          <idle>-0     (-----) [007] d..1 24574.642501: cpu_idle: state=0 cpu_id=7
88694<...>-24151 ( 24151) [006] d..2 24574.642541: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
88695          <idle>-0     (-----) [006] d..1 24574.642551: cpu_idle: state=0 cpu_id=6
88696  HwBinder:598_3-633   (  598) [000] ...1 24574.642746: tracing_mark_write: E|598
88697<...>-12589 ( 23968) [001] d.h1 24574.642806: sched_waking: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
88698<...>-12589 ( 23968) [001] dnh2 24574.642819: sched_wakeup: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
88699<...>-12589 ( 23968) [001] d..2 24574.642830: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=116 prev_state=R ==> next_comm=irq/80-114a000. next_pid=24617 next_prio=49
88700  HwBinder:598_3-633   (  598) [000] ...1 24574.642867: tracing_mark_write: B|598|HWDeviceDRM::Commit::
88701  HwBinder:598_3-633   (  598) [000] ...1 24574.642875: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
88702<...>-24617 ( 24617) [001] d..2 24574.643007: sched_switch: prev_comm=irq/80-114a000. prev_pid=24617 prev_prio=49 prev_state=D ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=116
88703  HwBinder:598_3-633   (  598) [000] d.h1 24574.643017: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
88704  HwBinder:598_3-633   (  598) [000] dnh2 24574.643027: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
88705  HwBinder:598_3-633   (  598) [000] d..2 24574.643040: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=98 prev_state=R+ ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
88706<...>-12589 ( 23968) [001] d..2 24574.643070: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=116 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
88707 irq/79-1436400.-24613 (24613) [000] d..2 24574.643103: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
88708          <idle>-0     (-----) [000] d..1 24574.643113: cpu_idle: state=0 cpu_id=0
88709  HwBinder:598_3-633   (  598) [001] d..2 24574.643263: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
88710  HwBinder:598_3-633   (  598) [001] d..3 24574.643287: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
88711          <idle>-0     (-----) [000] .n.1 24574.643292: cpu_idle: state=4294967295 cpu_id=0
88712          <idle>-0     (-----) [000] d..2 24574.643299: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
88713  HwBinder:598_3-633   (  598) [001] ...1 24574.643380: tracing_mark_write: E|598
88714  HwBinder:598_3-633   (  598) [001] ...1 24574.643383: tracing_mark_write: E|598
88715  HwBinder:598_3-633   (  598) [001] ...1 24574.643447: tracing_mark_write: E|598
88716  HwBinder:598_3-633   (  598) [001] ...1 24574.643517: tracing_mark_write: E|598
88717  HwBinder:598_3-633   (  598) [001] .... 24574.643540: binder_transaction: transaction=1670977 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
88718  HwBinder:598_3-633   (  598) [001] d..2 24574.643559: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
88719  HwBinder:598_3-633   (  598) [001] d..3 24574.643570: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
88720  HwBinder:598_3-633   (  598) [001] .... 24574.643573: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
88721<...>-105 ( 105) [002] d..2 24574.643583: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
88722  surfaceflinger-23896 (23896) [002] .... 24574.643590: binder_transaction_received: transaction=1670977
88723  HwBinder:598_3-633   (  598) [001] d..2 24574.643637: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=116
88724 crtc_commit:111-253   (  253) [000] d..2 24574.643686: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
88725          <idle>-0     (-----) [000] d..1 24574.643694: cpu_idle: state=0 cpu_id=0
88726<...>-12589 ( 23968) [001] d..3 24574.643815: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
88727<...>-12589 ( 23968) [001] d..4 24574.643838: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
88728          <idle>-0     (-----) [000] .n.1 24574.643844: cpu_idle: state=4294967295 cpu_id=0
88729          <idle>-0     (-----) [000] d..2 24574.643851: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
88730<...>-24073 ( 23968) [000] d..2 24574.643894: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88731          <idle>-0     (-----) [000] d..1 24574.643901: cpu_idle: state=0 cpu_id=0
88732  surfaceflinger-23896 (23896) [002] d..2 24574.644031: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
88733<...>-27905 ( 23968) [003] d..2 24574.644255: sched_switch: prev_comm=RenderThread prev_pid=27905 prev_prio=116 prev_state=R+ ==> next_comm=logd.writer next_pid=563 next_prio=130
88734     logd.writer-563   (  555) [003] d.s2 24574.644440: sched_waking: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
88735     logd.writer-563   (  555) [003] d.s3 24574.644451: sched_wakeup: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
88736<...>-12589 ( 23968) [001] d..2 24574.644461: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=116 prev_state=R ==> next_comm=irq/80-114a000. next_pid=24617 next_prio=49
88737<...>-24617 ( 24617) [001] d..1 24574.644476: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
88738<...>-24617 ( 24617) [001] d..2 24574.644485: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
88739          <idle>-0     (-----) [000] .n.1 24574.644491: cpu_idle: state=4294967295 cpu_id=0
88740          <idle>-0     (-----) [000] d..2 24574.644498: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
88741<...>-24617 ( 24617) [001] d..2 24574.644505: sched_switch: prev_comm=irq/80-114a000. prev_pid=24617 prev_prio=49 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=116
88742     logd.writer-563   (  555) [003] d..2 24574.644563: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=RenderThread next_pid=27905 next_prio=116
88743 irq/79-1436400.-24613 (24613) [000] d..2 24574.644618: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
88744          <idle>-0     (-----) [000] d..1 24574.644626: cpu_idle: state=0 cpu_id=0
88745<...>-27905 ( 23968) [003] d.s2 24574.644657: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
88746<...>-12589 ( 23968) [001] d..3 24574.644665: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
88747<...>-27905 ( 23968) [003] d.s3 24574.644667: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
88748          <idle>-0     (-----) [000] .n.1 24574.644672: cpu_idle: state=4294967295 cpu_id=0
88749          <idle>-0     (-----) [000] d..2 24574.644678: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
88750<...>-12589 ( 23968) [001] d.h3 24574.644742: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
88751          <idle>-0     (-----) [006] dnh2 24574.644744: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
88752 irq/79-1436400.-24613 (24613) [000] d..2 24574.644744: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88753          <idle>-0     (-----) [006] .n.1 24574.644748: cpu_idle: state=4294967295 cpu_id=6
88754          <idle>-0     (-----) [000] d..1 24574.644750: cpu_idle: state=0 cpu_id=0
88755<...>-12589 ( 23968) [001] d.h3 24574.644751: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
88756          <idle>-0     (-----) [006] d..2 24574.644756: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
88757          <idle>-0     (-----) [004] dnh2 24574.644758: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
88758          <idle>-0     (-----) [004] .n.1 24574.644762: cpu_idle: state=4294967295 cpu_id=4
88759<...>-12589 ( 23968) [001] d.h4 24574.644765: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
88760          <idle>-0     (-----) [004] d..2 24574.644766: 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
88761          <idle>-0     (-----) [000] .n.1 24574.644770: cpu_idle: state=4294967295 cpu_id=0
88762          <idle>-0     (-----) [000] d..2 24574.644775: 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
88763         sugov:4-560   (  560) [004] d..2 24574.644777: 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
88764<...>-12589 ( 23968) [001] d..1 24574.644777: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=000
88765          <idle>-0     (-----) [004] d..1 24574.644782: cpu_idle: state=0 cpu_id=4
88766<...>-24073 ( 23968) [006] d..2 24574.644791: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
88767         sugov:0-559   (  559) [000] d..2 24574.644799: 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
88768          <idle>-0     (-----) [006] d..1 24574.644800: cpu_idle: state=0 cpu_id=6
88769          <idle>-0     (-----) [000] d..1 24574.644805: cpu_idle: state=0 cpu_id=0
88770          <idle>-0     (-----) [005] dnh2 24574.644822: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=005
88771          <idle>-0     (-----) [005] .n.1 24574.644826: cpu_idle: state=4294967295 cpu_id=5
88772          <idle>-0     (-----) [005] d..2 24574.644832: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
88773<...>-24003 ( 23968) [005] d..2 24574.645004: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
88774          <idle>-0     (-----) [005] d..1 24574.645015: cpu_idle: state=0 cpu_id=5
88775<...>-105 ( 105) [002] d..2 24574.645066: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
88776          <idle>-0     (-----) [002] d..1 24574.645085: cpu_idle: state=0 cpu_id=2
88777<...>-12589 ( 23968) [001] .... 24574.645178: binder_transaction: transaction=1670978 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
88778<...>-12589 ( 23968) [001] d..2 24574.645185: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
88779<...>-12589 ( 23968) [001] d..3 24574.645200: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
88780<...>-12589 ( 23968) [001] d..2 24574.645232: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
88781           <...>-13131 (-----) [001] .... 24574.645239: binder_transaction_received: transaction=1670978
88782           <...>-13131 (-----) [001] d..3 24574.645845: sched_waking: comm=RenderThread pid=13151 prio=120 target_cpu=001
88783           <...>-13131 (-----) [001] d..4 24574.645866: sched_wakeup: comm=RenderThread pid=13151 prio=120 target_cpu=000
88784          <idle>-0     (-----) [000] .n.1 24574.645870: cpu_idle: state=4294967295 cpu_id=0
88785          <idle>-0     (-----) [000] d..2 24574.645876: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=120
88786           <...>-13131 (-----) [001] d..2 24574.645891: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88787          <idle>-0     (-----) [001] d..1 24574.645902: cpu_idle: state=0 cpu_id=1
88788           <...>-13151 (-----) [000] d..1 24574.645902: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
88789           <...>-13151 (-----) [000] d..2 24574.645916: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
88790          <idle>-0     (-----) [001] .n.1 24574.645922: cpu_idle: state=4294967295 cpu_id=1
88791          <idle>-0     (-----) [001] d..2 24574.645928: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
88792           <...>-13151 (-----) [000] d..2 24574.645935: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88793          <idle>-0     (-----) [000] d..1 24574.645942: cpu_idle: state=0 cpu_id=0
88794           <...>-13131 (-----) [001] d..3 24574.645954: sched_waking: comm=RenderThread pid=13151 prio=120 target_cpu=000
88795           <...>-13131 (-----) [001] d..4 24574.645965: sched_wakeup: comm=RenderThread pid=13151 prio=120 target_cpu=000
88796          <idle>-0     (-----) [000] .n.1 24574.645970: cpu_idle: state=4294967295 cpu_id=0
88797          <idle>-0     (-----) [000] d..2 24574.645976: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=120
88798           <...>-13131 (-----) [001] d..2 24574.645979: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88799          <idle>-0     (-----) [001] d..1 24574.645984: cpu_idle: state=0 cpu_id=1
88800           <...>-13151 (-----) [000] d..1 24574.646021: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
88801           <...>-13151 (-----) [000] d..2 24574.646032: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
88802          <idle>-0     (-----) [001] .n.1 24574.646036: cpu_idle: state=4294967295 cpu_id=1
88803          <idle>-0     (-----) [001] d..2 24574.646042: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
88804           <...>-13151 (-----) [000] d..2 24574.646045: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88805          <idle>-0     (-----) [000] d..1 24574.646051: cpu_idle: state=0 cpu_id=0
88806           <...>-13131 (-----) [001] d..2 24574.646260: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
88807           <...>-13131 (-----) [001] d..3 24574.646275: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
88808          <idle>-0     (-----) [002] ...1 24574.646391: cpu_idle: state=4294967295 cpu_id=2
88809          <idle>-0     (-----) [002] d..1 24574.646394: cpu_idle: state=0 cpu_id=2
88810           <...>-13131 (-----) [001] .... 24574.646500: binder_transaction: transaction=1670979 dest_node=1669040 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
88811           <...>-13131 (-----) [001] d..4 24574.646508: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
88812           <...>-13131 (-----) [001] d..5 24574.646528: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
88813          <idle>-0     (-----) [000] .n.1 24574.646533: cpu_idle: state=4294967295 cpu_id=0
88814          <idle>-0     (-----) [000] d..2 24574.646540: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
88815  Binder:23896_4-24423 (23896) [000] .... 24574.646545: binder_transaction_received: transaction=1670979
88816           <...>-13131 (-----) [001] d..3 24574.646546: sched_waking: comm=RenderThread pid=13151 prio=120 target_cpu=000
88817           <...>-13131 (-----) [001] d..4 24574.646561: sched_wakeup: comm=RenderThread pid=13151 prio=120 target_cpu=002
88818          <idle>-0     (-----) [002] .n.1 24574.646566: cpu_idle: state=4294967295 cpu_id=2
88819  Binder:23896_4-24423 (23896) [000] d..1 24574.646572: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
88820          <idle>-0     (-----) [002] d..2 24574.646573: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=120
88821  Binder:23896_4-24423 (23896) [000] dn.2 24574.646591: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
88822  Binder:23896_4-24423 (23896) [000] d..2 24574.646597: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
88823           <...>-13151 (-----) [002] d..2 24574.646601: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
88824          <idle>-0     (-----) [002] d..1 24574.646608: cpu_idle: state=0 cpu_id=2
88825  appEventThread-23905 (23896) [000] d..2 24574.646614: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
88826  Binder:23896_4-24423 (23896) [000] d..1 24574.646617: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
88827  Binder:23896_4-24423 (23896) [000] d..2 24574.646629: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
88828          <idle>-0     (-----) [002] .n.1 24574.646634: cpu_idle: state=4294967295 cpu_id=2
88829          <idle>-0     (-----) [002] d..2 24574.646640: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
88830  Binder:23896_4-24423 (23896) [000] d..2 24574.646651: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88831          <idle>-0     (-----) [000] d..1 24574.646659: cpu_idle: state=0 cpu_id=0
88832  appEventThread-23905 (23896) [002] d..2 24574.646687: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
88833          <idle>-0     (-----) [002] d..1 24574.646693: cpu_idle: state=0 cpu_id=2
88834          <idle>-0     (-----) [000] d.h2 24574.647048: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
88835          <idle>-0     (-----) [000] dnh3 24574.647053: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
88836          <idle>-0     (-----) [000] .n.1 24574.647058: cpu_idle: state=4294967295 cpu_id=0
88837          <idle>-0     (-----) [000] d..2 24574.647063: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
88838 irq/79-1436400.-24613 (24613) [000] d..2 24574.647169: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
88839          <idle>-0     (-----) [000] d..1 24574.647177: cpu_idle: state=0 cpu_id=0
88840<...>-27905 ( 23968) [003] d.s2 24574.647187: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
88841          <idle>-0     (-----) [000] .n.1 24574.647190: cpu_idle: state=4294967295 cpu_id=0
88842<...>-27905 ( 23968) [003] d.s3 24574.647195: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
88843          <idle>-0     (-----) [000] d..2 24574.647199: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
88844           <...>-13131 (-----) [001] d..2 24574.647220: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
88845 irq/79-1436400.-24613 (24613) [000] d.h6 24574.647248: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
88846 irq/79-1436400.-24613 (24613) [000] d.h7 24574.647262: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
88847 irq/79-1436400.-24613 (24613) [000] d.h6 24574.647266: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
88848          <idle>-0     (-----) [002] .n.1 24574.647266: cpu_idle: state=4294967295 cpu_id=2
88849          <idle>-0     (-----) [002] d..2 24574.647272: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
88850 irq/79-1436400.-24613 (24613) [000] d.h7 24574.647279: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
88851     logd.writer-563   (  555) [001] d..2 24574.647290: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
88852  crtc_event:111-254   (  254) [002] d..2 24574.647297: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
88853 irq/79-1436400.-24613 (24613) [000] d..2 24574.647301: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13413 next_prio=120
88854          <idle>-0     (-----) [002] d..1 24574.647302: cpu_idle: state=0 cpu_id=2
88855 crtc_commit:111-253   (  253) [001] d..2 24574.647381: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=logd.writer next_pid=563 next_prio=130
88856     logd.writer-563   (  555) [001] d..2 24574.647410: 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
88857          <idle>-0     (-----) [001] d..1 24574.647419: cpu_idle: state=0 cpu_id=1
88858           <...>-13413 (-----) [000] d..1 24574.647497: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
88859           <...>-13413 (-----) [000] d..2 24574.647510: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
88860          <idle>-0     (-----) [001] .n.1 24574.647515: cpu_idle: state=4294967295 cpu_id=1
88861          <idle>-0     (-----) [001] d..2 24574.647520: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
88862           <...>-13131 (-----) [001] d.s2 24574.647567: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
88863<...>-27905 ( 23968) [003] d.s2 24574.647576: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
88864           <...>-13131 (-----) [001] d.s3 24574.647579: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
88865           <...>-13131 (-----) [001] d.s1 24574.647581: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
88866          <idle>-0     (-----) [002] .n.1 24574.647584: cpu_idle: state=4294967295 cpu_id=2
88867          <idle>-0     (-----) [002] d..2 24574.647590: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
88868  crtc_event:111-254   (  254) [002] d..2 24574.647607: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
88869           <...>-13413 (-----) [000] d..2 24574.647609: sched_switch: prev_comm=queued-work-loo prev_pid=13413 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88870          <idle>-0     (-----) [002] d..1 24574.647612: cpu_idle: state=0 cpu_id=2
88871           <...>-13131 (-----) [001] d.s2 24574.647619: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
88872          <idle>-0     (-----) [000] d..1 24574.647619: cpu_idle: state=0 cpu_id=0
88873          <idle>-0     (-----) [002] .n.1 24574.647623: cpu_idle: state=4294967295 cpu_id=2
88874<...>-27905 ( 23968) [003] d.s3 24574.647624: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
88875          <idle>-0     (-----) [002] d..2 24574.647630: 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
88876     rcu_preempt-7     (    7) [002] d..2 24574.647640: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
88877     rcu_preempt-7     (    7) [002] d..3 24574.647658: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
88878           <...>-13131 (-----) [001] d..2 24574.647664: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=R+ ==> next_comm=rcuop/2 next_pid=29 next_prio=120
88879         rcuop/2-29    (   29) [001] d..2 24574.647673: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
88880     rcu_preempt-7     (    7) [002] d..2 24574.647678: 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
88881         rcuop/2-29    (   29) [001] d..3 24574.647704: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
88882         rcuop/2-29    (   29) [001] d..2 24574.647738: 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
88883         rcuop/3-37    (   37) [001] d..2 24574.647748: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
88884  kworker/u16:10-23868 (23868) [002] .... 24574.647771: clk_set_rate: l3_cluster0_vote_clk 1401600000
88885  kworker/u16:10-23868 (23868) [002] .... 24574.647777: clk_set_rate: l3_clk 1401600000
88886           <...>-13131 (-----) [001] d..2 24574.647883: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
88887           <...>-13131 (-----) [001] d..3 24574.647893: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
88888  kworker/u16:10-23868 (23868) [002] d..2 24574.647904: 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
88889          <idle>-0     (-----) [002] d..1 24574.647910: cpu_idle: state=0 cpu_id=2
88890           <...>-13131 (-----) [001] d..3 24574.648344: sched_waking: comm=RenderThread pid=13151 prio=120 target_cpu=002
88891           <...>-13131 (-----) [001] d..4 24574.648363: sched_wakeup: comm=RenderThread pid=13151 prio=120 target_cpu=000
88892          <idle>-0     (-----) [000] .n.1 24574.648369: cpu_idle: state=4294967295 cpu_id=0
88893           <...>-13131 (-----) [001] d..2 24574.648376: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
88894          <idle>-0     (-----) [000] d..2 24574.648376: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=120
88895           <...>-13151 (-----) [000] d..1 24574.648403: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
88896           <...>-13151 (-----) [000] d..2 24574.648419: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=002
88897          <idle>-0     (-----) [002] .n.1 24574.648424: cpu_idle: state=4294967295 cpu_id=2
88898          <idle>-0     (-----) [002] d..2 24574.648430: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
88899     logd.writer-563   (  555) [001] d..2 24574.648439: 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
88900           <...>-13151 (-----) [000] d..2 24574.648440: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88901           <...>-13131 (-----) [002] d..3 24574.648447: sched_waking: comm=RenderThread pid=13151 prio=120 target_cpu=000
88902          <idle>-0     (-----) [000] d..1 24574.648447: cpu_idle: state=0 cpu_id=0
88903          <idle>-0     (-----) [001] d..1 24574.648448: cpu_idle: state=0 cpu_id=1
88904           <...>-13131 (-----) [002] d..4 24574.648457: sched_wakeup: comm=RenderThread pid=13151 prio=120 target_cpu=000
88905          <idle>-0     (-----) [000] .n.1 24574.648462: cpu_idle: state=4294967295 cpu_id=0
88906          <idle>-0     (-----) [000] d..2 24574.648468: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=120
88907           <...>-13131 (-----) [002] d..2 24574.648473: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
88908          <idle>-0     (-----) [002] d..1 24574.648479: cpu_idle: state=0 cpu_id=2
88909           <...>-13151 (-----) [000] d..1 24574.648487: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=002
88910           <...>-13151 (-----) [000] d..2 24574.648502: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
88911          <idle>-0     (-----) [001] .n.1 24574.648507: cpu_idle: state=4294967295 cpu_id=1
88912          <idle>-0     (-----) [001] d..2 24574.648514: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
88913           <...>-13151 (-----) [000] d..2 24574.648518: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88914          <idle>-0     (-----) [000] d..1 24574.648524: cpu_idle: state=0 cpu_id=0
88915           <...>-13131 (-----) [001] .... 24574.648622: binder_transaction: transaction=1670980 dest_node=1669030 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x5
88916           <...>-13131 (-----) [001] d..4 24574.648637: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=001
88917           <...>-13131 (-----) [001] dn.5 24574.648649: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=001
88918           <...>-13131 (-----) [001] d..2 24574.648656: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
88919<...>-12589 ( 23968) [001] .... 24574.648662: binder_transaction_received: transaction=1670980
88920<...>-12589 ( 23968) [001] d..3 24574.648893: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
88921<...>-12589 ( 23968) [001] d..4 24574.648914: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
88922          <idle>-0     (-----) [000] .n.1 24574.648919: cpu_idle: state=4294967295 cpu_id=0
88923<...>-12589 ( 23968) [001] d.h3 24574.648950: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
88924          <idle>-0     (-----) [000] d..2 24574.648950: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
88925<...>-12589 ( 23968) [001] d.h3 24574.648959: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
88926          <idle>-0     (-----) [004] dnh2 24574.648964: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
88927          <idle>-0     (-----) [004] .n.1 24574.648968: cpu_idle: state=4294967295 cpu_id=4
88928<...>-12589 ( 23968) [001] d.h4 24574.648971: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
88929          <idle>-0     (-----) [004] d..2 24574.648972: 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
88930          <idle>-0     (-----) [002] .n.1 24574.648977: cpu_idle: state=4294967295 cpu_id=2
88931<...>-24073 ( 23968) [000] d..2 24574.648980: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88932          <idle>-0     (-----) [002] d..2 24574.648982: 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
88933         sugov:4-560   (  560) [004] d..2 24574.648983: 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
88934          <idle>-0     (-----) [000] d..1 24574.648987: cpu_idle: state=0 cpu_id=0
88935          <idle>-0     (-----) [004] d..1 24574.648988: cpu_idle: state=0 cpu_id=4
88936         sugov:0-559   (  559) [002] d..2 24574.648996: 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
88937          <idle>-0     (-----) [002] d..1 24574.649000: cpu_idle: state=0 cpu_id=2
88938<...>-12589 ( 23968) [001] .... 24574.649082: binder_transaction: transaction=1670981 dest_node=1669084 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
88939<...>-12589 ( 23968) [001] ...2 24574.649094: binder_set_priority: proc=23896 thread=24423 old=120 => new=116 desired=116
88940<...>-12589 ( 23968) [001] d..4 24574.649096: sched_waking: comm=Binder:23896_4 pid=24423 prio=116 target_cpu=000
88941<...>-12589 ( 23968) [001] d..5 24574.649108: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=116 target_cpu=000
88942          <idle>-0     (-----) [000] .n.1 24574.649113: cpu_idle: state=4294967295 cpu_id=0
88943<...>-12589 ( 23968) [001] d..2 24574.649117: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=116 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
88944          <idle>-0     (-----) [000] d..2 24574.649119: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=116
88945  Binder:23896_4-24423 (23896) [000] .... 24574.649124: binder_transaction_received: transaction=1670981
88946           <...>-13131 (-----) [001] d..2 24574.649133: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88947          <idle>-0     (-----) [001] d..1 24574.649141: cpu_idle: state=0 cpu_id=1
88948  Binder:23896_4-24423 (23896) [000] .... 24574.649174: binder_transaction: transaction=1670982 dest_node=0 dest_proc=23968 dest_thread=12589 reply=1 flags=0x0 code=0x0
88949  Binder:23896_4-24423 (23896) [000] d..2 24574.649178: sched_waking: comm=Binder:23968_16 pid=12589 prio=116 target_cpu=001
88950  Binder:23896_4-24423 (23896) [000] d..3 24574.649192: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=116 target_cpu=000
88951  Binder:23896_4-24423 (23896) [000] .... 24574.649194: binder_set_priority: proc=23896 thread=24423 old=116 => new=120 desired=120
88952  Binder:23896_4-24423 (23896) [000] d..2 24574.649220: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=116
88953<...>-12589 ( 23968) [000] .... 24574.649224: binder_transaction_received: transaction=1670982
88954<...>-12589 ( 23968) [000] d..5 24574.649248: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
88955<...>-12589 ( 23968) [000] d..6 24574.649264: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
88956          <idle>-0     (-----) [001] .n.1 24574.649269: cpu_idle: state=4294967295 cpu_id=1
88957          <idle>-0     (-----) [001] d..2 24574.649275: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
88958  Binder:23896_4-24423 (23896) [001] d..2 24574.649316: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88959          <idle>-0     (-----) [001] d..1 24574.649323: cpu_idle: state=0 cpu_id=1
88960<...>-12589 ( 23968) [000] d..5 24574.649365: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
88961<...>-12589 ( 23968) [000] d..6 24574.649375: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
88962          <idle>-0     (-----) [001] .n.1 24574.649380: cpu_idle: state=4294967295 cpu_id=1
88963          <idle>-0     (-----) [001] d..2 24574.649386: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
88964  Binder:23896_4-24423 (23896) [001] d..2 24574.649405: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88965          <idle>-0     (-----) [001] d..1 24574.649410: cpu_idle: state=0 cpu_id=1
88966<...>-12589 ( 23968) [000] d.h4 24574.649599: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
88967<...>-12589 ( 23968) [000] d.h5 24574.649611: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
88968          <idle>-0     (-----) [001] .n.1 24574.649615: cpu_idle: state=4294967295 cpu_id=1
88969          <idle>-0     (-----) [001] d..2 24574.649620: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
88970 crtc_commit:111-253   (  253) [001] d..2 24574.649681: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88971          <idle>-0     (-----) [001] d..1 24574.649687: cpu_idle: state=0 cpu_id=1
88972<...>-12589 ( 23968) [000] d..3 24574.649781: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=005
88973<...>-12589 ( 23968) [000] d..4 24574.649804: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=001
88974          <idle>-0     (-----) [001] .n.1 24574.649808: cpu_idle: state=4294967295 cpu_id=1
88975<...>-12589 ( 23968) [000] d.h3 24574.649834: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
88976          <idle>-0     (-----) [001] d..2 24574.649834: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
88977<...>-12589 ( 23968) [000] d.h3 24574.649842: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
88978          <idle>-0     (-----) [004] dnh2 24574.649848: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
88979<...>-12589 ( 23968) [000] d.h4 24574.649851: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
88980          <idle>-0     (-----) [004] .n.1 24574.649851: cpu_idle: state=4294967295 cpu_id=4
88981          <idle>-0     (-----) [004] d..2 24574.649855: 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
88982          <idle>-0     (-----) [002] .n.1 24574.649856: cpu_idle: state=4294967295 cpu_id=2
88983          <idle>-0     (-----) [002] d..2 24574.649861: 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
88984<...>-24003 ( 23968) [001] d..2 24574.649866: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88985         sugov:4-560   (  560) [004] d..2 24574.649866: 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
88986          <idle>-0     (-----) [004] d..1 24574.649871: cpu_idle: state=0 cpu_id=4
88987         sugov:0-559   (  559) [002] d..2 24574.649872: 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
88988          <idle>-0     (-----) [001] d..1 24574.649872: cpu_idle: state=0 cpu_id=1
88989          <idle>-0     (-----) [002] d..1 24574.649876: cpu_idle: state=0 cpu_id=2
88990<...>-12589 ( 23968) [000] d.h4 24574.649884: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
88991<...>-12589 ( 23968) [000] d.h5 24574.649893: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
88992          <idle>-0     (-----) [002] .n.1 24574.649897: cpu_idle: state=4294967295 cpu_id=2
88993          <idle>-0     (-----) [002] d..2 24574.649902: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
88994<...>-12589 ( 23968) [000] d..1 24574.649907: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=001
88995<...>-12589 ( 23968) [000] d..2 24574.649916: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=001
88996  crtc_event:111-254   (  254) [002] d..2 24574.649917: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
88997          <idle>-0     (-----) [001] .n.1 24574.649921: cpu_idle: state=4294967295 cpu_id=1
88998          <idle>-0     (-----) [002] d..1 24574.649922: cpu_idle: state=0 cpu_id=2
88999          <idle>-0     (-----) [001] d..2 24574.649927: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
89000<...>-24003 ( 23968) [001] d..2 24574.649952: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
89001          <idle>-0     (-----) [001] d..1 24574.649957: cpu_idle: state=0 cpu_id=1
89002<...>-12589 ( 23968) [000] .... 24574.650096: binder_transaction: transaction=1670983 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
89003<...>-12589 ( 23968) [000] d..4 24574.650102: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
89004<...>-12589 ( 23968) [000] d..5 24574.650123: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=001
89005          <idle>-0     (-----) [001] .n.1 24574.650127: cpu_idle: state=4294967295 cpu_id=1
89006          <idle>-0     (-----) [001] d..2 24574.650148: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
89007<...>-24376 ( 24151) [001] .... 24574.650153: binder_transaction_received: transaction=1670983
89008<...>-24376 ( 24151) [001] d..3 24574.650228: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
89009<...>-12589 ( 23968) [000] d..3 24574.650247: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=007
89010<...>-24376 ( 24151) [001] d..4 24574.650249: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
89011          <idle>-0     (-----) [002] .n.1 24574.650254: cpu_idle: state=4294967295 cpu_id=2
89012          <idle>-0     (-----) [002] d..2 24574.650275: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
89013          <idle>-0     (-----) [006] dnh2 24574.650289: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=006
89014          <idle>-0     (-----) [006] .n.1 24574.650294: cpu_idle: state=4294967295 cpu_id=6
89015          <idle>-0     (-----) [006] d..2 24574.650302: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
89016<...>-24376 ( 24151) [001] d..2 24574.650312: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
89017          <idle>-0     (-----) [001] d..1 24574.650319: cpu_idle: state=0 cpu_id=1
89018<...>-24151 ( 24151) [002] d..2 24574.650341: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
89019          <idle>-0     (-----) [002] d..1 24574.650348: cpu_idle: state=0 cpu_id=2
89020<...>-23994 ( 23968) [006] d..3 24574.650362: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=006
89021<...>-23994 ( 23968) [006] d.h3 24574.650411: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
89022          <idle>-0     (-----) [001] dnh2 24574.650412: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=001
89023          <idle>-0     (-----) [001] .n.1 24574.650416: cpu_idle: state=4294967295 cpu_id=1
89024          <idle>-0     (-----) [001] d..2 24574.650422: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
89025<...>-23994 ( 23968) [006] d.h4 24574.650422: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
89026<...>-23994 ( 23968) [006] d.h3 24574.650424: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
89027          <idle>-0     (-----) [004] .n.1 24574.650426: cpu_idle: state=4294967295 cpu_id=4
89028          <idle>-0     (-----) [004] d..2 24574.650431: 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
89029          <idle>-0     (-----) [002] dnh2 24574.650439: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
89030         sugov:4-560   (  560) [004] d..2 24574.650441: 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
89031          <idle>-0     (-----) [002] .n.1 24574.650443: cpu_idle: state=4294967295 cpu_id=2
89032          <idle>-0     (-----) [004] d..1 24574.650445: cpu_idle: state=0 cpu_id=4
89033          <idle>-0     (-----) [002] d..2 24574.650448: 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
89034         sugov:0-559   (  559) [002] d..2 24574.650460: 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
89035          <idle>-0     (-----) [002] d..1 24574.650465: cpu_idle: state=0 cpu_id=2
89036<...>-23994 ( 23968) [006] d..2 24574.650470: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
89037          <idle>-0     (-----) [006] d..1 24574.650481: cpu_idle: state=0 cpu_id=6
89038<...>-23968 ( 23968) [001] .... 24574.650483: binder_transaction: transaction=1670984 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
89039<...>-23968 ( 23968) [001] d..4 24574.650487: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=001
89040<...>-23968 ( 23968) [001] d..5 24574.650504: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=002
89041          <idle>-0     (-----) [002] .n.1 24574.650508: cpu_idle: state=4294967295 cpu_id=2
89042          <idle>-0     (-----) [002] d..2 24574.650514: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
89043<...>-24376 ( 24151) [002] .... 24574.650517: binder_transaction_received: transaction=1670984
89044<...>-23968 ( 23968) [001] d..2 24574.650545: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
89045          <idle>-0     (-----) [001] d..1 24574.650552: cpu_idle: state=0 cpu_id=1
89046<...>-24376 ( 24151) [002] d..3 24574.650568: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
89047<...>-12589 ( 23968) [000] .... 24574.650584: binder_transaction: transaction=1670985 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
89048<...>-24376 ( 24151) [002] d..4 24574.650585: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
89049          <idle>-0     (-----) [001] .n.1 24574.650590: cpu_idle: state=4294967295 cpu_id=1
89050          <idle>-0     (-----) [001] d..2 24574.650596: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
89051<...>-12589 ( 23968) [000] ...2 24574.650604: binder_set_priority: proc=23896 thread=24423 old=120 => new=116 desired=116
89052<...>-12589 ( 23968) [000] d..4 24574.650605: sched_waking: comm=Binder:23896_4 pid=24423 prio=116 target_cpu=001
89053<...>-24376 ( 24151) [002] d..2 24574.650618: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
89054<...>-12589 ( 23968) [000] dn.5 24574.650619: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=116 target_cpu=000
89055<...>-12589 ( 23968) [000] d..2 24574.650625: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=116 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=116
89056          <idle>-0     (-----) [002] d..1 24574.650625: cpu_idle: state=0 cpu_id=2
89057  Binder:23896_4-24423 (23896) [000] .... 24574.650629: binder_transaction_received: transaction=1670985
89058<...>-24151 ( 24151) [001] d..2 24574.650649: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
89059          <idle>-0     (-----) [001] d..1 24574.650656: cpu_idle: state=0 cpu_id=1
89060  Binder:23896_4-24423 (23896) [000] .... 24574.650733: binder_transaction: transaction=1670986 dest_node=0 dest_proc=23968 dest_thread=12589 reply=1 flags=0x0 code=0x0
89061  Binder:23896_4-24423 (23896) [000] .... 24574.650737: binder_set_priority: proc=23896 thread=24423 old=116 => new=120 desired=120
89062  Binder:23896_4-24423 (23896) [000] d..2 24574.650768: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=116
89063<...>-12589 ( 23968) [000] .... 24574.650772: binder_transaction_received: transaction=1670986
89064<...>-12589 ( 23968) [000] d..3 24574.651329: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
89065<...>-12589 ( 23968) [000] d..4 24574.651347: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
89066          <idle>-0     (-----) [001] .n.1 24574.651352: cpu_idle: state=4294967295 cpu_id=1
89067          <idle>-0     (-----) [001] d..2 24574.651359: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
89068<...>-24073 ( 23968) [001] d..2 24574.651386: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
89069          <idle>-0     (-----) [001] d..1 24574.651391: cpu_idle: state=0 cpu_id=1
89070          <idle>-0     (-----) [001] d.h2 24574.651538: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
89071          <idle>-0     (-----) [001] dnh3 24574.651546: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
89072          <idle>-0     (-----) [001] .n.1 24574.651552: cpu_idle: state=4294967295 cpu_id=1
89073          <idle>-0     (-----) [001] d..2 24574.651557: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
89074        DispSync-23904 (23896) [001] d..1 24574.651576: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
89075        DispSync-23904 (23896) [001] d..2 24574.651585: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
89076          <idle>-0     (-----) [002] .n.1 24574.651590: cpu_idle: state=4294967295 cpu_id=2
89077          <idle>-0     (-----) [002] d..2 24574.651596: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
89078        DispSync-23904 (23896) [001] d..2 24574.651603: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
89079          <idle>-0     (-----) [001] d..1 24574.651609: cpu_idle: state=0 cpu_id=1
89080  appEventThread-23905 (23896) [002] d..3 24574.651635: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
89081  appEventThread-23905 (23896) [002] d..4 24574.651656: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
89082          <idle>-0     (-----) [001] .n.1 24574.651661: cpu_idle: state=4294967295 cpu_id=1
89083  appEventThread-23905 (23896) [002] d..3 24574.651667: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
89084          <idle>-0     (-----) [001] d..2 24574.651668: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
89085  appEventThread-23905 (23896) [002] d.h3 24574.651717: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
89086          <idle>-0     (-----) [006] dnh2 24574.651718: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
89087          <idle>-0     (-----) [006] .n.1 24574.651722: cpu_idle: state=4294967295 cpu_id=6
89088  appEventThread-23905 (23896) [002] d.h3 24574.651725: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
89089          <idle>-0     (-----) [006] d..2 24574.651730: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
89090          <idle>-0     (-----) [004] dnh2 24574.651732: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
89091          <idle>-0     (-----) [004] .n.1 24574.651735: cpu_idle: state=4294967295 cpu_id=4
89092  appEventThread-23905 (23896) [002] d.h4 24574.651737: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
89093          <idle>-0     (-----) [004] d..2 24574.651740: 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
89094<...>-12589 ( 23968) [000] d..2 24574.651749: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=116 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
89095         sugov:4-560   (  560) [004] d..2 24574.651749: 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
89096          <idle>-0     (-----) [004] d..1 24574.651754: cpu_idle: state=0 cpu_id=4
89097         sugov:0-559   (  559) [000] d..2 24574.651758: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=116
89098  appEventThread-23905 (23896) [002] d..2 24574.651768: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
89099          <idle>-0     (-----) [002] d..1 24574.651774: cpu_idle: state=0 cpu_id=2
89100<...>-12589 ( 23968) [000] d..3 24574.651829: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=001
89101<...>-12589 ( 23968) [000] d..4 24574.651846: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=002
89102          <idle>-0     (-----) [002] .n.1 24574.651851: cpu_idle: state=4294967295 cpu_id=2
89103          <idle>-0     (-----) [002] d..2 24574.651856: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
89104<...>-24151 ( 24151) [006] .... 24574.651870: binder_transaction: transaction=1670987 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
89105 s.nexuslauncher-24827 (24827) [001] .... 24574.651873: binder_transaction: transaction=1670988 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
89106<...>-24151 ( 24151) [006] d..4 24574.651876: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
89107<...>-12589 ( 23968) [000] d..1 24574.651881: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=001
89108<...>-24073 ( 23968) [002] d..2 24574.651883: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
89109          <idle>-0     (-----) [002] d..1 24574.651888: cpu_idle: state=0 cpu_id=2
89110 s.nexuslauncher-24827 (24827) [001] d..4 24574.651896: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
89111<...>-12589 ( 23968) [000] d..2 24574.651899: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=002
89112          <idle>-0     (-----) [002] dnh2 24574.651904: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=002
89113          <idle>-0     (-----) [002] .n.1 24574.651910: cpu_idle: state=4294967295 cpu_id=2
89114          <idle>-0     (-----) [002] d..2 24574.651915: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
89115          <idle>-0     (-----) [005] dnh2 24574.651948: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
89116          <idle>-0     (-----) [005] .n.1 24574.651953: cpu_idle: state=4294967295 cpu_id=5
89117          <idle>-0     (-----) [005] d..2 24574.651961: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
89118  Binder:23896_5-25989 (23896) [005] .... 24574.651966: binder_transaction_received: transaction=1670988
89119  Binder:23896_5-25989 (23896) [005] d..1 24574.651986: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
89120<...>-12589 ( 23968) [000] .... 24574.651998: binder_transaction: transaction=1670989 dest_node=0 dest_proc=13131 dest_thread=13131 reply=1 flags=0x0 code=0x0
89121 s.nexuslauncher-24827 (24827) [001] d..2 24574.652000: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
89122<...>-24151 ( 24151) [006] d..2 24574.652001: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
89123<...>-12589 ( 23968) [000] d..2 24574.652002: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
89124<...>-24003 ( 23968) [002] d..2 24574.652012: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
89125          <idle>-0     (-----) [006] d..1 24574.652012: cpu_idle: state=0 cpu_id=6
89126          <idle>-0     (-----) [001] dnh3 24574.652013: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
89127<...>-12589 ( 23968) [000] d..3 24574.652014: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
89128  Binder:23896_4-24423 (23896) [002] .... 24574.652017: binder_transaction_received: transaction=1670987
89129          <idle>-0     (-----) [001] d..2 24574.652019: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
89130  Binder:23896_5-25989 (23896) [005] d..2 24574.652025: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
89131          <idle>-0     (-----) [005] d..1 24574.652032: cpu_idle: state=0 cpu_id=5
89132  appEventThread-23905 (23896) [001] d..1 24574.652037: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=002
89133<...>-12589 ( 23968) [000] d..2 24574.652037: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
89134           <...>-13131 (-----) [000] .... 24574.652042: binder_transaction_received: transaction=1670989
89135  Binder:23896_4-24423 (23896) [002] d..2 24574.652044: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
89136          <idle>-0     (-----) [002] d..1 24574.652050: cpu_idle: state=0 cpu_id=2
89137  appEventThread-23905 (23896) [001] d..2 24574.652057: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=002
89138          <idle>-0     (-----) [002] .n.1 24574.652061: cpu_idle: state=4294967295 cpu_id=2
89139          <idle>-0     (-----) [002] d..2 24574.652066: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
89140  Binder:23896_4-24423 (23896) [002] d..1 24574.652072: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
89141  appEventThread-23905 (23896) [001] d..2 24574.652073: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
89142          <idle>-0     (-----) [001] d..1 24574.652080: cpu_idle: state=0 cpu_id=1
89143          <idle>-0     (-----) [001] .n.1 24574.652082: cpu_idle: state=4294967295 cpu_id=1
89144  Binder:23896_4-24423 (23896) [002] d..2 24574.652084: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
89145          <idle>-0     (-----) [001] d..2 24574.652088: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
89146  Binder:23896_4-24423 (23896) [002] d..2 24574.652109: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
89147  appEventThread-23905 (23896) [001] d..2 24574.652110: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
89148          <idle>-0     (-----) [002] d..1 24574.652113: cpu_idle: state=0 cpu_id=2
89149          <idle>-0     (-----) [001] d..1 24574.652115: cpu_idle: state=0 cpu_id=1
89150           <...>-13131 (-----) [000] .... 24574.652230: binder_transaction: transaction=1670990 dest_node=1270573 dest_proc=23968 dest_thread=0 reply=0 flags=0x11 code=0x14
89151           <...>-13131 (-----) [000] d..4 24574.652238: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=000
89152           <...>-13131 (-----) [000] d..5 24574.652256: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=001
89153          <idle>-0     (-----) [001] .n.1 24574.652260: cpu_idle: state=4294967295 cpu_id=1
89154          <idle>-0     (-----) [001] d..2 24574.652267: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
89155<...>-12589 ( 23968) [001] .... 24574.652271: binder_transaction_received: transaction=1670990
89156           <...>-13131 (-----) [000] d..2 24574.652398: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89157          <idle>-0     (-----) [000] d..1 24574.652409: cpu_idle: state=0 cpu_id=0
89158<...>-12589 ( 23968) [001] d..3 24574.652500: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=002
89159<...>-12589 ( 23968) [001] d..4 24574.652516: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=000
89160          <idle>-0     (-----) [000] .n.1 24574.652521: cpu_idle: state=4294967295 cpu_id=0
89161          <idle>-0     (-----) [000] d..2 24574.652528: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
89162<...>-12589 ( 23968) [001] d..3 24574.652530: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=001
89163<...>-12589 ( 23968) [001] d..4 24574.652544: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=002
89164          <idle>-0     (-----) [002] .n.1 24574.652548: cpu_idle: state=4294967295 cpu_id=2
89165          <idle>-0     (-----) [002] d..2 24574.652553: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
89166<...>-24003 ( 23968) [000] d..2 24574.652564: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89167          <idle>-0     (-----) [000] d..1 24574.652571: cpu_idle: state=0 cpu_id=0
89168<...>-23968 ( 23968) [002] .... 24574.652626: binder_transaction: transaction=1670991 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x19
89169<...>-23968 ( 23968) [002] d..4 24574.652630: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=002
89170<...>-23968 ( 23968) [002] d..5 24574.652647: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=000
89171<...>-12589 ( 23968) [001] d..2 24574.652652: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
89172          <idle>-0     (-----) [000] .n.1 24574.652652: cpu_idle: state=4294967295 cpu_id=0
89173          <idle>-0     (-----) [000] d..2 24574.652659: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
89174<...>-12589 ( 23968) [001] d..3 24574.652661: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
89175<...>-24376 ( 24151) [000] .... 24574.652663: binder_transaction_received: transaction=1670991
89176<...>-23968 ( 23968) [002] d..2 24574.652684: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
89177          <idle>-0     (-----) [002] d..1 24574.652690: cpu_idle: state=0 cpu_id=2
89178<...>-24376 ( 24151) [000] d..3 24574.652732: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
89179<...>-12589 ( 23968) [001] d..1 24574.652747: sched_waking: comm=LazyTaskWriterT pid=24117 prio=130 target_cpu=007
89180<...>-24376 ( 24151) [000] d..4 24574.652753: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
89181          <idle>-0     (-----) [002] .n.1 24574.652758: cpu_idle: state=4294967295 cpu_id=2
89182          <idle>-0     (-----) [002] d..2 24574.652784: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
89183<...>-24376 ( 24151) [000] d.h3 24574.652792: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
89184<...>-12589 ( 23968) [001] d..2 24574.652793: sched_wakeup: comm=LazyTaskWriterT pid=24117 prio=130 target_cpu=000
89185<...>-24376 ( 24151) [000] d.h3 24574.652818: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
89186          <idle>-0     (-----) [004] dnh2 24574.652821: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
89187          <idle>-0     (-----) [004] .n.1 24574.652824: cpu_idle: state=4294967295 cpu_id=4
89188          <idle>-0     (-----) [004] d..2 24574.652828: 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
89189<...>-24151 ( 24151) [002] d..2 24574.652830: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
89190<...>-24376 ( 24151) [000] d.h4 24574.652836: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
89191         sugov:4-560   (  560) [004] d..2 24574.652837: 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
89192          <idle>-0     (-----) [002] d..2 24574.652840: 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
89193          <idle>-0     (-----) [004] d..1 24574.652842: cpu_idle: state=0 cpu_id=4
89194<...>-24376 ( 24151) [000] d..1 24574.652847: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
89195         sugov:0-559   (  559) [002] d..2 24574.652862: 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
89196          <idle>-0     (-----) [002] d..1 24574.652866: cpu_idle: state=0 cpu_id=2
89197          <idle>-0     (-----) [006] dnh2 24574.652886: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
89198          <idle>-0     (-----) [006] .n.1 24574.652891: cpu_idle: state=4294967295 cpu_id=6
89199          <idle>-0     (-----) [006] d..2 24574.652898: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
89200<...>-24376 ( 24151) [000] d..2 24574.652920: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=LazyTaskWriterT next_pid=24117 next_prio=130
89201<...>-24117 ( 23968) [000] d..2 24574.652959: sched_switch: prev_comm=LazyTaskWriterT prev_pid=24117 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89202          <idle>-0     (-----) [000] d..1 24574.652968: cpu_idle: state=0 cpu_id=0
89203<...>-12589 ( 23968) [001] .... 24574.652994: binder_transaction: transaction=1670992 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
89204<...>-12589 ( 23968) [001] ...2 24574.652999: binder_set_priority: proc=23896 thread=24423 old=120 => new=116 desired=116
89205<...>-12589 ( 23968) [001] d..4 24574.653001: sched_waking: comm=Binder:23896_4 pid=24423 prio=116 target_cpu=002
89206<...>-12589 ( 23968) [001] d..5 24574.653011: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=116 target_cpu=002
89207          <idle>-0     (-----) [002] .n.1 24574.653015: cpu_idle: state=4294967295 cpu_id=2
89208<...>-12589 ( 23968) [001] d..2 24574.653020: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=116 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
89209          <idle>-0     (-----) [002] d..2 24574.653020: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=116
89210  Binder:23896_4-24423 (23896) [002] .... 24574.653025: binder_transaction_received: transaction=1670992
89211  Binder:23896_4-24423 (23896) [002] .... 24574.653047: binder_transaction: transaction=1670993 dest_node=0 dest_proc=23968 dest_thread=12589 reply=1 flags=0x0 code=0x0
89212  Binder:23896_4-24423 (23896) [002] d..2 24574.653050: sched_waking: comm=Binder:23968_16 pid=12589 prio=116 target_cpu=001
89213  Binder:23896_4-24423 (23896) [002] d..3 24574.653062: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=116 target_cpu=002
89214  Binder:23896_4-24423 (23896) [002] .... 24574.653065: binder_set_priority: proc=23896 thread=24423 old=116 => new=120 desired=120
89215  Binder:23896_4-24423 (23896) [002] d..2 24574.653087: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=116
89216<...>-12589 ( 23968) [002] .... 24574.653091: binder_transaction_received: transaction=1670993
89217     logd.writer-563   (  555) [001] d..2 24574.653123: 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
89218          <idle>-0     (-----) [001] d..1 24574.653131: cpu_idle: state=0 cpu_id=1
89219<...>-24151 ( 24151) [006] d..2 24574.653157: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
89220          <idle>-0     (-----) [006] d..1 24574.653168: cpu_idle: state=0 cpu_id=6
89221<...>-12589 ( 23968) [002] d..3 24574.653179: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=001
89222<...>-12589 ( 23968) [002] d..4 24574.653198: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=000
89223          <idle>-0     (-----) [000] .n.1 24574.653203: cpu_idle: state=4294967295 cpu_id=0
89224          <idle>-0     (-----) [000] d..2 24574.653209: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
89225<...>-23993 ( 23968) [000] d..2 24574.653252: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89226          <idle>-0     (-----) [000] d..1 24574.653259: cpu_idle: state=0 cpu_id=0
89227<...>-12589 ( 23968) [002] .... 24574.653565: binder_transaction: transaction=1670994 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
89228<...>-12589 ( 23968) [002] d..4 24574.653569: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=000
89229<...>-12589 ( 23968) [002] d..5 24574.653582: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=000
89230          <idle>-0     (-----) [000] .n.1 24574.653587: cpu_idle: state=4294967295 cpu_id=0
89231          <idle>-0     (-----) [000] d..2 24574.653593: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
89232<...>-24376 ( 24151) [000] .... 24574.653597: binder_transaction_received: transaction=1670994
89233<...>-24376 ( 24151) [000] d..3 24574.653646: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
89234<...>-12589 ( 23968) [002] d..3 24574.653656: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=006
89235          <idle>-0     (-----) [006] dnh2 24574.653665: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
89236          <idle>-0     (-----) [006] .n.1 24574.653676: cpu_idle: state=4294967295 cpu_id=6
89237<...>-12589 ( 23968) [002] d..4 24574.653679: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=001
89238          <idle>-0     (-----) [006] d..2 24574.653684: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
89239          <idle>-0     (-----) [001] .n.1 24574.653684: cpu_idle: state=4294967295 cpu_id=1
89240<...>-24376 ( 24151) [000] d..2 24574.653686: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89241          <idle>-0     (-----) [001] d..2 24574.653691: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
89242          <idle>-0     (-----) [000] d..1 24574.653695: cpu_idle: state=0 cpu_id=0
89243<...>-12589 ( 23968) [002] d.h3 24574.653719: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
89244<...>-23994 ( 23968) [001] d..2 24574.653727: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
89245<...>-12589 ( 23968) [002] d.h3 24574.653727: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
89246          <idle>-0     (-----) [001] d..1 24574.653733: cpu_idle: state=0 cpu_id=1
89247<...>-24151 ( 24151) [006] d..2 24574.653733: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
89248          <idle>-0     (-----) [004] dnh2 24574.653734: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
89249          <idle>-0     (-----) [004] .n.1 24574.653737: cpu_idle: state=4294967295 cpu_id=4
89250<...>-12589 ( 23968) [002] d.h4 24574.653740: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
89251          <idle>-0     (-----) [004] d..2 24574.653741: 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
89252          <idle>-0     (-----) [006] d..1 24574.653743: cpu_idle: state=0 cpu_id=6
89253          <idle>-0     (-----) [001] .n.1 24574.653745: cpu_idle: state=4294967295 cpu_id=1
89254<...>-12589 ( 23968) [002] d..1 24574.653747: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=001
89255         sugov:4-560   (  560) [004] d..2 24574.653750: 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
89256          <idle>-0     (-----) [001] d..2 24574.653751: 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
89257          <idle>-0     (-----) [004] d..1 24574.653755: cpu_idle: state=0 cpu_id=4
89258<...>-12589 ( 23968) [002] d..2 24574.653765: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=000
89259         sugov:0-559   (  559) [001] d..2 24574.653768: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
89260          <idle>-0     (-----) [000] .n.1 24574.653771: cpu_idle: state=4294967295 cpu_id=0
89261          <idle>-0     (-----) [001] d..1 24574.653773: cpu_idle: state=0 cpu_id=1
89262          <idle>-0     (-----) [000] d..2 24574.653777: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
89263<...>-23994 ( 23968) [000] d..3 24574.653814: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=002
89264<...>-23994 ( 23968) [000] d..4 24574.653832: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=001
89265          <idle>-0     (-----) [001] .n.1 24574.653836: cpu_idle: state=4294967295 cpu_id=1
89266          <idle>-0     (-----) [001] d..2 24574.653842: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
89267<...>-23994 ( 23968) [000] d..2 24574.653862: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89268          <idle>-0     (-----) [000] d..1 24574.653870: cpu_idle: state=0 cpu_id=0
89269<...>-23968 ( 23968) [001] .... 24574.653890: binder_transaction: transaction=1670995 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
89270<...>-23968 ( 23968) [001] d..4 24574.653894: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=000
89271<...>-23968 ( 23968) [001] d..5 24574.653905: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=000
89272          <idle>-0     (-----) [000] .n.1 24574.653910: cpu_idle: state=4294967295 cpu_id=0
89273          <idle>-0     (-----) [000] d..2 24574.653918: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
89274<...>-24376 ( 24151) [000] .... 24574.653921: binder_transaction_received: transaction=1670995
89275<...>-23968 ( 23968) [001] d..2 24574.653940: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
89276          <idle>-0     (-----) [001] d..1 24574.653947: cpu_idle: state=0 cpu_id=1
89277<...>-24376 ( 24151) [000] d..3 24574.653969: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
89278          <idle>-0     (-----) [006] dnh2 24574.653986: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
89279          <idle>-0     (-----) [006] .n.1 24574.653990: cpu_idle: state=4294967295 cpu_id=6
89280<...>-12589 ( 23968) [002] .... 24574.653994: binder_transaction: transaction=1670996 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
89281          <idle>-0     (-----) [006] d..2 24574.653997: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
89282<...>-24376 ( 24151) [000] d..2 24574.654007: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89283<...>-12589 ( 23968) [002] ...2 24574.654012: binder_set_priority: proc=23896 thread=24423 old=120 => new=116 desired=116
89284<...>-12589 ( 23968) [002] d..4 24574.654014: sched_waking: comm=Binder:23896_4 pid=24423 prio=116 target_cpu=002
89285          <idle>-0     (-----) [000] d..1 24574.654016: cpu_idle: state=0 cpu_id=0
89286<...>-12589 ( 23968) [002] dn.5 24574.654023: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=116 target_cpu=002
89287<...>-12589 ( 23968) [002] d..2 24574.654029: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=116 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=116
89288  Binder:23896_4-24423 (23896) [002] .... 24574.654033: binder_transaction_received: transaction=1670996
89289<...>-24151 ( 24151) [006] d..2 24574.654044: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
89290          <idle>-0     (-----) [006] d..1 24574.654054: cpu_idle: state=0 cpu_id=6
89291  Binder:23896_4-24423 (23896) [002] d..2 24574.654135: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
89292  Binder:23896_4-24423 (23896) [002] d..3 24574.654162: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
89293          <idle>-0     (-----) [000] .n.1 24574.654168: cpu_idle: state=4294967295 cpu_id=0
89294          <idle>-0     (-----) [000] d..2 24574.654174: 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
89295  Binder:23896_4-24423 (23896) [002] .... 24574.654186: binder_transaction: transaction=1670997 dest_node=0 dest_proc=23968 dest_thread=12589 reply=1 flags=0x0 code=0x0
89296  Binder:23896_4-24423 (23896) [002] .... 24574.654189: binder_set_priority: proc=23896 thread=24423 old=116 => new=120 desired=120
89297  Binder:23896_4-24423 (23896) [002] d.s3 24574.654232: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
89298  Binder:23896_4-24423 (23896) [002] d.s4 24574.654257: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
89299     logd.writer-563   (  555) [000] d..2 24574.654263: 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
89300     rcu_preempt-7     (    7) [000] d..2 24574.654277: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
89301  Binder:23896_4-24423 (23896) [002] d..2 24574.654279: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=116
89302<...>-12589 ( 23968) [002] .... 24574.654284: binder_transaction_received: transaction=1670997
89303     rcu_preempt-7     (    7) [000] d..3 24574.654304: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
89304     rcu_preempt-7     (    7) [000] d..2 24574.654316: 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
89305         rcuop/0-10    (   10) [000] d..2 24574.654321: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
89306         rcuop/0-10    (   10) [000] d..3 24574.654342: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
89307         rcuop/0-10    (   10) [000] d..2 24574.654373: 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
89308         rcuop/1-21    (   21) [000] d..2 24574.654394: 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
89309          <idle>-0     (-----) [000] d..1 24574.654402: cpu_idle: state=0 cpu_id=0
89310<...>-12589 ( 23968) [002] d..3 24574.654736: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=002
89311<...>-12589 ( 23968) [002] d..4 24574.654754: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
89312          <idle>-0     (-----) [000] .n.1 24574.654759: cpu_idle: state=4294967295 cpu_id=0
89313          <idle>-0     (-----) [000] d..2 24574.654765: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
89314<...>-24073 ( 23968) [000] d..2 24574.654794: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89315          <idle>-0     (-----) [000] d..1 24574.654800: cpu_idle: state=0 cpu_id=0
89316<...>-12589 ( 23968) [002] d..2 24574.654880: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
89317<...>-12589 ( 23968) [002] d..3 24574.654893: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
89318<...>-12589 ( 23968) [002] .... 24574.654925: binder_transaction: transaction=1670998 dest_node=1271185 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
89319<...>-12589 ( 23968) [002] ...2 24574.654931: binder_set_priority: proc=23896 thread=24423 old=120 => new=116 desired=116
89320<...>-12589 ( 23968) [002] d..4 24574.654933: sched_waking: comm=Binder:23896_4 pid=24423 prio=116 target_cpu=002
89321<...>-12589 ( 23968) [002] d..5 24574.654948: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=116 target_cpu=000
89322          <idle>-0     (-----) [000] .n.1 24574.654953: cpu_idle: state=4294967295 cpu_id=0
89323<...>-12589 ( 23968) [002] d..2 24574.654956: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=116 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
89324          <idle>-0     (-----) [000] d..2 24574.654959: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=116
89325  Binder:23896_4-24423 (23896) [000] .... 24574.654964: binder_transaction_received: transaction=1670998
89326  Binder:23896_4-24423 (23896) [000] .... 24574.654993: binder_transaction: transaction=1670999 dest_node=0 dest_proc=23968 dest_thread=12589 reply=1 flags=0x0 code=0x0
89327  Binder:23896_4-24423 (23896) [000] d..2 24574.654996: sched_waking: comm=Binder:23968_16 pid=12589 prio=116 target_cpu=002
89328     logd.writer-563   (  555) [002] d..2 24574.655005: 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
89329  Binder:23896_4-24423 (23896) [000] d..3 24574.655015: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=116 target_cpu=000
89330          <idle>-0     (-----) [002] d..1 24574.655015: cpu_idle: state=0 cpu_id=2
89331  Binder:23896_4-24423 (23896) [000] .... 24574.655017: binder_set_priority: proc=23896 thread=24423 old=116 => new=120 desired=120
89332  Binder:23896_4-24423 (23896) [000] d..2 24574.655041: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=116
89333<...>-12589 ( 23968) [000] .... 24574.655045: binder_transaction_received: transaction=1670999
89334<...>-12589 ( 23968) [000] d..5 24574.655068: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
89335<...>-12589 ( 23968) [000] d..6 24574.655083: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
89336          <idle>-0     (-----) [001] .n.1 24574.655088: cpu_idle: state=4294967295 cpu_id=1
89337          <idle>-0     (-----) [001] d..2 24574.655095: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
89338<...>-12589 ( 23968) [000] d..3 24574.655108: sched_waking: comm=android.anim pid=24041 prio=116 target_cpu=001
89339<...>-12589 ( 23968) [000] d..4 24574.655127: sched_wakeup: comm=android.anim pid=24041 prio=116 target_cpu=002
89340          <idle>-0     (-----) [002] .n.1 24574.655132: cpu_idle: state=4294967295 cpu_id=2
89341  Binder:23896_4-24423 (23896) [001] d..2 24574.655132: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
89342          <idle>-0     (-----) [001] d..1 24574.655139: cpu_idle: state=0 cpu_id=1
89343          <idle>-0     (-----) [002] d..2 24574.655139: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=116
89344<...>-12589 ( 23968) [000] d..2 24574.655217: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89345          <idle>-0     (-----) [000] d..1 24574.655225: cpu_idle: state=0 cpu_id=0
89346<...>-24041 ( 23968) [002] .... 24574.655315: binder_transaction: transaction=1671000 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
89347<...>-24041 ( 23968) [002] d..4 24574.655319: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=000
89348<...>-24041 ( 23968) [002] d..5 24574.655331: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=000
89349          <idle>-0     (-----) [000] .n.1 24574.655336: cpu_idle: state=4294967295 cpu_id=0
89350          <idle>-0     (-----) [000] d..2 24574.655342: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
89351<...>-24376 ( 24151) [000] .... 24574.655346: binder_transaction_received: transaction=1671000
89352<...>-24041 ( 23968) [002] d..3 24574.655386: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=000
89353<...>-24376 ( 24151) [000] d..3 24574.655397: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
89354<...>-24041 ( 23968) [002] d..4 24574.655402: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=001
89355          <idle>-0     (-----) [001] .n.1 24574.655407: cpu_idle: state=4294967295 cpu_id=1
89356          <idle>-0     (-----) [001] d..2 24574.655413: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
89357          <idle>-0     (-----) [006] dnh2 24574.655417: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
89358          <idle>-0     (-----) [006] .n.1 24574.655421: cpu_idle: state=4294967295 cpu_id=6
89359          <idle>-0     (-----) [006] d..2 24574.655428: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
89360<...>-24376 ( 24151) [000] d..2 24574.655440: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89361<...>-23994 ( 23968) [001] d..3 24574.655447: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=001
89362          <idle>-0     (-----) [000] d..1 24574.655447: cpu_idle: state=0 cpu_id=0
89363<...>-23994 ( 23968) [001] d..4 24574.655463: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=000
89364          <idle>-0     (-----) [000] .n.1 24574.655468: cpu_idle: state=4294967295 cpu_id=0
89365<...>-24151 ( 24151) [006] d..2 24574.655472: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
89366          <idle>-0     (-----) [000] d..2 24574.655475: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
89367          <idle>-0     (-----) [006] d..1 24574.655480: cpu_idle: state=0 cpu_id=6
89368<...>-23994 ( 23968) [001] d..2 24574.655491: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
89369          <idle>-0     (-----) [001] d..1 24574.655498: cpu_idle: state=0 cpu_id=1
89370          <idle>-0     (-----) [001] d.h2 24574.655516: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
89371          <idle>-0     (-----) [001] dnh3 24574.655523: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
89372<...>-23968 ( 23968) [000] .... 24574.655524: binder_transaction: transaction=1671001 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
89373          <idle>-0     (-----) [001] .n.1 24574.655528: cpu_idle: state=4294967295 cpu_id=1
89374<...>-23968 ( 23968) [000] d..4 24574.655528: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=000
89375          <idle>-0     (-----) [001] d..2 24574.655533: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
89376        DispSync-23904 (23896) [001] d..1 24574.655547: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
89377<...>-24041 ( 23968) [002] .... 24574.655564: binder_transaction: transaction=1671002 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
89378<...>-24041 ( 23968) [002] ...2 24574.655573: binder_set_priority: proc=23896 thread=24423 old=120 => new=116 desired=116
89379<...>-24041 ( 23968) [002] d..4 24574.655577: sched_waking: comm=Binder:23896_4 pid=24423 prio=116 target_cpu=001
89380          <idle>-0     (-----) [006] dnh2 24574.655579: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
89381        DispSync-23904 (23896) [001] d..2 24574.655580: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
89382          <idle>-0     (-----) [006] .n.1 24574.655583: cpu_idle: state=4294967295 cpu_id=6
89383<...>-23968 ( 23968) [000] dnh5 24574.655584: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
89384          <idle>-0     (-----) [006] d..2 24574.655590: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
89385<...>-24041 ( 23968) [002] d..5 24574.655590: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=116 target_cpu=002
89386<...>-23968 ( 23968) [000] dnh5 24574.655592: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
89387          <idle>-0     (-----) [004] dnh2 24574.655599: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
89388        DispSync-23904 (23896) [001] d..2 24574.655599: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
89389<...>-24041 ( 23968) [002] d..2 24574.655600: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=116
89390          <idle>-0     (-----) [004] .n.1 24574.655602: cpu_idle: state=4294967295 cpu_id=4
89391  Binder:23896_4-24423 (23896) [002] .... 24574.655604: binder_transaction_received: transaction=1671002
89392<...>-23968 ( 23968) [000] dnh6 24574.655606: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
89393          <idle>-0     (-----) [004] d..2 24574.655606: 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
89394          <idle>-0     (-----) [001] d..2 24574.655609: 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
89395         sugov:4-560   (  560) [004] d..2 24574.655616: 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
89396<...>-24376 ( 24151) [006] .... 24574.655617: binder_transaction_received: transaction=1671001
89397<...>-23968 ( 23968) [000] d..2 24574.655619: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
89398          <idle>-0     (-----) [004] d..1 24574.655621: cpu_idle: state=0 cpu_id=4
89399         sugov:0-559   (  559) [001] d..2 24574.655625: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
89400          <idle>-0     (-----) [001] d..1 24574.655631: cpu_idle: state=0 cpu_id=1
89401  Binder:23896_4-24423 (23896) [002] .... 24574.655644: binder_transaction: transaction=1671003 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
89402  Binder:23896_4-24423 (23896) [002] d..2 24574.655647: sched_waking: comm=android.anim pid=24041 prio=116 target_cpu=002
89403  Binder:23896_4-24423 (23896) [002] d..3 24574.655655: sched_wakeup: comm=android.anim pid=24041 prio=116 target_cpu=002
89404  Binder:23896_4-24423 (23896) [002] .... 24574.655657: binder_set_priority: proc=23896 thread=24423 old=116 => new=120 desired=120
89405   sfEventThread-23906 (23896) [000] d..3 24574.655659: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
89406  Binder:23896_4-24423 (23896) [002] d..2 24574.655664: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=android.anim next_pid=24041 next_prio=116
89407<...>-24041 ( 23968) [002] .... 24574.655668: binder_transaction_received: transaction=1671003
89408<...>-24376 ( 24151) [006] d..3 24574.655678: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=006
89409   sfEventThread-23906 (23896) [000] d..4 24574.655681: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
89410          <idle>-0     (-----) [001] .n.1 24574.655685: cpu_idle: state=4294967295 cpu_id=1
89411          <idle>-0     (-----) [001] d..2 24574.655691: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
89412   sfEventThread-23906 (23896) [000] d..2 24574.655694: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
89413<...>-24376 ( 24151) [006] d..4 24574.655698: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
89414          <idle>-0     (-----) [007] .n.1 24574.655704: cpu_idle: state=4294967295 cpu_id=7
89415          <idle>-0     (-----) [007] d..2 24574.655713: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
89416<...>-23968 ( 23968) [000] d..2 24574.655735: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89417<...>-24376 ( 24151) [006] d..2 24574.655741: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
89418          <idle>-0     (-----) [000] d..1 24574.655743: cpu_idle: state=0 cpu_id=0
89419          <idle>-0     (-----) [006] d..1 24574.655750: cpu_idle: state=0 cpu_id=6
89420<...>-24151 ( 24151) [007] d..2 24574.655774: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
89421          <idle>-0     (-----) [007] d..1 24574.655784: cpu_idle: state=0 cpu_id=7
89422          <idle>-0     (-----) [006] d.h2 24574.655939: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=006
89423          <idle>-0     (-----) [000] dnh2 24574.655966: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=000
89424          <idle>-0     (-----) [000] .n.1 24574.655990: cpu_idle: state=4294967295 cpu_id=0
89425          <idle>-0     (-----) [006] ...1 24574.655992: cpu_idle: state=4294967295 cpu_id=6
89426          <idle>-0     (-----) [000] d..2 24574.655996: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
89427          <idle>-0     (-----) [006] d..1 24574.655997: cpu_idle: state=0 cpu_id=6
89428<...>-24041 ( 23968) [002] d..3 24574.656099: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
89429<...>-24041 ( 23968) [002] d.h3 24574.656154: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
89430          <idle>-0     (-----) [006] dnh2 24574.656156: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
89431          <idle>-0     (-----) [006] .n.1 24574.656160: cpu_idle: state=4294967295 cpu_id=6
89432<...>-24041 ( 23968) [002] d.h3 24574.656163: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
89433          <idle>-0     (-----) [006] d..2 24574.656167: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
89434          <idle>-0     (-----) [004] dnh2 24574.656169: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
89435          <idle>-0     (-----) [004] .n.1 24574.656172: cpu_idle: state=4294967295 cpu_id=4
89436<...>-24041 ( 23968) [002] d.h4 24574.656176: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
89437          <idle>-0     (-----) [004] d..2 24574.656177: 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
89438         sugov:4-560   (  560) [004] d..2 24574.656186: 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
89439           <...>-13147 (-----) [000] d..2 24574.656188: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
89440          <idle>-0     (-----) [004] d..1 24574.656191: cpu_idle: state=0 cpu_id=4
89441         sugov:0-559   (  559) [000] d..2 24574.656197: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
89442<...>-24073 ( 23968) [006] d..2 24574.656200: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
89443          <idle>-0     (-----) [006] d..1 24574.656209: cpu_idle: state=0 cpu_id=6
89444<...>-24041 ( 23968) [002] d..1 24574.656221: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=000
89445          <idle>-0     (-----) [006] dnh2 24574.656262: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=006
89446          <idle>-0     (-----) [006] .n.1 24574.656266: cpu_idle: state=4294967295 cpu_id=6
89447          <idle>-0     (-----) [006] d..2 24574.656272: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
89448<...>-12589 ( 23968) [006] d..1 24574.656339: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=000
89449<...>-24041 ( 23968) [002] .... 24574.656357: binder_transaction: transaction=1671004 dest_node=1271137 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
89450<...>-12589 ( 23968) [006] d..2 24574.656361: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=005
89451<...>-24041 ( 23968) [002] d..4 24574.656361: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
89452          <idle>-0     (-----) [005] .n.1 24574.656366: cpu_idle: state=4294967295 cpu_id=5
89453          <idle>-0     (-----) [005] d..2 24574.656393: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
89454          <idle>-0     (-----) [007] dnh2 24574.656402: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=007
89455          <idle>-0     (-----) [007] .n.1 24574.656406: cpu_idle: state=4294967295 cpu_id=7
89456          <idle>-0     (-----) [007] d..2 24574.656413: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
89457<...>-24003 ( 23968) [005] d..1 24574.656419: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=000
89458  Binder:23896_5-25989 (23896) [007] .... 24574.656419: binder_transaction_received: transaction=1671004
89459  Binder:23896_5-25989 (23896) [007] d..1 24574.656439: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
89460           <...>-13147 (-----) [000] dnh1 24574.656453: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
89461           <...>-13147 (-----) [000] dnh1 24574.656458: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=000
89462           <...>-13147 (-----) [000] d..2 24574.656464: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
89463  Binder:23896_5-25989 (23896) [007] d..2 24574.656468: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
89464          <idle>-0     (-----) [007] d..1 24574.656476: cpu_idle: state=0 cpu_id=7
89465<...>-12589 ( 23968) [006] d..2 24574.656477: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
89466<...>-24003 ( 23968) [005] d..2 24574.656484: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
89467   sfEventThread-23906 (23896) [000] d..2 24574.656488: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=ActivityManager next_pid=23993 next_prio=118
89468          <idle>-0     (-----) [006] d..1 24574.656489: cpu_idle: state=0 cpu_id=6
89469          <idle>-0     (-----) [005] d..1 24574.656495: cpu_idle: state=0 cpu_id=5
89470  surfaceflinger-23896 (23896) [001] ...1 24574.656527: tracing_mark_write: B|23896|HIDL::IMapper::freeBuffer::passthrough
89471  surfaceflinger-23896 (23896) [001] ...1 24574.656543: tracing_mark_write: B|23896|FreeBuffer
89472<...>-24041 ( 23968) [002] .... 24574.656567: binder_transaction: transaction=1671006 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
89473<...>-24041 ( 23968) [002] ...2 24574.656576: binder_set_priority: proc=23896 thread=25989 old=120 => new=116 desired=116
89474<...>-24041 ( 23968) [002] d..4 24574.656578: sched_waking: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=007
89475<...>-23993 ( 23968) [000] .... 24574.656599: binder_transaction: transaction=1671005 dest_node=1307515 dest_proc=24827 dest_thread=0 reply=0 flags=0x11 code=0xb
89476  surfaceflinger-23896 (23896) [001] d..2 24574.656602: sched_waking: comm=system pid=105 prio=120 target_cpu=002
89477          <idle>-0     (-----) [005] dnh2 24574.656602: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=005
89478<...>-24041 ( 23968) [002] d..2 24574.656603: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
89479          <idle>-0     (-----) [005] .n.1 24574.656607: cpu_idle: state=4294967295 cpu_id=5
89480<...>-23993 ( 23968) [000] d..4 24574.656607: sched_waking: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=003
89481          <idle>-0     (-----) [005] d..2 24574.656614: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
89482  surfaceflinger-23896 (23896) [001] d..3 24574.656619: sched_wakeup: comm=system pid=105 prio=120 target_cpu=002
89483  Binder:23896_5-25989 (23896) [005] .... 24574.656619: binder_transaction_received: transaction=1671006
89484  Binder:23896_4-24423 (23896) [002] d..2 24574.656629: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=system next_pid=105 next_prio=120
89485  surfaceflinger-23896 (23896) [001] ...1 24574.656630: tracing_mark_write: E|23896
89486  surfaceflinger-23896 (23896) [001] ...1 24574.656633: tracing_mark_write: B|23896|FreeBuffer
89487  surfaceflinger-23896 (23896) [001] ...1 24574.656636: tracing_mark_write: B|23896|UnmapBuffer
89488<...>-23993 ( 23968) [000] d.h5 24574.656662: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
89489          <idle>-0     (-----) [006] dnh2 24574.656664: sched_wakeup: comm=Binder:24827_4 pid=25554 prio=120 target_cpu=006
89490  surfaceflinger-23896 (23896) [001] ...1 24574.656665: tracing_mark_write: E|23896
89491  Binder:23896_5-25989 (23896) [005] .... 24574.656666: binder_transaction: transaction=1671007 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
89492          <idle>-0     (-----) [006] .n.1 24574.656668: cpu_idle: state=4294967295 cpu_id=6
89493  Binder:23896_5-25989 (23896) [005] d..2 24574.656670: sched_waking: comm=android.anim pid=24041 prio=116 target_cpu=002
89494<...>-23993 ( 23968) [000] d.h5 24574.656670: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
89495          <idle>-0     (-----) [006] d..2 24574.656675: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24827_4 next_pid=25554 next_prio=120
89496          <idle>-0     (-----) [004] dnh2 24574.656677: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
89497  surfaceflinger-23896 (23896) [001] ...1 24574.656677: tracing_mark_write: E|23896
89498<...>-23993 ( 23968) [000] dnh6 24574.656678: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
89499          <idle>-0     (-----) [004] .n.1 24574.656680: cpu_idle: state=4294967295 cpu_id=4
89500<...>-25554 ( 24827) [006] .... 24574.656683: binder_transaction_received: transaction=1671005
89501  surfaceflinger-23896 (23896) [001] ...1 24574.656683: tracing_mark_write: E|23896
89502<...>-23993 ( 23968) [000] d..2 24574.656684: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
89503          <idle>-0     (-----) [004] d..2 24574.656685: 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
89504  Binder:23896_5-25989 (23896) [005] d..3 24574.656686: sched_wakeup: comm=android.anim pid=24041 prio=116 target_cpu=005
89505         sugov:0-559   (  559) [000] d..2 24574.656692: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=ActivityManager next_pid=23993 next_prio=118
89506         sugov:4-560   (  560) [004] d..2 24574.656715: 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
89507  Binder:23896_5-25989 (23896) [005] .... 24574.656715: binder_set_priority: proc=23896 thread=25989 old=116 => new=120 desired=120
89508          <idle>-0     (-----) [004] d..1 24574.656720: cpu_idle: state=0 cpu_id=4
89509<...>-23993 ( 23968) [000] .... 24574.656738: binder_transaction: transaction=1671008 dest_node=1276465 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xb
89510  surfaceflinger-23896 (23896) [001] d..1 24574.656740: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
89511<...>-23993 ( 23968) [000] d..4 24574.656742: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=006
89512  Binder:23896_5-25989 (23896) [005] d..2 24574.656745: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=116
89513<...>-24041 ( 23968) [005] .... 24574.656750: binder_transaction_received: transaction=1671007
89514  surfaceflinger-23896 (23896) [001] d..2 24574.656752: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
89515<...>-23993 ( 23968) [000] d..2 24574.656766: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=R+ ==> next_comm=sfEventThread next_pid=23906 next_prio=97
89516          <idle>-0     (-----) [007] dnh2 24574.656767: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
89517          <idle>-0     (-----) [007] .n.1 24574.656770: cpu_idle: state=4294967295 cpu_id=7
89518          <idle>-0     (-----) [007] d..2 24574.656776: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
89519<...>-24376 ( 24151) [007] .... 24574.656780: binder_transaction_received: transaction=1671008
89520   sfEventThread-23906 (23896) [000] d..2 24574.656785: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
89521<...>-24041 ( 23968) [005] d..1 24574.656788: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=005
89522<...>-24041 ( 23968) [005] d..2 24574.656808: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=004
89523          <idle>-0     (-----) [004] .n.1 24574.656813: cpu_idle: state=4294967295 cpu_id=4
89524<...>-25554 ( 24827) [006] d..3 24574.656815: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
89525          <idle>-0     (-----) [004] d..2 24574.656818: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
89526  surfaceflinger-23896 (23896) [001] d.h1 24574.656850: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
89527<...>-24376 ( 24151) [007] d..3 24574.656856: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
89528           <...>-13147 (-----) [000] d..2 24574.656864: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
89529<...>-24041 ( 23968) [005] d..2 24574.656864: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
89530<...>-24376 ( 24151) [007] d..4 24574.656870: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
89531          <idle>-0     (-----) [005] d..1 24574.656876: cpu_idle: state=0 cpu_id=5
89532           <...>-13147 (-----) [000] d..3 24574.656887: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
89533<...>-25554 ( 24827) [006] d..2 24574.656901: sched_switch: prev_comm=Binder:24827_4 prev_pid=25554 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
89534<...>-24376 ( 24151) [007] d..2 24574.656911: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
89535          <idle>-0     (-----) [006] d..1 24574.656913: cpu_idle: state=0 cpu_id=6
89536<...>-24003 ( 23968) [004] d..2 24574.656982: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
89537          <idle>-0     (-----) [004] d..1 24574.656994: cpu_idle: state=0 cpu_id=4
89538<...>-24151 ( 24151) [007] d..2 24574.657010: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
89539          <idle>-0     (-----) [007] d..1 24574.657022: cpu_idle: state=0 cpu_id=7
89540          <idle>-0     (-----) [006] ...1 24574.657138: cpu_idle: state=4294967295 cpu_id=6
89541          <idle>-0     (-----) [006] d..1 24574.657142: cpu_idle: state=0 cpu_id=6
89542  surfaceflinger-23896 (23896) [001] ...1 24574.657303: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
89543  surfaceflinger-23896 (23896) [001] ...1 24574.657307: tracing_mark_write: E|23896
89544  surfaceflinger-23896 (23896) [001] .... 24574.657370: binder_transaction: transaction=1671009 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
89545  surfaceflinger-23896 (23896) [001] ...2 24574.657401: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
89546  surfaceflinger-23896 (23896) [001] d..4 24574.657413: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
89547  surfaceflinger-23896 (23896) [001] d..5 24574.657434: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
89548<...>-27905 ( 23968) [003] d..2 24574.657445: sched_switch: prev_comm=RenderThread prev_pid=27905 prev_prio=116 prev_state=R+ ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
89549  HwBinder:598_3-633   (  598) [003] .... 24574.657460: binder_transaction_received: transaction=1671009
89550  surfaceflinger-23896 (23896) [001] d..2 24574.657462: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
89551  HwBinder:598_3-633   (  598) [003] ...1 24574.657520: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
89552 s.nexuslauncher-24827 (24827) [001] d..2 24574.657555: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
89553  HwBinder:598_3-633   (  598) [003] d.s2 24574.657586: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
89554          <idle>-0     (-----) [001] d.H4 24574.657632: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
89555  HwBinder:598_3-633   (  598) [003] d.s3 24574.657638: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
89556          <idle>-0     (-----) [001] dnH4 24574.657641: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
89557          <idle>-0     (-----) [004] dnh2 24574.657650: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
89558          <idle>-0     (-----) [001] dnH5 24574.657653: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
89559          <idle>-0     (-----) [004] .n.1 24574.657654: cpu_idle: state=4294967295 cpu_id=4
89560          <idle>-0     (-----) [004] d..2 24574.657662: 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
89561          <idle>-0     (-----) [001] d..2 24574.657671: 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
89562         sugov:4-560   (  560) [004] d..2 24574.657676: 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
89563         sugov:0-559   (  559) [001] d..2 24574.657679: 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
89564          <idle>-0     (-----) [004] d..1 24574.657682: cpu_idle: state=0 cpu_id=4
89565  HwBinder:598_3-633   (  598) [003] ...1 24574.657732: tracing_mark_write: B|598|HWCSession::PresentDisplay::
89566  kworker/u16:10-23868 (23868) [001] d..2 24574.657910: 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
89567          <idle>-0     (-----) [001] d..1 24574.657923: cpu_idle: state=0 cpu_id=1
89568  HwBinder:598_3-633   (  598) [003] ...1 24574.658174: tracing_mark_write: B|598|HWDeviceDRM::Validate::
89569<...>-105 ( 105) [002] d..2 24574.658237: sched_switch: prev_comm=system prev_pid=105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
89570          <idle>-0     (-----) [002] d..1 24574.658250: cpu_idle: state=0 cpu_id=2
89571           <...>-13147 (-----) [000] d..3 24574.658424: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
89572           <...>-13147 (-----) [000] d..4 24574.658445: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
89573          <idle>-0     (-----) [001] .n.1 24574.658450: cpu_idle: state=4294967295 cpu_id=1
89574          <idle>-0     (-----) [001] d..2 24574.658457: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
89575  HwBinder:598_3-633   (  598) [003] ...1 24574.658583: tracing_mark_write: E|598
89576  HwBinder:598_3-633   (  598) [003] ...1 24574.658671: tracing_mark_write: B|598|HWDeviceDRM::Commit::
89577  HwBinder:598_3-633   (  598) [003] ...1 24574.658677: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
89578           <...>-13131 (-----) [001] d..2 24574.658731: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
89579          <idle>-0     (-----) [001] d..1 24574.658740: cpu_idle: state=0 cpu_id=1
89580           <...>-13147 (-----) [000] .... 24574.658818: binder_transaction: transaction=1671010 dest_node=1270795 dest_proc=23968 dest_thread=0 reply=0 flags=0x10 code=0x21
89581           <...>-13147 (-----) [000] ...2 24574.658831: binder_set_priority: proc=23968 thread=12589 old=120 => new=112 desired=112
89582           <...>-13147 (-----) [000] d..4 24574.658834: sched_waking: comm=Binder:23968_16 pid=12589 prio=112 target_cpu=006
89583           <...>-13147 (-----) [000] d..5 24574.658857: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=112 target_cpu=001
89584          <idle>-0     (-----) [001] .n.1 24574.658863: cpu_idle: state=4294967295 cpu_id=1
89585           <...>-13147 (-----) [000] d.h5 24574.658887: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
89586          <idle>-0     (-----) [001] d..2 24574.658888: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=112
89587           <...>-13147 (-----) [000] d.h5 24574.658895: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
89588          <idle>-0     (-----) [004] dnh2 24574.658902: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
89589          <idle>-0     (-----) [004] .n.1 24574.658905: cpu_idle: state=4294967295 cpu_id=4
89590           <...>-13147 (-----) [000] d.h6 24574.658908: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
89591          <idle>-0     (-----) [004] d..2 24574.658910: 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
89592          <idle>-0     (-----) [002] .n.1 24574.658914: cpu_idle: state=4294967295 cpu_id=2
89593<...>-12589 ( 23968) [001] .... 24574.658914: binder_transaction_received: transaction=1671010
89594  HwBinder:598_3-633   (  598) [003] d..2 24574.658919: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
89595           <...>-13147 (-----) [000] d..2 24574.658921: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=S ==> next_comm=ActivityManager next_pid=23993 next_prio=118
89596          <idle>-0     (-----) [002] d..2 24574.658921: 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
89597         sugov:4-560   (  560) [004] d..2 24574.658921: 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
89598          <idle>-0     (-----) [004] d..1 24574.658927: cpu_idle: state=0 cpu_id=4
89599         sugov:0-559   (  559) [002] d..2 24574.658936: 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
89600  HwBinder:598_3-633   (  598) [003] d..3 24574.658944: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
89601          <idle>-0     (-----) [002] d..2 24574.658948: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
89602<...>-23993 ( 23968) [000] d..2 24574.658989: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
89603  HwBinder:598_3-633   (  598) [003] ...1 24574.659013: tracing_mark_write: E|598
89604  HwBinder:598_3-633   (  598) [003] ...1 24574.659016: tracing_mark_write: E|598
89605  HwBinder:598_3-633   (  598) [003] ...1 24574.659048: tracing_mark_write: E|598
89606  HwBinder:598_3-633   (  598) [003] ...1 24574.659084: tracing_mark_write: E|598
89607  HwBinder:598_3-633   (  598) [003] .... 24574.659094: binder_transaction: transaction=1671011 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
89608  HwBinder:598_3-633   (  598) [003] d..2 24574.659109: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
89609     logd.writer-563   (  555) [000] d..2 24574.659120: 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
89610  HwBinder:598_3-633   (  598) [003] d..3 24574.659132: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
89611          <idle>-0     (-----) [000] d..2 24574.659136: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
89612  HwBinder:598_3-633   (  598) [003] .... 24574.659140: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
89613  surfaceflinger-23896 (23896) [000] .... 24574.659145: binder_transaction_received: transaction=1671011
89614  HwBinder:598_3-633   (  598) [003] d..2 24574.659187: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=27905 next_prio=116
89615 crtc_commit:111-253   (  253) [002] d..2 24574.659278: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
89616          <idle>-0     (-----) [002] d..1 24574.659286: cpu_idle: state=0 cpu_id=2
89617  surfaceflinger-23896 (23896) [000] d..2 24574.659412: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89618          <idle>-0     (-----) [000] d..1 24574.659418: cpu_idle: state=0 cpu_id=0
89619          <idle>-0     (-----) [000] .n.1 24574.660521: cpu_idle: state=4294967295 cpu_id=0
89620          <idle>-0     (-----) [000] d..2 24574.660527: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=13414 next_prio=112
89621<...>-12589 ( 23968) [001] d..3 24574.660539: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=000
89622<...>-12589 ( 23968) [001] d..4 24574.660556: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=002
89623          <idle>-0     (-----) [002] .n.1 24574.660561: cpu_idle: state=4294967295 cpu_id=2
89624          <idle>-0     (-----) [002] d..2 24574.660567: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
89625<...>-12589 ( 23968) [001] d..2 24574.660648: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
89626<...>-12589 ( 23968) [001] d..3 24574.660660: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
89627<...>-23993 ( 23968) [002] .... 24574.660683: binder_transaction: transaction=1671012 dest_node=1668762 dest_proc=13122 dest_thread=0 reply=0 flags=0x11 code=0xd
89628<...>-23993 ( 23968) [002] d..4 24574.660691: sched_waking: comm=Binder:13122_2 pid=13130 prio=120 target_cpu=002
89629<...>-27905 ( 23968) [003] d..1 24574.660696: sched_waking: comm=Instrumentation pid=13414 prio=120 target_cpu=000
89630<...>-13414 ( 23968) [000] d..2 24574.660703: sched_switch: prev_comm=Instrumentation prev_pid=13414 prev_prio=120 prev_state=D ==> next_comm=logd.writer next_pid=563 next_prio=130
89631          <idle>-0     (-----) [005] dnh2 24574.660724: sched_wakeup: comm=Binder:13122_2 pid=13130 prio=120 target_cpu=005
89632<...>-12589 ( 23968) [001] d..3 24574.660746: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=001
89633<...>-23993 ( 23968) [002] d.h5 24574.660752: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
89634          <idle>-0     (-----) [005] .n.1 24574.660754: cpu_idle: state=4294967295 cpu_id=5
89635          <idle>-0     (-----) [006] d.h2 24574.660754: sched_blocked_reason: pid=13414 iowait=0 caller=do_page_fault+0x4e0/0x594
89636          <idle>-0     (-----) [006] dnh2 24574.660758: sched_wakeup: comm=Instrumentation pid=13414 prio=120 target_cpu=006
89637          <idle>-0     (-----) [006] .n.1 24574.660784: cpu_idle: state=4294967295 cpu_id=6
89638          <idle>-0     (-----) [005] d..2 24574.660785: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13122_2 next_pid=13130 next_prio=120
89639<...>-23993 ( 23968) [002] d.h5 24574.660788: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
89640     logd.writer-563   (  555) [000] d.h2 24574.660791: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
89641          <idle>-0     (-----) [006] d..2 24574.660792: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Instrumentation next_pid=13414 next_prio=120
89642<...>-23993 ( 23968) [002] dnh6 24574.660794: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
89643          <idle>-0     (-----) [004] dnh2 24574.660794: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
89644          <idle>-0     (-----) [004] .n.1 24574.660798: cpu_idle: state=4294967295 cpu_id=4
89645           <...>-13130 (-----) [005] .... 24574.660800: binder_transaction_received: transaction=1671012
89646          <idle>-0     (-----) [004] d..2 24574.660822: 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
89647<...>-23993 ( 23968) [002] d..2 24574.660823: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
89648          <idle>-0     (-----) [007] dnh2 24574.660823: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=007
89649          <idle>-0     (-----) [007] .n.1 24574.660828: cpu_idle: state=4294967295 cpu_id=7
89650     logd.writer-563   (  555) [000] dnh3 24574.660829: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
89651         sugov:0-559   (  559) [002] d..2 24574.660831: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=ActivityManager next_pid=23993 next_prio=118
89652         sugov:4-560   (  560) [004] d..2 24574.660834: 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
89653<...>-27905 ( 23968) [003] d..1 24574.660834: sched_waking: comm=Instrumentation pid=13414 prio=120 target_cpu=006
89654          <idle>-0     (-----) [007] d..2 24574.660836: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
89655     logd.writer-563   (  555) [000] d..2 24574.660839: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
89656          <idle>-0     (-----) [004] d..1 24574.660839: cpu_idle: state=0 cpu_id=4
89657<...>-13414 ( 23968) [006] d..2 24574.660840: sched_switch: prev_comm=Instrumentation prev_pid=13414 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
89658          <idle>-0     (-----) [006] d..1 24574.660850: cpu_idle: state=0 cpu_id=6
89659          <idle>-0     (-----) [006] d.h2 24574.660858: sched_blocked_reason: pid=13414 iowait=0 caller=do_page_fault+0x4e0/0x594
89660          <idle>-0     (-----) [006] dnh2 24574.660860: sched_wakeup: comm=Instrumentation pid=13414 prio=120 target_cpu=006
89661          <idle>-0     (-----) [006] .n.1 24574.660865: cpu_idle: state=4294967295 cpu_id=6
89662          <idle>-0     (-----) [006] d..2 24574.660870: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Instrumentation next_pid=13414 next_prio=120
89663<...>-23993 ( 23968) [002] d..2 24574.660884: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
89664<...>-23994 ( 23968) [007] d..2 24574.660899: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
89665 kgsl_worker_thr-246   (  246) [000] d.s1 24574.660909: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
89666<...>-27905 ( 23968) [003] d.h2 24574.660915: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
89667<...>-27905 ( 23968) [003] dnh3 24574.660924: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
89668 kgsl_worker_thr-246   (  246) [000] d.s2 24574.660932: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
89669          <idle>-0     (-----) [007] d..1 24574.660938: cpu_idle: state=0 cpu_id=7
89670<...>-27905 ( 23968) [003] d..2 24574.660939: sched_switch: prev_comm=RenderThread prev_pid=27905 prev_prio=116 prev_state=R+ ==> next_comm=migration/3 next_pid=33 next_prio=0
89671          <idle>-0     (-----) [002] dns3 24574.660941: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
89672          <idle>-0     (-----) [002] dns4 24574.660951: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
89673 kgsl_worker_thr-246   (  246) [000] d..2 24574.660952: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
89674          <idle>-0     (-----) [002] d..2 24574.660959: 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
89675<...>-12589 ( 23968) [001] d..2 24574.660961: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=002
89676          <idle>-0     (-----) [007] .n.1 24574.660975: cpu_idle: state=4294967295 cpu_id=7
89677     rcu_preempt-7     (    7) [002] d..2 24574.660978: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
89678          <idle>-0     (-----) [007] d..2 24574.660983: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27905 next_prio=116
89679 kgsl_worker_thr-246   (  246) [000] d..3 24574.661011: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
89680<...>-12589 ( 23968) [001] dn.3 24574.661013: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=001
89681     ksoftirqd/2-26    (   26) [002] d..2 24574.661015: 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
89682<...>-12589 ( 23968) [001] d..2 24574.661019: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=112 prev_state=R+ ==> next_comm=statsd.writer next_pid=1044 next_prio=120
89683<...>-33 ( 33) [003] d..2 24574.661021: sched_switch: prev_comm=migration/3 prev_pid=33 prev_prio=0 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
89684          <idle>-0     (-----) [002] d..1 24574.661024: cpu_idle: state=0 cpu_id=2
89685 kgsl_worker_thr-246   (  246) [000] d..2 24574.661035: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
89686<...>-13414 ( 23968) [006] d..2 24574.661059: sched_switch: prev_comm=Instrumentation prev_pid=13414 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
89687<...>-27905 ( 23968) [007] d..1 24574.661070: sched_waking: comm=Instrumentation pid=13414 prio=120 target_cpu=006
89688          <idle>-0     (-----) [006] d..1 24574.661070: cpu_idle: state=0 cpu_id=6
89689  kworker/u16:10-23868 (23868) [003] d..2 24574.661076: 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
89690<...>-27905 ( 23968) [007] d..2 24574.661078: sched_blocked_reason: pid=13414 iowait=0 caller=do_page_fault+0x4e0/0x594
89691<...>-27905 ( 23968) [007] d..2 24574.661084: sched_wakeup: comm=Instrumentation pid=13414 prio=120 target_cpu=006
89692          <idle>-0     (-----) [006] .n.1 24574.661090: cpu_idle: state=4294967295 cpu_id=6
89693          <idle>-0     (-----) [003] d..1 24574.661093: cpu_idle: state=0 cpu_id=3
89694          <idle>-0     (-----) [006] d..2 24574.661098: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Instrumentation next_pid=13414 next_prio=120
89695     logd.writer-563   (  555) [000] d..2 24574.661149: 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
89696          <idle>-0     (-----) [000] d..1 24574.661159: cpu_idle: state=0 cpu_id=0
89697<...>-1044 ( 887) [001] d..2 24574.661189: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=112
89698           <...>-13130 (-----) [005] d..2 24574.661204: sched_switch: prev_comm=Binder:13122_2 prev_pid=13130 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
89699          <idle>-0     (-----) [005] d..1 24574.661217: cpu_idle: state=0 cpu_id=5
89700<...>-27905 ( 23968) [007] d..1 24574.661260: sched_waking: comm=Instrumentation pid=13414 prio=120 target_cpu=006
89701<...>-13414 ( 23968) [006] d..2 24574.661272: sched_switch: prev_comm=Instrumentation prev_pid=13414 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
89702<...>-27905 ( 23968) [007] d..2 24574.661279: sched_blocked_reason: pid=13414 iowait=0 caller=do_page_fault+0x4e0/0x594
89703<...>-12589 ( 23968) [001] d..2 24574.661282: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=001
89704<...>-27905 ( 23968) [007] d..2 24574.661284: sched_wakeup: comm=Instrumentation pid=13414 prio=120 target_cpu=006
89705          <idle>-0     (-----) [006] d..2 24574.661289: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Instrumentation next_pid=13414 next_prio=120
89706<...>-12589 ( 23968) [001] dn.3 24574.661290: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=001
89707<...>-12589 ( 23968) [001] d..2 24574.661295: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=112 prev_state=R+ ==> next_comm=statsd.writer next_pid=1044 next_prio=120
89708<...>-13414 ( 23968) [006] d..2 24574.661356: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
89709<...>-1044 ( 887) [001] d..2 24574.661369: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=112
89710          <idle>-0     (-----) [000] dnh2 24574.661376: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
89711          <idle>-0     (-----) [000] .n.1 24574.661380: cpu_idle: state=4294967295 cpu_id=0
89712          <idle>-0     (-----) [000] d..2 24574.661386: 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
89713<...>-13414 ( 23968) [006] .... 24574.661414: binder_transaction: transaction=1671013 dest_node=1668760 dest_proc=13122 dest_thread=0 reply=0 flags=0x10 code=0x2
89714<...>-13414 ( 23968) [006] d..4 24574.661420: sched_waking: comm=Binder:13122_2 pid=13130 prio=120 target_cpu=005
89715<...>-13414 ( 23968) [006] dn.5 24574.661435: sched_wakeup: comm=Binder:13122_2 pid=13130 prio=120 target_cpu=006
89716<...>-13414 ( 23968) [006] d..2 24574.661442: sched_switch: prev_comm=Instrumentation prev_pid=13414 prev_prio=120 prev_state=R+ ==> next_comm=Binder:13122_2 next_pid=13130 next_prio=120
89717           <...>-13130 (-----) [006] .... 24574.661448: binder_transaction_received: transaction=1671013
89718<...>-27905 ( 23968) [007] d..2 24574.661486: sched_switch: prev_comm=RenderThread prev_pid=27905 prev_prio=116 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
89719          <idle>-0     (-----) [007] d..1 24574.661499: cpu_idle: state=0 cpu_id=7
89720<...>-12589 ( 23968) [001] d..2 24574.661529: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=001
89721<...>-12589 ( 23968) [001] d..3 24574.661548: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=002
89722<...>-12589 ( 23968) [001] d..2 24574.661550: sched_waking: comm=Jit thread pool pid=13136 prio=129 target_cpu=004
89723          <idle>-0     (-----) [002] .n.1 24574.661553: cpu_idle: state=4294967295 cpu_id=2
89724          <idle>-0     (-----) [002] d..2 24574.661560: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
89725<...>-12589 ( 23968) [001] d..3 24574.661570: sched_wakeup: comm=Jit thread pool pid=13136 prio=129 target_cpu=003
89726<...>-12589 ( 23968) [001] d..2 24574.661572: sched_waking: comm=Signal Catcher pid=13137 prio=120 target_cpu=000
89727          <idle>-0     (-----) [003] .n.1 24574.661576: cpu_idle: state=4294967295 cpu_id=3
89728          <idle>-0     (-----) [007] d.h2 24574.661580: sched_waking: comm=RenderThread pid=27905 prio=116 target_cpu=007
89729     logd.writer-563   (  555) [000] d.h2 24574.661581: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
89730          <idle>-0     (-----) [003] d..2 24574.661583: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=13136 next_prio=129
89731<...>-12589 ( 23968) [001] d..2 24574.661588: sched_waking: comm=ADB-JDWP Connec pid=13138 prio=120 target_cpu=000
89732          <idle>-0     (-----) [007] d.h3 24574.661591: sched_blocked_reason: pid=27905 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
89733          <idle>-0     (-----) [007] dnh3 24574.661593: sched_wakeup: comm=RenderThread pid=27905 prio=116 target_cpu=007
89734     logd.writer-563   (  555) [000] d.h3 24574.661598: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
89735          <idle>-0     (-----) [007] dnh2 24574.661604: sched_wakeup: comm=Signal Catcher pid=13137 prio=120 target_cpu=007
89736          <idle>-0     (-----) [007] .n.1 24574.661608: cpu_idle: state=4294967295 cpu_id=7
89737          <idle>-0     (-----) [007] d..2 24574.661614: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Signal Catcher next_pid=13137 next_prio=120
89738<...>-12589 ( 23968) [001] d..3 24574.661614: sched_wakeup: comm=ADB-JDWP Connec pid=13138 prio=120 target_cpu=003
89739<...>-12589 ( 23968) [001] d..2 24574.661617: sched_waking: comm=ReferenceQueueD pid=13139 prio=124 target_cpu=003
89740<...>-12589 ( 23968) [001] d..3 24574.661640: sched_wakeup: comm=ReferenceQueueD pid=13139 prio=124 target_cpu=003
89741<...>-12589 ( 23968) [001] d..2 24574.661643: sched_waking: comm=FinalizerDaemon pid=13140 prio=124 target_cpu=006
89742<...>-12589 ( 23968) [001] d..2 24574.661655: sched_waking: comm=FinalizerWatchd pid=13141 prio=124 target_cpu=003
89743           <...>-13130 (-----) [006] d.h1 24574.661664: sched_wakeup: comm=FinalizerDaemon pid=13140 prio=124 target_cpu=006
89744<...>-12589 ( 23968) [001] d..3 24574.661675: sched_wakeup: comm=FinalizerWatchd pid=13141 prio=124 target_cpu=002
89745<...>-12589 ( 23968) [001] d..2 24574.661678: sched_waking: comm=HeapTaskDaemon pid=13142 prio=124 target_cpu=000
89746<...>-12589 ( 23968) [001] d..3 24574.661699: sched_wakeup: comm=HeapTaskDaemon pid=13142 prio=124 target_cpu=000
89747     logd.writer-563   (  555) [000] d..2 24574.661706: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=HeapTaskDaemon next_pid=13142 next_prio=124
89748<...>-12589 ( 23968) [001] d..2 24574.661711: sched_waking: comm=Binder:13131_1 pid=13143 prio=120 target_cpu=007
89749<...>-12589 ( 23968) [001] d..3 24574.661735: sched_wakeup: comm=Binder:13131_1 pid=13143 prio=120 target_cpu=002
89750<...>-12589 ( 23968) [001] d..2 24574.661738: sched_waking: comm=Binder:13131_2 pid=13144 prio=120 target_cpu=003
89751<...>-12589 ( 23968) [001] dn.3 24574.661752: sched_wakeup: comm=Binder:13131_2 pid=13144 prio=120 target_cpu=001
89752<...>-12589 ( 23968) [001] dn.2 24574.661754: sched_waking: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=000
89753<...>-12589 ( 23968) [001] dn.3 24574.661774: sched_wakeup: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=000
89754<...>-12589 ( 23968) [001] dn.2 24574.661777: sched_waking: comm=Profile Saver pid=13146 prio=129 target_cpu=000
89755<...>-12589 ( 23968) [001] dn.3 24574.661795: sched_wakeup: comm=Profile Saver pid=13146 prio=129 target_cpu=002
89756<...>-12589 ( 23968) [001] dn.2 24574.661797: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=000
89757<...>-12589 ( 23968) [001] dn.3 24574.661814: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=000
89758<...>-12589 ( 23968) [001] dn.2 24574.661817: sched_waking: comm=Instrumentation pid=13148 prio=120 target_cpu=006
89759<...>-12589 ( 23968) [001] dn.2 24574.661830: sched_waking: comm=RenderThread pid=13151 prio=120 target_cpu=000
89760           <...>-13130 (-----) [006] d.h1 24574.661838: sched_wakeup: comm=Instrumentation pid=13148 prio=120 target_cpu=006
89761<...>-12589 ( 23968) [001] dn.2 24574.661849: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=006
89762           <...>-13130 (-----) [006] d.h1 24574.661853: sched_wakeup: comm=RenderThread pid=13151 prio=120 target_cpu=006
89763<...>-12589 ( 23968) [001] dn.2 24574.661864: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
89764           <...>-13130 (-----) [006] dnh1 24574.661871: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=006
89765           <...>-13130 (-----) [006] d..2 24574.661879: sched_switch: prev_comm=Binder:13122_2 prev_pid=13130 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
89766<...>-12589 ( 23968) [001] dn.2 24574.661884: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=005
89767           <...>-13154 (-----) [006] d.h3 24574.661889: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
89768<...>-12589 ( 23968) [001] dn.3 24574.661905: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=000
89769<...>-12589 ( 23968) [001] dn.2 24574.661907: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=004
89770<...>-12589 ( 23968) [001] dn.3 24574.661922: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=000
89771<...>-12589 ( 23968) [001] dn.2 24574.661924: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=004
89772<...>-12589 ( 23968) [001] dn.3 24574.661936: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=000
89773<...>-12589 ( 23968) [001] dn.2 24574.661939: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=005
89774<...>-12589 ( 23968) [001] dn.3 24574.661951: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=000
89775<...>-12589 ( 23968) [001] dn.2 24574.661953: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=006
89776<...>-12589 ( 23968) [001] dn.2 24574.661969: sched_waking: comm=queued-work-loo pid=13413 prio=118 target_cpu=000
89777           <...>-13154 (-----) [006] d..3 24574.662009: sched_pi_setprio: comm=Jit thread pool pid=13136 oldprio=129 newprio=110
89778<...>-12589 ( 23968) [001] dnh3 24574.662010: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
89779           <...>-13137 (-----) [007] d.h2 24574.662011: sched_wakeup: comm=queued-work-loo pid=13413 prio=118 target_cpu=007
89780           <...>-13131 (-----) [002] d..2 24574.662012: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
89781  HeapTaskDaemon-13142 (13131) [000] d..2 24574.662013: sched_switch: prev_comm=HeapTaskDaemon prev_pid=13142 prev_prio=124 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
89782           <...>-13137 (-----) [007] dnh2 24574.662014: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=007
89783<...>-12589 ( 23968) [001] dnh3 24574.662018: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
89784           <...>-13136 (-----) [003] d..1 24574.662019: sched_waking: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=006
89785           <...>-13137 (-----) [007] d..2 24574.662020: sched_switch: prev_comm=Signal Catcher prev_pid=13137 prev_prio=120 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
89786           <...>-13154 (-----) [006] d..2 24574.662022: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=D ==> next_comm=Binder:13122_2 next_pid=13130 next_prio=120
89787 kgsl_worker_thr-246   (  246) [002] d..2 24574.662023: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=FinalizerWatchd next_pid=13141 next_prio=124
89788          <idle>-0     (-----) [004] dnh2 24574.662025: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
89789          <idle>-0     (-----) [004] .n.1 24574.662029: cpu_idle: state=4294967295 cpu_id=4
89790           <...>-13157 (-----) [000] d..2 24574.662031: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=D ==> next_comm=HeapTaskDaemon next_pid=13142 next_prio=124
89791 id.nn.benchmark-13160 (13131) [007] d..2 24574.662033: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=D ==> next_comm=Signal Catcher next_pid=13137 next_prio=120
89792          <idle>-0     (-----) [004] d..2 24574.662034: 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
89793<...>-12589 ( 23968) [001] dnh4 24574.662038: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
89794           <...>-13130 (-----) [006] d.h1 24574.662039: sched_blocked_reason: pid=13154 iowait=0 caller=process_notifier+0x240/0x254
89795  HeapTaskDaemon-13142 (13131) [000] d..2 24574.662039: sched_switch: prev_comm=HeapTaskDaemon prev_pid=13142 prev_prio=124 prev_state=D ==> next_comm=Binder:13131_3 next_pid=13145 next_prio=120
89796           <...>-13136 (-----) [003] dn.2 24574.662040: sched_pi_setprio: comm=Jit thread pool pid=13136 oldprio=110 newprio=129
89797 FinalizerWatchd-13141 (13131) [002] d..2 24574.662040: sched_switch: prev_comm=FinalizerWatchd prev_pid=13141 prev_prio=124 prev_state=D ==> next_comm=Binder:13131_1 next_pid=13143 next_prio=120
89798           <...>-13137 (-----) [007] d..2 24574.662041: sched_switch: prev_comm=Signal Catcher prev_pid=13137 prev_prio=120 prev_state=D ==> next_comm=queued-work-loo next_pid=13413 next_prio=118
89799           <...>-13130 (-----) [006] dnh1 24574.662042: sched_wakeup: comm=id.nn.benchmark pid=13154 prio=110 target_cpu=006
89800           <...>-13130 (-----) [006] d..2 24574.662047: sched_switch: prev_comm=Binder:13122_2 prev_pid=13130 prev_prio=120 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13154 next_prio=110
89801           <...>-13413 (-----) [007] d..2 24574.662052: sched_switch: prev_comm=queued-work-loo prev_pid=13413 prev_prio=118 prev_state=D ==> next_comm=RenderThread next_pid=27905 next_prio=116
89802<...>-12589 ( 23968) [001] d..2 24574.662053: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=112 prev_state=R+ ==> next_comm=Binder:13131_2 next_pid=13144 next_prio=120
89803           <...>-13136 (-----) [003] d..2 24574.662054: sched_switch: prev_comm=Jit thread pool prev_pid=13136 prev_prio=129 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
89804           <...>-13154 (-----) [006] d..1 24574.662055: sched_waking: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=000
89805           <...>-13145 (-----) [000] d..2 24574.662055: sched_switch: prev_comm=Binder:13131_3 prev_pid=13145 prev_prio=120 prev_state=D ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
89806           <...>-13143 (-----) [002] d..2 24574.662058: sched_switch: prev_comm=Binder:13131_1 prev_pid=13143 prev_prio=120 prev_state=D ==> next_comm=Profile Saver next_pid=13146 next_prio=129
89807<...>-27905 ( 23968) [007] d..1 24574.662064: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
89808         sugov:0-559   (  559) [003] d..2 24574.662064: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=ADB-JDWP Connec next_pid=13138 next_prio=120
89809         sugov:4-560   (  560) [004] .... 24574.662065: clk_set_rate: perfcl_clk 1363200000
89810           <...>-13147 (-----) [000] d..2 24574.662069: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
89811         sugov:4-560   (  560) [004] .... 24574.662069: clk_set_rate: cpu7_perfcl_clk 825600000
89812  Binder:13131_2-13144 (13131) [001] d..2 24574.662071: sched_switch: prev_comm=Binder:13131_2 prev_pid=13144 prev_prio=120 prev_state=D ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=112
89813   Profile Saver-13146 (13131) [002] d..2 24574.662073: sched_switch: prev_comm=Profile Saver prev_pid=13146 prev_prio=129 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
89814         sugov:4-560   (  560) [004] .... 24574.662076: clk_set_rate: cpu6_perfcl_clk 825600000
89815           <...>-13131 (-----) [002] dnh3 24574.662079: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
89816         sugov:4-560   (  560) [004] .... 24574.662081: clk_set_rate: cpu5_perfcl_clk 825600000
89817           <...>-13154 (-----) [006] d..2 24574.662081: sched_blocked_reason: pid=13157 iowait=0 caller=process_notifier+0x240/0x254
89818 id.nn.benchmark-13158 (13131) [000] d..2 24574.662084: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
89819           <...>-13131 (-----) [002] d..2 24574.662084: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
89820 ADB-JDWP Connec-13138 (13131) [003] d..2 24574.662086: sched_switch: prev_comm=ADB-JDWP Connec prev_pid=13138 prev_prio=120 prev_state=D ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
89821           <...>-13154 (-----) [006] d..2 24574.662087: sched_wakeup: comm=id.nn.benchmark pid=13157 prio=110 target_cpu=007
89822         sugov:4-560   (  560) [004] .... 24574.662087: clk_set_rate: cpu4_perfcl_clk 1363200000
89823<...>-12589 ( 23968) [001] d..3 24574.662087: sched_waking: comm=ActivityManager pid=23996 prio=130 target_cpu=000
89824         sugov:4-560   (  560) [004] .... 24574.662095: cpu_frequency: state=1363200 cpu_id=4
89825<...>-27905 ( 23968) [007] d..2 24574.662096: sched_switch: prev_comm=RenderThread prev_pid=27905 prev_prio=116 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13157 next_prio=110
89826           <...>-13157 (-----) [007] d..1 24574.662101: sched_waking: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=007
89827         sugov:4-560   (  560) [004] .... 24574.662113: cpu_frequency: state=1363200 cpu_id=5
89828         sugov:4-560   (  560) [004] .... 24574.662116: cpu_frequency: state=1363200 cpu_id=6
89829         sugov:4-560   (  560) [004] .... 24574.662119: cpu_frequency: state=1363200 cpu_id=7
89830 ReferenceQueueD-13139 (13131) [003] d..2 24574.662122: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=D ==> next_comm=Jit thread pool next_pid=13136 next_prio=129
89831 id.nn.benchmark-13156 (13131) [000] d..2 24574.662124: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
89832 kgsl_worker_thr-246   (  246) [002] d..2 24574.662124: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
89833           <...>-13157 (-----) [007] d..2 24574.662124: sched_blocked_reason: pid=13160 iowait=0 caller=process_notifier+0x240/0x254
89834           <...>-13157 (-----) [007] d..2 24574.662127: sched_wakeup: comm=id.nn.benchmark pid=13160 prio=110 target_cpu=007
89835 id.nn.benchmark-13159 (13131) [000] d..2 24574.662136: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=D ==> next_comm=logd.writer next_pid=563 next_prio=130
89836<...>-12589 ( 23968) [001] d..4 24574.662137: sched_wakeup: comm=ActivityManager pid=23996 prio=130 target_cpu=002
89837           <...>-13131 (-----) [002] d..2 24574.662146: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=D ==> next_comm=ActivityManager next_pid=23996 next_prio=130
89838         sugov:4-560   (  560) [004] d..2 24574.662149: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=Binder:13122_2 next_pid=13130 next_prio=120
89839           <...>-13130 (-----) [004] d..2 24574.662169: sched_waking: comm=shell svc 13120 pid=13121 prio=120 target_cpu=002
89840           <...>-13130 (-----) [004] d..3 24574.662185: sched_wakeup: comm=shell svc 13120 pid=13121 prio=120 target_cpu=004
89841           <...>-13157 (-----) [007] d..2 24574.662190: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
89842     logd.writer-563   (  555) [000] d..2 24574.662212: 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
89843 ActivityManager-23996 (23968) [002] d.h2 24574.662216: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
89844           <...>-13154 (-----) [006] d..2 24574.662216: sched_switch: prev_comm=id.nn.benchmark prev_pid=13154 prev_prio=110 prev_state=x ==> next_comm=FinalizerDaemon next_pid=13140 next_prio=124
89845          <idle>-0     (-----) [000] d..1 24574.662221: cpu_idle: state=0 cpu_id=0
89846 ActivityManager-23996 (23968) [002] d.h3 24574.662233: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
89847 FinalizerDaemon-13140 (13131) [006] d..2 24574.662234: sched_switch: prev_comm=FinalizerDaemon prev_pid=13140 prev_prio=124 prev_state=D ==> next_comm=Instrumentation next_pid=13148 next_prio=120
89848           <...>-13136 (-----) [003] d..2 24574.662238: sched_switch: prev_comm=Jit thread pool prev_pid=13136 prev_prio=129 prev_state=x ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
89849           <...>-13157 (-----) [007] d..2 24574.662240: sched_switch: prev_comm=id.nn.benchmark prev_pid=13157 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13160 next_prio=110
89850           <...>-13148 (-----) [006] d..2 24574.662242: sched_switch: prev_comm=Instrumentation prev_pid=13148 prev_prio=120 prev_state=D ==> next_comm=RenderThread next_pid=13151 next_prio=120
89851 kgsl_worker_thr-246   (  246) [003] d.h3 24574.662244: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=003
89852 id.nn.benchmark-13160 (13131) [007] d..1 24574.662245: sched_waking: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=000
89853           <...>-13151 (-----) [006] d..2 24574.662248: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
89854 id.nn.benchmark-13155 (13131) [006] d..2 24574.662255: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=D ==> next_comm=Instrumentation next_pid=13414 next_prio=120
89855          <idle>-0     (-----) [000] d.h3 24574.662261: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
89856 kgsl_worker_thr-246   (  246) [003] d..2 24574.662263: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
89857<...>-13414 ( 23968) [006] d..2 24574.662275: sched_switch: prev_comm=Instrumentation prev_pid=13414 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
89858          <idle>-0     (-----) [000] dnh4 24574.662276: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
89859 id.nn.benchmark-13160 (13131) [007] d..2 24574.662276: sched_switch: prev_comm=id.nn.benchmark prev_pid=13160 prev_prio=110 prev_state=x ==> next_comm=RenderThread next_pid=27905 next_prio=116
89860         rcuop/6-61    (   61) [003] d..2 24574.662281: 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
89861           <...>-13130 (-----) [004] d..1 24574.662282: sched_waking: comm=main pid=13122 prio=120 target_cpu=001
89862          <idle>-0     (-----) [006] d..1 24574.662285: cpu_idle: state=0 cpu_id=6
89863          <idle>-0     (-----) [000] dnh2 24574.662288: sched_blocked_reason: pid=13158 iowait=0 caller=process_notifier+0x240/0x254
89864          <idle>-0     (-----) [003] d..1 24574.662290: cpu_idle: state=0 cpu_id=3
89865          <idle>-0     (-----) [000] dnh2 24574.662291: sched_wakeup: comm=id.nn.benchmark pid=13158 prio=110 target_cpu=000
89866          <idle>-0     (-----) [000] .n.1 24574.662295: cpu_idle: state=4294967295 cpu_id=0
89867          <idle>-0     (-----) [000] d..2 24574.662300: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
89868<...>-12589 ( 23968) [001] dnh1 24574.662307: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=001
89869<...>-12589 ( 23968) [001] d..2 24574.662314: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=112 prev_state=R ==> next_comm=main next_pid=13122 next_prio=120
89870 kgsl_worker_thr-246   (  246) [000] d..2 24574.662325: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=id.nn.benchmark next_pid=13158 next_prio=110
89871 id.nn.benchmark-13158 (13131) [000] d..1 24574.662330: sched_waking: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=000
89872           <...>-13130 (-----) [004] .... 24574.662353: binder_transaction: transaction=1671014 dest_node=0 dest_proc=23968 dest_thread=13414 reply=1 flags=0x0 code=0x0
89873           <...>-13130 (-----) [004] d..2 24574.662358: sched_waking: comm=Instrumentation pid=13414 prio=120 target_cpu=006
89874 Shutdown thread-13122 (13122) [001] d..2 24574.662369: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
89875          <idle>-0     (-----) [006] d.h2 24574.662371: sched_blocked_reason: pid=13156 iowait=0 caller=process_notifier+0x240/0x254
89876          <idle>-0     (-----) [006] dnh2 24574.662373: sched_wakeup: comm=id.nn.benchmark pid=13156 prio=110 target_cpu=006
89877 ActivityManager-23996 (23968) [002] d..2 24574.662374: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
89878           <...>-13130 (-----) [004] d..3 24574.662377: sched_wakeup: comm=Instrumentation pid=13414 prio=120 target_cpu=006
89879          <idle>-0     (-----) [006] .n.1 24574.662380: cpu_idle: state=4294967295 cpu_id=6
89880 Shutdown thread-13122 (13122) [001] d..3 24574.662381: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
89881          <idle>-0     (-----) [006] d..2 24574.662385: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
89882 id.nn.benchmark-13156 (13131) [006] d..1 24574.662388: sched_waking: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=000
89883 ActivityManager-23996 (23968) [002] d..3 24574.662389: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
89884 id.nn.benchmark-13156 (13131) [006] d..2 24574.662400: sched_blocked_reason: pid=13159 iowait=0 caller=process_notifier+0x240/0x254
89885 id.nn.benchmark-13156 (13131) [006] d..2 24574.662404: sched_wakeup: comm=id.nn.benchmark pid=13159 prio=110 target_cpu=007
89886<...>-27905 ( 23968) [007] d..2 24574.662425: sched_switch: prev_comm=RenderThread prev_pid=27905 prev_prio=116 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13159 next_prio=110
89887 ActivityManager-23996 (23968) [002] d..2 24574.662428: sched_switch: prev_comm=ActivityManager prev_pid=23996 prev_prio=130 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
89888 id.nn.benchmark-13159 (13131) [007] d..1 24574.662428: sched_waking: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
89889 id.nn.benchmark-13158 (13131) [000] d..2 24574.662434: sched_switch: prev_comm=id.nn.benchmark prev_pid=13158 prev_prio=110 prev_state=x ==> next_comm=swapper/0 next_pid=0 next_prio=120
89890 id.nn.benchmark-13159 (13131) [007] d..2 24574.662436: sched_blocked_reason: pid=13155 iowait=0 caller=process_notifier+0x240/0x254
89891 id.nn.benchmark-13159 (13131) [007] d..2 24574.662441: sched_wakeup: comm=id.nn.benchmark pid=13155 prio=110 target_cpu=006
89892          <idle>-0     (-----) [000] d..1 24574.662445: cpu_idle: state=0 cpu_id=0
89893 id.nn.benchmark-13156 (13131) [006] d..2 24574.662450: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=13155 next_prio=110
89894 id.nn.benchmark-13155 (13131) [006] d..1 24574.662453: sched_waking: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=000
89895           <...>-13130 (-----) [004] d..2 24574.662464: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
89896          <idle>-0     (-----) [000] d.h2 24574.662467: sched_blocked_reason: pid=13147 iowait=0 caller=process_notifier+0x240/0x254
89897          <idle>-0     (-----) [000] dnh2 24574.662469: sched_wakeup: comm=roidJUnitRunner pid=13147 prio=112 target_cpu=000
89898 id.nn.benchmark-13159 (13131) [007] d..2 24574.662471: sched_switch: prev_comm=id.nn.benchmark prev_pid=13159 prev_prio=110 prev_state=x ==> next_comm=RenderThread next_pid=27905 next_prio=116
89899          <idle>-0     (-----) [000] .n.1 24574.662473: cpu_idle: state=4294967295 cpu_id=0
89900     logd.writer-563   (  555) [002] d..2 24574.662477: 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
89901          <idle>-0     (-----) [000] d..2 24574.662480: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
89902           <...>-13147 (-----) [000] d..1 24574.662483: sched_waking: comm=queued-work-loo pid=13413 prio=118 target_cpu=007
89903          <idle>-0     (-----) [002] d..1 24574.662485: cpu_idle: state=0 cpu_id=2
89904 id.nn.benchmark-13155 (13131) [006] d..2 24574.662487: sched_switch: prev_comm=id.nn.benchmark prev_pid=13155 prev_prio=110 prev_state=x ==> next_comm=id.nn.benchmark next_pid=13156 next_prio=110
89905          <idle>-0     (-----) [002] dnh2 24574.662495: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=002
89906           <...>-13147 (-----) [000] d..2 24574.662498: sched_blocked_reason: pid=13413 iowait=0 caller=process_notifier+0x240/0x254
89907          <idle>-0     (-----) [002] .n.1 24574.662499: cpu_idle: state=4294967295 cpu_id=2
89908 id.nn.benchmark-13156 (13131) [006] d..2 24574.662502: sched_switch: prev_comm=id.nn.benchmark prev_pid=13156 prev_prio=110 prev_state=x ==> next_comm=Instrumentation next_pid=13414 next_prio=120
89909           <...>-13147 (-----) [000] d..2 24574.662503: sched_wakeup: comm=queued-work-loo pid=13413 prio=118 target_cpu=003
89910           <...>-13130 (-----) [004] d..2 24574.662504: sched_switch: prev_comm=Binder:13122_2 prev_pid=13130 prev_prio=120 prev_state=D ==> next_comm=shell svc 13120 next_pid=13121 next_prio=120
89911          <idle>-0     (-----) [002] d..2 24574.662505: 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
89912<...>-13414 ( 23968) [006] .... 24574.662506: binder_transaction_received: transaction=1671014
89913          <idle>-0     (-----) [003] .n.1 24574.662508: cpu_idle: state=4294967295 cpu_id=3
89914           <...>-13147 (-----) [000] d.h3 24574.662532: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
89915          <idle>-0     (-----) [003] d..2 24574.662533: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=queued-work-loo next_pid=13413 next_prio=118
89916           <...>-13413 (-----) [003] d..1 24574.662537: sched_waking: comm=Signal Catcher pid=13137 prio=120 target_cpu=007
89917 shell svc 13120-13121 ( 1007) [004] d..2 24574.662538: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
89918         rcuop/4-45    (   45) [002] d..2 24574.662541: 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
89919          <idle>-0     (-----) [002] d..1 24574.662546: cpu_idle: state=0 cpu_id=2
89920           <...>-13147 (-----) [000] d.h3 24574.662546: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
89921<...>-13414 ( 23968) [006] d..2 24574.662547: sched_switch: prev_comm=Instrumentation prev_pid=13414 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
89922           <...>-13413 (-----) [003] d..2 24574.662552: sched_blocked_reason: pid=13137 iowait=0 caller=process_notifier+0x240/0x254
89923          <idle>-0     (-----) [005] dnh2 24574.662554: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
89924 shell svc 13120-13121 ( 1007) [004] d..3 24574.662555: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=004
89925          <idle>-0     (-----) [006] d..1 24574.662556: cpu_idle: state=0 cpu_id=6
89926           <...>-13413 (-----) [003] d..2 24574.662557: sched_wakeup: comm=Signal Catcher pid=13137 prio=120 target_cpu=002
89927          <idle>-0     (-----) [005] .n.1 24574.662558: cpu_idle: state=4294967295 cpu_id=5
89928           <...>-13147 (-----) [000] dnh4 24574.662561: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
89929          <idle>-0     (-----) [002] .n.1 24574.662561: cpu_idle: state=4294967295 cpu_id=2
89930          <idle>-0     (-----) [005] d..2 24574.662562: 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
89931 Shutdown thread-13122 (13122) [001] d..1 24574.662568: sched_waking: comm=Binder:13122_2 pid=13130 prio=120 target_cpu=004
89932          <idle>-0     (-----) [002] d..2 24574.662584: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Signal Catcher next_pid=13137 next_prio=120
89933           <...>-13147 (-----) [000] d..2 24574.662585: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
89934         sugov:4-560   (  560) [005] d..2 24574.662589: 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
89935           <...>-13137 (-----) [002] d..1 24574.662589: sched_waking: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=000
89936          <idle>-0     (-----) [005] d..1 24574.662592: cpu_idle: state=0 cpu_id=5
89937         sugov:0-559   (  559) [000] d..2 24574.662593: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=roidJUnitRunner next_pid=13147 next_prio=112
89938 shell svc 13120-13121 ( 1007) [004] d..2 24574.662597: sched_switch: prev_comm=shell svc 13120 prev_pid=13121 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
89939          <idle>-0     (-----) [006] d.h2 24574.662603: sched_blocked_reason: pid=13130 iowait=0 caller=do_page_fault+0x4e0/0x594
89940          <idle>-0     (-----) [006] dnh2 24574.662604: sched_wakeup: comm=Binder:13122_2 pid=13130 prio=120 target_cpu=006
89941          <idle>-0     (-----) [006] .n.1 24574.662608: cpu_idle: state=4294967295 cpu_id=6
89942           <...>-13413 (-----) [003] d..2 24574.662608: sched_switch: prev_comm=queued-work-loo prev_pid=13413 prev_prio=118 prev_state=x ==> next_comm=swapper/3 next_pid=0 next_prio=120
89943          <idle>-0     (-----) [006] d..2 24574.662613: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13122_2 next_pid=13130 next_prio=120
89944           <...>-13137 (-----) [002] d..2 24574.662614: sched_blocked_reason: pid=13145 iowait=0 caller=process_notifier+0x240/0x254
89945           <...>-13137 (-----) [002] d..2 24574.662618: sched_wakeup: comm=Binder:13131_3 pid=13145 prio=120 target_cpu=000
89946          <idle>-0     (-----) [003] d..1 24574.662618: cpu_idle: state=0 cpu_id=3
89947           <...>-13147 (-----) [000] d..2 24574.662645: sched_switch: prev_comm=roidJUnitRunner prev_pid=13147 prev_prio=112 prev_state=x ==> next_comm=Binder:13131_3 next_pid=13145 next_prio=120
89948           <...>-13145 (-----) [000] d..1 24574.662651: sched_waking: comm=Binder:13131_1 pid=13143 prio=120 target_cpu=002
89949           <...>-13145 (-----) [000] d..2 24574.662662: sched_blocked_reason: pid=13143 iowait=0 caller=process_notifier+0x240/0x254
89950 Shutdown thread-13122 (13122) [001] d..2 24574.662666: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
89951           <...>-13145 (-----) [000] d..2 24574.662668: sched_wakeup: comm=Binder:13131_1 pid=13143 prio=120 target_cpu=003
89952          <idle>-0     (-----) [003] .n.1 24574.662673: cpu_idle: state=4294967295 cpu_id=3
89953           <...>-13137 (-----) [002] d..2 24574.662674: sched_switch: prev_comm=Signal Catcher prev_pid=13137 prev_prio=120 prev_state=x ==> next_comm=swapper/2 next_pid=0 next_prio=120
89954          <idle>-0     (-----) [003] d..2 24574.662679: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13131_1 next_pid=13143 next_prio=120
89955 Shutdown thread-13122 (13122) [001] d..3 24574.662681: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
89956            adbd-1007  ( 1007) [004] d..1 24574.662682: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
89957           <...>-13143 (-----) [003] d..1 24574.662683: sched_waking: comm=Binder:13131_2 pid=13144 prio=120 target_cpu=001
89958          <idle>-0     (-----) [002] d..2 24574.662686: 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
89959           <...>-13145 (-----) [000] d.h2 24574.662699: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
89960           <...>-13130 (-----) [006] d.h2 24574.662724: sched_blocked_reason: pid=13144 iowait=0 caller=process_notifier+0x240/0x254
89961           <...>-13145 (-----) [000] d..2 24574.662726: sched_switch: prev_comm=Binder:13131_3 prev_pid=13145 prev_prio=120 prev_state=x ==> next_comm=adbd next_pid=23485 next_prio=120
89962           <...>-13130 (-----) [006] d.h2 24574.662726: sched_wakeup: comm=Binder:13131_2 pid=13144 prio=120 target_cpu=006
89963            adbd-1007  ( 1007) [004] d..2 24574.662730: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
89964     logd.writer-563   (  555) [002] d..2 24574.662734: 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
89965          <idle>-0     (-----) [004] d..1 24574.662739: cpu_idle: state=0 cpu_id=4
89966          <idle>-0     (-----) [002] d..1 24574.662744: cpu_idle: state=0 cpu_id=2
89967           <...>-13130 (-----) [006] d..2 24574.662773: sched_switch: prev_comm=Binder:13122_2 prev_pid=13130 prev_prio=120 prev_state=D ==> next_comm=Binder:13131_2 next_pid=13144 next_prio=120
89968  Binder:13131_2-13144 (13131) [006] d..1 24574.662777: sched_waking: comm=ADB-JDWP Connec pid=13138 prio=120 target_cpu=003
89969           <...>-13143 (-----) [003] d..2 24574.662780: sched_switch: prev_comm=Binder:13131_1 prev_pid=13143 prev_prio=120 prev_state=x ==> next_comm=swapper/3 next_pid=0 next_prio=120
89970          <idle>-0     (-----) [003] d..1 24574.662790: cpu_idle: state=0 cpu_id=3
89971          <idle>-0     (-----) [002] d.h2 24574.662799: sched_blocked_reason: pid=13138 iowait=0 caller=process_notifier+0x240/0x254
89972          <idle>-0     (-----) [002] dnh2 24574.662802: sched_wakeup: comm=ADB-JDWP Connec pid=13138 prio=120 target_cpu=002
89973          <idle>-0     (-----) [002] .n.1 24574.662805: cpu_idle: state=4294967295 cpu_id=2
89974            adbd-23485 ( 1007) [000] d..2 24574.662819: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89975          <idle>-0     (-----) [002] dnh3 24574.662823: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
89976          <idle>-0     (-----) [000] d..1 24574.662829: cpu_idle: state=0 cpu_id=0
89977  Binder:13131_2-13144 (13131) [006] d..2 24574.662829: sched_switch: prev_comm=Binder:13131_2 prev_pid=13144 prev_prio=120 prev_state=x ==> next_comm=swapper/6 next_pid=0 next_prio=120
89978          <idle>-0     (-----) [006] d..1 24574.662841: cpu_idle: state=0 cpu_id=6
89979          <idle>-0     (-----) [002] dnh4 24574.662848: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
89980          <idle>-0     (-----) [002] d..2 24574.662857: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
89981   kworker/u17:2-23076 (23076) [002] d..2 24574.662877: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
89982   kworker/u17:2-23076 (23076) [002] d..3 24574.662885: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
89983   kworker/u17:2-23076 (23076) [002] d..2 24574.662901: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
89984     kworker/2:0-12895 (12895) [002] d..2 24574.662912: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
89985     kworker/2:0-12895 (12895) [002] d..3 24574.662931: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
89986     kworker/2:0-12895 (12895) [002] d..2 24574.662942: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=ADB-JDWP Connec next_pid=13138 next_prio=120
89987 ADB-JDWP Connec-13138 (13131) [002] d..1 24574.662947: sched_waking: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=002
89988 ADB-JDWP Connec-13138 (13131) [002] d..2 24574.662955: sched_blocked_reason: pid=13131 iowait=0 caller=process_notifier+0x240/0x254
89989 ADB-JDWP Connec-13138 (13131) [002] d..2 24574.662961: sched_wakeup: comm=id.nn.benchmark pid=13131 prio=120 target_cpu=000
89990          <idle>-0     (-----) [000] .n.1 24574.662966: cpu_idle: state=4294967295 cpu_id=0
89991          <idle>-0     (-----) [000] d..2 24574.662973: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=13131 next_prio=120
89992           <...>-13131 (-----) [000] d..1 24574.662977: sched_waking: comm=Instrumentation pid=13148 prio=120 target_cpu=006
89993           <...>-13131 (-----) [000] d..2 24574.662992: sched_blocked_reason: pid=13148 iowait=0 caller=process_notifier+0x240/0x254
89994           <...>-13131 (-----) [000] d..2 24574.662997: sched_wakeup: comm=Instrumentation pid=13148 prio=120 target_cpu=003
89995          <idle>-0     (-----) [003] .n.1 24574.663002: cpu_idle: state=4294967295 cpu_id=3
89996          <idle>-0     (-----) [003] d..2 24574.663022: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Instrumentation next_pid=13148 next_prio=120
89997 ADB-JDWP Connec-13138 (13131) [002] d..2 24574.663023: sched_switch: prev_comm=ADB-JDWP Connec prev_pid=13138 prev_prio=120 prev_state=x ==> next_comm=adbd next_pid=23485 next_prio=120
89998           <...>-13148 (-----) [003] d..1 24574.663026: sched_waking: comm=RenderThread pid=13151 prio=120 target_cpu=006
89999          <idle>-0     (-----) [006] ...1 24574.663035: cpu_idle: state=4294967295 cpu_id=6
90000          <idle>-0     (-----) [006] d..1 24574.663036: cpu_idle: state=0 cpu_id=6
90001          <idle>-0     (-----) [006] d.h2 24574.663042: sched_blocked_reason: pid=13151 iowait=0 caller=process_notifier+0x240/0x254
90002          <idle>-0     (-----) [006] dnh2 24574.663045: sched_wakeup: comm=RenderThread pid=13151 prio=120 target_cpu=006
90003          <idle>-0     (-----) [006] .n.1 24574.663048: cpu_idle: state=4294967295 cpu_id=6
90004          <idle>-0     (-----) [006] d..2 24574.663052: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=13151 next_prio=120
90005           <...>-13151 (-----) [006] d..1 24574.663054: sched_waking: comm=Binder:13122_2 pid=13130 prio=120 target_cpu=006
90006           <...>-13151 (-----) [006] d..2 24574.663063: sched_blocked_reason: pid=13130 iowait=0 caller=process_notifier+0x240/0x254
90007           <...>-13151 (-----) [006] d..2 24574.663067: sched_wakeup: comm=Binder:13122_2 pid=13130 prio=120 target_cpu=005
90008          <idle>-0     (-----) [005] .n.1 24574.663072: cpu_idle: state=4294967295 cpu_id=5
90009            adbd-23485 ( 1007) [002] d..2 24574.663072: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
90010          <idle>-0     (-----) [005] d..2 24574.663076: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13122_2 next_pid=13130 next_prio=120
90011           <...>-13130 (-----) [005] d..1 24574.663079: sched_waking: comm=FinalizerWatchd pid=13141 prio=124 target_cpu=002
90012          <idle>-0     (-----) [002] d.h3 24574.663086: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
90013          <idle>-0     (-----) [002] d.h4 24574.663108: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
90014          <idle>-0     (-----) [002] d.h2 24574.663117: sched_blocked_reason: pid=13141 iowait=0 caller=process_notifier+0x240/0x254
90015          <idle>-0     (-----) [002] dnh2 24574.663119: sched_wakeup: comm=FinalizerWatchd pid=13141 prio=124 target_cpu=002
90016          <idle>-0     (-----) [002] d..2 24574.663127: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerWatchd next_pid=13141 next_prio=124
90017 FinalizerWatchd-13141 (13131) [002] d..1 24574.663132: sched_waking: comm=HeapTaskDaemon pid=13142 prio=124 target_cpu=000
90018 FinalizerWatchd-13141 (13131) [002] d..2 24574.663149: sched_blocked_reason: pid=13142 iowait=0 caller=process_notifier+0x240/0x254
90019 FinalizerWatchd-13141 (13131) [002] d..2 24574.663151: sched_wakeup: comm=HeapTaskDaemon pid=13142 prio=124 target_cpu=000
90020           <...>-13148 (-----) [003] d..2 24574.663249: sched_switch: prev_comm=Instrumentation prev_pid=13148 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
90021           <...>-13131 (-----) [000] d..2 24574.663254: sched_switch: prev_comm=id.nn.benchmark prev_pid=13131 prev_prio=120 prev_state=x ==> next_comm=HeapTaskDaemon next_pid=13142 next_prio=124
90022   kworker/u17:2-23076 (23076) [003] d..2 24574.663259: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
90023  HeapTaskDaemon-13142 (13131) [000] d..1 24574.663261: sched_waking: comm=ReferenceQueueD pid=13139 prio=124 target_cpu=003
90024           <...>-13130 (-----) [005] d..2 24574.663265: sched_switch: prev_comm=Binder:13122_2 prev_pid=13130 prev_prio=120 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
90025           <...>-13151 (-----) [006] d..2 24574.663269: sched_switch: prev_comm=RenderThread prev_pid=13151 prev_prio=120 prev_state=x ==> next_comm=swapper/6 next_pid=0 next_prio=120
90026   kworker/u17:2-23076 (23076) [003] d..3 24574.663270: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
90027          <idle>-0     (-----) [005] d..1 24574.663274: cpu_idle: state=0 cpu_id=5
90028 FinalizerWatchd-13141 (13131) [002] d..2 24574.663276: sched_switch: prev_comm=FinalizerWatchd prev_pid=13141 prev_prio=124 prev_state=x ==> next_comm=swapper/2 next_pid=0 next_prio=120
90029          <idle>-0     (-----) [006] d..1 24574.663278: cpu_idle: state=0 cpu_id=6
90030   kworker/u17:2-23076 (23076) [003] d..2 24574.663283: 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
90031  HeapTaskDaemon-13142 (13131) [000] d..2 24574.663287: sched_blocked_reason: pid=13139 iowait=0 caller=process_notifier+0x240/0x254
90032          <idle>-0     (-----) [002] d..1 24574.663289: cpu_idle: state=0 cpu_id=2
90033  HeapTaskDaemon-13142 (13131) [000] d..2 24574.663290: sched_wakeup: comm=ReferenceQueueD pid=13139 prio=124 target_cpu=003
90034     kworker/3:1-12662 (12662) [003] d..2 24574.663291: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
90035     kworker/3:1-12662 (12662) [003] d..3 24574.663299: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
90036          <idle>-0     (-----) [002] .n.1 24574.663304: cpu_idle: state=4294967295 cpu_id=2
90037     kworker/3:1-12662 (12662) [003] d..2 24574.663309: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90038          <idle>-0     (-----) [002] d..2 24574.663311: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
90039 ReferenceQueueD-13139 (13131) [003] d..1 24574.663313: sched_waking: comm=FinalizerDaemon pid=13140 prio=124 target_cpu=006
90040            adbd-23485 ( 1007) [002] d.h2 24574.663323: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
90041          <idle>-0     (-----) [006] d.h2 24574.663328: sched_blocked_reason: pid=13140 iowait=0 caller=process_notifier+0x240/0x254
90042          <idle>-0     (-----) [006] dnh2 24574.663329: sched_wakeup: comm=FinalizerDaemon pid=13140 prio=124 target_cpu=006
90043          <idle>-0     (-----) [006] .n.1 24574.663332: cpu_idle: state=4294967295 cpu_id=6
90044          <idle>-0     (-----) [006] d..2 24574.663336: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerDaemon next_pid=13140 next_prio=124
90045            adbd-23485 ( 1007) [002] d.h3 24574.663338: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
90046 FinalizerDaemon-13140 (13131) [006] d..1 24574.663339: sched_waking: comm=Profile Saver pid=13146 prio=129 target_cpu=002
90047  HeapTaskDaemon-13142 (13131) [000] d..2 24574.663340: sched_switch: prev_comm=HeapTaskDaemon prev_pid=13142 prev_prio=124 prev_state=x ==> next_comm=swapper/0 next_pid=0 next_prio=120
90048          <idle>-0     (-----) [000] d..1 24574.663350: cpu_idle: state=0 cpu_id=0
90049          <idle>-0     (-----) [000] d.h2 24574.663358: sched_blocked_reason: pid=13146 iowait=0 caller=process_notifier+0x240/0x254
90050          <idle>-0     (-----) [000] dnh2 24574.663361: sched_wakeup: comm=Profile Saver pid=13146 prio=129 target_cpu=000
90051          <idle>-0     (-----) [000] .n.1 24574.663365: cpu_idle: state=4294967295 cpu_id=0
90052            adbd-23485 ( 1007) [002] d..2 24574.663368: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
90053          <idle>-0     (-----) [000] d..2 24574.663371: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Profile Saver next_pid=13146 next_prio=129
90054          <idle>-0     (-----) [002] d..1 24574.663374: cpu_idle: state=0 cpu_id=2
90055 ReferenceQueueD-13139 (13131) [003] d..2 24574.663426: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
90056   kworker/u17:2-23076 (23076) [003] d..2 24574.663434: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
90057   kworker/u17:2-23076 (23076) [003] d..3 24574.663440: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
90058 FinalizerDaemon-13140 (13131) [006] d..2 24574.663441: sched_switch: prev_comm=FinalizerDaemon prev_pid=13140 prev_prio=124 prev_state=x ==> next_comm=swapper/6 next_pid=0 next_prio=120
90059          <idle>-0     (-----) [006] d..1 24574.663448: cpu_idle: state=0 cpu_id=6
90060   kworker/u17:2-23076 (23076) [003] d..2 24574.663451: 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
90061   Profile Saver-13146 (13131) [000] d..2 24574.663454: sched_switch: prev_comm=Profile Saver prev_pid=13146 prev_prio=129 prev_state=x ==> next_comm=swapper/0 next_pid=0 next_prio=120
90062     kworker/3:1-12662 (12662) [003] d..2 24574.663463: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
90063          <idle>-0     (-----) [000] d..1 24574.663464: cpu_idle: state=0 cpu_id=0
90064     kworker/3:1-12662 (12662) [003] d..3 24574.663476: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
90065     kworker/3:1-12662 (12662) [003] d..2 24574.663485: 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
90066            adbd-23484 ( 1007) [003] d..2 24574.663510: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=004
90067            adbd-23484 ( 1007) [003] d..3 24574.663541: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
90068            adbd-23484 ( 1007) [003] d.h3 24574.663570: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
90069            adbd-23484 ( 1007) [003] d.h3 24574.663578: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
90070          <idle>-0     (-----) [005] dnh2 24574.663584: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
90071            adbd-23484 ( 1007) [003] d.h4 24574.663586: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
90072          <idle>-0     (-----) [005] .n.1 24574.663587: cpu_idle: state=4294967295 cpu_id=5
90073          <idle>-0     (-----) [005] d..2 24574.663590: 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
90074          <idle>-0     (-----) [000] .n.1 24574.663591: cpu_idle: state=4294967295 cpu_id=0
90075          <idle>-0     (-----) [000] d..2 24574.663597: 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
90076         sugov:4-560   (  560) [005] d..2 24574.663598: 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
90077          <idle>-0     (-----) [005] d..1 24574.663601: cpu_idle: state=0 cpu_id=5
90078         sugov:0-559   (  559) [000] d..2 24574.663611: 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
90079          <idle>-0     (-----) [000] d..1 24574.663617: cpu_idle: state=0 cpu_id=0
90080            adbd-23484 ( 1007) [003] d..2 24574.663632: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=Instrumentation next_pid=13148 next_prio=120
90081          <idle>-0     (-----) [006] ...1 24574.663640: cpu_idle: state=4294967295 cpu_id=6
90082          <idle>-0     (-----) [006] d..1 24574.663642: cpu_idle: state=0 cpu_id=6
90083           <...>-13148 (-----) [003] d..2 24574.663661: sched_switch: prev_comm=Instrumentation prev_pid=13148 prev_prio=120 prev_state=x ==> next_comm=adbd next_pid=1007 next_prio=120
90084          <idle>-0     (-----) [000] d.h5 24574.663724: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
90085          <idle>-0     (-----) [000] d.h6 24574.663736: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
90086          <idle>-0     (-----) [000] d.h5 24574.663739: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
90087          <idle>-0     (-----) [002] .n.1 24574.663741: cpu_idle: state=4294967295 cpu_id=2
90088          <idle>-0     (-----) [002] d..2 24574.663747: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
90089            adbd-1007  ( 1007) [003] d..2 24574.663751: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90090          <idle>-0     (-----) [000] dnh6 24574.663755: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
90091          <idle>-0     (-----) [000] .n.1 24574.663764: cpu_idle: state=4294967295 cpu_id=0
90092          <idle>-0     (-----) [000] d..2 24574.663769: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
90093  crtc_event:111-254   (  254) [002] d..2 24574.663773: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
90094          <idle>-0     (-----) [002] d..1 24574.663778: cpu_idle: state=0 cpu_id=2
90095 crtc_commit:111-253   (  253) [000] d..2 24574.663863: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
90096          <idle>-0     (-----) [000] d..1 24574.663867: cpu_idle: state=0 cpu_id=0
90097          <idle>-0     (-----) [000] d.s3 24574.664234: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
90098 Shutdown thread-13122 (13122) [001] d..2 24574.664242: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
90099          <idle>-0     (-----) [000] d.s4 24574.664244: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
90100          <idle>-0     (-----) [002] .n.1 24574.664248: cpu_idle: state=4294967295 cpu_id=2
90101     kworker/1:1-13091 (13091) [001] d..3 24574.664249: sched_waking: comm=Binder:13122_1 pid=13129 prio=120 target_cpu=000
90102          <idle>-0     (-----) [002] d..2 24574.664255: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
90103          <idle>-0     (-----) [000] ...1 24574.664259: cpu_idle: state=4294967295 cpu_id=0
90104     kworker/1:1-13091 (13091) [001] d..4 24574.664263: sched_wakeup: comm=Binder:13122_1 pid=13129 prio=120 target_cpu=000
90105          <idle>-0     (-----) [000] d..2 24574.664268: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13122_1 next_pid=13129 next_prio=120
90106  crtc_event:111-254   (  254) [002] d..2 24574.664271: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
90107          <idle>-0     (-----) [002] d..1 24574.664275: cpu_idle: state=0 cpu_id=2
90108     kworker/1:1-13091 (13091) [001] d..2 24574.664278: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=main next_pid=13122 next_prio=120
90109 Shutdown thread-13122 (13122) [001] d..1 24574.664331: sched_waking: comm=Binder:13122_1 pid=13129 prio=120 target_cpu=000
90110  Binder:13122_1-13129 (13122) [000] d..2 24574.664335: sched_switch: prev_comm=Binder:13122_1 prev_pid=13129 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
90111 Shutdown thread-13122 (13122) [001] d..2 24574.664341: sched_blocked_reason: pid=13129 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
90112          <idle>-0     (-----) [000] dn.1 24574.664343: cpu_idle: state=0 cpu_id=0
90113          <idle>-0     (-----) [000] .n.1 24574.664345: cpu_idle: state=4294967295 cpu_id=0
90114 Shutdown thread-13122 (13122) [001] d..2 24574.664346: sched_wakeup: comm=Binder:13122_1 pid=13129 prio=120 target_cpu=000
90115          <idle>-0     (-----) [000] d..2 24574.664354: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13122_1 next_pid=13129 next_prio=120
90116 Shutdown thread-13122 (13122) [001] d..2 24574.664370: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=D ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=112
90117  Binder:13122_1-13129 (13122) [000] d..1 24574.664375: sched_waking: comm=main pid=13122 prio=120 target_cpu=001
90118  Binder:13122_1-13129 (13122) [000] d..2 24574.664396: sched_blocked_reason: pid=13122 iowait=0 caller=m_start.10906+0x23c/0x2b8
90119  Binder:13122_1-13129 (13122) [000] d..2 24574.664399: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=003
90120<...>-12589 ( 23968) [001] d..2 24574.664422: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=001
90121<...>-12589 ( 23968) [001] dn.3 24574.664432: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=001
90122<...>-12589 ( 23968) [001] d..2 24574.664437: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=112 prev_state=R+ ==> next_comm=statsd.writer next_pid=1044 next_prio=120
90123  Binder:13122_1-13129 (13122) [000] d..2 24574.664502: sched_switch: prev_comm=Binder:13122_1 prev_pid=13129 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
90124          <idle>-0     (-----) [000] d..1 24574.664510: cpu_idle: state=0 cpu_id=0
90125<...>-1044 ( 887) [001] d..2 24574.664558: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=112
90126<...>-12589 ( 23968) [001] d..3 24574.664629: sched_waking: comm=lmkd pid=808 prio=98 target_cpu=000
90127<...>-12589 ( 23968) [001] d..4 24574.664643: sched_wakeup: comm=lmkd pid=808 prio=98 target_cpu=000
90128          <idle>-0     (-----) [000] .n.1 24574.664648: cpu_idle: state=4294967295 cpu_id=0
90129          <idle>-0     (-----) [000] d..2 24574.664654: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=808 next_prio=98
90130            lmkd-808   (  808) [000] d..2 24574.664702: sched_switch: prev_comm=lmkd prev_pid=808 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90131          <idle>-0     (-----) [000] d..1 24574.664709: cpu_idle: state=0 cpu_id=0
90132<...>-12589 ( 23968) [001] .... 24574.665030: binder_transaction: transaction=1671015 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0x20
90133<...>-12589 ( 23968) [001] d..4 24574.665040: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=007
90134<...>-12589 ( 23968) [001] d..5 24574.665064: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=000
90135          <idle>-0     (-----) [000] .n.1 24574.665069: cpu_idle: state=4294967295 cpu_id=0
90136<...>-12589 ( 23968) [001] d.h5 24574.665096: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
90137          <idle>-0     (-----) [000] d..2 24574.665096: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
90138<...>-12589 ( 23968) [001] d.h5 24574.665103: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
90139          <idle>-0     (-----) [005] dnh2 24574.665108: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
90140          <idle>-0     (-----) [005] .n.1 24574.665111: cpu_idle: state=4294967295 cpu_id=5
90141          <idle>-0     (-----) [005] d..2 24574.665115: 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
90142<...>-12589 ( 23968) [001] d.h6 24574.665116: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
90143          <idle>-0     (-----) [002] .n.1 24574.665120: cpu_idle: state=4294967295 cpu_id=2
90144<...>-24376 ( 24151) [000] .... 24574.665122: binder_transaction_received: transaction=1671015
90145         sugov:4-560   (  560) [005] d..2 24574.665123: 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
90146          <idle>-0     (-----) [002] d..2 24574.665125: 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
90147          <idle>-0     (-----) [005] d..1 24574.665126: cpu_idle: state=0 cpu_id=5
90148         sugov:0-559   (  559) [002] d..2 24574.665136: 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
90149          <idle>-0     (-----) [002] d..1 24574.665139: cpu_idle: state=0 cpu_id=2
90150<...>-24376 ( 24151) [000] d..3 24574.665245: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=007
90151<...>-24376 ( 24151) [000] d..4 24574.665268: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
90152          <idle>-0     (-----) [002] .n.1 24574.665272: cpu_idle: state=4294967295 cpu_id=2
90153          <idle>-0     (-----) [002] d..2 24574.665294: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
90154<...>-24376 ( 24151) [000] d..2 24574.665344: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90155          <idle>-0     (-----) [000] d..1 24574.665353: cpu_idle: state=0 cpu_id=0
90156<...>-24151 ( 24151) [002] d..2 24574.665396: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
90157          <idle>-0     (-----) [002] d..1 24574.665402: cpu_idle: state=0 cpu_id=2
90158<...>-12589 ( 23968) [001] .... 24574.665519: binder_transaction: transaction=1671016 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
90159<...>-12589 ( 23968) [001] ...2 24574.665530: binder_set_priority: proc=23896 thread=25989 old=120 => new=112 desired=112
90160<...>-12589 ( 23968) [001] d..4 24574.665535: sched_waking: comm=Binder:23896_5 pid=25989 prio=112 target_cpu=005
90161<...>-12589 ( 23968) [001] dn.5 24574.665553: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=112 target_cpu=001
90162<...>-12589 ( 23968) [001] d..2 24574.665581: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=112 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=112
90163  Binder:23896_5-25989 (23896) [001] .... 24574.665588: binder_transaction_received: transaction=1671016
90164  Binder:23896_5-25989 (23896) [001] .... 24574.665649: binder_transaction: transaction=1671017 dest_node=0 dest_proc=23968 dest_thread=12589 reply=1 flags=0x0 code=0x0
90165  Binder:23896_5-25989 (23896) [001] .... 24574.665654: binder_set_priority: proc=23896 thread=25989 old=112 => new=120 desired=120
90166  Binder:23896_5-25989 (23896) [001] d..2 24574.665681: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=112
90167<...>-12589 ( 23968) [001] .... 24574.665686: binder_transaction_received: transaction=1671017
90168          <idle>-0     (-----) [000] d.h5 24574.666079: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
90169          <idle>-0     (-----) [000] dnh6 24574.666086: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
90170          <idle>-0     (-----) [000] .n.1 24574.666094: cpu_idle: state=4294967295 cpu_id=0
90171          <idle>-0     (-----) [000] d..2 24574.666100: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
90172 crtc_commit:111-253   (  253) [000] d..2 24574.666174: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90173          <idle>-0     (-----) [000] d..1 24574.666181: cpu_idle: state=0 cpu_id=0
90174<...>-12589 ( 23968) [001] d..3 24574.666241: sched_waking: comm=InputDispatcher pid=24073 prio=112 target_cpu=006
90175<...>-12589 ( 23968) [001] d..4 24574.666264: sched_wakeup: comm=InputDispatcher pid=24073 prio=112 target_cpu=000
90176          <idle>-0     (-----) [000] .n.1 24574.666269: cpu_idle: state=4294967295 cpu_id=0
90177<...>-12589 ( 23968) [001] d.h3 24574.666294: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
90178          <idle>-0     (-----) [000] d..2 24574.666294: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=24073 next_prio=112
90179<...>-12589 ( 23968) [001] d.h3 24574.666302: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
90180          <idle>-0     (-----) [005] dnh2 24574.666306: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
90181          <idle>-0     (-----) [005] .n.1 24574.666309: cpu_idle: state=4294967295 cpu_id=5
90182<...>-12589 ( 23968) [001] d.h4 24574.666310: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
90183          <idle>-0     (-----) [005] d..2 24574.666312: 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
90184          <idle>-0     (-----) [002] .n.1 24574.666315: cpu_idle: state=4294967295 cpu_id=2
90185         sugov:4-560   (  560) [005] d..2 24574.666318: 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
90186          <idle>-0     (-----) [002] d..2 24574.666320: 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
90187          <idle>-0     (-----) [005] d..1 24574.666321: cpu_idle: state=0 cpu_id=5
90188         sugov:0-559   (  559) [002] d..2 24574.666332: 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
90189<...>-12589 ( 23968) [001] d..3 24574.666335: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=004
90190          <idle>-0     (-----) [002] d..1 24574.666335: cpu_idle: state=0 cpu_id=2
90191<...>-24073 ( 23968) [000] d..2 24574.666335: sched_switch: prev_comm=InputDispatcher prev_pid=24073 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90192<...>-12589 ( 23968) [001] d..4 24574.666356: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=000
90193          <idle>-0     (-----) [000] dnh6 24574.666366: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
90194          <idle>-0     (-----) [000] dnh7 24574.666385: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
90195          <idle>-0     (-----) [002] .n.1 24574.666389: cpu_idle: state=4294967295 cpu_id=2
90196          <idle>-0     (-----) [002] d..2 24574.666393: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
90197          <idle>-0     (-----) [000] d..2 24574.666401: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
90198  crtc_event:111-254   (  254) [002] d..2 24574.666408: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
90199          <idle>-0     (-----) [002] d..1 24574.666411: cpu_idle: state=0 cpu_id=2
90200<...>-24003 ( 23968) [000] d..2 24574.666468: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90201          <idle>-0     (-----) [000] d..1 24574.666476: cpu_idle: state=0 cpu_id=0
90202<...>-12589 ( 23968) [001] d..3 24574.666649: sched_waking: comm=lmkd pid=808 prio=98 target_cpu=000
90203<...>-12589 ( 23968) [001] d..4 24574.666661: sched_wakeup: comm=lmkd pid=808 prio=98 target_cpu=000
90204          <idle>-0     (-----) [000] .n.1 24574.666666: cpu_idle: state=4294967295 cpu_id=0
90205          <idle>-0     (-----) [000] d..2 24574.666672: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=808 next_prio=98
90206            lmkd-808   (  808) [000] d.h1 24574.666888: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
90207            lmkd-808   (  808) [000] dnh2 24574.666896: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
90208            lmkd-808   (  808) [000] d..2 24574.666905: sched_switch: prev_comm=lmkd prev_pid=808 prev_prio=98 prev_state=R+ ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
90209          <idle>-0     (-----) [002] .n.1 24574.666927: cpu_idle: state=4294967295 cpu_id=2
90210          <idle>-0     (-----) [002] d..2 24574.666931: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=808 next_prio=98
90211<...>-12589 ( 23968) [001] d..3 24574.666937: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=002
90212          <idle>-0     (-----) [006] dnh2 24574.666985: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=006
90213<...>-12589 ( 23968) [001] d.h3 24574.666986: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
90214          <idle>-0     (-----) [006] .n.1 24574.666988: cpu_idle: state=4294967295 cpu_id=6
90215          <idle>-0     (-----) [006] d..2 24574.666992: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
90216<...>-12589 ( 23968) [001] d.h3 24574.666995: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
90217          <idle>-0     (-----) [005] dnh2 24574.666999: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
90218          <idle>-0     (-----) [005] .n.1 24574.667002: cpu_idle: state=4294967295 cpu_id=5
90219          <idle>-0     (-----) [005] d..2 24574.667005: 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
90220<...>-12589 ( 23968) [001] d.h4 24574.667008: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
90221         sugov:4-560   (  560) [005] d..2 24574.667011: 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
90222          <idle>-0     (-----) [005] d..1 24574.667014: cpu_idle: state=0 cpu_id=5
90223<...>-12589 ( 23968) [001] d..1 24574.667021: sched_waking: comm=android.ui pid=23994 prio=118 target_cpu=007
90224<...>-23993 ( 23968) [006] d..2 24574.667037: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
90225          <idle>-0     (-----) [006] d..1 24574.667044: cpu_idle: state=0 cpu_id=6
90226<...>-12589 ( 23968) [001] d..1 24574.667048: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=006
90227          <idle>-0     (-----) [006] dnh2 24574.667055: sched_wakeup: comm=android.ui pid=23994 prio=118 target_cpu=006
90228          <idle>-0     (-----) [006] dnh2 24574.667061: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=006
90229 ReferenceQueueD-13139 (13131) [003] d..2 24574.667062: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
90230          <idle>-0     (-----) [006] .n.1 24574.667064: cpu_idle: state=4294967295 cpu_id=6
90231          <idle>-0     (-----) [006] d..2 24574.667069: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=23994 next_prio=118
90232 irq/79-1436400.-24613 (24613) [000] d..2 24574.667076: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
90233          <idle>-0     (-----) [000] d..1 24574.667084: cpu_idle: state=0 cpu_id=0
90234         sugov:0-559   (  559) [003] d.s1 24574.667088: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
90235         sugov:0-559   (  559) [003] d.s2 24574.667097: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
90236         sugov:0-559   (  559) [003] d..2 24574.667105: 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
90237     ksoftirqd/3-34    (   34) [003] d.s2 24574.667118: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
90238<...>-23994 ( 23968) [006] d..3 24574.667119: sched_waking: comm=android.bg pid=23992 prio=130 target_cpu=001
90239     ksoftirqd/3-34    (   34) [003] d.s3 24574.667126: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
90240          <idle>-0     (-----) [000] .n.1 24574.667131: cpu_idle: state=4294967295 cpu_id=0
90241     ksoftirqd/3-34    (   34) [003] d..2 24574.667136: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=main next_pid=13122 next_prio=120
90242          <idle>-0     (-----) [000] d..2 24574.667139: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
90243 irq/79-1436400.-24613 (24613) [000] d.h3 24574.667146: sched_wakeup: comm=android.bg pid=23992 prio=130 target_cpu=000
90244<...>-23994 ( 23968) [006] d..3 24574.667160: sched_waking: comm=android.fg pid=24001 prio=120 target_cpu=001
90245<...>-12589 ( 23968) [001] .... 24574.667166: binder_transaction: transaction=1671018 dest_node=0 dest_proc=13131 dest_thread=13147 reply=1 flags=0x0 code=0x0
90246 irq/79-1436400.-24613 (24613) [000] d..2 24574.667166: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=android.bg next_pid=23992 next_prio=130
90247<...>-12589 ( 23968) [001] .... 24574.667173: binder_set_priority: proc=23968 thread=12589 old=112 => new=120 desired=120
90248 Shutdown thread-13122 (13122) [003] d..1 24574.667183: sched_waking: comm=Binder:13122_1 pid=13129 prio=120 target_cpu=000
90249<...>-23994 ( 23968) [006] d..4 24574.667189: sched_wakeup: comm=android.fg pid=24001 prio=120 target_cpu=006
90250          <idle>-0     (-----) [005] d.h2 24574.667218: sched_blocked_reason: pid=13129 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
90251          <idle>-0     (-----) [005] dnh2 24574.667220: sched_wakeup: comm=Binder:13122_1 pid=13129 prio=120 target_cpu=005
90252          <idle>-0     (-----) [005] .n.1 24574.667244: cpu_idle: state=4294967295 cpu_id=5
90253          <idle>-0     (-----) [005] d..2 24574.667248: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13122_1 next_pid=13129 next_prio=120
90254<...>-12589 ( 23968) [001] d..2 24574.667257: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
90255          <idle>-0     (-----) [001] d..1 24574.667277: cpu_idle: state=0 cpu_id=1
90256  Binder:13122_1-13129 (13122) [005] d..2 24574.667280: sched_switch: prev_comm=Binder:13122_1 prev_pid=13129 prev_prio=120 prev_state=D|K ==> next_comm=swapper/5 next_pid=0 next_prio=120
90257<...>-23992 ( 23968) [000] d..2 24574.667282: sched_switch: prev_comm=android.bg prev_pid=23992 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90258          <idle>-0     (-----) [005] d..1 24574.667284: cpu_idle: state=0 cpu_id=5
90259          <idle>-0     (-----) [000] d..1 24574.667290: cpu_idle: state=0 cpu_id=0
90260 Shutdown thread-13122 (13122) [003] d..1 24574.667310: sched_waking: comm=Binder:13122_1 pid=13129 prio=120 target_cpu=005
90261<...>-23994 ( 23968) [006] d..3 24574.667318: sched_waking: comm=android.bg pid=23992 prio=130 target_cpu=000
90262 Shutdown thread-13122 (13122) [003] d..2 24574.667326: sched_blocked_reason: pid=13129 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
90263 Shutdown thread-13122 (13122) [003] d..2 24574.667332: sched_wakeup: comm=Binder:13122_1 pid=13129 prio=120 target_cpu=000
90264<...>-23994 ( 23968) [006] d..3 24574.667345: sched_waking: comm=tworkPolicy.uid pid=24082 prio=118 target_cpu=002
90265          <idle>-0     (-----) [000] dnh2 24574.667355: sched_wakeup: comm=android.bg pid=23992 prio=130 target_cpu=000
90266          <idle>-0     (-----) [000] .n.1 24574.667359: cpu_idle: state=4294967295 cpu_id=0
90267          <idle>-0     (-----) [000] d..2 24574.667365: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:13122_1 next_pid=13129 next_prio=120
90268          <idle>-0     (-----) [001] dnh2 24574.667372: sched_wakeup: comm=tworkPolicy.uid pid=24082 prio=118 target_cpu=001
90269          <idle>-0     (-----) [001] .n.1 24574.667376: cpu_idle: state=4294967295 cpu_id=1
90270 Shutdown thread-13122 (13122) [003] d..2 24574.667381: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=D ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90271          <idle>-0     (-----) [001] d..2 24574.667384: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=tworkPolicy.uid next_pid=24082 next_prio=118
90272  Binder:13122_1-13129 (13122) [000] d..1 24574.667391: sched_waking: comm=main pid=13122 prio=120 target_cpu=003
90273<...>-23994 ( 23968) [006] .... 24574.667394: binder_transaction: transaction=1671019 dest_node=1288677 dest_proc=24119 dest_thread=0 reply=0 flags=0x11 code=0x1
90274<...>-23994 ( 23968) [006] d..4 24574.667400: sched_waking: comm=Binder:24119_3 pid=24159 prio=120 target_cpu=001
90275  Binder:13122_1-13129 (13122) [000] d..2 24574.667401: sched_blocked_reason: pid=13122 iowait=0 caller=m_start.10906+0x23c/0x2b8
90276  Binder:13122_1-13129 (13122) [000] d..2 24574.667407: sched_wakeup: comm=main pid=13122 prio=120 target_cpu=003
90277 tworkPolicy.uid-24082 (23968) [001] d.h1 24574.667418: sched_wakeup: comm=Binder:24119_3 pid=24159 prio=120 target_cpu=001
90278 ReferenceQueueD-13139 (13131) [003] d..2 24574.667439: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=main next_pid=13122 next_prio=120
90279<...>-23994 ( 23968) [006] .... 24574.667441: binder_transaction: transaction=1671020 dest_node=1279661 dest_proc=24119 dest_thread=0 reply=0 flags=0x11 code=0x1
90280<...>-23994 ( 23968) [006] d..4 24574.667444: sched_waking: comm=Binder:24119_4 pid=24523 prio=120 target_cpu=001
90281 tworkPolicy.uid-24082 (23968) [001] d.h1 24574.667460: sched_wakeup: comm=Binder:24119_4 pid=24523 prio=120 target_cpu=001
90282  Binder:13122_1-13129 (13122) [000] d..2 24574.667468: sched_switch: prev_comm=Binder:13122_1 prev_pid=13129 prev_prio=120 prev_state=x ==> next_comm=android.bg next_pid=23992 next_prio=130
90283<...>-23994 ( 23968) [006] d..3 24574.667474: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=000
90284<...>-23992 ( 23968) [000] dnh1 24574.667499: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=000
90285<...>-23992 ( 23968) [000] d..2 24574.667505: sched_switch: prev_comm=android.bg prev_pid=23992 prev_prio=130 prev_state=R ==> next_comm=system_server next_pid=23968 next_prio=118
90286<...>-23994 ( 23968) [006] .... 24574.667519: binder_transaction: transaction=1671021 dest_node=1274736 dest_proc=862 dest_thread=0 reply=0 flags=0x11 code=0x3
90287<...>-23994 ( 23968) [006] d..4 24574.667526: sched_waking: comm=Binder:862_4 pid=5596 prio=120 target_cpu=004
90288<...>-23994 ( 23968) [006] d..5 24574.667541: sched_wakeup: comm=Binder:862_4 pid=5596 prio=120 target_cpu=005
90289          <idle>-0     (-----) [005] .n.1 24574.667547: cpu_idle: state=4294967295 cpu_id=5
90290          <idle>-0     (-----) [005] d..2 24574.667556: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:862_4 next_pid=5596 next_prio=120
90291    Binder:862_4-5596  (  862) [005] .... 24574.667562: binder_transaction_received: transaction=1671021
90292            lmkd-808   (  808) [002] d.s1 24574.667571: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
90293 tworkPolicy.uid-24082 (23968) [001] d.s3 24574.667574: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
90294            lmkd-808   (  808) [002] d.s2 24574.667584: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
90295<...>-23994 ( 23968) [006] .... 24574.667593: binder_transaction: transaction=1671022 dest_node=1274736 dest_proc=862 dest_thread=0 reply=0 flags=0x11 code=0x1
90296 tworkPolicy.uid-24082 (23968) [001] d.s4 24574.667597: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
90297    Binder:862_4-5596  (  862) [005] d..4 24574.667617: sched_waking: comm=cameraserver pid=862 prio=120 target_cpu=004
90298    Binder:862_4-5596  (  862) [005] d..5 24574.667631: sched_wakeup: comm=cameraserver pid=862 prio=120 target_cpu=004
90299    Binder:862_4-5596  (  862) [005] .... 24574.667635: binder_transaction_received: transaction=1671022
90300          <idle>-0     (-----) [004] .n.1 24574.667636: cpu_idle: state=4294967295 cpu_id=4
90301          <idle>-0     (-----) [004] d..2 24574.667643: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cameraserver next_pid=862 next_prio=120
90302    Binder:862_4-5596  (  862) [005] d..2 24574.667653: sched_switch: prev_comm=Binder:862_4 prev_pid=5596 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
90303    cameraserver-862   (  862) [004] d..2 24574.667654: sched_switch: prev_comm=cameraserver prev_pid=862 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
90304          <idle>-0     (-----) [005] d..1 24574.667659: cpu_idle: state=0 cpu_id=5
90305          <idle>-0     (-----) [004] d..1 24574.667659: cpu_idle: state=0 cpu_id=4
90306<...>-23968 ( 23968) [000] d..2 24574.667659: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=android.bg next_pid=23992 next_prio=130
90307<...>-23994 ( 23968) [006] .... 24574.667671: binder_transaction: transaction=1671023 dest_node=1303001 dest_proc=24655 dest_thread=0 reply=0 flags=0x11 code=0x2
90308<...>-23994 ( 23968) [006] d..4 24574.667676: sched_waking: comm=Binder:24655_1 pid=24669 prio=120 target_cpu=003
90309<...>-23992 ( 23968) [000] d..2 24574.667687: sched_switch: prev_comm=android.bg prev_pid=23992 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90310          <idle>-0     (-----) [000] d..1 24574.667696: cpu_idle: state=0 cpu_id=0
90311          <idle>-0     (-----) [000] dnh2 24574.667705: sched_wakeup: comm=Binder:24655_1 pid=24669 prio=120 target_cpu=000
90312          <idle>-0     (-----) [000] .n.1 24574.667710: cpu_idle: state=4294967295 cpu_id=0
90313          <idle>-0     (-----) [000] d..2 24574.667716: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:24655_1 next_pid=24669 next_prio=120
90314  Binder:24655_1-24669 (24655) [000] .... 24574.667724: binder_transaction_received: transaction=1671023
90315<...>-23994 ( 23968) [006] d..3 24574.667741: sched_waking: comm=system_server pid=23968 prio=118 target_cpu=000
90316  Binder:24655_1-24669 (24655) [000] d.h1 24574.667766: sched_wakeup: comm=system_server pid=23968 prio=118 target_cpu=000
90317<...>-23994 ( 23968) [006] d..2 24574.667776: sched_switch: prev_comm=android.ui prev_pid=23994 prev_prio=118 prev_state=S ==> next_comm=android.fg next_pid=24001 next_prio=120
90318      android.fg-24001 (23968) [006] d..2 24574.667858: sched_switch: prev_comm=android.fg prev_pid=24001 prev_prio=120 prev_state=S ==> next_comm=ActivityManager next_pid=23993 next_prio=118
90319  Binder:24655_1-24669 (24655) [000] d..2 24574.667961: sched_switch: prev_comm=Binder:24655_1 prev_pid=24669 prev_prio=120 prev_state=S ==> next_comm=system_server next_pid=23968 next_prio=118
90320 tworkPolicy.uid-24082 (23968) [001] d..2 24574.667988: sched_waking: comm=netd pid=23915 prio=120 target_cpu=002
90321 tworkPolicy.uid-24082 (23968) [001] d..3 24574.668014: sched_wakeup: comm=netd pid=23915 prio=120 target_cpu=000
90322 tworkPolicy.uid-24082 (23968) [001] d.h2 24574.668021: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
90323<...>-23968 ( 23968) [000] .... 24574.668023: binder_transaction: transaction=1671024 dest_node=1282240 dest_proc=24151 dest_thread=0 reply=0 flags=0x11 code=0xa
90324<...>-23968 ( 23968) [000] d..4 24574.668029: sched_waking: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=000
90325 tworkPolicy.uid-24082 (23968) [001] d.h3 24574.668039: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
90326 Shutdown thread-13122 (13122) [003] d..2 24574.668050: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=R+ ==> next_comm=DispSync next_pid=23904 next_prio=97
90327<...>-23968 ( 23968) [000] d..5 24574.668051: sched_wakeup: comm=Binder:24151_4 pid=24376 prio=120 target_cpu=000
90328 tworkPolicy.uid-24082 (23968) [001] d..2 24574.668067: sched_switch: prev_comm=tworkPolicy.uid prev_pid=24082 prev_prio=118 prev_state=S ==> next_comm=Binder:24119_3 next_pid=24159 next_prio=120
90329  Binder:24119_3-24159 (24119) [001] .... 24574.668075: binder_transaction_received: transaction=1671019
90330        DispSync-23904 (23896) [003] d..1 24574.668080: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
90331            lmkd-808   (  808) [002] d..2 24574.668082: sched_switch: prev_comm=lmkd prev_pid=808 prev_prio=98 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
90332<...>-23968 ( 23968) [000] d..2 24574.668084: sched_switch: prev_comm=system_server prev_pid=23968 prev_prio=118 prev_state=S ==> next_comm=netd next_pid=23915 next_prio=120
90333     rcu_preempt-7     (    7) [002] d..2 24574.668094: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
90334        DispSync-23904 (23896) [003] d..2 24574.668095: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
90335  Binder:24119_3-24159 (24119) [001] d..2 24574.668107: sched_switch: prev_comm=Binder:24119_3 prev_pid=24159 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
90336     rcu_preempt-7     (    7) [002] d..3 24574.668113: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
90337        DispSync-23904 (23896) [003] d..2 24574.668117: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=main next_pid=13122 next_prio=120
90338     rcu_preempt-7     (    7) [002] d..2 24574.668127: 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
90339<...>-23993 ( 23968) [006] d..3 24574.668135: sched_waking: comm=lmkd pid=808 prio=98 target_cpu=002
90340 Shutdown thread-13122 (13122) [003] dnh1 24574.668154: sched_wakeup: comm=lmkd pid=808 prio=98 target_cpu=003
90341 Shutdown thread-13122 (13122) [003] d..2 24574.668160: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=R+ ==> next_comm=lmkd next_pid=808 next_prio=98
90342  appEventThread-23905 (23896) [001] d..3 24574.668161: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
90343            netd-23915 (23895) [000] d..2 24574.668210: sched_waking: comm=tworkPolicy.uid pid=24082 prio=118 target_cpu=001
90344          <idle>-0     (-----) [005] dnh2 24574.668213: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=005
90345          <idle>-0     (-----) [005] .n.1 24574.668217: cpu_idle: state=4294967295 cpu_id=5
90346  appEventThread-23905 (23896) [001] d.h3 24574.668217: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
90347          <idle>-0     (-----) [005] d..2 24574.668223: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
90348  appEventThread-23905 (23896) [001] d.h3 24574.668233: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
90349          <idle>-0     (-----) [004] dnh2 24574.668240: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
90350          <idle>-0     (-----) [004] .n.1 24574.668243: cpu_idle: state=4294967295 cpu_id=4
90351  appEventThread-23905 (23896) [001] d.h4 24574.668246: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
90352<...>-23993 ( 23968) [006] d.h1 24574.668246: sched_wakeup: comm=tworkPolicy.uid pid=24082 prio=118 target_cpu=006
90353          <idle>-0     (-----) [004] d..2 24574.668247: 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
90354         sugov:4-560   (  560) [004] d..2 24574.668275: 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
90355  kworker/u16:10-23868 (23868) [002] d..2 24574.668277: 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
90356          <idle>-0     (-----) [004] d..1 24574.668279: cpu_idle: state=0 cpu_id=4
90357  appEventThread-23905 (23896) [001] d..3 24574.668283: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
90358<...>-23993 ( 23968) [006] d..2 24574.668285: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=tworkPolicy.uid next_pid=24082 next_prio=118
90359         sugov:0-559   (  559) [002] d..2 24574.668286: 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
90360 tworkPolicy.uid-24082 (23968) [006] d..2 24574.668296: sched_switch: prev_comm=tworkPolicy.uid prev_pid=24082 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
90361          <idle>-0     (-----) [006] d..1 24574.668304: cpu_idle: state=0 cpu_id=6
90362  appEventThread-23905 (23896) [001] d..4 24574.668306: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
90363            netd-23915 (23895) [000] d..2 24574.668327: sched_waking: comm=tworkPolicy.uid pid=24082 prio=118 target_cpu=006
90364  appEventThread-23905 (23896) [001] d..2 24574.668327: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:24119_4 next_pid=24523 next_prio=120
90365  Binder:24119_4-24523 (24119) [001] .... 24574.668333: binder_transaction_received: transaction=1671020
90366          <idle>-0     (-----) [006] dnh2 24574.668344: sched_wakeup: comm=tworkPolicy.uid pid=24082 prio=118 target_cpu=006
90367          <idle>-0     (-----) [006] .n.1 24574.668348: cpu_idle: state=4294967295 cpu_id=6
90368          <idle>-0     (-----) [006] d..2 24574.668352: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=tworkPolicy.uid next_pid=24082 next_prio=118
90369  kworker/u16:10-23868 (23868) [002] .... 24574.668359: clk_set_rate: l3_cluster0_vote_clk 1305600000
90370  kworker/u16:10-23868 (23868) [002] .... 24574.668365: clk_set_rate: l3_clk 1305600000
90371            netd-23915 (23895) [000] d..2 24574.668367: sched_switch: prev_comm=netd prev_pid=23915 prev_prio=120 prev_state=S ==> next_comm=Binder:24151_4 next_pid=24376 next_prio=120
90372<...>-24376 ( 24151) [000] .... 24574.668374: binder_transaction_received: transaction=1671024
90373 tworkPolicy.uid-24082 (23968) [006] d..2 24574.668400: sched_switch: prev_comm=tworkPolicy.uid prev_pid=24082 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
90374          <idle>-0     (-----) [006] d..1 24574.668406: cpu_idle: state=0 cpu_id=6
90375 s.nexuslauncher-24827 (24827) [005] .... 24574.668431: binder_transaction: transaction=1671025 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
90376 s.nexuslauncher-24827 (24827) [005] d..4 24574.668438: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
90377 s.nexuslauncher-24827 (24827) [005] d..5 24574.668458: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=006
90378          <idle>-0     (-----) [006] .n.1 24574.668463: cpu_idle: state=4294967295 cpu_id=6
90379          <idle>-0     (-----) [006] d..2 24574.668479: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
90380  Binder:23896_5-25989 (23896) [006] .... 24574.668484: binder_transaction_received: transaction=1671025
90381  Binder:23896_5-25989 (23896) [006] d..1 24574.668509: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
90382<...>-24376 ( 24151) [000] d..2 24574.668522: sched_switch: prev_comm=Binder:24151_4 prev_pid=24376 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90383 s.nexuslauncher-24827 (24827) [005] d..2 24574.668523: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
90384          <idle>-0     (-----) [005] d..1 24574.668530: cpu_idle: state=0 cpu_id=5
90385          <idle>-0     (-----) [000] dnh3 24574.668531: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
90386  Binder:24119_4-24523 (24119) [001] d..2 24574.668537: sched_switch: prev_comm=Binder:24119_4 prev_pid=24523 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
90387          <idle>-0     (-----) [000] d..2 24574.668538: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
90388  Binder:23896_5-25989 (23896) [006] d..2 24574.668543: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
90389         rcuop/2-29    (   29) [001] d..2 24574.668544: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
90390          <idle>-0     (-----) [006] d..1 24574.668549: cpu_idle: state=0 cpu_id=6
90391         rcuop/2-29    (   29) [001] d..3 24574.668570: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
90392  appEventThread-23905 (23896) [000] d..2 24574.668578: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
90393  kworker/u16:10-23868 (23868) [002] d..2 24574.668581: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
90394         rcuop/2-29    (   29) [001] d..2 24574.668586: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=Binder:24119_3 next_pid=24159 next_prio=120
90395            lmkd-808   (  808) [003] d.s1 24574.668610: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
90396            lmkd-808   (  808) [003] d.s2 24574.668619: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
90397         rcuop/3-37    (   37) [000] d..2 24574.668633: 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
90398  Binder:24119_3-24159 (24119) [001] d..3 24574.668638: sched_waking: comm=droid.bluetooth pid=24119 prio=120 target_cpu=002
90399          <idle>-0     (-----) [000] d..1 24574.668642: cpu_idle: state=0 cpu_id=0
90400  Binder:24119_3-24159 (24119) [001] d..4 24574.668662: sched_wakeup: comm=droid.bluetooth pid=24119 prio=120 target_cpu=001
90401  Binder:24119_3-24159 (24119) [001] d..2 24574.668690: sched_switch: prev_comm=Binder:24119_3 prev_pid=24159 prev_prio=120 prev_state=S ==> next_comm=droid.bluetooth next_pid=24119 next_prio=120
90402<...>-24151 ( 24151) [002] .... 24574.668723: binder_transaction: transaction=1671026 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
90403<...>-24151 ( 24151) [002] d..4 24574.668730: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=006
90404          <idle>-0     (-----) [006] ...1 24574.668748: cpu_idle: state=4294967295 cpu_id=6
90405 droid.bluetooth-24119 (24119) [001] d..2 24574.668750: sched_switch: prev_comm=droid.bluetooth prev_pid=24119 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
90406          <idle>-0     (-----) [006] d..1 24574.668750: cpu_idle: state=0 cpu_id=6
90407<...>-24151 ( 24151) [002] d..5 24574.668751: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
90408          <idle>-0     (-----) [000] .n.1 24574.668757: cpu_idle: state=4294967295 cpu_id=0
90409          <idle>-0     (-----) [001] d..1 24574.668763: cpu_idle: state=0 cpu_id=1
90410<...>-24151 ( 24151) [002] d.h5 24574.668785: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
90411          <idle>-0     (-----) [000] d..2 24574.668785: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
90412<...>-24151 ( 24151) [002] d.h5 24574.668794: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
90413          <idle>-0     (-----) [004] dnh2 24574.668799: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
90414          <idle>-0     (-----) [004] .n.1 24574.668801: cpu_idle: state=4294967295 cpu_id=4
90415          <idle>-0     (-----) [004] d..2 24574.668805: 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
90416<...>-24151 ( 24151) [002] d.h6 24574.668806: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
90417  Binder:23896_5-25989 (23896) [000] .... 24574.668810: binder_transaction_received: transaction=1671026
90418          <idle>-0     (-----) [001] .n.1 24574.668811: cpu_idle: state=4294967295 cpu_id=1
90419         sugov:4-560   (  560) [004] d..2 24574.668812: 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
90420          <idle>-0     (-----) [004] d..1 24574.668815: cpu_idle: state=0 cpu_id=4
90421          <idle>-0     (-----) [001] d..2 24574.668817: 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
90422  Binder:23896_5-25989 (23896) [000] d..1 24574.668829: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
90423         sugov:0-559   (  559) [001] d..2 24574.668830: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
90424          <idle>-0     (-----) [001] d..1 24574.668835: cpu_idle: state=0 cpu_id=1
90425  Binder:23896_5-25989 (23896) [000] d..2 24574.668843: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
90426          <idle>-0     (-----) [001] .n.1 24574.668848: cpu_idle: state=4294967295 cpu_id=1
90427          <idle>-0     (-----) [001] d..2 24574.668853: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
90428  Binder:23896_5-25989 (23896) [000] d..2 24574.668864: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90429          <idle>-0     (-----) [000] d..1 24574.668871: cpu_idle: state=0 cpu_id=0
90430  appEventThread-23905 (23896) [001] d..2 24574.668879: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
90431          <idle>-0     (-----) [001] d..1 24574.668886: cpu_idle: state=0 cpu_id=1
90432<...>-24151 ( 24151) [002] d..2 24574.668896: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
90433          <idle>-0     (-----) [002] d..1 24574.668907: cpu_idle: state=0 cpu_id=2
90434            lmkd-808   (  808) [003] d..2 24574.669115: sched_switch: prev_comm=lmkd prev_pid=808 prev_prio=98 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
90435     ksoftirqd/3-34    (   34) [003] d.s2 24574.669124: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
90436     ksoftirqd/3-34    (   34) [003] d.s3 24574.669146: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
90437     ksoftirqd/3-34    (   34) [003] d.s3 24574.669152: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
90438          <idle>-0     (-----) [000] .n.1 24574.669157: cpu_idle: state=4294967295 cpu_id=0
90439     ksoftirqd/3-34    (   34) [003] d..2 24574.669160: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=main next_pid=13122 next_prio=120
90440          <idle>-0     (-----) [000] d..2 24574.669164: 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
90441  kworker/u16:10-23868 (23868) [000] .... 24574.669213: clk_set_rate: l3_cluster1_vote_clk 748800000
90442  kworker/u16:10-23868 (23868) [000] d..2 24574.669266: 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
90443          <idle>-0     (-----) [000] d..1 24574.669272: cpu_idle: state=0 cpu_id=0
90444          <idle>-0     (-----) [001] ...1 24574.670055: cpu_idle: state=4294967295 cpu_id=1
90445          <idle>-0     (-----) [001] d..1 24574.670058: cpu_idle: state=0 cpu_id=1
90446          <idle>-0     (-----) [000] ...1 24574.670383: cpu_idle: state=4294967295 cpu_id=0
90447          <idle>-0     (-----) [000] d..1 24574.670386: cpu_idle: state=0 cpu_id=0
90448          <idle>-0     (-----) [000] d.h2 24574.670928: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
90449          <idle>-0     (-----) [000] dnh3 24574.670936: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
90450          <idle>-0     (-----) [000] .n.1 24574.670942: cpu_idle: state=4294967295 cpu_id=0
90451          <idle>-0     (-----) [000] d..2 24574.670950: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
90452 irq/79-1436400.-24613 (24613) [000] d..2 24574.671105: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
90453 Shutdown thread-13122 (13122) [003] d.s2 24574.671114: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
90454          <idle>-0     (-----) [000] d..1 24574.671114: cpu_idle: state=0 cpu_id=0
90455 Shutdown thread-13122 (13122) [003] d.s3 24574.671125: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
90456          <idle>-0     (-----) [000] .n.1 24574.671129: cpu_idle: state=4294967295 cpu_id=0
90457          <idle>-0     (-----) [000] d..2 24574.671134: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
90458 irq/79-1436400.-24613 (24613) [000] d..2 24574.671157: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90459          <idle>-0     (-----) [000] d..1 24574.671163: cpu_idle: state=0 cpu_id=0
90460 Shutdown thread-13122 (13122) [003] d.h1 24574.672005: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
90461 Shutdown thread-13122 (13122) [003] d.h2 24574.672030: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
90462          <idle>-0     (-----) [001] .n.1 24574.672034: cpu_idle: state=4294967295 cpu_id=1
90463          <idle>-0     (-----) [001] d..2 24574.672041: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
90464        DispSync-23904 (23896) [001] d..1 24574.672068: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
90465        DispSync-23904 (23896) [001] d..2 24574.672083: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
90466          <idle>-0     (-----) [000] .n.1 24574.672088: cpu_idle: state=4294967295 cpu_id=0
90467          <idle>-0     (-----) [000] d..2 24574.672093: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
90468        DispSync-23904 (23896) [001] d..2 24574.672104: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
90469          <idle>-0     (-----) [001] d..1 24574.672112: cpu_idle: state=0 cpu_id=1
90470   sfEventThread-23906 (23896) [000] d..3 24574.672150: sched_waking: comm=android.anim pid=24041 prio=116 target_cpu=005
90471   sfEventThread-23906 (23896) [000] d..4 24574.672181: sched_wakeup: comm=android.anim pid=24041 prio=116 target_cpu=001
90472          <idle>-0     (-----) [001] .n.1 24574.672186: cpu_idle: state=4294967295 cpu_id=1
90473   sfEventThread-23906 (23896) [000] d.h3 24574.672223: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
90474          <idle>-0     (-----) [001] d..2 24574.672223: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=116
90475   sfEventThread-23906 (23896) [000] d.h3 24574.672232: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
90476          <idle>-0     (-----) [004] dnh2 24574.672237: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
90477          <idle>-0     (-----) [004] .n.1 24574.672239: cpu_idle: state=4294967295 cpu_id=4
90478          <idle>-0     (-----) [004] d..2 24574.672243: 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
90479   sfEventThread-23906 (23896) [000] d.h4 24574.672247: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
90480         sugov:4-560   (  560) [004] d..2 24574.672250: 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
90481          <idle>-0     (-----) [002] .n.1 24574.672252: cpu_idle: state=4294967295 cpu_id=2
90482          <idle>-0     (-----) [004] d..1 24574.672254: cpu_idle: state=0 cpu_id=4
90483          <idle>-0     (-----) [002] d..2 24574.672260: 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
90484   sfEventThread-23906 (23896) [000] d..3 24574.672261: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
90485   sfEventThread-23906 (23896) [000] d..4 24574.672278: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
90486         sugov:0-559   (  559) [002] d..2 24574.672278: 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
90487          <idle>-0     (-----) [002] d..1 24574.672283: cpu_idle: state=0 cpu_id=2
90488 Shutdown thread-13122 (13122) [003] d..2 24574.672290: sched_switch: prev_comm=main prev_pid=13122 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
90489   sfEventThread-23906 (23896) [000] d..2 24574.672299: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90490          <idle>-0     (-----) [000] d..1 24574.672309: cpu_idle: state=0 cpu_id=0
90491  surfaceflinger-23896 (23896) [003] d..2 24574.672447: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=main next_pid=13122 next_prio=120
90492<...>-24041 ( 23968) [001] .... 24574.672459: binder_transaction: transaction=1671027 dest_node=1271137 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
90493<...>-24041 ( 23968) [001] d..4 24574.672470: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
90494<...>-27905 ( 23968) [007] d..1 24574.672476: sched_waking: comm=TaskSnapshotPer pid=24113 prio=130 target_cpu=002
90495<...>-24041 ( 23968) [001] d..5 24574.672485: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
90496          <idle>-0     (-----) [000] .n.1 24574.672490: cpu_idle: state=4294967295 cpu_id=0
90497          <idle>-0     (-----) [000] d..2 24574.672497: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
90498  Binder:23896_5-25989 (23896) [000] .... 24574.672502: binder_transaction_received: transaction=1671027
90499  Binder:23896_5-25989 (23896) [000] d.h1 24574.672513: sched_wakeup: comm=TaskSnapshotPer pid=24113 prio=130 target_cpu=000
90500<...>-27905 ( 23968) [007] d..2 24574.672528: sched_switch: prev_comm=RenderThread prev_pid=27905 prev_prio=116 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
90501  Binder:23896_5-25989 (23896) [000] d..1 24574.672529: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
90502  Binder:23896_5-25989 (23896) [000] d..2 24574.672544: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
90503          <idle>-0     (-----) [007] d..1 24574.672546: cpu_idle: state=0 cpu_id=7
90504          <idle>-0     (-----) [002] .n.1 24574.672548: cpu_idle: state=4294967295 cpu_id=2
90505          <idle>-0     (-----) [002] d..2 24574.672553: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
90506  Binder:23896_5-25989 (23896) [000] d..2 24574.672561: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=24113 next_prio=130
90507   sfEventThread-23906 (23896) [002] d..2 24574.672581: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
90508          <idle>-0     (-----) [002] d..1 24574.672586: cpu_idle: state=0 cpu_id=2
90509<...>-24041 ( 23968) [001] .... 24574.672899: binder_transaction: transaction=1671028 dest_node=1270433 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x8
90510<...>-24041 ( 23968) [001] ...2 24574.672918: binder_set_priority: proc=23896 thread=25989 old=120 => new=116 desired=116
90511<...>-24041 ( 23968) [001] d..4 24574.672922: sched_waking: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=000
90512<...>-24041 ( 23968) [001] d..5 24574.672936: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=116 target_cpu=001
90513<...>-24041 ( 23968) [001] d..2 24574.672944: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=116
90514  Binder:23896_5-25989 (23896) [001] .... 24574.672949: binder_transaction_received: transaction=1671028
90515  Binder:23896_5-25989 (23896) [001] .... 24574.673013: binder_transaction: transaction=1671029 dest_node=0 dest_proc=23968 dest_thread=24041 reply=1 flags=0x0 code=0x0
90516  Binder:23896_5-25989 (23896) [001] d..2 24574.673019: sched_waking: comm=android.anim pid=24041 prio=116 target_cpu=001
90517  Binder:23896_5-25989 (23896) [001] d..3 24574.673027: sched_wakeup: comm=android.anim pid=24041 prio=116 target_cpu=001
90518  Binder:23896_5-25989 (23896) [001] .... 24574.673028: binder_set_priority: proc=23896 thread=25989 old=116 => new=120 desired=120
90519  Binder:23896_5-25989 (23896) [001] d..2 24574.673059: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=24041 next_prio=116
90520<...>-24041 ( 23968) [001] .... 24574.673063: binder_transaction_received: transaction=1671029
90521<...>-24041 ( 23968) [001] d..2 24574.673143: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
90522          <idle>-0     (-----) [001] d..1 24574.673155: cpu_idle: state=0 cpu_id=1
90523 Shutdown thread-13122 (13122) [003] d..1 24574.673772: sched_waking: comm=HeapTaskDaemon pid=13128 prio=120 target_cpu=000
90524 Shutdown thread-13122 (13122) [003] d..2 24574.673808: sched_wakeup: comm=HeapTaskDaemon pid=13128 prio=120 target_cpu=001
90525          <idle>-0     (-----) [001] .n.1 24574.673814: cpu_idle: state=4294967295 cpu_id=1
90526          <idle>-0     (-----) [001] d..2 24574.673823: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=13128 next_prio=120
90527 Shutdown thread-13122 (13122) [003] d..2 24574.673850: sched_switch: prev_comm=Shutdown thread prev_pid=13122 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90528  HeapTaskDaemon-13128 (13122) [001] d..1 24574.673873: sched_waking: comm=Shutdown thread pid=13122 prio=120 target_cpu=003
90529  HeapTaskDaemon-13128 (13122) [001] d..2 24574.673888: sched_wakeup: comm=Shutdown thread pid=13122 prio=120 target_cpu=003
90530  HeapTaskDaemon-13128 (13122) [001] d..2 24574.674116: sched_switch: prev_comm=HeapTaskDaemon prev_pid=13128 prev_prio=120 prev_state=x ==> next_comm=swapper/1 next_pid=0 next_prio=120
90531          <idle>-0     (-----) [001] d..1 24574.674137: cpu_idle: state=0 cpu_id=1
90532          <idle>-0     (-----) [002] d.s2 24574.674243: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
90533          <idle>-0     (-----) [002] dns3 24574.674255: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
90534          <idle>-0     (-----) [002] .n.1 24574.674262: cpu_idle: state=4294967295 cpu_id=2
90535          <idle>-0     (-----) [002] d..2 24574.674268: 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
90536     rcu_preempt-7     (    7) [002] d..2 24574.674293: 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
90537          <idle>-0     (-----) [002] d..1 24574.674300: cpu_idle: state=0 cpu_id=2
90538          <idle>-0     (-----) [001] ...1 24574.675344: cpu_idle: state=4294967295 cpu_id=1
90539          <idle>-0     (-----) [001] d..1 24574.675347: cpu_idle: state=0 cpu_id=1
90540 ReferenceQueueD-13139 (13131) [003] dnH2 24574.677646: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
90541 ReferenceQueueD-13139 (13131) [003] dnH2 24574.677661: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
90542          <idle>-0     (-----) [004] dnh2 24574.677666: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
90543          <idle>-0     (-----) [004] .n.1 24574.677668: cpu_idle: state=4294967295 cpu_id=4
90544          <idle>-0     (-----) [004] d..2 24574.677672: 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
90545 ReferenceQueueD-13139 (13131) [003] dnH3 24574.677673: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
90546          <idle>-0     (-----) [002] .n.1 24574.677677: cpu_idle: state=4294967295 cpu_id=2
90547         sugov:4-560   (  560) [004] d..2 24574.677681: 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
90548 ReferenceQueueD-13139 (13131) [003] dns2 24574.677683: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
90549          <idle>-0     (-----) [002] d..2 24574.677684: 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
90550          <idle>-0     (-----) [004] d..1 24574.677684: cpu_idle: state=0 cpu_id=4
90551         sugov:0-559   (  559) [002] d..2 24574.677707: 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
90552          <idle>-0     (-----) [002] d..1 24574.677711: cpu_idle: state=0 cpu_id=2
90553 ReferenceQueueD-13139 (13131) [003] dns3 24574.677720: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
90554          <idle>-0     (-----) [002] .n.1 24574.677724: cpu_idle: state=4294967295 cpu_id=2
90555          <idle>-0     (-----) [002] d..2 24574.677730: 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
90556 ReferenceQueueD-13139 (13131) [003] d..2 24574.677733: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=Shutdown thread next_pid=13122 next_prio=120
90557 Shutdown thread-13122 (13122) [003] d..1 24574.677844: sched_waking: comm=ReferenceQueueD pid=13125 prio=120 target_cpu=000
90558  kworker/u16:10-23868 (23868) [002] .... 24574.677845: clk_set_rate: l3_cluster1_vote_clk 576000000
90559 Shutdown thread-13122 (13122) [003] d..2 24574.677871: sched_wakeup: comm=ReferenceQueueD pid=13125 prio=120 target_cpu=002
90560 Shutdown thread-13122 (13122) [003] d..2 24574.677903: sched_switch: prev_comm=Shutdown thread prev_pid=13122 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90561  kworker/u16:10-23868 (23868) [002] d..2 24574.678011: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=ReferenceQueueD next_pid=13125 next_prio=120
90562 ReferenceQueueD-13139 (13131) [003] d.s3 24574.678050: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
90563 ReferenceQueueD-13139 (13131) [003] d.s4 24574.678072: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
90564 ReferenceQueueD-13139 (13131) [003] dns4 24574.678076: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
90565 ReferenceQueueD-13139 (13131) [003] d..2 24574.678094: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
90566  kworker/u16:10-23868 (23868) [003] .... 24574.678167: clk_set_rate: l3_cluster0_vote_clk 1401600000
90567  kworker/u16:10-23868 (23868) [003] .... 24574.678170: clk_set_rate: l3_clk 1401600000
90568  kworker/u16:10-23868 (23868) [003] d..2 24574.678201: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90569 ReferenceQueueD-13125 (13122) [002] d..1 24574.678295: sched_waking: comm=Shutdown thread pid=13122 prio=120 target_cpu=003
90570 ReferenceQueueD-13125 (13122) [002] d..2 24574.678317: sched_wakeup: comm=Shutdown thread pid=13122 prio=120 target_cpu=001
90571          <idle>-0     (-----) [001] .n.1 24574.678321: cpu_idle: state=4294967295 cpu_id=1
90572          <idle>-0     (-----) [001] d..2 24574.678329: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Shutdown thread next_pid=13122 next_prio=120
90573 Shutdown thread-13122 (13122) [001] d..2 24574.678359: sched_switch: prev_comm=Shutdown thread prev_pid=13122 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
90574 ReferenceQueueD-13125 (13122) [002] d..1 24574.678361: sched_waking: comm=Shutdown thread pid=13122 prio=120 target_cpu=001
90575          <idle>-0     (-----) [001] d..1 24574.678366: cpu_idle: state=0 cpu_id=1
90576 ReferenceQueueD-13125 (13122) [002] d..2 24574.678369: sched_blocked_reason: pid=13122 iowait=0 caller=do_page_fault+0x4e0/0x594
90577 ReferenceQueueD-13125 (13122) [002] d..2 24574.678374: sched_wakeup: comm=Shutdown thread pid=13122 prio=120 target_cpu=001
90578          <idle>-0     (-----) [001] .n.1 24574.678379: cpu_idle: state=4294967295 cpu_id=1
90579          <idle>-0     (-----) [001] d..2 24574.678385: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Shutdown thread next_pid=13122 next_prio=120
90580 Shutdown thread-13122 (13122) [001] d..1 24574.678413: sched_waking: comm=FinalizerDaemon pid=13126 prio=120 target_cpu=001
90581 ReferenceQueueD-13125 (13122) [002] d..2 24574.678427: sched_switch: prev_comm=ReferenceQueueD prev_pid=13125 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
90582 Shutdown thread-13122 (13122) [001] d..2 24574.678435: sched_wakeup: comm=FinalizerDaemon pid=13126 prio=120 target_cpu=003
90583          <idle>-0     (-----) [002] d..1 24574.678438: cpu_idle: state=0 cpu_id=2
90584 Shutdown thread-13122 (13122) [001] d..1 24574.678440: sched_waking: comm=ReferenceQueueD pid=13125 prio=120 target_cpu=002
90585 ReferenceQueueD-13139 (13131) [003] d..2 24574.678444: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=FinalizerDaemon next_pid=13126 next_prio=120
90586 Shutdown thread-13122 (13122) [001] d..2 24574.678463: sched_wakeup: comm=ReferenceQueueD pid=13125 prio=120 target_cpu=000
90587<...>-24113 ( 23968) [000] d..2 24574.678471: sched_switch: prev_comm=TaskSnapshotPer prev_pid=24113 prev_prio=130 prev_state=R+ ==> next_comm=ReferenceQueueD next_pid=13125 next_prio=120
90588 Shutdown thread-13122 (13122) [001] d..2 24574.678498: sched_switch: prev_comm=Shutdown thread prev_pid=13122 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
90589          <idle>-0     (-----) [001] d..1 24574.678506: cpu_idle: state=0 cpu_id=1
90590 FinalizerDaemon-13126 (13122) [003] d..1 24574.678560: sched_waking: comm=ReferenceQueueD pid=13125 prio=120 target_cpu=000
90591 ReferenceQueueD-13125 (13122) [000] d..2 24574.678567: sched_switch: prev_comm=ReferenceQueueD prev_pid=13125 prev_prio=120 prev_state=D|K ==> next_comm=TaskSnapshotPer next_pid=24113 next_prio=130
90592 FinalizerDaemon-13126 (13122) [003] d..2 24574.678579: sched_blocked_reason: pid=13125 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
90593 FinalizerDaemon-13126 (13122) [003] d..2 24574.678585: sched_wakeup: comm=ReferenceQueueD pid=13125 prio=120 target_cpu=000
90594<...>-24113 ( 23968) [000] d..2 24574.678591: sched_switch: prev_comm=TaskSnapshotPer prev_pid=24113 prev_prio=130 prev_state=R+ ==> next_comm=ReferenceQueueD next_pid=13125 next_prio=120
90595 ReferenceQueueD-13125 (13122) [000] d..1 24574.678605: sched_waking: comm=FinalizerDaemon pid=13126 prio=120 target_cpu=003
90596 FinalizerDaemon-13126 (13122) [003] d..2 24574.678607: sched_switch: prev_comm=FinalizerDaemon prev_pid=13126 prev_prio=120 prev_state=D ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90597 ReferenceQueueD-13125 (13122) [000] d..2 24574.678619: sched_blocked_reason: pid=13126 iowait=0 caller=do_page_fault+0x4e0/0x594
90598 ReferenceQueueD-13125 (13122) [000] d..2 24574.678625: sched_wakeup: comm=FinalizerDaemon pid=13126 prio=120 target_cpu=003
90599 ReferenceQueueD-13139 (13131) [003] d..2 24574.678630: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=FinalizerDaemon next_pid=13126 next_prio=120
90600 FinalizerDaemon-13126 (13122) [003] d..1 24574.678657: sched_waking: comm=Shutdown thread pid=13122 prio=120 target_cpu=001
90601 FinalizerDaemon-13126 (13122) [003] d..2 24574.678667: sched_wakeup: comm=Shutdown thread pid=13122 prio=120 target_cpu=001
90602          <idle>-0     (-----) [001] .n.1 24574.678673: cpu_idle: state=4294967295 cpu_id=1
90603          <idle>-0     (-----) [001] d..2 24574.678679: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Shutdown thread next_pid=13122 next_prio=120
90604 Shutdown thread-13122 (13122) [001] d..1 24574.678695: sched_waking: comm=FinalizerWatchd pid=13127 prio=120 target_cpu=001
90605 Shutdown thread-13122 (13122) [001] d..2 24574.678711: sched_wakeup: comm=FinalizerWatchd pid=13127 prio=120 target_cpu=000
90606 FinalizerDaemon-13126 (13122) [003] d..2 24574.678713: sched_switch: prev_comm=FinalizerDaemon prev_pid=13126 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90607 Shutdown thread-13122 (13122) [001] d..1 24574.678716: sched_waking: comm=FinalizerDaemon pid=13126 prio=120 target_cpu=003
90608 ReferenceQueueD-13125 (13122) [000] d..2 24574.678723: sched_switch: prev_comm=ReferenceQueueD prev_pid=13125 prev_prio=120 prev_state=x ==> next_comm=FinalizerWatchd next_pid=13127 next_prio=120
90609 Shutdown thread-13122 (13122) [001] d..2 24574.678726: sched_wakeup: comm=FinalizerDaemon pid=13126 prio=120 target_cpu=003
90610 ReferenceQueueD-13139 (13131) [003] d..2 24574.678731: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=FinalizerDaemon next_pid=13126 next_prio=120
90611 Shutdown thread-13122 (13122) [001] d..2 24574.678751: sched_switch: prev_comm=Shutdown thread prev_pid=13122 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
90612          <idle>-0     (-----) [001] d..1 24574.678757: cpu_idle: state=0 cpu_id=1
90613 FinalizerDaemon-13126 (13122) [003] d..1 24574.678809: sched_waking: comm=FinalizerWatchd pid=13127 prio=120 target_cpu=000
90614 FinalizerWatchd-13127 (13122) [000] d..2 24574.678816: sched_switch: prev_comm=FinalizerWatchd prev_pid=13127 prev_prio=120 prev_state=D ==> next_comm=TaskSnapshotPer next_pid=24113 next_prio=130
90615 FinalizerDaemon-13126 (13122) [003] d..2 24574.678827: sched_blocked_reason: pid=13127 iowait=0 caller=do_page_fault+0x4e0/0x594
90616 FinalizerDaemon-13126 (13122) [003] d..2 24574.678832: sched_wakeup: comm=FinalizerWatchd pid=13127 prio=120 target_cpu=000
90617<...>-24113 ( 23968) [000] d..2 24574.678838: sched_switch: prev_comm=TaskSnapshotPer prev_pid=24113 prev_prio=130 prev_state=R+ ==> next_comm=FinalizerWatchd next_pid=13127 next_prio=120
90618 FinalizerDaemon-13126 (13122) [003] d..2 24574.678846: sched_switch: prev_comm=FinalizerDaemon prev_pid=13126 prev_prio=120 prev_state=D|K ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90619 FinalizerWatchd-13127 (13122) [000] d..1 24574.678849: sched_waking: comm=FinalizerDaemon pid=13126 prio=120 target_cpu=003
90620 FinalizerWatchd-13127 (13122) [000] d..2 24574.678858: sched_blocked_reason: pid=13126 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
90621 FinalizerWatchd-13127 (13122) [000] d..2 24574.678864: sched_wakeup: comm=FinalizerDaemon pid=13126 prio=120 target_cpu=003
90622 ReferenceQueueD-13139 (13131) [003] d..2 24574.678869: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=FinalizerDaemon next_pid=13126 next_prio=120
90623 FinalizerWatchd-13127 (13122) [000] d..1 24574.678908: sched_waking: comm=Shutdown thread pid=13122 prio=120 target_cpu=001
90624 FinalizerDaemon-13126 (13122) [003] d..2 24574.678911: sched_switch: prev_comm=FinalizerDaemon prev_pid=13126 prev_prio=120 prev_state=x ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90625 FinalizerWatchd-13127 (13122) [000] d..2 24574.678918: sched_wakeup: comm=Shutdown thread pid=13122 prio=120 target_cpu=001
90626          <idle>-0     (-----) [001] .n.1 24574.678923: cpu_idle: state=4294967295 cpu_id=1
90627          <idle>-0     (-----) [001] d..2 24574.678929: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Shutdown thread next_pid=13122 next_prio=120
90628 FinalizerWatchd-13127 (13122) [000] d..2 24574.678972: sched_switch: prev_comm=FinalizerWatchd prev_pid=13127 prev_prio=120 prev_state=D ==> next_comm=TaskSnapshotPer next_pid=24113 next_prio=130
90629 Shutdown thread-13122 (13122) [001] d..1 24574.678976: sched_waking: comm=FinalizerWatchd pid=13127 prio=120 target_cpu=000
90630 Shutdown thread-13122 (13122) [001] d..2 24574.678997: sched_blocked_reason: pid=13127 iowait=0 caller=SyS_madvise+0xc84/0xcbc
90631 Shutdown thread-13122 (13122) [001] d..2 24574.679002: sched_wakeup: comm=FinalizerWatchd pid=13127 prio=120 target_cpu=003
90632 ReferenceQueueD-13139 (13131) [003] d..2 24574.679007: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=FinalizerWatchd next_pid=13127 next_prio=120
90633 Shutdown thread-13122 (13122) [001] d..1 24574.679073: sched_waking: comm=Jit thread pool pid=13123 prio=129 target_cpu=000
90634 Shutdown thread-13122 (13122) [001] d..2 24574.679087: sched_wakeup: comm=Jit thread pool pid=13123 prio=129 target_cpu=000
90635 FinalizerWatchd-13127 (13122) [003] d..2 24574.679096: sched_waking: comm=rcuos/2 pid=30 prio=120 target_cpu=002
90636 Shutdown thread-13122 (13122) [001] d..2 24574.679105: sched_switch: prev_comm=Shutdown thread prev_pid=13122 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
90637          <idle>-0     (-----) [001] d..1 24574.679112: cpu_idle: state=0 cpu_id=1
90638 FinalizerWatchd-13127 (13122) [003] d..3 24574.679124: sched_wakeup: comm=rcuos/2 pid=30 prio=120 target_cpu=001
90639          <idle>-0     (-----) [001] .n.1 24574.679129: cpu_idle: state=4294967295 cpu_id=1
90640          <idle>-0     (-----) [001] d..2 24574.679136: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuos/2 next_pid=30 next_prio=120
90641<...>-30 ( 30) [001] d..2 24574.679142: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
90642 FinalizerWatchd-13127 (13122) [003] d..2 24574.679166: sched_switch: prev_comm=FinalizerWatchd prev_pid=13127 prev_prio=120 prev_state=x ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90643<...>-30 ( 30) [001] d..3 24574.679174: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
90644 ReferenceQueueD-13139 (13131) [003] d..2 24574.679178: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=rcu_sched next_pid=8 next_prio=120
90645<...>-30 ( 30) [001] d..2 24574.679190: sched_switch: prev_comm=rcuos/2 prev_pid=30 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
90646       rcu_sched-8     (    8) [003] d..2 24574.679194: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90647          <idle>-0     (-----) [001] d..1 24574.679195: cpu_idle: state=0 cpu_id=1
90648<...>-24113 ( 23968) [000] d.h4 24574.680205: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
90649<...>-24113 ( 23968) [000] d.h5 24574.680225: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
90650          <idle>-0     (-----) [002] .n.1 24574.680231: cpu_idle: state=4294967295 cpu_id=2
90651          <idle>-0     (-----) [002] d..2 24574.680236: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
90652  crtc_event:111-254   (  254) [002] d..2 24574.680265: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
90653          <idle>-0     (-----) [002] d..1 24574.680268: cpu_idle: state=0 cpu_id=2
90654          <idle>-0     (-----) [002] d.s2 24574.680908: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
90655          <idle>-0     (-----) [002] dns3 24574.680921: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
90656          <idle>-0     (-----) [002] .n.1 24574.680934: cpu_idle: state=4294967295 cpu_id=2
90657          <idle>-0     (-----) [002] d..2 24574.680939: 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
90658     rcu_preempt-7     (    7) [002] d..2 24574.680946: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=002
90659     rcu_preempt-7     (    7) [002] d..3 24574.680974: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
90660 ReferenceQueueD-13139 (13131) [003] d..2 24574.680980: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=rcuop/4 next_pid=45 next_prio=120
90661     rcu_preempt-7     (    7) [002] d..2 24574.680984: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=003
90662     rcu_preempt-7     (    7) [002] d..3 24574.680995: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=003
90663     rcu_preempt-7     (    7) [002] d..2 24574.680997: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
90664     rcu_preempt-7     (    7) [002] d..3 24574.681016: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
90665         rcuop/4-45    (   45) [003] d..2 24574.681033: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
90666         rcuop/6-61    (   61) [003] d..2 24574.681038: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=003
90667     rcu_preempt-7     (    7) [002] d..2 24574.681054: 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
90668         rcuop/0-10    (   10) [002] d..2 24574.681059: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
90669         rcuop/6-61    (   61) [003] d..3 24574.681066: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=002
90670         rcuop/0-10    (   10) [002] d..3 24574.681080: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
90671         rcuop/6-61    (   61) [003] d..2 24574.681089: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
90672         rcuop/0-10    (   10) [002] d..2 24574.681092: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/7 next_pid=69 next_prio=120
90673         rcuop/1-21    (   21) [003] d..2 24574.681105: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90674         rcuop/7-69    (   69) [002] d..2 24574.681121: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
90675          <idle>-0     (-----) [002] d..1 24574.681131: cpu_idle: state=0 cpu_id=2
90676          <idle>-0     (-----) [001] d.h3 24574.683232: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
90677          <idle>-0     (-----) [001] dnh4 24574.683247: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
90678          <idle>-0     (-----) [001] .n.1 24574.683252: cpu_idle: state=4294967295 cpu_id=1
90679          <idle>-0     (-----) [001] d..2 24574.683259: 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
90680  kworker/u16:10-23868 (23868) [001] d..1 24574.683284: clk_disable: gcc_ufs_phy_phy_aux_hw_ctl_clk
90681  kworker/u16:10-23868 (23868) [001] d..1 24574.683296: clk_disable: gcc_ufs_phy_phy_aux_clk
90682  kworker/u16:10-23868 (23868) [001] d..1 24574.683303: clk_disable: gcc_ufs_phy_phy_aux_clk_src
90683  kworker/u16:10-23868 (23868) [001] d..1 24574.683311: clk_disable: gcc_ufs_mem_clkref_clk
90684  kworker/u16:10-23868 (23868) [001] d..1 24574.683322: clk_disable: gcc_ufs_phy_axi_hw_ctl_clk
90685  kworker/u16:10-23868 (23868) [001] d..1 24574.683325: clk_disable: gcc_ufs_phy_axi_clk
90686  kworker/u16:10-23868 (23868) [001] d..1 24574.683331: clk_disable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
90687  kworker/u16:10-23868 (23868) [001] d..1 24574.683334: clk_disable: gcc_aggre_ufs_phy_axi_clk
90688  kworker/u16:10-23868 (23868) [001] d..1 24574.683339: clk_disable: gcc_ufs_phy_axi_clk_src
90689  kworker/u16:10-23868 (23868) [001] d..1 24574.683344: clk_disable: gcc_ufs_phy_ahb_clk
90690  kworker/u16:10-23868 (23868) [001] d..1 24574.683349: clk_disable: gcc_ufs_phy_unipro_core_hw_ctl_clk
90691  kworker/u16:10-23868 (23868) [001] d..1 24574.683352: clk_disable: gcc_ufs_phy_unipro_core_clk
90692  kworker/u16:10-23868 (23868) [001] d..1 24574.683357: clk_disable: gcc_ufs_phy_unipro_core_clk_src
90693  kworker/u16:10-23868 (23868) [001] d..1 24574.683361: clk_disable: gcc_ufs_phy_ice_core_hw_ctl_clk
90694  kworker/u16:10-23868 (23868) [001] d..1 24574.683364: clk_disable: gcc_ufs_phy_ice_core_clk
90695  kworker/u16:10-23868 (23868) [001] d..1 24574.683369: clk_disable: gcc_ufs_phy_ice_core_clk_src
90696  kworker/u16:10-23868 (23868) [001] d..2 24574.683649: 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
90697          <idle>-0     (-----) [001] d..1 24574.683657: cpu_idle: state=0 cpu_id=1
90698 ReferenceQueueD-13139 (13131) [003] d.s2 24574.683683: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
90699 ReferenceQueueD-13139 (13131) [003] d.s3 24574.683707: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
90700 ReferenceQueueD-13139 (13131) [003] dns3 24574.683711: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
90701 ReferenceQueueD-13139 (13131) [003] d..2 24574.683718: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
90702  kworker/u16:10-23868 (23868) [003] d..2 24574.683738: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90703 ReferenceQueueD-13139 (13131) [003] d..2 24574.684204: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
90704 ReferenceQueueD-13139 (13131) [003] dn.3 24574.684215: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
90705 ReferenceQueueD-13139 (13131) [003] dns1 24574.684236: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
90706<...>-24113 ( 23968) [000] d..2 24574.684243: sched_switch: prev_comm=TaskSnapshotPer prev_pid=24113 prev_prio=130 prev_state=R ==> next_comm=Jit thread pool next_pid=13123 next_prio=129
90707 ReferenceQueueD-13139 (13131) [003] dns2 24574.684246: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
90708 ReferenceQueueD-13139 (13131) [003] d..2 24574.684254: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
90709     kworker/3:1-12662 (12662) [003] d..2 24574.684266: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=rcu_sched next_pid=8 next_prio=120
90710       rcu_sched-8     (    8) [003] d..2 24574.684275: sched_waking: comm=rcuos/2 pid=30 prio=120 target_cpu=001
90711       rcu_sched-8     (    8) [003] d..3 24574.684294: sched_wakeup: comm=rcuos/2 pid=30 prio=120 target_cpu=003
90712       rcu_sched-8     (    8) [003] d..2 24574.684301: 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
90713<...>-30 ( 30) [003] d..2 24574.684304: sched_waking: comm=rcuos/3 pid=38 prio=120 target_cpu=000
90714<...>-30 ( 30) [003] d..3 24574.684324: sched_wakeup: comm=rcuos/3 pid=38 prio=120 target_cpu=003
90715<...>-30 ( 30) [003] d..2 24574.684330: sched_switch: prev_comm=rcuos/2 prev_pid=30 prev_prio=120 prev_state=S ==> next_comm=rcuos/3 next_pid=38 next_prio=120
90716         rcuos/3-38    (   38) [003] d..2 24574.684339: sched_switch: prev_comm=rcuos/3 prev_pid=38 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90717 ReferenceQueueD-13139 (13131) [003] d..1 24574.684341: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
90718 ReferenceQueueD-13139 (13131) [003] d..2 24574.684345: sched_blocked_reason: pid=12662 iowait=0 caller=binder_deferred_func+0xf74/0x111c
90719 ReferenceQueueD-13139 (13131) [003] dn.2 24574.684347: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
90720 ReferenceQueueD-13139 (13131) [003] d..2 24574.684350: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
90721     kworker/3:1-12662 (12662) [003] d..2 24574.684358: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90722 ReferenceQueueD-13139 (13131) [003] d..2 24574.684389: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
90723 ReferenceQueueD-13139 (13131) [003] dn.3 24574.684394: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
90724 ReferenceQueueD-13139 (13131) [003] d..2 24574.684398: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
90725     kworker/3:1-12662 (12662) [003] d..2 24574.684404: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90726 ReferenceQueueD-13139 (13131) [003] d..2 24574.684464: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
90727 ReferenceQueueD-13139 (13131) [003] dn.3 24574.684469: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
90728          <idle>-0     (-----) [001] d.h2 24574.684474: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
90729 ReferenceQueueD-13139 (13131) [003] d..2 24574.684474: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
90730          <idle>-0     (-----) [001] dnh3 24574.684486: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
90731          <idle>-0     (-----) [001] .n.1 24574.684491: cpu_idle: state=4294967295 cpu_id=1
90732          <idle>-0     (-----) [001] dnh3 24574.684500: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
90733     kworker/3:1-12662 (12662) [003] d..2 24574.684500: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=D ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90734 Jit thread pool-13123 (13122) [000] d..1 24574.684504: sched_waking: comm=Shutdown thread pid=13122 prio=120 target_cpu=001
90735          <idle>-0     (-----) [001] dnh4 24574.684507: sched_blocked_reason: pid=12662 iowait=0 caller=rcu_exp_sel_wait_wake+0x79c/0x10b8
90736          <idle>-0     (-----) [001] dnh4 24574.684513: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
90737          <idle>-0     (-----) [001] d..2 24574.684521: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
90738 ReferenceQueueD-13139 (13131) [003] d..2 24574.684526: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=D ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
90739     kworker/3:1-12662 (12662) [003] d..2 24574.684532: sched_waking: comm=ReferenceQueueD pid=13139 prio=124 target_cpu=003
90740 Jit thread pool-13123 (13122) [000] d..2 24574.684536: sched_wakeup: comm=Shutdown thread pid=13122 prio=120 target_cpu=003
90741     kworker/3:1-12662 (12662) [003] d..3 24574.684544: sched_blocked_reason: pid=13139 iowait=0 caller=_synchronize_rcu_expedited+0x464/0x69c
90742        DispSync-23904 (23896) [001] d..1 24574.684548: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
90743     kworker/3:1-12662 (12662) [003] d..3 24574.684548: sched_wakeup: comm=ReferenceQueueD pid=13139 prio=124 target_cpu=002
90744          <idle>-0     (-----) [002] .n.1 24574.684553: cpu_idle: state=4294967295 cpu_id=2
90745     kworker/3:1-12662 (12662) [003] d..2 24574.684555: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=Shutdown thread next_pid=13122 next_prio=120
90746          <idle>-0     (-----) [002] d..2 24574.684563: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90747        DispSync-23904 (23896) [001] d..2 24574.684569: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
90748 ReferenceQueueD-13139 (13131) [002] d..2 24574.684575: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
90749 Jit thread pool-13123 (13122) [000] d..2 24574.684581: sched_switch: prev_comm=Jit thread pool prev_pid=13123 prev_prio=129 prev_state=x ==> next_comm=TaskSnapshotPer next_pid=24113 next_prio=130
90750        DispSync-23904 (23896) [001] d..2 24574.684602: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
90751          <idle>-0     (-----) [001] d..1 24574.684608: cpu_idle: state=0 cpu_id=1
90752  appEventThread-23905 (23896) [002] d..3 24574.684638: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=005
90753  appEventThread-23905 (23896) [002] d..4 24574.684660: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
90754          <idle>-0     (-----) [001] .n.1 24574.684665: cpu_idle: state=4294967295 cpu_id=1
90755 Shutdown thread-13122 (13122) [003] d..2 24574.684668: sched_waking: comm=Signal Catcher pid=13124 prio=120 target_cpu=000
90756          <idle>-0     (-----) [001] d..2 24574.684703: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
90757  appEventThread-23905 (23896) [002] d.h3 24574.684703: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
90758  appEventThread-23905 (23896) [002] d.h4 24574.684718: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
90759 Shutdown thread-13122 (13122) [003] d..3 24574.684720: sched_wakeup: comm=Signal Catcher pid=13124 prio=120 target_cpu=002
90760 s.nexuslauncher-24827 (24827) [001] d..2 24574.684728: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
90761  appEventThread-23905 (23896) [002] d..3 24574.684733: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
90762 Shutdown thread-13122 (13122) [003] d..2 24574.684739: sched_switch: prev_comm=Shutdown thread prev_pid=13122 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
90763         sugov:0-559   (  559) [001] d..2 24574.684740: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
90764  appEventThread-23905 (23896) [002] d..4 24574.684751: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
90765          <idle>-0     (-----) [003] d..2 24574.684757: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
90766  appEventThread-23905 (23896) [002] d..2 24574.684775: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Signal Catcher next_pid=13124 next_prio=120
90767  Signal Catcher-13124 (13122) [002] d..1 24574.684893: sched_waking: comm=Shutdown thread pid=13122 prio=120 target_cpu=003
90768  Signal Catcher-13124 (13122) [002] d..2 24574.684912: sched_wakeup: comm=Shutdown thread pid=13122 prio=120 target_cpu=002
90769 s.nexuslauncher-24827 (24827) [001] .... 24574.684926: binder_transaction: transaction=1671030 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
90770  Signal Catcher-13124 (13122) [002] d..2 24574.684933: sched_switch: prev_comm=Signal Catcher prev_pid=13124 prev_prio=120 prev_state=x ==> next_comm=Shutdown thread next_pid=13122 next_prio=120
90771 s.nexuslauncher-24827 (24827) [001] d..4 24574.684937: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
90772          <idle>-0     (-----) [005] dnh2 24574.684985: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
90773<...>-24151 ( 24151) [003] .... 24574.684987: binder_transaction: transaction=1671031 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
90774          <idle>-0     (-----) [005] .n.1 24574.684988: cpu_idle: state=4294967295 cpu_id=5
90775<...>-24151 ( 24151) [003] d..4 24574.684993: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=002
90776          <idle>-0     (-----) [005] d..2 24574.684994: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
90777          <idle>-0     (-----) [006] dnh2 24574.685043: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=006
90778  Binder:23896_5-25989 (23896) [005] .... 24574.685044: binder_transaction_received: transaction=1671030
90779          <idle>-0     (-----) [006] .n.1 24574.685046: cpu_idle: state=4294967295 cpu_id=6
90780          <idle>-0     (-----) [006] d..2 24574.685051: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
90781  Binder:23896_4-24423 (23896) [006] .... 24574.685055: binder_transaction_received: transaction=1671031
90782 s.nexuslauncher-24827 (24827) [001] d..2 24574.685059: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90783  Binder:23896_5-25989 (23896) [005] d..1 24574.685064: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
90784  Binder:23896_4-24423 (23896) [006] d..2 24574.685077: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
90785  Binder:23896_5-25989 (23896) [005] d..1 24574.685078: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=006
90786          <idle>-0     (-----) [006] d..1 24574.685082: cpu_idle: state=0 cpu_id=6
90787 ReferenceQueueD-13139 (13131) [001] dnh2 24574.685083: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
90788  Binder:23896_5-25989 (23896) [005] d..2 24574.685088: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=006
90789 ReferenceQueueD-13139 (13131) [001] d..2 24574.685089: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
90790          <idle>-0     (-----) [006] .n.1 24574.685092: cpu_idle: state=4294967295 cpu_id=6
90791<...>-24151 ( 24151) [003] d..2 24574.685094: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
90792          <idle>-0     (-----) [006] d..2 24574.685096: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
90793  Binder:23896_4-24423 (23896) [006] d..2 24574.685104: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
90794          <idle>-0     (-----) [003] d..1 24574.685105: cpu_idle: state=0 cpu_id=3
90795  Binder:23896_5-25989 (23896) [005] d..2 24574.685106: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
90796          <idle>-0     (-----) [006] d..1 24574.685108: cpu_idle: state=0 cpu_id=6
90797  appEventThread-23905 (23896) [001] d..1 24574.685109: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=006
90798          <idle>-0     (-----) [005] d..1 24574.685113: cpu_idle: state=0 cpu_id=5
90799          <idle>-0     (-----) [006] dnh2 24574.685123: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=006
90800          <idle>-0     (-----) [006] .n.1 24574.685126: cpu_idle: state=4294967295 cpu_id=6
90801  appEventThread-23905 (23896) [001] d..2 24574.685128: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90802          <idle>-0     (-----) [006] d..2 24574.685130: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
90803  Binder:23896_4-24423 (23896) [006] d..1 24574.685133: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
90804 ReferenceQueueD-13139 (13131) [001] dnh2 24574.685146: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
90805 ReferenceQueueD-13139 (13131) [001] d..2 24574.685152: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
90806  Binder:23896_4-24423 (23896) [006] d..2 24574.685154: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
90807          <idle>-0     (-----) [006] d..1 24574.685159: cpu_idle: state=0 cpu_id=6
90808  appEventThread-23905 (23896) [001] d..2 24574.685166: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90809 ReferenceQueueD-13139 (13131) [001] d..2 24574.685252: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
90810 ReferenceQueueD-13139 (13131) [001] dn.3 24574.685262: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
90811 ReferenceQueueD-13139 (13131) [001] d..2 24574.685266: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
90812     kworker/1:1-13091 (13091) [001] d..2 24574.685313: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90813          <idle>-0     (-----) [006] ...1 24574.685351: cpu_idle: state=4294967295 cpu_id=6
90814          <idle>-0     (-----) [006] d..1 24574.685354: cpu_idle: state=0 cpu_id=6
90815 ReferenceQueueD-13139 (13131) [001] d..3 24574.685471: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
90816 ReferenceQueueD-13139 (13131) [001] dn.4 24574.685488: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
90817 ReferenceQueueD-13139 (13131) [001] d..2 24574.685493: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
90818 kgsl_worker_thr-246   (  246) [001] d..2 24574.685504: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90819          <idle>-0     (-----) [003] ...1 24574.686344: cpu_idle: state=4294967295 cpu_id=3
90820          <idle>-0     (-----) [003] d..1 24574.686347: cpu_idle: state=0 cpu_id=3
90821 Shutdown thread-13122 (13122) [002] d.s1 24574.687573: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
90822 ReferenceQueueD-13139 (13131) [001] d.s3 24574.687577: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
90823 Shutdown thread-13122 (13122) [002] d.s2 24574.687607: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
90824 ReferenceQueueD-13139 (13131) [001] dns4 24574.687611: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
90825 ReferenceQueueD-13139 (13131) [001] d..2 24574.687627: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
90826     rcu_preempt-7     (    7) [001] d..2 24574.687643: 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
90827  kworker/u16:10-23868 (23868) [001] d..2 24574.687882: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90828          <idle>-0     (-----) [003] d.s3 24574.687925: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
90829          <idle>-0     (-----) [003] d.s4 24574.687938: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
90830          <idle>-0     (-----) [003] dns4 24574.687941: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
90831          <idle>-0     (-----) [003] .n.1 24574.687946: cpu_idle: state=4294967295 cpu_id=3
90832          <idle>-0     (-----) [003] d..2 24574.687953: 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
90833  kworker/u16:10-23868 (23868) [003] .... 24574.687985: clk_set_rate: l3_cluster1_vote_clk 300000000
90834  kworker/u16:10-23868 (23868) [003] d..2 24574.688077: 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
90835          <idle>-0     (-----) [003] d..1 24574.688085: cpu_idle: state=0 cpu_id=3
90836 ReferenceQueueD-13139 (13131) [001] d.h1 24574.688483: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
90837 ReferenceQueueD-13139 (13131) [001] dnh2 24574.688494: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
90838 ReferenceQueueD-13139 (13131) [001] d..2 24574.688501: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=DispSync next_pid=23904 next_prio=97
90839        DispSync-23904 (23896) [001] d..1 24574.688522: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
90840        DispSync-23904 (23896) [001] d..2 24574.688538: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
90841          <idle>-0     (-----) [003] .n.1 24574.688543: cpu_idle: state=4294967295 cpu_id=3
90842          <idle>-0     (-----) [003] d..2 24574.688549: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
90843        DispSync-23904 (23896) [001] d..2 24574.688552: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90844   sfEventThread-23906 (23896) [003] d..3 24574.688597: sched_waking: comm=android.anim pid=24041 prio=116 target_cpu=001
90845          <idle>-0     (-----) [005] dnh2 24574.688652: sched_wakeup: comm=android.anim pid=24041 prio=116 target_cpu=005
90846   sfEventThread-23906 (23896) [003] d.h3 24574.688652: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
90847          <idle>-0     (-----) [005] .n.1 24574.688655: cpu_idle: state=4294967295 cpu_id=5
90848          <idle>-0     (-----) [005] d..2 24574.688661: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=24041 next_prio=116
90849   sfEventThread-23906 (23896) [003] d.h4 24574.688662: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
90850 ReferenceQueueD-13139 (13131) [001] d..2 24574.688667: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
90851         sugov:0-559   (  559) [001] d..2 24574.688681: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90852   sfEventThread-23906 (23896) [003] d..2 24574.688688: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
90853          <idle>-0     (-----) [003] d..1 24574.688696: cpu_idle: state=0 cpu_id=3
90854<...>-24041 ( 23968) [005] d..2 24574.688812: sched_switch: prev_comm=android.anim prev_pid=24041 prev_prio=116 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
90855          <idle>-0     (-----) [005] d..1 24574.688819: cpu_idle: state=0 cpu_id=5
90856          <idle>-0     (-----) [003] ...1 24574.689956: cpu_idle: state=4294967295 cpu_id=3
90857          <idle>-0     (-----) [003] d..1 24574.689960: cpu_idle: state=0 cpu_id=3
90858 ReferenceQueueD-13139 (13131) [001] d..2 24574.690656: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
90859 ReferenceQueueD-13139 (13131) [001] dn.3 24574.690680: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
90860 ReferenceQueueD-13139 (13131) [001] d..2 24574.690685: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
90861  kworker/u16:10-23868 (23868) [001] d.s3 24574.690904: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
90862  kworker/u16:10-23868 (23868) [001] d.s4 24574.690912: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
90863  kworker/u16:10-23868 (23868) [001] d..2 24574.690964: 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
90864     rcu_preempt-7     (    7) [001] d..2 24574.690970: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
90865     rcu_preempt-7     (    7) [001] d..3 24574.690982: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
90866     rcu_preempt-7     (    7) [001] d..2 24574.690992: 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
90867         rcuop/2-29    (   29) [001] d..2 24574.690997: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
90868         rcuop/2-29    (   29) [001] d..3 24574.691020: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
90869         rcuop/2-29    (   29) [001] d..2 24574.691120: 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
90870         rcuop/3-37    (   37) [001] d..2 24574.691167: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90871 ReferenceQueueD-13139 (13131) [001] d..2 24574.691301: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
90872 ReferenceQueueD-13139 (13131) [001] dn.3 24574.691324: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
90873 ReferenceQueueD-13139 (13131) [001] d..2 24574.691329: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=adbd next_pid=1007 next_prio=120
90874            adbd-1007  ( 1007) [001] d..2 24574.691637: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90875 ReferenceQueueD-13139 (13131) [001] d..2 24574.691727: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
90876 ReferenceQueueD-13139 (13131) [001] dn.3 24574.691738: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
90877 ReferenceQueueD-13139 (13131) [001] d..2 24574.691744: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
90878     kworker/1:1-13091 (13091) [001] d..4 24574.691799: sched_waking: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=001
90879     kworker/1:1-13091 (13091) [001] d..5 24574.691819: sched_wakeup: comm=Binder:23968_16 pid=12589 prio=120 target_cpu=003
90880          <idle>-0     (-----) [003] .n.1 24574.691823: cpu_idle: state=4294967295 cpu_id=3
90881     kworker/1:1-13091 (13091) [001] d..4 24574.691826: sched_waking: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=006
90882          <idle>-0     (-----) [003] d..2 24574.691831: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_16 next_pid=12589 next_prio=120
90883     kworker/1:1-13091 (13091) [001] d..4 24574.691842: sched_waking: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=003
90884          <idle>-0     (-----) [006] dnh2 24574.691843: sched_wakeup: comm=Binder:23968_5 pid=24233 prio=120 target_cpu=006
90885          <idle>-0     (-----) [006] .n.1 24574.691851: cpu_idle: state=4294967295 cpu_id=6
90886          <idle>-0     (-----) [006] d..2 24574.691859: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=120
90887     kworker/1:1-13091 (13091) [001] d.h5 24574.692005: sched_waking: comm=logd.klogd pid=573 prio=130 target_cpu=001
90888          <idle>-0     (-----) [007] dnh2 24574.692011: sched_wakeup: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=007
90889          <idle>-0     (-----) [007] .n.1 24574.692015: cpu_idle: state=4294967295 cpu_id=7
90890     kworker/1:1-13091 (13091) [001] d.h6 24574.692017: sched_wakeup: comm=logd.klogd pid=573 prio=130 target_cpu=001
90891          <idle>-0     (-----) [007] d..2 24574.692021: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_8 next_pid=24659 next_prio=120
90892     kworker/1:1-13091 (13091) [001] d.h5 24574.692021: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
90893     kworker/1:1-13091 (13091) [001] dnh6 24574.692028: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
90894<...>-12589 ( 23968) [003] d..3 24574.692032: sched_waking: comm=Binder:23968_C pid=25014 prio=120 target_cpu=003
90895     kworker/1:1-13091 (13091) [001] d..2 24574.692033: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
90896         sugov:0-559   (  559) [001] d..2 24574.692041: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=logd.klogd next_pid=573 next_prio=130
90897<...>-12589 ( 23968) [003] d..4 24574.692095: sched_wakeup: comm=Binder:23968_C pid=25014 prio=120 target_cpu=003
90898  Binder:23968_5-24233 (23968) [006] d..1 24574.692328: sched_waking: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=007
90899<...>-24659 ( 23968) [007] d..2 24574.692336: sched_switch: prev_comm=Binder:23968_8 prev_pid=24659 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
90900          <idle>-0     (-----) [007] d..1 24574.692347: cpu_idle: state=0 cpu_id=7
90901  Binder:23968_5-24233 (23968) [006] d..2 24574.692396: sched_wakeup: comm=Binder:23968_8 pid=24659 prio=120 target_cpu=007
90902      logd.klogd-573   (  555) [001] d..2 24574.692401: sched_switch: prev_comm=logd.klogd prev_pid=573 prev_prio=130 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
90903          <idle>-0     (-----) [007] .n.1 24574.692404: cpu_idle: state=4294967295 cpu_id=7
90904          <idle>-0     (-----) [007] d..2 24574.692422: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23968_8 next_pid=24659 next_prio=120
90905     kworker/1:1-13091 (13091) [001] d..4 24574.692423: sched_waking: comm=Binder:23968_13 pid=27744 prio=120 target_cpu=003
90906     kworker/1:1-13091 (13091) [001] d..5 24574.692512: sched_wakeup: comm=Binder:23968_13 pid=27744 prio=120 target_cpu=003
90907     kworker/1:1-13091 (13091) [001] d..4 24574.692535: sched_waking: comm=Binder:23968_14 pid=27763 prio=120 target_cpu=003
90908     kworker/1:1-13091 (13091) [001] d..5 24574.692554: sched_wakeup: comm=Binder:23968_14 pid=27763 prio=120 target_cpu=003
90909<...>-12589 ( 23968) [003] d..3 24574.692589: sched_waking: comm=Binder:23968_7 pid=24238 prio=120 target_cpu=001
90910<...>-12589 ( 23968) [003] d..4 24574.692618: sched_wakeup: comm=Binder:23968_7 pid=24238 prio=120 target_cpu=001
90911<...>-24659 ( 23968) [007] d..3 24574.692626: sched_waking: comm=GraphicsStats-d pid=24104 prio=130 target_cpu=001
90912     kworker/1:1-13091 (13091) [001] d..5 24574.692629: sched_waking: comm=Binder:23968_4 pid=24097 prio=120 target_cpu=002
90913<...>-24659 ( 23968) [007] d.h1 24574.692666: sched_wakeup: comm=Binder:23968_4 pid=24097 prio=120 target_cpu=007
90914     kworker/1:1-13091 (13091) [001] d.h5 24574.692666: sched_wakeup: comm=GraphicsStats-d pid=24104 prio=130 target_cpu=001
90915     kworker/1:1-13091 (13091) [001] d.h6 24574.692696: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
90916     kworker/1:1-13091 (13091) [001] d.h7 24574.692711: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
90917<...>-12589 ( 23968) [003] d..3 24574.692718: sched_waking: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=003
90918<...>-24113 ( 23968) [000] d..2 24574.692726: sched_switch: prev_comm=TaskSnapshotPer prev_pid=24113 prev_prio=130 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
90919         sugov:0-559   (  559) [000] d..2 24574.692739: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=24113 next_prio=130
90920<...>-12589 ( 23968) [003] d..4 24574.692742: sched_wakeup: comm=Binder:23968_1 pid=23981 prio=120 target_cpu=003
90921     kworker/1:1-13091 (13091) [001] d..5 24574.692746: sched_waking: comm=Binder:23968_A pid=24688 prio=120 target_cpu=002
90922  Binder:23968_5-24233 (23968) [006] .... 24574.692788: binder_transaction: transaction=1671032 dest_node=1669233 dest_proc=24133 dest_thread=0 reply=0 flags=0x11 code=0x9
90923     kworker/1:1-13091 (13091) [001] d..5 24574.692788: sched_waking: comm=Binder:23968_D pid=25817 prio=120 target_cpu=003
90924<...>-24659 ( 23968) [007] d.h1 24574.692788: sched_wakeup: comm=Binder:23968_A pid=24688 prio=120 target_cpu=007
90925  Binder:23968_5-24233 (23968) [006] d.h2 24574.692852: sched_wakeup: comm=Binder:23968_D pid=25817 prio=120 target_cpu=006
90926     kworker/1:1-13091 (13091) [001] d..5 24574.692854: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=006
90927  Binder:23968_5-24233 (23968) [006] d..4 24574.692856: sched_waking: comm=Binder:24133_7 pid=12580 prio=120 target_cpu=000
90928     kworker/1:1-13091 (13091) [001] d..5 24574.692868: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
90929  Binder:23968_5-24233 (23968) [006] d..3 24574.692871: sched_waking: comm=Binder:23968_2 pid=23982 prio=120 target_cpu=002
90930<...>-24113 ( 23968) [000] dnh1 24574.692874: sched_wakeup: comm=Binder:24133_7 pid=12580 prio=120 target_cpu=000
90931          <idle>-0     (-----) [005] dnh2 24574.692874: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
90932     kworker/1:1-13091 (13091) [001] d..5 24574.692879: sched_waking: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=002
90933<...>-24113 ( 23968) [000] d..2 24574.692879: sched_switch: prev_comm=TaskSnapshotPer prev_pid=24113 prev_prio=130 prev_state=R ==> next_comm=Binder:24133_7 next_pid=12580 next_prio=120
90934          <idle>-0     (-----) [005] dnh2 24574.692881: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
90935          <idle>-0     (-----) [005] .n.1 24574.692884: cpu_idle: state=4294967295 cpu_id=5
90936  Binder:24133_7-12580 (24133) [000] .... 24574.692889: binder_transaction_received: transaction=1671032
90937          <idle>-0     (-----) [005] d..2 24574.692890: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
90938<...>-12589 ( 23968) [003] d..3 24574.692892: sched_waking: comm=Binder:23968_3 pid=24096 prio=120 target_cpu=003
90939 Shutdown thread-13122 (13122) [002] dnh2 24574.692901: sched_wakeup: comm=Binder:23968_2 pid=23982 prio=120 target_cpu=002
90940          <idle>-0     (-----) [004] dnh2 24574.692904: sched_wakeup: comm=Binder:23896_3 pid=23986 prio=120 target_cpu=004
90941  Binder:23968_5-24233 (23968) [006] d..3 24574.692915: sched_waking: comm=putmethod.latin pid=24133 prio=120 target_cpu=000
90942          <idle>-0     (-----) [004] .n.1 24574.692925: cpu_idle: state=4294967295 cpu_id=4
90943 Shutdown thread-13122 (13122) [002] d..2 24574.692929: sched_switch: prev_comm=Shutdown thread prev_pid=13122 prev_prio=120 prev_state=R+ ==> next_comm=Binder:23968_2 next_pid=23982 next_prio=120
90944          <idle>-0     (-----) [004] d..2 24574.692929: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_3 next_pid=23986 next_prio=120
90945  Binder:23968_5-24233 (23968) [006] d.h2 24574.692966: sched_wakeup: comm=Binder:23968_3 pid=24096 prio=120 target_cpu=006
90946     kworker/1:1-13091 (13091) [001] d.h4 24574.692966: sched_wakeup: comm=putmethod.latin pid=24133 prio=120 target_cpu=001
90947  Binder:23896_3-23986 (23896) [004] d..2 24574.692972: sched_switch: prev_comm=Binder:23896_3 prev_pid=23986 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
90948<...>-24659 ( 23968) [007] d..3 24574.692974: sched_waking: comm=Binder:23968_6 pid=24235 prio=120 target_cpu=002
90949  Binder:23896_5-25989 (23896) [004] d..2 24574.692978: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
90950          <idle>-0     (-----) [004] d..1 24574.692983: cpu_idle: state=0 cpu_id=4
90951  Binder:23896_4-24423 (23896) [005] d..2 24574.692998: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
90952  Binder:23968_2-23982 (23968) [002] d.h2 24574.693001: sched_wakeup: comm=Binder:23968_6 pid=24235 prio=120 target_cpu=002
90953     kworker/1:1-13091 (13091) [001] d..2 24574.693001: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_7 next_pid=24238 next_prio=120
90954          <idle>-0     (-----) [005] d..1 24574.693004: cpu_idle: state=0 cpu_id=5
90955<...>-24238 ( 23968) [001] d..2 24574.693012: sched_switch: prev_comm=Binder:23968_7 prev_pid=24238 prev_prio=120 prev_state=S ==> next_comm=GraphicsStats-d next_pid=24104 next_prio=130
90956<...>-24659 ( 23968) [007] d..2 24574.693012: sched_switch: prev_comm=Binder:23968_8 prev_pid=24659 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_4 next_pid=24097 next_prio=120
90957  Binder:23968_5-24233 (23968) [006] d..2 24574.693014: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=116 prev_state=R+ ==> next_comm=Binder:23968_D next_pid=25817 next_prio=120
90958<...>-24097 ( 23968) [007] d..2 24574.693019: sched_switch: prev_comm=Binder:23968_4 prev_pid=24097 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_A next_pid=24688 next_prio=120
90959  Binder:23968_D-25817 (23968) [006] d..2 24574.693022: sched_switch: prev_comm=Binder:23968_D prev_pid=25817 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_3 next_pid=24096 next_prio=120
90960<...>-12589 ( 23968) [003] d..2 24574.693028: sched_switch: prev_comm=Binder:23968_16 prev_pid=12589 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_C next_pid=25014 next_prio=120
90961<...>-24096 ( 23968) [006] d..2 24574.693028: sched_switch: prev_comm=Binder:23968_3 prev_pid=24096 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_5 next_pid=24233 next_prio=116
90962  Binder:23968_A-24688 (23968) [007] d..2 24574.693029: sched_switch: prev_comm=Binder:23968_A prev_pid=24688 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
90963  Binder:23968_C-25014 (23968) [003] d..2 24574.693036: sched_switch: prev_comm=Binder:23968_C prev_pid=25014 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_13 next_pid=27744 next_prio=120
90964          <idle>-0     (-----) [007] d..1 24574.693039: cpu_idle: state=0 cpu_id=7
90965<...>-27744 ( 23968) [003] d..2 24574.693044: sched_switch: prev_comm=Binder:23968_13 prev_pid=27744 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_14 next_pid=27763 next_prio=120
90966<...>-27763 ( 23968) [003] d..2 24574.693051: sched_switch: prev_comm=Binder:23968_14 prev_pid=27763 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_1 next_pid=23981 next_prio=120
90967  Binder:23968_2-23982 (23968) [002] d..2 24574.693053: sched_switch: prev_comm=Binder:23968_2 prev_pid=23982 prev_prio=120 prev_state=S ==> next_comm=Binder:23968_6 next_pid=24235 next_prio=120
90968  Binder:23968_6-24235 (23968) [002] d..2 24574.693062: sched_switch: prev_comm=Binder:23968_6 prev_pid=24235 prev_prio=120 prev_state=S ==> next_comm=Shutdown thread next_pid=13122 next_prio=120
90969  Binder:23968_1-23981 (23968) [003] d..2 24574.693065: sched_switch: prev_comm=Binder:23968_1 prev_pid=23981 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
90970          <idle>-0     (-----) [003] d..1 24574.693073: cpu_idle: state=0 cpu_id=3
90971  Binder:23968_5-24233 (23968) [006] d..3 24574.693078: sched_waking: comm=android.display pid=24003 prio=117 target_cpu=000
90972          <idle>-0     (-----) [003] dnh2 24574.693102: sched_wakeup: comm=android.display pid=24003 prio=117 target_cpu=003
90973          <idle>-0     (-----) [003] .n.1 24574.693106: cpu_idle: state=4294967295 cpu_id=3
90974          <idle>-0     (-----) [003] d..2 24574.693113: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=24003 next_prio=117
90975  Binder:23968_5-24233 (23968) [006] d..5 24574.693131: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
90976  Binder:24133_7-12580 (24133) [000] d..2 24574.693133: sched_switch: prev_comm=Binder:24133_7 prev_pid=12580 prev_prio=120 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=24113 next_prio=130
90977  Binder:23968_5-24233 (23968) [006] d..6 24574.693141: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
90978          <idle>-0     (-----) [005] .n.1 24574.693145: cpu_idle: state=4294967295 cpu_id=5
90979          <idle>-0     (-----) [005] d..2 24574.693151: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
90980  Binder:23968_5-24233 (23968) [006] d..2 24574.693161: sched_switch: prev_comm=Binder:23968_5 prev_pid=24233 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
90981          <idle>-0     (-----) [006] d..1 24574.693170: cpu_idle: state=0 cpu_id=6
90982  Binder:23896_4-24423 (23896) [005] d..2 24574.693173: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
90983          <idle>-0     (-----) [005] d..1 24574.693178: cpu_idle: state=0 cpu_id=5
90984<...>-24003 ( 23968) [003] d..2 24574.693235: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
90985<...>-24003 ( 23968) [003] d..3 24574.693252: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=003
90986<...>-24003 ( 23968) [003] d..2 24574.693333: sched_switch: prev_comm=android.display prev_pid=24003 prev_prio=117 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
90987     logd.writer-563   (  555) [003] d..2 24574.693417: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
90988          <idle>-0     (-----) [003] d..1 24574.693426: cpu_idle: state=0 cpu_id=3
90989 GraphicsStats-d-24104 (23968) [001] d..2 24574.694090: sched_switch: prev_comm=GraphicsStats-d prev_pid=24104 prev_prio=130 prev_state=S ==> next_comm=putmethod.latin next_pid=24133 next_prio=120
90990 putmethod.latin-24133 (24133) [001] d.s2 24574.694238: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
90991 putmethod.latin-24133 (24133) [001] d.s3 24574.694249: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
90992 putmethod.latin-24133 (24133) [001] d..2 24574.694293: sched_switch: prev_comm=putmethod.latin prev_pid=24133 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
90993  kworker/u16:10-23868 (23868) [001] d..2 24574.694445: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
90994          <idle>-0     (-----) [003] d.s3 24574.694483: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
90995          <idle>-0     (-----) [003] d.s4 24574.694498: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
90996          <idle>-0     (-----) [003] dns4 24574.694501: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
90997          <idle>-0     (-----) [003] .n.1 24574.694506: cpu_idle: state=4294967295 cpu_id=3
90998          <idle>-0     (-----) [003] d..2 24574.694513: 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
90999  kworker/u16:10-23868 (23868) [003] d..2 24574.694536: 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
91000          <idle>-0     (-----) [003] d..1 24574.694542: cpu_idle: state=0 cpu_id=3
91001 ReferenceQueueD-13139 (13131) [001] d..3 24574.694791: sched_waking: comm=main pid=23897 prio=120 target_cpu=000
91002 ReferenceQueueD-13139 (13131) [001] dn.4 24574.694832: sched_wakeup: comm=main pid=23897 prio=120 target_cpu=001
91003 ReferenceQueueD-13139 (13131) [001] d..2 24574.694838: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=R+ ==> next_comm=main next_pid=23897 next_prio=120
91004            main-23897 (23897) [001] d..2 24574.695568: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=003
91005            main-23897 (23897) [001] d..3 24574.695595: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
91006            main-23897 (23897) [001] d..2 24574.695662: sched_switch: prev_comm=main prev_pid=23897 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
91007     logd.writer-563   (  555) [001] d..2 24574.695794: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=ReferenceQueueD next_pid=13139 next_prio=124
91008 ReferenceQueueD-13139 (13131) [001] d..2 24574.695814: sched_switch: prev_comm=ReferenceQueueD prev_pid=13139 prev_prio=124 prev_state=x ==> next_comm=swapper/1 next_pid=0 next_prio=120
91009          <idle>-0     (-----) [001] d..1 24574.695836: cpu_idle: state=0 cpu_id=1
91010          <idle>-0     (-----) [001] d.s2 24574.697580: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
91011<...>-24113 ( 23968) [000] d.h2 24574.697588: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
91012<...>-24113 ( 23968) [000] dnh3 24574.697606: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
91013          <idle>-0     (-----) [001] dns3 24574.697615: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
91014          <idle>-0     (-----) [001] dns3 24574.697627: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
91015          <idle>-0     (-----) [001] dns4 24574.697814: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
91016<...>-24113 ( 23968) [000] dnH2 24574.697815: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
91017          <idle>-0     (-----) [003] ...1 24574.697822: cpu_idle: state=4294967295 cpu_id=3
91018          <idle>-0     (-----) [003] d..1 24574.697825: cpu_idle: state=0 cpu_id=3
91019<...>-24113 ( 23968) [000] dnH2 24574.697827: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
91020          <idle>-0     (-----) [001] .n.1 24574.697827: cpu_idle: state=4294967295 cpu_id=1
91021          <idle>-0     (-----) [004] dnh2 24574.697831: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
91022          <idle>-0     (-----) [001] d..2 24574.697833: 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
91023          <idle>-0     (-----) [004] .n.1 24574.697834: cpu_idle: state=4294967295 cpu_id=4
91024          <idle>-0     (-----) [004] d..2 24574.697838: 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
91025<...>-24113 ( 23968) [000] dnH3 24574.697841: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
91026          <idle>-0     (-----) [003] .n.1 24574.697845: cpu_idle: state=4294967295 cpu_id=3
91027     rcu_preempt-7     (    7) [001] d..2 24574.697848: 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
91028<...>-24113 ( 23968) [000] d..2 24574.697849: sched_switch: prev_comm=TaskSnapshotPer prev_pid=24113 prev_prio=130 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
91029          <idle>-0     (-----) [003] d..2 24574.697852: 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
91030         sugov:4-560   (  560) [004] .... 24574.697859: clk_set_rate: perfcl_clk 1056000000
91031         sugov:4-560   (  560) [004] .... 24574.697861: clk_set_rate: cpu7_perfcl_clk 1363200000
91032         sugov:0-559   (  559) [003] d..2 24574.697866: 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
91033         sugov:4-560   (  560) [004] .... 24574.697867: clk_set_rate: cpu6_perfcl_clk 1363200000
91034          <idle>-0     (-----) [003] d..1 24574.697871: cpu_idle: state=0 cpu_id=3
91035         sugov:4-560   (  560) [004] .... 24574.697872: clk_set_rate: cpu5_perfcl_clk 1363200000
91036          <idle>-0     (-----) [006] .n.1 24574.697876: cpu_idle: state=4294967295 cpu_id=6
91037         sugov:4-560   (  560) [004] .... 24574.697876: clk_set_rate: cpu4_perfcl_clk 1056000000
91038         sugov:4-560   (  560) [004] .... 24574.697883: cpu_frequency: state=1056000 cpu_id=4
91039         sugov:4-560   (  560) [004] .... 24574.697899: cpu_frequency: state=1056000 cpu_id=5
91040          <idle>-0     (-----) [006] d..2 24574.697900: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=24113 next_prio=130
91041         sugov:4-560   (  560) [004] .... 24574.697903: cpu_frequency: state=1056000 cpu_id=6
91042         sugov:4-560   (  560) [004] .... 24574.697905: cpu_frequency: state=1056000 cpu_id=7
91043     migration/0-13    (   13) [000] d..2 24574.697918: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91044         sugov:4-560   (  560) [004] d..2 24574.697922: 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
91045          <idle>-0     (-----) [004] d..1 24574.697936: cpu_idle: state=0 cpu_id=4
91046          <idle>-0     (-----) [000] d..1 24574.697940: cpu_idle: state=0 cpu_id=0
91047  kworker/u16:10-23868 (23868) [001] .... 24574.698015: clk_set_rate: l3_cluster1_vote_clk 576000000
91048  kworker/u16:10-23868 (23868) [001] d..2 24574.698218: 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
91049          <idle>-0     (-----) [001] d..1 24574.698234: cpu_idle: state=0 cpu_id=1
91050          <idle>-0     (-----) [003] d.s3 24574.698236: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
91051          <idle>-0     (-----) [003] d.s4 24574.698246: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
91052          <idle>-0     (-----) [003] d.s4 24574.698256: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
91053          <idle>-0     (-----) [001] .n.1 24574.698261: cpu_idle: state=4294967295 cpu_id=1
91054          <idle>-0     (-----) [003] ...1 24574.698264: cpu_idle: state=4294967295 cpu_id=3
91055          <idle>-0     (-----) [003] d..1 24574.698268: cpu_idle: state=0 cpu_id=3
91056          <idle>-0     (-----) [001] d..2 24574.698268: 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
91057  kworker/u16:10-23868 (23868) [001] d..2 24574.698323: 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
91058          <idle>-0     (-----) [001] d..1 24574.698329: cpu_idle: state=0 cpu_id=1
91059          <idle>-0     (-----) [000] ...1 24574.699372: cpu_idle: state=4294967295 cpu_id=0
91060          <idle>-0     (-----) [000] d..1 24574.699376: cpu_idle: state=0 cpu_id=0
91061          <idle>-0     (-----) [003] ...1 24574.699624: cpu_idle: state=4294967295 cpu_id=3
91062          <idle>-0     (-----) [003] d..1 24574.699626: cpu_idle: state=0 cpu_id=3
91063          <idle>-0     (-----) [001] d.h2 24574.700944: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
91064          <idle>-0     (-----) [001] dnh3 24574.700960: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
91065          <idle>-0     (-----) [001] .n.1 24574.700966: cpu_idle: state=4294967295 cpu_id=1
91066          <idle>-0     (-----) [001] d..2 24574.700975: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
91067        DispSync-23904 (23896) [001] d..1 24574.701006: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
91068        DispSync-23904 (23896) [001] d..2 24574.701024: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
91069          <idle>-0     (-----) [000] .n.1 24574.701028: cpu_idle: state=4294967295 cpu_id=0
91070          <idle>-0     (-----) [000] d..2 24574.701036: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
91071        DispSync-23904 (23896) [001] d..2 24574.701055: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
91072          <idle>-0     (-----) [001] d..1 24574.701063: cpu_idle: state=0 cpu_id=1
91073  appEventThread-23905 (23896) [000] d..3 24574.701110: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
91074  appEventThread-23905 (23896) [000] d..4 24574.701131: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
91075          <idle>-0     (-----) [001] .n.1 24574.701137: cpu_idle: state=4294967295 cpu_id=1
91076          <idle>-0     (-----) [001] d..2 24574.701144: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
91077  appEventThread-23905 (23896) [000] d..3 24574.701148: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
91078  appEventThread-23905 (23896) [000] d..4 24574.701162: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
91079          <idle>-0     (-----) [003] .n.1 24574.701167: cpu_idle: state=4294967295 cpu_id=3
91080          <idle>-0     (-----) [003] d..2 24574.701176: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
91081  appEventThread-23905 (23896) [000] d..2 24574.701189: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91082          <idle>-0     (-----) [000] d..1 24574.701199: cpu_idle: state=0 cpu_id=0
91083 s.nexuslauncher-24827 (24827) [001] .... 24574.701423: binder_transaction: transaction=1671033 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
91084<...>-24151 ( 24151) [003] .... 24574.701423: binder_transaction: transaction=1671034 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
91085<...>-24151 ( 24151) [003] d..4 24574.701439: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
91086<...>-24151 ( 24151) [003] d..5 24574.701463: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
91087          <idle>-0     (-----) [000] .n.1 24574.701468: cpu_idle: state=4294967295 cpu_id=0
91088          <idle>-0     (-----) [000] d..2 24574.701502: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
91089<...>-24151 ( 24151) [003] d.h5 24574.701502: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
91090<...>-24151 ( 24151) [003] d.h5 24574.701511: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
91091          <idle>-0     (-----) [004] dnh2 24574.701517: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
91092<...>-24151 ( 24151) [003] dnh6 24574.701518: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
91093          <idle>-0     (-----) [004] .n.1 24574.701520: cpu_idle: state=4294967295 cpu_id=4
91094 s.nexuslauncher-24827 (24827) [001] d..4 24574.701523: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=004
91095          <idle>-0     (-----) [004] d..2 24574.701524: 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
91096<...>-24151 ( 24151) [003] d..2 24574.701527: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
91097         sugov:0-559   (  559) [003] d..2 24574.701535: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
91098         sugov:4-560   (  560) [004] .... 24574.701535: clk_set_rate: perfcl_clk 1363200000
91099         sugov:4-560   (  560) [004] .... 24574.701536: clk_set_rate: cpu7_perfcl_clk 1056000000
91100         sugov:4-560   (  560) [004] .... 24574.701541: clk_set_rate: cpu6_perfcl_clk 1056000000
91101         sugov:4-560   (  560) [004] .... 24574.701546: clk_set_rate: cpu5_perfcl_clk 1056000000
91102  Binder:23896_4-24423 (23896) [000] .... 24574.701549: binder_transaction_received: transaction=1671034
91103         sugov:4-560   (  560) [004] .... 24574.701551: clk_set_rate: cpu4_perfcl_clk 1363200000
91104          <idle>-0     (-----) [005] dnh2 24574.701551: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
91105          <idle>-0     (-----) [005] .n.1 24574.701555: cpu_idle: state=4294967295 cpu_id=5
91106         sugov:4-560   (  560) [004] .... 24574.701556: cpu_frequency: state=1363200 cpu_id=4
91107         sugov:4-560   (  560) [004] .... 24574.701560: cpu_frequency: state=1363200 cpu_id=5
91108          <idle>-0     (-----) [005] d..2 24574.701561: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
91109         sugov:4-560   (  560) [004] .... 24574.701563: cpu_frequency: state=1363200 cpu_id=6
91110  Binder:23896_5-25989 (23896) [005] .... 24574.701564: binder_transaction_received: transaction=1671033
91111         sugov:4-560   (  560) [004] .... 24574.701565: cpu_frequency: state=1363200 cpu_id=7
91112  Binder:23896_4-24423 (23896) [000] d..1 24574.701574: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
91113         sugov:4-560   (  560) [004] d..2 24574.701574: 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
91114          <idle>-0     (-----) [004] d..1 24574.701579: cpu_idle: state=0 cpu_id=4
91115  Binder:23896_5-25989 (23896) [005] d..2 24574.701588: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
91116  Binder:23896_4-24423 (23896) [000] d..2 24574.701589: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
91117  Binder:23896_4-24423 (23896) [000] d..1 24574.701593: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
91118          <idle>-0     (-----) [005] d..1 24574.701595: cpu_idle: state=0 cpu_id=5
91119<...>-24151 ( 24151) [003] d..2 24574.701599: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
91120          <idle>-0     (-----) [005] dnh2 24574.701613: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
91121          <idle>-0     (-----) [005] .n.1 24574.701617: cpu_idle: state=4294967295 cpu_id=5
91122 s.nexuslauncher-24827 (24827) [001] d..2 24574.701618: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
91123          <idle>-0     (-----) [005] d..2 24574.701620: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
91124  Binder:23896_5-25989 (23896) [005] d..1 24574.701626: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
91125          <idle>-0     (-----) [001] d..1 24574.701626: cpu_idle: state=0 cpu_id=1
91126  Binder:23896_4-24423 (23896) [000] d..2 24574.701629: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91127  appEventThread-23905 (23896) [003] d..2 24574.701633: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
91128          <idle>-0     (-----) [000] d..1 24574.701639: cpu_idle: state=0 cpu_id=0
91129          <idle>-0     (-----) [000] dnh2 24574.701654: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
91130<...>-24151 ( 24151) [003] d..2 24574.701655: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
91131          <idle>-0     (-----) [000] .n.1 24574.701659: cpu_idle: state=4294967295 cpu_id=0
91132  Binder:23896_5-25989 (23896) [005] d..2 24574.701663: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
91133          <idle>-0     (-----) [000] d..2 24574.701665: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
91134          <idle>-0     (-----) [003] d..1 24574.701665: cpu_idle: state=0 cpu_id=3
91135          <idle>-0     (-----) [005] d..1 24574.701667: cpu_idle: state=0 cpu_id=5
91136  appEventThread-23905 (23896) [000] d..2 24574.701694: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91137          <idle>-0     (-----) [000] d..1 24574.701702: cpu_idle: state=0 cpu_id=0
91138          <idle>-0     (-----) [000] ...1 24574.703056: cpu_idle: state=4294967295 cpu_id=0
91139          <idle>-0     (-----) [000] d..1 24574.703058: cpu_idle: state=0 cpu_id=0
91140          <idle>-0     (-----) [001] d.s2 24574.704237: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
91141 Shutdown thread-13122 (13122) [002] d.h2 24574.704237: sched_waking: comm=ActivityManager pid=23996 prio=130 target_cpu=002
91142          <idle>-0     (-----) [001] dns3 24574.704252: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
91143 Shutdown thread-13122 (13122) [002] d.h3 24574.704256: sched_wakeup: comm=ActivityManager pid=23996 prio=130 target_cpu=002
91144          <idle>-0     (-----) [001] .n.1 24574.704260: cpu_idle: state=4294967295 cpu_id=1
91145          <idle>-0     (-----) [001] d..2 24574.704267: 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
91146     rcu_preempt-7     (    7) [001] d..2 24574.704279: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
91147     rcu_preempt-7     (    7) [001] d..3 24574.704304: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
91148     rcu_preempt-7     (    7) [001] d..2 24574.704306: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=003
91149     rcu_preempt-7     (    7) [001] d..3 24574.704325: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=001
91150     rcu_preempt-7     (    7) [001] d..2 24574.704327: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
91151     rcu_preempt-7     (    7) [001] d..3 24574.704344: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
91152     rcu_preempt-7     (    7) [001] d..2 24574.704358: 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
91153         rcuop/0-10    (   10) [001] d..2 24574.704363: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
91154         rcuop/0-10    (   10) [001] d..3 24574.704381: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
91155         rcuop/0-10    (   10) [001] d..2 24574.704480: 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
91156         rcuop/6-61    (   61) [001] d..2 24574.704484: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=002
91157         rcuop/6-61    (   61) [001] d..3 24574.704505: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=001
91158         rcuop/6-61    (   61) [001] d..2 24574.704557: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
91159         rcuop/4-45    (   45) [001] d..2 24574.704562: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
91160         rcuop/4-45    (   45) [001] d..3 24574.704572: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
91161         rcuop/4-45    (   45) [001] d..2 24574.704577: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
91162         rcuop/1-21    (   21) [001] d..2 24574.704602: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=rcuop/7 next_pid=69 next_prio=120
91163         rcuop/7-69    (   69) [001] d..2 24574.704623: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
91164         rcuop/5-53    (   53) [001] d..2 24574.704645: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
91165          <idle>-0     (-----) [001] d..1 24574.704653: cpu_idle: state=0 cpu_id=1
91166          <idle>-0     (-----) [001] d.h2 24574.704948: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
91167          <idle>-0     (-----) [001] dnh3 24574.704958: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
91168          <idle>-0     (-----) [001] .n.1 24574.704962: cpu_idle: state=4294967295 cpu_id=1
91169          <idle>-0     (-----) [001] d..2 24574.704968: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
91170        DispSync-23904 (23896) [001] d..1 24574.704990: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
91171        DispSync-23904 (23896) [001] d..2 24574.705001: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
91172          <idle>-0     (-----) [003] .n.1 24574.705006: cpu_idle: state=4294967295 cpu_id=3
91173          <idle>-0     (-----) [003] d..2 24574.705013: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
91174        DispSync-23904 (23896) [001] d..2 24574.705022: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
91175          <idle>-0     (-----) [001] d..1 24574.705028: cpu_idle: state=0 cpu_id=1
91176   sfEventThread-23906 (23896) [003] d..1 24574.705034: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
91177   sfEventThread-23906 (23896) [003] d..2 24574.705045: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
91178          <idle>-0     (-----) [001] .n.1 24574.705050: cpu_idle: state=4294967295 cpu_id=1
91179          <idle>-0     (-----) [001] d..2 24574.705055: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
91180   sfEventThread-23906 (23896) [003] d..2 24574.705061: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
91181          <idle>-0     (-----) [003] d..1 24574.705068: cpu_idle: state=0 cpu_id=3
91182        DispSync-23904 (23896) [001] d..2 24574.705069: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
91183          <idle>-0     (-----) [001] d..1 24574.705074: cpu_idle: state=0 cpu_id=1
91184 Shutdown thread-13122 (13122) [002] dns2 24574.707578: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
91185 Shutdown thread-13122 (13122) [002] dns3 24574.707610: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
91186 Shutdown thread-13122 (13122) [002] d..2 24574.707624: sched_switch: prev_comm=Shutdown thread prev_pid=13122 prev_prio=120 prev_state=R+ ==> next_comm=ActivityManager next_pid=23996 next_prio=130
91187 ActivityManager-23996 (23968) [002] d..2 24574.707864: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
91188 ActivityManager-23996 (23968) [002] d..3 24574.707893: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
91189          <idle>-0     (-----) [000] .n.1 24574.707898: cpu_idle: state=4294967295 cpu_id=0
91190          <idle>-0     (-----) [000] d..2 24574.707905: 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
91191     logd.writer-563   (  555) [000] d..2 24574.708037: 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
91192 ActivityManager-23996 (23968) [002] .... 24574.708045: cgroup_rmdir: root=1 id=139 level=2 path=/uid_10150/pid_13131
91193          <idle>-0     (-----) [000] d..1 24574.708047: cpu_idle: state=0 cpu_id=0
91194 ActivityManager-23996 (23968) [002] d..2 24574.708109: sched_switch: prev_comm=ActivityManager prev_pid=23996 prev_prio=130 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
91195  kworker/u16:10-23868 (23868) [002] d..2 24574.708341: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=Shutdown thread next_pid=13122 next_prio=120
91196          <idle>-0     (-----) [003] d.s3 24574.708383: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
91197          <idle>-0     (-----) [003] d.s4 24574.708398: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
91198          <idle>-0     (-----) [003] dns4 24574.708401: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
91199          <idle>-0     (-----) [003] .n.1 24574.708406: cpu_idle: state=4294967295 cpu_id=3
91200          <idle>-0     (-----) [003] d..2 24574.708413: 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
91201  kworker/u16:10-23868 (23868) [003] .... 24574.708459: clk_set_rate: l3_cluster1_vote_clk 940800000
91202  kworker/u16:10-23868 (23868) [003] d..2 24574.708511: 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
91203          <idle>-0     (-----) [003] d..1 24574.708518: cpu_idle: state=0 cpu_id=3
91204 Shutdown thread-13122 (13122) [002] d..2 24574.708819: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
91205 Shutdown thread-13122 (13122) [002] dn.3 24574.708831: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
91206 Shutdown thread-13122 (13122) [002] d..2 24574.708837: sched_switch: prev_comm=Shutdown thread prev_pid=13122 prev_prio=120 prev_state=R+ ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
91207     kworker/2:0-12895 (12895) [002] d..2 24574.708907: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=Shutdown thread next_pid=13122 next_prio=120
91208 Shutdown thread-13122 (13122) [002] d..2 24574.708912: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
91209 Shutdown thread-13122 (13122) [002] dn.3 24574.708917: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
91210 Shutdown thread-13122 (13122) [002] d..2 24574.708922: sched_switch: prev_comm=Shutdown thread prev_pid=13122 prev_prio=120 prev_state=R+ ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
91211     kworker/2:0-12895 (12895) [002] d..2 24574.708942: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=Shutdown thread next_pid=13122 next_prio=120
91212 Shutdown thread-13122 (13122) [002] d..3 24574.708968: sched_waking: comm=sh pid=13120 prio=120 target_cpu=000
91213 Shutdown thread-13122 (13122) [002] dn.4 24574.708991: sched_wakeup: comm=sh pid=13120 prio=120 target_cpu=002
91214 Shutdown thread-13122 (13122) [002] d..2 24574.708996: sched_switch: prev_comm=Shutdown thread prev_pid=13122 prev_prio=120 prev_state=R+ ==> next_comm=sh next_pid=13120 next_prio=120
91215          <idle>-0     (-----) [007] d.h2 24574.709049: sched_waking: comm=PowerManagerSer pid=24006 prio=116 target_cpu=007
91216          <idle>-0     (-----) [000] dnh2 24574.709073: sched_wakeup: comm=PowerManagerSer pid=24006 prio=116 target_cpu=000
91217          <idle>-0     (-----) [000] .n.1 24574.709101: cpu_idle: state=4294967295 cpu_id=0
91218          <idle>-0     (-----) [007] d.h3 24574.709104: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
91219          <idle>-0     (-----) [000] d..2 24574.709108: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=24006 next_prio=116
91220          <idle>-0     (-----) [007] d.h4 24574.709112: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
91221          <idle>-0     (-----) [007] d.h3 24574.709114: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
91222          <idle>-0     (-----) [004] .n.1 24574.709117: cpu_idle: state=4294967295 cpu_id=4
91223          <idle>-0     (-----) [004] d..2 24574.709120: 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
91224          <idle>-0     (-----) [007] ...1 24574.709123: cpu_idle: state=4294967295 cpu_id=7
91225          <idle>-0     (-----) [007] d..1 24574.709126: cpu_idle: state=0 cpu_id=7
91226          <idle>-0     (-----) [003] dnh2 24574.709128: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
91227         sugov:4-560   (  560) [004] d..2 24574.709129: 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
91228          <idle>-0     (-----) [003] .n.1 24574.709132: cpu_idle: state=4294967295 cpu_id=3
91229          <idle>-0     (-----) [004] d..1 24574.709132: cpu_idle: state=0 cpu_id=4
91230          <idle>-0     (-----) [003] d..2 24574.709137: 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
91231         sugov:0-559   (  559) [003] d..2 24574.709159: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=Shutdown thread next_pid=13122 next_prio=120
91232 Shutdown thread-13122 (13122) [003] d..2 24574.709170: sched_switch: prev_comm=Shutdown thread prev_pid=13122 prev_prio=120 prev_state=x ==> next_comm=swapper/3 next_pid=0 next_prio=120
91233          <idle>-0     (-----) [003] d..1 24574.709182: cpu_idle: state=0 cpu_id=3
91234 PowerManagerSer-24006 (23968) [000] d..2 24574.709200: sched_switch: prev_comm=PowerManagerSer prev_pid=24006 prev_prio=116 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91235          <idle>-0     (-----) [000] d..1 24574.709208: cpu_idle: state=0 cpu_id=0
91236              sh-13120 (13120) [002] d..2 24574.709824: sched_waking: comm=shell svc 13120 pid=13121 prio=120 target_cpu=004
91237              sh-13120 (13120) [002] d..3 24574.709867: sched_wakeup: comm=shell svc 13120 pid=13121 prio=120 target_cpu=000
91238          <idle>-0     (-----) [000] .n.1 24574.709871: cpu_idle: state=4294967295 cpu_id=0
91239              sh-13120 (13120) [002] d.h3 24574.709901: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
91240          <idle>-0     (-----) [000] d..2 24574.709901: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=shell svc 13120 next_pid=13121 next_prio=120
91241          <idle>-0     (-----) [004] dnh2 24574.709914: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
91242          <idle>-0     (-----) [004] .n.1 24574.709916: cpu_idle: state=4294967295 cpu_id=4
91243          <idle>-0     (-----) [004] d..2 24574.709919: 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
91244         sugov:4-560   (  560) [004] d..2 24574.709926: 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
91245          <idle>-0     (-----) [004] d..1 24574.709929: cpu_idle: state=0 cpu_id=4
91246 shell svc 13120-13121 ( 1007) [000] d..2 24574.709986: sched_switch: prev_comm=shell svc 13120 prev_pid=13121 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91247          <idle>-0     (-----) [000] d..1 24574.709995: cpu_idle: state=0 cpu_id=0
91248              sh-13120 (13120) [002] d..4 24574.710399: sched_waking: comm=shell svc 13120 pid=13121 prio=120 target_cpu=000
91249              sh-13120 (13120) [002] d..5 24574.710410: sched_wakeup: comm=shell svc 13120 pid=13121 prio=120 target_cpu=002
91250              sh-13120 (13120) [002] d..2 24574.710416: sched_switch: prev_comm=sh prev_pid=13120 prev_prio=120 prev_state=x ==> next_comm=shell svc 13120 next_pid=13121 next_prio=120
91251 shell svc 13120-13121 ( 1007) [002] d..2 24574.710490: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
91252 shell svc 13120-13121 ( 1007) [002] d..3 24574.710504: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
91253 shell svc 13120-13121 ( 1007) [002] d..2 24574.710629: sched_switch: prev_comm=shell svc 13120 prev_pid=13121 prev_prio=120 prev_state=x ==> next_comm=adbd next_pid=1007 next_prio=120
91254            adbd-1007  ( 1007) [002] d..1 24574.710734: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
91255            adbd-1007  ( 1007) [002] d..2 24574.710748: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
91256            adbd-1007  ( 1007) [002] d..2 24574.710813: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
91257          <idle>-0     (-----) [001] d.s2 24574.710904: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
91258          <idle>-0     (-----) [001] dns3 24574.710916: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
91259            adbd-23485 ( 1007) [002] d.H3 24574.710925: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
91260          <idle>-0     (-----) [001] .n.1 24574.710928: cpu_idle: state=4294967295 cpu_id=1
91261          <idle>-0     (-----) [001] d..2 24574.710935: 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
91262            adbd-23485 ( 1007) [002] d.H4 24574.710954: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
91263     rcu_preempt-7     (    7) [001] d..2 24574.710960: 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
91264            adbd-23485 ( 1007) [002] d.s3 24574.710969: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
91265            adbd-23485 ( 1007) [002] d.s4 24574.710977: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
91266            adbd-23485 ( 1007) [002] d.s3 24574.710979: sched_waking: comm=rcuos/2 pid=30 prio=120 target_cpu=003
91267   kworker/u17:2-23076 (23076) [001] d..2 24574.710984: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
91268   kworker/u17:2-23076 (23076) [001] d..3 24574.710994: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
91269            adbd-23485 ( 1007) [002] d.s4 24574.711002: sched_wakeup: comm=rcuos/2 pid=30 prio=120 target_cpu=001
91270   kworker/u17:2-23076 (23076) [001] d..2 24574.711017: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
91271     kworker/1:1-13091 (13091) [001] d..2 24574.711028: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
91272            adbd-23485 ( 1007) [002] d..2 24574.711032: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=rcuos/2 next_pid=30 next_prio=120
91273<...>-30 ( 30) [002] d..2 24574.711038: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
91274     kworker/1:1-13091 (13091) [001] d..3 24574.711043: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
91275     kworker/1:1-13091 (13091) [001] d..2 24574.711055: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
91276<...>-30 ( 30) [002] d..3 24574.711059: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
91277     rcu_preempt-7     (    7) [001] d..2 24574.711060: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
91278<...>-30 ( 30) [002] d..2 24574.711065: sched_switch: prev_comm=rcuos/2 prev_pid=30 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
91279     rcu_preempt-7     (    7) [001] d..3 24574.711071: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
91280       rcu_sched-8     (    8) [002] d..2 24574.711076: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
91281     rcu_preempt-7     (    7) [001] d..2 24574.711079: 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
91282         rcuop/2-29    (   29) [001] d..2 24574.711083: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
91283         rcuop/2-29    (   29) [001] d..3 24574.711094: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
91284            adbd-23485 ( 1007) [002] d..2 24574.711130: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
91285         rcuop/3-37    (   37) [002] d.h4 24574.711146: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
91286         rcuop/3-37    (   37) [002] dnh5 24574.711164: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
91287         rcuop/3-37    (   37) [002] d..2 24574.711172: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
91288   kworker/u17:2-23076 (23076) [002] d..2 24574.711179: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
91289   kworker/u17:2-23076 (23076) [002] d..3 24574.711185: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
91290   kworker/u17:2-23076 (23076) [002] d..2 24574.711200: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
91291     kworker/2:0-12895 (12895) [002] d..2 24574.711206: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
91292     kworker/2:0-12895 (12895) [002] d..3 24574.711223: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
91293     kworker/2:0-12895 (12895) [002] d..2 24574.711232: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
91294         rcuop/3-37    (   37) [002] d..2 24574.711269: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
91295          <idle>-0     (-----) [002] d..1 24574.711285: cpu_idle: state=0 cpu_id=2
91296          <idle>-0     (-----) [002] d.h3 24574.711364: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
91297          <idle>-0     (-----) [002] dnh4 24574.711369: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
91298          <idle>-0     (-----) [002] .n.1 24574.711374: cpu_idle: state=4294967295 cpu_id=2
91299          <idle>-0     (-----) [002] d..2 24574.711381: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
91300   kworker/u17:2-23076 (23076) [002] d..2 24574.711389: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
91301   kworker/u17:2-23076 (23076) [002] d..3 24574.711394: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
91302   kworker/u17:2-23076 (23076) [002] d..2 24574.711409: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
91303     kworker/2:0-12895 (12895) [002] d..2 24574.711419: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
91304     kworker/2:0-12895 (12895) [002] d..3 24574.711440: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
91305     kworker/2:0-12895 (12895) [002] d..2 24574.711450: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
91306            adbd-23484 ( 1007) [002] d..2 24574.711471: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
91307            adbd-23484 ( 1007) [002] d..3 24574.711477: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
91308          <idle>-0     (-----) [000] ...1 24574.711491: cpu_idle: state=4294967295 cpu_id=0
91309          <idle>-0     (-----) [000] d..1 24574.711493: cpu_idle: state=0 cpu_id=0
91310            adbd-23484 ( 1007) [002] d..2 24574.711524: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
91311            adbd-1007  ( 1007) [002] d..2 24574.711592: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
91312          <idle>-0     (-----) [002] d..1 24574.711600: cpu_idle: state=0 cpu_id=2
91313         rcuop/2-29    (   29) [001] d..2 24574.711821: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
91314            adbd-23485 ( 1007) [001] d..2 24574.711885: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
91315          <idle>-0     (-----) [001] d..1 24574.711893: cpu_idle: state=0 cpu_id=1
91316          <idle>-0     (-----) [002] d.h3 24574.711906: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
91317          <idle>-0     (-----) [002] dnh4 24574.711912: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
91318          <idle>-0     (-----) [002] .n.1 24574.711917: cpu_idle: state=4294967295 cpu_id=2
91319          <idle>-0     (-----) [002] d..2 24574.711923: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
91320   kworker/u17:2-23076 (23076) [002] d..2 24574.711930: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
91321   kworker/u17:2-23076 (23076) [002] d..3 24574.711935: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
91322   kworker/u17:2-23076 (23076) [002] d..2 24574.711951: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
91323     kworker/2:0-12895 (12895) [002] d..2 24574.711957: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
91324     kworker/2:0-12895 (12895) [002] d..3 24574.711976: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
91325     kworker/2:0-12895 (12895) [002] d..2 24574.711985: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
91326            adbd-23485 ( 1007) [002] d..2 24574.712035: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
91327          <idle>-0     (-----) [002] d.h4 24574.712052: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
91328          <idle>-0     (-----) [002] dnh5 24574.712057: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
91329          <idle>-0     (-----) [002] d..2 24574.712064: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
91330   kworker/u17:2-23076 (23076) [002] d..2 24574.712069: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
91331   kworker/u17:2-23076 (23076) [002] d..3 24574.712074: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
91332   kworker/u17:2-23076 (23076) [002] d..2 24574.712089: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
91333     kworker/2:0-12895 (12895) [002] d..2 24574.712093: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
91334     kworker/2:0-12895 (12895) [002] d..3 24574.712101: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
91335     kworker/2:0-12895 (12895) [002] d..2 24574.712108: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
91336            adbd-23485 ( 1007) [002] d..2 24574.712125: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
91337          <idle>-0     (-----) [002] d.h4 24574.712141: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
91338          <idle>-0     (-----) [002] dnh5 24574.712146: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
91339          <idle>-0     (-----) [002] d..2 24574.712153: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
91340   kworker/u17:2-23076 (23076) [002] d..2 24574.712159: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
91341   kworker/u17:2-23076 (23076) [002] d..3 24574.712164: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
91342   kworker/u17:2-23076 (23076) [002] d..2 24574.712179: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
91343     kworker/2:0-12895 (12895) [002] d..2 24574.712184: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
91344     kworker/2:0-12895 (12895) [002] d..3 24574.712193: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
91345     kworker/2:0-12895 (12895) [002] d..2 24574.712200: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
91346            adbd-23484 ( 1007) [002] d..2 24574.712211: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
91347            adbd-23484 ( 1007) [002] d..3 24574.712216: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
91348            adbd-23484 ( 1007) [002] d..2 24574.712257: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
91349            adbd-1007  ( 1007) [002] d..2 24574.712312: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
91350          <idle>-0     (-----) [002] d..1 24574.712319: cpu_idle: state=0 cpu_id=2
91351          <idle>-0     (-----) [000] ...1 24574.715837: cpu_idle: state=4294967295 cpu_id=0
91352          <idle>-0     (-----) [000] d..1 24574.715839: cpu_idle: state=0 cpu_id=0
91353          <idle>-0     (-----) [001] d.h2 24574.717386: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
91354          <idle>-0     (-----) [001] dnh3 24574.717397: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
91355          <idle>-0     (-----) [001] .n.1 24574.717403: cpu_idle: state=4294967295 cpu_id=1
91356          <idle>-0     (-----) [001] d..2 24574.717411: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
91357        DispSync-23904 (23896) [001] d..1 24574.717435: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
91358        DispSync-23904 (23896) [001] d..2 24574.717447: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
91359          <idle>-0     (-----) [000] .n.1 24574.717451: cpu_idle: state=4294967295 cpu_id=0
91360          <idle>-0     (-----) [000] d..2 24574.717458: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
91361        DispSync-23904 (23896) [001] d..2 24574.717474: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
91362          <idle>-0     (-----) [001] d..1 24574.717480: cpu_idle: state=0 cpu_id=1
91363  appEventThread-23905 (23896) [000] d..3 24574.717511: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
91364  appEventThread-23905 (23896) [000] d..4 24574.717530: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
91365          <idle>-0     (-----) [001] .n.1 24574.717534: cpu_idle: state=4294967295 cpu_id=1
91366          <idle>-0     (-----) [001] d..2 24574.717540: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
91367  appEventThread-23905 (23896) [000] d..3 24574.717543: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=003
91368  appEventThread-23905 (23896) [000] d..4 24574.717568: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
91369 s.nexuslauncher-24827 (24827) [001] d.s1 24574.717569: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
91370<...>-24113 ( 23968) [006] d.s2 24574.717570: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
91371          <idle>-0     (-----) [002] dns2 24574.717577: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
91372 s.nexuslauncher-24827 (24827) [001] d.s2 24574.717602: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
91373          <idle>-0     (-----) [002] dns3 24574.717607: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
91374          <idle>-0     (-----) [002] .n.1 24574.717649: cpu_idle: state=4294967295 cpu_id=2
91375  appEventThread-23905 (23896) [000] d.H2 24574.717656: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
91376          <idle>-0     (-----) [002] d..2 24574.717657: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
91377  appEventThread-23905 (23896) [000] d.H3 24574.717660: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
91378          <idle>-0     (-----) [004] dnh2 24574.717674: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
91379          <idle>-0     (-----) [004] .n.1 24574.717676: cpu_idle: state=4294967295 cpu_id=4
91380          <idle>-0     (-----) [004] d..2 24574.717680: 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
91381         sugov:4-560   (  560) [004] d..2 24574.717688: 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
91382  appEventThread-23905 (23896) [000] d..2 24574.717690: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
91383          <idle>-0     (-----) [004] d..1 24574.717691: cpu_idle: state=0 cpu_id=4
91384       rcu_sched-8     (    8) [000] d..2 24574.717707: 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
91385     rcu_preempt-7     (    7) [000] d..2 24574.717716: 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
91386<...>-24151 ( 24151) [002] .... 24574.717878: binder_transaction: transaction=1671035 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
91387 s.nexuslauncher-24827 (24827) [001] .... 24574.717878: binder_transaction: transaction=1671036 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
91388 s.nexuslauncher-24827 (24827) [001] d..4 24574.717891: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=005
91389 s.nexuslauncher-24827 (24827) [001] d..5 24574.717912: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=003
91390          <idle>-0     (-----) [003] .n.1 24574.717918: cpu_idle: state=4294967295 cpu_id=3
91391          <idle>-0     (-----) [003] d..2 24574.717941: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
91392<...>-24151 ( 24151) [002] d..4 24574.717941: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
91393  kworker/u16:10-23868 (23868) [000] d..2 24574.717950: 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
91394<...>-24151 ( 24151) [002] d..5 24574.717959: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
91395          <idle>-0     (-----) [000] d..2 24574.717964: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
91396  Binder:23896_4-24423 (23896) [000] .... 24574.717972: binder_transaction_received: transaction=1671035
91397  Binder:23896_5-25989 (23896) [003] d.s4 24574.717973: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
91398  Binder:23896_5-25989 (23896) [003] d.s5 24574.717992: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
91399  Binder:23896_4-24423 (23896) [000] d..1 24574.717994: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
91400  Binder:23896_5-25989 (23896) [003] d.s5 24574.717996: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
91401  Binder:23896_5-25989 (23896) [003] .... 24574.718002: binder_transaction_received: transaction=1671036
91402  Binder:23896_4-24423 (23896) [000] d..2 24574.718008: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
91403<...>-24151 ( 24151) [002] d..2 24574.718020: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
91404  Binder:23896_5-25989 (23896) [003] d..2 24574.718034: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
91405  Binder:23896_4-24423 (23896) [000] d..2 24574.718035: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91406 s.nexuslauncher-24827 (24827) [001] d..2 24574.718037: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
91407          <idle>-0     (-----) [000] d..1 24574.718043: cpu_idle: state=0 cpu_id=0
91408          <idle>-0     (-----) [001] d..1 24574.718045: cpu_idle: state=0 cpu_id=1
91409  appEventThread-23905 (23896) [002] d..2 24574.718048: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
91410<...>-24151 ( 24151) [002] d..2 24574.718068: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
91411          <idle>-0     (-----) [002] d..1 24574.718077: cpu_idle: state=0 cpu_id=2
91412  kworker/u16:10-23868 (23868) [003] .... 24574.718136: clk_set_rate: l3_cluster0_vote_clk 652800000
91413  kworker/u16:10-23868 (23868) [003] .... 24574.718141: clk_set_rate: l3_clk 940800000
91414  kworker/u16:10-23868 (23868) [003] d..2 24574.718182: 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
91415          <idle>-0     (-----) [003] d..1 24574.718191: cpu_idle: state=0 cpu_id=3
91416<...>-24113 ( 23968) [006] d.s2 24574.720902: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
91417          <idle>-0     (-----) [000] dnh2 24574.720931: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
91418          <idle>-0     (-----) [000] .n.1 24574.720935: cpu_idle: state=4294967295 cpu_id=0
91419          <idle>-0     (-----) [000] d..2 24574.720943: 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
91420  kworker/u16:10-23868 (23868) [000] d..2 24574.721084: 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
91421          <idle>-0     (-----) [000] d..1 24574.721090: cpu_idle: state=0 cpu_id=0
91422          <idle>-0     (-----) [003] d.s3 24574.721106: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
91423          <idle>-0     (-----) [003] d.s4 24574.721113: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
91424          <idle>-0     (-----) [003] d.s4 24574.721119: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
91425          <idle>-0     (-----) [000] .n.1 24574.721124: cpu_idle: state=4294967295 cpu_id=0
91426          <idle>-0     (-----) [003] ...1 24574.721126: cpu_idle: state=4294967295 cpu_id=3
91427          <idle>-0     (-----) [000] d..2 24574.721129: 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
91428          <idle>-0     (-----) [003] d..1 24574.721130: cpu_idle: state=0 cpu_id=3
91429  kworker/u16:10-23868 (23868) [000] d..2 24574.721145: 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
91430          <idle>-0     (-----) [000] d..1 24574.721149: cpu_idle: state=0 cpu_id=0
91431          <idle>-0     (-----) [000] d.s2 24574.724234: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
91432          <idle>-0     (-----) [000] dns3 24574.724245: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
91433          <idle>-0     (-----) [000] dns2 24574.724247: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
91434          <idle>-0     (-----) [000] dns3 24574.724254: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
91435          <idle>-0     (-----) [000] .n.1 24574.724267: cpu_idle: state=4294967295 cpu_id=0
91436          <idle>-0     (-----) [000] d..2 24574.724272: 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
91437       rcu_sched-8     (    8) [000] d..2 24574.724282: sched_waking: comm=rcuos/2 pid=30 prio=120 target_cpu=002
91438       rcu_sched-8     (    8) [000] d..3 24574.724307: sched_wakeup: comm=rcuos/2 pid=30 prio=120 target_cpu=000
91439       rcu_sched-8     (    8) [000] d..2 24574.724315: 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
91440<...>-30 ( 30) [000] d..2 24574.724329: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
91441<...>-30 ( 30) [000] d..3 24574.724339: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
91442<...>-30 ( 30) [000] d..2 24574.724350: sched_switch: prev_comm=rcuos/2 prev_pid=30 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
91443     kworker/0:1-13012 (13012) [000] d..2 24574.724361: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
91444     rcu_preempt-7     (    7) [000] d..2 24574.724366: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
91445     rcu_preempt-7     (    7) [000] d..3 24574.724388: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
91446     rcu_preempt-7     (    7) [000] d..2 24574.724390: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=001
91447     rcu_preempt-7     (    7) [000] d..3 24574.724409: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=000
91448     rcu_preempt-7     (    7) [000] d..2 24574.724410: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
91449     rcu_preempt-7     (    7) [000] d..3 24574.724428: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
91450     rcu_preempt-7     (    7) [000] d..2 24574.724438: 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
91451         rcuop/4-45    (   45) [000] d..2 24574.724443: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
91452         rcuop/4-45    (   45) [000] d..3 24574.724462: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=000
91453         rcuop/4-45    (   45) [000] d..2 24574.724468: 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
91454         rcuop/5-53    (   53) [000] d..2 24574.724485: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
91455         rcuop/6-61    (   61) [000] d..2 24574.724490: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=001
91456         rcuop/6-61    (   61) [000] d..3 24574.724510: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=000
91457         rcuop/6-61    (   61) [000] d..2 24574.724520: 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
91458         rcuop/7-69    (   69) [000] d..2 24574.724534: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
91459         rcuop/0-10    (   10) [000] d..2 24574.724540: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
91460         rcuop/0-10    (   10) [000] d..3 24574.724560: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
91461         rcuop/0-10    (   10) [000] d..2 24574.724583: 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
91462         rcuop/1-21    (   21) [000] d..4 24574.724927: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
91463         rcuop/1-21    (   21) [000] d..5 24574.724934: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
91464         rcuop/1-21    (   21) [000] d..2 24574.724955: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
91465     kworker/0:1-13012 (13012) [000] d..2 24574.724986: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91466          <idle>-0     (-----) [000] d..1 24574.724996: cpu_idle: state=0 cpu_id=0
91467<...>-24113 ( 23968) [006] d.s2 24574.727562: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
91468          <idle>-0     (-----) [000] dnh2 24574.727584: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
91469          <idle>-0     (-----) [000] .n.1 24574.727588: cpu_idle: state=4294967295 cpu_id=0
91470          <idle>-0     (-----) [000] d..2 24574.727596: 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
91471  kworker/u16:10-23868 (23868) [000] .... 24574.727623: clk_set_rate: l3_cluster0_vote_clk 300000000
91472  kworker/u16:10-23868 (23868) [000] d..2 24574.727843: 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
91473          <idle>-0     (-----) [000] d..1 24574.727849: cpu_idle: state=0 cpu_id=0
91474          <idle>-0     (-----) [003] d.s3 24574.727867: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
91475          <idle>-0     (-----) [003] d.s4 24574.727872: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
91476          <idle>-0     (-----) [003] d.s4 24574.727877: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
91477          <idle>-0     (-----) [003] ...1 24574.727883: cpu_idle: state=4294967295 cpu_id=3
91478          <idle>-0     (-----) [000] .n.1 24574.727883: cpu_idle: state=4294967295 cpu_id=0
91479          <idle>-0     (-----) [003] d..1 24574.727886: cpu_idle: state=0 cpu_id=3
91480          <idle>-0     (-----) [000] d..2 24574.727888: 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
91481  kworker/u16:10-23868 (23868) [000] d..2 24574.727905: 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
91482          <idle>-0     (-----) [000] d..1 24574.727908: cpu_idle: state=0 cpu_id=0
91483          <idle>-0     (-----) [000] d.s2 24574.730901: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
91484          <idle>-0     (-----) [000] dns3 24574.730914: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
91485          <idle>-0     (-----) [000] .n.1 24574.730921: cpu_idle: state=4294967295 cpu_id=0
91486          <idle>-0     (-----) [000] d..2 24574.730926: 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
91487     rcu_preempt-7     (    7) [000] d..2 24574.730936: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
91488     rcu_preempt-7     (    7) [000] d..3 24574.730963: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
91489     rcu_preempt-7     (    7) [000] d..2 24574.730974: 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
91490         rcuop/2-29    (   29) [000] d..2 24574.731471: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91491          <idle>-0     (-----) [000] d..1 24574.731481: cpu_idle: state=0 cpu_id=0
91492          <idle>-0     (-----) [000] ...1 24574.732307: cpu_idle: state=4294967295 cpu_id=0
91493          <idle>-0     (-----) [000] d..1 24574.732310: cpu_idle: state=0 cpu_id=0
91494          <idle>-0     (-----) [001] d.h2 24574.733887: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
91495          <idle>-0     (-----) [001] dnh3 24574.733901: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
91496          <idle>-0     (-----) [001] .n.1 24574.733907: cpu_idle: state=4294967295 cpu_id=1
91497          <idle>-0     (-----) [001] d..2 24574.733916: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
91498        DispSync-23904 (23896) [001] d..1 24574.733944: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
91499        DispSync-23904 (23896) [001] d..2 24574.733955: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
91500          <idle>-0     (-----) [002] .n.1 24574.733961: cpu_idle: state=4294967295 cpu_id=2
91501          <idle>-0     (-----) [002] d..2 24574.733969: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
91502        DispSync-23904 (23896) [001] d..2 24574.733982: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
91503          <idle>-0     (-----) [001] d..1 24574.733991: cpu_idle: state=0 cpu_id=1
91504  appEventThread-23905 (23896) [002] d..3 24574.734017: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
91505  appEventThread-23905 (23896) [002] d..4 24574.734038: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
91506          <idle>-0     (-----) [000] .n.1 24574.734042: cpu_idle: state=4294967295 cpu_id=0
91507          <idle>-0     (-----) [000] d..2 24574.734050: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
91508  appEventThread-23905 (23896) [002] d..3 24574.734051: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=002
91509  appEventThread-23905 (23896) [002] d..4 24574.734065: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
91510          <idle>-0     (-----) [001] .n.1 24574.734071: cpu_idle: state=4294967295 cpu_id=1
91511          <idle>-0     (-----) [001] d..2 24574.734078: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
91512  appEventThread-23905 (23896) [002] d..2 24574.734087: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
91513          <idle>-0     (-----) [002] d..1 24574.734097: cpu_idle: state=0 cpu_id=2
91514<...>-24113 ( 23968) [006] d.s2 24574.734230: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
91515<...>-24113 ( 23968) [006] dns3 24574.734240: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
91516<...>-24113 ( 23968) [006] d..2 24574.734247: sched_switch: prev_comm=TaskSnapshotPer prev_pid=24113 prev_prio=130 prev_state=R ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
91517     kworker/6:0-21469 (21469) [006] d..2 24574.734280: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=24113 next_prio=130
91518 s.nexuslauncher-24827 (24827) [000] .... 24574.734364: binder_transaction: transaction=1671037 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
91519 s.nexuslauncher-24827 (24827) [000] d..4 24574.734378: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=003
91520 s.nexuslauncher-24827 (24827) [000] d..5 24574.734400: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
91521          <idle>-0     (-----) [002] .n.1 24574.734405: cpu_idle: state=4294967295 cpu_id=2
91522          <idle>-0     (-----) [002] d..2 24574.734413: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
91523  Binder:23896_5-25989 (23896) [002] .... 24574.734419: binder_transaction_received: transaction=1671037
91524  Binder:23896_5-25989 (23896) [002] d..1 24574.734442: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
91525<...>-24151 ( 24151) [001] .... 24574.734448: binder_transaction: transaction=1671038 dest_node=1281157 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
91526<...>-24151 ( 24151) [001] d..4 24574.734455: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
91527  Binder:23896_5-25989 (23896) [002] d..2 24574.734459: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
91528          <idle>-0     (-----) [003] .n.1 24574.734463: cpu_idle: state=4294967295 cpu_id=3
91529          <idle>-0     (-----) [003] d..2 24574.734471: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
91530 s.nexuslauncher-24827 (24827) [000] d..2 24574.734481: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91531          <idle>-0     (-----) [005] dnh2 24574.734486: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
91532          <idle>-0     (-----) [000] d..1 24574.734489: cpu_idle: state=0 cpu_id=0
91533          <idle>-0     (-----) [005] .n.1 24574.734521: cpu_idle: state=4294967295 cpu_id=5
91534<...>-24151 ( 24151) [001] d.h5 24574.734523: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
91535          <idle>-0     (-----) [005] d..2 24574.734527: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
91536  appEventThread-23905 (23896) [003] d..2 24574.734532: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
91537<...>-24151 ( 24151) [001] d.h5 24574.734532: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
91538          <idle>-0     (-----) [004] dnh2 24574.734537: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
91539          <idle>-0     (-----) [003] d..1 24574.734538: cpu_idle: state=0 cpu_id=3
91540          <idle>-0     (-----) [004] .n.1 24574.734540: cpu_idle: state=4294967295 cpu_id=4
91541          <idle>-0     (-----) [004] d..2 24574.734544: 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
91542<...>-24151 ( 24151) [001] d.h6 24574.734545: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
91543  Binder:23896_4-24423 (23896) [005] .... 24574.734549: binder_transaction_received: transaction=1671038
91544          <idle>-0     (-----) [003] .n.1 24574.734549: cpu_idle: state=4294967295 cpu_id=3
91545         sugov:4-560   (  560) [004] .... 24574.734554: clk_set_rate: perfcl_clk 1689600000
91546          <idle>-0     (-----) [003] d..2 24574.734555: 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
91547         sugov:4-560   (  560) [004] .... 24574.734555: clk_set_rate: cpu7_perfcl_clk 1363200000
91548         sugov:4-560   (  560) [004] .... 24574.734560: clk_set_rate: cpu6_perfcl_clk 1363200000
91549  Binder:23896_4-24423 (23896) [005] d..1 24574.734560: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
91550         sugov:4-560   (  560) [004] .... 24574.734565: clk_set_rate: cpu5_perfcl_clk 1363200000
91551  Binder:23896_5-25989 (23896) [002] d..2 24574.734565: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
91552         sugov:4-560   (  560) [004] .... 24574.734569: clk_set_rate: cpu4_perfcl_clk 1689600000
91553          <idle>-0     (-----) [002] d..1 24574.734573: cpu_idle: state=0 cpu_id=2
91554         sugov:4-560   (  560) [004] .... 24574.734574: cpu_frequency: state=1689600 cpu_id=4
91555<...>-24151 ( 24151) [001] d..3 24574.734578: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=001
91556         sugov:4-560   (  560) [004] .... 24574.734578: cpu_frequency: state=1689600 cpu_id=5
91557         sugov:4-560   (  560) [004] .... 24574.734580: cpu_frequency: state=1689600 cpu_id=6
91558          <idle>-0     (-----) [002] dnh2 24574.734581: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
91559         sugov:4-560   (  560) [004] .... 24574.734582: cpu_frequency: state=1689600 cpu_id=7
91560  Binder:23896_4-24423 (23896) [005] d..2 24574.734585: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
91561          <idle>-0     (-----) [002] .n.1 24574.734586: cpu_idle: state=4294967295 cpu_id=2
91562         sugov:0-559   (  559) [003] .... 24574.734589: clk_set_rate: pwrcl_clk 1612800000
91563          <idle>-0     (-----) [005] d..1 24574.734590: cpu_idle: state=0 cpu_id=5
91564         sugov:4-560   (  560) [004] d..2 24574.734590: 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
91565          <idle>-0     (-----) [002] d..2 24574.734591: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
91566          <idle>-0     (-----) [004] d..1 24574.734594: cpu_idle: state=0 cpu_id=4
91567<...>-24151 ( 24151) [001] d..4 24574.734596: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
91568          <idle>-0     (-----) [000] .n.1 24574.734602: cpu_idle: state=4294967295 cpu_id=0
91569          <idle>-0     (-----) [000] d..2 24574.734608: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
91570  appEventThread-23905 (23896) [002] d..2 24574.734617: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
91571          <idle>-0     (-----) [002] d..1 24574.734623: cpu_idle: state=0 cpu_id=2
91572    RenderThread-24437 (24151) [000] d..2 24574.734648: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91573          <idle>-0     (-----) [000] d..1 24574.734653: cpu_idle: state=0 cpu_id=0
91574         sugov:0-559   (  559) [003] d.s1 24574.734670: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
91575         sugov:0-559   (  559) [003] d.s2 24574.734680: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
91576         sugov:0-559   (  559) [003] .... 24574.734686: clk_set_rate: cpu3_pwrcl_clk 1766400000
91577         sugov:0-559   (  559) [003] .... 24574.734695: clk_set_rate: cpu2_pwrcl_clk 1766400000
91578         sugov:0-559   (  559) [003] .... 24574.734701: clk_set_rate: cpu1_pwrcl_clk 1766400000
91579         sugov:0-559   (  559) [003] .... 24574.734707: clk_set_rate: cpu0_pwrcl_clk 1612800000
91580         sugov:0-559   (  559) [003] .... 24574.734818: cpu_frequency: state=1612800 cpu_id=0
91581<...>-24151 ( 24151) [001] d..3 24574.734829: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
91582<...>-24151 ( 24151) [001] d..4 24574.734843: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
91583          <idle>-0     (-----) [000] .n.1 24574.734848: cpu_idle: state=4294967295 cpu_id=0
91584          <idle>-0     (-----) [000] d..2 24574.734853: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
91585<...>-24151 ( 24151) [001] d..2 24574.734864: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
91586          <idle>-0     (-----) [001] d..1 24574.734875: cpu_idle: state=0 cpu_id=1
91587         sugov:0-559   (  559) [003] d..2 24574.734952: 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
91588    RenderThread-24437 (24151) [000] d..1 24574.734977: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
91589     ksoftirqd/3-34    (   34) [003] d.s3 24574.734978: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
91590    RenderThread-24437 (24151) [000] d..2 24574.734991: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
91591     ksoftirqd/3-34    (   34) [003] d.s4 24574.734995: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
91592          <idle>-0     (-----) [001] .n.1 24574.734996: cpu_idle: state=4294967295 cpu_id=1
91593          <idle>-0     (-----) [002] .n.1 24574.734999: cpu_idle: state=4294967295 cpu_id=2
91594          <idle>-0     (-----) [001] d..2 24574.735004: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
91595          <idle>-0     (-----) [002] d..2 24574.735005: 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
91596     ksoftirqd/3-34    (   34) [003] d..2 24574.735011: 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
91597         sugov:0-559   (  559) [002] .... 24574.735016: cpu_frequency: state=1612800 cpu_id=1
91598          <idle>-0     (-----) [003] d..1 24574.735020: cpu_idle: state=0 cpu_id=3
91599         sugov:0-559   (  559) [002] .... 24574.735021: cpu_frequency: state=1612800 cpu_id=2
91600         sugov:0-559   (  559) [002] .... 24574.735023: cpu_frequency: state=1612800 cpu_id=3
91601         sugov:0-559   (  559) [002] d..2 24574.735038: 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
91602          <idle>-0     (-----) [002] d..1 24574.735044: cpu_idle: state=0 cpu_id=2
91603<...>-24151 ( 24151) [001] d..2 24574.735051: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
91604    RenderThread-24437 (24151) [000] .... 24574.735056: binder_transaction: transaction=1671039 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
91605          <idle>-0     (-----) [001] d..1 24574.735059: cpu_idle: state=0 cpu_id=1
91606    RenderThread-24437 (24151) [000] d..4 24574.735063: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=005
91607    RenderThread-24437 (24151) [000] d..5 24574.735080: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
91608    RenderThread-24437 (24151) [000] d.h5 24574.735112: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
91609    RenderThread-24437 (24151) [000] d.h5 24574.735121: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
91610          <idle>-0     (-----) [004] dnh2 24574.735126: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
91611          <idle>-0     (-----) [004] .n.1 24574.735128: cpu_idle: state=4294967295 cpu_id=4
91612    RenderThread-24437 (24151) [000] d.h6 24574.735130: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
91613          <idle>-0     (-----) [004] d..2 24574.735131: 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
91614          <idle>-0     (-----) [002] .n.1 24574.735135: cpu_idle: state=4294967295 cpu_id=2
91615         sugov:4-560   (  560) [004] d..2 24574.735137: 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
91616          <idle>-0     (-----) [004] d..1 24574.735140: cpu_idle: state=0 cpu_id=4
91617          <idle>-0     (-----) [002] d..2 24574.735141: 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
91618    RenderThread-24437 (24151) [000] d..2 24574.735142: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
91619  Binder:23896_4-24423 (23896) [000] .... 24574.735149: binder_transaction_received: transaction=1671039
91620         sugov:0-559   (  559) [002] d..2 24574.735153: 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
91621          <idle>-0     (-----) [002] d..1 24574.735160: cpu_idle: state=0 cpu_id=2
91622  Binder:23896_4-24423 (23896) [000] .... 24574.735225: binder_transaction: transaction=1671040 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
91623  Binder:23896_4-24423 (23896) [000] d..2 24574.735239: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
91624  Binder:23896_4-24423 (23896) [000] d..3 24574.735248: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
91625  Binder:23896_4-24423 (23896) [000] d..2 24574.735271: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
91626    RenderThread-24437 (24151) [000] .... 24574.735275: binder_transaction_received: transaction=1671040
91627          <idle>-0     (-----) [002] ...1 24574.736361: cpu_idle: state=4294967295 cpu_id=2
91628          <idle>-0     (-----) [002] d..1 24574.736364: cpu_idle: state=0 cpu_id=2
91629    RenderThread-24437 (24151) [000] d.h3 24574.736646: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
91630    RenderThread-24437 (24151) [000] d.h4 24574.736665: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
91631          <idle>-0     (-----) [001] .n.1 24574.736669: cpu_idle: state=4294967295 cpu_id=1
91632          <idle>-0     (-----) [001] d..2 24574.736676: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
91633    RenderThread-24437 (24151) [000] d..2 24574.736688: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
91634          <idle>-0     (-----) [000] d..1 24574.736697: cpu_idle: state=0 cpu_id=0
91635 kgsl_worker_thr-246   (  246) [001] d..2 24574.736704: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
91636          <idle>-0     (-----) [001] d..1 24574.736709: cpu_idle: state=0 cpu_id=1
91637          <idle>-0     (-----) [000] d.h2 24574.736733: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
91638          <idle>-0     (-----) [000] d.h3 24574.736739: sched_blocked_reason: pid=24437 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
91639          <idle>-0     (-----) [000] dnh3 24574.736742: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
91640          <idle>-0     (-----) [000] .n.1 24574.736747: cpu_idle: state=4294967295 cpu_id=0
91641          <idle>-0     (-----) [000] d..2 24574.736753: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=24437 next_prio=120
91642    RenderThread-24437 (24151) [000] d..1 24574.736767: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
91643    RenderThread-24437 (24151) [000] d..2 24574.736778: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
91644          <idle>-0     (-----) [001] .n.1 24574.736782: cpu_idle: state=4294967295 cpu_id=1
91645          <idle>-0     (-----) [001] d..2 24574.736788: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
91646 kgsl_worker_thr-246   (  246) [001] d..2 24574.736823: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
91647          <idle>-0     (-----) [001] d..1 24574.736828: cpu_idle: state=0 cpu_id=1
91648          <idle>-0     (-----) [001] d.h2 24574.736921: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
91649          <idle>-0     (-----) [001] dnh3 24574.736928: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
91650          <idle>-0     (-----) [001] .n.1 24574.736933: cpu_idle: state=4294967295 cpu_id=1
91651          <idle>-0     (-----) [001] d..2 24574.736938: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
91652 kgsl_worker_thr-246   (  246) [001] d..2 24574.736954: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
91653    RenderThread-24437 (24151) [000] .... 24574.736970: binder_transaction: transaction=1671041 dest_node=1337577 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
91654    RenderThread-24437 (24151) [000] d..4 24574.736982: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
91655 kgsl_worker_thr-246   (  246) [001] d..3 24574.736983: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
91656    RenderThread-24437 (24151) [000] d..5 24574.736991: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
91657    RenderThread-24437 (24151) [000] d..2 24574.737001: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
91658  Binder:23896_4-24423 (23896) [000] .... 24574.737006: binder_transaction_received: transaction=1671041
91659 kgsl_worker_thr-246   (  246) [001] d..2 24574.737018: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
91660  Binder:23896_4-24423 (23896) [000] d..1 24574.737084: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
91661  Binder:23896_4-24423 (23896) [000] d..2 24574.737099: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
91662          <idle>-0     (-----) [003] .n.1 24574.737104: cpu_idle: state=4294967295 cpu_id=3
91663          <idle>-0     (-----) [003] d..2 24574.737110: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
91664   sfEventThread-23906 (23896) [003] d..1 24574.737130: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
91665  Binder:23896_4-24423 (23896) [000] .... 24574.737145: binder_transaction: transaction=1671042 dest_node=0 dest_proc=24151 dest_thread=24437 reply=1 flags=0x0 code=0x0
91666   sfEventThread-23906 (23896) [003] d..2 24574.737146: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
91667  Binder:23896_4-24423 (23896) [000] d..2 24574.737149: sched_waking: comm=RenderThread pid=24437 prio=120 target_cpu=000
91668          <idle>-0     (-----) [002] .n.1 24574.737151: cpu_idle: state=4294967295 cpu_id=2
91669  Binder:23896_4-24423 (23896) [000] d..3 24574.737157: sched_wakeup: comm=RenderThread pid=24437 prio=120 target_cpu=000
91670          <idle>-0     (-----) [002] d..2 24574.737158: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
91671   sfEventThread-23906 (23896) [003] d..2 24574.737179: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=24437 next_prio=120
91672        DispSync-23904 (23896) [002] d..2 24574.737181: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
91673    RenderThread-24437 (24151) [003] .... 24574.737186: binder_transaction_received: transaction=1671042
91674  Binder:23896_4-24423 (23896) [000] d..2 24574.737187: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91675          <idle>-0     (-----) [002] d..1 24574.737188: cpu_idle: state=0 cpu_id=2
91676          <idle>-0     (-----) [000] d..1 24574.737195: cpu_idle: state=0 cpu_id=0
91677    RenderThread-24437 (24151) [003] d..2 24574.737233: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
91678    RenderThread-24437 (24151) [003] d..3 24574.737261: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
91679  kworker/u16:10-23868 (23868) [001] d..2 24574.737299: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=rcuop/2 next_pid=29 next_prio=120
91680    RenderThread-24437 (24151) [003] d..2 24574.737303: sched_switch: prev_comm=RenderThread prev_pid=24437 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
91681         rcuop/2-29    (   29) [001] d..2 24574.737316: 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
91682          <idle>-0     (-----) [001] d..1 24574.737326: cpu_idle: state=0 cpu_id=1
91683          <idle>-0     (-----) [003] d.s4 24574.737334: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
91684          <idle>-0     (-----) [003] d.s5 24574.737353: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
91685          <idle>-0     (-----) [003] dns5 24574.737356: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
91686          <idle>-0     (-----) [003] d..2 24574.737365: 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
91687  kworker/u16:10-23868 (23868) [003] d..2 24574.737385: 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
91688          <idle>-0     (-----) [003] d..1 24574.737394: cpu_idle: state=0 cpu_id=3
91689          <idle>-0     (-----) [000] d.s2 24574.737572: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
91690          <idle>-0     (-----) [000] dns3 24574.737605: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
91691<...>-24113 ( 23968) [006] d.H3 24574.737606: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
91692          <idle>-0     (-----) [000] dns3 24574.737609: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
91693<...>-24113 ( 23968) [006] d.H4 24574.737615: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
91694<...>-24113 ( 23968) [006] d.H3 24574.737617: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
91695          <idle>-0     (-----) [004] .n.1 24574.737619: cpu_idle: state=4294967295 cpu_id=4
91696          <idle>-0     (-----) [004] d..2 24574.737623: 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
91697<...>-24113 ( 23968) [006] d.s3 24574.737625: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
91698          <idle>-0     (-----) [000] dns4 24574.737627: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
91699          <idle>-0     (-----) [002] dnh2 24574.737632: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
91700          <idle>-0     (-----) [003] .n.1 24574.737632: cpu_idle: state=4294967295 cpu_id=3
91701         sugov:4-560   (  560) [004] d..2 24574.737633: 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
91702          <idle>-0     (-----) [004] d..1 24574.737635: cpu_idle: state=0 cpu_id=4
91703          <idle>-0     (-----) [002] .n.1 24574.737636: cpu_idle: state=4294967295 cpu_id=2
91704          <idle>-0     (-----) [000] .n.1 24574.737638: cpu_idle: state=4294967295 cpu_id=0
91705          <idle>-0     (-----) [003] d..2 24574.737639: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
91706          <idle>-0     (-----) [002] d..2 24574.737642: 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
91707          <idle>-0     (-----) [000] d..2 24574.737649: 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
91708<...>-24113 ( 23968) [006] d.s3 24574.737654: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
91709         sugov:0-559   (  559) [002] d..2 24574.737655: 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
91710     rcu_preempt-7     (    7) [000] d.h3 24574.737656: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
91711<...>-24113 ( 23968) [006] dns4 24574.737659: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
91712          <idle>-0     (-----) [002] d..1 24574.737661: cpu_idle: state=0 cpu_id=2
91713<...>-24113 ( 23968) [006] d..2 24574.737666: sched_switch: prev_comm=TaskSnapshotPer prev_pid=24113 prev_prio=130 prev_state=R+ ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
91714     rcu_preempt-7     (    7) [000] d..2 24574.737672: 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
91715     kworker/6:0-21469 (21469) [006] d..2 24574.737680: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=24113 next_prio=130
91716 crtc_commit:111-253   (  253) [003] d..2 24574.737700: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
91717          <idle>-0     (-----) [003] d..1 24574.737722: cpu_idle: state=0 cpu_id=3
91718          <idle>-0     (-----) [003] ...1 24574.737731: cpu_idle: state=4294967295 cpu_id=3
91719          <idle>-0     (-----) [003] d..1 24574.737734: cpu_idle: state=0 cpu_id=3
91720  kworker/u16:10-23868 (23868) [000] d..2 24574.737841: 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
91721          <idle>-0     (-----) [000] d..1 24574.737850: cpu_idle: state=0 cpu_id=0
91722          <idle>-0     (-----) [003] d.s3 24574.737870: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
91723          <idle>-0     (-----) [003] d.s4 24574.737876: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
91724          <idle>-0     (-----) [003] d.s4 24574.737882: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
91725          <idle>-0     (-----) [000] .n.1 24574.737888: cpu_idle: state=4294967295 cpu_id=0
91726          <idle>-0     (-----) [003] ...1 24574.737888: cpu_idle: state=4294967295 cpu_id=3
91727          <idle>-0     (-----) [003] d..1 24574.737892: cpu_idle: state=0 cpu_id=3
91728          <idle>-0     (-----) [000] d..2 24574.737896: 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
91729  kworker/u16:10-23868 (23868) [000] .... 24574.737954: clk_set_rate: l3_cluster1_vote_clk 1209600000
91730  kworker/u16:10-23868 (23868) [000] .... 24574.737959: clk_set_rate: l3_clk 1209600000
91731  kworker/u16:10-23868 (23868) [000] .... 24574.738027: clk_set_rate: l3_cluster0_vote_clk 576000000
91732  kworker/u16:10-23868 (23868) [000] d..2 24574.738041: 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
91733          <idle>-0     (-----) [000] d..1 24574.738048: cpu_idle: state=0 cpu_id=0
91734          <idle>-0     (-----) [001] ...1 24574.738438: cpu_idle: state=4294967295 cpu_id=1
91735          <idle>-0     (-----) [001] d..1 24574.738440: cpu_idle: state=0 cpu_id=1
91736          <idle>-0     (-----) [002] ...1 24574.738895: cpu_idle: state=4294967295 cpu_id=2
91737          <idle>-0     (-----) [002] d..1 24574.738897: cpu_idle: state=0 cpu_id=2
91738          <idle>-0     (-----) [003] ...1 24574.739003: cpu_idle: state=4294967295 cpu_id=3
91739          <idle>-0     (-----) [003] d..1 24574.739005: cpu_idle: state=0 cpu_id=3
91740          <idle>-0     (-----) [000] d.s2 24574.744238: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
91741<...>-24113 ( 23968) [006] d.s2 24574.744239: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
91742          <idle>-0     (-----) [000] dns3 24574.744252: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
91743          <idle>-0     (-----) [000] dnH3 24574.744259: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
91744          <idle>-0     (-----) [000] .n.1 24574.744275: cpu_idle: state=4294967295 cpu_id=0
91745          <idle>-0     (-----) [000] d..2 24574.744283: 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
91746     rcu_preempt-7     (    7) [000] d..2 24574.744293: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
91747     rcu_preempt-7     (    7) [000] d..3 24574.744306: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
91748     rcu_preempt-7     (    7) [000] d..2 24574.744308: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=000
91749     rcu_preempt-7     (    7) [000] d..3 24574.744318: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=000
91750     rcu_preempt-7     (    7) [000] d..2 24574.744330: 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
91751         rcuop/6-61    (   61) [000] d..2 24574.744343: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
91752         rcuop/0-10    (   10) [000] d..2 24574.744357: 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
91753  kworker/u16:10-23868 (23868) [000] d..2 24574.744412: 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
91754          <idle>-0     (-----) [000] d..1 24574.744421: cpu_idle: state=0 cpu_id=0
91755<...>-24113 ( 23968) [006] d.s2 24574.747579: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
91756          <idle>-0     (-----) [000] dnh2 24574.747602: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
91757          <idle>-0     (-----) [000] .n.1 24574.747606: cpu_idle: state=4294967295 cpu_id=0
91758          <idle>-0     (-----) [000] d..2 24574.747614: 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
91759  kworker/u16:10-23868 (23868) [000] .... 24574.747641: clk_set_rate: l3_cluster0_vote_clk 300000000
91760  kworker/u16:10-23868 (23868) [000] d..2 24574.747818: 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
91761          <idle>-0     (-----) [000] d..1 24574.747825: cpu_idle: state=0 cpu_id=0
91762          <idle>-0     (-----) [003] d.s3 24574.747842: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
91763          <idle>-0     (-----) [003] d.s4 24574.747848: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
91764          <idle>-0     (-----) [003] d.s4 24574.747853: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
91765          <idle>-0     (-----) [003] ...1 24574.747858: cpu_idle: state=4294967295 cpu_id=3
91766          <idle>-0     (-----) [000] .n.1 24574.747858: cpu_idle: state=4294967295 cpu_id=0
91767          <idle>-0     (-----) [003] d..1 24574.747861: cpu_idle: state=0 cpu_id=3
91768          <idle>-0     (-----) [000] d..2 24574.747864: 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
91769  kworker/u16:10-23868 (23868) [000] d..2 24574.748008: 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
91770          <idle>-0     (-----) [000] d..1 24574.748013: cpu_idle: state=0 cpu_id=0
91771          <idle>-0     (-----) [003] d.s3 24574.748040: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
91772          <idle>-0     (-----) [003] d.s4 24574.748045: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
91773          <idle>-0     (-----) [003] d.s4 24574.748050: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
91774          <idle>-0     (-----) [003] ...1 24574.748055: cpu_idle: state=4294967295 cpu_id=3
91775          <idle>-0     (-----) [000] .n.1 24574.748056: cpu_idle: state=4294967295 cpu_id=0
91776          <idle>-0     (-----) [003] d..1 24574.748059: cpu_idle: state=0 cpu_id=3
91777          <idle>-0     (-----) [000] d..2 24574.748061: 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
91778  kworker/u16:10-23868 (23868) [000] d..2 24574.748076: 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
91779          <idle>-0     (-----) [000] d..1 24574.748080: cpu_idle: state=0 cpu_id=0
91780          <idle>-0     (-----) [000] d.h5 24574.748763: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
91781          <idle>-0     (-----) [000] d.h6 24574.748777: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
91782          <idle>-0     (-----) [003] .n.1 24574.748782: cpu_idle: state=4294967295 cpu_id=3
91783          <idle>-0     (-----) [000] ...1 24574.748788: cpu_idle: state=4294967295 cpu_id=0
91784          <idle>-0     (-----) [003] d..2 24574.748789: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
91785          <idle>-0     (-----) [000] d..1 24574.748791: cpu_idle: state=0 cpu_id=0
91786          <idle>-0     (-----) [000] ...1 24574.748825: cpu_idle: state=4294967295 cpu_id=0
91787          <idle>-0     (-----) [000] d..1 24574.748827: cpu_idle: state=0 cpu_id=0
91788          <idle>-0     (-----) [001] ...1 24574.748828: cpu_idle: state=4294967295 cpu_id=1
91789          <idle>-0     (-----) [001] d..1 24574.748831: cpu_idle: state=0 cpu_id=1
91790 crtc_commit:111-253   (  253) [003] d..1 24574.748873: clk_disable: disp_cc_mdss_byte0_intf_clk
91791 crtc_commit:111-253   (  253) [003] d..1 24574.748892: clk_disable: disp_cc_mdss_byte0_div_clk_src
91792 crtc_commit:111-253   (  253) [003] d..1 24574.748894: clk_disable: disp_cc_mdss_pclk0_clk
91793 crtc_commit:111-253   (  253) [003] d..1 24574.748903: clk_disable: disp_cc_mdss_pclk0_clk_src
91794 crtc_commit:111-253   (  253) [003] d..1 24574.748904: clk_disable: dsi0_phy_pll_out_dsiclk
91795 crtc_commit:111-253   (  253) [003] d..1 24574.748906: clk_disable: dsi0pll_pclk_src
91796 crtc_commit:111-253   (  253) [003] d..1 24574.748907: clk_disable: dsi0pll_pclk_src_mux
91797 crtc_commit:111-253   (  253) [003] d..1 24574.748909: clk_disable: dsi0pll_post_bit_div
91798 crtc_commit:111-253   (  253) [003] d..1 24574.748910: clk_disable: disp_cc_mdss_byte0_clk
91799 crtc_commit:111-253   (  253) [003] d..1 24574.748918: clk_disable: disp_cc_mdss_byte0_clk_src
91800 crtc_commit:111-253   (  253) [003] d..1 24574.748920: clk_disable: dsi0_phy_pll_out_byteclk
91801 crtc_commit:111-253   (  253) [003] d..1 24574.748921: clk_disable: dsi0pll_byteclk_src
91802 crtc_commit:111-253   (  253) [003] d..1 24574.748922: clk_disable: dsi0pll_bitclk_src
91803 crtc_commit:111-253   (  253) [003] d..1 24574.748923: clk_disable: dsi0pll_pll_out_div
91804 crtc_commit:111-253   (  253) [003] d..1 24574.748923: clk_disable: dsi0pll_vco_clk
91805 crtc_commit:111-253   (  253) [003] d..1 24574.748958: clk_disable: disp_cc_mdss_esc0_clk
91806 crtc_commit:111-253   (  253) [003] d..1 24574.748966: clk_disable: disp_cc_mdss_esc0_clk_src
91807 crtc_commit:111-253   (  253) [003] d..1 24574.749037: clk_disable: disp_cc_mdss_vsync_clk
91808 crtc_commit:111-253   (  253) [003] d..1 24574.749048: clk_disable: disp_cc_mdss_mdp_clk
91809 crtc_commit:111-253   (  253) [003] d..1 24574.749056: clk_disable: disp_cc_mdss_mdp_clk_src
91810 crtc_commit:111-253   (  253) [003] d..1 24574.749083: clk_disable: gcc_disp_gpll0_clk_src
91811 crtc_commit:111-253   (  253) [003] d..1 24574.749610: clk_disable: disp_cc_mdss_axi_clk
91812 crtc_commit:111-253   (  253) [003] d..1 24574.749621: clk_disable: disp_cc_mdss_ahb_clk
91813 crtc_commit:111-253   (  253) [003] d..1 24574.749629: clk_disable: gcc_disp_axi_clk
91814 crtc_commit:111-253   (  253) [003] d..2 24574.749697: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
91815          <idle>-0     (-----) [003] d..1 24574.749705: cpu_idle: state=0 cpu_id=3
91816          <idle>-0     (-----) [003] d.h2 24574.749785: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
91817          <idle>-0     (-----) [003] dnh3 24574.749793: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
91818          <idle>-0     (-----) [003] .n.1 24574.749798: cpu_idle: state=4294967295 cpu_id=3
91819          <idle>-0     (-----) [003] d..2 24574.749804: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
91820 crtc_commit:111-253   (  253) [003] d..1 24574.749819: clk_disable: disp_cc_mdss_rscc_ahb_clk
91821 crtc_commit:111-253   (  253) [003] d..1 24574.749829: clk_disable: disp_cc_mdss_rscc_vsync_clk
91822 crtc_commit:111-253   (  253) [003] d..1 24574.749837: clk_disable: disp_cc_mdss_vsync_clk_src
91823<...>-24113 ( 23968) [006] d..2 24574.749869: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=000
91824 crtc_commit:111-253   (  253) [003] d.h2 24574.749911: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=003
91825<...>-24113 ( 23968) [006] d..2 24574.749936: sched_switch: prev_comm=TaskSnapshotPer prev_pid=24113 prev_prio=130 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
91826          <idle>-0     (-----) [006] d..1 24574.749950: cpu_idle: state=0 cpu_id=6
91827 crtc_commit:111-253   (  253) [003] d..2 24574.749967: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcuop/6 next_pid=61 next_prio=120
91828         rcuop/6-61    (   61) [003] d.s4 24574.749992: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
91829         rcuop/6-61    (   61) [003] d.s5 24574.750013: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
91830          <idle>-0     (-----) [001] .n.1 24574.750016: cpu_idle: state=4294967295 cpu_id=1
91831          <idle>-0     (-----) [001] d..2 24574.750025: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
91832         rcuop/6-61    (   61) [003] d..2 24574.750031: 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
91833          <idle>-0     (-----) [003] d..1 24574.750040: cpu_idle: state=0 cpu_id=3
91834 crtc_commit:111-253   (  253) [001] d..2 24574.750156: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
91835          <idle>-0     (-----) [001] d..1 24574.750164: cpu_idle: state=0 cpu_id=1
91836          <idle>-0     (-----) [003] d.s3 24574.750190: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
91837          <idle>-0     (-----) [003] d.s4 24574.750200: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
91838          <idle>-0     (-----) [001] .n.1 24574.750205: cpu_idle: state=4294967295 cpu_id=1
91839          <idle>-0     (-----) [003] ...1 24574.750208: cpu_idle: state=4294967295 cpu_id=3
91840          <idle>-0     (-----) [003] d..1 24574.750211: cpu_idle: state=0 cpu_id=3
91841          <idle>-0     (-----) [001] d..2 24574.750211: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
91842 crtc_commit:111-253   (  253) [001] d..3 24574.750232: sched_waking: comm=SDM_EventThread pid=624 prio=111 target_cpu=001
91843 crtc_commit:111-253   (  253) [001] d..4 24574.750247: sched_wakeup: comm=SDM_EventThread pid=624 prio=111 target_cpu=001
91844 crtc_commit:111-253   (  253) [001] d..2 24574.750260: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=SDM_EventThread next_pid=624 next_prio=111
91845          <idle>-0     (-----) [002] d.h2 24574.750330: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
91846 SDM_EventThread-624   (  598) [001] d..2 24574.750331: sched_switch: prev_comm=SDM_EventThread prev_pid=624 prev_prio=111 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
91847          <idle>-0     (-----) [002] dnh3 24574.750338: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
91848          <idle>-0     (-----) [001] d..1 24574.750342: cpu_idle: state=0 cpu_id=1
91849          <idle>-0     (-----) [002] .n.1 24574.750343: cpu_idle: state=4294967295 cpu_id=2
91850          <idle>-0     (-----) [002] d..2 24574.750350: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
91851        DispSync-23904 (23896) [002] d..1 24574.750370: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
91852        DispSync-23904 (23896) [002] d..2 24574.750386: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
91853          <idle>-0     (-----) [003] .n.1 24574.750390: cpu_idle: state=4294967295 cpu_id=3
91854          <idle>-0     (-----) [003] d..2 24574.750396: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
91855        DispSync-23904 (23896) [002] d..2 24574.750406: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
91856          <idle>-0     (-----) [002] d..1 24574.750412: cpu_idle: state=0 cpu_id=2
91857  appEventThread-23905 (23896) [003] d..3 24574.750462: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
91858  appEventThread-23905 (23896) [003] d..4 24574.750480: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
91859          <idle>-0     (-----) [000] .n.1 24574.750484: cpu_idle: state=4294967295 cpu_id=0
91860          <idle>-0     (-----) [000] d..2 24574.750490: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
91861  appEventThread-23905 (23896) [003] d..3 24574.750494: sched_waking: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
91862  appEventThread-23905 (23896) [003] d..4 24574.750508: sched_wakeup: comm=ndroid.systemui pid=24151 prio=120 target_cpu=001
91863          <idle>-0     (-----) [001] .n.1 24574.750513: cpu_idle: state=4294967295 cpu_id=1
91864          <idle>-0     (-----) [001] d..2 24574.750520: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=24151 next_prio=120
91865  appEventThread-23905 (23896) [003] d..2 24574.750531: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
91866          <idle>-0     (-----) [003] d..1 24574.750539: cpu_idle: state=0 cpu_id=3
91867<...>-24151 ( 24151) [001] d..2 24574.750726: sched_switch: prev_comm=ndroid.systemui prev_pid=24151 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
91868          <idle>-0     (-----) [001] d..1 24574.750736: cpu_idle: state=0 cpu_id=1
91869 s.nexuslauncher-24827 (24827) [000] .... 24574.750768: binder_transaction: transaction=1671043 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
91870 s.nexuslauncher-24827 (24827) [000] d..4 24574.750782: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
91871 s.nexuslauncher-24827 (24827) [000] d..5 24574.750808: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
91872          <idle>-0     (-----) [001] .n.1 24574.750814: cpu_idle: state=4294967295 cpu_id=1
91873          <idle>-0     (-----) [001] d..2 24574.750821: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
91874  Binder:23896_4-24423 (23896) [001] .... 24574.750828: binder_transaction_received: transaction=1671043
91875  Binder:23896_4-24423 (23896) [001] d..1 24574.750857: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
91876  Binder:23896_4-24423 (23896) [001] d..2 24574.750869: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
91877          <idle>-0     (-----) [003] .n.1 24574.750874: cpu_idle: state=4294967295 cpu_id=3
91878 s.nexuslauncher-24827 (24827) [000] d..2 24574.750878: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91879          <idle>-0     (-----) [003] d..2 24574.750879: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
91880          <idle>-0     (-----) [000] d.s3 24574.750903: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
91881          <idle>-0     (-----) [000] dns4 24574.750914: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
91882          <idle>-0     (-----) [000] d..2 24574.750925: 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
91883  Binder:23896_4-24423 (23896) [001] d..2 24574.750928: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
91884  appEventThread-23905 (23896) [003] d..2 24574.750933: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
91885          <idle>-0     (-----) [001] d..1 24574.750937: cpu_idle: state=0 cpu_id=1
91886          <idle>-0     (-----) [003] d..1 24574.750940: cpu_idle: state=0 cpu_id=3
91887     rcu_preempt-7     (    7) [000] d..2 24574.750947: 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
91888          <idle>-0     (-----) [000] d..1 24574.750955: cpu_idle: state=0 cpu_id=0
91889          <idle>-0     (-----) [003] ...1 24574.752233: cpu_idle: state=4294967295 cpu_id=3
91890          <idle>-0     (-----) [003] d..1 24574.752237: cpu_idle: state=0 cpu_id=3
91891          <idle>-0     (-----) [001] ...1 24574.752310: cpu_idle: state=4294967295 cpu_id=1
91892          <idle>-0     (-----) [001] d..1 24574.752314: cpu_idle: state=0 cpu_id=1
91893          <idle>-0     (-----) [002] d.h2 24574.754365: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
91894          <idle>-0     (-----) [002] dnh3 24574.754372: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
91895          <idle>-0     (-----) [002] .n.1 24574.754377: cpu_idle: state=4294967295 cpu_id=2
91896          <idle>-0     (-----) [002] d..2 24574.754383: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
91897        DispSync-23904 (23896) [002] d..1 24574.754393: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
91898        DispSync-23904 (23896) [002] d..2 24574.754403: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
91899          <idle>-0     (-----) [003] .n.1 24574.754408: cpu_idle: state=4294967295 cpu_id=3
91900          <idle>-0     (-----) [003] d..2 24574.754414: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
91901        DispSync-23904 (23896) [002] d..2 24574.754422: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
91902          <idle>-0     (-----) [002] d..2 24574.754424: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
91903          <idle>-0     (-----) [002] dn.3 24574.754433: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
91904          <idle>-0     (-----) [002] d..2 24574.754438: 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
91905   sfEventThread-23906 (23896) [003] d..3 24574.754444: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
91906     ksoftirqd/2-26    (   26) [002] d..2 24574.754456: 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
91907          <idle>-0     (-----) [002] d..1 24574.754463: cpu_idle: state=0 cpu_id=2
91908   sfEventThread-23906 (23896) [003] d..4 24574.754469: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
91909          <idle>-0     (-----) [002] .n.1 24574.754473: cpu_idle: state=4294967295 cpu_id=2
91910          <idle>-0     (-----) [002] d..2 24574.754480: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
91911   sfEventThread-23906 (23896) [003] d..2 24574.754488: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
91912          <idle>-0     (-----) [003] d..1 24574.754495: cpu_idle: state=0 cpu_id=3
91913  surfaceflinger-23896 (23896) [002] d..1 24574.754914: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
91914  surfaceflinger-23896 (23896) [002] d..2 24574.754928: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
91915          <idle>-0     (-----) [003] .n.1 24574.754931: cpu_idle: state=4294967295 cpu_id=3
91916          <idle>-0     (-----) [003] d..2 24574.754937: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
91917   sfEventThread-23906 (23896) [003] d..2 24574.754955: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
91918          <idle>-0     (-----) [003] d..1 24574.754961: cpu_idle: state=0 cpu_id=3
91919  surfaceflinger-23896 (23896) [002] ...1 24574.755027: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
91920  surfaceflinger-23896 (23896) [002] ...1 24574.755033: tracing_mark_write: E|23896
91921  surfaceflinger-23896 (23896) [002] .... 24574.755092: binder_transaction: transaction=1671044 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
91922  surfaceflinger-23896 (23896) [002] ...2 24574.755124: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
91923  surfaceflinger-23896 (23896) [002] d..4 24574.755133: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
91924  surfaceflinger-23896 (23896) [002] d..5 24574.755147: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
91925          <idle>-0     (-----) [003] .n.1 24574.755152: cpu_idle: state=4294967295 cpu_id=3
91926          <idle>-0     (-----) [003] d..2 24574.755158: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
91927  HwBinder:598_3-633   (  598) [003] .... 24574.755167: binder_transaction_received: transaction=1671044
91928  surfaceflinger-23896 (23896) [002] d..2 24574.755168: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
91929          <idle>-0     (-----) [002] d..1 24574.755178: cpu_idle: state=0 cpu_id=2
91930  HwBinder:598_3-633   (  598) [003] ...1 24574.755218: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
91931  HwBinder:598_3-633   (  598) [003] ...1 24574.755325: tracing_mark_write: B|598|HWCSession::PresentDisplay::
91932  HwBinder:598_3-633   (  598) [003] ...1 24574.755802: tracing_mark_write: B|598|HWDeviceDRM::Validate::
91933  HwBinder:598_3-633   (  598) [003] ...1 24574.756261: tracing_mark_write: E|598
91934  HwBinder:598_3-633   (  598) [003] ...1 24574.756361: tracing_mark_write: B|598|HWDeviceDRM::Commit::
91935  HwBinder:598_3-633   (  598) [003] ...1 24574.756368: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
91936  HwBinder:598_3-633   (  598) [003] d..2 24574.756643: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
91937  HwBinder:598_3-633   (  598) [003] d..3 24574.756657: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
91938          <idle>-0     (-----) [001] .n.1 24574.756661: cpu_idle: state=4294967295 cpu_id=1
91939          <idle>-0     (-----) [001] d..2 24574.756668: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
91940  HwBinder:598_3-633   (  598) [003] ...1 24574.756726: tracing_mark_write: E|598
91941  HwBinder:598_3-633   (  598) [003] ...1 24574.756730: tracing_mark_write: E|598
91942  HwBinder:598_3-633   (  598) [003] ...1 24574.756764: tracing_mark_write: E|598
91943 crtc_commit:111-253   (  253) [001] d..2 24574.756789: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
91944          <idle>-0     (-----) [001] d..1 24574.756797: cpu_idle: state=0 cpu_id=1
91945  HwBinder:598_3-633   (  598) [003] ...1 24574.756803: tracing_mark_write: E|598
91946  HwBinder:598_3-633   (  598) [003] .... 24574.756815: binder_transaction: transaction=1671045 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
91947  HwBinder:598_3-633   (  598) [003] d..2 24574.756832: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
91948  HwBinder:598_3-633   (  598) [003] d..3 24574.756844: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
91949  HwBinder:598_3-633   (  598) [003] .... 24574.756848: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
91950          <idle>-0     (-----) [002] .n.1 24574.756849: cpu_idle: state=4294967295 cpu_id=2
91951          <idle>-0     (-----) [002] d..2 24574.756855: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
91952  surfaceflinger-23896 (23896) [002] .... 24574.756860: binder_transaction_received: transaction=1671045
91953  HwBinder:598_3-633   (  598) [003] d..2 24574.756902: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
91954          <idle>-0     (-----) [003] d..1 24574.756912: cpu_idle: state=0 cpu_id=3
91955          <idle>-0     (-----) [003] d.s3 24574.756976: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
91956          <idle>-0     (-----) [003] d.s4 24574.756986: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
91957          <idle>-0     (-----) [001] .n.1 24574.756992: cpu_idle: state=4294967295 cpu_id=1
91958          <idle>-0     (-----) [003] ...1 24574.756993: cpu_idle: state=4294967295 cpu_id=3
91959          <idle>-0     (-----) [003] d..1 24574.756996: cpu_idle: state=0 cpu_id=3
91960          <idle>-0     (-----) [001] d..2 24574.756997: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
91961 crtc_commit:111-253   (  253) [001] d..2 24574.757094: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
91962          <idle>-0     (-----) [001] d..1 24574.757102: cpu_idle: state=0 cpu_id=1
91963          <idle>-0     (-----) [003] d.s3 24574.757116: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
91964          <idle>-0     (-----) [003] d.s4 24574.757125: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
91965          <idle>-0     (-----) [001] .n.1 24574.757130: cpu_idle: state=4294967295 cpu_id=1
91966          <idle>-0     (-----) [003] ...1 24574.757131: cpu_idle: state=4294967295 cpu_id=3
91967          <idle>-0     (-----) [003] d..1 24574.757134: cpu_idle: state=0 cpu_id=3
91968          <idle>-0     (-----) [001] d..2 24574.757136: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
91969 crtc_commit:111-253   (  253) [001] d..1 24574.757159: clk_enable: disp_cc_mdss_vsync_clk_src
91970 crtc_commit:111-253   (  253) [001] d..1 24574.757161: clk_enable: disp_cc_mdss_rscc_vsync_clk
91971 crtc_commit:111-253   (  253) [001] d..1 24574.757174: clk_enable: disp_cc_mdss_rscc_ahb_clk
91972  surfaceflinger-23896 (23896) [002] d..2 24574.757201: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
91973          <idle>-0     (-----) [002] d..1 24574.757210: cpu_idle: state=0 cpu_id=2
91974 crtc_commit:111-253   (  253) [001] d..2 24574.757220: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
91975          <idle>-0     (-----) [001] d..1 24574.757225: cpu_idle: state=0 cpu_id=1
91976          <idle>-0     (-----) [001] d.h2 24574.757315: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
91977          <idle>-0     (-----) [001] dnh3 24574.757322: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
91978          <idle>-0     (-----) [001] .n.1 24574.757327: cpu_idle: state=4294967295 cpu_id=1
91979          <idle>-0     (-----) [001] d..2 24574.757332: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
91980 crtc_commit:111-253   (  253) [001] d..1 24574.757362: clk_enable: gcc_disp_axi_clk
91981 crtc_commit:111-253   (  253) [001] d..1 24574.757371: clk_enable: disp_cc_mdss_ahb_clk
91982 crtc_commit:111-253   (  253) [001] d..1 24574.757381: clk_enable: disp_cc_mdss_axi_clk
91983 crtc_commit:111-253   (  253) [001] d..1 24574.757395: clk_enable: gcc_disp_gpll0_clk_src
91984          <idle>-0     (-----) [000] d.H3 24574.757630: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
91985          <idle>-0     (-----) [000] d.H3 24574.757642: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
91986          <idle>-0     (-----) [004] dnh2 24574.757646: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
91987          <idle>-0     (-----) [004] .n.1 24574.757648: cpu_idle: state=4294967295 cpu_id=4
91988          <idle>-0     (-----) [004] d..2 24574.757651: 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
91989          <idle>-0     (-----) [000] d.H4 24574.757652: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
91990          <idle>-0     (-----) [000] d.s2 24574.757656: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
91991          <idle>-0     (-----) [002] .n.1 24574.757657: cpu_idle: state=4294967295 cpu_id=2
91992         sugov:4-560   (  560) [004] .... 24574.757661: clk_set_rate: perfcl_clk 1766400000
91993         sugov:4-560   (  560) [004] .... 24574.757661: clk_set_rate: cpu7_perfcl_clk 1689600000
91994          <idle>-0     (-----) [002] d..2 24574.757664: 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
91995          <idle>-0     (-----) [000] dns3 24574.757666: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
91996         sugov:4-560   (  560) [004] .... 24574.757666: clk_set_rate: cpu6_perfcl_clk 1689600000
91997         sugov:4-560   (  560) [004] .... 24574.757670: clk_set_rate: cpu5_perfcl_clk 1689600000
91998          <idle>-0     (-----) [000] dns3 24574.757671: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
91999         sugov:4-560   (  560) [004] .... 24574.757675: clk_set_rate: cpu4_perfcl_clk 1766400000
92000         sugov:4-560   (  560) [004] .... 24574.757679: cpu_frequency: state=1766400 cpu_id=4
92001         sugov:4-560   (  560) [004] .... 24574.757683: cpu_frequency: state=1766400 cpu_id=5
92002         sugov:4-560   (  560) [004] .... 24574.757685: cpu_frequency: state=1766400 cpu_id=6
92003         sugov:4-560   (  560) [004] .... 24574.757686: cpu_frequency: state=1766400 cpu_id=7
92004         sugov:0-559   (  559) [002] .... 24574.757692: clk_set_rate: pwrcl_clk 748800000
92005          <idle>-0     (-----) [000] dns4 24574.757694: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
92006         sugov:4-560   (  560) [004] d..2 24574.757694: 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
92007          <idle>-0     (-----) [004] d..1 24574.757697: cpu_idle: state=0 cpu_id=4
92008         sugov:0-559   (  559) [002] .... 24574.757701: clk_set_rate: cpu3_pwrcl_clk 1612800000
92009          <idle>-0     (-----) [000] .n.1 24574.757703: cpu_idle: state=4294967295 cpu_id=0
92010         sugov:0-559   (  559) [002] .... 24574.757709: clk_set_rate: cpu2_pwrcl_clk 1612800000
92011          <idle>-0     (-----) [000] d..2 24574.757710: 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
92012         sugov:0-559   (  559) [002] .... 24574.757715: clk_set_rate: cpu1_pwrcl_clk 1612800000
92013     rcu_preempt-7     (    7) [000] d..2 24574.757717: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
92014         sugov:0-559   (  559) [002] .... 24574.757722: clk_set_rate: cpu0_pwrcl_clk 748800000
92015     rcu_preempt-7     (    7) [000] d..3 24574.757758: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
92016     rcu_preempt-7     (    7) [000] d..2 24574.757780: 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
92017         rcuop/2-29    (   29) [000] d..2 24574.757786: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
92018         rcuop/2-29    (   29) [000] d..3 24574.757827: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
92019         sugov:0-559   (  559) [002] .... 24574.757833: cpu_frequency: state=748800 cpu_id=0
92020         rcuop/2-29    (   29) [000] d..2 24574.757839: 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
92021         sugov:0-559   (  559) [002] .... 24574.757849: cpu_frequency: state=748800 cpu_id=1
92022         sugov:0-559   (  559) [002] .... 24574.757854: cpu_frequency: state=748800 cpu_id=2
92023         sugov:0-559   (  559) [002] .... 24574.757858: cpu_frequency: state=748800 cpu_id=3
92024         rcuop/3-37    (   37) [000] d..2 24574.757876: 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
92025         sugov:0-559   (  559) [002] d..2 24574.757878: 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
92026          <idle>-0     (-----) [000] d..1 24574.757890: cpu_idle: state=0 cpu_id=0
92027 crtc_commit:111-253   (  253) [001] d..1 24574.757904: clk_enable: disp_cc_mdss_mdp_clk_src
92028 crtc_commit:111-253   (  253) [001] d..1 24574.757938: clk_enable: disp_cc_mdss_mdp_clk
92029 crtc_commit:111-253   (  253) [001] d..1 24574.758004: clk_enable: disp_cc_mdss_vsync_clk
92030  kworker/u16:10-23868 (23868) [002] d..2 24574.758160: 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
92031          <idle>-0     (-----) [002] d..1 24574.758175: cpu_idle: state=0 cpu_id=2
92032          <idle>-0     (-----) [003] d.s3 24574.758185: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
92033          <idle>-0     (-----) [003] d.s4 24574.758219: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
92034          <idle>-0     (-----) [003] dns4 24574.758225: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
92035          <idle>-0     (-----) [003] .n.1 24574.758234: cpu_idle: state=4294967295 cpu_id=3
92036 crtc_commit:111-253   (  253) [001] d..3 24574.758235: sched_pi_setprio: comm=kworker/u16:10 pid=23868 oldprio=120 newprio=83
92037          <idle>-0     (-----) [003] d..2 24574.758254: 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=83
92038  kworker/u16:10-23868 (23868) [003] d..1 24574.758269: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
92039 crtc_commit:111-253   (  253) [001] d..2 24574.758273: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
92040  kworker/u16:10-23868 (23868) [003] d..2 24574.758289: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
92041  kworker/u16:10-23868 (23868) [003] d..2 24574.758294: sched_pi_setprio: comm=kworker/u16:10 pid=23868 oldprio=83 newprio=120
92042          <idle>-0     (-----) [001] d..2 24574.758299: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
92043  kworker/u16:10-23868 (23868) [003] .... 24574.758348: clk_set_rate: l3_cluster1_vote_clk 576000000
92044  kworker/u16:10-23868 (23868) [003] .... 24574.758355: clk_set_rate: l3_clk 576000000
92045  kworker/u16:10-23868 (23868) [003] d..2 24574.758435: 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
92046          <idle>-0     (-----) [003] d..1 24574.758454: cpu_idle: state=0 cpu_id=3
92047 crtc_commit:111-253   (  253) [001] d..2 24574.758458: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
92048          <idle>-0     (-----) [001] d..1 24574.758471: cpu_idle: state=0 cpu_id=1
92049          <idle>-0     (-----) [003] d.s3 24574.758505: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
92050          <idle>-0     (-----) [003] d.s4 24574.758523: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
92051          <idle>-0     (-----) [001] .n.1 24574.758531: cpu_idle: state=4294967295 cpu_id=1
92052          <idle>-0     (-----) [003] ...1 24574.758536: cpu_idle: state=4294967295 cpu_id=3
92053          <idle>-0     (-----) [003] d..1 24574.758541: cpu_idle: state=0 cpu_id=3
92054          <idle>-0     (-----) [001] d..2 24574.758542: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
92055 crtc_commit:111-253   (  253) [001] d..1 24574.758552: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
92056 crtc_commit:111-253   (  253) [001] d..2 24574.758565: sched_blocked_reason: pid=23868 iowait=0 caller=update_request_adhoc+0x384/0x480
92057 crtc_commit:111-253   (  253) [001] d..2 24574.758574: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
92058          <idle>-0     (-----) [003] .n.1 24574.758580: cpu_idle: state=4294967295 cpu_id=3
92059          <idle>-0     (-----) [003] d..2 24574.758593: 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
92060  kworker/u16:10-23868 (23868) [003] d..2 24574.758746: 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
92061          <idle>-0     (-----) [003] d.s4 24574.758786: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
92062          <idle>-0     (-----) [003] d.s5 24574.758796: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
92063          <idle>-0     (-----) [003] dns5 24574.758801: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
92064          <idle>-0     (-----) [003] d..2 24574.758814: 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
92065  kworker/u16:10-23868 (23868) [003] .... 24574.758884: clk_set_rate: l3_cluster0_vote_clk 480000000
92066  kworker/u16:10-23868 (23868) [003] d..2 24574.758911: 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
92067          <idle>-0     (-----) [003] d..1 24574.758927: cpu_idle: state=0 cpu_id=3
92068          <idle>-0     (-----) [003] ...1 24574.760179: cpu_idle: state=4294967295 cpu_id=3
92069          <idle>-0     (-----) [003] d..1 24574.760184: cpu_idle: state=0 cpu_id=3
92070 crtc_commit:111-253   (  253) [001] d..1 24574.760270: clk_enable: disp_cc_mdss_esc0_clk_src
92071 crtc_commit:111-253   (  253) [001] d..1 24574.760273: clk_enable: disp_cc_mdss_esc0_clk
92072 crtc_commit:111-253   (  253) [001] d..1 24574.760711: clk_enable: dsi0pll_vco_clk
92073 crtc_commit:111-253   (  253) [001] d..1 24574.760714: clk_enable: dsi0pll_pll_out_div
92074 crtc_commit:111-253   (  253) [001] d..1 24574.760716: clk_enable: dsi0pll_bitclk_src
92075 crtc_commit:111-253   (  253) [001] d..1 24574.760718: clk_enable: dsi0pll_byteclk_src
92076 crtc_commit:111-253   (  253) [001] d..1 24574.760719: clk_enable: dsi0_phy_pll_out_byteclk
92077 crtc_commit:111-253   (  253) [001] d..1 24574.760721: clk_enable: disp_cc_mdss_byte0_clk_src
92078 crtc_commit:111-253   (  253) [001] d..1 24574.760724: clk_enable: disp_cc_mdss_byte0_clk
92079 crtc_commit:111-253   (  253) [001] d..1 24574.760732: clk_enable: dsi0pll_post_bit_div
92080 crtc_commit:111-253   (  253) [001] d..1 24574.760734: clk_enable: dsi0pll_pclk_src_mux
92081 crtc_commit:111-253   (  253) [001] d..1 24574.760736: clk_enable: dsi0pll_pclk_src
92082 crtc_commit:111-253   (  253) [001] d..1 24574.760737: clk_enable: dsi0_phy_pll_out_dsiclk
92083 crtc_commit:111-253   (  253) [001] d..1 24574.760739: clk_enable: disp_cc_mdss_pclk0_clk_src
92084 crtc_commit:111-253   (  253) [001] d..1 24574.760741: clk_enable: disp_cc_mdss_pclk0_clk
92085 crtc_commit:111-253   (  253) [001] d..1 24574.760749: clk_enable: disp_cc_mdss_byte0_div_clk_src
92086 crtc_commit:111-253   (  253) [001] d..1 24574.760750: clk_enable: disp_cc_mdss_byte0_intf_clk
92087          <idle>-0     (-----) [000] ...1 24574.760830: cpu_idle: state=4294967295 cpu_id=0
92088          <idle>-0     (-----) [000] d..1 24574.760836: cpu_idle: state=0 cpu_id=0
92089 crtc_commit:111-253   (  253) [001] d..2 24574.761301: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
92090          <idle>-0     (-----) [003] d.s3 24574.761312: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
92091          <idle>-0     (-----) [001] d..1 24574.761322: cpu_idle: state=0 cpu_id=1
92092          <idle>-0     (-----) [003] d.s4 24574.761331: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
92093          <idle>-0     (-----) [001] .n.1 24574.761338: cpu_idle: state=4294967295 cpu_id=1
92094          <idle>-0     (-----) [003] ...1 24574.761342: cpu_idle: state=4294967295 cpu_id=3
92095          <idle>-0     (-----) [001] d..2 24574.761350: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
92096          <idle>-0     (-----) [003] d..1 24574.761350: cpu_idle: state=0 cpu_id=3
92097 crtc_commit:111-253   (  253) [001] d..2 24574.761406: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
92098          <idle>-0     (-----) [001] d..1 24574.761415: cpu_idle: state=0 cpu_id=1
92099          <idle>-0     (-----) [000] d.h5 24574.762429: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
92100          <idle>-0     (-----) [000] d.h6 24574.762448: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
92101          <idle>-0     (-----) [001] .n.1 24574.762454: cpu_idle: state=4294967295 cpu_id=1
92102          <idle>-0     (-----) [001] d..2 24574.762462: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
92103          <idle>-0     (-----) [000] ...1 24574.762466: cpu_idle: state=4294967295 cpu_id=0
92104          <idle>-0     (-----) [000] d..1 24574.762472: cpu_idle: state=0 cpu_id=0
92105 crtc_commit:111-253   (  253) [001] d..2 24574.762532: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
92106          <idle>-0     (-----) [001] d..1 24574.762541: cpu_idle: state=0 cpu_id=1
92107          <idle>-0     (-----) [003] ...1 24574.762651: cpu_idle: state=4294967295 cpu_id=3
92108          <idle>-0     (-----) [003] d..1 24574.762656: cpu_idle: state=0 cpu_id=3
92109          <idle>-0     (-----) [000] d.s2 24574.764242: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
92110          <idle>-0     (-----) [001] d.s3 24574.764248: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
92111          <idle>-0     (-----) [000] dns3 24574.764260: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
92112          <idle>-0     (-----) [001] d.s4 24574.764270: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
92113          <idle>-0     (-----) [002] .n.1 24574.764277: cpu_idle: state=4294967295 cpu_id=2
92114          <idle>-0     (-----) [000] .n.1 24574.764280: cpu_idle: state=4294967295 cpu_id=0
92115          <idle>-0     (-----) [002] d..2 24574.764290: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
92116          <idle>-0     (-----) [000] d..2 24574.764294: 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
92117          <idle>-0     (-----) [001] ...1 24574.764302: cpu_idle: state=4294967295 cpu_id=1
92118          <idle>-0     (-----) [001] d..1 24574.764310: cpu_idle: state=0 cpu_id=1
92119     rcu_preempt-7     (    7) [000] d..2 24574.764328: 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
92120  crtc_event:111-254   (  254) [002] d..2 24574.764330: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
92121          <idle>-0     (-----) [002] d..1 24574.764340: cpu_idle: state=0 cpu_id=2
92122          <idle>-0     (-----) [000] d..1 24574.764341: cpu_idle: state=0 cpu_id=0
92123          <idle>-0     (-----) [000] d.h5 24574.765237: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
92124          <idle>-0     (-----) [000] d.h6 24574.765255: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
92125          <idle>-0     (-----) [002] .n.1 24574.765261: cpu_idle: state=4294967295 cpu_id=2
92126          <idle>-0     (-----) [002] d..2 24574.765270: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
92127          <idle>-0     (-----) [000] ...1 24574.765276: cpu_idle: state=4294967295 cpu_id=0
92128          <idle>-0     (-----) [000] d..1 24574.765282: cpu_idle: state=0 cpu_id=0
92129  crtc_event:111-254   (  254) [002] d..2 24574.765303: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
92130          <idle>-0     (-----) [002] d..1 24574.765312: cpu_idle: state=0 cpu_id=2
92131          <idle>-0     (-----) [001] ...1 24574.765620: cpu_idle: state=4294967295 cpu_id=1
92132          <idle>-0     (-----) [001] d..1 24574.765625: cpu_idle: state=0 cpu_id=1
92133          <idle>-0     (-----) [002] d.h2 24574.766825: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
92134          <idle>-0     (-----) [002] dnh3 24574.766841: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
92135          <idle>-0     (-----) [002] .n.1 24574.766851: cpu_idle: state=4294967295 cpu_id=2
92136          <idle>-0     (-----) [002] d..2 24574.766860: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
92137        DispSync-23904 (23896) [002] d..1 24574.766878: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
92138        DispSync-23904 (23896) [002] d..2 24574.766895: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
92139          <idle>-0     (-----) [003] .n.1 24574.766900: cpu_idle: state=4294967295 cpu_id=3
92140          <idle>-0     (-----) [003] d..2 24574.766912: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
92141        DispSync-23904 (23896) [002] d..2 24574.766927: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
92142          <idle>-0     (-----) [002] d..1 24574.766940: cpu_idle: state=0 cpu_id=2
92143  appEventThread-23905 (23896) [003] d..3 24574.766960: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
92144  appEventThread-23905 (23896) [003] d..4 24574.766987: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
92145          <idle>-0     (-----) [000] .n.1 24574.766992: cpu_idle: state=4294967295 cpu_id=0
92146          <idle>-0     (-----) [000] d..2 24574.767006: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
92147  appEventThread-23905 (23896) [003] d..2 24574.767032: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92148          <idle>-0     (-----) [003] d..1 24574.767047: cpu_idle: state=0 cpu_id=3
92149 s.nexuslauncher-24827 (24827) [000] .... 24574.767228: binder_transaction: transaction=1671046 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
92150 s.nexuslauncher-24827 (24827) [000] d..4 24574.767240: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
92151 s.nexuslauncher-24827 (24827) [000] d..5 24574.767267: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
92152          <idle>-0     (-----) [001] .n.1 24574.767271: cpu_idle: state=4294967295 cpu_id=1
92153          <idle>-0     (-----) [001] d..2 24574.767286: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
92154  Binder:23896_4-24423 (23896) [001] .... 24574.767294: binder_transaction_received: transaction=1671046
92155  Binder:23896_4-24423 (23896) [001] d..1 24574.767326: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
92156  Binder:23896_4-24423 (23896) [001] d..2 24574.767345: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
92157          <idle>-0     (-----) [003] .n.1 24574.767352: cpu_idle: state=4294967295 cpu_id=3
92158          <idle>-0     (-----) [003] d..2 24574.767363: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
92159 s.nexuslauncher-24827 (24827) [000] d..2 24574.767373: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92160          <idle>-0     (-----) [000] d..1 24574.767390: cpu_idle: state=0 cpu_id=0
92161  Binder:23896_4-24423 (23896) [001] d..2 24574.767392: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
92162  appEventThread-23905 (23896) [003] d..2 24574.767405: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92163          <idle>-0     (-----) [001] d..1 24574.767407: cpu_idle: state=0 cpu_id=1
92164          <idle>-0     (-----) [003] d..1 24574.767417: cpu_idle: state=0 cpu_id=3
92165          <idle>-0     (-----) [002] d.h2 24574.770838: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
92166          <idle>-0     (-----) [002] dnh3 24574.770851: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
92167          <idle>-0     (-----) [002] .n.1 24574.770860: cpu_idle: state=4294967295 cpu_id=2
92168          <idle>-0     (-----) [002] d..2 24574.770872: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
92169        DispSync-23904 (23896) [002] d.s2 24574.770909: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
92170          <idle>-0     (-----) [000] d.s2 24574.770910: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
92171          <idle>-0     (-----) [000] dns3 24574.770930: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
92172          <idle>-0     (-----) [000] .n.1 24574.770942: cpu_idle: state=4294967295 cpu_id=0
92173        DispSync-23904 (23896) [002] d.s3 24574.770954: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
92174          <idle>-0     (-----) [000] d..2 24574.770957: 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
92175     rcu_preempt-7     (    7) [000] d..2 24574.770965: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=003
92176        DispSync-23904 (23896) [002] d..1 24574.770976: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
92177        DispSync-23904 (23896) [002] d..2 24574.770995: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
92178          <idle>-0     (-----) [003] .n.1 24574.771000: cpu_idle: state=4294967295 cpu_id=3
92179     rcu_preempt-7     (    7) [000] d..3 24574.771009: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=000
92180          <idle>-0     (-----) [003] d..2 24574.771012: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
92181     rcu_preempt-7     (    7) [000] d..2 24574.771014: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
92182        DispSync-23904 (23896) [002] d..2 24574.771023: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
92183   sfEventThread-23906 (23896) [003] d..3 24574.771043: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
92184     rcu_preempt-7     (    7) [000] d..3 24574.771052: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
92185   sfEventThread-23906 (23896) [003] d..4 24574.771072: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
92186          <idle>-0     (-----) [001] .n.1 24574.771078: cpu_idle: state=4294967295 cpu_id=1
92187     rcu_preempt-7     (    7) [000] d..2 24574.771083: 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
92188          <idle>-0     (-----) [001] d..2 24574.771091: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
92189   sfEventThread-23906 (23896) [003] d..2 24574.771098: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
92190         rcuop/6-61    (   61) [000] d..2 24574.771121: 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
92191         rcuop/0-10    (   10) [003] d..2 24574.771127: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
92192          <idle>-0     (-----) [000] d..1 24574.771135: cpu_idle: state=0 cpu_id=0
92193         rcuop/0-10    (   10) [003] d..3 24574.771145: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
92194  kworker/u16:10-23868 (23868) [002] .... 24574.771180: clk_set_rate: l3_cluster0_vote_clk 300000000
92195         rcuop/0-10    (   10) [003] d..2 24574.771203: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
92196     kworker/3:1-12662 (12662) [003] .... 24574.771247: cgroup_release: root=1 id=139 level=2 path=/uid_10150/pid_13131
92197  surfaceflinger-23896 (23896) [001] d..2 24574.771266: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
92198     kworker/3:1-12662 (12662) [003] d..2 24574.771278: 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
92199          <idle>-0     (-----) [001] d..1 24574.771284: cpu_idle: state=0 cpu_id=1
92200          <idle>-0     (-----) [003] d..1 24574.771294: cpu_idle: state=0 cpu_id=3
92201  kworker/u16:10-23868 (23868) [002] d..2 24574.771356: 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
92202          <idle>-0     (-----) [002] d..1 24574.771373: cpu_idle: state=0 cpu_id=2
92203          <idle>-0     (-----) [003] d.s3 24574.771390: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
92204          <idle>-0     (-----) [003] d.s4 24574.771402: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
92205          <idle>-0     (-----) [003] d.s4 24574.771413: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
92206          <idle>-0     (-----) [002] .n.1 24574.771419: cpu_idle: state=4294967295 cpu_id=2
92207          <idle>-0     (-----) [003] ...1 24574.771425: cpu_idle: state=4294967295 cpu_id=3
92208          <idle>-0     (-----) [003] d..1 24574.771431: cpu_idle: state=0 cpu_id=3
92209          <idle>-0     (-----) [002] d..2 24574.771433: 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
92210  kworker/u16:10-23868 (23868) [002] .... 24574.771465: clk_set_rate: l3_cluster1_vote_clk 300000000
92211  kworker/u16:10-23868 (23868) [002] .... 24574.771471: clk_set_rate: l3_clk 300000000
92212  kworker/u16:10-23868 (23868) [002] d..2 24574.771692: 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
92213          <idle>-0     (-----) [002] d..1 24574.771713: cpu_idle: state=0 cpu_id=2
92214          <idle>-0     (-----) [003] d.s3 24574.771720: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
92215          <idle>-0     (-----) [003] d.s4 24574.771732: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
92216          <idle>-0     (-----) [003] d.s4 24574.771741: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
92217          <idle>-0     (-----) [002] .n.1 24574.771749: cpu_idle: state=4294967295 cpu_id=2
92218          <idle>-0     (-----) [003] ...1 24574.771752: cpu_idle: state=4294967295 cpu_id=3
92219          <idle>-0     (-----) [003] d..1 24574.771759: cpu_idle: state=0 cpu_id=3
92220          <idle>-0     (-----) [002] d..2 24574.771765: 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
92221  kworker/u16:10-23868 (23868) [002] d..2 24574.771970: 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
92222          <idle>-0     (-----) [002] d..1 24574.771988: cpu_idle: state=0 cpu_id=2
92223          <idle>-0     (-----) [003] d.s3 24574.771989: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
92224          <idle>-0     (-----) [003] d.s4 24574.772000: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
92225          <idle>-0     (-----) [003] d.s4 24574.772009: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
92226          <idle>-0     (-----) [002] .n.1 24574.772016: cpu_idle: state=4294967295 cpu_id=2
92227          <idle>-0     (-----) [003] ...1 24574.772020: cpu_idle: state=4294967295 cpu_id=3
92228          <idle>-0     (-----) [003] d..1 24574.772029: cpu_idle: state=0 cpu_id=3
92229          <idle>-0     (-----) [002] d..2 24574.772030: 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
92230  kworker/u16:10-23868 (23868) [002] d..2 24574.772065: 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
92231          <idle>-0     (-----) [002] d..1 24574.772078: cpu_idle: state=0 cpu_id=2
92232          <idle>-0     (-----) [003] ...1 24574.773240: cpu_idle: state=4294967295 cpu_id=3
92233          <idle>-0     (-----) [003] d..1 24574.773245: cpu_idle: state=0 cpu_id=3
92234          <idle>-0     (-----) [000] d.H3 24574.777658: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
92235          <idle>-0     (-----) [000] d.H3 24574.777677: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
92236          <idle>-0     (-----) [004] dnh2 24574.777682: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
92237          <idle>-0     (-----) [004] .n.1 24574.777685: cpu_idle: state=4294967295 cpu_id=4
92238          <idle>-0     (-----) [004] d..2 24574.777688: 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
92239          <idle>-0     (-----) [000] d.H4 24574.777695: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
92240         sugov:4-560   (  560) [004] .... 24574.777699: clk_set_rate: perfcl_clk 1363200000
92241         sugov:4-560   (  560) [004] .... 24574.777700: clk_set_rate: cpu7_perfcl_clk 1766400000
92242          <idle>-0     (-----) [002] .n.1 24574.777700: cpu_idle: state=4294967295 cpu_id=2
92243          <idle>-0     (-----) [000] d.s2 24574.777703: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
92244         sugov:4-560   (  560) [004] .... 24574.777705: clk_set_rate: cpu6_perfcl_clk 1766400000
92245         sugov:4-560   (  560) [004] .... 24574.777710: clk_set_rate: cpu5_perfcl_clk 1766400000
92246          <idle>-0     (-----) [002] d..2 24574.777714: 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
92247         sugov:4-560   (  560) [004] .... 24574.777715: clk_set_rate: cpu4_perfcl_clk 1363200000
92248         sugov:4-560   (  560) [004] .... 24574.777721: cpu_frequency: state=1363200 cpu_id=4
92249         sugov:4-560   (  560) [004] .... 24574.777723: cpu_frequency: state=1363200 cpu_id=5
92250          <idle>-0     (-----) [000] dns3 24574.777724: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
92251         sugov:4-560   (  560) [004] .... 24574.777725: cpu_frequency: state=1363200 cpu_id=6
92252         sugov:4-560   (  560) [004] .... 24574.777726: cpu_frequency: state=1363200 cpu_id=7
92253          <idle>-0     (-----) [000] .n.1 24574.777737: cpu_idle: state=4294967295 cpu_id=0
92254         sugov:4-560   (  560) [004] d..2 24574.777739: 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
92255         sugov:0-559   (  559) [002] .... 24574.777741: clk_set_rate: pwrcl_clk 652800000
92256          <idle>-0     (-----) [004] d..1 24574.777744: cpu_idle: state=0 cpu_id=4
92257         sugov:0-559   (  559) [002] .... 24574.777753: clk_set_rate: cpu3_pwrcl_clk 748800000
92258          <idle>-0     (-----) [000] d..2 24574.777754: 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
92259         sugov:0-559   (  559) [002] .... 24574.777762: clk_set_rate: cpu2_pwrcl_clk 748800000
92260         sugov:0-559   (  559) [002] .... 24574.777770: clk_set_rate: cpu1_pwrcl_clk 748800000
92261         sugov:0-559   (  559) [002] .... 24574.777779: clk_set_rate: cpu0_pwrcl_clk 652800000
92262     rcu_preempt-7     (    7) [000] d..2 24574.777793: 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
92263          <idle>-0     (-----) [000] d..1 24574.777814: cpu_idle: state=0 cpu_id=0
92264         sugov:0-559   (  559) [002] .... 24574.777894: cpu_frequency: state=652800 cpu_id=0
92265         sugov:0-559   (  559) [002] .... 24574.777912: cpu_frequency: state=652800 cpu_id=1
92266         sugov:0-559   (  559) [002] .... 24574.777918: cpu_frequency: state=652800 cpu_id=2
92267         sugov:0-559   (  559) [002] .... 24574.777924: cpu_frequency: state=652800 cpu_id=3
92268         sugov:0-559   (  559) [002] d..2 24574.777964: 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
92269          <idle>-0     (-----) [002] d..1 24574.777980: cpu_idle: state=0 cpu_id=2
92270          <idle>-0     (-----) [000] d.h5 24574.779080: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
92271          <idle>-0     (-----) [000] d.h6 24574.779104: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
92272          <idle>-0     (-----) [002] .n.1 24574.779111: cpu_idle: state=4294967295 cpu_id=2
92273          <idle>-0     (-----) [002] d..2 24574.779124: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
92274          <idle>-0     (-----) [000] ...1 24574.779130: cpu_idle: state=4294967295 cpu_id=0
92275          <idle>-0     (-----) [000] d..1 24574.779137: cpu_idle: state=0 cpu_id=0
92276  crtc_event:111-254   (  254) [002] d..2 24574.779167: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
92277          <idle>-0     (-----) [002] d..1 24574.779180: cpu_idle: state=0 cpu_id=2
92278          <idle>-0     (-----) [000] d..2 24574.781725: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
92279          <idle>-0     (-----) [000] dn.3 24574.781744: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
92280          <idle>-0     (-----) [000] .n.1 24574.781749: cpu_idle: state=4294967295 cpu_id=0
92281          <idle>-0     (-----) [000] d..2 24574.781768: 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
92282     ksoftirqd/0-3     (    3) [000] d.s2 24574.781785: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
92283     ksoftirqd/0-3     (    3) [000] d.s3 24574.781840: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
92284     ksoftirqd/0-3     (    3) [000] d..2 24574.781862: 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
92285  kworker/u16:10-23868 (23868) [000] d..2 24574.781989: 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
92286          <idle>-0     (-----) [000] d..1 24574.782004: cpu_idle: state=0 cpu_id=0
92287          <idle>-0     (-----) [002] d.h2 24574.783409: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
92288          <idle>-0     (-----) [002] dnh3 24574.783432: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
92289          <idle>-0     (-----) [002] .n.1 24574.783443: cpu_idle: state=4294967295 cpu_id=2
92290          <idle>-0     (-----) [002] d..2 24574.783457: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
92291        DispSync-23904 (23896) [002] d..1 24574.783476: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
92292        DispSync-23904 (23896) [002] d..2 24574.783495: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
92293          <idle>-0     (-----) [003] .n.1 24574.783500: cpu_idle: state=4294967295 cpu_id=3
92294          <idle>-0     (-----) [003] d..2 24574.783516: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
92295        DispSync-23904 (23896) [002] d..2 24574.783539: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
92296          <idle>-0     (-----) [002] d..1 24574.783557: cpu_idle: state=0 cpu_id=2
92297  appEventThread-23905 (23896) [003] d..3 24574.783561: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
92298  appEventThread-23905 (23896) [003] d..4 24574.783590: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
92299          <idle>-0     (-----) [000] .n.1 24574.783598: cpu_idle: state=4294967295 cpu_id=0
92300          <idle>-0     (-----) [000] d..2 24574.783612: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
92301  appEventThread-23905 (23896) [003] d..2 24574.783649: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92302          <idle>-0     (-----) [003] d..1 24574.783669: cpu_idle: state=0 cpu_id=3
92303 s.nexuslauncher-24827 (24827) [000] .... 24574.783853: binder_transaction: transaction=1671047 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
92304 s.nexuslauncher-24827 (24827) [000] d..4 24574.783867: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
92305 s.nexuslauncher-24827 (24827) [000] d..5 24574.783902: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
92306          <idle>-0     (-----) [001] .n.1 24574.783908: cpu_idle: state=4294967295 cpu_id=1
92307          <idle>-0     (-----) [001] d..2 24574.783930: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
92308  Binder:23896_4-24423 (23896) [001] .... 24574.783940: binder_transaction_received: transaction=1671047
92309  Binder:23896_4-24423 (23896) [001] d..1 24574.783977: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
92310  Binder:23896_4-24423 (23896) [001] d..2 24574.784003: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
92311          <idle>-0     (-----) [003] .n.1 24574.784012: cpu_idle: state=4294967295 cpu_id=3
92312          <idle>-0     (-----) [003] d..2 24574.784025: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
92313 s.nexuslauncher-24827 (24827) [000] d..2 24574.784037: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92314          <idle>-0     (-----) [000] d..1 24574.784056: cpu_idle: state=0 cpu_id=0
92315  Binder:23896_4-24423 (23896) [001] d..2 24574.784061: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
92316  appEventThread-23905 (23896) [003] d..2 24574.784078: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92317          <idle>-0     (-----) [001] d..1 24574.784083: cpu_idle: state=0 cpu_id=1
92318          <idle>-0     (-----) [003] d..1 24574.784095: cpu_idle: state=0 cpu_id=3
92319          <idle>-0     (-----) [000] d.s2 24574.784253: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
92320          <idle>-0     (-----) [000] dns3 24574.784279: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
92321          <idle>-0     (-----) [000] .n.1 24574.784302: cpu_idle: state=4294967295 cpu_id=0
92322          <idle>-0     (-----) [000] d..2 24574.784316: 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
92323     rcu_preempt-7     (    7) [000] d..2 24574.784326: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
92324     rcu_preempt-7     (    7) [000] d..3 24574.784348: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
92325     rcu_preempt-7     (    7) [000] d..2 24574.784363: 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
92326         rcuop/2-29    (   29) [000] d..2 24574.784376: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
92327         rcuop/2-29    (   29) [000] d..3 24574.784393: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
92328         rcuop/2-29    (   29) [000] d..2 24574.784404: 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
92329     rcu_preempt-7     (    7) [000] d..2 24574.784441: 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
92330          <idle>-0     (-----) [000] d..1 24574.784461: cpu_idle: state=0 cpu_id=0
92331          <idle>-0     (-----) [003] ...1 24574.785319: cpu_idle: state=4294967295 cpu_id=3
92332          <idle>-0     (-----) [003] d..1 24574.785326: cpu_idle: state=0 cpu_id=3
92333          <idle>-0     (-----) [002] d.h2 24574.787313: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
92334          <idle>-0     (-----) [002] dnh3 24574.787333: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
92335          <idle>-0     (-----) [002] .n.1 24574.787343: cpu_idle: state=4294967295 cpu_id=2
92336          <idle>-0     (-----) [002] d..2 24574.787355: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
92337        DispSync-23904 (23896) [002] d..1 24574.787370: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
92338        DispSync-23904 (23896) [002] d..2 24574.787388: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
92339          <idle>-0     (-----) [003] .n.1 24574.787394: cpu_idle: state=4294967295 cpu_id=3
92340          <idle>-0     (-----) [003] d..2 24574.787407: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
92341        DispSync-23904 (23896) [002] d..2 24574.787429: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
92342   sfEventThread-23906 (23896) [003] d..1 24574.787434: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
92343          <idle>-0     (-----) [002] d..1 24574.787446: cpu_idle: state=0 cpu_id=2
92344   sfEventThread-23906 (23896) [003] d..2 24574.787459: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
92345          <idle>-0     (-----) [002] .n.1 24574.787465: cpu_idle: state=4294967295 cpu_id=2
92346          <idle>-0     (-----) [002] d..2 24574.787478: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
92347   sfEventThread-23906 (23896) [003] d..2 24574.787497: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92348          <idle>-0     (-----) [003] d..1 24574.787513: cpu_idle: state=0 cpu_id=3
92349        DispSync-23904 (23896) [002] d..2 24574.787516: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
92350          <idle>-0     (-----) [002] d..1 24574.787530: cpu_idle: state=0 cpu_id=2
92351          <idle>-0     (-----) [000] d.s2 24574.790916: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
92352          <idle>-0     (-----) [000] dns3 24574.790937: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
92353          <idle>-0     (-----) [000] dns3 24574.790944: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
92354          <idle>-0     (-----) [000] dns4 24574.790961: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
92355          <idle>-0     (-----) [000] .n.1 24574.790976: cpu_idle: state=4294967295 cpu_id=0
92356          <idle>-0     (-----) [000] d..2 24574.790992: 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
92357     rcu_preempt-7     (    7) [000] d..2 24574.791004: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
92358     rcu_preempt-7     (    7) [000] d..3 24574.791022: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
92359     rcu_preempt-7     (    7) [000] d..2 24574.791035: 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
92360         rcuop/2-29    (   29) [000] d..2 24574.791040: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
92361         rcuop/2-29    (   29) [000] d..3 24574.791059: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
92362         rcuop/2-29    (   29) [000] d..2 24574.791070: 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
92363         rcuop/3-37    (   37) [000] d..2 24574.791079: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
92364         rcuop/3-37    (   37) [000] d..3 24574.791097: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
92365         rcuop/3-37    (   37) [000] d..2 24574.791110: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
92366     kworker/0:1-13012 (13012) [000] d..3 24574.791157: sched_waking: comm=kworker/0:2 pid=13092 prio=120 target_cpu=000
92367     kworker/0:1-13012 (13012) [000] d..3 24574.791179: sched_wakeup: comm=kworker/0:2 pid=13092 prio=120 target_cpu=000
92368     kworker/0:1-13012 (13012) [000] d..2 24574.791188: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=D ==> next_comm=kworker/0:2 next_pid=13092 next_prio=120
92369     kworker/0:2-13092 (13092) [000] d..3 24574.791201: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
92370     kworker/0:2-13092 (13092) [000] d..4 24574.791212: sched_blocked_reason: pid=13012 iowait=0 caller=flush_workqueue+0x2dc/0x790
92371     kworker/0:2-13092 (13092) [000] d..4 24574.791219: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
92372     kworker/0:2-13092 (13092) [000] d..2 24574.791231: sched_switch: prev_comm=kworker/0:2 prev_pid=13092 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
92373     kworker/0:1-13012 (13012) [000] d..2 24574.791254: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
92374  kworker/u16:10-23868 (23868) [000] d..2 24574.791372: 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
92375          <idle>-0     (-----) [000] d..1 24574.791393: cpu_idle: state=0 cpu_id=0
92376          <idle>-0     (-----) [000] d..2 24574.798209: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
92377          <idle>-0     (-----) [000] dn.3 24574.798224: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
92378          <idle>-0     (-----) [000] dnH3 24574.798307: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
92379          <idle>-0     (-----) [000] dnH3 24574.798327: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
92380          <idle>-0     (-----) [004] dnh2 24574.798332: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
92381          <idle>-0     (-----) [004] .n.1 24574.798335: cpu_idle: state=4294967295 cpu_id=4
92382          <idle>-0     (-----) [004] d..2 24574.798339: 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
92383          <idle>-0     (-----) [000] dnH4 24574.798346: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
92384         sugov:4-560   (  560) [004] .... 24574.798350: clk_set_rate: perfcl_clk 825600000
92385         sugov:4-560   (  560) [004] .... 24574.798350: clk_set_rate: cpu7_perfcl_clk 1363200000
92386          <idle>-0     (-----) [002] .n.1 24574.798353: cpu_idle: state=4294967295 cpu_id=2
92387         sugov:4-560   (  560) [004] .... 24574.798356: clk_set_rate: cpu6_perfcl_clk 1363200000
92388          <idle>-0     (-----) [000] dns3 24574.798358: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
92389         sugov:4-560   (  560) [004] .... 24574.798361: clk_set_rate: cpu5_perfcl_clk 1363200000
92390         sugov:4-560   (  560) [004] .... 24574.798367: clk_set_rate: cpu4_perfcl_clk 825600000
92391          <idle>-0     (-----) [002] d..2 24574.798367: 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
92392         sugov:4-560   (  560) [004] .... 24574.798372: cpu_frequency: state=825600 cpu_id=4
92393         sugov:4-560   (  560) [004] .... 24574.798375: cpu_frequency: state=825600 cpu_id=5
92394         sugov:4-560   (  560) [004] .... 24574.798377: cpu_frequency: state=825600 cpu_id=6
92395         sugov:4-560   (  560) [004] .... 24574.798380: cpu_frequency: state=825600 cpu_id=7
92396          <idle>-0     (-----) [000] dns4 24574.798381: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
92397          <idle>-0     (-----) [000] .n.1 24574.798392: cpu_idle: state=4294967295 cpu_id=0
92398         sugov:4-560   (  560) [004] d..2 24574.798399: 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
92399          <idle>-0     (-----) [004] d..1 24574.798406: cpu_idle: state=0 cpu_id=4
92400          <idle>-0     (-----) [000] d..2 24574.798414: 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
92401         sugov:0-559   (  559) [002] d..2 24574.798416: 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
92402          <idle>-0     (-----) [002] d..1 24574.798429: cpu_idle: state=0 cpu_id=2
92403     ksoftirqd/0-3     (    3) [000] d..2 24574.798429: 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
92404  kworker/u16:10-23868 (23868) [000] d..2 24574.798516: 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
92405          <idle>-0     (-----) [000] d..1 24574.798534: cpu_idle: state=0 cpu_id=0
92406          <idle>-0     (-----) [002] d.h2 24574.799750: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
92407          <idle>-0     (-----) [002] dnh3 24574.799768: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
92408          <idle>-0     (-----) [002] .n.1 24574.799779: cpu_idle: state=4294967295 cpu_id=2
92409          <idle>-0     (-----) [002] d..2 24574.799791: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
92410        DispSync-23904 (23896) [002] d..1 24574.799807: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
92411        DispSync-23904 (23896) [002] d..2 24574.799825: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
92412          <idle>-0     (-----) [003] .n.1 24574.799832: cpu_idle: state=4294967295 cpu_id=3
92413          <idle>-0     (-----) [003] d..2 24574.799846: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
92414        DispSync-23904 (23896) [002] d..2 24574.799864: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
92415          <idle>-0     (-----) [002] d..1 24574.799880: cpu_idle: state=0 cpu_id=2
92416  appEventThread-23905 (23896) [003] d..3 24574.799885: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
92417  appEventThread-23905 (23896) [003] d..4 24574.799914: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
92418          <idle>-0     (-----) [000] .n.1 24574.799920: cpu_idle: state=4294967295 cpu_id=0
92419          <idle>-0     (-----) [000] d..2 24574.799938: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
92420  appEventThread-23905 (23896) [003] d..2 24574.799964: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92421          <idle>-0     (-----) [003] d..1 24574.799983: cpu_idle: state=0 cpu_id=3
92422 s.nexuslauncher-24827 (24827) [000] .... 24574.800170: binder_transaction: transaction=1671048 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
92423 s.nexuslauncher-24827 (24827) [000] d..4 24574.800184: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
92424 s.nexuslauncher-24827 (24827) [000] d..5 24574.800218: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
92425          <idle>-0     (-----) [001] .n.1 24574.800225: cpu_idle: state=4294967295 cpu_id=1
92426          <idle>-0     (-----) [001] d..2 24574.800244: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
92427  Binder:23896_4-24423 (23896) [001] .... 24574.800253: binder_transaction_received: transaction=1671048
92428  Binder:23896_4-24423 (23896) [001] d..1 24574.800280: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
92429  Binder:23896_4-24423 (23896) [001] d..2 24574.800304: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
92430          <idle>-0     (-----) [003] .n.1 24574.800311: cpu_idle: state=4294967295 cpu_id=3
92431          <idle>-0     (-----) [003] d..2 24574.800325: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
92432 s.nexuslauncher-24827 (24827) [000] d..2 24574.800354: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92433  Binder:23896_4-24423 (23896) [001] d..2 24574.800358: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
92434  appEventThread-23905 (23896) [003] d..2 24574.800375: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92435          <idle>-0     (-----) [001] d..1 24574.800379: cpu_idle: state=0 cpu_id=1
92436          <idle>-0     (-----) [000] d..1 24574.800379: cpu_idle: state=0 cpu_id=0
92437          <idle>-0     (-----) [003] d..1 24574.800389: cpu_idle: state=0 cpu_id=3
92438          <idle>-0     (-----) [001] d.s3 24574.814261: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
92439          <idle>-0     (-----) [001] dns4 24574.814309: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
92440          <idle>-0     (-----) [001] .n.1 24574.814341: cpu_idle: state=4294967295 cpu_id=1
92441          <idle>-0     (-----) [001] d..2 24574.814359: 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
92442  kworker/u16:10-23868 (23868) [001] d..2 24574.814366: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
92443  kworker/u16:10-23868 (23868) [001] dn.3 24574.814397: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
92444  kworker/u16:10-23868 (23868) [001] d..2 24574.814408: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
92445  kworker/u16:15-18488 (18488) [001] d..2 24574.814518: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
92446  kworker/u16:10-23868 (23868) [001] d..2 24574.814616: 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
92447          <idle>-0     (-----) [001] d..1 24574.814633: cpu_idle: state=0 cpu_id=1
92448          <idle>-0     (-----) [000] ...1 24574.814673: cpu_idle: state=4294967295 cpu_id=0
92449          <idle>-0     (-----) [000] d..1 24574.814682: cpu_idle: state=0 cpu_id=0
92450          <idle>-0     (-----) [001] d.h2 24574.814692: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
92451          <idle>-0     (-----) [001] d.h3 24574.814704: sched_blocked_reason: pid=23868 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
92452          <idle>-0     (-----) [001] dnh3 24574.814710: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
92453          <idle>-0     (-----) [001] .n.1 24574.814722: cpu_idle: state=4294967295 cpu_id=1
92454          <idle>-0     (-----) [001] d..2 24574.814737: 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
92455  kworker/u16:10-23868 (23868) [001] d..2 24574.814836: 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
92456          <idle>-0     (-----) [001] d..1 24574.814850: cpu_idle: state=0 cpu_id=1
92457          <idle>-0     (-----) [001] d.h2 24574.814923: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
92458          <idle>-0     (-----) [001] d.h3 24574.814934: sched_blocked_reason: pid=23868 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
92459          <idle>-0     (-----) [001] dnh3 24574.814940: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
92460          <idle>-0     (-----) [001] .n.1 24574.814950: cpu_idle: state=4294967295 cpu_id=1
92461          <idle>-0     (-----) [001] d..2 24574.814964: 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
92462  kworker/u16:10-23868 (23868) [001] d..2 24574.815047: 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
92463          <idle>-0     (-----) [001] d..1 24574.815059: cpu_idle: state=0 cpu_id=1
92464          <idle>-0     (-----) [001] d.h2 24574.815137: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
92465          <idle>-0     (-----) [001] d.h3 24574.815147: sched_blocked_reason: pid=23868 iowait=0 caller=a6xx_wait_for_lowest_idle+0x2a0/0x730
92466          <idle>-0     (-----) [001] dnh3 24574.815153: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
92467          <idle>-0     (-----) [001] .n.1 24574.815163: cpu_idle: state=4294967295 cpu_id=1
92468          <idle>-0     (-----) [001] d..2 24574.815177: 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
92469  kworker/u16:10-23868 (23868) [001] d..2 24574.815208: 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
92470          <idle>-0     (-----) [001] d..1 24574.815220: cpu_idle: state=0 cpu_id=1
92471          <idle>-0     (-----) [001] d.h2 24574.815299: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
92472          <idle>-0     (-----) [001] d.h3 24574.815309: sched_blocked_reason: pid=23868 iowait=0 caller=a6xx_wait_for_lowest_idle+0x2a0/0x730
92473          <idle>-0     (-----) [001] dnh3 24574.815314: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
92474          <idle>-0     (-----) [001] .n.1 24574.815324: cpu_idle: state=4294967295 cpu_id=1
92475          <idle>-0     (-----) [001] d..2 24574.815336: 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
92476  kworker/u16:10-23868 (23868) [001] d..2 24574.815367: 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
92477          <idle>-0     (-----) [001] d..1 24574.815378: cpu_idle: state=0 cpu_id=1
92478          <idle>-0     (-----) [001] d.h2 24574.815457: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
92479          <idle>-0     (-----) [001] d.h3 24574.815467: sched_blocked_reason: pid=23868 iowait=0 caller=a6xx_wait_for_lowest_idle+0x2a0/0x730
92480          <idle>-0     (-----) [001] dnh3 24574.815472: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
92481          <idle>-0     (-----) [001] .n.1 24574.815482: cpu_idle: state=4294967295 cpu_id=1
92482          <idle>-0     (-----) [001] d..2 24574.815494: 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
92483  kworker/u16:10-23868 (23868) [001] d..2 24574.815708: 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
92484          <idle>-0     (-----) [001] d..1 24574.815728: cpu_idle: state=0 cpu_id=1
92485          <idle>-0     (-----) [003] d.s3 24574.815750: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
92486          <idle>-0     (-----) [003] d.s4 24574.815766: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
92487          <idle>-0     (-----) [003] d.s4 24574.815778: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
92488          <idle>-0     (-----) [001] .n.1 24574.815786: cpu_idle: state=4294967295 cpu_id=1
92489          <idle>-0     (-----) [003] ...1 24574.815792: cpu_idle: state=4294967295 cpu_id=3
92490          <idle>-0     (-----) [003] d..1 24574.815801: cpu_idle: state=0 cpu_id=3
92491          <idle>-0     (-----) [001] d..2 24574.815801: 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
92492  kworker/u16:10-23868 (23868) [001] d..2 24574.815869: 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
92493          <idle>-0     (-----) [001] d..1 24574.815882: cpu_idle: state=0 cpu_id=1
92494          <idle>-0     (-----) [001] d.h2 24574.815960: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
92495          <idle>-0     (-----) [001] d.h3 24574.815972: sched_blocked_reason: pid=23868 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
92496          <idle>-0     (-----) [001] dnh3 24574.815979: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
92497          <idle>-0     (-----) [001] .n.1 24574.815990: cpu_idle: state=4294967295 cpu_id=1
92498          <idle>-0     (-----) [001] d..2 24574.816004: 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
92499  kworker/u16:10-23868 (23868) [001] d..2 24574.816096: 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
92500          <idle>-0     (-----) [001] d..1 24574.816109: cpu_idle: state=0 cpu_id=1
92501          <idle>-0     (-----) [001] d.h2 24574.816186: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
92502          <idle>-0     (-----) [001] d.h3 24574.816196: sched_blocked_reason: pid=23868 iowait=0 caller=a6xx_rpmh_gpu_pwrctrl+0x13d4/0x3168
92503          <idle>-0     (-----) [001] dnh3 24574.816201: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
92504          <idle>-0     (-----) [001] .n.1 24574.816211: cpu_idle: state=4294967295 cpu_id=1
92505          <idle>-0     (-----) [001] d..2 24574.816225: 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
92506  kworker/u16:10-23868 (23868) [001] d..1 24574.816241: clk_disable: gpu_cc_cx_gmu_clk
92507          <idle>-0     (-----) [002] d.h2 24574.816254: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
92508  kworker/u16:10-23868 (23868) [001] d..1 24574.816259: clk_disable: gpu_cc_gmu_clk_src
92509          <idle>-0     (-----) [002] dnh3 24574.816269: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
92510          <idle>-0     (-----) [002] .n.1 24574.816280: cpu_idle: state=4294967295 cpu_id=2
92511  kworker/u16:10-23868 (23868) [001] d..1 24574.816292: clk_disable: gcc_gpu_gpll0_div_clk_src
92512          <idle>-0     (-----) [002] d..2 24574.816293: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
92513        DispSync-23904 (23896) [002] d..1 24574.816307: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
92514        DispSync-23904 (23896) [002] d..2 24574.816324: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
92515          <idle>-0     (-----) [003] .n.1 24574.816330: cpu_idle: state=4294967295 cpu_id=3
92516          <idle>-0     (-----) [003] d..2 24574.816345: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
92517        DispSync-23904 (23896) [002] d..2 24574.816362: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
92518          <idle>-0     (-----) [002] d..1 24574.816378: cpu_idle: state=0 cpu_id=2
92519  appEventThread-23905 (23896) [003] d..3 24574.816383: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
92520  appEventThread-23905 (23896) [003] d..4 24574.816408: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
92521          <idle>-0     (-----) [000] .n.1 24574.816413: cpu_idle: state=4294967295 cpu_id=0
92522          <idle>-0     (-----) [000] d..2 24574.816433: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
92523  appEventThread-23905 (23896) [003] d..2 24574.816458: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92524          <idle>-0     (-----) [003] d..1 24574.816477: cpu_idle: state=0 cpu_id=3
92525 s.nexuslauncher-24827 (24827) [000] .... 24574.816639: binder_transaction: transaction=1671049 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
92526 s.nexuslauncher-24827 (24827) [000] d..4 24574.816653: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
92527 s.nexuslauncher-24827 (24827) [000] d..5 24574.816696: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=002
92528          <idle>-0     (-----) [002] .n.1 24574.816702: cpu_idle: state=4294967295 cpu_id=2
92529          <idle>-0     (-----) [002] d..2 24574.816719: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
92530  Binder:23896_4-24423 (23896) [002] .... 24574.816730: binder_transaction_received: transaction=1671049
92531  Binder:23896_4-24423 (23896) [002] d..1 24574.816770: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
92532  Binder:23896_4-24423 (23896) [002] d..2 24574.816792: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
92533          <idle>-0     (-----) [003] .n.1 24574.816799: cpu_idle: state=4294967295 cpu_id=3
92534  kworker/u16:10-23868 (23868) [001] d..1 24574.816802: clk_disable: gpll0_out_even
92535          <idle>-0     (-----) [003] d..2 24574.816812: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
92536 s.nexuslauncher-24827 (24827) [000] d..2 24574.816830: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92537  kworker/u16:10-23868 (23868) [001] d..1 24574.816831: clk_disable: gpu_cc_cxo_clk
92538  kworker/u16:10-23868 (23868) [001] d..1 24574.816845: clk_disable: gcc_ddrss_gpu_axi_clk
92539  Binder:23896_4-24423 (23896) [002] d..2 24574.816854: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
92540          <idle>-0     (-----) [000] d..1 24574.816854: cpu_idle: state=0 cpu_id=0
92541  appEventThread-23905 (23896) [003] d..2 24574.816862: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92542  kworker/u16:10-23868 (23868) [001] d..1 24574.816865: clk_disable: gcc_gpu_memnoc_gfx_clk
92543          <idle>-0     (-----) [002] d..1 24574.816875: cpu_idle: state=0 cpu_id=2
92544          <idle>-0     (-----) [003] d..1 24574.816876: cpu_idle: state=0 cpu_id=3
92545  kworker/u16:10-23868 (23868) [001] d..2 24574.817019: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
92546  kworker/u16:10-23868 (23868) [001] dn.3 24574.817048: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
92547  kworker/u16:10-23868 (23868) [001] d..2 24574.817063: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
92548  kworker/u16:15-18488 (18488) [001] d..2 24574.817259: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
92549  kworker/u16:15-18488 (18488) [001] d..3 24574.817320: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
92550  kworker/u16:15-18488 (18488) [001] d..2 24574.817343: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
92551  kworker/u16:16-25995 (25995) [001] d..2 24574.817360: 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
92552          <idle>-0     (-----) [002] ...1 24574.817391: cpu_idle: state=4294967295 cpu_id=2
92553          <idle>-0     (-----) [003] ...1 24574.817393: cpu_idle: state=4294967295 cpu_id=3
92554          <idle>-0     (-----) [004] ...1 24574.817394: cpu_idle: state=4294967295 cpu_id=4
92555          <idle>-0     (-----) [005] ...1 24574.817397: cpu_idle: state=4294967295 cpu_id=5
92556          <idle>-0     (-----) [002] d..1 24574.817398: cpu_idle: state=2 cpu_id=2
92557          <idle>-0     (-----) [004] d..1 24574.817399: cpu_idle: state=2 cpu_id=4
92558          <idle>-0     (-----) [003] d..1 24574.817401: cpu_idle: state=0 cpu_id=3
92559          <idle>-0     (-----) [005] d..1 24574.817402: cpu_idle: state=2 cpu_id=5
92560          <idle>-0     (-----) [007] ...1 24574.817403: cpu_idle: state=4294967295 cpu_id=7
92561          <idle>-0     (-----) [006] ...1 24574.817404: cpu_idle: state=4294967295 cpu_id=6
92562          <idle>-0     (-----) [007] d..1 24574.817408: cpu_idle: state=2 cpu_id=7
92563          <idle>-0     (-----) [006] d..1 24574.817409: cpu_idle: state=2 cpu_id=6
92564  kworker/u16:10-23868 (23868) [001] d..2 24574.817429: 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
92565          <idle>-0     (-----) [001] d..1 24574.817452: cpu_idle: state=0 cpu_id=1
92566          <idle>-0     (-----) [001] d..2 24574.818581: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
92567          <idle>-0     (-----) [001] dn.3 24574.818601: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
92568          <idle>-0     (-----) [001] dnH3 24574.818681: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
92569          <idle>-0     (-----) [001] dnH3 24574.818700: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
92570          <idle>-0     (-----) [001] dnH4 24574.818717: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
92571          <idle>-0     (-----) [001] .n.1 24574.818732: cpu_idle: state=4294967295 cpu_id=1
92572          <idle>-0     (-----) [001] d..2 24574.818753: 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
92573     ksoftirqd/1-18    (   18) [001] d..2 24574.818793: 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
92574          <idle>-0     (-----) [001] d..1 24574.818809: cpu_idle: state=0 cpu_id=1
92575          <idle>-0     (-----) [003] ...1 24574.818841: cpu_idle: state=4294967295 cpu_id=3
92576          <idle>-0     (-----) [003] d..1 24574.818847: cpu_idle: state=2 cpu_id=3
92577          <idle>-0     (-----) [002] .n.1 24574.818935: cpu_idle: state=4294967295 cpu_id=2
92578          <idle>-0     (-----) [002] d..2 24574.818962: 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
92579         sugov:0-559   (  559) [002] d..2 24574.819009: 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
92580          <idle>-0     (-----) [002] d..1 24574.819032: cpu_idle: state=0 cpu_id=2
92581          <idle>-0     (-----) [004] dnh2 24574.819422: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
92582          <idle>-0     (-----) [004] .n.1 24574.819431: cpu_idle: state=4294967295 cpu_id=4
92583          <idle>-0     (-----) [004] d..2 24574.819444: 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
92584         sugov:4-560   (  560) [004] d..2 24574.819468: 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
92585          <idle>-0     (-----) [004] d..1 24574.819479: cpu_idle: state=2 cpu_id=4
92586          <idle>-0     (-----) [002] d..2 24574.825046: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
92587          <idle>-0     (-----) [002] dn.3 24574.825067: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
92588          <idle>-0     (-----) [002] .n.1 24574.825073: cpu_idle: state=4294967295 cpu_id=2
92589          <idle>-0     (-----) [002] d..2 24574.825091: 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
92590     ksoftirqd/2-26    (   26) [002] d.s2 24574.825107: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
92591     ksoftirqd/2-26    (   26) [002] d.s3 24574.825161: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
92592     ksoftirqd/2-26    (   26) [002] d..2 24574.825185: 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
92593  kworker/u16:10-23868 (23868) [002] d..2 24574.825399: 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
92594          <idle>-0     (-----) [002] d..1 24574.825419: cpu_idle: state=2 cpu_id=2
92595          <idle>-0     (-----) [003] d.s3 24574.825585: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
92596          <idle>-0     (-----) [003] d.s4 24574.825604: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
92597          <idle>-0     (-----) [003] d.s4 24574.825617: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
92598          <idle>-0     (-----) [003] ...1 24574.825635: cpu_idle: state=4294967295 cpu_id=3
92599          <idle>-0     (-----) [003] d..1 24574.825648: cpu_idle: state=2 cpu_id=3
92600          <idle>-0     (-----) [002] .n.1 24574.825785: cpu_idle: state=4294967295 cpu_id=2
92601          <idle>-0     (-----) [002] d..2 24574.825813: 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
92602  kworker/u16:10-23868 (23868) [002] d..2 24574.825951: 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
92603          <idle>-0     (-----) [002] d..1 24574.825974: cpu_idle: state=0 cpu_id=2
92604          <idle>-0     (-----) [000] d..2 24574.831150: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
92605          <idle>-0     (-----) [000] dn.3 24574.831167: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
92606          <idle>-0     (-----) [000] .n.1 24574.831173: cpu_idle: state=4294967295 cpu_id=0
92607          <idle>-0     (-----) [000] d..2 24574.831193: 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
92608     ksoftirqd/0-3     (    3) [000] d..2 24574.831241: 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
92609          <idle>-0     (-----) [000] d..1 24574.831258: cpu_idle: state=0 cpu_id=0
92610          <idle>-0     (-----) [002] d.h2 24574.832728: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
92611          <idle>-0     (-----) [002] dnh3 24574.832754: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
92612          <idle>-0     (-----) [002] .n.1 24574.832804: cpu_idle: state=4294967295 cpu_id=2
92613          <idle>-0     (-----) [002] d..2 24574.832820: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
92614        DispSync-23904 (23896) [002] d..1 24574.832849: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
92615        DispSync-23904 (23896) [002] d..2 24574.832870: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
92616        DispSync-23904 (23896) [002] d..2 24574.832916: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
92617          <idle>-0     (-----) [002] d..1 24574.832937: cpu_idle: state=0 cpu_id=2
92618          <idle>-0     (-----) [003] .n.1 24574.833038: cpu_idle: state=4294967295 cpu_id=3
92619          <idle>-0     (-----) [003] d..2 24574.833065: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
92620  appEventThread-23905 (23896) [003] d..3 24574.833129: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
92621  appEventThread-23905 (23896) [003] d..4 24574.833163: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
92622          <idle>-0     (-----) [000] .n.1 24574.833169: cpu_idle: state=4294967295 cpu_id=0
92623          <idle>-0     (-----) [000] d..2 24574.833184: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
92624  appEventThread-23905 (23896) [003] d..2 24574.833228: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92625          <idle>-0     (-----) [003] d..1 24574.833252: cpu_idle: state=2 cpu_id=3
92626 s.nexuslauncher-24827 (24827) [000] .... 24574.833398: binder_transaction: transaction=1671050 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
92627 s.nexuslauncher-24827 (24827) [000] d..4 24574.833411: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=002
92628 s.nexuslauncher-24827 (24827) [000] d..5 24574.833453: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
92629          <idle>-0     (-----) [001] .n.1 24574.833458: cpu_idle: state=4294967295 cpu_id=1
92630          <idle>-0     (-----) [001] d..2 24574.833475: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
92631  Binder:23896_4-24423 (23896) [001] .... 24574.833487: binder_transaction_received: transaction=1671050
92632  Binder:23896_4-24423 (23896) [001] d..1 24574.833529: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
92633  Binder:23896_4-24423 (23896) [001] d..2 24574.833551: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
92634 s.nexuslauncher-24827 (24827) [000] d..2 24574.833582: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92635          <idle>-0     (-----) [000] d..1 24574.833604: cpu_idle: state=0 cpu_id=0
92636  Binder:23896_4-24423 (23896) [001] d..2 24574.833612: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
92637          <idle>-0     (-----) [001] d..1 24574.833635: cpu_idle: state=0 cpu_id=1
92638          <idle>-0     (-----) [003] .n.1 24574.833717: cpu_idle: state=4294967295 cpu_id=3
92639          <idle>-0     (-----) [003] d..2 24574.833743: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
92640  appEventThread-23905 (23896) [003] d..2 24574.833825: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92641          <idle>-0     (-----) [003] d..1 24574.833849: cpu_idle: state=0 cpu_id=3
92642          <idle>-0     (-----) [001] d..2 24574.834761: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
92643          <idle>-0     (-----) [001] dn.3 24574.834774: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
92644          <idle>-0     (-----) [001] .n.1 24574.834780: cpu_idle: state=4294967295 cpu_id=1
92645          <idle>-0     (-----) [001] d..2 24574.834797: 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
92646     ksoftirqd/1-18    (   18) [001] d.s2 24574.834810: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
92647     ksoftirqd/1-18    (   18) [001] d.s3 24574.834863: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
92648     ksoftirqd/1-18    (   18) [001] d.s2 24574.834876: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
92649     ksoftirqd/1-18    (   18) [001] d.s3 24574.834898: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
92650     ksoftirqd/1-18    (   18) [001] d..2 24574.834914: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
92651     kworker/1:1-13091 (13091) [001] d..2 24574.834987: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
92652  kworker/u16:10-23868 (23868) [001] d..2 24574.835114: 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
92653          <idle>-0     (-----) [001] d..1 24574.835135: cpu_idle: state=0 cpu_id=1
92654          <idle>-0     (-----) [000] d.H3 24574.837669: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
92655          <idle>-0     (-----) [000] d.H3 24574.837689: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
92656          <idle>-0     (-----) [000] d.H4 24574.837710: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
92657          <idle>-0     (-----) [002] .n.1 24574.837718: cpu_idle: state=4294967295 cpu_id=2
92658          <idle>-0     (-----) [000] d.s3 24574.837722: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
92659          <idle>-0     (-----) [002] d..2 24574.837734: 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
92660          <idle>-0     (-----) [000] d.s4 24574.837738: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
92661          <idle>-0     (-----) [001] .n.1 24574.837746: cpu_idle: state=4294967295 cpu_id=1
92662          <idle>-0     (-----) [001] d..2 24574.837763: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
92663         sugov:0-559   (  559) [002] d..2 24574.837775: 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
92664          <idle>-0     (-----) [000] ...1 24574.837775: cpu_idle: state=4294967295 cpu_id=0
92665          <idle>-0     (-----) [000] d..1 24574.837787: cpu_idle: state=0 cpu_id=0
92666          <idle>-0     (-----) [002] d..1 24574.837790: cpu_idle: state=0 cpu_id=2
92667 crtc_commit:111-253   (  253) [001] d..2 24574.837846: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
92668          <idle>-0     (-----) [001] d..1 24574.837862: cpu_idle: state=0 cpu_id=1
92669          <idle>-0     (-----) [004] dnh2 24574.838410: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
92670          <idle>-0     (-----) [004] .n.1 24574.838419: cpu_idle: state=4294967295 cpu_id=4
92671          <idle>-0     (-----) [004] d..2 24574.838431: 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
92672         sugov:4-560   (  560) [004] d..2 24574.838452: 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
92673          <idle>-0     (-----) [004] d..1 24574.838464: cpu_idle: state=2 cpu_id=4
92674          <idle>-0     (-----) [003] ...1 24574.839862: cpu_idle: state=4294967295 cpu_id=3
92675          <idle>-0     (-----) [003] d..1 24574.839870: cpu_idle: state=2 cpu_id=3
92676          <idle>-0     (-----) [000] d.h5 24574.847609: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
92677          <idle>-0     (-----) [000] d.h6 24574.847630: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
92678          <idle>-0     (-----) [001] .n.1 24574.847637: cpu_idle: state=4294967295 cpu_id=1
92679          <idle>-0     (-----) [000] d..2 24574.847648: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
92680          <idle>-0     (-----) [001] d..2 24574.847659: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
92681          <idle>-0     (-----) [000] dn.3 24574.847663: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
92682          <idle>-0     (-----) [000] .n.1 24574.847667: cpu_idle: state=4294967295 cpu_id=0
92683          <idle>-0     (-----) [000] d..2 24574.847689: 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
92684     ksoftirqd/0-3     (    3) [000] d.s2 24574.847700: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
92685     ksoftirqd/0-3     (    3) [000] d.s3 24574.847753: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
92686 crtc_commit:111-253   (  253) [001] d..1 24574.847761: clk_disable: disp_cc_mdss_byte0_intf_clk
92687     ksoftirqd/0-3     (    3) [000] d..2 24574.847775: 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
92688 crtc_commit:111-253   (  253) [001] d..1 24574.847779: clk_disable: disp_cc_mdss_byte0_div_clk_src
92689 crtc_commit:111-253   (  253) [001] d..1 24574.847782: clk_disable: disp_cc_mdss_pclk0_clk
92690 crtc_commit:111-253   (  253) [001] d..1 24574.847796: clk_disable: disp_cc_mdss_pclk0_clk_src
92691 crtc_commit:111-253   (  253) [001] d..1 24574.847798: clk_disable: dsi0_phy_pll_out_dsiclk
92692 crtc_commit:111-253   (  253) [001] d..1 24574.847800: clk_disable: dsi0pll_pclk_src
92693 crtc_commit:111-253   (  253) [001] d..1 24574.847802: clk_disable: dsi0pll_pclk_src_mux
92694 crtc_commit:111-253   (  253) [001] d..1 24574.847805: clk_disable: dsi0pll_post_bit_div
92695 crtc_commit:111-253   (  253) [001] d..1 24574.847818: clk_disable: disp_cc_mdss_byte0_clk
92696 crtc_commit:111-253   (  253) [001] d..1 24574.847831: clk_disable: disp_cc_mdss_byte0_clk_src
92697 crtc_commit:111-253   (  253) [001] d..1 24574.847834: clk_disable: dsi0_phy_pll_out_byteclk
92698 crtc_commit:111-253   (  253) [001] d..1 24574.847836: clk_disable: dsi0pll_byteclk_src
92699 crtc_commit:111-253   (  253) [001] d..1 24574.847838: clk_disable: dsi0pll_bitclk_src
92700 crtc_commit:111-253   (  253) [001] d..1 24574.847840: clk_disable: dsi0pll_pll_out_div
92701 crtc_commit:111-253   (  253) [001] d..1 24574.847842: clk_disable: dsi0pll_vco_clk
92702 crtc_commit:111-253   (  253) [001] d..1 24574.847897: clk_disable: disp_cc_mdss_esc0_clk
92703 crtc_commit:111-253   (  253) [001] d..1 24574.847910: clk_disable: disp_cc_mdss_esc0_clk_src
92704 crtc_commit:111-253   (  253) [001] d..1 24574.848002: clk_disable: disp_cc_mdss_vsync_clk
92705 crtc_commit:111-253   (  253) [001] d..1 24574.848017: clk_disable: disp_cc_mdss_mdp_clk
92706 crtc_commit:111-253   (  253) [001] d..1 24574.848028: clk_disable: disp_cc_mdss_mdp_clk_src
92707 crtc_commit:111-253   (  253) [001] d..1 24574.848063: clk_disable: gcc_disp_gpll0_clk_src
92708  kworker/u16:10-23868 (23868) [000] d..2 24574.848185: 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
92709          <idle>-0     (-----) [000] d..1 24574.848209: cpu_idle: state=2 cpu_id=0
92710          <idle>-0     (-----) [003] d.s3 24574.848381: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
92711          <idle>-0     (-----) [003] d.s4 24574.848432: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
92712          <idle>-0     (-----) [003] dns4 24574.848441: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
92713          <idle>-0     (-----) [003] .n.1 24574.848453: cpu_idle: state=4294967295 cpu_id=3
92714          <idle>-0     (-----) [003] d..2 24574.848474: 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
92715  kworker/u16:10-23868 (23868) [003] d..2 24574.848522: 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
92716          <idle>-0     (-----) [003] d..1 24574.848545: cpu_idle: state=0 cpu_id=3
92717 crtc_commit:111-253   (  253) [001] d..1 24574.848588: clk_disable: disp_cc_mdss_axi_clk
92718 crtc_commit:111-253   (  253) [001] d..1 24574.848605: clk_disable: disp_cc_mdss_ahb_clk
92719 crtc_commit:111-253   (  253) [001] d..1 24574.848620: clk_disable: gcc_disp_axi_clk
92720 crtc_commit:111-253   (  253) [001] d..2 24574.848724: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
92721          <idle>-0     (-----) [001] d..1 24574.848741: cpu_idle: state=0 cpu_id=1
92722          <idle>-0     (-----) [001] d.h2 24574.848801: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
92723          <idle>-0     (-----) [001] dnh3 24574.848820: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
92724          <idle>-0     (-----) [001] .n.1 24574.848833: cpu_idle: state=4294967295 cpu_id=1
92725          <idle>-0     (-----) [001] d..2 24574.848846: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
92726 crtc_commit:111-253   (  253) [001] d..1 24574.848869: clk_disable: disp_cc_mdss_rscc_ahb_clk
92727 crtc_commit:111-253   (  253) [001] d..1 24574.848888: clk_disable: disp_cc_mdss_rscc_vsync_clk
92728 crtc_commit:111-253   (  253) [001] d..1 24574.848902: clk_disable: disp_cc_mdss_vsync_clk_src
92729 crtc_commit:111-253   (  253) [001] d..2 24574.849123: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
92730          <idle>-0     (-----) [001] d..1 24574.849146: cpu_idle: state=2 cpu_id=1
92731          <idle>-0     (-----) [003] d.s3 24574.849156: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
92732          <idle>-0     (-----) [003] d.s4 24574.849181: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
92733          <idle>-0     (-----) [003] ...1 24574.849197: cpu_idle: state=4294967295 cpu_id=3
92734          <idle>-0     (-----) [003] d..1 24574.849204: cpu_idle: state=0 cpu_id=3
92735          <idle>-0     (-----) [002] d.h2 24574.849206: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
92736          <idle>-0     (-----) [002] dnh3 24574.849226: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
92737          <idle>-0     (-----) [002] .n.1 24574.849237: cpu_idle: state=4294967295 cpu_id=2
92738          <idle>-0     (-----) [002] d..2 24574.849250: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
92739        DispSync-23904 (23896) [002] d..1 24574.849266: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
92740        DispSync-23904 (23896) [002] d..2 24574.849286: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
92741          <idle>-0     (-----) [003] .n.1 24574.849293: cpu_idle: state=4294967295 cpu_id=3
92742          <idle>-0     (-----) [003] d..2 24574.849307: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
92743        DispSync-23904 (23896) [002] d..2 24574.849324: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
92744          <idle>-0     (-----) [002] d..1 24574.849344: cpu_idle: state=0 cpu_id=2
92745  appEventThread-23905 (23896) [003] d..3 24574.849365: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
92746  appEventThread-23905 (23896) [003] d..4 24574.849396: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
92747  appEventThread-23905 (23896) [003] d..2 24574.849452: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92748          <idle>-0     (-----) [003] d..1 24574.849476: cpu_idle: state=0 cpu_id=3
92749          <idle>-0     (-----) [001] .n.1 24574.849582: cpu_idle: state=4294967295 cpu_id=1
92750          <idle>-0     (-----) [001] d..2 24574.849608: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
92751          <idle>-0     (-----) [000] .n.1 24574.849699: cpu_idle: state=4294967295 cpu_id=0
92752          <idle>-0     (-----) [000] d..2 24574.849732: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
92753 crtc_commit:111-253   (  253) [001] d..2 24574.849869: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
92754          <idle>-0     (-----) [001] d..1 24574.849894: cpu_idle: state=0 cpu_id=1
92755          <idle>-0     (-----) [003] d.s3 24574.849908: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
92756          <idle>-0     (-----) [003] d.s4 24574.849931: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
92757          <idle>-0     (-----) [001] .n.1 24574.849940: cpu_idle: state=4294967295 cpu_id=1
92758          <idle>-0     (-----) [003] ...1 24574.849948: cpu_idle: state=4294967295 cpu_id=3
92759          <idle>-0     (-----) [001] d..2 24574.849953: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
92760          <idle>-0     (-----) [003] d..1 24574.849955: cpu_idle: state=0 cpu_id=3
92761 crtc_commit:111-253   (  253) [001] d..3 24574.849994: sched_waking: comm=SDM_EventThread pid=624 prio=111 target_cpu=001
92762 s.nexuslauncher-24827 (24827) [000] .... 24574.850029: binder_transaction: transaction=1671051 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
92763 s.nexuslauncher-24827 (24827) [000] d..4 24574.850044: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
92764 crtc_commit:111-253   (  253) [001] d..4 24574.850076: sched_wakeup: comm=SDM_EventThread pid=624 prio=111 target_cpu=000
92765 s.nexuslauncher-24827 (24827) [000] d..5 24574.850104: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=002
92766          <idle>-0     (-----) [002] .n.1 24574.850112: cpu_idle: state=4294967295 cpu_id=2
92767 crtc_commit:111-253   (  253) [001] d..2 24574.850119: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
92768          <idle>-0     (-----) [002] d..2 24574.850129: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
92769          <idle>-0     (-----) [001] d..1 24574.850139: cpu_idle: state=0 cpu_id=1
92770  Binder:23896_4-24423 (23896) [002] .... 24574.850141: binder_transaction_received: transaction=1671051
92771  Binder:23896_4-24423 (23896) [002] d..1 24574.850186: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
92772  Binder:23896_4-24423 (23896) [002] d..2 24574.850212: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
92773          <idle>-0     (-----) [003] .n.1 24574.850218: cpu_idle: state=4294967295 cpu_id=3
92774          <idle>-0     (-----) [003] d..2 24574.850234: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
92775 s.nexuslauncher-24827 (24827) [000] d..2 24574.850236: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=SDM_EventThread next_pid=624 next_prio=111
92776  Binder:23896_4-24423 (23896) [002] d..2 24574.850276: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
92777  appEventThread-23905 (23896) [003] d..2 24574.850293: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92778          <idle>-0     (-----) [002] d..1 24574.850297: cpu_idle: state=2 cpu_id=2
92779          <idle>-0     (-----) [003] d..1 24574.850310: cpu_idle: state=0 cpu_id=3
92780 SDM_EventThread-624   (  598) [000] d..2 24574.850396: sched_switch: prev_comm=SDM_EventThread prev_pid=624 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92781          <idle>-0     (-----) [000] d..1 24574.850426: cpu_idle: state=0 cpu_id=0
92782          <idle>-0     (-----) [003] d..2 24574.851652: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
92783          <idle>-0     (-----) [003] dn.3 24574.851683: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
92784          <idle>-0     (-----) [003] .n.1 24574.851692: cpu_idle: state=4294967295 cpu_id=3
92785          <idle>-0     (-----) [003] d..2 24574.851711: 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
92786     ksoftirqd/3-34    (   34) [003] d..2 24574.851781: 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
92787          <idle>-0     (-----) [003] d..1 24574.851794: cpu_idle: state=2 cpu_id=3
92788          <idle>-0     (-----) [001] d..2 24574.856154: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
92789          <idle>-0     (-----) [001] dn.3 24574.856169: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
92790          <idle>-0     (-----) [001] .n.1 24574.856175: cpu_idle: state=4294967295 cpu_id=1
92791          <idle>-0     (-----) [001] d..2 24574.856194: 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
92792     ksoftirqd/1-18    (   18) [001] d..2 24574.856239: 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
92793          <idle>-0     (-----) [001] d..1 24574.856254: cpu_idle: state=2 cpu_id=1
92794          <idle>-0     (-----) [000] ...1 24574.856439: cpu_idle: state=4294967295 cpu_id=0
92795          <idle>-0     (-----) [000] d..1 24574.856447: cpu_idle: state=2 cpu_id=0
92796          <idle>-0     (-----) [002] d.h2 24574.866087: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
92797          <idle>-0     (-----) [002] dnh3 24574.866121: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
92798          <idle>-0     (-----) [002] dnh3 24574.866215: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
92799          <idle>-0     (-----) [002] dnh3 24574.866234: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
92800          <idle>-0     (-----) [002] dnh4 24574.866263: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
92801          <idle>-0     (-----) [002] .n.1 24574.866275: cpu_idle: state=4294967295 cpu_id=2
92802          <idle>-0     (-----) [002] d..2 24574.866295: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
92803        DispSync-23904 (23896) [002] d..1 24574.866325: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
92804        DispSync-23904 (23896) [002] d..2 24574.866349: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
92805        DispSync-23904 (23896) [002] d..2 24574.866405: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
92806          <idle>-0     (-----) [002] d..2 24574.866416: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
92807          <idle>-0     (-----) [002] dn.3 24574.866433: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
92808          <idle>-0     (-----) [002] d..2 24574.866445: 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
92809     ksoftirqd/2-26    (   26) [002] d.s2 24574.866460: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
92810     ksoftirqd/2-26    (   26) [002] d.s3 24574.866512: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
92811     ksoftirqd/2-26    (   26) [002] d.s2 24574.866533: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
92812     ksoftirqd/2-26    (   26) [002] d.s3 24574.866562: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
92813     ksoftirqd/2-26    (   26) [002] d..2 24574.866580: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
92814          <idle>-0     (-----) [003] .n.1 24574.866585: cpu_idle: state=4294967295 cpu_id=3
92815          <idle>-0     (-----) [003] d..2 24574.866616: 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
92816     kworker/2:0-12895 (12895) [002] d..2 24574.866643: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
92817         sugov:0-559   (  559) [003] d..2 24574.866671: 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
92818          <idle>-0     (-----) [001] .n.1 24574.866677: cpu_idle: state=4294967295 cpu_id=1
92819          <idle>-0     (-----) [001] d..2 24574.866706: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
92820          <idle>-0     (-----) [003] d..1 24574.866734: cpu_idle: state=0 cpu_id=3
92821  appEventThread-23905 (23896) [001] d..3 24574.866782: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
92822  appEventThread-23905 (23896) [001] d..4 24574.866821: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
92823  kworker/u16:10-23868 (23868) [002] d..2 24574.866888: 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
92824  appEventThread-23905 (23896) [001] d..2 24574.866897: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
92825          <idle>-0     (-----) [002] d..1 24574.866915: cpu_idle: state=2 cpu_id=2
92826          <idle>-0     (-----) [001] d..1 24574.866925: cpu_idle: state=0 cpu_id=1
92827          <idle>-0     (-----) [000] .n.1 24574.867135: cpu_idle: state=4294967295 cpu_id=0
92828          <idle>-0     (-----) [000] d..2 24574.867166: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
92829          <idle>-0     (-----) [004] dnh2 24574.867288: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
92830          <idle>-0     (-----) [004] .n.1 24574.867297: cpu_idle: state=4294967295 cpu_id=4
92831          <idle>-0     (-----) [004] d..2 24574.867310: 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
92832         sugov:4-560   (  560) [004] d..2 24574.867332: 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
92833          <idle>-0     (-----) [004] d..1 24574.867344: cpu_idle: state=2 cpu_id=4
92834 s.nexuslauncher-24827 (24827) [000] .... 24574.867433: binder_transaction: transaction=1671052 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
92835 s.nexuslauncher-24827 (24827) [000] d..4 24574.867449: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=002
92836 s.nexuslauncher-24827 (24827) [000] d..5 24574.867498: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
92837          <idle>-0     (-----) [001] .n.1 24574.867506: cpu_idle: state=4294967295 cpu_id=1
92838          <idle>-0     (-----) [001] d..2 24574.867525: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
92839  Binder:23896_4-24423 (23896) [001] .... 24574.867537: binder_transaction_received: transaction=1671052
92840  Binder:23896_4-24423 (23896) [001] d..1 24574.867641: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
92841  Binder:23896_4-24423 (23896) [001] d..2 24574.867680: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
92842          <idle>-0     (-----) [003] .n.1 24574.867686: cpu_idle: state=4294967295 cpu_id=3
92843          <idle>-0     (-----) [003] d..2 24574.867705: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
92844 s.nexuslauncher-24827 (24827) [000] d..2 24574.867722: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92845  Binder:23896_4-24423 (23896) [001] d..2 24574.867747: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
92846          <idle>-0     (-----) [000] d..1 24574.867749: cpu_idle: state=0 cpu_id=0
92847          <idle>-0     (-----) [001] d..1 24574.867773: cpu_idle: state=0 cpu_id=1
92848  appEventThread-23905 (23896) [003] d..2 24574.867785: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92849          <idle>-0     (-----) [003] d..1 24574.867803: cpu_idle: state=0 cpu_id=3
92850          <idle>-0     (-----) [001] ...1 24574.869065: cpu_idle: state=4294967295 cpu_id=1
92851          <idle>-0     (-----) [001] d..1 24574.869072: cpu_idle: state=2 cpu_id=1
92852          <idle>-0     (-----) [003] ...1 24574.869236: cpu_idle: state=4294967295 cpu_id=3
92853          <idle>-0     (-----) [003] d..1 24574.869242: cpu_idle: state=2 cpu_id=3
92854          <idle>-0     (-----) [000] d.H3 24574.877709: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
92855          <idle>-0     (-----) [000] d.H3 24574.877743: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
92856          <idle>-0     (-----) [000] d.H4 24574.877762: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
92857          <idle>-0     (-----) [000] d.s3 24574.877780: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
92858          <idle>-0     (-----) [000] dns4 24574.877798: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
92859          <idle>-0     (-----) [000] dns3 24574.877805: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
92860          <idle>-0     (-----) [000] dns4 24574.877833: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
92861          <idle>-0     (-----) [000] .n.1 24574.877862: cpu_idle: state=4294967295 cpu_id=0
92862          <idle>-0     (-----) [000] d..2 24574.877882: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
92863     kworker/0:1-13012 (13012) [000] d..2 24574.877968: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
92864          <idle>-0     (-----) [003] .n.1 24574.878076: cpu_idle: state=4294967295 cpu_id=3
92865          <idle>-0     (-----) [003] d..2 24574.878107: 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
92866  kworker/u16:10-23868 (23868) [000] d..2 24574.878151: 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
92867         sugov:0-559   (  559) [003] d..2 24574.878159: 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
92868          <idle>-0     (-----) [003] d..1 24574.878182: cpu_idle: state=2 cpu_id=3
92869          <idle>-0     (-----) [000] d..1 24574.878187: cpu_idle: state=0 cpu_id=0
92870          <idle>-0     (-----) [005] dnh2 24574.878827: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
92871          <idle>-0     (-----) [005] .n.1 24574.878836: cpu_idle: state=4294967295 cpu_id=5
92872          <idle>-0     (-----) [005] d..2 24574.878851: 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
92873         sugov:4-560   (  560) [005] d..2 24574.878878: 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
92874          <idle>-0     (-----) [005] d..1 24574.878893: cpu_idle: state=2 cpu_id=5
92875          <idle>-0     (-----) [002] d.h2 24574.882496: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
92876          <idle>-0     (-----) [002] dnh3 24574.882526: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
92877          <idle>-0     (-----) [002] .n.1 24574.882543: cpu_idle: state=4294967295 cpu_id=2
92878          <idle>-0     (-----) [002] d..2 24574.882564: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
92879        DispSync-23904 (23896) [002] d..1 24574.882594: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
92880        DispSync-23904 (23896) [002] d..2 24574.882617: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
92881        DispSync-23904 (23896) [002] d..2 24574.882677: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
92882          <idle>-0     (-----) [002] d..2 24574.882685: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
92883          <idle>-0     (-----) [002] dn.3 24574.882701: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
92884          <idle>-0     (-----) [002] d..2 24574.882714: 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
92885     ksoftirqd/2-26    (   26) [002] d..2 24574.882745: 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
92886          <idle>-0     (-----) [002] d..1 24574.882767: cpu_idle: state=2 cpu_id=2
92887          <idle>-0     (-----) [003] .n.1 24574.882955: cpu_idle: state=4294967295 cpu_id=3
92888          <idle>-0     (-----) [003] d..2 24574.882980: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
92889  appEventThread-23905 (23896) [003] d..3 24574.883037: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
92890  appEventThread-23905 (23896) [003] d..4 24574.883076: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
92891          <idle>-0     (-----) [000] .n.1 24574.883086: cpu_idle: state=4294967295 cpu_id=0
92892          <idle>-0     (-----) [000] d..2 24574.883109: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
92893  appEventThread-23905 (23896) [003] d..2 24574.883134: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92894          <idle>-0     (-----) [003] d..1 24574.883159: cpu_idle: state=2 cpu_id=3
92895 s.nexuslauncher-24827 (24827) [000] .... 24574.883342: binder_transaction: transaction=1671053 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
92896 s.nexuslauncher-24827 (24827) [000] d..4 24574.883358: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
92897 s.nexuslauncher-24827 (24827) [000] d..5 24574.883396: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
92898 s.nexuslauncher-24827 (24827) [000] d..2 24574.883528: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92899          <idle>-0     (-----) [000] d..1 24574.883556: cpu_idle: state=0 cpu_id=0
92900          <idle>-0     (-----) [001] .n.1 24574.883717: cpu_idle: state=4294967295 cpu_id=1
92901          <idle>-0     (-----) [001] d..2 24574.883758: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
92902  Binder:23896_4-24423 (23896) [001] .... 24574.883772: binder_transaction_received: transaction=1671053
92903  Binder:23896_4-24423 (23896) [001] d..1 24574.883823: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
92904  Binder:23896_4-24423 (23896) [001] d..2 24574.883856: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
92905  Binder:23896_4-24423 (23896) [001] d..2 24574.883933: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
92906          <idle>-0     (-----) [001] d..1 24574.883965: cpu_idle: state=0 cpu_id=1
92907          <idle>-0     (-----) [003] .n.1 24574.884182: cpu_idle: state=4294967295 cpu_id=3
92908          <idle>-0     (-----) [003] d..2 24574.884211: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
92909  appEventThread-23905 (23896) [003] d..2 24574.884364: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92910          <idle>-0     (-----) [003] d..1 24574.884388: cpu_idle: state=0 cpu_id=3
92911          <idle>-0     (-----) [000] d..2 24574.889580: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
92912          <idle>-0     (-----) [000] dn.3 24574.889600: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
92913          <idle>-0     (-----) [000] .n.1 24574.889606: cpu_idle: state=4294967295 cpu_id=0
92914          <idle>-0     (-----) [000] d..2 24574.889630: 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
92915     ksoftirqd/0-3     (    3) [000] d.s2 24574.889641: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
92916     ksoftirqd/0-3     (    3) [000] d.s3 24574.889667: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
92917     ksoftirqd/0-3     (    3) [000] d..2 24574.889690: 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
92918  kworker/u16:10-23868 (23868) [000] d..2 24574.889813: 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
92919          <idle>-0     (-----) [000] d..1 24574.889831: cpu_idle: state=2 cpu_id=0
92920          <idle>-0     (-----) [001] ...1 24574.889978: cpu_idle: state=4294967295 cpu_id=1
92921          <idle>-0     (-----) [001] d..1 24574.889985: cpu_idle: state=2 cpu_id=1
92922          <idle>-0     (-----) [003] ...1 24574.890400: cpu_idle: state=4294967295 cpu_id=3
92923          <idle>-0     (-----) [003] d..1 24574.890407: cpu_idle: state=2 cpu_id=3
92924          <idle>-0     (-----) [006] d.h2 24574.891055: sched_waking: comm=TaskSnapshotPer pid=24113 prio=130 target_cpu=006
92925          <idle>-0     (-----) [006] dnh3 24574.891083: sched_wakeup: comm=TaskSnapshotPer pid=24113 prio=130 target_cpu=006
92926          <idle>-0     (-----) [006] .n.1 24574.891116: cpu_idle: state=4294967295 cpu_id=6
92927          <idle>-0     (-----) [006] d..2 24574.891139: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=24113 next_prio=130
92928<...>-24113 ( 23968) [006] d..2 24574.891349: sched_switch: prev_comm=TaskSnapshotPer prev_pid=24113 prev_prio=130 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
92929          <idle>-0     (-----) [006] d..2 24574.891355: sched_waking: comm=ksoftirqd/6 pid=58 prio=120 target_cpu=006
92930          <idle>-0     (-----) [006] dn.3 24574.891371: sched_wakeup: comm=ksoftirqd/6 pid=58 prio=120 target_cpu=006
92931          <idle>-0     (-----) [006] d..2 24574.891380: 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
92932     ksoftirqd/6-58    (   58) [006] d..2 24574.891413: 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
92933          <idle>-0     (-----) [006] d..1 24574.891426: cpu_idle: state=2 cpu_id=6
92934          <idle>-0     (-----) [002] d.h2 24574.899017: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
92935          <idle>-0     (-----) [002] dnh3 24574.899050: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
92936          <idle>-0     (-----) [002] dnh3 24574.899139: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
92937          <idle>-0     (-----) [002] dnh3 24574.899156: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
92938          <idle>-0     (-----) [002] dnh4 24574.899173: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
92939          <idle>-0     (-----) [002] .n.1 24574.899184: cpu_idle: state=4294967295 cpu_id=2
92940          <idle>-0     (-----) [002] d..2 24574.899204: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
92941        DispSync-23904 (23896) [002] d..1 24574.899231: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
92942        DispSync-23904 (23896) [002] d..2 24574.899258: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
92943        DispSync-23904 (23896) [002] d..2 24574.899314: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
92944          <idle>-0     (-----) [002] d..2 24574.899321: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
92945          <idle>-0     (-----) [002] dn.3 24574.899336: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
92946          <idle>-0     (-----) [002] d..2 24574.899348: 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
92947     ksoftirqd/2-26    (   26) [002] d.s2 24574.899361: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
92948     ksoftirqd/2-26    (   26) [002] d.s3 24574.899411: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
92949     ksoftirqd/2-26    (   26) [002] d..2 24574.899433: 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
92950          <idle>-0     (-----) [003] .n.1 24574.899492: cpu_idle: state=4294967295 cpu_id=3
92951          <idle>-0     (-----) [003] d..2 24574.899522: 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
92952          <idle>-0     (-----) [001] .n.1 24574.899583: cpu_idle: state=4294967295 cpu_id=1
92953         sugov:0-559   (  559) [003] d..2 24574.899594: 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
92954          <idle>-0     (-----) [001] d..2 24574.899612: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
92955          <idle>-0     (-----) [003] d..1 24574.899631: cpu_idle: state=0 cpu_id=3
92956  appEventThread-23905 (23896) [001] d..3 24574.899672: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
92957  appEventThread-23905 (23896) [001] d..4 24574.899709: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
92958  appEventThread-23905 (23896) [001] d..2 24574.899775: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
92959          <idle>-0     (-----) [001] d..1 24574.899801: cpu_idle: state=0 cpu_id=1
92960  kworker/u16:10-23868 (23868) [002] d..2 24574.899841: 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
92961          <idle>-0     (-----) [002] d..1 24574.899868: cpu_idle: state=2 cpu_id=2
92962          <idle>-0     (-----) [003] d.s3 24574.899874: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
92963          <idle>-0     (-----) [003] d.s4 24574.899894: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
92964          <idle>-0     (-----) [003] d.s4 24574.899907: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
92965          <idle>-0     (-----) [003] ...1 24574.899924: cpu_idle: state=4294967295 cpu_id=3
92966          <idle>-0     (-----) [003] d..1 24574.899931: cpu_idle: state=0 cpu_id=3
92967          <idle>-0     (-----) [000] .n.1 24574.900052: cpu_idle: state=4294967295 cpu_id=0
92968          <idle>-0     (-----) [000] d..2 24574.900083: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
92969          <idle>-0     (-----) [005] dnh2 24574.900207: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
92970          <idle>-0     (-----) [005] .n.1 24574.900217: cpu_idle: state=4294967295 cpu_id=5
92971          <idle>-0     (-----) [005] d..2 24574.900228: 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
92972         sugov:4-560   (  560) [005] d..2 24574.900249: 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
92973          <idle>-0     (-----) [005] d..1 24574.900261: cpu_idle: state=2 cpu_id=5
92974 s.nexuslauncher-24827 (24827) [000] .... 24574.900346: binder_transaction: transaction=1671054 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
92975 s.nexuslauncher-24827 (24827) [000] d..4 24574.900361: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
92976 s.nexuslauncher-24827 (24827) [000] d..5 24574.900400: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
92977          <idle>-0     (-----) [001] .n.1 24574.900407: cpu_idle: state=4294967295 cpu_id=1
92978          <idle>-0     (-----) [001] d..2 24574.900425: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
92979          <idle>-0     (-----) [002] .n.1 24574.900434: cpu_idle: state=4294967295 cpu_id=2
92980  Binder:23896_4-24423 (23896) [001] .... 24574.900438: binder_transaction_received: transaction=1671054
92981          <idle>-0     (-----) [002] d..2 24574.900465: 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
92982  Binder:23896_4-24423 (23896) [001] d..1 24574.900481: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
92983  Binder:23896_4-24423 (23896) [001] d..2 24574.900517: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
92984          <idle>-0     (-----) [003] .n.1 24574.900522: cpu_idle: state=4294967295 cpu_id=3
92985  kworker/u16:10-23868 (23868) [002] d..2 24574.900525: 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
92986          <idle>-0     (-----) [003] d..2 24574.900536: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
92987 s.nexuslauncher-24827 (24827) [000] d..2 24574.900544: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92988          <idle>-0     (-----) [002] d..1 24574.900549: cpu_idle: state=0 cpu_id=2
92989          <idle>-0     (-----) [000] d..1 24574.900573: cpu_idle: state=0 cpu_id=0
92990  Binder:23896_4-24423 (23896) [001] d..2 24574.900583: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
92991          <idle>-0     (-----) [001] d..1 24574.900603: cpu_idle: state=0 cpu_id=1
92992  appEventThread-23905 (23896) [003] d..2 24574.900619: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92993          <idle>-0     (-----) [003] d..1 24574.900636: cpu_idle: state=0 cpu_id=3
92994          <idle>-0     (-----) [001] d.s3 24574.904307: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
92995          <idle>-0     (-----) [001] dns4 24574.904328: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
92996          <idle>-0     (-----) [001] .n.1 24574.904355: cpu_idle: state=4294967295 cpu_id=1
92997          <idle>-0     (-----) [001] d..2 24574.904373: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
92998     kworker/1:1-13091 (13091) [001] d..2 24574.904614: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
92999          <idle>-0     (-----) [001] d..1 24574.904635: cpu_idle: state=2 cpu_id=1
93000          <idle>-0     (-----) [000] d.h3 24574.905376: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
93001          <idle>-0     (-----) [000] dnh4 24574.905395: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
93002          <idle>-0     (-----) [000] .n.1 24574.905428: cpu_idle: state=4294967295 cpu_id=0
93003          <idle>-0     (-----) [000] d..2 24574.905446: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
93004     kworker/0:1-13012 (13012) [000] d..2 24574.905458: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
93005     kworker/0:1-13012 (13012) [000] d..3 24574.905469: sched_blocked_reason: pid=13091 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
93006     kworker/0:1-13012 (13012) [000] d..3 24574.905479: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
93007     kworker/0:1-13012 (13012) [000] d..2 24574.905507: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93008          <idle>-0     (-----) [000] d..1 24574.905523: cpu_idle: state=2 cpu_id=0
93009          <idle>-0     (-----) [001] .n.1 24574.905790: cpu_idle: state=4294967295 cpu_id=1
93010          <idle>-0     (-----) [001] d..2 24574.905818: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
93011     kworker/1:1-13091 (13091) [001] d..2 24574.906004: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
93012          <idle>-0     (-----) [001] d..1 24574.906029: cpu_idle: state=0 cpu_id=1
93013          <idle>-0     (-----) [002] ...1 24574.906563: cpu_idle: state=4294967295 cpu_id=2
93014          <idle>-0     (-----) [002] d..1 24574.906570: cpu_idle: state=2 cpu_id=2
93015          <idle>-0     (-----) [003] ...1 24574.906650: cpu_idle: state=4294967295 cpu_id=3
93016          <idle>-0     (-----) [003] d..1 24574.906658: cpu_idle: state=2 cpu_id=3
93017          <idle>-0     (-----) [001] d..2 24574.912045: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
93018          <idle>-0     (-----) [001] dn.3 24574.912064: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
93019          <idle>-0     (-----) [001] .n.1 24574.912069: cpu_idle: state=4294967295 cpu_id=1
93020          <idle>-0     (-----) [001] d..2 24574.912089: 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
93021     ksoftirqd/1-18    (   18) [001] d.s2 24574.912099: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
93022     ksoftirqd/1-18    (   18) [001] d.s3 24574.912154: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
93023     ksoftirqd/1-18    (   18) [001] d..2 24574.912178: 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
93024  kworker/u16:10-23868 (23868) [001] d..2 24574.912298: 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
93025          <idle>-0     (-----) [001] d..1 24574.912317: cpu_idle: state=2 cpu_id=1
93026          <idle>-0     (-----) [002] d.h2 24574.915492: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
93027          <idle>-0     (-----) [002] dnh3 24574.915519: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
93028          <idle>-0     (-----) [002] .n.1 24574.915536: cpu_idle: state=4294967295 cpu_id=2
93029          <idle>-0     (-----) [002] d..2 24574.915556: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
93030        DispSync-23904 (23896) [002] d..1 24574.915585: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
93031        DispSync-23904 (23896) [002] d..2 24574.915603: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
93032        DispSync-23904 (23896) [002] d..2 24574.915660: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93033          <idle>-0     (-----) [002] d..2 24574.915667: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
93034          <idle>-0     (-----) [002] dn.3 24574.915681: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
93035          <idle>-0     (-----) [002] d..2 24574.915694: 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
93036     ksoftirqd/2-26    (   26) [002] d..2 24574.915725: 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
93037          <idle>-0     (-----) [002] d..1 24574.915746: cpu_idle: state=0 cpu_id=2
93038          <idle>-0     (-----) [003] .n.1 24574.915938: cpu_idle: state=4294967295 cpu_id=3
93039          <idle>-0     (-----) [003] d..2 24574.915977: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
93040  appEventThread-23905 (23896) [003] d..3 24574.916040: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
93041  appEventThread-23905 (23896) [003] d..4 24574.916079: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
93042  appEventThread-23905 (23896) [003] d..2 24574.916150: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
93043          <idle>-0     (-----) [003] d..1 24574.916180: cpu_idle: state=0 cpu_id=3
93044          <idle>-0     (-----) [000] .n.1 24574.916403: cpu_idle: state=4294967295 cpu_id=0
93045          <idle>-0     (-----) [000] d..2 24574.916436: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
93046 s.nexuslauncher-24827 (24827) [000] .... 24574.916696: binder_transaction: transaction=1671055 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
93047 s.nexuslauncher-24827 (24827) [000] d..4 24574.916711: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
93048 s.nexuslauncher-24827 (24827) [000] d..5 24574.916750: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
93049 s.nexuslauncher-24827 (24827) [000] d..2 24574.916890: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93050          <idle>-0     (-----) [000] d..1 24574.916917: cpu_idle: state=2 cpu_id=0
93051          <idle>-0     (-----) [001] .n.1 24574.917090: cpu_idle: state=4294967295 cpu_id=1
93052          <idle>-0     (-----) [001] d..2 24574.917120: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
93053  Binder:23896_4-24423 (23896) [001] .... 24574.917132: binder_transaction_received: transaction=1671055
93054  Binder:23896_4-24423 (23896) [001] d..1 24574.917181: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
93055  Binder:23896_4-24423 (23896) [001] d..2 24574.917214: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
93056          <idle>-0     (-----) [003] .n.1 24574.917222: cpu_idle: state=4294967295 cpu_id=3
93057          <idle>-0     (-----) [003] d..2 24574.917237: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
93058  Binder:23896_4-24423 (23896) [001] d..2 24574.917281: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
93059  appEventThread-23905 (23896) [003] d..2 24574.917290: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
93060          <idle>-0     (-----) [003] d..1 24574.917306: cpu_idle: state=2 cpu_id=3
93061          <idle>-0     (-----) [001] d..1 24574.917308: cpu_idle: state=0 cpu_id=1
93062          <idle>-0     (-----) [002] d..2 24574.921765: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
93063          <idle>-0     (-----) [002] dn.3 24574.921779: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
93064          <idle>-0     (-----) [002] dnH3 24574.921868: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
93065          <idle>-0     (-----) [002] dnH3 24574.921886: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
93066          <idle>-0     (-----) [002] dnH4 24574.921903: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
93067          <idle>-0     (-----) [002] dns3 24574.921916: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
93068          <idle>-0     (-----) [002] dns4 24574.921965: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
93069          <idle>-0     (-----) [002] .n.1 24574.921979: cpu_idle: state=4294967295 cpu_id=2
93070          <idle>-0     (-----) [002] d..2 24574.922000: 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
93071     ksoftirqd/2-26    (   26) [002] d..2 24574.922014: 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
93072  kworker/u16:10-23868 (23868) [002] d..2 24574.922132: 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
93073          <idle>-0     (-----) [002] d..1 24574.922151: cpu_idle: state=2 cpu_id=2
93074          <idle>-0     (-----) [003] .n.1 24574.922224: cpu_idle: state=4294967295 cpu_id=3
93075          <idle>-0     (-----) [003] d..2 24574.922250: 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
93076         sugov:0-559   (  559) [003] d..2 24574.922295: 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
93077          <idle>-0     (-----) [003] d..1 24574.922315: cpu_idle: state=2 cpu_id=3
93078          <idle>-0     (-----) [005] dnh2 24574.922937: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
93079          <idle>-0     (-----) [005] .n.1 24574.922946: cpu_idle: state=4294967295 cpu_id=5
93080          <idle>-0     (-----) [005] d..2 24574.922959: 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
93081         sugov:4-560   (  560) [005] d..2 24574.922981: 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
93082          <idle>-0     (-----) [005] d..1 24574.922993: cpu_idle: state=2 cpu_id=5
93083          <idle>-0     (-----) [001] ...1 24574.923322: cpu_idle: state=4294967295 cpu_id=1
93084          <idle>-0     (-----) [001] d..1 24574.923329: cpu_idle: state=2 cpu_id=1
93085          <idle>-0     (-----) [002] d.h2 24574.931946: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
93086          <idle>-0     (-----) [002] dnh3 24574.931973: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
93087          <idle>-0     (-----) [002] .n.1 24574.931989: cpu_idle: state=4294967295 cpu_id=2
93088          <idle>-0     (-----) [002] d..2 24574.932010: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
93089        DispSync-23904 (23896) [002] d..1 24574.932039: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
93090        DispSync-23904 (23896) [002] d..2 24574.932061: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
93091        DispSync-23904 (23896) [002] d..2 24574.932119: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93092          <idle>-0     (-----) [002] d..2 24574.932127: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
93093          <idle>-0     (-----) [002] dn.3 24574.932140: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
93094          <idle>-0     (-----) [002] d..2 24574.932151: 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
93095     ksoftirqd/2-26    (   26) [002] d.s2 24574.932164: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
93096     ksoftirqd/2-26    (   26) [002] d.s3 24574.932186: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
93097     ksoftirqd/2-26    (   26) [002] d..2 24574.932207: 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
93098          <idle>-0     (-----) [003] .n.1 24574.932383: cpu_idle: state=4294967295 cpu_id=3
93099          <idle>-0     (-----) [003] d..2 24574.932414: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
93100  kworker/u16:10-23868 (23868) [002] d..2 24574.932448: 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
93101  appEventThread-23905 (23896) [003] d.s1 24574.932465: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
93102          <idle>-0     (-----) [002] d..1 24574.932479: cpu_idle: state=0 cpu_id=2
93103  appEventThread-23905 (23896) [003] d.s2 24574.932496: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
93104  appEventThread-23905 (23896) [003] d..3 24574.932554: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
93105  appEventThread-23905 (23896) [003] d..4 24574.932586: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
93106  appEventThread-23905 (23896) [003] d..2 24574.932628: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
93107     ksoftirqd/3-34    (   34) [003] d.s2 24574.932648: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
93108     ksoftirqd/3-34    (   34) [003] d.s3 24574.932703: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
93109     ksoftirqd/3-34    (   34) [003] d.s3 24574.932712: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
93110     ksoftirqd/3-34    (   34) [003] d..2 24574.932730: 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
93111  kworker/u16:10-23868 (23868) [003] d..2 24574.932874: 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
93112          <idle>-0     (-----) [000] .n.1 24574.932904: cpu_idle: state=4294967295 cpu_id=0
93113          <idle>-0     (-----) [003] d..1 24574.932904: cpu_idle: state=2 cpu_id=3
93114          <idle>-0     (-----) [000] d..2 24574.932936: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
93115 s.nexuslauncher-24827 (24827) [000] .... 24574.933192: binder_transaction: transaction=1671056 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
93116 s.nexuslauncher-24827 (24827) [000] d..4 24574.933209: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
93117 s.nexuslauncher-24827 (24827) [000] d..5 24574.933247: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
93118 s.nexuslauncher-24827 (24827) [000] d..2 24574.933382: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93119          <idle>-0     (-----) [000] d..1 24574.933408: cpu_idle: state=2 cpu_id=0
93120          <idle>-0     (-----) [001] .n.1 24574.933587: cpu_idle: state=4294967295 cpu_id=1
93121          <idle>-0     (-----) [001] d..2 24574.933617: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
93122  Binder:23896_4-24423 (23896) [001] .... 24574.933630: binder_transaction_received: transaction=1671056
93123  Binder:23896_4-24423 (23896) [001] d..1 24574.933675: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
93124  Binder:23896_4-24423 (23896) [001] d..2 24574.933705: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
93125  Binder:23896_4-24423 (23896) [001] d..2 24574.933769: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
93126          <idle>-0     (-----) [001] d..1 24574.933796: cpu_idle: state=0 cpu_id=1
93127          <idle>-0     (-----) [003] .n.1 24574.934030: cpu_idle: state=4294967295 cpu_id=3
93128          <idle>-0     (-----) [003] d..2 24574.934058: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
93129  appEventThread-23905 (23896) [003] d..2 24574.934147: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
93130          <idle>-0     (-----) [003] d..1 24574.934172: cpu_idle: state=0 cpu_id=3
93131          <idle>-0     (-----) [002] d..2 24574.938504: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
93132          <idle>-0     (-----) [002] dn.3 24574.938521: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
93133          <idle>-0     (-----) [002] dnH3 24574.938613: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
93134          <idle>-0     (-----) [002] dnH3 24574.938633: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
93135          <idle>-0     (-----) [002] dnH4 24574.938652: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
93136          <idle>-0     (-----) [003] .n.1 24574.938661: cpu_idle: state=4294967295 cpu_id=3
93137          <idle>-0     (-----) [002] dns3 24574.938670: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
93138          <idle>-0     (-----) [003] d..2 24574.938677: 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
93139          <idle>-0     (-----) [002] dns4 24574.938688: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
93140          <idle>-0     (-----) [002] .n.1 24574.938699: cpu_idle: state=4294967295 cpu_id=2
93141         sugov:0-559   (  559) [003] d..2 24574.938721: 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
93142          <idle>-0     (-----) [002] d..2 24574.938723: 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
93143          <idle>-0     (-----) [003] d..1 24574.938737: cpu_idle: state=0 cpu_id=3
93144     ksoftirqd/2-26    (   26) [002] d..2 24574.938740: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
93145     kworker/2:0-12895 (12895) [002] d..2 24574.938820: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93146          <idle>-0     (-----) [002] d..1 24574.938839: cpu_idle: state=2 cpu_id=2
93147          <idle>-0     (-----) [005] dnh2 24574.939687: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
93148          <idle>-0     (-----) [005] .n.1 24574.939696: cpu_idle: state=4294967295 cpu_id=5
93149          <idle>-0     (-----) [005] d..2 24574.939708: 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
93150         sugov:4-560   (  560) [005] d..2 24574.939731: 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
93151          <idle>-0     (-----) [005] d..1 24574.939743: cpu_idle: state=2 cpu_id=5
93152          <idle>-0     (-----) [001] ...1 24574.939810: cpu_idle: state=4294967295 cpu_id=1
93153          <idle>-0     (-----) [001] d..1 24574.939817: cpu_idle: state=2 cpu_id=1
93154          <idle>-0     (-----) [003] d..2 24574.944754: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
93155          <idle>-0     (-----) [003] dn.3 24574.944772: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
93156          <idle>-0     (-----) [003] .n.1 24574.944779: cpu_idle: state=4294967295 cpu_id=3
93157          <idle>-0     (-----) [003] d..2 24574.944796: 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
93158     ksoftirqd/3-34    (   34) [003] d.s2 24574.944809: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
93159     ksoftirqd/3-34    (   34) [003] d.s3 24574.944835: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
93160     ksoftirqd/3-34    (   34) [003] d..2 24574.944858: 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
93161  kworker/u16:10-23868 (23868) [003] d..2 24574.944978: 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
93162          <idle>-0     (-----) [003] d..1 24574.944998: cpu_idle: state=2 cpu_id=3
93163          <idle>-0     (-----) [002] d.h2 24574.948416: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
93164          <idle>-0     (-----) [002] dnh3 24574.948445: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
93165          <idle>-0     (-----) [002] .n.1 24574.948461: cpu_idle: state=4294967295 cpu_id=2
93166          <idle>-0     (-----) [002] d..2 24574.948482: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
93167        DispSync-23904 (23896) [002] d..1 24574.948511: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
93168        DispSync-23904 (23896) [002] d..2 24574.948535: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
93169        DispSync-23904 (23896) [002] d..2 24574.948592: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93170          <idle>-0     (-----) [002] d..2 24574.948601: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
93171          <idle>-0     (-----) [002] dn.3 24574.948614: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
93172          <idle>-0     (-----) [002] d..2 24574.948626: 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
93173     ksoftirqd/2-26    (   26) [002] d.s2 24574.948637: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
93174     ksoftirqd/2-26    (   26) [002] d.s3 24574.948687: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
93175     ksoftirqd/2-26    (   26) [002] d..2 24574.948703: 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
93176  kworker/u16:10-23868 (23868) [002] d..2 24574.948787: 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
93177          <idle>-0     (-----) [002] d..1 24574.948811: cpu_idle: state=0 cpu_id=2
93178          <idle>-0     (-----) [003] .n.1 24574.948866: cpu_idle: state=4294967295 cpu_id=3
93179          <idle>-0     (-----) [003] d..2 24574.948903: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
93180  appEventThread-23905 (23896) [003] d..3 24574.948965: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
93181  appEventThread-23905 (23896) [003] d..4 24574.949009: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
93182  appEventThread-23905 (23896) [003] d..2 24574.949081: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
93183          <idle>-0     (-----) [003] d..1 24574.949111: cpu_idle: state=0 cpu_id=3
93184          <idle>-0     (-----) [000] .n.1 24574.949335: cpu_idle: state=4294967295 cpu_id=0
93185          <idle>-0     (-----) [000] d..2 24574.949373: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
93186 s.nexuslauncher-24827 (24827) [000] .... 24574.950090: binder_transaction: transaction=1671057 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
93187 s.nexuslauncher-24827 (24827) [000] d..4 24574.950106: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
93188 s.nexuslauncher-24827 (24827) [000] d..5 24574.950145: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
93189 s.nexuslauncher-24827 (24827) [000] d..3 24574.950260: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
93190 s.nexuslauncher-24827 (24827) [000] d..4 24574.950311: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
93191          <idle>-0     (-----) [002] .n.1 24574.950321: cpu_idle: state=4294967295 cpu_id=2
93192          <idle>-0     (-----) [002] d..2 24574.950339: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
93193          <idle>-0     (-----) [001] .n.1 24574.950454: cpu_idle: state=4294967295 cpu_id=1
93194          <idle>-0     (-----) [001] d..2 24574.950487: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
93195    RenderThread-25194 (24827) [002] d..2 24574.950494: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93196  Binder:23896_4-24423 (23896) [001] .... 24574.950500: binder_transaction_received: transaction=1671057
93197          <idle>-0     (-----) [002] d..1 24574.950515: cpu_idle: state=0 cpu_id=2
93198  Binder:23896_4-24423 (23896) [001] d..1 24574.950552: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
93199  Binder:23896_4-24423 (23896) [001] d..2 24574.950584: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
93200          <idle>-0     (-----) [003] .n.1 24574.950592: cpu_idle: state=4294967295 cpu_id=3
93201          <idle>-0     (-----) [003] d..2 24574.950608: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
93202  Binder:23896_4-24423 (23896) [001] d..2 24574.950656: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
93203  appEventThread-23905 (23896) [003] d..2 24574.950662: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
93204          <idle>-0     (-----) [003] d..1 24574.950679: cpu_idle: state=0 cpu_id=3
93205          <idle>-0     (-----) [001] d..1 24574.950683: cpu_idle: state=0 cpu_id=1
93206 s.nexuslauncher-24827 (24827) [000] d..3 24574.952146: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
93207 s.nexuslauncher-24827 (24827) [000] d..4 24574.952191: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
93208          <idle>-0     (-----) [001] .n.1 24574.952199: cpu_idle: state=4294967295 cpu_id=1
93209          <idle>-0     (-----) [001] d..2 24574.952220: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
93210 s.nexuslauncher-24827 (24827) [000] d..2 24574.952261: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93211          <idle>-0     (-----) [000] d..1 24574.952289: cpu_idle: state=2 cpu_id=0
93212    RenderThread-25194 (24827) [001] d..1 24574.953320: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
93213    RenderThread-25194 (24827) [001] d..2 24574.953352: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
93214    RenderThread-25194 (24827) [001] .... 24574.953619: binder_transaction: transaction=1671058 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
93215    RenderThread-25194 (24827) [001] ...2 24574.953642: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
93216          <idle>-0     (-----) [000] .n.1 24574.953657: cpu_idle: state=4294967295 cpu_id=0
93217    RenderThread-25194 (24827) [001] d..4 24574.953662: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
93218    RenderThread-25194 (24827) [001] d..5 24574.953685: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
93219          <idle>-0     (-----) [000] d..2 24574.953687: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
93220    RenderThread-25194 (24827) [001] d..2 24574.953712: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
93221  Binder:23896_4-24423 (23896) [001] .... 24574.953728: binder_transaction_received: transaction=1671058
93222 s.nexuslauncher-24827 (24827) [000] d..2 24574.953882: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93223          <idle>-0     (-----) [000] d..1 24574.953907: cpu_idle: state=0 cpu_id=0
93224  Binder:23896_4-24423 (23896) [001] .... 24574.953990: binder_transaction: transaction=1671059 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
93225  Binder:23896_4-24423 (23896) [001] d..2 24574.954033: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
93226  Binder:23896_4-24423 (23896) [001] dn.3 24574.954055: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
93227  Binder:23896_4-24423 (23896) [001] d..2 24574.954068: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
93228    RenderThread-25194 (24827) [001] .... 24574.954083: binder_transaction_received: transaction=1671059
93229    RenderThread-25194 (24827) [001] d.s2 24574.954283: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
93230    RenderThread-25194 (24827) [001] d.s3 24574.954349: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
93231          <idle>-0     (-----) [000] .n.1 24574.954358: cpu_idle: state=4294967295 cpu_id=0
93232          <idle>-0     (-----) [000] d..2 24574.954380: 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
93233  kworker/u16:10-23868 (23868) [000] d..2 24574.954615: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
93234  Binder:23896_4-24423 (23896) [000] .... 24574.954628: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
93235  Binder:23896_4-24423 (23896) [000] d..2 24574.954761: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93236          <idle>-0     (-----) [000] d..1 24574.954789: cpu_idle: state=0 cpu_id=0
93237          <idle>-0     (-----) [002] ...1 24574.956530: cpu_idle: state=4294967295 cpu_id=2
93238          <idle>-0     (-----) [002] d..1 24574.956537: cpu_idle: state=2 cpu_id=2
93239          <idle>-0     (-----) [003] ...1 24574.956693: cpu_idle: state=4294967295 cpu_id=3
93240          <idle>-0     (-----) [003] d..1 24574.956700: cpu_idle: state=2 cpu_id=3
93241    RenderThread-25194 (24827) [001] d.H2 24574.957688: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
93242    RenderThread-25194 (24827) [001] d.H2 24574.957712: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
93243    RenderThread-25194 (24827) [001] d.H3 24574.957733: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
93244          <idle>-0     (-----) [003] .n.1 24574.958045: cpu_idle: state=4294967295 cpu_id=3
93245          <idle>-0     (-----) [003] d..2 24574.958075: 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
93246         sugov:0-559   (  559) [003] .... 24574.958128: clk_set_rate: pwrcl_clk 748800000
93247         sugov:0-559   (  559) [003] .... 24574.958149: clk_set_rate: cpu3_pwrcl_clk 652800000
93248         sugov:0-559   (  559) [003] .... 24574.958163: clk_set_rate: cpu2_pwrcl_clk 652800000
93249         sugov:0-559   (  559) [003] .... 24574.958174: clk_set_rate: cpu1_pwrcl_clk 652800000
93250         sugov:0-559   (  559) [003] .... 24574.958185: clk_set_rate: cpu0_pwrcl_clk 748800000
93251         sugov:0-559   (  559) [003] .... 24574.958199: cpu_frequency: state=748800 cpu_id=0
93252         sugov:0-559   (  559) [003] .... 24574.958230: cpu_frequency: state=748800 cpu_id=1
93253         sugov:0-559   (  559) [003] .... 24574.958236: cpu_frequency: state=748800 cpu_id=2
93254         sugov:0-559   (  559) [003] .... 24574.958240: cpu_frequency: state=748800 cpu_id=3
93255         sugov:0-559   (  559) [003] d..2 24574.958292: 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
93256          <idle>-0     (-----) [003] d..1 24574.958312: cpu_idle: state=0 cpu_id=3
93257          <idle>-0     (-----) [005] dnh2 24574.958764: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
93258          <idle>-0     (-----) [005] .n.1 24574.958773: cpu_idle: state=4294967295 cpu_id=5
93259          <idle>-0     (-----) [005] d..2 24574.958786: 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
93260         sugov:4-560   (  560) [005] d..2 24574.958810: 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
93261          <idle>-0     (-----) [005] d..1 24574.958823: cpu_idle: state=2 cpu_id=5
93262    RenderThread-25194 (24827) [001] d..2 24574.960471: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
93263    RenderThread-25194 (24827) [001] d..3 24574.960524: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
93264          <idle>-0     (-----) [000] .n.1 24574.960532: cpu_idle: state=4294967295 cpu_id=0
93265          <idle>-0     (-----) [000] d..2 24574.960548: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
93266 kgsl_worker_thr-246   (  246) [000] d..2 24574.960723: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93267          <idle>-0     (-----) [000] d..1 24574.960738: cpu_idle: state=0 cpu_id=0
93268    RenderThread-25194 (24827) [001] d..2 24574.961222: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
93269    RenderThread-25194 (24827) [001] d..3 24574.961248: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
93270          <idle>-0     (-----) [000] .n.1 24574.961254: cpu_idle: state=4294967295 cpu_id=0
93271          <idle>-0     (-----) [000] d..2 24574.961269: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
93272          <idle>-0     (-----) [003] ...1 24574.961351: cpu_idle: state=4294967295 cpu_id=3
93273          <idle>-0     (-----) [003] d..1 24574.961357: cpu_idle: state=0 cpu_id=3
93274 kgsl_worker_thr-246   (  246) [000] d..1 24574.961473: clk_enable: gpll0_out_even
93275 kgsl_worker_thr-246   (  246) [000] d..1 24574.961476: clk_enable: gcc_gpu_gpll0_div_clk_src
93276          <idle>-0     (-----) [002] ...1 24574.961644: cpu_idle: state=4294967295 cpu_id=2
93277          <idle>-0     (-----) [002] d..1 24574.961657: cpu_idle: state=0 cpu_id=2
93278    RenderThread-25194 (24827) [001] .... 24574.961879: binder_transaction: transaction=1671060 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
93279    RenderThread-25194 (24827) [001] ...2 24574.961909: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
93280    RenderThread-25194 (24827) [001] d..4 24574.961915: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
93281    RenderThread-25194 (24827) [001] d..5 24574.961949: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
93282    RenderThread-25194 (24827) [001] d..2 24574.961971: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
93283  Binder:23896_4-24423 (23896) [001] .... 24574.961986: binder_transaction_received: transaction=1671060
93284 kgsl_worker_thr-246   (  246) [000] d..1 24574.961993: clk_enable: gpu_cc_gmu_clk_src
93285 kgsl_worker_thr-246   (  246) [000] d..1 24574.962032: clk_enable: gpu_cc_cx_gmu_clk
93286 kgsl_worker_thr-246   (  246) [000] d..1 24574.962049: clk_enable: gpu_cc_cxo_clk
93287 kgsl_worker_thr-246   (  246) [000] d..1 24574.962063: clk_enable: gcc_ddrss_gpu_axi_clk
93288 kgsl_worker_thr-246   (  246) [000] d..1 24574.962076: clk_enable: gcc_gpu_memnoc_gfx_clk
93289 kgsl_worker_thr-246   (  246) [000] d..2 24574.962182: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
93290          <idle>-0     (-----) [000] d..1 24574.962196: cpu_idle: state=0 cpu_id=0
93291          <idle>-0     (-----) [000] d.h2 24574.962258: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
93292          <idle>-0     (-----) [000] dnh3 24574.962276: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
93293          <idle>-0     (-----) [000] .n.1 24574.962288: cpu_idle: state=4294967295 cpu_id=0
93294          <idle>-0     (-----) [000] d..2 24574.962299: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
93295 kgsl_worker_thr-246   (  246) [000] d..2 24574.962328: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
93296          <idle>-0     (-----) [000] d..1 24574.962339: cpu_idle: state=0 cpu_id=0
93297  Binder:23896_4-24423 (23896) [001] d..1 24574.962357: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
93298  Binder:23896_4-24423 (23896) [001] d..2 24574.962391: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
93299          <idle>-0     (-----) [003] .n.1 24574.962396: cpu_idle: state=4294967295 cpu_id=3
93300          <idle>-0     (-----) [004] ...1 24574.962397: cpu_idle: state=4294967295 cpu_id=4
93301          <idle>-0     (-----) [004] d..1 24574.962409: cpu_idle: state=0 cpu_id=4
93302          <idle>-0     (-----) [003] d..2 24574.962414: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
93303          <idle>-0     (-----) [000] d.h2 24574.962419: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
93304          <idle>-0     (-----) [000] dnh3 24574.962432: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
93305          <idle>-0     (-----) [000] .n.1 24574.962441: cpu_idle: state=4294967295 cpu_id=0
93306          <idle>-0     (-----) [000] d..2 24574.962452: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
93307   sfEventThread-23906 (23896) [003] d..1 24574.962462: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
93308          <idle>-0     (-----) [006] ...1 24574.962482: cpu_idle: state=4294967295 cpu_id=6
93309   sfEventThread-23906 (23896) [003] d..2 24574.962489: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
93310          <idle>-0     (-----) [006] d..1 24574.962494: cpu_idle: state=0 cpu_id=6
93311          <idle>-0     (-----) [002] .n.1 24574.962494: cpu_idle: state=4294967295 cpu_id=2
93312          <idle>-0     (-----) [002] d..2 24574.962516: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
93313   sfEventThread-23906 (23896) [003] d..2 24574.962537: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
93314  Binder:23896_4-24423 (23896) [001] .... 24574.962542: binder_transaction: transaction=1671061 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
93315          <idle>-0     (-----) [003] d..1 24574.962553: cpu_idle: state=0 cpu_id=3
93316  Binder:23896_4-24423 (23896) [001] d..2 24574.962555: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
93317 kgsl_worker_thr-246   (  246) [000] d..2 24574.962568: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
93318          <idle>-0     (-----) [007] ...1 24574.962572: cpu_idle: state=4294967295 cpu_id=7
93319  Binder:23896_4-24423 (23896) [001] dn.3 24574.962575: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
93320          <idle>-0     (-----) [000] d..1 24574.962578: cpu_idle: state=0 cpu_id=0
93321        DispSync-23904 (23896) [002] d..2 24574.962584: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93322          <idle>-0     (-----) [007] d..1 24574.962584: cpu_idle: state=0 cpu_id=7
93323  Binder:23896_4-24423 (23896) [001] d..2 24574.962588: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
93324          <idle>-0     (-----) [002] d..1 24574.962600: cpu_idle: state=0 cpu_id=2
93325    RenderThread-25194 (24827) [001] .... 24574.962600: binder_transaction_received: transaction=1671061
93326          <idle>-0     (-----) [005] ...1 24574.962620: cpu_idle: state=4294967295 cpu_id=5
93327          <idle>-0     (-----) [005] d..1 24574.962630: cpu_idle: state=0 cpu_id=5
93328          <idle>-0     (-----) [000] d.h2 24574.962656: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
93329          <idle>-0     (-----) [000] dnh3 24574.962669: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
93330          <idle>-0     (-----) [000] .n.1 24574.962677: cpu_idle: state=4294967295 cpu_id=0
93331          <idle>-0     (-----) [000] d..2 24574.962687: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
93332    RenderThread-25194 (24827) [001] d..2 24574.962731: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
93333 kgsl_worker_thr-246   (  246) [000] d..2 24574.962766: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
93334  Binder:23896_4-24423 (23896) [000] .... 24574.962774: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
93335    RenderThread-25194 (24827) [001] d..3 24574.962814: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
93336  Binder:23896_4-24423 (23896) [000] d..2 24574.962827: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
93337         rcuop/0-10    (   10) [000] d.h3 24574.962843: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
93338         rcuop/0-10    (   10) [000] d.h4 24574.962872: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93339          <idle>-0     (-----) [002] .n.1 24574.962877: cpu_idle: state=4294967295 cpu_id=2
93340          <idle>-0     (-----) [002] d..2 24574.962890: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
93341         rcuop/0-10    (   10) [000] d..2 24574.962891: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
93342 kgsl_worker_thr-246   (  246) [002] d..2 24574.962924: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
93343          <idle>-0     (-----) [002] d..1 24574.962934: cpu_idle: state=0 cpu_id=2
93344    RenderThread-25194 (24827) [001] d..2 24574.962942: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
93345         rcuop/0-10    (   10) [000] d..3 24574.962948: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
93346          <idle>-0     (-----) [002] .n.1 24574.962954: cpu_idle: state=4294967295 cpu_id=2
93347         rcuop/0-10    (   10) [000] d..2 24574.962966: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
93348          <idle>-0     (-----) [002] d..2 24574.962969: 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
93349          <idle>-0     (-----) [001] d..1 24574.962971: cpu_idle: state=0 cpu_id=1
93350     rcu_preempt-7     (    7) [002] d..2 24574.963009: 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
93351          <idle>-0     (-----) [002] d.h3 24574.963025: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93352  Binder:23896_4-24423 (23896) [000] d..2 24574.963034: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93353          <idle>-0     (-----) [002] dnh4 24574.963042: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93354          <idle>-0     (-----) [000] d..1 24574.963056: cpu_idle: state=0 cpu_id=0
93355          <idle>-0     (-----) [002] d..2 24574.963058: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
93356 kgsl_worker_thr-246   (  246) [002] d..2 24574.963085: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
93357          <idle>-0     (-----) [002] d..1 24574.963096: cpu_idle: state=0 cpu_id=2
93358          <idle>-0     (-----) [002] d.h2 24574.963177: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93359          <idle>-0     (-----) [002] dnh3 24574.963188: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93360          <idle>-0     (-----) [002] .n.1 24574.963198: cpu_idle: state=4294967295 cpu_id=2
93361          <idle>-0     (-----) [002] d..2 24574.963209: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
93362 kgsl_worker_thr-246   (  246) [002] d..2 24574.963235: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
93363          <idle>-0     (-----) [002] d..1 24574.963246: cpu_idle: state=0 cpu_id=2
93364          <idle>-0     (-----) [002] d.h2 24574.963328: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93365          <idle>-0     (-----) [002] dnh3 24574.963339: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93366          <idle>-0     (-----) [002] .n.1 24574.963349: cpu_idle: state=4294967295 cpu_id=2
93367          <idle>-0     (-----) [002] d..2 24574.963359: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
93368 kgsl_worker_thr-246   (  246) [002] d..2 24574.963386: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
93369          <idle>-0     (-----) [002] d..1 24574.963395: cpu_idle: state=0 cpu_id=2
93370          <idle>-0     (-----) [002] d.h2 24574.963478: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93371          <idle>-0     (-----) [002] dnh3 24574.963489: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93372          <idle>-0     (-----) [002] .n.1 24574.963499: cpu_idle: state=4294967295 cpu_id=2
93373          <idle>-0     (-----) [002] d..2 24574.963509: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
93374 kgsl_worker_thr-246   (  246) [002] d..2 24574.963536: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
93375          <idle>-0     (-----) [002] d..1 24574.963547: cpu_idle: state=0 cpu_id=2
93376          <idle>-0     (-----) [002] d.h2 24574.963628: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93377          <idle>-0     (-----) [002] dnh3 24574.963640: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93378          <idle>-0     (-----) [002] .n.1 24574.963649: cpu_idle: state=4294967295 cpu_id=2
93379          <idle>-0     (-----) [002] d..2 24574.963660: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
93380 kgsl_worker_thr-246   (  246) [002] d..2 24574.963704: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
93381          <idle>-0     (-----) [002] d..1 24574.963713: cpu_idle: state=0 cpu_id=2
93382          <idle>-0     (-----) [002] d.h2 24574.963796: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93383          <idle>-0     (-----) [002] dnh3 24574.963807: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93384          <idle>-0     (-----) [002] .n.1 24574.963815: cpu_idle: state=4294967295 cpu_id=2
93385          <idle>-0     (-----) [002] d..2 24574.963826: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
93386 kgsl_worker_thr-246   (  246) [002] d..2 24574.963875: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
93387          <idle>-0     (-----) [002] d..1 24574.963885: cpu_idle: state=0 cpu_id=2
93388          <idle>-0     (-----) [001] d.s4 24574.963959: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93389          <idle>-0     (-----) [001] d.s5 24574.963984: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93390          <idle>-0     (-----) [002] .n.1 24574.963990: cpu_idle: state=4294967295 cpu_id=2
93391          <idle>-0     (-----) [002] d..2 24574.964001: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
93392          <idle>-0     (-----) [001] ...1 24574.964002: cpu_idle: state=4294967295 cpu_id=1
93393          <idle>-0     (-----) [001] d..1 24574.964008: cpu_idle: state=0 cpu_id=1
93394 kgsl_worker_thr-246   (  246) [002] d..2 24574.964038: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
93395          <idle>-0     (-----) [002] d..1 24574.964050: cpu_idle: state=0 cpu_id=2
93396          <idle>-0     (-----) [001] d.s4 24574.964080: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93397          <idle>-0     (-----) [001] d.s5 24574.964098: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93398          <idle>-0     (-----) [002] .n.1 24574.964104: cpu_idle: state=4294967295 cpu_id=2
93399          <idle>-0     (-----) [001] ...1 24574.964111: cpu_idle: state=4294967295 cpu_id=1
93400          <idle>-0     (-----) [002] d..2 24574.964115: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
93401          <idle>-0     (-----) [001] d..1 24574.964118: cpu_idle: state=0 cpu_id=1
93402 kgsl_worker_thr-246   (  246) [002] d..2 24574.964153: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
93403          <idle>-0     (-----) [002] d..1 24574.964164: cpu_idle: state=0 cpu_id=2
93404          <idle>-0     (-----) [000] d..2 24574.964249: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
93405          <idle>-0     (-----) [001] d.s4 24574.964257: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93406          <idle>-0     (-----) [000] dn.3 24574.964264: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
93407          <idle>-0     (-----) [000] .n.1 24574.964269: cpu_idle: state=4294967295 cpu_id=0
93408          <idle>-0     (-----) [001] d.s5 24574.964276: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93409          <idle>-0     (-----) [002] .n.1 24574.964282: cpu_idle: state=4294967295 cpu_id=2
93410          <idle>-0     (-----) [000] d..2 24574.964288: 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
93411          <idle>-0     (-----) [001] ...1 24574.964289: cpu_idle: state=4294967295 cpu_id=1
93412          <idle>-0     (-----) [002] d..2 24574.964294: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
93413          <idle>-0     (-----) [001] d..1 24574.964295: cpu_idle: state=0 cpu_id=1
93414     ksoftirqd/0-3     (    3) [000] d.s2 24574.964301: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
93415     ksoftirqd/0-3     (    3) [000] d.s3 24574.964324: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
93416     ksoftirqd/0-3     (    3) [000] d..2 24574.964343: 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
93417 kgsl_worker_thr-246   (  246) [002] d..2 24574.964368: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
93418          <idle>-0     (-----) [002] d..1 24574.964413: cpu_idle: state=0 cpu_id=2
93419  kworker/u16:10-23868 (23868) [000] .... 24574.964422: clk_set_rate: l3_cluster0_vote_clk 480000000
93420          <idle>-0     (-----) [002] d.h2 24574.964425: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
93421  kworker/u16:10-23868 (23868) [000] .... 24574.964434: clk_set_rate: l3_clk 480000000
93422          <idle>-0     (-----) [002] dnh3 24574.964440: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
93423          <idle>-0     (-----) [002] .n.1 24574.964449: cpu_idle: state=4294967295 cpu_id=2
93424          <idle>-0     (-----) [002] d..2 24574.964458: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
93425        DispSync-23904 (23896) [002] d..1 24574.964498: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
93426        DispSync-23904 (23896) [002] d..2 24574.964517: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
93427          <idle>-0     (-----) [003] .n.1 24574.964524: cpu_idle: state=4294967295 cpu_id=3
93428          <idle>-0     (-----) [003] d..2 24574.964537: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
93429        DispSync-23904 (23896) [002] d..2 24574.964570: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93430          <idle>-0     (-----) [002] d..1 24574.964582: cpu_idle: state=0 cpu_id=2
93431  appEventThread-23905 (23896) [003] d..3 24574.964607: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
93432          <idle>-0     (-----) [001] d.s4 24574.964610: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93433          <idle>-0     (-----) [001] d.s5 24574.964631: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93434          <idle>-0     (-----) [002] .n.1 24574.964634: cpu_idle: state=4294967295 cpu_id=2
93435          <idle>-0     (-----) [002] d..2 24574.964643: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
93436  appEventThread-23905 (23896) [003] d..4 24574.964644: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
93437          <idle>-0     (-----) [001] .n.1 24574.964654: cpu_idle: state=4294967295 cpu_id=1
93438          <idle>-0     (-----) [001] d..2 24574.964671: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
93439 kgsl_worker_thr-246   (  246) [002] d..2 24574.964678: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
93440          <idle>-0     (-----) [002] d..1 24574.964687: cpu_idle: state=0 cpu_id=2
93441  appEventThread-23905 (23896) [003] d..2 24574.964689: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
93442          <idle>-0     (-----) [003] d..1 24574.964705: cpu_idle: state=0 cpu_id=3
93443 s.nexuslauncher-24827 (24827) [001] d.s3 24574.964707: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93444 s.nexuslauncher-24827 (24827) [001] d.s4 24574.964724: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93445          <idle>-0     (-----) [002] .n.1 24574.964729: cpu_idle: state=4294967295 cpu_id=2
93446          <idle>-0     (-----) [002] d..2 24574.964738: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
93447 kgsl_worker_thr-246   (  246) [002] d..2 24574.964788: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
93448  kworker/u16:10-23868 (23868) [000] d..2 24574.964796: 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
93449          <idle>-0     (-----) [002] d..1 24574.964796: cpu_idle: state=0 cpu_id=2
93450          <idle>-0     (-----) [000] d..1 24574.964813: cpu_idle: state=0 cpu_id=0
93451          <idle>-0     (-----) [002] d.h2 24574.964879: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93452          <idle>-0     (-----) [002] dnh3 24574.964892: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93453          <idle>-0     (-----) [002] .n.1 24574.964901: cpu_idle: state=4294967295 cpu_id=2
93454          <idle>-0     (-----) [002] d..2 24574.964909: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
93455 kgsl_worker_thr-246   (  246) [002] d..3 24574.964953: sched_pi_setprio: comm=kworker/u16:10 pid=23868 oldprio=120 newprio=97
93456 kgsl_worker_thr-246   (  246) [002] d..2 24574.964983: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
93457          <idle>-0     (-----) [002] d..1 24574.964994: cpu_idle: state=0 cpu_id=2
93458 s.nexuslauncher-24827 (24827) [001] .... 24574.965135: binder_transaction: transaction=1671062 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
93459 s.nexuslauncher-24827 (24827) [001] d..4 24574.965147: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
93460 s.nexuslauncher-24827 (24827) [001] d..5 24574.965175: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
93461          <idle>-0     (-----) [000] .n.1 24574.965181: cpu_idle: state=4294967295 cpu_id=0
93462          <idle>-0     (-----) [000] d..2 24574.965195: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
93463  Binder:23896_4-24423 (23896) [000] .... 24574.965205: binder_transaction_received: transaction=1671062
93464 s.nexuslauncher-24827 (24827) [001] d..3 24574.965218: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
93465  Binder:23896_4-24423 (23896) [000] d..1 24574.965241: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
93466 s.nexuslauncher-24827 (24827) [001] d..4 24574.965251: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
93467          <idle>-0     (-----) [002] .n.1 24574.965257: cpu_idle: state=4294967295 cpu_id=2
93468  Binder:23896_4-24423 (23896) [000] d..2 24574.965262: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
93469          <idle>-0     (-----) [003] .n.1 24574.965268: cpu_idle: state=4294967295 cpu_id=3
93470          <idle>-0     (-----) [002] d..2 24574.965268: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
93471          <idle>-0     (-----) [003] d..2 24574.965279: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
93472  Binder:23896_4-24423 (23896) [000] d..2 24574.965310: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93473  appEventThread-23905 (23896) [003] d..2 24574.965320: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
93474          <idle>-0     (-----) [000] d..1 24574.965327: cpu_idle: state=0 cpu_id=0
93475          <idle>-0     (-----) [003] d..1 24574.965333: cpu_idle: state=0 cpu_id=3
93476    RenderThread-25194 (24827) [002] d..2 24574.965335: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93477          <idle>-0     (-----) [002] d..1 24574.965346: cpu_idle: state=0 cpu_id=2
93478          <idle>-0     (-----) [003] d.s3 24574.965394: sched_waking: comm=kworker/u16:10 pid=23868 prio=97 target_cpu=000
93479          <idle>-0     (-----) [003] d.s4 24574.965413: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=97 target_cpu=000
93480          <idle>-0     (-----) [000] .n.1 24574.965421: cpu_idle: state=4294967295 cpu_id=0
93481          <idle>-0     (-----) [003] ...1 24574.965426: cpu_idle: state=4294967295 cpu_id=3
93482          <idle>-0     (-----) [003] d..1 24574.965433: cpu_idle: state=0 cpu_id=3
93483          <idle>-0     (-----) [000] d..2 24574.965433: 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=97
93484  kworker/u16:10-23868 (23868) [000] d..1 24574.965448: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93485  kworker/u16:10-23868 (23868) [000] d..2 24574.965466: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93486  kworker/u16:10-23868 (23868) [000] d..2 24574.965471: sched_pi_setprio: comm=kworker/u16:10 pid=23868 oldprio=97 newprio=120
93487          <idle>-0     (-----) [002] .n.1 24574.965472: cpu_idle: state=4294967295 cpu_id=2
93488          <idle>-0     (-----) [002] d..2 24574.965481: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
93489  kworker/u16:10-23868 (23868) [000] d..2 24574.965515: 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
93490          <idle>-0     (-----) [000] d..1 24574.965530: cpu_idle: state=0 cpu_id=0
93491 kgsl_worker_thr-246   (  246) [002] d..2 24574.965651: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
93492          <idle>-0     (-----) [002] d..1 24574.965661: cpu_idle: state=0 cpu_id=2
93493          <idle>-0     (-----) [003] d.s3 24574.965680: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93494          <idle>-0     (-----) [003] d.s4 24574.965697: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93495          <idle>-0     (-----) [002] .n.1 24574.965703: cpu_idle: state=4294967295 cpu_id=2
93496 s.nexuslauncher-24827 (24827) [001] d..3 24574.965707: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
93497          <idle>-0     (-----) [003] ...1 24574.965708: cpu_idle: state=4294967295 cpu_id=3
93498          <idle>-0     (-----) [002] d..2 24574.965712: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
93499          <idle>-0     (-----) [003] d..1 24574.965716: cpu_idle: state=0 cpu_id=3
93500 s.nexuslauncher-24827 (24827) [001] d..4 24574.965749: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
93501          <idle>-0     (-----) [000] .n.1 24574.965756: cpu_idle: state=4294967295 cpu_id=0
93502          <idle>-0     (-----) [000] d..2 24574.965768: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
93503 s.nexuslauncher-24827 (24827) [001] d..2 24574.965791: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
93504 kgsl_worker_thr-246   (  246) [002] d..2 24574.965809: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
93505          <idle>-0     (-----) [001] d..1 24574.965813: cpu_idle: state=0 cpu_id=1
93506          <idle>-0     (-----) [002] d..1 24574.965819: cpu_idle: state=0 cpu_id=2
93507          <idle>-0     (-----) [002] d.h2 24574.965898: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93508          <idle>-0     (-----) [002] dnh3 24574.965913: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93509          <idle>-0     (-----) [002] .n.1 24574.965923: cpu_idle: state=4294967295 cpu_id=2
93510          <idle>-0     (-----) [002] d..2 24574.965930: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
93511    RenderThread-25194 (24827) [000] d..1 24574.965988: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
93512    RenderThread-25194 (24827) [000] d..2 24574.966017: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
93513          <idle>-0     (-----) [001] .n.1 24574.966025: cpu_idle: state=4294967295 cpu_id=1
93514          <idle>-0     (-----) [001] d..2 24574.966041: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
93515    RenderThread-25194 (24827) [000] .... 24574.966084: binder_transaction: transaction=1671063 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
93516    RenderThread-25194 (24827) [000] ...2 24574.966094: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
93517    RenderThread-25194 (24827) [000] d..4 24574.966099: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
93518    RenderThread-25194 (24827) [000] d..5 24574.966115: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
93519    RenderThread-25194 (24827) [000] d..2 24574.966133: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
93520  Binder:23896_4-24423 (23896) [000] .... 24574.966142: binder_transaction_received: transaction=1671063
93521 s.nexuslauncher-24827 (24827) [001] d..2 24574.966162: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
93522          <idle>-0     (-----) [001] d..1 24574.966180: cpu_idle: state=0 cpu_id=1
93523  Binder:23896_4-24423 (23896) [000] .... 24574.966217: binder_transaction: transaction=1671064 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
93524  Binder:23896_4-24423 (23896) [000] d..2 24574.966232: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
93525  Binder:23896_4-24423 (23896) [000] dn.3 24574.966247: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
93526  Binder:23896_4-24423 (23896) [000] d..2 24574.966258: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
93527    RenderThread-25194 (24827) [000] .... 24574.966266: binder_transaction_received: transaction=1671064
93528          <idle>-0     (-----) [001] ...1 24574.966655: cpu_idle: state=4294967295 cpu_id=1
93529          <idle>-0     (-----) [003] ...1 24574.966657: cpu_idle: state=4294967295 cpu_id=3
93530          <idle>-0     (-----) [004] ...1 24574.966659: cpu_idle: state=4294967295 cpu_id=4
93531          <idle>-0     (-----) [005] ...1 24574.966662: cpu_idle: state=4294967295 cpu_id=5
93532          <idle>-0     (-----) [001] d..1 24574.966662: cpu_idle: state=0 cpu_id=1
93533          <idle>-0     (-----) [004] d..1 24574.966663: cpu_idle: state=0 cpu_id=4
93534          <idle>-0     (-----) [003] d..1 24574.966664: cpu_idle: state=0 cpu_id=3
93535          <idle>-0     (-----) [006] ...1 24574.966665: cpu_idle: state=4294967295 cpu_id=6
93536          <idle>-0     (-----) [005] d..1 24574.966666: cpu_idle: state=0 cpu_id=5
93537          <idle>-0     (-----) [007] ...1 24574.966668: cpu_idle: state=4294967295 cpu_id=7
93538          <idle>-0     (-----) [006] d..1 24574.966669: cpu_idle: state=0 cpu_id=6
93539          <idle>-0     (-----) [007] d..1 24574.966673: cpu_idle: state=0 cpu_id=7
93540 kgsl_worker_thr-246   (  246) [002] d..2 24574.966685: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
93541 kgsl_worker_thr-246   (  246) [002] d..3 24574.966734: sched_blocked_reason: pid=23868 iowait=0 caller=worker_thread+0x578/0x788
93542 kgsl_worker_thr-246   (  246) [002] d..3 24574.966741: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
93543 kgsl_worker_thr-246   (  246) [002] d..2 24574.966939: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
93544  kworker/u16:10-23868 (23868) [002] d..2 24574.966951: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
93545  kworker/u16:10-23868 (23868) [002] dn.3 24574.966996: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
93546  kworker/u16:10-23868 (23868) [002] d..2 24574.967007: 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
93547  kworker/u16:16-25995 (25995) [002] d..2 24574.967024: 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
93548  kworker/u16:10-23868 (23868) [002] d..2 24574.967063: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
93549  Binder:23896_4-24423 (23896) [002] .... 24574.967070: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
93550    RenderThread-25194 (24827) [000] d.h2 24574.967125: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93551    RenderThread-25194 (24827) [000] d.h3 24574.967152: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93552  Binder:23896_4-24423 (23896) [002] d..2 24574.967162: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
93553 kgsl_worker_thr-246   (  246) [002] d..2 24574.967218: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
93554          <idle>-0     (-----) [002] d..1 24574.967232: cpu_idle: state=0 cpu_id=2
93555          <idle>-0     (-----) [002] d.h2 24574.967309: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93556          <idle>-0     (-----) [002] dnh3 24574.967323: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93557          <idle>-0     (-----) [002] .n.1 24574.967333: cpu_idle: state=4294967295 cpu_id=2
93558          <idle>-0     (-----) [002] d..2 24574.967340: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
93559 kgsl_worker_thr-246   (  246) [002] d..2 24574.967377: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93560          <idle>-0     (-----) [002] d..1 24574.967385: cpu_idle: state=0 cpu_id=2
93561          <idle>-0     (-----) [002] d.s2 24574.967576: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
93562          <idle>-0     (-----) [002] dns3 24574.967597: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
93563          <idle>-0     (-----) [002] .n.1 24574.967620: cpu_idle: state=4294967295 cpu_id=2
93564          <idle>-0     (-----) [002] d..2 24574.967630: 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
93565     rcu_preempt-7     (    7) [002] d..2 24574.967669: 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
93566          <idle>-0     (-----) [002] d..1 24574.967681: cpu_idle: state=0 cpu_id=2
93567          <idle>-0     (-----) [001] ...1 24574.967899: cpu_idle: state=4294967295 cpu_id=1
93568          <idle>-0     (-----) [001] d..1 24574.967904: cpu_idle: state=0 cpu_id=1
93569          <idle>-0     (-----) [003] ...1 24574.968106: cpu_idle: state=4294967295 cpu_id=3
93570          <idle>-0     (-----) [003] d..1 24574.968111: cpu_idle: state=0 cpu_id=3
93571          <idle>-0     (-----) [002] d.h2 24574.968471: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
93572    RenderThread-25194 (24827) [000] d.h2 24574.968473: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
93573          <idle>-0     (-----) [002] dnh3 24574.968485: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
93574          <idle>-0     (-----) [002] .n.1 24574.968494: cpu_idle: state=4294967295 cpu_id=2
93575          <idle>-0     (-----) [002] d..2 24574.968506: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
93576    RenderThread-25194 (24827) [000] d.h3 24574.968511: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
93577          <idle>-0     (-----) [003] .n.1 24574.968515: cpu_idle: state=4294967295 cpu_id=3
93578        DispSync-23904 (23896) [002] d..1 24574.968524: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
93579          <idle>-0     (-----) [003] d..2 24574.968528: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
93580        DispSync-23904 (23896) [002] d..2 24574.968556: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
93581          <idle>-0     (-----) [001] .n.1 24574.968561: cpu_idle: state=4294967295 cpu_id=1
93582          <idle>-0     (-----) [001] d..2 24574.968574: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
93583        DispSync-23904 (23896) [002] d..2 24574.968590: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93584          <idle>-0     (-----) [002] d..1 24574.968603: cpu_idle: state=0 cpu_id=2
93585 kgsl_worker_thr-246   (  246) [003] d..2 24574.968622: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
93586   sfEventThread-23906 (23896) [001] d..3 24574.968632: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
93587          <idle>-0     (-----) [003] d..1 24574.968637: cpu_idle: state=0 cpu_id=3
93588   sfEventThread-23906 (23896) [001] d..4 24574.968667: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
93589          <idle>-0     (-----) [003] .n.1 24574.968674: cpu_idle: state=4294967295 cpu_id=3
93590          <idle>-0     (-----) [003] d..2 24574.968686: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
93591   sfEventThread-23906 (23896) [001] d..2 24574.968710: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
93592          <idle>-0     (-----) [001] d..1 24574.968728: cpu_idle: state=0 cpu_id=1
93593  surfaceflinger-23896 (23896) [003] d..2 24574.969246: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
93594  surfaceflinger-23896 (23896) [003] d..3 24574.969302: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
93595  surfaceflinger-23896 (23896) [003] d..1 24574.969490: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
93596    RenderThread-25194 (24827) [000] d..2 24574.969502: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
93597  surfaceflinger-23896 (23896) [003] d..2 24574.969512: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
93598          <idle>-0     (-----) [001] .n.1 24574.969520: cpu_idle: state=4294967295 cpu_id=1
93599          <idle>-0     (-----) [000] d..1 24574.969522: cpu_idle: state=0 cpu_id=0
93600          <idle>-0     (-----) [001] d..2 24574.969531: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
93601   sfEventThread-23906 (23896) [001] d..2 24574.969569: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
93602          <idle>-0     (-----) [000] d.h2 24574.969578: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
93603          <idle>-0     (-----) [001] d..1 24574.969584: cpu_idle: state=0 cpu_id=1
93604          <idle>-0     (-----) [000] d.h3 24574.969594: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
93605          <idle>-0     (-----) [000] dnh3 24574.969600: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
93606          <idle>-0     (-----) [000] .n.1 24574.969611: cpu_idle: state=4294967295 cpu_id=0
93607          <idle>-0     (-----) [000] d..2 24574.969624: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
93608  surfaceflinger-23896 (23896) [003] ...1 24574.969715: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
93609  surfaceflinger-23896 (23896) [003] ...1 24574.969728: tracing_mark_write: E|23896
93610  surfaceflinger-23896 (23896) [003] .... 24574.969833: binder_transaction: transaction=1671065 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
93611  surfaceflinger-23896 (23896) [003] ...2 24574.969881: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
93612  surfaceflinger-23896 (23896) [003] d..4 24574.969899: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
93613  surfaceflinger-23896 (23896) [003] d..5 24574.969934: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
93614          <idle>-0     (-----) [002] .n.1 24574.969940: cpu_idle: state=4294967295 cpu_id=2
93615          <idle>-0     (-----) [002] d..2 24574.969952: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
93616  surfaceflinger-23896 (23896) [003] d..2 24574.969959: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
93617  HwBinder:598_3-633   (  598) [002] .... 24574.969970: binder_transaction_received: transaction=1671065
93618         rcuop/2-29    (   29) [003] d..2 24574.969992: 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
93619          <idle>-0     (-----) [003] d..1 24574.970013: cpu_idle: state=0 cpu_id=3
93620  HwBinder:598_3-633   (  598) [002] ...1 24574.970077: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
93621    RenderThread-25194 (24827) [000] .... 24574.970082: binder_transaction: transaction=1671066 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
93622    RenderThread-25194 (24827) [000] ...2 24574.970099: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
93623    RenderThread-25194 (24827) [000] d..4 24574.970105: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
93624    RenderThread-25194 (24827) [000] d..5 24574.970133: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
93625    RenderThread-25194 (24827) [000] d..2 24574.970154: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
93626  Binder:23896_4-24423 (23896) [000] .... 24574.970164: binder_transaction_received: transaction=1671066
93627  HwBinder:598_3-633   (  598) [002] ...1 24574.970295: tracing_mark_write: B|598|HWCSession::PresentDisplay::
93628  Binder:23896_4-24423 (23896) [000] .... 24574.970333: binder_transaction: transaction=1671067 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
93629  Binder:23896_4-24423 (23896) [000] d..2 24574.970343: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
93630  Binder:23896_4-24423 (23896) [000] dn.3 24574.970361: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
93631  Binder:23896_4-24423 (23896) [000] d..2 24574.970372: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
93632    RenderThread-25194 (24827) [000] .... 24574.970381: binder_transaction_received: transaction=1671067
93633    RenderThread-25194 (24827) [000] d..2 24574.970487: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
93634  Binder:23896_4-24423 (23896) [000] .... 24574.970495: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
93635  Binder:23896_4-24423 (23896) [000] d..2 24574.970569: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93636          <idle>-0     (-----) [000] d..1 24574.970591: cpu_idle: state=0 cpu_id=0
93637          <idle>-0     (-----) [000] d.h2 24574.970721: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
93638          <idle>-0     (-----) [000] dnh3 24574.970738: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
93639          <idle>-0     (-----) [000] .n.1 24574.970750: cpu_idle: state=4294967295 cpu_id=0
93640          <idle>-0     (-----) [000] d..2 24574.970762: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
93641 irq/79-1436400.-24613 (24613) [000] d.s3 24574.970927: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
93642 irq/79-1436400.-24613 (24613) [000] d.s4 24574.970975: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
93643          <idle>-0     (-----) [001] ...1 24574.971036: cpu_idle: state=4294967295 cpu_id=1
93644          <idle>-0     (-----) [001] d..1 24574.971041: cpu_idle: state=0 cpu_id=1
93645 irq/79-1436400.-24613 (24613) [000] d..2 24574.971066: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
93646     rcu_preempt-7     (    7) [000] d.h4 24574.971093: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
93647          <idle>-0     (-----) [003] dns3 24574.971111: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
93648     rcu_preempt-7     (    7) [000] d.h5 24574.971114: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
93649          <idle>-0     (-----) [003] dns4 24574.971127: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
93650          <idle>-0     (-----) [003] .n.1 24574.971142: cpu_idle: state=4294967295 cpu_id=3
93651     rcu_preempt-7     (    7) [000] d..2 24574.971143: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
93652          <idle>-0     (-----) [003] d..2 24574.971156: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
93653 irq/79-1436400.-24613 (24613) [000] d..2 24574.971178: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
93654     rcu_preempt-7     (    7) [000] d..2 24574.971187: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
93655     rcu_preempt-7     (    7) [000] d..3 24574.971208: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
93656     rcu_preempt-7     (    7) [000] d..2 24574.971230: 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
93657         rcuop/0-10    (   10) [000] d..2 24574.971240: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
93658 kgsl_worker_thr-246   (  246) [003] d..2 24574.971240: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
93659          <idle>-0     (-----) [003] d..1 24574.971257: cpu_idle: state=0 cpu_id=3
93660         rcuop/0-10    (   10) [000] d..3 24574.971277: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
93661          <idle>-0     (-----) [003] .n.1 24574.971285: cpu_idle: state=4294967295 cpu_id=3
93662          <idle>-0     (-----) [003] d..2 24574.971299: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
93663         rcuop/0-10    (   10) [000] d..2 24574.971302: 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
93664          <idle>-0     (-----) [000] d..1 24574.971320: cpu_idle: state=0 cpu_id=0
93665         rcuop/1-21    (   21) [003] d..2 24574.971334: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
93666          <idle>-0     (-----) [003] d..1 24574.971347: cpu_idle: state=0 cpu_id=3
93667  HwBinder:598_3-633   (  598) [002] ...1 24574.971365: tracing_mark_write: B|598|HWDeviceDRM::Validate::
93668  HwBinder:598_3-633   (  598) [002] ...1 24574.972416: tracing_mark_write: E|598
93669  HwBinder:598_3-633   (  598) [002] ...1 24574.972651: tracing_mark_write: B|598|HWDeviceDRM::Commit::
93670  HwBinder:598_3-633   (  598) [002] ...1 24574.972670: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
93671          <idle>-0     (-----) [003] ...1 24574.972873: cpu_idle: state=4294967295 cpu_id=3
93672          <idle>-0     (-----) [003] d..1 24574.972878: cpu_idle: state=0 cpu_id=3
93673  HwBinder:598_3-633   (  598) [002] d..2 24574.973299: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
93674  HwBinder:598_3-633   (  598) [002] d..3 24574.973331: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
93675          <idle>-0     (-----) [001] .n.1 24574.973336: cpu_idle: state=4294967295 cpu_id=1
93676          <idle>-0     (-----) [001] d..2 24574.973348: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
93677  HwBinder:598_3-633   (  598) [002] ...1 24574.973482: tracing_mark_write: E|598
93678  HwBinder:598_3-633   (  598) [002] ...1 24574.973489: tracing_mark_write: E|598
93679  HwBinder:598_3-633   (  598) [002] ...1 24574.973570: tracing_mark_write: E|598
93680 crtc_commit:111-253   (  253) [001] d..2 24574.973598: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
93681          <idle>-0     (-----) [001] d..1 24574.973614: cpu_idle: state=0 cpu_id=1
93682  HwBinder:598_3-633   (  598) [002] ...1 24574.973672: tracing_mark_write: E|598
93683  HwBinder:598_3-633   (  598) [002] .... 24574.973706: binder_transaction: transaction=1671068 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
93684  HwBinder:598_3-633   (  598) [002] d..2 24574.973741: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
93685  HwBinder:598_3-633   (  598) [002] d..3 24574.973766: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
93686  HwBinder:598_3-633   (  598) [002] .... 24574.973771: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
93687          <idle>-0     (-----) [003] dns2 24574.973784: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
93688          <idle>-0     (-----) [003] dns3 24574.973802: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
93689          <idle>-0     (-----) [003] .n.1 24574.973810: cpu_idle: state=4294967295 cpu_id=3
93690          <idle>-0     (-----) [003] d..2 24574.973821: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
93691  surfaceflinger-23896 (23896) [003] .... 24574.973832: binder_transaction_received: transaction=1671068
93692  HwBinder:598_3-633   (  598) [002] d..2 24574.973903: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93693          <idle>-0     (-----) [002] d..1 24574.973925: cpu_idle: state=0 cpu_id=2
93694  surfaceflinger-23896 (23896) [003] d.s2 24574.974262: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
93695  surfaceflinger-23896 (23896) [003] d.s3 24574.974318: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
93696  surfaceflinger-23896 (23896) [003] d..2 24574.974963: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
93697     ksoftirqd/3-34    (   34) [003] d.s2 24574.974986: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
93698     ksoftirqd/3-34    (   34) [003] d.s3 24574.975011: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
93699          <idle>-0     (-----) [001] .n.1 24574.975016: cpu_idle: state=4294967295 cpu_id=1
93700          <idle>-0     (-----) [001] d..2 24574.975030: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
93701     ksoftirqd/3-34    (   34) [003] d..2 24574.975032: 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
93702 crtc_commit:111-253   (  253) [001] d..2 24574.975279: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
93703  kworker/u16:10-23868 (23868) [003] d.s4 24574.975290: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
93704          <idle>-0     (-----) [001] dn.1 24574.975307: cpu_idle: state=0 cpu_id=1
93705  kworker/u16:10-23868 (23868) [003] d.s5 24574.975311: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
93706          <idle>-0     (-----) [001] .n.1 24574.975315: cpu_idle: state=4294967295 cpu_id=1
93707          <idle>-0     (-----) [001] d..2 24574.975327: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
93708  kworker/u16:10-23868 (23868) [003] .... 24574.975341: clk_set_rate: l3_cluster0_vote_clk 403200000
93709  kworker/u16:10-23868 (23868) [003] .... 24574.975351: clk_set_rate: l3_clk 403200000
93710  kworker/u16:10-23868 (23868) [003] d..2 24574.975429: 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
93711 crtc_commit:111-253   (  253) [001] d..1 24574.975444: clk_enable: disp_cc_mdss_vsync_clk_src
93712 crtc_commit:111-253   (  253) [001] d..1 24574.975447: clk_enable: disp_cc_mdss_rscc_vsync_clk
93713          <idle>-0     (-----) [003] d..1 24574.975451: cpu_idle: state=0 cpu_id=3
93714 crtc_commit:111-253   (  253) [001] d..1 24574.975485: clk_enable: disp_cc_mdss_rscc_ahb_clk
93715 crtc_commit:111-253   (  253) [001] d..2 24574.975566: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
93716          <idle>-0     (-----) [001] d..1 24574.975579: cpu_idle: state=0 cpu_id=1
93717          <idle>-0     (-----) [001] d.h2 24574.975655: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
93718          <idle>-0     (-----) [001] dnh3 24574.975671: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
93719          <idle>-0     (-----) [001] .n.1 24574.975681: cpu_idle: state=4294967295 cpu_id=1
93720          <idle>-0     (-----) [001] d..2 24574.975692: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
93721 crtc_commit:111-253   (  253) [001] d..1 24574.975745: clk_enable: gcc_disp_axi_clk
93722 crtc_commit:111-253   (  253) [001] d..1 24574.975767: clk_enable: disp_cc_mdss_ahb_clk
93723 crtc_commit:111-253   (  253) [001] d..1 24574.975783: clk_enable: disp_cc_mdss_axi_clk
93724 crtc_commit:111-253   (  253) [001] d..1 24574.975813: clk_enable: gcc_disp_gpll0_clk_src
93725 crtc_commit:111-253   (  253) [001] d..1 24574.976330: clk_enable: disp_cc_mdss_mdp_clk_src
93726 crtc_commit:111-253   (  253) [001] d..1 24574.976376: clk_enable: disp_cc_mdss_mdp_clk
93727 crtc_commit:111-253   (  253) [001] d..1 24574.976392: clk_enable: disp_cc_mdss_vsync_clk
93728 crtc_commit:111-253   (  253) [001] d..2 24574.976822: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
93729          <idle>-0     (-----) [001] d..1 24574.976840: cpu_idle: state=0 cpu_id=1
93730          <idle>-0     (-----) [003] d.s3 24574.977059: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
93731          <idle>-0     (-----) [003] d.s4 24574.977078: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
93732          <idle>-0     (-----) [001] .n.1 24574.977085: cpu_idle: state=4294967295 cpu_id=1
93733          <idle>-0     (-----) [003] ...1 24574.977090: cpu_idle: state=4294967295 cpu_id=3
93734          <idle>-0     (-----) [001] d..2 24574.977096: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
93735          <idle>-0     (-----) [003] d..1 24574.977097: cpu_idle: state=0 cpu_id=3
93736          <idle>-0     (-----) [000] d.s2 24574.977585: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
93737          <idle>-0     (-----) [000] dns3 24574.977673: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
93738          <idle>-0     (-----) [000] .n.1 24574.977695: cpu_idle: state=4294967295 cpu_id=0
93739 crtc_commit:111-253   (  253) [001] d.H2 24574.977704: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
93740          <idle>-0     (-----) [000] d..2 24574.977709: 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
93741 crtc_commit:111-253   (  253) [001] d.H2 24574.977727: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
93742          <idle>-0     (-----) [005] dnh2 24574.977737: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
93743          <idle>-0     (-----) [005] .n.1 24574.977743: cpu_idle: state=4294967295 cpu_id=5
93744 crtc_commit:111-253   (  253) [001] d.H3 24574.977748: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
93745     rcu_preempt-7     (    7) [000] d..2 24574.977752: 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
93746          <idle>-0     (-----) [003] .n.1 24574.977753: cpu_idle: state=4294967295 cpu_id=3
93747          <idle>-0     (-----) [005] d..2 24574.977755: 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
93748          <idle>-0     (-----) [000] d..1 24574.977767: cpu_idle: state=0 cpu_id=0
93749          <idle>-0     (-----) [003] d..2 24574.977767: 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
93750         sugov:4-560   (  560) [005] d..2 24574.977781: 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
93751          <idle>-0     (-----) [005] d..1 24574.977791: cpu_idle: state=0 cpu_id=5
93752         sugov:0-559   (  559) [003] .... 24574.977813: clk_set_rate: pwrcl_clk 979200000
93753         sugov:0-559   (  559) [003] .... 24574.977825: clk_set_rate: cpu3_pwrcl_clk 748800000
93754         sugov:0-559   (  559) [003] .... 24574.977836: clk_set_rate: cpu2_pwrcl_clk 748800000
93755         sugov:0-559   (  559) [003] .... 24574.977845: clk_set_rate: cpu1_pwrcl_clk 748800000
93756         sugov:0-559   (  559) [003] .... 24574.977854: clk_set_rate: cpu0_pwrcl_clk 979200000
93757         sugov:0-559   (  559) [003] .... 24574.977865: cpu_frequency: state=979200 cpu_id=0
93758         sugov:0-559   (  559) [003] .... 24574.977899: cpu_frequency: state=979200 cpu_id=1
93759         sugov:0-559   (  559) [003] .... 24574.977906: cpu_frequency: state=979200 cpu_id=2
93760         sugov:0-559   (  559) [003] .... 24574.977911: cpu_frequency: state=979200 cpu_id=3
93761         sugov:0-559   (  559) [003] d..2 24574.977938: 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
93762          <idle>-0     (-----) [003] d..1 24574.977951: cpu_idle: state=0 cpu_id=3
93763 crtc_commit:111-253   (  253) [001] d..1 24574.979492: clk_enable: disp_cc_mdss_esc0_clk_src
93764 crtc_commit:111-253   (  253) [001] d..1 24574.979496: clk_enable: disp_cc_mdss_esc0_clk
93765 crtc_commit:111-253   (  253) [001] d..1 24574.980060: clk_enable: dsi0pll_vco_clk
93766 crtc_commit:111-253   (  253) [001] d..1 24574.980064: clk_enable: dsi0pll_pll_out_div
93767 crtc_commit:111-253   (  253) [001] d..1 24574.980065: clk_enable: dsi0pll_bitclk_src
93768 crtc_commit:111-253   (  253) [001] d..1 24574.980067: clk_enable: dsi0pll_byteclk_src
93769 crtc_commit:111-253   (  253) [001] d..1 24574.980069: clk_enable: dsi0_phy_pll_out_byteclk
93770 crtc_commit:111-253   (  253) [001] d..1 24574.980072: clk_enable: disp_cc_mdss_byte0_clk_src
93771 crtc_commit:111-253   (  253) [001] d..1 24574.980075: clk_enable: disp_cc_mdss_byte0_clk
93772 crtc_commit:111-253   (  253) [001] d..1 24574.980085: clk_enable: dsi0pll_post_bit_div
93773 crtc_commit:111-253   (  253) [001] d..1 24574.980087: clk_enable: dsi0pll_pclk_src_mux
93774 crtc_commit:111-253   (  253) [001] d..1 24574.980089: clk_enable: dsi0pll_pclk_src
93775 crtc_commit:111-253   (  253) [001] d..1 24574.980090: clk_enable: dsi0_phy_pll_out_dsiclk
93776 crtc_commit:111-253   (  253) [001] d..1 24574.980093: clk_enable: disp_cc_mdss_pclk0_clk_src
93777 crtc_commit:111-253   (  253) [001] d..1 24574.980095: clk_enable: disp_cc_mdss_pclk0_clk
93778 crtc_commit:111-253   (  253) [001] d..1 24574.980102: clk_enable: disp_cc_mdss_byte0_div_clk_src
93779 crtc_commit:111-253   (  253) [001] d..1 24574.980104: clk_enable: disp_cc_mdss_byte0_intf_clk
93780          <idle>-0     (-----) [000] ...1 24574.980209: cpu_idle: state=4294967295 cpu_id=0
93781          <idle>-0     (-----) [000] d..1 24574.980214: cpu_idle: state=0 cpu_id=0
93782 crtc_commit:111-253   (  253) [001] d..2 24574.980718: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
93783          <idle>-0     (-----) [001] d..1 24574.980737: cpu_idle: state=0 cpu_id=1
93784          <idle>-0     (-----) [003] d.s3 24574.980740: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
93785          <idle>-0     (-----) [003] d.s4 24574.980758: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
93786          <idle>-0     (-----) [001] .n.1 24574.980764: cpu_idle: state=4294967295 cpu_id=1
93787          <idle>-0     (-----) [003] ...1 24574.980767: cpu_idle: state=4294967295 cpu_id=3
93788          <idle>-0     (-----) [003] d..1 24574.980772: cpu_idle: state=0 cpu_id=3
93789          <idle>-0     (-----) [001] d..2 24574.980775: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
93790 crtc_commit:111-253   (  253) [001] d..2 24574.980840: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
93791          <idle>-0     (-----) [001] d..1 24574.980848: cpu_idle: state=0 cpu_id=1
93792          <idle>-0     (-----) [001] d.s3 24574.980920: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
93793          <idle>-0     (-----) [001] d.s4 24574.980944: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
93794          <idle>-0     (-----) [002] dnh2 24574.980954: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
93795          <idle>-0     (-----) [001] d.s3 24574.980959: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
93796          <idle>-0     (-----) [002] dnh3 24574.980982: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
93797          <idle>-0     (-----) [003] .n.1 24574.980987: cpu_idle: state=4294967295 cpu_id=3
93798          <idle>-0     (-----) [002] .n.1 24574.980996: cpu_idle: state=4294967295 cpu_id=2
93799          <idle>-0     (-----) [001] dns4 24574.980996: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
93800          <idle>-0     (-----) [003] d..2 24574.981000: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
93801          <idle>-0     (-----) [001] .n.1 24574.981005: cpu_idle: state=4294967295 cpu_id=1
93802          <idle>-0     (-----) [002] d..2 24574.981010: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
93803          <idle>-0     (-----) [001] d..2 24574.981015: 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
93804        DispSync-23904 (23896) [003] d..1 24574.981020: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
93805     rcu_preempt-7     (    7) [001] d..2 24574.981023: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
93806        DispSync-23904 (23896) [003] d..2 24574.981050: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
93807          <idle>-0     (-----) [000] .n.1 24574.981055: cpu_idle: state=4294967295 cpu_id=0
93808  crtc_event:111-254   (  254) [002] d..2 24574.981065: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93809          <idle>-0     (-----) [000] d..2 24574.981066: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
93810     rcu_preempt-7     (    7) [001] d..3 24574.981075: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
93811          <idle>-0     (-----) [002] d..2 24574.981085: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
93812        DispSync-23904 (23896) [003] d..2 24574.981086: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
93813         rcuop/2-29    (   29) [002] d..2 24574.981096: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
93814          <idle>-0     (-----) [003] d..1 24574.981097: cpu_idle: state=0 cpu_id=3
93815     rcu_preempt-7     (    7) [001] d..2 24574.981111: 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
93816          <idle>-0     (-----) [001] d..1 24574.981125: cpu_idle: state=0 cpu_id=1
93817         rcuop/2-29    (   29) [002] d..3 24574.981133: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
93818  appEventThread-23905 (23896) [000] d..3 24574.981137: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
93819         rcuop/2-29    (   29) [002] d..2 24574.981139: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
93820          <idle>-0     (-----) [001] .n.1 24574.981140: cpu_idle: state=4294967295 cpu_id=1
93821          <idle>-0     (-----) [001] d..2 24574.981156: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/3 next_pid=37 next_prio=120
93822         rcuop/2-29    (   29) [002] d..3 24574.981168: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
93823         rcuop/3-37    (   37) [001] d..2 24574.981188: 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
93824  appEventThread-23905 (23896) [000] d..4 24574.981190: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=003
93825          <idle>-0     (-----) [003] .n.1 24574.981193: cpu_idle: state=4294967295 cpu_id=3
93826          <idle>-0     (-----) [003] d..2 24574.981205: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
93827         rcuop/2-29    (   29) [002] d..2 24574.981209: 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
93828     rcu_preempt-7     (    7) [001] d..2 24574.981211: 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
93829          <idle>-0     (-----) [002] d..1 24574.981222: cpu_idle: state=0 cpu_id=2
93830          <idle>-0     (-----) [001] d..1 24574.981222: cpu_idle: state=0 cpu_id=1
93831  appEventThread-23905 (23896) [000] d..2 24574.981229: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93832          <idle>-0     (-----) [000] d..1 24574.981243: cpu_idle: state=0 cpu_id=0
93833 s.nexuslauncher-24827 (24827) [003] .... 24574.981773: binder_transaction: transaction=1671069 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
93834 s.nexuslauncher-24827 (24827) [003] d..4 24574.981796: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
93835 s.nexuslauncher-24827 (24827) [003] d..5 24574.981823: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
93836 s.nexuslauncher-24827 (24827) [003] d..3 24574.981868: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
93837          <idle>-0     (-----) [000] dnh5 24574.981871: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
93838          <idle>-0     (-----) [000] dnh6 24574.981889: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
93839          <idle>-0     (-----) [001] .n.1 24574.981894: cpu_idle: state=4294967295 cpu_id=1
93840          <idle>-0     (-----) [001] d..2 24574.981904: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
93841 s.nexuslauncher-24827 (24827) [003] d..4 24574.981912: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
93842          <idle>-0     (-----) [000] .n.1 24574.981916: cpu_idle: state=4294967295 cpu_id=0
93843          <idle>-0     (-----) [000] d..2 24574.981929: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
93844  Binder:23896_4-24423 (23896) [000] .... 24574.981937: binder_transaction_received: transaction=1671069
93845  Binder:23896_4-24423 (23896) [000] d..1 24574.981973: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
93846 crtc_commit:111-253   (  253) [001] d..2 24574.981983: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
93847  Binder:23896_4-24423 (23896) [000] d..2 24574.981998: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
93848          <idle>-0     (-----) [002] .n.1 24574.982004: cpu_idle: state=4294967295 cpu_id=2
93849          <idle>-0     (-----) [002] d..2 24574.982015: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
93850  Binder:23896_4-24423 (23896) [000] d..2 24574.982043: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93851    RenderThread-25194 (24827) [001] d..2 24574.982047: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
93852          <idle>-0     (-----) [000] d..1 24574.982058: cpu_idle: state=0 cpu_id=0
93853          <idle>-0     (-----) [001] d..1 24574.982062: cpu_idle: state=0 cpu_id=1
93854  appEventThread-23905 (23896) [002] d..2 24574.982074: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93855          <idle>-0     (-----) [002] d..1 24574.982088: cpu_idle: state=0 cpu_id=2
93856 s.nexuslauncher-24827 (24827) [003] d..3 24574.982597: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
93857 s.nexuslauncher-24827 (24827) [003] d..4 24574.982632: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
93858          <idle>-0     (-----) [000] .n.1 24574.982637: cpu_idle: state=4294967295 cpu_id=0
93859          <idle>-0     (-----) [000] d..2 24574.982650: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
93860 s.nexuslauncher-24827 (24827) [003] d..2 24574.982672: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
93861          <idle>-0     (-----) [003] d..1 24574.982690: cpu_idle: state=0 cpu_id=3
93862    RenderThread-25194 (24827) [000] d..1 24574.983029: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=003
93863    RenderThread-25194 (24827) [000] d..2 24574.983064: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
93864          <idle>-0     (-----) [001] .n.1 24574.983070: cpu_idle: state=4294967295 cpu_id=1
93865          <idle>-0     (-----) [001] d..2 24574.983083: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
93866    RenderThread-25194 (24827) [000] .... 24574.983143: binder_transaction: transaction=1671070 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
93867    RenderThread-25194 (24827) [000] ...2 24574.983153: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
93868    RenderThread-25194 (24827) [000] d..4 24574.983158: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
93869    RenderThread-25194 (24827) [000] d..5 24574.983176: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
93870    RenderThread-25194 (24827) [000] d..2 24574.983192: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
93871  Binder:23896_4-24423 (23896) [000] .... 24574.983201: binder_transaction_received: transaction=1671070
93872 s.nexuslauncher-24827 (24827) [001] d..2 24574.983211: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
93873          <idle>-0     (-----) [001] d..1 24574.983225: cpu_idle: state=0 cpu_id=1
93874  Binder:23896_4-24423 (23896) [000] .... 24574.983294: binder_transaction: transaction=1671071 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
93875  Binder:23896_4-24423 (23896) [000] d..2 24574.983482: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
93876  Binder:23896_4-24423 (23896) [000] dn.3 24574.983498: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
93877  Binder:23896_4-24423 (23896) [000] d..2 24574.983507: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
93878    RenderThread-25194 (24827) [000] .... 24574.983516: binder_transaction_received: transaction=1671071
93879          <idle>-0     (-----) [002] ...1 24574.983866: cpu_idle: state=4294967295 cpu_id=2
93880          <idle>-0     (-----) [002] d..1 24574.983870: cpu_idle: state=0 cpu_id=2
93881    RenderThread-25194 (24827) [000] d.s2 24574.984266: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
93882    RenderThread-25194 (24827) [000] d.s3 24574.984322: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
93883          <idle>-0     (-----) [001] .n.1 24574.984328: cpu_idle: state=4294967295 cpu_id=1
93884          <idle>-0     (-----) [001] d..2 24574.984345: 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
93885  kworker/u16:10-23868 (23868) [001] .... 24574.984413: clk_set_rate: l3_cluster0_vote_clk 480000000
93886  kworker/u16:10-23868 (23868) [001] .... 24574.984420: clk_set_rate: l3_clk 480000000
93887  kworker/u16:10-23868 (23868) [001] d..2 24574.984569: 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
93888          <idle>-0     (-----) [001] d..1 24574.984578: cpu_idle: state=0 cpu_id=1
93889          <idle>-0     (-----) [003] d.h2 24574.984941: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
93890          <idle>-0     (-----) [003] dnh3 24574.984956: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
93891          <idle>-0     (-----) [003] .n.1 24574.984964: cpu_idle: state=4294967295 cpu_id=3
93892          <idle>-0     (-----) [003] d..2 24574.984976: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
93893        DispSync-23904 (23896) [003] d..1 24574.984997: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
93894        DispSync-23904 (23896) [003] d..2 24574.985013: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
93895          <idle>-0     (-----) [001] .n.1 24574.985019: cpu_idle: state=4294967295 cpu_id=1
93896          <idle>-0     (-----) [001] d..2 24574.985028: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
93897        DispSync-23904 (23896) [003] d..2 24574.985068: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
93898  Binder:23896_4-24423 (23896) [003] .... 24574.985074: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
93899   sfEventThread-23906 (23896) [001] d..3 24574.985078: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
93900   sfEventThread-23906 (23896) [001] d..4 24574.985111: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
93901          <idle>-0     (-----) [002] .n.1 24574.985115: cpu_idle: state=4294967295 cpu_id=2
93902          <idle>-0     (-----) [002] d..2 24574.985127: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
93903   sfEventThread-23906 (23896) [001] d..2 24574.985147: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
93904  Binder:23896_4-24423 (23896) [003] d..2 24574.985155: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
93905          <idle>-0     (-----) [001] d..1 24574.985157: cpu_idle: state=0 cpu_id=1
93906          <idle>-0     (-----) [003] d..1 24574.985171: cpu_idle: state=0 cpu_id=3
93907  surfaceflinger-23896 (23896) [002] d..1 24574.985225: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
93908  surfaceflinger-23896 (23896) [002] d..2 24574.985246: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
93909          <idle>-0     (-----) [001] .n.1 24574.985252: cpu_idle: state=4294967295 cpu_id=1
93910          <idle>-0     (-----) [001] d..2 24574.985259: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
93911  surfaceflinger-23896 (23896) [002] d..2 24574.985277: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93912          <idle>-0     (-----) [002] d..1 24574.985292: cpu_idle: state=0 cpu_id=2
93913   sfEventThread-23906 (23896) [001] d..2 24574.985294: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
93914          <idle>-0     (-----) [001] d..1 24574.985302: cpu_idle: state=0 cpu_id=1
93915    RenderThread-25194 (24827) [000] d..2 24574.986702: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
93916          <idle>-0     (-----) [000] d..1 24574.986719: cpu_idle: state=0 cpu_id=0
93917          <idle>-0     (-----) [000] d.h2 24574.986784: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
93918          <idle>-0     (-----) [000] d.h3 24574.986798: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
93919          <idle>-0     (-----) [000] dnh3 24574.986804: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
93920          <idle>-0     (-----) [000] .n.1 24574.986813: cpu_idle: state=4294967295 cpu_id=0
93921          <idle>-0     (-----) [000] d..2 24574.986825: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
93922    RenderThread-25194 (24827) [000] .... 24574.987272: binder_transaction: transaction=1671072 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
93923    RenderThread-25194 (24827) [000] ...2 24574.987287: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
93924    RenderThread-25194 (24827) [000] d..4 24574.987292: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=003
93925    RenderThread-25194 (24827) [000] d..5 24574.987317: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
93926    RenderThread-25194 (24827) [000] d..2 24574.987334: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
93927  Binder:23896_4-24423 (23896) [000] .... 24574.987344: binder_transaction_received: transaction=1671072
93928          <idle>-0     (-----) [001] d.s2 24574.987576: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
93929  Binder:23896_4-24423 (23896) [000] d.s4 24574.987594: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
93930          <idle>-0     (-----) [001] dns3 24574.987595: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
93931          <idle>-0     (-----) [001] .n.1 24574.987606: cpu_idle: state=4294967295 cpu_id=1
93932          <idle>-0     (-----) [001] d..2 24574.987614: 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
93933  Binder:23896_4-24423 (23896) [000] dns5 24574.987615: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
93934  Binder:23896_4-24423 (23896) [000] dns4 24574.987626: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
93935  Binder:23896_4-24423 (23896) [000] dns5 24574.987629: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
93936  Binder:23896_4-24423 (23896) [000] .n.. 24574.987639: binder_transaction: transaction=1671073 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
93937     rcu_preempt-7     (    7) [001] d..2 24574.987640: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
93938  Binder:23896_4-24423 (23896) [000] d..2 24574.987648: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=R+ ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
93939     rcu_preempt-7     (    7) [001] d..3 24574.987673: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
93940     rcu_preempt-7     (    7) [001] d..2 24574.987686: 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
93941     kworker/0:1-13012 (13012) [000] d..2 24574.987689: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
93942         rcuop/2-29    (   29) [001] d..2 24574.987691: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
93943  Binder:23896_4-24423 (23896) [000] d..2 24574.987698: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
93944         rcuop/2-29    (   29) [001] d..3 24574.987705: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
93945  Binder:23896_4-24423 (23896) [000] dn.3 24574.987708: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
93946         rcuop/2-29    (   29) [001] d..2 24574.987715: 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
93947  Binder:23896_4-24423 (23896) [000] d..2 24574.987717: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
93948    RenderThread-25194 (24827) [000] .... 24574.987724: binder_transaction_received: transaction=1671073
93949         rcuop/3-37    (   37) [001] d..2 24574.987756: 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
93950          <idle>-0     (-----) [001] d..1 24574.987767: cpu_idle: state=0 cpu_id=1
93951    RenderThread-25194 (24827) [000] d..2 24574.987827: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
93952  Binder:23896_4-24423 (23896) [000] .... 24574.987834: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
93953  Binder:23896_4-24423 (23896) [000] d..2 24574.987900: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93954          <idle>-0     (-----) [000] d..1 24574.987919: cpu_idle: state=0 cpu_id=0
93955          <idle>-0     (-----) [000] d.h3 24574.988345: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
93956          <idle>-0     (-----) [000] d.h4 24574.988366: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
93957          <idle>-0     (-----) [003] .n.1 24574.988373: cpu_idle: state=4294967295 cpu_id=3
93958          <idle>-0     (-----) [003] d..2 24574.988385: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
93959          <idle>-0     (-----) [000] ...1 24574.988386: cpu_idle: state=4294967295 cpu_id=0
93960          <idle>-0     (-----) [000] d..1 24574.988391: cpu_idle: state=0 cpu_id=0
93961 kgsl_worker_thr-246   (  246) [003] d..2 24574.988452: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
93962 kgsl_worker_thr-246   (  246) [003] d..3 24574.988495: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
93963 kgsl_worker_thr-246   (  246) [003] d..2 24574.988519: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
93964  kworker/u16:10-23868 (23868) [003] d..2 24574.989206: 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
93965          <idle>-0     (-----) [003] d.s4 24574.989252: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
93966          <idle>-0     (-----) [003] d.s5 24574.989261: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
93967          <idle>-0     (-----) [003] dns5 24574.989267: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
93968          <idle>-0     (-----) [003] d..2 24574.989279: 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
93969  kworker/u16:10-23868 (23868) [003] d..2 24574.989310: 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
93970          <idle>-0     (-----) [003] d..1 24574.989325: cpu_idle: state=0 cpu_id=3
93971          <idle>-0     (-----) [001] d.h2 24574.990249: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
93972          <idle>-0     (-----) [001] d.h3 24574.990272: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
93973          <idle>-0     (-----) [000] .n.1 24574.990277: cpu_idle: state=4294967295 cpu_id=0
93974          <idle>-0     (-----) [001] ...1 24574.990282: cpu_idle: state=4294967295 cpu_id=1
93975          <idle>-0     (-----) [001] d..1 24574.990288: cpu_idle: state=0 cpu_id=1
93976          <idle>-0     (-----) [000] d..2 24574.990291: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
93977 s.nexuslauncher-24827 (24827) [000] d..2 24574.990388: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93978          <idle>-0     (-----) [000] d..1 24574.990403: cpu_idle: state=0 cpu_id=0
93979          <idle>-0     (-----) [000] d..2 24574.991803: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
93980          <idle>-0     (-----) [000] dn.3 24574.991821: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
93981          <idle>-0     (-----) [000] .n.1 24574.991826: cpu_idle: state=4294967295 cpu_id=0
93982          <idle>-0     (-----) [000] d..2 24574.991838: 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
93983     ksoftirqd/0-3     (    3) [000] d..2 24574.991880: 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
93984          <idle>-0     (-----) [000] d..1 24574.991889: cpu_idle: state=0 cpu_id=0
93985          <idle>-0     (-----) [000] d.h5 24574.995859: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
93986          <idle>-0     (-----) [000] d.h6 24574.995876: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
93987          <idle>-0     (-----) [002] .n.1 24574.995882: cpu_idle: state=4294967295 cpu_id=2
93988          <idle>-0     (-----) [002] d..2 24574.995894: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
93989          <idle>-0     (-----) [000] d..2 24574.995899: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
93990          <idle>-0     (-----) [000] dn.3 24574.995907: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
93991          <idle>-0     (-----) [000] .n.1 24574.995910: cpu_idle: state=4294967295 cpu_id=0
93992          <idle>-0     (-----) [000] d..2 24574.995923: 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
93993     ksoftirqd/0-3     (    3) [000] d.s2 24574.995930: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
93994  crtc_event:111-254   (  254) [002] d..2 24574.995960: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93995          <idle>-0     (-----) [002] d..1 24574.995971: cpu_idle: state=0 cpu_id=2
93996     ksoftirqd/0-3     (    3) [000] d.s3 24574.995977: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
93997          <idle>-0     (-----) [002] .n.1 24574.995983: cpu_idle: state=4294967295 cpu_id=2
93998          <idle>-0     (-----) [002] d..2 24574.995995: 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
93999     ksoftirqd/0-3     (    3) [000] d..2 24574.996003: 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
94000          <idle>-0     (-----) [000] d..1 24574.996038: cpu_idle: state=0 cpu_id=0
94001          <idle>-0     (-----) [000] ...1 24574.996052: cpu_idle: state=4294967295 cpu_id=0
94002          <idle>-0     (-----) [000] d..1 24574.996057: cpu_idle: state=0 cpu_id=0
94003  kworker/u16:10-23868 (23868) [002] .... 24574.996115: clk_set_rate: l3_cluster0_vote_clk 403200000
94004  kworker/u16:10-23868 (23868) [002] .... 24574.996122: clk_set_rate: l3_clk 403200000
94005  kworker/u16:10-23868 (23868) [002] d..2 24574.996170: 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
94006          <idle>-0     (-----) [002] d..1 24574.996184: cpu_idle: state=0 cpu_id=2
94007          <idle>-0     (-----) [003] d.h2 24574.997397: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
94008          <idle>-0     (-----) [003] dnh3 24574.997412: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
94009          <idle>-0     (-----) [003] .n.1 24574.997420: cpu_idle: state=4294967295 cpu_id=3
94010          <idle>-0     (-----) [003] d..2 24574.997430: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
94011        DispSync-23904 (23896) [003] d..1 24574.997448: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
94012        DispSync-23904 (23896) [003] d..2 24574.997461: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
94013          <idle>-0     (-----) [002] .n.1 24574.997467: cpu_idle: state=4294967295 cpu_id=2
94014          <idle>-0     (-----) [002] d..2 24574.997478: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
94015        DispSync-23904 (23896) [003] d..2 24574.997492: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94016          <idle>-0     (-----) [003] d..1 24574.997504: cpu_idle: state=0 cpu_id=3
94017  appEventThread-23905 (23896) [002] d..3 24574.997523: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
94018  appEventThread-23905 (23896) [002] d..4 24574.997544: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
94019          <idle>-0     (-----) [000] .n.1 24574.997549: cpu_idle: state=4294967295 cpu_id=0
94020          <idle>-0     (-----) [000] d..2 24574.997569: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
94021  appEventThread-23905 (23896) [002] d.s3 24574.997643: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
94022  appEventThread-23905 (23896) [002] d.s4 24574.997662: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
94023 s.nexuslauncher-24827 (24827) [000] d.h4 24574.997662: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
94024 s.nexuslauncher-24827 (24827) [000] d.h4 24574.997678: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
94025          <idle>-0     (-----) [005] dnh2 24574.997685: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
94026          <idle>-0     (-----) [005] .n.1 24574.997689: cpu_idle: state=4294967295 cpu_id=5
94027 s.nexuslauncher-24827 (24827) [000] d.h5 24574.997693: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
94028          <idle>-0     (-----) [005] d..2 24574.997696: 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
94029  appEventThread-23905 (23896) [002] d..2 24574.997697: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
94030          <idle>-0     (-----) [003] .n.1 24574.997699: cpu_idle: state=4294967295 cpu_id=3
94031          <idle>-0     (-----) [003] d..2 24574.997711: 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
94032         sugov:4-560   (  560) [005] d..2 24574.997712: 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
94033          <idle>-0     (-----) [005] d..1 24574.997718: cpu_idle: state=0 cpu_id=5
94034         sugov:0-559   (  559) [003] d..2 24574.997740: 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
94035          <idle>-0     (-----) [003] d..1 24574.997748: cpu_idle: state=0 cpu_id=3
94036  kworker/u16:10-23868 (23868) [002] d..2 24574.997897: 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
94037          <idle>-0     (-----) [002] d..1 24574.997913: cpu_idle: state=0 cpu_id=2
94038          <idle>-0     (-----) [003] d.s3 24574.997923: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
94039          <idle>-0     (-----) [003] d.s4 24574.997934: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
94040          <idle>-0     (-----) [003] d.s4 24574.997943: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
94041          <idle>-0     (-----) [002] .n.1 24574.997949: cpu_idle: state=4294967295 cpu_id=2
94042          <idle>-0     (-----) [003] ...1 24574.997953: cpu_idle: state=4294967295 cpu_id=3
94043          <idle>-0     (-----) [003] d..1 24574.997957: cpu_idle: state=0 cpu_id=3
94044          <idle>-0     (-----) [002] d..2 24574.997961: 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
94045  kworker/u16:10-23868 (23868) [002] d..2 24574.997990: 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
94046          <idle>-0     (-----) [002] d..1 24574.998000: cpu_idle: state=0 cpu_id=2
94047 s.nexuslauncher-24827 (24827) [000] .... 24574.998027: binder_transaction: transaction=1671074 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
94048 s.nexuslauncher-24827 (24827) [000] d..4 24574.998038: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
94049 s.nexuslauncher-24827 (24827) [000] d..5 24574.998072: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
94050          <idle>-0     (-----) [001] .n.1 24574.998077: cpu_idle: state=4294967295 cpu_id=1
94051          <idle>-0     (-----) [001] d..2 24574.998093: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
94052  Binder:23896_4-24423 (23896) [001] .... 24574.998102: binder_transaction_received: transaction=1671074
94053 s.nexuslauncher-24827 (24827) [000] d..3 24574.998108: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
94054 s.nexuslauncher-24827 (24827) [000] d..4 24574.998135: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
94055  Binder:23896_4-24423 (23896) [001] d..1 24574.998136: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
94056          <idle>-0     (-----) [002] .n.1 24574.998140: cpu_idle: state=4294967295 cpu_id=2
94057          <idle>-0     (-----) [002] d..2 24574.998151: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
94058  Binder:23896_4-24423 (23896) [001] d..2 24574.998171: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
94059          <idle>-0     (-----) [003] .n.1 24574.998175: cpu_idle: state=4294967295 cpu_id=3
94060          <idle>-0     (-----) [003] d..2 24574.998185: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
94061    RenderThread-25194 (24827) [002] d..2 24574.998211: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94062  Binder:23896_4-24423 (23896) [001] d..2 24574.998216: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94063          <idle>-0     (-----) [002] d..1 24574.998224: cpu_idle: state=0 cpu_id=2
94064          <idle>-0     (-----) [001] d..1 24574.998232: cpu_idle: state=0 cpu_id=1
94065  appEventThread-23905 (23896) [003] d..2 24574.998235: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94066          <idle>-0     (-----) [003] d..1 24574.998245: cpu_idle: state=0 cpu_id=3
94067 s.nexuslauncher-24827 (24827) [000] d..3 24574.998724: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
94068 s.nexuslauncher-24827 (24827) [000] d..4 24574.998757: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
94069          <idle>-0     (-----) [001] .n.1 24574.998763: cpu_idle: state=4294967295 cpu_id=1
94070          <idle>-0     (-----) [001] d..2 24574.998775: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
94071 s.nexuslauncher-24827 (24827) [000] d..2 24574.998796: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94072          <idle>-0     (-----) [000] d..1 24574.998815: cpu_idle: state=0 cpu_id=0
94073    RenderThread-25194 (24827) [001] d..1 24574.998986: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
94074    RenderThread-25194 (24827) [001] d..2 24574.999009: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
94075          <idle>-0     (-----) [000] .n.1 24574.999016: cpu_idle: state=4294967295 cpu_id=0
94076          <idle>-0     (-----) [000] d..2 24574.999028: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
94077    RenderThread-25194 (24827) [001] .... 24574.999075: binder_transaction: transaction=1671075 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
94078    RenderThread-25194 (24827) [001] ...2 24574.999084: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
94079    RenderThread-25194 (24827) [001] d..4 24574.999087: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
94080    RenderThread-25194 (24827) [001] d..5 24574.999102: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
94081    RenderThread-25194 (24827) [001] d..2 24574.999118: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
94082  Binder:23896_4-24423 (23896) [001] .... 24574.999127: binder_transaction_received: transaction=1671075
94083 s.nexuslauncher-24827 (24827) [000] d..2 24574.999130: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94084          <idle>-0     (-----) [000] d..1 24574.999146: cpu_idle: state=0 cpu_id=0
94085  Binder:23896_4-24423 (23896) [001] d..2 24574.999189: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94086          <idle>-0     (-----) [001] d..1 24574.999207: cpu_idle: state=0 cpu_id=1
94087          <idle>-0     (-----) [003] d.h2 24575.001395: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
94088          <idle>-0     (-----) [003] dnh3 24575.001410: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
94089          <idle>-0     (-----) [003] .n.1 24575.001418: cpu_idle: state=4294967295 cpu_id=3
94090          <idle>-0     (-----) [003] d..2 24575.001429: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
94091        DispSync-23904 (23896) [003] d..1 24575.001443: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
94092        DispSync-23904 (23896) [003] d..2 24575.001457: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
94093          <idle>-0     (-----) [001] .n.1 24575.001464: cpu_idle: state=4294967295 cpu_id=1
94094          <idle>-0     (-----) [001] d..2 24575.001477: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
94095        DispSync-23904 (23896) [003] d..2 24575.001492: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94096          <idle>-0     (-----) [003] d..2 24575.001497: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
94097          <idle>-0     (-----) [003] dn.3 24575.001510: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
94098   sfEventThread-23906 (23896) [001] d..3 24575.001512: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
94099          <idle>-0     (-----) [003] d..2 24575.001520: 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
94100   sfEventThread-23906 (23896) [001] d..4 24575.001533: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
94101          <idle>-0     (-----) [002] .n.1 24575.001540: cpu_idle: state=4294967295 cpu_id=2
94102     ksoftirqd/3-34    (   34) [003] d..2 24575.001547: 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
94103          <idle>-0     (-----) [002] d..2 24575.001551: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
94104          <idle>-0     (-----) [003] d..1 24575.001559: cpu_idle: state=0 cpu_id=3
94105   sfEventThread-23906 (23896) [001] d..2 24575.001568: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94106          <idle>-0     (-----) [001] d..1 24575.001584: cpu_idle: state=0 cpu_id=1
94107  surfaceflinger-23896 (23896) [002] d..1 24575.001799: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
94108  surfaceflinger-23896 (23896) [002] d..2 24575.001833: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
94109          <idle>-0     (-----) [000] .n.1 24575.001839: cpu_idle: state=4294967295 cpu_id=0
94110          <idle>-0     (-----) [000] d..2 24575.001854: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
94111  Binder:23896_4-24423 (23896) [000] d..2 24575.001889: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94112          <idle>-0     (-----) [000] d..1 24575.001901: cpu_idle: state=0 cpu_id=0
94113  surfaceflinger-23896 (23896) [002] d..2 24575.002043: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
94114  surfaceflinger-23896 (23896) [002] d..3 24575.002088: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
94115  surfaceflinger-23896 (23896) [002] d..1 24575.002126: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
94116  surfaceflinger-23896 (23896) [002] d..2 24575.002143: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
94117          <idle>-0     (-----) [001] .n.1 24575.002150: cpu_idle: state=4294967295 cpu_id=1
94118          <idle>-0     (-----) [001] d..2 24575.002160: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
94119   sfEventThread-23906 (23896) [001] d..2 24575.002193: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94120          <idle>-0     (-----) [001] d..1 24575.002204: cpu_idle: state=0 cpu_id=1
94121  surfaceflinger-23896 (23896) [002] ...1 24575.002408: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
94122  surfaceflinger-23896 (23896) [002] ...1 24575.002419: tracing_mark_write: E|23896
94123  surfaceflinger-23896 (23896) [002] .... 24575.002505: binder_transaction: transaction=1671076 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
94124  surfaceflinger-23896 (23896) [002] ...2 24575.002538: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
94125  surfaceflinger-23896 (23896) [002] d..4 24575.002550: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
94126  surfaceflinger-23896 (23896) [002] d..5 24575.002583: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
94127          <idle>-0     (-----) [003] .n.1 24575.002590: cpu_idle: state=4294967295 cpu_id=3
94128          <idle>-0     (-----) [003] d..2 24575.002600: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
94129  surfaceflinger-23896 (23896) [002] d..2 24575.002605: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
94130         rcuop/2-29    (   29) [002] d..2 24575.002612: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
94131  HwBinder:598_3-633   (  598) [003] .... 24575.002616: binder_transaction_received: transaction=1671076
94132         rcuop/2-29    (   29) [002] d..3 24575.002649: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
94133         rcuop/2-29    (   29) [002] d..2 24575.002660: 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
94134     rcu_preempt-7     (    7) [002] d..2 24575.002685: 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
94135  HwBinder:598_3-633   (  598) [003] ...1 24575.002694: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
94136          <idle>-0     (-----) [002] d..1 24575.002701: cpu_idle: state=0 cpu_id=2
94137  HwBinder:598_3-633   (  598) [003] ...1 24575.002862: tracing_mark_write: B|598|HWCSession::PresentDisplay::
94138  HwBinder:598_3-633   (  598) [003] ...1 24575.003080: tracing_mark_write: B|598|HWDeviceDRM::Commit::
94139  HwBinder:598_3-633   (  598) [003] ...1 24575.003094: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
94140  HwBinder:598_3-633   (  598) [003] d..2 24575.003812: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
94141  HwBinder:598_3-633   (  598) [003] d..3 24575.003839: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
94142          <idle>-0     (-----) [001] .n.1 24575.003845: cpu_idle: state=4294967295 cpu_id=1
94143          <idle>-0     (-----) [001] d..2 24575.003855: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
94144  HwBinder:598_3-633   (  598) [003] ...1 24575.003959: tracing_mark_write: E|598
94145  HwBinder:598_3-633   (  598) [003] ...1 24575.003966: tracing_mark_write: E|598
94146  HwBinder:598_3-633   (  598) [003] ...1 24575.004048: tracing_mark_write: E|598
94147  HwBinder:598_3-633   (  598) [003] ...1 24575.004118: tracing_mark_write: E|598
94148  HwBinder:598_3-633   (  598) [003] .... 24575.004143: binder_transaction: transaction=1671077 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
94149  HwBinder:598_3-633   (  598) [003] d..2 24575.004170: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
94150  HwBinder:598_3-633   (  598) [003] d..3 24575.004188: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
94151  HwBinder:598_3-633   (  598) [003] .... 24575.004194: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
94152          <idle>-0     (-----) [002] .n.1 24575.004196: cpu_idle: state=4294967295 cpu_id=2
94153          <idle>-0     (-----) [002] d..2 24575.004207: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
94154  surfaceflinger-23896 (23896) [002] d.s3 24575.004242: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
94155  surfaceflinger-23896 (23896) [002] d.s4 24575.004260: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
94156  surfaceflinger-23896 (23896) [002] .... 24575.004277: binder_transaction_received: transaction=1671077
94157  HwBinder:598_3-633   (  598) [003] d..2 24575.004342: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94158          <idle>-0     (-----) [003] d..1 24575.004362: cpu_idle: state=0 cpu_id=3
94159  surfaceflinger-23896 (23896) [002] d..1 24575.004642: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
94160  surfaceflinger-23896 (23896) [002] d..2 24575.004667: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
94161          <idle>-0     (-----) [000] .n.1 24575.004672: cpu_idle: state=4294967295 cpu_id=0
94162          <idle>-0     (-----) [000] d..2 24575.004684: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
94163  Binder:23896_4-24423 (23896) [000] .... 24575.004752: binder_transaction: transaction=1671078 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
94164  Binder:23896_4-24423 (23896) [000] d..2 24575.004767: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
94165 crtc_commit:111-253   (  253) [001] d..2 24575.004775: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
94166          <idle>-0     (-----) [001] d..1 24575.004791: cpu_idle: state=0 cpu_id=1
94167  Binder:23896_4-24423 (23896) [000] dn.3 24575.004801: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
94168  Binder:23896_4-24423 (23896) [000] d..2 24575.004810: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
94169    RenderThread-25194 (24827) [000] .... 24575.004819: binder_transaction_received: transaction=1671078
94170  surfaceflinger-23896 (23896) [002] d..2 24575.004851: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
94171  kworker/u16:10-23868 (23868) [002] .... 24575.004917: clk_set_rate: l3_cluster0_vote_clk 300000000
94172  kworker/u16:10-23868 (23868) [002] .... 24575.004922: clk_set_rate: l3_clk 300000000
94173  kworker/u16:10-23868 (23868) [002] d..2 24575.005246: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
94174  Binder:23896_4-24423 (23896) [002] .... 24575.005253: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
94175          <idle>-0     (-----) [003] d.s3 24575.005257: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
94176          <idle>-0     (-----) [003] d.s4 24575.005291: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
94177          <idle>-0     (-----) [003] dns4 24575.005298: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
94178          <idle>-0     (-----) [003] .n.1 24575.005308: cpu_idle: state=4294967295 cpu_id=3
94179          <idle>-0     (-----) [003] d..2 24575.005322: 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
94180  Binder:23896_4-24423 (23896) [002] d..2 24575.005343: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94181          <idle>-0     (-----) [002] d..1 24575.005360: cpu_idle: state=0 cpu_id=2
94182  kworker/u16:10-23868 (23868) [003] d..2 24575.005367: 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
94183          <idle>-0     (-----) [003] d..1 24575.005381: cpu_idle: state=0 cpu_id=3
94184          <idle>-0     (-----) [003] ...1 24575.006951: cpu_idle: state=4294967295 cpu_id=3
94185          <idle>-0     (-----) [003] d..1 24575.006956: cpu_idle: state=0 cpu_id=3
94186          <idle>-0     (-----) [002] d.s2 24575.007592: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
94187          <idle>-0     (-----) [002] dns3 24575.007615: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
94188          <idle>-0     (-----) [002] .n.1 24575.007636: cpu_idle: state=4294967295 cpu_id=2
94189          <idle>-0     (-----) [002] d..2 24575.007646: 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
94190    RenderThread-25194 (24827) [000] .... 24575.007656: binder_transaction: transaction=1671079 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
94191    RenderThread-25194 (24827) [000] ...2 24575.007673: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
94192    RenderThread-25194 (24827) [000] d..4 24575.007679: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
94193     rcu_preempt-7     (    7) [002] d..2 24575.007685: 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
94194          <idle>-0     (-----) [002] d..1 24575.007699: cpu_idle: state=0 cpu_id=2
94195    RenderThread-25194 (24827) [000] d..5 24575.007711: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
94196    RenderThread-25194 (24827) [000] d..2 24575.007730: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
94197  Binder:23896_4-24423 (23896) [000] .... 24575.007742: binder_transaction_received: transaction=1671079
94198  Binder:23896_4-24423 (23896) [000] .... 24575.007936: binder_transaction: transaction=1671080 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
94199  Binder:23896_4-24423 (23896) [000] d..2 24575.007946: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
94200  Binder:23896_4-24423 (23896) [000] dn.3 24575.007966: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
94201  Binder:23896_4-24423 (23896) [000] d..2 24575.007977: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
94202    RenderThread-25194 (24827) [000] .... 24575.007986: binder_transaction_received: transaction=1671080
94203    RenderThread-25194 (24827) [000] d..2 24575.008093: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
94204  Binder:23896_4-24423 (23896) [000] .... 24575.008100: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
94205  Binder:23896_4-24423 (23896) [000] d..2 24575.008179: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94206          <idle>-0     (-----) [000] d..1 24575.008200: cpu_idle: state=0 cpu_id=0
94207          <idle>-0     (-----) [000] d.h5 24575.009710: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
94208          <idle>-0     (-----) [000] d.h6 24575.009734: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
94209          <idle>-0     (-----) [002] .n.1 24575.009740: cpu_idle: state=4294967295 cpu_id=2
94210          <idle>-0     (-----) [000] d.h5 24575.009743: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
94211          <idle>-0     (-----) [002] d..2 24575.009751: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
94212          <idle>-0     (-----) [000] d.h6 24575.009756: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
94213          <idle>-0     (-----) [001] .n.1 24575.009763: cpu_idle: state=4294967295 cpu_id=1
94214          <idle>-0     (-----) [001] d..2 24575.009777: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
94215          <idle>-0     (-----) [000] ...1 24575.009779: cpu_idle: state=4294967295 cpu_id=0
94216  crtc_event:111-254   (  254) [002] d..3 24575.009782: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
94217          <idle>-0     (-----) [000] d..1 24575.009786: cpu_idle: state=0 cpu_id=0
94218  crtc_event:111-254   (  254) [002] d..4 24575.009807: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
94219          <idle>-0     (-----) [003] .n.1 24575.009812: cpu_idle: state=4294967295 cpu_id=3
94220          <idle>-0     (-----) [003] d..2 24575.009823: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
94221  crtc_event:111-254   (  254) [002] d..2 24575.009835: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94222          <idle>-0     (-----) [002] d..1 24575.009847: cpu_idle: state=0 cpu_id=2
94223 crtc_commit:111-253   (  253) [001] d..2 24575.009995: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
94224          <idle>-0     (-----) [001] d..1 24575.010005: cpu_idle: state=0 cpu_id=1
94225 kgsl_worker_thr-246   (  246) [003] d..2 24575.010061: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
94226          <idle>-0     (-----) [003] d..1 24575.010071: cpu_idle: state=0 cpu_id=3
94227          <idle>-0     (-----) [003] d.h2 24575.010145: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
94228          <idle>-0     (-----) [003] dnh3 24575.010160: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
94229          <idle>-0     (-----) [003] .n.1 24575.010169: cpu_idle: state=4294967295 cpu_id=3
94230          <idle>-0     (-----) [003] d..2 24575.010178: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
94231 kgsl_worker_thr-246   (  246) [003] d..2 24575.010202: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
94232 kgsl_worker_thr-246   (  246) [003] d..3 24575.010222: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
94233 kgsl_worker_thr-246   (  246) [003] d..2 24575.010239: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
94234  kworker/u16:10-23868 (23868) [003] d..2 24575.010293: 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
94235          <idle>-0     (-----) [003] d..1 24575.010304: cpu_idle: state=0 cpu_id=3
94236          <idle>-0     (-----) [001] d.s3 24575.010919: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
94237          <idle>-0     (-----) [001] d.s4 24575.010940: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
94238          <idle>-0     (-----) [002] .n.1 24575.010946: cpu_idle: state=4294967295 cpu_id=2
94239          <idle>-0     (-----) [002] d..2 24575.010959: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
94240          <idle>-0     (-----) [001] ...1 24575.010967: cpu_idle: state=4294967295 cpu_id=1
94241          <idle>-0     (-----) [001] d..1 24575.010973: cpu_idle: state=0 cpu_id=1
94242  crtc_event:111-254   (  254) [002] d..2 24575.010991: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94243          <idle>-0     (-----) [002] d..1 24575.010999: cpu_idle: state=0 cpu_id=2
94244          <idle>-0     (-----) [000] d.h3 24575.011729: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
94245          <idle>-0     (-----) [000] d.h4 24575.011747: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
94246          <idle>-0     (-----) [003] .n.1 24575.011755: cpu_idle: state=4294967295 cpu_id=3
94247          <idle>-0     (-----) [000] ...1 24575.011765: cpu_idle: state=4294967295 cpu_id=0
94248          <idle>-0     (-----) [003] d..2 24575.011765: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
94249          <idle>-0     (-----) [000] d..1 24575.011770: cpu_idle: state=0 cpu_id=0
94250 kgsl_worker_thr-246   (  246) [003] d..2 24575.011847: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94251          <idle>-0     (-----) [003] d..1 24575.011856: cpu_idle: state=0 cpu_id=3
94252          <idle>-0     (-----) [000] d.h5 24575.012011: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
94253          <idle>-0     (-----) [000] d.h6 24575.012026: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
94254          <idle>-0     (-----) [001] .n.1 24575.012032: cpu_idle: state=4294967295 cpu_id=1
94255          <idle>-0     (-----) [000] ...1 24575.012041: cpu_idle: state=4294967295 cpu_id=0
94256          <idle>-0     (-----) [001] d..2 24575.012043: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
94257          <idle>-0     (-----) [000] d..1 24575.012046: cpu_idle: state=0 cpu_id=0
94258 crtc_commit:111-253   (  253) [001] d..2 24575.012155: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94259          <idle>-0     (-----) [001] d..1 24575.012169: cpu_idle: state=0 cpu_id=1
94260          <idle>-0     (-----) [000] d.h5 24575.012320: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
94261          <idle>-0     (-----) [000] d.h6 24575.012335: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
94262          <idle>-0     (-----) [002] .n.1 24575.012341: cpu_idle: state=4294967295 cpu_id=2
94263          <idle>-0     (-----) [002] d..2 24575.012350: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
94264          <idle>-0     (-----) [000] ...1 24575.012357: cpu_idle: state=4294967295 cpu_id=0
94265          <idle>-0     (-----) [000] d..1 24575.012362: cpu_idle: state=0 cpu_id=0
94266  crtc_event:111-254   (  254) [002] d..2 24575.012376: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94267          <idle>-0     (-----) [002] d..1 24575.012384: cpu_idle: state=0 cpu_id=2
94268          <idle>-0     (-----) [003] d.h2 24575.013868: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
94269          <idle>-0     (-----) [003] dnh3 24575.013883: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
94270          <idle>-0     (-----) [003] .n.1 24575.013892: cpu_idle: state=4294967295 cpu_id=3
94271          <idle>-0     (-----) [003] d..2 24575.013901: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
94272        DispSync-23904 (23896) [003] d..1 24575.013930: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
94273        DispSync-23904 (23896) [003] d..2 24575.013956: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
94274          <idle>-0     (-----) [002] .n.1 24575.013961: cpu_idle: state=4294967295 cpu_id=2
94275          <idle>-0     (-----) [002] d..2 24575.013970: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
94276        DispSync-23904 (23896) [003] d..2 24575.013992: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94277          <idle>-0     (-----) [003] d..1 24575.014004: cpu_idle: state=0 cpu_id=3
94278  appEventThread-23905 (23896) [002] d..3 24575.014029: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
94279  appEventThread-23905 (23896) [002] d..4 24575.014054: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
94280          <idle>-0     (-----) [000] .n.1 24575.014058: cpu_idle: state=4294967295 cpu_id=0
94281          <idle>-0     (-----) [000] d..2 24575.014078: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
94282  appEventThread-23905 (23896) [002] d..2 24575.014094: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94283          <idle>-0     (-----) [002] d..1 24575.014105: cpu_idle: state=0 cpu_id=2
94284          <idle>-0     (-----) [001] ...1 24575.014218: cpu_idle: state=4294967295 cpu_id=1
94285          <idle>-0     (-----) [001] d..1 24575.014225: cpu_idle: state=0 cpu_id=1
94286          <idle>-0     (-----) [002] d.s2 24575.014245: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
94287 s.nexuslauncher-24827 (24827) [000] d.s2 24575.014261: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
94288          <idle>-0     (-----) [002] dns3 24575.014263: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
94289          <idle>-0     (-----) [002] .n.1 24575.014272: cpu_idle: state=4294967295 cpu_id=2
94290          <idle>-0     (-----) [002] d..2 24575.014281: 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
94291     rcu_preempt-7     (    7) [002] d..2 24575.014292: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
94292     rcu_preempt-7     (    7) [002] d..3 24575.014311: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
94293 s.nexuslauncher-24827 (24827) [000] d.s3 24575.014324: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
94294     rcu_preempt-7     (    7) [002] d..2 24575.014341: 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
94295         rcuop/2-29    (   29) [002] d..2 24575.014352: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
94296         rcuop/2-29    (   29) [002] d..3 24575.014364: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
94297         rcuop/2-29    (   29) [002] d..2 24575.014373: 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
94298     rcu_preempt-7     (    7) [002] d..2 24575.014387: 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
94299  kworker/u16:10-23868 (23868) [002] d..2 24575.014630: 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
94300          <idle>-0     (-----) [002] d..1 24575.014649: cpu_idle: state=0 cpu_id=2
94301 s.nexuslauncher-24827 (24827) [000] .... 24575.014670: binder_transaction: transaction=1671081 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
94302 s.nexuslauncher-24827 (24827) [000] d..4 24575.014682: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
94303 s.nexuslauncher-24827 (24827) [000] d..5 24575.014722: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
94304          <idle>-0     (-----) [001] .n.1 24575.014726: cpu_idle: state=4294967295 cpu_id=1
94305          <idle>-0     (-----) [001] d..2 24575.014744: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
94306  Binder:23896_4-24423 (23896) [001] .... 24575.014754: binder_transaction_received: transaction=1671081
94307 s.nexuslauncher-24827 (24827) [000] d..3 24575.014766: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
94308  Binder:23896_4-24423 (23896) [001] d..1 24575.014792: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
94309 s.nexuslauncher-24827 (24827) [000] d..4 24575.014796: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
94310          <idle>-0     (-----) [002] .n.1 24575.014802: cpu_idle: state=4294967295 cpu_id=2
94311          <idle>-0     (-----) [002] d..2 24575.014816: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
94312  Binder:23896_4-24423 (23896) [001] d..2 24575.014839: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
94313          <idle>-0     (-----) [003] .n.1 24575.014845: cpu_idle: state=4294967295 cpu_id=3
94314          <idle>-0     (-----) [003] d..2 24575.014858: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
94315    RenderThread-25194 (24827) [002] d..2 24575.014887: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94316  Binder:23896_4-24423 (23896) [001] d..2 24575.014892: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94317          <idle>-0     (-----) [002] d..1 24575.014901: cpu_idle: state=0 cpu_id=2
94318          <idle>-0     (-----) [001] d..1 24575.014909: cpu_idle: state=0 cpu_id=1
94319  appEventThread-23905 (23896) [003] d..2 24575.014910: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94320          <idle>-0     (-----) [003] d..1 24575.014920: cpu_idle: state=0 cpu_id=3
94321          <idle>-0     (-----) [003] d.s3 24575.015118: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
94322          <idle>-0     (-----) [003] d.s4 24575.015131: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
94323          <idle>-0     (-----) [003] d.s4 24575.015141: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
94324          <idle>-0     (-----) [002] .n.1 24575.015148: cpu_idle: state=4294967295 cpu_id=2
94325          <idle>-0     (-----) [003] ...1 24575.015152: cpu_idle: state=4294967295 cpu_id=3
94326          <idle>-0     (-----) [003] d..1 24575.015157: cpu_idle: state=0 cpu_id=3
94327          <idle>-0     (-----) [002] d..2 24575.015160: 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
94328  kworker/u16:10-23868 (23868) [002] .... 24575.015275: clk_set_rate: l3_cluster0_vote_clk 403200000
94329  kworker/u16:10-23868 (23868) [002] .... 24575.015281: clk_set_rate: l3_clk 403200000
94330  kworker/u16:10-23868 (23868) [002] d..2 24575.015335: 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
94331          <idle>-0     (-----) [002] d..1 24575.015349: cpu_idle: state=0 cpu_id=2
94332 s.nexuslauncher-24827 (24827) [000] d..3 24575.015427: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
94333 s.nexuslauncher-24827 (24827) [000] d..4 24575.015465: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
94334          <idle>-0     (-----) [001] .n.1 24575.015471: cpu_idle: state=4294967295 cpu_id=1
94335          <idle>-0     (-----) [001] d..2 24575.015485: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
94336 s.nexuslauncher-24827 (24827) [000] d..2 24575.015502: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94337          <idle>-0     (-----) [000] d..1 24575.015523: cpu_idle: state=0 cpu_id=0
94338    RenderThread-25194 (24827) [001] d..1 24575.015728: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
94339    RenderThread-25194 (24827) [001] d..2 24575.015752: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
94340          <idle>-0     (-----) [000] .n.1 24575.015759: cpu_idle: state=4294967295 cpu_id=0
94341          <idle>-0     (-----) [000] d..2 24575.015773: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
94342    RenderThread-25194 (24827) [001] .... 24575.015813: binder_transaction: transaction=1671082 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
94343    RenderThread-25194 (24827) [001] ...2 24575.015822: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
94344    RenderThread-25194 (24827) [001] d..4 24575.015825: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
94345    RenderThread-25194 (24827) [001] d..5 24575.015840: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
94346    RenderThread-25194 (24827) [001] d..2 24575.015857: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
94347  Binder:23896_4-24423 (23896) [001] .... 24575.015865: binder_transaction_received: transaction=1671082
94348 s.nexuslauncher-24827 (24827) [000] d..2 24575.015886: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94349          <idle>-0     (-----) [000] d..1 24575.015900: cpu_idle: state=0 cpu_id=0
94350  Binder:23896_4-24423 (23896) [001] d..2 24575.015923: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94351          <idle>-0     (-----) [001] d..1 24575.015942: cpu_idle: state=0 cpu_id=1
94352          <idle>-0     (-----) [003] d.h2 24575.017889: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
94353          <idle>-0     (-----) [003] dnh3 24575.017909: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
94354          <idle>-0     (-----) [003] dnh3 24575.018023: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
94355          <idle>-0     (-----) [003] dnh3 24575.018040: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
94356          <idle>-0     (-----) [005] dnh2 24575.018046: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
94357          <idle>-0     (-----) [005] .n.1 24575.018050: cpu_idle: state=4294967295 cpu_id=5
94358          <idle>-0     (-----) [005] d..2 24575.018056: 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
94359          <idle>-0     (-----) [003] dnh4 24575.018062: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
94360          <idle>-0     (-----) [002] .n.1 24575.018068: cpu_idle: state=4294967295 cpu_id=2
94361          <idle>-0     (-----) [003] .n.1 24575.018070: cpu_idle: state=4294967295 cpu_id=3
94362         sugov:4-560   (  560) [005] d..2 24575.018072: 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
94363          <idle>-0     (-----) [005] d..2 24575.018075: sched_waking: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
94364          <idle>-0     (-----) [002] d..2 24575.018081: 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
94365          <idle>-0     (-----) [003] d..2 24575.018082: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
94366          <idle>-0     (-----) [005] dn.3 24575.018087: sched_wakeup: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
94367          <idle>-0     (-----) [005] d..2 24575.018094: 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
94368        DispSync-23904 (23896) [003] d..1 24575.018099: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
94369         sugov:0-559   (  559) [002] d..2 24575.018112: 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
94370        DispSync-23904 (23896) [003] d..2 24575.018113: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
94371     ksoftirqd/5-50    (   50) [005] d..2 24575.018116: 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
94372          <idle>-0     (-----) [002] d..1 24575.018119: cpu_idle: state=0 cpu_id=2
94373          <idle>-0     (-----) [001] .n.1 24575.018120: cpu_idle: state=4294967295 cpu_id=1
94374          <idle>-0     (-----) [005] d..1 24575.018124: cpu_idle: state=0 cpu_id=5
94375          <idle>-0     (-----) [001] d..2 24575.018133: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
94376        DispSync-23904 (23896) [003] d..2 24575.018146: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94377          <idle>-0     (-----) [003] d..1 24575.018159: cpu_idle: state=0 cpu_id=3
94378   sfEventThread-23906 (23896) [001] d..3 24575.018171: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
94379   sfEventThread-23906 (23896) [001] d..4 24575.018194: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
94380          <idle>-0     (-----) [002] .n.1 24575.018199: cpu_idle: state=4294967295 cpu_id=2
94381          <idle>-0     (-----) [002] d..2 24575.018207: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
94382   sfEventThread-23906 (23896) [001] d..2 24575.018227: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94383          <idle>-0     (-----) [001] d..1 24575.018241: cpu_idle: state=0 cpu_id=1
94384  surfaceflinger-23896 (23896) [002] d..1 24575.018438: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
94385  surfaceflinger-23896 (23896) [002] d..2 24575.018473: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
94386          <idle>-0     (-----) [000] .n.1 24575.018479: cpu_idle: state=4294967295 cpu_id=0
94387          <idle>-0     (-----) [000] d..2 24575.018495: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
94388  Binder:23896_4-24423 (23896) [000] d..2 24575.018530: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94389          <idle>-0     (-----) [000] d..1 24575.018542: cpu_idle: state=0 cpu_id=0
94390  surfaceflinger-23896 (23896) [002] d..1 24575.018669: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
94391  surfaceflinger-23896 (23896) [002] d..2 24575.018692: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
94392          <idle>-0     (-----) [001] .n.1 24575.018698: cpu_idle: state=4294967295 cpu_id=1
94393          <idle>-0     (-----) [001] d..2 24575.018709: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
94394   sfEventThread-23906 (23896) [001] d..2 24575.018743: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94395          <idle>-0     (-----) [001] d..1 24575.018754: cpu_idle: state=0 cpu_id=1
94396  surfaceflinger-23896 (23896) [002] ...1 24575.018923: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
94397  surfaceflinger-23896 (23896) [002] ...1 24575.018933: tracing_mark_write: E|23896
94398  surfaceflinger-23896 (23896) [002] .... 24575.019006: binder_transaction: transaction=1671083 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
94399  surfaceflinger-23896 (23896) [002] ...2 24575.019037: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
94400  surfaceflinger-23896 (23896) [002] d..4 24575.019046: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
94401  surfaceflinger-23896 (23896) [002] d..5 24575.019073: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
94402          <idle>-0     (-----) [003] .n.1 24575.019079: cpu_idle: state=4294967295 cpu_id=3
94403          <idle>-0     (-----) [003] d..2 24575.019090: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
94404  HwBinder:598_3-633   (  598) [003] .... 24575.019101: binder_transaction_received: transaction=1671083
94405  surfaceflinger-23896 (23896) [002] d..2 24575.019106: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94406          <idle>-0     (-----) [002] d..1 24575.019119: cpu_idle: state=0 cpu_id=2
94407  HwBinder:598_3-633   (  598) [003] ...1 24575.019154: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
94408  HwBinder:598_3-633   (  598) [003] ...1 24575.019308: tracing_mark_write: B|598|HWCSession::PresentDisplay::
94409  HwBinder:598_3-633   (  598) [003] ...1 24575.019516: tracing_mark_write: B|598|HWDeviceDRM::Commit::
94410  HwBinder:598_3-633   (  598) [003] ...1 24575.019532: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
94411          <idle>-0     (-----) [007] ...1 24575.019809: cpu_idle: state=4294967295 cpu_id=7
94412          <idle>-0     (-----) [007] d..1 24575.019813: cpu_idle: state=0 cpu_id=7
94413  HwBinder:598_3-633   (  598) [003] d..2 24575.020200: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
94414  HwBinder:598_3-633   (  598) [003] d..3 24575.020227: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
94415          <idle>-0     (-----) [001] .n.1 24575.020232: cpu_idle: state=4294967295 cpu_id=1
94416          <idle>-0     (-----) [001] d..2 24575.020243: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
94417  HwBinder:598_3-633   (  598) [003] ...1 24575.020336: tracing_mark_write: E|598
94418  HwBinder:598_3-633   (  598) [003] ...1 24575.020343: tracing_mark_write: E|598
94419  HwBinder:598_3-633   (  598) [003] ...1 24575.020412: tracing_mark_write: E|598
94420  HwBinder:598_3-633   (  598) [003] ...1 24575.020465: tracing_mark_write: E|598
94421  HwBinder:598_3-633   (  598) [003] .... 24575.020482: binder_transaction: transaction=1671084 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
94422  HwBinder:598_3-633   (  598) [003] d..2 24575.020509: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
94423  HwBinder:598_3-633   (  598) [003] d..3 24575.020528: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
94424  HwBinder:598_3-633   (  598) [003] .... 24575.020533: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
94425          <idle>-0     (-----) [002] .n.1 24575.020534: cpu_idle: state=4294967295 cpu_id=2
94426          <idle>-0     (-----) [002] d..2 24575.020543: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
94427  surfaceflinger-23896 (23896) [002] .... 24575.020551: binder_transaction_received: transaction=1671084
94428  HwBinder:598_3-633   (  598) [003] d..2 24575.020625: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94429          <idle>-0     (-----) [003] d..1 24575.020644: cpu_idle: state=0 cpu_id=3
94430  surfaceflinger-23896 (23896) [002] d..1 24575.020820: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
94431  surfaceflinger-23896 (23896) [002] d..2 24575.020844: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
94432          <idle>-0     (-----) [000] .n.1 24575.020849: cpu_idle: state=4294967295 cpu_id=0
94433          <idle>-0     (-----) [000] d..2 24575.020860: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
94434  surfaceflinger-23896 (23896) [002] d.s1 24575.020914: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
94435 crtc_commit:111-253   (  253) [001] d.s2 24575.020916: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
94436  surfaceflinger-23896 (23896) [002] d.s2 24575.020935: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
94437  Binder:23896_4-24423 (23896) [000] .... 24575.020965: binder_transaction: transaction=1671085 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
94438 crtc_commit:111-253   (  253) [001] d.s3 24575.020969: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
94439  Binder:23896_4-24423 (23896) [000] d..2 24575.020980: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
94440  Binder:23896_4-24423 (23896) [000] d..3 24575.021016: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=003
94441  Binder:23896_4-24423 (23896) [000] .... 24575.021021: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
94442          <idle>-0     (-----) [003] .n.1 24575.021022: cpu_idle: state=4294967295 cpu_id=3
94443          <idle>-0     (-----) [003] d..2 24575.021038: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
94444    RenderThread-25194 (24827) [003] .... 24575.021050: binder_transaction_received: transaction=1671085
94445  Binder:23896_4-24423 (23896) [000] d..2 24575.021080: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
94446  surfaceflinger-23896 (23896) [002] d..2 24575.021091: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
94447     rcu_preempt-7     (    7) [002] d..2 24575.021129: 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
94448          <idle>-0     (-----) [002] d..1 24575.021147: cpu_idle: state=0 cpu_id=2
94449 crtc_commit:111-253   (  253) [001] d..2 24575.021194: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
94450          <idle>-0     (-----) [001] d..1 24575.021212: cpu_idle: state=0 cpu_id=1
94451  kworker/u16:10-23868 (23868) [000] d..2 24575.021295: 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
94452          <idle>-0     (-----) [000] d..1 24575.021312: cpu_idle: state=0 cpu_id=0
94453    RenderThread-25194 (24827) [003] d.s2 24575.021319: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
94454    RenderThread-25194 (24827) [003] d.s3 24575.021367: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
94455    RenderThread-25194 (24827) [003] d.s3 24575.021375: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
94456    RenderThread-25194 (24827) [003] .... 24575.023618: binder_transaction: transaction=1671086 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
94457    RenderThread-25194 (24827) [003] ...2 24575.023635: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
94458    RenderThread-25194 (24827) [003] d..4 24575.023639: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
94459    RenderThread-25194 (24827) [003] d..5 24575.023663: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
94460          <idle>-0     (-----) [000] .n.1 24575.023670: cpu_idle: state=4294967295 cpu_id=0
94461          <idle>-0     (-----) [000] d..2 24575.023682: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
94462    RenderThread-25194 (24827) [003] d..2 24575.023685: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
94463  Binder:23896_4-24423 (23896) [000] .... 24575.023691: binder_transaction_received: transaction=1671086
94464  kworker/u16:10-23868 (23868) [003] d..2 24575.023726: 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
94465          <idle>-0     (-----) [003] d..1 24575.023744: cpu_idle: state=0 cpu_id=3
94466  Binder:23896_4-24423 (23896) [000] .... 24575.023857: binder_transaction: transaction=1671087 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
94467  Binder:23896_4-24423 (23896) [000] d..2 24575.023866: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=003
94468  Binder:23896_4-24423 (23896) [000] dn.3 24575.023891: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
94469  Binder:23896_4-24423 (23896) [000] d..2 24575.023902: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
94470    RenderThread-25194 (24827) [000] .... 24575.023911: binder_transaction_received: transaction=1671087
94471    RenderThread-25194 (24827) [000] d..2 24575.024013: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
94472  Binder:23896_4-24423 (23896) [000] .... 24575.024020: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
94473  Binder:23896_4-24423 (23896) [000] d..2 24575.024085: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94474          <idle>-0     (-----) [000] d..1 24575.024102: cpu_idle: state=0 cpu_id=0
94475          <idle>-0     (-----) [000] d.h5 24575.026164: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
94476          <idle>-0     (-----) [000] d.h6 24575.026187: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
94477          <idle>-0     (-----) [000] d.h5 24575.026193: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
94478          <idle>-0     (-----) [002] .n.1 24575.026194: cpu_idle: state=4294967295 cpu_id=2
94479          <idle>-0     (-----) [000] d.h6 24575.026205: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
94480          <idle>-0     (-----) [002] d..2 24575.026208: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
94481          <idle>-0     (-----) [001] .n.1 24575.026212: cpu_idle: state=4294967295 cpu_id=1
94482          <idle>-0     (-----) [000] d..2 24575.026219: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
94483          <idle>-0     (-----) [001] d..2 24575.026226: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
94484  crtc_event:111-254   (  254) [002] d..3 24575.026229: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
94485          <idle>-0     (-----) [000] dn.3 24575.026233: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
94486          <idle>-0     (-----) [000] .n.1 24575.026239: cpu_idle: state=4294967295 cpu_id=0
94487  crtc_event:111-254   (  254) [002] d..4 24575.026249: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
94488          <idle>-0     (-----) [000] d..2 24575.026254: 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
94489          <idle>-0     (-----) [003] .n.1 24575.026257: cpu_idle: state=4294967295 cpu_id=3
94490     ksoftirqd/0-3     (    3) [000] d.s2 24575.026266: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
94491          <idle>-0     (-----) [003] d..2 24575.026270: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
94492  crtc_event:111-254   (  254) [002] d..2 24575.026279: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94493          <idle>-0     (-----) [002] d..1 24575.026288: cpu_idle: state=0 cpu_id=2
94494     ksoftirqd/0-3     (    3) [000] d.s3 24575.026311: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
94495          <idle>-0     (-----) [002] .n.1 24575.026316: cpu_idle: state=4294967295 cpu_id=2
94496          <idle>-0     (-----) [002] d..2 24575.026326: 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
94497     ksoftirqd/0-3     (    3) [000] d..2 24575.026337: 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
94498          <idle>-0     (-----) [000] d..1 24575.026374: cpu_idle: state=0 cpu_id=0
94499          <idle>-0     (-----) [000] ...1 24575.026389: cpu_idle: state=4294967295 cpu_id=0
94500 crtc_commit:111-253   (  253) [001] d..2 24575.026393: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
94501          <idle>-0     (-----) [000] d..1 24575.026393: cpu_idle: state=0 cpu_id=0
94502          <idle>-0     (-----) [001] d..1 24575.026424: cpu_idle: state=0 cpu_id=1
94503          <idle>-0     (-----) [001] ...1 24575.026437: cpu_idle: state=4294967295 cpu_id=1
94504          <idle>-0     (-----) [001] d..1 24575.026440: cpu_idle: state=0 cpu_id=1
94505 kgsl_worker_thr-246   (  246) [003] d..2 24575.026503: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
94506          <idle>-0     (-----) [003] d..1 24575.026514: cpu_idle: state=0 cpu_id=3
94507  kworker/u16:10-23868 (23868) [002] d..2 24575.026551: 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
94508          <idle>-0     (-----) [002] d..1 24575.026560: cpu_idle: state=0 cpu_id=2
94509          <idle>-0     (-----) [003] d.h2 24575.026589: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
94510          <idle>-0     (-----) [003] dnh3 24575.026603: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
94511          <idle>-0     (-----) [003] .n.1 24575.026611: cpu_idle: state=4294967295 cpu_id=3
94512          <idle>-0     (-----) [003] d..2 24575.026621: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
94513 kgsl_worker_thr-246   (  246) [003] d..2 24575.026644: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
94514 kgsl_worker_thr-246   (  246) [003] d..3 24575.026684: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
94515 kgsl_worker_thr-246   (  246) [003] d..2 24575.026699: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
94516  kworker/u16:10-23868 (23868) [003] d..2 24575.027340: 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
94517          <idle>-0     (-----) [003] d.s4 24575.027383: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
94518          <idle>-0     (-----) [003] d.s5 24575.027393: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
94519          <idle>-0     (-----) [003] dns5 24575.027401: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
94520          <idle>-0     (-----) [003] d..2 24575.027414: 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
94521  kworker/u16:10-23868 (23868) [003] d..2 24575.027440: 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
94522          <idle>-0     (-----) [003] d..1 24575.027455: cpu_idle: state=0 cpu_id=3
94523          <idle>-0     (-----) [001] d.s3 24575.027577: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
94524          <idle>-0     (-----) [002] d.s2 24575.027577: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
94525          <idle>-0     (-----) [001] d.s4 24575.027595: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
94526          <idle>-0     (-----) [002] dns3 24575.027603: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
94527          <idle>-0     (-----) [002] .n.1 24575.027624: cpu_idle: state=4294967295 cpu_id=2
94528          <idle>-0     (-----) [001] ...1 24575.027626: cpu_idle: state=4294967295 cpu_id=1
94529          <idle>-0     (-----) [002] d..2 24575.027632: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
94530          <idle>-0     (-----) [001] d..1 24575.027632: cpu_idle: state=0 cpu_id=1
94531  crtc_event:111-254   (  254) [002] d..2 24575.027652: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
94532     rcu_preempt-7     (    7) [002] d..2 24575.027664: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
94533     rcu_preempt-7     (    7) [002] d..3 24575.027681: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
94534     rcu_preempt-7     (    7) [002] d..2 24575.027693: 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
94535         rcuop/2-29    (   29) [002] d..2 24575.027712: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
94536         rcuop/2-29    (   29) [002] d..3 24575.027724: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
94537         rcuop/2-29    (   29) [002] d..2 24575.027733: 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
94538     rcu_preempt-7     (    7) [002] d..2 24575.027761: 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
94539          <idle>-0     (-----) [002] d..1 24575.027775: cpu_idle: state=0 cpu_id=2
94540          <idle>-0     (-----) [000] d.h3 24575.028081: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
94541          <idle>-0     (-----) [000] d.h4 24575.028100: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
94542          <idle>-0     (-----) [003] .n.1 24575.028106: cpu_idle: state=4294967295 cpu_id=3
94543          <idle>-0     (-----) [000] ...1 24575.028116: cpu_idle: state=4294967295 cpu_id=0
94544          <idle>-0     (-----) [003] d..2 24575.028118: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
94545          <idle>-0     (-----) [000] d..1 24575.028121: cpu_idle: state=0 cpu_id=0
94546 kgsl_worker_thr-246   (  246) [003] d..2 24575.028193: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94547          <idle>-0     (-----) [003] d..1 24575.028203: cpu_idle: state=0 cpu_id=3
94548          <idle>-0     (-----) [000] d.h5 24575.028481: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
94549          <idle>-0     (-----) [000] d.h6 24575.028495: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
94550          <idle>-0     (-----) [001] .n.1 24575.028501: cpu_idle: state=4294967295 cpu_id=1
94551          <idle>-0     (-----) [000] ...1 24575.028510: cpu_idle: state=4294967295 cpu_id=0
94552          <idle>-0     (-----) [001] d..2 24575.028511: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
94553          <idle>-0     (-----) [000] d..1 24575.028515: cpu_idle: state=0 cpu_id=0
94554 crtc_commit:111-253   (  253) [001] d..2 24575.028597: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94555          <idle>-0     (-----) [001] d..1 24575.028610: cpu_idle: state=0 cpu_id=1
94556          <idle>-0     (-----) [000] d.h5 24575.028789: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
94557          <idle>-0     (-----) [000] d.h6 24575.028804: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
94558          <idle>-0     (-----) [002] .n.1 24575.028810: cpu_idle: state=4294967295 cpu_id=2
94559          <idle>-0     (-----) [002] d..2 24575.028821: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
94560          <idle>-0     (-----) [000] ...1 24575.028825: cpu_idle: state=4294967295 cpu_id=0
94561          <idle>-0     (-----) [000] d..1 24575.028830: cpu_idle: state=0 cpu_id=0
94562  crtc_event:111-254   (  254) [002] d..2 24575.028848: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94563          <idle>-0     (-----) [002] d..1 24575.028857: cpu_idle: state=0 cpu_id=2
94564          <idle>-0     (-----) [003] d.h2 24575.030341: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
94565          <idle>-0     (-----) [003] dnh3 24575.030355: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
94566          <idle>-0     (-----) [003] .n.1 24575.030363: cpu_idle: state=4294967295 cpu_id=3
94567          <idle>-0     (-----) [003] d..2 24575.030372: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
94568        DispSync-23904 (23896) [003] d..1 24575.030398: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
94569        DispSync-23904 (23896) [003] d..2 24575.030423: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
94570          <idle>-0     (-----) [001] .n.1 24575.030428: cpu_idle: state=4294967295 cpu_id=1
94571          <idle>-0     (-----) [001] d..2 24575.030439: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
94572        DispSync-23904 (23896) [003] d..2 24575.030458: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94573          <idle>-0     (-----) [003] d..1 24575.030470: cpu_idle: state=0 cpu_id=3
94574  appEventThread-23905 (23896) [001] d..3 24575.030493: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
94575  appEventThread-23905 (23896) [001] d..4 24575.030518: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
94576          <idle>-0     (-----) [000] .n.1 24575.030523: cpu_idle: state=4294967295 cpu_id=0
94577          <idle>-0     (-----) [000] d..2 24575.030541: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
94578  appEventThread-23905 (23896) [001] d..2 24575.030556: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94579          <idle>-0     (-----) [001] d..1 24575.030570: cpu_idle: state=0 cpu_id=1
94580 s.nexuslauncher-24827 (24827) [000] .... 24575.031001: binder_transaction: transaction=1671088 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
94581 s.nexuslauncher-24827 (24827) [000] d..4 24575.031011: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
94582 s.nexuslauncher-24827 (24827) [000] d..5 24575.031043: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
94583          <idle>-0     (-----) [001] .n.1 24575.031049: cpu_idle: state=4294967295 cpu_id=1
94584          <idle>-0     (-----) [001] d..2 24575.031064: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
94585  Binder:23896_4-24423 (23896) [001] .... 24575.031071: binder_transaction_received: transaction=1671088
94586 s.nexuslauncher-24827 (24827) [000] d..3 24575.031081: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
94587  Binder:23896_4-24423 (23896) [001] d..1 24575.031102: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
94588 s.nexuslauncher-24827 (24827) [000] d..4 24575.031107: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
94589          <idle>-0     (-----) [002] .n.1 24575.031112: cpu_idle: state=4294967295 cpu_id=2
94590          <idle>-0     (-----) [002] d..2 24575.031125: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
94591  Binder:23896_4-24423 (23896) [001] d..2 24575.031128: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
94592          <idle>-0     (-----) [003] .n.1 24575.031134: cpu_idle: state=4294967295 cpu_id=3
94593          <idle>-0     (-----) [003] d..2 24575.031145: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
94594  Binder:23896_4-24423 (23896) [001] d..2 24575.031177: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94595    RenderThread-25194 (24827) [002] d..2 24575.031187: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94596          <idle>-0     (-----) [001] d..1 24575.031193: cpu_idle: state=0 cpu_id=1
94597  appEventThread-23905 (23896) [003] d..2 24575.031196: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94598          <idle>-0     (-----) [002] d..1 24575.031197: cpu_idle: state=0 cpu_id=2
94599          <idle>-0     (-----) [003] d..1 24575.031207: cpu_idle: state=0 cpu_id=3
94600 s.nexuslauncher-24827 (24827) [000] d..3 24575.031604: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
94601 s.nexuslauncher-24827 (24827) [000] d..4 24575.031640: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
94602          <idle>-0     (-----) [001] .n.1 24575.031647: cpu_idle: state=4294967295 cpu_id=1
94603          <idle>-0     (-----) [001] d..2 24575.031659: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
94604 s.nexuslauncher-24827 (24827) [000] d..2 24575.031678: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94605          <idle>-0     (-----) [000] d..1 24575.031697: cpu_idle: state=0 cpu_id=0
94606    RenderThread-25194 (24827) [001] d..1 24575.031887: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
94607    RenderThread-25194 (24827) [001] d..2 24575.031911: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
94608          <idle>-0     (-----) [000] .n.1 24575.031917: cpu_idle: state=4294967295 cpu_id=0
94609          <idle>-0     (-----) [000] d..2 24575.031930: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
94610    RenderThread-25194 (24827) [001] .... 24575.031973: binder_transaction: transaction=1671089 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
94611    RenderThread-25194 (24827) [001] ...2 24575.031982: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
94612    RenderThread-25194 (24827) [001] d..4 24575.031985: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
94613    RenderThread-25194 (24827) [001] d..5 24575.032004: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
94614    RenderThread-25194 (24827) [001] d..2 24575.032020: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
94615  Binder:23896_4-24423 (23896) [001] .... 24575.032028: binder_transaction_received: transaction=1671089
94616 s.nexuslauncher-24827 (24827) [000] d..2 24575.032041: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94617          <idle>-0     (-----) [000] d..1 24575.032055: cpu_idle: state=0 cpu_id=0
94618  Binder:23896_4-24423 (23896) [001] d..2 24575.032087: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94619          <idle>-0     (-----) [001] d..1 24575.032107: cpu_idle: state=0 cpu_id=1
94620          <idle>-0     (-----) [001] ...1 24575.034065: cpu_idle: state=4294967295 cpu_id=1
94621          <idle>-0     (-----) [001] d..1 24575.034069: cpu_idle: state=0 cpu_id=1
94622          <idle>-0     (-----) [002] d.s2 24575.034246: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
94623          <idle>-0     (-----) [002] dns3 24575.034265: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
94624          <idle>-0     (-----) [002] dns3 24575.034272: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
94625          <idle>-0     (-----) [002] dns4 24575.034305: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
94626          <idle>-0     (-----) [002] .n.1 24575.034317: cpu_idle: state=4294967295 cpu_id=2
94627          <idle>-0     (-----) [002] d..2 24575.034327: 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
94628     rcu_preempt-7     (    7) [002] d..2 24575.034339: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
94629     rcu_preempt-7     (    7) [002] d..3 24575.034353: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
94630          <idle>-0     (-----) [003] d.h2 24575.034353: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
94631     rcu_preempt-7     (    7) [002] d..2 24575.034362: 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
94632          <idle>-0     (-----) [003] dnh3 24575.034366: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
94633          <idle>-0     (-----) [003] .n.1 24575.034374: cpu_idle: state=4294967295 cpu_id=3
94634         rcuop/2-29    (   29) [002] d..2 24575.034379: 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
94635          <idle>-0     (-----) [003] d..2 24575.034385: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
94636        DispSync-23904 (23896) [003] d..1 24575.034401: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
94637        DispSync-23904 (23896) [003] d..2 24575.034415: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
94638          <idle>-0     (-----) [001] .n.1 24575.034420: cpu_idle: state=4294967295 cpu_id=1
94639          <idle>-0     (-----) [001] d..2 24575.034432: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
94640        DispSync-23904 (23896) [003] d..2 24575.034466: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94641   sfEventThread-23906 (23896) [001] d..3 24575.034469: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
94642          <idle>-0     (-----) [003] d..1 24575.034479: cpu_idle: state=0 cpu_id=3
94643   sfEventThread-23906 (23896) [001] d..4 24575.034498: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
94644          <idle>-0     (-----) [000] .n.1 24575.034504: cpu_idle: state=4294967295 cpu_id=0
94645          <idle>-0     (-----) [000] d..2 24575.034516: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
94646   sfEventThread-23906 (23896) [001] d..2 24575.034532: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94647          <idle>-0     (-----) [001] d..1 24575.034547: cpu_idle: state=0 cpu_id=1
94648  kworker/u16:10-23868 (23868) [002] d..2 24575.034608: 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
94649          <idle>-0     (-----) [002] d..1 24575.034625: cpu_idle: state=0 cpu_id=2
94650          <idle>-0     (-----) [003] d.s3 24575.034650: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
94651          <idle>-0     (-----) [003] d.s4 24575.034663: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
94652          <idle>-0     (-----) [003] d.s4 24575.034672: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
94653          <idle>-0     (-----) [002] .n.1 24575.034679: cpu_idle: state=4294967295 cpu_id=2
94654          <idle>-0     (-----) [003] ...1 24575.034683: cpu_idle: state=4294967295 cpu_id=3
94655          <idle>-0     (-----) [003] d..1 24575.034688: cpu_idle: state=0 cpu_id=3
94656          <idle>-0     (-----) [002] d..2 24575.034692: 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
94657  surfaceflinger-23896 (23896) [000] d..1 24575.034711: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
94658  surfaceflinger-23896 (23896) [000] d..2 24575.034737: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
94659          <idle>-0     (-----) [001] .n.1 24575.034743: cpu_idle: state=4294967295 cpu_id=1
94660          <idle>-0     (-----) [001] d..2 24575.034756: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
94661  surfaceflinger-23896 (23896) [000] d..1 24575.034783: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
94662  Binder:23896_4-24423 (23896) [001] d..2 24575.034788: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94663  surfaceflinger-23896 (23896) [000] d..2 24575.034804: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
94664          <idle>-0     (-----) [001] d..2 24575.034826: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
94665  kworker/u16:10-23868 (23868) [002] .... 24575.034848: clk_set_rate: l3_cluster0_vote_clk 300000000
94666  Binder:23896_4-24423 (23896) [001] d..2 24575.034854: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94667  kworker/u16:10-23868 (23868) [002] .... 24575.034856: clk_set_rate: l3_clk 300000000
94668          <idle>-0     (-----) [001] d..1 24575.034866: cpu_idle: state=0 cpu_id=1
94669  kworker/u16:10-23868 (23868) [002] d..2 24575.034921: 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
94670          <idle>-0     (-----) [002] d..1 24575.034936: cpu_idle: state=0 cpu_id=2
94671  surfaceflinger-23896 (23896) [000] d..2 24575.034967: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
94672  surfaceflinger-23896 (23896) [000] d..3 24575.035011: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
94673  surfaceflinger-23896 (23896) [000] d..1 24575.035055: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
94674  surfaceflinger-23896 (23896) [000] d..2 24575.035077: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
94675          <idle>-0     (-----) [001] .n.1 24575.035083: cpu_idle: state=4294967295 cpu_id=1
94676          <idle>-0     (-----) [001] d..2 24575.035095: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
94677   sfEventThread-23906 (23896) [001] d..2 24575.035135: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94678          <idle>-0     (-----) [001] d..1 24575.035148: cpu_idle: state=0 cpu_id=1
94679  surfaceflinger-23896 (23896) [000] ...1 24575.035351: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
94680  surfaceflinger-23896 (23896) [000] ...1 24575.035362: tracing_mark_write: E|23896
94681  surfaceflinger-23896 (23896) [000] .... 24575.035443: binder_transaction: transaction=1671090 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
94682  surfaceflinger-23896 (23896) [000] ...2 24575.035475: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
94683  surfaceflinger-23896 (23896) [000] d..4 24575.035484: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
94684  surfaceflinger-23896 (23896) [000] d..5 24575.035512: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
94685          <idle>-0     (-----) [003] .n.1 24575.035516: cpu_idle: state=4294967295 cpu_id=3
94686          <idle>-0     (-----) [003] d..2 24575.035528: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
94687  surfaceflinger-23896 (23896) [000] d..2 24575.035538: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
94688  HwBinder:598_3-633   (  598) [003] .... 24575.035543: binder_transaction_received: transaction=1671090
94689         rcuop/0-10    (   10) [000] d..2 24575.035552: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
94690         rcuop/0-10    (   10) [000] d..3 24575.035569: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
94691          <idle>-0     (-----) [002] .n.1 24575.035576: cpu_idle: state=4294967295 cpu_id=2
94692          <idle>-0     (-----) [002] d..2 24575.035589: 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
94693         rcuop/0-10    (   10) [000] d..2 24575.035598: 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
94694  HwBinder:598_3-633   (  598) [003] ...1 24575.035608: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
94695     rcu_preempt-7     (    7) [002] d..2 24575.035614: 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
94696          <idle>-0     (-----) [000] d..1 24575.035617: cpu_idle: state=0 cpu_id=0
94697          <idle>-0     (-----) [002] d..1 24575.035624: cpu_idle: state=0 cpu_id=2
94698  HwBinder:598_3-633   (  598) [003] ...1 24575.035788: tracing_mark_write: B|598|HWCSession::PresentDisplay::
94699  HwBinder:598_3-633   (  598) [003] ...1 24575.036015: tracing_mark_write: B|598|HWDeviceDRM::Commit::
94700  HwBinder:598_3-633   (  598) [003] ...1 24575.036029: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
94701          <idle>-0     (-----) [001] ...1 24575.036494: cpu_idle: state=4294967295 cpu_id=1
94702          <idle>-0     (-----) [001] d..1 24575.036500: cpu_idle: state=0 cpu_id=1
94703  HwBinder:598_3-633   (  598) [003] d..2 24575.036727: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
94704  HwBinder:598_3-633   (  598) [003] d..3 24575.036758: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
94705          <idle>-0     (-----) [001] .n.1 24575.036762: cpu_idle: state=4294967295 cpu_id=1
94706          <idle>-0     (-----) [001] d..2 24575.036773: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
94707  HwBinder:598_3-633   (  598) [003] ...1 24575.036883: tracing_mark_write: E|598
94708  HwBinder:598_3-633   (  598) [003] ...1 24575.036889: tracing_mark_write: E|598
94709  HwBinder:598_3-633   (  598) [003] ...1 24575.036969: tracing_mark_write: E|598
94710  HwBinder:598_3-633   (  598) [003] ...1 24575.037032: tracing_mark_write: E|598
94711  HwBinder:598_3-633   (  598) [003] .... 24575.037052: binder_transaction: transaction=1671091 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
94712  HwBinder:598_3-633   (  598) [003] d..2 24575.037080: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
94713  HwBinder:598_3-633   (  598) [003] d..3 24575.037102: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
94714  HwBinder:598_3-633   (  598) [003] .... 24575.037108: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
94715          <idle>-0     (-----) [000] .n.1 24575.037109: cpu_idle: state=4294967295 cpu_id=0
94716          <idle>-0     (-----) [000] d..2 24575.037120: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
94717  surfaceflinger-23896 (23896) [000] .... 24575.037131: binder_transaction_received: transaction=1671091
94718  HwBinder:598_3-633   (  598) [003] d..2 24575.037215: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94719          <idle>-0     (-----) [003] d..1 24575.037237: cpu_idle: state=0 cpu_id=3
94720  surfaceflinger-23896 (23896) [000] d..1 24575.037433: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
94721  surfaceflinger-23896 (23896) [000] d..2 24575.037470: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
94722          <idle>-0     (-----) [002] .n.1 24575.037474: cpu_idle: state=4294967295 cpu_id=2
94723          <idle>-0     (-----) [002] d..2 24575.037486: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
94724 crtc_commit:111-253   (  253) [001] d.s2 24575.037596: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
94725 crtc_commit:111-253   (  253) [001] d.s3 24575.037692: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
94726  Binder:23896_4-24423 (23896) [002] d.H2 24575.037701: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
94727          <idle>-0     (-----) [005] dnh2 24575.037730: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
94728          <idle>-0     (-----) [005] .n.1 24575.037735: cpu_idle: state=4294967295 cpu_id=5
94729          <idle>-0     (-----) [005] d..2 24575.037740: 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
94730  Binder:23896_4-24423 (23896) [002] .... 24575.037741: binder_transaction: transaction=1671092 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
94731         sugov:4-560   (  560) [005] d..2 24575.037754: 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
94732  Binder:23896_4-24423 (23896) [002] d..2 24575.037757: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
94733          <idle>-0     (-----) [005] d..1 24575.037761: cpu_idle: state=0 cpu_id=5
94734  Binder:23896_4-24423 (23896) [002] dn.3 24575.037782: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
94735  Binder:23896_4-24423 (23896) [002] d..2 24575.037792: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
94736 crtc_commit:111-253   (  253) [001] d..2 24575.037799: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
94737    RenderThread-25194 (24827) [002] .... 24575.037802: binder_transaction_received: transaction=1671092
94738  surfaceflinger-23896 (23896) [000] d..2 24575.037823: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94739          <idle>-0     (-----) [000] d..1 24575.037844: cpu_idle: state=0 cpu_id=0
94740     kworker/1:1-13091 (13091) [001] d..2 24575.037927: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94741          <idle>-0     (-----) [001] d..1 24575.037946: cpu_idle: state=0 cpu_id=1
94742    RenderThread-25194 (24827) [002] .... 24575.040526: binder_transaction: transaction=1671093 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
94743    RenderThread-25194 (24827) [002] ...2 24575.040545: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
94744    RenderThread-25194 (24827) [002] d..4 24575.040554: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
94745    RenderThread-25194 (24827) [002] d..5 24575.040604: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
94746          <idle>-0     (-----) [000] .n.1 24575.040611: cpu_idle: state=4294967295 cpu_id=0
94747          <idle>-0     (-----) [000] d..2 24575.040627: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
94748    RenderThread-25194 (24827) [002] d..2 24575.040629: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
94749  Binder:23896_4-24423 (23896) [002] .... 24575.040636: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
94750  Binder:23896_5-25989 (23896) [000] .... 24575.040644: binder_transaction_received: transaction=1671093
94751  Binder:23896_4-24423 (23896) [002] d..2 24575.040728: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94752          <idle>-0     (-----) [002] d..1 24575.040745: cpu_idle: state=0 cpu_id=2
94753  Binder:23896_5-25989 (23896) [000] .... 24575.040859: binder_transaction: transaction=1671094 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
94754  Binder:23896_5-25989 (23896) [000] d..2 24575.040869: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
94755  Binder:23896_5-25989 (23896) [000] d..3 24575.040898: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
94756          <idle>-0     (-----) [002] d.s2 24575.040924: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
94757          <idle>-0     (-----) [002] dns3 24575.040947: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
94758  Binder:23896_5-25989 (23896) [000] .... 24575.040948: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
94759          <idle>-0     (-----) [002] .n.1 24575.040968: cpu_idle: state=4294967295 cpu_id=2
94760          <idle>-0     (-----) [002] d..2 24575.040978: 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
94761     rcu_preempt-7     (    7) [002] d..2 24575.040992: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
94762  Binder:23896_5-25989 (23896) [000] d..2 24575.041011: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
94763    RenderThread-25194 (24827) [000] .... 24575.041021: binder_transaction_received: transaction=1671094
94764     rcu_preempt-7     (    7) [002] d..3 24575.041034: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
94765     rcu_preempt-7     (    7) [002] d..2 24575.041046: 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
94766         rcuop/0-10    (   10) [002] d..2 24575.041056: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
94767         rcuop/0-10    (   10) [002] d..3 24575.041069: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
94768         rcuop/0-10    (   10) [002] d..2 24575.041077: 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
94769     rcu_preempt-7     (    7) [002] d..2 24575.041107: 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
94770          <idle>-0     (-----) [002] d..1 24575.041123: cpu_idle: state=0 cpu_id=2
94771    RenderThread-25194 (24827) [000] d..2 24575.041152: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94772          <idle>-0     (-----) [000] d..1 24575.041174: cpu_idle: state=0 cpu_id=0
94773          <idle>-0     (-----) [000] d.h5 24575.042640: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
94774          <idle>-0     (-----) [000] d.h6 24575.042666: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
94775          <idle>-0     (-----) [000] d.h5 24575.042673: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
94776          <idle>-0     (-----) [002] .n.1 24575.042673: cpu_idle: state=4294967295 cpu_id=2
94777          <idle>-0     (-----) [002] d..2 24575.042684: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
94778          <idle>-0     (-----) [000] d.h6 24575.042687: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
94779          <idle>-0     (-----) [001] .n.1 24575.042694: cpu_idle: state=4294967295 cpu_id=1
94780  crtc_event:111-254   (  254) [002] d..3 24575.042706: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
94781          <idle>-0     (-----) [000] ...1 24575.042708: cpu_idle: state=4294967295 cpu_id=0
94782          <idle>-0     (-----) [001] d..2 24575.042708: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
94783          <idle>-0     (-----) [000] d..1 24575.042714: cpu_idle: state=0 cpu_id=0
94784  crtc_event:111-254   (  254) [002] d..4 24575.042728: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
94785          <idle>-0     (-----) [003] .n.1 24575.042736: cpu_idle: state=4294967295 cpu_id=3
94786          <idle>-0     (-----) [003] d..2 24575.042752: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
94787  crtc_event:111-254   (  254) [002] d..2 24575.042754: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94788          <idle>-0     (-----) [002] d..1 24575.042766: cpu_idle: state=0 cpu_id=2
94789 crtc_commit:111-253   (  253) [001] d..2 24575.042890: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
94790          <idle>-0     (-----) [001] d..1 24575.042900: cpu_idle: state=0 cpu_id=1
94791 kgsl_worker_thr-246   (  246) [003] d..2 24575.042978: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
94792          <idle>-0     (-----) [003] d..1 24575.042990: cpu_idle: state=0 cpu_id=3
94793          <idle>-0     (-----) [003] d.h2 24575.043068: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
94794          <idle>-0     (-----) [003] dnh3 24575.043082: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
94795          <idle>-0     (-----) [003] .n.1 24575.043092: cpu_idle: state=4294967295 cpu_id=3
94796          <idle>-0     (-----) [003] d..2 24575.043102: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
94797 kgsl_worker_thr-246   (  246) [003] d..2 24575.043126: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
94798 kgsl_worker_thr-246   (  246) [003] d..3 24575.043173: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
94799 kgsl_worker_thr-246   (  246) [003] d..2 24575.043189: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
94800  kworker/u16:10-23868 (23868) [003] d..2 24575.043686: 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
94801          <idle>-0     (-----) [003] d..1 24575.043701: cpu_idle: state=0 cpu_id=3
94802          <idle>-0     (-----) [001] d.s3 24575.044250: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
94803          <idle>-0     (-----) [001] d.s4 24575.044271: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
94804          <idle>-0     (-----) [002] .n.1 24575.044277: cpu_idle: state=4294967295 cpu_id=2
94805          <idle>-0     (-----) [001] d.s3 24575.044278: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
94806          <idle>-0     (-----) [002] d..2 24575.044290: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
94807          <idle>-0     (-----) [001] d.s4 24575.044297: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
94808          <idle>-0     (-----) [003] .n.1 24575.044305: cpu_idle: state=4294967295 cpu_id=3
94809          <idle>-0     (-----) [003] d..2 24575.044321: 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
94810  crtc_event:111-254   (  254) [002] d..2 24575.044325: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94811          <idle>-0     (-----) [001] ...1 24575.044326: cpu_idle: state=4294967295 cpu_id=1
94812          <idle>-0     (-----) [002] d..1 24575.044331: cpu_idle: state=0 cpu_id=2
94813          <idle>-0     (-----) [001] d..1 24575.044333: cpu_idle: state=0 cpu_id=1
94814  kworker/u16:10-23868 (23868) [003] .... 24575.044362: clk_set_rate: l3_cluster0_vote_clk 403200000
94815  kworker/u16:10-23868 (23868) [003] .... 24575.044373: clk_set_rate: l3_clk 403200000
94816          <idle>-0     (-----) [000] d.h3 24575.044585: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
94817          <idle>-0     (-----) [000] dnh4 24575.044608: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
94818          <idle>-0     (-----) [000] .n.1 24575.044621: cpu_idle: state=4294967295 cpu_id=0
94819          <idle>-0     (-----) [000] d..2 24575.044634: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
94820  kworker/u16:10-23868 (23868) [003] d..2 24575.044661: 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
94821          <idle>-0     (-----) [003] d..1 24575.044676: cpu_idle: state=0 cpu_id=3
94822 kgsl_worker_thr-246   (  246) [000] d..2 24575.044710: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94823          <idle>-0     (-----) [000] d..1 24575.044725: cpu_idle: state=0 cpu_id=0
94824          <idle>-0     (-----) [000] d.h5 24575.044958: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
94825          <idle>-0     (-----) [000] d.h6 24575.044974: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
94826          <idle>-0     (-----) [001] .n.1 24575.044980: cpu_idle: state=4294967295 cpu_id=1
94827          <idle>-0     (-----) [000] ...1 24575.044990: cpu_idle: state=4294967295 cpu_id=0
94828          <idle>-0     (-----) [001] d..2 24575.044991: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
94829          <idle>-0     (-----) [000] d..1 24575.044994: cpu_idle: state=0 cpu_id=0
94830 crtc_commit:111-253   (  253) [001] d..2 24575.045077: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94831          <idle>-0     (-----) [001] d..1 24575.045089: cpu_idle: state=0 cpu_id=1
94832          <idle>-0     (-----) [003] d.s3 24575.045148: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
94833          <idle>-0     (-----) [003] d.s4 24575.045163: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
94834          <idle>-0     (-----) [003] dns4 24575.045170: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
94835          <idle>-0     (-----) [003] .n.1 24575.045178: cpu_idle: state=4294967295 cpu_id=3
94836          <idle>-0     (-----) [003] d..2 24575.045190: 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
94837  kworker/u16:10-23868 (23868) [003] d..2 24575.045219: 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
94838          <idle>-0     (-----) [003] d..1 24575.045229: cpu_idle: state=0 cpu_id=3
94839          <idle>-0     (-----) [000] d.h5 24575.045259: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
94840          <idle>-0     (-----) [000] d.h6 24575.045274: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
94841          <idle>-0     (-----) [002] .n.1 24575.045279: cpu_idle: state=4294967295 cpu_id=2
94842          <idle>-0     (-----) [002] d..2 24575.045287: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
94843          <idle>-0     (-----) [000] ...1 24575.045294: cpu_idle: state=4294967295 cpu_id=0
94844          <idle>-0     (-----) [000] d..1 24575.045299: cpu_idle: state=0 cpu_id=0
94845  crtc_event:111-254   (  254) [002] d..2 24575.045309: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94846          <idle>-0     (-----) [002] d..1 24575.045316: cpu_idle: state=0 cpu_id=2
94847          <idle>-0     (-----) [003] d.h2 24575.046820: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
94848          <idle>-0     (-----) [003] dnh3 24575.046836: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
94849          <idle>-0     (-----) [003] .n.1 24575.046844: cpu_idle: state=4294967295 cpu_id=3
94850          <idle>-0     (-----) [003] d..2 24575.046853: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
94851        DispSync-23904 (23896) [003] d..1 24575.046877: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
94852        DispSync-23904 (23896) [003] d..2 24575.046903: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
94853          <idle>-0     (-----) [002] .n.1 24575.046908: cpu_idle: state=4294967295 cpu_id=2
94854          <idle>-0     (-----) [002] d..2 24575.046916: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
94855        DispSync-23904 (23896) [003] d..2 24575.046936: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94856          <idle>-0     (-----) [003] d..1 24575.046948: cpu_idle: state=0 cpu_id=3
94857  appEventThread-23905 (23896) [002] d..3 24575.046976: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
94858  appEventThread-23905 (23896) [002] d..4 24575.047002: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
94859          <idle>-0     (-----) [000] .n.1 24575.047007: cpu_idle: state=4294967295 cpu_id=0
94860          <idle>-0     (-----) [000] d..2 24575.047023: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
94861  appEventThread-23905 (23896) [002] d..2 24575.047039: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94862          <idle>-0     (-----) [002] d..1 24575.047049: cpu_idle: state=0 cpu_id=2
94863 s.nexuslauncher-24827 (24827) [000] .... 24575.047449: binder_transaction: transaction=1671095 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
94864 s.nexuslauncher-24827 (24827) [000] d..4 24575.047460: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
94865 s.nexuslauncher-24827 (24827) [000] d..5 24575.047498: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
94866          <idle>-0     (-----) [001] .n.1 24575.047502: cpu_idle: state=4294967295 cpu_id=1
94867          <idle>-0     (-----) [001] d..2 24575.047515: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
94868  Binder:23896_5-25989 (23896) [001] .... 24575.047523: binder_transaction_received: transaction=1671095
94869 s.nexuslauncher-24827 (24827) [000] d..3 24575.047538: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
94870 s.nexuslauncher-24827 (24827) [000] d..4 24575.047567: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
94871  Binder:23896_5-25989 (23896) [001] d.s2 24575.047578: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
94872          <idle>-0     (-----) [002] dns2 24575.047591: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
94873  Binder:23896_5-25989 (23896) [001] d.s3 24575.047621: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
94874          <idle>-0     (-----) [002] dns3 24575.047638: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
94875          <idle>-0     (-----) [002] .n.1 24575.047651: cpu_idle: state=4294967295 cpu_id=2
94876  Binder:23896_5-25989 (23896) [001] d..1 24575.047655: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
94877          <idle>-0     (-----) [002] d..2 24575.047663: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
94878  Binder:23896_5-25989 (23896) [001] d..2 24575.047690: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
94879          <idle>-0     (-----) [003] .n.1 24575.047697: cpu_idle: state=4294967295 cpu_id=3
94880          <idle>-0     (-----) [003] d..2 24575.047708: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
94881    RenderThread-25194 (24827) [002] d..2 24575.047726: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94882  Binder:23896_5-25989 (23896) [001] d..2 24575.047728: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
94883          <idle>-0     (-----) [002] d..1 24575.047742: cpu_idle: state=0 cpu_id=2
94884     rcu_preempt-7     (    7) [001] d..2 24575.047747: 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
94885  appEventThread-23905 (23896) [003] d..2 24575.047757: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94886          <idle>-0     (-----) [003] d..1 24575.047766: cpu_idle: state=0 cpu_id=3
94887  kworker/u16:10-23868 (23868) [001] d..2 24575.047829: 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
94888          <idle>-0     (-----) [001] d..1 24575.047846: cpu_idle: state=0 cpu_id=1
94889 s.nexuslauncher-24827 (24827) [000] d..3 24575.048099: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
94890 s.nexuslauncher-24827 (24827) [000] d..4 24575.048132: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
94891          <idle>-0     (-----) [001] .n.1 24575.048138: cpu_idle: state=4294967295 cpu_id=1
94892          <idle>-0     (-----) [001] d..2 24575.048150: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
94893 s.nexuslauncher-24827 (24827) [000] d..2 24575.048168: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94894          <idle>-0     (-----) [000] d..1 24575.048187: cpu_idle: state=0 cpu_id=0
94895    RenderThread-25194 (24827) [001] d..1 24575.048377: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
94896    RenderThread-25194 (24827) [001] d..2 24575.048402: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
94897          <idle>-0     (-----) [000] .n.1 24575.048409: cpu_idle: state=4294967295 cpu_id=0
94898          <idle>-0     (-----) [000] d..2 24575.048422: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
94899    RenderThread-25194 (24827) [001] .... 24575.048462: binder_transaction: transaction=1671096 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
94900    RenderThread-25194 (24827) [001] ...2 24575.048471: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
94901    RenderThread-25194 (24827) [001] d..4 24575.048474: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
94902    RenderThread-25194 (24827) [001] dn.5 24575.048492: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
94903    RenderThread-25194 (24827) [001] d..2 24575.048503: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
94904  Binder:23896_5-25989 (23896) [001] .... 24575.048511: binder_transaction_received: transaction=1671096
94905 s.nexuslauncher-24827 (24827) [000] d..2 24575.048543: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94906  Binder:23896_5-25989 (23896) [001] d..2 24575.048555: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
94907          <idle>-0     (-----) [000] d..1 24575.048557: cpu_idle: state=0 cpu_id=0
94908    RenderThread-25194 (24827) [001] d..2 24575.048583: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94909          <idle>-0     (-----) [001] d..1 24575.048600: cpu_idle: state=0 cpu_id=1
94910          <idle>-0     (-----) [002] ...1 24575.049976: cpu_idle: state=4294967295 cpu_id=2
94911          <idle>-0     (-----) [002] d..1 24575.049980: cpu_idle: state=0 cpu_id=2
94912          <idle>-0     (-----) [003] d.h2 24575.050829: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
94913          <idle>-0     (-----) [003] dnh3 24575.050841: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
94914          <idle>-0     (-----) [003] .n.1 24575.050850: cpu_idle: state=4294967295 cpu_id=3
94915          <idle>-0     (-----) [003] d..2 24575.050858: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
94916        DispSync-23904 (23896) [003] d..1 24575.050876: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
94917        DispSync-23904 (23896) [003] d..2 24575.050893: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
94918          <idle>-0     (-----) [001] .n.1 24575.050901: cpu_idle: state=4294967295 cpu_id=1
94919          <idle>-0     (-----) [001] d..2 24575.050916: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
94920        DispSync-23904 (23896) [003] d..1 24575.050940: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
94921   sfEventThread-23906 (23896) [001] d..2 24575.050959: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94922          <idle>-0     (-----) [001] d..1 24575.050969: cpu_idle: state=0 cpu_id=1
94923        DispSync-23904 (23896) [003] d..2 24575.050976: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
94924          <idle>-0     (-----) [001] .n.1 24575.050981: cpu_idle: state=4294967295 cpu_id=1
94925          <idle>-0     (-----) [001] d..2 24575.050988: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
94926        DispSync-23904 (23896) [003] d..2 24575.051005: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94927          <idle>-0     (-----) [003] d..1 24575.051021: cpu_idle: state=0 cpu_id=3
94928   sfEventThread-23906 (23896) [001] d..3 24575.051025: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
94929   sfEventThread-23906 (23896) [001] d..4 24575.051044: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
94930          <idle>-0     (-----) [000] .n.1 24575.051050: cpu_idle: state=4294967295 cpu_id=0
94931          <idle>-0     (-----) [000] d..2 24575.051064: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
94932   sfEventThread-23906 (23896) [001] d..2 24575.051074: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94933          <idle>-0     (-----) [001] d..1 24575.051084: cpu_idle: state=0 cpu_id=1
94934  surfaceflinger-23896 (23896) [000] d..1 24575.051285: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
94935  surfaceflinger-23896 (23896) [000] d..2 24575.051312: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
94936          <idle>-0     (-----) [001] .n.1 24575.051317: cpu_idle: state=4294967295 cpu_id=1
94937          <idle>-0     (-----) [001] d..2 24575.051328: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
94938  surfaceflinger-23896 (23896) [000] d..1 24575.051339: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
94939  Binder:23896_5-25989 (23896) [001] d..2 24575.051352: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94940          <idle>-0     (-----) [001] d..1 24575.051359: cpu_idle: state=0 cpu_id=1
94941  surfaceflinger-23896 (23896) [000] d..2 24575.051366: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
94942          <idle>-0     (-----) [001] .n.1 24575.051372: cpu_idle: state=4294967295 cpu_id=1
94943          <idle>-0     (-----) [001] d..2 24575.051381: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
94944  Binder:23896_5-25989 (23896) [001] d..2 24575.051404: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94945          <idle>-0     (-----) [001] d..1 24575.051411: cpu_idle: state=0 cpu_id=1
94946  surfaceflinger-23896 (23896) [000] d..1 24575.051536: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
94947  surfaceflinger-23896 (23896) [000] d..2 24575.051559: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
94948          <idle>-0     (-----) [001] .n.1 24575.051564: cpu_idle: state=4294967295 cpu_id=1
94949          <idle>-0     (-----) [001] d..2 24575.051572: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
94950   sfEventThread-23906 (23896) [001] d..2 24575.051606: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94951          <idle>-0     (-----) [001] d..1 24575.051613: cpu_idle: state=0 cpu_id=1
94952  surfaceflinger-23896 (23896) [000] ...1 24575.051785: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
94953  surfaceflinger-23896 (23896) [000] ...1 24575.051794: tracing_mark_write: E|23896
94954  surfaceflinger-23896 (23896) [000] .... 24575.051863: binder_transaction: transaction=1671097 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
94955  surfaceflinger-23896 (23896) [000] ...2 24575.051892: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
94956  surfaceflinger-23896 (23896) [000] d..4 24575.051900: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
94957  surfaceflinger-23896 (23896) [000] d..5 24575.051926: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
94958          <idle>-0     (-----) [003] .n.1 24575.051932: cpu_idle: state=4294967295 cpu_id=3
94959          <idle>-0     (-----) [003] d..2 24575.051942: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
94960  HwBinder:598_3-633   (  598) [003] .... 24575.051952: binder_transaction_received: transaction=1671097
94961  surfaceflinger-23896 (23896) [000] d..2 24575.051958: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94962          <idle>-0     (-----) [000] d..1 24575.051977: cpu_idle: state=0 cpu_id=0
94963  HwBinder:598_3-633   (  598) [003] ...1 24575.052003: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
94964  HwBinder:598_3-633   (  598) [003] ...1 24575.052157: tracing_mark_write: B|598|HWCSession::PresentDisplay::
94965  HwBinder:598_3-633   (  598) [003] ...1 24575.052370: tracing_mark_write: B|598|HWDeviceDRM::Commit::
94966  HwBinder:598_3-633   (  598) [003] ...1 24575.052383: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
94967  HwBinder:598_3-633   (  598) [003] d..2 24575.053035: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
94968  HwBinder:598_3-633   (  598) [003] d..3 24575.053060: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
94969          <idle>-0     (-----) [001] .n.1 24575.053065: cpu_idle: state=4294967295 cpu_id=1
94970          <idle>-0     (-----) [001] d..2 24575.053073: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
94971  HwBinder:598_3-633   (  598) [003] ...1 24575.053170: tracing_mark_write: E|598
94972  HwBinder:598_3-633   (  598) [003] ...1 24575.053177: tracing_mark_write: E|598
94973  HwBinder:598_3-633   (  598) [003] ...1 24575.053245: tracing_mark_write: E|598
94974  HwBinder:598_3-633   (  598) [003] ...1 24575.053299: tracing_mark_write: E|598
94975  HwBinder:598_3-633   (  598) [003] .... 24575.053315: binder_transaction: transaction=1671098 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
94976  HwBinder:598_3-633   (  598) [003] d..2 24575.053342: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
94977  HwBinder:598_3-633   (  598) [003] d..3 24575.053360: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
94978  HwBinder:598_3-633   (  598) [003] .... 24575.053365: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
94979          <idle>-0     (-----) [000] .n.1 24575.053367: cpu_idle: state=4294967295 cpu_id=0
94980          <idle>-0     (-----) [000] d..2 24575.053378: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
94981  surfaceflinger-23896 (23896) [000] .... 24575.053388: binder_transaction_received: transaction=1671098
94982  HwBinder:598_3-633   (  598) [003] d..2 24575.053455: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94983          <idle>-0     (-----) [003] d..1 24575.053474: cpu_idle: state=0 cpu_id=3
94984  surfaceflinger-23896 (23896) [000] d..1 24575.053656: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
94985  surfaceflinger-23896 (23896) [000] d..2 24575.053689: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
94986          <idle>-0     (-----) [002] .n.1 24575.053694: cpu_idle: state=4294967295 cpu_id=2
94987          <idle>-0     (-----) [002] d..2 24575.053706: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
94988  Binder:23896_5-25989 (23896) [002] .... 24575.053768: binder_transaction: transaction=1671099 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
94989  Binder:23896_5-25989 (23896) [002] d..2 24575.053783: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
94990  Binder:23896_5-25989 (23896) [002] d..3 24575.053807: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
94991  Binder:23896_5-25989 (23896) [002] .... 24575.053812: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
94992  Binder:23896_5-25989 (23896) [002] d..2 24575.053871: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
94993  surfaceflinger-23896 (23896) [000] d..2 24575.053876: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94994    RenderThread-25194 (24827) [002] .... 24575.053879: binder_transaction_received: transaction=1671099
94995          <idle>-0     (-----) [000] d..1 24575.053895: cpu_idle: state=0 cpu_id=0
94996 crtc_commit:111-253   (  253) [001] d..2 24575.053911: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
94997          <idle>-0     (-----) [001] d..1 24575.053921: cpu_idle: state=0 cpu_id=1
94998          <idle>-0     (-----) [001] d.s2 24575.054244: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
94999    RenderThread-25194 (24827) [002] d.s2 24575.054262: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
95000          <idle>-0     (-----) [001] dns3 24575.054263: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
95001          <idle>-0     (-----) [001] .n.1 24575.054278: cpu_idle: state=4294967295 cpu_id=1
95002    RenderThread-25194 (24827) [002] d.s3 24575.054288: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
95003          <idle>-0     (-----) [001] d..2 24575.054296: 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
95004     rcu_preempt-7     (    7) [001] d..2 24575.054306: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
95005     rcu_preempt-7     (    7) [001] d..3 24575.054328: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
95006     rcu_preempt-7     (    7) [001] d..2 24575.054341: 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
95007    RenderThread-25194 (24827) [002] d..2 24575.054344: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
95008         rcuop/0-10    (   10) [002] d..2 24575.054358: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
95009         rcuop/0-10    (   10) [002] d..3 24575.054380: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
95010  kworker/u16:10-23868 (23868) [001] d..2 24575.054398: 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
95011         rcuop/0-10    (   10) [002] d..2 24575.054401: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
95012     rcu_preempt-7     (    7) [001] d..2 24575.054412: 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
95013  kworker/u16:10-23868 (23868) [001] d..2 24575.054547: 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
95014          <idle>-0     (-----) [001] d..1 24575.054562: cpu_idle: state=0 cpu_id=1
95015          <idle>-0     (-----) [003] ...1 24575.055403: cpu_idle: state=4294967295 cpu_id=3
95016          <idle>-0     (-----) [003] d..1 24575.055409: cpu_idle: state=0 cpu_id=3
95017    RenderThread-25194 (24827) [002] .... 24575.056548: binder_transaction: transaction=1671100 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
95018    RenderThread-25194 (24827) [002] ...2 24575.056562: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
95019    RenderThread-25194 (24827) [002] d..4 24575.056567: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
95020    RenderThread-25194 (24827) [002] dn.5 24575.056588: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
95021    RenderThread-25194 (24827) [002] d..2 24575.056599: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
95022  Binder:23896_5-25989 (23896) [002] .... 24575.056608: binder_transaction_received: transaction=1671100
95023  Binder:23896_5-25989 (23896) [002] .... 24575.056774: binder_transaction: transaction=1671101 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
95024  Binder:23896_5-25989 (23896) [002] .... 24575.056783: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
95025  Binder:23896_5-25989 (23896) [002] d..2 24575.056840: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
95026    RenderThread-25194 (24827) [002] .... 24575.056850: binder_transaction_received: transaction=1671101
95027    RenderThread-25194 (24827) [002] d..2 24575.056960: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95028          <idle>-0     (-----) [002] d..1 24575.056981: cpu_idle: state=0 cpu_id=2
95029          <idle>-0     (-----) [000] d.h5 24575.059113: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
95030          <idle>-0     (-----) [000] d.h6 24575.059142: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
95031          <idle>-0     (-----) [000] d.h5 24575.059152: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
95032          <idle>-0     (-----) [002] .n.1 24575.059153: cpu_idle: state=4294967295 cpu_id=2
95033          <idle>-0     (-----) [002] d..2 24575.059166: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
95034          <idle>-0     (-----) [000] d.h6 24575.059166: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
95035          <idle>-0     (-----) [001] .n.1 24575.059173: cpu_idle: state=4294967295 cpu_id=1
95036          <idle>-0     (-----) [000] d..2 24575.059181: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
95037  crtc_event:111-254   (  254) [002] d..3 24575.059186: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
95038          <idle>-0     (-----) [001] d..2 24575.059186: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
95039          <idle>-0     (-----) [000] dn.3 24575.059201: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
95040  crtc_event:111-254   (  254) [002] d..4 24575.059208: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
95041  crtc_event:111-254   (  254) [002] d..2 24575.059298: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95042          <idle>-0     (-----) [002] d..1 24575.059309: cpu_idle: state=0 cpu_id=2
95043          <idle>-0     (-----) [000] dnH3 24575.059314: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
95044          <idle>-0     (-----) [000] dnH3 24575.059331: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
95045          <idle>-0     (-----) [005] dnh2 24575.059336: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
95046          <idle>-0     (-----) [005] .n.1 24575.059340: cpu_idle: state=4294967295 cpu_id=5
95047          <idle>-0     (-----) [005] d..2 24575.059345: 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
95048          <idle>-0     (-----) [000] dnH4 24575.059346: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
95049          <idle>-0     (-----) [002] .n.1 24575.059352: cpu_idle: state=4294967295 cpu_id=2
95050         sugov:4-560   (  560) [005] d..2 24575.059357: 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
95051          <idle>-0     (-----) [000] .n.1 24575.059360: cpu_idle: state=4294967295 cpu_id=0
95052          <idle>-0     (-----) [002] d..2 24575.059363: 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
95053          <idle>-0     (-----) [005] d..1 24575.059363: cpu_idle: state=0 cpu_id=5
95054 crtc_commit:111-253   (  253) [001] d..2 24575.059366: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
95055          <idle>-0     (-----) [000] d..2 24575.059374: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
95056          <idle>-0     (-----) [001] d..1 24575.059375: cpu_idle: state=0 cpu_id=1
95057         sugov:0-559   (  559) [002] .... 24575.059417: clk_set_rate: pwrcl_clk 825600000
95058         sugov:0-559   (  559) [002] .... 24575.059441: clk_set_rate: cpu3_pwrcl_clk 979200000
95059         sugov:0-559   (  559) [002] .... 24575.059454: clk_set_rate: cpu2_pwrcl_clk 979200000
95060         sugov:0-559   (  559) [002] .... 24575.059464: clk_set_rate: cpu1_pwrcl_clk 979200000
95061         sugov:0-559   (  559) [002] .... 24575.059473: clk_set_rate: cpu0_pwrcl_clk 825600000
95062         sugov:0-559   (  559) [002] .... 24575.059590: cpu_frequency: state=825600 cpu_id=0
95063 kgsl_worker_thr-246   (  246) [000] d..2 24575.059592: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
95064     ksoftirqd/0-3     (    3) [000] d..2 24575.059625: 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
95065         sugov:0-559   (  559) [002] .... 24575.059630: cpu_frequency: state=825600 cpu_id=1
95066         sugov:0-559   (  559) [002] .... 24575.059635: cpu_frequency: state=825600 cpu_id=2
95067          <idle>-0     (-----) [000] d..1 24575.059638: cpu_idle: state=0 cpu_id=0
95068         sugov:0-559   (  559) [002] .... 24575.059639: cpu_frequency: state=825600 cpu_id=3
95069         sugov:0-559   (  559) [002] d..2 24575.059674: 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
95070          <idle>-0     (-----) [002] d..1 24575.059688: cpu_idle: state=0 cpu_id=2
95071          <idle>-0     (-----) [000] d.h2 24575.059688: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
95072          <idle>-0     (-----) [000] dnh3 24575.059702: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
95073          <idle>-0     (-----) [000] .n.1 24575.059712: cpu_idle: state=4294967295 cpu_id=0
95074          <idle>-0     (-----) [000] d..2 24575.059722: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
95075 kgsl_worker_thr-246   (  246) [000] d..2 24575.059746: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
95076 kgsl_worker_thr-246   (  246) [000] d..3 24575.059794: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
95077 kgsl_worker_thr-246   (  246) [000] d..2 24575.059811: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
95078  kworker/u16:10-23868 (23868) [000] d..2 24575.060273: 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
95079          <idle>-0     (-----) [000] d..1 24575.060290: cpu_idle: state=0 cpu_id=0
95080          <idle>-0     (-----) [001] d.s3 24575.060916: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
95081          <idle>-0     (-----) [001] d.s4 24575.060936: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
95082          <idle>-0     (-----) [001] d.s2 24575.060939: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
95083          <idle>-0     (-----) [002] .n.1 24575.060942: cpu_idle: state=4294967295 cpu_id=2
95084          <idle>-0     (-----) [002] d..2 24575.060954: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
95085          <idle>-0     (-----) [001] dns3 24575.060961: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
95086          <idle>-0     (-----) [001] .n.1 24575.060983: cpu_idle: state=4294967295 cpu_id=1
95087  crtc_event:111-254   (  254) [002] d..2 24575.060991: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95088          <idle>-0     (-----) [001] d..2 24575.060994: 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
95089          <idle>-0     (-----) [002] d..1 24575.061002: cpu_idle: state=0 cpu_id=2
95090     rcu_preempt-7     (    7) [001] d..2 24575.061006: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
95091     rcu_preempt-7     (    7) [001] d..3 24575.061047: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
95092     rcu_preempt-7     (    7) [001] d..2 24575.061062: 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
95093         rcuop/0-10    (   10) [001] d..2 24575.061093: 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
95094          <idle>-0     (-----) [001] d..1 24575.061109: cpu_idle: state=0 cpu_id=1
95095          <idle>-0     (-----) [000] d.h3 24575.061176: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
95096          <idle>-0     (-----) [000] dnh4 24575.061191: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
95097          <idle>-0     (-----) [000] .n.1 24575.061205: cpu_idle: state=4294967295 cpu_id=0
95098          <idle>-0     (-----) [000] d..2 24575.061218: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
95099 kgsl_worker_thr-246   (  246) [000] d..2 24575.061295: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95100          <idle>-0     (-----) [000] d..1 24575.061309: cpu_idle: state=0 cpu_id=0
95101          <idle>-0     (-----) [000] d.h5 24575.061433: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
95102          <idle>-0     (-----) [000] d.h6 24575.061451: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
95103          <idle>-0     (-----) [001] .n.1 24575.061457: cpu_idle: state=4294967295 cpu_id=1
95104          <idle>-0     (-----) [000] ...1 24575.061468: cpu_idle: state=4294967295 cpu_id=0
95105          <idle>-0     (-----) [001] d..2 24575.061469: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
95106          <idle>-0     (-----) [000] d..1 24575.061474: cpu_idle: state=0 cpu_id=0
95107 crtc_commit:111-253   (  253) [001] d..2 24575.061563: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95108          <idle>-0     (-----) [001] d..1 24575.061578: cpu_idle: state=0 cpu_id=1
95109          <idle>-0     (-----) [000] d.h5 24575.061739: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
95110          <idle>-0     (-----) [000] d.h6 24575.061755: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
95111          <idle>-0     (-----) [002] .n.1 24575.061761: cpu_idle: state=4294967295 cpu_id=2
95112          <idle>-0     (-----) [002] d..2 24575.061771: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
95113          <idle>-0     (-----) [000] ...1 24575.061775: cpu_idle: state=4294967295 cpu_id=0
95114          <idle>-0     (-----) [000] d..1 24575.061783: cpu_idle: state=0 cpu_id=0
95115  crtc_event:111-254   (  254) [002] d..2 24575.061800: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95116          <idle>-0     (-----) [002] d..1 24575.061811: cpu_idle: state=0 cpu_id=2
95117          <idle>-0     (-----) [000] ...1 24575.063076: cpu_idle: state=4294967295 cpu_id=0
95118          <idle>-0     (-----) [000] d..1 24575.063081: cpu_idle: state=0 cpu_id=0
95119          <idle>-0     (-----) [003] d.h2 24575.063373: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
95120          <idle>-0     (-----) [003] dnh3 24575.063392: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
95121          <idle>-0     (-----) [003] .n.1 24575.063400: cpu_idle: state=4294967295 cpu_id=3
95122          <idle>-0     (-----) [003] d..2 24575.063413: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
95123        DispSync-23904 (23896) [003] d..1 24575.063437: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
95124        DispSync-23904 (23896) [003] d..2 24575.063464: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
95125          <idle>-0     (-----) [002] .n.1 24575.063470: cpu_idle: state=4294967295 cpu_id=2
95126          <idle>-0     (-----) [002] d..2 24575.063481: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
95127        DispSync-23904 (23896) [003] d..2 24575.063504: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
95128          <idle>-0     (-----) [003] d..1 24575.063517: cpu_idle: state=0 cpu_id=3
95129  appEventThread-23905 (23896) [002] d..3 24575.063541: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
95130  appEventThread-23905 (23896) [002] d..4 24575.063571: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
95131          <idle>-0     (-----) [000] .n.1 24575.063576: cpu_idle: state=4294967295 cpu_id=0
95132          <idle>-0     (-----) [000] d..2 24575.063593: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
95133  appEventThread-23905 (23896) [002] d..2 24575.063615: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95134          <idle>-0     (-----) [002] d..1 24575.063631: cpu_idle: state=0 cpu_id=2
95135 s.nexuslauncher-24827 (24827) [000] .... 24575.064039: binder_transaction: transaction=1671102 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
95136 s.nexuslauncher-24827 (24827) [000] d..4 24575.064051: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
95137 s.nexuslauncher-24827 (24827) [000] d..5 24575.064093: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
95138          <idle>-0     (-----) [001] .n.1 24575.064098: cpu_idle: state=4294967295 cpu_id=1
95139          <idle>-0     (-----) [001] d..2 24575.064112: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
95140  Binder:23896_5-25989 (23896) [001] .... 24575.064121: binder_transaction_received: transaction=1671102
95141 s.nexuslauncher-24827 (24827) [000] d..3 24575.064134: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
95142 s.nexuslauncher-24827 (24827) [000] d..4 24575.064156: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
95143  Binder:23896_5-25989 (23896) [001] d..1 24575.064159: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
95144          <idle>-0     (-----) [002] .n.1 24575.064163: cpu_idle: state=4294967295 cpu_id=2
95145          <idle>-0     (-----) [002] d..2 24575.064176: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
95146  Binder:23896_5-25989 (23896) [001] d..2 24575.064197: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
95147          <idle>-0     (-----) [003] .n.1 24575.064203: cpu_idle: state=4294967295 cpu_id=3
95148          <idle>-0     (-----) [003] d..2 24575.064215: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
95149  Binder:23896_5-25989 (23896) [001] d.s2 24575.064255: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
95150    RenderThread-25194 (24827) [002] d..2 24575.064278: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95151          <idle>-0     (-----) [002] dn.1 24575.064295: cpu_idle: state=0 cpu_id=2
95152  Binder:23896_5-25989 (23896) [001] d.s3 24575.064299: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
95153          <idle>-0     (-----) [002] .n.1 24575.064304: cpu_idle: state=4294967295 cpu_id=2
95154  appEventThread-23905 (23896) [003] d..2 24575.064309: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
95155          <idle>-0     (-----) [002] d..2 24575.064317: 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
95156          <idle>-0     (-----) [003] d..1 24575.064322: cpu_idle: state=0 cpu_id=3
95157  Binder:23896_5-25989 (23896) [001] d..2 24575.064345: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95158          <idle>-0     (-----) [001] d..1 24575.064363: cpu_idle: state=0 cpu_id=1
95159  kworker/u16:10-23868 (23868) [002] d..2 24575.064487: 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
95160          <idle>-0     (-----) [002] d..1 24575.064503: cpu_idle: state=0 cpu_id=2
95161 s.nexuslauncher-24827 (24827) [000] d..3 24575.064758: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
95162 s.nexuslauncher-24827 (24827) [000] d..4 24575.064784: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
95163          <idle>-0     (-----) [002] .n.1 24575.064790: cpu_idle: state=4294967295 cpu_id=2
95164          <idle>-0     (-----) [002] d..2 24575.064804: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
95165 s.nexuslauncher-24827 (24827) [000] d..2 24575.064825: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95166          <idle>-0     (-----) [000] d..1 24575.064847: cpu_idle: state=0 cpu_id=0
95167    RenderThread-25194 (24827) [002] d..1 24575.065033: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
95168    RenderThread-25194 (24827) [002] d..2 24575.065059: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
95169          <idle>-0     (-----) [000] .n.1 24575.065067: cpu_idle: state=4294967295 cpu_id=0
95170          <idle>-0     (-----) [000] d..2 24575.065081: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
95171    RenderThread-25194 (24827) [002] .... 24575.065127: binder_transaction: transaction=1671103 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
95172    RenderThread-25194 (24827) [002] ...2 24575.065138: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
95173    RenderThread-25194 (24827) [002] d..4 24575.065143: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
95174    RenderThread-25194 (24827) [002] dn.5 24575.065170: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
95175    RenderThread-25194 (24827) [002] d..2 24575.065181: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
95176  Binder:23896_5-25989 (23896) [002] .... 24575.065192: binder_transaction_received: transaction=1671103
95177 s.nexuslauncher-24827 (24827) [000] d..2 24575.065208: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95178          <idle>-0     (-----) [000] d..1 24575.065226: cpu_idle: state=0 cpu_id=0
95179  Binder:23896_5-25989 (23896) [002] d..2 24575.065246: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
95180    RenderThread-25194 (24827) [002] d..2 24575.065276: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95181          <idle>-0     (-----) [002] d..1 24575.065298: cpu_idle: state=0 cpu_id=2
95182          <idle>-0     (-----) [000] ...1 24575.066563: cpu_idle: state=4294967295 cpu_id=0
95183          <idle>-0     (-----) [000] d..1 24575.066569: cpu_idle: state=0 cpu_id=0
95184          <idle>-0     (-----) [002] ...1 24575.066706: cpu_idle: state=4294967295 cpu_id=2
95185          <idle>-0     (-----) [002] d..1 24575.066712: cpu_idle: state=0 cpu_id=2
95186          <idle>-0     (-----) [003] d.h2 24575.067301: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
95187          <idle>-0     (-----) [003] dnh3 24575.067317: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
95188          <idle>-0     (-----) [003] .n.1 24575.067327: cpu_idle: state=4294967295 cpu_id=3
95189          <idle>-0     (-----) [003] d..2 24575.067336: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
95190        DispSync-23904 (23896) [003] d..1 24575.067353: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
95191        DispSync-23904 (23896) [003] d..2 24575.067371: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
95192          <idle>-0     (-----) [001] .n.1 24575.067378: cpu_idle: state=4294967295 cpu_id=1
95193          <idle>-0     (-----) [001] d..2 24575.067390: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
95194        DispSync-23904 (23896) [003] d..2 24575.067403: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
95195          <idle>-0     (-----) [003] d..1 24575.067418: cpu_idle: state=0 cpu_id=3
95196   sfEventThread-23906 (23896) [001] d..3 24575.067430: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
95197   sfEventThread-23906 (23896) [001] d..4 24575.067454: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
95198          <idle>-0     (-----) [000] .n.1 24575.067458: cpu_idle: state=4294967295 cpu_id=0
95199          <idle>-0     (-----) [000] d..2 24575.067471: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
95200   sfEventThread-23906 (23896) [001] d..2 24575.067489: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95201          <idle>-0     (-----) [001] d..1 24575.067505: cpu_idle: state=0 cpu_id=1
95202  surfaceflinger-23896 (23896) [000] d..1 24575.067770: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
95203  surfaceflinger-23896 (23896) [000] d..2 24575.067806: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
95204          <idle>-0     (-----) [001] .n.1 24575.067812: cpu_idle: state=4294967295 cpu_id=1
95205          <idle>-0     (-----) [001] d..2 24575.067827: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
95206  Binder:23896_5-25989 (23896) [001] d..2 24575.067867: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95207          <idle>-0     (-----) [001] d..1 24575.067879: cpu_idle: state=0 cpu_id=1
95208  surfaceflinger-23896 (23896) [000] d..2 24575.067987: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
95209  surfaceflinger-23896 (23896) [000] d..3 24575.068037: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
95210  surfaceflinger-23896 (23896) [000] d..1 24575.068071: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
95211  surfaceflinger-23896 (23896) [000] d..2 24575.068090: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
95212          <idle>-0     (-----) [001] .n.1 24575.068096: cpu_idle: state=4294967295 cpu_id=1
95213          <idle>-0     (-----) [001] d..2 24575.068107: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
95214   sfEventThread-23906 (23896) [001] d..2 24575.068149: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95215          <idle>-0     (-----) [001] d..1 24575.068160: cpu_idle: state=0 cpu_id=1
95216  surfaceflinger-23896 (23896) [000] ...1 24575.068333: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
95217  surfaceflinger-23896 (23896) [000] ...1 24575.068344: tracing_mark_write: E|23896
95218  surfaceflinger-23896 (23896) [000] .... 24575.068417: binder_transaction: transaction=1671104 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
95219  surfaceflinger-23896 (23896) [000] ...2 24575.068452: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
95220  surfaceflinger-23896 (23896) [000] d..4 24575.068462: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
95221  surfaceflinger-23896 (23896) [000] d..5 24575.068490: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
95222          <idle>-0     (-----) [003] .n.1 24575.068496: cpu_idle: state=4294967295 cpu_id=3
95223          <idle>-0     (-----) [003] d..2 24575.068510: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
95224  surfaceflinger-23896 (23896) [000] d..2 24575.068513: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
95225         rcuop/0-10    (   10) [000] d..2 24575.068520: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
95226  HwBinder:598_3-633   (  598) [003] .... 24575.068520: binder_transaction_received: transaction=1671104
95227         rcuop/0-10    (   10) [000] d..3 24575.068561: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
95228  HwBinder:598_3-633   (  598) [003] ...1 24575.068571: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
95229         rcuop/0-10    (   10) [000] d..2 24575.068572: 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
95230     rcu_preempt-7     (    7) [000] d..2 24575.068600: 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
95231          <idle>-0     (-----) [000] d..1 24575.068618: cpu_idle: state=0 cpu_id=0
95232  HwBinder:598_3-633   (  598) [003] ...1 24575.068718: tracing_mark_write: B|598|HWCSession::PresentDisplay::
95233  HwBinder:598_3-633   (  598) [003] ...1 24575.068936: tracing_mark_write: B|598|HWDeviceDRM::Commit::
95234  HwBinder:598_3-633   (  598) [003] ...1 24575.068951: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
95235  HwBinder:598_3-633   (  598) [003] d..2 24575.069700: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
95236  HwBinder:598_3-633   (  598) [003] d..3 24575.069726: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
95237          <idle>-0     (-----) [001] .n.1 24575.069731: cpu_idle: state=4294967295 cpu_id=1
95238          <idle>-0     (-----) [001] d..2 24575.069744: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
95239  HwBinder:598_3-633   (  598) [003] ...1 24575.069843: tracing_mark_write: E|598
95240  HwBinder:598_3-633   (  598) [003] ...1 24575.069851: tracing_mark_write: E|598
95241  HwBinder:598_3-633   (  598) [003] ...1 24575.069923: tracing_mark_write: E|598
95242  HwBinder:598_3-633   (  598) [003] ...1 24575.069979: tracing_mark_write: E|598
95243  HwBinder:598_3-633   (  598) [003] .... 24575.069995: binder_transaction: transaction=1671105 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
95244  HwBinder:598_3-633   (  598) [003] d..2 24575.070023: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
95245  HwBinder:598_3-633   (  598) [003] d..3 24575.070044: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
95246  HwBinder:598_3-633   (  598) [003] .... 24575.070049: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
95247          <idle>-0     (-----) [000] .n.1 24575.070051: cpu_idle: state=4294967295 cpu_id=0
95248          <idle>-0     (-----) [000] d..2 24575.070063: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
95249  surfaceflinger-23896 (23896) [000] .... 24575.070073: binder_transaction_received: transaction=1671105
95250  HwBinder:598_3-633   (  598) [003] d..2 24575.070142: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
95251          <idle>-0     (-----) [003] d..1 24575.070162: cpu_idle: state=0 cpu_id=3
95252  surfaceflinger-23896 (23896) [000] d..1 24575.070364: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
95253  surfaceflinger-23896 (23896) [000] d..2 24575.070398: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
95254          <idle>-0     (-----) [002] .n.1 24575.070403: cpu_idle: state=4294967295 cpu_id=2
95255          <idle>-0     (-----) [002] d..2 24575.070418: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
95256  Binder:23896_5-25989 (23896) [002] .... 24575.070478: binder_transaction: transaction=1671106 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
95257  Binder:23896_5-25989 (23896) [002] d..2 24575.070493: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
95258  Binder:23896_5-25989 (23896) [002] d..3 24575.070508: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
95259  Binder:23896_5-25989 (23896) [002] .... 24575.070513: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
95260  Binder:23896_5-25989 (23896) [002] d..2 24575.070571: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
95261    RenderThread-25194 (24827) [002] .... 24575.070580: binder_transaction_received: transaction=1671106
95262  surfaceflinger-23896 (23896) [000] d..2 24575.070598: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95263 crtc_commit:111-253   (  253) [001] d..2 24575.070613: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
95264          <idle>-0     (-----) [000] d..1 24575.070617: cpu_idle: state=0 cpu_id=0
95265          <idle>-0     (-----) [001] d..1 24575.070629: cpu_idle: state=0 cpu_id=1
95266    RenderThread-25194 (24827) [002] d.s2 24575.070927: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
95267    RenderThread-25194 (24827) [002] d.s3 24575.070953: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
95268    RenderThread-25194 (24827) [002] .... 24575.073273: binder_transaction: transaction=1671107 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
95269    RenderThread-25194 (24827) [002] ...2 24575.073290: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
95270    RenderThread-25194 (24827) [002] d..4 24575.073295: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
95271    RenderThread-25194 (24827) [002] d..5 24575.073332: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
95272          <idle>-0     (-----) [000] .n.1 24575.073338: cpu_idle: state=4294967295 cpu_id=0
95273    RenderThread-25194 (24827) [002] d..2 24575.073354: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
95274          <idle>-0     (-----) [000] d..2 24575.073356: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
95275  Binder:23896_5-25989 (23896) [000] .... 24575.073365: binder_transaction_received: transaction=1671107
95276  kworker/u16:10-23868 (23868) [002] d..2 24575.073458: 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
95277          <idle>-0     (-----) [002] d..1 24575.073479: cpu_idle: state=0 cpu_id=2
95278  Binder:23896_5-25989 (23896) [000] .... 24575.073523: binder_transaction: transaction=1671108 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
95279  Binder:23896_5-25989 (23896) [000] d..2 24575.073532: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
95280  Binder:23896_5-25989 (23896) [000] d..3 24575.073565: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
95281  Binder:23896_5-25989 (23896) [000] .... 24575.073572: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
95282  Binder:23896_5-25989 (23896) [000] d..2 24575.073631: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
95283    RenderThread-25194 (24827) [000] .... 24575.073642: binder_transaction_received: transaction=1671108
95284    RenderThread-25194 (24827) [000] d..2 24575.073787: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95285          <idle>-0     (-----) [000] d..1 24575.073802: cpu_idle: state=0 cpu_id=0
95286          <idle>-0     (-----) [000] d.s2 24575.074252: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
95287          <idle>-0     (-----) [000] dns3 24575.074273: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
95288          <idle>-0     (-----) [000] dns3 24575.074279: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
95289          <idle>-0     (-----) [000] dns4 24575.074317: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
95290          <idle>-0     (-----) [001] .n.1 24575.074323: cpu_idle: state=4294967295 cpu_id=1
95291          <idle>-0     (-----) [001] d..2 24575.074341: 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
95292          <idle>-0     (-----) [000] .n.1 24575.074344: cpu_idle: state=4294967295 cpu_id=0
95293          <idle>-0     (-----) [000] d..2 24575.074355: 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
95294     rcu_preempt-7     (    7) [000] d..2 24575.074414: 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
95295          <idle>-0     (-----) [000] d..1 24575.074429: cpu_idle: state=0 cpu_id=0
95296  kworker/u16:10-23868 (23868) [001] d..2 24575.074489: 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
95297          <idle>-0     (-----) [001] d..1 24575.074504: cpu_idle: state=0 cpu_id=1
95298          <idle>-0     (-----) [000] d.h5 24575.075581: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
95299          <idle>-0     (-----) [000] d.h6 24575.075602: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
95300          <idle>-0     (-----) [000] d.h5 24575.075609: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
95301          <idle>-0     (-----) [002] .n.1 24575.075610: cpu_idle: state=4294967295 cpu_id=2
95302          <idle>-0     (-----) [000] d.h6 24575.075622: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
95303          <idle>-0     (-----) [002] d..2 24575.075624: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
95304          <idle>-0     (-----) [001] .n.1 24575.075629: cpu_idle: state=4294967295 cpu_id=1
95305          <idle>-0     (-----) [000] ...1 24575.075640: cpu_idle: state=4294967295 cpu_id=0
95306          <idle>-0     (-----) [001] d..2 24575.075641: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
95307  crtc_event:111-254   (  254) [002] d..3 24575.075643: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
95308          <idle>-0     (-----) [000] d..1 24575.075646: cpu_idle: state=0 cpu_id=0
95309  crtc_event:111-254   (  254) [002] d..4 24575.075663: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
95310          <idle>-0     (-----) [000] .n.1 24575.075669: cpu_idle: state=4294967295 cpu_id=0
95311          <idle>-0     (-----) [000] d..2 24575.075682: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
95312  crtc_event:111-254   (  254) [002] d..2 24575.075694: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95313          <idle>-0     (-----) [002] d..1 24575.075708: cpu_idle: state=0 cpu_id=2
95314 crtc_commit:111-253   (  253) [001] d..2 24575.075815: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
95315          <idle>-0     (-----) [001] d..1 24575.075824: cpu_idle: state=0 cpu_id=1
95316 kgsl_worker_thr-246   (  246) [000] d..2 24575.075908: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
95317          <idle>-0     (-----) [000] d..1 24575.075919: cpu_idle: state=0 cpu_id=0
95318          <idle>-0     (-----) [000] d.h2 24575.075992: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
95319          <idle>-0     (-----) [000] dnh3 24575.076004: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
95320          <idle>-0     (-----) [000] .n.1 24575.076013: cpu_idle: state=4294967295 cpu_id=0
95321          <idle>-0     (-----) [000] d..2 24575.076023: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
95322 kgsl_worker_thr-246   (  246) [000] d..2 24575.076048: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
95323 kgsl_worker_thr-246   (  246) [000] d..3 24575.076065: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
95324          <idle>-0     (-----) [001] .n.1 24575.076072: cpu_idle: state=4294967295 cpu_id=1
95325          <idle>-0     (-----) [001] d..2 24575.076083: 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
95326 kgsl_worker_thr-246   (  246) [000] d..2 24575.076091: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95327          <idle>-0     (-----) [000] d..1 24575.076102: cpu_idle: state=0 cpu_id=0
95328  kworker/u16:10-23868 (23868) [001] d..2 24575.076537: 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
95329          <idle>-0     (-----) [001] d..1 24575.076548: cpu_idle: state=0 cpu_id=1
95330          <idle>-0     (-----) [000] d.h3 24575.077493: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
95331          <idle>-0     (-----) [000] dnh4 24575.077505: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
95332          <idle>-0     (-----) [000] .n.1 24575.077518: cpu_idle: state=4294967295 cpu_id=0
95333          <idle>-0     (-----) [000] d..2 24575.077528: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
95334          <idle>-0     (-----) [001] d.H3 24575.077682: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
95335          <idle>-0     (-----) [001] d.H3 24575.077701: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
95336          <idle>-0     (-----) [005] dnh2 24575.077708: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
95337          <idle>-0     (-----) [005] .n.1 24575.077712: cpu_idle: state=4294967295 cpu_id=5
95338 kgsl_worker_thr-246   (  246) [000] d..2 24575.077716: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95339          <idle>-0     (-----) [005] d..2 24575.077717: 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
95340          <idle>-0     (-----) [001] d.H4 24575.077721: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
95341          <idle>-0     (-----) [000] d..1 24575.077726: cpu_idle: state=0 cpu_id=0
95342          <idle>-0     (-----) [002] .n.1 24575.077727: cpu_idle: state=4294967295 cpu_id=2
95343          <idle>-0     (-----) [001] d.s3 24575.077730: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=002
95344         sugov:4-560   (  560) [005] d..2 24575.077731: 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
95345          <idle>-0     (-----) [005] d..1 24575.077739: cpu_idle: state=0 cpu_id=5
95346          <idle>-0     (-----) [002] d..2 24575.077742: 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
95347          <idle>-0     (-----) [001] dns4 24575.077759: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
95348          <idle>-0     (-----) [001] .n.1 24575.077783: cpu_idle: state=4294967295 cpu_id=1
95349         sugov:0-559   (  559) [002] .... 24575.077789: clk_set_rate: pwrcl_clk 902400000
95350          <idle>-0     (-----) [001] d..2 24575.077792: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
95351         sugov:0-559   (  559) [002] .... 24575.077813: clk_set_rate: cpu3_pwrcl_clk 825600000
95352  crtc_event:111-254   (  254) [001] d..2 24575.077821: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95353         sugov:0-559   (  559) [002] .... 24575.077846: clk_set_rate: cpu2_pwrcl_clk 825600000
95354          <idle>-0     (-----) [001] d..1 24575.077848: cpu_idle: state=0 cpu_id=1
95355         sugov:0-559   (  559) [002] .... 24575.077856: clk_set_rate: cpu1_pwrcl_clk 825600000
95356         sugov:0-559   (  559) [002] .... 24575.077866: clk_set_rate: cpu0_pwrcl_clk 902400000
95357         sugov:0-559   (  559) [002] .... 24575.077878: cpu_frequency: state=902400 cpu_id=0
95358         sugov:0-559   (  559) [002] .... 24575.077904: cpu_frequency: state=902400 cpu_id=1
95359         sugov:0-559   (  559) [002] .... 24575.077909: cpu_frequency: state=902400 cpu_id=2
95360         sugov:0-559   (  559) [002] .... 24575.077912: cpu_frequency: state=902400 cpu_id=3
95361          <idle>-0     (-----) [000] d.h5 24575.077918: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
95362          <idle>-0     (-----) [000] d.h6 24575.077938: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
95363         sugov:0-559   (  559) [002] d..2 24575.077943: 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
95364          <idle>-0     (-----) [001] .n.1 24575.077945: cpu_idle: state=4294967295 cpu_id=1
95365          <idle>-0     (-----) [000] ...1 24575.077954: cpu_idle: state=4294967295 cpu_id=0
95366          <idle>-0     (-----) [002] d..1 24575.077955: cpu_idle: state=0 cpu_id=2
95367          <idle>-0     (-----) [001] d..2 24575.077956: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
95368          <idle>-0     (-----) [000] d..1 24575.077959: cpu_idle: state=0 cpu_id=0
95369 crtc_commit:111-253   (  253) [001] d..2 24575.078045: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95370          <idle>-0     (-----) [001] d..1 24575.078060: cpu_idle: state=0 cpu_id=1
95371          <idle>-0     (-----) [000] d.h5 24575.078215: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
95372          <idle>-0     (-----) [000] d.h6 24575.078230: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
95373          <idle>-0     (-----) [001] .n.1 24575.078237: cpu_idle: state=4294967295 cpu_id=1
95374          <idle>-0     (-----) [001] d..2 24575.078248: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
95375          <idle>-0     (-----) [000] ...1 24575.078251: cpu_idle: state=4294967295 cpu_id=0
95376          <idle>-0     (-----) [000] d..1 24575.078256: cpu_idle: state=0 cpu_id=0
95377  crtc_event:111-254   (  254) [001] d..2 24575.078276: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95378          <idle>-0     (-----) [001] d..1 24575.078288: cpu_idle: state=0 cpu_id=1
95379          <idle>-0     (-----) [005] ...1 24575.078756: cpu_idle: state=4294967295 cpu_id=5
95380          <idle>-0     (-----) [005] d..1 24575.078759: cpu_idle: state=0 cpu_id=5
95381          <idle>-0     (-----) [003] d.h2 24575.079765: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
95382          <idle>-0     (-----) [003] dnh3 24575.079782: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
95383          <idle>-0     (-----) [003] .n.1 24575.079791: cpu_idle: state=4294967295 cpu_id=3
95384          <idle>-0     (-----) [003] d..2 24575.079804: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
95385          <idle>-0     (-----) [001] ...1 24575.079825: cpu_idle: state=4294967295 cpu_id=1
95386        DispSync-23904 (23896) [003] d..1 24575.079827: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
95387          <idle>-0     (-----) [001] d..1 24575.079830: cpu_idle: state=0 cpu_id=1
95388        DispSync-23904 (23896) [003] d..2 24575.079852: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
95389          <idle>-0     (-----) [002] .n.1 24575.079858: cpu_idle: state=4294967295 cpu_id=2
95390          <idle>-0     (-----) [002] d..2 24575.079868: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
95391        DispSync-23904 (23896) [003] d..2 24575.079887: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
95392          <idle>-0     (-----) [003] d..1 24575.079900: cpu_idle: state=0 cpu_id=3
95393  appEventThread-23905 (23896) [002] d..3 24575.079928: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
95394  appEventThread-23905 (23896) [002] d..4 24575.079955: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
95395          <idle>-0     (-----) [000] .n.1 24575.079959: cpu_idle: state=4294967295 cpu_id=0
95396          <idle>-0     (-----) [000] d..2 24575.079973: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
95397  appEventThread-23905 (23896) [002] d..2 24575.079998: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95398          <idle>-0     (-----) [002] d..1 24575.080014: cpu_idle: state=0 cpu_id=2
95399 s.nexuslauncher-24827 (24827) [000] .... 24575.080393: binder_transaction: transaction=1671109 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
95400 s.nexuslauncher-24827 (24827) [000] d..4 24575.080404: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
95401 s.nexuslauncher-24827 (24827) [000] d..5 24575.080442: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
95402          <idle>-0     (-----) [001] .n.1 24575.080447: cpu_idle: state=4294967295 cpu_id=1
95403          <idle>-0     (-----) [001] d..2 24575.080459: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
95404  Binder:23896_5-25989 (23896) [001] .... 24575.080467: binder_transaction_received: transaction=1671109
95405 s.nexuslauncher-24827 (24827) [000] d..3 24575.080483: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
95406  Binder:23896_5-25989 (23896) [001] d..1 24575.080501: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
95407 s.nexuslauncher-24827 (24827) [000] d..4 24575.080512: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
95408          <idle>-0     (-----) [002] .n.1 24575.080519: cpu_idle: state=4294967295 cpu_id=2
95409          <idle>-0     (-----) [002] d..2 24575.080532: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
95410  Binder:23896_5-25989 (23896) [001] d..2 24575.080553: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
95411          <idle>-0     (-----) [003] .n.1 24575.080560: cpu_idle: state=4294967295 cpu_id=3
95412          <idle>-0     (-----) [003] d..2 24575.080570: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
95413    RenderThread-25194 (24827) [002] d..2 24575.080590: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95414  Binder:23896_5-25989 (23896) [001] d..2 24575.080601: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95415          <idle>-0     (-----) [002] d..1 24575.080603: cpu_idle: state=0 cpu_id=2
95416          <idle>-0     (-----) [001] d..1 24575.080618: cpu_idle: state=0 cpu_id=1
95417  appEventThread-23905 (23896) [003] d..2 24575.080621: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
95418          <idle>-0     (-----) [003] d..1 24575.080631: cpu_idle: state=0 cpu_id=3
95419 s.nexuslauncher-24827 (24827) [000] d.s1 24575.080923: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
95420 s.nexuslauncher-24827 (24827) [000] d.s2 24575.080949: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
95421 s.nexuslauncher-24827 (24827) [000] d..3 24575.081110: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
95422 s.nexuslauncher-24827 (24827) [000] d..4 24575.081141: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
95423          <idle>-0     (-----) [001] .n.1 24575.081148: cpu_idle: state=4294967295 cpu_id=1
95424          <idle>-0     (-----) [001] d..2 24575.081165: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
95425 s.nexuslauncher-24827 (24827) [000] d..2 24575.081167: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
95426     rcu_preempt-7     (    7) [000] d..2 24575.081178: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
95427     rcu_preempt-7     (    7) [000] d..3 24575.081197: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
95428     rcu_preempt-7     (    7) [000] d..2 24575.081208: 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
95429         rcuop/0-10    (   10) [000] d..2 24575.081217: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
95430         rcuop/0-10    (   10) [000] d..3 24575.081230: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
95431         rcuop/0-10    (   10) [000] d..2 24575.081239: 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
95432     rcu_preempt-7     (    7) [000] d..2 24575.081273: 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
95433          <idle>-0     (-----) [000] d..1 24575.081291: cpu_idle: state=0 cpu_id=0
95434    RenderThread-25194 (24827) [001] d..1 24575.081400: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
95435    RenderThread-25194 (24827) [001] d..2 24575.081423: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
95436          <idle>-0     (-----) [000] .n.1 24575.081429: cpu_idle: state=4294967295 cpu_id=0
95437          <idle>-0     (-----) [000] d..2 24575.081443: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
95438    RenderThread-25194 (24827) [001] .... 24575.081486: binder_transaction: transaction=1671110 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
95439    RenderThread-25194 (24827) [001] ...2 24575.081496: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
95440    RenderThread-25194 (24827) [001] d..4 24575.081500: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
95441    RenderThread-25194 (24827) [001] dn.5 24575.081518: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
95442    RenderThread-25194 (24827) [001] d..2 24575.081529: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
95443  Binder:23896_5-25989 (23896) [001] .... 24575.081537: binder_transaction_received: transaction=1671110
95444 s.nexuslauncher-24827 (24827) [000] d..2 24575.081573: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95445  Binder:23896_5-25989 (23896) [001] d..2 24575.081582: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
95446          <idle>-0     (-----) [000] d..1 24575.081588: cpu_idle: state=0 cpu_id=0
95447    RenderThread-25194 (24827) [001] d..2 24575.081614: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95448          <idle>-0     (-----) [001] d..1 24575.081634: cpu_idle: state=0 cpu_id=1
95449          <idle>-0     (-----) [001] ...1 24575.083095: cpu_idle: state=4294967295 cpu_id=1
95450          <idle>-0     (-----) [001] d..1 24575.083100: cpu_idle: state=0 cpu_id=1
95451          <idle>-0     (-----) [003] d.h2 24575.083768: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
95452          <idle>-0     (-----) [003] dnh3 24575.083781: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
95453          <idle>-0     (-----) [003] .n.1 24575.083789: cpu_idle: state=4294967295 cpu_id=3
95454          <idle>-0     (-----) [003] d..2 24575.083800: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
95455        DispSync-23904 (23896) [003] d..1 24575.083815: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
95456        DispSync-23904 (23896) [003] d..2 24575.083831: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
95457          <idle>-0     (-----) [001] .n.1 24575.083835: cpu_idle: state=4294967295 cpu_id=1
95458          <idle>-0     (-----) [001] d..2 24575.083846: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
95459        DispSync-23904 (23896) [003] d..2 24575.083859: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
95460          <idle>-0     (-----) [003] d..1 24575.083872: cpu_idle: state=0 cpu_id=3
95461   sfEventThread-23906 (23896) [001] d..3 24575.083887: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
95462   sfEventThread-23906 (23896) [001] d..4 24575.083911: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
95463          <idle>-0     (-----) [000] .n.1 24575.083917: cpu_idle: state=4294967295 cpu_id=0
95464          <idle>-0     (-----) [000] d..2 24575.083931: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
95465   sfEventThread-23906 (23896) [001] d..2 24575.083946: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95466          <idle>-0     (-----) [001] d..1 24575.083961: cpu_idle: state=0 cpu_id=1
95467  surfaceflinger-23896 (23896) [000] d..1 24575.084126: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
95468  surfaceflinger-23896 (23896) [000] d..2 24575.084152: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
95469          <idle>-0     (-----) [001] .n.1 24575.084158: cpu_idle: state=4294967295 cpu_id=1
95470          <idle>-0     (-----) [001] d..2 24575.084171: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
95471  Binder:23896_5-25989 (23896) [001] d..2 24575.084208: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95472          <idle>-0     (-----) [001] d..1 24575.084219: cpu_idle: state=0 cpu_id=1
95473  surfaceflinger-23896 (23896) [000] d.s2 24575.084251: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
95474  surfaceflinger-23896 (23896) [000] d.s3 24575.084297: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
95475  surfaceflinger-23896 (23896) [000] d..1 24575.084434: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
95476  surfaceflinger-23896 (23896) [000] d..2 24575.084455: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
95477          <idle>-0     (-----) [001] .n.1 24575.084460: cpu_idle: state=4294967295 cpu_id=1
95478          <idle>-0     (-----) [001] d..2 24575.084472: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
95479   sfEventThread-23906 (23896) [001] d..2 24575.084518: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95480          <idle>-0     (-----) [001] d..1 24575.084530: cpu_idle: state=0 cpu_id=1
95481  surfaceflinger-23896 (23896) [000] ...1 24575.084668: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
95482  surfaceflinger-23896 (23896) [000] ...1 24575.084678: tracing_mark_write: E|23896
95483  surfaceflinger-23896 (23896) [000] .... 24575.084740: binder_transaction: transaction=1671111 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
95484  surfaceflinger-23896 (23896) [000] ...2 24575.084768: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
95485  surfaceflinger-23896 (23896) [000] d..4 24575.084776: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
95486  surfaceflinger-23896 (23896) [000] d..5 24575.084801: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
95487          <idle>-0     (-----) [003] .n.1 24575.084807: cpu_idle: state=4294967295 cpu_id=3
95488          <idle>-0     (-----) [003] d..2 24575.084818: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
95489  surfaceflinger-23896 (23896) [000] d..2 24575.084824: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
95490  HwBinder:598_3-633   (  598) [003] .... 24575.084827: binder_transaction_received: transaction=1671111
95491  kworker/u16:10-23868 (23868) [000] .... 24575.084887: clk_set_rate: l3_cluster0_vote_clk 300000000
95492  HwBinder:598_3-633   (  598) [003] ...1 24575.084889: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
95493  kworker/u16:10-23868 (23868) [000] .... 24575.084898: clk_set_rate: l3_clk 300000000
95494  HwBinder:598_3-633   (  598) [003] ...1 24575.085033: tracing_mark_write: B|598|HWCSession::PresentDisplay::
95495  kworker/u16:10-23868 (23868) [000] d..2 24575.085046: 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
95496          <idle>-0     (-----) [000] d..1 24575.085061: cpu_idle: state=0 cpu_id=0
95497  HwBinder:598_3-633   (  598) [003] ...1 24575.085232: tracing_mark_write: B|598|HWDeviceDRM::Commit::
95498  HwBinder:598_3-633   (  598) [003] ...1 24575.085247: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
95499  HwBinder:598_3-633   (  598) [003] d..2 24575.085905: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
95500  HwBinder:598_3-633   (  598) [003] d..3 24575.085935: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
95501          <idle>-0     (-----) [001] .n.1 24575.085938: cpu_idle: state=4294967295 cpu_id=1
95502          <idle>-0     (-----) [001] d..2 24575.085949: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
95503  HwBinder:598_3-633   (  598) [003] ...1 24575.086054: tracing_mark_write: E|598
95504  HwBinder:598_3-633   (  598) [003] ...1 24575.086061: tracing_mark_write: E|598
95505  HwBinder:598_3-633   (  598) [003] ...1 24575.086133: tracing_mark_write: E|598
95506  HwBinder:598_3-633   (  598) [003] ...1 24575.086190: tracing_mark_write: E|598
95507  HwBinder:598_3-633   (  598) [003] .... 24575.086209: binder_transaction: transaction=1671112 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
95508  HwBinder:598_3-633   (  598) [003] d..2 24575.086236: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
95509  HwBinder:598_3-633   (  598) [003] d..3 24575.086257: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
95510  HwBinder:598_3-633   (  598) [003] .... 24575.086263: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
95511          <idle>-0     (-----) [000] .n.1 24575.086264: cpu_idle: state=4294967295 cpu_id=0
95512          <idle>-0     (-----) [000] d..2 24575.086273: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
95513  surfaceflinger-23896 (23896) [000] .... 24575.086285: binder_transaction_received: transaction=1671112
95514  HwBinder:598_3-633   (  598) [003] d..2 24575.086364: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
95515          <idle>-0     (-----) [003] d..1 24575.086386: cpu_idle: state=0 cpu_id=3
95516  surfaceflinger-23896 (23896) [000] d..1 24575.086583: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
95517  surfaceflinger-23896 (23896) [000] d..2 24575.086621: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
95518          <idle>-0     (-----) [002] .n.1 24575.086625: cpu_idle: state=4294967295 cpu_id=2
95519          <idle>-0     (-----) [002] d..2 24575.086640: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
95520  Binder:23896_5-25989 (23896) [002] .... 24575.086709: binder_transaction: transaction=1671113 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
95521  Binder:23896_5-25989 (23896) [002] d..2 24575.086726: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
95522  Binder:23896_5-25989 (23896) [002] d..3 24575.086753: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
95523  Binder:23896_5-25989 (23896) [002] .... 24575.086758: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
95524  surfaceflinger-23896 (23896) [000] d..2 24575.086822: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95525  Binder:23896_5-25989 (23896) [002] d..2 24575.086826: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
95526 crtc_commit:111-253   (  253) [001] d..2 24575.086829: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
95527    RenderThread-25194 (24827) [002] .... 24575.086836: binder_transaction_received: transaction=1671113
95528          <idle>-0     (-----) [000] d..1 24575.086838: cpu_idle: state=0 cpu_id=0
95529          <idle>-0     (-----) [001] d..1 24575.086849: cpu_idle: state=0 cpu_id=1
95530          <idle>-0     (-----) [000] d.s2 24575.087589: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
95531          <idle>-0     (-----) [000] dns3 24575.087612: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
95532          <idle>-0     (-----) [000] .n.1 24575.087634: cpu_idle: state=4294967295 cpu_id=0
95533          <idle>-0     (-----) [000] d..2 24575.087645: 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
95534     rcu_preempt-7     (    7) [000] d..2 24575.087686: 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
95535          <idle>-0     (-----) [000] d..1 24575.087701: cpu_idle: state=0 cpu_id=0
95536          <idle>-0     (-----) [001] ...1 24575.088456: cpu_idle: state=4294967295 cpu_id=1
95537          <idle>-0     (-----) [001] d..1 24575.088461: cpu_idle: state=0 cpu_id=1
95538    RenderThread-25194 (24827) [002] .... 24575.089538: binder_transaction: transaction=1671114 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
95539    RenderThread-25194 (24827) [002] ...2 24575.089556: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
95540    RenderThread-25194 (24827) [002] d..4 24575.089561: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
95541    RenderThread-25194 (24827) [002] dn.5 24575.089584: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
95542    RenderThread-25194 (24827) [002] d..2 24575.089596: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
95543  Binder:23896_5-25989 (23896) [002] .... 24575.089606: binder_transaction_received: transaction=1671114
95544  Binder:23896_5-25989 (23896) [002] .... 24575.089794: binder_transaction: transaction=1671115 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
95545  Binder:23896_5-25989 (23896) [002] .... 24575.089806: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
95546  Binder:23896_5-25989 (23896) [002] d..2 24575.089877: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
95547    RenderThread-25194 (24827) [002] .... 24575.089888: binder_transaction_received: transaction=1671115
95548    RenderThread-25194 (24827) [002] d..2 24575.090010: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95549          <idle>-0     (-----) [002] d..1 24575.090034: cpu_idle: state=0 cpu_id=2
95550          <idle>-0     (-----) [000] d.h5 24575.092061: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
95551          <idle>-0     (-----) [000] d.h6 24575.092084: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
95552          <idle>-0     (-----) [001] .n.1 24575.092089: cpu_idle: state=4294967295 cpu_id=1
95553          <idle>-0     (-----) [000] d.h5 24575.092091: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
95554          <idle>-0     (-----) [001] d..2 24575.092105: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
95555          <idle>-0     (-----) [000] dnh6 24575.092122: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
95556  crtc_event:111-254   (  254) [001] d..3 24575.092127: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
95557          <idle>-0     (-----) [000] .n.1 24575.092138: cpu_idle: state=4294967295 cpu_id=0
95558  crtc_event:111-254   (  254) [001] d..4 24575.092160: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
95559          <idle>-0     (-----) [000] d..2 24575.092161: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
95560          <idle>-0     (-----) [003] .n.1 24575.092167: cpu_idle: state=4294967295 cpu_id=3
95561          <idle>-0     (-----) [003] d..2 24575.092182: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
95562  crtc_event:111-254   (  254) [001] d..2 24575.092194: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95563          <idle>-0     (-----) [001] d..2 24575.092199: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
95564          <idle>-0     (-----) [001] dn.3 24575.092218: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
95565          <idle>-0     (-----) [001] d..2 24575.092228: 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
95566     ksoftirqd/1-18    (   18) [001] d..2 24575.092259: 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
95567          <idle>-0     (-----) [001] d..1 24575.092273: cpu_idle: state=0 cpu_id=1
95568 crtc_commit:111-253   (  253) [000] d..2 24575.092341: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
95569          <idle>-0     (-----) [000] d..1 24575.092352: cpu_idle: state=0 cpu_id=0
95570 kgsl_worker_thr-246   (  246) [003] d..2 24575.092405: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
95571          <idle>-0     (-----) [003] d..1 24575.092417: cpu_idle: state=0 cpu_id=3
95572          <idle>-0     (-----) [003] d.h2 24575.092491: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
95573          <idle>-0     (-----) [003] dnh3 24575.092506: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
95574          <idle>-0     (-----) [003] .n.1 24575.092516: cpu_idle: state=4294967295 cpu_id=3
95575          <idle>-0     (-----) [003] d..2 24575.092526: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
95576 kgsl_worker_thr-246   (  246) [003] d..2 24575.092551: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
95577 kgsl_worker_thr-246   (  246) [003] d..3 24575.092595: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
95578 kgsl_worker_thr-246   (  246) [003] d..2 24575.092612: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
95579  kworker/u16:10-23868 (23868) [003] d..2 24575.093056: 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
95580          <idle>-0     (-----) [003] d..1 24575.093071: cpu_idle: state=0 cpu_id=3
95581          <idle>-0     (-----) [000] d.h3 24575.093982: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
95582          <idle>-0     (-----) [000] d.h4 24575.094002: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
95583          <idle>-0     (-----) [003] .n.1 24575.094009: cpu_idle: state=4294967295 cpu_id=3
95584          <idle>-0     (-----) [000] ...1 24575.094019: cpu_idle: state=4294967295 cpu_id=0
95585          <idle>-0     (-----) [003] d..2 24575.094021: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
95586          <idle>-0     (-----) [000] d..1 24575.094024: cpu_idle: state=0 cpu_id=0
95587 kgsl_worker_thr-246   (  246) [003] d..2 24575.094096: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
95588          <idle>-0     (-----) [003] d..1 24575.094107: cpu_idle: state=0 cpu_id=3
95589          <idle>-0     (-----) [000] d.s3 24575.094243: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
95590          <idle>-0     (-----) [000] d.s4 24575.094260: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
95591          <idle>-0     (-----) [000] d.s2 24575.094263: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
95592          <idle>-0     (-----) [001] .n.1 24575.094266: cpu_idle: state=4294967295 cpu_id=1
95593          <idle>-0     (-----) [001] d..2 24575.094279: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
95594          <idle>-0     (-----) [000] dns3 24575.094283: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
95595          <idle>-0     (-----) [000] dns3 24575.094288: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
95596          <idle>-0     (-----) [000] dns4 24575.094303: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
95597          <idle>-0     (-----) [003] .n.1 24575.094309: cpu_idle: state=4294967295 cpu_id=3
95598  crtc_event:111-254   (  254) [001] d..2 24575.094320: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95599          <idle>-0     (-----) [003] d..2 24575.094322: 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
95600          <idle>-0     (-----) [001] d..1 24575.094331: cpu_idle: state=0 cpu_id=1
95601          <idle>-0     (-----) [000] dnH6 24575.094396: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
95602  kworker/u16:10-23868 (23868) [003] .... 24575.094406: clk_set_rate: l3_cluster0_vote_clk 403200000
95603  kworker/u16:10-23868 (23868) [003] .... 24575.094413: clk_set_rate: l3_clk 403200000
95604          <idle>-0     (-----) [000] dnH7 24575.094420: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
95605          <idle>-0     (-----) [001] .n.1 24575.094425: cpu_idle: state=4294967295 cpu_id=1
95606          <idle>-0     (-----) [001] d..2 24575.094435: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
95607          <idle>-0     (-----) [000] .n.1 24575.094444: cpu_idle: state=4294967295 cpu_id=0
95608          <idle>-0     (-----) [000] d..2 24575.094457: 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
95609     rcu_preempt-7     (    7) [000] d..2 24575.094468: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
95610  kworker/u16:10-23868 (23868) [003] d..2 24575.094471: 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
95611          <idle>-0     (-----) [003] d..1 24575.094484: cpu_idle: state=0 cpu_id=3
95612     rcu_preempt-7     (    7) [000] d..3 24575.094498: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
95613          <idle>-0     (-----) [003] .n.1 24575.094504: cpu_idle: state=4294967295 cpu_id=3
95614          <idle>-0     (-----) [003] d..2 24575.094517: 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
95615 crtc_commit:111-253   (  253) [001] d..2 24575.094522: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95616     rcu_preempt-7     (    7) [000] d..2 24575.094522: 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
95617         rcuop/0-10    (   10) [003] d..2 24575.094530: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
95618          <idle>-0     (-----) [001] d..1 24575.094535: cpu_idle: state=0 cpu_id=1
95619          <idle>-0     (-----) [000] d..1 24575.094537: cpu_idle: state=0 cpu_id=0
95620         rcuop/0-10    (   10) [003] d..3 24575.094549: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
95621          <idle>-0     (-----) [000] .n.1 24575.094555: cpu_idle: state=4294967295 cpu_id=0
95622          <idle>-0     (-----) [000] d..2 24575.094567: 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
95623         rcuop/0-10    (   10) [003] d..2 24575.094571: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
95624          <idle>-0     (-----) [003] d..1 24575.094580: cpu_idle: state=0 cpu_id=3
95625     rcu_preempt-7     (    7) [000] d..2 24575.094592: 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
95626          <idle>-0     (-----) [000] d..1 24575.094603: cpu_idle: state=0 cpu_id=0
95627          <idle>-0     (-----) [000] d.h5 24575.094688: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
95628          <idle>-0     (-----) [000] d.h6 24575.094705: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
95629          <idle>-0     (-----) [001] .n.1 24575.094711: cpu_idle: state=4294967295 cpu_id=1
95630          <idle>-0     (-----) [001] d..2 24575.094722: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
95631          <idle>-0     (-----) [000] ...1 24575.094726: cpu_idle: state=4294967295 cpu_id=0
95632          <idle>-0     (-----) [000] d..1 24575.094732: cpu_idle: state=0 cpu_id=0
95633  crtc_event:111-254   (  254) [001] d..2 24575.094747: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95634          <idle>-0     (-----) [001] d..1 24575.094758: cpu_idle: state=0 cpu_id=1
95635          <idle>-0     (-----) [003] d.h2 24575.096227: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
95636          <idle>-0     (-----) [003] dnh3 24575.096242: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
95637          <idle>-0     (-----) [003] .n.1 24575.096251: cpu_idle: state=4294967295 cpu_id=3
95638          <idle>-0     (-----) [003] d..2 24575.096260: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
95639        DispSync-23904 (23896) [003] d..1 24575.096282: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
95640        DispSync-23904 (23896) [003] d..2 24575.096305: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
95641          <idle>-0     (-----) [001] .n.1 24575.096311: cpu_idle: state=4294967295 cpu_id=1
95642          <idle>-0     (-----) [001] d..2 24575.096321: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
95643        DispSync-23904 (23896) [003] d..2 24575.096338: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
95644          <idle>-0     (-----) [003] d..1 24575.096351: cpu_idle: state=0 cpu_id=3
95645  appEventThread-23905 (23896) [001] d..3 24575.096370: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
95646  appEventThread-23905 (23896) [001] d..4 24575.096394: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
95647          <idle>-0     (-----) [000] .n.1 24575.096399: cpu_idle: state=4294967295 cpu_id=0
95648          <idle>-0     (-----) [000] d..2 24575.096412: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
95649  appEventThread-23905 (23896) [001] d..2 24575.096433: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95650          <idle>-0     (-----) [001] d..1 24575.096447: cpu_idle: state=0 cpu_id=1
95651 s.nexuslauncher-24827 (24827) [000] .... 24575.096798: binder_transaction: transaction=1671116 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
95652 s.nexuslauncher-24827 (24827) [000] d..4 24575.096811: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
95653 s.nexuslauncher-24827 (24827) [000] d..5 24575.096845: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
95654          <idle>-0     (-----) [001] .n.1 24575.096851: cpu_idle: state=4294967295 cpu_id=1
95655          <idle>-0     (-----) [001] d..2 24575.096863: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
95656  Binder:23896_5-25989 (23896) [001] .... 24575.096872: binder_transaction_received: transaction=1671116
95657 s.nexuslauncher-24827 (24827) [000] d..3 24575.096887: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
95658  Binder:23896_5-25989 (23896) [001] d..1 24575.096905: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
95659 s.nexuslauncher-24827 (24827) [000] d..4 24575.096906: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
95660          <idle>-0     (-----) [002] .n.1 24575.096914: cpu_idle: state=4294967295 cpu_id=2
95661          <idle>-0     (-----) [002] d..2 24575.096928: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
95662  Binder:23896_5-25989 (23896) [001] d..2 24575.096933: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
95663          <idle>-0     (-----) [003] .n.1 24575.096939: cpu_idle: state=4294967295 cpu_id=3
95664          <idle>-0     (-----) [003] d..2 24575.096949: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
95665    RenderThread-25194 (24827) [002] d..2 24575.096975: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95666  Binder:23896_5-25989 (23896) [001] d..2 24575.096977: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95667          <idle>-0     (-----) [002] d..1 24575.096987: cpu_idle: state=0 cpu_id=2
95668          <idle>-0     (-----) [001] d..1 24575.096992: cpu_idle: state=0 cpu_id=1
95669  appEventThread-23905 (23896) [003] d..2 24575.096997: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
95670          <idle>-0     (-----) [003] d..1 24575.097007: cpu_idle: state=0 cpu_id=3
95671 s.nexuslauncher-24827 (24827) [000] d..3 24575.097370: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
95672 s.nexuslauncher-24827 (24827) [000] d..4 24575.097393: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
95673          <idle>-0     (-----) [002] .n.1 24575.097398: cpu_idle: state=4294967295 cpu_id=2
95674          <idle>-0     (-----) [002] d..2 24575.097409: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
95675 s.nexuslauncher-24827 (24827) [000] d..2 24575.097432: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95676          <idle>-0     (-----) [000] d..1 24575.097451: cpu_idle: state=0 cpu_id=0
95677    RenderThread-25194 (24827) [002] d.H2 24575.097680: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
95678    RenderThread-25194 (24827) [002] d.H2 24575.097699: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
95679          <idle>-0     (-----) [005] dnh2 24575.097704: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
95680          <idle>-0     (-----) [005] .n.1 24575.097708: cpu_idle: state=4294967295 cpu_id=5
95681          <idle>-0     (-----) [005] d..2 24575.097713: 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
95682    RenderThread-25194 (24827) [002] d.H3 24575.097726: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
95683          <idle>-0     (-----) [003] .n.1 24575.097731: cpu_idle: state=4294967295 cpu_id=3
95684         sugov:4-560   (  560) [005] d..2 24575.097732: 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
95685    RenderThread-25194 (24827) [002] d.s2 24575.097735: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
95686          <idle>-0     (-----) [005] d..1 24575.097738: cpu_idle: state=0 cpu_id=5
95687          <idle>-0     (-----) [003] d..2 24575.097743: 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
95688    RenderThread-25194 (24827) [002] d.s3 24575.097768: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
95689         sugov:0-559   (  559) [003] d..2 24575.097778: 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
95690    RenderThread-25194 (24827) [002] d..1 24575.097848: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
95691  kworker/u16:10-23868 (23868) [003] d..2 24575.097863: 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
95692    RenderThread-25194 (24827) [002] d..2 24575.097867: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
95693          <idle>-0     (-----) [003] d..1 24575.097874: cpu_idle: state=0 cpu_id=3
95694          <idle>-0     (-----) [000] .n.1 24575.097874: cpu_idle: state=4294967295 cpu_id=0
95695          <idle>-0     (-----) [000] d..2 24575.097890: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
95696    RenderThread-25194 (24827) [002] .... 24575.097931: binder_transaction: transaction=1671117 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
95697    RenderThread-25194 (24827) [002] ...2 24575.097941: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
95698    RenderThread-25194 (24827) [002] d..4 24575.097945: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
95699    RenderThread-25194 (24827) [002] dn.5 24575.097968: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
95700    RenderThread-25194 (24827) [002] d..2 24575.097979: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
95701  Binder:23896_5-25989 (23896) [002] .... 24575.097988: binder_transaction_received: transaction=1671117
95702 s.nexuslauncher-24827 (24827) [000] d..2 24575.098015: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95703          <idle>-0     (-----) [000] d..1 24575.098027: cpu_idle: state=0 cpu_id=0
95704  Binder:23896_5-25989 (23896) [002] d..2 24575.098040: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
95705    RenderThread-25194 (24827) [002] d..2 24575.098071: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95706          <idle>-0     (-----) [002] d..1 24575.098090: cpu_idle: state=0 cpu_id=2
95707          <idle>-0     (-----) [005] ...1 24575.098749: cpu_idle: state=4294967295 cpu_id=5
95708          <idle>-0     (-----) [005] d..1 24575.098752: cpu_idle: state=0 cpu_id=5
95709          <idle>-0     (-----) [003] d.h2 24575.100242: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
95710          <idle>-0     (-----) [003] dnh3 24575.100259: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
95711          <idle>-0     (-----) [003] .n.1 24575.100268: cpu_idle: state=4294967295 cpu_id=3
95712          <idle>-0     (-----) [003] d..2 24575.100278: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
95713        DispSync-23904 (23896) [003] d..1 24575.100294: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
95714        DispSync-23904 (23896) [003] d..2 24575.100309: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
95715          <idle>-0     (-----) [001] .n.1 24575.100315: cpu_idle: state=4294967295 cpu_id=1
95716          <idle>-0     (-----) [001] d..2 24575.100329: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
95717        DispSync-23904 (23896) [003] d..2 24575.100339: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
95718          <idle>-0     (-----) [003] d..1 24575.100352: cpu_idle: state=0 cpu_id=3
95719   sfEventThread-23906 (23896) [001] d..3 24575.100361: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
95720   sfEventThread-23906 (23896) [001] d..4 24575.100383: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
95721          <idle>-0     (-----) [000] .n.1 24575.100389: cpu_idle: state=4294967295 cpu_id=0
95722          <idle>-0     (-----) [000] d..2 24575.100398: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
95723   sfEventThread-23906 (23896) [001] d..2 24575.100416: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95724          <idle>-0     (-----) [001] d..1 24575.100430: cpu_idle: state=0 cpu_id=1
95725  surfaceflinger-23896 (23896) [000] d..1 24575.100646: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
95726  surfaceflinger-23896 (23896) [000] d..2 24575.100681: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
95727          <idle>-0     (-----) [001] .n.1 24575.100687: cpu_idle: state=4294967295 cpu_id=1
95728          <idle>-0     (-----) [001] d..2 24575.100699: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
95729  Binder:23896_5-25989 (23896) [001] d..2 24575.100736: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95730          <idle>-0     (-----) [001] d..1 24575.100747: cpu_idle: state=0 cpu_id=1
95731  surfaceflinger-23896 (23896) [000] d..1 24575.100874: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
95732  surfaceflinger-23896 (23896) [000] d..2 24575.100898: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
95733          <idle>-0     (-----) [001] .n.1 24575.100903: cpu_idle: state=4294967295 cpu_id=1
95734          <idle>-0     (-----) [001] d..2 24575.100918: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
95735  surfaceflinger-23896 (23896) [000] d.s2 24575.100936: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
95736   sfEventThread-23906 (23896) [001] d..2 24575.100950: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95737          <idle>-0     (-----) [001] d..1 24575.100961: cpu_idle: state=0 cpu_id=1
95738  surfaceflinger-23896 (23896) [000] d.s3 24575.100985: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
95739          <idle>-0     (-----) [001] .n.1 24575.100990: cpu_idle: state=4294967295 cpu_id=1
95740          <idle>-0     (-----) [001] d..2 24575.101003: 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
95741  surfaceflinger-23896 (23896) [000] d..1 24575.101012: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
95742  surfaceflinger-23896 (23896) [000] d..2 24575.101037: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
95743          <idle>-0     (-----) [003] .n.1 24575.101042: cpu_idle: state=4294967295 cpu_id=3
95744     rcu_preempt-7     (    7) [001] d..2 24575.101046: 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
95745          <idle>-0     (-----) [003] d..2 24575.101054: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
95746          <idle>-0     (-----) [001] d..1 24575.101056: cpu_idle: state=0 cpu_id=1
95747   sfEventThread-23906 (23896) [003] d..2 24575.101101: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
95748          <idle>-0     (-----) [003] d..1 24575.101115: cpu_idle: state=0 cpu_id=3
95749  surfaceflinger-23896 (23896) [000] ...1 24575.101276: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
95750  surfaceflinger-23896 (23896) [000] ...1 24575.101287: tracing_mark_write: E|23896
95751  surfaceflinger-23896 (23896) [000] .... 24575.101356: binder_transaction: transaction=1671118 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
95752  surfaceflinger-23896 (23896) [000] ...2 24575.101387: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
95753  surfaceflinger-23896 (23896) [000] d..4 24575.101398: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
95754  surfaceflinger-23896 (23896) [000] d..5 24575.101423: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
95755          <idle>-0     (-----) [003] .n.1 24575.101429: cpu_idle: state=4294967295 cpu_id=3
95756          <idle>-0     (-----) [003] d..2 24575.101439: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
95757  HwBinder:598_3-633   (  598) [003] .... 24575.101451: binder_transaction_received: transaction=1671118
95758  surfaceflinger-23896 (23896) [000] d..2 24575.101456: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95759          <idle>-0     (-----) [000] d..1 24575.101477: cpu_idle: state=0 cpu_id=0
95760  HwBinder:598_3-633   (  598) [003] ...1 24575.101501: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
95761  HwBinder:598_3-633   (  598) [003] ...1 24575.101660: tracing_mark_write: B|598|HWCSession::PresentDisplay::
95762  HwBinder:598_3-633   (  598) [003] ...1 24575.101855: tracing_mark_write: B|598|HWDeviceDRM::Commit::
95763  HwBinder:598_3-633   (  598) [003] ...1 24575.101871: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
95764  HwBinder:598_3-633   (  598) [003] d..2 24575.102541: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
95765  HwBinder:598_3-633   (  598) [003] d..3 24575.102568: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
95766          <idle>-0     (-----) [001] .n.1 24575.102572: cpu_idle: state=4294967295 cpu_id=1
95767          <idle>-0     (-----) [001] d..2 24575.102583: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
95768  HwBinder:598_3-633   (  598) [003] ...1 24575.102675: tracing_mark_write: E|598
95769  HwBinder:598_3-633   (  598) [003] ...1 24575.102683: tracing_mark_write: E|598
95770  HwBinder:598_3-633   (  598) [003] ...1 24575.102749: tracing_mark_write: E|598
95771  HwBinder:598_3-633   (  598) [003] ...1 24575.102803: tracing_mark_write: E|598
95772  HwBinder:598_3-633   (  598) [003] .... 24575.102819: binder_transaction: transaction=1671119 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
95773  HwBinder:598_3-633   (  598) [003] d..2 24575.102847: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
95774  HwBinder:598_3-633   (  598) [003] d..3 24575.102867: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
95775  HwBinder:598_3-633   (  598) [003] .... 24575.102872: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
95776          <idle>-0     (-----) [000] .n.1 24575.102873: cpu_idle: state=4294967295 cpu_id=0
95777          <idle>-0     (-----) [000] d..2 24575.102885: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
95778  surfaceflinger-23896 (23896) [000] .... 24575.102895: binder_transaction_received: transaction=1671119
95779  HwBinder:598_3-633   (  598) [003] d..2 24575.102962: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
95780          <idle>-0     (-----) [003] d..1 24575.102982: cpu_idle: state=0 cpu_id=3
95781  surfaceflinger-23896 (23896) [000] d..1 24575.103168: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
95782  surfaceflinger-23896 (23896) [000] d..2 24575.103201: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
95783          <idle>-0     (-----) [002] .n.1 24575.103207: cpu_idle: state=4294967295 cpu_id=2
95784          <idle>-0     (-----) [002] d..2 24575.103221: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
95785  Binder:23896_5-25989 (23896) [002] .... 24575.103274: binder_transaction: transaction=1671120 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
95786  Binder:23896_5-25989 (23896) [002] d..2 24575.103288: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
95787  Binder:23896_5-25989 (23896) [002] d..3 24575.103301: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
95788  Binder:23896_5-25989 (23896) [002] .... 24575.103306: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
95789  Binder:23896_5-25989 (23896) [002] d..2 24575.103363: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
95790    RenderThread-25194 (24827) [002] .... 24575.103370: binder_transaction_received: transaction=1671120
95791  surfaceflinger-23896 (23896) [000] d..2 24575.103389: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95792          <idle>-0     (-----) [000] d..1 24575.103409: cpu_idle: state=0 cpu_id=0
95793 crtc_commit:111-253   (  253) [001] d..2 24575.103420: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
95794          <idle>-0     (-----) [001] d..1 24575.103434: cpu_idle: state=0 cpu_id=1
95795    RenderThread-25194 (24827) [002] d.s2 24575.104261: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
95796    RenderThread-25194 (24827) [002] d.s3 24575.104315: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
95797          <idle>-0     (-----) [000] .n.1 24575.104321: cpu_idle: state=4294967295 cpu_id=0
95798          <idle>-0     (-----) [000] d..2 24575.104338: 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
95799  kworker/u16:10-23868 (23868) [000] d..2 24575.104511: 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
95800          <idle>-0     (-----) [000] d..1 24575.104525: cpu_idle: state=0 cpu_id=0
95801          <idle>-0     (-----) [003] ...1 24575.104574: cpu_idle: state=4294967295 cpu_id=3
95802          <idle>-0     (-----) [003] d..1 24575.104580: cpu_idle: state=0 cpu_id=3
95803    RenderThread-25194 (24827) [002] .... 24575.106005: binder_transaction: transaction=1671121 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
95804    RenderThread-25194 (24827) [002] ...2 24575.106021: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
95805    RenderThread-25194 (24827) [002] d..4 24575.106025: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
95806    RenderThread-25194 (24827) [002] dn.5 24575.106045: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
95807    RenderThread-25194 (24827) [002] d..2 24575.106057: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
95808  Binder:23896_5-25989 (23896) [002] .... 24575.106067: binder_transaction_received: transaction=1671121
95809  Binder:23896_5-25989 (23896) [002] .... 24575.106250: binder_transaction: transaction=1671122 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
95810  Binder:23896_5-25989 (23896) [002] .... 24575.106259: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
95811  Binder:23896_5-25989 (23896) [002] d..2 24575.106325: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
95812    RenderThread-25194 (24827) [002] .... 24575.106335: binder_transaction_received: transaction=1671122
95813    RenderThread-25194 (24827) [002] d..2 24575.106455: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95814          <idle>-0     (-----) [002] d..1 24575.106476: cpu_idle: state=0 cpu_id=2
95815          <idle>-0     (-----) [000] ...1 24575.106638: cpu_idle: state=4294967295 cpu_id=0
95816          <idle>-0     (-----) [000] d..1 24575.106642: cpu_idle: state=0 cpu_id=0
95817          <idle>-0     (-----) [001] d.s2 24575.107583: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
95818          <idle>-0     (-----) [001] dns3 24575.107604: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
95819          <idle>-0     (-----) [001] .n.1 24575.107629: cpu_idle: state=4294967295 cpu_id=1
95820          <idle>-0     (-----) [001] d..2 24575.107641: 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
95821     rcu_preempt-7     (    7) [001] d..2 24575.107650: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
95822     rcu_preempt-7     (    7) [001] d..3 24575.107691: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
95823     rcu_preempt-7     (    7) [001] d..2 24575.107704: 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
95824         rcuop/0-10    (   10) [001] d..2 24575.107717: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
95825         rcuop/0-10    (   10) [001] d..3 24575.107730: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
95826         rcuop/0-10    (   10) [001] d..2 24575.107739: 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
95827     rcu_preempt-7     (    7) [001] d..2 24575.107770: 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
95828          <idle>-0     (-----) [001] d..1 24575.107784: cpu_idle: state=0 cpu_id=1
95829          <idle>-0     (-----) [000] d.h5 24575.108534: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
95830          <idle>-0     (-----) [000] d.h6 24575.108557: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
95831          <idle>-0     (-----) [001] .n.1 24575.108563: cpu_idle: state=4294967295 cpu_id=1
95832          <idle>-0     (-----) [000] d.h5 24575.108564: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
95833          <idle>-0     (-----) [001] d..2 24575.108574: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
95834          <idle>-0     (-----) [000] dnh6 24575.108588: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
95835  crtc_event:111-254   (  254) [001] d..3 24575.108593: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
95836          <idle>-0     (-----) [000] .n.1 24575.108603: cpu_idle: state=4294967295 cpu_id=0
95837  crtc_event:111-254   (  254) [001] d..4 24575.108613: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
95838          <idle>-0     (-----) [000] d..2 24575.108615: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
95839          <idle>-0     (-----) [003] .n.1 24575.108618: cpu_idle: state=4294967295 cpu_id=3
95840          <idle>-0     (-----) [003] d..2 24575.108631: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
95841  crtc_event:111-254   (  254) [001] d..2 24575.108638: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95842          <idle>-0     (-----) [001] d..1 24575.108650: cpu_idle: state=0 cpu_id=1
95843 crtc_commit:111-253   (  253) [000] d..2 24575.108793: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
95844          <idle>-0     (-----) [000] d..1 24575.108803: cpu_idle: state=0 cpu_id=0
95845 kgsl_worker_thr-246   (  246) [003] d..2 24575.108844: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
95846          <idle>-0     (-----) [003] d..1 24575.108855: cpu_idle: state=0 cpu_id=3
95847          <idle>-0     (-----) [003] d.h2 24575.108933: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
95848          <idle>-0     (-----) [003] dnh3 24575.108949: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
95849          <idle>-0     (-----) [003] .n.1 24575.108957: cpu_idle: state=4294967295 cpu_id=3
95850          <idle>-0     (-----) [003] d..2 24575.108967: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
95851 kgsl_worker_thr-246   (  246) [003] d..2 24575.108991: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
95852 kgsl_worker_thr-246   (  246) [003] d..3 24575.109034: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
95853 kgsl_worker_thr-246   (  246) [003] d..2 24575.109049: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
95854  kworker/u16:10-23868 (23868) [003] d..2 24575.109479: 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
95855          <idle>-0     (-----) [003] d..1 24575.109493: cpu_idle: state=0 cpu_id=3
95856          <idle>-0     (-----) [000] d.h3 24575.110444: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
95857          <idle>-0     (-----) [000] d.h4 24575.110462: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
95858          <idle>-0     (-----) [003] .n.1 24575.110468: cpu_idle: state=4294967295 cpu_id=3
95859          <idle>-0     (-----) [000] ...1 24575.110478: cpu_idle: state=4294967295 cpu_id=0
95860          <idle>-0     (-----) [003] d..2 24575.110479: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
95861          <idle>-0     (-----) [000] d..1 24575.110483: cpu_idle: state=0 cpu_id=0
95862 kgsl_worker_thr-246   (  246) [003] d..2 24575.110550: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
95863          <idle>-0     (-----) [003] d..1 24575.110560: cpu_idle: state=0 cpu_id=3
95864          <idle>-0     (-----) [000] d.h5 24575.110854: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
95865          <idle>-0     (-----) [000] dnh6 24575.110864: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
95866          <idle>-0     (-----) [000] .n.1 24575.110877: cpu_idle: state=4294967295 cpu_id=0
95867          <idle>-0     (-----) [000] dns4 24575.110910: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
95868          <idle>-0     (-----) [000] dns5 24575.110924: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
95869          <idle>-0     (-----) [001] .n.1 24575.110931: cpu_idle: state=4294967295 cpu_id=1
95870          <idle>-0     (-----) [000] dns4 24575.110934: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
95871          <idle>-0     (-----) [001] d..2 24575.110943: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
95872          <idle>-0     (-----) [000] dns5 24575.110952: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
95873          <idle>-0     (-----) [000] d..2 24575.110972: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
95874  crtc_event:111-254   (  254) [001] d..2 24575.110974: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95875          <idle>-0     (-----) [001] d..1 24575.110982: cpu_idle: state=0 cpu_id=1
95876 crtc_commit:111-253   (  253) [000] d..2 24575.111045: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
95877     kworker/0:1-13012 (13012) [000] d.h4 24575.111162: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
95878     kworker/0:1-13012 (13012) [000] d.h5 24575.111180: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
95879          <idle>-0     (-----) [001] .n.1 24575.111185: cpu_idle: state=4294967295 cpu_id=1
95880          <idle>-0     (-----) [001] d..2 24575.111195: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
95881  crtc_event:111-254   (  254) [001] d..2 24575.111220: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95882     kworker/0:1-13012 (13012) [000] d..2 24575.111223: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95883          <idle>-0     (-----) [001] d..1 24575.111226: cpu_idle: state=0 cpu_id=1
95884          <idle>-0     (-----) [000] d..1 24575.111239: cpu_idle: state=0 cpu_id=0
95885          <idle>-0     (-----) [003] d.h2 24575.112707: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
95886          <idle>-0     (-----) [003] dnh3 24575.112722: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
95887          <idle>-0     (-----) [003] .n.1 24575.112730: cpu_idle: state=4294967295 cpu_id=3
95888          <idle>-0     (-----) [003] d..2 24575.112742: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
95889        DispSync-23904 (23896) [003] d..1 24575.112765: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
95890        DispSync-23904 (23896) [003] d..2 24575.112792: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
95891          <idle>-0     (-----) [001] .n.1 24575.112797: cpu_idle: state=4294967295 cpu_id=1
95892          <idle>-0     (-----) [001] d..2 24575.112805: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
95893        DispSync-23904 (23896) [003] d..2 24575.112826: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
95894          <idle>-0     (-----) [003] d..1 24575.112839: cpu_idle: state=0 cpu_id=3
95895  appEventThread-23905 (23896) [001] d..3 24575.112855: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
95896  appEventThread-23905 (23896) [001] d..4 24575.112879: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
95897          <idle>-0     (-----) [000] .n.1 24575.112885: cpu_idle: state=4294967295 cpu_id=0
95898          <idle>-0     (-----) [000] d..2 24575.112899: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
95899  appEventThread-23905 (23896) [001] d..2 24575.112915: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95900          <idle>-0     (-----) [001] d..1 24575.112925: cpu_idle: state=0 cpu_id=1
95901 s.nexuslauncher-24827 (24827) [000] .... 24575.113314: binder_transaction: transaction=1671123 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
95902 s.nexuslauncher-24827 (24827) [000] d..4 24575.113326: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
95903 s.nexuslauncher-24827 (24827) [000] d..5 24575.113363: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
95904          <idle>-0     (-----) [001] .n.1 24575.113368: cpu_idle: state=4294967295 cpu_id=1
95905          <idle>-0     (-----) [001] d..2 24575.113379: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
95906  Binder:23896_5-25989 (23896) [001] .... 24575.113388: binder_transaction_received: transaction=1671123
95907 s.nexuslauncher-24827 (24827) [000] d..3 24575.113405: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
95908  Binder:23896_5-25989 (23896) [001] d..1 24575.113419: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
95909 s.nexuslauncher-24827 (24827) [000] d..4 24575.113426: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
95910          <idle>-0     (-----) [002] .n.1 24575.113433: cpu_idle: state=4294967295 cpu_id=2
95911  Binder:23896_5-25989 (23896) [001] d..2 24575.113445: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
95912          <idle>-0     (-----) [002] d..2 24575.113447: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
95913          <idle>-0     (-----) [003] .n.1 24575.113451: cpu_idle: state=4294967295 cpu_id=3
95914          <idle>-0     (-----) [003] d..2 24575.113461: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
95915  Binder:23896_5-25989 (23896) [001] d..2 24575.113491: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95916    RenderThread-25194 (24827) [002] d..2 24575.113496: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95917          <idle>-0     (-----) [001] d..1 24575.113502: cpu_idle: state=0 cpu_id=1
95918          <idle>-0     (-----) [002] d..1 24575.113509: cpu_idle: state=0 cpu_id=2
95919  appEventThread-23905 (23896) [003] d..2 24575.113511: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
95920          <idle>-0     (-----) [003] d..1 24575.113522: cpu_idle: state=0 cpu_id=3
95921 s.nexuslauncher-24827 (24827) [000] d..3 24575.113915: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
95922 s.nexuslauncher-24827 (24827) [000] d..4 24575.113938: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
95923          <idle>-0     (-----) [002] .n.1 24575.113943: cpu_idle: state=4294967295 cpu_id=2
95924          <idle>-0     (-----) [002] d..2 24575.113955: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
95925 s.nexuslauncher-24827 (24827) [000] d..2 24575.113977: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95926          <idle>-0     (-----) [000] d..1 24575.113997: cpu_idle: state=0 cpu_id=0
95927    RenderThread-25194 (24827) [002] d..1 24575.114163: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
95928    RenderThread-25194 (24827) [002] d..2 24575.114188: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
95929          <idle>-0     (-----) [000] .n.1 24575.114195: cpu_idle: state=4294967295 cpu_id=0
95930          <idle>-0     (-----) [000] d..2 24575.114208: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
95931          <idle>-0     (-----) [001] d.s2 24575.114242: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
95932 s.nexuslauncher-24827 (24827) [000] d.s2 24575.114250: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
95933          <idle>-0     (-----) [001] dns3 24575.114259: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
95934          <idle>-0     (-----) [001] .n.1 24575.114271: cpu_idle: state=4294967295 cpu_id=1
95935          <idle>-0     (-----) [001] d..2 24575.114280: 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
95936    RenderThread-25194 (24827) [002] .... 24575.114294: binder_transaction: transaction=1671124 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
95937 s.nexuslauncher-24827 (24827) [000] d.s3 24575.114298: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
95938    RenderThread-25194 (24827) [002] ...2 24575.114305: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
95939     rcu_preempt-7     (    7) [001] d..2 24575.114310: 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
95940    RenderThread-25194 (24827) [002] d..4 24575.114315: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
95941 s.nexuslauncher-24827 (24827) [000] d.s2 24575.114318: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
95942    RenderThread-25194 (24827) [002] dn.5 24575.114343: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
95943    RenderThread-25194 (24827) [002] d..2 24575.114354: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
95944  Binder:23896_5-25989 (23896) [002] .... 24575.114363: binder_transaction_received: transaction=1671124
95945 s.nexuslauncher-24827 (24827) [000] d.s3 24575.114375: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
95946  Binder:23896_5-25989 (23896) [002] d..2 24575.114411: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
95947    RenderThread-25194 (24827) [002] d..2 24575.114479: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
95948  kworker/u16:16-25995 (25995) [002] d..2 24575.114523: 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
95949 s.nexuslauncher-24827 (24827) [000] d..2 24575.114529: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95950          <idle>-0     (-----) [002] d..1 24575.114541: cpu_idle: state=0 cpu_id=2
95951          <idle>-0     (-----) [000] d..1 24575.114546: cpu_idle: state=0 cpu_id=0
95952  kworker/u16:10-23868 (23868) [001] d..2 24575.114798: 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
95953          <idle>-0     (-----) [001] d..1 24575.114816: cpu_idle: state=0 cpu_id=1
95954          <idle>-0     (-----) [003] d.s3 24575.114851: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
95955          <idle>-0     (-----) [003] d.s4 24575.114867: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
95956          <idle>-0     (-----) [003] d.s4 24575.114879: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
95957          <idle>-0     (-----) [001] .n.1 24575.114885: cpu_idle: state=4294967295 cpu_id=1
95958          <idle>-0     (-----) [003] ...1 24575.114892: cpu_idle: state=4294967295 cpu_id=3
95959          <idle>-0     (-----) [001] d..2 24575.114898: 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
95960          <idle>-0     (-----) [003] d..1 24575.114898: cpu_idle: state=0 cpu_id=3
95961  kworker/u16:10-23868 (23868) [001] .... 24575.114987: clk_set_rate: l3_cluster0_vote_clk 300000000
95962  kworker/u16:10-23868 (23868) [001] .... 24575.115002: clk_set_rate: l3_clk 300000000
95963  kworker/u16:10-23868 (23868) [001] d..2 24575.115080: 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
95964          <idle>-0     (-----) [001] d..1 24575.115094: cpu_idle: state=0 cpu_id=1
95965          <idle>-0     (-----) [003] d.h2 24575.116719: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
95966          <idle>-0     (-----) [003] dnh3 24575.116735: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
95967          <idle>-0     (-----) [003] .n.1 24575.116745: cpu_idle: state=4294967295 cpu_id=3
95968          <idle>-0     (-----) [003] d..2 24575.116757: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
95969        DispSync-23904 (23896) [003] d..1 24575.116776: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
95970        DispSync-23904 (23896) [003] d..2 24575.116800: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
95971          <idle>-0     (-----) [001] .n.1 24575.116807: cpu_idle: state=4294967295 cpu_id=1
95972          <idle>-0     (-----) [001] d..2 24575.116818: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
95973        DispSync-23904 (23896) [003] d..2 24575.116833: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
95974          <idle>-0     (-----) [003] d..1 24575.116850: cpu_idle: state=0 cpu_id=3
95975   sfEventThread-23906 (23896) [001] d..3 24575.116867: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
95976   sfEventThread-23906 (23896) [001] d..4 24575.116890: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
95977          <idle>-0     (-----) [000] .n.1 24575.116896: cpu_idle: state=4294967295 cpu_id=0
95978          <idle>-0     (-----) [000] d..2 24575.116910: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
95979   sfEventThread-23906 (23896) [001] d..2 24575.116927: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95980          <idle>-0     (-----) [001] d..1 24575.116941: cpu_idle: state=0 cpu_id=1
95981  surfaceflinger-23896 (23896) [000] d..1 24575.117159: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
95982  surfaceflinger-23896 (23896) [000] d..2 24575.117199: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
95983          <idle>-0     (-----) [001] .n.1 24575.117204: cpu_idle: state=4294967295 cpu_id=1
95984          <idle>-0     (-----) [001] d..2 24575.117219: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
95985  Binder:23896_5-25989 (23896) [001] d..2 24575.117258: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95986          <idle>-0     (-----) [001] d..1 24575.117270: cpu_idle: state=0 cpu_id=1
95987  surfaceflinger-23896 (23896) [000] d..1 24575.117422: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
95988  surfaceflinger-23896 (23896) [000] d..2 24575.117447: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
95989          <idle>-0     (-----) [001] .n.1 24575.117452: cpu_idle: state=4294967295 cpu_id=1
95990          <idle>-0     (-----) [001] d..2 24575.117463: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
95991   sfEventThread-23906 (23896) [001] d..2 24575.117502: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95992          <idle>-0     (-----) [001] d..1 24575.117513: cpu_idle: state=0 cpu_id=1
95993  surfaceflinger-23896 (23896) [000] d.H2 24575.117718: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
95994  surfaceflinger-23896 (23896) [000] d.H2 24575.117740: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
95995          <idle>-0     (-----) [005] dnh2 24575.117745: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
95996          <idle>-0     (-----) [005] .n.1 24575.117749: cpu_idle: state=4294967295 cpu_id=5
95997          <idle>-0     (-----) [005] d..2 24575.117754: 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
95998  surfaceflinger-23896 (23896) [000] d.H3 24575.117758: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
95999          <idle>-0     (-----) [003] .n.1 24575.117765: cpu_idle: state=4294967295 cpu_id=3
96000         sugov:4-560   (  560) [005] d..2 24575.117769: 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
96001          <idle>-0     (-----) [005] d..1 24575.117776: cpu_idle: state=0 cpu_id=5
96002          <idle>-0     (-----) [003] d..2 24575.117778: 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
96003         sugov:0-559   (  559) [003] .... 24575.117830: clk_set_rate: pwrcl_clk 825600000
96004         sugov:0-559   (  559) [003] .... 24575.117845: clk_set_rate: cpu3_pwrcl_clk 902400000
96005         sugov:0-559   (  559) [003] .... 24575.117858: clk_set_rate: cpu2_pwrcl_clk 902400000
96006         sugov:0-559   (  559) [003] .... 24575.117870: clk_set_rate: cpu1_pwrcl_clk 902400000
96007         sugov:0-559   (  559) [003] .... 24575.117880: clk_set_rate: cpu0_pwrcl_clk 825600000
96008  surfaceflinger-23896 (23896) [000] ...1 24575.117918: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
96009  surfaceflinger-23896 (23896) [000] ...1 24575.117933: tracing_mark_write: E|23896
96010         sugov:0-559   (  559) [003] .... 24575.118000: cpu_frequency: state=825600 cpu_id=0
96011  surfaceflinger-23896 (23896) [000] .... 24575.118010: binder_transaction: transaction=1671125 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
96012         sugov:0-559   (  559) [003] .... 24575.118036: cpu_frequency: state=825600 cpu_id=1
96013         sugov:0-559   (  559) [003] .... 24575.118041: cpu_frequency: state=825600 cpu_id=2
96014         sugov:0-559   (  559) [003] .... 24575.118045: cpu_frequency: state=825600 cpu_id=3
96015  surfaceflinger-23896 (23896) [000] ...2 24575.118048: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
96016  surfaceflinger-23896 (23896) [000] d..4 24575.118057: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
96017  surfaceflinger-23896 (23896) [000] d..5 24575.118087: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
96018         sugov:0-559   (  559) [003] d..2 24575.118101: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
96019  HwBinder:598_3-633   (  598) [003] .... 24575.118116: binder_transaction_received: transaction=1671125
96020  surfaceflinger-23896 (23896) [000] d..2 24575.118148: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96021          <idle>-0     (-----) [000] d..1 24575.118171: cpu_idle: state=0 cpu_id=0
96022  HwBinder:598_3-633   (  598) [003] ...1 24575.118176: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
96023  HwBinder:598_3-633   (  598) [003] ...1 24575.118338: tracing_mark_write: B|598|HWCSession::PresentDisplay::
96024  HwBinder:598_3-633   (  598) [003] ...1 24575.118571: tracing_mark_write: B|598|HWDeviceDRM::Commit::
96025  HwBinder:598_3-633   (  598) [003] ...1 24575.118587: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
96026          <idle>-0     (-----) [005] ...1 24575.118790: cpu_idle: state=4294967295 cpu_id=5
96027          <idle>-0     (-----) [005] d..1 24575.118794: cpu_idle: state=0 cpu_id=5
96028  HwBinder:598_3-633   (  598) [003] d..2 24575.119342: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
96029  HwBinder:598_3-633   (  598) [003] d..3 24575.119374: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
96030          <idle>-0     (-----) [000] .n.1 24575.119380: cpu_idle: state=4294967295 cpu_id=0
96031          <idle>-0     (-----) [000] d..2 24575.119395: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
96032  HwBinder:598_3-633   (  598) [003] ...1 24575.119499: tracing_mark_write: E|598
96033  HwBinder:598_3-633   (  598) [003] ...1 24575.119508: tracing_mark_write: E|598
96034  HwBinder:598_3-633   (  598) [003] ...1 24575.119585: tracing_mark_write: E|598
96035  HwBinder:598_3-633   (  598) [003] ...1 24575.119648: tracing_mark_write: E|598
96036  HwBinder:598_3-633   (  598) [003] .... 24575.119667: binder_transaction: transaction=1671126 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
96037  HwBinder:598_3-633   (  598) [003] d..2 24575.119695: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
96038  HwBinder:598_3-633   (  598) [003] d..3 24575.119728: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
96039          <idle>-0     (-----) [002] .n.1 24575.119735: cpu_idle: state=4294967295 cpu_id=2
96040  HwBinder:598_3-633   (  598) [003] .... 24575.119735: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
96041          <idle>-0     (-----) [002] d..2 24575.119750: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
96042  surfaceflinger-23896 (23896) [002] .... 24575.119764: binder_transaction_received: transaction=1671126
96043  HwBinder:598_3-633   (  598) [003] d..2 24575.119843: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
96044          <idle>-0     (-----) [003] d..1 24575.119867: cpu_idle: state=0 cpu_id=3
96045  surfaceflinger-23896 (23896) [002] d..2 24575.120023: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
96046  surfaceflinger-23896 (23896) [002] d..3 24575.120090: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
96047  surfaceflinger-23896 (23896) [002] d..1 24575.120194: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
96048  surfaceflinger-23896 (23896) [002] d..2 24575.120218: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
96049          <idle>-0     (-----) [001] .n.1 24575.120224: cpu_idle: state=4294967295 cpu_id=1
96050          <idle>-0     (-----) [001] d..2 24575.120239: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
96051 crtc_commit:111-253   (  253) [000] d..2 24575.120280: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcuop/2 next_pid=29 next_prio=120
96052  Binder:23896_5-25989 (23896) [001] .... 24575.120306: binder_transaction: transaction=1671127 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
96053         rcuop/2-29    (   29) [000] d..2 24575.120320: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96054  Binder:23896_5-25989 (23896) [001] d..2 24575.120324: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
96055          <idle>-0     (-----) [000] d..1 24575.120338: cpu_idle: state=0 cpu_id=0
96056  Binder:23896_5-25989 (23896) [001] d..3 24575.120353: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
96057  Binder:23896_5-25989 (23896) [001] .... 24575.120359: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
96058  Binder:23896_5-25989 (23896) [001] d..2 24575.120431: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
96059    RenderThread-25194 (24827) [001] .... 24575.120442: binder_transaction_received: transaction=1671127
96060  surfaceflinger-23896 (23896) [002] d..2 24575.120444: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
96061          <idle>-0     (-----) [002] d..1 24575.120470: cpu_idle: state=0 cpu_id=2
96062    RenderThread-25194 (24827) [001] d.s1 24575.120936: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
96063    RenderThread-25194 (24827) [001] dns2 24575.120967: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
96064    RenderThread-25194 (24827) [001] dns2 24575.120976: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
96065    RenderThread-25194 (24827) [001] dns3 24575.120996: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
96066    RenderThread-25194 (24827) [001] d..2 24575.121017: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
96067     rcu_preempt-7     (    7) [001] d..2 24575.121030: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
96068     rcu_preempt-7     (    7) [001] d..3 24575.121048: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
96069     rcu_preempt-7     (    7) [001] d..2 24575.121067: 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
96070         rcuop/0-10    (   10) [001] d..2 24575.121091: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
96071          <idle>-0     (-----) [003] ...1 24575.122034: cpu_idle: state=4294967295 cpu_id=3
96072          <idle>-0     (-----) [003] d..1 24575.122039: cpu_idle: state=0 cpu_id=3
96073    RenderThread-25194 (24827) [001] .... 24575.123608: binder_transaction: transaction=1671128 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
96074    RenderThread-25194 (24827) [001] ...2 24575.123627: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
96075    RenderThread-25194 (24827) [001] d..4 24575.123633: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
96076    RenderThread-25194 (24827) [001] d..5 24575.123673: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
96077          <idle>-0     (-----) [000] .n.1 24575.123679: cpu_idle: state=4294967295 cpu_id=0
96078          <idle>-0     (-----) [000] d..2 24575.123698: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
96079    RenderThread-25194 (24827) [001] d..2 24575.123700: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
96080  Binder:23896_5-25989 (23896) [000] .... 24575.123710: binder_transaction_received: transaction=1671128
96081  kworker/u16:10-23868 (23868) [001] d..2 24575.123814: 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
96082          <idle>-0     (-----) [001] d..1 24575.123835: cpu_idle: state=0 cpu_id=1
96083  Binder:23896_5-25989 (23896) [000] .... 24575.123900: binder_transaction: transaction=1671129 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
96084  Binder:23896_5-25989 (23896) [000] d..2 24575.123911: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
96085  Binder:23896_5-25989 (23896) [000] d..3 24575.123945: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
96086  Binder:23896_5-25989 (23896) [000] .... 24575.123951: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
96087  Binder:23896_5-25989 (23896) [000] d..2 24575.124017: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
96088    RenderThread-25194 (24827) [000] .... 24575.124029: binder_transaction_received: transaction=1671129
96089    RenderThread-25194 (24827) [000] d..2 24575.124180: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96090          <idle>-0     (-----) [000] d..1 24575.124203: cpu_idle: state=0 cpu_id=0
96091          <idle>-0     (-----) [000] d.h5 24575.125015: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
96092          <idle>-0     (-----) [000] d.h6 24575.125044: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
96093          <idle>-0     (-----) [001] .n.1 24575.125049: cpu_idle: state=4294967295 cpu_id=1
96094          <idle>-0     (-----) [000] d.h5 24575.125052: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
96095          <idle>-0     (-----) [000] dnh6 24575.125062: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
96096          <idle>-0     (-----) [001] d..2 24575.125065: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
96097  crtc_event:111-254   (  254) [001] d..3 24575.125089: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
96098          <idle>-0     (-----) [000] .n.1 24575.125100: cpu_idle: state=4294967295 cpu_id=0
96099  crtc_event:111-254   (  254) [001] d..4 24575.125114: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
96100          <idle>-0     (-----) [000] d..2 24575.125116: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
96101          <idle>-0     (-----) [003] .n.1 24575.125119: cpu_idle: state=4294967295 cpu_id=3
96102          <idle>-0     (-----) [003] d..2 24575.125134: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
96103  crtc_event:111-254   (  254) [001] d..2 24575.125153: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96104          <idle>-0     (-----) [001] d..2 24575.125159: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
96105          <idle>-0     (-----) [001] dn.3 24575.125175: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
96106          <idle>-0     (-----) [001] d..2 24575.125185: 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
96107     ksoftirqd/1-18    (   18) [001] d.s2 24575.125199: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
96108     ksoftirqd/1-18    (   18) [001] d.s3 24575.125218: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
96109     ksoftirqd/1-18    (   18) [001] d..2 24575.125234: 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
96110 crtc_commit:111-253   (  253) [000] d..2 24575.125328: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
96111          <idle>-0     (-----) [000] d..1 24575.125340: cpu_idle: state=0 cpu_id=0
96112  kworker/u16:10-23868 (23868) [001] .... 24575.125360: clk_set_rate: l3_cluster0_vote_clk 403200000
96113  kworker/u16:10-23868 (23868) [001] .... 24575.125368: clk_set_rate: l3_clk 403200000
96114 kgsl_worker_thr-246   (  246) [003] d..2 24575.125391: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
96115          <idle>-0     (-----) [003] d..1 24575.125406: cpu_idle: state=0 cpu_id=3
96116          <idle>-0     (-----) [003] d.h2 24575.125473: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
96117          <idle>-0     (-----) [003] dnh3 24575.125488: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
96118          <idle>-0     (-----) [003] .n.1 24575.125498: cpu_idle: state=4294967295 cpu_id=3
96119          <idle>-0     (-----) [003] d..2 24575.125507: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
96120 kgsl_worker_thr-246   (  246) [003] d..2 24575.125533: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
96121 kgsl_worker_thr-246   (  246) [003] d..3 24575.125580: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
96122 kgsl_worker_thr-246   (  246) [003] d..2 24575.125597: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
96123  kworker/u16:10-23868 (23868) [001] d..2 24575.125690: 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
96124          <idle>-0     (-----) [001] d..1 24575.125704: cpu_idle: state=0 cpu_id=1
96125  kworker/u16:16-25995 (25995) [003] d..2 24575.126056: 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
96126          <idle>-0     (-----) [003] d..1 24575.126071: cpu_idle: state=0 cpu_id=3
96127          <idle>-0     (-----) [003] d.s3 24575.126194: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
96128          <idle>-0     (-----) [003] d.s4 24575.126232: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
96129          <idle>-0     (-----) [003] dns4 24575.126240: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
96130          <idle>-0     (-----) [003] .n.1 24575.126250: cpu_idle: state=4294967295 cpu_id=3
96131          <idle>-0     (-----) [003] d..2 24575.126264: 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
96132  kworker/u16:10-23868 (23868) [003] d..2 24575.126305: 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
96133          <idle>-0     (-----) [003] d..1 24575.126317: cpu_idle: state=0 cpu_id=3
96134          <idle>-0     (-----) [000] d.h3 24575.126949: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
96135          <idle>-0     (-----) [000] d.h4 24575.126968: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
96136          <idle>-0     (-----) [003] .n.1 24575.126974: cpu_idle: state=4294967295 cpu_id=3
96137          <idle>-0     (-----) [000] ...1 24575.126984: cpu_idle: state=4294967295 cpu_id=0
96138          <idle>-0     (-----) [003] d..2 24575.126985: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
96139          <idle>-0     (-----) [000] d..1 24575.126990: cpu_idle: state=0 cpu_id=0
96140 kgsl_worker_thr-246   (  246) [003] d..2 24575.127066: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
96141          <idle>-0     (-----) [003] d..1 24575.127077: cpu_idle: state=0 cpu_id=3
96142          <idle>-0     (-----) [000] d.h5 24575.127327: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
96143          <idle>-0     (-----) [000] dnh6 24575.127338: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
96144          <idle>-0     (-----) [000] .n.1 24575.127350: cpu_idle: state=4294967295 cpu_id=0
96145          <idle>-0     (-----) [000] d..2 24575.127358: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
96146 crtc_commit:111-253   (  253) [000] d..2 24575.127444: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96147          <idle>-0     (-----) [000] d..1 24575.127454: cpu_idle: state=0 cpu_id=0
96148          <idle>-0     (-----) [001] d.s2 24575.127585: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
96149          <idle>-0     (-----) [001] dns3 24575.127606: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
96150          <idle>-0     (-----) [001] .n.1 24575.127627: cpu_idle: state=4294967295 cpu_id=1
96151          <idle>-0     (-----) [001] d..2 24575.127637: 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
96152          <idle>-0     (-----) [000] d.H5 24575.127660: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
96153     rcu_preempt-7     (    7) [001] d..2 24575.127672: 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
96154          <idle>-0     (-----) [000] d.H6 24575.127682: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
96155          <idle>-0     (-----) [001] d..2 24575.127693: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
96156          <idle>-0     (-----) [000] ...1 24575.127731: cpu_idle: state=4294967295 cpu_id=0
96157  crtc_event:111-254   (  254) [001] d..2 24575.127733: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96158          <idle>-0     (-----) [000] d..1 24575.127739: cpu_idle: state=0 cpu_id=0
96159          <idle>-0     (-----) [001] d..1 24575.127747: cpu_idle: state=0 cpu_id=1
96160          <idle>-0     (-----) [003] d.h2 24575.129188: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
96161          <idle>-0     (-----) [003] dnh3 24575.129207: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
96162          <idle>-0     (-----) [003] .n.1 24575.129216: cpu_idle: state=4294967295 cpu_id=3
96163          <idle>-0     (-----) [003] d..2 24575.129227: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
96164        DispSync-23904 (23896) [003] d..1 24575.129256: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
96165        DispSync-23904 (23896) [003] d..2 24575.129284: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
96166          <idle>-0     (-----) [001] .n.1 24575.129289: cpu_idle: state=4294967295 cpu_id=1
96167          <idle>-0     (-----) [001] d..2 24575.129301: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
96168        DispSync-23904 (23896) [003] d..2 24575.129320: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
96169          <idle>-0     (-----) [003] d..1 24575.129333: cpu_idle: state=0 cpu_id=3
96170  appEventThread-23905 (23896) [001] d..3 24575.129367: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
96171  appEventThread-23905 (23896) [001] d..4 24575.129396: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
96172          <idle>-0     (-----) [000] .n.1 24575.129401: cpu_idle: state=4294967295 cpu_id=0
96173          <idle>-0     (-----) [000] d..2 24575.129417: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
96174  appEventThread-23905 (23896) [001] d..2 24575.129440: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96175          <idle>-0     (-----) [001] d..1 24575.129456: cpu_idle: state=0 cpu_id=1
96176 s.nexuslauncher-24827 (24827) [000] .... 24575.129859: binder_transaction: transaction=1671130 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
96177 s.nexuslauncher-24827 (24827) [000] d..4 24575.129871: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
96178 s.nexuslauncher-24827 (24827) [000] d..5 24575.129910: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
96179          <idle>-0     (-----) [001] .n.1 24575.129916: cpu_idle: state=4294967295 cpu_id=1
96180          <idle>-0     (-----) [001] d..2 24575.129930: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
96181  Binder:23896_5-25989 (23896) [001] .... 24575.129939: binder_transaction_received: transaction=1671130
96182 s.nexuslauncher-24827 (24827) [000] d..3 24575.129952: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
96183  Binder:23896_5-25989 (23896) [001] d..1 24575.129974: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
96184 s.nexuslauncher-24827 (24827) [000] d..4 24575.129979: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
96185          <idle>-0     (-----) [002] .n.1 24575.129987: cpu_idle: state=4294967295 cpu_id=2
96186          <idle>-0     (-----) [002] d..2 24575.130002: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
96187  Binder:23896_5-25989 (23896) [001] d..2 24575.130004: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
96188          <idle>-0     (-----) [003] .n.1 24575.130009: cpu_idle: state=4294967295 cpu_id=3
96189          <idle>-0     (-----) [003] d..2 24575.130021: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
96190  Binder:23896_5-25989 (23896) [001] d..2 24575.130050: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96191          <idle>-0     (-----) [001] d..1 24575.130066: cpu_idle: state=0 cpu_id=1
96192    RenderThread-25194 (24827) [002] d..2 24575.130068: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
96193  appEventThread-23905 (23896) [003] d..2 24575.130074: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
96194          <idle>-0     (-----) [002] d..1 24575.130082: cpu_idle: state=0 cpu_id=2
96195          <idle>-0     (-----) [003] d..1 24575.130086: cpu_idle: state=0 cpu_id=3
96196 s.nexuslauncher-24827 (24827) [000] d..3 24575.130517: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
96197 s.nexuslauncher-24827 (24827) [000] d..4 24575.130554: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
96198          <idle>-0     (-----) [001] .n.1 24575.130559: cpu_idle: state=4294967295 cpu_id=1
96199          <idle>-0     (-----) [001] d..2 24575.130573: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
96200 s.nexuslauncher-24827 (24827) [000] d..2 24575.130596: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96201          <idle>-0     (-----) [000] d..1 24575.130616: cpu_idle: state=0 cpu_id=0
96202    RenderThread-25194 (24827) [001] d..1 24575.130823: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
96203    RenderThread-25194 (24827) [001] d..2 24575.130848: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
96204          <idle>-0     (-----) [000] .n.1 24575.130855: cpu_idle: state=4294967295 cpu_id=0
96205          <idle>-0     (-----) [000] d..2 24575.130871: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
96206 s.nexuslauncher-24827 (24827) [000] d.s2 24575.130918: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
96207    RenderThread-25194 (24827) [001] .... 24575.130957: binder_transaction: transaction=1671131 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
96208 s.nexuslauncher-24827 (24827) [000] d.s3 24575.130961: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
96209    RenderThread-25194 (24827) [001] ...2 24575.130967: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
96210    RenderThread-25194 (24827) [001] d..4 24575.130971: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
96211    RenderThread-25194 (24827) [001] dn.5 24575.130987: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
96212    RenderThread-25194 (24827) [001] d..2 24575.131000: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
96213  Binder:23896_5-25989 (23896) [001] .... 24575.131009: binder_transaction_received: transaction=1671131
96214  Binder:23896_5-25989 (23896) [001] d..2 24575.131059: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
96215 s.nexuslauncher-24827 (24827) [000] d..2 24575.131085: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
96216     rcu_preempt-7     (    7) [000] d..2 24575.131095: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
96217    RenderThread-25194 (24827) [001] d..2 24575.131097: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96218          <idle>-0     (-----) [001] d..1 24575.131119: cpu_idle: state=0 cpu_id=1
96219     rcu_preempt-7     (    7) [000] d..3 24575.131127: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
96220          <idle>-0     (-----) [001] .n.1 24575.131134: cpu_idle: state=4294967295 cpu_id=1
96221          <idle>-0     (-----) [001] d..2 24575.131148: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
96222     rcu_preempt-7     (    7) [000] d..2 24575.131162: 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
96223          <idle>-0     (-----) [000] d..1 24575.131180: cpu_idle: state=0 cpu_id=0
96224         rcuop/2-29    (   29) [001] d..2 24575.131181: 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
96225          <idle>-0     (-----) [001] d..1 24575.131193: cpu_idle: state=0 cpu_id=1
96226          <idle>-0     (-----) [003] d.h2 24575.133199: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
96227          <idle>-0     (-----) [003] dnh3 24575.133213: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
96228          <idle>-0     (-----) [003] .n.1 24575.133222: cpu_idle: state=4294967295 cpu_id=3
96229          <idle>-0     (-----) [003] d..2 24575.133234: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
96230        DispSync-23904 (23896) [003] d..1 24575.133249: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
96231        DispSync-23904 (23896) [003] d..2 24575.133267: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
96232          <idle>-0     (-----) [001] .n.1 24575.133273: cpu_idle: state=4294967295 cpu_id=1
96233          <idle>-0     (-----) [001] d..2 24575.133283: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
96234        DispSync-23904 (23896) [003] d..2 24575.133297: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
96235          <idle>-0     (-----) [003] d..1 24575.133311: cpu_idle: state=0 cpu_id=3
96236   sfEventThread-23906 (23896) [001] d..3 24575.133328: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
96237   sfEventThread-23906 (23896) [001] d..4 24575.133351: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
96238          <idle>-0     (-----) [002] .n.1 24575.133358: cpu_idle: state=4294967295 cpu_id=2
96239          <idle>-0     (-----) [002] d..2 24575.133371: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
96240   sfEventThread-23906 (23896) [001] d..2 24575.133388: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96241          <idle>-0     (-----) [001] d..1 24575.133405: cpu_idle: state=0 cpu_id=1
96242  surfaceflinger-23896 (23896) [002] d..1 24575.133593: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
96243  surfaceflinger-23896 (23896) [002] d..2 24575.133632: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
96244          <idle>-0     (-----) [000] .n.1 24575.133638: cpu_idle: state=4294967295 cpu_id=0
96245          <idle>-0     (-----) [000] d..2 24575.133653: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
96246  Binder:23896_5-25989 (23896) [000] d..2 24575.133693: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96247          <idle>-0     (-----) [000] d..1 24575.133706: cpu_idle: state=0 cpu_id=0
96248  surfaceflinger-23896 (23896) [002] d..1 24575.133836: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
96249  surfaceflinger-23896 (23896) [002] d..2 24575.133862: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
96250          <idle>-0     (-----) [001] .n.1 24575.133868: cpu_idle: state=4294967295 cpu_id=1
96251          <idle>-0     (-----) [001] d..2 24575.133880: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
96252   sfEventThread-23906 (23896) [001] d..2 24575.133919: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96253          <idle>-0     (-----) [001] d..1 24575.133933: cpu_idle: state=0 cpu_id=1
96254  surfaceflinger-23896 (23896) [002] ...1 24575.134095: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
96255  surfaceflinger-23896 (23896) [002] ...1 24575.134104: tracing_mark_write: E|23896
96256  surfaceflinger-23896 (23896) [002] .... 24575.134169: binder_transaction: transaction=1671132 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
96257  surfaceflinger-23896 (23896) [002] ...2 24575.134202: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
96258  surfaceflinger-23896 (23896) [002] d..4 24575.134209: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
96259  surfaceflinger-23896 (23896) [002] d..5 24575.134232: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
96260          <idle>-0     (-----) [003] .n.1 24575.134238: cpu_idle: state=4294967295 cpu_id=3
96261          <idle>-0     (-----) [003] d..2 24575.134255: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
96262  surfaceflinger-23896 (23896) [002] d.s5 24575.134277: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
96263  surfaceflinger-23896 (23896) [002] d.s6 24575.134303: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
96264  HwBinder:598_3-633   (  598) [003] .... 24575.134324: binder_transaction_received: transaction=1671132
96265  surfaceflinger-23896 (23896) [002] d..2 24575.134360: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
96266  HwBinder:598_3-633   (  598) [003] ...1 24575.134376: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
96267          <idle>-0     (-----) [002] d..1 24575.134380: cpu_idle: state=0 cpu_id=2
96268  HwBinder:598_3-633   (  598) [003] ...1 24575.134541: tracing_mark_write: B|598|HWCSession::PresentDisplay::
96269  HwBinder:598_3-633   (  598) [003] ...1 24575.134758: tracing_mark_write: B|598|HWDeviceDRM::Commit::
96270  HwBinder:598_3-633   (  598) [003] ...1 24575.134775: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
96271          <idle>-0     (-----) [001] ...1 24575.135300: cpu_idle: state=4294967295 cpu_id=1
96272          <idle>-0     (-----) [001] d..1 24575.135306: cpu_idle: state=0 cpu_id=1
96273  HwBinder:598_3-633   (  598) [003] d..2 24575.135500: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
96274  HwBinder:598_3-633   (  598) [003] d..3 24575.135527: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
96275          <idle>-0     (-----) [000] .n.1 24575.135533: cpu_idle: state=4294967295 cpu_id=0
96276          <idle>-0     (-----) [000] d..2 24575.135546: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
96277  HwBinder:598_3-633   (  598) [003] ...1 24575.135644: tracing_mark_write: E|598
96278  HwBinder:598_3-633   (  598) [003] ...1 24575.135651: tracing_mark_write: E|598
96279  HwBinder:598_3-633   (  598) [003] ...1 24575.135723: tracing_mark_write: E|598
96280  HwBinder:598_3-633   (  598) [003] ...1 24575.135778: tracing_mark_write: E|598
96281  HwBinder:598_3-633   (  598) [003] .... 24575.135794: binder_transaction: transaction=1671133 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
96282  HwBinder:598_3-633   (  598) [003] d..2 24575.135823: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
96283  HwBinder:598_3-633   (  598) [003] d..3 24575.135843: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
96284  HwBinder:598_3-633   (  598) [003] .... 24575.135849: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
96285          <idle>-0     (-----) [002] .n.1 24575.135849: cpu_idle: state=4294967295 cpu_id=2
96286          <idle>-0     (-----) [002] d..2 24575.135861: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
96287  surfaceflinger-23896 (23896) [002] .... 24575.135871: binder_transaction_received: transaction=1671133
96288  HwBinder:598_3-633   (  598) [003] d..2 24575.135934: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
96289  surfaceflinger-23896 (23896) [002] d..1 24575.136177: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
96290  surfaceflinger-23896 (23896) [002] d..2 24575.136214: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
96291          <idle>-0     (-----) [001] .n.1 24575.136218: cpu_idle: state=4294967295 cpu_id=1
96292  kworker/u16:10-23868 (23868) [003] d..2 24575.136228: 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
96293          <idle>-0     (-----) [001] d..2 24575.136232: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
96294          <idle>-0     (-----) [003] d.s4 24575.136281: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
96295          <idle>-0     (-----) [003] d.s5 24575.136300: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
96296  Binder:23896_5-25989 (23896) [001] .... 24575.136301: binder_transaction: transaction=1671134 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
96297          <idle>-0     (-----) [003] dns5 24575.136307: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
96298  Binder:23896_5-25989 (23896) [001] d..2 24575.136318: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
96299          <idle>-0     (-----) [003] d..2 24575.136323: 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
96300  Binder:23896_5-25989 (23896) [001] d..3 24575.136335: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
96301  Binder:23896_5-25989 (23896) [001] .... 24575.136340: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
96302  Binder:23896_5-25989 (23896) [001] d..2 24575.136402: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
96303  surfaceflinger-23896 (23896) [002] d..2 24575.136407: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
96304    RenderThread-25194 (24827) [001] .... 24575.136412: binder_transaction_received: transaction=1671134
96305          <idle>-0     (-----) [002] d..1 24575.136428: cpu_idle: state=0 cpu_id=2
96306 crtc_commit:111-253   (  253) [000] d..2 24575.136438: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
96307          <idle>-0     (-----) [000] d..1 24575.136451: cpu_idle: state=0 cpu_id=0
96308  kworker/u16:10-23868 (23868) [003] .... 24575.136454: clk_set_rate: l3_cluster0_vote_clk 300000000
96309  kworker/u16:10-23868 (23868) [003] .... 24575.136463: clk_set_rate: l3_clk 300000000
96310  kworker/u16:10-23868 (23868) [003] d..2 24575.136527: 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
96311          <idle>-0     (-----) [003] d..1 24575.136548: cpu_idle: state=0 cpu_id=3
96312          <idle>-0     (-----) [000] d.H3 24575.137712: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
96313          <idle>-0     (-----) [000] d.H3 24575.137732: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
96314          <idle>-0     (-----) [005] dnh2 24575.137738: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
96315          <idle>-0     (-----) [005] .n.1 24575.137741: cpu_idle: state=4294967295 cpu_id=5
96316          <idle>-0     (-----) [005] d..2 24575.137747: 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
96317          <idle>-0     (-----) [000] d.H4 24575.137750: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
96318          <idle>-0     (-----) [003] .n.1 24575.137758: cpu_idle: state=4294967295 cpu_id=3
96319          <idle>-0     (-----) [000] d.s2 24575.137759: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
96320         sugov:4-560   (  560) [005] d..2 24575.137760: 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
96321          <idle>-0     (-----) [005] d..1 24575.137767: cpu_idle: state=0 cpu_id=5
96322          <idle>-0     (-----) [003] d..2 24575.137774: 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
96323          <idle>-0     (-----) [000] dns3 24575.137782: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
96324          <idle>-0     (-----) [000] dns3 24575.137794: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
96325          <idle>-0     (-----) [000] dns4 24575.137809: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
96326         sugov:0-559   (  559) [003] d..2 24575.137811: 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
96327          <idle>-0     (-----) [003] d..1 24575.137822: cpu_idle: state=0 cpu_id=3
96328          <idle>-0     (-----) [000] .n.1 24575.137833: cpu_idle: state=4294967295 cpu_id=0
96329          <idle>-0     (-----) [000] d..2 24575.137845: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
96330     kworker/0:1-13012 (13012) [000] d..2 24575.137933: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
96331     rcu_preempt-7     (    7) [000] d..2 24575.137964: 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
96332          <idle>-0     (-----) [000] d..1 24575.137983: cpu_idle: state=0 cpu_id=0
96333          <idle>-0     (-----) [005] ...1 24575.138779: cpu_idle: state=4294967295 cpu_id=5
96334          <idle>-0     (-----) [005] d..1 24575.138782: cpu_idle: state=0 cpu_id=5
96335    RenderThread-25194 (24827) [001] .... 24575.139447: binder_transaction: transaction=1671135 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
96336    RenderThread-25194 (24827) [001] ...2 24575.139465: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
96337    RenderThread-25194 (24827) [001] d..4 24575.139470: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
96338    RenderThread-25194 (24827) [001] dn.5 24575.139499: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
96339    RenderThread-25194 (24827) [001] d..2 24575.139513: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
96340  Binder:23896_5-25989 (23896) [001] .... 24575.139524: binder_transaction_received: transaction=1671135
96341  Binder:23896_5-25989 (23896) [001] .... 24575.139726: binder_transaction: transaction=1671136 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
96342  Binder:23896_5-25989 (23896) [001] .... 24575.139738: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
96343  Binder:23896_5-25989 (23896) [001] d..2 24575.139814: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
96344    RenderThread-25194 (24827) [001] .... 24575.139826: binder_transaction_received: transaction=1671136
96345    RenderThread-25194 (24827) [001] d..2 24575.139959: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96346          <idle>-0     (-----) [001] d..1 24575.139984: cpu_idle: state=0 cpu_id=1
96347          <idle>-0     (-----) [000] d.h5 24575.141480: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
96348          <idle>-0     (-----) [000] d.h6 24575.141504: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
96349          <idle>-0     (-----) [000] d.h5 24575.141510: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
96350          <idle>-0     (-----) [001] .n.1 24575.141513: cpu_idle: state=4294967295 cpu_id=1
96351          <idle>-0     (-----) [000] dnh6 24575.141519: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
96352          <idle>-0     (-----) [001] d..2 24575.141529: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
96353          <idle>-0     (-----) [000] .n.1 24575.141537: cpu_idle: state=4294967295 cpu_id=0
96354          <idle>-0     (-----) [000] d..2 24575.141551: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
96355  crtc_event:111-254   (  254) [001] d..3 24575.141553: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
96356  crtc_event:111-254   (  254) [001] d..4 24575.141578: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
96357          <idle>-0     (-----) [003] .n.1 24575.141583: cpu_idle: state=4294967295 cpu_id=3
96358          <idle>-0     (-----) [003] d..2 24575.141596: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
96359  crtc_event:111-254   (  254) [001] d..2 24575.141615: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96360          <idle>-0     (-----) [001] d..2 24575.141621: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
96361          <idle>-0     (-----) [001] dn.3 24575.141636: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
96362          <idle>-0     (-----) [001] d..2 24575.141646: 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
96363     ksoftirqd/1-18    (   18) [001] d..2 24575.141672: 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
96364          <idle>-0     (-----) [001] d..1 24575.141687: cpu_idle: state=0 cpu_id=1
96365 crtc_commit:111-253   (  253) [000] d..2 24575.141736: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
96366          <idle>-0     (-----) [000] d..1 24575.141748: cpu_idle: state=0 cpu_id=0
96367 kgsl_worker_thr-246   (  246) [003] d..2 24575.141823: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
96368          <idle>-0     (-----) [003] d..1 24575.141834: cpu_idle: state=0 cpu_id=3
96369          <idle>-0     (-----) [003] d.h2 24575.141910: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
96370          <idle>-0     (-----) [003] dnh3 24575.141927: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
96371          <idle>-0     (-----) [003] .n.1 24575.141937: cpu_idle: state=4294967295 cpu_id=3
96372          <idle>-0     (-----) [003] d..2 24575.141947: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
96373 kgsl_worker_thr-246   (  246) [003] d..2 24575.141972: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
96374 kgsl_worker_thr-246   (  246) [003] d..3 24575.141997: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
96375 kgsl_worker_thr-246   (  246) [003] d..2 24575.142012: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
96376  kworker/u16:10-23868 (23868) [003] d..2 24575.142477: 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
96377          <idle>-0     (-----) [003] d..1 24575.142493: cpu_idle: state=0 cpu_id=3
96378          <idle>-0     (-----) [000] d.h3 24575.143413: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
96379          <idle>-0     (-----) [000] d.h4 24575.143434: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
96380          <idle>-0     (-----) [003] .n.1 24575.143441: cpu_idle: state=4294967295 cpu_id=3
96381          <idle>-0     (-----) [000] ...1 24575.143451: cpu_idle: state=4294967295 cpu_id=0
96382          <idle>-0     (-----) [003] d..2 24575.143453: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
96383          <idle>-0     (-----) [000] d..1 24575.143457: cpu_idle: state=0 cpu_id=0
96384 kgsl_worker_thr-246   (  246) [003] d..2 24575.143535: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
96385          <idle>-0     (-----) [003] d..1 24575.143547: cpu_idle: state=0 cpu_id=3
96386          <idle>-0     (-----) [000] d.h5 24575.143798: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
96387          <idle>-0     (-----) [000] dnh6 24575.143810: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
96388          <idle>-0     (-----) [000] .n.1 24575.143823: cpu_idle: state=4294967295 cpu_id=0
96389          <idle>-0     (-----) [000] d..2 24575.143831: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
96390 crtc_commit:111-253   (  253) [000] d..2 24575.143921: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96391          <idle>-0     (-----) [000] d..1 24575.143931: cpu_idle: state=0 cpu_id=0
96392          <idle>-0     (-----) [000] d.h5 24575.144108: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
96393          <idle>-0     (-----) [000] d.h6 24575.144128: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
96394          <idle>-0     (-----) [001] .n.1 24575.144135: cpu_idle: state=4294967295 cpu_id=1
96395          <idle>-0     (-----) [001] d..2 24575.144147: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
96396          <idle>-0     (-----) [000] ...1 24575.144152: cpu_idle: state=4294967295 cpu_id=0
96397          <idle>-0     (-----) [000] d..1 24575.144157: cpu_idle: state=0 cpu_id=0
96398  crtc_event:111-254   (  254) [001] d..2 24575.144176: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96399          <idle>-0     (-----) [001] d..1 24575.144188: cpu_idle: state=0 cpu_id=1
96400          <idle>-0     (-----) [000] d.s3 24575.144246: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
96401          <idle>-0     (-----) [000] d.s4 24575.144264: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
96402          <idle>-0     (-----) [000] d.s2 24575.144268: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
96403          <idle>-0     (-----) [001] .n.1 24575.144270: cpu_idle: state=4294967295 cpu_id=1
96404          <idle>-0     (-----) [001] d..2 24575.144282: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
96405          <idle>-0     (-----) [000] dns3 24575.144289: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
96406          <idle>-0     (-----) [000] dns3 24575.144295: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
96407  crtc_event:111-254   (  254) [001] d..2 24575.144317: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96408          <idle>-0     (-----) [001] d..1 24575.144328: cpu_idle: state=0 cpu_id=1
96409          <idle>-0     (-----) [000] dns4 24575.144343: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
96410          <idle>-0     (-----) [001] .n.1 24575.144349: cpu_idle: state=4294967295 cpu_id=1
96411          <idle>-0     (-----) [001] d..2 24575.144362: 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
96412          <idle>-0     (-----) [000] .n.1 24575.144362: cpu_idle: state=4294967295 cpu_id=0
96413          <idle>-0     (-----) [000] d..2 24575.144374: 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
96414     rcu_preempt-7     (    7) [000] d..2 24575.144398: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
96415     rcu_preempt-7     (    7) [000] d..3 24575.144446: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
96416     rcu_preempt-7     (    7) [000] d..2 24575.144472: 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
96417  kworker/u16:10-23868 (23868) [001] .... 24575.144477: clk_set_rate: l3_cluster0_vote_clk 403200000
96418  kworker/u16:10-23868 (23868) [001] .... 24575.144483: clk_set_rate: l3_clk 403200000
96419         rcuop/0-10    (   10) [000] d..2 24575.144510: 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
96420          <idle>-0     (-----) [000] d..1 24575.144531: cpu_idle: state=0 cpu_id=0
96421  kworker/u16:10-23868 (23868) [001] d..2 24575.144777: 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
96422          <idle>-0     (-----) [001] d..1 24575.144795: cpu_idle: state=0 cpu_id=1
96423          <idle>-0     (-----) [003] d.s3 24575.145272: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
96424          <idle>-0     (-----) [003] d.s4 24575.145286: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
96425          <idle>-0     (-----) [003] d.s4 24575.145297: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
96426          <idle>-0     (-----) [001] .n.1 24575.145304: cpu_idle: state=4294967295 cpu_id=1
96427          <idle>-0     (-----) [003] ...1 24575.145309: cpu_idle: state=4294967295 cpu_id=3
96428          <idle>-0     (-----) [003] d..1 24575.145314: cpu_idle: state=0 cpu_id=3
96429          <idle>-0     (-----) [001] d..2 24575.145317: 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
96430  kworker/u16:10-23868 (23868) [001] d..2 24575.145349: 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
96431          <idle>-0     (-----) [001] d..1 24575.145361: cpu_idle: state=0 cpu_id=1
96432          <idle>-0     (-----) [003] d.h2 24575.145649: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
96433          <idle>-0     (-----) [003] dnh3 24575.145666: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
96434          <idle>-0     (-----) [003] .n.1 24575.145674: cpu_idle: state=4294967295 cpu_id=3
96435          <idle>-0     (-----) [003] d..2 24575.145686: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
96436        DispSync-23904 (23896) [003] d..1 24575.145711: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
96437        DispSync-23904 (23896) [003] d..2 24575.145738: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
96438          <idle>-0     (-----) [002] .n.1 24575.145745: cpu_idle: state=4294967295 cpu_id=2
96439          <idle>-0     (-----) [002] d..2 24575.145758: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
96440        DispSync-23904 (23896) [003] d..2 24575.145775: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
96441          <idle>-0     (-----) [003] d..1 24575.145788: cpu_idle: state=0 cpu_id=3
96442  appEventThread-23905 (23896) [002] d..3 24575.145811: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
96443  appEventThread-23905 (23896) [002] d..4 24575.145838: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
96444          <idle>-0     (-----) [000] .n.1 24575.145844: cpu_idle: state=4294967295 cpu_id=0
96445          <idle>-0     (-----) [000] d..2 24575.145858: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
96446  appEventThread-23905 (23896) [002] d..2 24575.145881: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
96447          <idle>-0     (-----) [002] d..1 24575.145897: cpu_idle: state=0 cpu_id=2
96448 s.nexuslauncher-24827 (24827) [000] .... 24575.146267: binder_transaction: transaction=1671137 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
96449 s.nexuslauncher-24827 (24827) [000] d..4 24575.146279: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
96450 s.nexuslauncher-24827 (24827) [000] d..5 24575.146305: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
96451          <idle>-0     (-----) [001] .n.1 24575.146310: cpu_idle: state=4294967295 cpu_id=1
96452          <idle>-0     (-----) [001] d..2 24575.146323: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
96453  Binder:23896_5-25989 (23896) [001] .... 24575.146334: binder_transaction_received: transaction=1671137
96454 s.nexuslauncher-24827 (24827) [000] d..3 24575.146346: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
96455  Binder:23896_5-25989 (23896) [001] d..1 24575.146376: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
96456 s.nexuslauncher-24827 (24827) [000] d..4 24575.146377: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
96457          <idle>-0     (-----) [002] .n.1 24575.146383: cpu_idle: state=4294967295 cpu_id=2
96458          <idle>-0     (-----) [002] d..2 24575.146396: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
96459  Binder:23896_5-25989 (23896) [001] d..2 24575.146419: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
96460          <idle>-0     (-----) [003] .n.1 24575.146424: cpu_idle: state=4294967295 cpu_id=3
96461          <idle>-0     (-----) [003] d..2 24575.146435: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
96462    RenderThread-25194 (24827) [002] d..2 24575.146463: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
96463  Binder:23896_5-25989 (23896) [001] d..2 24575.146470: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96464          <idle>-0     (-----) [002] d..1 24575.146479: cpu_idle: state=0 cpu_id=2
96465          <idle>-0     (-----) [001] d..1 24575.146489: cpu_idle: state=0 cpu_id=1
96466  appEventThread-23905 (23896) [003] d..2 24575.146490: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
96467          <idle>-0     (-----) [003] d..1 24575.146501: cpu_idle: state=0 cpu_id=3
96468 s.nexuslauncher-24827 (24827) [000] d..3 24575.146884: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
96469 s.nexuslauncher-24827 (24827) [000] d..4 24575.146921: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
96470          <idle>-0     (-----) [001] .n.1 24575.146927: cpu_idle: state=4294967295 cpu_id=1
96471          <idle>-0     (-----) [001] d..2 24575.146942: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
96472 s.nexuslauncher-24827 (24827) [000] d..2 24575.146963: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96473          <idle>-0     (-----) [000] d..1 24575.146982: cpu_idle: state=0 cpu_id=0
96474    RenderThread-25194 (24827) [001] d..1 24575.147182: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
96475    RenderThread-25194 (24827) [001] d..2 24575.147207: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
96476          <idle>-0     (-----) [000] .n.1 24575.147214: cpu_idle: state=4294967295 cpu_id=0
96477          <idle>-0     (-----) [000] d..2 24575.147228: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
96478    RenderThread-25194 (24827) [001] .... 24575.147274: binder_transaction: transaction=1671138 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
96479    RenderThread-25194 (24827) [001] ...2 24575.147284: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
96480    RenderThread-25194 (24827) [001] d..4 24575.147288: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
96481    RenderThread-25194 (24827) [001] dn.5 24575.147304: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
96482    RenderThread-25194 (24827) [001] d..2 24575.147315: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
96483  Binder:23896_5-25989 (23896) [001] .... 24575.147325: binder_transaction_received: transaction=1671138
96484 s.nexuslauncher-24827 (24827) [000] d..2 24575.147358: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96485          <idle>-0     (-----) [000] d..1 24575.147372: cpu_idle: state=0 cpu_id=0
96486  Binder:23896_5-25989 (23896) [001] d..2 24575.147374: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
96487    RenderThread-25194 (24827) [001] d..2 24575.147403: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96488          <idle>-0     (-----) [001] d..1 24575.147424: cpu_idle: state=0 cpu_id=1
96489          <idle>-0     (-----) [001] d..2 24575.148839: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
96490          <idle>-0     (-----) [001] dn.3 24575.148852: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
96491          <idle>-0     (-----) [001] .n.1 24575.148857: cpu_idle: state=4294967295 cpu_id=1
96492          <idle>-0     (-----) [001] d..2 24575.148872: 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
96493     ksoftirqd/1-18    (   18) [001] d.s2 24575.148883: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
96494     ksoftirqd/1-18    (   18) [001] d.s3 24575.148904: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
96495     ksoftirqd/1-18    (   18) [001] d..2 24575.148919: 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
96496  kworker/u16:10-23868 (23868) [001] d..2 24575.149012: 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
96497          <idle>-0     (-----) [001] d..1 24575.149026: cpu_idle: state=0 cpu_id=1
96498          <idle>-0     (-----) [003] d.h2 24575.149667: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
96499          <idle>-0     (-----) [003] dnh3 24575.149681: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
96500          <idle>-0     (-----) [003] .n.1 24575.149691: cpu_idle: state=4294967295 cpu_id=3
96501          <idle>-0     (-----) [003] d..2 24575.149702: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
96502        DispSync-23904 (23896) [003] d..1 24575.149719: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
96503        DispSync-23904 (23896) [003] d..2 24575.149737: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
96504          <idle>-0     (-----) [001] .n.1 24575.149743: cpu_idle: state=4294967295 cpu_id=1
96505          <idle>-0     (-----) [001] d..2 24575.149755: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
96506        DispSync-23904 (23896) [003] d..2 24575.149767: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
96507          <idle>-0     (-----) [003] d..1 24575.149782: cpu_idle: state=0 cpu_id=3
96508   sfEventThread-23906 (23896) [001] d..3 24575.149807: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
96509   sfEventThread-23906 (23896) [001] d..4 24575.149830: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
96510          <idle>-0     (-----) [002] .n.1 24575.149836: cpu_idle: state=4294967295 cpu_id=2
96511          <idle>-0     (-----) [002] d..2 24575.149850: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
96512   sfEventThread-23906 (23896) [001] d..2 24575.149868: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96513          <idle>-0     (-----) [001] d..1 24575.149887: cpu_idle: state=0 cpu_id=1
96514  surfaceflinger-23896 (23896) [002] d..1 24575.150082: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
96515  surfaceflinger-23896 (23896) [002] d..2 24575.150120: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
96516          <idle>-0     (-----) [000] .n.1 24575.150126: cpu_idle: state=4294967295 cpu_id=0
96517          <idle>-0     (-----) [000] d..2 24575.150143: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
96518  Binder:23896_5-25989 (23896) [000] d..2 24575.150183: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96519          <idle>-0     (-----) [000] d..1 24575.150193: cpu_idle: state=0 cpu_id=0
96520  surfaceflinger-23896 (23896) [002] d..1 24575.150316: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
96521  surfaceflinger-23896 (23896) [002] d..2 24575.150341: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
96522          <idle>-0     (-----) [001] .n.1 24575.150348: cpu_idle: state=4294967295 cpu_id=1
96523          <idle>-0     (-----) [001] d..2 24575.150359: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
96524   sfEventThread-23906 (23896) [001] d..2 24575.150398: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96525          <idle>-0     (-----) [001] d..1 24575.150412: cpu_idle: state=0 cpu_id=1
96526  surfaceflinger-23896 (23896) [002] ...1 24575.150585: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
96527  surfaceflinger-23896 (23896) [002] ...1 24575.150594: tracing_mark_write: E|23896
96528  surfaceflinger-23896 (23896) [002] .... 24575.150667: binder_transaction: transaction=1671139 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
96529  surfaceflinger-23896 (23896) [002] ...2 24575.150699: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
96530  surfaceflinger-23896 (23896) [002] d..4 24575.150708: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
96531  surfaceflinger-23896 (23896) [002] d..5 24575.150734: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
96532          <idle>-0     (-----) [003] .n.1 24575.150741: cpu_idle: state=4294967295 cpu_id=3
96533          <idle>-0     (-----) [003] d..2 24575.150752: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
96534  HwBinder:598_3-633   (  598) [003] .... 24575.150764: binder_transaction_received: transaction=1671139
96535  surfaceflinger-23896 (23896) [002] d..2 24575.150770: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
96536          <idle>-0     (-----) [002] d..1 24575.150791: cpu_idle: state=0 cpu_id=2
96537  HwBinder:598_3-633   (  598) [003] ...1 24575.150825: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
96538          <idle>-0     (-----) [000] d.s2 24575.150911: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
96539          <idle>-0     (-----) [000] dns3 24575.150932: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
96540          <idle>-0     (-----) [000] .n.1 24575.150955: cpu_idle: state=4294967295 cpu_id=0
96541          <idle>-0     (-----) [000] d..2 24575.150965: 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
96542     rcu_preempt-7     (    7) [000] d..2 24575.151002: 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
96543  HwBinder:598_3-633   (  598) [003] ...1 24575.151015: tracing_mark_write: B|598|HWCSession::PresentDisplay::
96544          <idle>-0     (-----) [000] d..1 24575.151016: cpu_idle: state=0 cpu_id=0
96545  HwBinder:598_3-633   (  598) [003] ...1 24575.151240: tracing_mark_write: B|598|HWDeviceDRM::Commit::
96546  HwBinder:598_3-633   (  598) [003] ...1 24575.151256: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
96547  HwBinder:598_3-633   (  598) [003] d..2 24575.151992: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
96548          <idle>-0     (-----) [001] ...1 24575.152012: cpu_idle: state=4294967295 cpu_id=1
96549          <idle>-0     (-----) [001] d..1 24575.152017: cpu_idle: state=0 cpu_id=1
96550  HwBinder:598_3-633   (  598) [003] d..3 24575.152019: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
96551          <idle>-0     (-----) [000] .n.1 24575.152024: cpu_idle: state=4294967295 cpu_id=0
96552          <idle>-0     (-----) [000] d..2 24575.152036: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
96553  HwBinder:598_3-633   (  598) [003] ...1 24575.152133: tracing_mark_write: E|598
96554  HwBinder:598_3-633   (  598) [003] ...1 24575.152140: tracing_mark_write: E|598
96555  HwBinder:598_3-633   (  598) [003] ...1 24575.152216: tracing_mark_write: E|598
96556  HwBinder:598_3-633   (  598) [003] ...1 24575.152277: tracing_mark_write: E|598
96557  HwBinder:598_3-633   (  598) [003] .... 24575.152295: binder_transaction: transaction=1671140 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
96558  HwBinder:598_3-633   (  598) [003] d..2 24575.152323: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
96559  HwBinder:598_3-633   (  598) [003] d..3 24575.152344: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
96560          <idle>-0     (-----) [002] .n.1 24575.152350: cpu_idle: state=4294967295 cpu_id=2
96561  HwBinder:598_3-633   (  598) [003] .... 24575.152350: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
96562          <idle>-0     (-----) [002] d..2 24575.152363: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
96563  surfaceflinger-23896 (23896) [002] .... 24575.152372: binder_transaction_received: transaction=1671140
96564  HwBinder:598_3-633   (  598) [003] d..2 24575.152448: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
96565          <idle>-0     (-----) [003] d..1 24575.152470: cpu_idle: state=0 cpu_id=3
96566  surfaceflinger-23896 (23896) [002] d..1 24575.152653: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
96567  surfaceflinger-23896 (23896) [002] d..2 24575.152689: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
96568          <idle>-0     (-----) [001] .n.1 24575.152693: cpu_idle: state=4294967295 cpu_id=1
96569          <idle>-0     (-----) [001] d..2 24575.152708: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
96570  Binder:23896_5-25989 (23896) [001] .... 24575.152777: binder_transaction: transaction=1671141 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
96571  Binder:23896_5-25989 (23896) [001] d..2 24575.152793: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
96572  Binder:23896_5-25989 (23896) [001] d..3 24575.152809: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
96573  Binder:23896_5-25989 (23896) [001] .... 24575.152815: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
96574  Binder:23896_5-25989 (23896) [001] d..2 24575.152879: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
96575  surfaceflinger-23896 (23896) [002] d..2 24575.152882: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
96576    RenderThread-25194 (24827) [001] .... 24575.152888: binder_transaction_received: transaction=1671141
96577 crtc_commit:111-253   (  253) [000] d..2 24575.152903: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
96578          <idle>-0     (-----) [002] d..1 24575.152903: cpu_idle: state=0 cpu_id=2
96579          <idle>-0     (-----) [000] d..1 24575.152919: cpu_idle: state=0 cpu_id=0
96580    RenderThread-25194 (24827) [001] d.s2 24575.154265: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
96581    RenderThread-25194 (24827) [001] d.s3 24575.154291: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
96582          <idle>-0     (-----) [003] ...1 24575.154384: cpu_idle: state=4294967295 cpu_id=3
96583          <idle>-0     (-----) [003] d..1 24575.154390: cpu_idle: state=0 cpu_id=3
96584    RenderThread-25194 (24827) [001] .... 24575.155635: binder_transaction: transaction=1671142 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
96585    RenderThread-25194 (24827) [001] ...2 24575.155652: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
96586    RenderThread-25194 (24827) [001] d..4 24575.155656: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
96587    RenderThread-25194 (24827) [001] d..5 24575.155691: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
96588          <idle>-0     (-----) [000] .n.1 24575.155697: cpu_idle: state=4294967295 cpu_id=0
96589    RenderThread-25194 (24827) [001] d..2 24575.155713: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
96590          <idle>-0     (-----) [000] d..2 24575.155715: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
96591  Binder:23896_5-25989 (23896) [000] .... 24575.155724: binder_transaction_received: transaction=1671142
96592  kworker/u16:10-23868 (23868) [001] d..2 24575.155898: 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
96593          <idle>-0     (-----) [001] d..1 24575.155919: cpu_idle: state=0 cpu_id=1
96594  Binder:23896_5-25989 (23896) [000] .... 24575.155942: binder_transaction: transaction=1671143 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
96595  Binder:23896_5-25989 (23896) [000] d..2 24575.155953: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
96596  Binder:23896_5-25989 (23896) [000] d..3 24575.155984: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
96597  Binder:23896_5-25989 (23896) [000] .... 24575.155990: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
96598  Binder:23896_5-25989 (23896) [000] d..2 24575.156052: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
96599    RenderThread-25194 (24827) [000] .... 24575.156062: binder_transaction_received: transaction=1671143
96600    RenderThread-25194 (24827) [000] d..2 24575.156195: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96601          <idle>-0     (-----) [000] d..1 24575.156210: cpu_idle: state=0 cpu_id=0
96602          <idle>-0     (-----) [000] d.H3 24575.157703: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
96603          <idle>-0     (-----) [000] d.H3 24575.157722: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
96604          <idle>-0     (-----) [005] dnh2 24575.157729: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
96605          <idle>-0     (-----) [005] .n.1 24575.157732: cpu_idle: state=4294967295 cpu_id=5
96606          <idle>-0     (-----) [005] d..2 24575.157738: 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
96607          <idle>-0     (-----) [000] d.H4 24575.157740: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
96608          <idle>-0     (-----) [003] .n.1 24575.157745: cpu_idle: state=4294967295 cpu_id=3
96609          <idle>-0     (-----) [000] d.s2 24575.157749: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
96610         sugov:4-560   (  560) [005] d..2 24575.157752: 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
96611          <idle>-0     (-----) [005] d..1 24575.157758: cpu_idle: state=0 cpu_id=5
96612          <idle>-0     (-----) [003] d..2 24575.157759: 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
96613          <idle>-0     (-----) [000] dns3 24575.157770: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
96614          <idle>-0     (-----) [000] .n.1 24575.157782: cpu_idle: state=4294967295 cpu_id=0
96615          <idle>-0     (-----) [000] d..2 24575.157793: 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
96616     rcu_preempt-7     (    7) [000] d..2 24575.157804: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
96617         sugov:0-559   (  559) [003] .... 24575.157807: clk_set_rate: pwrcl_clk 902400000
96618         sugov:0-559   (  559) [003] .... 24575.157825: clk_set_rate: cpu3_pwrcl_clk 825600000
96619         sugov:0-559   (  559) [003] .... 24575.157839: clk_set_rate: cpu2_pwrcl_clk 825600000
96620         sugov:0-559   (  559) [003] .... 24575.157849: clk_set_rate: cpu1_pwrcl_clk 825600000
96621     rcu_preempt-7     (    7) [000] d..3 24575.157851: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
96622         sugov:0-559   (  559) [003] .... 24575.157858: clk_set_rate: cpu0_pwrcl_clk 902400000
96623         sugov:0-559   (  559) [003] .... 24575.157871: cpu_frequency: state=902400 cpu_id=0
96624         sugov:0-559   (  559) [003] .... 24575.157905: cpu_frequency: state=902400 cpu_id=1
96625         sugov:0-559   (  559) [003] .... 24575.157911: cpu_frequency: state=902400 cpu_id=2
96626         sugov:0-559   (  559) [003] .... 24575.157914: cpu_frequency: state=902400 cpu_id=3
96627         sugov:0-559   (  559) [003] d..2 24575.157935: 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
96628     rcu_preempt-7     (    7) [000] d.h5 24575.157957: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
96629         rcuop/2-29    (   29) [003] d..2 24575.157974: 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
96630     rcu_preempt-7     (    7) [000] d.h6 24575.157975: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
96631     rcu_preempt-7     (    7) [000] d.h5 24575.157980: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
96632          <idle>-0     (-----) [001] .n.1 24575.157983: cpu_idle: state=4294967295 cpu_id=1
96633          <idle>-0     (-----) [003] d..1 24575.157985: cpu_idle: state=0 cpu_id=3
96634          <idle>-0     (-----) [001] d..2 24575.157997: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
96635     rcu_preempt-7     (    7) [000] d.h6 24575.158002: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
96636          <idle>-0     (-----) [002] .n.1 24575.158009: cpu_idle: state=4294967295 cpu_id=2
96637  crtc_event:111-254   (  254) [001] d..3 24575.158018: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
96638          <idle>-0     (-----) [002] d..2 24575.158023: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
96639  crtc_event:111-254   (  254) [001] d..4 24575.158040: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
96640     rcu_preempt-7     (    7) [000] d..2 24575.158043: 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
96641          <idle>-0     (-----) [003] .n.1 24575.158046: cpu_idle: state=4294967295 cpu_id=3
96642          <idle>-0     (-----) [003] d..2 24575.158056: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
96643          <idle>-0     (-----) [000] d..1 24575.158060: cpu_idle: state=0 cpu_id=0
96644  crtc_event:111-254   (  254) [001] d..2 24575.158069: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96645          <idle>-0     (-----) [001] d..1 24575.158082: cpu_idle: state=0 cpu_id=1
96646 crtc_commit:111-253   (  253) [002] d..2 24575.158207: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
96647          <idle>-0     (-----) [002] d..1 24575.158218: cpu_idle: state=0 cpu_id=2
96648 kgsl_worker_thr-246   (  246) [003] d..2 24575.158269: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
96649          <idle>-0     (-----) [003] d..1 24575.158279: cpu_idle: state=0 cpu_id=3
96650          <idle>-0     (-----) [003] d.h2 24575.158361: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
96651          <idle>-0     (-----) [003] dnh3 24575.158376: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
96652          <idle>-0     (-----) [003] .n.1 24575.158384: cpu_idle: state=4294967295 cpu_id=3
96653          <idle>-0     (-----) [003] d..2 24575.158393: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
96654 kgsl_worker_thr-246   (  246) [003] d..2 24575.158415: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
96655 kgsl_worker_thr-246   (  246) [003] d..3 24575.158460: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
96656 kgsl_worker_thr-246   (  246) [003] d..2 24575.158476: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
96657          <idle>-0     (-----) [005] ...1 24575.158768: cpu_idle: state=4294967295 cpu_id=5
96658          <idle>-0     (-----) [005] d..1 24575.158772: cpu_idle: state=0 cpu_id=5
96659  kworker/u16:10-23868 (23868) [003] d..2 24575.158916: 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
96660          <idle>-0     (-----) [003] d..1 24575.158930: cpu_idle: state=0 cpu_id=3
96661          <idle>-0     (-----) [000] d.h3 24575.159865: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
96662          <idle>-0     (-----) [000] d.h4 24575.159882: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
96663          <idle>-0     (-----) [003] .n.1 24575.159889: cpu_idle: state=4294967295 cpu_id=3
96664          <idle>-0     (-----) [000] ...1 24575.159898: cpu_idle: state=4294967295 cpu_id=0
96665          <idle>-0     (-----) [003] d..2 24575.159899: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
96666          <idle>-0     (-----) [000] d..1 24575.159903: cpu_idle: state=0 cpu_id=0
96667 kgsl_worker_thr-246   (  246) [003] d..2 24575.159972: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
96668          <idle>-0     (-----) [003] d..1 24575.159983: cpu_idle: state=0 cpu_id=3
96669          <idle>-0     (-----) [000] d.h5 24575.160271: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
96670          <idle>-0     (-----) [000] d.h6 24575.160286: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
96671          <idle>-0     (-----) [002] .n.1 24575.160292: cpu_idle: state=4294967295 cpu_id=2
96672          <idle>-0     (-----) [000] ...1 24575.160299: cpu_idle: state=4294967295 cpu_id=0
96673          <idle>-0     (-----) [002] d..2 24575.160303: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
96674          <idle>-0     (-----) [000] d..1 24575.160304: cpu_idle: state=0 cpu_id=0
96675 crtc_commit:111-253   (  253) [002] d..2 24575.160389: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
96676          <idle>-0     (-----) [002] d..1 24575.160399: cpu_idle: state=0 cpu_id=2
96677          <idle>-0     (-----) [000] d.h5 24575.160574: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
96678          <idle>-0     (-----) [000] d.h6 24575.160588: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
96679          <idle>-0     (-----) [001] .n.1 24575.160594: cpu_idle: state=4294967295 cpu_id=1
96680          <idle>-0     (-----) [001] d..2 24575.160605: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
96681          <idle>-0     (-----) [000] ...1 24575.160608: cpu_idle: state=4294967295 cpu_id=0
96682          <idle>-0     (-----) [000] d..1 24575.160613: cpu_idle: state=0 cpu_id=0
96683  crtc_event:111-254   (  254) [001] d..2 24575.160631: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96684          <idle>-0     (-----) [001] d..1 24575.160641: cpu_idle: state=0 cpu_id=1
96685          <idle>-0     (-----) [002] d.s3 24575.160918: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
96686          <idle>-0     (-----) [002] d.s4 24575.160938: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
96687          <idle>-0     (-----) [001] .n.1 24575.160943: cpu_idle: state=4294967295 cpu_id=1
96688          <idle>-0     (-----) [001] d..2 24575.160955: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
96689          <idle>-0     (-----) [002] ...1 24575.160963: cpu_idle: state=4294967295 cpu_id=2
96690          <idle>-0     (-----) [002] d..1 24575.160970: cpu_idle: state=0 cpu_id=2
96691  crtc_event:111-254   (  254) [001] d..2 24575.160987: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96692          <idle>-0     (-----) [001] d..1 24575.160997: cpu_idle: state=0 cpu_id=1
96693          <idle>-0     (-----) [003] d.h2 24575.162126: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
96694          <idle>-0     (-----) [003] dnh3 24575.162143: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
96695          <idle>-0     (-----) [003] .n.1 24575.162153: cpu_idle: state=4294967295 cpu_id=3
96696          <idle>-0     (-----) [003] d..2 24575.162163: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
96697        DispSync-23904 (23896) [003] d..1 24575.162184: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
96698        DispSync-23904 (23896) [003] d..2 24575.162209: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
96699          <idle>-0     (-----) [001] .n.1 24575.162214: cpu_idle: state=4294967295 cpu_id=1
96700          <idle>-0     (-----) [001] d..2 24575.162224: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
96701        DispSync-23904 (23896) [003] d..2 24575.162242: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
96702          <idle>-0     (-----) [003] d..1 24575.162254: cpu_idle: state=0 cpu_id=3
96703  appEventThread-23905 (23896) [001] d..3 24575.162285: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
96704  appEventThread-23905 (23896) [001] d..4 24575.162314: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
96705          <idle>-0     (-----) [000] .n.1 24575.162319: cpu_idle: state=4294967295 cpu_id=0
96706          <idle>-0     (-----) [000] d..2 24575.162337: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
96707  appEventThread-23905 (23896) [001] d..2 24575.162356: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96708          <idle>-0     (-----) [001] d..1 24575.162372: cpu_idle: state=0 cpu_id=1
96709 s.nexuslauncher-24827 (24827) [000] .... 24575.162752: binder_transaction: transaction=1671144 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
96710 s.nexuslauncher-24827 (24827) [000] d..4 24575.162763: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
96711 s.nexuslauncher-24827 (24827) [000] d..5 24575.162800: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
96712          <idle>-0     (-----) [001] .n.1 24575.162807: cpu_idle: state=4294967295 cpu_id=1
96713          <idle>-0     (-----) [001] d..2 24575.162820: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
96714  Binder:23896_5-25989 (23896) [001] .... 24575.162828: binder_transaction_received: transaction=1671144
96715 s.nexuslauncher-24827 (24827) [000] d..3 24575.162840: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
96716  Binder:23896_5-25989 (23896) [001] d..1 24575.162863: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
96717 s.nexuslauncher-24827 (24827) [000] d..4 24575.162868: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
96718          <idle>-0     (-----) [002] .n.1 24575.162873: cpu_idle: state=4294967295 cpu_id=2
96719          <idle>-0     (-----) [002] d..2 24575.162887: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
96720  Binder:23896_5-25989 (23896) [001] d..2 24575.162890: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
96721          <idle>-0     (-----) [003] .n.1 24575.162896: cpu_idle: state=4294967295 cpu_id=3
96722          <idle>-0     (-----) [003] d..2 24575.162906: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
96723  Binder:23896_5-25989 (23896) [001] d..2 24575.162937: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96724    RenderThread-25194 (24827) [002] d..2 24575.162952: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
96725          <idle>-0     (-----) [001] d..1 24575.162953: cpu_idle: state=0 cpu_id=1
96726  appEventThread-23905 (23896) [003] d..2 24575.162956: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
96727          <idle>-0     (-----) [002] d..1 24575.162967: cpu_idle: state=0 cpu_id=2
96728          <idle>-0     (-----) [003] d..1 24575.162967: cpu_idle: state=0 cpu_id=3
96729 s.nexuslauncher-24827 (24827) [000] d..3 24575.163376: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
96730 s.nexuslauncher-24827 (24827) [000] d..4 24575.163411: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
96731          <idle>-0     (-----) [001] .n.1 24575.163417: cpu_idle: state=4294967295 cpu_id=1
96732          <idle>-0     (-----) [001] d..2 24575.163430: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
96733 s.nexuslauncher-24827 (24827) [000] d..2 24575.163451: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96734          <idle>-0     (-----) [000] d..1 24575.163465: cpu_idle: state=0 cpu_id=0
96735    RenderThread-25194 (24827) [001] d..1 24575.163676: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
96736    RenderThread-25194 (24827) [001] d..2 24575.163700: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
96737          <idle>-0     (-----) [000] .n.1 24575.163707: cpu_idle: state=4294967295 cpu_id=0
96738          <idle>-0     (-----) [000] d..2 24575.163718: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
96739    RenderThread-25194 (24827) [001] .... 24575.163763: binder_transaction: transaction=1671145 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
96740    RenderThread-25194 (24827) [001] ...2 24575.163774: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
96741    RenderThread-25194 (24827) [001] d..4 24575.163777: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
96742    RenderThread-25194 (24827) [001] dn.5 24575.163792: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
96743    RenderThread-25194 (24827) [001] d..2 24575.163803: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
96744  Binder:23896_5-25989 (23896) [001] .... 24575.163811: binder_transaction_received: transaction=1671145
96745 s.nexuslauncher-24827 (24827) [000] d..2 24575.163844: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96746          <idle>-0     (-----) [000] d..1 24575.163855: cpu_idle: state=0 cpu_id=0
96747  Binder:23896_5-25989 (23896) [001] d..2 24575.163859: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
96748    RenderThread-25194 (24827) [001] d..2 24575.163891: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96749          <idle>-0     (-----) [001] d..1 24575.163911: cpu_idle: state=0 cpu_id=1
96750          <idle>-0     (-----) [000] d.s2 24575.164249: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
96751          <idle>-0     (-----) [000] dns3 24575.164269: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
96752          <idle>-0     (-----) [000] dns3 24575.164276: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
96753          <idle>-0     (-----) [000] dns4 24575.164312: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
96754          <idle>-0     (-----) [000] .n.1 24575.164335: cpu_idle: state=4294967295 cpu_id=0
96755          <idle>-0     (-----) [000] d..2 24575.164345: 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
96756     rcu_preempt-7     (    7) [000] d..2 24575.164360: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
96757     rcu_preempt-7     (    7) [000] d..3 24575.164392: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
96758     rcu_preempt-7     (    7) [000] d..2 24575.164405: 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
96759         rcuop/2-29    (   29) [000] d..2 24575.164425: 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
96760  kworker/u16:10-23868 (23868) [000] .... 24575.164460: clk_set_rate: l3_cluster0_vote_clk 300000000
96761  kworker/u16:10-23868 (23868) [000] .... 24575.164471: clk_set_rate: l3_clk 300000000
96762  kworker/u16:10-23868 (23868) [000] d..2 24575.164827: 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
96763          <idle>-0     (-----) [000] d..1 24575.164851: cpu_idle: state=0 cpu_id=0
96764          <idle>-0     (-----) [003] d.s3 24575.164869: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
96765          <idle>-0     (-----) [003] d.s4 24575.164886: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
96766          <idle>-0     (-----) [003] d.s4 24575.164898: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
96767          <idle>-0     (-----) [000] .n.1 24575.164906: cpu_idle: state=4294967295 cpu_id=0
96768          <idle>-0     (-----) [003] ...1 24575.164912: cpu_idle: state=4294967295 cpu_id=3
96769          <idle>-0     (-----) [003] d..1 24575.164918: cpu_idle: state=0 cpu_id=3
96770          <idle>-0     (-----) [000] d..2 24575.164919: 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
96771  kworker/u16:10-23868 (23868) [000] d..2 24575.164955: 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
96772          <idle>-0     (-----) [000] d..1 24575.164967: cpu_idle: state=0 cpu_id=0
96773          <idle>-0     (-----) [001] ...1 24575.165531: cpu_idle: state=4294967295 cpu_id=1
96774          <idle>-0     (-----) [001] d..1 24575.165536: cpu_idle: state=0 cpu_id=1
96775          <idle>-0     (-----) [003] d.h2 24575.166135: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
96776          <idle>-0     (-----) [003] dnh3 24575.166151: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
96777          <idle>-0     (-----) [003] .n.1 24575.166160: cpu_idle: state=4294967295 cpu_id=3
96778          <idle>-0     (-----) [003] d..2 24575.166172: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
96779        DispSync-23904 (23896) [003] d..1 24575.166189: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
96780          <idle>-0     (-----) [000] ...1 24575.166191: cpu_idle: state=4294967295 cpu_id=0
96781          <idle>-0     (-----) [000] d..1 24575.166196: cpu_idle: state=0 cpu_id=0
96782        DispSync-23904 (23896) [003] d..2 24575.166207: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
96783          <idle>-0     (-----) [001] .n.1 24575.166212: cpu_idle: state=4294967295 cpu_id=1
96784          <idle>-0     (-----) [001] d..2 24575.166226: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
96785        DispSync-23904 (23896) [003] d..2 24575.166241: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
96786          <idle>-0     (-----) [003] d..1 24575.166257: cpu_idle: state=0 cpu_id=3
96787   sfEventThread-23906 (23896) [001] d..3 24575.166275: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
96788   sfEventThread-23906 (23896) [001] d..4 24575.166301: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
96789          <idle>-0     (-----) [002] .n.1 24575.166307: cpu_idle: state=4294967295 cpu_id=2
96790          <idle>-0     (-----) [002] d..2 24575.166321: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
96791   sfEventThread-23906 (23896) [001] d..2 24575.166341: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96792          <idle>-0     (-----) [001] d..1 24575.166360: cpu_idle: state=0 cpu_id=1
96793  surfaceflinger-23896 (23896) [002] d..1 24575.166561: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
96794  surfaceflinger-23896 (23896) [002] d..2 24575.166599: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
96795          <idle>-0     (-----) [000] .n.1 24575.166603: cpu_idle: state=4294967295 cpu_id=0
96796          <idle>-0     (-----) [000] d..2 24575.166617: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
96797  Binder:23896_5-25989 (23896) [000] d..2 24575.166661: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96798          <idle>-0     (-----) [000] d..1 24575.166674: cpu_idle: state=0 cpu_id=0
96799  surfaceflinger-23896 (23896) [002] d..2 24575.166788: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
96800  surfaceflinger-23896 (23896) [002] d..3 24575.166837: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
96801  surfaceflinger-23896 (23896) [002] d..1 24575.166876: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
96802  surfaceflinger-23896 (23896) [002] d..2 24575.166897: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
96803          <idle>-0     (-----) [001] .n.1 24575.166904: cpu_idle: state=4294967295 cpu_id=1
96804          <idle>-0     (-----) [001] d..2 24575.166916: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
96805   sfEventThread-23906 (23896) [001] d..2 24575.166957: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96806          <idle>-0     (-----) [001] d..1 24575.166970: cpu_idle: state=0 cpu_id=1
96807  surfaceflinger-23896 (23896) [002] ...1 24575.167142: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
96808  surfaceflinger-23896 (23896) [002] ...1 24575.167155: tracing_mark_write: E|23896
96809  surfaceflinger-23896 (23896) [002] .... 24575.167230: binder_transaction: transaction=1671146 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
96810  surfaceflinger-23896 (23896) [002] ...2 24575.167266: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
96811  surfaceflinger-23896 (23896) [002] d..4 24575.167275: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
96812  surfaceflinger-23896 (23896) [002] d..5 24575.167302: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
96813          <idle>-0     (-----) [003] .n.1 24575.167308: cpu_idle: state=4294967295 cpu_id=3
96814          <idle>-0     (-----) [003] d..2 24575.167321: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
96815  surfaceflinger-23896 (23896) [002] d..2 24575.167328: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
96816  HwBinder:598_3-633   (  598) [003] .... 24575.167333: binder_transaction_received: transaction=1671146
96817         rcuop/2-29    (   29) [002] d..2 24575.167334: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
96818         rcuop/2-29    (   29) [002] d..3 24575.167376: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
96819         rcuop/2-29    (   29) [002] d..2 24575.167388: 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
96820  HwBinder:598_3-633   (  598) [003] ...1 24575.167389: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
96821     rcu_preempt-7     (    7) [002] d..2 24575.167416: 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
96822          <idle>-0     (-----) [002] d..1 24575.167436: cpu_idle: state=0 cpu_id=2
96823  HwBinder:598_3-633   (  598) [003] ...1 24575.167607: tracing_mark_write: B|598|HWCSession::PresentDisplay::
96824  HwBinder:598_3-633   (  598) [003] ...1 24575.167836: tracing_mark_write: B|598|HWDeviceDRM::Commit::
96825  HwBinder:598_3-633   (  598) [003] ...1 24575.167852: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
96826  HwBinder:598_3-633   (  598) [003] d..2 24575.168563: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
96827  HwBinder:598_3-633   (  598) [003] d..3 24575.168590: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
96828          <idle>-0     (-----) [002] .n.1 24575.168597: cpu_idle: state=4294967295 cpu_id=2
96829          <idle>-0     (-----) [002] d..2 24575.168612: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
96830          <idle>-0     (-----) [001] ...1 24575.168645: cpu_idle: state=4294967295 cpu_id=1
96831          <idle>-0     (-----) [001] d..1 24575.168650: cpu_idle: state=0 cpu_id=1
96832  HwBinder:598_3-633   (  598) [003] ...1 24575.168710: tracing_mark_write: E|598
96833  HwBinder:598_3-633   (  598) [003] ...1 24575.168717: tracing_mark_write: E|598
96834  HwBinder:598_3-633   (  598) [003] ...1 24575.168796: tracing_mark_write: E|598
96835  HwBinder:598_3-633   (  598) [003] ...1 24575.168853: tracing_mark_write: E|598
96836  HwBinder:598_3-633   (  598) [003] .... 24575.168870: binder_transaction: transaction=1671147 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
96837  HwBinder:598_3-633   (  598) [003] d..2 24575.168897: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
96838  HwBinder:598_3-633   (  598) [003] d..3 24575.168931: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
96839          <idle>-0     (-----) [000] .n.1 24575.168936: cpu_idle: state=4294967295 cpu_id=0
96840  HwBinder:598_3-633   (  598) [003] .... 24575.168937: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
96841          <idle>-0     (-----) [000] d..2 24575.168949: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
96842  surfaceflinger-23896 (23896) [000] .... 24575.168963: binder_transaction_received: transaction=1671147
96843  HwBinder:598_3-633   (  598) [003] d..2 24575.169045: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
96844          <idle>-0     (-----) [003] d..1 24575.169068: cpu_idle: state=0 cpu_id=3
96845  surfaceflinger-23896 (23896) [000] d..2 24575.169208: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
96846  surfaceflinger-23896 (23896) [000] d..3 24575.169272: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
96847  surfaceflinger-23896 (23896) [000] d..1 24575.169369: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
96848  surfaceflinger-23896 (23896) [000] d..2 24575.169398: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
96849          <idle>-0     (-----) [001] .n.1 24575.169403: cpu_idle: state=4294967295 cpu_id=1
96850          <idle>-0     (-----) [001] d..2 24575.169417: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
96851  Binder:23896_5-25989 (23896) [001] .... 24575.169483: binder_transaction: transaction=1671148 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
96852 crtc_commit:111-253   (  253) [002] d..2 24575.169485: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcuop/0 next_pid=10 next_prio=120
96853  Binder:23896_5-25989 (23896) [001] d..2 24575.169501: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
96854  Binder:23896_5-25989 (23896) [001] d..3 24575.169519: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
96855         rcuop/0-10    (   10) [002] d..2 24575.169519: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
96856  Binder:23896_5-25989 (23896) [001] .... 24575.169525: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
96857          <idle>-0     (-----) [002] d..1 24575.169532: cpu_idle: state=0 cpu_id=2
96858  Binder:23896_5-25989 (23896) [001] d..2 24575.169592: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
96859    RenderThread-25194 (24827) [001] .... 24575.169602: binder_transaction_received: transaction=1671148
96860  surfaceflinger-23896 (23896) [000] d..2 24575.169617: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96861          <idle>-0     (-----) [000] d..1 24575.169639: cpu_idle: state=0 cpu_id=0
96862          <idle>-0     (-----) [002] d.s2 24575.170918: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
96863          <idle>-0     (-----) [002] dns3 24575.170939: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
96864    RenderThread-25194 (24827) [001] d.s2 24575.170941: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
96865          <idle>-0     (-----) [002] .n.1 24575.170959: cpu_idle: state=4294967295 cpu_id=2
96866          <idle>-0     (-----) [002] d..2 24575.170969: 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
96867    RenderThread-25194 (24827) [001] d.s3 24575.171000: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
96868     rcu_preempt-7     (    7) [002] d..2 24575.171019: 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
96869  kworker/u16:10-23868 (23868) [002] d..2 24575.171112: 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
96870          <idle>-0     (-----) [002] d..1 24575.171128: cpu_idle: state=0 cpu_id=2
96871          <idle>-0     (-----) [003] ...1 24575.171270: cpu_idle: state=4294967295 cpu_id=3
96872          <idle>-0     (-----) [003] d..1 24575.171275: cpu_idle: state=0 cpu_id=3
96873    RenderThread-25194 (24827) [001] .... 24575.172565: binder_transaction: transaction=1671149 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
96874    RenderThread-25194 (24827) [001] ...2 24575.172584: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
96875    RenderThread-25194 (24827) [001] d..4 24575.172589: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
96876    RenderThread-25194 (24827) [001] dn.5 24575.172613: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
96877    RenderThread-25194 (24827) [001] d..2 24575.172625: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
96878  Binder:23896_5-25989 (23896) [001] .... 24575.172635: binder_transaction_received: transaction=1671149
96879  Binder:23896_5-25989 (23896) [001] .... 24575.172838: binder_transaction: transaction=1671150 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
96880  Binder:23896_5-25989 (23896) [001] .... 24575.172849: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
96881  Binder:23896_5-25989 (23896) [001] d..2 24575.172918: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
96882    RenderThread-25194 (24827) [001] .... 24575.172930: binder_transaction_received: transaction=1671150
96883    RenderThread-25194 (24827) [001] d..2 24575.173054: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96884          <idle>-0     (-----) [001] d..1 24575.173078: cpu_idle: state=0 cpu_id=1
96885          <idle>-0     (-----) [000] d.h5 24575.174428: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
96886          <idle>-0     (-----) [000] d.h6 24575.174453: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
96887          <idle>-0     (-----) [000] d.h5 24575.174460: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
96888          <idle>-0     (-----) [001] .n.1 24575.174462: cpu_idle: state=4294967295 cpu_id=1
96889          <idle>-0     (-----) [000] d.h6 24575.174474: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
96890          <idle>-0     (-----) [001] d..2 24575.174477: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
96891          <idle>-0     (-----) [002] .n.1 24575.174480: cpu_idle: state=4294967295 cpu_id=2
96892          <idle>-0     (-----) [000] d..2 24575.174490: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
96893          <idle>-0     (-----) [002] d..2 24575.174493: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
96894  crtc_event:111-254   (  254) [001] d..3 24575.174501: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
96895          <idle>-0     (-----) [000] dn.3 24575.174509: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
96896          <idle>-0     (-----) [000] .n.1 24575.174515: cpu_idle: state=4294967295 cpu_id=0
96897  crtc_event:111-254   (  254) [001] d..4 24575.174524: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
96898          <idle>-0     (-----) [003] .n.1 24575.174529: cpu_idle: state=4294967295 cpu_id=3
96899          <idle>-0     (-----) [000] d..2 24575.174532: 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
96900          <idle>-0     (-----) [003] d..2 24575.174543: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
96901     ksoftirqd/0-3     (    3) [000] d.s2 24575.174549: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
96902  crtc_event:111-254   (  254) [001] d..2 24575.174560: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96903          <idle>-0     (-----) [001] d..1 24575.174574: cpu_idle: state=0 cpu_id=1
96904     ksoftirqd/0-3     (    3) [000] d.s3 24575.174595: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
96905          <idle>-0     (-----) [001] .n.1 24575.174601: cpu_idle: state=4294967295 cpu_id=1
96906          <idle>-0     (-----) [001] d..2 24575.174614: 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
96907     ksoftirqd/0-3     (    3) [000] d..2 24575.174628: 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
96908          <idle>-0     (-----) [000] d..1 24575.174669: cpu_idle: state=0 cpu_id=0
96909 crtc_commit:111-253   (  253) [002] d..2 24575.174678: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
96910          <idle>-0     (-----) [000] ...1 24575.174685: cpu_idle: state=4294967295 cpu_id=0
96911          <idle>-0     (-----) [002] d..1 24575.174688: cpu_idle: state=0 cpu_id=2
96912          <idle>-0     (-----) [000] d..1 24575.174690: cpu_idle: state=0 cpu_id=0
96913 kgsl_worker_thr-246   (  246) [003] d..2 24575.174792: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
96914          <idle>-0     (-----) [003] d..1 24575.174807: cpu_idle: state=0 cpu_id=3
96915          <idle>-0     (-----) [003] d.h2 24575.174876: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
96916          <idle>-0     (-----) [003] dnh3 24575.174890: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
96917          <idle>-0     (-----) [003] .n.1 24575.174899: cpu_idle: state=4294967295 cpu_id=3
96918          <idle>-0     (-----) [003] d..2 24575.174909: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
96919 kgsl_worker_thr-246   (  246) [003] d..2 24575.174935: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
96920 kgsl_worker_thr-246   (  246) [003] d..3 24575.174964: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
96921  kworker/u16:10-23868 (23868) [001] d..2 24575.174974: 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
96922 kgsl_worker_thr-246   (  246) [003] d..2 24575.174981: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
96923          <idle>-0     (-----) [001] d..1 24575.174990: cpu_idle: state=0 cpu_id=1
96924  kworker/u16:16-25995 (25995) [003] d.s2 24575.175461: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
96925  kworker/u16:16-25995 (25995) [003] d.s3 24575.175510: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
96926  kworker/u16:16-25995 (25995) [003] d.s3 24575.175519: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
96927  kworker/u16:16-25995 (25995) [003] d..2 24575.175555: 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
96928  kworker/u16:10-23868 (23868) [003] .... 24575.175651: clk_set_rate: l3_cluster0_vote_clk 403200000
96929  kworker/u16:10-23868 (23868) [003] .... 24575.175661: clk_set_rate: l3_clk 403200000
96930  kworker/u16:10-23868 (23868) [003] d..2 24575.175720: 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
96931          <idle>-0     (-----) [003] d..1 24575.175738: cpu_idle: state=0 cpu_id=3
96932          <idle>-0     (-----) [000] d.h3 24575.176359: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
96933          <idle>-0     (-----) [000] d.h4 24575.176377: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
96934          <idle>-0     (-----) [003] .n.1 24575.176384: cpu_idle: state=4294967295 cpu_id=3
96935          <idle>-0     (-----) [000] ...1 24575.176394: cpu_idle: state=4294967295 cpu_id=0
96936          <idle>-0     (-----) [003] d..2 24575.176395: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
96937          <idle>-0     (-----) [000] d..1 24575.176400: cpu_idle: state=0 cpu_id=0
96938 kgsl_worker_thr-246   (  246) [003] d..2 24575.176474: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
96939          <idle>-0     (-----) [003] d..1 24575.176485: cpu_idle: state=0 cpu_id=3
96940          <idle>-0     (-----) [000] d.h5 24575.176741: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
96941          <idle>-0     (-----) [000] d.h6 24575.176756: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
96942          <idle>-0     (-----) [002] .n.1 24575.176762: cpu_idle: state=4294967295 cpu_id=2
96943          <idle>-0     (-----) [002] d..2 24575.176771: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
96944          <idle>-0     (-----) [000] ...1 24575.176771: cpu_idle: state=4294967295 cpu_id=0
96945          <idle>-0     (-----) [000] d..1 24575.176776: cpu_idle: state=0 cpu_id=0
96946 crtc_commit:111-253   (  253) [002] d..2 24575.176856: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
96947          <idle>-0     (-----) [002] d..1 24575.176865: cpu_idle: state=0 cpu_id=2
96948          <idle>-0     (-----) [000] d.h5 24575.177038: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
96949          <idle>-0     (-----) [000] d.h6 24575.177052: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
96950          <idle>-0     (-----) [001] .n.1 24575.177058: cpu_idle: state=4294967295 cpu_id=1
96951          <idle>-0     (-----) [001] d..2 24575.177071: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
96952          <idle>-0     (-----) [000] ...1 24575.177072: cpu_idle: state=4294967295 cpu_id=0
96953          <idle>-0     (-----) [000] d..1 24575.177077: cpu_idle: state=0 cpu_id=0
96954  crtc_event:111-254   (  254) [001] d..2 24575.177100: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96955          <idle>-0     (-----) [001] d..1 24575.177110: cpu_idle: state=0 cpu_id=1
96956          <idle>-0     (-----) [002] d.H3 24575.177692: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
96957          <idle>-0     (-----) [002] d.H3 24575.177711: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
96958          <idle>-0     (-----) [005] dnh2 24575.177716: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
96959          <idle>-0     (-----) [005] .n.1 24575.177720: cpu_idle: state=4294967295 cpu_id=5
96960          <idle>-0     (-----) [005] d..2 24575.177726: 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
96961          <idle>-0     (-----) [002] d.H4 24575.177728: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
96962          <idle>-0     (-----) [003] .n.1 24575.177734: cpu_idle: state=4294967295 cpu_id=3
96963          <idle>-0     (-----) [002] d.s3 24575.177737: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
96964         sugov:4-560   (  560) [005] d..2 24575.177739: 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
96965          <idle>-0     (-----) [005] d..1 24575.177745: cpu_idle: state=0 cpu_id=5
96966          <idle>-0     (-----) [003] d..2 24575.177746: 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
96967          <idle>-0     (-----) [002] d.s4 24575.177752: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
96968          <idle>-0     (-----) [002] d.s2 24575.177755: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
96969          <idle>-0     (-----) [001] .n.1 24575.177758: cpu_idle: state=4294967295 cpu_id=1
96970          <idle>-0     (-----) [001] d..2 24575.177768: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
96971          <idle>-0     (-----) [002] dns3 24575.177774: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
96972         sugov:0-559   (  559) [003] .... 24575.177783: clk_set_rate: pwrcl_clk 825600000
96973          <idle>-0     (-----) [002] .n.1 24575.177786: cpu_idle: state=4294967295 cpu_id=2
96974         sugov:0-559   (  559) [003] .... 24575.177793: clk_set_rate: cpu3_pwrcl_clk 902400000
96975          <idle>-0     (-----) [002] d..2 24575.177797: 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
96976  crtc_event:111-254   (  254) [001] d..2 24575.177798: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96977         sugov:0-559   (  559) [003] .... 24575.177804: clk_set_rate: cpu2_pwrcl_clk 902400000
96978     rcu_preempt-7     (    7) [002] d..2 24575.177805: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
96979          <idle>-0     (-----) [001] d..1 24575.177808: cpu_idle: state=0 cpu_id=1
96980         sugov:0-559   (  559) [003] .... 24575.177814: clk_set_rate: cpu1_pwrcl_clk 902400000
96981         sugov:0-559   (  559) [003] .... 24575.177823: clk_set_rate: cpu0_pwrcl_clk 825600000
96982     rcu_preempt-7     (    7) [002] d..3 24575.177849: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
96983     rcu_preempt-7     (    7) [002] d..2 24575.177886: 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
96984          <idle>-0     (-----) [002] d..1 24575.177902: cpu_idle: state=0 cpu_id=2
96985         sugov:0-559   (  559) [003] .... 24575.177942: cpu_frequency: state=825600 cpu_id=0
96986         sugov:0-559   (  559) [003] .... 24575.177971: cpu_frequency: state=825600 cpu_id=1
96987         sugov:0-559   (  559) [003] .... 24575.177976: cpu_frequency: state=825600 cpu_id=2
96988         sugov:0-559   (  559) [003] .... 24575.177982: cpu_frequency: state=825600 cpu_id=3
96989         sugov:0-559   (  559) [003] d..2 24575.178010: 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
96990         rcuop/2-29    (   29) [003] d..2 24575.178040: 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
96991          <idle>-0     (-----) [003] d..1 24575.178051: cpu_idle: state=0 cpu_id=3
96992          <idle>-0     (-----) [003] d.h2 24575.178600: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
96993          <idle>-0     (-----) [003] dnh3 24575.178616: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
96994          <idle>-0     (-----) [003] .n.1 24575.178627: cpu_idle: state=4294967295 cpu_id=3
96995          <idle>-0     (-----) [003] d..2 24575.178637: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
96996        DispSync-23904 (23896) [003] d..1 24575.178661: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
96997        DispSync-23904 (23896) [003] d..2 24575.178689: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
96998          <idle>-0     (-----) [000] .n.1 24575.178694: cpu_idle: state=4294967295 cpu_id=0
96999          <idle>-0     (-----) [000] d..2 24575.178707: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
97000        DispSync-23904 (23896) [003] d..2 24575.178725: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
97001          <idle>-0     (-----) [003] d..1 24575.178738: cpu_idle: state=0 cpu_id=3
97002          <idle>-0     (-----) [005] ...1 24575.178756: cpu_idle: state=4294967295 cpu_id=5
97003          <idle>-0     (-----) [005] d..1 24575.178758: cpu_idle: state=0 cpu_id=5
97004  appEventThread-23905 (23896) [000] d..3 24575.178767: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
97005  appEventThread-23905 (23896) [000] d..4 24575.178803: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
97006          <idle>-0     (-----) [001] .n.1 24575.178807: cpu_idle: state=4294967295 cpu_id=1
97007          <idle>-0     (-----) [001] d..2 24575.178822: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
97008  appEventThread-23905 (23896) [000] d..2 24575.178847: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97009          <idle>-0     (-----) [000] d..1 24575.178862: cpu_idle: state=0 cpu_id=0
97010 s.nexuslauncher-24827 (24827) [001] .... 24575.179281: binder_transaction: transaction=1671151 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
97011 s.nexuslauncher-24827 (24827) [001] d..4 24575.179293: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
97012 s.nexuslauncher-24827 (24827) [001] d..5 24575.179331: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
97013          <idle>-0     (-----) [000] .n.1 24575.179338: cpu_idle: state=4294967295 cpu_id=0
97014          <idle>-0     (-----) [000] d..2 24575.179352: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
97015  Binder:23896_5-25989 (23896) [000] .... 24575.179362: binder_transaction_received: transaction=1671151
97016 s.nexuslauncher-24827 (24827) [001] d..3 24575.179375: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
97017  Binder:23896_5-25989 (23896) [000] d..1 24575.179398: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
97018 s.nexuslauncher-24827 (24827) [001] d..4 24575.179405: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
97019          <idle>-0     (-----) [002] .n.1 24575.179411: cpu_idle: state=4294967295 cpu_id=2
97020          <idle>-0     (-----) [002] d..2 24575.179424: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
97021  Binder:23896_5-25989 (23896) [000] d..2 24575.179426: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
97022          <idle>-0     (-----) [003] .n.1 24575.179432: cpu_idle: state=4294967295 cpu_id=3
97023          <idle>-0     (-----) [003] d..2 24575.179443: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
97024  Binder:23896_5-25989 (23896) [000] d..2 24575.179476: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97025    RenderThread-25194 (24827) [002] d..2 24575.179491: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
97026          <idle>-0     (-----) [000] d..1 24575.179491: cpu_idle: state=0 cpu_id=0
97027  appEventThread-23905 (23896) [003] d..2 24575.179497: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
97028          <idle>-0     (-----) [002] d..1 24575.179505: cpu_idle: state=0 cpu_id=2
97029          <idle>-0     (-----) [003] d..1 24575.179508: cpu_idle: state=0 cpu_id=3
97030 s.nexuslauncher-24827 (24827) [001] d..3 24575.179937: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
97031 s.nexuslauncher-24827 (24827) [001] d..4 24575.179975: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
97032          <idle>-0     (-----) [000] .n.1 24575.179981: cpu_idle: state=4294967295 cpu_id=0
97033          <idle>-0     (-----) [000] d..2 24575.179995: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
97034 s.nexuslauncher-24827 (24827) [001] d..2 24575.180017: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97035          <idle>-0     (-----) [001] d..1 24575.180039: cpu_idle: state=0 cpu_id=1
97036    RenderThread-25194 (24827) [000] d..1 24575.180254: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
97037    RenderThread-25194 (24827) [000] d..2 24575.180281: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
97038          <idle>-0     (-----) [001] .n.1 24575.180290: cpu_idle: state=4294967295 cpu_id=1
97039          <idle>-0     (-----) [001] d..2 24575.180305: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
97040    RenderThread-25194 (24827) [000] .... 24575.180352: binder_transaction: transaction=1671152 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
97041    RenderThread-25194 (24827) [000] ...2 24575.180362: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
97042    RenderThread-25194 (24827) [000] d..4 24575.180366: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
97043    RenderThread-25194 (24827) [000] dn.5 24575.180383: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
97044    RenderThread-25194 (24827) [000] d..2 24575.180395: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
97045  Binder:23896_5-25989 (23896) [000] .... 24575.180404: binder_transaction_received: transaction=1671152
97046 s.nexuslauncher-24827 (24827) [001] d..2 24575.180439: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97047  Binder:23896_5-25989 (23896) [000] d..2 24575.180454: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
97048          <idle>-0     (-----) [001] d..1 24575.180458: cpu_idle: state=0 cpu_id=1
97049    RenderThread-25194 (24827) [000] d..2 24575.180486: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97050          <idle>-0     (-----) [000] d..1 24575.180506: cpu_idle: state=0 cpu_id=0
97051          <idle>-0     (-----) [000] d..2 24575.181871: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
97052          <idle>-0     (-----) [000] dn.3 24575.181884: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
97053          <idle>-0     (-----) [000] .n.1 24575.181890: cpu_idle: state=4294967295 cpu_id=0
97054          <idle>-0     (-----) [000] d..2 24575.181905: 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
97055     ksoftirqd/0-3     (    3) [000] d..2 24575.181939: 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
97056          <idle>-0     (-----) [000] d..1 24575.181951: cpu_idle: state=0 cpu_id=0
97057          <idle>-0     (-----) [001] ...1 24575.181951: cpu_idle: state=4294967295 cpu_id=1
97058          <idle>-0     (-----) [001] d..1 24575.181956: cpu_idle: state=0 cpu_id=1
97059          <idle>-0     (-----) [003] d.h2 24575.182613: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
97060          <idle>-0     (-----) [003] dnh3 24575.182628: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
97061          <idle>-0     (-----) [003] .n.1 24575.182637: cpu_idle: state=4294967295 cpu_id=3
97062          <idle>-0     (-----) [003] d..2 24575.182648: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
97063        DispSync-23904 (23896) [003] d..1 24575.182664: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
97064        DispSync-23904 (23896) [003] d..2 24575.182681: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
97065          <idle>-0     (-----) [001] .n.1 24575.182686: cpu_idle: state=4294967295 cpu_id=1
97066          <idle>-0     (-----) [001] d..2 24575.182700: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
97067        DispSync-23904 (23896) [003] d..2 24575.182712: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
97068          <idle>-0     (-----) [003] d..1 24575.182727: cpu_idle: state=0 cpu_id=3
97069   sfEventThread-23906 (23896) [001] d..3 24575.182751: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
97070   sfEventThread-23906 (23896) [001] d..4 24575.182779: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
97071          <idle>-0     (-----) [000] .n.1 24575.182783: cpu_idle: state=4294967295 cpu_id=0
97072          <idle>-0     (-----) [000] d..2 24575.182795: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
97073   sfEventThread-23906 (23896) [001] d..2 24575.182820: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97074          <idle>-0     (-----) [001] d..1 24575.182836: cpu_idle: state=0 cpu_id=1
97075  surfaceflinger-23896 (23896) [000] d..1 24575.183032: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
97076  surfaceflinger-23896 (23896) [000] d..2 24575.183067: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
97077          <idle>-0     (-----) [001] .n.1 24575.183073: cpu_idle: state=4294967295 cpu_id=1
97078          <idle>-0     (-----) [001] d..2 24575.183088: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
97079  Binder:23896_5-25989 (23896) [001] d..2 24575.183129: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97080          <idle>-0     (-----) [001] d..1 24575.183143: cpu_idle: state=0 cpu_id=1
97081  surfaceflinger-23896 (23896) [000] d..1 24575.183275: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
97082  surfaceflinger-23896 (23896) [000] d..2 24575.183300: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
97083          <idle>-0     (-----) [001] .n.1 24575.183306: cpu_idle: state=4294967295 cpu_id=1
97084          <idle>-0     (-----) [001] d..2 24575.183316: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
97085   sfEventThread-23906 (23896) [001] d..2 24575.183356: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97086          <idle>-0     (-----) [001] d..1 24575.183369: cpu_idle: state=0 cpu_id=1
97087  surfaceflinger-23896 (23896) [000] ...1 24575.183547: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
97088  surfaceflinger-23896 (23896) [000] ...1 24575.183557: tracing_mark_write: E|23896
97089  surfaceflinger-23896 (23896) [000] .... 24575.183629: binder_transaction: transaction=1671153 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
97090  surfaceflinger-23896 (23896) [000] ...2 24575.183661: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
97091  surfaceflinger-23896 (23896) [000] d..4 24575.183671: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
97092  surfaceflinger-23896 (23896) [000] d..5 24575.183696: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
97093          <idle>-0     (-----) [003] .n.1 24575.183702: cpu_idle: state=4294967295 cpu_id=3
97094          <idle>-0     (-----) [003] d..2 24575.183715: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
97095  HwBinder:598_3-633   (  598) [003] .... 24575.183725: binder_transaction_received: transaction=1671153
97096  surfaceflinger-23896 (23896) [000] d..2 24575.183732: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97097          <idle>-0     (-----) [000] d..1 24575.183751: cpu_idle: state=0 cpu_id=0
97098  HwBinder:598_3-633   (  598) [003] ...1 24575.183778: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
97099  HwBinder:598_3-633   (  598) [003] ...1 24575.183949: tracing_mark_write: B|598|HWCSession::PresentDisplay::
97100  HwBinder:598_3-633   (  598) [003] ...1 24575.184176: tracing_mark_write: B|598|HWDeviceDRM::Commit::
97101  HwBinder:598_3-633   (  598) [003] ...1 24575.184191: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
97102          <idle>-0     (-----) [002] d.s2 24575.184244: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
97103  HwBinder:598_3-633   (  598) [003] d.s2 24575.184255: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
97104          <idle>-0     (-----) [002] dns3 24575.184263: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
97105          <idle>-0     (-----) [002] .n.1 24575.184276: cpu_idle: state=4294967295 cpu_id=2
97106          <idle>-0     (-----) [002] d..2 24575.184289: 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
97107  HwBinder:598_3-633   (  598) [003] d.s3 24575.184309: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
97108     rcu_preempt-7     (    7) [002] d..2 24575.184322: 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
97109  HwBinder:598_3-633   (  598) [003] d.s2 24575.184330: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
97110  HwBinder:598_3-633   (  598) [003] d.s3 24575.184348: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
97111  kworker/u16:10-23868 (23868) [002] .... 24575.184391: clk_set_rate: l3_cluster0_vote_clk 300000000
97112  kworker/u16:10-23868 (23868) [002] .... 24575.184399: clk_set_rate: l3_clk 300000000
97113  kworker/u16:10-23868 (23868) [002] d..2 24575.184767: 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
97114  HwBinder:598_3-633   (  598) [003] d.s1 24575.184768: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
97115          <idle>-0     (-----) [001] ...1 24575.184792: cpu_idle: state=4294967295 cpu_id=1
97116  HwBinder:598_3-633   (  598) [003] d.s2 24575.184794: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
97117  kworker/u16:16-25995 (25995) [002] d..2 24575.184796: 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
97118          <idle>-0     (-----) [001] d..1 24575.184799: cpu_idle: state=0 cpu_id=1
97119          <idle>-0     (-----) [002] d..1 24575.184816: cpu_idle: state=0 cpu_id=2
97120  HwBinder:598_3-633   (  598) [003] d..2 24575.185203: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
97121  HwBinder:598_3-633   (  598) [003] d..3 24575.185235: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
97122          <idle>-0     (-----) [002] .n.1 24575.185241: cpu_idle: state=4294967295 cpu_id=2
97123          <idle>-0     (-----) [002] d..2 24575.185256: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
97124  HwBinder:598_3-633   (  598) [003] ...1 24575.185364: tracing_mark_write: E|598
97125  HwBinder:598_3-633   (  598) [003] ...1 24575.185372: tracing_mark_write: E|598
97126  HwBinder:598_3-633   (  598) [003] ...1 24575.185452: tracing_mark_write: E|598
97127  HwBinder:598_3-633   (  598) [003] ...1 24575.185512: tracing_mark_write: E|598
97128  HwBinder:598_3-633   (  598) [003] .... 24575.185533: binder_transaction: transaction=1671154 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
97129  HwBinder:598_3-633   (  598) [003] d..2 24575.185563: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
97130  HwBinder:598_3-633   (  598) [003] d..3 24575.185586: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
97131  HwBinder:598_3-633   (  598) [003] .... 24575.185593: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
97132          <idle>-0     (-----) [000] .n.1 24575.185595: cpu_idle: state=4294967295 cpu_id=0
97133          <idle>-0     (-----) [000] d..2 24575.185609: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
97134  surfaceflinger-23896 (23896) [000] .... 24575.185621: binder_transaction_received: transaction=1671154
97135  HwBinder:598_3-633   (  598) [003] d..2 24575.185686: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
97136     ksoftirqd/3-34    (   34) [003] d.s2 24575.185710: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
97137     ksoftirqd/3-34    (   34) [003] d.s3 24575.185761: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
97138     ksoftirqd/3-34    (   34) [003] d.s3 24575.185772: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
97139     ksoftirqd/3-34    (   34) [003] d..2 24575.185789: 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
97140  kworker/u16:10-23868 (23868) [003] d..2 24575.185831: 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
97141          <idle>-0     (-----) [003] d..1 24575.185854: cpu_idle: state=0 cpu_id=3
97142  surfaceflinger-23896 (23896) [000] d..1 24575.185936: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
97143  surfaceflinger-23896 (23896) [000] d..2 24575.185968: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
97144          <idle>-0     (-----) [001] .n.1 24575.185972: cpu_idle: state=4294967295 cpu_id=1
97145          <idle>-0     (-----) [001] d..2 24575.185987: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
97146  Binder:23896_5-25989 (23896) [001] .... 24575.186061: binder_transaction: transaction=1671155 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
97147  Binder:23896_5-25989 (23896) [001] d..2 24575.186079: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
97148  Binder:23896_5-25989 (23896) [001] d..3 24575.186108: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
97149  Binder:23896_5-25989 (23896) [001] .... 24575.186113: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
97150 crtc_commit:111-253   (  253) [002] d..2 24575.186163: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
97151          <idle>-0     (-----) [002] d..1 24575.186182: cpu_idle: state=0 cpu_id=2
97152  Binder:23896_5-25989 (23896) [001] d..2 24575.186184: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
97153  surfaceflinger-23896 (23896) [000] d..2 24575.186187: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97154    RenderThread-25194 (24827) [001] .... 24575.186195: binder_transaction_received: transaction=1671155
97155          <idle>-0     (-----) [000] d..1 24575.186210: cpu_idle: state=0 cpu_id=0
97156          <idle>-0     (-----) [003] ...1 24575.187733: cpu_idle: state=4294967295 cpu_id=3
97157          <idle>-0     (-----) [003] d..1 24575.187739: cpu_idle: state=0 cpu_id=3
97158    RenderThread-25194 (24827) [001] .... 24575.189086: binder_transaction: transaction=1671156 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
97159    RenderThread-25194 (24827) [001] ...2 24575.189104: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
97160    RenderThread-25194 (24827) [001] d..4 24575.189111: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
97161    RenderThread-25194 (24827) [001] dn.5 24575.189134: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
97162    RenderThread-25194 (24827) [001] d..2 24575.189147: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
97163  Binder:23896_5-25989 (23896) [001] .... 24575.189157: binder_transaction_received: transaction=1671156
97164  Binder:23896_5-25989 (23896) [001] .... 24575.189341: binder_transaction: transaction=1671157 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
97165  Binder:23896_5-25989 (23896) [001] .... 24575.189353: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
97166  Binder:23896_5-25989 (23896) [001] d..2 24575.189420: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
97167    RenderThread-25194 (24827) [001] .... 24575.189433: binder_transaction_received: transaction=1671157
97168    RenderThread-25194 (24827) [001] d..2 24575.189560: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97169          <idle>-0     (-----) [001] d..1 24575.189585: cpu_idle: state=0 cpu_id=1
97170          <idle>-0     (-----) [000] d.h5 24575.190890: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
97171          <idle>-0     (-----) [000] d.h6 24575.190916: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
97172          <idle>-0     (-----) [002] d.s2 24575.190920: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
97173          <idle>-0     (-----) [001] .n.1 24575.190922: cpu_idle: state=4294967295 cpu_id=1
97174          <idle>-0     (-----) [000] d.h5 24575.190923: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
97175          <idle>-0     (-----) [000] d.h6 24575.190938: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
97176          <idle>-0     (-----) [001] d..2 24575.190939: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
97177          <idle>-0     (-----) [002] dns3 24575.190949: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
97178  crtc_event:111-254   (  254) [001] d..3 24575.190963: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
97179          <idle>-0     (-----) [000] ...1 24575.190971: cpu_idle: state=4294967295 cpu_id=0
97180          <idle>-0     (-----) [002] .n.1 24575.190973: cpu_idle: state=4294967295 cpu_id=2
97181          <idle>-0     (-----) [000] d..1 24575.190979: cpu_idle: state=0 cpu_id=0
97182          <idle>-0     (-----) [002] d..2 24575.190986: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
97183  crtc_event:111-254   (  254) [001] d..4 24575.190989: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
97184          <idle>-0     (-----) [003] .n.1 24575.190995: cpu_idle: state=4294967295 cpu_id=3
97185          <idle>-0     (-----) [003] d..2 24575.191009: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
97186  crtc_event:111-254   (  254) [001] d..2 24575.191026: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97187          <idle>-0     (-----) [001] d..1 24575.191041: cpu_idle: state=0 cpu_id=1
97188 crtc_commit:111-253   (  253) [002] d..2 24575.191168: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
97189     rcu_preempt-7     (    7) [002] d..2 24575.191180: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
97190     rcu_preempt-7     (    7) [002] d..3 24575.191206: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
97191     rcu_preempt-7     (    7) [002] d..2 24575.191223: 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
97192         rcuop/0-10    (   10) [002] d..2 24575.191239: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
97193 kgsl_worker_thr-246   (  246) [003] d..2 24575.191241: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
97194          <idle>-0     (-----) [003] d..1 24575.191253: cpu_idle: state=0 cpu_id=3
97195         rcuop/0-10    (   10) [002] d..3 24575.191267: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
97196          <idle>-0     (-----) [003] .n.1 24575.191272: cpu_idle: state=4294967295 cpu_id=3
97197          <idle>-0     (-----) [003] d..2 24575.191286: 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
97198         rcuop/0-10    (   10) [002] d..2 24575.191290: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
97199          <idle>-0     (-----) [002] d..1 24575.191302: cpu_idle: state=0 cpu_id=2
97200     rcu_preempt-7     (    7) [003] d..2 24575.191317: 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
97201          <idle>-0     (-----) [003] d.h3 24575.191329: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
97202          <idle>-0     (-----) [003] dnh4 24575.191348: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
97203          <idle>-0     (-----) [003] d..2 24575.191361: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
97204 kgsl_worker_thr-246   (  246) [003] d..2 24575.191387: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
97205 kgsl_worker_thr-246   (  246) [003] d..3 24575.191409: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
97206 kgsl_worker_thr-246   (  246) [003] d..2 24575.191425: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
97207  kworker/u16:10-23868 (23868) [003] d..2 24575.191876: 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
97208          <idle>-0     (-----) [003] d..1 24575.191893: cpu_idle: state=0 cpu_id=3
97209          <idle>-0     (-----) [000] d.h3 24575.192835: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
97210          <idle>-0     (-----) [000] d.h4 24575.192854: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
97211          <idle>-0     (-----) [003] .n.1 24575.192861: cpu_idle: state=4294967295 cpu_id=3
97212          <idle>-0     (-----) [003] d..2 24575.192873: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
97213          <idle>-0     (-----) [000] ...1 24575.192874: cpu_idle: state=4294967295 cpu_id=0
97214          <idle>-0     (-----) [000] d..1 24575.192880: cpu_idle: state=0 cpu_id=0
97215 kgsl_worker_thr-246   (  246) [003] d..2 24575.192957: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
97216          <idle>-0     (-----) [003] d..1 24575.192969: cpu_idle: state=0 cpu_id=3
97217          <idle>-0     (-----) [000] d.h5 24575.193206: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
97218          <idle>-0     (-----) [000] d.h6 24575.193222: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
97219          <idle>-0     (-----) [002] .n.1 24575.193230: cpu_idle: state=4294967295 cpu_id=2
97220          <idle>-0     (-----) [000] ...1 24575.193239: cpu_idle: state=4294967295 cpu_id=0
97221          <idle>-0     (-----) [002] d..2 24575.193239: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
97222          <idle>-0     (-----) [000] d..1 24575.193245: cpu_idle: state=0 cpu_id=0
97223 crtc_commit:111-253   (  253) [002] d..2 24575.193334: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
97224          <idle>-0     (-----) [002] d..1 24575.193345: cpu_idle: state=0 cpu_id=2
97225          <idle>-0     (-----) [000] d.h5 24575.193499: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
97226          <idle>-0     (-----) [000] d.h6 24575.193515: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
97227          <idle>-0     (-----) [001] .n.1 24575.193522: cpu_idle: state=4294967295 cpu_id=1
97228          <idle>-0     (-----) [001] d..2 24575.193536: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
97229          <idle>-0     (-----) [000] ...1 24575.193537: cpu_idle: state=4294967295 cpu_id=0
97230          <idle>-0     (-----) [000] d..1 24575.193543: cpu_idle: state=0 cpu_id=0
97231  crtc_event:111-254   (  254) [001] d..2 24575.193564: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97232          <idle>-0     (-----) [001] d..1 24575.193576: cpu_idle: state=0 cpu_id=1
97233          <idle>-0     (-----) [002] d.s3 24575.194251: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
97234          <idle>-0     (-----) [002] d.s4 24575.194273: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
97235          <idle>-0     (-----) [001] .n.1 24575.194278: cpu_idle: state=4294967295 cpu_id=1
97236          <idle>-0     (-----) [002] d.s3 24575.194281: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
97237          <idle>-0     (-----) [001] d..2 24575.194291: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
97238          <idle>-0     (-----) [002] dns4 24575.194321: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
97239  crtc_event:111-254   (  254) [001] d..2 24575.194329: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97240          <idle>-0     (-----) [002] .n.1 24575.194340: cpu_idle: state=4294967295 cpu_id=2
97241          <idle>-0     (-----) [001] d..1 24575.194342: cpu_idle: state=0 cpu_id=1
97242          <idle>-0     (-----) [002] d..2 24575.194352: 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
97243  kworker/u16:10-23868 (23868) [002] d..2 24575.194596: 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
97244          <idle>-0     (-----) [002] d..1 24575.194615: cpu_idle: state=0 cpu_id=2
97245          <idle>-0     (-----) [003] d.H2 24575.195093: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
97246          <idle>-0     (-----) [003] d.H3 24575.195124: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
97247          <idle>-0     (-----) [000] .n.1 24575.195130: cpu_idle: state=4294967295 cpu_id=0
97248          <idle>-0     (-----) [003] d.s3 24575.195143: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
97249          <idle>-0     (-----) [000] d..2 24575.195145: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
97250          <idle>-0     (-----) [003] d.s4 24575.195157: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
97251          <idle>-0     (-----) [003] d.s4 24575.195167: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
97252        DispSync-23904 (23896) [000] d..1 24575.195170: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
97253          <idle>-0     (-----) [002] .n.1 24575.195175: cpu_idle: state=4294967295 cpu_id=2
97254          <idle>-0     (-----) [003] ...1 24575.195179: cpu_idle: state=4294967295 cpu_id=3
97255          <idle>-0     (-----) [003] d..1 24575.195185: cpu_idle: state=0 cpu_id=3
97256          <idle>-0     (-----) [003] .n.1 24575.195189: cpu_idle: state=4294967295 cpu_id=3
97257          <idle>-0     (-----) [002] d..2 24575.195189: 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
97258        DispSync-23904 (23896) [000] d..2 24575.195190: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
97259          <idle>-0     (-----) [003] d..2 24575.195207: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
97260        DispSync-23904 (23896) [000] d..2 24575.195234: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97261          <idle>-0     (-----) [000] d..1 24575.195247: cpu_idle: state=0 cpu_id=0
97262  appEventThread-23905 (23896) [003] d..3 24575.195286: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
97263  appEventThread-23905 (23896) [003] d..4 24575.195319: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
97264          <idle>-0     (-----) [000] .n.1 24575.195325: cpu_idle: state=4294967295 cpu_id=0
97265          <idle>-0     (-----) [000] d..2 24575.195340: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
97266  kworker/u16:10-23868 (23868) [002] d..2 24575.195360: 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
97267          <idle>-0     (-----) [002] d..1 24575.195376: cpu_idle: state=0 cpu_id=2
97268  appEventThread-23905 (23896) [003] d..2 24575.195376: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
97269          <idle>-0     (-----) [003] d..1 24575.195389: cpu_idle: state=0 cpu_id=3
97270 s.nexuslauncher-24827 (24827) [000] .... 24575.195799: binder_transaction: transaction=1671158 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
97271 s.nexuslauncher-24827 (24827) [000] d..4 24575.195812: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
97272 s.nexuslauncher-24827 (24827) [000] d..5 24575.195844: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
97273          <idle>-0     (-----) [001] .n.1 24575.195848: cpu_idle: state=4294967295 cpu_id=1
97274          <idle>-0     (-----) [001] d..2 24575.195863: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
97275  Binder:23896_5-25989 (23896) [001] .... 24575.195874: binder_transaction_received: transaction=1671158
97276 s.nexuslauncher-24827 (24827) [000] d..3 24575.195890: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
97277  Binder:23896_5-25989 (23896) [001] d..1 24575.195917: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
97278 s.nexuslauncher-24827 (24827) [000] d..4 24575.195924: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
97279          <idle>-0     (-----) [002] .n.1 24575.195931: cpu_idle: state=4294967295 cpu_id=2
97280  Binder:23896_5-25989 (23896) [001] d..2 24575.195941: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
97281          <idle>-0     (-----) [002] d..2 24575.195945: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
97282          <idle>-0     (-----) [003] .n.1 24575.195947: cpu_idle: state=4294967295 cpu_id=3
97283          <idle>-0     (-----) [003] d..2 24575.195956: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
97284  Binder:23896_5-25989 (23896) [001] d..2 24575.195997: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97285  appEventThread-23905 (23896) [003] d..2 24575.196002: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
97286    RenderThread-25194 (24827) [002] d..2 24575.196010: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
97287          <idle>-0     (-----) [003] d..1 24575.196011: cpu_idle: state=0 cpu_id=3
97288          <idle>-0     (-----) [001] d..1 24575.196016: cpu_idle: state=0 cpu_id=1
97289          <idle>-0     (-----) [002] d..1 24575.196024: cpu_idle: state=0 cpu_id=2
97290 s.nexuslauncher-24827 (24827) [000] d..3 24575.196455: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
97291 s.nexuslauncher-24827 (24827) [000] d..4 24575.196496: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
97292          <idle>-0     (-----) [001] .n.1 24575.196503: cpu_idle: state=4294967295 cpu_id=1
97293          <idle>-0     (-----) [001] d..2 24575.196518: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
97294 s.nexuslauncher-24827 (24827) [000] d..2 24575.196543: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97295          <idle>-0     (-----) [000] d..1 24575.196564: cpu_idle: state=0 cpu_id=0
97296    RenderThread-25194 (24827) [001] d..1 24575.196782: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
97297    RenderThread-25194 (24827) [001] d..2 24575.196811: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
97298          <idle>-0     (-----) [000] .n.1 24575.196818: cpu_idle: state=4294967295 cpu_id=0
97299          <idle>-0     (-----) [000] d..2 24575.196836: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
97300    RenderThread-25194 (24827) [001] .... 24575.196882: binder_transaction: transaction=1671159 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
97301    RenderThread-25194 (24827) [001] ...2 24575.196894: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
97302    RenderThread-25194 (24827) [001] d..4 24575.196898: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
97303    RenderThread-25194 (24827) [001] dn.5 24575.196918: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
97304    RenderThread-25194 (24827) [001] d..2 24575.196930: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
97305  Binder:23896_5-25989 (23896) [001] .... 24575.196941: binder_transaction_received: transaction=1671159
97306 s.nexuslauncher-24827 (24827) [000] d..2 24575.196981: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97307  Binder:23896_5-25989 (23896) [001] d..2 24575.196993: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
97308          <idle>-0     (-----) [000] d..1 24575.196997: cpu_idle: state=0 cpu_id=0
97309    RenderThread-25194 (24827) [001] d..2 24575.197025: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97310          <idle>-0     (-----) [001] d..1 24575.197048: cpu_idle: state=0 cpu_id=1
97311          <idle>-0     (-----) [003] d.H3 24575.197710: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
97312          <idle>-0     (-----) [003] d.H3 24575.197731: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
97313          <idle>-0     (-----) [005] dnh2 24575.197736: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
97314          <idle>-0     (-----) [005] .n.1 24575.197740: cpu_idle: state=4294967295 cpu_id=5
97315          <idle>-0     (-----) [005] d..2 24575.197745: 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
97316          <idle>-0     (-----) [003] dnH4 24575.197747: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
97317          <idle>-0     (-----) [003] dns2 24575.197756: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
97318         sugov:4-560   (  560) [005] d..2 24575.197760: 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
97319          <idle>-0     (-----) [005] d..1 24575.197767: cpu_idle: state=0 cpu_id=5
97320          <idle>-0     (-----) [003] dns3 24575.197779: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
97321          <idle>-0     (-----) [003] dns3 24575.197788: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
97322          <idle>-0     (-----) [003] dns4 24575.197826: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
97323          <idle>-0     (-----) [003] .n.1 24575.197851: cpu_idle: state=4294967295 cpu_id=3
97324          <idle>-0     (-----) [003] d..2 24575.197861: 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
97325         sugov:0-559   (  559) [003] d..2 24575.197882: 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
97326     rcu_preempt-7     (    7) [003] d..2 24575.197898: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
97327     rcu_preempt-7     (    7) [003] d..3 24575.197939: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
97328     rcu_preempt-7     (    7) [003] d..2 24575.197953: 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
97329         rcuop/0-10    (   10) [003] d..2 24575.197977: 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
97330  kworker/u16:10-23868 (23868) [003] d..2 24575.198070: 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
97331          <idle>-0     (-----) [003] d..1 24575.198089: cpu_idle: state=0 cpu_id=3
97332          <idle>-0     (-----) [005] ...1 24575.198783: cpu_idle: state=4294967295 cpu_id=5
97333          <idle>-0     (-----) [005] d..1 24575.198787: cpu_idle: state=0 cpu_id=5
97334          <idle>-0     (-----) [001] ...1 24575.199072: cpu_idle: state=4294967295 cpu_id=1
97335          <idle>-0     (-----) [001] d..1 24575.199078: cpu_idle: state=0 cpu_id=1
97336          <idle>-0     (-----) [000] d.h2 24575.199079: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
97337          <idle>-0     (-----) [000] dnh3 24575.199099: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
97338          <idle>-0     (-----) [000] .n.1 24575.199111: cpu_idle: state=4294967295 cpu_id=0
97339          <idle>-0     (-----) [000] d..2 24575.199123: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
97340        DispSync-23904 (23896) [000] d..1 24575.199152: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
97341        DispSync-23904 (23896) [000] d..2 24575.199175: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
97342          <idle>-0     (-----) [001] .n.1 24575.199180: cpu_idle: state=4294967295 cpu_id=1
97343          <idle>-0     (-----) [001] d..2 24575.199195: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
97344        DispSync-23904 (23896) [000] d..2 24575.199216: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97345          <idle>-0     (-----) [000] d..1 24575.199233: cpu_idle: state=0 cpu_id=0
97346   sfEventThread-23906 (23896) [001] d..3 24575.199246: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
97347   sfEventThread-23906 (23896) [001] d..4 24575.199272: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
97348          <idle>-0     (-----) [000] .n.1 24575.199279: cpu_idle: state=4294967295 cpu_id=0
97349          <idle>-0     (-----) [000] d..2 24575.199293: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
97350   sfEventThread-23906 (23896) [001] d..2 24575.199314: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97351          <idle>-0     (-----) [001] d..1 24575.199335: cpu_idle: state=0 cpu_id=1
97352  surfaceflinger-23896 (23896) [000] d..1 24575.199553: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
97353  surfaceflinger-23896 (23896) [000] d..2 24575.199587: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
97354          <idle>-0     (-----) [001] .n.1 24575.199592: cpu_idle: state=4294967295 cpu_id=1
97355          <idle>-0     (-----) [001] d..2 24575.199609: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
97356  Binder:23896_5-25989 (23896) [001] d..2 24575.199641: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97357          <idle>-0     (-----) [001] d..1 24575.199655: cpu_idle: state=0 cpu_id=1
97358  surfaceflinger-23896 (23896) [000] d..2 24575.199773: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
97359  surfaceflinger-23896 (23896) [000] d..3 24575.199799: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
97360          <idle>-0     (-----) [003] .n.1 24575.199805: cpu_idle: state=4294967295 cpu_id=3
97361          <idle>-0     (-----) [003] d..2 24575.199820: 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
97362         rcuop/0-10    (   10) [003] d..2 24575.199828: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
97363  surfaceflinger-23896 (23896) [000] d..1 24575.199834: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
97364         rcuop/0-10    (   10) [003] d..3 24575.199847: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
97365  surfaceflinger-23896 (23896) [000] d..2 24575.199856: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
97366         rcuop/0-10    (   10) [003] d..2 24575.199858: 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
97367          <idle>-0     (-----) [001] .n.1 24575.199862: cpu_idle: state=4294967295 cpu_id=1
97368          <idle>-0     (-----) [001] d..2 24575.199873: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
97369     rcu_preempt-7     (    7) [003] d..2 24575.199881: 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
97370          <idle>-0     (-----) [003] d..1 24575.199893: cpu_idle: state=0 cpu_id=3
97371   sfEventThread-23906 (23896) [001] d..2 24575.199916: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97372          <idle>-0     (-----) [001] d..1 24575.199929: cpu_idle: state=0 cpu_id=1
97373  surfaceflinger-23896 (23896) [000] ...1 24575.200114: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
97374  surfaceflinger-23896 (23896) [000] ...1 24575.200128: tracing_mark_write: E|23896
97375  surfaceflinger-23896 (23896) [000] .... 24575.200211: binder_transaction: transaction=1671160 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
97376  surfaceflinger-23896 (23896) [000] ...2 24575.200248: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
97377  surfaceflinger-23896 (23896) [000] d..4 24575.200260: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
97378  surfaceflinger-23896 (23896) [000] d..5 24575.200289: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
97379          <idle>-0     (-----) [003] .n.1 24575.200294: cpu_idle: state=4294967295 cpu_id=3
97380          <idle>-0     (-----) [003] d..2 24575.200305: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
97381  HwBinder:598_3-633   (  598) [003] .... 24575.200321: binder_transaction_received: transaction=1671160
97382  surfaceflinger-23896 (23896) [000] d..2 24575.200329: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97383          <idle>-0     (-----) [000] d..1 24575.200350: cpu_idle: state=0 cpu_id=0
97384  HwBinder:598_3-633   (  598) [003] ...1 24575.200381: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
97385  HwBinder:598_3-633   (  598) [003] ...1 24575.200519: tracing_mark_write: B|598|HWCSession::PresentDisplay::
97386  HwBinder:598_3-633   (  598) [003] ...1 24575.200727: tracing_mark_write: B|598|HWDeviceDRM::Commit::
97387  HwBinder:598_3-633   (  598) [003] ...1 24575.200742: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
97388  HwBinder:598_3-633   (  598) [003] d..2 24575.201487: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
97389  HwBinder:598_3-633   (  598) [003] d..3 24575.201518: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
97390          <idle>-0     (-----) [002] .n.1 24575.201523: cpu_idle: state=4294967295 cpu_id=2
97391          <idle>-0     (-----) [002] d..2 24575.201538: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
97392  HwBinder:598_3-633   (  598) [003] ...1 24575.201638: tracing_mark_write: E|598
97393  HwBinder:598_3-633   (  598) [003] ...1 24575.201645: tracing_mark_write: E|598
97394  HwBinder:598_3-633   (  598) [003] ...1 24575.201721: tracing_mark_write: E|598
97395  HwBinder:598_3-633   (  598) [003] ...1 24575.201781: tracing_mark_write: E|598
97396  HwBinder:598_3-633   (  598) [003] .... 24575.201802: binder_transaction: transaction=1671161 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
97397  HwBinder:598_3-633   (  598) [003] d..2 24575.201832: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
97398  HwBinder:598_3-633   (  598) [003] d..3 24575.201855: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
97399  HwBinder:598_3-633   (  598) [003] .... 24575.201861: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
97400          <idle>-0     (-----) [000] .n.1 24575.201863: cpu_idle: state=4294967295 cpu_id=0
97401          <idle>-0     (-----) [000] d..2 24575.201878: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
97402  surfaceflinger-23896 (23896) [000] .... 24575.201889: binder_transaction_received: transaction=1671161
97403  HwBinder:598_3-633   (  598) [003] d..2 24575.201972: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
97404          <idle>-0     (-----) [003] d..1 24575.201989: cpu_idle: state=0 cpu_id=3
97405  surfaceflinger-23896 (23896) [000] d..1 24575.202191: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
97406  surfaceflinger-23896 (23896) [000] d..2 24575.202220: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
97407          <idle>-0     (-----) [001] .n.1 24575.202226: cpu_idle: state=4294967295 cpu_id=1
97408          <idle>-0     (-----) [001] d..2 24575.202240: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
97409  Binder:23896_5-25989 (23896) [001] .... 24575.202312: binder_transaction: transaction=1671162 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
97410  Binder:23896_5-25989 (23896) [001] d..2 24575.202329: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
97411  Binder:23896_5-25989 (23896) [001] d..3 24575.202349: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
97412  Binder:23896_5-25989 (23896) [001] .... 24575.202354: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
97413  Binder:23896_5-25989 (23896) [001] d..2 24575.202421: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
97414  surfaceflinger-23896 (23896) [000] d..2 24575.202429: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97415    RenderThread-25194 (24827) [001] .... 24575.202430: binder_transaction_received: transaction=1671162
97416 crtc_commit:111-253   (  253) [002] d..2 24575.202443: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
97417          <idle>-0     (-----) [000] d..1 24575.202451: cpu_idle: state=0 cpu_id=0
97418          <idle>-0     (-----) [002] d..1 24575.202461: cpu_idle: state=0 cpu_id=2
97419          <idle>-0     (-----) [003] d.s2 24575.204259: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
97420          <idle>-0     (-----) [003] dns3 24575.204283: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
97421          <idle>-0     (-----) [003] dns3 24575.204289: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
97422          <idle>-0     (-----) [003] dns4 24575.204304: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
97423          <idle>-0     (-----) [003] .n.1 24575.204315: cpu_idle: state=4294967295 cpu_id=3
97424          <idle>-0     (-----) [003] d..2 24575.204327: 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
97425     rcu_preempt-7     (    7) [003] d..2 24575.204351: 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
97426  kworker/u16:10-23868 (23868) [003] .... 24575.204426: clk_set_rate: l3_cluster0_vote_clk 403200000
97427  kworker/u16:10-23868 (23868) [003] .... 24575.204436: clk_set_rate: l3_clk 403200000
97428  kworker/u16:10-23868 (23868) [003] d..2 24575.204763: 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
97429          <idle>-0     (-----) [003] d.s4 24575.204814: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
97430          <idle>-0     (-----) [003] d.s5 24575.204830: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
97431          <idle>-0     (-----) [003] dns5 24575.204836: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
97432          <idle>-0     (-----) [003] d..2 24575.204851: 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
97433  kworker/u16:10-23868 (23868) [003] d..2 24575.204883: 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
97434          <idle>-0     (-----) [003] d..1 24575.204901: cpu_idle: state=0 cpu_id=3
97435    RenderThread-25194 (24827) [001] .... 24575.205137: binder_transaction: transaction=1671163 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
97436    RenderThread-25194 (24827) [001] ...2 24575.205154: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
97437    RenderThread-25194 (24827) [001] d..4 24575.205160: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
97438    RenderThread-25194 (24827) [001] dn.5 24575.205182: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
97439    RenderThread-25194 (24827) [001] d..2 24575.205194: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
97440  Binder:23896_5-25989 (23896) [001] .... 24575.205204: binder_transaction_received: transaction=1671163
97441  Binder:23896_5-25989 (23896) [001] .... 24575.205392: binder_transaction: transaction=1671164 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
97442  Binder:23896_5-25989 (23896) [001] .... 24575.205402: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
97443  Binder:23896_5-25989 (23896) [001] d..2 24575.205467: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
97444    RenderThread-25194 (24827) [001] .... 24575.205478: binder_transaction_received: transaction=1671164
97445    RenderThread-25194 (24827) [001] d..2 24575.205603: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97446          <idle>-0     (-----) [001] d..1 24575.205625: cpu_idle: state=0 cpu_id=1
97447          <idle>-0     (-----) [000] d.h5 24575.207346: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
97448          <idle>-0     (-----) [000] d.h6 24575.207369: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
97449          <idle>-0     (-----) [001] .n.1 24575.207377: cpu_idle: state=4294967295 cpu_id=1
97450          <idle>-0     (-----) [000] d.h5 24575.207377: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
97451          <idle>-0     (-----) [001] d..2 24575.207390: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
97452          <idle>-0     (-----) [000] d.h6 24575.207391: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
97453          <idle>-0     (-----) [002] .n.1 24575.207398: cpu_idle: state=4294967295 cpu_id=2
97454          <idle>-0     (-----) [002] d..2 24575.207410: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
97455          <idle>-0     (-----) [000] ...1 24575.207411: cpu_idle: state=4294967295 cpu_id=0
97456  crtc_event:111-254   (  254) [001] d..3 24575.207412: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
97457          <idle>-0     (-----) [000] d..1 24575.207418: cpu_idle: state=0 cpu_id=0
97458  crtc_event:111-254   (  254) [001] d..4 24575.207436: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
97459          <idle>-0     (-----) [003] .n.1 24575.207443: cpu_idle: state=4294967295 cpu_id=3
97460          <idle>-0     (-----) [003] d..2 24575.207455: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
97461  crtc_event:111-254   (  254) [001] d..2 24575.207464: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97462          <idle>-0     (-----) [001] d..1 24575.207479: cpu_idle: state=0 cpu_id=1
97463 crtc_commit:111-253   (  253) [002] d..2 24575.207636: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
97464          <idle>-0     (-----) [002] d..1 24575.207648: cpu_idle: state=0 cpu_id=2
97465 kgsl_worker_thr-246   (  246) [003] d..2 24575.207713: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
97466          <idle>-0     (-----) [003] d..1 24575.207724: cpu_idle: state=0 cpu_id=3
97467          <idle>-0     (-----) [003] d.h2 24575.207800: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
97468          <idle>-0     (-----) [003] dnh3 24575.207814: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
97469          <idle>-0     (-----) [003] .n.1 24575.207823: cpu_idle: state=4294967295 cpu_id=3
97470          <idle>-0     (-----) [003] d..2 24575.207830: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
97471 kgsl_worker_thr-246   (  246) [003] d..2 24575.207852: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
97472 kgsl_worker_thr-246   (  246) [003] d..3 24575.207873: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
97473 kgsl_worker_thr-246   (  246) [003] d..2 24575.207888: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
97474  kworker/u16:10-23868 (23868) [003] d..2 24575.208352: 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
97475          <idle>-0     (-----) [003] d..1 24575.208363: cpu_idle: state=0 cpu_id=3
97476          <idle>-0     (-----) [000] d.h3 24575.209273: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
97477          <idle>-0     (-----) [000] d.h4 24575.209290: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
97478          <idle>-0     (-----) [003] .n.1 24575.209297: cpu_idle: state=4294967295 cpu_id=3
97479          <idle>-0     (-----) [003] d..2 24575.209306: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
97480          <idle>-0     (-----) [000] ...1 24575.209308: cpu_idle: state=4294967295 cpu_id=0
97481          <idle>-0     (-----) [000] d..1 24575.209313: cpu_idle: state=0 cpu_id=0
97482 kgsl_worker_thr-246   (  246) [003] d..2 24575.209388: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
97483          <idle>-0     (-----) [003] d..1 24575.209396: cpu_idle: state=0 cpu_id=3
97484          <idle>-0     (-----) [000] d.h5 24575.209664: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
97485          <idle>-0     (-----) [000] d.h6 24575.209680: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
97486          <idle>-0     (-----) [002] .n.1 24575.209686: cpu_idle: state=4294967295 cpu_id=2
97487          <idle>-0     (-----) [002] d..2 24575.209695: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
97488          <idle>-0     (-----) [000] ...1 24575.209696: cpu_idle: state=4294967295 cpu_id=0
97489          <idle>-0     (-----) [000] d..1 24575.209701: cpu_idle: state=0 cpu_id=0
97490 crtc_commit:111-253   (  253) [002] d..2 24575.209785: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
97491          <idle>-0     (-----) [002] d..1 24575.209795: cpu_idle: state=0 cpu_id=2
97492          <idle>-0     (-----) [000] d.h5 24575.209961: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
97493          <idle>-0     (-----) [000] d.h6 24575.209977: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
97494          <idle>-0     (-----) [001] .n.1 24575.209984: cpu_idle: state=4294967295 cpu_id=1
97495          <idle>-0     (-----) [001] d..2 24575.209997: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
97496          <idle>-0     (-----) [000] ...1 24575.209997: cpu_idle: state=4294967295 cpu_id=0
97497          <idle>-0     (-----) [000] d..1 24575.210002: cpu_idle: state=0 cpu_id=0
97498  crtc_event:111-254   (  254) [001] d..2 24575.210025: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97499          <idle>-0     (-----) [001] d..1 24575.210036: cpu_idle: state=0 cpu_id=1
97500          <idle>-0     (-----) [003] d.s2 24575.210915: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
97501          <idle>-0     (-----) [002] d.s3 24575.210919: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
97502          <idle>-0     (-----) [003] dns3 24575.210936: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
97503          <idle>-0     (-----) [002] d.s4 24575.210939: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
97504          <idle>-0     (-----) [001] .n.1 24575.210945: cpu_idle: state=4294967295 cpu_id=1
97505          <idle>-0     (-----) [003] .n.1 24575.210953: cpu_idle: state=4294967295 cpu_id=3
97506          <idle>-0     (-----) [001] d..2 24575.210956: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
97507          <idle>-0     (-----) [003] d..2 24575.210963: 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
97508          <idle>-0     (-----) [002] ...1 24575.210964: cpu_idle: state=4294967295 cpu_id=2
97509          <idle>-0     (-----) [002] d..1 24575.210972: cpu_idle: state=0 cpu_id=2
97510     rcu_preempt-7     (    7) [003] d..2 24575.210972: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
97511  crtc_event:111-254   (  254) [001] d..2 24575.210991: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97512          <idle>-0     (-----) [001] d..1 24575.211003: cpu_idle: state=0 cpu_id=1
97513     rcu_preempt-7     (    7) [003] d..3 24575.211020: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
97514          <idle>-0     (-----) [001] .n.1 24575.211025: cpu_idle: state=4294967295 cpu_id=1
97515          <idle>-0     (-----) [001] d..2 24575.211039: 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
97516     rcu_preempt-7     (    7) [003] d..2 24575.211044: 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
97517         rcuop/0-10    (   10) [001] d..2 24575.211054: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
97518          <idle>-0     (-----) [003] d..1 24575.211058: cpu_idle: state=0 cpu_id=3
97519         rcuop/0-10    (   10) [001] d..3 24575.211074: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
97520          <idle>-0     (-----) [003] .n.1 24575.211079: cpu_idle: state=4294967295 cpu_id=3
97521          <idle>-0     (-----) [003] d..2 24575.211093: 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
97522         rcuop/0-10    (   10) [001] d..2 24575.211096: 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
97523          <idle>-0     (-----) [001] d..1 24575.211108: cpu_idle: state=0 cpu_id=1
97524     rcu_preempt-7     (    7) [003] d..2 24575.211121: 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
97525          <idle>-0     (-----) [003] d..1 24575.211131: cpu_idle: state=0 cpu_id=3
97526          <idle>-0     (-----) [000] d.h2 24575.211556: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
97527          <idle>-0     (-----) [000] dnh3 24575.211568: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
97528          <idle>-0     (-----) [000] .n.1 24575.211576: cpu_idle: state=4294967295 cpu_id=0
97529          <idle>-0     (-----) [000] d..2 24575.211588: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
97530        DispSync-23904 (23896) [000] d..1 24575.211610: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
97531        DispSync-23904 (23896) [000] d..2 24575.211628: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
97532          <idle>-0     (-----) [003] .n.1 24575.211634: cpu_idle: state=4294967295 cpu_id=3
97533          <idle>-0     (-----) [003] d..2 24575.211644: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
97534        DispSync-23904 (23896) [000] d..2 24575.211664: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97535          <idle>-0     (-----) [000] d..1 24575.211676: cpu_idle: state=0 cpu_id=0
97536  appEventThread-23905 (23896) [003] d..3 24575.211706: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
97537  appEventThread-23905 (23896) [003] d..4 24575.211734: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
97538          <idle>-0     (-----) [000] .n.1 24575.211740: cpu_idle: state=4294967295 cpu_id=0
97539          <idle>-0     (-----) [000] d..2 24575.211755: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
97540  appEventThread-23905 (23896) [003] d..2 24575.211775: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
97541          <idle>-0     (-----) [003] d..1 24575.211791: cpu_idle: state=0 cpu_id=3
97542 s.nexuslauncher-24827 (24827) [000] .... 24575.212208: binder_transaction: transaction=1671165 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
97543 s.nexuslauncher-24827 (24827) [000] d..4 24575.212220: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
97544 s.nexuslauncher-24827 (24827) [000] d..5 24575.212249: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
97545          <idle>-0     (-----) [001] .n.1 24575.212254: cpu_idle: state=4294967295 cpu_id=1
97546          <idle>-0     (-----) [001] d..2 24575.212268: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
97547  Binder:23896_5-25989 (23896) [001] .... 24575.212279: binder_transaction_received: transaction=1671165
97548 s.nexuslauncher-24827 (24827) [000] d..3 24575.212293: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
97549  Binder:23896_5-25989 (23896) [001] d..1 24575.212319: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
97550 s.nexuslauncher-24827 (24827) [000] d..4 24575.212324: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
97551          <idle>-0     (-----) [002] .n.1 24575.212329: cpu_idle: state=4294967295 cpu_id=2
97552  Binder:23896_5-25989 (23896) [001] d..2 24575.212341: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
97553          <idle>-0     (-----) [002] d..2 24575.212344: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
97554          <idle>-0     (-----) [003] .n.1 24575.212348: cpu_idle: state=4294967295 cpu_id=3
97555          <idle>-0     (-----) [003] d..2 24575.212359: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
97556  Binder:23896_5-25989 (23896) [001] d..2 24575.212391: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97557  appEventThread-23905 (23896) [003] d..2 24575.212401: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
97558    RenderThread-25194 (24827) [002] d..2 24575.212402: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
97559          <idle>-0     (-----) [001] d..1 24575.212410: cpu_idle: state=0 cpu_id=1
97560          <idle>-0     (-----) [003] d..1 24575.212412: cpu_idle: state=0 cpu_id=3
97561          <idle>-0     (-----) [002] d..1 24575.212416: cpu_idle: state=0 cpu_id=2
97562 s.nexuslauncher-24827 (24827) [000] d..3 24575.212864: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
97563 s.nexuslauncher-24827 (24827) [000] d..4 24575.212900: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
97564          <idle>-0     (-----) [001] .n.1 24575.212906: cpu_idle: state=4294967295 cpu_id=1
97565          <idle>-0     (-----) [001] d..2 24575.212920: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
97566 s.nexuslauncher-24827 (24827) [000] d..2 24575.212943: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97567          <idle>-0     (-----) [000] d..1 24575.212962: cpu_idle: state=0 cpu_id=0
97568    RenderThread-25194 (24827) [001] d..1 24575.213181: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
97569    RenderThread-25194 (24827) [001] d..2 24575.213206: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
97570          <idle>-0     (-----) [000] .n.1 24575.213214: cpu_idle: state=4294967295 cpu_id=0
97571          <idle>-0     (-----) [000] d..2 24575.213230: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
97572    RenderThread-25194 (24827) [001] .... 24575.213273: binder_transaction: transaction=1671166 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
97573    RenderThread-25194 (24827) [001] ...2 24575.213283: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
97574    RenderThread-25194 (24827) [001] d..4 24575.213286: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
97575    RenderThread-25194 (24827) [001] dn.5 24575.213303: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
97576    RenderThread-25194 (24827) [001] d..2 24575.213315: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
97577  Binder:23896_5-25989 (23896) [001] .... 24575.213324: binder_transaction_received: transaction=1671166
97578 s.nexuslauncher-24827 (24827) [000] d..2 24575.213366: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97579  Binder:23896_5-25989 (23896) [001] d..2 24575.213372: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
97580          <idle>-0     (-----) [000] d..1 24575.213382: cpu_idle: state=0 cpu_id=0
97581    RenderThread-25194 (24827) [001] d..2 24575.213402: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97582          <idle>-0     (-----) [001] d..1 24575.213425: cpu_idle: state=0 cpu_id=1
97583          <idle>-0     (-----) [001] d..2 24575.215086: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
97584          <idle>-0     (-----) [001] dn.3 24575.215108: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
97585          <idle>-0     (-----) [001] .n.1 24575.215114: cpu_idle: state=4294967295 cpu_id=1
97586          <idle>-0     (-----) [001] d..2 24575.215134: 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
97587     ksoftirqd/1-18    (   18) [001] d.s2 24575.215152: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
97588     ksoftirqd/1-18    (   18) [001] d.s3 24575.215202: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
97589     ksoftirqd/1-18    (   18) [001] d..2 24575.215219: 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
97590  kworker/u16:10-23868 (23868) [001] .... 24575.215316: clk_set_rate: l3_cluster0_vote_clk 300000000
97591  kworker/u16:10-23868 (23868) [001] .... 24575.215329: clk_set_rate: l3_clk 300000000
97592  kworker/u16:10-23868 (23868) [001] d..2 24575.215404: 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
97593          <idle>-0     (-----) [001] d..1 24575.215424: cpu_idle: state=0 cpu_id=1
97594          <idle>-0     (-----) [000] d.h2 24575.215549: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
97595          <idle>-0     (-----) [000] dnh3 24575.215568: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
97596          <idle>-0     (-----) [000] .n.1 24575.215580: cpu_idle: state=4294967295 cpu_id=0
97597          <idle>-0     (-----) [000] d..2 24575.215592: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
97598        DispSync-23904 (23896) [000] d..1 24575.215619: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
97599        DispSync-23904 (23896) [000] d..2 24575.215639: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
97600          <idle>-0     (-----) [001] .n.1 24575.215646: cpu_idle: state=4294967295 cpu_id=1
97601          <idle>-0     (-----) [001] d..2 24575.215658: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
97602        DispSync-23904 (23896) [000] d..2 24575.215678: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97603          <idle>-0     (-----) [000] d..1 24575.215696: cpu_idle: state=0 cpu_id=0
97604   sfEventThread-23906 (23896) [001] d..3 24575.215713: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
97605   sfEventThread-23906 (23896) [001] d..4 24575.215740: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
97606          <idle>-0     (-----) [000] .n.1 24575.215747: cpu_idle: state=4294967295 cpu_id=0
97607          <idle>-0     (-----) [000] d..2 24575.215760: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
97608   sfEventThread-23906 (23896) [001] d..2 24575.215783: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97609          <idle>-0     (-----) [001] d..1 24575.215803: cpu_idle: state=0 cpu_id=1
97610  surfaceflinger-23896 (23896) [000] d..1 24575.216013: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
97611  surfaceflinger-23896 (23896) [000] d..2 24575.216042: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
97612          <idle>-0     (-----) [001] .n.1 24575.216049: cpu_idle: state=4294967295 cpu_id=1
97613          <idle>-0     (-----) [001] d..2 24575.216064: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
97614  Binder:23896_5-25989 (23896) [001] d..2 24575.216097: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97615          <idle>-0     (-----) [001] d..1 24575.216110: cpu_idle: state=0 cpu_id=1
97616  surfaceflinger-23896 (23896) [000] d..1 24575.216270: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
97617  surfaceflinger-23896 (23896) [000] d..2 24575.216297: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
97618          <idle>-0     (-----) [001] .n.1 24575.216303: cpu_idle: state=4294967295 cpu_id=1
97619          <idle>-0     (-----) [001] d..2 24575.216314: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
97620   sfEventThread-23906 (23896) [001] d..2 24575.216357: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97621          <idle>-0     (-----) [001] d..1 24575.216371: cpu_idle: state=0 cpu_id=1
97622  surfaceflinger-23896 (23896) [000] ...1 24575.216557: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
97623  surfaceflinger-23896 (23896) [000] ...1 24575.216568: tracing_mark_write: E|23896
97624  surfaceflinger-23896 (23896) [000] .... 24575.216643: binder_transaction: transaction=1671167 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
97625  surfaceflinger-23896 (23896) [000] ...2 24575.216679: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
97626  surfaceflinger-23896 (23896) [000] d..4 24575.216688: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
97627  surfaceflinger-23896 (23896) [000] d..5 24575.216714: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
97628          <idle>-0     (-----) [003] .n.1 24575.216720: cpu_idle: state=4294967295 cpu_id=3
97629          <idle>-0     (-----) [003] d..2 24575.216733: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
97630  HwBinder:598_3-633   (  598) [003] .... 24575.216747: binder_transaction_received: transaction=1671167
97631  surfaceflinger-23896 (23896) [000] d..2 24575.216755: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97632          <idle>-0     (-----) [000] d..1 24575.216777: cpu_idle: state=0 cpu_id=0
97633  HwBinder:598_3-633   (  598) [003] ...1 24575.216805: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
97634  HwBinder:598_3-633   (  598) [003] ...1 24575.216977: tracing_mark_write: B|598|HWCSession::PresentDisplay::
97635  HwBinder:598_3-633   (  598) [003] ...1 24575.217206: tracing_mark_write: B|598|HWDeviceDRM::Commit::
97636  HwBinder:598_3-633   (  598) [003] ...1 24575.217222: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
97637  HwBinder:598_3-633   (  598) [003] d.H2 24575.217711: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
97638  HwBinder:598_3-633   (  598) [003] d.H2 24575.217734: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
97639          <idle>-0     (-----) [005] dnh2 24575.217741: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
97640          <idle>-0     (-----) [005] .n.1 24575.217745: cpu_idle: state=4294967295 cpu_id=5
97641          <idle>-0     (-----) [005] d..2 24575.217750: 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
97642  HwBinder:598_3-633   (  598) [003] d.H3 24575.217764: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
97643          <idle>-0     (-----) [002] .n.1 24575.217769: cpu_idle: state=4294967295 cpu_id=2
97644         sugov:4-560   (  560) [005] d..2 24575.217770: 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
97645  HwBinder:598_3-633   (  598) [003] d.s1 24575.217772: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
97646          <idle>-0     (-----) [005] d..1 24575.217777: cpu_idle: state=0 cpu_id=5
97647          <idle>-0     (-----) [002] d..2 24575.217784: 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
97648  HwBinder:598_3-633   (  598) [003] d.s2 24575.217820: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
97649         sugov:0-559   (  559) [002] d..2 24575.217832: 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
97650     rcu_preempt-7     (    7) [002] d..2 24575.217865: 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
97651          <idle>-0     (-----) [002] d..1 24575.217879: cpu_idle: state=0 cpu_id=2
97652          <idle>-0     (-----) [001] ...1 24575.217904: cpu_idle: state=4294967295 cpu_id=1
97653          <idle>-0     (-----) [001] d..1 24575.217910: cpu_idle: state=0 cpu_id=1
97654  HwBinder:598_3-633   (  598) [003] d..2 24575.218296: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
97655  HwBinder:598_3-633   (  598) [003] d..3 24575.218327: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
97656          <idle>-0     (-----) [002] .n.1 24575.218331: cpu_idle: state=4294967295 cpu_id=2
97657          <idle>-0     (-----) [002] d..2 24575.218343: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
97658  HwBinder:598_3-633   (  598) [003] ...1 24575.218453: tracing_mark_write: E|598
97659  HwBinder:598_3-633   (  598) [003] ...1 24575.218461: tracing_mark_write: E|598
97660  HwBinder:598_3-633   (  598) [003] ...1 24575.218540: tracing_mark_write: E|598
97661  HwBinder:598_3-633   (  598) [003] ...1 24575.218601: tracing_mark_write: E|598
97662  HwBinder:598_3-633   (  598) [003] .... 24575.218620: binder_transaction: transaction=1671168 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
97663  HwBinder:598_3-633   (  598) [003] d..2 24575.218652: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
97664  HwBinder:598_3-633   (  598) [003] d..3 24575.218677: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
97665          <idle>-0     (-----) [000] .n.1 24575.218684: cpu_idle: state=4294967295 cpu_id=0
97666  HwBinder:598_3-633   (  598) [003] .... 24575.218684: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
97667          <idle>-0     (-----) [000] d..2 24575.218699: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
97668  surfaceflinger-23896 (23896) [000] .... 24575.218711: binder_transaction_received: transaction=1671168
97669          <idle>-0     (-----) [005] ...1 24575.218787: cpu_idle: state=4294967295 cpu_id=5
97670          <idle>-0     (-----) [005] d..1 24575.218790: cpu_idle: state=0 cpu_id=5
97671  HwBinder:598_3-633   (  598) [003] d..2 24575.218791: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
97672          <idle>-0     (-----) [003] d..1 24575.218815: cpu_idle: state=0 cpu_id=3
97673  surfaceflinger-23896 (23896) [000] d..1 24575.219027: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
97674  surfaceflinger-23896 (23896) [000] d..2 24575.219059: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
97675          <idle>-0     (-----) [001] .n.1 24575.219063: cpu_idle: state=4294967295 cpu_id=1
97676          <idle>-0     (-----) [001] d..2 24575.219079: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
97677  Binder:23896_5-25989 (23896) [001] .... 24575.219156: binder_transaction: transaction=1671169 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
97678  Binder:23896_5-25989 (23896) [001] d..2 24575.219173: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
97679  Binder:23896_5-25989 (23896) [001] d..3 24575.219193: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
97680  Binder:23896_5-25989 (23896) [001] .... 24575.219198: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
97681 crtc_commit:111-253   (  253) [002] d..2 24575.219233: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
97682          <idle>-0     (-----) [002] d..1 24575.219251: cpu_idle: state=0 cpu_id=2
97683  Binder:23896_5-25989 (23896) [001] d..2 24575.219267: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
97684  surfaceflinger-23896 (23896) [000] d..2 24575.219272: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97685    RenderThread-25194 (24827) [001] .... 24575.219277: binder_transaction_received: transaction=1671169
97686          <idle>-0     (-----) [000] d..1 24575.219295: cpu_idle: state=0 cpu_id=0
97687    RenderThread-25194 (24827) [001] d.s2 24575.220942: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
97688    RenderThread-25194 (24827) [001] d.s3 24575.220975: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
97689    RenderThread-25194 (24827) [001] .... 24575.222221: binder_transaction: transaction=1671170 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
97690    RenderThread-25194 (24827) [001] ...2 24575.222239: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
97691    RenderThread-25194 (24827) [001] d..4 24575.222244: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
97692    RenderThread-25194 (24827) [001] d..5 24575.222283: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
97693          <idle>-0     (-----) [000] .n.1 24575.222290: cpu_idle: state=4294967295 cpu_id=0
97694    RenderThread-25194 (24827) [001] d..2 24575.222308: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
97695          <idle>-0     (-----) [000] d..2 24575.222310: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
97696  Binder:23896_5-25989 (23896) [000] .... 24575.222321: binder_transaction_received: transaction=1671170
97697  Binder:23896_5-25989 (23896) [000] .... 24575.222491: binder_transaction: transaction=1671171 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
97698  Binder:23896_5-25989 (23896) [000] d..2 24575.222502: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
97699  Binder:23896_5-25989 (23896) [000] d..3 24575.222533: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
97700  Binder:23896_5-25989 (23896) [000] .... 24575.222539: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
97701  kworker/u16:10-23868 (23868) [001] d..2 24575.222594: 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
97702  Binder:23896_5-25989 (23896) [000] d..2 24575.222602: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
97703          <idle>-0     (-----) [003] d.s3 24575.222612: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
97704    RenderThread-25194 (24827) [000] .... 24575.222614: binder_transaction_received: transaction=1671171
97705          <idle>-0     (-----) [001] d..1 24575.222617: cpu_idle: state=0 cpu_id=1
97706          <idle>-0     (-----) [003] d.s4 24575.222656: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
97707          <idle>-0     (-----) [003] dns4 24575.222664: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
97708          <idle>-0     (-----) [003] .n.1 24575.222674: cpu_idle: state=4294967295 cpu_id=3
97709          <idle>-0     (-----) [003] d..2 24575.222691: 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
97710  kworker/u16:10-23868 (23868) [003] d..2 24575.222739: 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
97711    RenderThread-25194 (24827) [000] d..2 24575.222745: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97712          <idle>-0     (-----) [003] d..1 24575.222753: cpu_idle: state=0 cpu_id=3
97713          <idle>-0     (-----) [000] d..1 24575.222767: cpu_idle: state=0 cpu_id=0
97714          <idle>-0     (-----) [000] d.h5 24575.223816: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
97715          <idle>-0     (-----) [000] d.h6 24575.223843: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
97716          <idle>-0     (-----) [001] .n.1 24575.223851: cpu_idle: state=4294967295 cpu_id=1
97717          <idle>-0     (-----) [000] d.h5 24575.223851: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
97718          <idle>-0     (-----) [001] d..2 24575.223864: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
97719          <idle>-0     (-----) [000] d.h6 24575.223865: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
97720          <idle>-0     (-----) [002] .n.1 24575.223872: cpu_idle: state=4294967295 cpu_id=2
97721          <idle>-0     (-----) [002] d..2 24575.223885: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
97722          <idle>-0     (-----) [000] ...1 24575.223888: cpu_idle: state=4294967295 cpu_id=0
97723  crtc_event:111-254   (  254) [001] d..3 24575.223889: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
97724          <idle>-0     (-----) [000] d..1 24575.223894: cpu_idle: state=0 cpu_id=0
97725  crtc_event:111-254   (  254) [001] d..4 24575.223916: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
97726          <idle>-0     (-----) [003] .n.1 24575.223923: cpu_idle: state=4294967295 cpu_id=3
97727          <idle>-0     (-----) [003] d..2 24575.223934: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
97728  crtc_event:111-254   (  254) [001] d..2 24575.223948: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97729          <idle>-0     (-----) [001] d..1 24575.223963: cpu_idle: state=0 cpu_id=1
97730 crtc_commit:111-253   (  253) [002] d..2 24575.224068: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
97731          <idle>-0     (-----) [002] d..1 24575.224079: cpu_idle: state=0 cpu_id=2
97732 kgsl_worker_thr-246   (  246) [003] d..2 24575.224162: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
97733          <idle>-0     (-----) [003] d..1 24575.224175: cpu_idle: state=0 cpu_id=3
97734          <idle>-0     (-----) [003] d.h2 24575.224248: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
97735          <idle>-0     (-----) [002] d.s3 24575.224254: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
97736          <idle>-0     (-----) [003] dnh3 24575.224265: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
97737          <idle>-0     (-----) [003] .n.1 24575.224276: cpu_idle: state=4294967295 cpu_id=3
97738          <idle>-0     (-----) [002] d.s4 24575.224276: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
97739          <idle>-0     (-----) [002] d.s2 24575.224281: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
97740          <idle>-0     (-----) [001] .n.1 24575.224283: cpu_idle: state=4294967295 cpu_id=1
97741          <idle>-0     (-----) [003] d..2 24575.224288: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
97742          <idle>-0     (-----) [001] d..2 24575.224296: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
97743          <idle>-0     (-----) [002] dns3 24575.224303: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
97744          <idle>-0     (-----) [002] dns3 24575.224310: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
97745  crtc_event:111-254   (  254) [001] d..2 24575.224333: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97746          <idle>-0     (-----) [001] d..1 24575.224347: cpu_idle: state=0 cpu_id=1
97747          <idle>-0     (-----) [002] dns4 24575.224355: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
97748          <idle>-0     (-----) [001] .n.1 24575.224362: cpu_idle: state=4294967295 cpu_id=1
97749          <idle>-0     (-----) [001] d..2 24575.224376: 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
97750  kworker/u16:10-23868 (23868) [001] d..2 24575.224383: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
97751          <idle>-0     (-----) [002] .n.1 24575.224383: cpu_idle: state=4294967295 cpu_id=2
97752 kgsl_worker_thr-246   (  246) [003] d..2 24575.224389: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
97753          <idle>-0     (-----) [002] d..2 24575.224400: 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
97754          <idle>-0     (-----) [003] d..1 24575.224401: cpu_idle: state=0 cpu_id=3
97755     rcu_preempt-7     (    7) [002] d..2 24575.224410: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
97756  kworker/u16:10-23868 (23868) [001] d..3 24575.224413: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
97757     rcu_preempt-7     (    7) [002] d..3 24575.224455: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
97758     rcu_preempt-7     (    7) [002] d..2 24575.224479: 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
97759         rcuop/0-10    (   10) [002] d..2 24575.224506: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
97760  kworker/u16:10-23868 (23868) [001] .... 24575.224518: clk_set_rate: l3_cluster0_vote_clk 403200000
97761         rcuop/0-10    (   10) [002] d..3 24575.224522: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
97762  kworker/u16:10-23868 (23868) [001] .... 24575.224526: clk_set_rate: l3_clk 403200000
97763         rcuop/0-10    (   10) [002] d..2 24575.224533: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
97764  kworker/u16:16-25995 (25995) [002] d..2 24575.225016: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
97765     rcu_preempt-7     (    7) [002] d..2 24575.225045: 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
97766          <idle>-0     (-----) [002] d..1 24575.225061: cpu_idle: state=0 cpu_id=2
97767  kworker/u16:10-23868 (23868) [001] d..2 24575.225181: 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
97768          <idle>-0     (-----) [001] d..1 24575.225201: cpu_idle: state=0 cpu_id=1
97769          <idle>-0     (-----) [003] d.s3 24575.225664: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
97770          <idle>-0     (-----) [003] d.s4 24575.225703: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
97771          <idle>-0     (-----) [003] dns4 24575.225709: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
97772          <idle>-0     (-----) [003] .n.1 24575.225720: cpu_idle: state=4294967295 cpu_id=3
97773          <idle>-0     (-----) [003] d..2 24575.225733: 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
97774          <idle>-0     (-----) [000] d.h3 24575.225754: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
97775          <idle>-0     (-----) [000] d.h4 24575.225773: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
97776  kworker/u16:10-23868 (23868) [003] d..2 24575.225781: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
97777          <idle>-0     (-----) [000] ...1 24575.225799: cpu_idle: state=4294967295 cpu_id=0
97778          <idle>-0     (-----) [000] d..1 24575.225804: cpu_idle: state=0 cpu_id=0
97779 kgsl_worker_thr-246   (  246) [003] d..2 24575.225857: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
97780          <idle>-0     (-----) [003] d..1 24575.225872: cpu_idle: state=0 cpu_id=3
97781          <idle>-0     (-----) [000] d.h5 24575.226126: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
97782          <idle>-0     (-----) [000] d.h6 24575.226141: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
97783          <idle>-0     (-----) [002] .n.1 24575.226147: cpu_idle: state=4294967295 cpu_id=2
97784          <idle>-0     (-----) [000] ...1 24575.226156: cpu_idle: state=4294967295 cpu_id=0
97785          <idle>-0     (-----) [002] d..2 24575.226159: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
97786          <idle>-0     (-----) [000] d..1 24575.226160: cpu_idle: state=0 cpu_id=0
97787 crtc_commit:111-253   (  253) [002] d..2 24575.226251: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
97788          <idle>-0     (-----) [002] d..1 24575.226264: cpu_idle: state=0 cpu_id=2
97789          <idle>-0     (-----) [000] d.h5 24575.226424: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
97790          <idle>-0     (-----) [000] d.h6 24575.226439: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
97791          <idle>-0     (-----) [001] .n.1 24575.226447: cpu_idle: state=4294967295 cpu_id=1
97792          <idle>-0     (-----) [000] ...1 24575.226458: cpu_idle: state=4294967295 cpu_id=0
97793          <idle>-0     (-----) [001] d..2 24575.226459: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
97794          <idle>-0     (-----) [000] d..1 24575.226463: cpu_idle: state=0 cpu_id=0
97795  crtc_event:111-254   (  254) [001] d..2 24575.226492: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97796          <idle>-0     (-----) [001] d..1 24575.226503: cpu_idle: state=0 cpu_id=1
97797          <idle>-0     (-----) [000] d.h2 24575.228027: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
97798          <idle>-0     (-----) [000] dnh3 24575.228040: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
97799          <idle>-0     (-----) [000] .n.1 24575.228048: cpu_idle: state=4294967295 cpu_id=0
97800          <idle>-0     (-----) [000] d..2 24575.228062: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
97801        DispSync-23904 (23896) [000] d..1 24575.228085: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
97802        DispSync-23904 (23896) [000] d..2 24575.228103: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
97803          <idle>-0     (-----) [003] .n.1 24575.228110: cpu_idle: state=4294967295 cpu_id=3
97804          <idle>-0     (-----) [003] d..2 24575.228124: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
97805        DispSync-23904 (23896) [000] d..2 24575.228149: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97806          <idle>-0     (-----) [000] d..2 24575.228154: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
97807          <idle>-0     (-----) [000] dn.3 24575.228169: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
97808          <idle>-0     (-----) [000] d..2 24575.228179: 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
97809  appEventThread-23905 (23896) [003] d..3 24575.228183: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
97810     ksoftirqd/0-3     (    3) [000] d..2 24575.228216: 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
97811  appEventThread-23905 (23896) [003] d..4 24575.228220: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
97812          <idle>-0     (-----) [001] .n.1 24575.228226: cpu_idle: state=4294967295 cpu_id=1
97813          <idle>-0     (-----) [000] d..1 24575.228229: cpu_idle: state=0 cpu_id=0
97814          <idle>-0     (-----) [001] d..2 24575.228242: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
97815  appEventThread-23905 (23896) [003] d..2 24575.228265: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
97816          <idle>-0     (-----) [003] d..1 24575.228282: cpu_idle: state=0 cpu_id=3
97817 s.nexuslauncher-24827 (24827) [001] .... 24575.228701: binder_transaction: transaction=1671172 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
97818 s.nexuslauncher-24827 (24827) [001] d..4 24575.228714: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
97819 s.nexuslauncher-24827 (24827) [001] d..5 24575.228745: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
97820          <idle>-0     (-----) [000] .n.1 24575.228749: cpu_idle: state=4294967295 cpu_id=0
97821          <idle>-0     (-----) [000] d..2 24575.228763: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
97822  Binder:23896_5-25989 (23896) [000] .... 24575.228772: binder_transaction_received: transaction=1671172
97823 s.nexuslauncher-24827 (24827) [001] d..3 24575.228786: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
97824  Binder:23896_5-25989 (23896) [000] d..1 24575.228809: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
97825 s.nexuslauncher-24827 (24827) [001] d..4 24575.228817: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
97826          <idle>-0     (-----) [002] .n.1 24575.228824: cpu_idle: state=4294967295 cpu_id=2
97827  Binder:23896_5-25989 (23896) [000] d..2 24575.228829: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
97828          <idle>-0     (-----) [003] .n.1 24575.228835: cpu_idle: state=4294967295 cpu_id=3
97829          <idle>-0     (-----) [002] d..2 24575.228839: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
97830          <idle>-0     (-----) [003] d..2 24575.228847: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
97831  Binder:23896_5-25989 (23896) [000] d..2 24575.228876: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97832          <idle>-0     (-----) [000] d..1 24575.228890: cpu_idle: state=0 cpu_id=0
97833  appEventThread-23905 (23896) [003] d..2 24575.228893: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
97834    RenderThread-25194 (24827) [002] d..2 24575.228897: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
97835          <idle>-0     (-----) [003] d..1 24575.228907: cpu_idle: state=0 cpu_id=3
97836          <idle>-0     (-----) [002] d..1 24575.228908: cpu_idle: state=0 cpu_id=2
97837 s.nexuslauncher-24827 (24827) [001] d..3 24575.229345: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
97838 s.nexuslauncher-24827 (24827) [001] d..4 24575.229383: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
97839          <idle>-0     (-----) [000] .n.1 24575.229388: cpu_idle: state=4294967295 cpu_id=0
97840          <idle>-0     (-----) [000] d..2 24575.229402: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
97841 s.nexuslauncher-24827 (24827) [001] d..2 24575.229425: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97842          <idle>-0     (-----) [001] d..1 24575.229446: cpu_idle: state=0 cpu_id=1
97843    RenderThread-25194 (24827) [000] d..1 24575.229669: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
97844    RenderThread-25194 (24827) [000] d..2 24575.229698: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
97845          <idle>-0     (-----) [001] .n.1 24575.229705: cpu_idle: state=4294967295 cpu_id=1
97846          <idle>-0     (-----) [001] d..2 24575.229721: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
97847    RenderThread-25194 (24827) [000] .... 24575.229766: binder_transaction: transaction=1671173 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
97848    RenderThread-25194 (24827) [000] ...2 24575.229777: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
97849    RenderThread-25194 (24827) [000] d..4 24575.229781: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
97850    RenderThread-25194 (24827) [000] dn.5 24575.229796: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
97851    RenderThread-25194 (24827) [000] d..2 24575.229808: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
97852  Binder:23896_5-25989 (23896) [000] .... 24575.229818: binder_transaction_received: transaction=1671173
97853 s.nexuslauncher-24827 (24827) [001] d..2 24575.229854: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97854  Binder:23896_5-25989 (23896) [000] d..2 24575.229867: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
97855          <idle>-0     (-----) [001] d..1 24575.229872: cpu_idle: state=0 cpu_id=1
97856    RenderThread-25194 (24827) [000] d..2 24575.229899: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97857          <idle>-0     (-----) [000] d..1 24575.229916: cpu_idle: state=0 cpu_id=0
97858          <idle>-0     (-----) [003] ...1 24575.230671: cpu_idle: state=4294967295 cpu_id=3
97859          <idle>-0     (-----) [003] d..1 24575.230675: cpu_idle: state=0 cpu_id=3
97860          <idle>-0     (-----) [002] d.s2 24575.230913: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
97861          <idle>-0     (-----) [002] dns3 24575.230934: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
97862          <idle>-0     (-----) [002] .n.1 24575.230951: cpu_idle: state=4294967295 cpu_id=2
97863          <idle>-0     (-----) [002] d..2 24575.230962: 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
97864     rcu_preempt-7     (    7) [002] d..2 24575.230975: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
97865     rcu_preempt-7     (    7) [002] d..3 24575.230991: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
97866     rcu_preempt-7     (    7) [002] d..2 24575.231003: 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
97867         rcuop/0-10    (   10) [002] d..2 24575.231041: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
97868          <idle>-0     (-----) [002] d..1 24575.231055: cpu_idle: state=0 cpu_id=2
97869          <idle>-0     (-----) [001] ...1 24575.231345: cpu_idle: state=4294967295 cpu_id=1
97870          <idle>-0     (-----) [001] d..1 24575.231351: cpu_idle: state=0 cpu_id=1
97871          <idle>-0     (-----) [000] d.h2 24575.232026: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
97872          <idle>-0     (-----) [000] dnh3 24575.232042: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
97873          <idle>-0     (-----) [000] .n.1 24575.232053: cpu_idle: state=4294967295 cpu_id=0
97874          <idle>-0     (-----) [000] d..2 24575.232065: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
97875        DispSync-23904 (23896) [000] d..1 24575.232085: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
97876        DispSync-23904 (23896) [000] d..2 24575.232103: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
97877          <idle>-0     (-----) [001] .n.1 24575.232108: cpu_idle: state=4294967295 cpu_id=1
97878          <idle>-0     (-----) [001] d..2 24575.232122: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
97879        DispSync-23904 (23896) [000] d..2 24575.232140: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97880          <idle>-0     (-----) [000] d..1 24575.232156: cpu_idle: state=0 cpu_id=0
97881   sfEventThread-23906 (23896) [001] d..3 24575.232176: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
97882   sfEventThread-23906 (23896) [001] d..4 24575.232203: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
97883          <idle>-0     (-----) [000] .n.1 24575.232208: cpu_idle: state=4294967295 cpu_id=0
97884          <idle>-0     (-----) [000] d..2 24575.232220: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
97885   sfEventThread-23906 (23896) [001] d..2 24575.232244: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97886          <idle>-0     (-----) [001] d..1 24575.232260: cpu_idle: state=0 cpu_id=1
97887  surfaceflinger-23896 (23896) [000] d..1 24575.232454: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
97888  surfaceflinger-23896 (23896) [000] d..2 24575.232489: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
97889          <idle>-0     (-----) [001] .n.1 24575.232495: cpu_idle: state=4294967295 cpu_id=1
97890          <idle>-0     (-----) [001] d..2 24575.232509: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
97891  Binder:23896_5-25989 (23896) [001] d..2 24575.232548: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97892          <idle>-0     (-----) [001] d..1 24575.232560: cpu_idle: state=0 cpu_id=1
97893  surfaceflinger-23896 (23896) [000] d..2 24575.232671: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
97894  surfaceflinger-23896 (23896) [000] d..3 24575.232722: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
97895  surfaceflinger-23896 (23896) [000] d..1 24575.232758: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
97896  surfaceflinger-23896 (23896) [000] d..2 24575.232777: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
97897          <idle>-0     (-----) [001] .n.1 24575.232783: cpu_idle: state=4294967295 cpu_id=1
97898          <idle>-0     (-----) [001] d..2 24575.232795: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
97899   sfEventThread-23906 (23896) [001] d..2 24575.232836: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97900          <idle>-0     (-----) [001] d..1 24575.232847: cpu_idle: state=0 cpu_id=1
97901  surfaceflinger-23896 (23896) [000] ...1 24575.233015: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
97902  surfaceflinger-23896 (23896) [000] ...1 24575.233027: tracing_mark_write: E|23896
97903  surfaceflinger-23896 (23896) [000] .... 24575.233093: binder_transaction: transaction=1671174 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
97904  surfaceflinger-23896 (23896) [000] ...2 24575.233128: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
97905  surfaceflinger-23896 (23896) [000] d..4 24575.233138: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
97906  surfaceflinger-23896 (23896) [000] d..5 24575.233161: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
97907          <idle>-0     (-----) [003] .n.1 24575.233165: cpu_idle: state=4294967295 cpu_id=3
97908          <idle>-0     (-----) [003] d..2 24575.233178: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
97909  surfaceflinger-23896 (23896) [000] d..2 24575.233184: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
97910  HwBinder:598_3-633   (  598) [003] .... 24575.233188: binder_transaction_received: transaction=1671174
97911         rcuop/0-10    (   10) [000] d..2 24575.233192: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
97912         rcuop/0-10    (   10) [000] d..3 24575.233234: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
97913  HwBinder:598_3-633   (  598) [003] ...1 24575.233238: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
97914         rcuop/0-10    (   10) [000] d..2 24575.233247: 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
97915     rcu_preempt-7     (    7) [000] d..2 24575.233275: 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
97916          <idle>-0     (-----) [000] d..1 24575.233294: cpu_idle: state=0 cpu_id=0
97917  HwBinder:598_3-633   (  598) [003] ...1 24575.233376: tracing_mark_write: B|598|HWCSession::PresentDisplay::
97918  HwBinder:598_3-633   (  598) [003] ...1 24575.233606: tracing_mark_write: B|598|HWDeviceDRM::Commit::
97919  HwBinder:598_3-633   (  598) [003] ...1 24575.233621: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
97920  HwBinder:598_3-633   (  598) [003] d.s2 24575.234260: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
97921  HwBinder:598_3-633   (  598) [003] d.s3 24575.234287: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
97922  HwBinder:598_3-633   (  598) [003] d.s2 24575.234302: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
97923  HwBinder:598_3-633   (  598) [003] d.s3 24575.234324: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
97924  HwBinder:598_3-633   (  598) [003] d..2 24575.234475: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
97925  HwBinder:598_3-633   (  598) [003] d..3 24575.234500: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
97926          <idle>-0     (-----) [002] .n.1 24575.234505: cpu_idle: state=4294967295 cpu_id=2
97927          <idle>-0     (-----) [002] d..2 24575.234519: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
97928  HwBinder:598_3-633   (  598) [003] ...1 24575.234613: tracing_mark_write: E|598
97929  HwBinder:598_3-633   (  598) [003] ...1 24575.234621: tracing_mark_write: E|598
97930  HwBinder:598_3-633   (  598) [003] ...1 24575.234693: tracing_mark_write: E|598
97931  HwBinder:598_3-633   (  598) [003] ...1 24575.234751: tracing_mark_write: E|598
97932  HwBinder:598_3-633   (  598) [003] .... 24575.234768: binder_transaction: transaction=1671175 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
97933  HwBinder:598_3-633   (  598) [003] d..2 24575.234795: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
97934  HwBinder:598_3-633   (  598) [003] d..3 24575.234815: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
97935  HwBinder:598_3-633   (  598) [003] .... 24575.234821: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
97936          <idle>-0     (-----) [000] .n.1 24575.234821: cpu_idle: state=4294967295 cpu_id=0
97937          <idle>-0     (-----) [000] d..2 24575.234835: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
97938  surfaceflinger-23896 (23896) [000] .... 24575.234845: binder_transaction_received: transaction=1671175
97939  HwBinder:598_3-633   (  598) [003] d..2 24575.234901: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
97940     kworker/3:1-12662 (12662) [003] d..2 24575.234945: 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
97941  surfaceflinger-23896 (23896) [000] d..1 24575.235156: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
97942  surfaceflinger-23896 (23896) [000] d..2 24575.235183: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
97943          <idle>-0     (-----) [001] .n.1 24575.235188: cpu_idle: state=4294967295 cpu_id=1
97944          <idle>-0     (-----) [001] d..2 24575.235203: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
97945  kworker/u16:10-23868 (23868) [003] d..2 24575.235213: 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
97946          <idle>-0     (-----) [003] d.s4 24575.235261: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
97947  Binder:23896_5-25989 (23896) [001] .... 24575.235263: binder_transaction: transaction=1671176 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
97948          <idle>-0     (-----) [003] d.s5 24575.235277: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
97949  Binder:23896_5-25989 (23896) [001] d..2 24575.235280: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
97950          <idle>-0     (-----) [003] dns5 24575.235284: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
97951          <idle>-0     (-----) [003] d..2 24575.235299: 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
97952  Binder:23896_5-25989 (23896) [001] d..3 24575.235306: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
97953  Binder:23896_5-25989 (23896) [001] .... 24575.235311: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
97954  Binder:23896_5-25989 (23896) [001] d..2 24575.235374: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
97955    RenderThread-25194 (24827) [001] .... 24575.235384: binder_transaction_received: transaction=1671176
97956 crtc_commit:111-253   (  253) [002] d..2 24575.235393: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
97957  surfaceflinger-23896 (23896) [000] d..2 24575.235395: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97958          <idle>-0     (-----) [002] d..1 24575.235411: cpu_idle: state=0 cpu_id=2
97959          <idle>-0     (-----) [000] d..1 24575.235443: cpu_idle: state=0 cpu_id=0
97960  kworker/u16:10-23868 (23868) [003] .... 24575.235481: clk_set_rate: l3_cluster0_vote_clk 300000000
97961  kworker/u16:10-23868 (23868) [003] .... 24575.235488: clk_set_rate: l3_clk 300000000
97962  kworker/u16:10-23868 (23868) [003] d..2 24575.235553: 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
97963          <idle>-0     (-----) [003] d..1 24575.235574: cpu_idle: state=0 cpu_id=3
97964          <idle>-0     (-----) [000] d.H3 24575.237705: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
97965          <idle>-0     (-----) [000] d.H3 24575.237725: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
97966          <idle>-0     (-----) [005] dnh2 24575.237732: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
97967          <idle>-0     (-----) [005] .n.1 24575.237736: cpu_idle: state=4294967295 cpu_id=5
97968          <idle>-0     (-----) [005] d..2 24575.237741: 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
97969          <idle>-0     (-----) [000] d.H4 24575.237744: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
97970          <idle>-0     (-----) [002] .n.1 24575.237751: cpu_idle: state=4294967295 cpu_id=2
97971          <idle>-0     (-----) [000] d.s2 24575.237752: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
97972         sugov:4-560   (  560) [005] d..2 24575.237754: 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
97973          <idle>-0     (-----) [005] d..1 24575.237761: cpu_idle: state=0 cpu_id=5
97974          <idle>-0     (-----) [002] d..2 24575.237765: 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
97975          <idle>-0     (-----) [000] dns3 24575.237775: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
97976          <idle>-0     (-----) [000] dns3 24575.237785: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
97977         sugov:0-559   (  559) [002] d..2 24575.237799: 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
97978          <idle>-0     (-----) [000] dns4 24575.237803: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
97979          <idle>-0     (-----) [002] d..1 24575.237811: cpu_idle: state=0 cpu_id=2
97980          <idle>-0     (-----) [000] .n.1 24575.237830: cpu_idle: state=4294967295 cpu_id=0
97981          <idle>-0     (-----) [000] d..2 24575.237843: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
97982     kworker/0:1-13012 (13012) [000] d..2 24575.237932: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
97983     rcu_preempt-7     (    7) [000] d..2 24575.237963: 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
97984          <idle>-0     (-----) [000] d..1 24575.237981: cpu_idle: state=0 cpu_id=0
97985    RenderThread-25194 (24827) [001] .... 24575.238356: binder_transaction: transaction=1671177 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
97986    RenderThread-25194 (24827) [001] ...2 24575.238374: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
97987    RenderThread-25194 (24827) [001] d..4 24575.238379: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
97988    RenderThread-25194 (24827) [001] dn.5 24575.238408: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
97989    RenderThread-25194 (24827) [001] d..2 24575.238421: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
97990  Binder:23896_5-25989 (23896) [001] .... 24575.238432: binder_transaction_received: transaction=1671177
97991  Binder:23896_5-25989 (23896) [001] .... 24575.238646: binder_transaction: transaction=1671178 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
97992  Binder:23896_5-25989 (23896) [001] .... 24575.238657: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
97993  Binder:23896_5-25989 (23896) [001] d..2 24575.238727: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
97994    RenderThread-25194 (24827) [001] .... 24575.238740: binder_transaction_received: transaction=1671178
97995          <idle>-0     (-----) [005] ...1 24575.238773: cpu_idle: state=4294967295 cpu_id=5
97996          <idle>-0     (-----) [005] d..1 24575.238776: cpu_idle: state=0 cpu_id=5
97997    RenderThread-25194 (24827) [001] d..2 24575.238871: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97998          <idle>-0     (-----) [001] d..1 24575.238896: cpu_idle: state=0 cpu_id=1
97999          <idle>-0     (-----) [000] d.h5 24575.240275: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
98000          <idle>-0     (-----) [000] d.h6 24575.240301: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
98001          <idle>-0     (-----) [000] d.h5 24575.240308: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
98002          <idle>-0     (-----) [001] .n.1 24575.240309: cpu_idle: state=4294967295 cpu_id=1
98003          <idle>-0     (-----) [001] d..2 24575.240324: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
98004          <idle>-0     (-----) [000] d.h6 24575.240324: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
98005          <idle>-0     (-----) [002] .n.1 24575.240330: cpu_idle: state=4294967295 cpu_id=2
98006          <idle>-0     (-----) [002] d..2 24575.240341: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
98007          <idle>-0     (-----) [000] ...1 24575.240347: cpu_idle: state=4294967295 cpu_id=0
98008  crtc_event:111-254   (  254) [001] d..3 24575.240349: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
98009          <idle>-0     (-----) [000] d..1 24575.240353: cpu_idle: state=0 cpu_id=0
98010  crtc_event:111-254   (  254) [001] d..4 24575.240376: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
98011          <idle>-0     (-----) [003] .n.1 24575.240383: cpu_idle: state=4294967295 cpu_id=3
98012          <idle>-0     (-----) [003] d..2 24575.240398: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
98013  crtc_event:111-254   (  254) [001] d..2 24575.240407: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98014          <idle>-0     (-----) [001] d..1 24575.240421: cpu_idle: state=0 cpu_id=1
98015 crtc_commit:111-253   (  253) [002] d..2 24575.240530: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
98016          <idle>-0     (-----) [002] d..1 24575.240541: cpu_idle: state=0 cpu_id=2
98017 kgsl_worker_thr-246   (  246) [003] d..2 24575.240628: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
98018          <idle>-0     (-----) [003] d..1 24575.240641: cpu_idle: state=0 cpu_id=3
98019          <idle>-0     (-----) [003] d.h2 24575.240714: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
98020          <idle>-0     (-----) [003] dnh3 24575.240730: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
98021          <idle>-0     (-----) [003] .n.1 24575.240740: cpu_idle: state=4294967295 cpu_id=3
98022          <idle>-0     (-----) [003] d..2 24575.240751: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
98023 kgsl_worker_thr-246   (  246) [003] d..2 24575.240774: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
98024 kgsl_worker_thr-246   (  246) [003] d..3 24575.240798: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
98025 kgsl_worker_thr-246   (  246) [003] d..2 24575.240814: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
98026          <idle>-0     (-----) [002] d.s3 24575.240918: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
98027          <idle>-0     (-----) [002] d.s4 24575.240939: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
98028          <idle>-0     (-----) [001] .n.1 24575.240946: cpu_idle: state=4294967295 cpu_id=1
98029          <idle>-0     (-----) [001] d..2 24575.240962: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
98030          <idle>-0     (-----) [002] ...1 24575.240966: cpu_idle: state=4294967295 cpu_id=2
98031          <idle>-0     (-----) [002] d..1 24575.240974: cpu_idle: state=0 cpu_id=2
98032  crtc_event:111-254   (  254) [001] d..2 24575.241000: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98033          <idle>-0     (-----) [001] d..1 24575.241014: cpu_idle: state=0 cpu_id=1
98034  kworker/u16:10-23868 (23868) [003] d..2 24575.241328: 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
98035          <idle>-0     (-----) [003] d..1 24575.241347: cpu_idle: state=0 cpu_id=3
98036          <idle>-0     (-----) [000] d.h3 24575.242236: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
98037          <idle>-0     (-----) [000] d.h4 24575.242255: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
98038          <idle>-0     (-----) [003] .n.1 24575.242262: cpu_idle: state=4294967295 cpu_id=3
98039          <idle>-0     (-----) [000] ...1 24575.242272: cpu_idle: state=4294967295 cpu_id=0
98040          <idle>-0     (-----) [003] d..2 24575.242273: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
98041          <idle>-0     (-----) [000] d..1 24575.242277: cpu_idle: state=0 cpu_id=0
98042 kgsl_worker_thr-246   (  246) [003] d..2 24575.242360: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98043          <idle>-0     (-----) [003] d..1 24575.242374: cpu_idle: state=0 cpu_id=3
98044          <idle>-0     (-----) [000] d.h5 24575.242590: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
98045          <idle>-0     (-----) [000] d.h6 24575.242607: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
98046          <idle>-0     (-----) [002] .n.1 24575.242613: cpu_idle: state=4294967295 cpu_id=2
98047          <idle>-0     (-----) [000] ...1 24575.242622: cpu_idle: state=4294967295 cpu_id=0
98048          <idle>-0     (-----) [001] ...1 24575.242624: cpu_idle: state=4294967295 cpu_id=1
98049          <idle>-0     (-----) [000] d..1 24575.242626: cpu_idle: state=0 cpu_id=0
98050          <idle>-0     (-----) [002] d..2 24575.242626: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
98051          <idle>-0     (-----) [001] d..1 24575.242629: cpu_idle: state=0 cpu_id=1
98052 crtc_commit:111-253   (  253) [002] d..2 24575.242724: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
98053          <idle>-0     (-----) [002] d..1 24575.242739: cpu_idle: state=0 cpu_id=2
98054          <idle>-0     (-----) [000] d.h5 24575.242893: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
98055          <idle>-0     (-----) [000] d.h6 24575.242910: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
98056          <idle>-0     (-----) [001] .n.1 24575.242916: cpu_idle: state=4294967295 cpu_id=1
98057          <idle>-0     (-----) [001] d..2 24575.242927: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
98058          <idle>-0     (-----) [000] ...1 24575.242931: cpu_idle: state=4294967295 cpu_id=0
98059          <idle>-0     (-----) [000] d..1 24575.242936: cpu_idle: state=0 cpu_id=0
98060  crtc_event:111-254   (  254) [001] d..2 24575.242958: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98061          <idle>-0     (-----) [001] d..1 24575.242969: cpu_idle: state=0 cpu_id=1
98062          <idle>-0     (-----) [000] d.s2 24575.244253: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
98063          <idle>-0     (-----) [000] dns3 24575.244274: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
98064          <idle>-0     (-----) [000] dns3 24575.244282: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
98065          <idle>-0     (-----) [000] dns4 24575.244321: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
98066          <idle>-0     (-----) [000] .n.1 24575.244336: cpu_idle: state=4294967295 cpu_id=0
98067          <idle>-0     (-----) [000] d..2 24575.244352: 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
98068     rcu_preempt-7     (    7) [000] d..2 24575.244362: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
98069     rcu_preempt-7     (    7) [000] d..3 24575.244381: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
98070     rcu_preempt-7     (    7) [000] d..2 24575.244394: 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
98071         rcuop/0-10    (   10) [000] d..2 24575.244406: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
98072         rcuop/0-10    (   10) [000] d..3 24575.244419: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
98073         rcuop/0-10    (   10) [000] d..2 24575.244430: 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
98074     rcu_preempt-7     (    7) [000] d..2 24575.244444: 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
98075  kworker/u16:10-23868 (23868) [000] d.h1 24575.244485: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
98076  kworker/u16:10-23868 (23868) [000] d.h2 24575.244516: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
98077          <idle>-0     (-----) [003] .n.1 24575.244522: cpu_idle: state=4294967295 cpu_id=3
98078  kworker/u16:10-23868 (23868) [000] .... 24575.244526: clk_set_rate: l3_cluster0_vote_clk 403200000
98079  kworker/u16:10-23868 (23868) [000] .... 24575.244531: clk_set_rate: l3_clk 403200000
98080          <idle>-0     (-----) [003] d..2 24575.244536: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
98081        DispSync-23904 (23896) [003] d..1 24575.244569: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
98082        DispSync-23904 (23896) [003] d..2 24575.244606: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
98083          <idle>-0     (-----) [002] .n.1 24575.244612: cpu_idle: state=4294967295 cpu_id=2
98084          <idle>-0     (-----) [002] d..2 24575.244626: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
98085        DispSync-23904 (23896) [003] d..2 24575.244664: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98086          <idle>-0     (-----) [003] d..1 24575.244688: cpu_idle: state=0 cpu_id=3
98087  appEventThread-23905 (23896) [002] d..3 24575.244698: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
98088  appEventThread-23905 (23896) [002] d..4 24575.244727: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
98089          <idle>-0     (-----) [001] .n.1 24575.244732: cpu_idle: state=4294967295 cpu_id=1
98090          <idle>-0     (-----) [001] d..2 24575.244747: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
98091  appEventThread-23905 (23896) [002] d..2 24575.244772: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
98092          <idle>-0     (-----) [002] d..1 24575.244789: cpu_idle: state=0 cpu_id=2
98093  kworker/u16:10-23868 (23868) [000] d..2 24575.244866: 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
98094          <idle>-0     (-----) [000] d..1 24575.244885: cpu_idle: state=0 cpu_id=0
98095 s.nexuslauncher-24827 (24827) [001] .... 24575.245215: binder_transaction: transaction=1671179 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
98096 s.nexuslauncher-24827 (24827) [001] d..4 24575.245227: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
98097 s.nexuslauncher-24827 (24827) [001] d..5 24575.245265: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
98098          <idle>-0     (-----) [000] .n.1 24575.245270: cpu_idle: state=4294967295 cpu_id=0
98099          <idle>-0     (-----) [000] d..2 24575.245285: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
98100  Binder:23896_5-25989 (23896) [000] .... 24575.245295: binder_transaction_received: transaction=1671179
98101 s.nexuslauncher-24827 (24827) [001] d..3 24575.245307: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
98102  Binder:23896_5-25989 (23896) [000] d..1 24575.245333: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
98103 s.nexuslauncher-24827 (24827) [001] d..4 24575.245337: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
98104          <idle>-0     (-----) [002] .n.1 24575.245343: cpu_idle: state=4294967295 cpu_id=2
98105          <idle>-0     (-----) [003] d.s3 24575.245353: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
98106          <idle>-0     (-----) [002] d..2 24575.245357: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
98107  Binder:23896_5-25989 (23896) [000] dn.2 24575.245380: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
98108  Binder:23896_5-25989 (23896) [000] d..2 24575.245391: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
98109          <idle>-0     (-----) [003] d.s4 24575.245406: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
98110          <idle>-0     (-----) [003] dns4 24575.245413: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
98111  appEventThread-23905 (23896) [000] d..2 24575.245415: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
98112    RenderThread-25194 (24827) [002] d..2 24575.245418: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
98113          <idle>-0     (-----) [003] .n.1 24575.245421: cpu_idle: state=4294967295 cpu_id=3
98114  Binder:23896_5-25989 (23896) [000] d..1 24575.245422: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
98115          <idle>-0     (-----) [002] d..1 24575.245432: cpu_idle: state=0 cpu_id=2
98116          <idle>-0     (-----) [003] d..2 24575.245434: 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
98117  Binder:23896_5-25989 (23896) [000] d..2 24575.245445: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
98118          <idle>-0     (-----) [002] .n.1 24575.245451: cpu_idle: state=4294967295 cpu_id=2
98119          <idle>-0     (-----) [002] d..2 24575.245462: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
98120  kworker/u16:10-23868 (23868) [003] d..2 24575.245471: 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
98121          <idle>-0     (-----) [003] d..1 24575.245481: cpu_idle: state=0 cpu_id=3
98122  Binder:23896_5-25989 (23896) [000] d..2 24575.245495: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98123          <idle>-0     (-----) [000] d..1 24575.245511: cpu_idle: state=0 cpu_id=0
98124  appEventThread-23905 (23896) [002] d..2 24575.245517: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
98125          <idle>-0     (-----) [002] d..1 24575.245530: cpu_idle: state=0 cpu_id=2
98126 s.nexuslauncher-24827 (24827) [001] d..3 24575.245871: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
98127 s.nexuslauncher-24827 (24827) [001] d..4 24575.245908: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
98128          <idle>-0     (-----) [000] .n.1 24575.245914: cpu_idle: state=4294967295 cpu_id=0
98129          <idle>-0     (-----) [000] d..2 24575.245928: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
98130 s.nexuslauncher-24827 (24827) [001] d..2 24575.245947: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98131          <idle>-0     (-----) [001] d..1 24575.245969: cpu_idle: state=0 cpu_id=1
98132    RenderThread-25194 (24827) [000] d..1 24575.246189: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
98133    RenderThread-25194 (24827) [000] d..2 24575.246215: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
98134          <idle>-0     (-----) [001] .n.1 24575.246221: cpu_idle: state=4294967295 cpu_id=1
98135          <idle>-0     (-----) [001] d..2 24575.246237: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
98136    RenderThread-25194 (24827) [000] .... 24575.246284: binder_transaction: transaction=1671180 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
98137    RenderThread-25194 (24827) [000] ...2 24575.246294: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
98138    RenderThread-25194 (24827) [000] d..4 24575.246299: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
98139    RenderThread-25194 (24827) [000] dn.5 24575.246316: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
98140    RenderThread-25194 (24827) [000] d..2 24575.246327: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
98141  Binder:23896_5-25989 (23896) [000] .... 24575.246337: binder_transaction_received: transaction=1671180
98142 s.nexuslauncher-24827 (24827) [001] d..2 24575.246370: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98143  Binder:23896_5-25989 (23896) [000] d..2 24575.246385: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
98144          <idle>-0     (-----) [001] d..1 24575.246387: cpu_idle: state=0 cpu_id=1
98145    RenderThread-25194 (24827) [000] d..2 24575.246416: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98146          <idle>-0     (-----) [000] d..1 24575.246434: cpu_idle: state=0 cpu_id=0
98147          <idle>-0     (-----) [003] d.h2 24575.248518: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
98148          <idle>-0     (-----) [003] dnh3 24575.248534: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
98149          <idle>-0     (-----) [003] .n.1 24575.248542: cpu_idle: state=4294967295 cpu_id=3
98150          <idle>-0     (-----) [003] d..2 24575.248554: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
98151        DispSync-23904 (23896) [003] d..1 24575.248571: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
98152        DispSync-23904 (23896) [003] d..2 24575.248589: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
98153          <idle>-0     (-----) [001] .n.1 24575.248596: cpu_idle: state=4294967295 cpu_id=1
98154          <idle>-0     (-----) [001] d..2 24575.248610: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
98155        DispSync-23904 (23896) [003] d..2 24575.248627: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98156          <idle>-0     (-----) [003] d..2 24575.248633: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
98157          <idle>-0     (-----) [003] dn.3 24575.248647: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
98158          <idle>-0     (-----) [003] d..2 24575.248658: 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
98159   sfEventThread-23906 (23896) [001] d..3 24575.248661: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
98160     ksoftirqd/3-34    (   34) [003] d.s2 24575.248669: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
98161   sfEventThread-23906 (23896) [001] d..4 24575.248685: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
98162          <idle>-0     (-----) [000] .n.1 24575.248692: cpu_idle: state=4294967295 cpu_id=0
98163          <idle>-0     (-----) [000] d..2 24575.248706: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
98164     ksoftirqd/3-34    (   34) [003] d.s3 24575.248716: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
98165   sfEventThread-23906 (23896) [001] d..2 24575.248736: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
98166     ksoftirqd/3-34    (   34) [003] d..2 24575.248741: 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
98167          <idle>-0     (-----) [003] d..1 24575.248756: cpu_idle: state=0 cpu_id=3
98168  kworker/u16:10-23868 (23868) [001] d..2 24575.248825: 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
98169          <idle>-0     (-----) [001] d..1 24575.248842: cpu_idle: state=0 cpu_id=1
98170  surfaceflinger-23896 (23896) [000] d..1 24575.248907: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
98171  surfaceflinger-23896 (23896) [000] d..2 24575.248945: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
98172          <idle>-0     (-----) [001] .n.1 24575.248951: cpu_idle: state=4294967295 cpu_id=1
98173          <idle>-0     (-----) [001] d..2 24575.248965: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
98174  Binder:23896_5-25989 (23896) [001] d..2 24575.249002: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98175          <idle>-0     (-----) [001] d..1 24575.249014: cpu_idle: state=0 cpu_id=1
98176  surfaceflinger-23896 (23896) [000] d..1 24575.249150: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
98177  surfaceflinger-23896 (23896) [000] d..2 24575.249174: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
98178          <idle>-0     (-----) [001] .n.1 24575.249179: cpu_idle: state=4294967295 cpu_id=1
98179          <idle>-0     (-----) [001] d..2 24575.249190: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
98180   sfEventThread-23906 (23896) [001] d..2 24575.249229: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98181          <idle>-0     (-----) [001] d..1 24575.249241: cpu_idle: state=0 cpu_id=1
98182  surfaceflinger-23896 (23896) [000] ...1 24575.249433: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
98183  surfaceflinger-23896 (23896) [000] ...1 24575.249443: tracing_mark_write: E|23896
98184  surfaceflinger-23896 (23896) [000] .... 24575.249511: binder_transaction: transaction=1671181 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
98185  surfaceflinger-23896 (23896) [000] ...2 24575.249546: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
98186  surfaceflinger-23896 (23896) [000] d..4 24575.249556: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
98187  surfaceflinger-23896 (23896) [000] d..5 24575.249583: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
98188          <idle>-0     (-----) [003] .n.1 24575.249589: cpu_idle: state=4294967295 cpu_id=3
98189          <idle>-0     (-----) [003] d..2 24575.249600: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
98190  HwBinder:598_3-633   (  598) [003] .... 24575.249612: binder_transaction_received: transaction=1671181
98191  surfaceflinger-23896 (23896) [000] d..2 24575.249618: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98192          <idle>-0     (-----) [000] d..1 24575.249633: cpu_idle: state=0 cpu_id=0
98193  HwBinder:598_3-633   (  598) [003] ...1 24575.249669: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
98194  HwBinder:598_3-633   (  598) [003] ...1 24575.249842: tracing_mark_write: B|598|HWCSession::PresentDisplay::
98195  HwBinder:598_3-633   (  598) [003] ...1 24575.250074: tracing_mark_write: B|598|HWDeviceDRM::Commit::
98196  HwBinder:598_3-633   (  598) [003] ...1 24575.250092: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
98197  HwBinder:598_3-633   (  598) [003] d..2 24575.250813: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
98198  HwBinder:598_3-633   (  598) [003] d..3 24575.250840: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
98199          <idle>-0     (-----) [002] .n.1 24575.250845: cpu_idle: state=4294967295 cpu_id=2
98200          <idle>-0     (-----) [002] d..2 24575.250858: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
98201          <idle>-0     (-----) [000] d.s2 24575.250913: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
98202          <idle>-0     (-----) [000] dns3 24575.250934: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
98203          <idle>-0     (-----) [000] .n.1 24575.250954: cpu_idle: state=4294967295 cpu_id=0
98204          <idle>-0     (-----) [000] d..2 24575.250965: 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
98205     rcu_preempt-7     (    7) [000] d..2 24575.251000: 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
98206  HwBinder:598_3-633   (  598) [003] ...1 24575.251003: tracing_mark_write: E|598
98207  HwBinder:598_3-633   (  598) [003] ...1 24575.251011: tracing_mark_write: E|598
98208          <idle>-0     (-----) [000] d..1 24575.251014: cpu_idle: state=0 cpu_id=0
98209  HwBinder:598_3-633   (  598) [003] ...1 24575.251089: tracing_mark_write: E|598
98210  HwBinder:598_3-633   (  598) [003] ...1 24575.251149: tracing_mark_write: E|598
98211  HwBinder:598_3-633   (  598) [003] .... 24575.251169: binder_transaction: transaction=1671182 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
98212  HwBinder:598_3-633   (  598) [003] d..2 24575.251196: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
98213  HwBinder:598_3-633   (  598) [003] d..3 24575.251218: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
98214          <idle>-0     (-----) [000] .n.1 24575.251223: cpu_idle: state=4294967295 cpu_id=0
98215  HwBinder:598_3-633   (  598) [003] .... 24575.251224: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
98216          <idle>-0     (-----) [000] d..2 24575.251234: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
98217  surfaceflinger-23896 (23896) [000] .... 24575.251245: binder_transaction_received: transaction=1671182
98218  HwBinder:598_3-633   (  598) [003] d..2 24575.251324: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98219          <idle>-0     (-----) [003] d..1 24575.251344: cpu_idle: state=0 cpu_id=3
98220  surfaceflinger-23896 (23896) [000] d..1 24575.251543: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
98221  surfaceflinger-23896 (23896) [000] d..2 24575.251570: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
98222          <idle>-0     (-----) [001] .n.1 24575.251575: cpu_idle: state=4294967295 cpu_id=1
98223          <idle>-0     (-----) [001] d..2 24575.251589: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
98224  Binder:23896_5-25989 (23896) [001] .... 24575.251656: binder_transaction: transaction=1671183 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
98225  Binder:23896_5-25989 (23896) [001] d..2 24575.251672: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
98226  Binder:23896_5-25989 (23896) [001] d..3 24575.251696: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
98227  Binder:23896_5-25989 (23896) [001] .... 24575.251701: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
98228 crtc_commit:111-253   (  253) [002] d..2 24575.251759: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
98229  Binder:23896_5-25989 (23896) [001] d..2 24575.251765: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
98230  surfaceflinger-23896 (23896) [000] d..2 24575.251769: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98231    RenderThread-25194 (24827) [001] .... 24575.251775: binder_transaction_received: transaction=1671183
98232          <idle>-0     (-----) [002] d..1 24575.251777: cpu_idle: state=0 cpu_id=2
98233          <idle>-0     (-----) [000] d..1 24575.251788: cpu_idle: state=0 cpu_id=0
98234    RenderThread-25194 (24827) [001] d.s2 24575.254264: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
98235    RenderThread-25194 (24827) [001] d.s3 24575.254292: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
98236    RenderThread-25194 (24827) [001] .... 24575.254583: binder_transaction: transaction=1671184 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
98237    RenderThread-25194 (24827) [001] ...2 24575.254599: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
98238    RenderThread-25194 (24827) [001] d..4 24575.254603: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
98239    RenderThread-25194 (24827) [001] d..5 24575.254637: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
98240          <idle>-0     (-----) [000] .n.1 24575.254644: cpu_idle: state=4294967295 cpu_id=0
98241    RenderThread-25194 (24827) [001] d..2 24575.254658: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
98242          <idle>-0     (-----) [000] d..2 24575.254661: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
98243  Binder:23896_5-25989 (23896) [000] .... 24575.254670: binder_transaction_received: transaction=1671184
98244  kworker/u16:10-23868 (23868) [001] d..2 24575.254840: 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
98245          <idle>-0     (-----) [001] d..1 24575.254860: cpu_idle: state=0 cpu_id=1
98246  Binder:23896_5-25989 (23896) [000] .... 24575.254871: binder_transaction: transaction=1671185 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
98247  Binder:23896_5-25989 (23896) [000] d..2 24575.254880: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
98248  Binder:23896_5-25989 (23896) [000] d..3 24575.254909: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
98249  Binder:23896_5-25989 (23896) [000] .... 24575.254915: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
98250  Binder:23896_5-25989 (23896) [000] d..2 24575.254974: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
98251    RenderThread-25194 (24827) [000] .... 24575.254984: binder_transaction_received: transaction=1671185
98252    RenderThread-25194 (24827) [000] d..2 24575.255115: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98253          <idle>-0     (-----) [000] d..1 24575.255130: cpu_idle: state=0 cpu_id=0
98254          <idle>-0     (-----) [000] d.h5 24575.256737: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
98255          <idle>-0     (-----) [000] d.h6 24575.256760: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
98256          <idle>-0     (-----) [001] .n.1 24575.256767: cpu_idle: state=4294967295 cpu_id=1
98257          <idle>-0     (-----) [000] d.h5 24575.256767: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
98258          <idle>-0     (-----) [001] d..2 24575.256780: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
98259          <idle>-0     (-----) [000] d.h6 24575.256782: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
98260          <idle>-0     (-----) [002] .n.1 24575.256789: cpu_idle: state=4294967295 cpu_id=2
98261  crtc_event:111-254   (  254) [001] d..3 24575.256801: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
98262          <idle>-0     (-----) [000] ...1 24575.256801: cpu_idle: state=4294967295 cpu_id=0
98263          <idle>-0     (-----) [002] d..2 24575.256802: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
98264          <idle>-0     (-----) [000] d..1 24575.256807: cpu_idle: state=0 cpu_id=0
98265  crtc_event:111-254   (  254) [001] d..4 24575.256821: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
98266          <idle>-0     (-----) [003] .n.1 24575.256828: cpu_idle: state=4294967295 cpu_id=3
98267          <idle>-0     (-----) [003] d..2 24575.256842: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
98268  crtc_event:111-254   (  254) [001] d..2 24575.256849: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98269          <idle>-0     (-----) [001] d..1 24575.256863: cpu_idle: state=0 cpu_id=1
98270 crtc_commit:111-253   (  253) [002] d..2 24575.256979: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
98271          <idle>-0     (-----) [002] d..1 24575.256989: cpu_idle: state=0 cpu_id=2
98272 kgsl_worker_thr-246   (  246) [003] d..2 24575.257063: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
98273          <idle>-0     (-----) [003] d..1 24575.257074: cpu_idle: state=0 cpu_id=3
98274          <idle>-0     (-----) [003] d.h2 24575.257151: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
98275          <idle>-0     (-----) [003] dnh3 24575.257165: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
98276          <idle>-0     (-----) [003] .n.1 24575.257175: cpu_idle: state=4294967295 cpu_id=3
98277          <idle>-0     (-----) [003] d..2 24575.257185: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
98278 kgsl_worker_thr-246   (  246) [003] d..2 24575.257208: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
98279 kgsl_worker_thr-246   (  246) [003] d..3 24575.257256: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
98280 kgsl_worker_thr-246   (  246) [003] d..2 24575.257272: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
98281          <idle>-0     (-----) [000] d.s2 24575.257586: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
98282          <idle>-0     (-----) [000] dns3 24575.257659: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
98283          <idle>-0     (-----) [000] .n.1 24575.257674: cpu_idle: state=4294967295 cpu_id=0
98284          <idle>-0     (-----) [000] d..2 24575.257685: 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
98285          <idle>-0     (-----) [002] d.H3 24575.257690: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
98286     rcu_preempt-7     (    7) [000] d..2 24575.257696: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
98287          <idle>-0     (-----) [002] d.H3 24575.257707: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
98288          <idle>-0     (-----) [005] dnh2 24575.257714: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
98289     rcu_preempt-7     (    7) [000] d..3 24575.257715: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
98290          <idle>-0     (-----) [005] .n.1 24575.257717: cpu_idle: state=4294967295 cpu_id=5
98291          <idle>-0     (-----) [005] d..2 24575.257722: 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
98292          <idle>-0     (-----) [002] dnH4 24575.257722: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
98293     rcu_preempt-7     (    7) [000] d..2 24575.257728: 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
98294          <idle>-0     (-----) [002] dns3 24575.257732: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
98295         sugov:4-560   (  560) [005] d..2 24575.257735: 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
98296         rcuop/0-10    (   10) [000] d..2 24575.257739: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
98297          <idle>-0     (-----) [005] d..1 24575.257740: cpu_idle: state=0 cpu_id=5
98298          <idle>-0     (-----) [002] dns4 24575.257748: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
98299          <idle>-0     (-----) [001] .n.1 24575.257754: cpu_idle: state=4294967295 cpu_id=1
98300  kworker/u16:10-23868 (23868) [003] d..2 24575.257756: 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
98301          <idle>-0     (-----) [001] d..2 24575.257766: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
98302          <idle>-0     (-----) [003] d..1 24575.257772: cpu_idle: state=0 cpu_id=3
98303         rcuop/0-10    (   10) [000] d..3 24575.257779: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
98304          <idle>-0     (-----) [003] .n.1 24575.257786: cpu_idle: state=4294967295 cpu_id=3
98305          <idle>-0     (-----) [002] .n.1 24575.257789: cpu_idle: state=4294967295 cpu_id=2
98306  crtc_event:111-254   (  254) [001] d..2 24575.257797: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98307          <idle>-0     (-----) [002] d..2 24575.257799: 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
98308          <idle>-0     (-----) [003] d..2 24575.257801: 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
98309         rcuop/0-10    (   10) [000] d..2 24575.257803: 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
98310          <idle>-0     (-----) [001] d..1 24575.257809: cpu_idle: state=0 cpu_id=1
98311          <idle>-0     (-----) [000] d..1 24575.257821: cpu_idle: state=0 cpu_id=0
98312     rcu_preempt-7     (    7) [003] d..2 24575.257830: 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
98313          <idle>-0     (-----) [003] d..1 24575.257839: cpu_idle: state=0 cpu_id=3
98314         sugov:0-559   (  559) [002] .... 24575.257852: clk_set_rate: pwrcl_clk 1056000000
98315         sugov:0-559   (  559) [002] .... 24575.257874: clk_set_rate: cpu3_pwrcl_clk 825600000
98316         sugov:0-559   (  559) [002] .... 24575.257889: clk_set_rate: cpu2_pwrcl_clk 825600000
98317         sugov:0-559   (  559) [002] .... 24575.257899: clk_set_rate: cpu1_pwrcl_clk 825600000
98318         sugov:0-559   (  559) [002] .... 24575.257910: clk_set_rate: cpu0_pwrcl_clk 1056000000
98319         sugov:0-559   (  559) [002] .... 24575.257923: cpu_frequency: state=1056000 cpu_id=0
98320         sugov:0-559   (  559) [002] .... 24575.257964: cpu_frequency: state=1056000 cpu_id=1
98321         sugov:0-559   (  559) [002] .... 24575.257969: cpu_frequency: state=1056000 cpu_id=2
98322         sugov:0-559   (  559) [002] .... 24575.257973: cpu_frequency: state=1056000 cpu_id=3
98323         sugov:0-559   (  559) [002] d..2 24575.258005: 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
98324          <idle>-0     (-----) [002] d..1 24575.258018: cpu_idle: state=0 cpu_id=2
98325          <idle>-0     (-----) [000] d.h3 24575.258650: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
98326          <idle>-0     (-----) [000] d.h4 24575.258670: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
98327          <idle>-0     (-----) [003] .n.1 24575.258675: cpu_idle: state=4294967295 cpu_id=3
98328          <idle>-0     (-----) [003] d..2 24575.258684: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
98329          <idle>-0     (-----) [000] ...1 24575.258689: cpu_idle: state=4294967295 cpu_id=0
98330          <idle>-0     (-----) [000] d..1 24575.258694: cpu_idle: state=0 cpu_id=0
98331          <idle>-0     (-----) [005] ...1 24575.258750: cpu_idle: state=4294967295 cpu_id=5
98332          <idle>-0     (-----) [005] d..1 24575.258753: cpu_idle: state=0 cpu_id=5
98333 kgsl_worker_thr-246   (  246) [003] d..2 24575.258755: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98334          <idle>-0     (-----) [003] d..1 24575.258764: cpu_idle: state=0 cpu_id=3
98335          <idle>-0     (-----) [000] d.h5 24575.259054: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
98336          <idle>-0     (-----) [000] d.h6 24575.259069: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
98337          <idle>-0     (-----) [002] .n.1 24575.259075: cpu_idle: state=4294967295 cpu_id=2
98338          <idle>-0     (-----) [000] ...1 24575.259083: cpu_idle: state=4294967295 cpu_id=0
98339          <idle>-0     (-----) [002] d..2 24575.259085: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
98340          <idle>-0     (-----) [000] d..1 24575.259089: cpu_idle: state=0 cpu_id=0
98341 crtc_commit:111-253   (  253) [002] d..2 24575.259172: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
98342          <idle>-0     (-----) [002] d..1 24575.259184: cpu_idle: state=0 cpu_id=2
98343          <idle>-0     (-----) [000] d.h5 24575.259357: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
98344          <idle>-0     (-----) [000] d.h6 24575.259371: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
98345          <idle>-0     (-----) [001] .n.1 24575.259376: cpu_idle: state=4294967295 cpu_id=1
98346          <idle>-0     (-----) [001] d..2 24575.259385: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
98347          <idle>-0     (-----) [000] ...1 24575.259391: cpu_idle: state=4294967295 cpu_id=0
98348          <idle>-0     (-----) [000] d..1 24575.259395: cpu_idle: state=0 cpu_id=0
98349  crtc_event:111-254   (  254) [001] d..2 24575.259407: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98350          <idle>-0     (-----) [001] d..1 24575.259416: cpu_idle: state=0 cpu_id=1
98351          <idle>-0     (-----) [003] d.h2 24575.260960: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
98352          <idle>-0     (-----) [003] dnh3 24575.260975: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
98353          <idle>-0     (-----) [003] .n.1 24575.260983: cpu_idle: state=4294967295 cpu_id=3
98354          <idle>-0     (-----) [003] d..2 24575.260993: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
98355        DispSync-23904 (23896) [003] d..1 24575.261014: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
98356        DispSync-23904 (23896) [003] d..2 24575.261030: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
98357          <idle>-0     (-----) [002] .n.1 24575.261036: cpu_idle: state=4294967295 cpu_id=2
98358          <idle>-0     (-----) [002] d..2 24575.261047: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
98359        DispSync-23904 (23896) [003] d..2 24575.261065: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98360          <idle>-0     (-----) [003] d..2 24575.261070: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
98361          <idle>-0     (-----) [003] dn.3 24575.261082: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
98362          <idle>-0     (-----) [003] d..2 24575.261091: 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
98363  appEventThread-23905 (23896) [002] d..3 24575.261094: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
98364     ksoftirqd/3-34    (   34) [003] d..2 24575.261113: 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
98365          <idle>-0     (-----) [003] d..1 24575.261122: cpu_idle: state=0 cpu_id=3
98366  appEventThread-23905 (23896) [002] d..4 24575.261127: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
98367          <idle>-0     (-----) [000] .n.1 24575.261131: cpu_idle: state=4294967295 cpu_id=0
98368          <idle>-0     (-----) [000] d..2 24575.261146: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
98369  appEventThread-23905 (23896) [002] d..2 24575.261164: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
98370          <idle>-0     (-----) [002] d..1 24575.261177: cpu_idle: state=0 cpu_id=2
98371 s.nexuslauncher-24827 (24827) [000] .... 24575.261523: binder_transaction: transaction=1671186 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
98372 s.nexuslauncher-24827 (24827) [000] d..4 24575.261533: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
98373 s.nexuslauncher-24827 (24827) [000] d..5 24575.261568: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
98374          <idle>-0     (-----) [001] .n.1 24575.261572: cpu_idle: state=4294967295 cpu_id=1
98375          <idle>-0     (-----) [001] d..2 24575.261584: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
98376  Binder:23896_5-25989 (23896) [001] .... 24575.261595: binder_transaction_received: transaction=1671186
98377 s.nexuslauncher-24827 (24827) [000] d..3 24575.261605: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
98378 s.nexuslauncher-24827 (24827) [000] d..4 24575.261632: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
98379  Binder:23896_5-25989 (23896) [001] d..1 24575.261634: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
98380          <idle>-0     (-----) [002] .n.1 24575.261639: cpu_idle: state=4294967295 cpu_id=2
98381          <idle>-0     (-----) [002] d..2 24575.261650: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
98382  Binder:23896_5-25989 (23896) [001] d..2 24575.261670: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
98383          <idle>-0     (-----) [003] .n.1 24575.261677: cpu_idle: state=4294967295 cpu_id=3
98384          <idle>-0     (-----) [003] d..2 24575.261684: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
98385    RenderThread-25194 (24827) [002] d..2 24575.261704: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
98386  Binder:23896_5-25989 (23896) [001] d..2 24575.261714: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98387          <idle>-0     (-----) [002] d..1 24575.261717: cpu_idle: state=0 cpu_id=2
98388          <idle>-0     (-----) [001] d..1 24575.261731: cpu_idle: state=0 cpu_id=1
98389  appEventThread-23905 (23896) [003] d..2 24575.261732: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98390          <idle>-0     (-----) [003] d..1 24575.261740: cpu_idle: state=0 cpu_id=3
98391 s.nexuslauncher-24827 (24827) [000] d..3 24575.262101: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
98392 s.nexuslauncher-24827 (24827) [000] d..4 24575.262134: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
98393          <idle>-0     (-----) [001] .n.1 24575.262140: cpu_idle: state=4294967295 cpu_id=1
98394          <idle>-0     (-----) [001] d..2 24575.262152: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
98395 s.nexuslauncher-24827 (24827) [000] d..2 24575.262171: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98396          <idle>-0     (-----) [000] d..1 24575.262190: cpu_idle: state=0 cpu_id=0
98397    RenderThread-25194 (24827) [001] d..1 24575.262362: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
98398    RenderThread-25194 (24827) [001] d..2 24575.262384: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
98399          <idle>-0     (-----) [000] .n.1 24575.262391: cpu_idle: state=4294967295 cpu_id=0
98400          <idle>-0     (-----) [000] d..2 24575.262402: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
98401    RenderThread-25194 (24827) [001] .... 24575.262442: binder_transaction: transaction=1671187 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
98402    RenderThread-25194 (24827) [001] ...2 24575.262451: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
98403    RenderThread-25194 (24827) [001] d..4 24575.262454: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
98404    RenderThread-25194 (24827) [001] dn.5 24575.262467: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
98405    RenderThread-25194 (24827) [001] d..2 24575.262477: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
98406  Binder:23896_5-25989 (23896) [001] .... 24575.262486: binder_transaction_received: transaction=1671187
98407 s.nexuslauncher-24827 (24827) [000] d..2 24575.262517: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98408  Binder:23896_5-25989 (23896) [001] d..2 24575.262529: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
98409          <idle>-0     (-----) [000] d..1 24575.262532: cpu_idle: state=0 cpu_id=0
98410    RenderThread-25194 (24827) [001] d..2 24575.262555: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98411          <idle>-0     (-----) [001] d..1 24575.262572: cpu_idle: state=0 cpu_id=1
98412          <idle>-0     (-----) [000] ...1 24575.263909: cpu_idle: state=4294967295 cpu_id=0
98413          <idle>-0     (-----) [000] d..1 24575.263913: cpu_idle: state=0 cpu_id=0
98414          <idle>-0     (-----) [003] d.s2 24575.264239: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
98415          <idle>-0     (-----) [003] dns3 24575.264256: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
98416          <idle>-0     (-----) [003] dns3 24575.264261: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
98417          <idle>-0     (-----) [003] dns4 24575.264272: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
98418          <idle>-0     (-----) [003] .n.1 24575.264290: cpu_idle: state=4294967295 cpu_id=3
98419          <idle>-0     (-----) [003] d..2 24575.264299: 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
98420     rcu_preempt-7     (    7) [003] d..2 24575.264311: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
98421     rcu_preempt-7     (    7) [003] d..3 24575.264343: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
98422     rcu_preempt-7     (    7) [003] d..2 24575.264355: 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
98423         rcuop/0-10    (   10) [003] d..2 24575.264371: 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
98424  kworker/u16:10-23868 (23868) [003] .... 24575.264402: clk_set_rate: l3_cluster0_vote_clk 300000000
98425  kworker/u16:10-23868 (23868) [003] .... 24575.264411: clk_set_rate: l3_clk 300000000
98426  kworker/u16:10-23868 (23868) [003] d..2 24575.264716: 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
98427          <idle>-0     (-----) [003] d.s4 24575.264769: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
98428          <idle>-0     (-----) [003] d.s5 24575.264785: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
98429          <idle>-0     (-----) [003] dns5 24575.264791: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
98430          <idle>-0     (-----) [003] d..2 24575.264805: 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
98431  kworker/u16:10-23868 (23868) [003] d..2 24575.264835: 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
98432          <idle>-0     (-----) [003] d..1 24575.264850: cpu_idle: state=0 cpu_id=3
98433          <idle>-0     (-----) [003] d.h2 24575.264956: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
98434          <idle>-0     (-----) [003] dnh3 24575.264970: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
98435          <idle>-0     (-----) [003] .n.1 24575.264979: cpu_idle: state=4294967295 cpu_id=3
98436          <idle>-0     (-----) [003] d..2 24575.264989: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
98437        DispSync-23904 (23896) [003] d..1 24575.265009: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
98438        DispSync-23904 (23896) [003] d..2 24575.265025: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
98439          <idle>-0     (-----) [001] .n.1 24575.265033: cpu_idle: state=4294967295 cpu_id=1
98440          <idle>-0     (-----) [001] d..2 24575.265045: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
98441        DispSync-23904 (23896) [003] d..2 24575.265057: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98442          <idle>-0     (-----) [003] d..1 24575.265071: cpu_idle: state=0 cpu_id=3
98443   sfEventThread-23906 (23896) [001] d..3 24575.265093: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
98444   sfEventThread-23906 (23896) [001] d..4 24575.265118: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
98445          <idle>-0     (-----) [000] .n.1 24575.265124: cpu_idle: state=4294967295 cpu_id=0
98446          <idle>-0     (-----) [000] d..2 24575.265137: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
98447   sfEventThread-23906 (23896) [001] d..2 24575.265157: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98448          <idle>-0     (-----) [001] d..1 24575.265175: cpu_idle: state=0 cpu_id=1
98449  surfaceflinger-23896 (23896) [000] d..1 24575.265345: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
98450  surfaceflinger-23896 (23896) [000] d..2 24575.265374: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
98451          <idle>-0     (-----) [001] .n.1 24575.265380: cpu_idle: state=4294967295 cpu_id=1
98452          <idle>-0     (-----) [001] d..2 24575.265393: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
98453  Binder:23896_5-25989 (23896) [001] d..2 24575.265420: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98454          <idle>-0     (-----) [001] d..1 24575.265431: cpu_idle: state=0 cpu_id=1
98455  surfaceflinger-23896 (23896) [000] d..2 24575.265537: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
98456  surfaceflinger-23896 (23896) [000] d..3 24575.265559: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
98457          <idle>-0     (-----) [003] .n.1 24575.265565: cpu_idle: state=4294967295 cpu_id=3
98458          <idle>-0     (-----) [003] d..2 24575.265578: 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
98459         rcuop/0-10    (   10) [003] d..2 24575.265584: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
98460  surfaceflinger-23896 (23896) [000] d..1 24575.265594: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
98461         rcuop/0-10    (   10) [003] d..3 24575.265605: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
98462  surfaceflinger-23896 (23896) [000] d..2 24575.265614: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
98463         rcuop/0-10    (   10) [003] d..2 24575.265615: 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
98464          <idle>-0     (-----) [001] .n.1 24575.265620: cpu_idle: state=4294967295 cpu_id=1
98465          <idle>-0     (-----) [001] d..2 24575.265629: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
98466     rcu_preempt-7     (    7) [003] d..2 24575.265637: 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
98467          <idle>-0     (-----) [003] d..1 24575.265647: cpu_idle: state=0 cpu_id=3
98468   sfEventThread-23906 (23896) [001] d..2 24575.265664: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98469          <idle>-0     (-----) [001] d..1 24575.265675: cpu_idle: state=0 cpu_id=1
98470  surfaceflinger-23896 (23896) [000] ...1 24575.265825: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
98471  surfaceflinger-23896 (23896) [000] ...1 24575.265832: tracing_mark_write: E|23896
98472  surfaceflinger-23896 (23896) [000] .... 24575.265897: binder_transaction: transaction=1671188 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
98473  surfaceflinger-23896 (23896) [000] ...2 24575.265926: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
98474  surfaceflinger-23896 (23896) [000] d..4 24575.265935: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
98475  surfaceflinger-23896 (23896) [000] d..5 24575.265960: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
98476          <idle>-0     (-----) [003] .n.1 24575.265965: cpu_idle: state=4294967295 cpu_id=3
98477          <idle>-0     (-----) [003] d..2 24575.265975: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
98478  HwBinder:598_3-633   (  598) [003] .... 24575.265987: binder_transaction_received: transaction=1671188
98479  surfaceflinger-23896 (23896) [000] d..2 24575.265996: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98480          <idle>-0     (-----) [000] d..1 24575.266017: cpu_idle: state=0 cpu_id=0
98481  HwBinder:598_3-633   (  598) [003] ...1 24575.266040: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
98482  HwBinder:598_3-633   (  598) [003] ...1 24575.266191: tracing_mark_write: B|598|HWCSession::PresentDisplay::
98483  HwBinder:598_3-633   (  598) [003] ...1 24575.266379: tracing_mark_write: B|598|HWDeviceDRM::Commit::
98484  HwBinder:598_3-633   (  598) [003] ...1 24575.266393: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
98485  HwBinder:598_3-633   (  598) [003] d..2 24575.267020: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
98486  HwBinder:598_3-633   (  598) [003] d..3 24575.267047: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
98487          <idle>-0     (-----) [002] .n.1 24575.267052: cpu_idle: state=4294967295 cpu_id=2
98488          <idle>-0     (-----) [002] d..2 24575.267062: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
98489  HwBinder:598_3-633   (  598) [003] ...1 24575.267158: tracing_mark_write: E|598
98490  HwBinder:598_3-633   (  598) [003] ...1 24575.267167: tracing_mark_write: E|598
98491  HwBinder:598_3-633   (  598) [003] ...1 24575.267239: tracing_mark_write: E|598
98492  HwBinder:598_3-633   (  598) [003] ...1 24575.267295: tracing_mark_write: E|598
98493  HwBinder:598_3-633   (  598) [003] .... 24575.267313: binder_transaction: transaction=1671189 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
98494  HwBinder:598_3-633   (  598) [003] d..2 24575.267340: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
98495  HwBinder:598_3-633   (  598) [003] d..3 24575.267361: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
98496  HwBinder:598_3-633   (  598) [003] .... 24575.267367: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
98497          <idle>-0     (-----) [000] .n.1 24575.267368: cpu_idle: state=4294967295 cpu_id=0
98498          <idle>-0     (-----) [000] d..2 24575.267378: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
98499  surfaceflinger-23896 (23896) [000] .... 24575.267388: binder_transaction_received: transaction=1671189
98500  HwBinder:598_3-633   (  598) [003] d..2 24575.267466: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98501          <idle>-0     (-----) [003] d..1 24575.267487: cpu_idle: state=0 cpu_id=3
98502  surfaceflinger-23896 (23896) [000] d..1 24575.267735: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
98503  surfaceflinger-23896 (23896) [000] d..2 24575.267760: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
98504          <idle>-0     (-----) [001] .n.1 24575.267765: cpu_idle: state=4294967295 cpu_id=1
98505          <idle>-0     (-----) [001] d..2 24575.267778: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
98506  Binder:23896_5-25989 (23896) [001] .... 24575.267837: binder_transaction: transaction=1671190 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
98507  Binder:23896_5-25989 (23896) [001] d..2 24575.267851: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
98508  Binder:23896_5-25989 (23896) [001] d..3 24575.267867: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
98509  Binder:23896_5-25989 (23896) [001] .... 24575.267872: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
98510  Binder:23896_5-25989 (23896) [001] d..2 24575.267929: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
98511    RenderThread-25194 (24827) [001] .... 24575.267938: binder_transaction_received: transaction=1671190
98512  surfaceflinger-23896 (23896) [000] d..2 24575.267954: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98513 crtc_commit:111-253   (  253) [002] d..2 24575.267965: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
98514          <idle>-0     (-----) [000] d..1 24575.267976: cpu_idle: state=0 cpu_id=0
98515          <idle>-0     (-----) [002] d..1 24575.267982: cpu_idle: state=0 cpu_id=2
98516    RenderThread-25194 (24827) [001] .... 24575.270505: binder_transaction: transaction=1671191 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
98517    RenderThread-25194 (24827) [001] ...2 24575.270522: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
98518    RenderThread-25194 (24827) [001] d..4 24575.270527: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
98519    RenderThread-25194 (24827) [001] dn.5 24575.270548: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
98520    RenderThread-25194 (24827) [001] d..2 24575.270560: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
98521  Binder:23896_5-25989 (23896) [001] .... 24575.270569: binder_transaction_received: transaction=1671191
98522  Binder:23896_5-25989 (23896) [001] .... 24575.270742: binder_transaction: transaction=1671192 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
98523  Binder:23896_5-25989 (23896) [001] .... 24575.270752: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
98524  Binder:23896_5-25989 (23896) [001] d..2 24575.270815: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
98525    RenderThread-25194 (24827) [001] .... 24575.270825: binder_transaction_received: transaction=1671192
98526          <idle>-0     (-----) [003] d.s2 24575.270915: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
98527    RenderThread-25194 (24827) [001] d.s2 24575.270926: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
98528          <idle>-0     (-----) [003] dns3 24575.270940: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
98529    RenderThread-25194 (24827) [001] d.s3 24575.270953: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
98530          <idle>-0     (-----) [003] .n.1 24575.270961: cpu_idle: state=4294967295 cpu_id=3
98531          <idle>-0     (-----) [003] d..2 24575.270974: 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
98532     rcu_preempt-7     (    7) [003] d..2 24575.270997: 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
98533    RenderThread-25194 (24827) [001] d..2 24575.271036: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98534          <idle>-0     (-----) [001] d..1 24575.271057: cpu_idle: state=0 cpu_id=1
98535  kworker/u16:10-23868 (23868) [003] d..2 24575.271246: 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
98536          <idle>-0     (-----) [003] d.s4 24575.271292: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
98537          <idle>-0     (-----) [003] d.s5 24575.271302: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
98538          <idle>-0     (-----) [003] dns5 24575.271308: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
98539          <idle>-0     (-----) [003] d..2 24575.271321: 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
98540  kworker/u16:10-23868 (23868) [003] d..2 24575.271350: 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
98541          <idle>-0     (-----) [003] d..1 24575.271367: cpu_idle: state=0 cpu_id=3
98542          <idle>-0     (-----) [000] d.h5 24575.273205: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
98543          <idle>-0     (-----) [000] d.h6 24575.273227: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
98544          <idle>-0     (-----) [000] d.h5 24575.273233: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
98545          <idle>-0     (-----) [001] .n.1 24575.273234: cpu_idle: state=4294967295 cpu_id=1
98546          <idle>-0     (-----) [001] d..2 24575.273246: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
98547          <idle>-0     (-----) [000] d.h6 24575.273246: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
98548          <idle>-0     (-----) [002] .n.1 24575.273253: cpu_idle: state=4294967295 cpu_id=2
98549          <idle>-0     (-----) [002] d..2 24575.273265: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
98550          <idle>-0     (-----) [000] ...1 24575.273266: cpu_idle: state=4294967295 cpu_id=0
98551  crtc_event:111-254   (  254) [001] d..3 24575.273268: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
98552          <idle>-0     (-----) [000] d..1 24575.273273: cpu_idle: state=0 cpu_id=0
98553  crtc_event:111-254   (  254) [001] d..4 24575.273289: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
98554          <idle>-0     (-----) [003] .n.1 24575.273295: cpu_idle: state=4294967295 cpu_id=3
98555          <idle>-0     (-----) [003] d..2 24575.273306: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
98556  crtc_event:111-254   (  254) [001] d..2 24575.273316: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98557          <idle>-0     (-----) [001] d..1 24575.273328: cpu_idle: state=0 cpu_id=1
98558 crtc_commit:111-253   (  253) [002] d..2 24575.273447: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
98559          <idle>-0     (-----) [002] d..1 24575.273457: cpu_idle: state=0 cpu_id=2
98560 kgsl_worker_thr-246   (  246) [003] d..2 24575.273532: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
98561          <idle>-0     (-----) [003] d..1 24575.273543: cpu_idle: state=0 cpu_id=3
98562          <idle>-0     (-----) [003] d.h2 24575.273618: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
98563          <idle>-0     (-----) [003] dnh3 24575.273633: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
98564          <idle>-0     (-----) [003] .n.1 24575.273641: cpu_idle: state=4294967295 cpu_id=3
98565          <idle>-0     (-----) [003] d..2 24575.273650: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
98566 kgsl_worker_thr-246   (  246) [003] d..2 24575.273676: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
98567 kgsl_worker_thr-246   (  246) [003] d..3 24575.273693: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
98568 kgsl_worker_thr-246   (  246) [003] d..2 24575.273708: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
98569  kworker/u16:10-23868 (23868) [003] d..2 24575.274148: 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
98570          <idle>-0     (-----) [003] d..1 24575.274162: cpu_idle: state=0 cpu_id=3
98571          <idle>-0     (-----) [002] d.s3 24575.274250: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
98572          <idle>-0     (-----) [002] d.s4 24575.274271: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
98573          <idle>-0     (-----) [001] .n.1 24575.274278: cpu_idle: state=4294967295 cpu_id=1
98574          <idle>-0     (-----) [002] d.s3 24575.274278: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
98575          <idle>-0     (-----) [001] d..2 24575.274289: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
98576          <idle>-0     (-----) [002] dns4 24575.274321: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
98577  crtc_event:111-254   (  254) [001] d..2 24575.274329: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98578          <idle>-0     (-----) [001] d..1 24575.274342: cpu_idle: state=0 cpu_id=1
98579          <idle>-0     (-----) [002] .n.1 24575.274343: cpu_idle: state=4294967295 cpu_id=2
98580          <idle>-0     (-----) [002] d..2 24575.274353: 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
98581  kworker/u16:10-23868 (23868) [002] d..2 24575.274565: 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
98582          <idle>-0     (-----) [002] d..1 24575.274582: cpu_idle: state=0 cpu_id=2
98583          <idle>-0     (-----) [003] d.s3 24575.275059: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
98584          <idle>-0     (-----) [003] d.s4 24575.275071: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
98585          <idle>-0     (-----) [003] d.s4 24575.275081: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
98586          <idle>-0     (-----) [002] .n.1 24575.275088: cpu_idle: state=4294967295 cpu_id=2
98587          <idle>-0     (-----) [003] ...1 24575.275092: cpu_idle: state=4294967295 cpu_id=3
98588          <idle>-0     (-----) [003] d..1 24575.275097: cpu_idle: state=0 cpu_id=3
98589          <idle>-0     (-----) [002] d..2 24575.275100: 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
98590          <idle>-0     (-----) [000] d.h3 24575.275123: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
98591          <idle>-0     (-----) [000] d.h4 24575.275140: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
98592          <idle>-0     (-----) [003] .n.1 24575.275146: cpu_idle: state=4294967295 cpu_id=3
98593          <idle>-0     (-----) [000] ...1 24575.275156: cpu_idle: state=4294967295 cpu_id=0
98594          <idle>-0     (-----) [003] d..2 24575.275158: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
98595          <idle>-0     (-----) [000] d..1 24575.275162: cpu_idle: state=0 cpu_id=0
98596  kworker/u16:10-23868 (23868) [002] .... 24575.275206: clk_set_rate: l3_cluster0_vote_clk 403200000
98597  kworker/u16:10-23868 (23868) [002] .... 24575.275214: clk_set_rate: l3_clk 403200000
98598 kgsl_worker_thr-246   (  246) [003] d..2 24575.275255: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98599          <idle>-0     (-----) [003] d..1 24575.275266: cpu_idle: state=0 cpu_id=3
98600  kworker/u16:10-23868 (23868) [002] d..2 24575.275275: 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
98601          <idle>-0     (-----) [002] d..1 24575.275290: cpu_idle: state=0 cpu_id=2
98602          <idle>-0     (-----) [000] d.h5 24575.275519: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
98603          <idle>-0     (-----) [000] d.h6 24575.275533: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
98604          <idle>-0     (-----) [002] .n.1 24575.275539: cpu_idle: state=4294967295 cpu_id=2
98605          <idle>-0     (-----) [000] ...1 24575.275547: cpu_idle: state=4294967295 cpu_id=0
98606          <idle>-0     (-----) [002] d..2 24575.275549: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
98607          <idle>-0     (-----) [000] d..1 24575.275551: cpu_idle: state=0 cpu_id=0
98608 crtc_commit:111-253   (  253) [002] d..2 24575.275635: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
98609          <idle>-0     (-----) [002] d..1 24575.275648: cpu_idle: state=0 cpu_id=2
98610          <idle>-0     (-----) [000] d.h5 24575.275825: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
98611          <idle>-0     (-----) [000] d.h6 24575.275839: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
98612          <idle>-0     (-----) [001] .n.1 24575.275844: cpu_idle: state=4294967295 cpu_id=1
98613          <idle>-0     (-----) [001] d..2 24575.275853: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
98614          <idle>-0     (-----) [000] ...1 24575.275857: cpu_idle: state=4294967295 cpu_id=0
98615          <idle>-0     (-----) [000] d..1 24575.275861: cpu_idle: state=0 cpu_id=0
98616  crtc_event:111-254   (  254) [001] d..2 24575.275877: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98617          <idle>-0     (-----) [001] d..1 24575.275886: cpu_idle: state=0 cpu_id=1
98618          <idle>-0     (-----) [003] d.h2 24575.277432: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
98619          <idle>-0     (-----) [003] dnh3 24575.277445: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
98620          <idle>-0     (-----) [003] .n.1 24575.277454: cpu_idle: state=4294967295 cpu_id=3
98621          <idle>-0     (-----) [003] d..2 24575.277460: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
98622        DispSync-23904 (23896) [003] d..1 24575.277483: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
98623        DispSync-23904 (23896) [003] d..2 24575.277506: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
98624          <idle>-0     (-----) [000] .n.1 24575.277511: cpu_idle: state=4294967295 cpu_id=0
98625          <idle>-0     (-----) [000] d..2 24575.277524: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
98626        DispSync-23904 (23896) [003] d..2 24575.277537: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98627          <idle>-0     (-----) [003] d..1 24575.277546: cpu_idle: state=0 cpu_id=3
98628          <idle>-0     (-----) [003] d.s2 24575.277578: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
98629          <idle>-0     (-----) [003] dns3 24575.277648: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
98630          <idle>-0     (-----) [003] .n.1 24575.277666: cpu_idle: state=4294967295 cpu_id=3
98631  appEventThread-23905 (23896) [000] d.H2 24575.277672: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
98632          <idle>-0     (-----) [003] d..2 24575.277674: 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
98633     rcu_preempt-7     (    7) [003] d..2 24575.277683: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
98634  appEventThread-23905 (23896) [000] d.H2 24575.277687: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
98635          <idle>-0     (-----) [005] dnh2 24575.277693: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
98636          <idle>-0     (-----) [005] .n.1 24575.277697: cpu_idle: state=4294967295 cpu_id=5
98637  appEventThread-23905 (23896) [000] d.H3 24575.277702: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
98638          <idle>-0     (-----) [005] d..2 24575.277702: 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
98639          <idle>-0     (-----) [002] .n.1 24575.277708: cpu_idle: state=4294967295 cpu_id=2
98640  appEventThread-23905 (23896) [000] d.s2 24575.277715: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
98641         sugov:4-560   (  560) [005] d..2 24575.277715: 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
98642     rcu_preempt-7     (    7) [003] d..3 24575.277718: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
98643          <idle>-0     (-----) [002] d..2 24575.277720: 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
98644          <idle>-0     (-----) [005] d..1 24575.277720: cpu_idle: state=0 cpu_id=5
98645          <idle>-0     (-----) [007] dnh2 24575.277742: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
98646     rcu_preempt-7     (    7) [003] d..2 24575.277744: 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
98647          <idle>-0     (-----) [007] .n.1 24575.277746: cpu_idle: state=4294967295 cpu_id=7
98648          <idle>-0     (-----) [003] d..1 24575.277755: cpu_idle: state=0 cpu_id=3
98649         sugov:0-559   (  559) [002] .... 24575.277756: clk_set_rate: pwrcl_clk 825600000
98650          <idle>-0     (-----) [007] d..2 24575.277758: 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
98651         sugov:0-559   (  559) [002] .... 24575.277765: clk_set_rate: cpu3_pwrcl_clk 1056000000
98652  appEventThread-23905 (23896) [000] d..3 24575.277769: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
98653         sugov:0-559   (  559) [002] .... 24575.277776: clk_set_rate: cpu2_pwrcl_clk 1056000000
98654         sugov:0-559   (  559) [002] .... 24575.277785: clk_set_rate: cpu1_pwrcl_clk 1056000000
98655     kworker/7:0-12892 (12892) [007] d..2 24575.277792: 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
98656         sugov:0-559   (  559) [002] .... 24575.277794: clk_set_rate: cpu0_pwrcl_clk 825600000
98657          <idle>-0     (-----) [007] d..1 24575.277800: cpu_idle: state=0 cpu_id=7
98658  appEventThread-23905 (23896) [000] d..4 24575.277801: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
98659          <idle>-0     (-----) [001] .n.1 24575.277808: cpu_idle: state=4294967295 cpu_id=1
98660          <idle>-0     (-----) [001] d..2 24575.277826: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
98661  appEventThread-23905 (23896) [000] d..2 24575.277841: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
98662         rcuop/0-10    (   10) [000] d..2 24575.277858: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
98663         rcuop/0-10    (   10) [000] d..3 24575.277875: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
98664          <idle>-0     (-----) [003] .n.1 24575.277881: cpu_idle: state=4294967295 cpu_id=3
98665          <idle>-0     (-----) [003] d..2 24575.277895: 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
98666         rcuop/0-10    (   10) [000] d..2 24575.277902: 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
98667         sugov:0-559   (  559) [002] .... 24575.277911: cpu_frequency: state=825600 cpu_id=0
98668          <idle>-0     (-----) [000] d..1 24575.277919: cpu_idle: state=0 cpu_id=0
98669     rcu_preempt-7     (    7) [003] d..2 24575.277922: 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
98670          <idle>-0     (-----) [003] d..1 24575.277931: cpu_idle: state=0 cpu_id=3
98671         sugov:0-559   (  559) [002] .... 24575.277937: cpu_frequency: state=825600 cpu_id=1
98672         sugov:0-559   (  559) [002] .... 24575.277942: cpu_frequency: state=825600 cpu_id=2
98673         sugov:0-559   (  559) [002] .... 24575.277946: cpu_frequency: state=825600 cpu_id=3
98674         sugov:0-559   (  559) [002] d..2 24575.277976: 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
98675          <idle>-0     (-----) [002] d..1 24575.277989: cpu_idle: state=0 cpu_id=2
98676 s.nexuslauncher-24827 (24827) [001] .... 24575.278297: binder_transaction: transaction=1671193 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
98677 s.nexuslauncher-24827 (24827) [001] d..4 24575.278309: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
98678 s.nexuslauncher-24827 (24827) [001] d..5 24575.278347: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
98679          <idle>-0     (-----) [000] .n.1 24575.278353: cpu_idle: state=4294967295 cpu_id=0
98680          <idle>-0     (-----) [000] d..2 24575.278368: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
98681  Binder:23896_5-25989 (23896) [000] .... 24575.278377: binder_transaction_received: transaction=1671193
98682 s.nexuslauncher-24827 (24827) [001] d..3 24575.278390: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
98683  Binder:23896_5-25989 (23896) [000] d..1 24575.278415: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
98684 s.nexuslauncher-24827 (24827) [001] d..4 24575.278420: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
98685          <idle>-0     (-----) [002] .n.1 24575.278427: cpu_idle: state=4294967295 cpu_id=2
98686          <idle>-0     (-----) [002] d..2 24575.278440: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
98687  Binder:23896_5-25989 (23896) [000] d..2 24575.278443: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
98688          <idle>-0     (-----) [003] .n.1 24575.278448: cpu_idle: state=4294967295 cpu_id=3
98689          <idle>-0     (-----) [003] d..2 24575.278458: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
98690  Binder:23896_5-25989 (23896) [000] d..2 24575.278491: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98691    RenderThread-25194 (24827) [002] d..2 24575.278499: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
98692          <idle>-0     (-----) [000] d..1 24575.278507: cpu_idle: state=0 cpu_id=0
98693  appEventThread-23905 (23896) [003] d..2 24575.278514: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98694          <idle>-0     (-----) [002] d..1 24575.278515: cpu_idle: state=0 cpu_id=2
98695          <idle>-0     (-----) [003] d..1 24575.278525: cpu_idle: state=0 cpu_id=3
98696          <idle>-0     (-----) [005] ...1 24575.278732: cpu_idle: state=4294967295 cpu_id=5
98697          <idle>-0     (-----) [005] d..1 24575.278735: cpu_idle: state=0 cpu_id=5
98698 s.nexuslauncher-24827 (24827) [001] d..3 24575.278962: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
98699 s.nexuslauncher-24827 (24827) [001] d..4 24575.279000: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
98700          <idle>-0     (-----) [000] .n.1 24575.279005: cpu_idle: state=4294967295 cpu_id=0
98701          <idle>-0     (-----) [000] d..2 24575.279019: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
98702 s.nexuslauncher-24827 (24827) [001] d..2 24575.279042: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98703          <idle>-0     (-----) [001] d..1 24575.279064: cpu_idle: state=0 cpu_id=1
98704    RenderThread-25194 (24827) [000] d..1 24575.279305: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
98705    RenderThread-25194 (24827) [000] d..2 24575.279334: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
98706          <idle>-0     (-----) [001] .n.1 24575.279342: cpu_idle: state=4294967295 cpu_id=1
98707          <idle>-0     (-----) [001] d..2 24575.279356: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
98708    RenderThread-25194 (24827) [000] .... 24575.279404: binder_transaction: transaction=1671194 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
98709    RenderThread-25194 (24827) [000] ...2 24575.279414: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
98710    RenderThread-25194 (24827) [000] d..4 24575.279418: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
98711    RenderThread-25194 (24827) [000] dn.5 24575.279435: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
98712    RenderThread-25194 (24827) [000] d..2 24575.279447: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
98713  Binder:23896_5-25989 (23896) [000] .... 24575.279456: binder_transaction_received: transaction=1671194
98714 s.nexuslauncher-24827 (24827) [001] d..2 24575.279487: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98715          <idle>-0     (-----) [001] d..1 24575.279504: cpu_idle: state=0 cpu_id=1
98716  Binder:23896_5-25989 (23896) [000] d..2 24575.279506: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
98717    RenderThread-25194 (24827) [000] d..2 24575.279536: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98718          <idle>-0     (-----) [000] d..1 24575.279556: cpu_idle: state=0 cpu_id=0
98719          <idle>-0     (-----) [002] ...1 24575.280017: cpu_idle: state=4294967295 cpu_id=2
98720          <idle>-0     (-----) [002] d..1 24575.280022: cpu_idle: state=0 cpu_id=2
98721          <idle>-0     (-----) [000] d..2 24575.280924: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
98722          <idle>-0     (-----) [000] dn.3 24575.280942: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
98723          <idle>-0     (-----) [000] .n.1 24575.280947: cpu_idle: state=4294967295 cpu_id=0
98724          <idle>-0     (-----) [000] d..2 24575.280964: 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
98725     ksoftirqd/0-3     (    3) [000] d..2 24575.281009: 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
98726          <idle>-0     (-----) [000] d..1 24575.281020: cpu_idle: state=0 cpu_id=0
98727          <idle>-0     (-----) [003] d.h2 24575.281440: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
98728          <idle>-0     (-----) [003] dnh3 24575.281458: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
98729          <idle>-0     (-----) [003] .n.1 24575.281467: cpu_idle: state=4294967295 cpu_id=3
98730          <idle>-0     (-----) [003] d..2 24575.281478: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
98731        DispSync-23904 (23896) [003] d..1 24575.281496: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
98732        DispSync-23904 (23896) [003] d..2 24575.281514: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
98733          <idle>-0     (-----) [001] .n.1 24575.281521: cpu_idle: state=4294967295 cpu_id=1
98734          <idle>-0     (-----) [001] d..2 24575.281534: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
98735        DispSync-23904 (23896) [003] d..2 24575.281546: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98736          <idle>-0     (-----) [003] d..1 24575.281556: cpu_idle: state=0 cpu_id=3
98737   sfEventThread-23906 (23896) [001] d..3 24575.281593: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
98738   sfEventThread-23906 (23896) [001] d..4 24575.281621: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
98739          <idle>-0     (-----) [000] .n.1 24575.281626: cpu_idle: state=4294967295 cpu_id=0
98740          <idle>-0     (-----) [000] d..2 24575.281639: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
98741   sfEventThread-23906 (23896) [001] d..2 24575.281662: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98742          <idle>-0     (-----) [001] d..1 24575.281679: cpu_idle: state=0 cpu_id=1
98743  surfaceflinger-23896 (23896) [000] d..1 24575.281874: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
98744  surfaceflinger-23896 (23896) [000] d..2 24575.281911: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
98745          <idle>-0     (-----) [001] .n.1 24575.281917: cpu_idle: state=4294967295 cpu_id=1
98746          <idle>-0     (-----) [001] d..2 24575.281933: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
98747  Binder:23896_5-25989 (23896) [001] d..2 24575.281967: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98748          <idle>-0     (-----) [001] d..1 24575.281979: cpu_idle: state=0 cpu_id=1
98749  surfaceflinger-23896 (23896) [000] d..1 24575.282124: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
98750  surfaceflinger-23896 (23896) [000] d..2 24575.282148: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
98751          <idle>-0     (-----) [001] .n.1 24575.282154: cpu_idle: state=4294967295 cpu_id=1
98752          <idle>-0     (-----) [001] d..2 24575.282164: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
98753   sfEventThread-23906 (23896) [001] d..2 24575.282203: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98754          <idle>-0     (-----) [001] d..1 24575.282215: cpu_idle: state=0 cpu_id=1
98755  surfaceflinger-23896 (23896) [000] ...1 24575.282385: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
98756  surfaceflinger-23896 (23896) [000] ...1 24575.282395: tracing_mark_write: E|23896
98757  surfaceflinger-23896 (23896) [000] .... 24575.282464: binder_transaction: transaction=1671195 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
98758  surfaceflinger-23896 (23896) [000] ...2 24575.282499: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
98759  surfaceflinger-23896 (23896) [000] d..4 24575.282509: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
98760  surfaceflinger-23896 (23896) [000] d..5 24575.282536: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
98761          <idle>-0     (-----) [003] .n.1 24575.282543: cpu_idle: state=4294967295 cpu_id=3
98762          <idle>-0     (-----) [003] d..2 24575.282552: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
98763  HwBinder:598_3-633   (  598) [003] .... 24575.282564: binder_transaction_received: transaction=1671195
98764  surfaceflinger-23896 (23896) [000] d..2 24575.282575: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98765          <idle>-0     (-----) [000] d..1 24575.282596: cpu_idle: state=0 cpu_id=0
98766  HwBinder:598_3-633   (  598) [003] ...1 24575.282618: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
98767  HwBinder:598_3-633   (  598) [003] ...1 24575.282778: tracing_mark_write: B|598|HWCSession::PresentDisplay::
98768  HwBinder:598_3-633   (  598) [003] ...1 24575.283007: tracing_mark_write: B|598|HWDeviceDRM::Commit::
98769  HwBinder:598_3-633   (  598) [003] ...1 24575.283022: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
98770  HwBinder:598_3-633   (  598) [003] d..2 24575.283760: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
98771  HwBinder:598_3-633   (  598) [003] d..3 24575.283790: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
98772          <idle>-0     (-----) [002] .n.1 24575.283794: cpu_idle: state=4294967295 cpu_id=2
98773          <idle>-0     (-----) [002] d..2 24575.283808: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
98774  HwBinder:598_3-633   (  598) [003] ...1 24575.283903: tracing_mark_write: E|598
98775  HwBinder:598_3-633   (  598) [003] ...1 24575.283910: tracing_mark_write: E|598
98776  HwBinder:598_3-633   (  598) [003] ...1 24575.283985: tracing_mark_write: E|598
98777  HwBinder:598_3-633   (  598) [003] ...1 24575.284043: tracing_mark_write: E|598
98778  HwBinder:598_3-633   (  598) [003] .... 24575.284059: binder_transaction: transaction=1671196 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
98779  HwBinder:598_3-633   (  598) [003] d..2 24575.284089: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
98780  HwBinder:598_3-633   (  598) [003] d..3 24575.284110: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
98781  HwBinder:598_3-633   (  598) [003] .... 24575.284115: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
98782          <idle>-0     (-----) [000] .n.1 24575.284116: cpu_idle: state=4294967295 cpu_id=0
98783          <idle>-0     (-----) [000] d..2 24575.284128: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
98784  surfaceflinger-23896 (23896) [000] .... 24575.284138: binder_transaction_received: transaction=1671196
98785  HwBinder:598_3-633   (  598) [003] d..2 24575.284213: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98786 crtc_commit:111-253   (  253) [002] d.s2 24575.284248: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
98787          <idle>-0     (-----) [003] d.s3 24575.284252: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
98788          <idle>-0     (-----) [003] dns4 24575.284281: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
98789 crtc_commit:111-253   (  253) [002] d.s3 24575.284292: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
98790          <idle>-0     (-----) [003] d..2 24575.284316: 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
98791     rcu_preempt-7     (    7) [003] d..2 24575.284338: 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
98792  kworker/u16:10-23868 (23868) [003] .... 24575.284431: clk_set_rate: l3_cluster0_vote_clk 300000000
98793  kworker/u16:10-23868 (23868) [003] .... 24575.284438: clk_set_rate: l3_clk 300000000
98794  surfaceflinger-23896 (23896) [000] d..1 24575.284491: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
98795  surfaceflinger-23896 (23896) [000] d..2 24575.284524: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
98796          <idle>-0     (-----) [001] .n.1 24575.284528: cpu_idle: state=4294967295 cpu_id=1
98797          <idle>-0     (-----) [001] d..2 24575.284544: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
98798  Binder:23896_5-25989 (23896) [001] d..2 24575.284584: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98799  surfaceflinger-23896 (23896) [000] d..1 24575.284585: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
98800  surfaceflinger-23896 (23896) [000] d..2 24575.284603: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
98801          <idle>-0     (-----) [001] d..2 24575.284637: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
98802  Binder:23896_5-25989 (23896) [001] .... 24575.284707: binder_transaction: transaction=1671197 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
98803  Binder:23896_5-25989 (23896) [001] d..2 24575.284725: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
98804  Binder:23896_5-25989 (23896) [001] d..3 24575.284752: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
98805  Binder:23896_5-25989 (23896) [001] .... 24575.284758: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
98806  surfaceflinger-23896 (23896) [000] d..2 24575.284798: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98807 crtc_commit:111-253   (  253) [002] d..2 24575.284820: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
98808          <idle>-0     (-----) [000] d..1 24575.284821: cpu_idle: state=0 cpu_id=0
98809  Binder:23896_5-25989 (23896) [001] d..2 24575.284827: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
98810    RenderThread-25194 (24827) [001] .... 24575.284838: binder_transaction_received: transaction=1671197
98811          <idle>-0     (-----) [002] d..1 24575.284841: cpu_idle: state=0 cpu_id=2
98812  kworker/u16:10-23868 (23868) [003] d..2 24575.284867: 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
98813          <idle>-0     (-----) [003] d.s4 24575.284920: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
98814          <idle>-0     (-----) [003] d.s5 24575.284937: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
98815          <idle>-0     (-----) [003] dns5 24575.284944: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
98816          <idle>-0     (-----) [003] d..2 24575.284959: 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
98817  kworker/u16:10-23868 (23868) [003] d..2 24575.284992: 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
98818          <idle>-0     (-----) [003] d..1 24575.285011: cpu_idle: state=0 cpu_id=3
98819    RenderThread-25194 (24827) [001] .... 24575.287525: binder_transaction: transaction=1671198 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
98820    RenderThread-25194 (24827) [001] ...2 24575.287607: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
98821    RenderThread-25194 (24827) [001] d..4 24575.287613: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
98822    RenderThread-25194 (24827) [001] dn.5 24575.287629: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
98823    RenderThread-25194 (24827) [001] d..2 24575.287640: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
98824  Binder:23896_5-25989 (23896) [001] .... 24575.287653: binder_transaction_received: transaction=1671198
98825  Binder:23896_5-25989 (23896) [001] .... 24575.287839: binder_transaction: transaction=1671199 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
98826  Binder:23896_5-25989 (23896) [001] .... 24575.287850: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
98827  Binder:23896_5-25989 (23896) [001] d..2 24575.287918: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
98828    RenderThread-25194 (24827) [001] .... 24575.287931: binder_transaction_received: transaction=1671199
98829    RenderThread-25194 (24827) [001] d..2 24575.288059: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98830          <idle>-0     (-----) [001] d..1 24575.288083: cpu_idle: state=0 cpu_id=1
98831          <idle>-0     (-----) [000] d.h5 24575.289677: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
98832          <idle>-0     (-----) [000] d.h6 24575.289705: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
98833          <idle>-0     (-----) [001] .n.1 24575.289712: cpu_idle: state=4294967295 cpu_id=1
98834          <idle>-0     (-----) [000] d.h5 24575.289713: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
98835          <idle>-0     (-----) [001] d..2 24575.289726: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
98836          <idle>-0     (-----) [000] d.h6 24575.289727: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
98837          <idle>-0     (-----) [002] .n.1 24575.289735: cpu_idle: state=4294967295 cpu_id=2
98838          <idle>-0     (-----) [000] ...1 24575.289749: cpu_idle: state=4294967295 cpu_id=0
98839          <idle>-0     (-----) [002] d..2 24575.289750: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
98840  crtc_event:111-254   (  254) [001] d..3 24575.289751: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
98841          <idle>-0     (-----) [000] d..1 24575.289757: cpu_idle: state=0 cpu_id=0
98842  crtc_event:111-254   (  254) [001] d..4 24575.289777: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
98843          <idle>-0     (-----) [003] .n.1 24575.289785: cpu_idle: state=4294967295 cpu_id=3
98844          <idle>-0     (-----) [003] d..2 24575.289798: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
98845  crtc_event:111-254   (  254) [001] d..2 24575.289809: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98846          <idle>-0     (-----) [001] d..1 24575.289824: cpu_idle: state=0 cpu_id=1
98847 crtc_commit:111-253   (  253) [002] d..2 24575.289938: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
98848          <idle>-0     (-----) [002] d..1 24575.289949: cpu_idle: state=0 cpu_id=2
98849 kgsl_worker_thr-246   (  246) [003] d..2 24575.290038: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
98850          <idle>-0     (-----) [003] d..1 24575.290048: cpu_idle: state=0 cpu_id=3
98851          <idle>-0     (-----) [003] d.h2 24575.290120: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
98852          <idle>-0     (-----) [003] dnh3 24575.290135: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
98853          <idle>-0     (-----) [003] .n.1 24575.290145: cpu_idle: state=4294967295 cpu_id=3
98854          <idle>-0     (-----) [003] d..2 24575.290153: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
98855 kgsl_worker_thr-246   (  246) [003] d..2 24575.290182: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
98856 kgsl_worker_thr-246   (  246) [003] d..3 24575.290203: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
98857 kgsl_worker_thr-246   (  246) [003] d..2 24575.290220: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
98858  kworker/u16:10-23868 (23868) [003] d..2 24575.290706: 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
98859          <idle>-0     (-----) [003] d..1 24575.290719: cpu_idle: state=0 cpu_id=3
98860          <idle>-0     (-----) [003] d.s2 24575.290917: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
98861          <idle>-0     (-----) [002] d.s3 24575.290923: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
98862          <idle>-0     (-----) [003] dns3 24575.290938: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
98863          <idle>-0     (-----) [002] d.s4 24575.290946: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
98864          <idle>-0     (-----) [003] .n.1 24575.290947: cpu_idle: state=4294967295 cpu_id=3
98865          <idle>-0     (-----) [001] .n.1 24575.290953: cpu_idle: state=4294967295 cpu_id=1
98866          <idle>-0     (-----) [003] d..2 24575.290957: 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
98867          <idle>-0     (-----) [001] d..2 24575.290967: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
98868     rcu_preempt-7     (    7) [003] d..2 24575.290971: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
98869          <idle>-0     (-----) [002] ...1 24575.290976: cpu_idle: state=4294967295 cpu_id=2
98870          <idle>-0     (-----) [002] d..1 24575.290983: cpu_idle: state=0 cpu_id=2
98871  crtc_event:111-254   (  254) [001] d..2 24575.291002: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98872          <idle>-0     (-----) [001] d..1 24575.291015: cpu_idle: state=0 cpu_id=1
98873     rcu_preempt-7     (    7) [003] d..3 24575.291023: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
98874          <idle>-0     (-----) [002] .n.1 24575.291028: cpu_idle: state=4294967295 cpu_id=2
98875          <idle>-0     (-----) [002] d..2 24575.291045: 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
98876     rcu_preempt-7     (    7) [003] d..2 24575.291052: 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
98877         rcuop/0-10    (   10) [002] d..2 24575.291062: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
98878          <idle>-0     (-----) [003] d..1 24575.291066: cpu_idle: state=0 cpu_id=3
98879         rcuop/0-10    (   10) [002] d..3 24575.291084: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
98880          <idle>-0     (-----) [003] .n.1 24575.291089: cpu_idle: state=4294967295 cpu_id=3
98881          <idle>-0     (-----) [003] d..2 24575.291102: 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
98882         rcuop/0-10    (   10) [002] d..2 24575.291109: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
98883          <idle>-0     (-----) [002] d..1 24575.291122: cpu_idle: state=0 cpu_id=2
98884     rcu_preempt-7     (    7) [003] d..2 24575.291130: 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
98885          <idle>-0     (-----) [003] d..1 24575.291139: cpu_idle: state=0 cpu_id=3
98886          <idle>-0     (-----) [000] d.h3 24575.291745: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
98887          <idle>-0     (-----) [000] d.h4 24575.291763: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
98888          <idle>-0     (-----) [003] .n.1 24575.291768: cpu_idle: state=4294967295 cpu_id=3
98889          <idle>-0     (-----) [003] d..2 24575.291780: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
98890          <idle>-0     (-----) [000] ...1 24575.291782: cpu_idle: state=4294967295 cpu_id=0
98891          <idle>-0     (-----) [000] d..1 24575.291788: cpu_idle: state=0 cpu_id=0
98892 kgsl_worker_thr-246   (  246) [003] d..2 24575.291861: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98893          <idle>-0     (-----) [003] d..1 24575.291872: cpu_idle: state=0 cpu_id=3
98894          <idle>-0     (-----) [000] d.h5 24575.291990: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
98895          <idle>-0     (-----) [000] d.h6 24575.292006: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
98896          <idle>-0     (-----) [002] .n.1 24575.292011: cpu_idle: state=4294967295 cpu_id=2
98897          <idle>-0     (-----) [000] ...1 24575.292022: cpu_idle: state=4294967295 cpu_id=0
98898          <idle>-0     (-----) [002] d..2 24575.292022: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
98899          <idle>-0     (-----) [000] d..1 24575.292028: cpu_idle: state=0 cpu_id=0
98900 crtc_commit:111-253   (  253) [002] d..2 24575.292116: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
98901          <idle>-0     (-----) [002] d..1 24575.292130: cpu_idle: state=0 cpu_id=2
98902          <idle>-0     (-----) [000] d.h5 24575.292303: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
98903          <idle>-0     (-----) [000] d.h6 24575.292319: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
98904          <idle>-0     (-----) [001] .n.1 24575.292325: cpu_idle: state=4294967295 cpu_id=1
98905          <idle>-0     (-----) [001] d..2 24575.292336: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
98906          <idle>-0     (-----) [000] ...1 24575.292341: cpu_idle: state=4294967295 cpu_id=0
98907          <idle>-0     (-----) [000] d..1 24575.292347: cpu_idle: state=0 cpu_id=0
98908  crtc_event:111-254   (  254) [001] d..2 24575.292365: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98909          <idle>-0     (-----) [001] d..1 24575.292376: cpu_idle: state=0 cpu_id=1
98910          <idle>-0     (-----) [003] d.h2 24575.293906: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
98911          <idle>-0     (-----) [003] dnh3 24575.293923: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
98912          <idle>-0     (-----) [003] .n.1 24575.293931: cpu_idle: state=4294967295 cpu_id=3
98913          <idle>-0     (-----) [003] d..2 24575.293942: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
98914        DispSync-23904 (23896) [003] d..1 24575.293969: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
98915        DispSync-23904 (23896) [003] d..2 24575.293997: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
98916          <idle>-0     (-----) [000] .n.1 24575.294003: cpu_idle: state=4294967295 cpu_id=0
98917          <idle>-0     (-----) [000] d..2 24575.294020: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
98918        DispSync-23904 (23896) [003] d..2 24575.294035: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98919          <idle>-0     (-----) [003] d..1 24575.294050: cpu_idle: state=0 cpu_id=3
98920  appEventThread-23905 (23896) [000] d..3 24575.294080: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
98921  appEventThread-23905 (23896) [000] d..4 24575.294108: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
98922          <idle>-0     (-----) [001] .n.1 24575.294113: cpu_idle: state=4294967295 cpu_id=1
98923          <idle>-0     (-----) [001] d..2 24575.294128: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
98924  appEventThread-23905 (23896) [000] d..2 24575.294157: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98925          <idle>-0     (-----) [000] d..1 24575.294173: cpu_idle: state=0 cpu_id=0
98926 s.nexuslauncher-24827 (24827) [001] d.s2 24575.294259: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
98927 s.nexuslauncher-24827 (24827) [001] d.s3 24575.294314: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
98928 s.nexuslauncher-24827 (24827) [001] .... 24575.294730: binder_transaction: transaction=1671200 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
98929 s.nexuslauncher-24827 (24827) [001] d..4 24575.294743: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
98930 s.nexuslauncher-24827 (24827) [001] d..5 24575.294782: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
98931          <idle>-0     (-----) [000] .n.1 24575.294788: cpu_idle: state=4294967295 cpu_id=0
98932          <idle>-0     (-----) [000] d..2 24575.294806: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
98933  Binder:23896_5-25989 (23896) [000] .... 24575.294816: binder_transaction_received: transaction=1671200
98934 s.nexuslauncher-24827 (24827) [001] d..3 24575.294828: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
98935  Binder:23896_5-25989 (23896) [000] d..1 24575.294855: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
98936 s.nexuslauncher-24827 (24827) [001] d..4 24575.294861: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
98937          <idle>-0     (-----) [002] .n.1 24575.294867: cpu_idle: state=4294967295 cpu_id=2
98938  Binder:23896_5-25989 (23896) [000] d..2 24575.294884: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
98939          <idle>-0     (-----) [002] d..2 24575.294885: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
98940          <idle>-0     (-----) [003] .n.1 24575.294891: cpu_idle: state=4294967295 cpu_id=3
98941          <idle>-0     (-----) [003] d..2 24575.294906: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
98942  Binder:23896_5-25989 (23896) [000] d..2 24575.294948: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98943    RenderThread-25194 (24827) [002] d..2 24575.294950: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
98944          <idle>-0     (-----) [002] d..1 24575.294964: cpu_idle: state=0 cpu_id=2
98945          <idle>-0     (-----) [000] d..1 24575.294965: cpu_idle: state=0 cpu_id=0
98946  appEventThread-23905 (23896) [003] d..2 24575.294972: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98947          <idle>-0     (-----) [003] d..1 24575.294982: cpu_idle: state=0 cpu_id=3
98948 s.nexuslauncher-24827 (24827) [001] d..3 24575.295444: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
98949 s.nexuslauncher-24827 (24827) [001] d..4 24575.295486: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
98950          <idle>-0     (-----) [000] .n.1 24575.295492: cpu_idle: state=4294967295 cpu_id=0
98951          <idle>-0     (-----) [000] d..2 24575.295508: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
98952 s.nexuslauncher-24827 (24827) [001] d..2 24575.295519: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
98953    RenderThread-25194 (24827) [000] d..1 24575.295778: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
98954  kworker/u16:10-23868 (23868) [001] d..2 24575.295788: 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
98955    RenderThread-25194 (24827) [000] d..2 24575.295816: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
98956          <idle>-0     (-----) [001] d..2 24575.295831: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
98957    RenderThread-25194 (24827) [000] .... 24575.295892: binder_transaction: transaction=1671201 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
98958    RenderThread-25194 (24827) [000] ...2 24575.295903: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
98959    RenderThread-25194 (24827) [000] d..4 24575.295908: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
98960    RenderThread-25194 (24827) [000] dn.5 24575.295927: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
98961    RenderThread-25194 (24827) [000] d..2 24575.295939: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
98962  Binder:23896_5-25989 (23896) [000] .... 24575.295950: binder_transaction_received: transaction=1671201
98963 s.nexuslauncher-24827 (24827) [001] d..2 24575.295981: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98964          <idle>-0     (-----) [001] d..1 24575.295999: cpu_idle: state=0 cpu_id=1
98965  Binder:23896_5-25989 (23896) [000] d..2 24575.296003: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
98966    RenderThread-25194 (24827) [000] d..2 24575.296038: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98967          <idle>-0     (-----) [000] d..1 24575.296057: cpu_idle: state=0 cpu_id=0
98968          <idle>-0     (-----) [003] d.s3 24575.296273: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
98969          <idle>-0     (-----) [003] d.s4 24575.296314: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
98970          <idle>-0     (-----) [003] dns4 24575.296322: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
98971          <idle>-0     (-----) [003] .n.1 24575.296333: cpu_idle: state=4294967295 cpu_id=3
98972          <idle>-0     (-----) [003] d..2 24575.296344: 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
98973  kworker/u16:10-23868 (23868) [003] .... 24575.296447: clk_set_rate: l3_cluster0_vote_clk 403200000
98974  kworker/u16:10-23868 (23868) [003] .... 24575.296457: clk_set_rate: l3_clk 403200000
98975  kworker/u16:10-23868 (23868) [003] d..2 24575.296521: 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
98976          <idle>-0     (-----) [003] d..1 24575.296534: cpu_idle: state=0 cpu_id=3
98977          <idle>-0     (-----) [003] d.H3 24575.297706: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
98978          <idle>-0     (-----) [003] d.H3 24575.297724: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
98979          <idle>-0     (-----) [005] dnh2 24575.297730: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
98980          <idle>-0     (-----) [005] .n.1 24575.297734: cpu_idle: state=4294967295 cpu_id=5
98981          <idle>-0     (-----) [005] d..2 24575.297739: 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
98982          <idle>-0     (-----) [003] d.H4 24575.297742: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
98983          <idle>-0     (-----) [002] .n.1 24575.297747: cpu_idle: state=4294967295 cpu_id=2
98984          <idle>-0     (-----) [003] d.s2 24575.297750: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
98985         sugov:4-560   (  560) [005] d..2 24575.297753: 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
98986          <idle>-0     (-----) [005] d..1 24575.297760: cpu_idle: state=0 cpu_id=5
98987          <idle>-0     (-----) [002] d..2 24575.297761: 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
98988          <idle>-0     (-----) [003] dns3 24575.297770: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
98989          <idle>-0     (-----) [003] dns3 24575.297776: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
98990         sugov:0-559   (  559) [002] d..2 24575.297793: 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
98991          <idle>-0     (-----) [002] d..1 24575.297805: cpu_idle: state=0 cpu_id=2
98992          <idle>-0     (-----) [003] dns4 24575.297815: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
98993          <idle>-0     (-----) [002] .n.1 24575.297821: cpu_idle: state=4294967295 cpu_id=2
98994          <idle>-0     (-----) [002] d..2 24575.297834: 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
98995          <idle>-0     (-----) [003] .n.1 24575.297838: cpu_idle: state=4294967295 cpu_id=3
98996          <idle>-0     (-----) [003] d..2 24575.297850: 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
98997     rcu_preempt-7     (    7) [003] d..2 24575.297878: 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
98998          <idle>-0     (-----) [003] d..1 24575.297891: cpu_idle: state=0 cpu_id=3
98999  kworker/u16:10-23868 (23868) [002] d..2 24575.297917: 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
99000          <idle>-0     (-----) [003] d.h2 24575.297921: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
99001          <idle>-0     (-----) [002] d..1 24575.297928: cpu_idle: state=0 cpu_id=2
99002          <idle>-0     (-----) [003] dnh3 24575.297936: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
99003          <idle>-0     (-----) [003] .n.1 24575.297946: cpu_idle: state=4294967295 cpu_id=3
99004          <idle>-0     (-----) [003] d..2 24575.297956: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
99005        DispSync-23904 (23896) [003] d..1 24575.297974: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
99006        DispSync-23904 (23896) [003] d..2 24575.297990: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
99007          <idle>-0     (-----) [001] .n.1 24575.297998: cpu_idle: state=4294967295 cpu_id=1
99008          <idle>-0     (-----) [001] d..2 24575.298014: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
99009        DispSync-23904 (23896) [003] d..2 24575.298022: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
99010          <idle>-0     (-----) [003] d..1 24575.298036: cpu_idle: state=0 cpu_id=3
99011   sfEventThread-23906 (23896) [001] d..3 24575.298067: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
99012   sfEventThread-23906 (23896) [001] d..4 24575.298092: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
99013          <idle>-0     (-----) [000] .n.1 24575.298099: cpu_idle: state=4294967295 cpu_id=0
99014          <idle>-0     (-----) [000] d..2 24575.298114: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
99015   sfEventThread-23906 (23896) [001] d..2 24575.298133: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99016          <idle>-0     (-----) [001] d..1 24575.298151: cpu_idle: state=0 cpu_id=1
99017  surfaceflinger-23896 (23896) [000] d..1 24575.298328: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
99018  surfaceflinger-23896 (23896) [000] d..2 24575.298366: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99019          <idle>-0     (-----) [001] .n.1 24575.298376: cpu_idle: state=4294967295 cpu_id=1
99020          <idle>-0     (-----) [001] d..2 24575.298392: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
99021  Binder:23896_5-25989 (23896) [001] d..2 24575.298424: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99022          <idle>-0     (-----) [001] d..1 24575.298436: cpu_idle: state=0 cpu_id=1
99023  surfaceflinger-23896 (23896) [000] d..1 24575.298558: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
99024  surfaceflinger-23896 (23896) [000] d..2 24575.298580: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
99025          <idle>-0     (-----) [001] .n.1 24575.298585: cpu_idle: state=4294967295 cpu_id=1
99026          <idle>-0     (-----) [001] d..2 24575.298597: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
99027   sfEventThread-23906 (23896) [001] d..2 24575.298637: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99028          <idle>-0     (-----) [001] d..1 24575.298649: cpu_idle: state=0 cpu_id=1
99029          <idle>-0     (-----) [005] ...1 24575.298774: cpu_idle: state=4294967295 cpu_id=5
99030          <idle>-0     (-----) [005] d..1 24575.298777: cpu_idle: state=0 cpu_id=5
99031  surfaceflinger-23896 (23896) [000] ...1 24575.298821: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
99032  surfaceflinger-23896 (23896) [000] ...1 24575.298832: tracing_mark_write: E|23896
99033  surfaceflinger-23896 (23896) [000] .... 24575.298901: binder_transaction: transaction=1671202 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
99034  surfaceflinger-23896 (23896) [000] ...2 24575.298933: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
99035  surfaceflinger-23896 (23896) [000] d..4 24575.298941: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
99036  surfaceflinger-23896 (23896) [000] d..5 24575.298965: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
99037          <idle>-0     (-----) [003] .n.1 24575.298971: cpu_idle: state=4294967295 cpu_id=3
99038          <idle>-0     (-----) [003] d..2 24575.298982: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
99039  HwBinder:598_3-633   (  598) [003] .... 24575.298994: binder_transaction_received: transaction=1671202
99040  surfaceflinger-23896 (23896) [000] d..2 24575.299002: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99041          <idle>-0     (-----) [000] d..1 24575.299020: cpu_idle: state=0 cpu_id=0
99042  HwBinder:598_3-633   (  598) [003] ...1 24575.299050: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
99043  HwBinder:598_3-633   (  598) [003] ...1 24575.299215: tracing_mark_write: B|598|HWCSession::PresentDisplay::
99044  HwBinder:598_3-633   (  598) [003] ...1 24575.299432: tracing_mark_write: B|598|HWDeviceDRM::Commit::
99045  HwBinder:598_3-633   (  598) [003] ...1 24575.299448: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
99046  HwBinder:598_3-633   (  598) [003] d..2 24575.300214: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
99047  HwBinder:598_3-633   (  598) [003] d..3 24575.300244: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
99048          <idle>-0     (-----) [002] .n.1 24575.300249: cpu_idle: state=4294967295 cpu_id=2
99049          <idle>-0     (-----) [002] d..2 24575.300261: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
99050  HwBinder:598_3-633   (  598) [003] ...1 24575.300359: tracing_mark_write: E|598
99051  HwBinder:598_3-633   (  598) [003] ...1 24575.300367: tracing_mark_write: E|598
99052  HwBinder:598_3-633   (  598) [003] ...1 24575.300442: tracing_mark_write: E|598
99053  HwBinder:598_3-633   (  598) [003] ...1 24575.300499: tracing_mark_write: E|598
99054  HwBinder:598_3-633   (  598) [003] .... 24575.300516: binder_transaction: transaction=1671203 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
99055  HwBinder:598_3-633   (  598) [003] d..2 24575.300545: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
99056  HwBinder:598_3-633   (  598) [003] d..3 24575.300565: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
99057  HwBinder:598_3-633   (  598) [003] .... 24575.300572: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
99058          <idle>-0     (-----) [000] .n.1 24575.300573: cpu_idle: state=4294967295 cpu_id=0
99059          <idle>-0     (-----) [000] d..2 24575.300584: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
99060  surfaceflinger-23896 (23896) [000] .... 24575.300593: binder_transaction_received: transaction=1671203
99061  HwBinder:598_3-633   (  598) [003] d..2 24575.300670: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
99062          <idle>-0     (-----) [003] d..1 24575.300689: cpu_idle: state=0 cpu_id=3
99063  surfaceflinger-23896 (23896) [000] d..1 24575.300931: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99064  surfaceflinger-23896 (23896) [000] d..2 24575.300955: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99065          <idle>-0     (-----) [001] .n.1 24575.300960: cpu_idle: state=4294967295 cpu_id=1
99066          <idle>-0     (-----) [001] d..2 24575.300974: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
99067  Binder:23896_5-25989 (23896) [001] .... 24575.301041: binder_transaction: transaction=1671204 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
99068  Binder:23896_5-25989 (23896) [001] d..2 24575.301058: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
99069  Binder:23896_5-25989 (23896) [001] d..3 24575.301084: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
99070  Binder:23896_5-25989 (23896) [001] .... 24575.301090: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
99071  Binder:23896_5-25989 (23896) [001] d..2 24575.301155: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
99072 crtc_commit:111-253   (  253) [002] d..2 24575.301158: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
99073  surfaceflinger-23896 (23896) [000] d..2 24575.301161: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99074    RenderThread-25194 (24827) [001] .... 24575.301165: binder_transaction_received: transaction=1671204
99075          <idle>-0     (-----) [002] d..1 24575.301175: cpu_idle: state=0 cpu_id=2
99076          <idle>-0     (-----) [000] d..1 24575.301179: cpu_idle: state=0 cpu_id=0
99077          <idle>-0     (-----) [000] d.h2 24575.301690: sched_waking: comm=CCodecWatchdog pid=23520 prio=120 target_cpu=000
99078          <idle>-0     (-----) [000] dnh3 24575.301717: sched_wakeup: comm=CCodecWatchdog pid=23520 prio=120 target_cpu=000
99079          <idle>-0     (-----) [000] .n.1 24575.301729: cpu_idle: state=4294967295 cpu_id=0
99080          <idle>-0     (-----) [000] d..2 24575.301744: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=23520 next_prio=120
99081  CCodecWatchdog-23520 (  884) [000] d..2 24575.301923: sched_switch: prev_comm=CCodecWatchdog prev_pid=23520 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99082          <idle>-0     (-----) [000] d..1 24575.301936: cpu_idle: state=0 cpu_id=0
99083          <idle>-0     (-----) [000] d.h2 24575.302041: sched_waking: comm=CCodecWatchdog pid=24186 prio=120 target_cpu=000
99084          <idle>-0     (-----) [000] dnh3 24575.302064: sched_wakeup: comm=CCodecWatchdog pid=24186 prio=120 target_cpu=000
99085          <idle>-0     (-----) [000] .n.1 24575.302075: cpu_idle: state=4294967295 cpu_id=0
99086          <idle>-0     (-----) [000] d..2 24575.302088: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=24186 next_prio=120
99087  CCodecWatchdog-24186 (23968) [000] d..2 24575.302249: sched_switch: prev_comm=CCodecWatchdog prev_pid=24186 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99088          <idle>-0     (-----) [000] d..1 24575.302265: cpu_idle: state=0 cpu_id=0
99089    RenderThread-25194 (24827) [001] .... 24575.303801: binder_transaction: transaction=1671205 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
99090    RenderThread-25194 (24827) [001] ...2 24575.303817: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
99091    RenderThread-25194 (24827) [001] d..4 24575.303824: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99092    RenderThread-25194 (24827) [001] dn.5 24575.303846: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99093    RenderThread-25194 (24827) [001] d..2 24575.303858: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
99094  Binder:23896_5-25989 (23896) [001] .... 24575.303868: binder_transaction_received: transaction=1671205
99095  Binder:23896_5-25989 (23896) [001] .... 24575.304059: binder_transaction: transaction=1671206 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
99096  Binder:23896_5-25989 (23896) [001] .... 24575.304069: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
99097  Binder:23896_5-25989 (23896) [001] d..2 24575.304133: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
99098    RenderThread-25194 (24827) [001] .... 24575.304144: binder_transaction_received: transaction=1671206
99099          <idle>-0     (-----) [003] d.s2 24575.304251: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
99100    RenderThread-25194 (24827) [001] d.s2 24575.304261: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
99101          <idle>-0     (-----) [003] dns3 24575.304274: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
99102    RenderThread-25194 (24827) [001] d.s2 24575.304286: sched_waking: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
99103          <idle>-0     (-----) [003] .n.1 24575.304287: cpu_idle: state=4294967295 cpu_id=3
99104          <idle>-0     (-----) [006] dnh2 24575.304297: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
99105          <idle>-0     (-----) [003] d..2 24575.304301: 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
99106    RenderThread-25194 (24827) [001] d.s2 24575.304302: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
99107          <idle>-0     (-----) [006] .n.1 24575.304303: cpu_idle: state=4294967295 cpu_id=6
99108     rcu_preempt-7     (    7) [003] d..2 24575.304311: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
99109          <idle>-0     (-----) [005] dnh2 24575.304312: sched_wakeup: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
99110          <idle>-0     (-----) [005] .n.1 24575.304315: cpu_idle: state=4294967295 cpu_id=5
99111          <idle>-0     (-----) [006] d..2 24575.304319: 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
99112          <idle>-0     (-----) [005] d..2 24575.304322: 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
99113     kworker/5:0-24254 (24254) [005] d..2 24575.304348: 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
99114    RenderThread-25194 (24827) [001] d.s3 24575.304354: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
99115          <idle>-0     (-----) [005] d..1 24575.304354: cpu_idle: state=0 cpu_id=5
99116     kworker/6:0-21469 (21469) [006] d..2 24575.304370: 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
99117     rcu_preempt-7     (    7) [003] d..3 24575.304371: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
99118          <idle>-0     (-----) [006] d..1 24575.304379: cpu_idle: state=0 cpu_id=6
99119     rcu_preempt-7     (    7) [003] d..2 24575.304386: 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
99120         rcuop/0-10    (   10) [003] d..2 24575.304399: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
99121    RenderThread-25194 (24827) [001] d..2 24575.304428: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99122         rcuop/0-10    (   10) [003] d..3 24575.304447: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
99123         rcuop/0-10    (   10) [003] d..2 24575.304460: 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
99124          <idle>-0     (-----) [001] d..2 24575.304461: 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
99125     rcu_preempt-7     (    7) [001] d..2 24575.304491: 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
99126          <idle>-0     (-----) [001] d..1 24575.304538: cpu_idle: state=0 cpu_id=1
99127  kworker/u16:10-23868 (23868) [003] d..2 24575.304647: 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
99128          <idle>-0     (-----) [003] d..1 24575.304661: cpu_idle: state=0 cpu_id=3
99129          <idle>-0     (-----) [000] d.h5 24575.306153: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
99130          <idle>-0     (-----) [000] d.h6 24575.306177: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
99131          <idle>-0     (-----) [001] .n.1 24575.306183: cpu_idle: state=4294967295 cpu_id=1
99132          <idle>-0     (-----) [000] d.h5 24575.306185: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
99133          <idle>-0     (-----) [001] d..2 24575.306195: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
99134          <idle>-0     (-----) [000] d.h6 24575.306198: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
99135          <idle>-0     (-----) [002] .n.1 24575.306205: cpu_idle: state=4294967295 cpu_id=2
99136  crtc_event:111-254   (  254) [001] d..3 24575.306218: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
99137          <idle>-0     (-----) [002] d..2 24575.306219: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
99138          <idle>-0     (-----) [000] ...1 24575.306219: cpu_idle: state=4294967295 cpu_id=0
99139          <idle>-0     (-----) [000] d..1 24575.306226: cpu_idle: state=0 cpu_id=0
99140  crtc_event:111-254   (  254) [001] d..4 24575.306241: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
99141          <idle>-0     (-----) [003] .n.1 24575.306248: cpu_idle: state=4294967295 cpu_id=3
99142          <idle>-0     (-----) [003] d..2 24575.306260: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
99143  crtc_event:111-254   (  254) [001] d..2 24575.306269: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99144          <idle>-0     (-----) [001] d..1 24575.306281: cpu_idle: state=0 cpu_id=1
99145 crtc_commit:111-253   (  253) [002] d..2 24575.306393: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
99146          <idle>-0     (-----) [002] d..1 24575.306403: cpu_idle: state=0 cpu_id=2
99147 kgsl_worker_thr-246   (  246) [003] d..2 24575.306481: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
99148          <idle>-0     (-----) [003] d..1 24575.306492: cpu_idle: state=0 cpu_id=3
99149          <idle>-0     (-----) [003] d.h2 24575.306570: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
99150          <idle>-0     (-----) [003] dnh3 24575.306584: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
99151          <idle>-0     (-----) [003] .n.1 24575.306594: cpu_idle: state=4294967295 cpu_id=3
99152          <idle>-0     (-----) [003] d..2 24575.306604: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
99153 kgsl_worker_thr-246   (  246) [003] d..2 24575.306627: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
99154 kgsl_worker_thr-246   (  246) [003] d..3 24575.306647: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
99155 kgsl_worker_thr-246   (  246) [003] d..2 24575.306663: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
99156  kworker/u16:10-23868 (23868) [003] d..2 24575.307105: 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
99157          <idle>-0     (-----) [003] d..1 24575.307119: cpu_idle: state=0 cpu_id=3
99158          <idle>-0     (-----) [002] d.s3 24575.307583: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
99159          <idle>-0     (-----) [002] d.s4 24575.307603: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
99160          <idle>-0     (-----) [001] .n.1 24575.307609: cpu_idle: state=4294967295 cpu_id=1
99161          <idle>-0     (-----) [001] d..2 24575.307624: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
99162          <idle>-0     (-----) [002] ...1 24575.307628: cpu_idle: state=4294967295 cpu_id=2
99163          <idle>-0     (-----) [002] d..1 24575.307636: cpu_idle: state=0 cpu_id=2
99164  crtc_event:111-254   (  254) [001] d..2 24575.307660: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99165          <idle>-0     (-----) [001] d..1 24575.307668: cpu_idle: state=0 cpu_id=1
99166          <idle>-0     (-----) [000] d.h3 24575.308076: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
99167          <idle>-0     (-----) [000] d.h4 24575.308094: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
99168          <idle>-0     (-----) [003] .n.1 24575.308101: cpu_idle: state=4294967295 cpu_id=3
99169          <idle>-0     (-----) [000] ...1 24575.308112: cpu_idle: state=4294967295 cpu_id=0
99170          <idle>-0     (-----) [003] d..2 24575.308113: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
99171          <idle>-0     (-----) [000] d..1 24575.308118: cpu_idle: state=0 cpu_id=0
99172 kgsl_worker_thr-246   (  246) [003] d..2 24575.308194: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
99173          <idle>-0     (-----) [003] d..1 24575.308204: cpu_idle: state=0 cpu_id=3
99174          <idle>-0     (-----) [000] d.h5 24575.308469: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
99175          <idle>-0     (-----) [000] d.h6 24575.308485: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
99176          <idle>-0     (-----) [002] .n.1 24575.308491: cpu_idle: state=4294967295 cpu_id=2
99177          <idle>-0     (-----) [000] ...1 24575.308500: cpu_idle: state=4294967295 cpu_id=0
99178          <idle>-0     (-----) [002] d..2 24575.308502: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
99179          <idle>-0     (-----) [000] d..1 24575.308506: cpu_idle: state=0 cpu_id=0
99180 crtc_commit:111-253   (  253) [002] d..2 24575.308589: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
99181          <idle>-0     (-----) [002] d..1 24575.308602: cpu_idle: state=0 cpu_id=2
99182          <idle>-0     (-----) [000] d.h5 24575.308783: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
99183          <idle>-0     (-----) [000] d.h6 24575.308798: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
99184          <idle>-0     (-----) [001] .n.1 24575.308803: cpu_idle: state=4294967295 cpu_id=1
99185          <idle>-0     (-----) [001] d..2 24575.308812: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
99186          <idle>-0     (-----) [000] ...1 24575.308819: cpu_idle: state=4294967295 cpu_id=0
99187          <idle>-0     (-----) [000] d..1 24575.308825: cpu_idle: state=0 cpu_id=0
99188  crtc_event:111-254   (  254) [001] d..2 24575.308837: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99189          <idle>-0     (-----) [001] d..1 24575.308844: cpu_idle: state=0 cpu_id=1
99190          <idle>-0     (-----) [003] d.h2 24575.310377: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
99191          <idle>-0     (-----) [003] dnh3 24575.310393: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
99192          <idle>-0     (-----) [003] .n.1 24575.310403: cpu_idle: state=4294967295 cpu_id=3
99193          <idle>-0     (-----) [003] d..2 24575.310413: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
99194        DispSync-23904 (23896) [003] d..1 24575.310435: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
99195        DispSync-23904 (23896) [003] d..2 24575.310464: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
99196          <idle>-0     (-----) [002] .n.1 24575.310470: cpu_idle: state=4294967295 cpu_id=2
99197          <idle>-0     (-----) [002] d..2 24575.310482: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
99198        DispSync-23904 (23896) [003] d..2 24575.310500: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
99199          <idle>-0     (-----) [003] d..1 24575.310512: cpu_idle: state=0 cpu_id=3
99200  appEventThread-23905 (23896) [002] d..3 24575.310542: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
99201  appEventThread-23905 (23896) [002] d..4 24575.310579: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
99202          <idle>-0     (-----) [000] .n.1 24575.310583: cpu_idle: state=4294967295 cpu_id=0
99203          <idle>-0     (-----) [000] d..2 24575.310600: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
99204  appEventThread-23905 (23896) [002] d..2 24575.310622: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
99205          <idle>-0     (-----) [002] d..1 24575.310638: cpu_idle: state=0 cpu_id=2
99206          <idle>-0     (-----) [001] d.s2 24575.310912: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
99207          <idle>-0     (-----) [001] dns3 24575.310933: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
99208          <idle>-0     (-----) [001] .n.1 24575.310955: cpu_idle: state=4294967295 cpu_id=1
99209          <idle>-0     (-----) [001] d..2 24575.310965: 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
99210     rcu_preempt-7     (    7) [001] d..2 24575.311000: 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
99211          <idle>-0     (-----) [001] d..1 24575.311013: cpu_idle: state=0 cpu_id=1
99212 s.nexuslauncher-24827 (24827) [000] .... 24575.311122: binder_transaction: transaction=1671207 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
99213 s.nexuslauncher-24827 (24827) [000] d..4 24575.311134: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
99214 s.nexuslauncher-24827 (24827) [000] d..5 24575.311161: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
99215          <idle>-0     (-----) [001] .n.1 24575.311167: cpu_idle: state=4294967295 cpu_id=1
99216          <idle>-0     (-----) [001] d..2 24575.311179: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
99217  Binder:23896_5-25989 (23896) [001] .... 24575.311190: binder_transaction_received: transaction=1671207
99218 s.nexuslauncher-24827 (24827) [000] d..3 24575.311203: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
99219  Binder:23896_5-25989 (23896) [001] d..1 24575.311232: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
99220 s.nexuslauncher-24827 (24827) [000] d..4 24575.311235: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
99221          <idle>-0     (-----) [002] .n.1 24575.311241: cpu_idle: state=4294967295 cpu_id=2
99222          <idle>-0     (-----) [002] d..2 24575.311263: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
99223  Binder:23896_5-25989 (23896) [001] d..2 24575.311265: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
99224          <idle>-0     (-----) [003] .n.1 24575.311271: cpu_idle: state=4294967295 cpu_id=3
99225          <idle>-0     (-----) [003] d..2 24575.311284: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
99226  Binder:23896_5-25989 (23896) [001] d..2 24575.311317: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99227    RenderThread-25194 (24827) [002] d..2 24575.311321: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
99228          <idle>-0     (-----) [001] d..1 24575.311334: cpu_idle: state=0 cpu_id=1
99229          <idle>-0     (-----) [002] d..1 24575.311337: cpu_idle: state=0 cpu_id=2
99230  appEventThread-23905 (23896) [003] d..2 24575.311338: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
99231          <idle>-0     (-----) [003] d..1 24575.311349: cpu_idle: state=0 cpu_id=3
99232 s.nexuslauncher-24827 (24827) [000] d..3 24575.311787: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
99233 s.nexuslauncher-24827 (24827) [000] d..4 24575.311824: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
99234          <idle>-0     (-----) [001] .n.1 24575.311830: cpu_idle: state=4294967295 cpu_id=1
99235          <idle>-0     (-----) [001] d..2 24575.311845: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
99236 s.nexuslauncher-24827 (24827) [000] d..2 24575.311866: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99237          <idle>-0     (-----) [000] d..1 24575.311888: cpu_idle: state=0 cpu_id=0
99238    RenderThread-25194 (24827) [001] d..1 24575.312096: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
99239    RenderThread-25194 (24827) [001] d..2 24575.312121: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
99240          <idle>-0     (-----) [000] .n.1 24575.312129: cpu_idle: state=4294967295 cpu_id=0
99241          <idle>-0     (-----) [000] d..2 24575.312143: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
99242    RenderThread-25194 (24827) [001] .... 24575.312190: binder_transaction: transaction=1671208 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
99243    RenderThread-25194 (24827) [001] ...2 24575.312200: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
99244    RenderThread-25194 (24827) [001] d..4 24575.312204: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99245    RenderThread-25194 (24827) [001] dn.5 24575.312221: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99246    RenderThread-25194 (24827) [001] d..2 24575.312232: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
99247  Binder:23896_5-25989 (23896) [001] .... 24575.312241: binder_transaction_received: transaction=1671208
99248 s.nexuslauncher-24827 (24827) [000] d..2 24575.312274: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99249  Binder:23896_5-25989 (23896) [001] d..2 24575.312289: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
99250          <idle>-0     (-----) [000] d..1 24575.312290: cpu_idle: state=0 cpu_id=0
99251    RenderThread-25194 (24827) [001] d..2 24575.312321: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99252          <idle>-0     (-----) [001] d..1 24575.312339: cpu_idle: state=0 cpu_id=1
99253          <idle>-0     (-----) [002] ...1 24575.313467: cpu_idle: state=4294967295 cpu_id=2
99254          <idle>-0     (-----) [002] d..1 24575.313472: cpu_idle: state=0 cpu_id=2
99255          <idle>-0     (-----) [003] d.h2 24575.314397: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
99256          <idle>-0     (-----) [003] dnh3 24575.314412: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
99257          <idle>-0     (-----) [003] .n.1 24575.314420: cpu_idle: state=4294967295 cpu_id=3
99258          <idle>-0     (-----) [003] d..2 24575.314432: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
99259        DispSync-23904 (23896) [003] d..1 24575.314448: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
99260        DispSync-23904 (23896) [003] d..2 24575.314462: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
99261          <idle>-0     (-----) [001] .n.1 24575.314470: cpu_idle: state=4294967295 cpu_id=1
99262          <idle>-0     (-----) [001] d..2 24575.314485: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
99263        DispSync-23904 (23896) [003] d..2 24575.314502: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
99264          <idle>-0     (-----) [003] d..2 24575.314507: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
99265          <idle>-0     (-----) [003] dn.3 24575.314522: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
99266   sfEventThread-23906 (23896) [001] d..3 24575.314532: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
99267          <idle>-0     (-----) [003] d..2 24575.314533: 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
99268     ksoftirqd/3-34    (   34) [003] d.s2 24575.314545: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
99269   sfEventThread-23906 (23896) [001] d..4 24575.314554: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
99270          <idle>-0     (-----) [000] .n.1 24575.314560: cpu_idle: state=4294967295 cpu_id=0
99271          <idle>-0     (-----) [000] d..2 24575.314573: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
99272     ksoftirqd/3-34    (   34) [003] d.s3 24575.314589: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
99273   sfEventThread-23906 (23896) [001] d..2 24575.314601: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
99274     ksoftirqd/3-34    (   34) [003] d.s2 24575.314609: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
99275     ksoftirqd/3-34    (   34) [003] d.s3 24575.314651: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
99276     ksoftirqd/3-34    (   34) [003] d..2 24575.314677: 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
99277  kworker/u16:16-25995 (25995) [003] d..2 24575.314710: 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
99278          <idle>-0     (-----) [003] d..1 24575.314736: cpu_idle: state=0 cpu_id=3
99279  surfaceflinger-23896 (23896) [000] d..1 24575.314797: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99280  surfaceflinger-23896 (23896) [000] d..2 24575.314835: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
99281          <idle>-0     (-----) [002] .n.1 24575.314839: cpu_idle: state=4294967295 cpu_id=2
99282          <idle>-0     (-----) [002] d..2 24575.314855: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
99283  Binder:23896_5-25989 (23896) [002] d..2 24575.314895: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
99284          <idle>-0     (-----) [002] d..1 24575.314910: cpu_idle: state=0 cpu_id=2
99285  kworker/u16:10-23868 (23868) [001] d..2 24575.314945: 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
99286          <idle>-0     (-----) [001] d..1 24575.314958: cpu_idle: state=0 cpu_id=1
99287          <idle>-0     (-----) [003] d.s3 24575.314990: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
99288          <idle>-0     (-----) [003] d.s4 24575.315024: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
99289  surfaceflinger-23896 (23896) [000] d..1 24575.315026: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
99290          <idle>-0     (-----) [003] dns4 24575.315031: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
99291          <idle>-0     (-----) [003] .n.1 24575.315041: cpu_idle: state=4294967295 cpu_id=3
99292  surfaceflinger-23896 (23896) [000] d..2 24575.315048: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
99293          <idle>-0     (-----) [003] d..2 24575.315053: 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
99294          <idle>-0     (-----) [001] .n.1 24575.315054: cpu_idle: state=4294967295 cpu_id=1
99295          <idle>-0     (-----) [001] d..2 24575.315064: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
99296   sfEventThread-23906 (23896) [001] d..2 24575.315107: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99297          <idle>-0     (-----) [001] d..1 24575.315116: cpu_idle: state=0 cpu_id=1
99298  kworker/u16:10-23868 (23868) [003] .... 24575.315167: clk_set_rate: l3_cluster0_vote_clk 300000000
99299  kworker/u16:10-23868 (23868) [003] .... 24575.315175: clk_set_rate: l3_clk 300000000
99300  kworker/u16:10-23868 (23868) [003] d..2 24575.315250: 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
99301          <idle>-0     (-----) [003] d..1 24575.315270: cpu_idle: state=0 cpu_id=3
99302  surfaceflinger-23896 (23896) [000] ...1 24575.315311: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
99303  surfaceflinger-23896 (23896) [000] ...1 24575.315322: tracing_mark_write: E|23896
99304  surfaceflinger-23896 (23896) [000] .... 24575.315397: binder_transaction: transaction=1671209 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
99305  surfaceflinger-23896 (23896) [000] ...2 24575.315434: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
99306  surfaceflinger-23896 (23896) [000] d..4 24575.315444: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
99307  surfaceflinger-23896 (23896) [000] d..5 24575.315470: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
99308          <idle>-0     (-----) [003] .n.1 24575.315476: cpu_idle: state=4294967295 cpu_id=3
99309          <idle>-0     (-----) [003] d..2 24575.315489: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
99310  HwBinder:598_3-633   (  598) [003] .... 24575.315501: binder_transaction_received: transaction=1671209
99311  surfaceflinger-23896 (23896) [000] d..2 24575.315511: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99312          <idle>-0     (-----) [000] d..1 24575.315534: cpu_idle: state=0 cpu_id=0
99313  HwBinder:598_3-633   (  598) [003] ...1 24575.315562: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
99314  HwBinder:598_3-633   (  598) [003] ...1 24575.315735: tracing_mark_write: B|598|HWCSession::PresentDisplay::
99315  HwBinder:598_3-633   (  598) [003] ...1 24575.315984: tracing_mark_write: B|598|HWDeviceDRM::Commit::
99316  HwBinder:598_3-633   (  598) [003] ...1 24575.316001: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
99317  HwBinder:598_3-633   (  598) [003] d..2 24575.316786: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
99318  HwBinder:598_3-633   (  598) [003] d..3 24575.316816: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
99319          <idle>-0     (-----) [002] .n.1 24575.316822: cpu_idle: state=4294967295 cpu_id=2
99320          <idle>-0     (-----) [002] d..2 24575.316834: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
99321  HwBinder:598_3-633   (  598) [003] ...1 24575.316939: tracing_mark_write: E|598
99322  HwBinder:598_3-633   (  598) [003] ...1 24575.316947: tracing_mark_write: E|598
99323  HwBinder:598_3-633   (  598) [003] ...1 24575.317031: tracing_mark_write: E|598
99324  HwBinder:598_3-633   (  598) [003] ...1 24575.317092: tracing_mark_write: E|598
99325  HwBinder:598_3-633   (  598) [003] .... 24575.317115: binder_transaction: transaction=1671210 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
99326  HwBinder:598_3-633   (  598) [003] d..2 24575.317147: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
99327  HwBinder:598_3-633   (  598) [003] d..3 24575.317171: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
99328  HwBinder:598_3-633   (  598) [003] .... 24575.317177: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
99329          <idle>-0     (-----) [000] .n.1 24575.317178: cpu_idle: state=4294967295 cpu_id=0
99330          <idle>-0     (-----) [000] d..2 24575.317191: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
99331  surfaceflinger-23896 (23896) [000] .... 24575.317201: binder_transaction_received: transaction=1671210
99332  HwBinder:598_3-633   (  598) [003] d..2 24575.317286: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
99333          <idle>-0     (-----) [003] d..1 24575.317309: cpu_idle: state=0 cpu_id=3
99334  surfaceflinger-23896 (23896) [000] d..1 24575.317524: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
99335  surfaceflinger-23896 (23896) [000] d..2 24575.317578: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99336          <idle>-0     (-----) [001] dns2 24575.317605: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
99337          <idle>-0     (-----) [001] dns3 24575.317699: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
99338          <idle>-0     (-----) [001] .n.1 24575.317713: cpu_idle: state=4294967295 cpu_id=1
99339          <idle>-0     (-----) [001] d..2 24575.317724: 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
99340  surfaceflinger-23896 (23896) [000] d.H3 24575.317728: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
99341     rcu_preempt-7     (    7) [001] d..2 24575.317734: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
99342  surfaceflinger-23896 (23896) [000] d.H3 24575.317748: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
99343          <idle>-0     (-----) [005] dnh2 24575.317754: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
99344          <idle>-0     (-----) [005] .n.1 24575.317758: cpu_idle: state=4294967295 cpu_id=5
99345          <idle>-0     (-----) [005] d..2 24575.317763: 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
99346  surfaceflinger-23896 (23896) [000] d.H4 24575.317770: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
99347         sugov:4-560   (  560) [005] d..2 24575.317777: 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
99348     rcu_preempt-7     (    7) [001] d..3 24575.317779: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
99349 crtc_commit:111-253   (  253) [002] d..2 24575.317782: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=sugov:0 next_pid=559 next_prio=49
99350          <idle>-0     (-----) [005] d..1 24575.317783: cpu_idle: state=0 cpu_id=5
99351     rcu_preempt-7     (    7) [001] d..2 24575.317793: 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
99352         rcuop/0-10    (   10) [001] d..2 24575.317812: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
99353         sugov:0-559   (  559) [002] d..2 24575.317821: 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
99354         rcuop/0-10    (   10) [001] d..3 24575.317839: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
99355         rcuop/0-10    (   10) [001] d..2 24575.317852: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
99356          <idle>-0     (-----) [002] d..2 24575.317861: 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
99357     rcu_preempt-7     (    7) [002] d..2 24575.317895: 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
99358          <idle>-0     (-----) [002] d..1 24575.317907: cpu_idle: state=0 cpu_id=2
99359  Binder:23896_5-25989 (23896) [001] .... 24575.317921: binder_transaction: transaction=1671211 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
99360  Binder:23896_5-25989 (23896) [001] d..2 24575.317938: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
99361  Binder:23896_5-25989 (23896) [001] d..3 24575.317957: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
99362  Binder:23896_5-25989 (23896) [001] .... 24575.317963: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
99363  Binder:23896_5-25989 (23896) [001] d..2 24575.318030: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
99364  surfaceflinger-23896 (23896) [000] d..2 24575.318034: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99365    RenderThread-25194 (24827) [001] .... 24575.318040: binder_transaction_received: transaction=1671211
99366          <idle>-0     (-----) [000] d..1 24575.318057: cpu_idle: state=0 cpu_id=0
99367    RenderThread-25194 (24827) [001] .... 24575.320872: binder_transaction: transaction=1671212 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
99368    RenderThread-25194 (24827) [001] d.s2 24575.320932: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
99369    RenderThread-25194 (24827) [001] d.s3 24575.320990: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
99370          <idle>-0     (-----) [000] .n.1 24575.320996: cpu_idle: state=4294967295 cpu_id=0
99371          <idle>-0     (-----) [000] d..2 24575.321016: 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
99372    RenderThread-25194 (24827) [001] ...2 24575.321018: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
99373    RenderThread-25194 (24827) [001] d..4 24575.321022: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99374    RenderThread-25194 (24827) [001] dn.5 24575.321035: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99375    RenderThread-25194 (24827) [001] d..2 24575.321047: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
99376  Binder:23896_5-25989 (23896) [001] .... 24575.321057: binder_transaction_received: transaction=1671212
99377  kworker/u16:10-23868 (23868) [000] d..2 24575.321127: 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
99378          <idle>-0     (-----) [000] d..1 24575.321140: cpu_idle: state=0 cpu_id=0
99379  Binder:23896_5-25989 (23896) [001] .... 24575.321242: binder_transaction: transaction=1671213 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
99380  Binder:23896_5-25989 (23896) [001] .... 24575.321253: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
99381  Binder:23896_5-25989 (23896) [001] d..2 24575.321321: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
99382    RenderThread-25194 (24827) [001] .... 24575.321334: binder_transaction_received: transaction=1671213
99383    RenderThread-25194 (24827) [001] d..2 24575.321460: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99384          <idle>-0     (-----) [001] d..1 24575.321484: cpu_idle: state=0 cpu_id=1
99385          <idle>-0     (-----) [000] d.h5 24575.322632: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
99386          <idle>-0     (-----) [000] d.h6 24575.322657: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
99387          <idle>-0     (-----) [000] d.h5 24575.322664: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
99388          <idle>-0     (-----) [001] .n.1 24575.322664: cpu_idle: state=4294967295 cpu_id=1
99389          <idle>-0     (-----) [001] d..2 24575.322678: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
99390          <idle>-0     (-----) [000] d.h6 24575.322679: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
99391          <idle>-0     (-----) [002] .n.1 24575.322686: cpu_idle: state=4294967295 cpu_id=2
99392          <idle>-0     (-----) [002] d..2 24575.322699: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
99393          <idle>-0     (-----) [000] ...1 24575.322701: cpu_idle: state=4294967295 cpu_id=0
99394  crtc_event:111-254   (  254) [001] d..3 24575.322704: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
99395          <idle>-0     (-----) [000] d..1 24575.322709: cpu_idle: state=0 cpu_id=0
99396  crtc_event:111-254   (  254) [001] d..4 24575.322730: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
99397          <idle>-0     (-----) [003] .n.1 24575.322738: cpu_idle: state=4294967295 cpu_id=3
99398          <idle>-0     (-----) [003] d..2 24575.322754: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
99399  crtc_event:111-254   (  254) [001] d..2 24575.322760: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99400          <idle>-0     (-----) [001] d..1 24575.322776: cpu_idle: state=0 cpu_id=1
99401 crtc_commit:111-253   (  253) [002] d..2 24575.322888: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
99402          <idle>-0     (-----) [002] d..1 24575.322898: cpu_idle: state=0 cpu_id=2
99403 kgsl_worker_thr-246   (  246) [003] d..2 24575.322984: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
99404          <idle>-0     (-----) [003] d..1 24575.322996: cpu_idle: state=0 cpu_id=3
99405          <idle>-0     (-----) [003] d.h2 24575.323070: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
99406          <idle>-0     (-----) [003] dnh3 24575.323085: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
99407          <idle>-0     (-----) [003] .n.1 24575.323095: cpu_idle: state=4294967295 cpu_id=3
99408          <idle>-0     (-----) [003] d..2 24575.323106: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
99409 kgsl_worker_thr-246   (  246) [003] d..2 24575.323132: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
99410 kgsl_worker_thr-246   (  246) [003] d..3 24575.323178: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
99411 kgsl_worker_thr-246   (  246) [003] d..2 24575.323194: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
99412  kworker/u16:10-23868 (23868) [003] d..2 24575.323659: 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
99413          <idle>-0     (-----) [003] d..1 24575.323676: cpu_idle: state=0 cpu_id=3
99414          <idle>-0     (-----) [002] d.s3 24575.324251: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
99415          <idle>-0     (-----) [002] d.s4 24575.324274: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
99416          <idle>-0     (-----) [002] d.s2 24575.324278: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
99417          <idle>-0     (-----) [001] .n.1 24575.324280: cpu_idle: state=4294967295 cpu_id=1
99418          <idle>-0     (-----) [001] d..2 24575.324294: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
99419          <idle>-0     (-----) [002] dns3 24575.324300: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
99420          <idle>-0     (-----) [002] dns3 24575.324306: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
99421          <idle>-0     (-----) [002] dns4 24575.324321: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
99422          <idle>-0     (-----) [003] .n.1 24575.324329: cpu_idle: state=4294967295 cpu_id=3
99423  crtc_event:111-254   (  254) [001] d..2 24575.324341: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99424          <idle>-0     (-----) [003] d..2 24575.324345: 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
99425          <idle>-0     (-----) [002] .n.1 24575.324349: cpu_idle: state=4294967295 cpu_id=2
99426          <idle>-0     (-----) [001] d..1 24575.324354: cpu_idle: state=0 cpu_id=1
99427          <idle>-0     (-----) [002] d..2 24575.324360: 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
99428     rcu_preempt-7     (    7) [002] d..2 24575.324402: 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
99429          <idle>-0     (-----) [002] d..1 24575.324439: cpu_idle: state=0 cpu_id=2
99430  kworker/u16:10-23868 (23868) [003] .... 24575.324449: clk_set_rate: l3_cluster0_vote_clk 403200000
99431  kworker/u16:10-23868 (23868) [003] .... 24575.324460: clk_set_rate: l3_clk 403200000
99432          <idle>-0     (-----) [000] d.h3 24575.324562: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
99433          <idle>-0     (-----) [000] dnh4 24575.324586: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
99434          <idle>-0     (-----) [000] .n.1 24575.324599: cpu_idle: state=4294967295 cpu_id=0
99435          <idle>-0     (-----) [000] d..2 24575.324612: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
99436 kgsl_worker_thr-246   (  246) [000] d..2 24575.324690: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99437          <idle>-0     (-----) [000] d..1 24575.324706: cpu_idle: state=0 cpu_id=0
99438  kworker/u16:10-23868 (23868) [003] d..2 24575.324773: 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
99439          <idle>-0     (-----) [003] d..1 24575.324788: cpu_idle: state=0 cpu_id=3
99440          <idle>-0     (-----) [000] d.h5 24575.324947: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
99441          <idle>-0     (-----) [000] d.h6 24575.324964: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
99442          <idle>-0     (-----) [002] .n.1 24575.324969: cpu_idle: state=4294967295 cpu_id=2
99443          <idle>-0     (-----) [002] d..2 24575.324981: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
99444          <idle>-0     (-----) [000] ...1 24575.324981: cpu_idle: state=4294967295 cpu_id=0
99445          <idle>-0     (-----) [000] d..1 24575.324986: cpu_idle: state=0 cpu_id=0
99446 crtc_commit:111-253   (  253) [002] d..2 24575.325071: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
99447          <idle>-0     (-----) [002] d..1 24575.325084: cpu_idle: state=0 cpu_id=2
99448          <idle>-0     (-----) [003] d.s3 24575.325254: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
99449          <idle>-0     (-----) [000] d.h5 24575.325257: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
99450          <idle>-0     (-----) [000] d.h6 24575.325272: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
99451          <idle>-0     (-----) [003] d.s4 24575.325272: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
99452          <idle>-0     (-----) [001] .n.1 24575.325278: cpu_idle: state=4294967295 cpu_id=1
99453          <idle>-0     (-----) [003] dns4 24575.325279: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
99454          <idle>-0     (-----) [003] .n.1 24575.325287: cpu_idle: state=4294967295 cpu_id=3
99455          <idle>-0     (-----) [001] d..2 24575.325289: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
99456          <idle>-0     (-----) [000] ...1 24575.325293: cpu_idle: state=4294967295 cpu_id=0
99457          <idle>-0     (-----) [000] d..1 24575.325299: cpu_idle: state=0 cpu_id=0
99458          <idle>-0     (-----) [003] d..2 24575.325300: 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
99459  crtc_event:111-254   (  254) [001] d..2 24575.325315: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99460          <idle>-0     (-----) [001] d..1 24575.325326: cpu_idle: state=0 cpu_id=1
99461  kworker/u16:10-23868 (23868) [003] d..2 24575.325335: 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
99462          <idle>-0     (-----) [003] d..1 24575.325345: cpu_idle: state=0 cpu_id=3
99463          <idle>-0     (-----) [003] d.h2 24575.326849: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
99464          <idle>-0     (-----) [003] dnh3 24575.326866: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
99465          <idle>-0     (-----) [003] .n.1 24575.326875: cpu_idle: state=4294967295 cpu_id=3
99466          <idle>-0     (-----) [003] d..2 24575.326884: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
99467        DispSync-23904 (23896) [003] d..1 24575.326909: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
99468        DispSync-23904 (23896) [003] d..2 24575.326937: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
99469          <idle>-0     (-----) [002] .n.1 24575.326943: cpu_idle: state=4294967295 cpu_id=2
99470          <idle>-0     (-----) [002] d..2 24575.326955: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
99471        DispSync-23904 (23896) [003] d..2 24575.326974: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
99472          <idle>-0     (-----) [003] d..1 24575.326987: cpu_idle: state=0 cpu_id=3
99473  appEventThread-23905 (23896) [002] d..3 24575.327014: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
99474  appEventThread-23905 (23896) [002] d..4 24575.327044: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
99475          <idle>-0     (-----) [000] .n.1 24575.327048: cpu_idle: state=4294967295 cpu_id=0
99476          <idle>-0     (-----) [000] d..2 24575.327065: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
99477  appEventThread-23905 (23896) [002] d..2 24575.327086: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
99478          <idle>-0     (-----) [002] d..1 24575.327100: cpu_idle: state=0 cpu_id=2
99479 s.nexuslauncher-24827 (24827) [000] .... 24575.327520: binder_transaction: transaction=1671214 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
99480 s.nexuslauncher-24827 (24827) [000] d..4 24575.327532: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
99481 s.nexuslauncher-24827 (24827) [000] d..5 24575.327561: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
99482          <idle>-0     (-----) [001] .n.1 24575.327566: cpu_idle: state=4294967295 cpu_id=1
99483          <idle>-0     (-----) [001] d..2 24575.327585: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
99484  Binder:23896_5-25989 (23896) [001] .... 24575.327616: binder_transaction_received: transaction=1671214
99485 s.nexuslauncher-24827 (24827) [000] d..3 24575.327654: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
99486  Binder:23896_5-25989 (23896) [001] d..1 24575.327656: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
99487  Binder:23896_5-25989 (23896) [001] d..2 24575.327680: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
99488          <idle>-0     (-----) [002] .n.1 24575.327686: cpu_idle: state=4294967295 cpu_id=2
99489 s.nexuslauncher-24827 (24827) [000] d..4 24575.327699: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
99490          <idle>-0     (-----) [002] d..2 24575.327707: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
99491  appEventThread-23905 (23896) [002] d..2 24575.327743: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
99492  Binder:23896_5-25989 (23896) [001] d..2 24575.327750: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99493          <idle>-0     (-----) [001] d..1 24575.327769: cpu_idle: state=0 cpu_id=1
99494    RenderThread-25194 (24827) [002] d..2 24575.327807: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
99495          <idle>-0     (-----) [002] d..1 24575.327818: cpu_idle: state=0 cpu_id=2
99496 s.nexuslauncher-24827 (24827) [000] d..3 24575.328379: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
99497 s.nexuslauncher-24827 (24827) [000] d..4 24575.328416: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
99498          <idle>-0     (-----) [001] .n.1 24575.328423: cpu_idle: state=4294967295 cpu_id=1
99499          <idle>-0     (-----) [001] d..2 24575.328437: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
99500 s.nexuslauncher-24827 (24827) [000] d..2 24575.328458: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99501          <idle>-0     (-----) [000] d..1 24575.328480: cpu_idle: state=0 cpu_id=0
99502    RenderThread-25194 (24827) [001] d..1 24575.328729: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
99503    RenderThread-25194 (24827) [001] d..2 24575.328755: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
99504          <idle>-0     (-----) [000] .n.1 24575.328763: cpu_idle: state=4294967295 cpu_id=0
99505          <idle>-0     (-----) [000] d..2 24575.328779: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
99506    RenderThread-25194 (24827) [001] .... 24575.328820: binder_transaction: transaction=1671215 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
99507    RenderThread-25194 (24827) [001] ...2 24575.328829: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
99508    RenderThread-25194 (24827) [001] d..4 24575.328833: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99509    RenderThread-25194 (24827) [001] dn.5 24575.328850: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99510    RenderThread-25194 (24827) [001] d..2 24575.328861: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
99511  Binder:23896_5-25989 (23896) [001] .... 24575.328869: binder_transaction_received: transaction=1671215
99512 s.nexuslauncher-24827 (24827) [000] d..2 24575.328915: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99513  Binder:23896_5-25989 (23896) [001] d..2 24575.328918: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
99514          <idle>-0     (-----) [000] d..1 24575.328931: cpu_idle: state=0 cpu_id=0
99515    RenderThread-25194 (24827) [001] d..2 24575.328951: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99516          <idle>-0     (-----) [001] d..1 24575.328972: cpu_idle: state=0 cpu_id=1
99517          <idle>-0     (-----) [003] d.h2 24575.330867: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
99518          <idle>-0     (-----) [003] dnh3 24575.330881: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
99519          <idle>-0     (-----) [003] .n.1 24575.330890: cpu_idle: state=4294967295 cpu_id=3
99520          <idle>-0     (-----) [003] d..2 24575.330905: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
99521          <idle>-0     (-----) [002] d.s2 24575.330916: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
99522        DispSync-23904 (23896) [003] d..1 24575.330918: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
99523        DispSync-23904 (23896) [003] d..2 24575.330935: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
99524          <idle>-0     (-----) [002] dns3 24575.330936: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
99525          <idle>-0     (-----) [001] .n.1 24575.330944: cpu_idle: state=4294967295 cpu_id=1
99526          <idle>-0     (-----) [002] dns3 24575.330950: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
99527          <idle>-0     (-----) [001] d..2 24575.330957: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
99528        DispSync-23904 (23896) [003] d..2 24575.330971: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
99529          <idle>-0     (-----) [002] dns4 24575.330971: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
99530          <idle>-0     (-----) [002] .n.1 24575.330984: cpu_idle: state=4294967295 cpu_id=2
99531          <idle>-0     (-----) [003] d..1 24575.330985: cpu_idle: state=0 cpu_id=3
99532          <idle>-0     (-----) [002] d..2 24575.330995: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
99533   sfEventThread-23906 (23896) [001] d..3 24575.331004: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
99534     kworker/2:0-12895 (12895) [002] d..2 24575.331022: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
99535   sfEventThread-23906 (23896) [001] d..4 24575.331025: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
99536          <idle>-0     (-----) [000] .n.1 24575.331032: cpu_idle: state=4294967295 cpu_id=0
99537     kworker/2:0-12895 (12895) [002] d..3 24575.331046: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
99538          <idle>-0     (-----) [000] d..2 24575.331054: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
99539     kworker/2:0-12895 (12895) [002] d..2 24575.331068: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
99540   sfEventThread-23906 (23896) [001] d..2 24575.331072: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99541     kworker/2:0-12895 (12895) [002] d..3 24575.331086: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
99542          <idle>-0     (-----) [001] d..1 24575.331091: cpu_idle: state=0 cpu_id=1
99543          <idle>-0     (-----) [003] .n.1 24575.331093: cpu_idle: state=4294967295 cpu_id=3
99544     kworker/2:0-12895 (12895) [002] d..2 24575.331095: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
99545          <idle>-0     (-----) [003] d..2 24575.331106: 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
99546          <idle>-0     (-----) [004] dnh2 24575.331128: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
99547     kworker/2:0-12895 (12895) [002] d..2 24575.331133: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
99548          <idle>-0     (-----) [004] .n.1 24575.331134: cpu_idle: state=4294967295 cpu_id=4
99549     rcu_preempt-7     (    7) [002] d..2 24575.331143: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
99550          <idle>-0     (-----) [004] d..2 24575.331150: 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
99551     kworker/3:1-12662 (12662) [003] d..2 24575.331156: 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
99552          <idle>-0     (-----) [003] d..1 24575.331167: cpu_idle: state=0 cpu_id=3
99553     rcu_preempt-7     (    7) [002] d..3 24575.331185: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
99554     kworker/4:0-24269 (24269) [004] d..2 24575.331186: 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
99555          <idle>-0     (-----) [003] .n.1 24575.331190: cpu_idle: state=4294967295 cpu_id=3
99556          <idle>-0     (-----) [004] d..1 24575.331195: cpu_idle: state=0 cpu_id=4
99557          <idle>-0     (-----) [003] d..2 24575.331203: 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
99558     rcu_preempt-7     (    7) [002] d..2 24575.331209: 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
99559         rcuop/0-10    (   10) [003] d..2 24575.331217: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
99560          <idle>-0     (-----) [002] d..1 24575.331225: cpu_idle: state=0 cpu_id=2
99561         rcuop/0-10    (   10) [003] d..3 24575.331235: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
99562          <idle>-0     (-----) [002] .n.1 24575.331242: cpu_idle: state=4294967295 cpu_id=2
99563  surfaceflinger-23896 (23896) [000] d..1 24575.331253: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99564          <idle>-0     (-----) [002] d..2 24575.331255: 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
99565         rcuop/0-10    (   10) [003] d..2 24575.331257: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
99566          <idle>-0     (-----) [003] d..1 24575.331268: cpu_idle: state=0 cpu_id=3
99567     rcu_preempt-7     (    7) [002] d..2 24575.331279: 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
99568  surfaceflinger-23896 (23896) [000] d..2 24575.331280: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99569          <idle>-0     (-----) [001] .n.1 24575.331286: cpu_idle: state=4294967295 cpu_id=1
99570          <idle>-0     (-----) [002] d..1 24575.331291: cpu_idle: state=0 cpu_id=2
99571          <idle>-0     (-----) [001] d..2 24575.331300: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
99572  Binder:23896_5-25989 (23896) [001] d..2 24575.331338: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99573          <idle>-0     (-----) [001] d..1 24575.331351: cpu_idle: state=0 cpu_id=1
99574  surfaceflinger-23896 (23896) [000] d..1 24575.331500: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
99575  surfaceflinger-23896 (23896) [000] d..2 24575.331524: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
99576          <idle>-0     (-----) [001] .n.1 24575.331529: cpu_idle: state=4294967295 cpu_id=1
99577          <idle>-0     (-----) [001] d..2 24575.331540: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
99578   sfEventThread-23906 (23896) [001] d..2 24575.331579: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99579          <idle>-0     (-----) [001] d..1 24575.331591: cpu_idle: state=0 cpu_id=1
99580  surfaceflinger-23896 (23896) [000] ...1 24575.331772: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
99581  surfaceflinger-23896 (23896) [000] ...1 24575.331781: tracing_mark_write: E|23896
99582  surfaceflinger-23896 (23896) [000] .... 24575.331855: binder_transaction: transaction=1671216 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
99583  surfaceflinger-23896 (23896) [000] ...2 24575.331890: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
99584  surfaceflinger-23896 (23896) [000] d..4 24575.331898: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
99585  surfaceflinger-23896 (23896) [000] d..5 24575.331924: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
99586          <idle>-0     (-----) [003] .n.1 24575.331930: cpu_idle: state=4294967295 cpu_id=3
99587          <idle>-0     (-----) [003] d..2 24575.331941: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
99588  surfaceflinger-23896 (23896) [000] d..2 24575.331950: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
99589  HwBinder:598_3-633   (  598) [003] .... 24575.331951: binder_transaction_received: transaction=1671216
99590     kworker/0:1-13012 (13012) [000] d..2 24575.331999: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99591  HwBinder:598_3-633   (  598) [003] ...1 24575.332000: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
99592          <idle>-0     (-----) [000] d..1 24575.332018: cpu_idle: state=0 cpu_id=0
99593  HwBinder:598_3-633   (  598) [003] ...1 24575.332158: tracing_mark_write: B|598|HWCSession::PresentDisplay::
99594  HwBinder:598_3-633   (  598) [003] ...1 24575.332541: tracing_mark_write: B|598|HWDeviceDRM::Commit::
99595  HwBinder:598_3-633   (  598) [003] ...1 24575.332557: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
99596  HwBinder:598_3-633   (  598) [003] d..2 24575.333282: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
99597  HwBinder:598_3-633   (  598) [003] d..3 24575.333308: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
99598          <idle>-0     (-----) [002] .n.1 24575.333313: cpu_idle: state=4294967295 cpu_id=2
99599          <idle>-0     (-----) [002] d..2 24575.333324: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
99600  HwBinder:598_3-633   (  598) [003] ...1 24575.333422: tracing_mark_write: E|598
99601  HwBinder:598_3-633   (  598) [003] ...1 24575.333429: tracing_mark_write: E|598
99602  HwBinder:598_3-633   (  598) [003] ...1 24575.333503: tracing_mark_write: E|598
99603  HwBinder:598_3-633   (  598) [003] ...1 24575.333559: tracing_mark_write: E|598
99604  HwBinder:598_3-633   (  598) [003] .... 24575.333576: binder_transaction: transaction=1671217 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
99605  HwBinder:598_3-633   (  598) [003] d..2 24575.333604: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
99606  HwBinder:598_3-633   (  598) [003] d..3 24575.333624: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
99607  HwBinder:598_3-633   (  598) [003] .... 24575.333631: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
99608          <idle>-0     (-----) [000] .n.1 24575.333631: cpu_idle: state=4294967295 cpu_id=0
99609          <idle>-0     (-----) [000] d..2 24575.333643: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
99610  surfaceflinger-23896 (23896) [000] .... 24575.333653: binder_transaction_received: transaction=1671217
99611  HwBinder:598_3-633   (  598) [003] d..2 24575.333727: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
99612          <idle>-0     (-----) [003] d..1 24575.333752: cpu_idle: state=0 cpu_id=3
99613  surfaceflinger-23896 (23896) [000] d..1 24575.333953: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99614  surfaceflinger-23896 (23896) [000] d..2 24575.333980: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99615          <idle>-0     (-----) [001] .n.1 24575.333984: cpu_idle: state=4294967295 cpu_id=1
99616          <idle>-0     (-----) [001] d..2 24575.333996: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
99617  surfaceflinger-23896 (23896) [000] d..1 24575.334011: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99618  Binder:23896_5-25989 (23896) [001] d..2 24575.334023: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99619          <idle>-0     (-----) [001] d..1 24575.334035: cpu_idle: state=0 cpu_id=1
99620          <idle>-0     (-----) [001] .n.1 24575.334038: cpu_idle: state=4294967295 cpu_id=1
99621  surfaceflinger-23896 (23896) [000] d..2 24575.334039: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99622          <idle>-0     (-----) [001] d..2 24575.334054: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
99623  Binder:23896_5-25989 (23896) [001] .... 24575.334111: binder_transaction: transaction=1671218 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
99624  Binder:23896_5-25989 (23896) [001] d..2 24575.334127: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
99625  Binder:23896_5-25989 (23896) [001] d..3 24575.334143: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
99626  Binder:23896_5-25989 (23896) [001] .... 24575.334147: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
99627 crtc_commit:111-253   (  253) [002] d..2 24575.334184: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
99628          <idle>-0     (-----) [002] d..1 24575.334201: cpu_idle: state=0 cpu_id=2
99629  Binder:23896_5-25989 (23896) [001] d..2 24575.334210: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
99630  surfaceflinger-23896 (23896) [000] d..2 24575.334213: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99631    RenderThread-25194 (24827) [001] d.s4 24575.334257: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
99632          <idle>-0     (-----) [000] d..1 24575.334285: cpu_idle: state=0 cpu_id=0
99633    RenderThread-25194 (24827) [001] d.s5 24575.334303: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
99634          <idle>-0     (-----) [000] .n.1 24575.334309: cpu_idle: state=4294967295 cpu_id=0
99635    RenderThread-25194 (24827) [001] .... 24575.334324: binder_transaction_received: transaction=1671218
99636          <idle>-0     (-----) [000] d..2 24575.334326: 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
99637  kworker/u16:10-23868 (23868) [000] d..2 24575.334510: 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
99638          <idle>-0     (-----) [000] d..1 24575.334525: cpu_idle: state=0 cpu_id=0
99639    RenderThread-25194 (24827) [001] .... 24575.337061: binder_transaction: transaction=1671219 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
99640    RenderThread-25194 (24827) [001] ...2 24575.337077: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
99641    RenderThread-25194 (24827) [001] d..4 24575.337082: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99642    RenderThread-25194 (24827) [001] dn.5 24575.337104: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99643    RenderThread-25194 (24827) [001] d..2 24575.337116: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
99644  Binder:23896_5-25989 (23896) [001] .... 24575.337126: binder_transaction_received: transaction=1671219
99645  Binder:23896_5-25989 (23896) [001] .... 24575.337301: binder_transaction: transaction=1671220 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
99646  Binder:23896_5-25989 (23896) [001] .... 24575.337311: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
99647  Binder:23896_5-25989 (23896) [001] d..2 24575.337376: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
99648    RenderThread-25194 (24827) [001] .... 24575.337387: binder_transaction_received: transaction=1671220
99649    RenderThread-25194 (24827) [001] d..2 24575.337516: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99650          <idle>-0     (-----) [001] d..1 24575.337538: cpu_idle: state=0 cpu_id=1
99651          <idle>-0     (-----) [002] d.H3 24575.337690: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
99652          <idle>-0     (-----) [002] d.H3 24575.337708: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
99653          <idle>-0     (-----) [005] dnh2 24575.337715: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
99654          <idle>-0     (-----) [005] .n.1 24575.337719: cpu_idle: state=4294967295 cpu_id=5
99655          <idle>-0     (-----) [002] dnH4 24575.337723: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
99656          <idle>-0     (-----) [005] d..2 24575.337725: 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
99657          <idle>-0     (-----) [002] dns2 24575.337731: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
99658         sugov:4-560   (  560) [005] d..2 24575.337738: 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
99659          <idle>-0     (-----) [005] d..1 24575.337744: cpu_idle: state=0 cpu_id=5
99660          <idle>-0     (-----) [002] dns3 24575.337751: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
99661          <idle>-0     (-----) [002] dns3 24575.337759: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
99662          <idle>-0     (-----) [002] dns4 24575.337771: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
99663          <idle>-0     (-----) [002] .n.1 24575.337792: cpu_idle: state=4294967295 cpu_id=2
99664          <idle>-0     (-----) [002] d..2 24575.337805: 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
99665         sugov:0-559   (  559) [002] d..2 24575.337823: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
99666     kworker/2:0-12895 (12895) [002] d..2 24575.337896: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
99667     rcu_preempt-7     (    7) [002] d..2 24575.337909: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
99668     rcu_preempt-7     (    7) [002] d..3 24575.337952: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
99669     rcu_preempt-7     (    7) [002] d..2 24575.337964: 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
99670         rcuop/0-10    (   10) [002] d..2 24575.337975: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
99671         rcuop/0-10    (   10) [002] d..3 24575.337989: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
99672         rcuop/0-10    (   10) [002] d..2 24575.337998: 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
99673     rcu_preempt-7     (    7) [002] d..2 24575.338026: 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
99674          <idle>-0     (-----) [002] d..1 24575.338043: cpu_idle: state=0 cpu_id=2
99675          <idle>-0     (-----) [000] d.h5 24575.339109: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
99676          <idle>-0     (-----) [000] d.h6 24575.339132: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
99677          <idle>-0     (-----) [000] d.h5 24575.339139: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
99678          <idle>-0     (-----) [001] .n.1 24575.339139: cpu_idle: state=4294967295 cpu_id=1
99679          <idle>-0     (-----) [000] d.h6 24575.339154: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
99680          <idle>-0     (-----) [001] d..2 24575.339154: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
99681          <idle>-0     (-----) [002] .n.1 24575.339161: cpu_idle: state=4294967295 cpu_id=2
99682          <idle>-0     (-----) [002] d..2 24575.339172: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
99683          <idle>-0     (-----) [000] ...1 24575.339176: cpu_idle: state=4294967295 cpu_id=0
99684  crtc_event:111-254   (  254) [001] d..3 24575.339177: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
99685          <idle>-0     (-----) [000] d..1 24575.339183: cpu_idle: state=0 cpu_id=0
99686  crtc_event:111-254   (  254) [001] d..4 24575.339200: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
99687          <idle>-0     (-----) [000] .n.1 24575.339205: cpu_idle: state=4294967295 cpu_id=0
99688          <idle>-0     (-----) [000] d..2 24575.339219: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
99689  crtc_event:111-254   (  254) [001] d..2 24575.339230: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99690          <idle>-0     (-----) [001] d..1 24575.339244: cpu_idle: state=0 cpu_id=1
99691 crtc_commit:111-253   (  253) [002] d..2 24575.339352: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
99692          <idle>-0     (-----) [002] d..1 24575.339363: cpu_idle: state=0 cpu_id=2
99693 kgsl_worker_thr-246   (  246) [000] d..2 24575.339447: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
99694          <idle>-0     (-----) [000] d..1 24575.339459: cpu_idle: state=0 cpu_id=0
99695          <idle>-0     (-----) [000] d.h2 24575.339533: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
99696          <idle>-0     (-----) [000] dnh3 24575.339546: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
99697          <idle>-0     (-----) [000] .n.1 24575.339555: cpu_idle: state=4294967295 cpu_id=0
99698          <idle>-0     (-----) [000] d..2 24575.339565: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
99699 kgsl_worker_thr-246   (  246) [000] d..2 24575.339590: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
99700 kgsl_worker_thr-246   (  246) [000] d..3 24575.339612: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
99701 kgsl_worker_thr-246   (  246) [000] d..2 24575.339628: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
99702  kworker/u16:10-23868 (23868) [000] d..2 24575.340077: 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
99703          <idle>-0     (-----) [000] d..1 24575.340094: cpu_idle: state=0 cpu_id=0
99704          <idle>-0     (-----) [002] d.s3 24575.340917: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
99705          <idle>-0     (-----) [002] d.s4 24575.340937: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
99706          <idle>-0     (-----) [001] .n.1 24575.340943: cpu_idle: state=4294967295 cpu_id=1
99707          <idle>-0     (-----) [002] ...1 24575.340955: cpu_idle: state=4294967295 cpu_id=2
99708          <idle>-0     (-----) [001] d..2 24575.340956: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
99709          <idle>-0     (-----) [002] d..1 24575.340960: cpu_idle: state=0 cpu_id=2
99710  crtc_event:111-254   (  254) [001] d..2 24575.340992: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99711          <idle>-0     (-----) [001] d..1 24575.341005: cpu_idle: state=0 cpu_id=1
99712          <idle>-0     (-----) [000] d.h3 24575.341033: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
99713          <idle>-0     (-----) [000] dnh4 24575.341049: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
99714          <idle>-0     (-----) [000] .n.1 24575.341062: cpu_idle: state=4294967295 cpu_id=0
99715          <idle>-0     (-----) [000] d..2 24575.341075: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
99716 kgsl_worker_thr-246   (  246) [000] d..2 24575.341151: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99717          <idle>-0     (-----) [000] d..1 24575.341166: cpu_idle: state=0 cpu_id=0
99718          <idle>-0     (-----) [000] d.h5 24575.341428: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
99719          <idle>-0     (-----) [000] d.h6 24575.341446: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
99720          <idle>-0     (-----) [002] .n.1 24575.341451: cpu_idle: state=4294967295 cpu_id=2
99721          <idle>-0     (-----) [002] d..2 24575.341461: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
99722          <idle>-0     (-----) [000] ...1 24575.341464: cpu_idle: state=4294967295 cpu_id=0
99723          <idle>-0     (-----) [000] d..1 24575.341469: cpu_idle: state=0 cpu_id=0
99724 crtc_commit:111-253   (  253) [002] d..2 24575.341550: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
99725          <idle>-0     (-----) [002] d..1 24575.341559: cpu_idle: state=0 cpu_id=2
99726          <idle>-0     (-----) [000] d.h5 24575.341740: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
99727          <idle>-0     (-----) [000] d.h6 24575.341757: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
99728          <idle>-0     (-----) [001] .n.1 24575.341762: cpu_idle: state=4294967295 cpu_id=1
99729          <idle>-0     (-----) [001] d..2 24575.341773: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
99730          <idle>-0     (-----) [000] ...1 24575.341777: cpu_idle: state=4294967295 cpu_id=0
99731          <idle>-0     (-----) [000] d..1 24575.341784: cpu_idle: state=0 cpu_id=0
99732  crtc_event:111-254   (  254) [001] d..2 24575.341801: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99733          <idle>-0     (-----) [001] d..1 24575.341811: cpu_idle: state=0 cpu_id=1
99734          <idle>-0     (-----) [000] ...1 24575.343069: cpu_idle: state=4294967295 cpu_id=0
99735          <idle>-0     (-----) [000] d..1 24575.343074: cpu_idle: state=0 cpu_id=0
99736          <idle>-0     (-----) [003] d.h2 24575.343325: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
99737          <idle>-0     (-----) [003] dnh3 24575.343344: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
99738          <idle>-0     (-----) [003] .n.1 24575.343353: cpu_idle: state=4294967295 cpu_id=3
99739          <idle>-0     (-----) [003] d..2 24575.343366: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
99740        DispSync-23904 (23896) [003] d..1 24575.343391: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
99741        DispSync-23904 (23896) [003] d..2 24575.343409: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
99742          <idle>-0     (-----) [002] .n.1 24575.343415: cpu_idle: state=4294967295 cpu_id=2
99743          <idle>-0     (-----) [002] d..2 24575.343424: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
99744        DispSync-23904 (23896) [003] d..2 24575.343446: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
99745          <idle>-0     (-----) [003] d..1 24575.343460: cpu_idle: state=0 cpu_id=3
99746  appEventThread-23905 (23896) [002] d..3 24575.343485: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
99747  appEventThread-23905 (23896) [002] d..4 24575.343515: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
99748          <idle>-0     (-----) [000] .n.1 24575.343518: cpu_idle: state=4294967295 cpu_id=0
99749          <idle>-0     (-----) [000] d..2 24575.343534: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
99750  appEventThread-23905 (23896) [002] d..2 24575.343557: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
99751          <idle>-0     (-----) [002] d..1 24575.343568: cpu_idle: state=0 cpu_id=2
99752 s.nexuslauncher-24827 (24827) [000] .... 24575.343955: binder_transaction: transaction=1671221 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
99753 s.nexuslauncher-24827 (24827) [000] d..4 24575.343967: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
99754 s.nexuslauncher-24827 (24827) [000] d..5 24575.343999: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
99755          <idle>-0     (-----) [001] .n.1 24575.344004: cpu_idle: state=4294967295 cpu_id=1
99756          <idle>-0     (-----) [001] d..2 24575.344019: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
99757  Binder:23896_5-25989 (23896) [001] .... 24575.344028: binder_transaction_received: transaction=1671221
99758 s.nexuslauncher-24827 (24827) [000] d..3 24575.344044: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
99759  Binder:23896_5-25989 (23896) [001] d..1 24575.344066: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
99760 s.nexuslauncher-24827 (24827) [000] d..4 24575.344076: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
99761          <idle>-0     (-----) [002] .n.1 24575.344082: cpu_idle: state=4294967295 cpu_id=2
99762          <idle>-0     (-----) [002] d..2 24575.344092: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
99763  Binder:23896_5-25989 (23896) [001] d..2 24575.344115: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
99764          <idle>-0     (-----) [003] .n.1 24575.344120: cpu_idle: state=4294967295 cpu_id=3
99765          <idle>-0     (-----) [003] d..2 24575.344131: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
99766    RenderThread-25194 (24827) [002] d..2 24575.344152: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
99767          <idle>-0     (-----) [002] d..1 24575.344162: cpu_idle: state=0 cpu_id=2
99768  Binder:23896_5-25989 (23896) [001] d..2 24575.344164: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99769          <idle>-0     (-----) [001] d..1 24575.344182: cpu_idle: state=0 cpu_id=1
99770  appEventThread-23905 (23896) [003] d..2 24575.344186: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
99771          <idle>-0     (-----) [003] d..1 24575.344197: cpu_idle: state=0 cpu_id=3
99772          <idle>-0     (-----) [002] d.s2 24575.344251: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
99773          <idle>-0     (-----) [002] dns3 24575.344270: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
99774          <idle>-0     (-----) [002] dns3 24575.344276: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
99775          <idle>-0     (-----) [002] dns4 24575.344314: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
99776          <idle>-0     (-----) [002] .n.1 24575.344325: cpu_idle: state=4294967295 cpu_id=2
99777          <idle>-0     (-----) [002] d..2 24575.344335: 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
99778     rcu_preempt-7     (    7) [002] d..2 24575.344355: 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
99779  kworker/u16:10-23868 (23868) [002] .... 24575.344418: clk_set_rate: l3_cluster0_vote_clk 300000000
99780  kworker/u16:10-23868 (23868) [002] .... 24575.344430: clk_set_rate: l3_clk 300000000
99781 s.nexuslauncher-24827 (24827) [000] d..3 24575.344802: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
99782  kworker/u16:10-23868 (23868) [002] d..2 24575.344821: 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
99783          <idle>-0     (-----) [002] d..1 24575.344843: cpu_idle: state=0 cpu_id=2
99784 s.nexuslauncher-24827 (24827) [000] d..4 24575.344848: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
99785          <idle>-0     (-----) [003] d.s3 24575.344853: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
99786          <idle>-0     (-----) [001] .n.1 24575.344855: cpu_idle: state=4294967295 cpu_id=1
99787          <idle>-0     (-----) [001] d..2 24575.344872: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
99788 s.nexuslauncher-24827 (24827) [000] d..2 24575.344896: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99789          <idle>-0     (-----) [003] d.s4 24575.344899: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
99790          <idle>-0     (-----) [003] dns4 24575.344907: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
99791          <idle>-0     (-----) [003] .n.1 24575.344918: cpu_idle: state=4294967295 cpu_id=3
99792          <idle>-0     (-----) [000] d..1 24575.344923: cpu_idle: state=0 cpu_id=0
99793          <idle>-0     (-----) [003] d..2 24575.344936: 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
99794  kworker/u16:10-23868 (23868) [003] d..2 24575.344985: 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
99795          <idle>-0     (-----) [003] d..1 24575.344999: cpu_idle: state=0 cpu_id=3
99796    RenderThread-25194 (24827) [001] d..1 24575.345167: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
99797    RenderThread-25194 (24827) [001] d..2 24575.345196: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
99798          <idle>-0     (-----) [000] .n.1 24575.345204: cpu_idle: state=4294967295 cpu_id=0
99799          <idle>-0     (-----) [000] d..2 24575.345221: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
99800    RenderThread-25194 (24827) [001] .... 24575.345271: binder_transaction: transaction=1671222 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
99801    RenderThread-25194 (24827) [001] ...2 24575.345282: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
99802    RenderThread-25194 (24827) [001] d..4 24575.345287: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99803    RenderThread-25194 (24827) [001] dn.5 24575.345305: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99804    RenderThread-25194 (24827) [001] d..2 24575.345318: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
99805  Binder:23896_5-25989 (23896) [001] .... 24575.345328: binder_transaction_received: transaction=1671222
99806 s.nexuslauncher-24827 (24827) [000] d..2 24575.345373: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99807  Binder:23896_5-25989 (23896) [001] d..2 24575.345384: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
99808          <idle>-0     (-----) [000] d..1 24575.345393: cpu_idle: state=0 cpu_id=0
99809    RenderThread-25194 (24827) [001] d..2 24575.345416: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99810          <idle>-0     (-----) [001] d..1 24575.345440: cpu_idle: state=0 cpu_id=1
99811          <idle>-0     (-----) [000] ...1 24575.346798: cpu_idle: state=4294967295 cpu_id=0
99812          <idle>-0     (-----) [000] d..1 24575.346804: cpu_idle: state=0 cpu_id=0
99813          <idle>-0     (-----) [003] d.h2 24575.347328: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
99814          <idle>-0     (-----) [003] dnh3 24575.347345: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
99815          <idle>-0     (-----) [003] .n.1 24575.347355: cpu_idle: state=4294967295 cpu_id=3
99816          <idle>-0     (-----) [003] d..2 24575.347365: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
99817        DispSync-23904 (23896) [003] d..1 24575.347386: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
99818        DispSync-23904 (23896) [003] d..2 24575.347406: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
99819          <idle>-0     (-----) [001] .n.1 24575.347415: cpu_idle: state=4294967295 cpu_id=1
99820          <idle>-0     (-----) [001] d..2 24575.347428: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
99821        DispSync-23904 (23896) [003] d..2 24575.347440: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
99822          <idle>-0     (-----) [003] d..1 24575.347455: cpu_idle: state=0 cpu_id=3
99823   sfEventThread-23906 (23896) [001] d..3 24575.347480: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
99824   sfEventThread-23906 (23896) [001] d..4 24575.347510: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
99825          <idle>-0     (-----) [000] .n.1 24575.347514: cpu_idle: state=4294967295 cpu_id=0
99826          <idle>-0     (-----) [000] d..2 24575.347527: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
99827   sfEventThread-23906 (23896) [001] d..2 24575.347550: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99828  surfaceflinger-23896 (23896) [000] d.s2 24575.347588: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
99829          <idle>-0     (-----) [001] d..1 24575.347628: cpu_idle: state=0 cpu_id=1
99830  surfaceflinger-23896 (23896) [000] d.s3 24575.347640: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
99831          <idle>-0     (-----) [001] .n.1 24575.347647: cpu_idle: state=4294967295 cpu_id=1
99832  surfaceflinger-23896 (23896) [000] d.s2 24575.347651: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
99833          <idle>-0     (-----) [001] d..2 24575.347662: 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
99834  surfaceflinger-23896 (23896) [000] d.s3 24575.347685: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
99835  kworker/u16:10-23868 (23868) [001] d..2 24575.347765: 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
99836          <idle>-0     (-----) [001] d..1 24575.347779: cpu_idle: state=0 cpu_id=1
99837  surfaceflinger-23896 (23896) [000] d..1 24575.347936: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99838  surfaceflinger-23896 (23896) [000] d..2 24575.347964: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99839          <idle>-0     (-----) [001] .n.1 24575.347970: cpu_idle: state=4294967295 cpu_id=1
99840          <idle>-0     (-----) [001] d..2 24575.347984: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
99841  Binder:23896_5-25989 (23896) [001] d..2 24575.348025: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99842          <idle>-0     (-----) [001] d..1 24575.348038: cpu_idle: state=0 cpu_id=1
99843  surfaceflinger-23896 (23896) [000] d..1 24575.348186: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
99844  surfaceflinger-23896 (23896) [000] d..2 24575.348212: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
99845          <idle>-0     (-----) [001] .n.1 24575.348217: cpu_idle: state=4294967295 cpu_id=1
99846          <idle>-0     (-----) [001] d..2 24575.348229: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
99847   sfEventThread-23906 (23896) [001] d..2 24575.348275: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99848          <idle>-0     (-----) [001] d..1 24575.348289: cpu_idle: state=0 cpu_id=1
99849  surfaceflinger-23896 (23896) [000] ...1 24575.348473: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
99850  surfaceflinger-23896 (23896) [000] ...1 24575.348483: tracing_mark_write: E|23896
99851  surfaceflinger-23896 (23896) [000] .... 24575.348565: binder_transaction: transaction=1671223 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
99852  surfaceflinger-23896 (23896) [000] ...2 24575.348600: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
99853  surfaceflinger-23896 (23896) [000] d..4 24575.348611: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
99854  surfaceflinger-23896 (23896) [000] d..5 24575.348638: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
99855          <idle>-0     (-----) [003] .n.1 24575.348644: cpu_idle: state=4294967295 cpu_id=3
99856          <idle>-0     (-----) [003] d..2 24575.348658: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
99857  surfaceflinger-23896 (23896) [000] d..2 24575.348667: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
99858  HwBinder:598_3-633   (  598) [003] .... 24575.348670: binder_transaction_received: transaction=1671223
99859     rcu_preempt-7     (    7) [000] d..2 24575.348676: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
99860  HwBinder:598_3-633   (  598) [003] ...1 24575.348721: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
99861     rcu_preempt-7     (    7) [000] d..3 24575.348722: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
99862     rcu_preempt-7     (    7) [000] d..2 24575.348737: 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
99863         rcuop/0-10    (   10) [000] d..2 24575.348750: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
99864         rcuop/0-10    (   10) [000] d..3 24575.348765: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
99865         rcuop/0-10    (   10) [000] d..2 24575.348776: 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
99866     rcu_preempt-7     (    7) [000] d..2 24575.348807: 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
99867          <idle>-0     (-----) [000] d..1 24575.348829: cpu_idle: state=0 cpu_id=0
99868  HwBinder:598_3-633   (  598) [003] ...1 24575.348874: tracing_mark_write: B|598|HWCSession::PresentDisplay::
99869  HwBinder:598_3-633   (  598) [003] ...1 24575.349108: tracing_mark_write: B|598|HWDeviceDRM::Commit::
99870  HwBinder:598_3-633   (  598) [003] ...1 24575.349125: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
99871          <idle>-0     (-----) [001] ...1 24575.349566: cpu_idle: state=4294967295 cpu_id=1
99872          <idle>-0     (-----) [001] d..1 24575.349572: cpu_idle: state=0 cpu_id=1
99873  HwBinder:598_3-633   (  598) [003] d..2 24575.349898: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
99874  HwBinder:598_3-633   (  598) [003] d..3 24575.349929: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
99875          <idle>-0     (-----) [002] .n.1 24575.349935: cpu_idle: state=4294967295 cpu_id=2
99876          <idle>-0     (-----) [002] d..2 24575.349952: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
99877  HwBinder:598_3-633   (  598) [003] ...1 24575.350057: tracing_mark_write: E|598
99878  HwBinder:598_3-633   (  598) [003] ...1 24575.350066: tracing_mark_write: E|598
99879  HwBinder:598_3-633   (  598) [003] ...1 24575.350148: tracing_mark_write: E|598
99880  HwBinder:598_3-633   (  598) [003] ...1 24575.350207: tracing_mark_write: E|598
99881  HwBinder:598_3-633   (  598) [003] .... 24575.350224: binder_transaction: transaction=1671224 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
99882  HwBinder:598_3-633   (  598) [003] d..2 24575.350255: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
99883  HwBinder:598_3-633   (  598) [003] d..3 24575.350278: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
99884  HwBinder:598_3-633   (  598) [003] .... 24575.350285: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
99885          <idle>-0     (-----) [000] .n.1 24575.350285: cpu_idle: state=4294967295 cpu_id=0
99886          <idle>-0     (-----) [000] d..2 24575.350298: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
99887  surfaceflinger-23896 (23896) [000] .... 24575.350310: binder_transaction_received: transaction=1671224
99888  HwBinder:598_3-633   (  598) [003] d..2 24575.350392: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
99889          <idle>-0     (-----) [003] d..1 24575.350416: cpu_idle: state=0 cpu_id=3
99890  surfaceflinger-23896 (23896) [000] d..1 24575.350637: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99891  surfaceflinger-23896 (23896) [000] d..2 24575.350666: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99892          <idle>-0     (-----) [001] .n.1 24575.350671: cpu_idle: state=4294967295 cpu_id=1
99893          <idle>-0     (-----) [001] d..2 24575.350684: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
99894  Binder:23896_5-25989 (23896) [001] .... 24575.350756: binder_transaction: transaction=1671225 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
99895  Binder:23896_5-25989 (23896) [001] d..2 24575.350775: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
99896  Binder:23896_5-25989 (23896) [001] d..3 24575.350792: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
99897  Binder:23896_5-25989 (23896) [001] .... 24575.350798: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
99898 crtc_commit:111-253   (  253) [002] d..2 24575.350844: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
99899          <idle>-0     (-----) [002] d..1 24575.350862: cpu_idle: state=0 cpu_id=2
99900  Binder:23896_5-25989 (23896) [001] d..2 24575.350867: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
99901    RenderThread-25194 (24827) [001] .... 24575.350876: binder_transaction_received: transaction=1671225
99902  surfaceflinger-23896 (23896) [000] d..2 24575.350879: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99903          <idle>-0     (-----) [000] d..1 24575.350954: cpu_idle: state=0 cpu_id=0
99904    RenderThread-25194 (24827) [001] .... 24575.353732: binder_transaction: transaction=1671226 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
99905    RenderThread-25194 (24827) [001] ...2 24575.353750: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
99906    RenderThread-25194 (24827) [001] d..4 24575.353756: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99907    RenderThread-25194 (24827) [001] dn.5 24575.353779: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
99908    RenderThread-25194 (24827) [001] d..2 24575.353793: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
99909  Binder:23896_5-25989 (23896) [001] .... 24575.353804: binder_transaction_received: transaction=1671226
99910  Binder:23896_5-25989 (23896) [001] .... 24575.354004: binder_transaction: transaction=1671227 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
99911  Binder:23896_5-25989 (23896) [001] .... 24575.354015: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
99912  Binder:23896_5-25989 (23896) [001] d..2 24575.354085: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
99913    RenderThread-25194 (24827) [001] .... 24575.354098: binder_transaction_received: transaction=1671227
99914    RenderThread-25194 (24827) [001] d..2 24575.354234: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99915          <idle>-0     (-----) [000] ...1 24575.354245: cpu_idle: state=4294967295 cpu_id=0
99916          <idle>-0     (-----) [000] d..1 24575.354250: cpu_idle: state=0 cpu_id=0
99917          <idle>-0     (-----) [001] d.s4 24575.354282: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
99918          <idle>-0     (-----) [001] dns5 24575.354306: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
99919          <idle>-0     (-----) [001] d..2 24575.354330: 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
99920  kworker/u16:10-23868 (23868) [001] d..2 24575.354593: 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
99921          <idle>-0     (-----) [001] d..1 24575.354616: cpu_idle: state=0 cpu_id=1
99922          <idle>-0     (-----) [003] d.s3 24575.355089: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
99923          <idle>-0     (-----) [003] d.s4 24575.355106: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
99924          <idle>-0     (-----) [003] d.s4 24575.355118: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
99925          <idle>-0     (-----) [001] .n.1 24575.355126: cpu_idle: state=4294967295 cpu_id=1
99926          <idle>-0     (-----) [003] ...1 24575.355132: cpu_idle: state=4294967295 cpu_id=3
99927          <idle>-0     (-----) [003] d..1 24575.355139: cpu_idle: state=0 cpu_id=3
99928          <idle>-0     (-----) [001] d..2 24575.355140: 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
99929  kworker/u16:10-23868 (23868) [001] .... 24575.355229: clk_set_rate: l3_cluster0_vote_clk 403200000
99930  kworker/u16:10-23868 (23868) [001] .... 24575.355239: clk_set_rate: l3_clk 403200000
99931  kworker/u16:10-23868 (23868) [001] d..2 24575.355312: 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
99932          <idle>-0     (-----) [001] d..1 24575.355330: cpu_idle: state=0 cpu_id=1
99933          <idle>-0     (-----) [000] d.h5 24575.355584: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
99934          <idle>-0     (-----) [000] d.h6 24575.355605: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
99935          <idle>-0     (-----) [000] d.h5 24575.355611: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
99936          <idle>-0     (-----) [001] .n.1 24575.355612: cpu_idle: state=4294967295 cpu_id=1
99937          <idle>-0     (-----) [001] d..2 24575.355624: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
99938          <idle>-0     (-----) [000] d.h6 24575.355628: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
99939          <idle>-0     (-----) [002] .n.1 24575.355632: cpu_idle: state=4294967295 cpu_id=2
99940  crtc_event:111-254   (  254) [001] d..3 24575.355645: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
99941          <idle>-0     (-----) [000] ...1 24575.355646: cpu_idle: state=4294967295 cpu_id=0
99942          <idle>-0     (-----) [002] d..2 24575.355646: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
99943          <idle>-0     (-----) [000] d..1 24575.355651: cpu_idle: state=0 cpu_id=0
99944  crtc_event:111-254   (  254) [001] d..4 24575.355666: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
99945          <idle>-0     (-----) [000] .n.1 24575.355671: cpu_idle: state=4294967295 cpu_id=0
99946          <idle>-0     (-----) [000] d..2 24575.355681: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
99947  crtc_event:111-254   (  254) [001] d..2 24575.355697: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99948          <idle>-0     (-----) [001] d..1 24575.355711: cpu_idle: state=0 cpu_id=1
99949 crtc_commit:111-253   (  253) [002] d..2 24575.355822: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
99950          <idle>-0     (-----) [002] d..1 24575.355833: cpu_idle: state=0 cpu_id=2
99951 kgsl_worker_thr-246   (  246) [000] d..2 24575.355908: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
99952          <idle>-0     (-----) [000] d..1 24575.355918: cpu_idle: state=0 cpu_id=0
99953          <idle>-0     (-----) [000] d.h2 24575.355991: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
99954          <idle>-0     (-----) [000] dnh3 24575.356004: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
99955          <idle>-0     (-----) [000] .n.1 24575.356014: cpu_idle: state=4294967295 cpu_id=0
99956          <idle>-0     (-----) [000] d..2 24575.356021: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
99957 kgsl_worker_thr-246   (  246) [000] d..2 24575.356046: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
99958 kgsl_worker_thr-246   (  246) [000] d..3 24575.356065: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
99959          <idle>-0     (-----) [001] .n.1 24575.356072: cpu_idle: state=4294967295 cpu_id=1
99960          <idle>-0     (-----) [001] d..2 24575.356086: 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
99961 kgsl_worker_thr-246   (  246) [000] d..2 24575.356091: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99962          <idle>-0     (-----) [000] d..1 24575.356100: cpu_idle: state=0 cpu_id=0
99963  kworker/u16:10-23868 (23868) [001] d..2 24575.356539: 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
99964          <idle>-0     (-----) [001] d..1 24575.356555: cpu_idle: state=0 cpu_id=1
99965          <idle>-0     (-----) [000] d.h3 24575.357493: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
99966          <idle>-0     (-----) [000] dnh4 24575.357505: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
99967          <idle>-0     (-----) [000] .n.1 24575.357519: cpu_idle: state=4294967295 cpu_id=0
99968          <idle>-0     (-----) [000] d..2 24575.357527: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
99969 kgsl_worker_thr-246   (  246) [000] d.s3 24575.357585: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
99970 kgsl_worker_thr-246   (  246) [000] d.s4 24575.357671: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
99971          <idle>-0     (-----) [002] d.H3 24575.357682: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
99972 kgsl_worker_thr-246   (  246) [000] d.s4 24575.357683: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
99973          <idle>-0     (-----) [002] d.H3 24575.357700: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
99974 kgsl_worker_thr-246   (  246) [000] d.s5 24575.357704: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
99975          <idle>-0     (-----) [005] dnh2 24575.357706: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
99976          <idle>-0     (-----) [005] .n.1 24575.357710: cpu_idle: state=4294967295 cpu_id=5
99977          <idle>-0     (-----) [001] .n.1 24575.357711: cpu_idle: state=4294967295 cpu_id=1
99978 kgsl_worker_thr-246   (  246) [000] d.s4 24575.357712: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
99979          <idle>-0     (-----) [002] dnH4 24575.357714: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
99980          <idle>-0     (-----) [005] d..2 24575.357715: 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
99981          <idle>-0     (-----) [002] dns3 24575.357723: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=001
99982 kgsl_worker_thr-246   (  246) [000] d.s5 24575.357725: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
99983          <idle>-0     (-----) [001] d..2 24575.357727: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
99984         sugov:4-560   (  560) [005] d..2 24575.357727: 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
99985          <idle>-0     (-----) [005] d..1 24575.357733: cpu_idle: state=0 cpu_id=5
99986          <idle>-0     (-----) [002] dns4 24575.357757: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
99987          <idle>-0     (-----) [003] .n.1 24575.357763: cpu_idle: state=4294967295 cpu_id=3
99988     kworker/1:1-13091 (13091) [001] d..2 24575.357774: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99989          <idle>-0     (-----) [003] d..2 24575.357777: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
99990 kgsl_worker_thr-246   (  246) [000] d..2 24575.357779: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
99991          <idle>-0     (-----) [002] .n.1 24575.357781: cpu_idle: state=4294967295 cpu_id=2
99992          <idle>-0     (-----) [001] d..1 24575.357787: cpu_idle: state=0 cpu_id=1
99993          <idle>-0     (-----) [002] d..2 24575.357790: 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
99994         sugov:0-559   (  559) [002] d..2 24575.357823: 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
99995          <idle>-0     (-----) [002] d..1 24575.357854: cpu_idle: state=0 cpu_id=2
99996  crtc_event:111-254   (  254) [003] d..2 24575.357858: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
99997     kworker/0:1-13012 (13012) [000] d..2 24575.357864: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99998     rcu_preempt-7     (    7) [003] d..2 24575.357889: 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
99999          <idle>-0     (-----) [003] d..1 24575.357900: cpu_idle: state=0 cpu_id=3
100000          <idle>-0     (-----) [000] d.h6 24575.357949: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
100001          <idle>-0     (-----) [000] d.h7 24575.357969: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
100002          <idle>-0     (-----) [002] .n.1 24575.357976: cpu_idle: state=4294967295 cpu_id=2
100003          <idle>-0     (-----) [002] d..2 24575.357986: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
100004          <idle>-0     (-----) [000] d..1 24575.357998: cpu_idle: state=0 cpu_id=0
100005 crtc_commit:111-253   (  253) [002] d..2 24575.358076: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100006          <idle>-0     (-----) [002] d..1 24575.358090: cpu_idle: state=0 cpu_id=2
100007          <idle>-0     (-----) [000] d.h5 24575.358215: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
100008          <idle>-0     (-----) [000] d.h6 24575.358232: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
100009          <idle>-0     (-----) [003] .n.1 24575.358238: cpu_idle: state=4294967295 cpu_id=3
100010          <idle>-0     (-----) [003] d..2 24575.358248: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
100011          <idle>-0     (-----) [000] ...1 24575.358253: cpu_idle: state=4294967295 cpu_id=0
100012          <idle>-0     (-----) [000] d..1 24575.358261: cpu_idle: state=0 cpu_id=0
100013  crtc_event:111-254   (  254) [003] d..2 24575.358277: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100014          <idle>-0     (-----) [003] d..1 24575.358286: cpu_idle: state=0 cpu_id=3
100015          <idle>-0     (-----) [001] ...1 24575.359376: cpu_idle: state=4294967295 cpu_id=1
100016          <idle>-0     (-----) [001] d..1 24575.359381: cpu_idle: state=0 cpu_id=1
100017          <idle>-0     (-----) [000] ...1 24575.359634: cpu_idle: state=4294967295 cpu_id=0
100018          <idle>-0     (-----) [000] d..1 24575.359639: cpu_idle: state=0 cpu_id=0
100019          <idle>-0     (-----) [003] d.h2 24575.359800: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
100020          <idle>-0     (-----) [003] dnh3 24575.359817: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
100021          <idle>-0     (-----) [003] .n.1 24575.359827: cpu_idle: state=4294967295 cpu_id=3
100022          <idle>-0     (-----) [003] d..2 24575.359837: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
100023        DispSync-23904 (23896) [003] d..1 24575.359861: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
100024        DispSync-23904 (23896) [003] d..2 24575.359889: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
100025          <idle>-0     (-----) [001] .n.1 24575.359894: cpu_idle: state=4294967295 cpu_id=1
100026          <idle>-0     (-----) [001] d..2 24575.359906: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
100027        DispSync-23904 (23896) [003] d..2 24575.359922: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100028          <idle>-0     (-----) [003] d..1 24575.359935: cpu_idle: state=0 cpu_id=3
100029  appEventThread-23905 (23896) [001] d..3 24575.359974: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
100030  appEventThread-23905 (23896) [001] d..4 24575.360003: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
100031          <idle>-0     (-----) [000] .n.1 24575.360008: cpu_idle: state=4294967295 cpu_id=0
100032          <idle>-0     (-----) [000] d..2 24575.360024: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
100033  appEventThread-23905 (23896) [001] d..2 24575.360049: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100034          <idle>-0     (-----) [001] d..1 24575.360067: cpu_idle: state=0 cpu_id=1
100035 s.nexuslauncher-24827 (24827) [000] .... 24575.360451: binder_transaction: transaction=1671228 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
100036 s.nexuslauncher-24827 (24827) [000] d..4 24575.360462: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
100037 s.nexuslauncher-24827 (24827) [000] d..5 24575.360494: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
100038          <idle>-0     (-----) [001] .n.1 24575.360502: cpu_idle: state=4294967295 cpu_id=1
100039          <idle>-0     (-----) [001] d..2 24575.360515: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
100040  Binder:23896_5-25989 (23896) [001] .... 24575.360523: binder_transaction_received: transaction=1671228
100041 s.nexuslauncher-24827 (24827) [000] d..3 24575.360535: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
100042  Binder:23896_5-25989 (23896) [001] d..1 24575.360558: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
100043 s.nexuslauncher-24827 (24827) [000] d..4 24575.360569: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
100044          <idle>-0     (-----) [002] .n.1 24575.360574: cpu_idle: state=4294967295 cpu_id=2
100045  Binder:23896_5-25989 (23896) [001] d..2 24575.360587: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
100046          <idle>-0     (-----) [002] d..2 24575.360588: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
100047          <idle>-0     (-----) [003] .n.1 24575.360593: cpu_idle: state=4294967295 cpu_id=3
100048          <idle>-0     (-----) [003] d..2 24575.360603: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
100049  Binder:23896_5-25989 (23896) [001] d..2 24575.360636: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100050    RenderThread-25194 (24827) [002] d..2 24575.360645: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100051          <idle>-0     (-----) [001] d..1 24575.360653: cpu_idle: state=0 cpu_id=1
100052  appEventThread-23905 (23896) [003] d..2 24575.360656: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100053          <idle>-0     (-----) [002] d..1 24575.360658: cpu_idle: state=0 cpu_id=2
100054          <idle>-0     (-----) [003] d..1 24575.360668: cpu_idle: state=0 cpu_id=3
100055 s.nexuslauncher-24827 (24827) [000] d..3 24575.361309: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
100056 s.nexuslauncher-24827 (24827) [000] d..4 24575.361346: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
100057          <idle>-0     (-----) [001] .n.1 24575.361352: cpu_idle: state=4294967295 cpu_id=1
100058          <idle>-0     (-----) [001] d..2 24575.361368: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
100059 s.nexuslauncher-24827 (24827) [000] d..2 24575.361392: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100060          <idle>-0     (-----) [000] d..1 24575.361414: cpu_idle: state=0 cpu_id=0
100061    RenderThread-25194 (24827) [001] d..1 24575.361654: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
100062    RenderThread-25194 (24827) [001] d..2 24575.361680: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
100063          <idle>-0     (-----) [000] .n.1 24575.361686: cpu_idle: state=4294967295 cpu_id=0
100064          <idle>-0     (-----) [000] d..2 24575.361702: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
100065    RenderThread-25194 (24827) [001] .... 24575.361749: binder_transaction: transaction=1671229 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
100066    RenderThread-25194 (24827) [001] ...2 24575.361759: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
100067    RenderThread-25194 (24827) [001] d..4 24575.361763: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
100068    RenderThread-25194 (24827) [001] dn.5 24575.361781: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
100069    RenderThread-25194 (24827) [001] d..2 24575.361793: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
100070  Binder:23896_5-25989 (23896) [001] .... 24575.361802: binder_transaction_received: transaction=1671229
100071 s.nexuslauncher-24827 (24827) [000] d..2 24575.361835: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100072  Binder:23896_5-25989 (23896) [001] d..2 24575.361851: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
100073          <idle>-0     (-----) [000] d..1 24575.361852: cpu_idle: state=0 cpu_id=0
100074    RenderThread-25194 (24827) [001] d..2 24575.361885: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100075          <idle>-0     (-----) [001] d..1 24575.361906: cpu_idle: state=0 cpu_id=1
100076          <idle>-0     (-----) [001] ...1 24575.363581: cpu_idle: state=4294967295 cpu_id=1
100077          <idle>-0     (-----) [001] d..1 24575.363586: cpu_idle: state=0 cpu_id=1
100078          <idle>-0     (-----) [003] d.h2 24575.363811: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
100079          <idle>-0     (-----) [003] dnh3 24575.363826: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
100080          <idle>-0     (-----) [003] .n.1 24575.363835: cpu_idle: state=4294967295 cpu_id=3
100081          <idle>-0     (-----) [003] d..2 24575.363847: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
100082        DispSync-23904 (23896) [003] d..1 24575.363864: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
100083        DispSync-23904 (23896) [003] d..2 24575.363881: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
100084          <idle>-0     (-----) [001] .n.1 24575.363886: cpu_idle: state=4294967295 cpu_id=1
100085          <idle>-0     (-----) [001] d..2 24575.363898: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
100086        DispSync-23904 (23896) [003] d..2 24575.363912: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100087          <idle>-0     (-----) [003] d..1 24575.363923: cpu_idle: state=0 cpu_id=3
100088   sfEventThread-23906 (23896) [001] d..3 24575.363943: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
100089   sfEventThread-23906 (23896) [001] d..4 24575.363971: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
100090          <idle>-0     (-----) [000] .n.1 24575.363977: cpu_idle: state=4294967295 cpu_id=0
100091          <idle>-0     (-----) [000] d..2 24575.363991: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
100092   sfEventThread-23906 (23896) [001] d..2 24575.364009: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100093          <idle>-0     (-----) [001] d..1 24575.364025: cpu_idle: state=0 cpu_id=1
100094          <idle>-0     (-----) [003] d.s2 24575.364244: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
100095  surfaceflinger-23896 (23896) [000] d.s2 24575.364260: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
100096          <idle>-0     (-----) [003] dns3 24575.364265: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
100097          <idle>-0     (-----) [003] .n.1 24575.364287: cpu_idle: state=4294967295 cpu_id=3
100098          <idle>-0     (-----) [003] d..2 24575.364298: 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
100099     rcu_preempt-7     (    7) [003] d..2 24575.364310: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
100100  surfaceflinger-23896 (23896) [000] d.s3 24575.364317: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
100101     rcu_preempt-7     (    7) [003] d..3 24575.364333: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
100102     rcu_preempt-7     (    7) [003] d..2 24575.364352: 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
100103  surfaceflinger-23896 (23896) [000] d..1 24575.364356: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
100104  surfaceflinger-23896 (23896) [000] d..2 24575.364375: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
100105          <idle>-0     (-----) [001] .n.1 24575.364383: cpu_idle: state=4294967295 cpu_id=1
100106          <idle>-0     (-----) [001] d..2 24575.364400: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
100107  kworker/u16:10-23868 (23868) [003] .... 24575.364454: clk_set_rate: l3_cluster0_vote_clk 300000000
100108  kworker/u16:10-23868 (23868) [003] .... 24575.364461: clk_set_rate: l3_clk 300000000
100109  Binder:23896_5-25989 (23896) [001] d..2 24575.364467: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100110          <idle>-0     (-----) [001] d..1 24575.364483: cpu_idle: state=0 cpu_id=1
100111  surfaceflinger-23896 (23896) [000] d..1 24575.364628: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
100112  surfaceflinger-23896 (23896) [000] d..2 24575.364655: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
100113          <idle>-0     (-----) [001] .n.1 24575.364660: cpu_idle: state=4294967295 cpu_id=1
100114          <idle>-0     (-----) [001] d..2 24575.364672: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
100115   sfEventThread-23906 (23896) [001] d..2 24575.364715: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100116          <idle>-0     (-----) [001] d..1 24575.364729: cpu_idle: state=0 cpu_id=1
100117  kworker/u16:10-23868 (23868) [003] d..2 24575.364793: 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
100118          <idle>-0     (-----) [003] d.s4 24575.364845: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
100119          <idle>-0     (-----) [003] d.s5 24575.364857: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
100120          <idle>-0     (-----) [003] dns5 24575.364864: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
100121          <idle>-0     (-----) [003] d..2 24575.364879: 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
100122  surfaceflinger-23896 (23896) [000] ...1 24575.364894: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
100123  surfaceflinger-23896 (23896) [000] ...1 24575.364903: tracing_mark_write: E|23896
100124  kworker/u16:10-23868 (23868) [003] d..2 24575.364913: 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
100125          <idle>-0     (-----) [003] d..1 24575.364936: cpu_idle: state=0 cpu_id=3
100126  surfaceflinger-23896 (23896) [000] .... 24575.364980: binder_transaction: transaction=1671230 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
100127  surfaceflinger-23896 (23896) [000] ...2 24575.365012: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
100128  surfaceflinger-23896 (23896) [000] d..4 24575.365023: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
100129  surfaceflinger-23896 (23896) [000] d..5 24575.365053: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
100130          <idle>-0     (-----) [003] .n.1 24575.365060: cpu_idle: state=4294967295 cpu_id=3
100131          <idle>-0     (-----) [003] d..2 24575.365073: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
100132  surfaceflinger-23896 (23896) [000] d..2 24575.365081: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
100133  HwBinder:598_3-633   (  598) [003] .... 24575.365087: binder_transaction_received: transaction=1671230
100134         rcuop/0-10    (   10) [000] d..2 24575.365097: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
100135         rcuop/0-10    (   10) [000] d..3 24575.365144: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
100136  HwBinder:598_3-633   (  598) [003] ...1 24575.365144: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
100137         rcuop/0-10    (   10) [000] d..2 24575.365158: 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
100138     rcu_preempt-7     (    7) [000] d..2 24575.365191: 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
100139          <idle>-0     (-----) [000] d..1 24575.365212: cpu_idle: state=0 cpu_id=0
100140  HwBinder:598_3-633   (  598) [003] ...1 24575.365303: tracing_mark_write: B|598|HWCSession::PresentDisplay::
100141  HwBinder:598_3-633   (  598) [003] ...1 24575.365537: tracing_mark_write: B|598|HWDeviceDRM::Commit::
100142  HwBinder:598_3-633   (  598) [003] ...1 24575.365555: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
100143          <idle>-0     (-----) [001] ...1 24575.366156: cpu_idle: state=4294967295 cpu_id=1
100144          <idle>-0     (-----) [001] d..1 24575.366162: cpu_idle: state=0 cpu_id=1
100145  HwBinder:598_3-633   (  598) [003] d..2 24575.366318: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
100146  HwBinder:598_3-633   (  598) [003] d..3 24575.366351: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
100147          <idle>-0     (-----) [002] .n.1 24575.366356: cpu_idle: state=4294967295 cpu_id=2
100148          <idle>-0     (-----) [002] d..2 24575.366370: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
100149  HwBinder:598_3-633   (  598) [003] ...1 24575.366478: tracing_mark_write: E|598
100150  HwBinder:598_3-633   (  598) [003] ...1 24575.366485: tracing_mark_write: E|598
100151  HwBinder:598_3-633   (  598) [003] ...1 24575.366564: tracing_mark_write: E|598
100152  HwBinder:598_3-633   (  598) [003] ...1 24575.366627: tracing_mark_write: E|598
100153  HwBinder:598_3-633   (  598) [003] .... 24575.366645: binder_transaction: transaction=1671231 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
100154  HwBinder:598_3-633   (  598) [003] d..2 24575.366676: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
100155  HwBinder:598_3-633   (  598) [003] d..3 24575.366698: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
100156  HwBinder:598_3-633   (  598) [003] .... 24575.366705: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
100157          <idle>-0     (-----) [000] .n.1 24575.366705: cpu_idle: state=4294967295 cpu_id=0
100158          <idle>-0     (-----) [000] d..2 24575.366719: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
100159  surfaceflinger-23896 (23896) [000] .... 24575.366730: binder_transaction_received: transaction=1671231
100160  HwBinder:598_3-633   (  598) [003] d..2 24575.366815: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100161          <idle>-0     (-----) [003] d..1 24575.366839: cpu_idle: state=0 cpu_id=3
100162  surfaceflinger-23896 (23896) [000] d..1 24575.367050: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
100163  surfaceflinger-23896 (23896) [000] d..2 24575.367080: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
100164          <idle>-0     (-----) [001] .n.1 24575.367085: cpu_idle: state=4294967295 cpu_id=1
100165          <idle>-0     (-----) [001] d..2 24575.367098: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
100166  Binder:23896_5-25989 (23896) [001] .... 24575.367171: binder_transaction: transaction=1671232 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
100167  Binder:23896_5-25989 (23896) [001] d..2 24575.367190: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
100168  Binder:23896_5-25989 (23896) [001] d..3 24575.367208: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
100169  Binder:23896_5-25989 (23896) [001] .... 24575.367213: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
100170 crtc_commit:111-253   (  253) [002] d..2 24575.367258: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
100171          <idle>-0     (-----) [002] d..1 24575.367276: cpu_idle: state=0 cpu_id=2
100172  Binder:23896_5-25989 (23896) [001] d..2 24575.367281: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
100173    RenderThread-25194 (24827) [001] .... 24575.367292: binder_transaction_received: transaction=1671232
100174  surfaceflinger-23896 (23896) [000] d..2 24575.367298: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100175          <idle>-0     (-----) [000] d..1 24575.367321: cpu_idle: state=0 cpu_id=0
100176    RenderThread-25194 (24827) [001] .... 24575.370326: binder_transaction: transaction=1671233 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
100177    RenderThread-25194 (24827) [001] ...2 24575.370344: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
100178    RenderThread-25194 (24827) [001] d..4 24575.370349: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
100179    RenderThread-25194 (24827) [001] dn.5 24575.370374: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
100180    RenderThread-25194 (24827) [001] d..2 24575.370387: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
100181  Binder:23896_5-25989 (23896) [001] .... 24575.370398: binder_transaction_received: transaction=1671233
100182  Binder:23896_5-25989 (23896) [001] .... 24575.370601: binder_transaction: transaction=1671234 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
100183  Binder:23896_5-25989 (23896) [001] .... 24575.370612: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
100184  Binder:23896_5-25989 (23896) [001] d..2 24575.370681: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
100185    RenderThread-25194 (24827) [001] .... 24575.370694: binder_transaction_received: transaction=1671234
100186    RenderThread-25194 (24827) [001] d..2 24575.370837: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100187          <idle>-0     (-----) [001] d..1 24575.370863: cpu_idle: state=0 cpu_id=1
100188          <idle>-0     (-----) [000] d.s2 24575.370922: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
100189          <idle>-0     (-----) [000] dns3 24575.370945: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
100190          <idle>-0     (-----) [000] dns3 24575.370952: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
100191          <idle>-0     (-----) [000] dns4 24575.370992: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
100192          <idle>-0     (-----) [000] .n.1 24575.371015: cpu_idle: state=4294967295 cpu_id=0
100193          <idle>-0     (-----) [000] d..2 24575.371030: 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
100194     rcu_preempt-7     (    7) [000] d..2 24575.371046: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
100195     rcu_preempt-7     (    7) [000] d..3 24575.371063: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
100196     rcu_preempt-7     (    7) [000] d..2 24575.371076: 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
100197         rcuop/0-10    (   10) [000] d..2 24575.371089: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
100198         rcuop/0-10    (   10) [000] d..3 24575.371103: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
100199         rcuop/0-10    (   10) [000] d..2 24575.371113: 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
100200     rcu_preempt-7     (    7) [000] d..2 24575.371128: 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
100201  kworker/u16:10-23868 (23868) [000] d..2 24575.371231: 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
100202          <idle>-0     (-----) [000] d..1 24575.371249: cpu_idle: state=0 cpu_id=0
100203          <idle>-0     (-----) [000] d.h5 24575.372062: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
100204          <idle>-0     (-----) [000] d.h6 24575.372083: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
100205          <idle>-0     (-----) [000] d.h5 24575.372090: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
100206          <idle>-0     (-----) [003] .n.1 24575.372091: cpu_idle: state=4294967295 cpu_id=3
100207          <idle>-0     (-----) [000] d.h6 24575.372105: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
100208          <idle>-0     (-----) [003] d..2 24575.372107: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
100209          <idle>-0     (-----) [002] .n.1 24575.372112: cpu_idle: state=4294967295 cpu_id=2
100210          <idle>-0     (-----) [000] ...1 24575.372124: cpu_idle: state=4294967295 cpu_id=0
100211          <idle>-0     (-----) [002] d..2 24575.372127: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
100212  crtc_event:111-254   (  254) [003] d..3 24575.372129: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
100213          <idle>-0     (-----) [000] d..1 24575.372132: cpu_idle: state=0 cpu_id=0
100214  crtc_event:111-254   (  254) [003] d..4 24575.372153: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
100215          <idle>-0     (-----) [000] .n.1 24575.372158: cpu_idle: state=4294967295 cpu_id=0
100216          <idle>-0     (-----) [000] d..2 24575.372172: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
100217  crtc_event:111-254   (  254) [003] d..2 24575.372183: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100218          <idle>-0     (-----) [003] d..1 24575.372196: cpu_idle: state=0 cpu_id=3
100219 crtc_commit:111-253   (  253) [002] d..2 24575.372313: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
100220          <idle>-0     (-----) [002] d..1 24575.372323: cpu_idle: state=0 cpu_id=2
100221 kgsl_worker_thr-246   (  246) [000] d..2 24575.372408: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
100222          <idle>-0     (-----) [000] d..1 24575.372421: cpu_idle: state=0 cpu_id=0
100223          <idle>-0     (-----) [000] d.h2 24575.372492: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
100224          <idle>-0     (-----) [000] dnh3 24575.372506: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
100225          <idle>-0     (-----) [000] .n.1 24575.372516: cpu_idle: state=4294967295 cpu_id=0
100226          <idle>-0     (-----) [000] d..2 24575.372527: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
100227 kgsl_worker_thr-246   (  246) [000] d..2 24575.372553: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
100228 kgsl_worker_thr-246   (  246) [000] d..3 24575.372575: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
100229 kgsl_worker_thr-246   (  246) [000] d..2 24575.372593: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
100230  kworker/u16:10-23868 (23868) [000] d..2 24575.373057: 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
100231          <idle>-0     (-----) [000] d..1 24575.373073: cpu_idle: state=0 cpu_id=0
100232          <idle>-0     (-----) [000] d.h3 24575.374134: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
100233          <idle>-0     (-----) [000] dnh4 24575.374149: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
100234          <idle>-0     (-----) [000] .n.1 24575.374165: cpu_idle: state=4294967295 cpu_id=0
100235          <idle>-0     (-----) [000] d..2 24575.374177: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
100236          <idle>-0     (-----) [002] d.s3 24575.374247: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
100237 kgsl_worker_thr-246   (  246) [000] d.s2 24575.374250: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
100238          <idle>-0     (-----) [002] d.s4 24575.374268: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
100239 kgsl_worker_thr-246   (  246) [000] d.s3 24575.374273: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
100240          <idle>-0     (-----) [003] .n.1 24575.374274: cpu_idle: state=4294967295 cpu_id=3
100241          <idle>-0     (-----) [003] d..2 24575.374288: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
100242          <idle>-0     (-----) [002] ...1 24575.374298: cpu_idle: state=4294967295 cpu_id=2
100243          <idle>-0     (-----) [002] d..1 24575.374305: cpu_idle: state=0 cpu_id=2
100244  crtc_event:111-254   (  254) [003] d..2 24575.374350: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100245          <idle>-0     (-----) [003] d..1 24575.374360: cpu_idle: state=0 cpu_id=3
100246 kgsl_worker_thr-246   (  246) [000] d.h4 24575.374393: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
100247 kgsl_worker_thr-246   (  246) [000] d.h5 24575.374415: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
100248          <idle>-0     (-----) [002] .n.1 24575.374420: cpu_idle: state=4294967295 cpu_id=2
100249          <idle>-0     (-----) [002] d..2 24575.374432: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
100250 kgsl_worker_thr-246   (  246) [000] d..2 24575.374456: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
100251 crtc_commit:111-253   (  253) [002] d..2 24575.374550: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100252          <idle>-0     (-----) [002] d..1 24575.374565: cpu_idle: state=0 cpu_id=2
100253  kworker/u16:10-23868 (23868) [000] d.h5 24575.374703: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
100254  kworker/u16:10-23868 (23868) [000] d.h6 24575.374725: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
100255          <idle>-0     (-----) [003] .n.1 24575.374730: cpu_idle: state=4294967295 cpu_id=3
100256          <idle>-0     (-----) [003] d..2 24575.374740: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
100257  crtc_event:111-254   (  254) [003] d..2 24575.374767: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100258          <idle>-0     (-----) [003] d..1 24575.374777: cpu_idle: state=0 cpu_id=3
100259  kworker/u16:10-23868 (23868) [000] d..2 24575.374866: 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
100260          <idle>-0     (-----) [000] d..1 24575.374881: cpu_idle: state=0 cpu_id=0
100261          <idle>-0     (-----) [003] d.s3 24575.375367: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
100262          <idle>-0     (-----) [003] d.s4 24575.375408: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
100263          <idle>-0     (-----) [003] dns4 24575.375416: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
100264          <idle>-0     (-----) [003] .n.1 24575.375427: cpu_idle: state=4294967295 cpu_id=3
100265          <idle>-0     (-----) [003] d..2 24575.375440: 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
100266  kworker/u16:10-23868 (23868) [003] d..2 24575.375565: 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
100267          <idle>-0     (-----) [003] d..1 24575.375580: cpu_idle: state=0 cpu_id=3
100268          <idle>-0     (-----) [003] d.h2 24575.376268: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
100269          <idle>-0     (-----) [003] dnh3 24575.376284: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
100270          <idle>-0     (-----) [003] .n.1 24575.376295: cpu_idle: state=4294967295 cpu_id=3
100271          <idle>-0     (-----) [003] d..2 24575.376305: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
100272        DispSync-23904 (23896) [003] d..1 24575.376332: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
100273        DispSync-23904 (23896) [003] d..2 24575.376359: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
100274          <idle>-0     (-----) [002] .n.1 24575.376365: cpu_idle: state=4294967295 cpu_id=2
100275          <idle>-0     (-----) [002] d..2 24575.376377: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
100276        DispSync-23904 (23896) [003] d..2 24575.376397: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100277          <idle>-0     (-----) [003] d..1 24575.376412: cpu_idle: state=0 cpu_id=3
100278  appEventThread-23905 (23896) [002] d..3 24575.376444: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
100279  appEventThread-23905 (23896) [002] d..4 24575.376473: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
100280          <idle>-0     (-----) [000] .n.1 24575.376479: cpu_idle: state=4294967295 cpu_id=0
100281          <idle>-0     (-----) [000] d..2 24575.376493: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
100282  appEventThread-23905 (23896) [002] d..2 24575.376520: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100283          <idle>-0     (-----) [002] d..1 24575.376538: cpu_idle: state=0 cpu_id=2
100284 s.nexuslauncher-24827 (24827) [000] .... 24575.376962: binder_transaction: transaction=1671235 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
100285 s.nexuslauncher-24827 (24827) [000] d..4 24575.376977: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
100286 s.nexuslauncher-24827 (24827) [000] d..5 24575.377011: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
100287          <idle>-0     (-----) [001] .n.1 24575.377018: cpu_idle: state=4294967295 cpu_id=1
100288          <idle>-0     (-----) [001] d..2 24575.377035: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
100289  Binder:23896_5-25989 (23896) [001] .... 24575.377046: binder_transaction_received: transaction=1671235
100290 s.nexuslauncher-24827 (24827) [000] d..3 24575.377061: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
100291  Binder:23896_5-25989 (23896) [001] d..1 24575.377087: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
100292 s.nexuslauncher-24827 (24827) [000] d..4 24575.377098: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
100293          <idle>-0     (-----) [002] .n.1 24575.377104: cpu_idle: state=4294967295 cpu_id=2
100294          <idle>-0     (-----) [002] d..2 24575.377118: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
100295  Binder:23896_5-25989 (23896) [001] d..2 24575.377143: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
100296          <idle>-0     (-----) [003] .n.1 24575.377149: cpu_idle: state=4294967295 cpu_id=3
100297          <idle>-0     (-----) [003] d..2 24575.377161: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
100298    RenderThread-25194 (24827) [002] d..2 24575.377182: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100299          <idle>-0     (-----) [002] d..1 24575.377196: cpu_idle: state=0 cpu_id=2
100300  Binder:23896_5-25989 (23896) [001] d..2 24575.377199: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100301          <idle>-0     (-----) [001] d..1 24575.377219: cpu_idle: state=0 cpu_id=1
100302  appEventThread-23905 (23896) [003] d..2 24575.377221: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100303          <idle>-0     (-----) [003] d..1 24575.377233: cpu_idle: state=0 cpu_id=3
100304 s.nexuslauncher-24827 (24827) [000] d.H2 24575.377723: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
100305 s.nexuslauncher-24827 (24827) [000] d.H2 24575.377745: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
100306          <idle>-0     (-----) [005] dnh2 24575.377751: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
100307          <idle>-0     (-----) [005] .n.1 24575.377755: cpu_idle: state=4294967295 cpu_id=5
100308          <idle>-0     (-----) [005] d..2 24575.377761: 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
100309 s.nexuslauncher-24827 (24827) [000] d.H3 24575.377765: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
100310          <idle>-0     (-----) [002] .n.1 24575.377771: cpu_idle: state=4294967295 cpu_id=2
100311 s.nexuslauncher-24827 (24827) [000] d.s1 24575.377773: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
100312         sugov:4-560   (  560) [005] d..2 24575.377775: 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
100313          <idle>-0     (-----) [005] d..1 24575.377783: cpu_idle: state=0 cpu_id=5
100314          <idle>-0     (-----) [002] d..2 24575.377786: 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
100315 s.nexuslauncher-24827 (24827) [000] d.s2 24575.377819: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
100316         sugov:0-559   (  559) [002] .... 24575.377843: clk_set_rate: pwrcl_clk 979200000
100317         sugov:0-559   (  559) [002] .... 24575.377868: clk_set_rate: cpu3_pwrcl_clk 825600000
100318         sugov:0-559   (  559) [002] .... 24575.377882: clk_set_rate: cpu2_pwrcl_clk 825600000
100319         sugov:0-559   (  559) [002] .... 24575.377892: clk_set_rate: cpu1_pwrcl_clk 825600000
100320         sugov:0-559   (  559) [002] .... 24575.377902: clk_set_rate: cpu0_pwrcl_clk 979200000
100321         sugov:0-559   (  559) [002] .... 24575.377916: cpu_frequency: state=979200 cpu_id=0
100322         sugov:0-559   (  559) [002] .... 24575.377959: cpu_frequency: state=979200 cpu_id=1
100323         sugov:0-559   (  559) [002] .... 24575.377963: cpu_frequency: state=979200 cpu_id=2
100324         sugov:0-559   (  559) [002] .... 24575.377967: cpu_frequency: state=979200 cpu_id=3
100325         sugov:0-559   (  559) [002] d..2 24575.377989: 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
100326     rcu_preempt-7     (    7) [002] d..2 24575.378025: 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
100327          <idle>-0     (-----) [002] d..1 24575.378039: cpu_idle: state=0 cpu_id=2
100328 s.nexuslauncher-24827 (24827) [000] d..3 24575.378067: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
100329 s.nexuslauncher-24827 (24827) [000] d..4 24575.378106: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
100330          <idle>-0     (-----) [001] .n.1 24575.378114: cpu_idle: state=4294967295 cpu_id=1
100331          <idle>-0     (-----) [001] d..2 24575.378132: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
100332 s.nexuslauncher-24827 (24827) [000] d..2 24575.378150: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100333          <idle>-0     (-----) [000] d..1 24575.378175: cpu_idle: state=0 cpu_id=0
100334    RenderThread-25194 (24827) [001] d..1 24575.378438: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
100335    RenderThread-25194 (24827) [001] d..2 24575.378469: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
100336          <idle>-0     (-----) [000] .n.1 24575.378477: cpu_idle: state=4294967295 cpu_id=0
100337          <idle>-0     (-----) [000] d..2 24575.378492: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
100338    RenderThread-25194 (24827) [001] .... 24575.378544: binder_transaction: transaction=1671236 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
100339    RenderThread-25194 (24827) [001] ...2 24575.378555: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
100340    RenderThread-25194 (24827) [001] d..4 24575.378560: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
100341    RenderThread-25194 (24827) [001] dn.5 24575.378582: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
100342    RenderThread-25194 (24827) [001] d..2 24575.378594: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
100343  Binder:23896_5-25989 (23896) [001] .... 24575.378604: binder_transaction_received: transaction=1671236
100344 s.nexuslauncher-24827 (24827) [000] d..2 24575.378645: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100345  Binder:23896_5-25989 (23896) [001] d..2 24575.378658: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
100346          <idle>-0     (-----) [000] d..1 24575.378665: cpu_idle: state=0 cpu_id=0
100347    RenderThread-25194 (24827) [001] d..2 24575.378692: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100348          <idle>-0     (-----) [001] d..1 24575.378713: cpu_idle: state=0 cpu_id=1
100349          <idle>-0     (-----) [000] ...1 24575.380033: cpu_idle: state=4294967295 cpu_id=0
100350          <idle>-0     (-----) [000] d..1 24575.380037: cpu_idle: state=0 cpu_id=0
100351          <idle>-0     (-----) [003] d.h2 24575.380282: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
100352          <idle>-0     (-----) [003] dnh3 24575.380301: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
100353          <idle>-0     (-----) [003] .n.1 24575.380309: cpu_idle: state=4294967295 cpu_id=3
100354          <idle>-0     (-----) [003] d..2 24575.380320: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
100355        DispSync-23904 (23896) [003] d..1 24575.380338: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
100356        DispSync-23904 (23896) [003] d..2 24575.380355: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
100357          <idle>-0     (-----) [001] .n.1 24575.380363: cpu_idle: state=4294967295 cpu_id=1
100358          <idle>-0     (-----) [001] d..2 24575.380376: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
100359        DispSync-23904 (23896) [003] d..2 24575.380387: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100360          <idle>-0     (-----) [003] d..1 24575.380403: cpu_idle: state=0 cpu_id=3
100361   sfEventThread-23906 (23896) [001] d..3 24575.380427: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
100362   sfEventThread-23906 (23896) [001] d..4 24575.380452: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
100363          <idle>-0     (-----) [000] .n.1 24575.380457: cpu_idle: state=4294967295 cpu_id=0
100364          <idle>-0     (-----) [000] d..2 24575.380471: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
100365   sfEventThread-23906 (23896) [001] d..2 24575.380493: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100366          <idle>-0     (-----) [001] d..1 24575.380512: cpu_idle: state=0 cpu_id=1
100367  surfaceflinger-23896 (23896) [000] d..1 24575.380693: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
100368  surfaceflinger-23896 (23896) [000] d..2 24575.380724: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
100369          <idle>-0     (-----) [001] .n.1 24575.380730: cpu_idle: state=4294967295 cpu_id=1
100370          <idle>-0     (-----) [001] d..2 24575.380747: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
100371  Binder:23896_5-25989 (23896) [001] d..2 24575.380777: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100372          <idle>-0     (-----) [001] d..1 24575.380790: cpu_idle: state=0 cpu_id=1
100373  surfaceflinger-23896 (23896) [000] d..1 24575.380984: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
100374  surfaceflinger-23896 (23896) [000] d..2 24575.381009: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
100375          <idle>-0     (-----) [001] .n.1 24575.381013: cpu_idle: state=4294967295 cpu_id=1
100376          <idle>-0     (-----) [001] d..2 24575.381026: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
100377   sfEventThread-23906 (23896) [001] d..2 24575.381078: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100378          <idle>-0     (-----) [001] d..1 24575.381091: cpu_idle: state=0 cpu_id=1
100379  surfaceflinger-23896 (23896) [000] ...1 24575.381252: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
100380  surfaceflinger-23896 (23896) [000] ...1 24575.381261: tracing_mark_write: E|23896
100381  surfaceflinger-23896 (23896) [000] .... 24575.381342: binder_transaction: transaction=1671237 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
100382  surfaceflinger-23896 (23896) [000] ...2 24575.381375: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
100383  surfaceflinger-23896 (23896) [000] d..4 24575.381385: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
100384  surfaceflinger-23896 (23896) [000] d..5 24575.381412: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
100385          <idle>-0     (-----) [003] .n.1 24575.381419: cpu_idle: state=4294967295 cpu_id=3
100386          <idle>-0     (-----) [003] d..2 24575.381430: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
100387  HwBinder:598_3-633   (  598) [003] .... 24575.381441: binder_transaction_received: transaction=1671237
100388  surfaceflinger-23896 (23896) [000] d..2 24575.381454: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100389          <idle>-0     (-----) [000] d..1 24575.381476: cpu_idle: state=0 cpu_id=0
100390  HwBinder:598_3-633   (  598) [003] ...1 24575.381494: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
100391  HwBinder:598_3-633   (  598) [003] ...1 24575.381643: tracing_mark_write: B|598|HWCSession::PresentDisplay::
100392  HwBinder:598_3-633   (  598) [003] ...1 24575.381846: tracing_mark_write: B|598|HWDeviceDRM::Commit::
100393  HwBinder:598_3-633   (  598) [003] ...1 24575.381862: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
100394  HwBinder:598_3-633   (  598) [003] d..2 24575.382546: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
100395  HwBinder:598_3-633   (  598) [003] d..3 24575.382577: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
100396          <idle>-0     (-----) [002] .n.1 24575.382583: cpu_idle: state=4294967295 cpu_id=2
100397          <idle>-0     (-----) [002] d..2 24575.382597: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
100398  HwBinder:598_3-633   (  598) [003] ...1 24575.382700: tracing_mark_write: E|598
100399  HwBinder:598_3-633   (  598) [003] ...1 24575.382708: tracing_mark_write: E|598
100400  HwBinder:598_3-633   (  598) [003] ...1 24575.382784: tracing_mark_write: E|598
100401  HwBinder:598_3-633   (  598) [003] ...1 24575.382843: tracing_mark_write: E|598
100402  HwBinder:598_3-633   (  598) [003] .... 24575.382862: binder_transaction: transaction=1671238 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
100403  HwBinder:598_3-633   (  598) [003] d..2 24575.382892: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
100404  HwBinder:598_3-633   (  598) [003] d..3 24575.382914: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
100405  HwBinder:598_3-633   (  598) [003] .... 24575.382921: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
100406          <idle>-0     (-----) [000] .n.1 24575.382922: cpu_idle: state=4294967295 cpu_id=0
100407          <idle>-0     (-----) [000] d..2 24575.382934: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
100408  surfaceflinger-23896 (23896) [000] .... 24575.382945: binder_transaction_received: transaction=1671238
100409  HwBinder:598_3-633   (  598) [003] d..2 24575.383031: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100410          <idle>-0     (-----) [003] d..1 24575.383056: cpu_idle: state=0 cpu_id=3
100411  surfaceflinger-23896 (23896) [000] d..1 24575.383250: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
100412  surfaceflinger-23896 (23896) [000] d..2 24575.383280: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
100413          <idle>-0     (-----) [001] .n.1 24575.383286: cpu_idle: state=4294967295 cpu_id=1
100414          <idle>-0     (-----) [001] d..2 24575.383299: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
100415  Binder:23896_5-25989 (23896) [001] .... 24575.383372: binder_transaction: transaction=1671239 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
100416  Binder:23896_5-25989 (23896) [001] d..2 24575.383390: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
100417  Binder:23896_5-25989 (23896) [001] d..3 24575.383408: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
100418  Binder:23896_5-25989 (23896) [001] .... 24575.383413: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
100419 crtc_commit:111-253   (  253) [002] d..2 24575.383480: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
100420  Binder:23896_5-25989 (23896) [001] d..2 24575.383482: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
100421    RenderThread-25194 (24827) [001] .... 24575.383492: binder_transaction_received: transaction=1671239
100422          <idle>-0     (-----) [002] d..1 24575.383493: cpu_idle: state=0 cpu_id=2
100423  surfaceflinger-23896 (23896) [000] d..2 24575.383493: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100424          <idle>-0     (-----) [000] d..1 24575.383517: cpu_idle: state=0 cpu_id=0
100425          <idle>-0     (-----) [002] d.s2 24575.384246: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
100426          <idle>-0     (-----) [002] dns3 24575.384271: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
100427    RenderThread-25194 (24827) [001] d.s2 24575.384277: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
100428          <idle>-0     (-----) [002] .n.1 24575.384294: cpu_idle: state=4294967295 cpu_id=2
100429          <idle>-0     (-----) [002] d..2 24575.384305: 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
100430     rcu_preempt-7     (    7) [002] d..2 24575.384313: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
100431    RenderThread-25194 (24827) [001] d.s3 24575.384338: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
100432     rcu_preempt-7     (    7) [002] d..3 24575.384362: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
100433     rcu_preempt-7     (    7) [002] d..2 24575.384376: 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
100434         rcuop/0-10    (   10) [002] d..2 24575.384391: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
100435         rcuop/0-10    (   10) [002] d..3 24575.384404: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
100436         rcuop/0-10    (   10) [002] d..2 24575.384414: 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
100437     rcu_preempt-7     (    7) [002] d..2 24575.384430: 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
100438  kworker/u16:10-23868 (23868) [002] .... 24575.384501: clk_set_rate: l3_cluster0_vote_clk 403200000
100439  kworker/u16:10-23868 (23868) [002] .... 24575.384510: clk_set_rate: l3_clk 403200000
100440  kworker/u16:10-23868 (23868) [002] d..2 24575.384646: 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
100441          <idle>-0     (-----) [002] d..1 24575.384662: cpu_idle: state=0 cpu_id=2
100442          <idle>-0     (-----) [003] ...1 24575.384806: cpu_idle: state=4294967295 cpu_id=3
100443          <idle>-0     (-----) [003] d..1 24575.384811: cpu_idle: state=0 cpu_id=3
100444    RenderThread-25194 (24827) [001] .... 24575.386191: binder_transaction: transaction=1671240 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
100445    RenderThread-25194 (24827) [001] ...2 24575.386206: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
100446    RenderThread-25194 (24827) [001] d..4 24575.386210: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
100447    RenderThread-25194 (24827) [001] dn.5 24575.386228: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
100448    RenderThread-25194 (24827) [001] d..2 24575.386238: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
100449  Binder:23896_5-25989 (23896) [001] .... 24575.386247: binder_transaction_received: transaction=1671240
100450  Binder:23896_5-25989 (23896) [001] .... 24575.386401: binder_transaction: transaction=1671241 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
100451  Binder:23896_5-25989 (23896) [001] .... 24575.386410: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
100452  Binder:23896_5-25989 (23896) [001] d..2 24575.386464: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
100453    RenderThread-25194 (24827) [001] .... 24575.386475: binder_transaction_received: transaction=1671241
100454    RenderThread-25194 (24827) [001] d..2 24575.386577: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100455          <idle>-0     (-----) [001] d..1 24575.386597: cpu_idle: state=0 cpu_id=1
100456          <idle>-0     (-----) [000] d.h5 24575.388538: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
100457          <idle>-0     (-----) [000] d.h6 24575.388560: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
100458          <idle>-0     (-----) [003] .n.1 24575.388565: cpu_idle: state=4294967295 cpu_id=3
100459          <idle>-0     (-----) [000] d.h5 24575.388566: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
100460          <idle>-0     (-----) [003] d..2 24575.388577: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
100461          <idle>-0     (-----) [000] d.h6 24575.388578: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
100462          <idle>-0     (-----) [002] .n.1 24575.388586: cpu_idle: state=4294967295 cpu_id=2
100463  crtc_event:111-254   (  254) [003] d..3 24575.388598: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
100464          <idle>-0     (-----) [002] d..2 24575.388598: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
100465          <idle>-0     (-----) [000] d..2 24575.388609: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
100466  crtc_event:111-254   (  254) [003] d..4 24575.388618: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
100467          <idle>-0     (-----) [000] dn.3 24575.388636: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
100468          <idle>-0     (-----) [000] .n.1 24575.388644: cpu_idle: state=4294967295 cpu_id=0
100469          <idle>-0     (-----) [000] d..2 24575.388659: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
100470  crtc_event:111-254   (  254) [003] d..2 24575.388661: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100471          <idle>-0     (-----) [003] d..1 24575.388672: cpu_idle: state=0 cpu_id=3
100472 crtc_commit:111-253   (  253) [002] d..2 24575.388773: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
100473          <idle>-0     (-----) [002] d..1 24575.388783: cpu_idle: state=0 cpu_id=2
100474 kgsl_worker_thr-246   (  246) [000] d..2 24575.388867: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
100475     ksoftirqd/0-3     (    3) [000] d..2 24575.388902: 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
100476          <idle>-0     (-----) [000] d..1 24575.388914: cpu_idle: state=0 cpu_id=0
100477          <idle>-0     (-----) [000] d.h2 24575.388966: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
100478          <idle>-0     (-----) [000] dnh3 24575.388979: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
100479          <idle>-0     (-----) [000] .n.1 24575.388987: cpu_idle: state=4294967295 cpu_id=0
100480          <idle>-0     (-----) [000] d..2 24575.388997: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
100481 kgsl_worker_thr-246   (  246) [000] d..2 24575.389022: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
100482 kgsl_worker_thr-246   (  246) [000] d..3 24575.389061: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
100483 kgsl_worker_thr-246   (  246) [000] d..2 24575.389075: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
100484  kworker/u16:10-23868 (23868) [000] d..2 24575.389523: 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
100485          <idle>-0     (-----) [000] d..1 24575.389538: cpu_idle: state=0 cpu_id=0
100486          <idle>-0     (-----) [000] d.h3 24575.390588: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
100487          <idle>-0     (-----) [000] dnh4 24575.390600: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
100488          <idle>-0     (-----) [000] .n.1 24575.390614: cpu_idle: state=4294967295 cpu_id=0
100489          <idle>-0     (-----) [000] d..2 24575.390625: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
100490 kgsl_worker_thr-246   (  246) [000] d..2 24575.390687: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100491          <idle>-0     (-----) [000] d..1 24575.390699: cpu_idle: state=0 cpu_id=0
100492          <idle>-0     (-----) [000] d.h5 24575.390854: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
100493          <idle>-0     (-----) [000] d.h6 24575.390871: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
100494          <idle>-0     (-----) [002] .n.1 24575.390876: cpu_idle: state=4294967295 cpu_id=2
100495          <idle>-0     (-----) [000] ...1 24575.390885: cpu_idle: state=4294967295 cpu_id=0
100496          <idle>-0     (-----) [000] d..1 24575.390891: cpu_idle: state=0 cpu_id=0
100497          <idle>-0     (-----) [002] dns3 24575.390910: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
100498          <idle>-0     (-----) [002] dns4 24575.390928: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
100499          <idle>-0     (-----) [002] dns2 24575.390932: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
100500          <idle>-0     (-----) [003] .n.1 24575.390934: cpu_idle: state=4294967295 cpu_id=3
100501          <idle>-0     (-----) [003] d..2 24575.390945: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
100502          <idle>-0     (-----) [002] dns3 24575.390972: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
100503  crtc_event:111-254   (  254) [003] d..2 24575.390982: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
100504          <idle>-0     (-----) [002] d..2 24575.391004: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
100505     rcu_preempt-7     (    7) [003] d..2 24575.391015: 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
100506          <idle>-0     (-----) [003] d..1 24575.391024: cpu_idle: state=0 cpu_id=3
100507 crtc_commit:111-253   (  253) [002] d..2 24575.391089: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100508          <idle>-0     (-----) [002] d..1 24575.391104: cpu_idle: state=0 cpu_id=2
100509          <idle>-0     (-----) [000] d.h5 24575.391165: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
100510          <idle>-0     (-----) [000] d.h6 24575.391181: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
100511          <idle>-0     (-----) [003] .n.1 24575.391186: cpu_idle: state=4294967295 cpu_id=3
100512          <idle>-0     (-----) [003] d..2 24575.391195: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
100513          <idle>-0     (-----) [000] ...1 24575.391200: cpu_idle: state=4294967295 cpu_id=0
100514          <idle>-0     (-----) [000] d..1 24575.391207: cpu_idle: state=0 cpu_id=0
100515  crtc_event:111-254   (  254) [003] d..2 24575.391220: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100516          <idle>-0     (-----) [003] d..1 24575.391229: cpu_idle: state=0 cpu_id=3
100517          <idle>-0     (-----) [000] ...1 24575.392549: cpu_idle: state=4294967295 cpu_id=0
100518          <idle>-0     (-----) [000] d..1 24575.392553: cpu_idle: state=0 cpu_id=0
100519          <idle>-0     (-----) [003] d.h2 24575.392736: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
100520          <idle>-0     (-----) [003] dnh3 24575.392749: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
100521          <idle>-0     (-----) [003] .n.1 24575.392757: cpu_idle: state=4294967295 cpu_id=3
100522          <idle>-0     (-----) [003] d..2 24575.392765: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
100523        DispSync-23904 (23896) [003] d..1 24575.392788: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
100524        DispSync-23904 (23896) [003] d..2 24575.392813: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
100525          <idle>-0     (-----) [002] .n.1 24575.392819: cpu_idle: state=4294967295 cpu_id=2
100526          <idle>-0     (-----) [002] d..2 24575.392830: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
100527        DispSync-23904 (23896) [003] d..2 24575.392845: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100528          <idle>-0     (-----) [003] d..1 24575.392857: cpu_idle: state=0 cpu_id=3
100529  appEventThread-23905 (23896) [002] d..3 24575.392880: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
100530  appEventThread-23905 (23896) [002] d..4 24575.392901: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
100531          <idle>-0     (-----) [000] .n.1 24575.392906: cpu_idle: state=4294967295 cpu_id=0
100532          <idle>-0     (-----) [000] d..2 24575.392921: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
100533  appEventThread-23905 (23896) [002] d..2 24575.392939: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100534          <idle>-0     (-----) [002] d..1 24575.392952: cpu_idle: state=0 cpu_id=2
100535 s.nexuslauncher-24827 (24827) [000] .... 24575.393278: binder_transaction: transaction=1671242 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
100536 s.nexuslauncher-24827 (24827) [000] d..4 24575.393290: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
100537 s.nexuslauncher-24827 (24827) [000] d..5 24575.393317: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
100538          <idle>-0     (-----) [001] .n.1 24575.393324: cpu_idle: state=4294967295 cpu_id=1
100539          <idle>-0     (-----) [001] d..2 24575.393339: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
100540  Binder:23896_5-25989 (23896) [001] .... 24575.393347: binder_transaction_received: transaction=1671242
100541 s.nexuslauncher-24827 (24827) [000] d..3 24575.393358: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
100542  Binder:23896_5-25989 (23896) [001] d..1 24575.393379: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
100543 s.nexuslauncher-24827 (24827) [000] d..4 24575.393388: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
100544          <idle>-0     (-----) [002] .n.1 24575.393393: cpu_idle: state=4294967295 cpu_id=2
100545          <idle>-0     (-----) [002] d..2 24575.393405: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
100546  Binder:23896_5-25989 (23896) [001] d..2 24575.393426: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
100547          <idle>-0     (-----) [003] .n.1 24575.393432: cpu_idle: state=4294967295 cpu_id=3
100548          <idle>-0     (-----) [003] d..2 24575.393441: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
100549    RenderThread-25194 (24827) [002] d..2 24575.393458: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100550          <idle>-0     (-----) [002] d..1 24575.393469: cpu_idle: state=0 cpu_id=2
100551  Binder:23896_5-25989 (23896) [001] d..2 24575.393472: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100552          <idle>-0     (-----) [001] d..1 24575.393488: cpu_idle: state=0 cpu_id=1
100553  appEventThread-23905 (23896) [003] d..2 24575.393490: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100554          <idle>-0     (-----) [003] d..1 24575.393500: cpu_idle: state=0 cpu_id=3
100555 s.nexuslauncher-24827 (24827) [000] d..3 24575.393946: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
100556 s.nexuslauncher-24827 (24827) [000] d..4 24575.393980: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
100557          <idle>-0     (-----) [001] .n.1 24575.393987: cpu_idle: state=4294967295 cpu_id=1
100558          <idle>-0     (-----) [001] d..2 24575.394000: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
100559 s.nexuslauncher-24827 (24827) [000] d..2 24575.394018: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100560          <idle>-0     (-----) [000] d..1 24575.394039: cpu_idle: state=0 cpu_id=0
100561    RenderThread-25194 (24827) [001] d.s2 24575.394256: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
100562    RenderThread-25194 (24827) [001] d.s3 24575.394299: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
100563    RenderThread-25194 (24827) [001] d..1 24575.394339: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
100564    RenderThread-25194 (24827) [001] d..2 24575.394354: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
100565          <idle>-0     (-----) [000] .n.1 24575.394363: cpu_idle: state=4294967295 cpu_id=0
100566          <idle>-0     (-----) [000] d..2 24575.394378: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
100567    RenderThread-25194 (24827) [001] .... 24575.394414: binder_transaction: transaction=1671243 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
100568    RenderThread-25194 (24827) [001] ...2 24575.394423: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
100569    RenderThread-25194 (24827) [001] d..4 24575.394427: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
100570    RenderThread-25194 (24827) [001] d..5 24575.394454: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
100571          <idle>-0     (-----) [002] .n.1 24575.394460: cpu_idle: state=4294967295 cpu_id=2
100572    RenderThread-25194 (24827) [001] d..2 24575.394471: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
100573          <idle>-0     (-----) [002] d..2 24575.394473: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
100574  Binder:23896_5-25989 (23896) [002] .... 24575.394483: binder_transaction_received: transaction=1671243
100575 s.nexuslauncher-24827 (24827) [000] d..2 24575.394494: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100576  Binder:23896_5-25989 (23896) [002] d..2 24575.394539: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100577          <idle>-0     (-----) [000] d..1 24575.394543: cpu_idle: state=0 cpu_id=0
100578          <idle>-0     (-----) [002] d..1 24575.394575: cpu_idle: state=0 cpu_id=2
100579          <idle>-0     (-----) [002] ...1 24575.394589: cpu_idle: state=4294967295 cpu_id=2
100580          <idle>-0     (-----) [002] d..1 24575.394593: cpu_idle: state=0 cpu_id=2
100581  kworker/u16:10-23868 (23868) [001] d..2 24575.394820: 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
100582          <idle>-0     (-----) [001] d..1 24575.394839: cpu_idle: state=0 cpu_id=1
100583          <idle>-0     (-----) [003] d.s3 24575.394867: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
100584          <idle>-0     (-----) [003] d.s4 24575.394882: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
100585          <idle>-0     (-----) [003] d.s4 24575.394893: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
100586          <idle>-0     (-----) [001] .n.1 24575.394899: cpu_idle: state=4294967295 cpu_id=1
100587          <idle>-0     (-----) [003] ...1 24575.394904: cpu_idle: state=4294967295 cpu_id=3
100588          <idle>-0     (-----) [003] d..1 24575.394909: cpu_idle: state=0 cpu_id=3
100589          <idle>-0     (-----) [001] d..2 24575.394912: 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
100590  kworker/u16:10-23868 (23868) [001] .... 24575.394984: clk_set_rate: l3_cluster0_vote_clk 300000000
100591  kworker/u16:10-23868 (23868) [001] .... 24575.394992: clk_set_rate: l3_clk 300000000
100592  kworker/u16:10-23868 (23868) [001] d..2 24575.395049: 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
100593          <idle>-0     (-----) [001] d..1 24575.395064: cpu_idle: state=0 cpu_id=1
100594          <idle>-0     (-----) [000] ...1 24575.395956: cpu_idle: state=4294967295 cpu_id=0
100595          <idle>-0     (-----) [000] d..1 24575.395961: cpu_idle: state=0 cpu_id=0
100596          <idle>-0     (-----) [003] d.h2 24575.396746: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
100597          <idle>-0     (-----) [003] dnh3 24575.396761: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
100598          <idle>-0     (-----) [003] .n.1 24575.396769: cpu_idle: state=4294967295 cpu_id=3
100599          <idle>-0     (-----) [003] d..2 24575.396780: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
100600        DispSync-23904 (23896) [003] d..1 24575.396797: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
100601        DispSync-23904 (23896) [003] d..2 24575.396811: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
100602          <idle>-0     (-----) [001] .n.1 24575.396818: cpu_idle: state=4294967295 cpu_id=1
100603          <idle>-0     (-----) [001] d..2 24575.396829: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
100604        DispSync-23904 (23896) [003] d..2 24575.396843: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100605          <idle>-0     (-----) [003] d..1 24575.396852: cpu_idle: state=0 cpu_id=3
100606   sfEventThread-23906 (23896) [001] d..3 24575.396883: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
100607   sfEventThread-23906 (23896) [001] d..4 24575.396907: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
100608          <idle>-0     (-----) [000] .n.1 24575.396910: cpu_idle: state=4294967295 cpu_id=0
100609          <idle>-0     (-----) [000] d..2 24575.396922: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
100610   sfEventThread-23906 (23896) [001] d..2 24575.396945: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100611          <idle>-0     (-----) [001] d..1 24575.396961: cpu_idle: state=0 cpu_id=1
100612  surfaceflinger-23896 (23896) [000] d..1 24575.397141: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
100613  surfaceflinger-23896 (23896) [000] d..2 24575.397178: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
100614          <idle>-0     (-----) [001] .n.1 24575.397185: cpu_idle: state=4294967295 cpu_id=1
100615          <idle>-0     (-----) [001] d..2 24575.397198: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
100616  Binder:23896_5-25989 (23896) [001] d..2 24575.397230: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100617          <idle>-0     (-----) [001] d..1 24575.397241: cpu_idle: state=0 cpu_id=1
100618  surfaceflinger-23896 (23896) [000] d..1 24575.397368: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
100619  surfaceflinger-23896 (23896) [000] d..2 24575.397392: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
100620          <idle>-0     (-----) [001] .n.1 24575.397397: cpu_idle: state=4294967295 cpu_id=1
100621          <idle>-0     (-----) [001] d..2 24575.397406: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
100622   sfEventThread-23906 (23896) [001] d..2 24575.397443: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100623          <idle>-0     (-----) [001] d..1 24575.397456: cpu_idle: state=0 cpu_id=1
100624          <idle>-0     (-----) [003] d.H3 24575.397700: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
100625          <idle>-0     (-----) [003] d.s2 24575.397722: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
100626          <idle>-0     (-----) [005] dnh2 24575.397724: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
100627          <idle>-0     (-----) [005] .n.1 24575.397728: cpu_idle: state=4294967295 cpu_id=5
100628          <idle>-0     (-----) [005] d..2 24575.397733: 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
100629  surfaceflinger-23896 (23896) [000] ...1 24575.397737: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
100630          <idle>-0     (-----) [003] dns3 24575.397744: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
100631  surfaceflinger-23896 (23896) [000] ...1 24575.397746: tracing_mark_write: E|23896
100632         sugov:4-560   (  560) [005] d..2 24575.397746: 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
100633          <idle>-0     (-----) [003] dns3 24575.397751: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
100634          <idle>-0     (-----) [005] d..1 24575.397752: cpu_idle: state=0 cpu_id=5
100635          <idle>-0     (-----) [003] dns4 24575.397786: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
100636          <idle>-0     (-----) [003] .n.1 24575.397807: cpu_idle: state=4294967295 cpu_id=3
100637  surfaceflinger-23896 (23896) [000] .... 24575.397813: binder_transaction: transaction=1671244 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
100638          <idle>-0     (-----) [003] d..2 24575.397819: 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
100639     rcu_preempt-7     (    7) [003] d..2 24575.397829: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
100640  surfaceflinger-23896 (23896) [000] ...2 24575.397843: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
100641  surfaceflinger-23896 (23896) [000] d..4 24575.397852: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
100642     rcu_preempt-7     (    7) [003] d..3 24575.397872: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
100643     rcu_preempt-7     (    7) [003] d..2 24575.397894: 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
100644  surfaceflinger-23896 (23896) [000] d..5 24575.397894: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
100645          <idle>-0     (-----) [002] .n.1 24575.397898: cpu_idle: state=4294967295 cpu_id=2
100646         rcuop/0-10    (   10) [003] d..2 24575.397908: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
100647          <idle>-0     (-----) [002] d..2 24575.397912: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
100648  HwBinder:598_3-633   (  598) [002] .... 24575.397926: binder_transaction_received: transaction=1671244
100649  surfaceflinger-23896 (23896) [000] d..2 24575.397943: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100650         rcuop/0-10    (   10) [003] d..3 24575.397955: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
100651         rcuop/0-10    (   10) [003] d..2 24575.397967: 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
100652          <idle>-0     (-----) [000] d..2 24575.397973: 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
100653  HwBinder:598_3-633   (  598) [002] ...1 24575.397989: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
100654     rcu_preempt-7     (    7) [000] d..2 24575.398001: 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
100655          <idle>-0     (-----) [000] d..1 24575.398017: cpu_idle: state=0 cpu_id=0
100656  kworker/u16:10-23868 (23868) [003] d..2 24575.398053: 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
100657          <idle>-0     (-----) [003] d..1 24575.398070: cpu_idle: state=0 cpu_id=3
100658  HwBinder:598_3-633   (  598) [002] ...1 24575.398153: tracing_mark_write: B|598|HWCSession::PresentDisplay::
100659  HwBinder:598_3-633   (  598) [002] ...1 24575.398383: tracing_mark_write: B|598|HWDeviceDRM::Commit::
100660  HwBinder:598_3-633   (  598) [002] ...1 24575.398400: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
100661          <idle>-0     (-----) [001] ...1 24575.398703: cpu_idle: state=4294967295 cpu_id=1
100662          <idle>-0     (-----) [001] d..1 24575.398708: cpu_idle: state=0 cpu_id=1
100663          <idle>-0     (-----) [005] ...1 24575.398764: cpu_idle: state=4294967295 cpu_id=5
100664          <idle>-0     (-----) [005] d..1 24575.398768: cpu_idle: state=0 cpu_id=5
100665  HwBinder:598_3-633   (  598) [002] d..2 24575.399091: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
100666  HwBinder:598_3-633   (  598) [002] d..3 24575.399133: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
100667          <idle>-0     (-----) [001] .n.1 24575.399137: cpu_idle: state=4294967295 cpu_id=1
100668          <idle>-0     (-----) [001] d..2 24575.399150: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
100669  HwBinder:598_3-633   (  598) [002] ...1 24575.399255: tracing_mark_write: E|598
100670  HwBinder:598_3-633   (  598) [002] ...1 24575.399262: tracing_mark_write: E|598
100671  HwBinder:598_3-633   (  598) [002] ...1 24575.399339: tracing_mark_write: E|598
100672  HwBinder:598_3-633   (  598) [002] ...1 24575.399398: tracing_mark_write: E|598
100673  HwBinder:598_3-633   (  598) [002] .... 24575.399416: binder_transaction: transaction=1671245 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
100674  HwBinder:598_3-633   (  598) [002] d..2 24575.399444: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
100675  HwBinder:598_3-633   (  598) [002] d..3 24575.399466: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
100676  HwBinder:598_3-633   (  598) [002] .... 24575.399472: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
100677          <idle>-0     (-----) [000] .n.1 24575.399472: cpu_idle: state=4294967295 cpu_id=0
100678          <idle>-0     (-----) [000] d..2 24575.399482: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
100679  surfaceflinger-23896 (23896) [000] .... 24575.399492: binder_transaction_received: transaction=1671245
100680  HwBinder:598_3-633   (  598) [002] d..2 24575.399578: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100681          <idle>-0     (-----) [002] d..1 24575.399601: cpu_idle: state=0 cpu_id=2
100682  surfaceflinger-23896 (23896) [000] d..1 24575.399790: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
100683  surfaceflinger-23896 (23896) [000] d..2 24575.399831: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
100684          <idle>-0     (-----) [002] .n.1 24575.399838: cpu_idle: state=4294967295 cpu_id=2
100685          <idle>-0     (-----) [002] d..2 24575.399853: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
100686  Binder:23896_5-25989 (23896) [002] .... 24575.399923: binder_transaction: transaction=1671246 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
100687  Binder:23896_5-25989 (23896) [002] d..2 24575.399939: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
100688  Binder:23896_5-25989 (23896) [002] d..3 24575.399968: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
100689  Binder:23896_5-25989 (23896) [002] .... 24575.399973: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
100690  surfaceflinger-23896 (23896) [000] d..2 24575.400033: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100691 crtc_commit:111-253   (  253) [001] d..2 24575.400038: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
100692  Binder:23896_5-25989 (23896) [002] d..2 24575.400038: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
100693    RenderThread-25194 (24827) [002] .... 24575.400048: binder_transaction_received: transaction=1671246
100694          <idle>-0     (-----) [000] d..1 24575.400054: cpu_idle: state=0 cpu_id=0
100695          <idle>-0     (-----) [001] d..1 24575.400055: cpu_idle: state=0 cpu_id=1
100696          <idle>-0     (-----) [003] ...1 24575.400266: cpu_idle: state=4294967295 cpu_id=3
100697          <idle>-0     (-----) [003] d..1 24575.400271: cpu_idle: state=0 cpu_id=3
100698    RenderThread-25194 (24827) [002] .... 24575.402818: binder_transaction: transaction=1671247 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
100699    RenderThread-25194 (24827) [002] ...2 24575.402835: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
100700    RenderThread-25194 (24827) [002] d..4 24575.402840: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
100701    RenderThread-25194 (24827) [002] dn.5 24575.402862: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
100702    RenderThread-25194 (24827) [002] d..2 24575.402875: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
100703  Binder:23896_5-25989 (23896) [002] .... 24575.402885: binder_transaction_received: transaction=1671247
100704  Binder:23896_5-25989 (23896) [002] .... 24575.403067: binder_transaction: transaction=1671248 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
100705  Binder:23896_5-25989 (23896) [002] .... 24575.403079: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
100706  Binder:23896_5-25989 (23896) [002] d..2 24575.403142: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
100707    RenderThread-25194 (24827) [002] .... 24575.403153: binder_transaction_received: transaction=1671248
100708    RenderThread-25194 (24827) [002] d..2 24575.403287: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100709          <idle>-0     (-----) [002] d..1 24575.403311: cpu_idle: state=0 cpu_id=2
100710          <idle>-0     (-----) [000] d.s2 24575.404253: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
100711          <idle>-0     (-----) [000] dns3 24575.404275: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
100712          <idle>-0     (-----) [000] dns3 24575.404282: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
100713          <idle>-0     (-----) [000] dns4 24575.404319: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
100714          <idle>-0     (-----) [000] .n.1 24575.404343: cpu_idle: state=4294967295 cpu_id=0
100715          <idle>-0     (-----) [000] d..2 24575.404358: 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
100716     rcu_preempt-7     (    7) [000] d..2 24575.404373: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
100717     rcu_preempt-7     (    7) [000] d..3 24575.404406: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
100718     rcu_preempt-7     (    7) [000] d..2 24575.404418: 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
100719         rcuop/0-10    (   10) [000] d..2 24575.404429: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
100720         rcuop/0-10    (   10) [000] d..3 24575.404441: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
100721         rcuop/0-10    (   10) [000] d..2 24575.404451: 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
100722     rcu_preempt-7     (    7) [000] d..2 24575.404464: 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
100723  kworker/u16:10-23868 (23868) [000] .... 24575.404502: clk_set_rate: l3_cluster0_vote_clk 480000000
100724  kworker/u16:10-23868 (23868) [000] .... 24575.404514: clk_set_rate: l3_clk 480000000
100725          <idle>-0     (-----) [002] ...1 24575.404739: cpu_idle: state=4294967295 cpu_id=2
100726          <idle>-0     (-----) [002] d..1 24575.404744: cpu_idle: state=0 cpu_id=2
100727  kworker/u16:10-23868 (23868) [000] d..2 24575.404822: 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
100728          <idle>-0     (-----) [000] d..1 24575.404838: cpu_idle: state=0 cpu_id=0
100729          <idle>-0     (-----) [000] d.h5 24575.405009: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
100730          <idle>-0     (-----) [000] d.h6 24575.405029: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
100731          <idle>-0     (-----) [003] .n.1 24575.405034: cpu_idle: state=4294967295 cpu_id=3
100732          <idle>-0     (-----) [000] d.h5 24575.405037: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
100733          <idle>-0     (-----) [003] d..2 24575.405045: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
100734          <idle>-0     (-----) [000] d.h6 24575.405049: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
100735          <idle>-0     (-----) [001] .n.1 24575.405055: cpu_idle: state=4294967295 cpu_id=1
100736  crtc_event:111-254   (  254) [003] d..3 24575.405065: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
100737          <idle>-0     (-----) [000] ...1 24575.405066: cpu_idle: state=4294967295 cpu_id=0
100738          <idle>-0     (-----) [001] d..2 24575.405067: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
100739          <idle>-0     (-----) [000] d..1 24575.405071: cpu_idle: state=0 cpu_id=0
100740  crtc_event:111-254   (  254) [003] d..4 24575.405085: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
100741          <idle>-0     (-----) [000] .n.1 24575.405091: cpu_idle: state=4294967295 cpu_id=0
100742          <idle>-0     (-----) [000] d..2 24575.405102: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
100743  crtc_event:111-254   (  254) [003] d..2 24575.405110: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100744          <idle>-0     (-----) [003] d..1 24575.405120: cpu_idle: state=0 cpu_id=3
100745 crtc_commit:111-253   (  253) [001] d..2 24575.405238: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
100746          <idle>-0     (-----) [001] d..1 24575.405247: cpu_idle: state=0 cpu_id=1
100747          <idle>-0     (-----) [003] d.s3 24575.405305: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
100748 kgsl_worker_thr-246   (  246) [000] d..2 24575.405316: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
100749          <idle>-0     (-----) [000] d..1 24575.405327: cpu_idle: state=0 cpu_id=0
100750          <idle>-0     (-----) [003] d.s4 24575.405330: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
100751          <idle>-0     (-----) [003] dns4 24575.405335: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
100752          <idle>-0     (-----) [003] .n.1 24575.405344: cpu_idle: state=4294967295 cpu_id=3
100753          <idle>-0     (-----) [003] d..2 24575.405355: 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
100754  kworker/u16:10-23868 (23868) [003] d..2 24575.405388: 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
100755          <idle>-0     (-----) [003] d..1 24575.405397: cpu_idle: state=0 cpu_id=3
100756          <idle>-0     (-----) [000] d.h2 24575.405403: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
100757          <idle>-0     (-----) [000] dnh3 24575.405415: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
100758          <idle>-0     (-----) [000] .n.1 24575.405422: cpu_idle: state=4294967295 cpu_id=0
100759          <idle>-0     (-----) [000] d..2 24575.405432: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
100760 kgsl_worker_thr-246   (  246) [000] d..2 24575.405455: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
100761 kgsl_worker_thr-246   (  246) [000] d..3 24575.405471: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
100762          <idle>-0     (-----) [003] .n.1 24575.405477: cpu_idle: state=4294967295 cpu_id=3
100763          <idle>-0     (-----) [003] d..2 24575.405487: 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
100764 kgsl_worker_thr-246   (  246) [000] d..2 24575.405492: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100765          <idle>-0     (-----) [000] d..1 24575.405503: cpu_idle: state=0 cpu_id=0
100766  kworker/u16:10-23868 (23868) [003] d..2 24575.405929: 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
100767          <idle>-0     (-----) [003] d..1 24575.405941: cpu_idle: state=0 cpu_id=3
100768          <idle>-0     (-----) [000] d.h3 24575.407026: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
100769          <idle>-0     (-----) [000] dnh4 24575.407038: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
100770          <idle>-0     (-----) [000] .n.1 24575.407051: cpu_idle: state=4294967295 cpu_id=0
100771          <idle>-0     (-----) [000] d..2 24575.407062: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
100772 kgsl_worker_thr-246   (  246) [000] d..2 24575.407125: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100773          <idle>-0     (-----) [000] d..1 24575.407136: cpu_idle: state=0 cpu_id=0
100774          <idle>-0     (-----) [000] d.h5 24575.407335: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
100775          <idle>-0     (-----) [000] d.h6 24575.407350: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
100776          <idle>-0     (-----) [001] .n.1 24575.407356: cpu_idle: state=4294967295 cpu_id=1
100777          <idle>-0     (-----) [001] d..2 24575.407364: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
100778          <idle>-0     (-----) [000] ...1 24575.407365: cpu_idle: state=4294967295 cpu_id=0
100779          <idle>-0     (-----) [000] d..1 24575.407369: cpu_idle: state=0 cpu_id=0
100780 crtc_commit:111-253   (  253) [001] d..2 24575.407444: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100781          <idle>-0     (-----) [001] d..1 24575.407452: cpu_idle: state=0 cpu_id=1
100782          <idle>-0     (-----) [001] d.s3 24575.407579: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
100783          <idle>-0     (-----) [001] d.s4 24575.407597: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
100784          <idle>-0     (-----) [003] .n.1 24575.407602: cpu_idle: state=4294967295 cpu_id=3
100785          <idle>-0     (-----) [003] d..2 24575.407613: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
100786          <idle>-0     (-----) [001] ...1 24575.407620: cpu_idle: state=4294967295 cpu_id=1
100787          <idle>-0     (-----) [001] d..1 24575.407626: cpu_idle: state=0 cpu_id=1
100788          <idle>-0     (-----) [000] d.h5 24575.407639: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
100789  crtc_event:111-254   (  254) [003] d..2 24575.407644: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100790          <idle>-0     (-----) [003] d..1 24575.407652: cpu_idle: state=0 cpu_id=3
100791          <idle>-0     (-----) [000] d.h6 24575.407660: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
100792          <idle>-0     (-----) [003] .n.1 24575.407666: cpu_idle: state=4294967295 cpu_id=3
100793          <idle>-0     (-----) [003] d..2 24575.407674: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
100794          <idle>-0     (-----) [000] ...1 24575.407678: cpu_idle: state=4294967295 cpu_id=0
100795          <idle>-0     (-----) [000] d..1 24575.407682: cpu_idle: state=0 cpu_id=0
100796  crtc_event:111-254   (  254) [003] d..2 24575.407699: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100797          <idle>-0     (-----) [003] d..1 24575.407706: cpu_idle: state=0 cpu_id=3
100798          <idle>-0     (-----) [003] d.h2 24575.409209: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
100799          <idle>-0     (-----) [003] dnh3 24575.409223: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
100800          <idle>-0     (-----) [003] .n.1 24575.409231: cpu_idle: state=4294967295 cpu_id=3
100801          <idle>-0     (-----) [003] d..2 24575.409239: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
100802        DispSync-23904 (23896) [003] d..1 24575.409257: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
100803        DispSync-23904 (23896) [003] d..2 24575.409279: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
100804          <idle>-0     (-----) [001] .n.1 24575.409284: cpu_idle: state=4294967295 cpu_id=1
100805          <idle>-0     (-----) [001] d..2 24575.409295: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
100806        DispSync-23904 (23896) [003] d..2 24575.409308: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100807          <idle>-0     (-----) [003] d..1 24575.409318: cpu_idle: state=0 cpu_id=3
100808  appEventThread-23905 (23896) [001] d..3 24575.409347: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
100809  appEventThread-23905 (23896) [001] d..4 24575.409372: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
100810          <idle>-0     (-----) [000] .n.1 24575.409377: cpu_idle: state=4294967295 cpu_id=0
100811          <idle>-0     (-----) [000] d..2 24575.409393: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
100812  appEventThread-23905 (23896) [001] d..2 24575.409408: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100813          <idle>-0     (-----) [001] d..1 24575.409421: cpu_idle: state=0 cpu_id=1
100814 s.nexuslauncher-24827 (24827) [000] .... 24575.409771: binder_transaction: transaction=1671249 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
100815 s.nexuslauncher-24827 (24827) [000] d..4 24575.409782: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
100816 s.nexuslauncher-24827 (24827) [000] d..5 24575.409816: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
100817          <idle>-0     (-----) [001] .n.1 24575.409821: cpu_idle: state=4294967295 cpu_id=1
100818          <idle>-0     (-----) [001] d..2 24575.409834: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
100819  Binder:23896_5-25989 (23896) [001] .... 24575.409842: binder_transaction_received: transaction=1671249
100820 s.nexuslauncher-24827 (24827) [000] d..3 24575.409857: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
100821  Binder:23896_5-25989 (23896) [001] d..1 24575.409874: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
100822 s.nexuslauncher-24827 (24827) [000] d..4 24575.409875: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
100823          <idle>-0     (-----) [002] .n.1 24575.409880: cpu_idle: state=4294967295 cpu_id=2
100824          <idle>-0     (-----) [002] d..2 24575.409893: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
100825  Binder:23896_5-25989 (23896) [001] d..2 24575.409898: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
100826          <idle>-0     (-----) [003] .n.1 24575.409903: cpu_idle: state=4294967295 cpu_id=3
100827          <idle>-0     (-----) [003] d..2 24575.409912: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
100828    RenderThread-25194 (24827) [002] d..2 24575.409938: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100829  Binder:23896_5-25989 (23896) [001] d..2 24575.409940: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100830          <idle>-0     (-----) [002] d..1 24575.409946: cpu_idle: state=0 cpu_id=2
100831          <idle>-0     (-----) [001] d..1 24575.409954: cpu_idle: state=0 cpu_id=1
100832  appEventThread-23905 (23896) [003] d..2 24575.409957: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100833          <idle>-0     (-----) [003] d..1 24575.409966: cpu_idle: state=0 cpu_id=3
100834 s.nexuslauncher-24827 (24827) [000] d..3 24575.410447: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
100835 s.nexuslauncher-24827 (24827) [000] d..4 24575.410469: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
100836          <idle>-0     (-----) [002] .n.1 24575.410474: cpu_idle: state=4294967295 cpu_id=2
100837          <idle>-0     (-----) [002] d..2 24575.410484: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
100838 s.nexuslauncher-24827 (24827) [000] d..2 24575.410505: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100839          <idle>-0     (-----) [000] d..1 24575.410518: cpu_idle: state=0 cpu_id=0
100840    RenderThread-25194 (24827) [002] d..1 24575.410724: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
100841    RenderThread-25194 (24827) [002] d..2 24575.410746: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
100842          <idle>-0     (-----) [000] .n.1 24575.410754: cpu_idle: state=4294967295 cpu_id=0
100843          <idle>-0     (-----) [000] d..2 24575.410764: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
100844    RenderThread-25194 (24827) [002] .... 24575.410805: binder_transaction: transaction=1671250 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
100845    RenderThread-25194 (24827) [002] ...2 24575.410814: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
100846    RenderThread-25194 (24827) [002] d..4 24575.410817: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
100847    RenderThread-25194 (24827) [002] dn.5 24575.410840: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
100848    RenderThread-25194 (24827) [002] d..2 24575.410851: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
100849  Binder:23896_5-25989 (23896) [002] .... 24575.410860: binder_transaction_received: transaction=1671250
100850 s.nexuslauncher-24827 (24827) [000] d..2 24575.410877: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100851          <idle>-0     (-----) [000] d.s3 24575.410909: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
100852  Binder:23896_5-25989 (23896) [002] d.s2 24575.410924: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
100853          <idle>-0     (-----) [000] dns4 24575.410926: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
100854          <idle>-0     (-----) [000] d..2 24575.410941: 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
100855  Binder:23896_5-25989 (23896) [002] dns3 24575.410943: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
100856  Binder:23896_5-25989 (23896) [002] d..2 24575.410962: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=R ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
100857     rcu_preempt-7     (    7) [000] d..2 24575.410983: 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
100858     kworker/2:0-12895 (12895) [002] d..2 24575.410987: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
100859          <idle>-0     (-----) [000] d..1 24575.410998: cpu_idle: state=0 cpu_id=0
100860  Binder:23896_5-25989 (23896) [002] d..2 24575.411019: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
100861    RenderThread-25194 (24827) [002] d..2 24575.411049: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100862          <idle>-0     (-----) [002] d..1 24575.411067: cpu_idle: state=0 cpu_id=2
100863          <idle>-0     (-----) [003] d.h2 24575.413219: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
100864          <idle>-0     (-----) [003] dnh3 24575.413231: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
100865          <idle>-0     (-----) [003] .n.1 24575.413239: cpu_idle: state=4294967295 cpu_id=3
100866          <idle>-0     (-----) [003] d..2 24575.413249: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
100867        DispSync-23904 (23896) [003] d..1 24575.413263: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
100868        DispSync-23904 (23896) [003] d..2 24575.413279: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
100869          <idle>-0     (-----) [001] .n.1 24575.413286: cpu_idle: state=4294967295 cpu_id=1
100870          <idle>-0     (-----) [001] d..2 24575.413299: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
100871        DispSync-23904 (23896) [003] d..2 24575.413305: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100872          <idle>-0     (-----) [003] d..1 24575.413317: cpu_idle: state=0 cpu_id=3
100873   sfEventThread-23906 (23896) [001] d..3 24575.413335: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
100874   sfEventThread-23906 (23896) [001] d..4 24575.413354: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
100875          <idle>-0     (-----) [000] .n.1 24575.413361: cpu_idle: state=4294967295 cpu_id=0
100876          <idle>-0     (-----) [000] d..2 24575.413371: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
100877   sfEventThread-23906 (23896) [001] d..2 24575.413383: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100878          <idle>-0     (-----) [001] d..1 24575.413396: cpu_idle: state=0 cpu_id=1
100879  surfaceflinger-23896 (23896) [000] d..1 24575.413581: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
100880  surfaceflinger-23896 (23896) [000] d..2 24575.413613: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
100881          <idle>-0     (-----) [001] .n.1 24575.413618: cpu_idle: state=4294967295 cpu_id=1
100882          <idle>-0     (-----) [001] d..2 24575.413630: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
100883  Binder:23896_5-25989 (23896) [001] d..2 24575.413666: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100884          <idle>-0     (-----) [001] d..1 24575.413677: cpu_idle: state=0 cpu_id=1
100885  surfaceflinger-23896 (23896) [000] d..1 24575.413796: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
100886  surfaceflinger-23896 (23896) [000] d..2 24575.413817: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
100887          <idle>-0     (-----) [001] .n.1 24575.413823: cpu_idle: state=4294967295 cpu_id=1
100888          <idle>-0     (-----) [001] d..2 24575.413832: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
100889   sfEventThread-23906 (23896) [001] d..2 24575.413864: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100890          <idle>-0     (-----) [001] d..1 24575.413874: cpu_idle: state=0 cpu_id=1
100891  surfaceflinger-23896 (23896) [000] ...1 24575.414028: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
100892  surfaceflinger-23896 (23896) [000] ...1 24575.414039: tracing_mark_write: E|23896
100893  surfaceflinger-23896 (23896) [000] .... 24575.414102: binder_transaction: transaction=1671251 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
100894  surfaceflinger-23896 (23896) [000] ...2 24575.414128: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
100895  surfaceflinger-23896 (23896) [000] d..4 24575.414136: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
100896  surfaceflinger-23896 (23896) [000] d..5 24575.414156: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
100897          <idle>-0     (-----) [002] .n.1 24575.414163: cpu_idle: state=4294967295 cpu_id=2
100898          <idle>-0     (-----) [002] d..2 24575.414174: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
100899  surfaceflinger-23896 (23896) [000] d..2 24575.414186: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100900  HwBinder:598_3-633   (  598) [002] .... 24575.414187: binder_transaction_received: transaction=1671251
100901          <idle>-0     (-----) [000] d..1 24575.414203: cpu_idle: state=0 cpu_id=0
100902  HwBinder:598_3-633   (  598) [002] d.s2 24575.414250: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
100903  HwBinder:598_3-633   (  598) [002] d.s3 24575.414292: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
100904  HwBinder:598_3-633   (  598) [002] ...1 24575.414338: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
100905  HwBinder:598_3-633   (  598) [002] ...1 24575.414499: tracing_mark_write: B|598|HWCSession::PresentDisplay::
100906  HwBinder:598_3-633   (  598) [002] ...1 24575.414702: tracing_mark_write: B|598|HWDeviceDRM::Commit::
100907  HwBinder:598_3-633   (  598) [002] ...1 24575.414716: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
100908  HwBinder:598_3-633   (  598) [002] d..2 24575.415359: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
100909  HwBinder:598_3-633   (  598) [002] d..3 24575.415382: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
100910          <idle>-0     (-----) [001] .n.1 24575.415386: cpu_idle: state=4294967295 cpu_id=1
100911          <idle>-0     (-----) [001] d..2 24575.415398: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
100912  HwBinder:598_3-633   (  598) [002] ...1 24575.415485: tracing_mark_write: E|598
100913  HwBinder:598_3-633   (  598) [002] ...1 24575.415491: tracing_mark_write: E|598
100914  HwBinder:598_3-633   (  598) [002] ...1 24575.415560: tracing_mark_write: E|598
100915  HwBinder:598_3-633   (  598) [002] ...1 24575.415612: tracing_mark_write: E|598
100916  HwBinder:598_3-633   (  598) [002] .... 24575.415630: binder_transaction: transaction=1671252 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
100917  HwBinder:598_3-633   (  598) [002] d..2 24575.415655: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
100918  HwBinder:598_3-633   (  598) [002] d..3 24575.415672: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
100919  HwBinder:598_3-633   (  598) [002] .... 24575.415677: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
100920          <idle>-0     (-----) [000] .n.1 24575.415679: cpu_idle: state=4294967295 cpu_id=0
100921          <idle>-0     (-----) [000] d..2 24575.415691: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
100922  surfaceflinger-23896 (23896) [000] .... 24575.415700: binder_transaction_received: transaction=1671252
100923  HwBinder:598_3-633   (  598) [002] d..2 24575.415756: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
100924  kworker/u16:10-23868 (23868) [002] .... 24575.415935: clk_set_rate: l3_cluster0_vote_clk 403200000
100925  kworker/u16:10-23868 (23868) [002] .... 24575.415942: clk_set_rate: l3_clk 403200000
100926  surfaceflinger-23896 (23896) [000] d..1 24575.415991: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
100927  kworker/u16:10-23868 (23868) [002] d..2 24575.416007: 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
100928  surfaceflinger-23896 (23896) [000] d..2 24575.416027: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
100929          <idle>-0     (-----) [002] d..2 24575.416038: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
100930  surfaceflinger-23896 (23896) [000] d..1 24575.416066: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
100931  Binder:23896_5-25989 (23896) [002] d..2 24575.416078: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100932          <idle>-0     (-----) [002] d..1 24575.416090: cpu_idle: state=0 cpu_id=2
100933  surfaceflinger-23896 (23896) [000] d..2 24575.416094: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
100934          <idle>-0     (-----) [002] .n.1 24575.416098: cpu_idle: state=4294967295 cpu_id=2
100935          <idle>-0     (-----) [002] d..2 24575.416109: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
100936  Binder:23896_5-25989 (23896) [002] .... 24575.416167: binder_transaction: transaction=1671253 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
100937  Binder:23896_5-25989 (23896) [002] d..2 24575.416181: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
100938  Binder:23896_5-25989 (23896) [002] d..3 24575.416195: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
100939  Binder:23896_5-25989 (23896) [002] .... 24575.416199: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
100940 crtc_commit:111-253   (  253) [001] d..2 24575.416254: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
100941  Binder:23896_5-25989 (23896) [002] d..2 24575.416255: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
100942  surfaceflinger-23896 (23896) [000] d..2 24575.416263: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100943    RenderThread-25194 (24827) [002] .... 24575.416265: binder_transaction_received: transaction=1671253
100944          <idle>-0     (-----) [001] d..1 24575.416270: cpu_idle: state=0 cpu_id=1
100945          <idle>-0     (-----) [000] d..1 24575.416278: cpu_idle: state=0 cpu_id=0
100946    RenderThread-25194 (24827) [002] d.s2 24575.417654: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
100947          <idle>-0     (-----) [000] d.H3 24575.417676: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
100948          <idle>-0     (-----) [000] d.H3 24575.417695: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
100949          <idle>-0     (-----) [005] dnh2 24575.417699: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
100950    RenderThread-25194 (24827) [002] dns3 24575.417702: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
100951          <idle>-0     (-----) [005] .n.1 24575.417703: cpu_idle: state=4294967295 cpu_id=5
100952          <idle>-0     (-----) [005] d..2 24575.417708: 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
100953         sugov:4-560   (  560) [005] d..2 24575.417720: 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
100954          <idle>-0     (-----) [005] d..1 24575.417725: cpu_idle: state=0 cpu_id=5
100955          <idle>-0     (-----) [000] dnH4 24575.417726: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
100956    RenderThread-25194 (24827) [002] d..2 24575.417727: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
100957     rcu_preempt-7     (    7) [002] d..2 24575.417734: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
100958          <idle>-0     (-----) [000] .n.1 24575.417752: cpu_idle: state=4294967295 cpu_id=0
100959     rcu_preempt-7     (    7) [002] d..3 24575.417754: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
100960          <idle>-0     (-----) [000] d..2 24575.417761: 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
100961     rcu_preempt-7     (    7) [002] d..2 24575.417776: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
100962         sugov:0-559   (  559) [000] .... 24575.417806: clk_set_rate: pwrcl_clk 902400000
100963         sugov:0-559   (  559) [000] .... 24575.417820: clk_set_rate: cpu3_pwrcl_clk 979200000
100964         sugov:0-559   (  559) [000] .... 24575.417831: clk_set_rate: cpu2_pwrcl_clk 979200000
100965         sugov:0-559   (  559) [000] .... 24575.417840: clk_set_rate: cpu1_pwrcl_clk 979200000
100966         sugov:0-559   (  559) [000] .... 24575.417849: clk_set_rate: cpu0_pwrcl_clk 902400000
100967         sugov:0-559   (  559) [000] .... 24575.417915: cpu_frequency: state=902400 cpu_id=0
100968         sugov:0-559   (  559) [000] .... 24575.417948: cpu_frequency: state=902400 cpu_id=1
100969         sugov:0-559   (  559) [000] .... 24575.417952: cpu_frequency: state=902400 cpu_id=2
100970         sugov:0-559   (  559) [000] .... 24575.417956: cpu_frequency: state=902400 cpu_id=3
100971         sugov:0-559   (  559) [000] d..2 24575.417976: 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
100972         rcuop/0-10    (   10) [000] d..2 24575.417989: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
100973         rcuop/0-10    (   10) [000] d..3 24575.418031: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
100974         rcuop/0-10    (   10) [000] d..2 24575.418044: 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
100975     rcu_preempt-7     (    7) [000] d..2 24575.418074: 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
100976          <idle>-0     (-----) [000] d..1 24575.418091: cpu_idle: state=0 cpu_id=0
100977          <idle>-0     (-----) [005] ...1 24575.418735: cpu_idle: state=4294967295 cpu_id=5
100978          <idle>-0     (-----) [005] d..1 24575.418738: cpu_idle: state=0 cpu_id=5
100979    RenderThread-25194 (24827) [002] .... 24575.419071: binder_transaction: transaction=1671254 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
100980    RenderThread-25194 (24827) [002] ...2 24575.419086: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
100981    RenderThread-25194 (24827) [002] d..4 24575.419091: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
100982    RenderThread-25194 (24827) [002] dn.5 24575.419113: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
100983    RenderThread-25194 (24827) [002] d..2 24575.419125: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
100984  Binder:23896_5-25989 (23896) [002] .... 24575.419134: binder_transaction_received: transaction=1671254
100985  Binder:23896_5-25989 (23896) [002] .... 24575.419308: binder_transaction: transaction=1671255 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
100986  Binder:23896_5-25989 (23896) [002] .... 24575.419318: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
100987  Binder:23896_5-25989 (23896) [002] d..2 24575.419380: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
100988    RenderThread-25194 (24827) [002] .... 24575.419391: binder_transaction_received: transaction=1671255
100989    RenderThread-25194 (24827) [002] d..2 24575.419506: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100990          <idle>-0     (-----) [002] d..1 24575.419526: cpu_idle: state=0 cpu_id=2
100991          <idle>-0     (-----) [000] d.h5 24575.421498: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
100992          <idle>-0     (-----) [000] d.h6 24575.421519: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
100993          <idle>-0     (-----) [003] .n.1 24575.421525: cpu_idle: state=4294967295 cpu_id=3
100994          <idle>-0     (-----) [000] d.h5 24575.421526: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
100995          <idle>-0     (-----) [003] d..2 24575.421538: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
100996          <idle>-0     (-----) [000] d.h6 24575.421539: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
100997          <idle>-0     (-----) [001] .n.1 24575.421546: cpu_idle: state=4294967295 cpu_id=1
100998          <idle>-0     (-----) [000] d..2 24575.421554: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
100999  crtc_event:111-254   (  254) [003] d..3 24575.421558: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
101000          <idle>-0     (-----) [001] d..2 24575.421559: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
101001          <idle>-0     (-----) [000] dn.3 24575.421573: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
101002  crtc_event:111-254   (  254) [003] d..4 24575.421579: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
101003          <idle>-0     (-----) [000] .n.1 24575.421583: cpu_idle: state=4294967295 cpu_id=0
101004          <idle>-0     (-----) [000] d..2 24575.421598: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
101005  crtc_event:111-254   (  254) [003] d..2 24575.421609: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101006          <idle>-0     (-----) [003] d..1 24575.421620: cpu_idle: state=0 cpu_id=3
101007 crtc_commit:111-253   (  253) [001] d..2 24575.421731: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
101008          <idle>-0     (-----) [001] d..1 24575.421741: cpu_idle: state=0 cpu_id=1
101009 kgsl_worker_thr-246   (  246) [000] d..2 24575.421809: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
101010     ksoftirqd/0-3     (    3) [000] d.s2 24575.421824: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
101011     ksoftirqd/0-3     (    3) [000] d.s3 24575.421869: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
101012     ksoftirqd/0-3     (    3) [000] d..2 24575.421883: 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
101013  kworker/u16:10-23868 (23868) [000] d.h2 24575.421956: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
101014  kworker/u16:10-23868 (23868) [000] d.h3 24575.421981: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
101015          <idle>-0     (-----) [003] .n.1 24575.421986: cpu_idle: state=4294967295 cpu_id=3
101016          <idle>-0     (-----) [003] d..2 24575.421996: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
101017  kworker/u16:10-23868 (23868) [000] d..2 24575.422016: 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
101018 kgsl_worker_thr-246   (  246) [003] d..2 24575.422022: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
101019          <idle>-0     (-----) [000] d..1 24575.422028: cpu_idle: state=0 cpu_id=0
101020 kgsl_worker_thr-246   (  246) [003] d..3 24575.422041: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
101021          <idle>-0     (-----) [000] .n.1 24575.422048: cpu_idle: state=4294967295 cpu_id=0
101022          <idle>-0     (-----) [000] d..2 24575.422059: 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
101023 kgsl_worker_thr-246   (  246) [003] d..2 24575.422067: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101024          <idle>-0     (-----) [003] d..1 24575.422077: cpu_idle: state=0 cpu_id=3
101025  kworker/u16:10-23868 (23868) [000] d..2 24575.422477: 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
101026          <idle>-0     (-----) [000] d..1 24575.422488: cpu_idle: state=0 cpu_id=0
101027          <idle>-0     (-----) [000] d.h3 24575.423535: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
101028          <idle>-0     (-----) [000] d.h4 24575.423553: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
101029          <idle>-0     (-----) [003] .n.1 24575.423558: cpu_idle: state=4294967295 cpu_id=3
101030          <idle>-0     (-----) [003] d..2 24575.423569: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
101031          <idle>-0     (-----) [000] ...1 24575.423570: cpu_idle: state=4294967295 cpu_id=0
101032          <idle>-0     (-----) [000] d..1 24575.423574: cpu_idle: state=0 cpu_id=0
101033 kgsl_worker_thr-246   (  246) [003] d..2 24575.423644: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101034          <idle>-0     (-----) [003] d..1 24575.423655: cpu_idle: state=0 cpu_id=3
101035          <idle>-0     (-----) [000] d.h5 24575.423813: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
101036          <idle>-0     (-----) [000] d.h6 24575.423828: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
101037          <idle>-0     (-----) [001] .n.1 24575.423834: cpu_idle: state=4294967295 cpu_id=1
101038          <idle>-0     (-----) [000] ...1 24575.423842: cpu_idle: state=4294967295 cpu_id=0
101039          <idle>-0     (-----) [001] d..2 24575.423842: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
101040          <idle>-0     (-----) [000] d..1 24575.423846: cpu_idle: state=0 cpu_id=0
101041 crtc_commit:111-253   (  253) [001] d..2 24575.423922: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101042          <idle>-0     (-----) [001] d..1 24575.423931: cpu_idle: state=0 cpu_id=1
101043          <idle>-0     (-----) [000] d.h5 24575.424127: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
101044          <idle>-0     (-----) [000] d.h6 24575.424142: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
101045          <idle>-0     (-----) [003] .n.1 24575.424147: cpu_idle: state=4294967295 cpu_id=3
101046          <idle>-0     (-----) [003] d..2 24575.424159: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
101047          <idle>-0     (-----) [000] ...1 24575.424161: cpu_idle: state=4294967295 cpu_id=0
101048          <idle>-0     (-----) [000] d..1 24575.424165: cpu_idle: state=0 cpu_id=0
101049  crtc_event:111-254   (  254) [003] d..2 24575.424186: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101050          <idle>-0     (-----) [003] d..1 24575.424195: cpu_idle: state=0 cpu_id=3
101051          <idle>-0     (-----) [000] d.s2 24575.424242: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101052          <idle>-0     (-----) [001] d.s3 24575.424249: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
101053          <idle>-0     (-----) [000] dns3 24575.424262: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101054          <idle>-0     (-----) [000] dns3 24575.424267: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
101055          <idle>-0     (-----) [001] d.s4 24575.424270: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
101056          <idle>-0     (-----) [003] .n.1 24575.424276: cpu_idle: state=4294967295 cpu_id=3
101057          <idle>-0     (-----) [003] d..2 24575.424286: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
101058          <idle>-0     (-----) [001] ...1 24575.424300: cpu_idle: state=4294967295 cpu_id=1
101059          <idle>-0     (-----) [001] d..1 24575.424306: cpu_idle: state=0 cpu_id=1
101060          <idle>-0     (-----) [000] dns4 24575.424308: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
101061  crtc_event:111-254   (  254) [003] d..2 24575.424324: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
101062          <idle>-0     (-----) [000] .n.1 24575.424327: cpu_idle: state=4294967295 cpu_id=0
101063          <idle>-0     (-----) [000] d..2 24575.424338: 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
101064     rcu_preempt-7     (    7) [000] d..2 24575.424389: 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
101065          <idle>-0     (-----) [000] d..1 24575.424413: cpu_idle: state=0 cpu_id=0
101066  kworker/u16:10-23868 (23868) [003] d..2 24575.424496: 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
101067          <idle>-0     (-----) [003] d..1 24575.424508: cpu_idle: state=0 cpu_id=3
101068          <idle>-0     (-----) [003] d.h2 24575.425681: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
101069          <idle>-0     (-----) [003] dnh3 24575.425697: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
101070          <idle>-0     (-----) [003] .n.1 24575.425706: cpu_idle: state=4294967295 cpu_id=3
101071          <idle>-0     (-----) [003] d..2 24575.425716: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
101072        DispSync-23904 (23896) [003] d..1 24575.425732: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
101073        DispSync-23904 (23896) [003] d..2 24575.425756: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
101074          <idle>-0     (-----) [000] .n.1 24575.425761: cpu_idle: state=4294967295 cpu_id=0
101075          <idle>-0     (-----) [000] d..2 24575.425773: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
101076        DispSync-23904 (23896) [003] d..2 24575.425786: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101077          <idle>-0     (-----) [003] d..1 24575.425798: cpu_idle: state=0 cpu_id=3
101078  appEventThread-23905 (23896) [000] d..3 24575.425832: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
101079  appEventThread-23905 (23896) [000] d..4 24575.425866: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
101080          <idle>-0     (-----) [001] .n.1 24575.425871: cpu_idle: state=4294967295 cpu_id=1
101081          <idle>-0     (-----) [001] d..2 24575.425887: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
101082  appEventThread-23905 (23896) [000] d..2 24575.425907: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101083          <idle>-0     (-----) [000] d..1 24575.425921: cpu_idle: state=0 cpu_id=0
101084 s.nexuslauncher-24827 (24827) [001] .... 24575.426294: binder_transaction: transaction=1671256 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
101085 s.nexuslauncher-24827 (24827) [001] d..4 24575.426306: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
101086 s.nexuslauncher-24827 (24827) [001] d..5 24575.426342: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
101087          <idle>-0     (-----) [000] .n.1 24575.426347: cpu_idle: state=4294967295 cpu_id=0
101088          <idle>-0     (-----) [000] d..2 24575.426360: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
101089  Binder:23896_5-25989 (23896) [000] .... 24575.426369: binder_transaction_received: transaction=1671256
101090 s.nexuslauncher-24827 (24827) [001] d..3 24575.426385: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
101091  Binder:23896_5-25989 (23896) [000] d..1 24575.426403: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
101092 s.nexuslauncher-24827 (24827) [001] d..4 24575.426405: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
101093          <idle>-0     (-----) [002] .n.1 24575.426412: cpu_idle: state=4294967295 cpu_id=2
101094          <idle>-0     (-----) [002] d..2 24575.426428: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
101095  Binder:23896_5-25989 (23896) [000] d..2 24575.426430: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
101096          <idle>-0     (-----) [003] .n.1 24575.426436: cpu_idle: state=4294967295 cpu_id=3
101097          <idle>-0     (-----) [003] d..2 24575.426447: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
101098    RenderThread-25194 (24827) [002] d..2 24575.426474: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
101099  Binder:23896_5-25989 (23896) [000] d..2 24575.426476: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101100          <idle>-0     (-----) [002] d..1 24575.426487: cpu_idle: state=0 cpu_id=2
101101          <idle>-0     (-----) [000] d..1 24575.426491: cpu_idle: state=0 cpu_id=0
101102  appEventThread-23905 (23896) [003] d..2 24575.426494: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101103          <idle>-0     (-----) [003] d..1 24575.426505: cpu_idle: state=0 cpu_id=3
101104 s.nexuslauncher-24827 (24827) [001] d..3 24575.427029: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
101105 s.nexuslauncher-24827 (24827) [001] d..4 24575.427052: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
101106          <idle>-0     (-----) [002] .n.1 24575.427057: cpu_idle: state=4294967295 cpu_id=2
101107          <idle>-0     (-----) [002] d..2 24575.427069: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
101108 s.nexuslauncher-24827 (24827) [001] d..2 24575.427092: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101109          <idle>-0     (-----) [001] d..1 24575.427114: cpu_idle: state=0 cpu_id=1
101110    RenderThread-25194 (24827) [002] d..1 24575.427321: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
101111    RenderThread-25194 (24827) [002] d..2 24575.427355: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
101112          <idle>-0     (-----) [000] .n.1 24575.427361: cpu_idle: state=4294967295 cpu_id=0
101113          <idle>-0     (-----) [000] d..2 24575.427374: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
101114    RenderThread-25194 (24827) [002] .... 24575.427419: binder_transaction: transaction=1671257 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
101115    RenderThread-25194 (24827) [002] ...2 24575.427429: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
101116    RenderThread-25194 (24827) [002] d..4 24575.427433: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
101117    RenderThread-25194 (24827) [002] dn.5 24575.427456: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
101118    RenderThread-25194 (24827) [002] d..2 24575.427467: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
101119  Binder:23896_5-25989 (23896) [002] .... 24575.427477: binder_transaction_received: transaction=1671257
101120 s.nexuslauncher-24827 (24827) [000] d..2 24575.427526: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101121  Binder:23896_5-25989 (23896) [002] d..2 24575.427526: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
101122          <idle>-0     (-----) [000] d..1 24575.427542: cpu_idle: state=0 cpu_id=0
101123    RenderThread-25194 (24827) [002] d..2 24575.427555: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
101124          <idle>-0     (-----) [002] d..1 24575.427620: cpu_idle: state=0 cpu_id=2
101125          <idle>-0     (-----) [003] d.h2 24575.429692: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
101126          <idle>-0     (-----) [003] dnh3 24575.429706: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
101127          <idle>-0     (-----) [003] .n.1 24575.429714: cpu_idle: state=4294967295 cpu_id=3
101128          <idle>-0     (-----) [003] d..2 24575.429725: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
101129        DispSync-23904 (23896) [003] d..1 24575.429738: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
101130        DispSync-23904 (23896) [003] d..2 24575.429755: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
101131          <idle>-0     (-----) [001] .n.1 24575.429762: cpu_idle: state=4294967295 cpu_id=1
101132          <idle>-0     (-----) [001] d..2 24575.429777: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
101133        DispSync-23904 (23896) [003] d..2 24575.429787: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101134          <idle>-0     (-----) [003] d..1 24575.429803: cpu_idle: state=0 cpu_id=3
101135   sfEventThread-23906 (23896) [001] d..3 24575.429824: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
101136   sfEventThread-23906 (23896) [001] d..4 24575.429851: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
101137          <idle>-0     (-----) [000] .n.1 24575.429859: cpu_idle: state=4294967295 cpu_id=0
101138          <idle>-0     (-----) [000] d..2 24575.429873: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
101139   sfEventThread-23906 (23896) [001] d..2 24575.429889: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101140          <idle>-0     (-----) [001] d..1 24575.429905: cpu_idle: state=0 cpu_id=1
101141  surfaceflinger-23896 (23896) [000] d..1 24575.430095: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
101142  surfaceflinger-23896 (23896) [000] d..2 24575.430128: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
101143          <idle>-0     (-----) [001] .n.1 24575.430134: cpu_idle: state=4294967295 cpu_id=1
101144          <idle>-0     (-----) [001] d..2 24575.430147: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
101145  Binder:23896_5-25989 (23896) [001] d..2 24575.430178: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101146          <idle>-0     (-----) [001] d..1 24575.430190: cpu_idle: state=0 cpu_id=1
101147  surfaceflinger-23896 (23896) [000] d..1 24575.430334: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
101148  surfaceflinger-23896 (23896) [000] d..2 24575.430357: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
101149          <idle>-0     (-----) [001] .n.1 24575.430362: cpu_idle: state=4294967295 cpu_id=1
101150          <idle>-0     (-----) [001] d..2 24575.430372: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
101151   sfEventThread-23906 (23896) [001] d..2 24575.430410: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101152          <idle>-0     (-----) [001] d..1 24575.430421: cpu_idle: state=0 cpu_id=1
101153  surfaceflinger-23896 (23896) [000] ...1 24575.430594: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
101154  surfaceflinger-23896 (23896) [000] ...1 24575.430604: tracing_mark_write: E|23896
101155  surfaceflinger-23896 (23896) [000] .... 24575.430674: binder_transaction: transaction=1671258 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
101156  surfaceflinger-23896 (23896) [000] ...2 24575.430703: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
101157  surfaceflinger-23896 (23896) [000] d..4 24575.430711: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
101158  surfaceflinger-23896 (23896) [000] d..5 24575.430736: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
101159          <idle>-0     (-----) [002] .n.1 24575.430742: cpu_idle: state=4294967295 cpu_id=2
101160          <idle>-0     (-----) [002] d..2 24575.430753: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
101161  HwBinder:598_3-633   (  598) [002] .... 24575.430767: binder_transaction_received: transaction=1671258
101162  surfaceflinger-23896 (23896) [000] d..2 24575.430770: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101163          <idle>-0     (-----) [000] d..1 24575.430785: cpu_idle: state=0 cpu_id=0
101164  HwBinder:598_3-633   (  598) [002] ...1 24575.430825: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
101165          <idle>-0     (-----) [000] d.s2 24575.430911: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101166          <idle>-0     (-----) [000] dns3 24575.430931: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101167          <idle>-0     (-----) [000] .n.1 24575.430949: cpu_idle: state=4294967295 cpu_id=0
101168          <idle>-0     (-----) [000] d..2 24575.430959: 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
101169     rcu_preempt-7     (    7) [000] d..2 24575.430969: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
101170     rcu_preempt-7     (    7) [000] d..3 24575.430985: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
101171     rcu_preempt-7     (    7) [000] d..2 24575.430997: 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
101172  HwBinder:598_3-633   (  598) [002] ...1 24575.431008: tracing_mark_write: B|598|HWCSession::PresentDisplay::
101173         rcuop/0-10    (   10) [000] d..2 24575.431008: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101174         rcuop/0-10    (   10) [000] d..3 24575.431020: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101175         rcuop/0-10    (   10) [000] d..2 24575.431029: 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
101176     rcu_preempt-7     (    7) [000] d..2 24575.431058: 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
101177          <idle>-0     (-----) [000] d..1 24575.431073: cpu_idle: state=0 cpu_id=0
101178  HwBinder:598_3-633   (  598) [002] ...1 24575.431222: tracing_mark_write: B|598|HWDeviceDRM::Commit::
101179  HwBinder:598_3-633   (  598) [002] ...1 24575.431236: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
101180          <idle>-0     (-----) [003] ...1 24575.431410: cpu_idle: state=4294967295 cpu_id=3
101181          <idle>-0     (-----) [003] d..1 24575.431415: cpu_idle: state=0 cpu_id=3
101182  HwBinder:598_3-633   (  598) [002] d..2 24575.431939: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
101183  HwBinder:598_3-633   (  598) [002] d..3 24575.431966: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
101184          <idle>-0     (-----) [001] .n.1 24575.431971: cpu_idle: state=4294967295 cpu_id=1
101185          <idle>-0     (-----) [001] d..2 24575.431985: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
101186  HwBinder:598_3-633   (  598) [002] ...1 24575.432082: tracing_mark_write: E|598
101187  HwBinder:598_3-633   (  598) [002] ...1 24575.432088: tracing_mark_write: E|598
101188  HwBinder:598_3-633   (  598) [002] ...1 24575.432163: tracing_mark_write: E|598
101189  HwBinder:598_3-633   (  598) [002] ...1 24575.432221: tracing_mark_write: E|598
101190  HwBinder:598_3-633   (  598) [002] .... 24575.432238: binder_transaction: transaction=1671259 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
101191  HwBinder:598_3-633   (  598) [002] d..2 24575.432263: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
101192  HwBinder:598_3-633   (  598) [002] d..3 24575.432283: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
101193  HwBinder:598_3-633   (  598) [002] .... 24575.432289: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
101194          <idle>-0     (-----) [000] .n.1 24575.432289: cpu_idle: state=4294967295 cpu_id=0
101195          <idle>-0     (-----) [000] d..2 24575.432300: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
101196  surfaceflinger-23896 (23896) [000] .... 24575.432311: binder_transaction_received: transaction=1671259
101197  HwBinder:598_3-633   (  598) [002] d..2 24575.432383: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
101198          <idle>-0     (-----) [002] d..1 24575.432402: cpu_idle: state=0 cpu_id=2
101199  surfaceflinger-23896 (23896) [000] d..1 24575.432594: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
101200  surfaceflinger-23896 (23896) [000] d..2 24575.432628: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
101201          <idle>-0     (-----) [002] .n.1 24575.432635: cpu_idle: state=4294967295 cpu_id=2
101202          <idle>-0     (-----) [002] d..2 24575.432651: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
101203  Binder:23896_5-25989 (23896) [002] .... 24575.432714: binder_transaction: transaction=1671260 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
101204  Binder:23896_5-25989 (23896) [002] d..2 24575.432728: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
101205  Binder:23896_5-25989 (23896) [002] d..3 24575.432745: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
101206  Binder:23896_5-25989 (23896) [002] .... 24575.432749: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
101207  Binder:23896_5-25989 (23896) [002] d..2 24575.432807: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
101208    RenderThread-25194 (24827) [002] .... 24575.432816: binder_transaction_received: transaction=1671260
101209  surfaceflinger-23896 (23896) [000] d..2 24575.432819: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101210 crtc_commit:111-253   (  253) [001] d..2 24575.432829: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
101211          <idle>-0     (-----) [000] d..1 24575.432837: cpu_idle: state=0 cpu_id=0
101212          <idle>-0     (-----) [001] d..1 24575.432845: cpu_idle: state=0 cpu_id=1
101213    RenderThread-25194 (24827) [002] d.s2 24575.434265: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
101214    RenderThread-25194 (24827) [002] d.s3 24575.434326: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
101215          <idle>-0     (-----) [000] .n.1 24575.434332: cpu_idle: state=4294967295 cpu_id=0
101216          <idle>-0     (-----) [000] d..2 24575.434349: 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
101217  kworker/u16:10-23868 (23868) [000] d..2 24575.434522: 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
101218          <idle>-0     (-----) [000] d..1 24575.434532: cpu_idle: state=0 cpu_id=0
101219    RenderThread-25194 (24827) [002] .... 24575.435550: binder_transaction: transaction=1671261 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
101220    RenderThread-25194 (24827) [002] ...2 24575.435566: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
101221    RenderThread-25194 (24827) [002] d..4 24575.435570: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
101222    RenderThread-25194 (24827) [002] dn.5 24575.435592: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
101223    RenderThread-25194 (24827) [002] d..2 24575.435604: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
101224  Binder:23896_5-25989 (23896) [002] .... 24575.435613: binder_transaction_received: transaction=1671261
101225  Binder:23896_5-25989 (23896) [002] .... 24575.435789: binder_transaction: transaction=1671262 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
101226  Binder:23896_5-25989 (23896) [002] .... 24575.435800: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
101227  Binder:23896_5-25989 (23896) [002] d..2 24575.435863: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
101228    RenderThread-25194 (24827) [002] .... 24575.435874: binder_transaction_received: transaction=1671262
101229    RenderThread-25194 (24827) [002] d..2 24575.435992: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
101230          <idle>-0     (-----) [002] d..1 24575.436013: cpu_idle: state=0 cpu_id=2
101231          <idle>-0     (-----) [000] d.H3 24575.437692: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
101232          <idle>-0     (-----) [000] d.H3 24575.437711: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
101233          <idle>-0     (-----) [005] dnh2 24575.437716: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
101234          <idle>-0     (-----) [005] .n.1 24575.437720: cpu_idle: state=4294967295 cpu_id=5
101235          <idle>-0     (-----) [005] d..2 24575.437725: 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
101236          <idle>-0     (-----) [000] dnH4 24575.437725: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
101237          <idle>-0     (-----) [000] dns2 24575.437733: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101238         sugov:4-560   (  560) [005] d..2 24575.437738: 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
101239          <idle>-0     (-----) [005] d..1 24575.437744: cpu_idle: state=0 cpu_id=5
101240          <idle>-0     (-----) [000] dns3 24575.437753: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101241          <idle>-0     (-----) [000] dns3 24575.437765: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
101242          <idle>-0     (-----) [000] dns4 24575.437783: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
101243          <idle>-0     (-----) [000] .n.1 24575.437796: cpu_idle: state=4294967295 cpu_id=0
101244          <idle>-0     (-----) [000] d..2 24575.437806: 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
101245         sugov:0-559   (  559) [000] .... 24575.437854: clk_set_rate: pwrcl_clk 1132800000
101246         sugov:0-559   (  559) [000] d.h4 24575.437960: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
101247         sugov:0-559   (  559) [000] d.h5 24575.437980: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
101248          <idle>-0     (-----) [003] .n.1 24575.437984: cpu_idle: state=4294967295 cpu_id=3
101249         sugov:0-559   (  559) [000] d.h4 24575.437987: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
101250          <idle>-0     (-----) [003] d..2 24575.437998: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
101251         sugov:0-559   (  559) [000] d.h5 24575.438000: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
101252          <idle>-0     (-----) [001] .n.1 24575.438007: cpu_idle: state=4294967295 cpu_id=1
101253  crtc_event:111-254   (  254) [003] d..3 24575.438018: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
101254          <idle>-0     (-----) [001] d..2 24575.438019: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
101255         sugov:0-559   (  559) [000] .... 24575.438032: clk_set_rate: cpu3_pwrcl_clk 902400000
101256  crtc_event:111-254   (  254) [003] d..4 24575.438044: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
101257         sugov:0-559   (  559) [000] .... 24575.438045: clk_set_rate: cpu2_pwrcl_clk 902400000
101258          <idle>-0     (-----) [002] .n.1 24575.438051: cpu_idle: state=4294967295 cpu_id=2
101259         sugov:0-559   (  559) [000] .... 24575.438054: clk_set_rate: cpu1_pwrcl_clk 902400000
101260         sugov:0-559   (  559) [000] .... 24575.438064: clk_set_rate: cpu0_pwrcl_clk 1132800000
101261          <idle>-0     (-----) [002] d..2 24575.438065: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
101262  crtc_event:111-254   (  254) [003] d..2 24575.438072: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101263         sugov:0-559   (  559) [000] .... 24575.438077: cpu_frequency: state=1132800 cpu_id=0
101264          <idle>-0     (-----) [003] d..1 24575.438085: cpu_idle: state=0 cpu_id=3
101265         sugov:0-559   (  559) [000] .... 24575.438103: cpu_frequency: state=1132800 cpu_id=1
101266         sugov:0-559   (  559) [000] .... 24575.438108: cpu_frequency: state=1132800 cpu_id=2
101267         sugov:0-559   (  559) [000] .... 24575.438115: cpu_frequency: state=1132800 cpu_id=3
101268         sugov:0-559   (  559) [000] d..2 24575.438133: 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
101269     rcu_preempt-7     (    7) [000] d..2 24575.438154: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
101270 crtc_commit:111-253   (  253) [001] d..2 24575.438187: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
101271          <idle>-0     (-----) [001] d..1 24575.438196: cpu_idle: state=0 cpu_id=1
101272     kworker/0:1-13012 (13012) [000] d..2 24575.438243: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101273          <idle>-0     (-----) [000] d..1 24575.438256: cpu_idle: state=0 cpu_id=0
101274 kgsl_worker_thr-246   (  246) [002] d..2 24575.438281: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
101275          <idle>-0     (-----) [002] d..1 24575.438291: cpu_idle: state=0 cpu_id=2
101276          <idle>-0     (-----) [002] d.h2 24575.438372: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
101277          <idle>-0     (-----) [002] dnh3 24575.438385: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
101278          <idle>-0     (-----) [002] .n.1 24575.438393: cpu_idle: state=4294967295 cpu_id=2
101279          <idle>-0     (-----) [002] d..2 24575.438401: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
101280 kgsl_worker_thr-246   (  246) [002] d..2 24575.438423: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
101281 kgsl_worker_thr-246   (  246) [002] d..3 24575.438462: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
101282 kgsl_worker_thr-246   (  246) [002] d..2 24575.438476: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
101283          <idle>-0     (-----) [005] ...1 24575.438755: cpu_idle: state=4294967295 cpu_id=5
101284          <idle>-0     (-----) [005] d..1 24575.438757: cpu_idle: state=0 cpu_id=5
101285  kworker/u16:10-23868 (23868) [002] d..2 24575.438890: 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
101286          <idle>-0     (-----) [002] d..1 24575.438904: cpu_idle: state=0 cpu_id=2
101287          <idle>-0     (-----) [000] d.h3 24575.439986: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
101288          <idle>-0     (-----) [000] d.h4 24575.440002: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
101289          <idle>-0     (-----) [002] .n.1 24575.440008: cpu_idle: state=4294967295 cpu_id=2
101290          <idle>-0     (-----) [000] ...1 24575.440016: cpu_idle: state=4294967295 cpu_id=0
101291          <idle>-0     (-----) [002] d..2 24575.440017: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
101292          <idle>-0     (-----) [000] d..1 24575.440020: cpu_idle: state=0 cpu_id=0
101293 kgsl_worker_thr-246   (  246) [002] d..2 24575.440078: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
101294          <idle>-0     (-----) [002] d..1 24575.440088: cpu_idle: state=0 cpu_id=2
101295          <idle>-0     (-----) [000] d.h5 24575.440286: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
101296          <idle>-0     (-----) [000] d.h6 24575.440300: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
101297          <idle>-0     (-----) [001] .n.1 24575.440306: cpu_idle: state=4294967295 cpu_id=1
101298          <idle>-0     (-----) [000] ...1 24575.440312: cpu_idle: state=4294967295 cpu_id=0
101299          <idle>-0     (-----) [001] d..2 24575.440313: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
101300          <idle>-0     (-----) [000] d..1 24575.440315: cpu_idle: state=0 cpu_id=0
101301 crtc_commit:111-253   (  253) [001] d..2 24575.440385: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101302          <idle>-0     (-----) [001] d..1 24575.440392: cpu_idle: state=0 cpu_id=1
101303          <idle>-0     (-----) [000] d.h5 24575.440602: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
101304          <idle>-0     (-----) [000] d.h6 24575.440616: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
101305          <idle>-0     (-----) [003] .n.1 24575.440621: cpu_idle: state=4294967295 cpu_id=3
101306          <idle>-0     (-----) [003] d..2 24575.440630: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
101307          <idle>-0     (-----) [000] ...1 24575.440633: cpu_idle: state=4294967295 cpu_id=0
101308          <idle>-0     (-----) [000] d..1 24575.440637: cpu_idle: state=0 cpu_id=0
101309  crtc_event:111-254   (  254) [003] d..2 24575.440651: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101310          <idle>-0     (-----) [003] d..1 24575.440659: cpu_idle: state=0 cpu_id=3
101311          <idle>-0     (-----) [001] d.s3 24575.440912: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
101312          <idle>-0     (-----) [001] d.s4 24575.440930: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
101313          <idle>-0     (-----) [003] .n.1 24575.440935: cpu_idle: state=4294967295 cpu_id=3
101314          <idle>-0     (-----) [003] d..2 24575.440944: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
101315          <idle>-0     (-----) [001] ...1 24575.440955: cpu_idle: state=4294967295 cpu_id=1
101316          <idle>-0     (-----) [001] d..1 24575.440961: cpu_idle: state=0 cpu_id=1
101317  crtc_event:111-254   (  254) [003] d..2 24575.440972: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101318          <idle>-0     (-----) [003] d..1 24575.440979: cpu_idle: state=0 cpu_id=3
101319          <idle>-0     (-----) [003] d.h2 24575.442149: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
101320          <idle>-0     (-----) [003] dnh3 24575.442161: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
101321          <idle>-0     (-----) [003] .n.1 24575.442168: cpu_idle: state=4294967295 cpu_id=3
101322          <idle>-0     (-----) [003] d..2 24575.442176: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
101323        DispSync-23904 (23896) [003] d..1 24575.442188: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
101324        DispSync-23904 (23896) [003] d..2 24575.442208: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
101325          <idle>-0     (-----) [000] .n.1 24575.442213: cpu_idle: state=4294967295 cpu_id=0
101326          <idle>-0     (-----) [000] d..2 24575.442226: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
101327        DispSync-23904 (23896) [003] d..2 24575.442234: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101328          <idle>-0     (-----) [003] d..1 24575.442244: cpu_idle: state=0 cpu_id=3
101329  appEventThread-23905 (23896) [000] d..3 24575.442277: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
101330  appEventThread-23905 (23896) [000] d..4 24575.442307: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
101331          <idle>-0     (-----) [001] .n.1 24575.442312: cpu_idle: state=4294967295 cpu_id=1
101332          <idle>-0     (-----) [001] d..2 24575.442325: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
101333  appEventThread-23905 (23896) [000] d..2 24575.442347: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101334          <idle>-0     (-----) [000] d..1 24575.442356: cpu_idle: state=0 cpu_id=0
101335 s.nexuslauncher-24827 (24827) [001] .... 24575.442655: binder_transaction: transaction=1671263 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
101336 s.nexuslauncher-24827 (24827) [001] d..4 24575.442665: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
101337 s.nexuslauncher-24827 (24827) [001] d..5 24575.442698: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
101338          <idle>-0     (-----) [000] .n.1 24575.442703: cpu_idle: state=4294967295 cpu_id=0
101339          <idle>-0     (-----) [000] d..2 24575.442713: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
101340  Binder:23896_5-25989 (23896) [000] .... 24575.442721: binder_transaction_received: transaction=1671263
101341 s.nexuslauncher-24827 (24827) [001] d..3 24575.442735: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
101342  Binder:23896_5-25989 (23896) [000] d..1 24575.442750: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
101343 s.nexuslauncher-24827 (24827) [001] d..4 24575.442753: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
101344          <idle>-0     (-----) [002] .n.1 24575.442758: cpu_idle: state=4294967295 cpu_id=2
101345          <idle>-0     (-----) [002] d..2 24575.442770: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
101346  Binder:23896_5-25989 (23896) [000] d..2 24575.442775: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
101347          <idle>-0     (-----) [003] .n.1 24575.442780: cpu_idle: state=4294967295 cpu_id=3
101348          <idle>-0     (-----) [003] d..2 24575.442789: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
101349  Binder:23896_5-25989 (23896) [000] d..2 24575.442814: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101350    RenderThread-25194 (24827) [002] d..2 24575.442818: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
101351          <idle>-0     (-----) [000] d..1 24575.442824: cpu_idle: state=0 cpu_id=0
101352          <idle>-0     (-----) [002] d..1 24575.442829: cpu_idle: state=0 cpu_id=2
101353  appEventThread-23905 (23896) [003] d..2 24575.442829: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101354          <idle>-0     (-----) [003] d..1 24575.442838: cpu_idle: state=0 cpu_id=3
101355 s.nexuslauncher-24827 (24827) [001] d..3 24575.443280: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
101356 s.nexuslauncher-24827 (24827) [001] d..4 24575.443302: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
101357          <idle>-0     (-----) [002] .n.1 24575.443307: cpu_idle: state=4294967295 cpu_id=2
101358          <idle>-0     (-----) [002] d..2 24575.443317: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
101359 s.nexuslauncher-24827 (24827) [001] d..2 24575.443337: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101360          <idle>-0     (-----) [001] d..1 24575.443355: cpu_idle: state=0 cpu_id=1
101361    RenderThread-25194 (24827) [002] d..1 24575.443527: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
101362    RenderThread-25194 (24827) [002] d..2 24575.443558: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
101363          <idle>-0     (-----) [000] .n.1 24575.443563: cpu_idle: state=4294967295 cpu_id=0
101364          <idle>-0     (-----) [000] d..2 24575.443573: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
101365    RenderThread-25194 (24827) [002] .... 24575.443616: binder_transaction: transaction=1671264 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
101366    RenderThread-25194 (24827) [002] ...2 24575.443625: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
101367    RenderThread-25194 (24827) [002] d..4 24575.443628: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
101368    RenderThread-25194 (24827) [002] dn.5 24575.443647: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
101369    RenderThread-25194 (24827) [002] d..2 24575.443657: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
101370  Binder:23896_5-25989 (23896) [002] .... 24575.443665: binder_transaction_received: transaction=1671264
101371 s.nexuslauncher-24827 (24827) [000] d..2 24575.443706: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101372  Binder:23896_5-25989 (23896) [002] d..2 24575.443708: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
101373          <idle>-0     (-----) [000] d..1 24575.443717: cpu_idle: state=0 cpu_id=0
101374    RenderThread-25194 (24827) [002] d..2 24575.443733: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
101375          <idle>-0     (-----) [002] d..1 24575.443749: cpu_idle: state=0 cpu_id=2
101376          <idle>-0     (-----) [000] d.s2 24575.444244: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101377          <idle>-0     (-----) [000] dns3 24575.444262: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101378          <idle>-0     (-----) [000] dns3 24575.444267: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
101379          <idle>-0     (-----) [000] dns4 24575.444296: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
101380          <idle>-0     (-----) [000] .n.1 24575.444315: cpu_idle: state=4294967295 cpu_id=0
101381          <idle>-0     (-----) [000] d..2 24575.444324: 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
101382     rcu_preempt-7     (    7) [000] d..2 24575.444336: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
101383     rcu_preempt-7     (    7) [000] d..3 24575.444352: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
101384     rcu_preempt-7     (    7) [000] d..2 24575.444363: 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
101385         rcuop/0-10    (   10) [000] d..2 24575.444372: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101386         rcuop/0-10    (   10) [000] d..3 24575.444384: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101387         rcuop/0-10    (   10) [000] d..2 24575.444391: 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
101388     rcu_preempt-7     (    7) [000] d..2 24575.444404: 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
101389  kworker/u16:10-23868 (23868) [000] .... 24575.444435: clk_set_rate: l3_cluster0_vote_clk 300000000
101390  kworker/u16:10-23868 (23868) [000] .... 24575.444444: clk_set_rate: l3_clk 300000000
101391  kworker/u16:10-23868 (23868) [000] d..2 24575.444552: 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
101392          <idle>-0     (-----) [000] d..1 24575.444569: cpu_idle: state=0 cpu_id=0
101393          <idle>-0     (-----) [003] d.h2 24575.446156: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
101394          <idle>-0     (-----) [003] dnh3 24575.446169: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
101395          <idle>-0     (-----) [003] .n.1 24575.446177: cpu_idle: state=4294967295 cpu_id=3
101396          <idle>-0     (-----) [003] d..2 24575.446186: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
101397        DispSync-23904 (23896) [003] d..1 24575.446199: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
101398        DispSync-23904 (23896) [003] d..2 24575.446214: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
101399          <idle>-0     (-----) [001] .n.1 24575.446223: cpu_idle: state=4294967295 cpu_id=1
101400          <idle>-0     (-----) [001] d..2 24575.446237: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
101401        DispSync-23904 (23896) [003] d..2 24575.446242: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101402          <idle>-0     (-----) [003] d..1 24575.446254: cpu_idle: state=0 cpu_id=3
101403   sfEventThread-23906 (23896) [001] d..3 24575.446287: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
101404   sfEventThread-23906 (23896) [001] d..4 24575.446310: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
101405          <idle>-0     (-----) [000] .n.1 24575.446317: cpu_idle: state=4294967295 cpu_id=0
101406          <idle>-0     (-----) [000] d..2 24575.446328: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
101407   sfEventThread-23906 (23896) [001] d..2 24575.446346: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101408          <idle>-0     (-----) [001] d..1 24575.446362: cpu_idle: state=0 cpu_id=1
101409  surfaceflinger-23896 (23896) [000] d..1 24575.446548: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
101410  surfaceflinger-23896 (23896) [000] d..2 24575.446582: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
101411          <idle>-0     (-----) [001] .n.1 24575.446588: cpu_idle: state=4294967295 cpu_id=1
101412          <idle>-0     (-----) [001] d..2 24575.446602: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
101413  Binder:23896_5-25989 (23896) [001] d..2 24575.446633: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101414          <idle>-0     (-----) [001] d..1 24575.446643: cpu_idle: state=0 cpu_id=1
101415  surfaceflinger-23896 (23896) [000] d..1 24575.446756: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
101416  surfaceflinger-23896 (23896) [000] d..2 24575.446779: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
101417          <idle>-0     (-----) [001] .n.1 24575.446784: cpu_idle: state=4294967295 cpu_id=1
101418          <idle>-0     (-----) [001] d..2 24575.446793: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
101419   sfEventThread-23906 (23896) [001] d..2 24575.446826: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101420          <idle>-0     (-----) [001] d..1 24575.446838: cpu_idle: state=0 cpu_id=1
101421  surfaceflinger-23896 (23896) [000] ...1 24575.446982: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
101422  surfaceflinger-23896 (23896) [000] ...1 24575.446990: tracing_mark_write: E|23896
101423  surfaceflinger-23896 (23896) [000] .... 24575.447055: binder_transaction: transaction=1671265 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
101424  surfaceflinger-23896 (23896) [000] ...2 24575.447084: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
101425  surfaceflinger-23896 (23896) [000] d..4 24575.447093: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
101426  surfaceflinger-23896 (23896) [000] d..5 24575.447118: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
101427          <idle>-0     (-----) [002] .n.1 24575.447125: cpu_idle: state=4294967295 cpu_id=2
101428          <idle>-0     (-----) [002] d..2 24575.447139: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
101429  HwBinder:598_3-633   (  598) [002] .... 24575.447152: binder_transaction_received: transaction=1671265
101430  surfaceflinger-23896 (23896) [000] d..2 24575.447152: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101431          <idle>-0     (-----) [000] d..1 24575.447171: cpu_idle: state=0 cpu_id=0
101432  HwBinder:598_3-633   (  598) [002] ...1 24575.447211: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
101433  HwBinder:598_3-633   (  598) [002] ...1 24575.447335: tracing_mark_write: B|598|HWCSession::PresentDisplay::
101434  HwBinder:598_3-633   (  598) [002] d.s2 24575.447590: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
101435  HwBinder:598_3-633   (  598) [002] d.s3 24575.447635: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
101436  HwBinder:598_3-633   (  598) [002] ...1 24575.447721: tracing_mark_write: B|598|HWDeviceDRM::Commit::
101437  HwBinder:598_3-633   (  598) [002] ...1 24575.447736: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
101438  HwBinder:598_3-633   (  598) [002] d..2 24575.448389: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
101439          <idle>-0     (-----) [001] ...1 24575.448402: cpu_idle: state=4294967295 cpu_id=1
101440          <idle>-0     (-----) [001] d..1 24575.448406: cpu_idle: state=0 cpu_id=1
101441  HwBinder:598_3-633   (  598) [002] d..3 24575.448415: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
101442          <idle>-0     (-----) [001] .n.1 24575.448418: cpu_idle: state=4294967295 cpu_id=1
101443          <idle>-0     (-----) [001] d..2 24575.448430: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
101444  HwBinder:598_3-633   (  598) [002] ...1 24575.448525: tracing_mark_write: E|598
101445  HwBinder:598_3-633   (  598) [002] ...1 24575.448531: tracing_mark_write: E|598
101446  HwBinder:598_3-633   (  598) [002] ...1 24575.448601: tracing_mark_write: E|598
101447  HwBinder:598_3-633   (  598) [002] ...1 24575.448660: tracing_mark_write: E|598
101448  HwBinder:598_3-633   (  598) [002] .... 24575.448678: binder_transaction: transaction=1671266 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
101449  HwBinder:598_3-633   (  598) [002] d..2 24575.448703: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
101450  HwBinder:598_3-633   (  598) [002] d..3 24575.448724: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
101451  HwBinder:598_3-633   (  598) [002] .... 24575.448729: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
101452          <idle>-0     (-----) [000] .n.1 24575.448731: cpu_idle: state=4294967295 cpu_id=0
101453          <idle>-0     (-----) [000] d..2 24575.448743: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
101454  surfaceflinger-23896 (23896) [000] .... 24575.448754: binder_transaction_received: transaction=1671266
101455  HwBinder:598_3-633   (  598) [002] d..2 24575.448812: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
101456  kworker/u16:10-23868 (23868) [002] d..2 24575.448907: 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
101457          <idle>-0     (-----) [002] d..1 24575.448925: cpu_idle: state=0 cpu_id=2
101458  surfaceflinger-23896 (23896) [000] d..1 24575.449019: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
101459  surfaceflinger-23896 (23896) [000] d..2 24575.449054: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
101460          <idle>-0     (-----) [002] .n.1 24575.449060: cpu_idle: state=4294967295 cpu_id=2
101461          <idle>-0     (-----) [002] d..2 24575.449074: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
101462  Binder:23896_5-25989 (23896) [002] .... 24575.449139: binder_transaction: transaction=1671267 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
101463  Binder:23896_5-25989 (23896) [002] d..2 24575.449153: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
101464  Binder:23896_5-25989 (23896) [002] d..3 24575.449169: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
101465  Binder:23896_5-25989 (23896) [002] .... 24575.449174: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
101466  Binder:23896_5-25989 (23896) [002] d..2 24575.449230: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
101467    RenderThread-25194 (24827) [002] .... 24575.449239: binder_transaction_received: transaction=1671267
101468  surfaceflinger-23896 (23896) [000] d..2 24575.449250: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101469          <idle>-0     (-----) [000] d..1 24575.449266: cpu_idle: state=0 cpu_id=0
101470 crtc_commit:111-253   (  253) [001] d..2 24575.449281: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
101471          <idle>-0     (-----) [001] d..1 24575.449297: cpu_idle: state=0 cpu_id=1
101472          <idle>-0     (-----) [000] d.s2 24575.450915: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101473          <idle>-0     (-----) [000] dns3 24575.450936: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101474          <idle>-0     (-----) [000] .n.1 24575.450955: cpu_idle: state=4294967295 cpu_id=0
101475          <idle>-0     (-----) [000] d..2 24575.450965: 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
101476     rcu_preempt-7     (    7) [000] d..2 24575.450979: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
101477     rcu_preempt-7     (    7) [000] d..3 24575.450993: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
101478     rcu_preempt-7     (    7) [000] d..2 24575.451004: 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
101479         rcuop/0-10    (   10) [000] d..2 24575.451014: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101480         rcuop/0-10    (   10) [000] d..3 24575.451025: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101481         rcuop/0-10    (   10) [000] d..2 24575.451033: 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
101482     rcu_preempt-7     (    7) [000] d..2 24575.451059: 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
101483          <idle>-0     (-----) [000] d..1 24575.451073: cpu_idle: state=0 cpu_id=0
101484    RenderThread-25194 (24827) [002] .... 24575.451812: binder_transaction: transaction=1671268 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
101485    RenderThread-25194 (24827) [002] ...2 24575.451828: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
101486    RenderThread-25194 (24827) [002] d..4 24575.451833: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
101487    RenderThread-25194 (24827) [002] dn.5 24575.451854: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
101488    RenderThread-25194 (24827) [002] d..2 24575.451865: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
101489  Binder:23896_5-25989 (23896) [002] .... 24575.451875: binder_transaction_received: transaction=1671268
101490  Binder:23896_5-25989 (23896) [002] .... 24575.452047: binder_transaction: transaction=1671269 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
101491  Binder:23896_5-25989 (23896) [002] .... 24575.452056: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
101492  Binder:23896_5-25989 (23896) [002] d..2 24575.452115: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
101493    RenderThread-25194 (24827) [002] .... 24575.452129: binder_transaction_received: transaction=1671269
101494    RenderThread-25194 (24827) [002] d..2 24575.452246: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
101495          <idle>-0     (-----) [002] d..1 24575.452266: cpu_idle: state=0 cpu_id=2
101496          <idle>-0     (-----) [000] d.h5 24575.454449: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
101497          <idle>-0     (-----) [000] d.h6 24575.454469: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
101498          <idle>-0     (-----) [000] d.h5 24575.454474: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
101499          <idle>-0     (-----) [003] .n.1 24575.454475: cpu_idle: state=4294967295 cpu_id=3
101500          <idle>-0     (-----) [000] d.h6 24575.454486: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
101501          <idle>-0     (-----) [003] d..2 24575.454487: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
101502          <idle>-0     (-----) [001] .n.1 24575.454493: cpu_idle: state=4294967295 cpu_id=1
101503          <idle>-0     (-----) [000] d..2 24575.454501: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
101504          <idle>-0     (-----) [001] d..2 24575.454505: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
101505  crtc_event:111-254   (  254) [003] d..3 24575.454506: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
101506          <idle>-0     (-----) [000] dn.3 24575.454516: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
101507          <idle>-0     (-----) [000] .n.1 24575.454520: cpu_idle: state=4294967295 cpu_id=0
101508  crtc_event:111-254   (  254) [003] d..4 24575.454523: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
101509          <idle>-0     (-----) [002] .n.1 24575.454530: cpu_idle: state=4294967295 cpu_id=2
101510          <idle>-0     (-----) [000] d..2 24575.454535: 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
101511          <idle>-0     (-----) [002] d..2 24575.454544: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
101512     ksoftirqd/0-3     (    3) [000] d.s2 24575.454548: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
101513  crtc_event:111-254   (  254) [003] d..2 24575.454550: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101514          <idle>-0     (-----) [003] d..1 24575.454561: cpu_idle: state=0 cpu_id=3
101515     ksoftirqd/0-3     (    3) [000] d.s3 24575.454587: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
101516          <idle>-0     (-----) [003] .n.1 24575.454593: cpu_idle: state=4294967295 cpu_id=3
101517          <idle>-0     (-----) [003] d..2 24575.454604: 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
101518     ksoftirqd/0-3     (    3) [000] d..2 24575.454612: 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
101519          <idle>-0     (-----) [000] d..1 24575.454639: cpu_idle: state=0 cpu_id=0
101520          <idle>-0     (-----) [000] ...1 24575.454653: cpu_idle: state=4294967295 cpu_id=0
101521          <idle>-0     (-----) [000] d..1 24575.454656: cpu_idle: state=0 cpu_id=0
101522 crtc_commit:111-253   (  253) [001] d..2 24575.454672: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
101523          <idle>-0     (-----) [001] d..1 24575.454710: cpu_idle: state=0 cpu_id=1
101524 kgsl_worker_thr-246   (  246) [002] d..2 24575.454779: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
101525          <idle>-0     (-----) [002] d..1 24575.454790: cpu_idle: state=0 cpu_id=2
101526  kworker/u16:10-23868 (23868) [003] .... 24575.454808: clk_set_rate: l3_cluster0_vote_clk 480000000
101527  kworker/u16:10-23868 (23868) [003] .... 24575.454819: clk_set_rate: l3_clk 480000000
101528          <idle>-0     (-----) [002] d.h2 24575.454866: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
101529  kworker/u16:10-23868 (23868) [003] d..2 24575.454880: 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
101530          <idle>-0     (-----) [002] dnh3 24575.454880: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
101531          <idle>-0     (-----) [002] .n.1 24575.454889: cpu_idle: state=4294967295 cpu_id=2
101532          <idle>-0     (-----) [003] d..1 24575.454893: cpu_idle: state=0 cpu_id=3
101533          <idle>-0     (-----) [002] d..2 24575.454898: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
101534 kgsl_worker_thr-246   (  246) [002] d..2 24575.454920: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
101535 kgsl_worker_thr-246   (  246) [002] d..3 24575.454960: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
101536 kgsl_worker_thr-246   (  246) [002] d..2 24575.454973: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
101537  kworker/u16:10-23868 (23868) [002] d..2 24575.455393: 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
101538          <idle>-0     (-----) [002] d..1 24575.455407: cpu_idle: state=0 cpu_id=2
101539          <idle>-0     (-----) [000] d.h3 24575.456469: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
101540          <idle>-0     (-----) [000] d.h4 24575.456484: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
101541          <idle>-0     (-----) [002] .n.1 24575.456491: cpu_idle: state=4294967295 cpu_id=2
101542          <idle>-0     (-----) [000] ...1 24575.456497: cpu_idle: state=4294967295 cpu_id=0
101543          <idle>-0     (-----) [002] d..2 24575.456499: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
101544          <idle>-0     (-----) [000] d..1 24575.456501: cpu_idle: state=0 cpu_id=0
101545 kgsl_worker_thr-246   (  246) [002] d..2 24575.456562: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
101546          <idle>-0     (-----) [002] d..1 24575.456572: cpu_idle: state=0 cpu_id=2
101547          <idle>-0     (-----) [000] d.h5 24575.456769: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
101548          <idle>-0     (-----) [000] d.h6 24575.456782: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
101549          <idle>-0     (-----) [001] .n.1 24575.456787: cpu_idle: state=4294967295 cpu_id=1
101550          <idle>-0     (-----) [000] ...1 24575.456794: cpu_idle: state=4294967295 cpu_id=0
101551          <idle>-0     (-----) [001] d..2 24575.456794: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
101552          <idle>-0     (-----) [000] d..1 24575.456797: cpu_idle: state=0 cpu_id=0
101553 crtc_commit:111-253   (  253) [001] d..2 24575.456863: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101554          <idle>-0     (-----) [001] d..1 24575.456871: cpu_idle: state=0 cpu_id=1
101555          <idle>-0     (-----) [000] d.h5 24575.457085: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
101556          <idle>-0     (-----) [000] d.h6 24575.457098: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
101557          <idle>-0     (-----) [003] .n.1 24575.457103: cpu_idle: state=4294967295 cpu_id=3
101558          <idle>-0     (-----) [003] d..2 24575.457112: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
101559          <idle>-0     (-----) [000] ...1 24575.457115: cpu_idle: state=4294967295 cpu_id=0
101560          <idle>-0     (-----) [000] d..1 24575.457118: cpu_idle: state=0 cpu_id=0
101561  crtc_event:111-254   (  254) [003] d..2 24575.457137: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101562          <idle>-0     (-----) [003] d..1 24575.457144: cpu_idle: state=0 cpu_id=3
101563          <idle>-0     (-----) [001] d.s3 24575.457577: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
101564          <idle>-0     (-----) [001] d.s4 24575.457645: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
101565          <idle>-0     (-----) [003] .n.1 24575.457650: cpu_idle: state=4294967295 cpu_id=3
101566          <idle>-0     (-----) [003] d..2 24575.457659: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
101567          <idle>-0     (-----) [001] ...1 24575.457668: cpu_idle: state=4294967295 cpu_id=1
101568          <idle>-0     (-----) [000] d.H3 24575.457671: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
101569          <idle>-0     (-----) [001] d..1 24575.457674: cpu_idle: state=0 cpu_id=1
101570  crtc_event:111-254   (  254) [003] d..2 24575.457685: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101571          <idle>-0     (-----) [000] d.H3 24575.457685: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
101572          <idle>-0     (-----) [005] dnh2 24575.457691: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
101573          <idle>-0     (-----) [003] d..1 24575.457692: cpu_idle: state=0 cpu_id=3
101574          <idle>-0     (-----) [005] .n.1 24575.457695: cpu_idle: state=4294967295 cpu_id=5
101575          <idle>-0     (-----) [000] dnH4 24575.457698: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
101576          <idle>-0     (-----) [005] d..2 24575.457700: 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
101577          <idle>-0     (-----) [000] dns2 24575.457704: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101578         sugov:4-560   (  560) [005] d..2 24575.457710: 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
101579          <idle>-0     (-----) [005] d..1 24575.457716: cpu_idle: state=0 cpu_id=5
101580          <idle>-0     (-----) [000] dns3 24575.457719: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101581          <idle>-0     (-----) [000] .n.1 24575.457729: cpu_idle: state=4294967295 cpu_id=0
101582          <idle>-0     (-----) [000] d..2 24575.457737: 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
101583         sugov:0-559   (  559) [000] .... 24575.457770: clk_set_rate: pwrcl_clk 825600000
101584         sugov:0-559   (  559) [000] .... 24575.457781: clk_set_rate: cpu3_pwrcl_clk 1132800000
101585         sugov:0-559   (  559) [000] .... 24575.457793: clk_set_rate: cpu2_pwrcl_clk 1132800000
101586         sugov:0-559   (  559) [000] .... 24575.457802: clk_set_rate: cpu1_pwrcl_clk 1132800000
101587         sugov:0-559   (  559) [000] .... 24575.457811: clk_set_rate: cpu0_pwrcl_clk 825600000
101588         sugov:0-559   (  559) [000] .... 24575.457933: cpu_frequency: state=825600 cpu_id=0
101589         sugov:0-559   (  559) [000] .... 24575.457959: cpu_frequency: state=825600 cpu_id=1
101590         sugov:0-559   (  559) [000] .... 24575.457964: cpu_frequency: state=825600 cpu_id=2
101591         sugov:0-559   (  559) [000] .... 24575.457969: cpu_frequency: state=825600 cpu_id=3
101592         sugov:0-559   (  559) [000] d..2 24575.457991: 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
101593     rcu_preempt-7     (    7) [000] d..2 24575.458003: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
101594     rcu_preempt-7     (    7) [000] d..3 24575.458023: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
101595     rcu_preempt-7     (    7) [000] d..2 24575.458036: 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
101596         rcuop/0-10    (   10) [000] d..2 24575.458067: 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
101597          <idle>-0     (-----) [000] d..1 24575.458085: cpu_idle: state=0 cpu_id=0
101598          <idle>-0     (-----) [003] d.h2 24575.458625: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
101599          <idle>-0     (-----) [003] dnh3 24575.458641: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
101600          <idle>-0     (-----) [003] .n.1 24575.458651: cpu_idle: state=4294967295 cpu_id=3
101601          <idle>-0     (-----) [003] d..2 24575.458660: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
101602        DispSync-23904 (23896) [003] d..1 24575.458674: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
101603        DispSync-23904 (23896) [003] d..2 24575.458697: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
101604          <idle>-0     (-----) [002] .n.1 24575.458703: cpu_idle: state=4294967295 cpu_id=2
101605          <idle>-0     (-----) [002] d..2 24575.458715: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
101606          <idle>-0     (-----) [005] ...1 24575.458727: cpu_idle: state=4294967295 cpu_id=5
101607        DispSync-23904 (23896) [003] d..2 24575.458728: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101608          <idle>-0     (-----) [005] d..1 24575.458729: cpu_idle: state=0 cpu_id=5
101609          <idle>-0     (-----) [003] d..1 24575.458740: cpu_idle: state=0 cpu_id=3
101610  appEventThread-23905 (23896) [002] d..3 24575.458770: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
101611  appEventThread-23905 (23896) [002] d..4 24575.458798: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
101612          <idle>-0     (-----) [000] .n.1 24575.458804: cpu_idle: state=4294967295 cpu_id=0
101613          <idle>-0     (-----) [000] d..2 24575.458818: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
101614  appEventThread-23905 (23896) [002] d..2 24575.458841: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
101615          <idle>-0     (-----) [002] d..1 24575.458857: cpu_idle: state=0 cpu_id=2
101616 s.nexuslauncher-24827 (24827) [000] .... 24575.459194: binder_transaction: transaction=1671270 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
101617 s.nexuslauncher-24827 (24827) [000] d..4 24575.459206: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
101618 s.nexuslauncher-24827 (24827) [000] d..5 24575.459244: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
101619          <idle>-0     (-----) [001] .n.1 24575.459249: cpu_idle: state=4294967295 cpu_id=1
101620          <idle>-0     (-----) [001] d..2 24575.459263: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
101621  Binder:23896_5-25989 (23896) [001] .... 24575.459272: binder_transaction_received: transaction=1671270
101622 s.nexuslauncher-24827 (24827) [000] d..3 24575.459284: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
101623 s.nexuslauncher-24827 (24827) [000] d..4 24575.459305: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
101624  Binder:23896_5-25989 (23896) [001] d..1 24575.459309: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
101625          <idle>-0     (-----) [002] .n.1 24575.459311: cpu_idle: state=4294967295 cpu_id=2
101626          <idle>-0     (-----) [002] d..2 24575.459324: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
101627  Binder:23896_5-25989 (23896) [001] d..2 24575.459345: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
101628          <idle>-0     (-----) [003] .n.1 24575.459351: cpu_idle: state=4294967295 cpu_id=3
101629          <idle>-0     (-----) [003] d..2 24575.459363: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
101630    RenderThread-25194 (24827) [002] d..2 24575.459382: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
101631  Binder:23896_5-25989 (23896) [001] d..2 24575.459393: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101632          <idle>-0     (-----) [002] d..1 24575.459395: cpu_idle: state=0 cpu_id=2
101633          <idle>-0     (-----) [001] d..1 24575.459408: cpu_idle: state=0 cpu_id=1
101634  appEventThread-23905 (23896) [003] d..2 24575.459412: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101635          <idle>-0     (-----) [003] d..1 24575.459423: cpu_idle: state=0 cpu_id=3
101636 s.nexuslauncher-24827 (24827) [000] d..3 24575.459904: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
101637 s.nexuslauncher-24827 (24827) [000] d..4 24575.459927: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
101638          <idle>-0     (-----) [002] .n.1 24575.459932: cpu_idle: state=4294967295 cpu_id=2
101639          <idle>-0     (-----) [002] d..2 24575.459945: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
101640 s.nexuslauncher-24827 (24827) [000] d..2 24575.459967: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101641          <idle>-0     (-----) [000] d..1 24575.459989: cpu_idle: state=0 cpu_id=0
101642    RenderThread-25194 (24827) [002] d..1 24575.460186: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
101643    RenderThread-25194 (24827) [002] d..2 24575.460209: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
101644          <idle>-0     (-----) [000] .n.1 24575.460217: cpu_idle: state=4294967295 cpu_id=0
101645          <idle>-0     (-----) [000] d..2 24575.460231: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
101646    RenderThread-25194 (24827) [002] .... 24575.460277: binder_transaction: transaction=1671271 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
101647    RenderThread-25194 (24827) [002] ...2 24575.460287: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
101648    RenderThread-25194 (24827) [002] d..4 24575.460291: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
101649    RenderThread-25194 (24827) [002] dn.5 24575.460316: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
101650    RenderThread-25194 (24827) [002] d..2 24575.460328: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
101651  Binder:23896_5-25989 (23896) [002] .... 24575.460337: binder_transaction_received: transaction=1671271
101652 s.nexuslauncher-24827 (24827) [000] d..2 24575.460360: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101653          <idle>-0     (-----) [000] d..1 24575.460376: cpu_idle: state=0 cpu_id=0
101654  Binder:23896_5-25989 (23896) [002] d..2 24575.460390: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
101655    RenderThread-25194 (24827) [002] d..2 24575.460419: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
101656          <idle>-0     (-----) [002] d..1 24575.460438: cpu_idle: state=0 cpu_id=2
101657          <idle>-0     (-----) [000] d..2 24575.461747: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
101658          <idle>-0     (-----) [000] dn.3 24575.461761: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
101659          <idle>-0     (-----) [000] .n.1 24575.461766: cpu_idle: state=4294967295 cpu_id=0
101660          <idle>-0     (-----) [000] d..2 24575.461781: 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
101661     ksoftirqd/0-3     (    3) [000] d..2 24575.461815: 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
101662          <idle>-0     (-----) [000] d..1 24575.461827: cpu_idle: state=0 cpu_id=0
101663          <idle>-0     (-----) [002] ...1 24575.461988: cpu_idle: state=4294967295 cpu_id=2
101664          <idle>-0     (-----) [002] d..1 24575.461993: cpu_idle: state=0 cpu_id=2
101665          <idle>-0     (-----) [003] d.h2 24575.462639: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
101666          <idle>-0     (-----) [003] dnh3 24575.462653: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
101667          <idle>-0     (-----) [003] .n.1 24575.462662: cpu_idle: state=4294967295 cpu_id=3
101668          <idle>-0     (-----) [003] d..2 24575.462672: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
101669        DispSync-23904 (23896) [003] d..1 24575.462686: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
101670        DispSync-23904 (23896) [003] d..2 24575.462703: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
101671          <idle>-0     (-----) [001] .n.1 24575.462709: cpu_idle: state=4294967295 cpu_id=1
101672          <idle>-0     (-----) [001] d..2 24575.462723: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
101673        DispSync-23904 (23896) [003] d..2 24575.462732: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101674          <idle>-0     (-----) [003] d..1 24575.462745: cpu_idle: state=0 cpu_id=3
101675   sfEventThread-23906 (23896) [001] d..3 24575.462760: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
101676   sfEventThread-23906 (23896) [001] d..4 24575.462782: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
101677          <idle>-0     (-----) [000] .n.1 24575.462787: cpu_idle: state=4294967295 cpu_id=0
101678          <idle>-0     (-----) [000] d..2 24575.462799: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
101679   sfEventThread-23906 (23896) [001] d..2 24575.462816: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101680          <idle>-0     (-----) [001] d..1 24575.462830: cpu_idle: state=0 cpu_id=1
101681  surfaceflinger-23896 (23896) [000] d..1 24575.463023: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
101682  surfaceflinger-23896 (23896) [000] d..2 24575.463059: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
101683          <idle>-0     (-----) [001] .n.1 24575.463064: cpu_idle: state=4294967295 cpu_id=1
101684          <idle>-0     (-----) [001] d..2 24575.463077: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
101685  Binder:23896_5-25989 (23896) [001] d..2 24575.463116: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101686          <idle>-0     (-----) [001] d..1 24575.463128: cpu_idle: state=0 cpu_id=1
101687  surfaceflinger-23896 (23896) [000] d..2 24575.463224: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
101688  surfaceflinger-23896 (23896) [000] d..3 24575.463251: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
101689  surfaceflinger-23896 (23896) [000] d..1 24575.463284: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
101690  surfaceflinger-23896 (23896) [000] d..2 24575.463305: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
101691          <idle>-0     (-----) [001] .n.1 24575.463311: cpu_idle: state=4294967295 cpu_id=1
101692          <idle>-0     (-----) [001] d..2 24575.463321: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
101693   sfEventThread-23906 (23896) [001] d..2 24575.463358: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101694          <idle>-0     (-----) [001] d..1 24575.463370: cpu_idle: state=0 cpu_id=1
101695  surfaceflinger-23896 (23896) [000] ...1 24575.463537: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
101696  surfaceflinger-23896 (23896) [000] ...1 24575.463550: tracing_mark_write: E|23896
101697  surfaceflinger-23896 (23896) [000] .... 24575.463616: binder_transaction: transaction=1671272 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
101698  surfaceflinger-23896 (23896) [000] ...2 24575.463649: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
101699  surfaceflinger-23896 (23896) [000] d..4 24575.463656: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
101700  surfaceflinger-23896 (23896) [000] d..5 24575.463679: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
101701          <idle>-0     (-----) [002] .n.1 24575.463683: cpu_idle: state=4294967295 cpu_id=2
101702          <idle>-0     (-----) [002] d..2 24575.463695: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
101703  surfaceflinger-23896 (23896) [000] d..2 24575.463702: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
101704  HwBinder:598_3-633   (  598) [002] .... 24575.463707: binder_transaction_received: transaction=1671272
101705         rcuop/0-10    (   10) [000] d..2 24575.463709: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101706         rcuop/0-10    (   10) [000] d..3 24575.463728: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101707         rcuop/0-10    (   10) [000] d..2 24575.463740: 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
101708  HwBinder:598_3-633   (  598) [002] ...1 24575.463762: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
101709     rcu_preempt-7     (    7) [000] d..2 24575.463767: 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
101710          <idle>-0     (-----) [000] d..1 24575.463784: cpu_idle: state=0 cpu_id=0
101711  HwBinder:598_3-633   (  598) [002] ...1 24575.463921: tracing_mark_write: B|598|HWCSession::PresentDisplay::
101712  HwBinder:598_3-633   (  598) [002] ...1 24575.464130: tracing_mark_write: B|598|HWDeviceDRM::Commit::
101713  HwBinder:598_3-633   (  598) [002] ...1 24575.464145: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
101714  HwBinder:598_3-633   (  598) [002] d.s2 24575.464254: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
101715  HwBinder:598_3-633   (  598) [002] d.s3 24575.464284: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
101716  HwBinder:598_3-633   (  598) [002] d..2 24575.464962: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
101717  HwBinder:598_3-633   (  598) [002] d..3 24575.464990: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
101718          <idle>-0     (-----) [001] .n.1 24575.464996: cpu_idle: state=4294967295 cpu_id=1
101719          <idle>-0     (-----) [001] d..2 24575.465009: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
101720  HwBinder:598_3-633   (  598) [002] ...1 24575.465103: tracing_mark_write: E|598
101721  HwBinder:598_3-633   (  598) [002] ...1 24575.465111: tracing_mark_write: E|598
101722  HwBinder:598_3-633   (  598) [002] ...1 24575.465186: tracing_mark_write: E|598
101723  HwBinder:598_3-633   (  598) [002] ...1 24575.465246: tracing_mark_write: E|598
101724  HwBinder:598_3-633   (  598) [002] .... 24575.465265: binder_transaction: transaction=1671273 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
101725  HwBinder:598_3-633   (  598) [002] d..2 24575.465292: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
101726  HwBinder:598_3-633   (  598) [002] d..3 24575.465311: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
101727  HwBinder:598_3-633   (  598) [002] .... 24575.465317: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
101728          <idle>-0     (-----) [000] .n.1 24575.465318: cpu_idle: state=4294967295 cpu_id=0
101729          <idle>-0     (-----) [000] d..2 24575.465332: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
101730  surfaceflinger-23896 (23896) [000] .... 24575.465341: binder_transaction_received: transaction=1671273
101731  HwBinder:598_3-633   (  598) [002] d..2 24575.465398: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
101732  kworker/u16:10-23868 (23868) [002] .... 24575.465484: clk_set_rate: l3_cluster0_vote_clk 300000000
101733  kworker/u16:10-23868 (23868) [002] .... 24575.465491: clk_set_rate: l3_clk 300000000
101734  surfaceflinger-23896 (23896) [000] d..1 24575.465676: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
101735  surfaceflinger-23896 (23896) [000] d..2 24575.465715: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=003
101736          <idle>-0     (-----) [003] .n.1 24575.465721: cpu_idle: state=4294967295 cpu_id=3
101737          <idle>-0     (-----) [003] d..2 24575.465737: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
101738  Binder:23896_5-25989 (23896) [003] .... 24575.465808: binder_transaction: transaction=1671274 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
101739  Binder:23896_5-25989 (23896) [003] d..2 24575.465826: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
101740  Binder:23896_5-25989 (23896) [003] d..3 24575.465853: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=003
101741  Binder:23896_5-25989 (23896) [003] .... 24575.465859: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
101742 crtc_commit:111-253   (  253) [001] d..2 24575.465911: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
101743          <idle>-0     (-----) [001] d..1 24575.465930: cpu_idle: state=0 cpu_id=1
101744  Binder:23896_5-25989 (23896) [003] d..2 24575.465930: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
101745  surfaceflinger-23896 (23896) [000] d..2 24575.465934: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101746  kworker/u16:10-23868 (23868) [002] d..2 24575.465945: 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
101747          <idle>-0     (-----) [000] d..1 24575.465952: cpu_idle: state=0 cpu_id=0
101748          <idle>-0     (-----) [002] d..1 24575.465968: cpu_idle: state=0 cpu_id=2
101749    RenderThread-25194 (24827) [003] d.s4 24575.466007: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
101750    RenderThread-25194 (24827) [003] d.s5 24575.466064: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
101751    RenderThread-25194 (24827) [003] d.s5 24575.466078: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
101752          <idle>-0     (-----) [000] .n.1 24575.466085: cpu_idle: state=4294967295 cpu_id=0
101753    RenderThread-25194 (24827) [003] .... 24575.466093: binder_transaction_received: transaction=1671274
101754          <idle>-0     (-----) [000] d..2 24575.466100: 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
101755  kworker/u16:10-23868 (23868) [000] d..2 24575.466154: 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
101756          <idle>-0     (-----) [000] d..1 24575.466163: cpu_idle: state=0 cpu_id=0
101757          <idle>-0     (-----) [000] d.s2 24575.467586: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101758          <idle>-0     (-----) [000] dns3 24575.467609: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101759          <idle>-0     (-----) [000] .n.1 24575.467634: cpu_idle: state=4294967295 cpu_id=0
101760          <idle>-0     (-----) [000] d..2 24575.467645: 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
101761     rcu_preempt-7     (    7) [000] d..2 24575.467684: 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
101762          <idle>-0     (-----) [000] d..1 24575.467700: cpu_idle: state=0 cpu_id=0
101763    RenderThread-25194 (24827) [003] .... 24575.469107: binder_transaction: transaction=1671275 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
101764    RenderThread-25194 (24827) [003] ...2 24575.469125: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
101765    RenderThread-25194 (24827) [003] d..4 24575.469133: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=003
101766    RenderThread-25194 (24827) [003] dn.5 24575.469160: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=003
101767    RenderThread-25194 (24827) [003] d..2 24575.469173: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
101768  Binder:23896_5-25989 (23896) [003] .... 24575.469184: binder_transaction_received: transaction=1671275
101769  Binder:23896_5-25989 (23896) [003] .... 24575.469390: binder_transaction: transaction=1671276 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
101770  Binder:23896_5-25989 (23896) [003] .... 24575.469401: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
101771  Binder:23896_5-25989 (23896) [003] d..2 24575.469472: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
101772    RenderThread-25194 (24827) [003] .... 24575.469485: binder_transaction_received: transaction=1671276
101773    RenderThread-25194 (24827) [003] d..2 24575.469627: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101774          <idle>-0     (-----) [003] d..1 24575.469651: cpu_idle: state=0 cpu_id=3
101775          <idle>-0     (-----) [000] d.h5 24575.470931: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
101776          <idle>-0     (-----) [000] d.h6 24575.470954: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
101777          <idle>-0     (-----) [000] d.h5 24575.470962: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
101778          <idle>-0     (-----) [003] .n.1 24575.470963: cpu_idle: state=4294967295 cpu_id=3
101779          <idle>-0     (-----) [000] d.h6 24575.470980: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
101780          <idle>-0     (-----) [003] d..2 24575.470983: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
101781          <idle>-0     (-----) [001] .n.1 24575.470984: cpu_idle: state=4294967295 cpu_id=1
101782          <idle>-0     (-----) [000] d..2 24575.470996: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
101783          <idle>-0     (-----) [001] d..2 24575.470999: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
101784          <idle>-0     (-----) [000] dn.3 24575.471007: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
101785  crtc_event:111-254   (  254) [003] d..3 24575.471008: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
101786          <idle>-0     (-----) [000] .n.1 24575.471012: cpu_idle: state=4294967295 cpu_id=0
101787          <idle>-0     (-----) [000] d..2 24575.471028: 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
101788  crtc_event:111-254   (  254) [003] d..4 24575.471033: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
101789     ksoftirqd/0-3     (    3) [000] d.s2 24575.471038: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
101790          <idle>-0     (-----) [002] .n.1 24575.471041: cpu_idle: state=4294967295 cpu_id=2
101791          <idle>-0     (-----) [002] d..2 24575.471057: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
101792  crtc_event:111-254   (  254) [003] d..2 24575.471070: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101793          <idle>-0     (-----) [003] d..1 24575.471085: cpu_idle: state=0 cpu_id=3
101794          <idle>-0     (-----) [003] .n.1 24575.471090: cpu_idle: state=4294967295 cpu_id=3
101795     ksoftirqd/0-3     (    3) [000] d.s3 24575.471090: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
101796          <idle>-0     (-----) [003] d..2 24575.471108: 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
101797     ksoftirqd/0-3     (    3) [000] d..2 24575.471118: 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
101798          <idle>-0     (-----) [000] d..1 24575.471130: cpu_idle: state=0 cpu_id=0
101799 crtc_commit:111-253   (  253) [001] d..2 24575.471181: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
101800          <idle>-0     (-----) [001] d..1 24575.471191: cpu_idle: state=0 cpu_id=1
101801  kworker/u16:10-23868 (23868) [003] d..2 24575.471209: 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
101802          <idle>-0     (-----) [003] d..1 24575.471220: cpu_idle: state=0 cpu_id=3
101803 kgsl_worker_thr-246   (  246) [002] d..2 24575.471294: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
101804          <idle>-0     (-----) [002] d..1 24575.471307: cpu_idle: state=0 cpu_id=2
101805          <idle>-0     (-----) [002] d.h2 24575.471380: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
101806          <idle>-0     (-----) [002] dnh3 24575.471397: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
101807          <idle>-0     (-----) [002] .n.1 24575.471407: cpu_idle: state=4294967295 cpu_id=2
101808          <idle>-0     (-----) [002] d..2 24575.471419: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
101809 kgsl_worker_thr-246   (  246) [002] d..2 24575.471444: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
101810 kgsl_worker_thr-246   (  246) [002] d..3 24575.471495: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
101811 kgsl_worker_thr-246   (  246) [002] d..2 24575.471513: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
101812  kworker/u16:10-23868 (23868) [002] d..2 24575.471983: 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
101813          <idle>-0     (-----) [002] d..1 24575.472001: cpu_idle: state=0 cpu_id=2
101814          <idle>-0     (-----) [000] d.h3 24575.473034: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
101815          <idle>-0     (-----) [000] d.h4 24575.473055: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
101816          <idle>-0     (-----) [002] .n.1 24575.473062: cpu_idle: state=4294967295 cpu_id=2
101817          <idle>-0     (-----) [000] ...1 24575.473071: cpu_idle: state=4294967295 cpu_id=0
101818          <idle>-0     (-----) [002] d..2 24575.473075: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
101819          <idle>-0     (-----) [000] d..1 24575.473078: cpu_idle: state=0 cpu_id=0
101820 kgsl_worker_thr-246   (  246) [002] d..2 24575.473158: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
101821          <idle>-0     (-----) [002] d..1 24575.473172: cpu_idle: state=0 cpu_id=2
101822          <idle>-0     (-----) [000] d.h5 24575.473254: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
101823          <idle>-0     (-----) [000] d.h6 24575.473271: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
101824          <idle>-0     (-----) [001] .n.1 24575.473278: cpu_idle: state=4294967295 cpu_id=1
101825          <idle>-0     (-----) [000] ...1 24575.473286: cpu_idle: state=4294967295 cpu_id=0
101826          <idle>-0     (-----) [001] d..2 24575.473288: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
101827          <idle>-0     (-----) [000] d..1 24575.473291: cpu_idle: state=0 cpu_id=0
101828 crtc_commit:111-253   (  253) [001] d..2 24575.473378: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101829          <idle>-0     (-----) [001] d..1 24575.473388: cpu_idle: state=0 cpu_id=1
101830          <idle>-0     (-----) [000] d.h5 24575.473565: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
101831          <idle>-0     (-----) [000] d.h6 24575.473583: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
101832          <idle>-0     (-----) [003] .n.1 24575.473589: cpu_idle: state=4294967295 cpu_id=3
101833          <idle>-0     (-----) [003] d..2 24575.473601: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
101834          <idle>-0     (-----) [000] ...1 24575.473601: cpu_idle: state=4294967295 cpu_id=0
101835          <idle>-0     (-----) [000] d..1 24575.473606: cpu_idle: state=0 cpu_id=0
101836  crtc_event:111-254   (  254) [003] d..2 24575.473631: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101837          <idle>-0     (-----) [003] d..1 24575.473641: cpu_idle: state=0 cpu_id=3
101838          <idle>-0     (-----) [000] d.s2 24575.474248: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101839          <idle>-0     (-----) [001] d.s3 24575.474256: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
101840          <idle>-0     (-----) [000] dns3 24575.474268: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101841          <idle>-0     (-----) [000] dns3 24575.474274: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
101842          <idle>-0     (-----) [001] d.s4 24575.474280: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
101843          <idle>-0     (-----) [003] .n.1 24575.474286: cpu_idle: state=4294967295 cpu_id=3
101844          <idle>-0     (-----) [003] d..2 24575.474297: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
101845          <idle>-0     (-----) [001] ...1 24575.474314: cpu_idle: state=4294967295 cpu_id=1
101846          <idle>-0     (-----) [000] dns4 24575.474321: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
101847          <idle>-0     (-----) [001] d..1 24575.474321: cpu_idle: state=0 cpu_id=1
101848          <idle>-0     (-----) [000] .n.1 24575.474338: cpu_idle: state=4294967295 cpu_id=0
101849  crtc_event:111-254   (  254) [003] d..2 24575.474339: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
101850          <idle>-0     (-----) [000] d..2 24575.474349: 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
101851     rcu_preempt-7     (    7) [000] d..2 24575.474376: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
101852     rcu_preempt-7     (    7) [000] d..3 24575.474394: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
101853     rcu_preempt-7     (    7) [000] d..2 24575.474414: 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
101854         rcuop/0-10    (   10) [000] d..2 24575.474424: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101855         rcuop/0-10    (   10) [000] d..3 24575.474439: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101856         rcuop/0-10    (   10) [000] d..2 24575.474449: 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
101857     rcu_preempt-7     (    7) [000] d..2 24575.474481: 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
101858          <idle>-0     (-----) [000] d..1 24575.474497: cpu_idle: state=0 cpu_id=0
101859  kworker/u16:10-23868 (23868) [003] d..2 24575.474651: 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
101860          <idle>-0     (-----) [003] d..1 24575.474667: cpu_idle: state=0 cpu_id=3
101861          <idle>-0     (-----) [003] d.H2 24575.475145: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
101862          <idle>-0     (-----) [003] d.H3 24575.475176: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
101863          <idle>-0     (-----) [001] .n.1 24575.475181: cpu_idle: state=4294967295 cpu_id=1
101864          <idle>-0     (-----) [001] d..2 24575.475194: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
101865          <idle>-0     (-----) [003] d.s3 24575.475196: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
101866          <idle>-0     (-----) [003] d.s4 24575.475210: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
101867          <idle>-0     (-----) [003] dns4 24575.475216: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
101868        DispSync-23904 (23896) [001] d..1 24575.475218: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
101869          <idle>-0     (-----) [003] .n.1 24575.475230: cpu_idle: state=4294967295 cpu_id=3
101870          <idle>-0     (-----) [003] d..2 24575.475245: 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
101871        DispSync-23904 (23896) [001] d..2 24575.475247: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
101872          <idle>-0     (-----) [002] .n.1 24575.475253: cpu_idle: state=4294967295 cpu_id=2
101873          <idle>-0     (-----) [002] d..2 24575.475265: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
101874        DispSync-23904 (23896) [001] d..2 24575.475285: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101875          <idle>-0     (-----) [001] d..1 24575.475299: cpu_idle: state=0 cpu_id=1
101876  appEventThread-23905 (23896) [002] d..3 24575.475352: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
101877  kworker/u16:10-23868 (23868) [003] .... 24575.475357: clk_set_rate: l3_cluster0_vote_clk 403200000
101878  kworker/u16:10-23868 (23868) [003] .... 24575.475364: clk_set_rate: l3_clk 403200000
101879  appEventThread-23905 (23896) [002] d..4 24575.475381: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
101880          <idle>-0     (-----) [000] .n.1 24575.475387: cpu_idle: state=4294967295 cpu_id=0
101881          <idle>-0     (-----) [000] d..2 24575.475405: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
101882  kworker/u16:10-23868 (23868) [003] d..2 24575.475424: 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
101883  appEventThread-23905 (23896) [002] d..2 24575.475436: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
101884          <idle>-0     (-----) [003] d..1 24575.475444: cpu_idle: state=0 cpu_id=3
101885          <idle>-0     (-----) [002] d..1 24575.475452: cpu_idle: state=0 cpu_id=2
101886 s.nexuslauncher-24827 (24827) [000] .... 24575.475813: binder_transaction: transaction=1671277 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
101887 s.nexuslauncher-24827 (24827) [000] d..4 24575.475825: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=003
101888 s.nexuslauncher-24827 (24827) [000] d..5 24575.475860: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
101889          <idle>-0     (-----) [001] .n.1 24575.475866: cpu_idle: state=4294967295 cpu_id=1
101890          <idle>-0     (-----) [001] d..2 24575.475880: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
101891  Binder:23896_5-25989 (23896) [001] .... 24575.475888: binder_transaction_received: transaction=1671277
101892 s.nexuslauncher-24827 (24827) [000] d..3 24575.475904: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=003
101893  Binder:23896_5-25989 (23896) [001] d..1 24575.475923: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
101894 s.nexuslauncher-24827 (24827) [000] d..4 24575.475932: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
101895          <idle>-0     (-----) [002] .n.1 24575.475939: cpu_idle: state=4294967295 cpu_id=2
101896  Binder:23896_5-25989 (23896) [001] d..2 24575.475960: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
101897          <idle>-0     (-----) [002] d..2 24575.475960: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
101898          <idle>-0     (-----) [003] .n.1 24575.475967: cpu_idle: state=4294967295 cpu_id=3
101899          <idle>-0     (-----) [003] d..2 24575.475979: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
101900  Binder:23896_5-25989 (23896) [001] d..2 24575.476008: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101901          <idle>-0     (-----) [001] d..1 24575.476022: cpu_idle: state=0 cpu_id=1
101902    RenderThread-25194 (24827) [002] d..2 24575.476024: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
101903          <idle>-0     (-----) [002] d..1 24575.476039: cpu_idle: state=0 cpu_id=2
101904  appEventThread-23905 (23896) [003] d..2 24575.476044: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101905          <idle>-0     (-----) [003] d..1 24575.476060: cpu_idle: state=0 cpu_id=3
101906 s.nexuslauncher-24827 (24827) [000] d..3 24575.476558: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
101907 s.nexuslauncher-24827 (24827) [000] d..4 24575.476583: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
101908          <idle>-0     (-----) [002] .n.1 24575.476589: cpu_idle: state=4294967295 cpu_id=2
101909          <idle>-0     (-----) [002] d..2 24575.476602: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
101910 s.nexuslauncher-24827 (24827) [000] d..2 24575.476625: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101911          <idle>-0     (-----) [000] d..1 24575.476645: cpu_idle: state=0 cpu_id=0
101912    RenderThread-25194 (24827) [002] d..1 24575.476869: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
101913    RenderThread-25194 (24827) [002] d..2 24575.476894: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
101914          <idle>-0     (-----) [000] .n.1 24575.476901: cpu_idle: state=4294967295 cpu_id=0
101915          <idle>-0     (-----) [000] d..2 24575.476915: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
101916    RenderThread-25194 (24827) [002] .... 24575.476970: binder_transaction: transaction=1671278 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
101917    RenderThread-25194 (24827) [002] ...2 24575.476981: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
101918    RenderThread-25194 (24827) [002] d..4 24575.476985: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
101919    RenderThread-25194 (24827) [002] dn.5 24575.477012: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
101920    RenderThread-25194 (24827) [002] d..2 24575.477023: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
101921  Binder:23896_5-25989 (23896) [002] .... 24575.477033: binder_transaction_received: transaction=1671278
101922 s.nexuslauncher-24827 (24827) [000] d..2 24575.477045: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101923          <idle>-0     (-----) [000] d..1 24575.477060: cpu_idle: state=0 cpu_id=0
101924  Binder:23896_5-25989 (23896) [002] d..2 24575.477092: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
101925    RenderThread-25194 (24827) [002] d..2 24575.477123: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
101926          <idle>-0     (-----) [002] d..1 24575.477143: cpu_idle: state=0 cpu_id=2
101927          <idle>-0     (-----) [003] ...1 24575.477474: cpu_idle: state=4294967295 cpu_id=3
101928          <idle>-0     (-----) [003] d..1 24575.477479: cpu_idle: state=0 cpu_id=3
101929          <idle>-0     (-----) [002] d..2 24575.478704: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
101930          <idle>-0     (-----) [002] dn.3 24575.478724: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
101931          <idle>-0     (-----) [002] dnH3 24575.478831: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
101932          <idle>-0     (-----) [002] dnH3 24575.478850: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
101933          <idle>-0     (-----) [005] dnh2 24575.478856: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
101934          <idle>-0     (-----) [005] .n.1 24575.478860: cpu_idle: state=4294967295 cpu_id=5
101935          <idle>-0     (-----) [005] d..2 24575.478865: 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
101936          <idle>-0     (-----) [002] dnH4 24575.478867: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
101937          <idle>-0     (-----) [000] .n.1 24575.478875: cpu_idle: state=4294967295 cpu_id=0
101938         sugov:4-560   (  560) [005] d..2 24575.478879: 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
101939          <idle>-0     (-----) [002] .n.1 24575.478883: cpu_idle: state=4294967295 cpu_id=2
101940          <idle>-0     (-----) [005] d..1 24575.478886: cpu_idle: state=0 cpu_id=5
101941          <idle>-0     (-----) [000] d..2 24575.478889: 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
101942          <idle>-0     (-----) [002] d..2 24575.478899: 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
101943         sugov:0-559   (  559) [000] .... 24575.478930: clk_set_rate: pwrcl_clk 902400000
101944     ksoftirqd/2-26    (   26) [002] d..2 24575.478933: 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
101945         sugov:0-559   (  559) [000] .... 24575.478943: clk_set_rate: cpu3_pwrcl_clk 825600000
101946          <idle>-0     (-----) [002] d..1 24575.478945: cpu_idle: state=0 cpu_id=2
101947         sugov:0-559   (  559) [000] .... 24575.478955: clk_set_rate: cpu2_pwrcl_clk 825600000
101948         sugov:0-559   (  559) [000] .... 24575.478965: clk_set_rate: cpu1_pwrcl_clk 825600000
101949         sugov:0-559   (  559) [000] .... 24575.478976: clk_set_rate: cpu0_pwrcl_clk 902400000
101950         sugov:0-559   (  559) [000] .... 24575.478988: cpu_frequency: state=902400 cpu_id=0
101951         sugov:0-559   (  559) [000] .... 24575.479019: cpu_frequency: state=902400 cpu_id=1
101952         sugov:0-559   (  559) [000] .... 24575.479023: cpu_frequency: state=902400 cpu_id=2
101953         sugov:0-559   (  559) [000] .... 24575.479027: cpu_frequency: state=902400 cpu_id=3
101954         sugov:0-559   (  559) [000] d..2 24575.479061: 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
101955          <idle>-0     (-----) [000] d..1 24575.479071: cpu_idle: state=0 cpu_id=0
101956          <idle>-0     (-----) [001] d.h2 24575.479120: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
101957          <idle>-0     (-----) [001] dnh3 24575.479135: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
101958          <idle>-0     (-----) [001] .n.1 24575.479144: cpu_idle: state=4294967295 cpu_id=1
101959          <idle>-0     (-----) [001] d..2 24575.479155: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
101960        DispSync-23904 (23896) [001] d..1 24575.479170: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
101961        DispSync-23904 (23896) [001] d..2 24575.479192: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
101962          <idle>-0     (-----) [003] .n.1 24575.479197: cpu_idle: state=4294967295 cpu_id=3
101963          <idle>-0     (-----) [003] d..2 24575.479208: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
101964        DispSync-23904 (23896) [001] d..2 24575.479222: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101965          <idle>-0     (-----) [001] d..1 24575.479235: cpu_idle: state=0 cpu_id=1
101966   sfEventThread-23906 (23896) [003] d..3 24575.479251: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
101967   sfEventThread-23906 (23896) [003] d..4 24575.479273: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
101968          <idle>-0     (-----) [000] .n.1 24575.479278: cpu_idle: state=4294967295 cpu_id=0
101969          <idle>-0     (-----) [000] d..2 24575.479286: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
101970   sfEventThread-23906 (23896) [003] d..2 24575.479308: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101971          <idle>-0     (-----) [003] d..1 24575.479321: cpu_idle: state=0 cpu_id=3
101972  surfaceflinger-23896 (23896) [000] d..1 24575.479483: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
101973  surfaceflinger-23896 (23896) [000] d..2 24575.479518: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
101974          <idle>-0     (-----) [001] .n.1 24575.479524: cpu_idle: state=4294967295 cpu_id=1
101975          <idle>-0     (-----) [001] d..2 24575.479536: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
101976  Binder:23896_5-25989 (23896) [001] d..2 24575.479573: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101977          <idle>-0     (-----) [001] d..1 24575.479586: cpu_idle: state=0 cpu_id=1
101978  surfaceflinger-23896 (23896) [000] d..1 24575.479696: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
101979  surfaceflinger-23896 (23896) [000] d..2 24575.479718: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
101980          <idle>-0     (-----) [003] .n.1 24575.479724: cpu_idle: state=4294967295 cpu_id=3
101981          <idle>-0     (-----) [003] d..2 24575.479734: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
101982   sfEventThread-23906 (23896) [003] d..2 24575.479767: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101983          <idle>-0     (-----) [003] d..1 24575.479779: cpu_idle: state=0 cpu_id=3
101984          <idle>-0     (-----) [005] ...1 24575.479896: cpu_idle: state=4294967295 cpu_id=5
101985          <idle>-0     (-----) [005] d..1 24575.479899: cpu_idle: state=0 cpu_id=5
101986  surfaceflinger-23896 (23896) [000] ...1 24575.479922: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
101987  surfaceflinger-23896 (23896) [000] ...1 24575.479930: tracing_mark_write: E|23896
101988  surfaceflinger-23896 (23896) [000] .... 24575.479991: binder_transaction: transaction=1671279 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
101989  surfaceflinger-23896 (23896) [000] ...2 24575.480022: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
101990  surfaceflinger-23896 (23896) [000] d..4 24575.480030: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
101991  surfaceflinger-23896 (23896) [000] d..5 24575.480054: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
101992          <idle>-0     (-----) [002] .n.1 24575.480060: cpu_idle: state=4294967295 cpu_id=2
101993          <idle>-0     (-----) [002] d..2 24575.480071: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
101994  HwBinder:598_3-633   (  598) [002] .... 24575.480084: binder_transaction_received: transaction=1671279
101995  surfaceflinger-23896 (23896) [000] d..2 24575.480088: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101996          <idle>-0     (-----) [000] d..1 24575.480103: cpu_idle: state=0 cpu_id=0
101997  HwBinder:598_3-633   (  598) [002] ...1 24575.480140: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
101998  HwBinder:598_3-633   (  598) [002] ...1 24575.480276: tracing_mark_write: B|598|HWCSession::PresentDisplay::
101999  HwBinder:598_3-633   (  598) [002] ...1 24575.480478: tracing_mark_write: B|598|HWDeviceDRM::Commit::
102000  HwBinder:598_3-633   (  598) [002] ...1 24575.480492: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
102001          <idle>-0     (-----) [000] d.s2 24575.480909: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
102002  HwBinder:598_3-633   (  598) [002] d.s2 24575.480928: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
102003          <idle>-0     (-----) [000] dns3 24575.480930: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
102004          <idle>-0     (-----) [000] .n.1 24575.480950: cpu_idle: state=4294967295 cpu_id=0
102005  HwBinder:598_3-633   (  598) [002] d.s3 24575.480950: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
102006          <idle>-0     (-----) [000] d..2 24575.480960: 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
102007     rcu_preempt-7     (    7) [000] d..2 24575.480993: 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
102008          <idle>-0     (-----) [000] d..1 24575.481006: cpu_idle: state=0 cpu_id=0
102009          <idle>-0     (-----) [001] ...1 24575.481232: cpu_idle: state=4294967295 cpu_id=1
102010          <idle>-0     (-----) [001] d..1 24575.481236: cpu_idle: state=0 cpu_id=1
102011  HwBinder:598_3-633   (  598) [002] d..2 24575.481251: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
102012  HwBinder:598_3-633   (  598) [002] d..3 24575.481277: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
102013          <idle>-0     (-----) [001] .n.1 24575.481281: cpu_idle: state=4294967295 cpu_id=1
102014          <idle>-0     (-----) [003] ...1 24575.481286: cpu_idle: state=4294967295 cpu_id=3
102015          <idle>-0     (-----) [003] d..1 24575.481290: cpu_idle: state=0 cpu_id=3
102016          <idle>-0     (-----) [001] d..2 24575.481293: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
102017  HwBinder:598_3-633   (  598) [002] ...1 24575.481399: tracing_mark_write: E|598
102018  HwBinder:598_3-633   (  598) [002] ...1 24575.481406: tracing_mark_write: E|598
102019  HwBinder:598_3-633   (  598) [002] ...1 24575.481483: tracing_mark_write: E|598
102020  HwBinder:598_3-633   (  598) [002] ...1 24575.481546: tracing_mark_write: E|598
102021  HwBinder:598_3-633   (  598) [002] .... 24575.481564: binder_transaction: transaction=1671280 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
102022  HwBinder:598_3-633   (  598) [002] d..2 24575.481590: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
102023  HwBinder:598_3-633   (  598) [002] d..3 24575.481611: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
102024  HwBinder:598_3-633   (  598) [002] .... 24575.481616: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
102025          <idle>-0     (-----) [000] .n.1 24575.481616: cpu_idle: state=4294967295 cpu_id=0
102026          <idle>-0     (-----) [000] d..2 24575.481626: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
102027  surfaceflinger-23896 (23896) [000] .... 24575.481637: binder_transaction_received: transaction=1671280
102028  HwBinder:598_3-633   (  598) [002] d..2 24575.481697: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
102029     kworker/2:0-12895 (12895) [002] d..2 24575.481753: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102030          <idle>-0     (-----) [002] d..1 24575.481771: cpu_idle: state=0 cpu_id=2
102031  surfaceflinger-23896 (23896) [000] d..1 24575.481914: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
102032  surfaceflinger-23896 (23896) [000] d..2 24575.481948: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
102033          <idle>-0     (-----) [002] .n.1 24575.481955: cpu_idle: state=4294967295 cpu_id=2
102034          <idle>-0     (-----) [002] d..2 24575.481968: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
102035  Binder:23896_5-25989 (23896) [002] .... 24575.482029: binder_transaction: transaction=1671281 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
102036  Binder:23896_5-25989 (23896) [002] d..2 24575.482044: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
102037  Binder:23896_5-25989 (23896) [002] d..3 24575.482062: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
102038  Binder:23896_5-25989 (23896) [002] .... 24575.482067: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
102039  Binder:23896_5-25989 (23896) [002] d..2 24575.482124: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
102040 crtc_commit:111-253   (  253) [001] d..2 24575.482132: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
102041    RenderThread-25194 (24827) [002] .... 24575.482134: binder_transaction_received: transaction=1671281
102042  surfaceflinger-23896 (23896) [000] d..2 24575.482144: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102043          <idle>-0     (-----) [001] d..1 24575.482146: cpu_idle: state=0 cpu_id=1
102044          <idle>-0     (-----) [000] d..1 24575.482163: cpu_idle: state=0 cpu_id=0
102045    RenderThread-25194 (24827) [002] d.s2 24575.484261: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
102046    RenderThread-25194 (24827) [002] d.s3 24575.484315: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
102047          <idle>-0     (-----) [000] .n.1 24575.484322: cpu_idle: state=4294967295 cpu_id=0
102048    RenderThread-25194 (24827) [002] d.s2 24575.484326: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
102049          <idle>-0     (-----) [000] d..2 24575.484339: 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
102050    RenderThread-25194 (24827) [002] d.s3 24575.484351: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
102051  kworker/u16:10-23868 (23868) [000] d..2 24575.484361: 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
102052     rcu_preempt-7     (    7) [000] d..2 24575.484372: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
102053     rcu_preempt-7     (    7) [000] d..3 24575.484396: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
102054     rcu_preempt-7     (    7) [000] d..2 24575.484408: 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
102055         rcuop/0-10    (   10) [000] d..2 24575.484420: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
102056         rcuop/0-10    (   10) [000] d..3 24575.484433: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
102057         rcuop/0-10    (   10) [000] d..2 24575.484442: 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
102058     rcu_preempt-7     (    7) [000] d..2 24575.484455: 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
102059  kworker/u16:10-23868 (23868) [000] .... 24575.484512: clk_set_rate: l3_cluster0_vote_clk 480000000
102060  kworker/u16:10-23868 (23868) [000] .... 24575.484518: clk_set_rate: l3_clk 480000000
102061  kworker/u16:10-23868 (23868) [000] d..2 24575.484640: 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
102062          <idle>-0     (-----) [000] d..1 24575.484656: cpu_idle: state=0 cpu_id=0
102063    RenderThread-25194 (24827) [002] .... 24575.484696: binder_transaction: transaction=1671282 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
102064    RenderThread-25194 (24827) [002] ...2 24575.484711: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
102065    RenderThread-25194 (24827) [002] d..4 24575.484715: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
102066    RenderThread-25194 (24827) [002] dn.5 24575.484731: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
102067    RenderThread-25194 (24827) [002] d..2 24575.484742: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
102068  Binder:23896_5-25989 (23896) [002] .... 24575.484750: binder_transaction_received: transaction=1671282
102069  Binder:23896_5-25989 (23896) [002] .... 24575.484897: binder_transaction: transaction=1671283 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
102070  Binder:23896_5-25989 (23896) [002] .... 24575.484907: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
102071  Binder:23896_5-25989 (23896) [002] d..2 24575.484961: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
102072    RenderThread-25194 (24827) [002] .... 24575.484972: binder_transaction_received: transaction=1671283
102073    RenderThread-25194 (24827) [002] d..2 24575.485070: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102074          <idle>-0     (-----) [002] d..1 24575.485089: cpu_idle: state=0 cpu_id=2
102075          <idle>-0     (-----) [000] d.h5 24575.487400: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
102076          <idle>-0     (-----) [000] d.h6 24575.487421: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
102077          <idle>-0     (-----) [003] .n.1 24575.487427: cpu_idle: state=4294967295 cpu_id=3
102078          <idle>-0     (-----) [000] d.h5 24575.487427: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
102079          <idle>-0     (-----) [003] d..2 24575.487437: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
102080          <idle>-0     (-----) [000] d.h6 24575.487441: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
102081          <idle>-0     (-----) [001] .n.1 24575.487447: cpu_idle: state=4294967295 cpu_id=1
102082  crtc_event:111-254   (  254) [003] d..3 24575.487456: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
102083          <idle>-0     (-----) [000] ...1 24575.487458: cpu_idle: state=4294967295 cpu_id=0
102084          <idle>-0     (-----) [001] d..2 24575.487459: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
102085          <idle>-0     (-----) [000] d..1 24575.487463: cpu_idle: state=0 cpu_id=0
102086  crtc_event:111-254   (  254) [003] d..4 24575.487476: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
102087          <idle>-0     (-----) [002] .n.1 24575.487483: cpu_idle: state=4294967295 cpu_id=2
102088          <idle>-0     (-----) [002] d..2 24575.487494: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
102089  crtc_event:111-254   (  254) [003] d..2 24575.487501: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102090          <idle>-0     (-----) [003] d..1 24575.487513: cpu_idle: state=0 cpu_id=3
102091 crtc_commit:111-253   (  253) [001] d..2 24575.487666: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
102092          <idle>-0     (-----) [001] d..1 24575.487677: cpu_idle: state=0 cpu_id=1
102093 kgsl_worker_thr-246   (  246) [002] d..2 24575.487739: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
102094          <idle>-0     (-----) [002] d..1 24575.487751: cpu_idle: state=0 cpu_id=2
102095          <idle>-0     (-----) [002] d.h2 24575.487828: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
102096          <idle>-0     (-----) [002] dnh3 24575.487841: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
102097          <idle>-0     (-----) [002] .n.1 24575.487851: cpu_idle: state=4294967295 cpu_id=2
102098          <idle>-0     (-----) [002] d..2 24575.487860: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
102099 kgsl_worker_thr-246   (  246) [002] d..2 24575.487883: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
102100 kgsl_worker_thr-246   (  246) [002] d..3 24575.487924: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
102101 kgsl_worker_thr-246   (  246) [002] d..2 24575.487938: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
102102  kworker/u16:10-23868 (23868) [002] d..2 24575.488360: 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
102103          <idle>-0     (-----) [002] d..1 24575.488375: cpu_idle: state=0 cpu_id=2
102104          <idle>-0     (-----) [000] d.h3 24575.489462: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
102105          <idle>-0     (-----) [000] d.h4 24575.489478: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
102106          <idle>-0     (-----) [002] .n.1 24575.489485: cpu_idle: state=4294967295 cpu_id=2
102107          <idle>-0     (-----) [000] ...1 24575.489492: cpu_idle: state=4294967295 cpu_id=0
102108          <idle>-0     (-----) [002] d..2 24575.489495: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
102109          <idle>-0     (-----) [000] d..1 24575.489496: cpu_idle: state=0 cpu_id=0
102110 kgsl_worker_thr-246   (  246) [002] d..2 24575.489566: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102111          <idle>-0     (-----) [002] d..1 24575.489578: cpu_idle: state=0 cpu_id=2
102112          <idle>-0     (-----) [000] d.h5 24575.489727: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
102113          <idle>-0     (-----) [000] d.h6 24575.489741: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
102114          <idle>-0     (-----) [001] .n.1 24575.489747: cpu_idle: state=4294967295 cpu_id=1
102115          <idle>-0     (-----) [000] ...1 24575.489754: cpu_idle: state=4294967295 cpu_id=0
102116          <idle>-0     (-----) [001] d..2 24575.489755: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
102117          <idle>-0     (-----) [000] d..1 24575.489758: cpu_idle: state=0 cpu_id=0
102118 crtc_commit:111-253   (  253) [001] d..2 24575.489837: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102119          <idle>-0     (-----) [001] d..1 24575.489846: cpu_idle: state=0 cpu_id=1
102120          <idle>-0     (-----) [000] d.h5 24575.490038: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
102121          <idle>-0     (-----) [000] d.h6 24575.490053: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
102122          <idle>-0     (-----) [003] .n.1 24575.490060: cpu_idle: state=4294967295 cpu_id=3
102123          <idle>-0     (-----) [003] d..2 24575.490071: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
102124          <idle>-0     (-----) [000] ...1 24575.490071: cpu_idle: state=4294967295 cpu_id=0
102125          <idle>-0     (-----) [000] d..1 24575.490076: cpu_idle: state=0 cpu_id=0
102126  crtc_event:111-254   (  254) [003] d..2 24575.490097: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102127          <idle>-0     (-----) [003] d..1 24575.490106: cpu_idle: state=0 cpu_id=3
102128          <idle>-0     (-----) [001] d.s3 24575.490911: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
102129          <idle>-0     (-----) [000] d.s2 24575.490911: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
102130          <idle>-0     (-----) [000] dns3 24575.490929: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
102131          <idle>-0     (-----) [001] d.s4 24575.490931: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
102132          <idle>-0     (-----) [003] .n.1 24575.490937: cpu_idle: state=4294967295 cpu_id=3
102133          <idle>-0     (-----) [003] d..2 24575.490947: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
102134          <idle>-0     (-----) [000] .n.1 24575.490950: cpu_idle: state=4294967295 cpu_id=0
102135          <idle>-0     (-----) [001] ...1 24575.490959: cpu_idle: state=4294967295 cpu_id=1
102136          <idle>-0     (-----) [000] d..2 24575.490963: 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
102137          <idle>-0     (-----) [001] d..1 24575.490964: cpu_idle: state=0 cpu_id=1
102138  crtc_event:111-254   (  254) [003] d..2 24575.490978: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102139          <idle>-0     (-----) [003] d..1 24575.490990: cpu_idle: state=0 cpu_id=3
102140     rcu_preempt-7     (    7) [000] d..2 24575.490991: 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
102141          <idle>-0     (-----) [000] d..1 24575.491003: cpu_idle: state=0 cpu_id=0
102142          <idle>-0     (-----) [001] d.h2 24575.491576: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
102143          <idle>-0     (-----) [001] dnh3 24575.491588: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
102144          <idle>-0     (-----) [001] .n.1 24575.491595: cpu_idle: state=4294967295 cpu_id=1
102145          <idle>-0     (-----) [001] d..2 24575.491606: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
102146        DispSync-23904 (23896) [001] d..1 24575.491623: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
102147        DispSync-23904 (23896) [001] d..2 24575.491639: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
102148          <idle>-0     (-----) [003] .n.1 24575.491644: cpu_idle: state=4294967295 cpu_id=3
102149          <idle>-0     (-----) [003] d..2 24575.491654: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
102150        DispSync-23904 (23896) [001] d..2 24575.491667: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102151          <idle>-0     (-----) [001] d..1 24575.491678: cpu_idle: state=0 cpu_id=1
102152  appEventThread-23905 (23896) [003] d..3 24575.491694: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
102153  appEventThread-23905 (23896) [003] d..4 24575.491720: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
102154          <idle>-0     (-----) [000] .n.1 24575.491726: cpu_idle: state=4294967295 cpu_id=0
102155          <idle>-0     (-----) [000] d..2 24575.491739: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
102156  appEventThread-23905 (23896) [003] d..2 24575.491756: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102157          <idle>-0     (-----) [003] d..1 24575.491768: cpu_idle: state=0 cpu_id=3
102158 s.nexuslauncher-24827 (24827) [000] .... 24575.492064: binder_transaction: transaction=1671284 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
102159 s.nexuslauncher-24827 (24827) [000] d..4 24575.492075: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
102160 s.nexuslauncher-24827 (24827) [000] d..5 24575.492108: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
102161          <idle>-0     (-----) [001] .n.1 24575.492113: cpu_idle: state=4294967295 cpu_id=1
102162          <idle>-0     (-----) [001] d..2 24575.492125: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
102163  Binder:23896_5-25989 (23896) [001] .... 24575.492132: binder_transaction_received: transaction=1671284
102164 s.nexuslauncher-24827 (24827) [000] d..3 24575.492145: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
102165  Binder:23896_5-25989 (23896) [001] d..1 24575.492160: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
102166 s.nexuslauncher-24827 (24827) [000] d..4 24575.492164: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
102167          <idle>-0     (-----) [002] .n.1 24575.492170: cpu_idle: state=4294967295 cpu_id=2
102168  Binder:23896_5-25989 (23896) [001] d..2 24575.492178: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
102169          <idle>-0     (-----) [002] d..2 24575.492182: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
102170          <idle>-0     (-----) [003] .n.1 24575.492184: cpu_idle: state=4294967295 cpu_id=3
102171          <idle>-0     (-----) [003] d..2 24575.492193: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
102172  Binder:23896_5-25989 (23896) [001] d..2 24575.492220: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102173  appEventThread-23905 (23896) [003] d..2 24575.492230: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102174    RenderThread-25194 (24827) [002] d..2 24575.492231: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102175          <idle>-0     (-----) [001] d..1 24575.492232: cpu_idle: state=0 cpu_id=1
102176          <idle>-0     (-----) [003] d..1 24575.492240: cpu_idle: state=0 cpu_id=3
102177          <idle>-0     (-----) [002] d..1 24575.492243: cpu_idle: state=0 cpu_id=2
102178 s.nexuslauncher-24827 (24827) [000] d..3 24575.492712: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
102179 s.nexuslauncher-24827 (24827) [000] d..4 24575.492735: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
102180          <idle>-0     (-----) [002] .n.1 24575.492739: cpu_idle: state=4294967295 cpu_id=2
102181          <idle>-0     (-----) [002] d..2 24575.492753: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
102182 s.nexuslauncher-24827 (24827) [000] d..2 24575.492773: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102183          <idle>-0     (-----) [000] d..1 24575.492791: cpu_idle: state=0 cpu_id=0
102184    RenderThread-25194 (24827) [002] d..1 24575.492990: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
102185    RenderThread-25194 (24827) [002] d..2 24575.493012: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
102186          <idle>-0     (-----) [000] .n.1 24575.493019: cpu_idle: state=4294967295 cpu_id=0
102187          <idle>-0     (-----) [000] d..2 24575.493032: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
102188    RenderThread-25194 (24827) [002] .... 24575.493077: binder_transaction: transaction=1671285 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
102189    RenderThread-25194 (24827) [002] ...2 24575.493087: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
102190    RenderThread-25194 (24827) [002] d..4 24575.493091: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
102191    RenderThread-25194 (24827) [002] dn.5 24575.493112: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
102192    RenderThread-25194 (24827) [002] d..2 24575.493124: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
102193  Binder:23896_5-25989 (23896) [002] .... 24575.493133: binder_transaction_received: transaction=1671285
102194 s.nexuslauncher-24827 (24827) [000] d..2 24575.493144: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102195          <idle>-0     (-----) [000] d..1 24575.493158: cpu_idle: state=0 cpu_id=0
102196  Binder:23896_5-25989 (23896) [002] d..2 24575.493182: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
102197    RenderThread-25194 (24827) [002] d..2 24575.493209: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102198          <idle>-0     (-----) [002] d..1 24575.493226: cpu_idle: state=0 cpu_id=2
102199          <idle>-0     (-----) [001] d.h2 24575.495577: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
102200          <idle>-0     (-----) [001] dnh3 24575.495589: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
102201          <idle>-0     (-----) [001] .n.1 24575.495597: cpu_idle: state=4294967295 cpu_id=1
102202          <idle>-0     (-----) [001] d..2 24575.495609: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
102203        DispSync-23904 (23896) [001] d..1 24575.495624: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
102204        DispSync-23904 (23896) [001] d..2 24575.495639: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
102205          <idle>-0     (-----) [003] .n.1 24575.495644: cpu_idle: state=4294967295 cpu_id=3
102206          <idle>-0     (-----) [003] d..2 24575.495656: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
102207        DispSync-23904 (23896) [001] d..2 24575.495673: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102208          <idle>-0     (-----) [001] d..2 24575.495678: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
102209   sfEventThread-23906 (23896) [003] d..3 24575.495684: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
102210          <idle>-0     (-----) [001] dn.3 24575.495697: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
102211   sfEventThread-23906 (23896) [003] d..4 24575.495701: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
102212          <idle>-0     (-----) [000] .n.1 24575.495707: cpu_idle: state=4294967295 cpu_id=0
102213          <idle>-0     (-----) [001] d..2 24575.495709: 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
102214          <idle>-0     (-----) [000] d..2 24575.495719: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
102215     ksoftirqd/1-18    (   18) [001] d.s2 24575.495723: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
102216   sfEventThread-23906 (23896) [003] d..2 24575.495731: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102217          <idle>-0     (-----) [003] d..1 24575.495744: cpu_idle: state=0 cpu_id=3
102218     ksoftirqd/1-18    (   18) [001] d.s3 24575.495763: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
102219          <idle>-0     (-----) [003] .n.1 24575.495768: cpu_idle: state=4294967295 cpu_id=3
102220          <idle>-0     (-----) [003] d..2 24575.495781: 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
102221     ksoftirqd/1-18    (   18) [001] d..2 24575.495787: 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
102222          <idle>-0     (-----) [001] d..1 24575.495801: cpu_idle: state=0 cpu_id=1
102223  surfaceflinger-23896 (23896) [000] d..1 24575.495905: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
102224  surfaceflinger-23896 (23896) [000] d..2 24575.495940: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
102225          <idle>-0     (-----) [001] .n.1 24575.495946: cpu_idle: state=4294967295 cpu_id=1
102226          <idle>-0     (-----) [001] d..2 24575.495958: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
102227  Binder:23896_5-25989 (23896) [001] d..2 24575.495990: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102228          <idle>-0     (-----) [001] d..1 24575.496002: cpu_idle: state=0 cpu_id=1
102229  kworker/u16:10-23868 (23868) [003] d..2 24575.496049: 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
102230  surfaceflinger-23896 (23896) [000] d..1 24575.496097: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
102231          <idle>-0     (-----) [003] d.s4 24575.496100: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
102232          <idle>-0     (-----) [003] d.s5 24575.496120: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
102233  surfaceflinger-23896 (23896) [000] d..2 24575.496124: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
102234          <idle>-0     (-----) [003] dns5 24575.496126: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
102235          <idle>-0     (-----) [001] .n.1 24575.496131: cpu_idle: state=4294967295 cpu_id=1
102236          <idle>-0     (-----) [001] d..2 24575.496140: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
102237          <idle>-0     (-----) [003] d..2 24575.496141: 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
102238   sfEventThread-23906 (23896) [001] d..2 24575.496176: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102239          <idle>-0     (-----) [001] d..1 24575.496190: cpu_idle: state=0 cpu_id=1
102240  kworker/u16:10-23868 (23868) [003] .... 24575.496234: clk_set_rate: l3_cluster0_vote_clk 300000000
102241  kworker/u16:10-23868 (23868) [003] .... 24575.496241: clk_set_rate: l3_clk 300000000
102242  kworker/u16:10-23868 (23868) [003] d..2 24575.496294: 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
102243          <idle>-0     (-----) [003] d..1 24575.496314: cpu_idle: state=0 cpu_id=3
102244  surfaceflinger-23896 (23896) [000] ...1 24575.496344: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
102245  surfaceflinger-23896 (23896) [000] ...1 24575.496354: tracing_mark_write: E|23896
102246  surfaceflinger-23896 (23896) [000] .... 24575.496430: binder_transaction: transaction=1671286 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
102247  surfaceflinger-23896 (23896) [000] ...2 24575.496459: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
102248  surfaceflinger-23896 (23896) [000] d..4 24575.496467: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
102249  surfaceflinger-23896 (23896) [000] d..5 24575.496493: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
102250          <idle>-0     (-----) [002] .n.1 24575.496500: cpu_idle: state=4294967295 cpu_id=2
102251          <idle>-0     (-----) [002] d..2 24575.496514: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
102252  HwBinder:598_3-633   (  598) [002] .... 24575.496528: binder_transaction_received: transaction=1671286
102253  surfaceflinger-23896 (23896) [000] d..2 24575.496533: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102254          <idle>-0     (-----) [000] d..1 24575.496550: cpu_idle: state=0 cpu_id=0
102255  HwBinder:598_3-633   (  598) [002] ...1 24575.496591: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
102256  HwBinder:598_3-633   (  598) [002] ...1 24575.496770: tracing_mark_write: B|598|HWCSession::PresentDisplay::
102257  HwBinder:598_3-633   (  598) [002] ...1 24575.497009: tracing_mark_write: B|598|HWDeviceDRM::Commit::
102258  HwBinder:598_3-633   (  598) [002] ...1 24575.497026: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
102259          <idle>-0     (-----) [001] ...1 24575.497531: cpu_idle: state=4294967295 cpu_id=1
102260          <idle>-0     (-----) [001] d..1 24575.497536: cpu_idle: state=0 cpu_id=1
102261  HwBinder:598_3-633   (  598) [002] d.s2 24575.497601: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
102262  HwBinder:598_3-633   (  598) [002] d.s3 24575.497687: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
102263          <idle>-0     (-----) [003] .n.1 24575.497694: cpu_idle: state=4294967295 cpu_id=3
102264          <idle>-0     (-----) [000] d.H3 24575.497698: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
102265          <idle>-0     (-----) [003] d..2 24575.497711: 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
102266          <idle>-0     (-----) [000] d.s2 24575.497723: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
102267          <idle>-0     (-----) [005] dnh2 24575.497724: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
102268          <idle>-0     (-----) [005] .n.1 24575.497728: cpu_idle: state=4294967295 cpu_id=5
102269          <idle>-0     (-----) [005] d..2 24575.497733: 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
102270         sugov:4-560   (  560) [005] d..2 24575.497745: 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
102271          <idle>-0     (-----) [000] dns3 24575.497746: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
102272          <idle>-0     (-----) [005] d..1 24575.497752: cpu_idle: state=0 cpu_id=5
102273          <idle>-0     (-----) [000] .n.1 24575.497761: cpu_idle: state=4294967295 cpu_id=0
102274          <idle>-0     (-----) [000] d..2 24575.497772: 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
102275     rcu_preempt-7     (    7) [000] d..2 24575.497782: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
102276  kworker/u16:10-23868 (23868) [003] d..2 24575.497799: 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
102277          <idle>-0     (-----) [003] d..1 24575.497811: cpu_idle: state=0 cpu_id=3
102278     rcu_preempt-7     (    7) [000] d..3 24575.497829: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
102279          <idle>-0     (-----) [003] .n.1 24575.497835: cpu_idle: state=4294967295 cpu_id=3
102280          <idle>-0     (-----) [003] d..2 24575.497847: 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
102281     rcu_preempt-7     (    7) [000] d..2 24575.497854: 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
102282         rcuop/0-10    (   10) [003] d..2 24575.497861: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
102283          <idle>-0     (-----) [000] d..1 24575.497874: cpu_idle: state=0 cpu_id=0
102284          <idle>-0     (-----) [000] .n.1 24575.497880: cpu_idle: state=4294967295 cpu_id=0
102285         rcuop/0-10    (   10) [003] d..3 24575.497881: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
102286          <idle>-0     (-----) [000] d..2 24575.497897: 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
102287  HwBinder:598_3-633   (  598) [002] d..2 24575.497897: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
102288         rcuop/0-10    (   10) [003] d..2 24575.497903: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102289          <idle>-0     (-----) [003] d..1 24575.497915: cpu_idle: state=0 cpu_id=3
102290  HwBinder:598_3-633   (  598) [002] d..3 24575.497926: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
102291          <idle>-0     (-----) [001] .n.1 24575.497930: cpu_idle: state=4294967295 cpu_id=1
102292     rcu_preempt-7     (    7) [000] d..2 24575.497938: 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
102293          <idle>-0     (-----) [001] d..2 24575.497944: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
102294          <idle>-0     (-----) [000] d..1 24575.497949: cpu_idle: state=0 cpu_id=0
102295  HwBinder:598_3-633   (  598) [002] ...1 24575.498055: tracing_mark_write: E|598
102296  HwBinder:598_3-633   (  598) [002] ...1 24575.498062: tracing_mark_write: E|598
102297  HwBinder:598_3-633   (  598) [002] ...1 24575.498145: tracing_mark_write: E|598
102298  HwBinder:598_3-633   (  598) [002] ...1 24575.498212: tracing_mark_write: E|598
102299  HwBinder:598_3-633   (  598) [002] .... 24575.498232: binder_transaction: transaction=1671287 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
102300  HwBinder:598_3-633   (  598) [002] d..2 24575.498259: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
102301  HwBinder:598_3-633   (  598) [002] d..3 24575.498283: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
102302          <idle>-0     (-----) [000] .n.1 24575.498288: cpu_idle: state=4294967295 cpu_id=0
102303  HwBinder:598_3-633   (  598) [002] .... 24575.498289: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
102304          <idle>-0     (-----) [000] d..2 24575.498298: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
102305  surfaceflinger-23896 (23896) [000] .... 24575.498310: binder_transaction_received: transaction=1671287
102306  HwBinder:598_3-633   (  598) [002] d..2 24575.498397: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102307          <idle>-0     (-----) [002] d..1 24575.498419: cpu_idle: state=0 cpu_id=2
102308  surfaceflinger-23896 (23896) [000] d..1 24575.498602: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
102309  surfaceflinger-23896 (23896) [000] d..2 24575.498641: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
102310          <idle>-0     (-----) [002] .n.1 24575.498649: cpu_idle: state=4294967295 cpu_id=2
102311          <idle>-0     (-----) [002] d..2 24575.498664: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
102312  Binder:23896_5-25989 (23896) [002] .... 24575.498736: binder_transaction: transaction=1671288 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
102313  Binder:23896_5-25989 (23896) [002] d..2 24575.498753: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
102314          <idle>-0     (-----) [005] ...1 24575.498762: cpu_idle: state=4294967295 cpu_id=5
102315          <idle>-0     (-----) [005] d..1 24575.498765: cpu_idle: state=0 cpu_id=5
102316  Binder:23896_5-25989 (23896) [002] d..3 24575.498774: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
102317  Binder:23896_5-25989 (23896) [002] .... 24575.498779: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
102318 crtc_commit:111-253   (  253) [001] d..2 24575.498817: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
102319          <idle>-0     (-----) [001] d..1 24575.498835: cpu_idle: state=0 cpu_id=1
102320  Binder:23896_5-25989 (23896) [002] d..2 24575.498844: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
102321    RenderThread-25194 (24827) [002] .... 24575.498856: binder_transaction_received: transaction=1671288
102322  surfaceflinger-23896 (23896) [000] d..2 24575.498866: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102323          <idle>-0     (-----) [000] d..1 24575.498888: cpu_idle: state=0 cpu_id=0
102324    RenderThread-25194 (24827) [002] .... 24575.501509: binder_transaction: transaction=1671289 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
102325    RenderThread-25194 (24827) [002] ...2 24575.501527: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
102326    RenderThread-25194 (24827) [002] d..4 24575.501532: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
102327    RenderThread-25194 (24827) [002] dn.5 24575.501552: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
102328    RenderThread-25194 (24827) [002] d..2 24575.501565: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
102329  Binder:23896_5-25989 (23896) [002] .... 24575.501574: binder_transaction_received: transaction=1671289
102330  Binder:23896_5-25989 (23896) [002] .... 24575.501756: binder_transaction: transaction=1671290 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
102331  Binder:23896_5-25989 (23896) [002] .... 24575.501768: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
102332  Binder:23896_5-25989 (23896) [002] d..2 24575.501833: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
102333    RenderThread-25194 (24827) [002] .... 24575.501844: binder_transaction_received: transaction=1671290
102334    RenderThread-25194 (24827) [002] d..2 24575.501988: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102335          <idle>-0     (-----) [002] d..1 24575.502010: cpu_idle: state=0 cpu_id=2
102336          <idle>-0     (-----) [000] d.h5 24575.503887: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
102337          <idle>-0     (-----) [000] d.h6 24575.503911: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
102338          <idle>-0     (-----) [003] .n.1 24575.503916: cpu_idle: state=4294967295 cpu_id=3
102339          <idle>-0     (-----) [000] d.h5 24575.503918: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
102340          <idle>-0     (-----) [003] d..2 24575.503930: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
102341          <idle>-0     (-----) [000] d.h6 24575.503933: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
102342          <idle>-0     (-----) [001] .n.1 24575.503941: cpu_idle: state=4294967295 cpu_id=1
102343  crtc_event:111-254   (  254) [003] d..3 24575.503950: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
102344          <idle>-0     (-----) [000] ...1 24575.503952: cpu_idle: state=4294967295 cpu_id=0
102345          <idle>-0     (-----) [001] d..2 24575.503956: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
102346          <idle>-0     (-----) [000] d..1 24575.503958: cpu_idle: state=0 cpu_id=0
102347  crtc_event:111-254   (  254) [003] d..4 24575.503975: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
102348          <idle>-0     (-----) [002] .n.1 24575.503983: cpu_idle: state=4294967295 cpu_id=2
102349          <idle>-0     (-----) [002] d..2 24575.503997: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
102350  crtc_event:111-254   (  254) [003] d..2 24575.504003: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102351          <idle>-0     (-----) [003] d..1 24575.504015: cpu_idle: state=0 cpu_id=3
102352 crtc_commit:111-253   (  253) [001] d..2 24575.504132: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
102353          <idle>-0     (-----) [001] d..1 24575.504143: cpu_idle: state=0 cpu_id=1
102354 kgsl_worker_thr-246   (  246) [002] d..2 24575.504222: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
102355          <idle>-0     (-----) [002] d.h3 24575.504250: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
102356          <idle>-0     (-----) [000] d.s2 24575.504251: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
102357          <idle>-0     (-----) [001] d.s3 24575.504251: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
102358          <idle>-0     (-----) [002] dnh4 24575.504266: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
102359          <idle>-0     (-----) [000] dns3 24575.504274: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
102360          <idle>-0     (-----) [001] d.s4 24575.504275: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
102361          <idle>-0     (-----) [003] .n.1 24575.504281: cpu_idle: state=4294967295 cpu_id=3
102362          <idle>-0     (-----) [001] d.s3 24575.504282: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
102363          <idle>-0     (-----) [003] d..2 24575.504296: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
102364          <idle>-0     (-----) [000] .n.1 24575.504299: cpu_idle: state=4294967295 cpu_id=0
102365          <idle>-0     (-----) [002] d..2 24575.504300: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
102366          <idle>-0     (-----) [001] dns4 24575.504313: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
102367          <idle>-0     (-----) [000] d..2 24575.504314: 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
102368  crtc_event:111-254   (  254) [003] d..2 24575.504333: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102369          <idle>-0     (-----) [001] .n.1 24575.504338: cpu_idle: state=4294967295 cpu_id=1
102370          <idle>-0     (-----) [003] d..1 24575.504344: cpu_idle: state=0 cpu_id=3
102371     rcu_preempt-7     (    7) [000] d..2 24575.504348: 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
102372 kgsl_worker_thr-246   (  246) [002] d..2 24575.504350: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102373          <idle>-0     (-----) [001] d..2 24575.504351: 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
102374  kworker/u16:10-23868 (23868) [001] d..2 24575.504359: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
102375          <idle>-0     (-----) [000] d..1 24575.504361: cpu_idle: state=0 cpu_id=0
102376          <idle>-0     (-----) [002] d..1 24575.504365: cpu_idle: state=0 cpu_id=2
102377  kworker/u16:10-23868 (23868) [001] dn.3 24575.504410: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
102378  kworker/u16:10-23868 (23868) [001] d..2 24575.504421: 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
102379  kworker/u16:16-25995 (25995) [001] d..2 24575.504882: 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
102380  kworker/u16:10-23868 (23868) [001] .... 24575.504916: clk_set_rate: l3_cluster0_vote_clk 480000000
102381  kworker/u16:10-23868 (23868) [001] .... 24575.504922: clk_set_rate: l3_clk 480000000
102382  kworker/u16:10-23868 (23868) [001] d..2 24575.505207: 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
102383          <idle>-0     (-----) [001] d..1 24575.505223: cpu_idle: state=0 cpu_id=1
102384          <idle>-0     (-----) [003] d.s3 24575.505706: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
102385          <idle>-0     (-----) [003] d.s4 24575.505739: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
102386          <idle>-0     (-----) [003] dns4 24575.505746: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
102387          <idle>-0     (-----) [003] .n.1 24575.505755: cpu_idle: state=4294967295 cpu_id=3
102388          <idle>-0     (-----) [003] d..2 24575.505766: 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
102389  kworker/u16:10-23868 (23868) [003] d..2 24575.505802: 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
102390          <idle>-0     (-----) [003] d..1 24575.505814: cpu_idle: state=0 cpu_id=3
102391          <idle>-0     (-----) [000] d.h3 24575.505935: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
102392          <idle>-0     (-----) [000] d.h4 24575.505952: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
102393          <idle>-0     (-----) [002] .n.1 24575.505958: cpu_idle: state=4294967295 cpu_id=2
102394          <idle>-0     (-----) [002] d..2 24575.505968: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
102395          <idle>-0     (-----) [000] ...1 24575.505969: cpu_idle: state=4294967295 cpu_id=0
102396          <idle>-0     (-----) [000] d..1 24575.505974: cpu_idle: state=0 cpu_id=0
102397 kgsl_worker_thr-246   (  246) [002] d..2 24575.506037: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102398          <idle>-0     (-----) [002] d..1 24575.506048: cpu_idle: state=0 cpu_id=2
102399          <idle>-0     (-----) [000] d.h5 24575.506202: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
102400          <idle>-0     (-----) [000] d.h6 24575.506218: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
102401          <idle>-0     (-----) [001] .n.1 24575.506223: cpu_idle: state=4294967295 cpu_id=1
102402          <idle>-0     (-----) [000] ...1 24575.506232: cpu_idle: state=4294967295 cpu_id=0
102403          <idle>-0     (-----) [001] d..2 24575.506234: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
102404          <idle>-0     (-----) [000] d..1 24575.506236: cpu_idle: state=0 cpu_id=0
102405 crtc_commit:111-253   (  253) [001] d..2 24575.506310: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102406          <idle>-0     (-----) [001] d..1 24575.506321: cpu_idle: state=0 cpu_id=1
102407          <idle>-0     (-----) [000] d.h5 24575.506511: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
102408          <idle>-0     (-----) [000] d.h6 24575.506526: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
102409          <idle>-0     (-----) [003] .n.1 24575.506532: cpu_idle: state=4294967295 cpu_id=3
102410          <idle>-0     (-----) [003] d..2 24575.506542: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
102411          <idle>-0     (-----) [000] ...1 24575.506545: cpu_idle: state=4294967295 cpu_id=0
102412          <idle>-0     (-----) [000] d..1 24575.506549: cpu_idle: state=0 cpu_id=0
102413  crtc_event:111-254   (  254) [003] d..2 24575.506568: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102414          <idle>-0     (-----) [003] d..1 24575.506579: cpu_idle: state=0 cpu_id=3
102415          <idle>-0     (-----) [001] d.h2 24575.508050: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
102416          <idle>-0     (-----) [001] dnh3 24575.508066: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
102417          <idle>-0     (-----) [001] .n.1 24575.508075: cpu_idle: state=4294967295 cpu_id=1
102418          <idle>-0     (-----) [001] d..2 24575.508087: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
102419        DispSync-23904 (23896) [001] d..1 24575.508104: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
102420        DispSync-23904 (23896) [001] d..2 24575.508119: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
102421          <idle>-0     (-----) [003] .n.1 24575.508126: cpu_idle: state=4294967295 cpu_id=3
102422          <idle>-0     (-----) [003] d..2 24575.508137: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
102423        DispSync-23904 (23896) [001] d..2 24575.508155: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102424          <idle>-0     (-----) [001] d..2 24575.508160: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
102425          <idle>-0     (-----) [001] dn.3 24575.508172: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
102426  appEventThread-23905 (23896) [003] d..3 24575.508179: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
102427          <idle>-0     (-----) [001] d..2 24575.508181: 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
102428  appEventThread-23905 (23896) [003] d..4 24575.508201: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
102429     ksoftirqd/1-18    (   18) [001] d..2 24575.508204: 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
102430          <idle>-0     (-----) [000] .n.1 24575.508207: cpu_idle: state=4294967295 cpu_id=0
102431          <idle>-0     (-----) [001] d..1 24575.508215: cpu_idle: state=0 cpu_id=1
102432          <idle>-0     (-----) [000] d..2 24575.508221: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
102433  appEventThread-23905 (23896) [003] d..2 24575.508240: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102434          <idle>-0     (-----) [003] d..1 24575.508254: cpu_idle: state=0 cpu_id=3
102435 s.nexuslauncher-24827 (24827) [000] .... 24575.508557: binder_transaction: transaction=1671291 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
102436 s.nexuslauncher-24827 (24827) [000] d..4 24575.508569: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
102437 s.nexuslauncher-24827 (24827) [000] d..5 24575.508602: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
102438          <idle>-0     (-----) [001] .n.1 24575.508608: cpu_idle: state=4294967295 cpu_id=1
102439          <idle>-0     (-----) [001] d..2 24575.508619: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
102440  Binder:23896_5-25989 (23896) [001] .... 24575.508627: binder_transaction_received: transaction=1671291
102441 s.nexuslauncher-24827 (24827) [000] d..3 24575.508642: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
102442  Binder:23896_5-25989 (23896) [001] d..1 24575.508658: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
102443 s.nexuslauncher-24827 (24827) [000] d..4 24575.508661: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
102444          <idle>-0     (-----) [002] .n.1 24575.508666: cpu_idle: state=4294967295 cpu_id=2
102445  Binder:23896_5-25989 (23896) [001] d..2 24575.508676: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
102446          <idle>-0     (-----) [002] d..2 24575.508680: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
102447          <idle>-0     (-----) [003] .n.1 24575.508681: cpu_idle: state=4294967295 cpu_id=3
102448          <idle>-0     (-----) [003] d..2 24575.508691: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
102449  Binder:23896_5-25989 (23896) [001] d..2 24575.508717: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102450  appEventThread-23905 (23896) [003] d..2 24575.508729: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102451    RenderThread-25194 (24827) [002] d..2 24575.508730: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102452          <idle>-0     (-----) [001] d..1 24575.508730: cpu_idle: state=0 cpu_id=1
102453          <idle>-0     (-----) [003] d..1 24575.508740: cpu_idle: state=0 cpu_id=3
102454          <idle>-0     (-----) [002] d..1 24575.508741: cpu_idle: state=0 cpu_id=2
102455 s.nexuslauncher-24827 (24827) [000] d..3 24575.509199: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
102456 s.nexuslauncher-24827 (24827) [000] d..4 24575.509222: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
102457          <idle>-0     (-----) [002] .n.1 24575.509227: cpu_idle: state=4294967295 cpu_id=2
102458          <idle>-0     (-----) [002] d..2 24575.509238: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
102459 s.nexuslauncher-24827 (24827) [000] d..2 24575.509260: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102460          <idle>-0     (-----) [000] d..1 24575.509274: cpu_idle: state=0 cpu_id=0
102461    RenderThread-25194 (24827) [002] d..1 24575.509496: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
102462    RenderThread-25194 (24827) [002] d..2 24575.509519: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
102463          <idle>-0     (-----) [000] .n.1 24575.509526: cpu_idle: state=4294967295 cpu_id=0
102464          <idle>-0     (-----) [000] d..2 24575.509537: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
102465    RenderThread-25194 (24827) [002] .... 24575.509584: binder_transaction: transaction=1671292 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
102466    RenderThread-25194 (24827) [002] ...2 24575.509594: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
102467    RenderThread-25194 (24827) [002] d..4 24575.509598: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
102468    RenderThread-25194 (24827) [002] dn.5 24575.509621: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
102469    RenderThread-25194 (24827) [002] d..2 24575.509632: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
102470  Binder:23896_5-25989 (23896) [002] .... 24575.509641: binder_transaction_received: transaction=1671292
102471 s.nexuslauncher-24827 (24827) [000] d..2 24575.509651: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102472          <idle>-0     (-----) [000] d..1 24575.509662: cpu_idle: state=0 cpu_id=0
102473  Binder:23896_5-25989 (23896) [002] d..2 24575.509690: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
102474    RenderThread-25194 (24827) [002] d..2 24575.509717: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102475          <idle>-0     (-----) [002] d..1 24575.509733: cpu_idle: state=0 cpu_id=2
102476          <idle>-0     (-----) [003] ...1 24575.510606: cpu_idle: state=4294967295 cpu_id=3
102477          <idle>-0     (-----) [003] d..1 24575.510612: cpu_idle: state=0 cpu_id=3
102478          <idle>-0     (-----) [000] d.s2 24575.510912: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
102479          <idle>-0     (-----) [000] dns3 24575.510931: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
102480          <idle>-0     (-----) [000] .n.1 24575.510949: cpu_idle: state=4294967295 cpu_id=0
102481          <idle>-0     (-----) [000] d..2 24575.510959: 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
102482     rcu_preempt-7     (    7) [000] d..2 24575.510969: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
102483     rcu_preempt-7     (    7) [000] d..3 24575.511006: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
102484     rcu_preempt-7     (    7) [000] d..2 24575.511017: 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
102485         rcuop/0-10    (   10) [000] d..2 24575.511025: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
102486         rcuop/0-10    (   10) [000] d..3 24575.511039: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
102487         rcuop/0-10    (   10) [000] d..2 24575.511049: 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
102488     rcu_preempt-7     (    7) [000] d..2 24575.511081: 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
102489          <idle>-0     (-----) [000] d..1 24575.511095: cpu_idle: state=0 cpu_id=0
102490          <idle>-0     (-----) [001] d.h2 24575.512047: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
102491          <idle>-0     (-----) [001] dnh3 24575.512061: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
102492          <idle>-0     (-----) [001] .n.1 24575.512070: cpu_idle: state=4294967295 cpu_id=1
102493          <idle>-0     (-----) [001] d..2 24575.512083: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
102494        DispSync-23904 (23896) [001] d..1 24575.512097: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
102495        DispSync-23904 (23896) [001] d..2 24575.512122: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
102496          <idle>-0     (-----) [003] .n.1 24575.512127: cpu_idle: state=4294967295 cpu_id=3
102497          <idle>-0     (-----) [003] d..2 24575.512138: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
102498        DispSync-23904 (23896) [001] d..2 24575.512152: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102499          <idle>-0     (-----) [001] d..1 24575.512164: cpu_idle: state=0 cpu_id=1
102500   sfEventThread-23906 (23896) [003] d..3 24575.512170: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
102501   sfEventThread-23906 (23896) [003] d..4 24575.512189: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
102502          <idle>-0     (-----) [000] .n.1 24575.512194: cpu_idle: state=4294967295 cpu_id=0
102503          <idle>-0     (-----) [000] d..2 24575.512206: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
102504   sfEventThread-23906 (23896) [003] d..2 24575.512218: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102505          <idle>-0     (-----) [003] d..1 24575.512232: cpu_idle: state=0 cpu_id=3
102506  surfaceflinger-23896 (23896) [000] d..1 24575.512409: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
102507  surfaceflinger-23896 (23896) [000] d..2 24575.512442: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
102508          <idle>-0     (-----) [001] .n.1 24575.512448: cpu_idle: state=4294967295 cpu_id=1
102509          <idle>-0     (-----) [001] d..2 24575.512460: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
102510  Binder:23896_5-25989 (23896) [001] d..2 24575.512494: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102511          <idle>-0     (-----) [001] d..1 24575.512504: cpu_idle: state=0 cpu_id=1
102512  surfaceflinger-23896 (23896) [000] d..1 24575.512626: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
102513  surfaceflinger-23896 (23896) [000] d..2 24575.512648: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
102514          <idle>-0     (-----) [003] .n.1 24575.512655: cpu_idle: state=4294967295 cpu_id=3
102515          <idle>-0     (-----) [003] d..2 24575.512665: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
102516   sfEventThread-23906 (23896) [003] d..2 24575.512696: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102517          <idle>-0     (-----) [003] d..1 24575.512707: cpu_idle: state=0 cpu_id=3
102518  surfaceflinger-23896 (23896) [000] ...1 24575.512870: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
102519  surfaceflinger-23896 (23896) [000] ...1 24575.512878: tracing_mark_write: E|23896
102520  surfaceflinger-23896 (23896) [000] .... 24575.512943: binder_transaction: transaction=1671293 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
102521  surfaceflinger-23896 (23896) [000] ...2 24575.512976: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
102522  surfaceflinger-23896 (23896) [000] d..4 24575.512983: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
102523  surfaceflinger-23896 (23896) [000] d..5 24575.513004: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
102524          <idle>-0     (-----) [002] .n.1 24575.513010: cpu_idle: state=4294967295 cpu_id=2
102525          <idle>-0     (-----) [002] d..2 24575.513022: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
102526  HwBinder:598_3-633   (  598) [002] .... 24575.513034: binder_transaction_received: transaction=1671293
102527  surfaceflinger-23896 (23896) [000] d..2 24575.513037: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102528          <idle>-0     (-----) [000] d..1 24575.513053: cpu_idle: state=0 cpu_id=0
102529  HwBinder:598_3-633   (  598) [002] ...1 24575.513088: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
102530  HwBinder:598_3-633   (  598) [002] ...1 24575.513246: tracing_mark_write: B|598|HWCSession::PresentDisplay::
102531  HwBinder:598_3-633   (  598) [002] ...1 24575.513454: tracing_mark_write: B|598|HWDeviceDRM::Commit::
102532  HwBinder:598_3-633   (  598) [002] ...1 24575.513469: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
102533  HwBinder:598_3-633   (  598) [002] d..2 24575.514133: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
102534  HwBinder:598_3-633   (  598) [002] d..3 24575.514160: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
102535          <idle>-0     (-----) [001] .n.1 24575.514164: cpu_idle: state=4294967295 cpu_id=1
102536          <idle>-0     (-----) [001] d..2 24575.514175: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
102537 crtc_commit:111-253   (  253) [001] d.s2 24575.514242: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
102538 crtc_commit:111-253   (  253) [001] d.s3 24575.514284: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
102539  HwBinder:598_3-633   (  598) [002] ...1 24575.514312: tracing_mark_write: E|598
102540  HwBinder:598_3-633   (  598) [002] ...1 24575.514319: tracing_mark_write: E|598
102541  HwBinder:598_3-633   (  598) [002] ...1 24575.514394: tracing_mark_write: E|598
102542  HwBinder:598_3-633   (  598) [002] ...1 24575.514452: tracing_mark_write: E|598
102543  HwBinder:598_3-633   (  598) [002] .... 24575.514470: binder_transaction: transaction=1671294 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
102544          <idle>-0     (-----) [003] ...1 24575.514495: cpu_idle: state=4294967295 cpu_id=3
102545  HwBinder:598_3-633   (  598) [002] d..2 24575.514496: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
102546          <idle>-0     (-----) [003] d..1 24575.514499: cpu_idle: state=0 cpu_id=3
102547  HwBinder:598_3-633   (  598) [002] d..3 24575.514515: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
102548  HwBinder:598_3-633   (  598) [002] .... 24575.514521: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
102549          <idle>-0     (-----) [000] .n.1 24575.514522: cpu_idle: state=4294967295 cpu_id=0
102550          <idle>-0     (-----) [000] d..2 24575.514534: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
102551  surfaceflinger-23896 (23896) [000] .... 24575.514543: binder_transaction_received: transaction=1671294
102552  HwBinder:598_3-633   (  598) [002] d..2 24575.514616: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102553          <idle>-0     (-----) [002] d..1 24575.514635: cpu_idle: state=0 cpu_id=2
102554  surfaceflinger-23896 (23896) [000] d..1 24575.514796: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
102555  surfaceflinger-23896 (23896) [000] d..2 24575.514831: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
102556          <idle>-0     (-----) [002] .n.1 24575.514838: cpu_idle: state=4294967295 cpu_id=2
102557          <idle>-0     (-----) [002] d..2 24575.514852: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
102558  Binder:23896_5-25989 (23896) [002] .... 24575.514910: binder_transaction: transaction=1671295 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
102559  Binder:23896_5-25989 (23896) [002] d..2 24575.514923: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
102560  Binder:23896_5-25989 (23896) [002] d..3 24575.514939: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
102561  Binder:23896_5-25989 (23896) [002] .... 24575.514943: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
102562  Binder:23896_5-25989 (23896) [002] d..2 24575.514998: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
102563  surfaceflinger-23896 (23896) [000] d..2 24575.515004: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102564    RenderThread-25194 (24827) [002] .... 24575.515008: binder_transaction_received: transaction=1671295
102565          <idle>-0     (-----) [000] d..1 24575.515017: cpu_idle: state=0 cpu_id=0
102566 crtc_commit:111-253   (  253) [001] d..2 24575.515069: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
102567  kworker/u16:10-23868 (23868) [001] d..2 24575.515314: 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
102568          <idle>-0     (-----) [001] d..1 24575.515331: cpu_idle: state=0 cpu_id=1
102569          <idle>-0     (-----) [003] d.s3 24575.515361: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
102570          <idle>-0     (-----) [003] d.s4 24575.515374: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
102571          <idle>-0     (-----) [003] d.s4 24575.515384: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
102572          <idle>-0     (-----) [001] .n.1 24575.515390: cpu_idle: state=4294967295 cpu_id=1
102573          <idle>-0     (-----) [003] ...1 24575.515395: cpu_idle: state=4294967295 cpu_id=3
102574          <idle>-0     (-----) [003] d..1 24575.515401: cpu_idle: state=0 cpu_id=3
102575          <idle>-0     (-----) [001] d..2 24575.515403: 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
102576  kworker/u16:10-23868 (23868) [001] .... 24575.515500: clk_set_rate: l3_cluster0_vote_clk 300000000
102577  kworker/u16:10-23868 (23868) [001] .... 24575.515506: clk_set_rate: l3_clk 300000000
102578  kworker/u16:10-23868 (23868) [001] d..2 24575.515563: 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
102579          <idle>-0     (-----) [001] d..1 24575.515578: cpu_idle: state=0 cpu_id=1
102580          <idle>-0     (-----) [000] d.H3 24575.517689: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
102581          <idle>-0     (-----) [000] d.H3 24575.517708: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
102582          <idle>-0     (-----) [005] dnh2 24575.517714: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
102583          <idle>-0     (-----) [005] .n.1 24575.517718: cpu_idle: state=4294967295 cpu_id=5
102584          <idle>-0     (-----) [005] d..2 24575.517723: 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
102585          <idle>-0     (-----) [000] dnH4 24575.517723: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
102586          <idle>-0     (-----) [000] dns2 24575.517731: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
102587         sugov:4-560   (  560) [005] d..2 24575.517736: 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
102588          <idle>-0     (-----) [005] d..1 24575.517743: cpu_idle: state=0 cpu_id=5
102589          <idle>-0     (-----) [000] dns3 24575.517754: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
102590          <idle>-0     (-----) [000] .n.1 24575.517778: cpu_idle: state=4294967295 cpu_id=0
102591          <idle>-0     (-----) [000] d..2 24575.517788: 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
102592         sugov:0-559   (  559) [000] .... 24575.517839: clk_set_rate: pwrcl_clk 825600000
102593         sugov:0-559   (  559) [000] .... 24575.517856: clk_set_rate: cpu3_pwrcl_clk 902400000
102594         sugov:0-559   (  559) [000] .... 24575.517869: clk_set_rate: cpu2_pwrcl_clk 902400000
102595    RenderThread-25194 (24827) [002] .... 24575.517872: binder_transaction: transaction=1671296 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
102596         sugov:0-559   (  559) [000] .... 24575.517877: clk_set_rate: cpu1_pwrcl_clk 902400000
102597         sugov:0-559   (  559) [000] .... 24575.517887: clk_set_rate: cpu0_pwrcl_clk 825600000
102598    RenderThread-25194 (24827) [002] ...2 24575.517890: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
102599    RenderThread-25194 (24827) [002] d..4 24575.517896: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
102600    RenderThread-25194 (24827) [002] dn.5 24575.517926: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
102601    RenderThread-25194 (24827) [002] d..2 24575.517942: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
102602  Binder:23896_5-25989 (23896) [002] .... 24575.517953: binder_transaction_received: transaction=1671296
102603         sugov:0-559   (  559) [000] .... 24575.518004: cpu_frequency: state=825600 cpu_id=0
102604         sugov:0-559   (  559) [000] .... 24575.518038: cpu_frequency: state=825600 cpu_id=1
102605         sugov:0-559   (  559) [000] .... 24575.518043: cpu_frequency: state=825600 cpu_id=2
102606         sugov:0-559   (  559) [000] .... 24575.518050: cpu_frequency: state=825600 cpu_id=3
102607         sugov:0-559   (  559) [000] d..2 24575.518074: 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
102608     rcu_preempt-7     (    7) [000] d..2 24575.518087: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
102609     rcu_preempt-7     (    7) [000] d..3 24575.518111: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
102610     rcu_preempt-7     (    7) [000] d..2 24575.518124: 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
102611         rcuop/0-10    (   10) [000] d..2 24575.518136: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
102612  Binder:23896_5-25989 (23896) [002] .... 24575.518138: binder_transaction: transaction=1671297 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
102613         rcuop/0-10    (   10) [000] d..3 24575.518150: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
102614  Binder:23896_5-25989 (23896) [002] .... 24575.518152: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
102615         rcuop/0-10    (   10) [000] d..2 24575.518160: 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
102616     rcu_preempt-7     (    7) [000] d..2 24575.518196: 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
102617          <idle>-0     (-----) [000] d..1 24575.518216: cpu_idle: state=0 cpu_id=0
102618  Binder:23896_5-25989 (23896) [002] d..2 24575.518222: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
102619    RenderThread-25194 (24827) [002] .... 24575.518234: binder_transaction_received: transaction=1671297
102620    RenderThread-25194 (24827) [002] d..2 24575.518368: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102621          <idle>-0     (-----) [002] d..1 24575.518392: cpu_idle: state=0 cpu_id=2
102622          <idle>-0     (-----) [005] ...1 24575.518759: cpu_idle: state=4294967295 cpu_id=5
102623          <idle>-0     (-----) [005] d..1 24575.518762: cpu_idle: state=0 cpu_id=5
102624          <idle>-0     (-----) [000] d.h5 24575.520360: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
102625          <idle>-0     (-----) [000] d.h6 24575.520383: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
102626          <idle>-0     (-----) [003] .n.1 24575.520388: cpu_idle: state=4294967295 cpu_id=3
102627          <idle>-0     (-----) [000] d.h5 24575.520390: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
102628          <idle>-0     (-----) [003] d..2 24575.520402: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
102629          <idle>-0     (-----) [000] d.h6 24575.520404: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
102630          <idle>-0     (-----) [001] .n.1 24575.520412: cpu_idle: state=4294967295 cpu_id=1
102631  crtc_event:111-254   (  254) [003] d..3 24575.520422: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
102632          <idle>-0     (-----) [000] ...1 24575.520425: cpu_idle: state=4294967295 cpu_id=0
102633          <idle>-0     (-----) [001] d..2 24575.520427: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
102634          <idle>-0     (-----) [000] d..1 24575.520431: cpu_idle: state=0 cpu_id=0
102635  crtc_event:111-254   (  254) [003] d..4 24575.520445: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
102636          <idle>-0     (-----) [002] .n.1 24575.520454: cpu_idle: state=4294967295 cpu_id=2
102637          <idle>-0     (-----) [002] d..2 24575.520468: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
102638  crtc_event:111-254   (  254) [003] d..2 24575.520476: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102639          <idle>-0     (-----) [003] d..1 24575.520490: cpu_idle: state=0 cpu_id=3
102640 crtc_commit:111-253   (  253) [001] d..2 24575.520616: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
102641          <idle>-0     (-----) [001] d..1 24575.520627: cpu_idle: state=0 cpu_id=1
102642 kgsl_worker_thr-246   (  246) [002] d..2 24575.520699: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
102643          <idle>-0     (-----) [002] d..1 24575.520712: cpu_idle: state=0 cpu_id=2
102644          <idle>-0     (-----) [002] d.h2 24575.520787: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
102645          <idle>-0     (-----) [002] dnh3 24575.520803: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
102646          <idle>-0     (-----) [002] .n.1 24575.520813: cpu_idle: state=4294967295 cpu_id=2
102647          <idle>-0     (-----) [002] d..2 24575.520824: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
102648 kgsl_worker_thr-246   (  246) [002] d..2 24575.520850: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
102649 kgsl_worker_thr-246   (  246) [002] d..3 24575.520901: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
102650          <idle>-0     (-----) [001] d.s3 24575.520920: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
102651          <idle>-0     (-----) [001] d.s4 24575.520942: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
102652          <idle>-0     (-----) [003] .n.1 24575.520948: cpu_idle: state=4294967295 cpu_id=3
102653 kgsl_worker_thr-246   (  246) [002] d..2 24575.520958: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
102654          <idle>-0     (-----) [003] d..2 24575.520961: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
102655  kworker/u16:10-23868 (23868) [002] d..2 24575.520964: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
102656          <idle>-0     (-----) [001] ...1 24575.520975: cpu_idle: state=4294967295 cpu_id=1
102657          <idle>-0     (-----) [001] d..1 24575.520981: cpu_idle: state=0 cpu_id=1
102658  kworker/u16:10-23868 (23868) [002] d..3 24575.520995: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
102659          <idle>-0     (-----) [001] .n.1 24575.521000: cpu_idle: state=4294967295 cpu_id=1
102660  crtc_event:111-254   (  254) [003] d..2 24575.521000: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102661          <idle>-0     (-----) [003] d..1 24575.521011: cpu_idle: state=0 cpu_id=3
102662          <idle>-0     (-----) [001] d..2 24575.521016: 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
102663  kworker/u16:16-25995 (25995) [001] d..2 24575.521118: 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
102664          <idle>-0     (-----) [001] d..1 24575.521129: cpu_idle: state=0 cpu_id=1
102665  kworker/u16:10-23868 (23868) [002] d..2 24575.521445: 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
102666          <idle>-0     (-----) [002] d..1 24575.521465: cpu_idle: state=0 cpu_id=2
102667          <idle>-0     (-----) [000] d.h3 24575.522433: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
102668          <idle>-0     (-----) [000] d.h4 24575.522451: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
102669          <idle>-0     (-----) [002] .n.1 24575.522459: cpu_idle: state=4294967295 cpu_id=2
102670          <idle>-0     (-----) [000] ...1 24575.522468: cpu_idle: state=4294967295 cpu_id=0
102671          <idle>-0     (-----) [002] d..2 24575.522471: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
102672          <idle>-0     (-----) [000] d..1 24575.522473: cpu_idle: state=0 cpu_id=0
102673 kgsl_worker_thr-246   (  246) [002] d..2 24575.522553: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102674          <idle>-0     (-----) [002] d..1 24575.522566: cpu_idle: state=0 cpu_id=2
102675          <idle>-0     (-----) [000] d.h5 24575.522680: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
102676          <idle>-0     (-----) [000] d.h6 24575.522696: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
102677          <idle>-0     (-----) [001] .n.1 24575.522702: cpu_idle: state=4294967295 cpu_id=1
102678          <idle>-0     (-----) [000] ...1 24575.522711: cpu_idle: state=4294967295 cpu_id=0
102679          <idle>-0     (-----) [001] d..2 24575.522712: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
102680          <idle>-0     (-----) [000] d..1 24575.522716: cpu_idle: state=0 cpu_id=0
102681 crtc_commit:111-253   (  253) [001] d..2 24575.522802: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102682          <idle>-0     (-----) [001] d..1 24575.522816: cpu_idle: state=0 cpu_id=1
102683          <idle>-0     (-----) [000] d.h5 24575.522987: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
102684          <idle>-0     (-----) [000] d.h6 24575.523004: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
102685          <idle>-0     (-----) [003] .n.1 24575.523010: cpu_idle: state=4294967295 cpu_id=3
102686          <idle>-0     (-----) [003] d..2 24575.523020: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
102687          <idle>-0     (-----) [000] ...1 24575.523024: cpu_idle: state=4294967295 cpu_id=0
102688          <idle>-0     (-----) [000] d..1 24575.523029: cpu_idle: state=0 cpu_id=0
102689  crtc_event:111-254   (  254) [003] d..2 24575.523048: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102690          <idle>-0     (-----) [003] d..1 24575.523060: cpu_idle: state=0 cpu_id=3
102691          <idle>-0     (-----) [000] d.s2 24575.524249: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
102692          <idle>-0     (-----) [000] dns3 24575.524272: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
102693          <idle>-0     (-----) [000] dns3 24575.524279: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
102694          <idle>-0     (-----) [000] dns4 24575.524318: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
102695          <idle>-0     (-----) [000] .n.1 24575.524343: cpu_idle: state=4294967295 cpu_id=0
102696          <idle>-0     (-----) [000] d..2 24575.524360: 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
102697     rcu_preempt-7     (    7) [000] d..2 24575.524372: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
102698     rcu_preempt-7     (    7) [000] d..3 24575.524388: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
102699     rcu_preempt-7     (    7) [000] d..2 24575.524401: 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
102700         rcuop/0-10    (   10) [000] d..2 24575.524418: 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
102701  kworker/u16:10-23868 (23868) [000] .... 24575.524450: clk_set_rate: l3_cluster0_vote_clk 403200000
102702  kworker/u16:10-23868 (23868) [000] .... 24575.524456: clk_set_rate: l3_clk 403200000
102703          <idle>-0     (-----) [001] d.h2 24575.524528: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
102704          <idle>-0     (-----) [001] dnh3 24575.524545: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
102705          <idle>-0     (-----) [001] .n.1 24575.524555: cpu_idle: state=4294967295 cpu_id=1
102706          <idle>-0     (-----) [001] d..2 24575.524570: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
102707        DispSync-23904 (23896) [001] d..1 24575.524589: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
102708        DispSync-23904 (23896) [001] d..2 24575.524606: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
102709          <idle>-0     (-----) [003] .n.1 24575.524612: cpu_idle: state=4294967295 cpu_id=3
102710          <idle>-0     (-----) [003] d..2 24575.524623: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
102711        DispSync-23904 (23896) [001] d..2 24575.524644: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102712          <idle>-0     (-----) [001] d..1 24575.524657: cpu_idle: state=0 cpu_id=1
102713  appEventThread-23905 (23896) [003] d..3 24575.524667: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
102714  appEventThread-23905 (23896) [003] d..4 24575.524701: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
102715          <idle>-0     (-----) [001] .n.1 24575.524707: cpu_idle: state=4294967295 cpu_id=1
102716          <idle>-0     (-----) [001] d..2 24575.524721: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
102717  kworker/u16:10-23868 (23868) [000] d..2 24575.524728: 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
102718  appEventThread-23905 (23896) [003] d..2 24575.524740: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102719          <idle>-0     (-----) [000] d..1 24575.524748: cpu_idle: state=0 cpu_id=0
102720          <idle>-0     (-----) [003] d..1 24575.524755: cpu_idle: state=0 cpu_id=3
102721 s.nexuslauncher-24827 (24827) [001] .... 24575.525095: binder_transaction: transaction=1671298 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
102722 s.nexuslauncher-24827 (24827) [001] d..4 24575.525106: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
102723 s.nexuslauncher-24827 (24827) [001] d..5 24575.525144: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
102724          <idle>-0     (-----) [000] .n.1 24575.525149: cpu_idle: state=4294967295 cpu_id=0
102725          <idle>-0     (-----) [000] d..2 24575.525165: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
102726  Binder:23896_5-25989 (23896) [000] .... 24575.525174: binder_transaction_received: transaction=1671298
102727 s.nexuslauncher-24827 (24827) [001] d..3 24575.525184: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
102728 s.nexuslauncher-24827 (24827) [001] d..4 24575.525204: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
102729          <idle>-0     (-----) [002] .n.1 24575.525210: cpu_idle: state=4294967295 cpu_id=2
102730          <idle>-0     (-----) [003] d.s3 24575.525213: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
102731  Binder:23896_5-25989 (23896) [000] d..1 24575.525214: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
102732          <idle>-0     (-----) [002] d..2 24575.525223: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
102733          <idle>-0     (-----) [003] d.s4 24575.525246: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
102734  Binder:23896_5-25989 (23896) [000] dn.2 24575.525248: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
102735          <idle>-0     (-----) [003] dns4 24575.525252: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
102736  Binder:23896_5-25989 (23896) [000] d..2 24575.525259: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
102737          <idle>-0     (-----) [003] .n.1 24575.525261: cpu_idle: state=4294967295 cpu_id=3
102738          <idle>-0     (-----) [003] d..2 24575.525274: 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
102739    RenderThread-25194 (24827) [002] d..2 24575.525281: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102740  appEventThread-23905 (23896) [000] d..2 24575.525283: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
102741  Binder:23896_5-25989 (23896) [000] d..1 24575.525290: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
102742          <idle>-0     (-----) [002] d..1 24575.525294: cpu_idle: state=0 cpu_id=2
102743  Binder:23896_5-25989 (23896) [000] d..2 24575.525313: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
102744  kworker/u16:10-23868 (23868) [003] d..2 24575.525322: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=appEventThread next_pid=23905 next_prio=97
102745  Binder:23896_5-25989 (23896) [000] d..2 24575.525371: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102746  appEventThread-23905 (23896) [003] d..2 24575.525376: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102747          <idle>-0     (-----) [000] d..1 24575.525390: cpu_idle: state=0 cpu_id=0
102748          <idle>-0     (-----) [003] d..1 24575.525390: cpu_idle: state=0 cpu_id=3
102749 s.nexuslauncher-24827 (24827) [001] d..3 24575.525770: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
102750 s.nexuslauncher-24827 (24827) [001] d..4 24575.525794: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
102751          <idle>-0     (-----) [002] .n.1 24575.525799: cpu_idle: state=4294967295 cpu_id=2
102752          <idle>-0     (-----) [002] d..2 24575.525812: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
102753 s.nexuslauncher-24827 (24827) [001] d..2 24575.525836: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102754          <idle>-0     (-----) [001] d..1 24575.525856: cpu_idle: state=0 cpu_id=1
102755    RenderThread-25194 (24827) [002] d..1 24575.526095: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
102756    RenderThread-25194 (24827) [002] d..2 24575.526133: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
102757          <idle>-0     (-----) [000] .n.1 24575.526139: cpu_idle: state=4294967295 cpu_id=0
102758          <idle>-0     (-----) [000] d..2 24575.526153: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
102759    RenderThread-25194 (24827) [002] .... 24575.526204: binder_transaction: transaction=1671299 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
102760    RenderThread-25194 (24827) [002] ...2 24575.526214: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
102761    RenderThread-25194 (24827) [002] d..4 24575.526218: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
102762    RenderThread-25194 (24827) [002] dn.5 24575.526242: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
102763    RenderThread-25194 (24827) [002] d..2 24575.526253: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
102764  Binder:23896_5-25989 (23896) [002] .... 24575.526264: binder_transaction_received: transaction=1671299
102765 s.nexuslauncher-24827 (24827) [000] d..2 24575.526309: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102766  Binder:23896_5-25989 (23896) [002] d..2 24575.526315: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
102767          <idle>-0     (-----) [000] d..1 24575.526328: cpu_idle: state=0 cpu_id=0
102768    RenderThread-25194 (24827) [002] d..2 24575.526344: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102769          <idle>-0     (-----) [002] d..1 24575.526363: cpu_idle: state=0 cpu_id=2
102770          <idle>-0     (-----) [000] d..2 24575.527874: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
102771          <idle>-0     (-----) [000] dn.3 24575.527891: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
102772          <idle>-0     (-----) [000] .n.1 24575.527896: cpu_idle: state=4294967295 cpu_id=0
102773          <idle>-0     (-----) [000] d..2 24575.527913: 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
102774     ksoftirqd/0-3     (    3) [000] d..2 24575.527953: 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
102775          <idle>-0     (-----) [000] d..1 24575.527965: cpu_idle: state=0 cpu_id=0
102776          <idle>-0     (-----) [001] d.h2 24575.528525: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
102777          <idle>-0     (-----) [001] dnh3 24575.528543: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
102778          <idle>-0     (-----) [001] .n.1 24575.528552: cpu_idle: state=4294967295 cpu_id=1
102779          <idle>-0     (-----) [001] d..2 24575.528567: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
102780        DispSync-23904 (23896) [001] d..1 24575.528591: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
102781        DispSync-23904 (23896) [001] d..2 24575.528611: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
102782          <idle>-0     (-----) [003] .n.1 24575.528617: cpu_idle: state=4294967295 cpu_id=3
102783          <idle>-0     (-----) [003] d..2 24575.528629: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
102784        DispSync-23904 (23896) [001] d..2 24575.528647: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102785   sfEventThread-23906 (23896) [003] d..3 24575.528661: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
102786          <idle>-0     (-----) [001] d..1 24575.528663: cpu_idle: state=0 cpu_id=1
102787   sfEventThread-23906 (23896) [003] d..4 24575.528685: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
102788          <idle>-0     (-----) [000] .n.1 24575.528690: cpu_idle: state=4294967295 cpu_id=0
102789          <idle>-0     (-----) [000] d..2 24575.528701: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
102790   sfEventThread-23906 (23896) [003] d..2 24575.528717: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102791          <idle>-0     (-----) [003] d..1 24575.528733: cpu_idle: state=0 cpu_id=3
102792  surfaceflinger-23896 (23896) [000] d..1 24575.528925: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
102793  surfaceflinger-23896 (23896) [000] d..2 24575.528960: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
102794          <idle>-0     (-----) [001] .n.1 24575.528967: cpu_idle: state=4294967295 cpu_id=1
102795          <idle>-0     (-----) [001] d..2 24575.528981: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
102796  Binder:23896_5-25989 (23896) [001] d..2 24575.529014: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102797          <idle>-0     (-----) [001] d..1 24575.529027: cpu_idle: state=0 cpu_id=1
102798  surfaceflinger-23896 (23896) [000] d..2 24575.529125: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
102799  surfaceflinger-23896 (23896) [000] d..3 24575.529153: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
102800  surfaceflinger-23896 (23896) [000] d..1 24575.529187: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
102801  surfaceflinger-23896 (23896) [000] d..2 24575.529207: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
102802          <idle>-0     (-----) [003] .n.1 24575.529214: cpu_idle: state=4294967295 cpu_id=3
102803          <idle>-0     (-----) [003] d..2 24575.529226: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
102804   sfEventThread-23906 (23896) [003] d..2 24575.529288: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
102805         rcuop/0-10    (   10) [003] d..2 24575.529295: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
102806         rcuop/0-10    (   10) [003] d..3 24575.529334: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
102807         rcuop/0-10    (   10) [003] d..2 24575.529346: 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
102808     rcu_preempt-7     (    7) [003] d..2 24575.529371: 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
102809          <idle>-0     (-----) [003] d..1 24575.529385: cpu_idle: state=0 cpu_id=3
102810  surfaceflinger-23896 (23896) [000] ...1 24575.529412: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
102811  surfaceflinger-23896 (23896) [000] ...1 24575.529422: tracing_mark_write: E|23896
102812  surfaceflinger-23896 (23896) [000] .... 24575.529487: binder_transaction: transaction=1671300 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
102813  surfaceflinger-23896 (23896) [000] ...2 24575.529519: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
102814  surfaceflinger-23896 (23896) [000] d..4 24575.529531: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
102815  surfaceflinger-23896 (23896) [000] d..5 24575.529556: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
102816          <idle>-0     (-----) [002] .n.1 24575.529563: cpu_idle: state=4294967295 cpu_id=2
102817          <idle>-0     (-----) [002] d..2 24575.529577: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
102818  HwBinder:598_3-633   (  598) [002] .... 24575.529590: binder_transaction_received: transaction=1671300
102819  surfaceflinger-23896 (23896) [000] d..2 24575.529593: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102820          <idle>-0     (-----) [000] d..1 24575.529615: cpu_idle: state=0 cpu_id=0
102821  HwBinder:598_3-633   (  598) [002] ...1 24575.529649: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
102822  HwBinder:598_3-633   (  598) [002] ...1 24575.529813: tracing_mark_write: B|598|HWCSession::PresentDisplay::
102823  HwBinder:598_3-633   (  598) [002] ...1 24575.530037: tracing_mark_write: B|598|HWDeviceDRM::Commit::
102824  HwBinder:598_3-633   (  598) [002] ...1 24575.530054: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
102825  HwBinder:598_3-633   (  598) [002] d..2 24575.530796: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
102826  HwBinder:598_3-633   (  598) [002] d..3 24575.530823: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
102827          <idle>-0     (-----) [001] .n.1 24575.530829: cpu_idle: state=4294967295 cpu_id=1
102828          <idle>-0     (-----) [001] d..2 24575.530840: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
102829  HwBinder:598_3-633   (  598) [002] ...1 24575.530997: tracing_mark_write: E|598
102830  HwBinder:598_3-633   (  598) [002] ...1 24575.531004: tracing_mark_write: E|598
102831  HwBinder:598_3-633   (  598) [002] ...1 24575.531081: tracing_mark_write: E|598
102832  HwBinder:598_3-633   (  598) [002] ...1 24575.531143: tracing_mark_write: E|598
102833  HwBinder:598_3-633   (  598) [002] .... 24575.531163: binder_transaction: transaction=1671301 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
102834  HwBinder:598_3-633   (  598) [002] d..2 24575.531192: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
102835  HwBinder:598_3-633   (  598) [002] d..3 24575.531213: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
102836  HwBinder:598_3-633   (  598) [002] .... 24575.531219: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
102837          <idle>-0     (-----) [000] .n.1 24575.531221: cpu_idle: state=4294967295 cpu_id=0
102838          <idle>-0     (-----) [000] d..2 24575.531234: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
102839  surfaceflinger-23896 (23896) [000] .... 24575.531244: binder_transaction_received: transaction=1671301
102840  HwBinder:598_3-633   (  598) [002] d..2 24575.531322: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102841          <idle>-0     (-----) [002] d..1 24575.531343: cpu_idle: state=0 cpu_id=2
102842  surfaceflinger-23896 (23896) [000] d..1 24575.531517: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
102843  surfaceflinger-23896 (23896) [000] d..2 24575.531553: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
102844          <idle>-0     (-----) [002] .n.1 24575.531561: cpu_idle: state=4294967295 cpu_id=2
102845          <idle>-0     (-----) [002] d..2 24575.531575: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
102846  Binder:23896_5-25989 (23896) [002] .... 24575.531642: binder_transaction: transaction=1671302 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
102847  Binder:23896_5-25989 (23896) [002] d..2 24575.531657: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
102848  Binder:23896_5-25989 (23896) [002] d..3 24575.531675: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
102849  Binder:23896_5-25989 (23896) [002] .... 24575.531680: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
102850 crtc_commit:111-253   (  253) [001] d..2 24575.531742: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
102851  Binder:23896_5-25989 (23896) [002] d..2 24575.531743: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
102852  surfaceflinger-23896 (23896) [000] d..2 24575.531746: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102853    RenderThread-25194 (24827) [002] .... 24575.531754: binder_transaction_received: transaction=1671302
102854          <idle>-0     (-----) [001] d..1 24575.531760: cpu_idle: state=0 cpu_id=1
102855          <idle>-0     (-----) [000] d..1 24575.531769: cpu_idle: state=0 cpu_id=0
102856          <idle>-0     (-----) [000] ...1 24575.533767: cpu_idle: state=4294967295 cpu_id=0
102857          <idle>-0     (-----) [000] d..1 24575.533773: cpu_idle: state=0 cpu_id=0
102858          <idle>-0     (-----) [003] d.s2 24575.534251: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
102859    RenderThread-25194 (24827) [002] d.s2 24575.534262: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
102860          <idle>-0     (-----) [003] dns3 24575.534269: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
102861    RenderThread-25194 (24827) [002] d.s3 24575.534295: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
102862          <idle>-0     (-----) [003] .n.1 24575.534303: cpu_idle: state=4294967295 cpu_id=3
102863          <idle>-0     (-----) [003] d..2 24575.534316: 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
102864     rcu_preempt-7     (    7) [003] d..2 24575.534328: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
102865     rcu_preempt-7     (    7) [003] d..3 24575.534344: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
102866     rcu_preempt-7     (    7) [003] d..2 24575.534355: 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
102867         rcuop/0-10    (   10) [003] d..2 24575.534364: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
102868         rcuop/0-10    (   10) [003] d..3 24575.534376: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
102869         rcuop/0-10    (   10) [003] d..2 24575.534386: 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
102870     rcu_preempt-7     (    7) [003] d..2 24575.534398: 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
102871  kworker/u16:10-23868 (23868) [003] d..2 24575.534567: 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
102872          <idle>-0     (-----) [003] d..1 24575.534583: cpu_idle: state=0 cpu_id=3
102873    RenderThread-25194 (24827) [002] .... 24575.534617: binder_transaction: transaction=1671303 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
102874    RenderThread-25194 (24827) [002] ...2 24575.534633: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
102875    RenderThread-25194 (24827) [002] d..4 24575.534641: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
102876    RenderThread-25194 (24827) [002] dn.5 24575.534663: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
102877    RenderThread-25194 (24827) [002] d..2 24575.534675: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
102878  Binder:23896_5-25989 (23896) [002] .... 24575.534685: binder_transaction_received: transaction=1671303
102879  Binder:23896_5-25989 (23896) [002] .... 24575.534878: binder_transaction: transaction=1671304 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
102880  Binder:23896_5-25989 (23896) [002] .... 24575.534888: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
102881  Binder:23896_5-25989 (23896) [002] d..2 24575.534957: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
102882    RenderThread-25194 (24827) [002] .... 24575.534968: binder_transaction_received: transaction=1671304
102883    RenderThread-25194 (24827) [002] d..2 24575.535100: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102884          <idle>-0     (-----) [002] d..1 24575.535120: cpu_idle: state=0 cpu_id=2
102885          <idle>-0     (-----) [000] d.h5 24575.536824: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
102886          <idle>-0     (-----) [000] d.h6 24575.536846: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
102887          <idle>-0     (-----) [003] .n.1 24575.536853: cpu_idle: state=4294967295 cpu_id=3
102888          <idle>-0     (-----) [000] d.h5 24575.536854: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
102889          <idle>-0     (-----) [003] d..2 24575.536865: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
102890          <idle>-0     (-----) [000] d.h6 24575.536867: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
102891          <idle>-0     (-----) [001] .n.1 24575.536874: cpu_idle: state=4294967295 cpu_id=1
102892  crtc_event:111-254   (  254) [003] d..3 24575.536885: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
102893          <idle>-0     (-----) [000] ...1 24575.536887: cpu_idle: state=4294967295 cpu_id=0
102894          <idle>-0     (-----) [001] d..2 24575.536888: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
102895          <idle>-0     (-----) [000] d..1 24575.536894: cpu_idle: state=0 cpu_id=0
102896  crtc_event:111-254   (  254) [003] d..4 24575.536904: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
102897          <idle>-0     (-----) [002] .n.1 24575.536912: cpu_idle: state=4294967295 cpu_id=2
102898          <idle>-0     (-----) [002] d..2 24575.536925: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
102899  crtc_event:111-254   (  254) [003] d..2 24575.536932: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102900          <idle>-0     (-----) [003] d..1 24575.536944: cpu_idle: state=0 cpu_id=3
102901 crtc_commit:111-253   (  253) [001] d..2 24575.537058: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
102902          <idle>-0     (-----) [001] d..1 24575.537069: cpu_idle: state=0 cpu_id=1
102903 kgsl_worker_thr-246   (  246) [002] d..2 24575.537142: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
102904          <idle>-0     (-----) [002] d..1 24575.537154: cpu_idle: state=0 cpu_id=2
102905          <idle>-0     (-----) [002] d.h2 24575.537230: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
102906          <idle>-0     (-----) [002] dnh3 24575.537245: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
102907          <idle>-0     (-----) [002] .n.1 24575.537254: cpu_idle: state=4294967295 cpu_id=2
102908          <idle>-0     (-----) [002] d..2 24575.537264: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
102909 kgsl_worker_thr-246   (  246) [002] d..2 24575.537289: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
102910 kgsl_worker_thr-246   (  246) [002] d..3 24575.537333: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
102911 kgsl_worker_thr-246   (  246) [002] d..2 24575.537349: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
102912          <idle>-0     (-----) [001] d.H3 24575.537679: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
102913          <idle>-0     (-----) [001] d.H3 24575.537698: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
102914          <idle>-0     (-----) [005] dnh2 24575.537702: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
102915          <idle>-0     (-----) [005] .n.1 24575.537706: cpu_idle: state=4294967295 cpu_id=5
102916          <idle>-0     (-----) [005] d..2 24575.537711: 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
102917          <idle>-0     (-----) [001] d.H4 24575.537715: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
102918          <idle>-0     (-----) [000] .n.1 24575.537720: cpu_idle: state=4294967295 cpu_id=0
102919          <idle>-0     (-----) [001] d.s3 24575.537724: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
102920         sugov:4-560   (  560) [005] d..2 24575.537725: 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
102921          <idle>-0     (-----) [005] d..1 24575.537730: cpu_idle: state=0 cpu_id=5
102922          <idle>-0     (-----) [000] d..2 24575.537734: 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
102923          <idle>-0     (-----) [001] d.s4 24575.537739: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
102924          <idle>-0     (-----) [003] .n.1 24575.537746: cpu_idle: state=4294967295 cpu_id=3
102925          <idle>-0     (-----) [001] d.s3 24575.537750: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
102926          <idle>-0     (-----) [003] d..2 24575.537758: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
102927          <idle>-0     (-----) [001] dns4 24575.537768: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
102928         sugov:0-559   (  559) [000] .... 24575.537773: clk_set_rate: pwrcl_clk 1132800000
102929          <idle>-0     (-----) [001] .n.1 24575.537790: cpu_idle: state=4294967295 cpu_id=1
102930  crtc_event:111-254   (  254) [003] d..2 24575.537790: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102931         sugov:0-559   (  559) [000] .... 24575.537790: clk_set_rate: cpu3_pwrcl_clk 825600000
102932          <idle>-0     (-----) [003] d..1 24575.537798: cpu_idle: state=0 cpu_id=3
102933         sugov:0-559   (  559) [000] .... 24575.537801: clk_set_rate: cpu2_pwrcl_clk 825600000
102934          <idle>-0     (-----) [001] d..2 24575.537802: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
102935         sugov:0-559   (  559) [000] .... 24575.537811: clk_set_rate: cpu1_pwrcl_clk 825600000
102936         sugov:0-559   (  559) [000] .... 24575.537820: clk_set_rate: cpu0_pwrcl_clk 1132800000
102937  kworker/u16:10-23868 (23868) [002] d..2 24575.537827: 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
102938         sugov:0-559   (  559) [000] .... 24575.537833: cpu_frequency: state=1132800 cpu_id=0
102939          <idle>-0     (-----) [002] d..1 24575.537843: cpu_idle: state=0 cpu_id=2
102940         sugov:0-559   (  559) [000] .... 24575.537859: cpu_frequency: state=1132800 cpu_id=1
102941         sugov:0-559   (  559) [000] .... 24575.537864: cpu_frequency: state=1132800 cpu_id=2
102942         sugov:0-559   (  559) [000] .... 24575.537870: cpu_frequency: state=1132800 cpu_id=3
102943     kworker/1:1-13091 (13091) [001] d..2 24575.537891: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102944         sugov:0-559   (  559) [000] d..2 24575.537899: 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
102945          <idle>-0     (-----) [001] d..1 24575.537903: cpu_idle: state=0 cpu_id=1
102946          <idle>-0     (-----) [000] d..1 24575.537911: cpu_idle: state=0 cpu_id=0
102947          <idle>-0     (-----) [005] ...1 24575.538745: cpu_idle: state=4294967295 cpu_id=5
102948          <idle>-0     (-----) [005] d..1 24575.538748: cpu_idle: state=0 cpu_id=5
102949          <idle>-0     (-----) [000] d.h3 24575.538856: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
102950          <idle>-0     (-----) [000] d.h4 24575.538873: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
102951          <idle>-0     (-----) [002] .n.1 24575.538879: cpu_idle: state=4294967295 cpu_id=2
102952          <idle>-0     (-----) [000] ...1 24575.538888: cpu_idle: state=4294967295 cpu_id=0
102953          <idle>-0     (-----) [002] d..2 24575.538888: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
102954          <idle>-0     (-----) [000] d..1 24575.538893: cpu_idle: state=0 cpu_id=0
102955 kgsl_worker_thr-246   (  246) [002] d..2 24575.538958: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102956          <idle>-0     (-----) [002] d..1 24575.538967: cpu_idle: state=0 cpu_id=2
102957          <idle>-0     (-----) [000] d.h5 24575.539148: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
102958          <idle>-0     (-----) [000] d.h6 24575.539162: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
102959          <idle>-0     (-----) [001] .n.1 24575.539168: cpu_idle: state=4294967295 cpu_id=1
102960          <idle>-0     (-----) [000] ...1 24575.539175: cpu_idle: state=4294967295 cpu_id=0
102961          <idle>-0     (-----) [001] d..2 24575.539177: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
102962          <idle>-0     (-----) [000] d..1 24575.539180: cpu_idle: state=0 cpu_id=0
102963 crtc_commit:111-253   (  253) [001] d..2 24575.539253: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102964          <idle>-0     (-----) [001] d..1 24575.539263: cpu_idle: state=0 cpu_id=1
102965          <idle>-0     (-----) [000] d.h5 24575.539454: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
102966          <idle>-0     (-----) [000] d.h6 24575.539468: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
102967          <idle>-0     (-----) [003] .n.1 24575.539473: cpu_idle: state=4294967295 cpu_id=3
102968          <idle>-0     (-----) [003] d..2 24575.539480: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
102969          <idle>-0     (-----) [000] ...1 24575.539485: cpu_idle: state=4294967295 cpu_id=0
102970          <idle>-0     (-----) [000] d..1 24575.539491: cpu_idle: state=0 cpu_id=0
102971  crtc_event:111-254   (  254) [003] d..2 24575.539501: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102972          <idle>-0     (-----) [003] d..1 24575.539506: cpu_idle: state=0 cpu_id=3
102973          <idle>-0     (-----) [002] d.h2 24575.539588: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=002
102974          <idle>-0     (-----) [002] dnh3 24575.539607: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=002
102975          <idle>-0     (-----) [002] .n.1 24575.539616: cpu_idle: state=4294967295 cpu_id=2
102976          <idle>-0     (-----) [002] d..2 24575.539626: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=bluetooth@1.0-s next_pid=24508 next_prio=98
102977 bluetooth@1.0-s-24508 (  759) [002] d..2 24575.539747: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102978          <idle>-0     (-----) [002] d..1 24575.539760: cpu_idle: state=0 cpu_id=2
102979          <idle>-0     (-----) [003] d.s2 24575.540910: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
102980          <idle>-0     (-----) [003] dns3 24575.540927: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
102981          <idle>-0     (-----) [003] .n.1 24575.540938: cpu_idle: state=4294967295 cpu_id=3
102982          <idle>-0     (-----) [003] d..2 24575.540945: 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
102983     rcu_preempt-7     (    7) [003] d..2 24575.540956: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
102984     rcu_preempt-7     (    7) [003] d..3 24575.540969: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
102985     rcu_preempt-7     (    7) [003] d..2 24575.540979: 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
102986          <idle>-0     (-----) [001] d.h2 24575.540999: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
102987         rcuop/0-10    (   10) [003] d..2 24575.541006: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102988          <idle>-0     (-----) [001] dnh3 24575.541013: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
102989          <idle>-0     (-----) [003] d..1 24575.541017: cpu_idle: state=0 cpu_id=3
102990          <idle>-0     (-----) [001] .n.1 24575.541022: cpu_idle: state=4294967295 cpu_id=1
102991          <idle>-0     (-----) [000] ...1 24575.541027: cpu_idle: state=4294967295 cpu_id=0
102992          <idle>-0     (-----) [000] d..1 24575.541031: cpu_idle: state=0 cpu_id=0
102993          <idle>-0     (-----) [001] d..2 24575.541033: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
102994        DispSync-23904 (23896) [001] d..1 24575.541050: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
102995        DispSync-23904 (23896) [001] d..2 24575.541066: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
102996          <idle>-0     (-----) [003] .n.1 24575.541071: cpu_idle: state=4294967295 cpu_id=3
102997          <idle>-0     (-----) [003] d..2 24575.541080: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
102998        DispSync-23904 (23896) [001] d..2 24575.541093: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102999          <idle>-0     (-----) [001] d..1 24575.541103: cpu_idle: state=0 cpu_id=1
103000  appEventThread-23905 (23896) [003] d..3 24575.541119: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
103001  appEventThread-23905 (23896) [003] d..4 24575.541138: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
103002          <idle>-0     (-----) [000] .n.1 24575.541143: cpu_idle: state=4294967295 cpu_id=0
103003          <idle>-0     (-----) [000] d..2 24575.541155: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
103004  appEventThread-23905 (23896) [003] d..2 24575.541172: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103005          <idle>-0     (-----) [003] d..1 24575.541184: cpu_idle: state=0 cpu_id=3
103006          <idle>-0     (-----) [002] ...1 24575.541253: cpu_idle: state=4294967295 cpu_id=2
103007          <idle>-0     (-----) [002] d..1 24575.541257: cpu_idle: state=0 cpu_id=2
103008 s.nexuslauncher-24827 (24827) [000] .... 24575.541456: binder_transaction: transaction=1671305 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
103009 s.nexuslauncher-24827 (24827) [000] d..4 24575.541466: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
103010 s.nexuslauncher-24827 (24827) [000] d..5 24575.541500: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
103011          <idle>-0     (-----) [001] .n.1 24575.541505: cpu_idle: state=4294967295 cpu_id=1
103012          <idle>-0     (-----) [001] d..2 24575.541517: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
103013  Binder:23896_5-25989 (23896) [001] .... 24575.541525: binder_transaction_received: transaction=1671305
103014 s.nexuslauncher-24827 (24827) [000] d..3 24575.541536: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
103015 s.nexuslauncher-24827 (24827) [000] d..4 24575.541554: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
103016  Binder:23896_5-25989 (23896) [001] d..1 24575.541556: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
103017          <idle>-0     (-----) [002] .n.1 24575.541559: cpu_idle: state=4294967295 cpu_id=2
103018          <idle>-0     (-----) [002] d..2 24575.541571: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
103019  Binder:23896_5-25989 (23896) [001] d..2 24575.541574: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
103020          <idle>-0     (-----) [003] .n.1 24575.541579: cpu_idle: state=4294967295 cpu_id=3
103021          <idle>-0     (-----) [003] d..2 24575.541588: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
103022  Binder:23896_5-25989 (23896) [001] d..2 24575.541613: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103023  appEventThread-23905 (23896) [003] d..2 24575.541620: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103024    RenderThread-25194 (24827) [002] d..2 24575.541624: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103025          <idle>-0     (-----) [001] d..1 24575.541625: cpu_idle: state=0 cpu_id=1
103026          <idle>-0     (-----) [003] d..1 24575.541632: cpu_idle: state=0 cpu_id=3
103027          <idle>-0     (-----) [002] d..1 24575.541635: cpu_idle: state=0 cpu_id=2
103028 s.nexuslauncher-24827 (24827) [000] d..3 24575.542077: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
103029 s.nexuslauncher-24827 (24827) [000] d..4 24575.542100: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
103030          <idle>-0     (-----) [002] .n.1 24575.542104: cpu_idle: state=4294967295 cpu_id=2
103031          <idle>-0     (-----) [002] d..2 24575.542114: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
103032 s.nexuslauncher-24827 (24827) [000] d..2 24575.542136: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103033          <idle>-0     (-----) [000] d..1 24575.542155: cpu_idle: state=0 cpu_id=0
103034    RenderThread-25194 (24827) [002] d..1 24575.542345: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
103035    RenderThread-25194 (24827) [002] d..2 24575.542366: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
103036          <idle>-0     (-----) [000] .n.1 24575.542374: cpu_idle: state=4294967295 cpu_id=0
103037          <idle>-0     (-----) [000] d..2 24575.542386: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
103038    RenderThread-25194 (24827) [002] .... 24575.542428: binder_transaction: transaction=1671306 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
103039    RenderThread-25194 (24827) [002] ...2 24575.542437: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
103040    RenderThread-25194 (24827) [002] d..4 24575.542442: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
103041    RenderThread-25194 (24827) [002] dn.5 24575.542464: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
103042    RenderThread-25194 (24827) [002] d..2 24575.542473: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
103043  Binder:23896_5-25989 (23896) [002] .... 24575.542482: binder_transaction_received: transaction=1671306
103044 s.nexuslauncher-24827 (24827) [000] d..2 24575.542492: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103045          <idle>-0     (-----) [000] d..1 24575.542507: cpu_idle: state=0 cpu_id=0
103046  Binder:23896_5-25989 (23896) [002] d..2 24575.542531: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
103047    RenderThread-25194 (24827) [002] d..2 24575.542555: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103048          <idle>-0     (-----) [002] d..1 24575.542572: cpu_idle: state=0 cpu_id=2
103049          <idle>-0     (-----) [003] ...1 24575.543297: cpu_idle: state=4294967295 cpu_id=3
103050          <idle>-0     (-----) [003] d..1 24575.543302: cpu_idle: state=0 cpu_id=3
103051          <idle>-0     (-----) [000] ...1 24575.543892: cpu_idle: state=4294967295 cpu_id=0
103052          <idle>-0     (-----) [000] d..1 24575.543896: cpu_idle: state=0 cpu_id=0
103053          <idle>-0     (-----) [002] ...1 24575.544128: cpu_idle: state=4294967295 cpu_id=2
103054          <idle>-0     (-----) [002] d..1 24575.544132: cpu_idle: state=0 cpu_id=2
103055          <idle>-0     (-----) [001] d.h2 24575.544991: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
103056          <idle>-0     (-----) [001] dnh3 24575.545001: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
103057          <idle>-0     (-----) [001] .n.1 24575.545009: cpu_idle: state=4294967295 cpu_id=1
103058          <idle>-0     (-----) [001] d..2 24575.545019: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
103059        DispSync-23904 (23896) [001] d..1 24575.545033: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
103060        DispSync-23904 (23896) [001] d..2 24575.545047: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
103061          <idle>-0     (-----) [003] .n.1 24575.545052: cpu_idle: state=4294967295 cpu_id=3
103062          <idle>-0     (-----) [003] d..2 24575.545063: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
103063        DispSync-23904 (23896) [001] d..2 24575.545078: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103064          <idle>-0     (-----) [001] d..2 24575.545083: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
103065   sfEventThread-23906 (23896) [003] d..3 24575.545090: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
103066          <idle>-0     (-----) [001] dn.3 24575.545096: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
103067          <idle>-0     (-----) [001] d..2 24575.545105: 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
103068   sfEventThread-23906 (23896) [003] d..4 24575.545109: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
103069          <idle>-0     (-----) [000] .n.1 24575.545114: cpu_idle: state=4294967295 cpu_id=0
103070     ksoftirqd/1-18    (   18) [001] d.s2 24575.545116: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
103071          <idle>-0     (-----) [000] d..2 24575.545124: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
103072   sfEventThread-23906 (23896) [003] d..2 24575.545138: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103073          <idle>-0     (-----) [003] d..1 24575.545149: cpu_idle: state=0 cpu_id=3
103074          <idle>-0     (-----) [003] .n.1 24575.545153: cpu_idle: state=4294967295 cpu_id=3
103075     ksoftirqd/1-18    (   18) [001] d.s3 24575.545155: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
103076          <idle>-0     (-----) [003] d..2 24575.545167: 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
103077     ksoftirqd/1-18    (   18) [001] d..2 24575.545176: 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
103078          <idle>-0     (-----) [001] d..1 24575.545189: cpu_idle: state=0 cpu_id=1
103079  kworker/u16:10-23868 (23868) [003] .... 24575.545224: clk_set_rate: l3_cluster0_vote_clk 300000000
103080  kworker/u16:10-23868 (23868) [003] .... 24575.545230: clk_set_rate: l3_clk 300000000
103081  surfaceflinger-23896 (23896) [000] d..1 24575.545330: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
103082  surfaceflinger-23896 (23896) [000] d..2 24575.545369: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
103083          <idle>-0     (-----) [001] .n.1 24575.545374: cpu_idle: state=4294967295 cpu_id=1
103084          <idle>-0     (-----) [001] d..2 24575.545385: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
103085  Binder:23896_5-25989 (23896) [001] d..2 24575.545413: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103086          <idle>-0     (-----) [001] d..1 24575.545424: cpu_idle: state=0 cpu_id=1
103087  surfaceflinger-23896 (23896) [000] d..2 24575.545503: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
103088  kworker/u16:10-23868 (23868) [003] d..2 24575.545539: 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
103089  surfaceflinger-23896 (23896) [000] d..3 24575.545557: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
103090  surfaceflinger-23896 (23896) [000] d..1 24575.545587: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
103091          <idle>-0     (-----) [003] d.s4 24575.545592: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
103092          <idle>-0     (-----) [003] d.s5 24575.545607: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
103093  surfaceflinger-23896 (23896) [000] d..2 24575.545612: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
103094          <idle>-0     (-----) [003] dns5 24575.545613: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
103095          <idle>-0     (-----) [001] .n.1 24575.545618: cpu_idle: state=4294967295 cpu_id=1
103096          <idle>-0     (-----) [001] d..2 24575.545626: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
103097          <idle>-0     (-----) [003] d..2 24575.545628: 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
103098  kworker/u16:10-23868 (23868) [003] d..2 24575.545659: 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
103099   sfEventThread-23906 (23896) [001] d..2 24575.545670: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103100          <idle>-0     (-----) [003] d..1 24575.545676: cpu_idle: state=0 cpu_id=3
103101          <idle>-0     (-----) [001] d..1 24575.545680: cpu_idle: state=0 cpu_id=1
103102  surfaceflinger-23896 (23896) [000] ...1 24575.545807: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
103103  surfaceflinger-23896 (23896) [000] ...1 24575.545815: tracing_mark_write: E|23896
103104  surfaceflinger-23896 (23896) [000] .... 24575.545872: binder_transaction: transaction=1671307 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
103105  surfaceflinger-23896 (23896) [000] ...2 24575.545900: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
103106  surfaceflinger-23896 (23896) [000] d..4 24575.545907: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
103107  surfaceflinger-23896 (23896) [000] d..5 24575.545931: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
103108          <idle>-0     (-----) [002] .n.1 24575.545935: cpu_idle: state=4294967295 cpu_id=2
103109          <idle>-0     (-----) [002] d..2 24575.545947: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
103110  surfaceflinger-23896 (23896) [000] d..2 24575.545955: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
103111  HwBinder:598_3-633   (  598) [002] .... 24575.545960: binder_transaction_received: transaction=1671307
103112         rcuop/0-10    (   10) [000] d..2 24575.545961: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
103113         rcuop/0-10    (   10) [000] d..3 24575.545999: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
103114         rcuop/0-10    (   10) [000] d..2 24575.546009: 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
103115  HwBinder:598_3-633   (  598) [002] ...1 24575.546022: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
103116     rcu_preempt-7     (    7) [000] d..2 24575.546035: 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
103117          <idle>-0     (-----) [000] d..1 24575.546053: cpu_idle: state=0 cpu_id=0
103118  HwBinder:598_3-633   (  598) [002] ...1 24575.546154: tracing_mark_write: B|598|HWCSession::PresentDisplay::
103119  HwBinder:598_3-633   (  598) [002] ...1 24575.546347: tracing_mark_write: B|598|HWDeviceDRM::Commit::
103120  HwBinder:598_3-633   (  598) [002] ...1 24575.546360: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
103121  HwBinder:598_3-633   (  598) [002] d..2 24575.546945: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
103122  HwBinder:598_3-633   (  598) [002] d..3 24575.546973: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
103123          <idle>-0     (-----) [001] .n.1 24575.546977: cpu_idle: state=4294967295 cpu_id=1
103124          <idle>-0     (-----) [001] d..2 24575.546987: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
103125  HwBinder:598_3-633   (  598) [002] ...1 24575.547084: tracing_mark_write: E|598
103126  HwBinder:598_3-633   (  598) [002] ...1 24575.547091: tracing_mark_write: E|598
103127  HwBinder:598_3-633   (  598) [002] ...1 24575.547166: tracing_mark_write: E|598
103128  HwBinder:598_3-633   (  598) [002] ...1 24575.547225: tracing_mark_write: E|598
103129  HwBinder:598_3-633   (  598) [002] .... 24575.547243: binder_transaction: transaction=1671308 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
103130  HwBinder:598_3-633   (  598) [002] d..2 24575.547269: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
103131  HwBinder:598_3-633   (  598) [002] d..3 24575.547290: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
103132  HwBinder:598_3-633   (  598) [002] .... 24575.547295: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
103133          <idle>-0     (-----) [000] .n.1 24575.547297: cpu_idle: state=4294967295 cpu_id=0
103134          <idle>-0     (-----) [000] d..2 24575.547307: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
103135  surfaceflinger-23896 (23896) [000] .... 24575.547318: binder_transaction_received: transaction=1671308
103136  HwBinder:598_3-633   (  598) [002] d..2 24575.547394: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103137          <idle>-0     (-----) [002] d..1 24575.547415: cpu_idle: state=0 cpu_id=2
103138 crtc_commit:111-253   (  253) [001] d.s2 24575.547578: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
103139  surfaceflinger-23896 (23896) [000] d..1 24575.547619: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
103140 crtc_commit:111-253   (  253) [001] d.s3 24575.547620: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
103141  surfaceflinger-23896 (23896) [000] d..2 24575.547655: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
103142          <idle>-0     (-----) [002] .n.1 24575.547662: cpu_idle: state=4294967295 cpu_id=2
103143          <idle>-0     (-----) [002] d..2 24575.547678: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
103144  Binder:23896_5-25989 (23896) [002] .... 24575.547745: binder_transaction: transaction=1671309 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
103145  Binder:23896_5-25989 (23896) [002] d..2 24575.547759: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
103146  Binder:23896_5-25989 (23896) [002] d..3 24575.547776: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
103147  Binder:23896_5-25989 (23896) [002] .... 24575.547780: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
103148  Binder:23896_5-25989 (23896) [002] d..2 24575.547835: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
103149  surfaceflinger-23896 (23896) [000] d..2 24575.547840: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103150    RenderThread-25194 (24827) [002] .... 24575.547845: binder_transaction_received: transaction=1671309
103151          <idle>-0     (-----) [000] d..1 24575.547855: cpu_idle: state=0 cpu_id=0
103152 crtc_commit:111-253   (  253) [001] d..2 24575.547914: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
103153  kworker/u16:10-23868 (23868) [001] d..2 24575.548002: 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
103154          <idle>-0     (-----) [001] d..1 24575.548021: cpu_idle: state=0 cpu_id=1
103155          <idle>-0     (-----) [001] ...1 24575.549551: cpu_idle: state=4294967295 cpu_id=1
103156          <idle>-0     (-----) [001] d..1 24575.549555: cpu_idle: state=0 cpu_id=1
103157    RenderThread-25194 (24827) [002] .... 24575.550312: binder_transaction: transaction=1671310 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
103158    RenderThread-25194 (24827) [002] ...2 24575.550327: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
103159    RenderThread-25194 (24827) [002] d..4 24575.550332: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
103160    RenderThread-25194 (24827) [002] dn.5 24575.550354: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
103161    RenderThread-25194 (24827) [002] d..2 24575.550365: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
103162  Binder:23896_5-25989 (23896) [002] .... 24575.550375: binder_transaction_received: transaction=1671310
103163  Binder:23896_5-25989 (23896) [002] .... 24575.550541: binder_transaction: transaction=1671311 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
103164  Binder:23896_5-25989 (23896) [002] .... 24575.550553: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
103165  Binder:23896_5-25989 (23896) [002] d..2 24575.550612: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
103166    RenderThread-25194 (24827) [002] .... 24575.550623: binder_transaction_received: transaction=1671311
103167    RenderThread-25194 (24827) [002] d..2 24575.550739: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103168          <idle>-0     (-----) [002] d..1 24575.550759: cpu_idle: state=0 cpu_id=2
103169          <idle>-0     (-----) [000] d.s2 24575.550918: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
103170          <idle>-0     (-----) [000] dns3 24575.550938: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
103171          <idle>-0     (-----) [000] .n.1 24575.550957: cpu_idle: state=4294967295 cpu_id=0
103172          <idle>-0     (-----) [000] d..2 24575.550967: 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
103173     rcu_preempt-7     (    7) [000] d..2 24575.550980: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
103174     rcu_preempt-7     (    7) [000] d..3 24575.550994: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
103175     rcu_preempt-7     (    7) [000] d..2 24575.551004: 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
103176         rcuop/0-10    (   10) [000] d..2 24575.551012: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
103177         rcuop/0-10    (   10) [000] d..3 24575.551023: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
103178         rcuop/0-10    (   10) [000] d..2 24575.551030: 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
103179     rcu_preempt-7     (    7) [000] d..2 24575.551055: 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
103180          <idle>-0     (-----) [000] d..1 24575.551070: cpu_idle: state=0 cpu_id=0
103181          <idle>-0     (-----) [000] d.h5 24575.553295: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
103182          <idle>-0     (-----) [000] d.h6 24575.553313: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
103183          <idle>-0     (-----) [003] .n.1 24575.553319: cpu_idle: state=4294967295 cpu_id=3
103184          <idle>-0     (-----) [000] d.h5 24575.553320: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
103185          <idle>-0     (-----) [003] d..2 24575.553332: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
103186          <idle>-0     (-----) [000] d.h6 24575.553332: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
103187          <idle>-0     (-----) [001] .n.1 24575.553337: cpu_idle: state=4294967295 cpu_id=1
103188          <idle>-0     (-----) [000] ...1 24575.553349: cpu_idle: state=4294967295 cpu_id=0
103189          <idle>-0     (-----) [001] d..2 24575.553350: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
103190  crtc_event:111-254   (  254) [003] d..3 24575.553352: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
103191          <idle>-0     (-----) [000] d..1 24575.553354: cpu_idle: state=0 cpu_id=0
103192  crtc_event:111-254   (  254) [003] d..4 24575.553373: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
103193          <idle>-0     (-----) [002] .n.1 24575.553381: cpu_idle: state=4294967295 cpu_id=2
103194          <idle>-0     (-----) [002] d..2 24575.553395: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
103195  crtc_event:111-254   (  254) [003] d..2 24575.553398: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103196          <idle>-0     (-----) [003] d..1 24575.553409: cpu_idle: state=0 cpu_id=3
103197 crtc_commit:111-253   (  253) [001] d..2 24575.553521: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
103198          <idle>-0     (-----) [001] d..1 24575.553530: cpu_idle: state=0 cpu_id=1
103199 kgsl_worker_thr-246   (  246) [002] d..2 24575.553617: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
103200          <idle>-0     (-----) [002] d..1 24575.553628: cpu_idle: state=0 cpu_id=2
103201          <idle>-0     (-----) [002] d.h2 24575.553707: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
103202          <idle>-0     (-----) [002] dnh3 24575.553723: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
103203          <idle>-0     (-----) [002] .n.1 24575.553732: cpu_idle: state=4294967295 cpu_id=2
103204          <idle>-0     (-----) [002] d..2 24575.553741: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
103205 kgsl_worker_thr-246   (  246) [002] d..2 24575.553766: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
103206 kgsl_worker_thr-246   (  246) [002] d..3 24575.553804: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
103207 kgsl_worker_thr-246   (  246) [002] d..2 24575.553820: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
103208          <idle>-0     (-----) [001] d.s3 24575.554245: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
103209          <idle>-0     (-----) [001] d.s4 24575.554265: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
103210          <idle>-0     (-----) [003] .n.1 24575.554271: cpu_idle: state=4294967295 cpu_id=3
103211          <idle>-0     (-----) [001] d.s3 24575.554271: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
103212          <idle>-0     (-----) [003] d..2 24575.554282: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
103213          <idle>-0     (-----) [001] dns4 24575.554296: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
103214  crtc_event:111-254   (  254) [003] d..2 24575.554311: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103215          <idle>-0     (-----) [003] d..1 24575.554320: cpu_idle: state=0 cpu_id=3
103216          <idle>-0     (-----) [001] .n.1 24575.554322: cpu_idle: state=4294967295 cpu_id=1
103217          <idle>-0     (-----) [001] d..2 24575.554331: 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
103218  kworker/u16:16-25995 (25995) [001] d..2 24575.554353: 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
103219          <idle>-0     (-----) [001] d..1 24575.554364: cpu_idle: state=0 cpu_id=1
103220  kworker/u16:10-23868 (23868) [002] d..2 24575.554522: 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
103221          <idle>-0     (-----) [002] d..1 24575.554542: cpu_idle: state=0 cpu_id=2
103222          <idle>-0     (-----) [003] d.s3 24575.555012: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
103223          <idle>-0     (-----) [003] d.s4 24575.555025: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
103224          <idle>-0     (-----) [003] d.s4 24575.555034: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
103225          <idle>-0     (-----) [002] .n.1 24575.555041: cpu_idle: state=4294967295 cpu_id=2
103226          <idle>-0     (-----) [003] ...1 24575.555044: cpu_idle: state=4294967295 cpu_id=3
103227          <idle>-0     (-----) [003] d..1 24575.555050: cpu_idle: state=0 cpu_id=3
103228          <idle>-0     (-----) [002] d..2 24575.555053: 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
103229  kworker/u16:10-23868 (23868) [002] .... 24575.555125: clk_set_rate: l3_cluster0_vote_clk 576000000
103230  kworker/u16:10-23868 (23868) [002] .... 24575.555134: clk_set_rate: l3_clk 576000000
103231  kworker/u16:10-23868 (23868) [002] d..2 24575.555186: 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
103232          <idle>-0     (-----) [002] d..1 24575.555200: cpu_idle: state=0 cpu_id=2
103233          <idle>-0     (-----) [000] d.h3 24575.555331: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
103234          <idle>-0     (-----) [000] d.h4 24575.555344: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
103235          <idle>-0     (-----) [002] .n.1 24575.555349: cpu_idle: state=4294967295 cpu_id=2
103236          <idle>-0     (-----) [000] ...1 24575.555357: cpu_idle: state=4294967295 cpu_id=0
103237          <idle>-0     (-----) [002] d..2 24575.555358: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
103238          <idle>-0     (-----) [000] d..1 24575.555361: cpu_idle: state=0 cpu_id=0
103239 kgsl_worker_thr-246   (  246) [002] d..2 24575.555421: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103240          <idle>-0     (-----) [002] d..1 24575.555432: cpu_idle: state=0 cpu_id=2
103241          <idle>-0     (-----) [000] d.h5 24575.555616: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
103242          <idle>-0     (-----) [000] d.h6 24575.555629: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
103243          <idle>-0     (-----) [001] .n.1 24575.555634: cpu_idle: state=4294967295 cpu_id=1
103244          <idle>-0     (-----) [000] ...1 24575.555640: cpu_idle: state=4294967295 cpu_id=0
103245          <idle>-0     (-----) [001] d..2 24575.555642: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
103246          <idle>-0     (-----) [000] d..1 24575.555644: cpu_idle: state=0 cpu_id=0
103247 crtc_commit:111-253   (  253) [001] d..2 24575.555708: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103248          <idle>-0     (-----) [001] d..1 24575.555717: cpu_idle: state=0 cpu_id=1
103249          <idle>-0     (-----) [000] d.h5 24575.555926: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
103250          <idle>-0     (-----) [000] d.h6 24575.555939: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
103251          <idle>-0     (-----) [003] .n.1 24575.555944: cpu_idle: state=4294967295 cpu_id=3
103252          <idle>-0     (-----) [003] d..2 24575.555952: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
103253          <idle>-0     (-----) [000] ...1 24575.555955: cpu_idle: state=4294967295 cpu_id=0
103254          <idle>-0     (-----) [000] d..1 24575.555959: cpu_idle: state=0 cpu_id=0
103255  crtc_event:111-254   (  254) [003] d..2 24575.555975: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103256          <idle>-0     (-----) [003] d..1 24575.555985: cpu_idle: state=0 cpu_id=3
103257          <idle>-0     (-----) [002] ...1 24575.556682: cpu_idle: state=4294967295 cpu_id=2
103258          <idle>-0     (-----) [002] d..1 24575.556686: cpu_idle: state=0 cpu_id=2
103259          <idle>-0     (-----) [001] d.h2 24575.557459: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
103260          <idle>-0     (-----) [001] dnh3 24575.557470: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
103261          <idle>-0     (-----) [001] .n.1 24575.557477: cpu_idle: state=4294967295 cpu_id=1
103262          <idle>-0     (-----) [001] d..2 24575.557485: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
103263        DispSync-23904 (23896) [001] d..1 24575.557498: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
103264        DispSync-23904 (23896) [001] d..2 24575.557510: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
103265          <idle>-0     (-----) [003] .n.1 24575.557516: cpu_idle: state=4294967295 cpu_id=3
103266          <idle>-0     (-----) [003] d..2 24575.557523: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
103267        DispSync-23904 (23896) [001] d..2 24575.557533: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103268          <idle>-0     (-----) [001] d..1 24575.557543: cpu_idle: state=0 cpu_id=1
103269  appEventThread-23905 (23896) [003] d..3 24575.557590: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
103270  appEventThread-23905 (23896) [003] d..4 24575.557646: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
103271          <idle>-0     (-----) [000] dnH3 24575.557657: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
103272          <idle>-0     (-----) [000] dns2 24575.557676: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
103273          <idle>-0     (-----) [005] dnh2 24575.557677: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
103274          <idle>-0     (-----) [005] .n.1 24575.557681: cpu_idle: state=4294967295 cpu_id=5
103275  appEventThread-23905 (23896) [003] d..2 24575.557683: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103276          <idle>-0     (-----) [005] d..2 24575.557686: 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
103277         sugov:4-560   (  560) [005] d..2 24575.557696: 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
103278          <idle>-0     (-----) [003] d..1 24575.557696: cpu_idle: state=0 cpu_id=3
103279          <idle>-0     (-----) [000] dns3 24575.557701: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
103280          <idle>-0     (-----) [005] d..1 24575.557702: cpu_idle: state=0 cpu_id=5
103281          <idle>-0     (-----) [003] .n.1 24575.557708: cpu_idle: state=4294967295 cpu_id=3
103282          <idle>-0     (-----) [000] .n.1 24575.557710: cpu_idle: state=4294967295 cpu_id=0
103283          <idle>-0     (-----) [003] d..2 24575.557718: 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
103284          <idle>-0     (-----) [000] d..2 24575.557722: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
103285     rcu_preempt-7     (    7) [003] d..2 24575.557742: 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
103286          <idle>-0     (-----) [003] d..1 24575.557751: cpu_idle: state=0 cpu_id=3
103287 s.nexuslauncher-24827 (24827) [000] .... 24575.557981: binder_transaction: transaction=1671312 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
103288 s.nexuslauncher-24827 (24827) [000] d..4 24575.557989: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
103289 s.nexuslauncher-24827 (24827) [000] d..5 24575.558016: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
103290          <idle>-0     (-----) [001] .n.1 24575.558021: cpu_idle: state=4294967295 cpu_id=1
103291          <idle>-0     (-----) [001] d..2 24575.558033: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
103292  Binder:23896_5-25989 (23896) [001] .... 24575.558039: binder_transaction_received: transaction=1671312
103293 s.nexuslauncher-24827 (24827) [000] d..3 24575.558046: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
103294 s.nexuslauncher-24827 (24827) [000] d..4 24575.558063: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
103295  Binder:23896_5-25989 (23896) [001] d..1 24575.558063: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
103296          <idle>-0     (-----) [002] .n.1 24575.558068: cpu_idle: state=4294967295 cpu_id=2
103297          <idle>-0     (-----) [002] d..2 24575.558079: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
103298  Binder:23896_5-25989 (23896) [001] d..2 24575.558079: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
103299          <idle>-0     (-----) [003] .n.1 24575.558083: cpu_idle: state=4294967295 cpu_id=3
103300          <idle>-0     (-----) [003] d..2 24575.558091: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
103301  Binder:23896_5-25989 (23896) [001] d..2 24575.558113: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103302    RenderThread-25194 (24827) [002] d..2 24575.558122: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103303  appEventThread-23905 (23896) [003] d..2 24575.558123: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103304          <idle>-0     (-----) [001] d..1 24575.558124: cpu_idle: state=0 cpu_id=1
103305          <idle>-0     (-----) [003] d..1 24575.558131: cpu_idle: state=0 cpu_id=3
103306          <idle>-0     (-----) [002] d..1 24575.558132: cpu_idle: state=0 cpu_id=2
103307 s.nexuslauncher-24827 (24827) [000] d..3 24575.558361: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
103308 s.nexuslauncher-24827 (24827) [000] d..4 24575.558379: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
103309          <idle>-0     (-----) [002] .n.1 24575.558383: cpu_idle: state=4294967295 cpu_id=2
103310          <idle>-0     (-----) [002] d..2 24575.558393: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
103311 s.nexuslauncher-24827 (24827) [000] d..2 24575.558409: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103312          <idle>-0     (-----) [000] d..1 24575.558426: cpu_idle: state=0 cpu_id=0
103313    RenderThread-25194 (24827) [002] d..1 24575.558565: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
103314    RenderThread-25194 (24827) [002] d..2 24575.558583: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
103315          <idle>-0     (-----) [000] .n.1 24575.558590: cpu_idle: state=4294967295 cpu_id=0
103316          <idle>-0     (-----) [000] d..2 24575.558600: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
103317    RenderThread-25194 (24827) [002] .... 24575.558637: binder_transaction: transaction=1671313 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
103318    RenderThread-25194 (24827) [002] ...2 24575.558644: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
103319    RenderThread-25194 (24827) [002] d..4 24575.558647: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
103320    RenderThread-25194 (24827) [002] dn.5 24575.558665: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
103321    RenderThread-25194 (24827) [002] d..2 24575.558674: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
103322  Binder:23896_5-25989 (23896) [002] .... 24575.558681: binder_transaction_received: transaction=1671313
103323 s.nexuslauncher-24827 (24827) [000] d..2 24575.558691: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103324          <idle>-0     (-----) [000] d..1 24575.558703: cpu_idle: state=0 cpu_id=0
103325          <idle>-0     (-----) [005] ...1 24575.558712: cpu_idle: state=4294967295 cpu_id=5
103326          <idle>-0     (-----) [005] d..1 24575.558714: cpu_idle: state=0 cpu_id=5
103327  Binder:23896_5-25989 (23896) [002] d..2 24575.558723: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
103328    RenderThread-25194 (24827) [002] d..2 24575.558745: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103329          <idle>-0     (-----) [002] d..1 24575.558761: cpu_idle: state=0 cpu_id=2
103330          <idle>-0     (-----) [002] ...1 24575.560011: cpu_idle: state=4294967295 cpu_id=2
103331          <idle>-0     (-----) [002] d..1 24575.560014: cpu_idle: state=0 cpu_id=2
103332          <idle>-0     (-----) [001] d.h2 24575.561456: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
103333          <idle>-0     (-----) [001] dnh3 24575.561468: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
103334          <idle>-0     (-----) [001] .n.1 24575.561475: cpu_idle: state=4294967295 cpu_id=1
103335          <idle>-0     (-----) [001] d..2 24575.561484: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
103336        DispSync-23904 (23896) [001] d..1 24575.561496: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
103337        DispSync-23904 (23896) [001] d..2 24575.561517: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
103338          <idle>-0     (-----) [003] .n.1 24575.561523: cpu_idle: state=4294967295 cpu_id=3
103339          <idle>-0     (-----) [003] d..2 24575.561532: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
103340        DispSync-23904 (23896) [001] d..2 24575.561545: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103341          <idle>-0     (-----) [001] d..2 24575.561549: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
103342   sfEventThread-23906 (23896) [003] d..3 24575.561557: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
103343          <idle>-0     (-----) [001] dn.3 24575.561560: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
103344          <idle>-0     (-----) [001] d..2 24575.561567: 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
103345   sfEventThread-23906 (23896) [003] d..4 24575.561573: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
103346          <idle>-0     (-----) [000] .n.1 24575.561579: cpu_idle: state=4294967295 cpu_id=0
103347     ksoftirqd/1-18    (   18) [001] d..2 24575.561585: 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
103348          <idle>-0     (-----) [000] d..2 24575.561589: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
103349          <idle>-0     (-----) [001] d..1 24575.561596: cpu_idle: state=0 cpu_id=1
103350   sfEventThread-23906 (23896) [003] d..2 24575.561598: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103351          <idle>-0     (-----) [003] d..1 24575.561606: cpu_idle: state=0 cpu_id=3
103352  surfaceflinger-23896 (23896) [000] d..1 24575.561727: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
103353  surfaceflinger-23896 (23896) [000] d..2 24575.561755: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
103354          <idle>-0     (-----) [001] .n.1 24575.561761: cpu_idle: state=4294967295 cpu_id=1
103355          <idle>-0     (-----) [001] d..2 24575.561770: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
103356  Binder:23896_5-25989 (23896) [001] d..2 24575.561802: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103357          <idle>-0     (-----) [001] d..1 24575.561811: cpu_idle: state=0 cpu_id=1
103358  surfaceflinger-23896 (23896) [000] d..1 24575.561892: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
103359  surfaceflinger-23896 (23896) [000] d..2 24575.561910: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
103360          <idle>-0     (-----) [003] .n.1 24575.561915: cpu_idle: state=4294967295 cpu_id=3
103361          <idle>-0     (-----) [003] d..2 24575.561922: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
103362   sfEventThread-23906 (23896) [003] d..2 24575.561947: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103363          <idle>-0     (-----) [003] d..1 24575.561953: cpu_idle: state=0 cpu_id=3
103364  surfaceflinger-23896 (23896) [000] ...1 24575.562068: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
103365  surfaceflinger-23896 (23896) [000] ...1 24575.562074: tracing_mark_write: E|23896
103366  surfaceflinger-23896 (23896) [000] .... 24575.562118: binder_transaction: transaction=1671314 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
103367  surfaceflinger-23896 (23896) [000] ...2 24575.562141: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
103368  surfaceflinger-23896 (23896) [000] d..4 24575.562147: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
103369  surfaceflinger-23896 (23896) [000] d..5 24575.562167: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
103370          <idle>-0     (-----) [002] .n.1 24575.562171: cpu_idle: state=4294967295 cpu_id=2
103371          <idle>-0     (-----) [002] d..2 24575.562181: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
103372  HwBinder:598_3-633   (  598) [002] .... 24575.562192: binder_transaction_received: transaction=1671314
103373  surfaceflinger-23896 (23896) [000] d..2 24575.562195: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103374          <idle>-0     (-----) [000] d..1 24575.562209: cpu_idle: state=0 cpu_id=0
103375  HwBinder:598_3-633   (  598) [002] ...1 24575.562235: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
103376  HwBinder:598_3-633   (  598) [002] ...1 24575.562356: tracing_mark_write: B|598|HWCSession::PresentDisplay::
103377  HwBinder:598_3-633   (  598) [002] ...1 24575.562510: tracing_mark_write: B|598|HWDeviceDRM::Commit::
103378  HwBinder:598_3-633   (  598) [002] ...1 24575.562520: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
103379  HwBinder:598_3-633   (  598) [002] d..2 24575.563043: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
103380  HwBinder:598_3-633   (  598) [002] d..3 24575.563065: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
103381          <idle>-0     (-----) [001] .n.1 24575.563070: cpu_idle: state=4294967295 cpu_id=1
103382          <idle>-0     (-----) [001] d..2 24575.563078: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
103383  HwBinder:598_3-633   (  598) [002] ...1 24575.563158: tracing_mark_write: E|598
103384  HwBinder:598_3-633   (  598) [002] ...1 24575.563164: tracing_mark_write: E|598
103385  HwBinder:598_3-633   (  598) [002] ...1 24575.563224: tracing_mark_write: E|598
103386  HwBinder:598_3-633   (  598) [002] ...1 24575.563272: tracing_mark_write: E|598
103387  HwBinder:598_3-633   (  598) [002] .... 24575.563287: binder_transaction: transaction=1671315 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
103388  HwBinder:598_3-633   (  598) [002] d..2 24575.563308: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
103389  HwBinder:598_3-633   (  598) [002] d..3 24575.563324: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
103390  HwBinder:598_3-633   (  598) [002] .... 24575.563329: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
103391          <idle>-0     (-----) [000] .n.1 24575.563330: cpu_idle: state=4294967295 cpu_id=0
103392          <idle>-0     (-----) [000] d..2 24575.563339: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
103393  surfaceflinger-23896 (23896) [000] .... 24575.563346: binder_transaction_received: transaction=1671315
103394  HwBinder:598_3-633   (  598) [002] d..2 24575.563403: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103395          <idle>-0     (-----) [002] d..1 24575.563418: cpu_idle: state=0 cpu_id=2
103396  surfaceflinger-23896 (23896) [000] d..1 24575.563549: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
103397  surfaceflinger-23896 (23896) [000] d..2 24575.563576: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
103398          <idle>-0     (-----) [002] .n.1 24575.563581: cpu_idle: state=4294967295 cpu_id=2
103399          <idle>-0     (-----) [002] d..2 24575.563592: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
103400  Binder:23896_5-25989 (23896) [002] .... 24575.563640: binder_transaction: transaction=1671316 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
103401  Binder:23896_5-25989 (23896) [002] d..2 24575.563652: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
103402  Binder:23896_5-25989 (23896) [002] d..3 24575.563665: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
103403  Binder:23896_5-25989 (23896) [002] .... 24575.563669: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
103404  Binder:23896_5-25989 (23896) [002] d..2 24575.563712: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
103405  surfaceflinger-23896 (23896) [000] d..2 24575.563718: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103406    RenderThread-25194 (24827) [002] .... 24575.563720: binder_transaction_received: transaction=1671316
103407          <idle>-0     (-----) [000] d..1 24575.563733: cpu_idle: state=0 cpu_id=0
103408 crtc_commit:111-253   (  253) [001] d..2 24575.563841: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
103409          <idle>-0     (-----) [001] d..1 24575.563853: cpu_idle: state=0 cpu_id=1
103410          <idle>-0     (-----) [003] d.s2 24575.564236: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
103411          <idle>-0     (-----) [003] dns3 24575.564252: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
103412    RenderThread-25194 (24827) [002] d.s2 24575.564252: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
103413          <idle>-0     (-----) [003] .n.1 24575.564268: cpu_idle: state=4294967295 cpu_id=3
103414          <idle>-0     (-----) [003] d..2 24575.564275: 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
103415     rcu_preempt-7     (    7) [003] d..2 24575.564281: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
103416    RenderThread-25194 (24827) [002] d.s3 24575.564295: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
103417     rcu_preempt-7     (    7) [003] d..3 24575.564315: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
103418     rcu_preempt-7     (    7) [003] d..2 24575.564325: 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
103419         rcuop/0-10    (   10) [003] d..2 24575.564333: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
103420         rcuop/0-10    (   10) [003] d..3 24575.564343: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
103421         rcuop/0-10    (   10) [003] d..2 24575.564351: 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
103422     rcu_preempt-7     (    7) [003] d..2 24575.564362: 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
103423  kworker/u16:10-23868 (23868) [003] .... 24575.564414: clk_set_rate: l3_cluster0_vote_clk 403200000
103424  kworker/u16:10-23868 (23868) [003] .... 24575.564419: clk_set_rate: l3_clk 403200000
103425  kworker/u16:10-23868 (23868) [003] d..2 24575.564537: 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
103426          <idle>-0     (-----) [003] d..1 24575.564551: cpu_idle: state=0 cpu_id=3
103427    RenderThread-25194 (24827) [002] .... 24575.566003: binder_transaction: transaction=1671317 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
103428    RenderThread-25194 (24827) [002] ...2 24575.566018: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
103429    RenderThread-25194 (24827) [002] d..4 24575.566022: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
103430    RenderThread-25194 (24827) [002] dn.5 24575.566039: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
103431    RenderThread-25194 (24827) [002] d..2 24575.566048: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
103432  Binder:23896_5-25989 (23896) [002] .... 24575.566057: binder_transaction_received: transaction=1671317
103433  Binder:23896_5-25989 (23896) [002] .... 24575.566203: binder_transaction: transaction=1671318 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
103434  Binder:23896_5-25989 (23896) [002] .... 24575.566213: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
103435  Binder:23896_5-25989 (23896) [002] d..2 24575.566264: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
103436    RenderThread-25194 (24827) [002] .... 24575.566274: binder_transaction_received: transaction=1671318
103437    RenderThread-25194 (24827) [002] d..2 24575.566372: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103438          <idle>-0     (-----) [002] d..1 24575.566390: cpu_idle: state=0 cpu_id=2
103439          <idle>-0     (-----) [000] d.h5 24575.569767: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
103440          <idle>-0     (-----) [000] d.h6 24575.569789: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
103441          <idle>-0     (-----) [000] d.h5 24575.569794: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
103442          <idle>-0     (-----) [003] .n.1 24575.569795: cpu_idle: state=4294967295 cpu_id=3
103443          <idle>-0     (-----) [003] d..2 24575.569807: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
103444          <idle>-0     (-----) [000] d.h6 24575.569807: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
103445          <idle>-0     (-----) [001] .n.1 24575.569813: cpu_idle: state=4294967295 cpu_id=1
103446          <idle>-0     (-----) [000] d..2 24575.569819: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
103447  crtc_event:111-254   (  254) [003] d..3 24575.569823: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
103448          <idle>-0     (-----) [001] d..2 24575.569824: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
103449          <idle>-0     (-----) [000] dn.3 24575.569834: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
103450          <idle>-0     (-----) [000] .n.1 24575.569838: cpu_idle: state=4294967295 cpu_id=0
103451  crtc_event:111-254   (  254) [003] d..4 24575.569842: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
103452          <idle>-0     (-----) [002] .n.1 24575.569849: cpu_idle: state=4294967295 cpu_id=2
103453          <idle>-0     (-----) [000] d..2 24575.569852: 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
103454          <idle>-0     (-----) [002] d..2 24575.569861: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
103455  crtc_event:111-254   (  254) [003] d..2 24575.569867: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103456          <idle>-0     (-----) [003] d..1 24575.569875: cpu_idle: state=0 cpu_id=3
103457     ksoftirqd/0-3     (    3) [000] d..2 24575.569880: 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
103458          <idle>-0     (-----) [000] d..1 24575.569891: cpu_idle: state=0 cpu_id=0
103459 crtc_commit:111-253   (  253) [001] d..2 24575.569972: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
103460          <idle>-0     (-----) [001] d..1 24575.569981: cpu_idle: state=0 cpu_id=1
103461 kgsl_worker_thr-246   (  246) [002] d..2 24575.570067: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
103462          <idle>-0     (-----) [002] d..1 24575.570077: cpu_idle: state=0 cpu_id=2
103463          <idle>-0     (-----) [002] d.h2 24575.570159: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
103464          <idle>-0     (-----) [002] dnh3 24575.570172: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
103465          <idle>-0     (-----) [002] .n.1 24575.570180: cpu_idle: state=4294967295 cpu_id=2
103466          <idle>-0     (-----) [002] d..2 24575.570189: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
103467 kgsl_worker_thr-246   (  246) [002] d..2 24575.570211: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
103468 kgsl_worker_thr-246   (  246) [002] d..3 24575.570248: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
103469 kgsl_worker_thr-246   (  246) [002] d..2 24575.570260: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
103470  kworker/u16:10-23868 (23868) [002] d..2 24575.570676: 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
103471          <idle>-0     (-----) [002] d..1 24575.570690: cpu_idle: state=0 cpu_id=2
103472          <idle>-0     (-----) [001] d.s3 24575.570912: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
103473          <idle>-0     (-----) [003] d.s2 24575.570912: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
103474          <idle>-0     (-----) [001] d.s4 24575.570929: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
103475          <idle>-0     (-----) [003] dns3 24575.570937: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
103476          <idle>-0     (-----) [001] d.s3 24575.570943: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
103477          <idle>-0     (-----) [003] .n.1 24575.570951: cpu_idle: state=4294967295 cpu_id=3
103478          <idle>-0     (-----) [003] d..2 24575.570958: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
103479          <idle>-0     (-----) [001] d.s4 24575.570959: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
103480          <idle>-0     (-----) [002] .n.1 24575.570967: cpu_idle: state=4294967295 cpu_id=2
103481  crtc_event:111-254   (  254) [003] d..2 24575.570976: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
103482          <idle>-0     (-----) [002] d..2 24575.570979: 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
103483          <idle>-0     (-----) [001] ...1 24575.570982: cpu_idle: state=4294967295 cpu_id=1
103484          <idle>-0     (-----) [001] d..1 24575.570987: cpu_idle: state=0 cpu_id=1
103485     rcu_preempt-7     (    7) [003] d..2 24575.571005: 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
103486          <idle>-0     (-----) [003] d..1 24575.571016: cpu_idle: state=0 cpu_id=3
103487  kworker/u16:10-23868 (23868) [002] d..2 24575.571217: 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
103488          <idle>-0     (-----) [002] d..1 24575.571229: cpu_idle: state=0 cpu_id=2
103489          <idle>-0     (-----) [003] d.s3 24575.571242: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
103490          <idle>-0     (-----) [003] d.s4 24575.571253: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
103491          <idle>-0     (-----) [003] d.s4 24575.571262: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
103492          <idle>-0     (-----) [002] .n.1 24575.571267: cpu_idle: state=4294967295 cpu_id=2
103493          <idle>-0     (-----) [003] ...1 24575.571271: cpu_idle: state=4294967295 cpu_id=3
103494          <idle>-0     (-----) [003] d..1 24575.571276: cpu_idle: state=0 cpu_id=3
103495          <idle>-0     (-----) [002] d..2 24575.571277: 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
103496  kworker/u16:10-23868 (23868) [002] d..2 24575.571302: 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
103497          <idle>-0     (-----) [002] d..1 24575.571314: cpu_idle: state=0 cpu_id=2
103498          <idle>-0     (-----) [000] d.h3 24575.571775: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
103499          <idle>-0     (-----) [000] d.h4 24575.571791: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
103500          <idle>-0     (-----) [002] .n.1 24575.571797: cpu_idle: state=4294967295 cpu_id=2
103501          <idle>-0     (-----) [002] d..2 24575.571805: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
103502          <idle>-0     (-----) [000] ...1 24575.571806: cpu_idle: state=4294967295 cpu_id=0
103503          <idle>-0     (-----) [000] d..1 24575.571811: cpu_idle: state=0 cpu_id=0
103504 kgsl_worker_thr-246   (  246) [002] d..2 24575.571875: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103505          <idle>-0     (-----) [002] d..1 24575.571886: cpu_idle: state=0 cpu_id=2
103506          <idle>-0     (-----) [000] d.h5 24575.572092: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
103507          <idle>-0     (-----) [000] d.h6 24575.572106: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
103508          <idle>-0     (-----) [001] .n.1 24575.572112: cpu_idle: state=4294967295 cpu_id=1
103509          <idle>-0     (-----) [000] ...1 24575.572119: cpu_idle: state=4294967295 cpu_id=0
103510          <idle>-0     (-----) [001] d..2 24575.572121: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
103511          <idle>-0     (-----) [000] d..1 24575.572123: cpu_idle: state=0 cpu_id=0
103512 crtc_commit:111-253   (  253) [001] d..2 24575.572192: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103513          <idle>-0     (-----) [001] d..1 24575.572201: cpu_idle: state=0 cpu_id=1
103514          <idle>-0     (-----) [000] d.h5 24575.572401: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
103515          <idle>-0     (-----) [000] d.h6 24575.572415: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
103516          <idle>-0     (-----) [003] .n.1 24575.572420: cpu_idle: state=4294967295 cpu_id=3
103517          <idle>-0     (-----) [003] d..2 24575.572431: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
103518          <idle>-0     (-----) [000] ...1 24575.572431: cpu_idle: state=4294967295 cpu_id=0
103519          <idle>-0     (-----) [000] d..1 24575.572436: cpu_idle: state=0 cpu_id=0
103520  crtc_event:111-254   (  254) [003] d..2 24575.572457: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103521          <idle>-0     (-----) [003] d..1 24575.572465: cpu_idle: state=0 cpu_id=3
103522          <idle>-0     (-----) [002] ...1 24575.573116: cpu_idle: state=4294967295 cpu_id=2
103523          <idle>-0     (-----) [002] d..1 24575.573119: cpu_idle: state=0 cpu_id=2
103524          <idle>-0     (-----) [001] d.h2 24575.573938: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
103525          <idle>-0     (-----) [001] dnh3 24575.573950: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
103526          <idle>-0     (-----) [001] .n.1 24575.573958: cpu_idle: state=4294967295 cpu_id=1
103527          <idle>-0     (-----) [001] d..2 24575.573967: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
103528        DispSync-23904 (23896) [001] d..1 24575.573983: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
103529        DispSync-23904 (23896) [001] d..2 24575.573996: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
103530          <idle>-0     (-----) [003] .n.1 24575.574001: cpu_idle: state=4294967295 cpu_id=3
103531          <idle>-0     (-----) [003] d..2 24575.574010: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
103532        DispSync-23904 (23896) [001] d..2 24575.574022: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103533          <idle>-0     (-----) [001] d..1 24575.574032: cpu_idle: state=0 cpu_id=1
103534  appEventThread-23905 (23896) [003] d..3 24575.574047: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
103535  appEventThread-23905 (23896) [003] d..4 24575.574068: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
103536          <idle>-0     (-----) [000] .n.1 24575.574070: cpu_idle: state=4294967295 cpu_id=0
103537          <idle>-0     (-----) [000] d..2 24575.574084: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
103538  appEventThread-23905 (23896) [003] d..2 24575.574101: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103539          <idle>-0     (-----) [003] d..1 24575.574112: cpu_idle: state=0 cpu_id=3
103540 s.nexuslauncher-24827 (24827) [000] d.s2 24575.574254: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
103541 s.nexuslauncher-24827 (24827) [000] d.s3 24575.574295: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
103542 s.nexuslauncher-24827 (24827) [000] .... 24575.574485: binder_transaction: transaction=1671319 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
103543 s.nexuslauncher-24827 (24827) [000] d..4 24575.574494: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
103544 s.nexuslauncher-24827 (24827) [000] d..5 24575.574521: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
103545          <idle>-0     (-----) [001] .n.1 24575.574527: cpu_idle: state=4294967295 cpu_id=1
103546          <idle>-0     (-----) [001] d..2 24575.574541: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
103547  Binder:23896_5-25989 (23896) [001] .... 24575.574548: binder_transaction_received: transaction=1671319
103548 s.nexuslauncher-24827 (24827) [000] d..3 24575.574557: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
103549 s.nexuslauncher-24827 (24827) [000] d..4 24575.574574: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
103550  Binder:23896_5-25989 (23896) [001] d..1 24575.574575: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
103551          <idle>-0     (-----) [002] .n.1 24575.574579: cpu_idle: state=4294967295 cpu_id=2
103552  Binder:23896_5-25989 (23896) [001] d..2 24575.574592: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
103553          <idle>-0     (-----) [002] d..2 24575.574592: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
103554          <idle>-0     (-----) [003] .n.1 24575.574597: cpu_idle: state=4294967295 cpu_id=3
103555          <idle>-0     (-----) [003] d..2 24575.574607: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
103556  Binder:23896_5-25989 (23896) [001] d..2 24575.574634: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103557    RenderThread-25194 (24827) [002] d..2 24575.574641: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103558  appEventThread-23905 (23896) [003] d..2 24575.574645: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103559          <idle>-0     (-----) [001] d..1 24575.574647: cpu_idle: state=0 cpu_id=1
103560          <idle>-0     (-----) [003] d..1 24575.574652: cpu_idle: state=0 cpu_id=3
103561          <idle>-0     (-----) [002] d..1 24575.574653: cpu_idle: state=0 cpu_id=2
103562 s.nexuslauncher-24827 (24827) [000] d..3 24575.574882: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
103563 s.nexuslauncher-24827 (24827) [000] d..4 24575.574903: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
103564          <idle>-0     (-----) [002] .n.1 24575.574909: cpu_idle: state=4294967295 cpu_id=2
103565          <idle>-0     (-----) [002] d..2 24575.574919: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
103566 s.nexuslauncher-24827 (24827) [000] d..2 24575.574926: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
103567  kworker/u16:10-23868 (23868) [000] d..2 24575.575065: 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
103568          <idle>-0     (-----) [000] d..1 24575.575081: cpu_idle: state=0 cpu_id=0
103569    RenderThread-25194 (24827) [002] d..1 24575.575134: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
103570    RenderThread-25194 (24827) [002] d..2 24575.575153: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
103571          <idle>-0     (-----) [000] .n.1 24575.575160: cpu_idle: state=4294967295 cpu_id=0
103572          <idle>-0     (-----) [000] d..2 24575.575172: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
103573    RenderThread-25194 (24827) [002] .... 24575.575216: binder_transaction: transaction=1671320 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
103574    RenderThread-25194 (24827) [002] ...2 24575.575224: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
103575    RenderThread-25194 (24827) [002] d..4 24575.575228: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
103576    RenderThread-25194 (24827) [002] dn.5 24575.575249: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
103577    RenderThread-25194 (24827) [002] d..2 24575.575259: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
103578  Binder:23896_5-25989 (23896) [002] .... 24575.575268: binder_transaction_received: transaction=1671320
103579 s.nexuslauncher-24827 (24827) [000] d..2 24575.575277: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103580          <idle>-0     (-----) [000] d..1 24575.575290: cpu_idle: state=0 cpu_id=0
103581  Binder:23896_5-25989 (23896) [002] d..2 24575.575315: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
103582    RenderThread-25194 (24827) [002] d..2 24575.575340: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103583          <idle>-0     (-----) [002] d..1 24575.575358: cpu_idle: state=0 cpu_id=2
103584          <idle>-0     (-----) [002] ...1 24575.576631: cpu_idle: state=4294967295 cpu_id=2
103585          <idle>-0     (-----) [002] d..1 24575.576635: cpu_idle: state=0 cpu_id=2
103586          <idle>-0     (-----) [003] d.H3 24575.577660: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
103587          <idle>-0     (-----) [003] d.H3 24575.577677: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
103588          <idle>-0     (-----) [005] dnh2 24575.577682: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
103589          <idle>-0     (-----) [005] .n.1 24575.577686: cpu_idle: state=4294967295 cpu_id=5
103590          <idle>-0     (-----) [003] d.H4 24575.577691: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
103591          <idle>-0     (-----) [005] d..2 24575.577691: 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
103592          <idle>-0     (-----) [000] .n.1 24575.577697: cpu_idle: state=4294967295 cpu_id=0
103593          <idle>-0     (-----) [003] d.s2 24575.577699: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
103594         sugov:4-560   (  560) [005] d..2 24575.577704: 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
103595          <idle>-0     (-----) [000] d..2 24575.577710: 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
103596          <idle>-0     (-----) [005] d..1 24575.577710: cpu_idle: state=0 cpu_id=5
103597          <idle>-0     (-----) [003] dns3 24575.577715: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
103598          <idle>-0     (-----) [003] .n.1 24575.577729: cpu_idle: state=4294967295 cpu_id=3
103599          <idle>-0     (-----) [003] d..2 24575.577738: 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
103600     rcu_preempt-7     (    7) [003] d..2 24575.577746: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
103601         sugov:0-559   (  559) [000] .... 24575.577752: clk_set_rate: pwrcl_clk 825600000
103602         sugov:0-559   (  559) [000] .... 24575.577765: clk_set_rate: cpu3_pwrcl_clk 1132800000
103603         sugov:0-559   (  559) [000] .... 24575.577777: clk_set_rate: cpu2_pwrcl_clk 1132800000
103604     rcu_preempt-7     (    7) [003] d..3 24575.577779: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
103605         sugov:0-559   (  559) [000] .... 24575.577785: clk_set_rate: cpu1_pwrcl_clk 1132800000
103606         sugov:0-559   (  559) [000] .... 24575.577794: clk_set_rate: cpu0_pwrcl_clk 825600000
103607     rcu_preempt-7     (    7) [003] d..2 24575.577806: 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
103608          <idle>-0     (-----) [003] d..1 24575.577827: cpu_idle: state=0 cpu_id=3
103609         sugov:0-559   (  559) [000] .... 24575.577910: cpu_frequency: state=825600 cpu_id=0
103610          <idle>-0     (-----) [001] d.h2 24575.577933: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
103611         sugov:0-559   (  559) [000] .... 24575.577943: cpu_frequency: state=825600 cpu_id=1
103612         sugov:0-559   (  559) [000] .... 24575.577948: cpu_frequency: state=825600 cpu_id=2
103613          <idle>-0     (-----) [001] dnh3 24575.577949: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
103614         sugov:0-559   (  559) [000] .... 24575.577952: cpu_frequency: state=825600 cpu_id=3
103615          <idle>-0     (-----) [001] .n.1 24575.577958: cpu_idle: state=4294967295 cpu_id=1
103616          <idle>-0     (-----) [001] d..2 24575.577969: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
103617         sugov:0-559   (  559) [000] d..2 24575.577975: 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
103618        DispSync-23904 (23896) [001] d..1 24575.577985: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
103619        DispSync-23904 (23896) [001] d..2 24575.578003: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
103620         rcuop/0-10    (   10) [000] d..2 24575.578009: 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
103621          <idle>-0     (-----) [003] .n.1 24575.578009: cpu_idle: state=4294967295 cpu_id=3
103622          <idle>-0     (-----) [003] d..2 24575.578021: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
103623          <idle>-0     (-----) [000] d..1 24575.578022: cpu_idle: state=0 cpu_id=0
103624        DispSync-23904 (23896) [001] d..2 24575.578034: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103625          <idle>-0     (-----) [001] d..1 24575.578050: cpu_idle: state=0 cpu_id=1
103626   sfEventThread-23906 (23896) [003] d..3 24575.578053: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
103627   sfEventThread-23906 (23896) [003] d..4 24575.578075: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
103628          <idle>-0     (-----) [000] .n.1 24575.578081: cpu_idle: state=4294967295 cpu_id=0
103629          <idle>-0     (-----) [000] d..2 24575.578092: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
103630   sfEventThread-23906 (23896) [003] d..2 24575.578109: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103631          <idle>-0     (-----) [003] d..1 24575.578124: cpu_idle: state=0 cpu_id=3
103632  surfaceflinger-23896 (23896) [000] d..1 24575.578279: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
103633  surfaceflinger-23896 (23896) [000] d..2 24575.578318: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
103634          <idle>-0     (-----) [001] .n.1 24575.578324: cpu_idle: state=4294967295 cpu_id=1
103635          <idle>-0     (-----) [001] d..2 24575.578337: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
103636  Binder:23896_5-25989 (23896) [001] d..2 24575.578372: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103637          <idle>-0     (-----) [001] d..1 24575.578384: cpu_idle: state=0 cpu_id=1
103638  surfaceflinger-23896 (23896) [000] d..2 24575.578459: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
103639  surfaceflinger-23896 (23896) [000] d..3 24575.578486: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
103640  surfaceflinger-23896 (23896) [000] d..1 24575.578517: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
103641  surfaceflinger-23896 (23896) [000] d..2 24575.578536: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
103642          <idle>-0     (-----) [003] .n.1 24575.578543: cpu_idle: state=4294967295 cpu_id=3
103643          <idle>-0     (-----) [003] d..2 24575.578554: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
103644   sfEventThread-23906 (23896) [003] d..2 24575.578614: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
103645         rcuop/0-10    (   10) [003] d..2 24575.578620: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
103646         rcuop/0-10    (   10) [003] d..3 24575.578637: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
103647         rcuop/0-10    (   10) [003] d..2 24575.578648: 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
103648     rcu_preempt-7     (    7) [003] d..2 24575.578671: 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
103649          <idle>-0     (-----) [003] d..1 24575.578684: cpu_idle: state=0 cpu_id=3
103650          <idle>-0     (-----) [005] ...1 24575.578720: cpu_idle: state=4294967295 cpu_id=5
103651          <idle>-0     (-----) [005] d..1 24575.578723: cpu_idle: state=0 cpu_id=5
103652  surfaceflinger-23896 (23896) [000] ...1 24575.578728: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
103653  surfaceflinger-23896 (23896) [000] ...1 24575.578737: tracing_mark_write: E|23896
103654  surfaceflinger-23896 (23896) [000] .... 24575.578798: binder_transaction: transaction=1671321 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
103655  surfaceflinger-23896 (23896) [000] ...2 24575.578827: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
103656  surfaceflinger-23896 (23896) [000] d..4 24575.578835: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
103657  surfaceflinger-23896 (23896) [000] d..5 24575.578859: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
103658          <idle>-0     (-----) [002] .n.1 24575.578863: cpu_idle: state=4294967295 cpu_id=2
103659          <idle>-0     (-----) [002] d..2 24575.578877: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
103660  HwBinder:598_3-633   (  598) [002] .... 24575.578889: binder_transaction_received: transaction=1671321
103661  surfaceflinger-23896 (23896) [000] d..2 24575.578895: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103662          <idle>-0     (-----) [000] d..1 24575.578916: cpu_idle: state=0 cpu_id=0
103663  HwBinder:598_3-633   (  598) [002] ...1 24575.578946: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
103664  HwBinder:598_3-633   (  598) [002] ...1 24575.579080: tracing_mark_write: B|598|HWCSession::PresentDisplay::
103665  HwBinder:598_3-633   (  598) [002] ...1 24575.579280: tracing_mark_write: B|598|HWDeviceDRM::Commit::
103666  HwBinder:598_3-633   (  598) [002] ...1 24575.579295: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
103667  HwBinder:598_3-633   (  598) [002] d..2 24575.579978: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
103668  HwBinder:598_3-633   (  598) [002] d..3 24575.580008: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
103669          <idle>-0     (-----) [001] .n.1 24575.580012: cpu_idle: state=4294967295 cpu_id=1
103670          <idle>-0     (-----) [001] d..2 24575.580023: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
103671  HwBinder:598_3-633   (  598) [002] ...1 24575.580125: tracing_mark_write: E|598
103672  HwBinder:598_3-633   (  598) [002] ...1 24575.580132: tracing_mark_write: E|598
103673  HwBinder:598_3-633   (  598) [002] ...1 24575.580206: tracing_mark_write: E|598
103674  HwBinder:598_3-633   (  598) [002] ...1 24575.580265: tracing_mark_write: E|598
103675  HwBinder:598_3-633   (  598) [002] .... 24575.580285: binder_transaction: transaction=1671322 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
103676  HwBinder:598_3-633   (  598) [002] d..2 24575.580314: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
103677  HwBinder:598_3-633   (  598) [002] d..3 24575.580334: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
103678  HwBinder:598_3-633   (  598) [002] .... 24575.580341: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
103679          <idle>-0     (-----) [000] .n.1 24575.580341: cpu_idle: state=4294967295 cpu_id=0
103680          <idle>-0     (-----) [000] d..2 24575.580353: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
103681  surfaceflinger-23896 (23896) [000] .... 24575.580362: binder_transaction_received: transaction=1671322
103682  HwBinder:598_3-633   (  598) [002] d..2 24575.580440: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103683          <idle>-0     (-----) [002] d..1 24575.580461: cpu_idle: state=0 cpu_id=2
103684  surfaceflinger-23896 (23896) [000] d..1 24575.580621: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
103685  surfaceflinger-23896 (23896) [000] d..2 24575.580657: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
103686          <idle>-0     (-----) [002] .n.1 24575.580664: cpu_idle: state=4294967295 cpu_id=2
103687          <idle>-0     (-----) [002] d..2 24575.580679: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
103688  Binder:23896_5-25989 (23896) [002] .... 24575.580744: binder_transaction: transaction=1671323 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
103689  Binder:23896_5-25989 (23896) [002] d..2 24575.580759: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
103690  Binder:23896_5-25989 (23896) [002] d..3 24575.580778: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
103691  Binder:23896_5-25989 (23896) [002] .... 24575.580783: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
103692  Binder:23896_5-25989 (23896) [002] d..2 24575.580844: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
103693  surfaceflinger-23896 (23896) [000] d..2 24575.580852: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103694    RenderThread-25194 (24827) [002] .... 24575.580854: binder_transaction_received: transaction=1671323
103695 crtc_commit:111-253   (  253) [001] d..2 24575.580865: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
103696          <idle>-0     (-----) [000] d..1 24575.580874: cpu_idle: state=0 cpu_id=0
103697          <idle>-0     (-----) [001] d..1 24575.580880: cpu_idle: state=0 cpu_id=1
103698    RenderThread-25194 (24827) [002] .... 24575.583384: binder_transaction: transaction=1671324 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
103699    RenderThread-25194 (24827) [002] ...2 24575.583400: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
103700    RenderThread-25194 (24827) [002] d..4 24575.583405: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
103701    RenderThread-25194 (24827) [002] dn.5 24575.583425: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
103702    RenderThread-25194 (24827) [002] d..2 24575.583437: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
103703  Binder:23896_5-25989 (23896) [002] .... 24575.583447: binder_transaction_received: transaction=1671324
103704  Binder:23896_5-25989 (23896) [002] .... 24575.583634: binder_transaction: transaction=1671325 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
103705  Binder:23896_5-25989 (23896) [002] .... 24575.583647: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
103706  Binder:23896_5-25989 (23896) [002] d..2 24575.583712: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
103707    RenderThread-25194 (24827) [002] .... 24575.583724: binder_transaction_received: transaction=1671325
103708    RenderThread-25194 (24827) [002] d..2 24575.583850: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103709          <idle>-0     (-----) [002] d..1 24575.583872: cpu_idle: state=0 cpu_id=2
103710          <idle>-0     (-----) [003] d.s2 24575.584250: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
103711          <idle>-0     (-----) [003] dns3 24575.584267: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
103712          <idle>-0     (-----) [003] dns3 24575.584273: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
103713          <idle>-0     (-----) [003] dns4 24575.584311: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
103714          <idle>-0     (-----) [003] .n.1 24575.584328: cpu_idle: state=4294967295 cpu_id=3
103715          <idle>-0     (-----) [003] d..2 24575.584342: 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
103716     rcu_preempt-7     (    7) [003] d..2 24575.584354: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
103717     rcu_preempt-7     (    7) [003] d..3 24575.584370: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
103718     rcu_preempt-7     (    7) [003] d..2 24575.584380: 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
103719         rcuop/0-10    (   10) [003] d..2 24575.584389: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
103720         rcuop/0-10    (   10) [003] d..3 24575.584402: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
103721         rcuop/0-10    (   10) [003] d..2 24575.584411: 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
103722     rcu_preempt-7     (    7) [003] d..2 24575.584424: 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
103723  kworker/u16:10-23868 (23868) [003] d..2 24575.584539: 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
103724          <idle>-0     (-----) [003] d..1 24575.584556: cpu_idle: state=0 cpu_id=3
103725          <idle>-0     (-----) [000] d.h5 24575.586249: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
103726          <idle>-0     (-----) [000] d.h6 24575.586272: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
103727          <idle>-0     (-----) [000] d.h5 24575.586279: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
103728          <idle>-0     (-----) [003] .n.1 24575.586279: cpu_idle: state=4294967295 cpu_id=3
103729          <idle>-0     (-----) [003] d..2 24575.586291: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
103730          <idle>-0     (-----) [000] d.h6 24575.586293: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
103731          <idle>-0     (-----) [001] .n.1 24575.586301: cpu_idle: state=4294967295 cpu_id=1
103732  crtc_event:111-254   (  254) [003] d..3 24575.586310: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
103733          <idle>-0     (-----) [001] d..2 24575.586313: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
103734          <idle>-0     (-----) [000] ...1 24575.586315: cpu_idle: state=4294967295 cpu_id=0
103735          <idle>-0     (-----) [000] d..1 24575.586323: cpu_idle: state=0 cpu_id=0
103736  crtc_event:111-254   (  254) [003] d..4 24575.586332: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
103737          <idle>-0     (-----) [002] .n.1 24575.586339: cpu_idle: state=4294967295 cpu_id=2
103738          <idle>-0     (-----) [002] d..2 24575.586353: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
103739  crtc_event:111-254   (  254) [003] d..2 24575.586359: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103740          <idle>-0     (-----) [003] d..1 24575.586371: cpu_idle: state=0 cpu_id=3
103741 crtc_commit:111-253   (  253) [001] d..2 24575.586480: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
103742          <idle>-0     (-----) [001] d..1 24575.586490: cpu_idle: state=0 cpu_id=1
103743 kgsl_worker_thr-246   (  246) [002] d..2 24575.586572: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
103744          <idle>-0     (-----) [002] d..1 24575.586585: cpu_idle: state=0 cpu_id=2
103745          <idle>-0     (-----) [002] d.h2 24575.586659: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
103746          <idle>-0     (-----) [002] dnh3 24575.586673: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
103747          <idle>-0     (-----) [002] .n.1 24575.586683: cpu_idle: state=4294967295 cpu_id=2
103748          <idle>-0     (-----) [002] d..2 24575.586693: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
103749 kgsl_worker_thr-246   (  246) [002] d..2 24575.586718: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
103750 kgsl_worker_thr-246   (  246) [002] d..3 24575.586762: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
103751 kgsl_worker_thr-246   (  246) [002] d..2 24575.586779: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
103752  kworker/u16:10-23868 (23868) [002] d..2 24575.587213: 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
103753          <idle>-0     (-----) [002] d..1 24575.587230: cpu_idle: state=0 cpu_id=2
103754          <idle>-0     (-----) [001] d.s3 24575.587583: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
103755          <idle>-0     (-----) [001] d.s4 24575.587603: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
103756          <idle>-0     (-----) [003] .n.1 24575.587610: cpu_idle: state=4294967295 cpu_id=3
103757          <idle>-0     (-----) [003] d..2 24575.587624: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
103758          <idle>-0     (-----) [001] ...1 24575.587630: cpu_idle: state=4294967295 cpu_id=1
103759          <idle>-0     (-----) [001] d..1 24575.587636: cpu_idle: state=0 cpu_id=1
103760  crtc_event:111-254   (  254) [003] d..2 24575.587658: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103761          <idle>-0     (-----) [003] d..1 24575.587666: cpu_idle: state=0 cpu_id=3
103762          <idle>-0     (-----) [000] d.h3 24575.588288: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
103763          <idle>-0     (-----) [000] d.h4 24575.588306: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
103764          <idle>-0     (-----) [002] .n.1 24575.588314: cpu_idle: state=4294967295 cpu_id=2
103765          <idle>-0     (-----) [000] ...1 24575.588323: cpu_idle: state=4294967295 cpu_id=0
103766          <idle>-0     (-----) [002] d..2 24575.588326: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
103767          <idle>-0     (-----) [000] d..1 24575.588329: cpu_idle: state=0 cpu_id=0
103768 kgsl_worker_thr-246   (  246) [002] d..2 24575.588410: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103769          <idle>-0     (-----) [002] d..1 24575.588424: cpu_idle: state=0 cpu_id=2
103770          <idle>-0     (-----) [000] d.h5 24575.588563: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
103771          <idle>-0     (-----) [000] d.h6 24575.588579: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
103772          <idle>-0     (-----) [001] .n.1 24575.588586: cpu_idle: state=4294967295 cpu_id=1
103773          <idle>-0     (-----) [000] ...1 24575.588594: cpu_idle: state=4294967295 cpu_id=0
103774          <idle>-0     (-----) [001] d..2 24575.588597: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
103775          <idle>-0     (-----) [000] d..1 24575.588600: cpu_idle: state=0 cpu_id=0
103776 crtc_commit:111-253   (  253) [001] d..2 24575.588677: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103777          <idle>-0     (-----) [001] d..1 24575.588688: cpu_idle: state=0 cpu_id=1
103778          <idle>-0     (-----) [000] d.h5 24575.588880: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
103779          <idle>-0     (-----) [000] d.h6 24575.588898: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
103780          <idle>-0     (-----) [003] .n.1 24575.588902: cpu_idle: state=4294967295 cpu_id=3
103781          <idle>-0     (-----) [003] d..2 24575.588910: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
103782          <idle>-0     (-----) [000] ...1 24575.588919: cpu_idle: state=4294967295 cpu_id=0
103783          <idle>-0     (-----) [000] d..1 24575.588924: cpu_idle: state=0 cpu_id=0
103784  crtc_event:111-254   (  254) [003] d..2 24575.588936: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103785          <idle>-0     (-----) [003] d..1 24575.588943: cpu_idle: state=0 cpu_id=3
103786          <idle>-0     (-----) [001] d.h2 24575.590409: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
103787          <idle>-0     (-----) [001] dnh3 24575.590424: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
103788          <idle>-0     (-----) [001] .n.1 24575.590433: cpu_idle: state=4294967295 cpu_id=1
103789          <idle>-0     (-----) [001] d..2 24575.590443: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
103790        DispSync-23904 (23896) [001] d..1 24575.590461: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
103791        DispSync-23904 (23896) [001] d..2 24575.590478: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
103792          <idle>-0     (-----) [003] .n.1 24575.590484: cpu_idle: state=4294967295 cpu_id=3
103793          <idle>-0     (-----) [003] d..2 24575.590492: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
103794        DispSync-23904 (23896) [001] d..2 24575.590511: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103795          <idle>-0     (-----) [001] d..1 24575.590523: cpu_idle: state=0 cpu_id=1
103796  appEventThread-23905 (23896) [003] d..3 24575.590535: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
103797  appEventThread-23905 (23896) [003] d..4 24575.590560: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
103798          <idle>-0     (-----) [000] .n.1 24575.590565: cpu_idle: state=4294967295 cpu_id=0
103799          <idle>-0     (-----) [000] d..2 24575.590585: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
103800  appEventThread-23905 (23896) [003] d..2 24575.590598: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103801          <idle>-0     (-----) [003] d..1 24575.590609: cpu_idle: state=0 cpu_id=3
103802          <idle>-0     (-----) [003] d.s2 24575.590912: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
103803          <idle>-0     (-----) [003] dns3 24575.590929: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
103804          <idle>-0     (-----) [003] .n.1 24575.590950: cpu_idle: state=4294967295 cpu_id=3
103805          <idle>-0     (-----) [003] d..2 24575.590959: 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
103806 s.nexuslauncher-24827 (24827) [000] .... 24575.590981: binder_transaction: transaction=1671326 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
103807 s.nexuslauncher-24827 (24827) [000] d..4 24575.590991: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
103808     rcu_preempt-7     (    7) [003] d..2 24575.590992: 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
103809          <idle>-0     (-----) [003] d..1 24575.591006: cpu_idle: state=0 cpu_id=3
103810 s.nexuslauncher-24827 (24827) [000] d..5 24575.591025: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
103811          <idle>-0     (-----) [001] .n.1 24575.591031: cpu_idle: state=4294967295 cpu_id=1
103812          <idle>-0     (-----) [001] d..2 24575.591046: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
103813  Binder:23896_5-25989 (23896) [001] .... 24575.591053: binder_transaction_received: transaction=1671326
103814 s.nexuslauncher-24827 (24827) [000] d..3 24575.591064: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
103815  Binder:23896_5-25989 (23896) [001] d..1 24575.591085: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
103816 s.nexuslauncher-24827 (24827) [000] d..4 24575.591085: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
103817          <idle>-0     (-----) [002] .n.1 24575.591092: cpu_idle: state=4294967295 cpu_id=2
103818  Binder:23896_5-25989 (23896) [001] d..2 24575.591104: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
103819          <idle>-0     (-----) [002] d..2 24575.591105: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
103820          <idle>-0     (-----) [003] .n.1 24575.591109: cpu_idle: state=4294967295 cpu_id=3
103821          <idle>-0     (-----) [003] d..2 24575.591120: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
103822  Binder:23896_5-25989 (23896) [001] d..2 24575.591153: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103823    RenderThread-25194 (24827) [002] d..2 24575.591162: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103824  appEventThread-23905 (23896) [003] d..2 24575.591165: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103825          <idle>-0     (-----) [001] d..1 24575.591168: cpu_idle: state=0 cpu_id=1
103826          <idle>-0     (-----) [002] d..1 24575.591176: cpu_idle: state=0 cpu_id=2
103827          <idle>-0     (-----) [003] d..1 24575.591177: cpu_idle: state=0 cpu_id=3
103828 s.nexuslauncher-24827 (24827) [000] d..3 24575.591446: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
103829 s.nexuslauncher-24827 (24827) [000] d..4 24575.591471: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
103830          <idle>-0     (-----) [002] .n.1 24575.591476: cpu_idle: state=4294967295 cpu_id=2
103831          <idle>-0     (-----) [002] d..2 24575.591488: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
103832 s.nexuslauncher-24827 (24827) [000] d..2 24575.591513: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103833          <idle>-0     (-----) [000] d..1 24575.591534: cpu_idle: state=0 cpu_id=0
103834    RenderThread-25194 (24827) [002] d..1 24575.591732: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
103835    RenderThread-25194 (24827) [002] d..2 24575.591757: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
103836          <idle>-0     (-----) [000] .n.1 24575.591764: cpu_idle: state=4294967295 cpu_id=0
103837          <idle>-0     (-----) [000] d..2 24575.591778: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
103838    RenderThread-25194 (24827) [002] .... 24575.591828: binder_transaction: transaction=1671327 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
103839    RenderThread-25194 (24827) [002] ...2 24575.591842: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
103840    RenderThread-25194 (24827) [002] d..4 24575.591846: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
103841    RenderThread-25194 (24827) [002] dn.5 24575.591872: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
103842    RenderThread-25194 (24827) [002] d..2 24575.591884: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
103843  Binder:23896_5-25989 (23896) [002] .... 24575.591895: binder_transaction_received: transaction=1671327
103844 s.nexuslauncher-24827 (24827) [000] d..2 24575.591905: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103845          <idle>-0     (-----) [000] d..1 24575.591921: cpu_idle: state=0 cpu_id=0
103846  Binder:23896_5-25989 (23896) [002] d..2 24575.591952: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
103847    RenderThread-25194 (24827) [002] d..2 24575.591981: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103848          <idle>-0     (-----) [002] d..1 24575.592000: cpu_idle: state=0 cpu_id=2
103849          <idle>-0     (-----) [001] d.h2 24575.594415: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
103850          <idle>-0     (-----) [001] dnh3 24575.594430: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
103851          <idle>-0     (-----) [001] .n.1 24575.594439: cpu_idle: state=4294967295 cpu_id=1
103852          <idle>-0     (-----) [001] d..2 24575.594452: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
103853        DispSync-23904 (23896) [001] d..1 24575.594467: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
103854        DispSync-23904 (23896) [001] d..2 24575.594481: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
103855          <idle>-0     (-----) [003] .n.1 24575.594487: cpu_idle: state=4294967295 cpu_id=3
103856          <idle>-0     (-----) [003] d..2 24575.594500: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
103857        DispSync-23904 (23896) [001] d..2 24575.594520: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103858          <idle>-0     (-----) [001] d..2 24575.594525: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
103859   sfEventThread-23906 (23896) [003] d..3 24575.594534: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
103860          <idle>-0     (-----) [001] dn.3 24575.594541: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
103861          <idle>-0     (-----) [001] d..2 24575.594553: 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
103862   sfEventThread-23906 (23896) [003] d..4 24575.594554: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
103863          <idle>-0     (-----) [000] .n.1 24575.594560: cpu_idle: state=4294967295 cpu_id=0
103864     ksoftirqd/1-18    (   18) [001] d.s2 24575.594565: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
103865          <idle>-0     (-----) [000] d..2 24575.594575: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
103866   sfEventThread-23906 (23896) [003] d..2 24575.594588: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103867          <idle>-0     (-----) [003] d..1 24575.594598: cpu_idle: state=0 cpu_id=3
103868     ksoftirqd/1-18    (   18) [001] d.s3 24575.594610: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
103869          <idle>-0     (-----) [003] .n.1 24575.594616: cpu_idle: state=4294967295 cpu_id=3
103870          <idle>-0     (-----) [003] d..2 24575.594627: 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
103871     ksoftirqd/1-18    (   18) [001] d..2 24575.594636: 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
103872          <idle>-0     (-----) [001] d..1 24575.594653: cpu_idle: state=0 cpu_id=1
103873  surfaceflinger-23896 (23896) [000] d..1 24575.594775: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
103874  surfaceflinger-23896 (23896) [000] d..2 24575.594813: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
103875          <idle>-0     (-----) [001] .n.1 24575.594820: cpu_idle: state=4294967295 cpu_id=1
103876          <idle>-0     (-----) [001] d..2 24575.594832: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
103877  Binder:23896_5-25989 (23896) [001] d..2 24575.594870: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103878          <idle>-0     (-----) [001] d..1 24575.594883: cpu_idle: state=0 cpu_id=1
103879  kworker/u16:10-23868 (23868) [003] d..2 24575.594906: 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
103880          <idle>-0     (-----) [003] d.s4 24575.594958: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
103881          <idle>-0     (-----) [003] d.s5 24575.594969: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
103882  surfaceflinger-23896 (23896) [000] d..1 24575.594974: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
103883          <idle>-0     (-----) [003] dns5 24575.594976: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
103884          <idle>-0     (-----) [003] d..2 24575.595003: 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
103885  surfaceflinger-23896 (23896) [000] d..2 24575.595005: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
103886          <idle>-0     (-----) [001] .n.1 24575.595011: cpu_idle: state=4294967295 cpu_id=1
103887          <idle>-0     (-----) [001] d..2 24575.595020: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
103888   sfEventThread-23906 (23896) [001] d..2 24575.595064: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103889          <idle>-0     (-----) [001] d..1 24575.595077: cpu_idle: state=0 cpu_id=1
103890  kworker/u16:10-23868 (23868) [003] .... 24575.595100: clk_set_rate: l3_cluster0_vote_clk 300000000
103891  kworker/u16:10-23868 (23868) [003] .... 24575.595112: clk_set_rate: l3_clk 300000000
103892  kworker/u16:10-23868 (23868) [003] d..2 24575.595176: 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
103893          <idle>-0     (-----) [003] d..1 24575.595190: cpu_idle: state=0 cpu_id=3
103894  surfaceflinger-23896 (23896) [000] ...1 24575.595237: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
103895  surfaceflinger-23896 (23896) [000] ...1 24575.595249: tracing_mark_write: E|23896
103896  surfaceflinger-23896 (23896) [000] .... 24575.595308: binder_transaction: transaction=1671328 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
103897  surfaceflinger-23896 (23896) [000] ...2 24575.595340: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
103898  surfaceflinger-23896 (23896) [000] d..4 24575.595348: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
103899  surfaceflinger-23896 (23896) [000] d..5 24575.595375: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
103900          <idle>-0     (-----) [002] .n.1 24575.595382: cpu_idle: state=4294967295 cpu_id=2
103901          <idle>-0     (-----) [002] d..2 24575.595398: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
103902  HwBinder:598_3-633   (  598) [002] .... 24575.595412: binder_transaction_received: transaction=1671328
103903  surfaceflinger-23896 (23896) [000] d..2 24575.595416: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103904          <idle>-0     (-----) [000] d..1 24575.595438: cpu_idle: state=0 cpu_id=0
103905  HwBinder:598_3-633   (  598) [002] ...1 24575.595476: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
103906  HwBinder:598_3-633   (  598) [002] ...1 24575.595648: tracing_mark_write: B|598|HWCSession::PresentDisplay::
103907  HwBinder:598_3-633   (  598) [002] ...1 24575.595880: tracing_mark_write: B|598|HWDeviceDRM::Commit::
103908  HwBinder:598_3-633   (  598) [002] ...1 24575.595897: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
103909  HwBinder:598_3-633   (  598) [002] d..2 24575.596677: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
103910  HwBinder:598_3-633   (  598) [002] d..3 24575.596710: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
103911          <idle>-0     (-----) [001] .n.1 24575.596715: cpu_idle: state=4294967295 cpu_id=1
103912          <idle>-0     (-----) [001] d..2 24575.596728: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
103913  HwBinder:598_3-633   (  598) [002] ...1 24575.596839: tracing_mark_write: E|598
103914  HwBinder:598_3-633   (  598) [002] ...1 24575.596847: tracing_mark_write: E|598
103915  HwBinder:598_3-633   (  598) [002] ...1 24575.596929: tracing_mark_write: E|598
103916  HwBinder:598_3-633   (  598) [002] ...1 24575.596990: tracing_mark_write: E|598
103917  HwBinder:598_3-633   (  598) [002] .... 24575.597011: binder_transaction: transaction=1671329 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
103918  HwBinder:598_3-633   (  598) [002] d..2 24575.597044: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
103919  HwBinder:598_3-633   (  598) [002] d..3 24575.597067: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
103920  HwBinder:598_3-633   (  598) [002] .... 24575.597074: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
103921          <idle>-0     (-----) [000] .n.1 24575.597074: cpu_idle: state=4294967295 cpu_id=0
103922          <idle>-0     (-----) [000] d..2 24575.597087: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
103923  surfaceflinger-23896 (23896) [000] .... 24575.597097: binder_transaction_received: transaction=1671329
103924  HwBinder:598_3-633   (  598) [002] d..2 24575.597185: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103925          <idle>-0     (-----) [002] d..1 24575.597209: cpu_idle: state=0 cpu_id=2
103926  surfaceflinger-23896 (23896) [000] d..1 24575.597379: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
103927  surfaceflinger-23896 (23896) [000] d..2 24575.597419: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
103928          <idle>-0     (-----) [002] .n.1 24575.597427: cpu_idle: state=4294967295 cpu_id=2
103929          <idle>-0     (-----) [002] d..2 24575.597443: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
103930  Binder:23896_5-25989 (23896) [002] .... 24575.597517: binder_transaction: transaction=1671330 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
103931  Binder:23896_5-25989 (23896) [002] d..2 24575.597535: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
103932  Binder:23896_5-25989 (23896) [002] d..3 24575.597555: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
103933 crtc_commit:111-253   (  253) [001] d.s2 24575.597590: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
103934  surfaceflinger-23896 (23896) [000] d.s2 24575.597596: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
103935  Binder:23896_5-25989 (23896) [002] .... 24575.597676: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
103936 crtc_commit:111-253   (  253) [001] d.s3 24575.597688: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
103937          <idle>-0     (-----) [003] d.H3 24575.597716: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
103938  surfaceflinger-23896 (23896) [000] d.s3 24575.597720: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
103939          <idle>-0     (-----) [003] d.H3 24575.597735: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
103940          <idle>-0     (-----) [005] dnh2 24575.597742: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
103941          <idle>-0     (-----) [005] .n.1 24575.597746: cpu_idle: state=4294967295 cpu_id=5
103942 crtc_commit:111-253   (  253) [001] d..2 24575.597746: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
103943          <idle>-0     (-----) [005] d..2 24575.597751: 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
103944  Binder:23896_5-25989 (23896) [002] d..2 24575.597754: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
103945     rcu_preempt-7     (    7) [001] d..2 24575.597756: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
103946          <idle>-0     (-----) [003] dnH4 24575.597763: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
103947         sugov:4-560   (  560) [005] d..2 24575.597764: 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
103948    RenderThread-25194 (24827) [002] .... 24575.597765: binder_transaction_received: transaction=1671330
103949          <idle>-0     (-----) [005] d..1 24575.597770: cpu_idle: state=0 cpu_id=5
103950          <idle>-0     (-----) [003] .n.1 24575.597784: cpu_idle: state=4294967295 cpu_id=3
103951     rcu_preempt-7     (    7) [001] d..3 24575.597789: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
103952          <idle>-0     (-----) [003] d..2 24575.597797: 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
103953     rcu_preempt-7     (    7) [001] d..2 24575.597813: 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
103954  surfaceflinger-23896 (23896) [000] d..2 24575.597814: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103955         sugov:0-559   (  559) [003] d..2 24575.597818: 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
103956         rcuop/0-10    (   10) [003] d..2 24575.597831: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
103957          <idle>-0     (-----) [000] d..1 24575.597837: cpu_idle: state=0 cpu_id=0
103958         rcuop/0-10    (   10) [003] d..3 24575.597878: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
103959         rcuop/0-10    (   10) [003] d..2 24575.597890: 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
103960  kworker/u16:10-23868 (23868) [001] d..2 24575.597902: 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
103961     rcu_preempt-7     (    7) [003] d..2 24575.597921: 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
103962          <idle>-0     (-----) [001] d..1 24575.597922: cpu_idle: state=0 cpu_id=1
103963          <idle>-0     (-----) [003] d..1 24575.597940: cpu_idle: state=0 cpu_id=3
103964          <idle>-0     (-----) [005] ...1 24575.598782: cpu_idle: state=4294967295 cpu_id=5
103965          <idle>-0     (-----) [005] d..1 24575.598785: cpu_idle: state=0 cpu_id=5
103966    RenderThread-25194 (24827) [002] .... 24575.600604: binder_transaction: transaction=1671331 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
103967    RenderThread-25194 (24827) [002] ...2 24575.600623: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
103968    RenderThread-25194 (24827) [002] d..4 24575.600628: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
103969    RenderThread-25194 (24827) [002] dn.5 24575.600653: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
103970    RenderThread-25194 (24827) [002] d..2 24575.600666: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
103971  Binder:23896_5-25989 (23896) [002] .... 24575.600677: binder_transaction_received: transaction=1671331
103972  Binder:23896_5-25989 (23896) [002] .... 24575.600869: binder_transaction: transaction=1671332 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
103973  Binder:23896_5-25989 (23896) [002] .... 24575.600935: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
103974  Binder:23896_5-25989 (23896) [002] d..2 24575.601007: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
103975    RenderThread-25194 (24827) [002] .... 24575.601021: binder_transaction_received: transaction=1671332
103976    RenderThread-25194 (24827) [002] d..2 24575.601176: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103977          <idle>-0     (-----) [002] d..1 24575.601200: cpu_idle: state=0 cpu_id=2
103978          <idle>-0     (-----) [000] d.h5 24575.602726: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
103979          <idle>-0     (-----) [000] d.h6 24575.602753: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
103980          <idle>-0     (-----) [003] .n.1 24575.602760: cpu_idle: state=4294967295 cpu_id=3
103981          <idle>-0     (-----) [000] d.h5 24575.602761: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
103982          <idle>-0     (-----) [003] d..2 24575.602774: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
103983          <idle>-0     (-----) [000] d.h6 24575.602777: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
103984          <idle>-0     (-----) [001] .n.1 24575.602785: cpu_idle: state=4294967295 cpu_id=1
103985  crtc_event:111-254   (  254) [003] d..3 24575.602794: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
103986          <idle>-0     (-----) [000] ...1 24575.602799: cpu_idle: state=4294967295 cpu_id=0
103987          <idle>-0     (-----) [001] d..2 24575.602799: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
103988          <idle>-0     (-----) [000] d..1 24575.602806: cpu_idle: state=0 cpu_id=0
103989  crtc_event:111-254   (  254) [003] d..4 24575.602817: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
103990          <idle>-0     (-----) [002] .n.1 24575.602825: cpu_idle: state=4294967295 cpu_id=2
103991          <idle>-0     (-----) [002] d..2 24575.602839: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
103992  crtc_event:111-254   (  254) [003] d..2 24575.602850: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103993          <idle>-0     (-----) [003] d..1 24575.602860: cpu_idle: state=0 cpu_id=3
103994 crtc_commit:111-253   (  253) [001] d..2 24575.602983: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
103995          <idle>-0     (-----) [001] d..1 24575.602994: cpu_idle: state=0 cpu_id=1
103996 kgsl_worker_thr-246   (  246) [002] d..2 24575.603069: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
103997          <idle>-0     (-----) [002] d..1 24575.603082: cpu_idle: state=0 cpu_id=2
103998          <idle>-0     (-----) [002] d.h2 24575.603153: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
103999          <idle>-0     (-----) [002] dnh3 24575.603170: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
104000          <idle>-0     (-----) [002] .n.1 24575.603180: cpu_idle: state=4294967295 cpu_id=2
104001          <idle>-0     (-----) [002] d..2 24575.603190: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
104002 kgsl_worker_thr-246   (  246) [002] d..2 24575.603216: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
104003 kgsl_worker_thr-246   (  246) [002] d..3 24575.603263: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
104004 kgsl_worker_thr-246   (  246) [002] d..2 24575.603281: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
104005  kworker/u16:10-23868 (23868) [002] d..2 24575.603741: 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
104006          <idle>-0     (-----) [002] d..1 24575.603759: cpu_idle: state=0 cpu_id=2
104007          <idle>-0     (-----) [001] d.s3 24575.604251: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
104008          <idle>-0     (-----) [003] d.s2 24575.604254: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
104009          <idle>-0     (-----) [001] d.s4 24575.604274: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
104010          <idle>-0     (-----) [003] dns3 24575.604284: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
104011          <idle>-0     (-----) [003] dns3 24575.604294: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
104012          <idle>-0     (-----) [001] ...1 24575.604311: cpu_idle: state=4294967295 cpu_id=1
104013          <idle>-0     (-----) [003] dns4 24575.604313: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
104014          <idle>-0     (-----) [001] d..1 24575.604317: cpu_idle: state=0 cpu_id=1
104015          <idle>-0     (-----) [002] .n.1 24575.604320: cpu_idle: state=4294967295 cpu_id=2
104016          <idle>-0     (-----) [003] dns3 24575.604327: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
104017          <idle>-0     (-----) [002] d..2 24575.604336: 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
104018          <idle>-0     (-----) [003] dns4 24575.604346: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
104019  kworker/u16:10-23868 (23868) [002] .... 24575.604370: clk_set_rate: l3_cluster0_vote_clk 480000000
104020          <idle>-0     (-----) [003] .n.1 24575.604371: cpu_idle: state=4294967295 cpu_id=3
104021  kworker/u16:10-23868 (23868) [002] .... 24575.604377: clk_set_rate: l3_clk 480000000
104022          <idle>-0     (-----) [003] d..2 24575.604380: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
104023  crtc_event:111-254   (  254) [003] d..2 24575.604402: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
104024     kworker/3:1-12662 (12662) [003] d..2 24575.604451: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
104025     rcu_preempt-7     (    7) [003] d..2 24575.604492: 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
104026          <idle>-0     (-----) [003] d..1 24575.604527: cpu_idle: state=0 cpu_id=3
104027  kworker/u16:10-23868 (23868) [002] d..2 24575.604736: 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
104028          <idle>-0     (-----) [002] d..1 24575.604753: cpu_idle: state=0 cpu_id=2
104029          <idle>-0     (-----) [000] d.h3 24575.604773: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
104030          <idle>-0     (-----) [000] d.h4 24575.604789: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
104031          <idle>-0     (-----) [002] .n.1 24575.604796: cpu_idle: state=4294967295 cpu_id=2
104032          <idle>-0     (-----) [000] ...1 24575.604807: cpu_idle: state=4294967295 cpu_id=0
104033          <idle>-0     (-----) [002] d..2 24575.604808: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
104034          <idle>-0     (-----) [000] d..1 24575.604814: cpu_idle: state=0 cpu_id=0
104035 kgsl_worker_thr-246   (  246) [002] d..2 24575.604893: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104036          <idle>-0     (-----) [002] d..1 24575.604907: cpu_idle: state=0 cpu_id=2
104037          <idle>-0     (-----) [000] d.h5 24575.605041: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
104038          <idle>-0     (-----) [000] d.h6 24575.605057: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
104039          <idle>-0     (-----) [001] .n.1 24575.605063: cpu_idle: state=4294967295 cpu_id=1
104040          <idle>-0     (-----) [000] ...1 24575.605073: cpu_idle: state=4294967295 cpu_id=0
104041          <idle>-0     (-----) [001] d..2 24575.605074: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
104042          <idle>-0     (-----) [000] d..1 24575.605078: cpu_idle: state=0 cpu_id=0
104043 crtc_commit:111-253   (  253) [001] d..2 24575.605157: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104044          <idle>-0     (-----) [001] d..1 24575.605169: cpu_idle: state=0 cpu_id=1
104045          <idle>-0     (-----) [003] d.s3 24575.605224: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
104046          <idle>-0     (-----) [003] d.s4 24575.605260: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
104047          <idle>-0     (-----) [003] dns4 24575.605267: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
104048          <idle>-0     (-----) [003] .n.1 24575.605276: cpu_idle: state=4294967295 cpu_id=3
104049          <idle>-0     (-----) [003] d..2 24575.605289: 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
104050  kworker/u16:10-23868 (23868) [003] d..2 24575.605325: 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
104051          <idle>-0     (-----) [003] d..1 24575.605337: cpu_idle: state=0 cpu_id=3
104052          <idle>-0     (-----) [000] d.h5 24575.605349: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
104053          <idle>-0     (-----) [000] d.h6 24575.605366: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
104054          <idle>-0     (-----) [003] .n.1 24575.605372: cpu_idle: state=4294967295 cpu_id=3
104055          <idle>-0     (-----) [003] d..2 24575.605384: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
104056          <idle>-0     (-----) [000] ...1 24575.605385: cpu_idle: state=4294967295 cpu_id=0
104057          <idle>-0     (-----) [000] d..1 24575.605391: cpu_idle: state=0 cpu_id=0
104058  crtc_event:111-254   (  254) [003] d..2 24575.605414: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104059          <idle>-0     (-----) [003] d..1 24575.605423: cpu_idle: state=0 cpu_id=3
104060          <idle>-0     (-----) [002] ...1 24575.606140: cpu_idle: state=4294967295 cpu_id=2
104061          <idle>-0     (-----) [002] d..1 24575.606144: cpu_idle: state=0 cpu_id=2
104062          <idle>-0     (-----) [001] d.h2 24575.606881: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
104063          <idle>-0     (-----) [001] dnh3 24575.606897: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
104064          <idle>-0     (-----) [001] .n.1 24575.606906: cpu_idle: state=4294967295 cpu_id=1
104065          <idle>-0     (-----) [001] d..2 24575.606917: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
104066        DispSync-23904 (23896) [001] d..1 24575.606933: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
104067        DispSync-23904 (23896) [001] d..2 24575.606950: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
104068          <idle>-0     (-----) [003] .n.1 24575.606955: cpu_idle: state=4294967295 cpu_id=3
104069          <idle>-0     (-----) [003] d..2 24575.606966: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
104070        DispSync-23904 (23896) [001] d..2 24575.606982: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104071          <idle>-0     (-----) [001] d..1 24575.606994: cpu_idle: state=0 cpu_id=1
104072  appEventThread-23905 (23896) [003] d..3 24575.607008: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
104073  appEventThread-23905 (23896) [003] d..4 24575.607031: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
104074          <idle>-0     (-----) [000] .n.1 24575.607037: cpu_idle: state=4294967295 cpu_id=0
104075          <idle>-0     (-----) [000] d..2 24575.607055: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
104076  appEventThread-23905 (23896) [003] d..2 24575.607070: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104077          <idle>-0     (-----) [003] d..1 24575.607084: cpu_idle: state=0 cpu_id=3
104078 s.nexuslauncher-24827 (24827) [000] .... 24575.607387: binder_transaction: transaction=1671333 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
104079 s.nexuslauncher-24827 (24827) [000] d..4 24575.607398: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
104080 s.nexuslauncher-24827 (24827) [000] d..5 24575.607434: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
104081          <idle>-0     (-----) [001] .n.1 24575.607440: cpu_idle: state=4294967295 cpu_id=1
104082          <idle>-0     (-----) [001] d..2 24575.607455: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
104083  Binder:23896_5-25989 (23896) [001] .... 24575.607463: binder_transaction_received: transaction=1671333
104084 s.nexuslauncher-24827 (24827) [000] d..3 24575.607474: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
104085  Binder:23896_5-25989 (23896) [001] d..1 24575.607492: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
104086 s.nexuslauncher-24827 (24827) [000] d..4 24575.607493: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
104087          <idle>-0     (-----) [002] .n.1 24575.607498: cpu_idle: state=4294967295 cpu_id=2
104088  Binder:23896_5-25989 (23896) [001] d..2 24575.607511: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
104089          <idle>-0     (-----) [002] d..2 24575.607512: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
104090          <idle>-0     (-----) [003] .n.1 24575.607517: cpu_idle: state=4294967295 cpu_id=3
104091          <idle>-0     (-----) [003] d..2 24575.607528: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
104092  Binder:23896_5-25989 (23896) [001] d..2 24575.607555: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104093    RenderThread-25194 (24827) [002] d.s3 24575.607587: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
104094  appEventThread-23905 (23896) [003] d..2 24575.607600: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104095          <idle>-0     (-----) [001] d..1 24575.607602: cpu_idle: state=0 cpu_id=1
104096          <idle>-0     (-----) [003] d..1 24575.607610: cpu_idle: state=0 cpu_id=3
104097    RenderThread-25194 (24827) [002] d.s4 24575.607633: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
104098          <idle>-0     (-----) [001] .n.1 24575.607638: cpu_idle: state=4294967295 cpu_id=1
104099          <idle>-0     (-----) [001] d..2 24575.607652: 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
104100     rcu_preempt-7     (    7) [001] d..2 24575.607659: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
104101    RenderThread-25194 (24827) [002] d..2 24575.607660: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104102          <idle>-0     (-----) [002] d..1 24575.607674: cpu_idle: state=0 cpu_id=2
104103     rcu_preempt-7     (    7) [001] d..3 24575.607702: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
104104          <idle>-0     (-----) [002] .n.1 24575.607709: cpu_idle: state=4294967295 cpu_id=2
104105          <idle>-0     (-----) [002] d..2 24575.607723: 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
104106     rcu_preempt-7     (    7) [001] d..2 24575.607725: 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
104107          <idle>-0     (-----) [001] d..1 24575.607735: cpu_idle: state=0 cpu_id=1
104108         rcuop/0-10    (   10) [002] d..2 24575.607752: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104109          <idle>-0     (-----) [002] d..1 24575.607764: cpu_idle: state=0 cpu_id=2
104110 s.nexuslauncher-24827 (24827) [000] d..3 24575.607899: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
104111 s.nexuslauncher-24827 (24827) [000] d..4 24575.607924: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
104112          <idle>-0     (-----) [002] .n.1 24575.607929: cpu_idle: state=4294967295 cpu_id=2
104113          <idle>-0     (-----) [002] d..2 24575.607941: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
104114 s.nexuslauncher-24827 (24827) [000] d..2 24575.607961: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
104115          <idle>-0     (-----) [000] d..1 24575.607981: cpu_idle: state=0 cpu_id=0
104116    RenderThread-25194 (24827) [002] d..1 24575.608183: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
104117    RenderThread-25194 (24827) [002] d..2 24575.608206: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
104118          <idle>-0     (-----) [000] .n.1 24575.608213: cpu_idle: state=4294967295 cpu_id=0
104119          <idle>-0     (-----) [000] d..2 24575.608228: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
104120    RenderThread-25194 (24827) [002] .... 24575.608272: binder_transaction: transaction=1671334 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
104121    RenderThread-25194 (24827) [002] ...2 24575.608282: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
104122    RenderThread-25194 (24827) [002] d..4 24575.608286: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
104123    RenderThread-25194 (24827) [002] dn.5 24575.608311: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
104124    RenderThread-25194 (24827) [002] d..2 24575.608322: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
104125  Binder:23896_5-25989 (23896) [002] .... 24575.608332: binder_transaction_received: transaction=1671334
104126 s.nexuslauncher-24827 (24827) [000] d..2 24575.608346: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
104127          <idle>-0     (-----) [000] d..1 24575.608361: cpu_idle: state=0 cpu_id=0
104128  Binder:23896_5-25989 (23896) [002] d..2 24575.608386: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
104129    RenderThread-25194 (24827) [002] d..2 24575.608416: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104130          <idle>-0     (-----) [002] d..1 24575.608434: cpu_idle: state=0 cpu_id=2
104131          <idle>-0     (-----) [002] ...1 24575.609651: cpu_idle: state=4294967295 cpu_id=2
104132          <idle>-0     (-----) [002] d..1 24575.609655: cpu_idle: state=0 cpu_id=2
104133          <idle>-0     (-----) [001] d.h2 24575.610884: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
104134          <idle>-0     (-----) [001] dnh3 24575.610899: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
104135          <idle>-0     (-----) [001] .n.1 24575.610908: cpu_idle: state=4294967295 cpu_id=1
104136          <idle>-0     (-----) [003] ...1 24575.610916: cpu_idle: state=4294967295 cpu_id=3
104137          <idle>-0     (-----) [001] d..2 24575.610920: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
104138          <idle>-0     (-----) [003] d..1 24575.610923: cpu_idle: state=0 cpu_id=3
104139        DispSync-23904 (23896) [001] d..1 24575.610936: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
104140        DispSync-23904 (23896) [001] d..2 24575.610961: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
104141          <idle>-0     (-----) [003] .n.1 24575.610967: cpu_idle: state=4294967295 cpu_id=3
104142          <idle>-0     (-----) [003] d..2 24575.610977: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
104143        DispSync-23904 (23896) [001] d..2 24575.611000: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104144   sfEventThread-23906 (23896) [003] d..3 24575.611012: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
104145          <idle>-0     (-----) [001] d..1 24575.611013: cpu_idle: state=0 cpu_id=1
104146   sfEventThread-23906 (23896) [003] d..4 24575.611032: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
104147          <idle>-0     (-----) [000] .n.1 24575.611038: cpu_idle: state=4294967295 cpu_id=0
104148          <idle>-0     (-----) [000] d..2 24575.611053: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
104149   sfEventThread-23906 (23896) [003] d..2 24575.611068: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104150          <idle>-0     (-----) [003] d..1 24575.611081: cpu_idle: state=0 cpu_id=3
104151  surfaceflinger-23896 (23896) [000] d..1 24575.611245: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
104152  surfaceflinger-23896 (23896) [000] d..2 24575.611280: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
104153          <idle>-0     (-----) [001] .n.1 24575.611285: cpu_idle: state=4294967295 cpu_id=1
104154          <idle>-0     (-----) [001] d..2 24575.611298: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
104155  Binder:23896_5-25989 (23896) [001] d..2 24575.611337: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104156          <idle>-0     (-----) [001] d..1 24575.611350: cpu_idle: state=0 cpu_id=1
104157  surfaceflinger-23896 (23896) [000] d..2 24575.611430: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
104158  surfaceflinger-23896 (23896) [000] d..3 24575.611480: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
104159  surfaceflinger-23896 (23896) [000] d..1 24575.611512: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
104160  surfaceflinger-23896 (23896) [000] d..2 24575.611534: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
104161          <idle>-0     (-----) [003] .n.1 24575.611540: cpu_idle: state=4294967295 cpu_id=3
104162          <idle>-0     (-----) [003] d..2 24575.611551: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
104163   sfEventThread-23906 (23896) [003] d..2 24575.611588: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104164          <idle>-0     (-----) [003] d..1 24575.611599: cpu_idle: state=0 cpu_id=3
104165  surfaceflinger-23896 (23896) [000] ...1 24575.611747: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
104166  surfaceflinger-23896 (23896) [000] ...1 24575.611758: tracing_mark_write: E|23896
104167  surfaceflinger-23896 (23896) [000] .... 24575.611819: binder_transaction: transaction=1671335 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
104168  surfaceflinger-23896 (23896) [000] ...2 24575.611850: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
104169  surfaceflinger-23896 (23896) [000] d..4 24575.611860: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
104170  surfaceflinger-23896 (23896) [000] d..5 24575.611884: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
104171          <idle>-0     (-----) [002] .n.1 24575.611888: cpu_idle: state=4294967295 cpu_id=2
104172          <idle>-0     (-----) [002] d..2 24575.611904: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
104173  surfaceflinger-23896 (23896) [000] d..2 24575.611907: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
104174         rcuop/0-10    (   10) [000] d..2 24575.611912: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
104175  HwBinder:598_3-633   (  598) [002] .... 24575.611917: binder_transaction_received: transaction=1671335
104176         rcuop/0-10    (   10) [000] d..3 24575.611953: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
104177         rcuop/0-10    (   10) [000] d..2 24575.611965: 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
104178  HwBinder:598_3-633   (  598) [002] ...1 24575.611970: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
104179     rcu_preempt-7     (    7) [000] d..2 24575.611993: 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
104180          <idle>-0     (-----) [000] d..1 24575.612010: cpu_idle: state=0 cpu_id=0
104181  HwBinder:598_3-633   (  598) [002] ...1 24575.612131: tracing_mark_write: B|598|HWCSession::PresentDisplay::
104182  HwBinder:598_3-633   (  598) [002] ...1 24575.612357: tracing_mark_write: B|598|HWDeviceDRM::Commit::
104183  HwBinder:598_3-633   (  598) [002] ...1 24575.612374: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
104184  HwBinder:598_3-633   (  598) [002] d..2 24575.613103: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
104185  HwBinder:598_3-633   (  598) [002] d..3 24575.613131: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
104186          <idle>-0     (-----) [001] .n.1 24575.613136: cpu_idle: state=4294967295 cpu_id=1
104187          <idle>-0     (-----) [001] d..2 24575.613148: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
104188  HwBinder:598_3-633   (  598) [002] ...1 24575.613247: tracing_mark_write: E|598
104189  HwBinder:598_3-633   (  598) [002] ...1 24575.613254: tracing_mark_write: E|598
104190  HwBinder:598_3-633   (  598) [002] ...1 24575.613328: tracing_mark_write: E|598
104191  HwBinder:598_3-633   (  598) [002] ...1 24575.613384: tracing_mark_write: E|598
104192  HwBinder:598_3-633   (  598) [002] .... 24575.613403: binder_transaction: transaction=1671336 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
104193  HwBinder:598_3-633   (  598) [002] d..2 24575.613430: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
104194  HwBinder:598_3-633   (  598) [002] d..3 24575.613449: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
104195  HwBinder:598_3-633   (  598) [002] .... 24575.613455: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
104196          <idle>-0     (-----) [000] .n.1 24575.613456: cpu_idle: state=4294967295 cpu_id=0
104197          <idle>-0     (-----) [000] d..2 24575.613467: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
104198  surfaceflinger-23896 (23896) [000] .... 24575.613478: binder_transaction_received: transaction=1671336
104199  HwBinder:598_3-633   (  598) [002] d..2 24575.613550: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104200          <idle>-0     (-----) [002] d..1 24575.613569: cpu_idle: state=0 cpu_id=2
104201  surfaceflinger-23896 (23896) [000] d..1 24575.613730: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
104202  surfaceflinger-23896 (23896) [000] d..2 24575.613766: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
104203          <idle>-0     (-----) [002] .n.1 24575.613770: cpu_idle: state=4294967295 cpu_id=2
104204          <idle>-0     (-----) [002] d..2 24575.613785: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
104205  Binder:23896_5-25989 (23896) [002] .... 24575.613846: binder_transaction: transaction=1671337 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
104206  Binder:23896_5-25989 (23896) [002] d..2 24575.613861: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
104207  Binder:23896_5-25989 (23896) [002] d..3 24575.613878: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
104208  Binder:23896_5-25989 (23896) [002] .... 24575.613883: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
104209  surfaceflinger-23896 (23896) [000] d..1 24575.613898: sched_waking: comm=surfaceflinger pid=23930 prio=112 target_cpu=000
104210  surfaceflinger-23896 (23896) [000] d..2 24575.613938: sched_wakeup: comm=surfaceflinger pid=23930 prio=112 target_cpu=003
104211  Binder:23896_5-25989 (23896) [002] d..2 24575.613942: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
104212          <idle>-0     (-----) [003] .n.1 24575.613944: cpu_idle: state=4294967295 cpu_id=3
104213    RenderThread-25194 (24827) [002] .... 24575.613951: binder_transaction_received: transaction=1671337
104214          <idle>-0     (-----) [003] d..2 24575.613958: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23930 next_prio=112
104215 crtc_commit:111-253   (  253) [001] d..2 24575.613982: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
104216  surfaceflinger-23896 (23896) [000] d..2 24575.613996: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
104217          <idle>-0     (-----) [001] d..1 24575.613997: cpu_idle: state=0 cpu_id=1
104218  surfaceflinger-23930 (23896) [003] ...1 24575.614005: tracing_mark_write: B|23896|HIDL::IComposerClient::setVsyncEnabled::client
104219  surfaceflinger-23930 (23896) [003] ...1 24575.614013: tracing_mark_write: E|23896
104220          <idle>-0     (-----) [000] d..1 24575.614014: cpu_idle: state=0 cpu_id=0
104221  surfaceflinger-23930 (23896) [003] .... 24575.614054: binder_transaction: transaction=1671338 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x14
104222  surfaceflinger-23930 (23896) [003] ...2 24575.614063: binder_set_priority: proc=598 thread=633 old=97 => new=112 desired=112
104223  surfaceflinger-23930 (23896) [003] d..4 24575.614074: sched_waking: comm=HwBinder:598_3 pid=633 prio=112 target_cpu=002
104224  surfaceflinger-23930 (23896) [003] d..5 24575.614100: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=112 target_cpu=003
104225  surfaceflinger-23930 (23896) [003] d..2 24575.614119: sched_switch: prev_comm=surfaceflinger prev_pid=23930 prev_prio=112 prev_state=S ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=112
104226  HwBinder:598_3-633   (  598) [003] .... 24575.614130: binder_transaction_received: transaction=1671338
104227  HwBinder:598_3-633   (  598) [003] ...1 24575.614174: tracing_mark_write: B|598|HIDL::IComposerClient::setVsyncEnabled::server
104228  HwBinder:598_3-633   (  598) [003] ...1 24575.614195: tracing_mark_write: C|598|SetVsyncState |1
104229  HwBinder:598_3-633   (  598) [003] d.s2 24575.614258: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
104230  HwBinder:598_3-633   (  598) [003] d.s3 24575.614281: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
104231  HwBinder:598_3-633   (  598) [003] ...1 24575.614354: tracing_mark_write: E|598
104232  HwBinder:598_3-633   (  598) [003] .... 24575.614369: binder_transaction: transaction=1671339 dest_node=0 dest_proc=23896 dest_thread=23930 reply=1 flags=0x0 code=0x0
104233  HwBinder:598_3-633   (  598) [003] d..2 24575.614376: sched_waking: comm=surfaceflinger pid=23930 prio=112 target_cpu=003
104234  HwBinder:598_3-633   (  598) [003] d..3 24575.614404: sched_wakeup: comm=surfaceflinger pid=23930 prio=112 target_cpu=000
104235  HwBinder:598_3-633   (  598) [003] .... 24575.614409: binder_set_priority: proc=598 thread=633 old=112 => new=97 desired=97
104236          <idle>-0     (-----) [000] .n.1 24575.614411: cpu_idle: state=4294967295 cpu_id=0
104237          <idle>-0     (-----) [000] d..2 24575.614427: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23930 next_prio=112
104238  surfaceflinger-23930 (23896) [000] .... 24575.614438: binder_transaction_received: transaction=1671339
104239  HwBinder:598_3-633   (  598) [003] d..2 24575.614468: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
104240  surfaceflinger-23930 (23896) [000] d..2 24575.614506: sched_switch: prev_comm=surfaceflinger prev_pid=23930 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
104241          <idle>-0     (-----) [000] d..1 24575.614548: cpu_idle: state=0 cpu_id=0
104242  kworker/u16:10-23868 (23868) [003] .... 24575.614675: clk_set_rate: l3_cluster0_vote_clk 403200000
104243  kworker/u16:10-23868 (23868) [003] .... 24575.614683: clk_set_rate: l3_clk 403200000
104244  kworker/u16:10-23868 (23868) [003] d..2 24575.614746: 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
104245          <idle>-0     (-----) [003] d..1 24575.614767: cpu_idle: state=0 cpu_id=3
104246    RenderThread-25194 (24827) [002] .... 24575.616645: binder_transaction: transaction=1671340 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
104247    RenderThread-25194 (24827) [002] ...2 24575.616663: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
104248    RenderThread-25194 (24827) [002] d..4 24575.616668: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
104249    RenderThread-25194 (24827) [002] dn.5 24575.616690: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
104250    RenderThread-25194 (24827) [002] d..2 24575.616702: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
104251  Binder:23896_5-25989 (23896) [002] .... 24575.616714: binder_transaction_received: transaction=1671340
104252  Binder:23896_5-25989 (23896) [002] .... 24575.616896: binder_transaction: transaction=1671341 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
104253  Binder:23896_5-25989 (23896) [002] .... 24575.616906: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
104254  Binder:23896_5-25989 (23896) [002] d..2 24575.616973: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
104255    RenderThread-25194 (24827) [002] .... 24575.616984: binder_transaction_received: transaction=1671341
104256    RenderThread-25194 (24827) [002] d..2 24575.617093: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104257          <idle>-0     (-----) [002] d..1 24575.617115: cpu_idle: state=0 cpu_id=2
104258          <idle>-0     (-----) [000] d.H3 24575.617672: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
104259          <idle>-0     (-----) [000] d.H3 24575.617690: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
104260          <idle>-0     (-----) [005] dnh2 24575.617697: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
104261          <idle>-0     (-----) [005] .n.1 24575.617701: cpu_idle: state=4294967295 cpu_id=5
104262          <idle>-0     (-----) [005] d..2 24575.617706: 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
104263          <idle>-0     (-----) [000] d.H4 24575.617708: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
104264          <idle>-0     (-----) [003] .n.1 24575.617715: cpu_idle: state=4294967295 cpu_id=3
104265          <idle>-0     (-----) [000] d.s2 24575.617717: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
104266         sugov:4-560   (  560) [005] d..2 24575.617719: 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
104267          <idle>-0     (-----) [005] d..1 24575.617725: cpu_idle: state=0 cpu_id=5
104268          <idle>-0     (-----) [003] d..2 24575.617728: 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
104269          <idle>-0     (-----) [000] dns3 24575.617737: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
104270          <idle>-0     (-----) [000] .n.1 24575.617759: cpu_idle: state=4294967295 cpu_id=0
104271         sugov:0-559   (  559) [003] .... 24575.617769: clk_set_rate: pwrcl_clk 979200000
104272          <idle>-0     (-----) [000] d..2 24575.617770: 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
104273         sugov:0-559   (  559) [003] .... 24575.617779: clk_set_rate: cpu3_pwrcl_clk 825600000
104274         sugov:0-559   (  559) [003] .... 24575.617791: clk_set_rate: cpu2_pwrcl_clk 825600000
104275         sugov:0-559   (  559) [003] .... 24575.617801: clk_set_rate: cpu1_pwrcl_clk 825600000
104276     rcu_preempt-7     (    7) [000] d..2 24575.617801: 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
104277         sugov:0-559   (  559) [003] .... 24575.617810: clk_set_rate: cpu0_pwrcl_clk 979200000
104278          <idle>-0     (-----) [000] d..1 24575.617817: cpu_idle: state=0 cpu_id=0
104279         sugov:0-559   (  559) [003] .... 24575.617821: cpu_frequency: state=979200 cpu_id=0
104280         sugov:0-559   (  559) [003] .... 24575.617854: cpu_frequency: state=979200 cpu_id=1
104281         sugov:0-559   (  559) [003] .... 24575.617861: cpu_frequency: state=979200 cpu_id=2
104282         sugov:0-559   (  559) [003] .... 24575.617865: cpu_frequency: state=979200 cpu_id=3
104283         sugov:0-559   (  559) [003] d..2 24575.617892: 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
104284          <idle>-0     (-----) [003] d..1 24575.617905: cpu_idle: state=0 cpu_id=3
104285          <idle>-0     (-----) [005] ...1 24575.618736: cpu_idle: state=4294967295 cpu_id=5
104286          <idle>-0     (-----) [005] d..1 24575.618739: cpu_idle: state=0 cpu_id=5
104287          <idle>-0     (-----) [000] d.h5 24575.619193: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
104288          <idle>-0     (-----) [000] d.h6 24575.619212: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
104289          <idle>-0     (-----) [000] d.h5 24575.619217: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
104290          <idle>-0     (-----) [003] .n.1 24575.619217: cpu_idle: state=4294967295 cpu_id=3
104291          <idle>-0     (-----) [003] d..2 24575.619227: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
104292          <idle>-0     (-----) [000] d.h6 24575.619229: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
104293          <idle>-0     (-----) [001] .n.1 24575.619236: cpu_idle: state=4294967295 cpu_id=1
104294  crtc_event:111-254   (  254) [003] d..3 24575.619245: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
104295          <idle>-0     (-----) [000] ...1 24575.619246: cpu_idle: state=4294967295 cpu_id=0
104296          <idle>-0     (-----) [001] d..2 24575.619247: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
104297          <idle>-0     (-----) [000] d..1 24575.619251: cpu_idle: state=0 cpu_id=0
104298  crtc_event:111-254   (  254) [003] d..4 24575.619265: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
104299          <idle>-0     (-----) [002] .n.1 24575.619272: cpu_idle: state=4294967295 cpu_id=2
104300          <idle>-0     (-----) [002] d..2 24575.619285: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
104301  crtc_event:111-254   (  254) [003] d..2 24575.619290: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104302          <idle>-0     (-----) [003] d..1 24575.619301: cpu_idle: state=0 cpu_id=3
104303 crtc_commit:111-253   (  253) [001] d..2 24575.619405: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
104304          <idle>-0     (-----) [001] d..1 24575.619414: cpu_idle: state=0 cpu_id=1
104305 kgsl_worker_thr-246   (  246) [002] d..2 24575.619492: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
104306          <idle>-0     (-----) [002] d..1 24575.619503: cpu_idle: state=0 cpu_id=2
104307          <idle>-0     (-----) [002] d.h2 24575.619579: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
104308          <idle>-0     (-----) [002] dnh3 24575.619594: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
104309          <idle>-0     (-----) [002] .n.1 24575.619602: cpu_idle: state=4294967295 cpu_id=2
104310          <idle>-0     (-----) [002] d..2 24575.619611: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
104311 kgsl_worker_thr-246   (  246) [002] d..2 24575.619633: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
104312 kgsl_worker_thr-246   (  246) [002] d..3 24575.619675: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
104313 kgsl_worker_thr-246   (  246) [002] d..2 24575.619689: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
104314  kworker/u16:10-23868 (23868) [002] d..2 24575.620106: 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
104315          <idle>-0     (-----) [002] d..1 24575.620121: cpu_idle: state=0 cpu_id=2
104316          <idle>-0     (-----) [001] d.s3 24575.620912: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
104317          <idle>-0     (-----) [001] d.s4 24575.620930: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
104318          <idle>-0     (-----) [003] .n.1 24575.620935: cpu_idle: state=4294967295 cpu_id=3
104319          <idle>-0     (-----) [001] d.s3 24575.620938: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
104320          <idle>-0     (-----) [003] d..2 24575.620946: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
104321          <idle>-0     (-----) [001] d.s4 24575.620955: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
104322          <idle>-0     (-----) [002] .n.1 24575.620962: cpu_idle: state=4294967295 cpu_id=2
104323          <idle>-0     (-----) [002] d..2 24575.620976: 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
104324          <idle>-0     (-----) [001] ...1 24575.620977: cpu_idle: state=4294967295 cpu_id=1
104325  crtc_event:111-254   (  254) [003] d..2 24575.620981: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104326          <idle>-0     (-----) [001] d..1 24575.620983: cpu_idle: state=0 cpu_id=1
104327          <idle>-0     (-----) [003] d..1 24575.620990: cpu_idle: state=0 cpu_id=3
104328  kworker/u16:10-23868 (23868) [002] d..2 24575.621064: 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
104329          <idle>-0     (-----) [002] d..1 24575.621074: cpu_idle: state=0 cpu_id=2
104330          <idle>-0     (-----) [000] d.h3 24575.621181: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
104331          <idle>-0     (-----) [000] d.h4 24575.621197: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
104332          <idle>-0     (-----) [002] .n.1 24575.621203: cpu_idle: state=4294967295 cpu_id=2
104333          <idle>-0     (-----) [000] ...1 24575.621210: cpu_idle: state=4294967295 cpu_id=0
104334          <idle>-0     (-----) [002] d..2 24575.621212: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
104335          <idle>-0     (-----) [000] d..1 24575.621214: cpu_idle: state=0 cpu_id=0
104336 kgsl_worker_thr-246   (  246) [002] d..2 24575.621282: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104337          <idle>-0     (-----) [002] d..1 24575.621295: cpu_idle: state=0 cpu_id=2
104338          <idle>-0     (-----) [000] d.h5 24575.621515: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
104339          <idle>-0     (-----) [000] d.h6 24575.621529: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
104340          <idle>-0     (-----) [001] .n.1 24575.621535: cpu_idle: state=4294967295 cpu_id=1
104341          <idle>-0     (-----) [000] ...1 24575.621542: cpu_idle: state=4294967295 cpu_id=0
104342          <idle>-0     (-----) [001] d..2 24575.621544: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
104343          <idle>-0     (-----) [000] d..1 24575.621546: cpu_idle: state=0 cpu_id=0
104344 crtc_commit:111-253   (  253) [001] d..2 24575.621636: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104345          <idle>-0     (-----) [001] d..1 24575.621648: cpu_idle: state=0 cpu_id=1
104346          <idle>-0     (-----) [000] d.h5 24575.621827: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
104347          <idle>-0     (-----) [000] d.h6 24575.621842: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
104348          <idle>-0     (-----) [003] .n.1 24575.621848: cpu_idle: state=4294967295 cpu_id=3
104349          <idle>-0     (-----) [000] d.h7 24575.621857: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
104350          <idle>-0     (-----) [003] d..2 24575.621857: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
104351          <idle>-0     (-----) [000] dnh8 24575.621874: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
104352  crtc_event:111-254   (  254) [003] d..2 24575.621886: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104353          <idle>-0     (-----) [000] dnh9 24575.621894: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
104354          <idle>-0     (-----) [003] d..1 24575.621896: cpu_idle: state=0 cpu_id=3
104355          <idle>-0     (-----) [000] dnha 24575.621909: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
104356          <idle>-0     (-----) [001] .n.1 24575.621916: cpu_idle: state=4294967295 cpu_id=1
104357          <idle>-0     (-----) [000] dnh7 24575.621919: sched_waking: comm=SDM_EventThread pid=624 prio=111 target_cpu=000
104358          <idle>-0     (-----) [001] d..2 24575.621925: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
104359          <idle>-0     (-----) [000] dnh8 24575.621943: sched_wakeup: comm=SDM_EventThread pid=624 prio=111 target_cpu=000
104360          <idle>-0     (-----) [000] .n.1 24575.621959: cpu_idle: state=4294967295 cpu_id=0
104361 crtc_commit:111-253   (  253) [001] d..2 24575.621967: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104362          <idle>-0     (-----) [001] d..1 24575.621975: cpu_idle: state=0 cpu_id=1
104363          <idle>-0     (-----) [000] d..2 24575.621976: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
104364     kworker/0:1-13012 (13012) [000] d..2 24575.622007: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=624 next_prio=111
104365 SDM_EventThread-624   (  598) [000] ...1 24575.622079: tracing_mark_write: B|598|HWCCallbacks::Vsync::
104366 SDM_EventThread-624   (  598) [000] ...1 24575.622096: tracing_mark_write: B|598|HIDL::IComposerCallback::onVsync::client
104367 SDM_EventThread-624   (  598) [000] ...1 24575.622102: tracing_mark_write: E|598
104368 SDM_EventThread-624   (  598) [000] .... 24575.622146: binder_transaction: transaction=1671342 dest_node=1270370 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
104369 SDM_EventThread-624   (  598) [000] d..4 24575.622160: sched_waking: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=001
104370 SDM_EventThread-624   (  598) [000] d..5 24575.622189: sched_wakeup: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=001
104371          <idle>-0     (-----) [001] .n.1 24575.622194: cpu_idle: state=4294967295 cpu_id=1
104372          <idle>-0     (-----) [001] d..2 24575.622207: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:23896_ next_pid=23923 next_prio=120
104373 HwBinder:23896_-23923 (23896) [001] .... 24575.622219: binder_transaction_received: transaction=1671342
104374 SDM_EventThread-624   (  598) [000] ...1 24575.622221: tracing_mark_write: E|598
104375 SDM_EventThread-624   (  598) [000] d..4 24575.622236: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
104376 SDM_EventThread-624   (  598) [000] d..5 24575.622266: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
104377          <idle>-0     (-----) [003] .n.1 24575.622271: cpu_idle: state=4294967295 cpu_id=3
104378          <idle>-0     (-----) [003] d..2 24575.622280: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
104379 HwBinder:23896_-23923 (23896) [001] ...1 24575.622284: tracing_mark_write: B|23896|HIDL::IComposerCallback::onVsync::server
104380 crtc_commit:111-253   (  253) [003] d..2 24575.622308: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104381 HwBinder:23896_-23923 (23896) [001] d..1 24575.622311: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
104382 SDM_EventThread-624   (  598) [000] d..2 24575.622311: sched_switch: prev_comm=SDM_EventThread prev_pid=624 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
104383          <idle>-0     (-----) [003] d..1 24575.622319: cpu_idle: state=0 cpu_id=3
104384          <idle>-0     (-----) [000] d..1 24575.622325: cpu_idle: state=0 cpu_id=0
104385 HwBinder:23896_-23923 (23896) [001] d..2 24575.622343: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
104386          <idle>-0     (-----) [000] .n.1 24575.622350: cpu_idle: state=4294967295 cpu_id=0
104387 HwBinder:23896_-23923 (23896) [001] ...1 24575.622356: tracing_mark_write: E|23896
104388          <idle>-0     (-----) [000] d..2 24575.622359: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
104389        DispSync-23904 (23896) [000] d..2 24575.622402: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
104390          <idle>-0     (-----) [000] d..1 24575.622411: cpu_idle: state=0 cpu_id=0
104391 HwBinder:23896_-23923 (23896) [001] d..2 24575.622413: sched_switch: prev_comm=HwBinder:23896_ prev_pid=23923 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104392          <idle>-0     (-----) [001] d..1 24575.622426: cpu_idle: state=0 cpu_id=1
104393          <idle>-0     (-----) [002] ...1 24575.622613: cpu_idle: state=4294967295 cpu_id=2
104394          <idle>-0     (-----) [002] d..1 24575.622618: cpu_idle: state=0 cpu_id=2
104395          <idle>-0     (-----) [001] ...1 24575.623368: cpu_idle: state=4294967295 cpu_id=1
104396          <idle>-0     (-----) [001] d..1 24575.623375: cpu_idle: state=0 cpu_id=1
104397          <idle>-0     (-----) [000] d.h2 24575.623794: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
104398          <idle>-0     (-----) [000] dnh3 24575.623806: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
104399          <idle>-0     (-----) [000] .n.1 24575.623813: cpu_idle: state=4294967295 cpu_id=0
104400          <idle>-0     (-----) [000] d..2 24575.623820: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
104401        DispSync-23904 (23896) [000] d..1 24575.623835: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
104402        DispSync-23904 (23896) [000] d..2 24575.623852: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
104403          <idle>-0     (-----) [003] .n.1 24575.623858: cpu_idle: state=4294967295 cpu_id=3
104404          <idle>-0     (-----) [003] d..2 24575.623867: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
104405        DispSync-23904 (23896) [000] d..2 24575.623881: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
104406          <idle>-0     (-----) [000] d..1 24575.623890: cpu_idle: state=0 cpu_id=0
104407  appEventThread-23905 (23896) [003] d..3 24575.623923: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
104408  appEventThread-23905 (23896) [003] d..4 24575.623953: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
104409          <idle>-0     (-----) [000] .n.1 24575.623958: cpu_idle: state=4294967295 cpu_id=0
104410          <idle>-0     (-----) [000] d..2 24575.623970: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
104411  appEventThread-23905 (23896) [003] d..2 24575.623991: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104412          <idle>-0     (-----) [003] d..1 24575.624007: cpu_idle: state=0 cpu_id=3
104413          <idle>-0     (-----) [004] d.s3 24575.624248: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
104414 s.nexuslauncher-24827 (24827) [000] d.s1 24575.624255: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
104415          <idle>-0     (-----) [004] dns4 24575.624257: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
104416          <idle>-0     (-----) [004] .n.1 24575.624271: cpu_idle: state=4294967295 cpu_id=4
104417          <idle>-0     (-----) [004] d..2 24575.624278: 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
104418 s.nexuslauncher-24827 (24827) [000] d.s2 24575.624279: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
104419 s.nexuslauncher-24827 (24827) [000] d.s2 24575.624286: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
104420     kworker/4:0-24269 (24269) [004] d..2 24575.624308: 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
104421          <idle>-0     (-----) [004] d..1 24575.624315: cpu_idle: state=0 cpu_id=4
104422 s.nexuslauncher-24827 (24827) [000] d.s3 24575.624321: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
104423 s.nexuslauncher-24827 (24827) [000] .... 24575.624471: binder_transaction: transaction=1671343 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
104424 s.nexuslauncher-24827 (24827) [000] d..4 24575.624481: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
104425 s.nexuslauncher-24827 (24827) [000] d..5 24575.624515: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
104426          <idle>-0     (-----) [001] .n.1 24575.624520: cpu_idle: state=4294967295 cpu_id=1
104427          <idle>-0     (-----) [001] d..2 24575.624539: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
104428  Binder:23896_5-25989 (23896) [001] .... 24575.624546: binder_transaction_received: transaction=1671343
104429 s.nexuslauncher-24827 (24827) [000] d..3 24575.624552: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
104430 s.nexuslauncher-24827 (24827) [000] d..4 24575.624571: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
104431          <idle>-0     (-----) [002] .n.1 24575.624577: cpu_idle: state=4294967295 cpu_id=2
104432  Binder:23896_5-25989 (23896) [001] d..1 24575.624578: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
104433          <idle>-0     (-----) [002] d..2 24575.624591: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
104434  Binder:23896_5-25989 (23896) [001] d..2 24575.624597: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
104435          <idle>-0     (-----) [003] .n.1 24575.624604: cpu_idle: state=4294967295 cpu_id=3
104436          <idle>-0     (-----) [003] d..2 24575.624615: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
104437  Binder:23896_5-25989 (23896) [001] d..2 24575.624643: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104438    RenderThread-25194 (24827) [002] d..2 24575.624645: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104439          <idle>-0     (-----) [002] d..1 24575.624657: cpu_idle: state=0 cpu_id=2
104440          <idle>-0     (-----) [001] d..1 24575.624659: cpu_idle: state=0 cpu_id=1
104441  appEventThread-23905 (23896) [003] d..2 24575.624682: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
104442     rcu_preempt-7     (    7) [003] d..2 24575.624693: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
104443     rcu_preempt-7     (    7) [003] d..3 24575.624731: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
104444     rcu_preempt-7     (    7) [003] d..2 24575.624743: 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
104445         rcuop/0-10    (   10) [003] d..2 24575.624753: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
104446         rcuop/0-10    (   10) [003] d..3 24575.624766: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
104447         rcuop/0-10    (   10) [003] d..2 24575.624775: 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
104448     rcu_preempt-7     (    7) [003] d..2 24575.624800: 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
104449          <idle>-0     (-----) [003] d..1 24575.624813: cpu_idle: state=0 cpu_id=3
104450 s.nexuslauncher-24827 (24827) [000] d..3 24575.624929: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
104451 s.nexuslauncher-24827 (24827) [000] d..4 24575.624952: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
104452          <idle>-0     (-----) [002] .n.1 24575.624957: cpu_idle: state=4294967295 cpu_id=2
104453          <idle>-0     (-----) [002] d..2 24575.624970: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
104454 s.nexuslauncher-24827 (24827) [000] d..2 24575.624977: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
104455  kworker/u16:10-23868 (23868) [000] d..2 24575.625131: 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
104456          <idle>-0     (-----) [000] d..1 24575.625149: cpu_idle: state=0 cpu_id=0
104457    RenderThread-25194 (24827) [002] d..1 24575.625215: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
104458    RenderThread-25194 (24827) [002] d..2 24575.625237: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
104459          <idle>-0     (-----) [000] .n.1 24575.625244: cpu_idle: state=4294967295 cpu_id=0
104460          <idle>-0     (-----) [000] d..2 24575.625258: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
104461    RenderThread-25194 (24827) [002] .... 24575.625304: binder_transaction: transaction=1671344 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
104462    RenderThread-25194 (24827) [002] ...2 24575.625314: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
104463    RenderThread-25194 (24827) [002] d..4 24575.625318: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
104464    RenderThread-25194 (24827) [002] dn.5 24575.625341: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
104465    RenderThread-25194 (24827) [002] d..2 24575.625353: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
104466  Binder:23896_5-25989 (23896) [002] .... 24575.625362: binder_transaction_received: transaction=1671344
104467 s.nexuslauncher-24827 (24827) [000] d..2 24575.625379: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
104468          <idle>-0     (-----) [000] d..1 24575.625393: cpu_idle: state=0 cpu_id=0
104469  Binder:23896_5-25989 (23896) [002] d..2 24575.625413: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
104470    RenderThread-25194 (24827) [002] d..2 24575.625441: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104471          <idle>-0     (-----) [002] d..1 24575.625459: cpu_idle: state=0 cpu_id=2
104472          <idle>-0     (-----) [001] ...1 24575.626294: cpu_idle: state=4294967295 cpu_id=1
104473          <idle>-0     (-----) [001] d..1 24575.626299: cpu_idle: state=0 cpu_id=1
104474          <idle>-0     (-----) [002] ...1 24575.626807: cpu_idle: state=4294967295 cpu_id=2
104475          <idle>-0     (-----) [002] d..1 24575.626811: cpu_idle: state=0 cpu_id=2
104476          <idle>-0     (-----) [000] d.h2 24575.627828: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
104477          <idle>-0     (-----) [000] dnh3 24575.627844: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
104478          <idle>-0     (-----) [000] .n.1 24575.627854: cpu_idle: state=4294967295 cpu_id=0
104479          <idle>-0     (-----) [000] d..2 24575.627865: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
104480        DispSync-23904 (23896) [000] d..1 24575.627887: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
104481        DispSync-23904 (23896) [000] d..2 24575.627906: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
104482          <idle>-0     (-----) [003] .n.1 24575.627912: cpu_idle: state=4294967295 cpu_id=3
104483          <idle>-0     (-----) [003] d..2 24575.627925: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
104484        DispSync-23904 (23896) [000] d..2 24575.627949: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
104485          <idle>-0     (-----) [000] d..2 24575.627954: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
104486   sfEventThread-23906 (23896) [003] d..3 24575.627960: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
104487          <idle>-0     (-----) [000] dn.3 24575.627972: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
104488          <idle>-0     (-----) [000] d..2 24575.627987: 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
104489   sfEventThread-23906 (23896) [003] d..4 24575.628007: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
104490          <idle>-0     (-----) [001] .n.1 24575.628012: cpu_idle: state=4294967295 cpu_id=1
104491     ksoftirqd/0-3     (    3) [000] d..2 24575.628015: 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
104492          <idle>-0     (-----) [001] d..2 24575.628024: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
104493          <idle>-0     (-----) [000] d..1 24575.628029: cpu_idle: state=0 cpu_id=0
104494   sfEventThread-23906 (23896) [003] d..2 24575.628042: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104495          <idle>-0     (-----) [003] d..1 24575.628053: cpu_idle: state=0 cpu_id=3
104496  surfaceflinger-23896 (23896) [001] d..1 24575.628240: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
104497  surfaceflinger-23896 (23896) [001] d..2 24575.628273: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
104498          <idle>-0     (-----) [000] .n.1 24575.628279: cpu_idle: state=4294967295 cpu_id=0
104499          <idle>-0     (-----) [000] d..2 24575.628291: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
104500  Binder:23896_5-25989 (23896) [000] d..2 24575.628329: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
104501          <idle>-0     (-----) [000] d..1 24575.628340: cpu_idle: state=0 cpu_id=0
104502  surfaceflinger-23896 (23896) [001] d..1 24575.628451: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
104503  surfaceflinger-23896 (23896) [001] d..2 24575.628475: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
104504          <idle>-0     (-----) [003] .n.1 24575.628480: cpu_idle: state=4294967295 cpu_id=3
104505          <idle>-0     (-----) [003] d..2 24575.628488: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
104506   sfEventThread-23906 (23896) [003] d..2 24575.628521: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104507          <idle>-0     (-----) [003] d..1 24575.628529: cpu_idle: state=0 cpu_id=3
104508  surfaceflinger-23896 (23896) [001] ...1 24575.628666: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
104509  surfaceflinger-23896 (23896) [001] ...1 24575.628675: tracing_mark_write: E|23896
104510  surfaceflinger-23896 (23896) [001] .... 24575.628731: binder_transaction: transaction=1671345 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
104511  surfaceflinger-23896 (23896) [001] ...2 24575.628762: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
104512  surfaceflinger-23896 (23896) [001] d..4 24575.628769: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
104513  surfaceflinger-23896 (23896) [001] d..5 24575.628795: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
104514          <idle>-0     (-----) [003] .n.1 24575.628800: cpu_idle: state=4294967295 cpu_id=3
104515          <idle>-0     (-----) [003] d..2 24575.628809: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
104516  HwBinder:598_3-633   (  598) [003] .... 24575.628819: binder_transaction_received: transaction=1671345
104517  surfaceflinger-23896 (23896) [001] d..2 24575.628831: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104518          <idle>-0     (-----) [001] d..1 24575.628850: cpu_idle: state=0 cpu_id=1
104519  HwBinder:598_3-633   (  598) [003] ...1 24575.628863: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
104520  HwBinder:598_3-633   (  598) [003] ...1 24575.629019: tracing_mark_write: B|598|HWCSession::PresentDisplay::
104521  HwBinder:598_3-633   (  598) [003] ...1 24575.629225: tracing_mark_write: B|598|HWDeviceDRM::Commit::
104522  HwBinder:598_3-633   (  598) [003] ...1 24575.629239: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
104523  HwBinder:598_3-633   (  598) [003] d..2 24575.629899: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
104524  HwBinder:598_3-633   (  598) [003] d..3 24575.629933: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
104525          <idle>-0     (-----) [001] .n.1 24575.629940: cpu_idle: state=4294967295 cpu_id=1
104526          <idle>-0     (-----) [001] d..2 24575.629952: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
104527  HwBinder:598_3-633   (  598) [003] ...1 24575.630046: tracing_mark_write: E|598
104528  HwBinder:598_3-633   (  598) [003] ...1 24575.630052: tracing_mark_write: E|598
104529  HwBinder:598_3-633   (  598) [003] ...1 24575.630127: tracing_mark_write: E|598
104530  HwBinder:598_3-633   (  598) [003] ...1 24575.630180: tracing_mark_write: E|598
104531  HwBinder:598_3-633   (  598) [003] .... 24575.630194: binder_transaction: transaction=1671346 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
104532  HwBinder:598_3-633   (  598) [003] d..2 24575.630219: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
104533  HwBinder:598_3-633   (  598) [003] d..3 24575.630247: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
104534          <idle>-0     (-----) [000] .n.1 24575.630251: cpu_idle: state=4294967295 cpu_id=0
104535  HwBinder:598_3-633   (  598) [003] .... 24575.630253: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
104536          <idle>-0     (-----) [000] d..2 24575.630261: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
104537  surfaceflinger-23896 (23896) [000] .... 24575.630272: binder_transaction_received: transaction=1671346
104538  HwBinder:598_3-633   (  598) [003] d..2 24575.630343: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104539          <idle>-0     (-----) [003] d..1 24575.630358: cpu_idle: state=0 cpu_id=3
104540  surfaceflinger-23896 (23896) [000] d..1 24575.630529: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
104541  surfaceflinger-23896 (23896) [000] d..2 24575.630561: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
104542          <idle>-0     (-----) [002] .n.1 24575.630566: cpu_idle: state=4294967295 cpu_id=2
104543          <idle>-0     (-----) [002] d..2 24575.630581: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
104544  Binder:23896_5-25989 (23896) [002] .... 24575.630640: binder_transaction: transaction=1671347 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
104545  Binder:23896_5-25989 (23896) [002] d..2 24575.630654: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
104546  Binder:23896_5-25989 (23896) [002] d..3 24575.630667: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
104547  Binder:23896_5-25989 (23896) [002] .... 24575.630672: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
104548  Binder:23896_5-25989 (23896) [002] d..2 24575.630727: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
104549    RenderThread-25194 (24827) [002] .... 24575.630736: binder_transaction_received: transaction=1671347
104550  surfaceflinger-23896 (23896) [000] d..2 24575.630740: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
104551          <idle>-0     (-----) [000] d..1 24575.630759: cpu_idle: state=0 cpu_id=0
104552 crtc_commit:111-253   (  253) [001] d..2 24575.630782: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
104553          <idle>-0     (-----) [001] d..1 24575.630799: cpu_idle: state=0 cpu_id=1
104554          <idle>-0     (-----) [003] d.s2 24575.630913: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
104555          <idle>-0     (-----) [003] dns3 24575.630934: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
104556          <idle>-0     (-----) [003] .n.1 24575.630954: cpu_idle: state=4294967295 cpu_id=3
104557          <idle>-0     (-----) [003] d..2 24575.630964: 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
104558     rcu_preempt-7     (    7) [003] d..2 24575.630996: 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
104559          <idle>-0     (-----) [003] d..1 24575.631010: cpu_idle: state=0 cpu_id=3
104560          <idle>-0     (-----) [001] ...1 24575.632657: cpu_idle: state=4294967295 cpu_id=1
104561          <idle>-0     (-----) [001] d..1 24575.632662: cpu_idle: state=0 cpu_id=1
104562    RenderThread-25194 (24827) [002] .... 24575.633403: binder_transaction: transaction=1671348 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
104563    RenderThread-25194 (24827) [002] ...2 24575.633418: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
104564    RenderThread-25194 (24827) [002] d..4 24575.633422: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
104565    RenderThread-25194 (24827) [002] dn.5 24575.633442: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
104566    RenderThread-25194 (24827) [002] d..2 24575.633453: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
104567  Binder:23896_5-25989 (23896) [002] .... 24575.633462: binder_transaction_received: transaction=1671348
104568  Binder:23896_5-25989 (23896) [002] .... 24575.633628: binder_transaction: transaction=1671349 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
104569  Binder:23896_5-25989 (23896) [002] .... 24575.633639: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
104570  Binder:23896_5-25989 (23896) [002] d..2 24575.633699: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
104571    RenderThread-25194 (24827) [002] .... 24575.633710: binder_transaction_received: transaction=1671349
104572    RenderThread-25194 (24827) [002] d..2 24575.633822: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104573          <idle>-0     (-----) [002] d..1 24575.633842: cpu_idle: state=0 cpu_id=2
104574          <idle>-0     (-----) [000] d.h5 24575.635673: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
104575          <idle>-0     (-----) [000] d.h6 24575.635694: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
104576          <idle>-0     (-----) [003] .n.1 24575.635701: cpu_idle: state=4294967295 cpu_id=3
104577          <idle>-0     (-----) [000] d.h5 24575.635701: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
104578          <idle>-0     (-----) [003] d..2 24575.635713: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
104579          <idle>-0     (-----) [000] d.h6 24575.635714: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
104580          <idle>-0     (-----) [001] .n.1 24575.635719: cpu_idle: state=4294967295 cpu_id=1
104581          <idle>-0     (-----) [000] d..2 24575.635729: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
104582  crtc_event:111-254   (  254) [003] d..3 24575.635731: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
104583          <idle>-0     (-----) [001] d..2 24575.635732: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
104584          <idle>-0     (-----) [000] dn.3 24575.635740: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
104585          <idle>-0     (-----) [000] .n.1 24575.635744: cpu_idle: state=4294967295 cpu_id=0
104586  crtc_event:111-254   (  254) [003] d..4 24575.635749: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
104587          <idle>-0     (-----) [002] .n.1 24575.635756: cpu_idle: state=4294967295 cpu_id=2
104588          <idle>-0     (-----) [000] d..2 24575.635760: 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
104589          <idle>-0     (-----) [002] d..2 24575.635769: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
104590     ksoftirqd/0-3     (    3) [000] d.s2 24575.635770: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
104591  crtc_event:111-254   (  254) [003] d..2 24575.635778: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104592          <idle>-0     (-----) [003] d..1 24575.635787: cpu_idle: state=0 cpu_id=3
104593     ksoftirqd/0-3     (    3) [000] d.s3 24575.635800: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
104594          <idle>-0     (-----) [003] .n.1 24575.635805: cpu_idle: state=4294967295 cpu_id=3
104595          <idle>-0     (-----) [003] d..2 24575.635815: 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
104596     ksoftirqd/0-3     (    3) [000] d..2 24575.635828: 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
104597          <idle>-0     (-----) [000] d..1 24575.635863: cpu_idle: state=0 cpu_id=0
104598          <idle>-0     (-----) [000] ...1 24575.635877: cpu_idle: state=4294967295 cpu_id=0
104599          <idle>-0     (-----) [000] d..1 24575.635882: cpu_idle: state=0 cpu_id=0
104600 crtc_commit:111-253   (  253) [001] d..2 24575.635895: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
104601          <idle>-0     (-----) [001] d..1 24575.635924: cpu_idle: state=0 cpu_id=1
104602          <idle>-0     (-----) [001] ...1 24575.635937: cpu_idle: state=4294967295 cpu_id=1
104603          <idle>-0     (-----) [001] d..1 24575.635941: cpu_idle: state=0 cpu_id=1
104604 kgsl_worker_thr-246   (  246) [002] d..2 24575.636002: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
104605          <idle>-0     (-----) [002] d..1 24575.636013: cpu_idle: state=0 cpu_id=2
104606  kworker/u16:10-23868 (23868) [003] d..2 24575.636050: 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
104607          <idle>-0     (-----) [003] d..1 24575.636059: cpu_idle: state=0 cpu_id=3
104608          <idle>-0     (-----) [002] d.h2 24575.636090: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
104609          <idle>-0     (-----) [002] dnh3 24575.636104: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
104610          <idle>-0     (-----) [002] .n.1 24575.636113: cpu_idle: state=4294967295 cpu_id=2
104611          <idle>-0     (-----) [002] d..2 24575.636122: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
104612 kgsl_worker_thr-246   (  246) [002] d..2 24575.636146: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
104613 kgsl_worker_thr-246   (  246) [002] d..3 24575.636191: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
104614 kgsl_worker_thr-246   (  246) [002] d..2 24575.636206: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
104615  kworker/u16:10-23868 (23868) [002] d..2 24575.636622: 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
104616          <idle>-0     (-----) [002] d..1 24575.636637: cpu_idle: state=0 cpu_id=2
104617          <idle>-0     (-----) [003] d.s2 24575.637578: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
104618          <idle>-0     (-----) [003] dns3 24575.637649: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
104619          <idle>-0     (-----) [003] .n.1 24575.637660: cpu_idle: state=4294967295 cpu_id=3
104620          <idle>-0     (-----) [003] d..2 24575.637669: 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
104621     rcu_preempt-7     (    7) [003] d..2 24575.637677: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
104622          <idle>-0     (-----) [001] d.H3 24575.637679: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
104623          <idle>-0     (-----) [000] d.h3 24575.637689: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
104624     rcu_preempt-7     (    7) [003] d..3 24575.637695: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
104625          <idle>-0     (-----) [001] d.H3 24575.637697: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
104626          <idle>-0     (-----) [005] dnh2 24575.637702: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
104627          <idle>-0     (-----) [005] .n.1 24575.637706: cpu_idle: state=4294967295 cpu_id=5
104628          <idle>-0     (-----) [000] d.h4 24575.637710: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
104629          <idle>-0     (-----) [005] d..2 24575.637711: 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
104630     rcu_preempt-7     (    7) [003] d..2 24575.637712: 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
104631          <idle>-0     (-----) [002] .n.1 24575.637717: cpu_idle: state=4294967295 cpu_id=2
104632         rcuop/0-10    (   10) [003] d..2 24575.637722: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
104633          <idle>-0     (-----) [000] ...1 24575.637726: cpu_idle: state=4294967295 cpu_id=0
104634         sugov:4-560   (  560) [005] d..2 24575.637727: 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
104635          <idle>-0     (-----) [001] dnH4 24575.637728: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
104636          <idle>-0     (-----) [002] d..2 24575.637730: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
104637          <idle>-0     (-----) [000] d..1 24575.637731: cpu_idle: state=0 cpu_id=0
104638          <idle>-0     (-----) [005] d..1 24575.637732: cpu_idle: state=0 cpu_id=5
104639          <idle>-0     (-----) [001] dns3 24575.637737: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
104640         rcuop/0-10    (   10) [003] d..3 24575.637765: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
104641          <idle>-0     (-----) [000] .n.1 24575.637770: cpu_idle: state=4294967295 cpu_id=0
104642          <idle>-0     (-----) [001] dns4 24575.637771: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
104643          <idle>-0     (-----) [001] dns3 24575.637780: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
104644          <idle>-0     (-----) [000] d..2 24575.637781: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
104645         rcuop/0-10    (   10) [003] d..2 24575.637792: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104646          <idle>-0     (-----) [001] dns4 24575.637799: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
104647  crtc_event:111-254   (  254) [000] d..2 24575.637804: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
104648 kgsl_worker_thr-246   (  246) [002] d..2 24575.637806: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104649          <idle>-0     (-----) [003] d..1 24575.637807: cpu_idle: state=0 cpu_id=3
104650          <idle>-0     (-----) [002] d..1 24575.637819: cpu_idle: state=0 cpu_id=2
104651          <idle>-0     (-----) [001] .n.1 24575.637820: cpu_idle: state=4294967295 cpu_id=1
104652          <idle>-0     (-----) [001] d..2 24575.637829: 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
104653     rcu_preempt-7     (    7) [000] d..2 24575.637833: 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
104654          <idle>-0     (-----) [000] d..1 24575.637843: cpu_idle: state=0 cpu_id=0
104655         sugov:0-559   (  559) [001] .... 24575.637874: clk_set_rate: pwrcl_clk 825600000
104656         sugov:0-559   (  559) [001] .... 24575.637897: clk_set_rate: cpu3_pwrcl_clk 979200000
104657         sugov:0-559   (  559) [001] .... 24575.637910: clk_set_rate: cpu2_pwrcl_clk 979200000
104658         sugov:0-559   (  559) [001] .... 24575.637920: clk_set_rate: cpu1_pwrcl_clk 979200000
104659         sugov:0-559   (  559) [001] .... 24575.637929: clk_set_rate: cpu0_pwrcl_clk 825600000
104660          <idle>-0     (-----) [000] d.h5 24575.637997: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
104661          <idle>-0     (-----) [000] dnh6 24575.638021: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
104662          <idle>-0     (-----) [000] .n.1 24575.638035: cpu_idle: state=4294967295 cpu_id=0
104663         sugov:0-559   (  559) [001] .... 24575.638044: cpu_frequency: state=825600 cpu_id=0
104664          <idle>-0     (-----) [000] d..2 24575.638045: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
104665         sugov:0-559   (  559) [001] .... 24575.638072: cpu_frequency: state=825600 cpu_id=1
104666         sugov:0-559   (  559) [001] .... 24575.638077: cpu_frequency: state=825600 cpu_id=2
104667         sugov:0-559   (  559) [001] .... 24575.638081: cpu_frequency: state=825600 cpu_id=3
104668         sugov:0-559   (  559) [001] d..2 24575.638100: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
104669 crtc_commit:111-253   (  253) [000] d..2 24575.638127: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
104670          <idle>-0     (-----) [000] d..1 24575.638139: cpu_idle: state=0 cpu_id=0
104671     kworker/1:1-13091 (13091) [001] d..2 24575.638189: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104672          <idle>-0     (-----) [001] d..1 24575.638206: cpu_idle: state=0 cpu_id=1
104673          <idle>-0     (-----) [000] d.h5 24575.638310: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
104674          <idle>-0     (-----) [000] dnh6 24575.638324: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
104675          <idle>-0     (-----) [000] dnh7 24575.638335: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
104676          <idle>-0     (-----) [000] dnh8 24575.638350: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
104677          <idle>-0     (-----) [000] dnh9 24575.638366: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
104678          <idle>-0     (-----) [000] dnha 24575.638389: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
104679          <idle>-0     (-----) [003] .n.1 24575.638396: cpu_idle: state=4294967295 cpu_id=3
104680          <idle>-0     (-----) [000] dnh7 24575.638396: sched_waking: comm=SDM_EventThread pid=624 prio=111 target_cpu=000
104681          <idle>-0     (-----) [003] d..2 24575.638407: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
104682          <idle>-0     (-----) [000] dnh8 24575.638417: sched_wakeup: comm=SDM_EventThread pid=624 prio=111 target_cpu=000
104683          <idle>-0     (-----) [000] .n.1 24575.638435: cpu_idle: state=4294967295 cpu_id=0
104684 crtc_commit:111-253   (  253) [003] d..2 24575.638446: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104685          <idle>-0     (-----) [000] d..2 24575.638448: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
104686          <idle>-0     (-----) [003] d..1 24575.638457: cpu_idle: state=0 cpu_id=3
104687  crtc_event:111-254   (  254) [000] d..2 24575.638467: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
104688     kworker/0:1-13012 (13012) [000] d..2 24575.638491: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=624 next_prio=111
104689 SDM_EventThread-624   (  598) [000] ...1 24575.638545: tracing_mark_write: B|598|HWCCallbacks::Vsync::
104690 SDM_EventThread-624   (  598) [000] ...1 24575.638559: tracing_mark_write: B|598|HIDL::IComposerCallback::onVsync::client
104691 SDM_EventThread-624   (  598) [000] ...1 24575.638566: tracing_mark_write: E|598
104692 SDM_EventThread-624   (  598) [000] .... 24575.638603: binder_transaction: transaction=1671350 dest_node=1270370 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
104693 SDM_EventThread-624   (  598) [000] d..4 24575.638615: sched_waking: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=001
104694 SDM_EventThread-624   (  598) [000] d..5 24575.638643: sched_wakeup: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=001
104695          <idle>-0     (-----) [001] .n.1 24575.638649: cpu_idle: state=4294967295 cpu_id=1
104696          <idle>-0     (-----) [001] d..2 24575.638665: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:23896_ next_pid=23923 next_prio=120
104697 SDM_EventThread-624   (  598) [000] ...1 24575.638673: tracing_mark_write: E|598
104698 HwBinder:23896_-23923 (23896) [001] .... 24575.638676: binder_transaction_received: transaction=1671350
104699 SDM_EventThread-624   (  598) [000] d..4 24575.638690: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
104700 SDM_EventThread-624   (  598) [000] d..5 24575.638711: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
104701          <idle>-0     (-----) [003] .n.1 24575.638716: cpu_idle: state=4294967295 cpu_id=3
104702 HwBinder:23896_-23923 (23896) [001] ...1 24575.638722: tracing_mark_write: B|23896|HIDL::IComposerCallback::onVsync::server
104703          <idle>-0     (-----) [003] d..2 24575.638726: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
104704          <idle>-0     (-----) [005] ...1 24575.638743: cpu_idle: state=4294967295 cpu_id=5
104705 HwBinder:23896_-23923 (23896) [001] ...1 24575.638744: tracing_mark_write: E|23896
104706          <idle>-0     (-----) [005] d..1 24575.638746: cpu_idle: state=0 cpu_id=5
104707 crtc_commit:111-253   (  253) [003] d..2 24575.638754: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104708 SDM_EventThread-624   (  598) [000] d..2 24575.638757: sched_switch: prev_comm=SDM_EventThread prev_pid=624 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
104709          <idle>-0     (-----) [003] d..1 24575.638764: cpu_idle: state=0 cpu_id=3
104710          <idle>-0     (-----) [000] d..1 24575.638775: cpu_idle: state=0 cpu_id=0
104711 HwBinder:23896_-23923 (23896) [001] d..2 24575.638799: sched_switch: prev_comm=HwBinder:23896_ prev_pid=23923 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104712          <idle>-0     (-----) [001] d..1 24575.638815: cpu_idle: state=0 cpu_id=1
104713          <idle>-0     (-----) [000] d.h2 24575.640303: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
104714          <idle>-0     (-----) [000] dnh3 24575.640318: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
104715          <idle>-0     (-----) [000] .n.1 24575.640329: cpu_idle: state=4294967295 cpu_id=0
104716          <idle>-0     (-----) [000] d..2 24575.640341: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
104717        DispSync-23904 (23896) [000] d..1 24575.640367: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
104718        DispSync-23904 (23896) [000] d..2 24575.640386: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
104719          <idle>-0     (-----) [003] .n.1 24575.640391: cpu_idle: state=4294967295 cpu_id=3
104720          <idle>-0     (-----) [003] d..2 24575.640402: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
104721        DispSync-23904 (23896) [000] d..2 24575.640421: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
104722          <idle>-0     (-----) [000] d..1 24575.640435: cpu_idle: state=0 cpu_id=0
104723  appEventThread-23905 (23896) [003] d..3 24575.640466: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
104724  appEventThread-23905 (23896) [003] d..4 24575.640494: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
104725          <idle>-0     (-----) [000] .n.1 24575.640501: cpu_idle: state=4294967295 cpu_id=0
104726          <idle>-0     (-----) [000] d..2 24575.640516: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
104727  appEventThread-23905 (23896) [003] d..2 24575.640535: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104728          <idle>-0     (-----) [003] d..1 24575.640551: cpu_idle: state=0 cpu_id=3
104729 s.nexuslauncher-24827 (24827) [000] .... 24575.640972: binder_transaction: transaction=1671351 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
104730 s.nexuslauncher-24827 (24827) [000] d..4 24575.640984: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
104731 s.nexuslauncher-24827 (24827) [000] d..5 24575.641021: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
104732          <idle>-0     (-----) [001] .n.1 24575.641026: cpu_idle: state=4294967295 cpu_id=1
104733          <idle>-0     (-----) [001] d..2 24575.641043: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
104734  Binder:23896_5-25989 (23896) [001] .... 24575.641051: binder_transaction_received: transaction=1671351
104735 s.nexuslauncher-24827 (24827) [000] d..3 24575.641065: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
104736  Binder:23896_5-25989 (23896) [001] d..1 24575.641086: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
104737 s.nexuslauncher-24827 (24827) [000] d..4 24575.641088: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
104738          <idle>-0     (-----) [002] .n.1 24575.641093: cpu_idle: state=4294967295 cpu_id=2
104739  Binder:23896_5-25989 (23896) [001] d..2 24575.641108: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
104740          <idle>-0     (-----) [002] d..2 24575.641109: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
104741          <idle>-0     (-----) [003] .n.1 24575.641114: cpu_idle: state=4294967295 cpu_id=3
104742          <idle>-0     (-----) [003] d..2 24575.641127: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
104743  Binder:23896_5-25989 (23896) [001] d..2 24575.641158: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104744    RenderThread-25194 (24827) [002] d..2 24575.641167: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104745  appEventThread-23905 (23896) [003] d..2 24575.641172: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104746          <idle>-0     (-----) [001] d..1 24575.641175: cpu_idle: state=0 cpu_id=1
104747          <idle>-0     (-----) [002] d..1 24575.641181: cpu_idle: state=0 cpu_id=2
104748          <idle>-0     (-----) [003] d..1 24575.641186: cpu_idle: state=0 cpu_id=3
104749 s.nexuslauncher-24827 (24827) [000] d..3 24575.641487: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
104750 s.nexuslauncher-24827 (24827) [000] d..4 24575.641511: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
104751          <idle>-0     (-----) [002] .n.1 24575.641516: cpu_idle: state=4294967295 cpu_id=2
104752          <idle>-0     (-----) [002] d..2 24575.641530: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
104753 s.nexuslauncher-24827 (24827) [000] d..2 24575.641552: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
104754          <idle>-0     (-----) [000] d..1 24575.641567: cpu_idle: state=0 cpu_id=0
104755    RenderThread-25194 (24827) [002] d..1 24575.641775: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
104756    RenderThread-25194 (24827) [002] d..2 24575.641799: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
104757          <idle>-0     (-----) [000] .n.1 24575.641806: cpu_idle: state=4294967295 cpu_id=0
104758          <idle>-0     (-----) [000] d..2 24575.641817: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
104759    RenderThread-25194 (24827) [002] .... 24575.641869: binder_transaction: transaction=1671352 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
104760    RenderThread-25194 (24827) [002] ...2 24575.641880: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
104761    RenderThread-25194 (24827) [002] d..4 24575.641885: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
104762    RenderThread-25194 (24827) [002] dn.5 24575.641910: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
104763    RenderThread-25194 (24827) [002] d..2 24575.641922: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
104764  Binder:23896_5-25989 (23896) [002] .... 24575.641933: binder_transaction_received: transaction=1671352
104765 s.nexuslauncher-24827 (24827) [000] d..2 24575.641944: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
104766          <idle>-0     (-----) [000] d..1 24575.641957: cpu_idle: state=0 cpu_id=0
104767  Binder:23896_5-25989 (23896) [002] d..2 24575.641990: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
104768    RenderThread-25194 (24827) [002] d..2 24575.642022: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104769          <idle>-0     (-----) [002] d..1 24575.642041: cpu_idle: state=0 cpu_id=2
104770          <idle>-0     (-----) [003] ...1 24575.642925: cpu_idle: state=4294967295 cpu_id=3
104771          <idle>-0     (-----) [003] d..1 24575.642930: cpu_idle: state=0 cpu_id=3
104772          <idle>-0     (-----) [000] d.s2 24575.644252: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
104773          <idle>-0     (-----) [000] dns3 24575.644273: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
104774          <idle>-0     (-----) [000] dns3 24575.644279: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
104775          <idle>-0     (-----) [000] dns4 24575.644323: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
104776          <idle>-0     (-----) [000] dnH3 24575.644337: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
104777          <idle>-0     (-----) [000] dnH4 24575.644363: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
104778          <idle>-0     (-----) [001] .n.1 24575.644371: cpu_idle: state=4294967295 cpu_id=1
104779          <idle>-0     (-----) [001] d..2 24575.644384: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
104780          <idle>-0     (-----) [000] .n.1 24575.644388: cpu_idle: state=4294967295 cpu_id=0
104781          <idle>-0     (-----) [000] d..2 24575.644399: 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
104782        DispSync-23904 (23896) [001] d..1 24575.644403: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
104783     rcu_preempt-7     (    7) [000] d..2 24575.644421: 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
104784        DispSync-23904 (23896) [001] d..2 24575.644423: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
104785          <idle>-0     (-----) [003] .n.1 24575.644428: cpu_idle: state=4294967295 cpu_id=3
104786          <idle>-0     (-----) [003] d..2 24575.644439: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
104787        DispSync-23904 (23896) [001] d..2 24575.644461: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104788   sfEventThread-23906 (23896) [003] d..3 24575.644478: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
104789   sfEventThread-23906 (23896) [003] d..4 24575.644513: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
104790          <idle>-0     (-----) [001] d..2 24575.644529: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
104791  kworker/u16:10-23868 (23868) [000] .... 24575.644556: clk_set_rate: l3_cluster0_vote_clk 300000000
104792  kworker/u16:10-23868 (23868) [000] .... 24575.644566: clk_set_rate: l3_clk 300000000
104793   sfEventThread-23906 (23896) [003] d..2 24575.644572: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104794          <idle>-0     (-----) [003] d..1 24575.644589: cpu_idle: state=0 cpu_id=3
104795  surfaceflinger-23896 (23896) [001] d..1 24575.644747: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
104796  surfaceflinger-23896 (23896) [001] d..2 24575.644777: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
104797          <idle>-0     (-----) [002] .n.1 24575.644785: cpu_idle: state=4294967295 cpu_id=2
104798          <idle>-0     (-----) [002] d..2 24575.644802: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
104799  Binder:23896_5-25989 (23896) [002] d..2 24575.644835: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104800          <idle>-0     (-----) [002] d..1 24575.644850: cpu_idle: state=0 cpu_id=2
104801  surfaceflinger-23896 (23896) [001] d..1 24575.644958: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
104802  kworker/u16:10-23868 (23868) [000] d..2 24575.644963: 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
104803  surfaceflinger-23896 (23896) [001] d..2 24575.644983: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
104804          <idle>-0     (-----) [000] d..1 24575.644984: cpu_idle: state=0 cpu_id=0
104805          <idle>-0     (-----) [003] dns2 24575.645006: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
104806          <idle>-0     (-----) [003] dns3 24575.645027: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
104807          <idle>-0     (-----) [003] .n.1 24575.645037: cpu_idle: state=4294967295 cpu_id=3
104808          <idle>-0     (-----) [003] d..2 24575.645048: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
104809   sfEventThread-23906 (23896) [003] d..2 24575.645081: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
104810     ksoftirqd/3-34    (   34) [003] d.s2 24575.645109: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
104811     ksoftirqd/3-34    (   34) [003] d.s3 24575.645124: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
104812     ksoftirqd/3-34    (   34) [003] d.s3 24575.645138: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
104813          <idle>-0     (-----) [000] .n.1 24575.645144: cpu_idle: state=4294967295 cpu_id=0
104814          <idle>-0     (-----) [000] d..2 24575.645160: 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
104815     ksoftirqd/3-34    (   34) [003] d..2 24575.645166: 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
104816          <idle>-0     (-----) [003] d..1 24575.645182: cpu_idle: state=0 cpu_id=3
104817  kworker/u16:10-23868 (23868) [000] d..2 24575.645199: 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
104818  surfaceflinger-23896 (23896) [001] ...1 24575.645201: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
104819  surfaceflinger-23896 (23896) [001] ...1 24575.645209: tracing_mark_write: E|23896
104820          <idle>-0     (-----) [000] d..1 24575.645210: cpu_idle: state=0 cpu_id=0
104821  surfaceflinger-23896 (23896) [001] .... 24575.645271: binder_transaction: transaction=1671353 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
104822  surfaceflinger-23896 (23896) [001] ...2 24575.645305: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
104823  surfaceflinger-23896 (23896) [001] d..4 24575.645315: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
104824  surfaceflinger-23896 (23896) [001] d..5 24575.645343: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
104825          <idle>-0     (-----) [003] .n.1 24575.645350: cpu_idle: state=4294967295 cpu_id=3
104826          <idle>-0     (-----) [003] d..2 24575.645361: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
104827  HwBinder:598_3-633   (  598) [003] .... 24575.645375: binder_transaction_received: transaction=1671353
104828  surfaceflinger-23896 (23896) [001] d..2 24575.645383: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104829          <idle>-0     (-----) [001] d..1 24575.645406: cpu_idle: state=0 cpu_id=1
104830  HwBinder:598_3-633   (  598) [003] ...1 24575.645428: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
104831  HwBinder:598_3-633   (  598) [003] ...1 24575.645593: tracing_mark_write: B|598|HWCSession::PresentDisplay::
104832  HwBinder:598_3-633   (  598) [003] ...1 24575.645834: tracing_mark_write: B|598|HWDeviceDRM::Commit::
104833  HwBinder:598_3-633   (  598) [003] ...1 24575.645852: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
104834  HwBinder:598_3-633   (  598) [003] d..2 24575.646609: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
104835  HwBinder:598_3-633   (  598) [003] d..3 24575.646650: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
104836          <idle>-0     (-----) [001] .n.1 24575.646657: cpu_idle: state=4294967295 cpu_id=1
104837          <idle>-0     (-----) [001] d..2 24575.646670: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
104838  HwBinder:598_3-633   (  598) [003] ...1 24575.646774: tracing_mark_write: E|598
104839  HwBinder:598_3-633   (  598) [003] ...1 24575.646781: tracing_mark_write: E|598
104840  HwBinder:598_3-633   (  598) [003] ...1 24575.646859: tracing_mark_write: E|598
104841  HwBinder:598_3-633   (  598) [003] ...1 24575.646913: tracing_mark_write: E|598
104842  HwBinder:598_3-633   (  598) [003] .... 24575.646931: binder_transaction: transaction=1671354 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
104843  HwBinder:598_3-633   (  598) [003] d..2 24575.646961: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
104844  HwBinder:598_3-633   (  598) [003] d..3 24575.646994: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
104845          <idle>-0     (-----) [000] .n.1 24575.646999: cpu_idle: state=4294967295 cpu_id=0
104846  HwBinder:598_3-633   (  598) [003] .... 24575.647000: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
104847          <idle>-0     (-----) [000] d..2 24575.647010: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
104848  surfaceflinger-23896 (23896) [000] .... 24575.647027: binder_transaction_received: transaction=1671354
104849  HwBinder:598_3-633   (  598) [003] d..2 24575.647105: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104850          <idle>-0     (-----) [003] d..1 24575.647128: cpu_idle: state=0 cpu_id=3
104851  surfaceflinger-23896 (23896) [000] d..1 24575.647344: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
104852  surfaceflinger-23896 (23896) [000] d..2 24575.647376: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
104853          <idle>-0     (-----) [002] .n.1 24575.647382: cpu_idle: state=4294967295 cpu_id=2
104854          <idle>-0     (-----) [002] d..2 24575.647395: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
104855  Binder:23896_5-25989 (23896) [002] .... 24575.647465: binder_transaction: transaction=1671355 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
104856  Binder:23896_5-25989 (23896) [002] d..2 24575.647483: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
104857  Binder:23896_5-25989 (23896) [002] d..3 24575.647500: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
104858  Binder:23896_5-25989 (23896) [002] .... 24575.647506: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
104859 crtc_commit:111-253   (  253) [001] d..2 24575.647567: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
104860  Binder:23896_5-25989 (23896) [002] d.s2 24575.647594: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
104861          <idle>-0     (-----) [001] d.s4 24575.647616: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
104862  Binder:23896_5-25989 (23896) [002] d.s3 24575.647635: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
104863          <idle>-0     (-----) [001] dns5 24575.647652: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
104864  surfaceflinger-23896 (23896) [000] d..2 24575.647669: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
104865          <idle>-0     (-----) [001] d..2 24575.647677: 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
104866     rcu_preempt-7     (    7) [000] d..2 24575.647680: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
104867  Binder:23896_5-25989 (23896) [002] d..2 24575.647682: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
104868    RenderThread-25194 (24827) [002] .... 24575.647692: binder_transaction_received: transaction=1671355
104869     rcu_preempt-7     (    7) [000] d..3 24575.647728: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
104870     rcu_preempt-7     (    7) [000] d..2 24575.647742: 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
104871         rcuop/0-10    (   10) [000] d..2 24575.647750: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
104872  kworker/u16:10-23868 (23868) [001] d..2 24575.647771: 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
104873          <idle>-0     (-----) [001] d..1 24575.647789: cpu_idle: state=0 cpu_id=1
104874         rcuop/0-10    (   10) [000] d..3 24575.647800: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
104875          <idle>-0     (-----) [001] .n.1 24575.647808: cpu_idle: state=4294967295 cpu_id=1
104876         rcuop/0-10    (   10) [000] d..2 24575.647813: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
104877          <idle>-0     (-----) [001] d..2 24575.647825: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
104878         rcuop/0-10    (   10) [000] d..3 24575.647857: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
104879         rcuop/1-21    (   21) [001] d..2 24575.647876: 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
104880         rcuop/0-10    (   10) [000] d..2 24575.647881: 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
104881     rcu_preempt-7     (    7) [001] d..2 24575.647903: 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
104882          <idle>-0     (-----) [000] d..1 24575.647904: cpu_idle: state=0 cpu_id=0
104883          <idle>-0     (-----) [001] d..1 24575.647915: cpu_idle: state=0 cpu_id=1
104884    RenderThread-25194 (24827) [002] .... 24575.650788: binder_transaction: transaction=1671356 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
104885    RenderThread-25194 (24827) [002] ...2 24575.650806: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
104886    RenderThread-25194 (24827) [002] d..4 24575.650812: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
104887    RenderThread-25194 (24827) [002] dn.5 24575.650836: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
104888    RenderThread-25194 (24827) [002] d..2 24575.650849: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
104889  Binder:23896_5-25989 (23896) [002] .... 24575.650860: binder_transaction_received: transaction=1671356
104890  Binder:23896_5-25989 (23896) [002] .... 24575.651111: binder_transaction: transaction=1671357 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
104891  Binder:23896_5-25989 (23896) [002] .... 24575.651122: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
104892  Binder:23896_5-25989 (23896) [002] d..2 24575.651197: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
104893    RenderThread-25194 (24827) [002] .... 24575.651210: binder_transaction_received: transaction=1671357
104894    RenderThread-25194 (24827) [002] d..2 24575.651352: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104895          <idle>-0     (-----) [002] d..1 24575.651377: cpu_idle: state=0 cpu_id=2
104896          <idle>-0     (-----) [000] d.h5 24575.652158: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
104897          <idle>-0     (-----) [000] dnh6 24575.652176: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
104898          <idle>-0     (-----) [000] dnh5 24575.652183: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
104899          <idle>-0     (-----) [000] dnh6 24575.652197: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
104900          <idle>-0     (-----) [001] .n.1 24575.652204: cpu_idle: state=4294967295 cpu_id=1
104901          <idle>-0     (-----) [001] d..2 24575.652217: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
104902          <idle>-0     (-----) [000] .n.1 24575.652233: cpu_idle: state=4294967295 cpu_id=0
104903          <idle>-0     (-----) [000] d..2 24575.652248: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
104904  crtc_event:111-254   (  254) [000] d..3 24575.652269: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
104905  crtc_event:111-254   (  254) [000] d..4 24575.652284: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
104906          <idle>-0     (-----) [002] .n.1 24575.652292: cpu_idle: state=4294967295 cpu_id=2
104907          <idle>-0     (-----) [002] d..2 24575.652306: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
104908  crtc_event:111-254   (  254) [000] d..2 24575.652313: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
104909          <idle>-0     (-----) [000] d..1 24575.652329: cpu_idle: state=0 cpu_id=0
104910 crtc_commit:111-253   (  253) [001] d..2 24575.652403: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
104911          <idle>-0     (-----) [001] d..1 24575.652413: cpu_idle: state=0 cpu_id=1
104912 kgsl_worker_thr-246   (  246) [002] d..2 24575.652544: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
104913          <idle>-0     (-----) [002] d..1 24575.652556: cpu_idle: state=0 cpu_id=2
104914          <idle>-0     (-----) [002] d.h2 24575.652631: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
104915          <idle>-0     (-----) [002] dnh3 24575.652648: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
104916          <idle>-0     (-----) [002] .n.1 24575.652659: cpu_idle: state=4294967295 cpu_id=2
104917          <idle>-0     (-----) [002] d..2 24575.652670: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
104918 kgsl_worker_thr-246   (  246) [002] d..2 24575.652697: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
104919 kgsl_worker_thr-246   (  246) [002] d..3 24575.652743: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
104920 kgsl_worker_thr-246   (  246) [002] d..2 24575.652761: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
104921  kworker/u16:10-23868 (23868) [002] d..2 24575.653218: 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
104922          <idle>-0     (-----) [002] d..1 24575.653237: cpu_idle: state=0 cpu_id=2
104923          <idle>-0     (-----) [001] d.s3 24575.654253: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
104924          <idle>-0     (-----) [000] d.h3 24575.654269: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
104925          <idle>-0     (-----) [001] d.s4 24575.654274: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
104926          <idle>-0     (-----) [001] d.s2 24575.654278: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
104927          <idle>-0     (-----) [000] dnh4 24575.654288: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
104928          <idle>-0     (-----) [002] .n.1 24575.654296: cpu_idle: state=4294967295 cpu_id=2
104929          <idle>-0     (-----) [001] dns3 24575.654300: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
104930          <idle>-0     (-----) [001] dns3 24575.654306: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
104931          <idle>-0     (-----) [000] .n.1 24575.654309: cpu_idle: state=4294967295 cpu_id=0
104932          <idle>-0     (-----) [002] d..2 24575.654310: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
104933          <idle>-0     (-----) [000] d..2 24575.654323: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
104934          <idle>-0     (-----) [001] dns4 24575.654355: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
104935  crtc_event:111-254   (  254) [000] d..2 24575.654367: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
104936          <idle>-0     (-----) [001] dns3 24575.654376: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
104937 kgsl_worker_thr-246   (  246) [002] d..2 24575.654396: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104938          <idle>-0     (-----) [002] d..1 24575.654409: cpu_idle: state=0 cpu_id=2
104939          <idle>-0     (-----) [001] dns4 24575.654424: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
104940          <idle>-0     (-----) [002] .n.1 24575.654430: cpu_idle: state=4294967295 cpu_id=2
104941          <idle>-0     (-----) [001] .n.1 24575.654443: cpu_idle: state=4294967295 cpu_id=1
104942          <idle>-0     (-----) [002] d..2 24575.654444: 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
104943          <idle>-0     (-----) [001] d..2 24575.654455: 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
104944  kworker/u16:16-25995 (25995) [002] d..2 24575.654472: 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
104945  kworker/u16:10-23868 (23868) [000] d.h4 24575.654484: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
104946          <idle>-0     (-----) [002] d..1 24575.654485: cpu_idle: state=0 cpu_id=2
104947     rcu_preempt-7     (    7) [001] d..2 24575.654489: 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
104948          <idle>-0     (-----) [001] d..1 24575.654503: cpu_idle: state=0 cpu_id=1
104949          <idle>-0     (-----) [001] .n.1 24575.654507: cpu_idle: state=4294967295 cpu_id=1
104950  kworker/u16:10-23868 (23868) [000] d.h5 24575.654510: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
104951          <idle>-0     (-----) [001] d..2 24575.654522: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
104952          <idle>-0     (-----) [002] ...1 24575.654544: cpu_idle: state=4294967295 cpu_id=2
104953          <idle>-0     (-----) [002] d..1 24575.654550: cpu_idle: state=0 cpu_id=2
104954 crtc_commit:111-253   (  253) [001] d..2 24575.654611: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104955          <idle>-0     (-----) [001] d..1 24575.654624: cpu_idle: state=0 cpu_id=1
104956  kworker/u16:10-23868 (23868) [000] d.h5 24575.654833: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
104957  kworker/u16:10-23868 (23868) [000] d.h6 24575.654863: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
104958          <idle>-0     (-----) [003] .n.1 24575.654871: cpu_idle: state=4294967295 cpu_id=3
104959  kworker/u16:10-23868 (23868) [000] d.h7 24575.654876: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
104960          <idle>-0     (-----) [003] d..2 24575.654885: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
104961  kworker/u16:10-23868 (23868) [000] dnh8 24575.654894: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
104962  kworker/u16:10-23868 (23868) [000] dnh9 24575.654913: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
104963  crtc_event:111-254   (  254) [003] d..2 24575.654927: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104964  kworker/u16:10-23868 (23868) [000] dnha 24575.654930: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
104965          <idle>-0     (-----) [001] .n.1 24575.654936: cpu_idle: state=4294967295 cpu_id=1
104966  kworker/u16:10-23868 (23868) [000] dnh7 24575.654937: sched_waking: comm=SDM_EventThread pid=624 prio=111 target_cpu=000
104967          <idle>-0     (-----) [003] d..1 24575.654940: cpu_idle: state=0 cpu_id=3
104968          <idle>-0     (-----) [001] d..2 24575.654947: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
104969  kworker/u16:10-23868 (23868) [000] dnh8 24575.654983: sched_wakeup: comm=SDM_EventThread pid=624 prio=111 target_cpu=001
104970 crtc_commit:111-253   (  253) [001] d..2 24575.655008: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=SDM_EventThread next_pid=624 next_prio=111
104971  kworker/u16:10-23868 (23868) [000] d..2 24575.655009: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
104972     kworker/0:1-13012 (13012) [000] d..2 24575.655033: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
104973  kworker/u16:10-23868 (23868) [000] d..2 24575.655060: 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
104974 SDM_EventThread-624   (  598) [001] ...1 24575.655069: tracing_mark_write: B|598|HWCCallbacks::Vsync::
104975          <idle>-0     (-----) [000] d..1 24575.655079: cpu_idle: state=0 cpu_id=0
104976 SDM_EventThread-624   (  598) [001] ...1 24575.655084: tracing_mark_write: B|598|HIDL::IComposerCallback::onVsync::client
104977 SDM_EventThread-624   (  598) [001] ...1 24575.655089: tracing_mark_write: E|598
104978 SDM_EventThread-624   (  598) [001] .... 24575.655131: binder_transaction: transaction=1671358 dest_node=1270370 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
104979 SDM_EventThread-624   (  598) [001] d..4 24575.655144: sched_waking: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=001
104980 SDM_EventThread-624   (  598) [001] d..5 24575.655185: sched_wakeup: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=000
104981          <idle>-0     (-----) [000] .n.1 24575.655191: cpu_idle: state=4294967295 cpu_id=0
104982          <idle>-0     (-----) [000] d..2 24575.655208: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:23896_ next_pid=23923 next_prio=120
104983 HwBinder:23896_-23923 (23896) [000] .... 24575.655218: binder_transaction_received: transaction=1671358
104984 SDM_EventThread-624   (  598) [001] ...1 24575.655219: tracing_mark_write: E|598
104985 SDM_EventThread-624   (  598) [001] d..4 24575.655238: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
104986 HwBinder:23896_-23923 (23896) [000] ...1 24575.655269: tracing_mark_write: B|23896|HIDL::IComposerCallback::onVsync::server
104987 SDM_EventThread-624   (  598) [001] d..5 24575.655271: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
104988          <idle>-0     (-----) [003] dns2 24575.655286: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
104989 HwBinder:23896_-23923 (23896) [000] ...1 24575.655291: tracing_mark_write: E|23896
104990          <idle>-0     (-----) [003] dns3 24575.655301: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
104991          <idle>-0     (-----) [003] .n.1 24575.655308: cpu_idle: state=4294967295 cpu_id=3
104992          <idle>-0     (-----) [003] d..2 24575.655320: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
104993 SDM_EventThread-624   (  598) [001] d..2 24575.655326: sched_switch: prev_comm=SDM_EventThread prev_pid=624 prev_prio=111 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104994          <idle>-0     (-----) [001] d..1 24575.655344: cpu_idle: state=0 cpu_id=1
104995 crtc_commit:111-253   (  253) [003] d..2 24575.655347: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
104996 HwBinder:23896_-23923 (23896) [000] d..2 24575.655352: sched_switch: prev_comm=HwBinder:23896_ prev_pid=23923 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
104997     ksoftirqd/3-34    (   34) [003] d.s2 24575.655364: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
104998          <idle>-0     (-----) [000] d..1 24575.655370: cpu_idle: state=0 cpu_id=0
104999     ksoftirqd/3-34    (   34) [003] d.s3 24575.655410: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
105000     ksoftirqd/3-34    (   34) [003] d.s3 24575.655418: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
105001     ksoftirqd/3-34    (   34) [003] d..2 24575.655434: 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
105002  kworker/u16:10-23868 (23868) [003] .... 24575.655523: clk_set_rate: l3_cluster0_vote_clk 403200000
105003  kworker/u16:10-23868 (23868) [003] .... 24575.655532: clk_set_rate: l3_clk 403200000
105004  kworker/u16:10-23868 (23868) [003] d..2 24575.655595: 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
105005          <idle>-0     (-----) [003] d..1 24575.655614: cpu_idle: state=0 cpu_id=3
105006          <idle>-0     (-----) [001] d.h2 24575.656772: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
105007          <idle>-0     (-----) [001] dnh3 24575.656785: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
105008          <idle>-0     (-----) [001] .n.1 24575.656795: cpu_idle: state=4294967295 cpu_id=1
105009          <idle>-0     (-----) [001] d..2 24575.656808: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
105010        DispSync-23904 (23896) [001] d..1 24575.656834: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
105011        DispSync-23904 (23896) [001] d..2 24575.656852: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
105012          <idle>-0     (-----) [003] .n.1 24575.656859: cpu_idle: state=4294967295 cpu_id=3
105013          <idle>-0     (-----) [003] d..2 24575.656871: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
105014        DispSync-23904 (23896) [001] d..2 24575.656890: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105015          <idle>-0     (-----) [001] d..1 24575.656903: cpu_idle: state=0 cpu_id=1
105016  appEventThread-23905 (23896) [003] d..3 24575.656934: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
105017  appEventThread-23905 (23896) [003] d..4 24575.656959: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
105018          <idle>-0     (-----) [000] .n.1 24575.656966: cpu_idle: state=4294967295 cpu_id=0
105019          <idle>-0     (-----) [000] d..2 24575.656981: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
105020  appEventThread-23905 (23896) [003] d..2 24575.657004: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105021          <idle>-0     (-----) [003] d..1 24575.657022: cpu_idle: state=0 cpu_id=3
105022 s.nexuslauncher-24827 (24827) [000] .... 24575.657379: binder_transaction: transaction=1671359 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
105023 s.nexuslauncher-24827 (24827) [000] d..4 24575.657391: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
105024 s.nexuslauncher-24827 (24827) [000] d..5 24575.657427: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
105025          <idle>-0     (-----) [001] .n.1 24575.657433: cpu_idle: state=4294967295 cpu_id=1
105026          <idle>-0     (-----) [001] d..2 24575.657448: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
105027  Binder:23896_5-25989 (23896) [001] .... 24575.657457: binder_transaction_received: transaction=1671359
105028 s.nexuslauncher-24827 (24827) [000] d..3 24575.657470: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
105029 s.nexuslauncher-24827 (24827) [000] d..4 24575.657491: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
105030  Binder:23896_5-25989 (23896) [001] d..1 24575.657492: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
105031          <idle>-0     (-----) [002] .n.1 24575.657496: cpu_idle: state=4294967295 cpu_id=2
105032          <idle>-0     (-----) [002] d..2 24575.657508: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
105033  Binder:23896_5-25989 (23896) [001] d..2 24575.657511: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
105034          <idle>-0     (-----) [003] .n.1 24575.657518: cpu_idle: state=4294967295 cpu_id=3
105035          <idle>-0     (-----) [003] d..2 24575.657528: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
105036  Binder:23896_5-25989 (23896) [001] d..2 24575.657566: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105037    RenderThread-25194 (24827) [002] d..2 24575.657589: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
105038  appEventThread-23905 (23896) [003] d..2 24575.657674: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105039          <idle>-0     (-----) [003] d..1 24575.657692: cpu_idle: state=0 cpu_id=3
105040          <idle>-0     (-----) [002] d..1 24575.657702: cpu_idle: state=0 cpu_id=2
105041          <idle>-0     (-----) [001] d.H4 24575.657704: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
105042          <idle>-0     (-----) [001] d.H4 24575.657722: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
105043          <idle>-0     (-----) [005] dnh2 24575.657728: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
105044          <idle>-0     (-----) [005] .n.1 24575.657732: cpu_idle: state=4294967295 cpu_id=5
105045          <idle>-0     (-----) [001] dnH5 24575.657735: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
105046          <idle>-0     (-----) [005] d..2 24575.657737: 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
105047         sugov:4-560   (  560) [005] d..2 24575.657748: 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
105048          <idle>-0     (-----) [005] d..1 24575.657753: cpu_idle: state=0 cpu_id=5
105049          <idle>-0     (-----) [001] d..2 24575.657763: 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
105050         sugov:0-559   (  559) [001] d..2 24575.657788: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105051          <idle>-0     (-----) [001] d..1 24575.657800: cpu_idle: state=0 cpu_id=1
105052 s.nexuslauncher-24827 (24827) [000] d..3 24575.657928: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
105053 s.nexuslauncher-24827 (24827) [000] d..4 24575.657951: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
105054          <idle>-0     (-----) [002] .n.1 24575.657957: cpu_idle: state=4294967295 cpu_id=2
105055          <idle>-0     (-----) [002] d..2 24575.657970: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
105056 s.nexuslauncher-24827 (24827) [000] d..2 24575.657993: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105057          <idle>-0     (-----) [000] d..1 24575.658014: cpu_idle: state=0 cpu_id=0
105058    RenderThread-25194 (24827) [002] d..1 24575.658231: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
105059    RenderThread-25194 (24827) [002] d..2 24575.658255: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
105060          <idle>-0     (-----) [000] .n.1 24575.658262: cpu_idle: state=4294967295 cpu_id=0
105061          <idle>-0     (-----) [000] d..2 24575.658275: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
105062    RenderThread-25194 (24827) [002] .... 24575.658327: binder_transaction: transaction=1671360 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
105063    RenderThread-25194 (24827) [002] ...2 24575.658337: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
105064    RenderThread-25194 (24827) [002] d..4 24575.658341: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
105065    RenderThread-25194 (24827) [002] dn.5 24575.658366: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
105066    RenderThread-25194 (24827) [002] d..2 24575.658378: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
105067  Binder:23896_5-25989 (23896) [002] .... 24575.658388: binder_transaction_received: transaction=1671360
105068 s.nexuslauncher-24827 (24827) [000] d..2 24575.658400: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105069          <idle>-0     (-----) [000] d..1 24575.658416: cpu_idle: state=0 cpu_id=0
105070  Binder:23896_5-25989 (23896) [002] d..2 24575.658444: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
105071    RenderThread-25194 (24827) [002] d..2 24575.658473: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
105072          <idle>-0     (-----) [002] d..1 24575.658494: cpu_idle: state=0 cpu_id=2
105073          <idle>-0     (-----) [005] ...1 24575.658769: cpu_idle: state=4294967295 cpu_id=5
105074          <idle>-0     (-----) [005] d..1 24575.658772: cpu_idle: state=0 cpu_id=5
105075          <idle>-0     (-----) [003] ...1 24575.659249: cpu_idle: state=4294967295 cpu_id=3
105076          <idle>-0     (-----) [003] d..1 24575.659254: cpu_idle: state=0 cpu_id=3
105077          <idle>-0     (-----) [002] ...1 24575.659852: cpu_idle: state=4294967295 cpu_id=2
105078          <idle>-0     (-----) [002] d..1 24575.659858: cpu_idle: state=0 cpu_id=2
105079          <idle>-0     (-----) [001] d.h2 24575.660774: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
105080          <idle>-0     (-----) [001] dnh3 24575.660788: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
105081          <idle>-0     (-----) [001] .n.1 24575.660797: cpu_idle: state=4294967295 cpu_id=1
105082          <idle>-0     (-----) [001] d..2 24575.660805: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
105083        DispSync-23904 (23896) [001] d..1 24575.660822: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
105084        DispSync-23904 (23896) [001] d..2 24575.660838: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
105085          <idle>-0     (-----) [003] .n.1 24575.660843: cpu_idle: state=4294967295 cpu_id=3
105086          <idle>-0     (-----) [003] d..2 24575.660854: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
105087        DispSync-23904 (23896) [001] d..2 24575.660870: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105088          <idle>-0     (-----) [001] d..1 24575.660880: cpu_idle: state=0 cpu_id=1
105089          <idle>-0     (-----) [001] d.s2 24575.660911: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
105090   sfEventThread-23906 (23896) [003] d..3 24575.660927: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
105091          <idle>-0     (-----) [001] dns3 24575.660933: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
105092          <idle>-0     (-----) [001] .n.1 24575.660944: cpu_idle: state=4294967295 cpu_id=1
105093   sfEventThread-23906 (23896) [003] d..4 24575.660950: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
105094          <idle>-0     (-----) [001] d..2 24575.660953: 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
105095          <idle>-0     (-----) [000] .n.1 24575.660955: cpu_idle: state=4294967295 cpu_id=0
105096     rcu_preempt-7     (    7) [001] d..2 24575.660963: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
105097          <idle>-0     (-----) [000] d..2 24575.660970: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
105098   sfEventThread-23906 (23896) [003] d..2 24575.660991: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105099          <idle>-0     (-----) [003] d..1 24575.661006: cpu_idle: state=0 cpu_id=3
105100     rcu_preempt-7     (    7) [001] d..3 24575.661020: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
105101          <idle>-0     (-----) [003] .n.1 24575.661025: cpu_idle: state=4294967295 cpu_id=3
105102          <idle>-0     (-----) [003] d..2 24575.661040: 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
105103     rcu_preempt-7     (    7) [001] d..2 24575.661043: 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
105104         rcuop/0-10    (   10) [003] d..2 24575.661047: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
105105          <idle>-0     (-----) [001] d..1 24575.661057: cpu_idle: state=0 cpu_id=1
105106         rcuop/0-10    (   10) [003] d..3 24575.661096: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
105107         rcuop/0-10    (   10) [003] d..2 24575.661114: 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
105108         rcuop/1-21    (   21) [003] d..2 24575.661138: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105109          <idle>-0     (-----) [003] d..1 24575.661151: cpu_idle: state=0 cpu_id=3
105110  surfaceflinger-23896 (23896) [000] d..1 24575.661163: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
105111  surfaceflinger-23896 (23896) [000] d..2 24575.661200: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
105112          <idle>-0     (-----) [001] .n.1 24575.661206: cpu_idle: state=4294967295 cpu_id=1
105113          <idle>-0     (-----) [001] d..2 24575.661219: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
105114  Binder:23896_5-25989 (23896) [001] d..2 24575.661260: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105115          <idle>-0     (-----) [001] d..1 24575.661272: cpu_idle: state=0 cpu_id=1
105116  surfaceflinger-23896 (23896) [000] d..2 24575.661372: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
105117  surfaceflinger-23896 (23896) [000] d..3 24575.661421: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
105118  surfaceflinger-23896 (23896) [000] d..1 24575.661467: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
105119  surfaceflinger-23896 (23896) [000] d..2 24575.661488: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
105120          <idle>-0     (-----) [003] .n.1 24575.661494: cpu_idle: state=4294967295 cpu_id=3
105121          <idle>-0     (-----) [003] d..2 24575.661506: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
105122   sfEventThread-23906 (23896) [003] d..2 24575.661547: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105123          <idle>-0     (-----) [003] d..1 24575.661560: cpu_idle: state=0 cpu_id=3
105124  surfaceflinger-23896 (23896) [000] ...1 24575.661709: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
105125  surfaceflinger-23896 (23896) [000] ...1 24575.661724: tracing_mark_write: E|23896
105126  surfaceflinger-23896 (23896) [000] .... 24575.661786: binder_transaction: transaction=1671361 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
105127  surfaceflinger-23896 (23896) [000] ...2 24575.661822: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
105128  surfaceflinger-23896 (23896) [000] d..4 24575.661831: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
105129  surfaceflinger-23896 (23896) [000] d..5 24575.661858: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
105130          <idle>-0     (-----) [003] .n.1 24575.661864: cpu_idle: state=4294967295 cpu_id=3
105131          <idle>-0     (-----) [003] d..2 24575.661875: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
105132  surfaceflinger-23896 (23896) [000] d..2 24575.661882: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
105133  HwBinder:598_3-633   (  598) [003] .... 24575.661886: binder_transaction_received: transaction=1671361
105134         rcuop/0-10    (   10) [000] d..2 24575.661890: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
105135         rcuop/0-10    (   10) [000] d..3 24575.661906: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
105136          <idle>-0     (-----) [001] .n.1 24575.661912: cpu_idle: state=4294967295 cpu_id=1
105137          <idle>-0     (-----) [001] d..2 24575.661925: 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
105138         rcuop/0-10    (   10) [000] d..2 24575.661932: 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
105139  HwBinder:598_3-633   (  598) [003] ...1 24575.661933: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
105140     rcu_preempt-7     (    7) [001] d..2 24575.661951: 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
105141          <idle>-0     (-----) [000] d..1 24575.661951: cpu_idle: state=0 cpu_id=0
105142          <idle>-0     (-----) [001] d..1 24575.661961: cpu_idle: state=0 cpu_id=1
105143  HwBinder:598_3-633   (  598) [003] ...1 24575.662073: tracing_mark_write: B|598|HWCSession::PresentDisplay::
105144  HwBinder:598_3-633   (  598) [003] ...1 24575.662283: tracing_mark_write: B|598|HWDeviceDRM::Commit::
105145  HwBinder:598_3-633   (  598) [003] ...1 24575.662298: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
105146  HwBinder:598_3-633   (  598) [003] d..2 24575.663017: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
105147  HwBinder:598_3-633   (  598) [003] d..3 24575.663057: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
105148          <idle>-0     (-----) [001] .n.1 24575.663061: cpu_idle: state=4294967295 cpu_id=1
105149          <idle>-0     (-----) [001] d..2 24575.663073: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
105150  HwBinder:598_3-633   (  598) [003] ...1 24575.663171: tracing_mark_write: E|598
105151  HwBinder:598_3-633   (  598) [003] ...1 24575.663179: tracing_mark_write: E|598
105152  HwBinder:598_3-633   (  598) [003] ...1 24575.663250: tracing_mark_write: E|598
105153  HwBinder:598_3-633   (  598) [003] ...1 24575.663302: tracing_mark_write: E|598
105154  HwBinder:598_3-633   (  598) [003] .... 24575.663318: binder_transaction: transaction=1671362 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
105155  HwBinder:598_3-633   (  598) [003] d..2 24575.663347: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
105156  HwBinder:598_3-633   (  598) [003] d..3 24575.663368: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
105157  HwBinder:598_3-633   (  598) [003] .... 24575.663373: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
105158          <idle>-0     (-----) [000] .n.1 24575.663375: cpu_idle: state=4294967295 cpu_id=0
105159          <idle>-0     (-----) [000] d..2 24575.663386: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
105160  surfaceflinger-23896 (23896) [000] .... 24575.663396: binder_transaction_received: transaction=1671362
105161  HwBinder:598_3-633   (  598) [003] d..2 24575.663465: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105162          <idle>-0     (-----) [003] d..1 24575.663487: cpu_idle: state=0 cpu_id=3
105163  surfaceflinger-23896 (23896) [000] d..1 24575.663664: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
105164  surfaceflinger-23896 (23896) [000] d..2 24575.663699: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
105165          <idle>-0     (-----) [002] .n.1 24575.663703: cpu_idle: state=4294967295 cpu_id=2
105166          <idle>-0     (-----) [002] d..2 24575.663718: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
105167  Binder:23896_5-25989 (23896) [002] .... 24575.663780: binder_transaction: transaction=1671363 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
105168  Binder:23896_5-25989 (23896) [002] d..2 24575.663796: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
105169  Binder:23896_5-25989 (23896) [002] d..3 24575.663811: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
105170  Binder:23896_5-25989 (23896) [002] .... 24575.663816: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
105171  Binder:23896_5-25989 (23896) [002] d..2 24575.663876: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
105172    RenderThread-25194 (24827) [002] .... 24575.663885: binder_transaction_received: transaction=1671363
105173  surfaceflinger-23896 (23896) [000] d..2 24575.663890: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105174          <idle>-0     (-----) [000] d..1 24575.663910: cpu_idle: state=0 cpu_id=0
105175 crtc_commit:111-253   (  253) [001] d..2 24575.663921: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
105176          <idle>-0     (-----) [001] d..1 24575.663937: cpu_idle: state=0 cpu_id=1
105177    RenderThread-25194 (24827) [002] d.s2 24575.664262: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
105178    RenderThread-25194 (24827) [002] d.s3 24575.664317: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
105179          <idle>-0     (-----) [000] .n.1 24575.664324: cpu_idle: state=4294967295 cpu_id=0
105180          <idle>-0     (-----) [000] d..2 24575.664342: 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
105181  kworker/u16:10-23868 (23868) [000] .... 24575.664406: clk_set_rate: l3_cluster0_vote_clk 300000000
105182  kworker/u16:10-23868 (23868) [000] .... 24575.664414: clk_set_rate: l3_clk 300000000
105183  kworker/u16:10-23868 (23868) [000] d..2 24575.664575: 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
105184          <idle>-0     (-----) [000] d..1 24575.664592: cpu_idle: state=0 cpu_id=0
105185          <idle>-0     (-----) [003] ...1 24575.664794: cpu_idle: state=4294967295 cpu_id=3
105186          <idle>-0     (-----) [003] d..1 24575.664800: cpu_idle: state=0 cpu_id=3
105187    RenderThread-25194 (24827) [002] .... 24575.666931: binder_transaction: transaction=1671364 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
105188    RenderThread-25194 (24827) [002] ...2 24575.666949: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
105189    RenderThread-25194 (24827) [002] d..4 24575.666955: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
105190    RenderThread-25194 (24827) [002] dn.5 24575.666979: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
105191    RenderThread-25194 (24827) [002] d..2 24575.666992: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
105192  Binder:23896_5-25989 (23896) [002] .... 24575.667003: binder_transaction_received: transaction=1671364
105193  Binder:23896_5-25989 (23896) [002] .... 24575.667203: binder_transaction: transaction=1671365 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
105194  Binder:23896_5-25989 (23896) [002] .... 24575.667215: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
105195  Binder:23896_5-25989 (23896) [002] d..2 24575.667287: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
105196    RenderThread-25194 (24827) [002] .... 24575.667301: binder_transaction_received: transaction=1671365
105197    RenderThread-25194 (24827) [002] d..2 24575.667440: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
105198          <idle>-0     (-----) [002] d..1 24575.667465: cpu_idle: state=0 cpu_id=2
105199          <idle>-0     (-----) [001] d.s2 24575.667587: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
105200          <idle>-0     (-----) [001] dns3 24575.667610: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
105201          <idle>-0     (-----) [001] .n.1 24575.667633: cpu_idle: state=4294967295 cpu_id=1
105202          <idle>-0     (-----) [001] d..2 24575.667648: 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
105203     rcu_preempt-7     (    7) [001] d..2 24575.667663: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
105204     rcu_preempt-7     (    7) [001] d..3 24575.667705: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
105205     rcu_preempt-7     (    7) [001] d..2 24575.667718: 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
105206         rcuop/0-10    (   10) [001] d..2 24575.667728: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
105207         rcuop/0-10    (   10) [001] d..3 24575.667742: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
105208         rcuop/0-10    (   10) [001] d..2 24575.667752: 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
105209     rcu_preempt-7     (    7) [001] d..2 24575.667785: 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
105210          <idle>-0     (-----) [001] d..1 24575.667799: cpu_idle: state=0 cpu_id=1
105211          <idle>-0     (-----) [000] d.h5 24575.668639: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
105212          <idle>-0     (-----) [000] d.h6 24575.668665: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
105213          <idle>-0     (-----) [003] .n.1 24575.668670: cpu_idle: state=4294967295 cpu_id=3
105214          <idle>-0     (-----) [000] d.h5 24575.668671: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
105215          <idle>-0     (-----) [003] d..2 24575.668684: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
105216          <idle>-0     (-----) [000] d.h6 24575.668687: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
105217          <idle>-0     (-----) [001] .n.1 24575.668694: cpu_idle: state=4294967295 cpu_id=1
105218          <idle>-0     (-----) [001] d..2 24575.668706: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
105219  crtc_event:111-254   (  254) [003] d..3 24575.668706: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
105220          <idle>-0     (-----) [000] ...1 24575.668709: cpu_idle: state=4294967295 cpu_id=0
105221          <idle>-0     (-----) [000] d..1 24575.668717: cpu_idle: state=0 cpu_id=0
105222  crtc_event:111-254   (  254) [003] d..4 24575.668731: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
105223          <idle>-0     (-----) [002] .n.1 24575.668739: cpu_idle: state=4294967295 cpu_id=2
105224          <idle>-0     (-----) [002] d..2 24575.668755: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
105225  crtc_event:111-254   (  254) [003] d..2 24575.668765: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105226          <idle>-0     (-----) [003] d..1 24575.668779: cpu_idle: state=0 cpu_id=3
105227 crtc_commit:111-253   (  253) [001] d..2 24575.668893: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
105228          <idle>-0     (-----) [001] d..1 24575.668903: cpu_idle: state=0 cpu_id=1
105229 kgsl_worker_thr-246   (  246) [002] d..2 24575.668988: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
105230          <idle>-0     (-----) [002] d..1 24575.669000: cpu_idle: state=0 cpu_id=2
105231          <idle>-0     (-----) [002] d.h2 24575.669073: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
105232          <idle>-0     (-----) [002] dnh3 24575.669090: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
105233          <idle>-0     (-----) [002] .n.1 24575.669100: cpu_idle: state=4294967295 cpu_id=2
105234          <idle>-0     (-----) [002] d..2 24575.669112: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
105235 kgsl_worker_thr-246   (  246) [002] d..2 24575.669139: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
105236 kgsl_worker_thr-246   (  246) [002] d..3 24575.669187: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
105237 kgsl_worker_thr-246   (  246) [002] d..2 24575.669205: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
105238  kworker/u16:10-23868 (23868) [002] d..2 24575.669656: 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
105239          <idle>-0     (-----) [002] d..1 24575.669674: cpu_idle: state=0 cpu_id=2
105240          <idle>-0     (-----) [000] d.h3 24575.670702: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
105241          <idle>-0     (-----) [000] d.h4 24575.670721: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
105242          <idle>-0     (-----) [002] .n.1 24575.670728: cpu_idle: state=4294967295 cpu_id=2
105243          <idle>-0     (-----) [000] ...1 24575.670739: cpu_idle: state=4294967295 cpu_id=0
105244          <idle>-0     (-----) [002] d..2 24575.670740: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
105245          <idle>-0     (-----) [000] d..1 24575.670745: cpu_idle: state=0 cpu_id=0
105246 kgsl_worker_thr-246   (  246) [002] d..2 24575.670821: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
105247          <idle>-0     (-----) [002] d..1 24575.670834: cpu_idle: state=0 cpu_id=2
105248          <idle>-0     (-----) [001] d.s3 24575.670917: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
105249          <idle>-0     (-----) [001] d.s4 24575.670939: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
105250          <idle>-0     (-----) [003] .n.1 24575.670946: cpu_idle: state=4294967295 cpu_id=3
105251          <idle>-0     (-----) [001] d.s3 24575.670946: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
105252          <idle>-0     (-----) [003] d..2 24575.670959: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
105253          <idle>-0     (-----) [000] d.h5 24575.670964: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
105254          <idle>-0     (-----) [001] d.s4 24575.670965: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
105255          <idle>-0     (-----) [002] .n.1 24575.670971: cpu_idle: state=4294967295 cpu_id=2
105256          <idle>-0     (-----) [000] d.h6 24575.670982: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
105257          <idle>-0     (-----) [002] d..2 24575.670987: 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
105258          <idle>-0     (-----) [001] .n.1 24575.670994: cpu_idle: state=4294967295 cpu_id=1
105259  crtc_event:111-254   (  254) [003] d..2 24575.670995: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105260          <idle>-0     (-----) [000] ...1 24575.671003: cpu_idle: state=4294967295 cpu_id=0
105261          <idle>-0     (-----) [001] d..2 24575.671004: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
105262          <idle>-0     (-----) [003] d..1 24575.671007: cpu_idle: state=0 cpu_id=3
105263          <idle>-0     (-----) [000] d..1 24575.671009: cpu_idle: state=0 cpu_id=0
105264  kworker/u16:10-23868 (23868) [002] d..2 24575.671083: 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
105265 crtc_commit:111-253   (  253) [001] d..2 24575.671093: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105266          <idle>-0     (-----) [002] d..1 24575.671096: cpu_idle: state=0 cpu_id=2
105267          <idle>-0     (-----) [001] d..1 24575.671105: cpu_idle: state=0 cpu_id=1
105268          <idle>-0     (-----) [000] d.h5 24575.671272: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
105269          <idle>-0     (-----) [000] d.h6 24575.671290: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
105270          <idle>-0     (-----) [003] .n.1 24575.671295: cpu_idle: state=4294967295 cpu_id=3
105271          <idle>-0     (-----) [000] d.h7 24575.671303: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
105272          <idle>-0     (-----) [003] d..2 24575.671306: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
105273          <idle>-0     (-----) [000] dnh8 24575.671319: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
105274          <idle>-0     (-----) [000] dnh9 24575.671335: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
105275  crtc_event:111-254   (  254) [003] d..2 24575.671335: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105276          <idle>-0     (-----) [003] d..1 24575.671346: cpu_idle: state=0 cpu_id=3
105277          <idle>-0     (-----) [000] dnha 24575.671351: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
105278          <idle>-0     (-----) [000] dnh7 24575.671357: sched_waking: comm=SDM_EventThread pid=624 prio=111 target_cpu=001
105279          <idle>-0     (-----) [001] .n.1 24575.671358: cpu_idle: state=4294967295 cpu_id=1
105280          <idle>-0     (-----) [001] d..2 24575.671369: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
105281          <idle>-0     (-----) [000] dnh8 24575.671402: sched_wakeup: comm=SDM_EventThread pid=624 prio=111 target_cpu=000
105282          <idle>-0     (-----) [000] .n.1 24575.671421: cpu_idle: state=4294967295 cpu_id=0
105283          <idle>-0     (-----) [000] d..2 24575.671445: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
105284 crtc_commit:111-253   (  253) [001] d..2 24575.671475: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=SDM_EventThread next_pid=624 next_prio=111
105285     kworker/0:1-13012 (13012) [000] d..2 24575.671486: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105286          <idle>-0     (-----) [000] d..1 24575.671499: cpu_idle: state=0 cpu_id=0
105287 SDM_EventThread-624   (  598) [001] ...1 24575.671531: tracing_mark_write: B|598|HWCCallbacks::Vsync::
105288 SDM_EventThread-624   (  598) [001] ...1 24575.671542: tracing_mark_write: B|598|HIDL::IComposerCallback::onVsync::client
105289 SDM_EventThread-624   (  598) [001] ...1 24575.671548: tracing_mark_write: E|598
105290 SDM_EventThread-624   (  598) [001] .... 24575.671583: binder_transaction: transaction=1671366 dest_node=1270370 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
105291 SDM_EventThread-624   (  598) [001] d..4 24575.671594: sched_waking: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=000
105292 SDM_EventThread-624   (  598) [001] d..5 24575.671624: sched_wakeup: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=000
105293          <idle>-0     (-----) [000] .n.1 24575.671629: cpu_idle: state=4294967295 cpu_id=0
105294          <idle>-0     (-----) [000] d..2 24575.671642: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:23896_ next_pid=23923 next_prio=120
105295 HwBinder:23896_-23923 (23896) [000] .... 24575.671653: binder_transaction_received: transaction=1671366
105296 SDM_EventThread-624   (  598) [001] ...1 24575.671655: tracing_mark_write: E|598
105297 SDM_EventThread-624   (  598) [001] d..4 24575.671672: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
105298 HwBinder:23896_-23923 (23896) [000] ...1 24575.671702: tracing_mark_write: B|23896|HIDL::IComposerCallback::onVsync::server
105299 SDM_EventThread-624   (  598) [001] d..5 24575.671704: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
105300          <idle>-0     (-----) [003] .n.1 24575.671709: cpu_idle: state=4294967295 cpu_id=3
105301          <idle>-0     (-----) [003] d..2 24575.671720: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
105302 HwBinder:23896_-23923 (23896) [000] ...1 24575.671725: tracing_mark_write: E|23896
105303 SDM_EventThread-624   (  598) [001] d..2 24575.671751: sched_switch: prev_comm=SDM_EventThread prev_pid=624 prev_prio=111 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105304 crtc_commit:111-253   (  253) [003] d..2 24575.671753: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105305          <idle>-0     (-----) [003] d..1 24575.671763: cpu_idle: state=0 cpu_id=3
105306          <idle>-0     (-----) [001] d..1 24575.671767: cpu_idle: state=0 cpu_id=1
105307 HwBinder:23896_-23923 (23896) [000] d..2 24575.671784: sched_switch: prev_comm=HwBinder:23896_ prev_pid=23923 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105308          <idle>-0     (-----) [000] d..1 24575.671801: cpu_idle: state=0 cpu_id=0
105309          <idle>-0     (-----) [001] d.h2 24575.673238: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
105310          <idle>-0     (-----) [001] dnh3 24575.673252: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
105311          <idle>-0     (-----) [001] .n.1 24575.673263: cpu_idle: state=4294967295 cpu_id=1
105312          <idle>-0     (-----) [001] d..2 24575.673271: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
105313        DispSync-23904 (23896) [001] d..1 24575.673296: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
105314        DispSync-23904 (23896) [001] d..2 24575.673313: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
105315          <idle>-0     (-----) [003] .n.1 24575.673319: cpu_idle: state=4294967295 cpu_id=3
105316          <idle>-0     (-----) [003] d..2 24575.673329: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
105317        DispSync-23904 (23896) [001] d..2 24575.673351: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105318          <idle>-0     (-----) [001] d..1 24575.673364: cpu_idle: state=0 cpu_id=1
105319  appEventThread-23905 (23896) [003] d..3 24575.673397: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
105320  appEventThread-23905 (23896) [003] d..4 24575.673424: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
105321          <idle>-0     (-----) [000] .n.1 24575.673430: cpu_idle: state=4294967295 cpu_id=0
105322          <idle>-0     (-----) [000] d..2 24575.673445: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
105323  appEventThread-23905 (23896) [003] d..2 24575.673470: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105324          <idle>-0     (-----) [003] d..1 24575.673486: cpu_idle: state=0 cpu_id=3
105325 s.nexuslauncher-24827 (24827) [000] .... 24575.673846: binder_transaction: transaction=1671367 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
105326 s.nexuslauncher-24827 (24827) [000] d..4 24575.673860: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
105327 s.nexuslauncher-24827 (24827) [000] d..5 24575.673900: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
105328          <idle>-0     (-----) [001] .n.1 24575.673906: cpu_idle: state=4294967295 cpu_id=1
105329          <idle>-0     (-----) [001] d..2 24575.673918: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
105330  Binder:23896_5-25989 (23896) [001] .... 24575.673928: binder_transaction_received: transaction=1671367
105331 s.nexuslauncher-24827 (24827) [000] d..3 24575.673946: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
105332  Binder:23896_5-25989 (23896) [001] d..1 24575.673966: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
105333 s.nexuslauncher-24827 (24827) [000] d..4 24575.673969: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
105334          <idle>-0     (-----) [002] .n.1 24575.673974: cpu_idle: state=4294967295 cpu_id=2
105335  Binder:23896_5-25989 (23896) [001] d..2 24575.673986: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
105336          <idle>-0     (-----) [002] d..2 24575.673987: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
105337          <idle>-0     (-----) [003] .n.1 24575.673993: cpu_idle: state=4294967295 cpu_id=3
105338          <idle>-0     (-----) [003] d..2 24575.674005: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
105339  Binder:23896_5-25989 (23896) [001] d..2 24575.674038: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105340    RenderThread-25194 (24827) [002] d..2 24575.674049: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
105341          <idle>-0     (-----) [001] d..1 24575.674051: cpu_idle: state=0 cpu_id=1
105342  appEventThread-23905 (23896) [003] d..2 24575.674051: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105343          <idle>-0     (-----) [002] d..1 24575.674062: cpu_idle: state=0 cpu_id=2
105344          <idle>-0     (-----) [003] d..1 24575.674064: cpu_idle: state=0 cpu_id=3
105345          <idle>-0     (-----) [001] d.s2 24575.674251: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
105346          <idle>-0     (-----) [001] dns3 24575.674272: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
105347          <idle>-0     (-----) [001] dns3 24575.674278: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
105348          <idle>-0     (-----) [001] dns4 24575.674315: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
105349          <idle>-0     (-----) [001] .n.1 24575.674331: cpu_idle: state=4294967295 cpu_id=1
105350          <idle>-0     (-----) [001] d..2 24575.674343: 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
105351     rcu_preempt-7     (    7) [001] d..2 24575.674364: 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
105352 s.nexuslauncher-24827 (24827) [000] d..3 24575.674458: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
105353 s.nexuslauncher-24827 (24827) [000] d..4 24575.674486: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
105354          <idle>-0     (-----) [002] .n.1 24575.674491: cpu_idle: state=4294967295 cpu_id=2
105355          <idle>-0     (-----) [002] d..2 24575.674506: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
105356 s.nexuslauncher-24827 (24827) [000] d..2 24575.674555: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105357  kworker/u16:10-23868 (23868) [001] .... 24575.674559: clk_set_rate: l3_cluster0_vote_clk 403200000
105358  kworker/u16:10-23868 (23868) [001] .... 24575.674567: clk_set_rate: l3_clk 403200000
105359          <idle>-0     (-----) [000] d..1 24575.674578: cpu_idle: state=0 cpu_id=0
105360  kworker/u16:10-23868 (23868) [001] d..2 24575.674624: 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
105361          <idle>-0     (-----) [001] d..1 24575.674640: cpu_idle: state=0 cpu_id=1
105362    RenderThread-25194 (24827) [002] d..1 24575.674766: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
105363    RenderThread-25194 (24827) [002] d..2 24575.674789: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
105364          <idle>-0     (-----) [000] .n.1 24575.674795: cpu_idle: state=4294967295 cpu_id=0
105365          <idle>-0     (-----) [000] d..2 24575.674809: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
105366    RenderThread-25194 (24827) [002] .... 24575.674856: binder_transaction: transaction=1671368 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
105367    RenderThread-25194 (24827) [002] ...2 24575.674866: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
105368    RenderThread-25194 (24827) [002] d..4 24575.674871: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
105369    RenderThread-25194 (24827) [002] dn.5 24575.674894: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
105370    RenderThread-25194 (24827) [002] d..2 24575.674905: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
105371  Binder:23896_5-25989 (23896) [002] .... 24575.674915: binder_transaction_received: transaction=1671368
105372 s.nexuslauncher-24827 (24827) [000] d..2 24575.674935: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105373          <idle>-0     (-----) [000] d..1 24575.674954: cpu_idle: state=0 cpu_id=0
105374  Binder:23896_5-25989 (23896) [002] d..2 24575.674965: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
105375    RenderThread-25194 (24827) [002] d..2 24575.674995: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
105376          <idle>-0     (-----) [002] d..1 24575.675015: cpu_idle: state=0 cpu_id=2
105377          <idle>-0     (-----) [000] d.h2 24575.676124: sched_waking: comm=LazyTaskWriterT pid=24117 prio=130 target_cpu=000
105378          <idle>-0     (-----) [000] dnh3 24575.676158: sched_wakeup: comm=LazyTaskWriterT pid=24117 prio=130 target_cpu=000
105379          <idle>-0     (-----) [000] .n.1 24575.676170: cpu_idle: state=4294967295 cpu_id=0
105380          <idle>-0     (-----) [000] d..2 24575.676183: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=LazyTaskWriterT next_pid=24117 next_prio=130
105381          <idle>-0     (-----) [002] ...1 24575.676448: cpu_idle: state=4294967295 cpu_id=2
105382          <idle>-0     (-----) [002] d..1 24575.676453: cpu_idle: state=0 cpu_id=2
105383          <idle>-0     (-----) [001] d.h2 24575.677243: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
105384          <idle>-0     (-----) [001] dnh3 24575.677258: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
105385          <idle>-0     (-----) [001] .n.1 24575.677267: cpu_idle: state=4294967295 cpu_id=1
105386          <idle>-0     (-----) [001] d..2 24575.677278: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
105387        DispSync-23904 (23896) [001] d..1 24575.677295: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
105388        DispSync-23904 (23896) [001] d..2 24575.677310: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
105389          <idle>-0     (-----) [003] .n.1 24575.677316: cpu_idle: state=4294967295 cpu_id=3
105390          <idle>-0     (-----) [003] d..2 24575.677327: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
105391        DispSync-23904 (23896) [001] d..2 24575.677344: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105392          <idle>-0     (-----) [001] d..1 24575.677356: cpu_idle: state=0 cpu_id=1
105393   sfEventThread-23906 (23896) [003] d..3 24575.677364: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
105394   sfEventThread-23906 (23896) [003] d..4 24575.677395: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
105395          <idle>-0     (-----) [001] .n.1 24575.677401: cpu_idle: state=4294967295 cpu_id=1
105396          <idle>-0     (-----) [001] d..2 24575.677412: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
105397   sfEventThread-23906 (23896) [003] d..2 24575.677428: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105398          <idle>-0     (-----) [003] d..1 24575.677443: cpu_idle: state=0 cpu_id=3
105399  surfaceflinger-23896 (23896) [001] d..1 24575.677643: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
105400  surfaceflinger-23896 (23896) [001] d..2 24575.677684: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
105401<...>-24117 ( 23968) [000] d.H3 24575.677688: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
105402          <idle>-0     (-----) [002] .n.1 24575.677688: cpu_idle: state=4294967295 cpu_id=2
105403          <idle>-0     (-----) [002] d..2 24575.677705: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
105404<...>-24117 ( 23968) [000] d.H3 24575.677709: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
105405          <idle>-0     (-----) [005] dnh2 24575.677714: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
105406          <idle>-0     (-----) [005] .n.1 24575.677718: cpu_idle: state=4294967295 cpu_id=5
105407          <idle>-0     (-----) [005] d..2 24575.677723: 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
105408<...>-24117 ( 23968) [000] d.H4 24575.677737: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
105409          <idle>-0     (-----) [003] .n.1 24575.677743: cpu_idle: state=4294967295 cpu_id=3
105410         sugov:4-560   (  560) [005] d..2 24575.677745: 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
105411          <idle>-0     (-----) [005] d..1 24575.677751: cpu_idle: state=0 cpu_id=5
105412<...>-24117 ( 23968) [000] d.s3 24575.677751: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
105413          <idle>-0     (-----) [003] d..2 24575.677754: 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
105414  Binder:23896_5-25989 (23896) [002] d..2 24575.677759: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
105415          <idle>-0     (-----) [002] d..1 24575.677772: cpu_idle: state=0 cpu_id=2
105416<...>-24117 ( 23968) [000] d.s4 24575.677794: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
105417         sugov:0-559   (  559) [003] .... 24575.677799: clk_set_rate: pwrcl_clk 902400000
105418          <idle>-0     (-----) [002] .n.1 24575.677800: cpu_idle: state=4294967295 cpu_id=2
105419         sugov:0-559   (  559) [003] .... 24575.677812: clk_set_rate: cpu3_pwrcl_clk 825600000
105420          <idle>-0     (-----) [002] d..2 24575.677813: 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
105421     rcu_preempt-7     (    7) [002] d..2 24575.677820: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
105422         sugov:0-559   (  559) [003] .... 24575.677825: clk_set_rate: cpu2_pwrcl_clk 825600000
105423         sugov:0-559   (  559) [003] .... 24575.677835: clk_set_rate: cpu1_pwrcl_clk 825600000
105424         sugov:0-559   (  559) [003] .... 24575.677844: clk_set_rate: cpu0_pwrcl_clk 902400000
105425         sugov:0-559   (  559) [003] .... 24575.677856: cpu_frequency: state=902400 cpu_id=0
105426  surfaceflinger-23896 (23896) [001] d..1 24575.677859: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
105427     rcu_preempt-7     (    7) [002] d..3 24575.677868: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
105428         sugov:0-559   (  559) [003] .... 24575.677889: cpu_frequency: state=902400 cpu_id=1
105429         sugov:0-559   (  559) [003] .... 24575.677894: cpu_frequency: state=902400 cpu_id=2
105430         sugov:0-559   (  559) [003] .... 24575.677898: cpu_frequency: state=902400 cpu_id=3
105431  surfaceflinger-23896 (23896) [001] d..2 24575.677902: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
105432     rcu_preempt-7     (    7) [002] d..2 24575.677910: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=sfEventThread next_pid=23906 next_prio=97
105433         sugov:0-559   (  559) [003] d..2 24575.677918: 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
105434         rcuop/0-10    (   10) [003] d..2 24575.677931: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
105435         rcuop/0-10    (   10) [003] d..3 24575.677956: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
105436   sfEventThread-23906 (23896) [002] d..2 24575.677971: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
105437         rcuop/0-10    (   10) [003] d..2 24575.677979: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105438          <idle>-0     (-----) [003] d..1 24575.677992: cpu_idle: state=0 cpu_id=3
105439     rcu_preempt-7     (    7) [002] d..2 24575.677995: 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
105440          <idle>-0     (-----) [002] d..1 24575.678009: cpu_idle: state=0 cpu_id=2
105441  surfaceflinger-23896 (23896) [001] ...1 24575.678108: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
105442  surfaceflinger-23896 (23896) [001] ...1 24575.678115: tracing_mark_write: E|23896
105443  surfaceflinger-23896 (23896) [001] .... 24575.678169: binder_transaction: transaction=1671369 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
105444  surfaceflinger-23896 (23896) [001] ...2 24575.678196: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
105445  surfaceflinger-23896 (23896) [001] d..4 24575.678203: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
105446  surfaceflinger-23896 (23896) [001] d..5 24575.678227: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
105447          <idle>-0     (-----) [003] .n.1 24575.678232: cpu_idle: state=4294967295 cpu_id=3
105448          <idle>-0     (-----) [003] d..2 24575.678243: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
105449  HwBinder:598_3-633   (  598) [003] .... 24575.678253: binder_transaction_received: transaction=1671369
105450  surfaceflinger-23896 (23896) [001] d..2 24575.678262: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105451          <idle>-0     (-----) [001] d..1 24575.678281: cpu_idle: state=0 cpu_id=1
105452  HwBinder:598_3-633   (  598) [003] ...1 24575.678299: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
105453  HwBinder:598_3-633   (  598) [003] ...1 24575.678410: tracing_mark_write: B|598|HWCSession::PresentDisplay::
105454  HwBinder:598_3-633   (  598) [003] ...1 24575.678590: tracing_mark_write: B|598|HWDeviceDRM::Commit::
105455  HwBinder:598_3-633   (  598) [003] ...1 24575.678604: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
105456          <idle>-0     (-----) [005] ...1 24575.678761: cpu_idle: state=4294967295 cpu_id=5
105457          <idle>-0     (-----) [005] d..1 24575.678764: cpu_idle: state=0 cpu_id=5
105458<...>-24117 ( 23968) [000] d..3 24575.679119: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
105459<...>-24117 ( 23968) [000] d..4 24575.679169: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
105460<...>-24117 ( 23968) [000] d..3 24575.679192: sched_waking: comm=kworker/0:1H pid=531 prio=100 target_cpu=000
105461<...>-24117 ( 23968) [000] dn.4 24575.679214: sched_wakeup: comm=kworker/0:1H pid=531 prio=100 target_cpu=000
105462  HwBinder:598_3-633   (  598) [003] d..2 24575.679224: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
105463<...>-24117 ( 23968) [000] d..2 24575.679225: sched_switch: prev_comm=LazyTaskWriterT prev_pid=24117 prev_prio=130 prev_state=R+ ==> next_comm=kworker/0:1H next_pid=531 next_prio=100
105464  HwBinder:598_3-633   (  598) [003] d..3 24575.679261: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
105465    kworker/0:1H-531   (  531) [000] d..2 24575.679265: sched_switch: prev_comm=kworker/0:1H prev_pid=531 prev_prio=100 prev_state=S ==> next_comm=LazyTaskWriterT next_pid=24117 next_prio=130
105466          <idle>-0     (-----) [001] .n.1 24575.679268: cpu_idle: state=4294967295 cpu_id=1
105467          <idle>-0     (-----) [001] d..2 24575.679279: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
105468<...>-24117 ( 23968) [000] d..2 24575.679308: sched_switch: prev_comm=LazyTaskWriterT prev_pid=24117 prev_prio=130 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
105469          <idle>-0     (-----) [000] d..1 24575.679328: cpu_idle: state=0 cpu_id=0
105470  HwBinder:598_3-633   (  598) [003] ...1 24575.679373: tracing_mark_write: E|598
105471  HwBinder:598_3-633   (  598) [003] ...1 24575.679379: tracing_mark_write: E|598
105472  HwBinder:598_3-633   (  598) [003] ...1 24575.679452: tracing_mark_write: E|598
105473  HwBinder:598_3-633   (  598) [003] ...1 24575.679504: tracing_mark_write: E|598
105474  HwBinder:598_3-633   (  598) [003] .... 24575.679521: binder_transaction: transaction=1671370 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
105475  HwBinder:598_3-633   (  598) [003] d..2 24575.679547: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
105476  HwBinder:598_3-633   (  598) [003] d..3 24575.679577: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
105477          <idle>-0     (-----) [002] .n.1 24575.679582: cpu_idle: state=4294967295 cpu_id=2
105478  HwBinder:598_3-633   (  598) [003] .... 24575.679583: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
105479          <idle>-0     (-----) [002] d..2 24575.679593: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
105480  surfaceflinger-23896 (23896) [002] .... 24575.679604: binder_transaction_received: transaction=1671370
105481  HwBinder:598_3-633   (  598) [003] d..2 24575.679664: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
105482  surfaceflinger-23896 (23896) [002] d..2 24575.679818: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
105483  surfaceflinger-23896 (23896) [002] d..3 24575.679874: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
105484  surfaceflinger-23896 (23896) [002] d..1 24575.679962: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
105485  surfaceflinger-23896 (23896) [002] d..2 24575.679988: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
105486          <idle>-0     (-----) [000] .n.1 24575.679996: cpu_idle: state=4294967295 cpu_id=0
105487          <idle>-0     (-----) [000] d..2 24575.680007: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
105488  kworker/u16:10-23868 (23868) [003] d..2 24575.680073: 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
105489  Binder:23896_5-25989 (23896) [000] .... 24575.680078: binder_transaction: transaction=1671371 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
105490          <idle>-0     (-----) [003] d..1 24575.680093: cpu_idle: state=0 cpu_id=3
105491  Binder:23896_5-25989 (23896) [000] d..2 24575.680094: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
105492 crtc_commit:111-253   (  253) [001] d..2 24575.680119: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcuop/2 next_pid=29 next_prio=120
105493  Binder:23896_5-25989 (23896) [000] d..3 24575.680121: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
105494  Binder:23896_5-25989 (23896) [000] .... 24575.680125: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
105495         rcuop/2-29    (   29) [001] d..2 24575.680159: 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
105496          <idle>-0     (-----) [001] d..1 24575.680176: cpu_idle: state=0 cpu_id=1
105497  Binder:23896_5-25989 (23896) [000] d..2 24575.680188: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
105498  surfaceflinger-23896 (23896) [002] d..2 24575.680190: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
105499    RenderThread-25194 (24827) [000] .... 24575.680199: binder_transaction_received: transaction=1671371
105500          <idle>-0     (-----) [002] d..1 24575.680208: cpu_idle: state=0 cpu_id=2
105501          <idle>-0     (-----) [003] d.s3 24575.680914: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
105502          <idle>-0     (-----) [003] d.s4 24575.680928: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
105503    RenderThread-25194 (24827) [000] d.s2 24575.680931: sched_waking: comm=kworker/0:1H pid=531 prio=100 target_cpu=000
105504          <idle>-0     (-----) [003] dns4 24575.680935: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
105505          <idle>-0     (-----) [003] .n.1 24575.680943: cpu_idle: state=4294967295 cpu_id=3
105506    RenderThread-25194 (24827) [000] dns3 24575.680944: sched_wakeup: comm=kworker/0:1H pid=531 prio=100 target_cpu=000
105507          <idle>-0     (-----) [003] d..2 24575.680958: 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
105508    RenderThread-25194 (24827) [000] d..2 24575.680963: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R ==> next_comm=kworker/0:1H next_pid=531 next_prio=100
105509    kworker/0:1H-531   (  531) [000] d..2 24575.680988: sched_switch: prev_comm=kworker/0:1H prev_pid=531 prev_prio=100 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
105510  kworker/u16:10-23868 (23868) [003] d..2 24575.681107: 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
105511          <idle>-0     (-----) [003] d.s4 24575.681140: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
105512          <idle>-0     (-----) [003] d.s5 24575.681154: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
105513          <idle>-0     (-----) [003] dns5 24575.681159: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
105514          <idle>-0     (-----) [003] d..2 24575.681171: 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
105515  kworker/u16:10-23868 (23868) [003] d..1 24575.681202: clk_enable: gcc_ufs_phy_axi_clk_src
105516  kworker/u16:10-23868 (23868) [003] d..1 24575.681229: clk_enable: gcc_ufs_phy_axi_clk
105517  kworker/u16:10-23868 (23868) [003] d..1 24575.681241: clk_enable: gcc_ufs_phy_axi_hw_ctl_clk
105518  kworker/u16:10-23868 (23868) [003] d..1 24575.681252: clk_enable: gcc_aggre_ufs_phy_axi_clk
105519  kworker/u16:10-23868 (23868) [003] d..1 24575.681261: clk_enable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
105520  kworker/u16:10-23868 (23868) [003] d..1 24575.681269: clk_enable: gcc_ufs_phy_ahb_clk
105521  kworker/u16:10-23868 (23868) [003] d..1 24575.681282: clk_enable: gcc_ufs_phy_unipro_core_clk_src
105522  kworker/u16:10-23868 (23868) [003] d..1 24575.681289: clk_enable: gcc_ufs_phy_unipro_core_clk
105523  kworker/u16:10-23868 (23868) [003] d..1 24575.681296: clk_enable: gcc_ufs_phy_unipro_core_hw_ctl_clk
105524  kworker/u16:10-23868 (23868) [003] d..1 24575.681306: clk_enable: gcc_ufs_phy_ice_core_clk_src
105525  kworker/u16:10-23868 (23868) [003] d..1 24575.681312: clk_enable: gcc_ufs_phy_ice_core_clk
105526  kworker/u16:10-23868 (23868) [003] d..1 24575.681319: clk_enable: gcc_ufs_phy_ice_core_hw_ctl_clk
105527  kworker/u16:10-23868 (23868) [003] d..1 24575.681340: clk_enable: gcc_ufs_mem_clkref_clk
105528  kworker/u16:10-23868 (23868) [003] d..1 24575.681351: clk_enable: gcc_ufs_phy_phy_aux_clk_src
105529  kworker/u16:10-23868 (23868) [003] d..1 24575.681357: clk_enable: gcc_ufs_phy_phy_aux_clk
105530  kworker/u16:10-23868 (23868) [003] d..1 24575.681364: clk_enable: gcc_ufs_phy_phy_aux_hw_ctl_clk
105531  kworker/u16:10-23868 (23868) [003] d..3 24575.681427: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
105532  kworker/u16:10-23868 (23868) [003] dn.4 24575.681470: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
105533  kworker/u16:10-23868 (23868) [003] d..2 24575.681480: 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
105534          <idle>-0     (-----) [001] ...1 24575.681524: cpu_idle: state=4294967295 cpu_id=1
105535          <idle>-0     (-----) [002] ...1 24575.681527: cpu_idle: state=4294967295 cpu_id=2
105536          <idle>-0     (-----) [001] d..1 24575.681530: cpu_idle: state=0 cpu_id=1
105537  kworker/u16:16-25995 (25995) [003] d..2 24575.681530: 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
105538          <idle>-0     (-----) [002] d..1 24575.681532: cpu_idle: state=0 cpu_id=2
105539  kworker/u16:10-23868 (23868) [003] d..2 24575.681639: 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
105540          <idle>-0     (-----) [003] d..1 24575.681657: cpu_idle: state=0 cpu_id=3
105541          <idle>-0     (-----) [001] d.h4 24575.682711: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
105542          <idle>-0     (-----) [001] d.h5 24575.682731: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
105543          <idle>-0     (-----) [003] .n.1 24575.682739: cpu_idle: state=4294967295 cpu_id=3
105544          <idle>-0     (-----) [003] d..2 24575.682750: 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
105545  kworker/u16:10-23868 (23868) [003] d..2 24575.682778: 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
105546          <idle>-0     (-----) [003] d..1 24575.682789: cpu_idle: state=0 cpu_id=3
105547          <idle>-0     (-----) [001] d.s3 24575.682819: sched_waking: comm=LazyTaskWriterT pid=24117 prio=130 target_cpu=000
105548          <idle>-0     (-----) [001] d.s4 24575.682844: sched_blocked_reason: pid=24117 iowait=1 caller=__filemap_fdatawait_range+0x120/0x184
105549          <idle>-0     (-----) [001] dns4 24575.682849: sched_wakeup: comm=LazyTaskWriterT pid=24117 prio=130 target_cpu=001
105550    RenderThread-25194 (24827) [000] .... 24575.682864: binder_transaction: transaction=1671372 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
105551          <idle>-0     (-----) [001] dns4 24575.682878: sched_waking: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
105552    RenderThread-25194 (24827) [000] ...2 24575.682880: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
105553    RenderThread-25194 (24827) [000] d..4 24575.682884: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
105554          <idle>-0     (-----) [001] dns5 24575.682893: sched_wakeup: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
105555    RenderThread-25194 (24827) [000] dn.5 24575.682903: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
105556    RenderThread-25194 (24827) [000] d..2 24575.682914: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
105557          <idle>-0     (-----) [001] .n.1 24575.682919: cpu_idle: state=4294967295 cpu_id=1
105558  Binder:23896_5-25989 (23896) [000] .... 24575.682923: binder_transaction_received: transaction=1671372
105559          <idle>-0     (-----) [001] d..2 24575.682935: 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
105560    kworker/1:1H-533   (  533) [001] d..2 24575.682954: sched_switch: prev_comm=kworker/1:1H prev_pid=533 prev_prio=100 prev_state=S ==> next_comm=LazyTaskWriterT next_pid=24117 next_prio=130
105561  Binder:23896_5-25989 (23896) [000] .... 24575.683089: binder_transaction: transaction=1671373 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
105562  Binder:23896_5-25989 (23896) [000] .... 24575.683098: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
105563<...>-24117 ( 23968) [001] d..3 24575.683143: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
105564  Binder:23896_5-25989 (23896) [000] d..2 24575.683156: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
105565    RenderThread-25194 (24827) [000] .... 24575.683167: binder_transaction_received: transaction=1671373
105566<...>-24117 ( 23968) [001] d..4 24575.683193: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
105567<...>-24117 ( 23968) [001] d..2 24575.683235: sched_switch: prev_comm=LazyTaskWriterT prev_pid=24117 prev_prio=130 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
105568  kworker/u16:10-23868 (23868) [001] d.h3 24575.683270: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
105569    RenderThread-25194 (24827) [000] d..2 24575.683278: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105570  kworker/u16:10-23868 (23868) [001] d.h4 24575.683286: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
105571          <idle>-0     (-----) [003] .n.1 24575.683292: cpu_idle: state=4294967295 cpu_id=3
105572          <idle>-0     (-----) [000] d..1 24575.683295: cpu_idle: state=0 cpu_id=0
105573          <idle>-0     (-----) [003] d..2 24575.683302: 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
105574  kworker/u16:10-23868 (23868) [001] d.s2 24575.683312: sched_waking: comm=LazyTaskWriterT pid=24117 prio=130 target_cpu=001
105575  kworker/u16:16-25995 (25995) [003] d..2 24575.683321: 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
105576          <idle>-0     (-----) [003] d..1 24575.683331: cpu_idle: state=0 cpu_id=3
105577  kworker/u16:10-23868 (23868) [001] d.s3 24575.683334: sched_blocked_reason: pid=24117 iowait=1 caller=wait_on_node_pages_writeback+0x140/0x248
105578  kworker/u16:10-23868 (23868) [001] d.s3 24575.683342: sched_wakeup: comm=LazyTaskWriterT pid=24117 prio=130 target_cpu=003
105579          <idle>-0     (-----) [003] .n.1 24575.683347: cpu_idle: state=4294967295 cpu_id=3
105580  kworker/u16:10-23868 (23868) [001] d.s3 24575.683353: sched_waking: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
105581          <idle>-0     (-----) [003] d..2 24575.683359: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=LazyTaskWriterT next_pid=24117 next_prio=130
105582  kworker/u16:10-23868 (23868) [001] dns4 24575.683363: sched_wakeup: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
105583  kworker/u16:10-23868 (23868) [001] d..2 24575.683381: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1H next_pid=533 next_prio=100
105584    kworker/1:1H-533   (  533) [001] d..2 24575.683394: sched_switch: prev_comm=kworker/1:1H prev_pid=533 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
105585  kworker/u16:10-23868 (23868) [001] d..2 24575.683422: 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
105586          <idle>-0     (-----) [001] d..1 24575.683444: cpu_idle: state=0 cpu_id=1
105587          <idle>-0     (-----) [000] d.h2 24575.683902: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
105588          <idle>-0     (-----) [000] dnh3 24575.683917: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
105589          <idle>-0     (-----) [000] .n.1 24575.683927: cpu_idle: state=4294967295 cpu_id=0
105590          <idle>-0     (-----) [000] d..2 24575.683935: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
105591 irq/79-1436400.-24613 (24613) [000] d..2 24575.684123: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
105592          <idle>-0     (-----) [000] d..1 24575.684134: cpu_idle: state=0 cpu_id=0
105593<...>-24117 ( 23968) [003] d.s2 24575.684145: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
105594<...>-24117 ( 23968) [003] d.s3 24575.684165: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
105595          <idle>-0     (-----) [000] .n.1 24575.684170: cpu_idle: state=4294967295 cpu_id=0
105596          <idle>-0     (-----) [000] d..2 24575.684178: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
105597 irq/79-1436400.-24613 (24613) [000] d..2 24575.684215: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105598          <idle>-0     (-----) [002] d.s2 24575.684247: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
105599          <idle>-0     (-----) [000] d.s4 24575.684250: sched_waking: comm=kworker/0:1H pid=531 prio=100 target_cpu=000
105600          <idle>-0     (-----) [000] dns5 24575.684261: sched_wakeup: comm=kworker/0:1H pid=531 prio=100 target_cpu=000
105601          <idle>-0     (-----) [000] dns4 24575.684266: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
105602          <idle>-0     (-----) [000] dns5 24575.684282: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
105603          <idle>-0     (-----) [002] d.s3 24575.684284: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
105604          <idle>-0     (-----) [001] .n.1 24575.684289: cpu_idle: state=4294967295 cpu_id=1
105605          <idle>-0     (-----) [001] d..2 24575.684304: 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
105606          <idle>-0     (-----) [000] d..2 24575.684312: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1H next_pid=531 next_prio=100
105607          <idle>-0     (-----) [002] ...1 24575.684312: cpu_idle: state=4294967295 cpu_id=2
105608          <idle>-0     (-----) [002] d..1 24575.684320: cpu_idle: state=0 cpu_id=2
105609    kworker/0:1H-531   (  531) [000] d..2 24575.684339: sched_switch: prev_comm=kworker/0:1H prev_pid=531 prev_prio=100 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
105610     rcu_preempt-7     (    7) [000] d..2 24575.684381: 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
105611          <idle>-0     (-----) [000] d..1 24575.684397: cpu_idle: state=0 cpu_id=0
105612  kworker/u16:10-23868 (23868) [001] .... 24575.684415: clk_set_rate: l3_cluster0_vote_clk 480000000
105613  kworker/u16:10-23868 (23868) [001] .... 24575.684422: clk_set_rate: l3_clk 480000000
105614  kworker/u16:10-23868 (23868) [001] d..2 24575.684552: 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
105615          <idle>-0     (-----) [001] d..1 24575.684566: cpu_idle: state=0 cpu_id=1
105616<...>-24117 ( 23968) [003] d..2 24575.684874: sched_switch: prev_comm=LazyTaskWriterT prev_pid=24117 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105617          <idle>-0     (-----) [003] d..1 24575.684898: cpu_idle: state=0 cpu_id=3
105618          <idle>-0     (-----) [000] d.h5 24575.685072: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
105619          <idle>-0     (-----) [000] d.h6 24575.685094: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
105620          <idle>-0     (-----) [000] d.h5 24575.685100: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
105621          <idle>-0     (-----) [003] .n.1 24575.685102: cpu_idle: state=4294967295 cpu_id=3
105622          <idle>-0     (-----) [000] d.h6 24575.685112: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
105623          <idle>-0     (-----) [003] d..2 24575.685113: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
105624          <idle>-0     (-----) [001] .n.1 24575.685118: cpu_idle: state=4294967295 cpu_id=1
105625          <idle>-0     (-----) [000] ...1 24575.685126: cpu_idle: state=4294967295 cpu_id=0
105626          <idle>-0     (-----) [001] d..2 24575.685129: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
105627          <idle>-0     (-----) [000] d..1 24575.685131: cpu_idle: state=0 cpu_id=0
105628  crtc_event:111-254   (  254) [003] d..3 24575.685136: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
105629  crtc_event:111-254   (  254) [003] d..4 24575.685158: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
105630          <idle>-0     (-----) [002] .n.1 24575.685163: cpu_idle: state=4294967295 cpu_id=2
105631          <idle>-0     (-----) [002] d..2 24575.685175: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
105632  crtc_event:111-254   (  254) [003] d..2 24575.685184: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105633          <idle>-0     (-----) [003] d..1 24575.685197: cpu_idle: state=0 cpu_id=3
105634 crtc_commit:111-253   (  253) [001] d..2 24575.685264: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
105635          <idle>-0     (-----) [001] d..1 24575.685273: cpu_idle: state=0 cpu_id=1
105636 kgsl_worker_thr-246   (  246) [002] d..2 24575.685368: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
105637          <idle>-0     (-----) [002] d..1 24575.685378: cpu_idle: state=0 cpu_id=2
105638          <idle>-0     (-----) [002] d.h2 24575.685454: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
105639          <idle>-0     (-----) [002] dnh3 24575.685467: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
105640          <idle>-0     (-----) [002] .n.1 24575.685476: cpu_idle: state=4294967295 cpu_id=2
105641          <idle>-0     (-----) [002] d..2 24575.685485: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
105642 kgsl_worker_thr-246   (  246) [002] d..2 24575.685507: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
105643 kgsl_worker_thr-246   (  246) [002] d..3 24575.685544: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
105644 kgsl_worker_thr-246   (  246) [002] d..2 24575.685558: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
105645  kworker/u16:10-23868 (23868) [002] d..2 24575.685779: 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
105646          <idle>-0     (-----) [002] d..1 24575.685794: cpu_idle: state=0 cpu_id=2
105647          <idle>-0     (-----) [003] ...1 24575.686722: cpu_idle: state=4294967295 cpu_id=3
105648          <idle>-0     (-----) [003] d..1 24575.686727: cpu_idle: state=0 cpu_id=3
105649          <idle>-0     (-----) [000] d.h3 24575.686986: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
105650          <idle>-0     (-----) [000] d.h4 24575.687001: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
105651          <idle>-0     (-----) [002] .n.1 24575.687008: cpu_idle: state=4294967295 cpu_id=2
105652          <idle>-0     (-----) [000] ...1 24575.687014: cpu_idle: state=4294967295 cpu_id=0
105653          <idle>-0     (-----) [002] d..2 24575.687018: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
105654          <idle>-0     (-----) [000] d..1 24575.687019: cpu_idle: state=0 cpu_id=0
105655 kgsl_worker_thr-246   (  246) [002] d..2 24575.687085: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
105656          <idle>-0     (-----) [002] d..1 24575.687097: cpu_idle: state=0 cpu_id=2
105657          <idle>-0     (-----) [000] d.h5 24575.687391: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
105658          <idle>-0     (-----) [000] d.h6 24575.687404: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
105659          <idle>-0     (-----) [001] .n.1 24575.687411: cpu_idle: state=4294967295 cpu_id=1
105660          <idle>-0     (-----) [000] ...1 24575.687415: cpu_idle: state=4294967295 cpu_id=0
105661          <idle>-0     (-----) [001] d..2 24575.687418: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
105662          <idle>-0     (-----) [000] d..1 24575.687419: cpu_idle: state=0 cpu_id=0
105663 crtc_commit:111-253   (  253) [001] d..2 24575.687507: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105664          <idle>-0     (-----) [001] d..1 24575.687515: cpu_idle: state=0 cpu_id=1
105665          <idle>-0     (-----) [001] d.s3 24575.687578: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
105666          <idle>-0     (-----) [001] d.s4 24575.687596: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
105667          <idle>-0     (-----) [003] .n.1 24575.687601: cpu_idle: state=4294967295 cpu_id=3
105668          <idle>-0     (-----) [003] d..2 24575.687612: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
105669          <idle>-0     (-----) [001] ...1 24575.687618: cpu_idle: state=4294967295 cpu_id=1
105670          <idle>-0     (-----) [001] d..1 24575.687623: cpu_idle: state=0 cpu_id=1
105671  crtc_event:111-254   (  254) [003] d..2 24575.687644: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105672          <idle>-0     (-----) [003] d..1 24575.687656: cpu_idle: state=0 cpu_id=3
105673          <idle>-0     (-----) [000] d.h5 24575.687706: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
105674          <idle>-0     (-----) [000] d.h6 24575.687722: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
105675          <idle>-0     (-----) [003] .n.1 24575.687728: cpu_idle: state=4294967295 cpu_id=3
105676          <idle>-0     (-----) [000] d.h7 24575.687732: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
105677          <idle>-0     (-----) [003] d..2 24575.687736: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
105678          <idle>-0     (-----) [000] dnh8 24575.687747: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
105679  crtc_event:111-254   (  254) [003] d..2 24575.687761: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105680          <idle>-0     (-----) [000] dnh9 24575.687764: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
105681          <idle>-0     (-----) [003] d..1 24575.687771: cpu_idle: state=0 cpu_id=3
105682          <idle>-0     (-----) [000] dnha 24575.687778: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
105683          <idle>-0     (-----) [001] .n.1 24575.687783: cpu_idle: state=4294967295 cpu_id=1
105684          <idle>-0     (-----) [000] dnh7 24575.687785: sched_waking: comm=SDM_EventThread pid=624 prio=111 target_cpu=001
105685          <idle>-0     (-----) [001] d..2 24575.687791: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
105686          <idle>-0     (-----) [000] dnh8 24575.687831: sched_wakeup: comm=SDM_EventThread pid=624 prio=111 target_cpu=000
105687          <idle>-0     (-----) [000] .n.1 24575.687846: cpu_idle: state=4294967295 cpu_id=0
105688          <idle>-0     (-----) [000] d..2 24575.687867: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
105689 crtc_commit:111-253   (  253) [001] d..2 24575.687892: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=SDM_EventThread next_pid=624 next_prio=111
105690     kworker/0:1-13012 (13012) [000] d..2 24575.687902: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105691          <idle>-0     (-----) [000] d..1 24575.687911: cpu_idle: state=0 cpu_id=0
105692 SDM_EventThread-624   (  598) [001] ...1 24575.687954: tracing_mark_write: B|598|HWCCallbacks::Vsync::
105693 SDM_EventThread-624   (  598) [001] ...1 24575.687969: tracing_mark_write: B|598|HIDL::IComposerCallback::onVsync::client
105694 SDM_EventThread-624   (  598) [001] ...1 24575.687974: tracing_mark_write: E|598
105695 SDM_EventThread-624   (  598) [001] .... 24575.688009: binder_transaction: transaction=1671374 dest_node=1270370 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
105696 SDM_EventThread-624   (  598) [001] d..4 24575.688021: sched_waking: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=000
105697 SDM_EventThread-624   (  598) [001] d..5 24575.688047: sched_wakeup: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=000
105698          <idle>-0     (-----) [000] .n.1 24575.688052: cpu_idle: state=4294967295 cpu_id=0
105699          <idle>-0     (-----) [000] d..2 24575.688062: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:23896_ next_pid=23923 next_prio=120
105700 HwBinder:23896_-23923 (23896) [000] .... 24575.688073: binder_transaction_received: transaction=1671374
105701 SDM_EventThread-624   (  598) [001] ...1 24575.688077: tracing_mark_write: E|598
105702 SDM_EventThread-624   (  598) [001] d..4 24575.688094: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
105703 SDM_EventThread-624   (  598) [001] d..5 24575.688121: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
105704 HwBinder:23896_-23923 (23896) [000] ...1 24575.688124: tracing_mark_write: B|23896|HIDL::IComposerCallback::onVsync::server
105705          <idle>-0     (-----) [002] .n.1 24575.688127: cpu_idle: state=4294967295 cpu_id=2
105706          <idle>-0     (-----) [002] d..2 24575.688137: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
105707 HwBinder:23896_-23923 (23896) [000] ...1 24575.688150: tracing_mark_write: E|23896
105708 SDM_EventThread-624   (  598) [001] d..2 24575.688161: sched_switch: prev_comm=SDM_EventThread prev_pid=624 prev_prio=111 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105709 crtc_commit:111-253   (  253) [002] d..2 24575.688168: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
105710          <idle>-0     (-----) [001] d..1 24575.688173: cpu_idle: state=0 cpu_id=1
105711          <idle>-0     (-----) [002] d..1 24575.688179: cpu_idle: state=0 cpu_id=2
105712 HwBinder:23896_-23923 (23896) [000] d..2 24575.688203: sched_switch: prev_comm=HwBinder:23896_ prev_pid=23923 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105713          <idle>-0     (-----) [000] d..1 24575.688215: cpu_idle: state=0 cpu_id=0
105714          <idle>-0     (-----) [003] ...1 24575.688977: cpu_idle: state=4294967295 cpu_id=3
105715          <idle>-0     (-----) [003] d..1 24575.688981: cpu_idle: state=0 cpu_id=3
105716          <idle>-0     (-----) [001] d.h2 24575.689708: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
105717          <idle>-0     (-----) [001] dnh3 24575.689723: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
105718          <idle>-0     (-----) [001] .n.1 24575.689733: cpu_idle: state=4294967295 cpu_id=1
105719          <idle>-0     (-----) [001] d..2 24575.689740: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
105720        DispSync-23904 (23896) [001] d..1 24575.689771: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
105721        DispSync-23904 (23896) [001] d..2 24575.689790: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
105722          <idle>-0     (-----) [003] .n.1 24575.689795: cpu_idle: state=4294967295 cpu_id=3
105723          <idle>-0     (-----) [003] d..2 24575.689805: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
105724        DispSync-23904 (23896) [001] d..2 24575.689826: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105725          <idle>-0     (-----) [001] d..1 24575.689836: cpu_idle: state=0 cpu_id=1
105726  appEventThread-23905 (23896) [003] d..3 24575.689888: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
105727  appEventThread-23905 (23896) [003] d..4 24575.689916: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
105728          <idle>-0     (-----) [000] .n.1 24575.689922: cpu_idle: state=4294967295 cpu_id=0
105729          <idle>-0     (-----) [000] d..2 24575.689934: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
105730  appEventThread-23905 (23896) [003] d..2 24575.689958: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105731          <idle>-0     (-----) [003] d..1 24575.689972: cpu_idle: state=0 cpu_id=3
105732          <idle>-0     (-----) [002] ...1 24575.689976: cpu_idle: state=4294967295 cpu_id=2
105733          <idle>-0     (-----) [002] d..1 24575.689980: cpu_idle: state=0 cpu_id=2
105734 s.nexuslauncher-24827 (24827) [000] .... 24575.690388: binder_transaction: transaction=1671375 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
105735 s.nexuslauncher-24827 (24827) [000] d..4 24575.690398: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
105736 s.nexuslauncher-24827 (24827) [000] d..5 24575.690430: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
105737          <idle>-0     (-----) [001] .n.1 24575.690437: cpu_idle: state=4294967295 cpu_id=1
105738          <idle>-0     (-----) [001] d..2 24575.690447: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
105739  Binder:23896_5-25989 (23896) [001] .... 24575.690455: binder_transaction_received: transaction=1671375
105740 s.nexuslauncher-24827 (24827) [000] d..3 24575.690473: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
105741  Binder:23896_5-25989 (23896) [001] d..1 24575.690488: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
105742 s.nexuslauncher-24827 (24827) [000] d..4 24575.690500: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
105743          <idle>-0     (-----) [002] .n.1 24575.690505: cpu_idle: state=4294967295 cpu_id=2
105744  Binder:23896_5-25989 (23896) [001] d..2 24575.690505: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
105745          <idle>-0     (-----) [003] .n.1 24575.690511: cpu_idle: state=4294967295 cpu_id=3
105746          <idle>-0     (-----) [002] d..2 24575.690516: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
105747          <idle>-0     (-----) [003] d..2 24575.690520: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
105748  Binder:23896_5-25989 (23896) [001] d..2 24575.690547: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105749          <idle>-0     (-----) [001] d..1 24575.690557: cpu_idle: state=0 cpu_id=1
105750  appEventThread-23905 (23896) [003] d..2 24575.690560: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105751          <idle>-0     (-----) [003] d..1 24575.690570: cpu_idle: state=0 cpu_id=3
105752    RenderThread-25194 (24827) [002] d..2 24575.690578: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
105753          <idle>-0     (-----) [002] d..1 24575.690591: cpu_idle: state=0 cpu_id=2
105754          <idle>-0     (-----) [001] d.s3 24575.690914: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
105755 s.nexuslauncher-24827 (24827) [000] d.s1 24575.690918: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
105756          <idle>-0     (-----) [001] dns4 24575.690930: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
105757          <idle>-0     (-----) [001] .n.1 24575.690943: cpu_idle: state=4294967295 cpu_id=1
105758          <idle>-0     (-----) [001] d..2 24575.690953: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
105759 s.nexuslauncher-24827 (24827) [000] d.s2 24575.690972: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
105760          <idle>-0     (-----) [002] ...1 24575.690983: cpu_idle: state=4294967295 cpu_id=2
105761          <idle>-0     (-----) [003] ...1 24575.690984: cpu_idle: state=4294967295 cpu_id=3
105762          <idle>-0     (-----) [002] d..1 24575.690988: cpu_idle: state=0 cpu_id=2
105763          <idle>-0     (-----) [003] d..1 24575.690988: cpu_idle: state=0 cpu_id=3
105764     kworker/1:1-13091 (13091) [001] d..2 24575.690991: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
105765     rcu_preempt-7     (    7) [001] d..2 24575.691001: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
105766     rcu_preempt-7     (    7) [001] d..3 24575.691042: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
105767 s.nexuslauncher-24827 (24827) [000] d..3 24575.691051: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
105768     rcu_preempt-7     (    7) [001] d..2 24575.691059: 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
105769         rcuop/0-10    (   10) [001] d..2 24575.691068: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
105770 s.nexuslauncher-24827 (24827) [000] d..4 24575.691071: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
105771          <idle>-0     (-----) [002] .n.1 24575.691076: cpu_idle: state=4294967295 cpu_id=2
105772          <idle>-0     (-----) [002] d..2 24575.691089: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
105773         rcuop/0-10    (   10) [001] d..3 24575.691106: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
105774 s.nexuslauncher-24827 (24827) [000] d..2 24575.691113: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105775         rcuop/0-10    (   10) [001] d..2 24575.691130: 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
105776          <idle>-0     (-----) [000] d..1 24575.691131: cpu_idle: state=0 cpu_id=0
105777         rcuop/1-21    (   21) [001] d..2 24575.691157: 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
105778          <idle>-0     (-----) [001] d..1 24575.691170: cpu_idle: state=0 cpu_id=1
105779    RenderThread-25194 (24827) [002] d..1 24575.691347: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
105780    RenderThread-25194 (24827) [002] d..2 24575.691368: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
105781          <idle>-0     (-----) [000] .n.1 24575.691374: cpu_idle: state=4294967295 cpu_id=0
105782          <idle>-0     (-----) [000] d..2 24575.691387: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
105783    RenderThread-25194 (24827) [002] .... 24575.691440: binder_transaction: transaction=1671376 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
105784    RenderThread-25194 (24827) [002] ...2 24575.691450: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
105785    RenderThread-25194 (24827) [002] d..4 24575.691454: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
105786    RenderThread-25194 (24827) [002] dn.5 24575.691476: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
105787    RenderThread-25194 (24827) [002] d..2 24575.691487: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
105788  Binder:23896_5-25989 (23896) [002] .... 24575.691495: binder_transaction_received: transaction=1671376
105789 s.nexuslauncher-24827 (24827) [000] d..2 24575.691509: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105790          <idle>-0     (-----) [000] d..1 24575.691525: cpu_idle: state=0 cpu_id=0
105791  Binder:23896_5-25989 (23896) [002] d..2 24575.691546: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
105792    RenderThread-25194 (24827) [002] d..2 24575.691575: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
105793          <idle>-0     (-----) [002] d..1 24575.691592: cpu_idle: state=0 cpu_id=2
105794          <idle>-0     (-----) [000] ...1 24575.692778: cpu_idle: state=4294967295 cpu_id=0
105795          <idle>-0     (-----) [000] d..1 24575.692782: cpu_idle: state=0 cpu_id=0
105796          <idle>-0     (-----) [002] ...1 24575.693283: cpu_idle: state=4294967295 cpu_id=2
105797          <idle>-0     (-----) [002] d..1 24575.693288: cpu_idle: state=0 cpu_id=2
105798          <idle>-0     (-----) [001] d.h2 24575.693720: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
105799          <idle>-0     (-----) [001] dnh3 24575.693733: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
105800          <idle>-0     (-----) [001] .n.1 24575.693741: cpu_idle: state=4294967295 cpu_id=1
105801          <idle>-0     (-----) [001] d..2 24575.693750: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
105802        DispSync-23904 (23896) [001] d..1 24575.693769: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
105803        DispSync-23904 (23896) [001] d..2 24575.693784: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
105804          <idle>-0     (-----) [002] .n.1 24575.693789: cpu_idle: state=4294967295 cpu_id=2
105805          <idle>-0     (-----) [002] d..2 24575.693800: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
105806        DispSync-23904 (23896) [001] d..2 24575.693816: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105807          <idle>-0     (-----) [001] d..1 24575.693828: cpu_idle: state=0 cpu_id=1
105808   sfEventThread-23906 (23896) [002] d..3 24575.693852: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
105809   sfEventThread-23906 (23896) [002] d..4 24575.693882: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
105810          <idle>-0     (-----) [001] .n.1 24575.693887: cpu_idle: state=4294967295 cpu_id=1
105811          <idle>-0     (-----) [001] d..2 24575.693899: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
105812   sfEventThread-23906 (23896) [002] d..2 24575.693915: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
105813          <idle>-0     (-----) [002] d..1 24575.693929: cpu_idle: state=0 cpu_id=2
105814  surfaceflinger-23896 (23896) [001] d..1 24575.694104: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
105815  surfaceflinger-23896 (23896) [001] d..2 24575.694135: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
105816          <idle>-0     (-----) [000] .n.1 24575.694139: cpu_idle: state=4294967295 cpu_id=0
105817          <idle>-0     (-----) [000] d..2 24575.694151: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
105818  Binder:23896_5-25989 (23896) [000] d..2 24575.694187: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105819          <idle>-0     (-----) [000] d..1 24575.694199: cpu_idle: state=0 cpu_id=0
105820  surfaceflinger-23896 (23896) [001] d.s2 24575.694251: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
105821  surfaceflinger-23896 (23896) [001] d.s3 24575.694289: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
105822  surfaceflinger-23896 (23896) [001] d..2 24575.694392: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
105823  surfaceflinger-23896 (23896) [001] d..3 24575.694412: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
105824  surfaceflinger-23896 (23896) [001] d..1 24575.694445: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
105825  surfaceflinger-23896 (23896) [001] d..2 24575.694461: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
105826          <idle>-0     (-----) [002] .n.1 24575.694468: cpu_idle: state=4294967295 cpu_id=2
105827          <idle>-0     (-----) [002] d..2 24575.694480: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
105828   sfEventThread-23906 (23896) [002] d..2 24575.694522: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
105829          <idle>-0     (-----) [002] d..1 24575.694533: cpu_idle: state=0 cpu_id=2
105830  surfaceflinger-23896 (23896) [001] ...1 24575.694776: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
105831  surfaceflinger-23896 (23896) [001] ...1 24575.694785: tracing_mark_write: E|23896
105832  surfaceflinger-23896 (23896) [001] .... 24575.694843: binder_transaction: transaction=1671377 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
105833  surfaceflinger-23896 (23896) [001] ...2 24575.694877: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
105834  surfaceflinger-23896 (23896) [001] d..4 24575.694887: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
105835  surfaceflinger-23896 (23896) [001] d..5 24575.694909: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
105836          <idle>-0     (-----) [003] .n.1 24575.694913: cpu_idle: state=4294967295 cpu_id=3
105837          <idle>-0     (-----) [003] d..2 24575.694923: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
105838  surfaceflinger-23896 (23896) [001] d..2 24575.694931: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
105839  HwBinder:598_3-633   (  598) [003] .... 24575.694935: binder_transaction_received: transaction=1671377
105840         rcuop/0-10    (   10) [001] d..2 24575.694945: 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
105841  HwBinder:598_3-633   (  598) [003] ...1 24575.695009: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
105842  HwBinder:598_3-633   (  598) [003] ...1 24575.695132: tracing_mark_write: B|598|HWCSession::PresentDisplay::
105843  kworker/u16:10-23868 (23868) [001] d..2 24575.695173: 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
105844          <idle>-0     (-----) [001] d..1 24575.695189: cpu_idle: state=0 cpu_id=1
105845  HwBinder:598_3-633   (  598) [003] d.s1 24575.695195: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
105846  HwBinder:598_3-633   (  598) [003] d.s2 24575.695216: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
105847  HwBinder:598_3-633   (  598) [003] ...1 24575.695406: tracing_mark_write: B|598|HWDeviceDRM::Commit::
105848  HwBinder:598_3-633   (  598) [003] ...1 24575.695421: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
105849  HwBinder:598_3-633   (  598) [003] d..2 24575.696095: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
105850  HwBinder:598_3-633   (  598) [003] d..3 24575.696119: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
105851          <idle>-0     (-----) [002] .n.1 24575.696124: cpu_idle: state=4294967295 cpu_id=2
105852          <idle>-0     (-----) [002] d..2 24575.696134: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
105853  HwBinder:598_3-633   (  598) [003] ...1 24575.696229: tracing_mark_write: E|598
105854  HwBinder:598_3-633   (  598) [003] ...1 24575.696235: tracing_mark_write: E|598
105855  HwBinder:598_3-633   (  598) [003] ...1 24575.696310: tracing_mark_write: E|598
105856  HwBinder:598_3-633   (  598) [003] ...1 24575.696368: tracing_mark_write: E|598
105857  HwBinder:598_3-633   (  598) [003] .... 24575.696384: binder_transaction: transaction=1671378 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
105858  HwBinder:598_3-633   (  598) [003] d..2 24575.696408: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
105859  HwBinder:598_3-633   (  598) [003] d..3 24575.696427: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
105860  HwBinder:598_3-633   (  598) [003] .... 24575.696432: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
105861          <idle>-0     (-----) [001] .n.1 24575.696432: cpu_idle: state=4294967295 cpu_id=1
105862          <idle>-0     (-----) [001] d..2 24575.696440: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
105863  surfaceflinger-23896 (23896) [001] .... 24575.696450: binder_transaction_received: transaction=1671378
105864  HwBinder:598_3-633   (  598) [003] d..2 24575.696512: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
105865     ksoftirqd/3-34    (   34) [003] d.s2 24575.696530: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
105866     ksoftirqd/3-34    (   34) [003] d.s3 24575.696569: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
105867     ksoftirqd/3-34    (   34) [003] d.s3 24575.696576: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
105868     ksoftirqd/3-34    (   34) [003] d..2 24575.696591: 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
105869 crtc_commit:111-253   (  253) [002] d..2 24575.696596: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
105870          <idle>-0     (-----) [002] d..1 24575.696611: cpu_idle: state=0 cpu_id=2
105871  kworker/u16:10-23868 (23868) [003] .... 24575.696699: clk_set_rate: l3_cluster0_vote_clk 300000000
105872  kworker/u16:10-23868 (23868) [003] .... 24575.696707: clk_set_rate: l3_clk 300000000
105873  surfaceflinger-23896 (23896) [001] d..1 24575.696752: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
105874  kworker/u16:10-23868 (23868) [003] d..2 24575.696774: 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
105875  surfaceflinger-23896 (23896) [001] d..2 24575.696782: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
105876          <idle>-0     (-----) [000] .n.1 24575.696787: cpu_idle: state=4294967295 cpu_id=0
105877          <idle>-0     (-----) [003] d..1 24575.696797: cpu_idle: state=0 cpu_id=3
105878          <idle>-0     (-----) [000] d..2 24575.696803: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
105879  Binder:23896_5-25989 (23896) [000] .... 24575.696873: binder_transaction: transaction=1671379 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
105880  Binder:23896_5-25989 (23896) [000] d..2 24575.696890: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
105881  Binder:23896_5-25989 (23896) [000] d..3 24575.696919: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
105882  Binder:23896_5-25989 (23896) [000] .... 24575.696924: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
105883  Binder:23896_5-25989 (23896) [000] d..2 24575.696993: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
105884    RenderThread-25194 (24827) [000] .... 24575.697003: binder_transaction_received: transaction=1671379
105885  surfaceflinger-23896 (23896) [001] d..2 24575.697005: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105886          <idle>-0     (-----) [001] d..1 24575.697022: cpu_idle: state=0 cpu_id=1
105887          <idle>-0     (-----) [001] d.H3 24575.697693: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
105888          <idle>-0     (-----) [001] d.H3 24575.697712: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
105889          <idle>-0     (-----) [005] dnh2 24575.697717: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
105890          <idle>-0     (-----) [005] .n.1 24575.697721: cpu_idle: state=4294967295 cpu_id=5
105891          <idle>-0     (-----) [005] d..2 24575.697726: 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
105892          <idle>-0     (-----) [001] d.H4 24575.697731: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
105893          <idle>-0     (-----) [003] .n.1 24575.697738: cpu_idle: state=4294967295 cpu_id=3
105894          <idle>-0     (-----) [001] d.s2 24575.697739: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
105895         sugov:4-560   (  560) [005] d..2 24575.697740: 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
105896          <idle>-0     (-----) [005] d..1 24575.697746: cpu_idle: state=0 cpu_id=5
105897          <idle>-0     (-----) [003] d..2 24575.697754: 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
105898          <idle>-0     (-----) [001] dns3 24575.697761: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
105899          <idle>-0     (-----) [001] dns3 24575.697768: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
105900          <idle>-0     (-----) [001] dns4 24575.697783: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
105901         sugov:0-559   (  559) [003] .... 24575.697794: clk_set_rate: pwrcl_clk 1056000000
105902          <idle>-0     (-----) [001] .n.1 24575.697803: cpu_idle: state=4294967295 cpu_id=1
105903         sugov:0-559   (  559) [003] .... 24575.697804: clk_set_rate: cpu3_pwrcl_clk 902400000
105904         sugov:0-559   (  559) [003] .... 24575.697814: clk_set_rate: cpu2_pwrcl_clk 902400000
105905          <idle>-0     (-----) [001] d..2 24575.697815: 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
105906         sugov:0-559   (  559) [003] .... 24575.697823: clk_set_rate: cpu1_pwrcl_clk 902400000
105907         sugov:0-559   (  559) [003] .... 24575.697830: clk_set_rate: cpu0_pwrcl_clk 1056000000
105908         sugov:0-559   (  559) [003] .... 24575.697840: cpu_frequency: state=1056000 cpu_id=0
105909     rcu_preempt-7     (    7) [001] d..2 24575.697848: 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
105910          <idle>-0     (-----) [001] d..1 24575.697867: cpu_idle: state=0 cpu_id=1
105911         sugov:0-559   (  559) [003] .... 24575.697873: cpu_frequency: state=1056000 cpu_id=1
105912         sugov:0-559   (  559) [003] .... 24575.697880: cpu_frequency: state=1056000 cpu_id=2
105913         sugov:0-559   (  559) [003] .... 24575.697885: cpu_frequency: state=1056000 cpu_id=3
105914         sugov:0-559   (  559) [003] d..2 24575.697906: 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
105915  kworker/u16:10-23868 (23868) [003] d..2 24575.697966: 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
105916          <idle>-0     (-----) [003] d..1 24575.697978: cpu_idle: state=0 cpu_id=3
105917          <idle>-0     (-----) [005] ...1 24575.698757: cpu_idle: state=4294967295 cpu_id=5
105918          <idle>-0     (-----) [005] d..1 24575.698759: cpu_idle: state=0 cpu_id=5
105919    RenderThread-25194 (24827) [000] .... 24575.699757: binder_transaction: transaction=1671380 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
105920    RenderThread-25194 (24827) [000] ...2 24575.699774: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
105921    RenderThread-25194 (24827) [000] d..4 24575.699779: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
105922    RenderThread-25194 (24827) [000] dn.5 24575.699802: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
105923    RenderThread-25194 (24827) [000] d..2 24575.699813: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
105924  Binder:23896_5-25989 (23896) [000] .... 24575.699823: binder_transaction_received: transaction=1671380
105925  Binder:23896_5-25989 (23896) [000] .... 24575.699994: binder_transaction: transaction=1671381 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
105926  Binder:23896_5-25989 (23896) [000] .... 24575.700004: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
105927  Binder:23896_5-25989 (23896) [000] d..2 24575.700064: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
105928    RenderThread-25194 (24827) [000] .... 24575.700075: binder_transaction_received: transaction=1671381
105929    RenderThread-25194 (24827) [000] d..2 24575.700188: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105930          <idle>-0     (-----) [000] d..1 24575.700210: cpu_idle: state=0 cpu_id=0
105931          <idle>-0     (-----) [000] d.h5 24575.701560: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
105932          <idle>-0     (-----) [000] d.h6 24575.701584: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
105933          <idle>-0     (-----) [003] .n.1 24575.701590: cpu_idle: state=4294967295 cpu_id=3
105934          <idle>-0     (-----) [000] d.h5 24575.701591: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
105935          <idle>-0     (-----) [003] d..2 24575.701602: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
105936          <idle>-0     (-----) [000] d.h6 24575.701604: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
105937          <idle>-0     (-----) [002] .n.1 24575.701611: cpu_idle: state=4294967295 cpu_id=2
105938          <idle>-0     (-----) [000] d..2 24575.701618: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
105939  crtc_event:111-254   (  254) [003] d..3 24575.701622: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
105940          <idle>-0     (-----) [002] d..2 24575.701625: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
105941          <idle>-0     (-----) [000] dn.3 24575.701633: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
105942          <idle>-0     (-----) [000] .n.1 24575.701638: cpu_idle: state=4294967295 cpu_id=0
105943          <idle>-0     (-----) [000] d..2 24575.701655: 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
105944  crtc_event:111-254   (  254) [003] d..4 24575.701657: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
105945          <idle>-0     (-----) [001] .n.1 24575.701663: cpu_idle: state=4294967295 cpu_id=1
105946          <idle>-0     (-----) [001] d..2 24575.701675: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
105947  crtc_event:111-254   (  254) [003] d..2 24575.701688: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105948     ksoftirqd/0-3     (    3) [000] d..2 24575.701690: 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
105949          <idle>-0     (-----) [003] d..1 24575.701700: cpu_idle: state=0 cpu_id=3
105950          <idle>-0     (-----) [000] d..1 24575.701702: cpu_idle: state=0 cpu_id=0
105951 crtc_commit:111-253   (  253) [002] d..2 24575.701753: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
105952          <idle>-0     (-----) [002] d..1 24575.701761: cpu_idle: state=0 cpu_id=2
105953 kgsl_worker_thr-246   (  246) [001] d..2 24575.701863: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
105954          <idle>-0     (-----) [001] d..1 24575.701873: cpu_idle: state=0 cpu_id=1
105955          <idle>-0     (-----) [001] d.h2 24575.701950: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
105956          <idle>-0     (-----) [001] dnh3 24575.701962: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
105957          <idle>-0     (-----) [001] .n.1 24575.701971: cpu_idle: state=4294967295 cpu_id=1
105958          <idle>-0     (-----) [001] d..2 24575.701977: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
105959 kgsl_worker_thr-246   (  246) [001] d..2 24575.701996: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
105960 kgsl_worker_thr-246   (  246) [001] d..3 24575.702034: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
105961 kgsl_worker_thr-246   (  246) [001] d..2 24575.702048: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
105962  kworker/u16:10-23868 (23868) [001] d..2 24575.702268: 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
105963          <idle>-0     (-----) [001] d..1 24575.702279: cpu_idle: state=0 cpu_id=1
105964          <idle>-0     (-----) [000] d.h3 24575.703473: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
105965          <idle>-0     (-----) [000] d.h4 24575.703490: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
105966          <idle>-0     (-----) [001] .n.1 24575.703497: cpu_idle: state=4294967295 cpu_id=1
105967          <idle>-0     (-----) [000] ...1 24575.703505: cpu_idle: state=4294967295 cpu_id=0
105968          <idle>-0     (-----) [001] d..2 24575.703505: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
105969          <idle>-0     (-----) [000] d..1 24575.703510: cpu_idle: state=0 cpu_id=0
105970 kgsl_worker_thr-246   (  246) [001] d..2 24575.703570: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105971          <idle>-0     (-----) [001] d..1 24575.703577: cpu_idle: state=0 cpu_id=1
105972          <idle>-0     (-----) [000] d.h5 24575.703873: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
105973          <idle>-0     (-----) [000] d.h6 24575.703888: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
105974          <idle>-0     (-----) [002] .n.1 24575.703894: cpu_idle: state=4294967295 cpu_id=2
105975          <idle>-0     (-----) [000] ...1 24575.703900: cpu_idle: state=4294967295 cpu_id=0
105976          <idle>-0     (-----) [002] d..2 24575.703901: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
105977          <idle>-0     (-----) [000] d..1 24575.703904: cpu_idle: state=0 cpu_id=0
105978 crtc_commit:111-253   (  253) [002] d..2 24575.703983: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
105979          <idle>-0     (-----) [002] d..1 24575.703991: cpu_idle: state=0 cpu_id=2
105980          <idle>-0     (-----) [000] d.h5 24575.704187: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
105981          <idle>-0     (-----) [000] d.h6 24575.704201: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
105982          <idle>-0     (-----) [003] .n.1 24575.704207: cpu_idle: state=4294967295 cpu_id=3
105983          <idle>-0     (-----) [000] d.h7 24575.704212: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
105984          <idle>-0     (-----) [003] d..2 24575.704219: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
105985          <idle>-0     (-----) [000] dnh8 24575.704226: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
105986          <idle>-0     (-----) [000] dnh9 24575.704240: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
105987          <idle>-0     (-----) [001] d.s2 24575.704247: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
105988          <idle>-0     (-----) [000] dnha 24575.704257: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
105989          <idle>-0     (-----) [000] dnh7 24575.704263: sched_waking: comm=SDM_EventThread pid=624 prio=111 target_cpu=001
105990          <idle>-0     (-----) [001] dns3 24575.704266: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
105991          <idle>-0     (-----) [001] dns3 24575.704275: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
105992          <idle>-0     (-----) [002] .n.1 24575.704278: cpu_idle: state=4294967295 cpu_id=2
105993          <idle>-0     (-----) [002] d..2 24575.704286: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
105994  crtc_event:111-254   (  254) [003] d..2 24575.704289: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105995          <idle>-0     (-----) [003] d..1 24575.704300: cpu_idle: state=0 cpu_id=3
105996          <idle>-0     (-----) [000] dnh8 24575.704315: sched_wakeup: comm=SDM_EventThread pid=624 prio=111 target_cpu=003
105997          <idle>-0     (-----) [003] .n.1 24575.704321: cpu_idle: state=4294967295 cpu_id=3
105998          <idle>-0     (-----) [001] dns4 24575.704322: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
105999          <idle>-0     (-----) [003] d..2 24575.704334: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=624 next_prio=111
106000          <idle>-0     (-----) [000] .n.1 24575.704338: cpu_idle: state=4294967295 cpu_id=0
106001          <idle>-0     (-----) [001] .n.1 24575.704339: cpu_idle: state=4294967295 cpu_id=1
106002          <idle>-0     (-----) [001] d..2 24575.704348: 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
106003          <idle>-0     (-----) [000] d..2 24575.704353: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
106004 crtc_commit:111-253   (  253) [002] d..2 24575.704355: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106005     rcu_preempt-7     (    7) [001] d..2 24575.704359: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
106006          <idle>-0     (-----) [002] d..1 24575.704367: cpu_idle: state=0 cpu_id=2
106007 SDM_EventThread-624   (  598) [003] ...1 24575.704382: tracing_mark_write: B|598|HWCCallbacks::Vsync::
106008     kworker/0:1-13012 (13012) [000] d..2 24575.704385: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106009 SDM_EventThread-624   (  598) [003] ...1 24575.704394: tracing_mark_write: B|598|HIDL::IComposerCallback::onVsync::client
106010          <idle>-0     (-----) [000] d..1 24575.704397: cpu_idle: state=0 cpu_id=0
106011 SDM_EventThread-624   (  598) [003] ...1 24575.704398: tracing_mark_write: E|598
106012          <idle>-0     (-----) [000] .n.1 24575.704401: cpu_idle: state=4294967295 cpu_id=0
106013     rcu_preempt-7     (    7) [001] d..3 24575.704402: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
106014          <idle>-0     (-----) [000] d..2 24575.704416: 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
106015 SDM_EventThread-624   (  598) [003] .... 24575.704429: binder_transaction: transaction=1671382 dest_node=1270370 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
106016     rcu_preempt-7     (    7) [001] d..2 24575.704433: 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
106017 SDM_EventThread-624   (  598) [003] d..4 24575.704440: sched_waking: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=000
106018          <idle>-0     (-----) [001] d..1 24575.704445: cpu_idle: state=0 cpu_id=1
106019         rcuop/2-29    (   29) [000] d..2 24575.704446: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106020          <idle>-0     (-----) [000] d..1 24575.704456: cpu_idle: state=0 cpu_id=0
106021 SDM_EventThread-624   (  598) [003] d..5 24575.704473: sched_wakeup: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=000
106022          <idle>-0     (-----) [000] .n.1 24575.704478: cpu_idle: state=4294967295 cpu_id=0
106023          <idle>-0     (-----) [000] d..2 24575.704489: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:23896_ next_pid=23923 next_prio=120
106024 SDM_EventThread-624   (  598) [003] ...1 24575.704500: tracing_mark_write: E|598
106025 HwBinder:23896_-23923 (23896) [000] .... 24575.704501: binder_transaction_received: transaction=1671382
106026 SDM_EventThread-624   (  598) [003] d..4 24575.704518: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
106027 SDM_EventThread-624   (  598) [003] d..5 24575.704539: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
106028          <idle>-0     (-----) [002] .n.1 24575.704544: cpu_idle: state=4294967295 cpu_id=2
106029 HwBinder:23896_-23923 (23896) [000] ...1 24575.704553: tracing_mark_write: B|23896|HIDL::IComposerCallback::onVsync::server
106030          <idle>-0     (-----) [002] d..2 24575.704554: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
106031 SDM_EventThread-624   (  598) [003] d..2 24575.704571: sched_switch: prev_comm=SDM_EventThread prev_pid=624 prev_prio=111 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
106032 crtc_commit:111-253   (  253) [002] d..2 24575.704577: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106033          <idle>-0     (-----) [002] d..1 24575.704586: cpu_idle: state=0 cpu_id=2
106034 HwBinder:23896_-23923 (23896) [000] d..1 24575.704606: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
106035 HwBinder:23896_-23923 (23896) [000] d..2 24575.704632: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
106036          <idle>-0     (-----) [001] .n.1 24575.704638: cpu_idle: state=4294967295 cpu_id=1
106037          <idle>-0     (-----) [001] d..2 24575.704648: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
106038 HwBinder:23896_-23923 (23896) [000] ...1 24575.704648: tracing_mark_write: E|23896
106039  kworker/u16:10-23868 (23868) [003] .... 24575.704692: clk_set_rate: l3_cluster0_vote_clk 480000000
106040  kworker/u16:10-23868 (23868) [003] .... 24575.704698: clk_set_rate: l3_clk 480000000
106041        DispSync-23904 (23896) [001] d..2 24575.704707: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
106042 HwBinder:23896_-23923 (23896) [000] d..2 24575.704710: sched_switch: prev_comm=HwBinder:23896_ prev_pid=23923 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106043          <idle>-0     (-----) [001] d..1 24575.704717: cpu_idle: state=0 cpu_id=1
106044          <idle>-0     (-----) [000] d..1 24575.704731: cpu_idle: state=0 cpu_id=0
106045  kworker/u16:10-23868 (23868) [003] d..2 24575.704937: 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
106046          <idle>-0     (-----) [003] d.s4 24575.704978: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
106047          <idle>-0     (-----) [003] d.s5 24575.704991: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
106048          <idle>-0     (-----) [003] dns5 24575.704996: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
106049          <idle>-0     (-----) [003] d..2 24575.705007: 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
106050  kworker/u16:10-23868 (23868) [003] d..2 24575.705032: 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
106051          <idle>-0     (-----) [003] d..1 24575.705045: cpu_idle: state=0 cpu_id=3
106052          <idle>-0     (-----) [000] ...1 24575.705889: cpu_idle: state=4294967295 cpu_id=0
106053          <idle>-0     (-----) [000] d..1 24575.705893: cpu_idle: state=0 cpu_id=0
106054          <idle>-0     (-----) [001] d.h2 24575.706142: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
106055          <idle>-0     (-----) [001] dnh3 24575.706153: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
106056          <idle>-0     (-----) [001] .n.1 24575.706160: cpu_idle: state=4294967295 cpu_id=1
106057          <idle>-0     (-----) [001] d..2 24575.706168: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
106058        DispSync-23904 (23896) [001] d..1 24575.706181: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
106059        DispSync-23904 (23896) [001] d..2 24575.706195: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
106060          <idle>-0     (-----) [003] .n.1 24575.706201: cpu_idle: state=4294967295 cpu_id=3
106061          <idle>-0     (-----) [003] d..2 24575.706211: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
106062        DispSync-23904 (23896) [001] d..2 24575.706219: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
106063          <idle>-0     (-----) [001] d..1 24575.706228: cpu_idle: state=0 cpu_id=1
106064  appEventThread-23905 (23896) [003] d..3 24575.706277: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
106065  appEventThread-23905 (23896) [003] d..4 24575.706301: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
106066          <idle>-0     (-----) [000] .n.1 24575.706306: cpu_idle: state=4294967295 cpu_id=0
106067          <idle>-0     (-----) [000] d..2 24575.706318: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
106068  appEventThread-23905 (23896) [003] d..2 24575.706339: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
106069          <idle>-0     (-----) [003] d..1 24575.706352: cpu_idle: state=0 cpu_id=3
106070 s.nexuslauncher-24827 (24827) [000] .... 24575.706668: binder_transaction: transaction=1671383 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
106071 s.nexuslauncher-24827 (24827) [000] d..4 24575.706677: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
106072 s.nexuslauncher-24827 (24827) [000] d..5 24575.706707: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
106073          <idle>-0     (-----) [001] .n.1 24575.706713: cpu_idle: state=4294967295 cpu_id=1
106074          <idle>-0     (-----) [001] d..2 24575.706723: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
106075  Binder:23896_5-25989 (23896) [001] .... 24575.706731: binder_transaction_received: transaction=1671383
106076 s.nexuslauncher-24827 (24827) [000] d..3 24575.706744: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
106077  Binder:23896_5-25989 (23896) [001] d..1 24575.706761: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
106078 s.nexuslauncher-24827 (24827) [000] d..4 24575.706767: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
106079          <idle>-0     (-----) [002] .n.1 24575.706771: cpu_idle: state=4294967295 cpu_id=2
106080  Binder:23896_5-25989 (23896) [001] d..2 24575.706777: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
106081          <idle>-0     (-----) [002] d..2 24575.706781: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
106082          <idle>-0     (-----) [003] .n.1 24575.706783: cpu_idle: state=4294967295 cpu_id=3
106083          <idle>-0     (-----) [003] d..2 24575.706791: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
106084  Binder:23896_5-25989 (23896) [001] d..2 24575.706815: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
106085          <idle>-0     (-----) [001] d..1 24575.706826: cpu_idle: state=0 cpu_id=1
106086  appEventThread-23905 (23896) [003] d..2 24575.706829: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
106087    RenderThread-25194 (24827) [002] d..2 24575.706830: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106088          <idle>-0     (-----) [003] d..1 24575.706838: cpu_idle: state=0 cpu_id=3
106089          <idle>-0     (-----) [002] d..1 24575.706841: cpu_idle: state=0 cpu_id=2
106090 s.nexuslauncher-24827 (24827) [000] d..3 24575.707133: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
106091 s.nexuslauncher-24827 (24827) [000] d..4 24575.707164: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
106092          <idle>-0     (-----) [001] .n.1 24575.707169: cpu_idle: state=4294967295 cpu_id=1
106093          <idle>-0     (-----) [001] d..2 24575.707180: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
106094 s.nexuslauncher-24827 (24827) [000] d..2 24575.707196: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106095          <idle>-0     (-----) [000] d..1 24575.707214: cpu_idle: state=0 cpu_id=0
106096    RenderThread-25194 (24827) [001] d..1 24575.707410: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
106097    RenderThread-25194 (24827) [001] d..2 24575.707430: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
106098          <idle>-0     (-----) [000] .n.1 24575.707438: cpu_idle: state=4294967295 cpu_id=0
106099          <idle>-0     (-----) [000] d..2 24575.707448: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
106100    RenderThread-25194 (24827) [001] .... 24575.707490: binder_transaction: transaction=1671384 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
106101    RenderThread-25194 (24827) [001] ...2 24575.707498: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
106102    RenderThread-25194 (24827) [001] d..4 24575.707501: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
106103    RenderThread-25194 (24827) [001] dn.5 24575.707516: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
106104    RenderThread-25194 (24827) [001] d..2 24575.707527: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
106105  Binder:23896_5-25989 (23896) [001] .... 24575.707534: binder_transaction_received: transaction=1671384
106106 s.nexuslauncher-24827 (24827) [000] d..2 24575.707549: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106107          <idle>-0     (-----) [000] d..1 24575.707602: cpu_idle: state=0 cpu_id=0
106108  Binder:23896_5-25989 (23896) [001] d..2 24575.707615: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
106109    RenderThread-25194 (24827) [001] d..2 24575.707647: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
106110          <idle>-0     (-----) [001] d..1 24575.707659: cpu_idle: state=0 cpu_id=1
106111          <idle>-0     (-----) [000] ...1 24575.708732: cpu_idle: state=4294967295 cpu_id=0
106112          <idle>-0     (-----) [000] d..1 24575.708737: cpu_idle: state=0 cpu_id=0
106113          <idle>-0     (-----) [001] d.h2 24575.710169: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
106114          <idle>-0     (-----) [001] dnh3 24575.710181: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
106115          <idle>-0     (-----) [001] .n.1 24575.710190: cpu_idle: state=4294967295 cpu_id=1
106116          <idle>-0     (-----) [001] d..2 24575.710196: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
106117        DispSync-23904 (23896) [001] d..1 24575.710212: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
106118        DispSync-23904 (23896) [001] d..2 24575.710227: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
106119          <idle>-0     (-----) [002] .n.1 24575.710232: cpu_idle: state=4294967295 cpu_id=2
106120          <idle>-0     (-----) [002] d..2 24575.710241: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
106121        DispSync-23904 (23896) [001] d..2 24575.710255: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
106122          <idle>-0     (-----) [001] d..1 24575.710264: cpu_idle: state=0 cpu_id=1
106123   sfEventThread-23906 (23896) [002] d..3 24575.710283: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
106124   sfEventThread-23906 (23896) [002] d..4 24575.710304: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
106125          <idle>-0     (-----) [001] .n.1 24575.710310: cpu_idle: state=4294967295 cpu_id=1
106126          <idle>-0     (-----) [001] d..2 24575.710317: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
106127   sfEventThread-23906 (23896) [002] d..2 24575.710335: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106128          <idle>-0     (-----) [002] d..1 24575.710347: cpu_idle: state=0 cpu_id=2
106129  surfaceflinger-23896 (23896) [001] d..1 24575.710483: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
106130  surfaceflinger-23896 (23896) [001] d..2 24575.710510: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
106131          <idle>-0     (-----) [000] .n.1 24575.710514: cpu_idle: state=4294967295 cpu_id=0
106132          <idle>-0     (-----) [000] d..2 24575.710526: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
106133  Binder:23896_5-25989 (23896) [000] d..2 24575.710559: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106134          <idle>-0     (-----) [000] d..1 24575.710570: cpu_idle: state=0 cpu_id=0
106135  surfaceflinger-23896 (23896) [001] d..1 24575.710670: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
106136  surfaceflinger-23896 (23896) [001] d..2 24575.710690: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
106137          <idle>-0     (-----) [002] .n.1 24575.710696: cpu_idle: state=4294967295 cpu_id=2
106138          <idle>-0     (-----) [002] d..2 24575.710704: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
106139   sfEventThread-23906 (23896) [002] d..2 24575.710734: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106140          <idle>-0     (-----) [002] d..1 24575.710743: cpu_idle: state=0 cpu_id=2
106141  surfaceflinger-23896 (23896) [001] d.s1 24575.710909: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
106142  surfaceflinger-23896 (23896) [001] d.s2 24575.710929: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
106143  surfaceflinger-23896 (23896) [001] ...1 24575.710937: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
106144  surfaceflinger-23896 (23896) [001] ...1 24575.710947: tracing_mark_write: E|23896
106145  surfaceflinger-23896 (23896) [001] .... 24575.710996: binder_transaction: transaction=1671385 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
106146  surfaceflinger-23896 (23896) [001] ...2 24575.711022: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
106147  surfaceflinger-23896 (23896) [001] d..4 24575.711029: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
106148  surfaceflinger-23896 (23896) [001] d..5 24575.711050: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
106149          <idle>-0     (-----) [003] .n.1 24575.711055: cpu_idle: state=4294967295 cpu_id=3
106150          <idle>-0     (-----) [003] d..2 24575.711066: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
106151  surfaceflinger-23896 (23896) [001] d..2 24575.711067: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
106152  HwBinder:598_3-633   (  598) [003] .... 24575.711077: binder_transaction_received: transaction=1671385
106153     rcu_preempt-7     (    7) [001] d..2 24575.711101: 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
106154          <idle>-0     (-----) [001] d..1 24575.711117: cpu_idle: state=0 cpu_id=1
106155  HwBinder:598_3-633   (  598) [003] ...1 24575.711117: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
106156  HwBinder:598_3-633   (  598) [003] ...1 24575.711235: tracing_mark_write: B|598|HWCSession::PresentDisplay::
106157  HwBinder:598_3-633   (  598) [003] ...1 24575.711410: tracing_mark_write: B|598|HWDeviceDRM::Commit::
106158  HwBinder:598_3-633   (  598) [003] ...1 24575.711423: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
106159  HwBinder:598_3-633   (  598) [003] d..2 24575.711985: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
106160  HwBinder:598_3-633   (  598) [003] d..3 24575.712008: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
106161          <idle>-0     (-----) [002] .n.1 24575.712013: cpu_idle: state=4294967295 cpu_id=2
106162          <idle>-0     (-----) [002] d..2 24575.712024: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
106163  HwBinder:598_3-633   (  598) [003] ...1 24575.712100: tracing_mark_write: E|598
106164  HwBinder:598_3-633   (  598) [003] ...1 24575.712106: tracing_mark_write: E|598
106165  HwBinder:598_3-633   (  598) [003] ...1 24575.712168: tracing_mark_write: E|598
106166  HwBinder:598_3-633   (  598) [003] ...1 24575.712213: tracing_mark_write: E|598
106167  HwBinder:598_3-633   (  598) [003] .... 24575.712228: binder_transaction: transaction=1671386 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
106168  HwBinder:598_3-633   (  598) [003] d..2 24575.712251: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
106169  HwBinder:598_3-633   (  598) [003] d..3 24575.712267: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
106170  HwBinder:598_3-633   (  598) [003] .... 24575.712272: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
106171          <idle>-0     (-----) [001] .n.1 24575.712274: cpu_idle: state=4294967295 cpu_id=1
106172          <idle>-0     (-----) [001] d..2 24575.712283: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
106173  surfaceflinger-23896 (23896) [001] .... 24575.712292: binder_transaction_received: transaction=1671386
106174  HwBinder:598_3-633   (  598) [003] d..2 24575.712351: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
106175          <idle>-0     (-----) [003] d..1 24575.712367: cpu_idle: state=0 cpu_id=3
106176 crtc_commit:111-253   (  253) [002] d..2 24575.712445: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
106177          <idle>-0     (-----) [002] d..1 24575.712458: cpu_idle: state=0 cpu_id=2
106178  surfaceflinger-23896 (23896) [001] d..1 24575.712526: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
106179  surfaceflinger-23896 (23896) [001] d..2 24575.712548: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
106180          <idle>-0     (-----) [000] .n.1 24575.712553: cpu_idle: state=4294967295 cpu_id=0
106181          <idle>-0     (-----) [000] d..2 24575.712564: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
106182  Binder:23896_5-25989 (23896) [000] .... 24575.712623: binder_transaction: transaction=1671387 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
106183  Binder:23896_5-25989 (23896) [000] d..2 24575.712637: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
106184  Binder:23896_5-25989 (23896) [000] d..3 24575.712657: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
106185  Binder:23896_5-25989 (23896) [000] .... 24575.712662: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
106186  surfaceflinger-23896 (23896) [001] d..1 24575.712676: sched_waking: comm=surfaceflinger pid=23930 prio=112 target_cpu=000
106187  surfaceflinger-23896 (23896) [001] d..2 24575.712713: sched_wakeup: comm=surfaceflinger pid=23930 prio=112 target_cpu=002
106188  Binder:23896_5-25989 (23896) [000] d..2 24575.712714: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
106189          <idle>-0     (-----) [002] .n.1 24575.712718: cpu_idle: state=4294967295 cpu_id=2
106190    RenderThread-25194 (24827) [000] .... 24575.712721: binder_transaction_received: transaction=1671387
106191          <idle>-0     (-----) [002] d..2 24575.712730: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23930 next_prio=112
106192  surfaceflinger-23896 (23896) [001] d..2 24575.712765: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
106193  surfaceflinger-23930 (23896) [002] ...1 24575.712766: tracing_mark_write: B|23896|HIDL::IComposerClient::setVsyncEnabled::client
106194  surfaceflinger-23930 (23896) [002] ...1 24575.712773: tracing_mark_write: E|23896
106195          <idle>-0     (-----) [001] d..1 24575.712780: cpu_idle: state=0 cpu_id=1
106196  surfaceflinger-23930 (23896) [002] .... 24575.712804: binder_transaction: transaction=1671388 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x14
106197  surfaceflinger-23930 (23896) [002] ...2 24575.712814: binder_set_priority: proc=598 thread=633 old=97 => new=112 desired=112
106198  surfaceflinger-23930 (23896) [002] d..4 24575.712823: sched_waking: comm=HwBinder:598_3 pid=633 prio=112 target_cpu=003
106199  surfaceflinger-23930 (23896) [002] d..5 24575.712844: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=112 target_cpu=002
106200  surfaceflinger-23930 (23896) [002] d..2 24575.712858: sched_switch: prev_comm=surfaceflinger prev_pid=23930 prev_prio=112 prev_state=S ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=112
106201  HwBinder:598_3-633   (  598) [002] .... 24575.712869: binder_transaction_received: transaction=1671388
106202  HwBinder:598_3-633   (  598) [002] ...1 24575.712905: tracing_mark_write: B|598|HIDL::IComposerClient::setVsyncEnabled::server
106203  HwBinder:598_3-633   (  598) [002] ...1 24575.712921: tracing_mark_write: C|598|SetVsyncState |0
106204  HwBinder:598_3-633   (  598) [002] ...1 24575.712943: tracing_mark_write: E|598
106205  HwBinder:598_3-633   (  598) [002] .... 24575.712956: binder_transaction: transaction=1671389 dest_node=0 dest_proc=23896 dest_thread=23930 reply=1 flags=0x0 code=0x0
106206  HwBinder:598_3-633   (  598) [002] d..2 24575.712961: sched_waking: comm=surfaceflinger pid=23930 prio=112 target_cpu=002
106207  HwBinder:598_3-633   (  598) [002] dn.3 24575.712975: sched_wakeup: comm=surfaceflinger pid=23930 prio=112 target_cpu=002
106208  HwBinder:598_3-633   (  598) [002] d..2 24575.712983: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=112 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23930 next_prio=112
106209  surfaceflinger-23930 (23896) [002] .... 24575.712990: binder_transaction_received: transaction=1671389
106210  surfaceflinger-23930 (23896) [002] d..2 24575.713026: sched_switch: prev_comm=surfaceflinger prev_pid=23930 prev_prio=112 prev_state=S ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=112
106211  HwBinder:598_3-633   (  598) [002] .... 24575.713031: binder_set_priority: proc=598 thread=633 old=112 => new=97 desired=97
106212  HwBinder:598_3-633   (  598) [002] d..2 24575.713087: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106213          <idle>-0     (-----) [002] d..1 24575.713103: cpu_idle: state=0 cpu_id=2
106214    RenderThread-25194 (24827) [000] d.s2 24575.714254: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
106215    RenderThread-25194 (24827) [000] d.s3 24575.714300: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
106216          <idle>-0     (-----) [001] .n.1 24575.714306: cpu_idle: state=4294967295 cpu_id=1
106217          <idle>-0     (-----) [001] d..2 24575.714320: 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
106218  kworker/u16:10-23868 (23868) [001] .... 24575.714442: clk_set_rate: l3_cluster0_vote_clk 403200000
106219  kworker/u16:10-23868 (23868) [001] .... 24575.714447: clk_set_rate: l3_clk 403200000
106220  kworker/u16:10-23868 (23868) [001] d..2 24575.714501: 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
106221          <idle>-0     (-----) [001] d..1 24575.714512: cpu_idle: state=0 cpu_id=1
106222    RenderThread-25194 (24827) [000] .... 24575.714908: binder_transaction: transaction=1671390 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
106223    RenderThread-25194 (24827) [000] ...2 24575.714923: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
106224    RenderThread-25194 (24827) [000] d..4 24575.714927: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
106225    RenderThread-25194 (24827) [000] dn.5 24575.714944: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
106226    RenderThread-25194 (24827) [000] d..2 24575.714954: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
106227  Binder:23896_5-25989 (23896) [000] .... 24575.714963: binder_transaction_received: transaction=1671390
106228  Binder:23896_5-25989 (23896) [000] .... 24575.715107: binder_transaction: transaction=1671391 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
106229  Binder:23896_5-25989 (23896) [000] .... 24575.715116: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
106230  Binder:23896_5-25989 (23896) [000] d..2 24575.715169: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
106231    RenderThread-25194 (24827) [000] .... 24575.715180: binder_transaction_received: transaction=1671391
106232    RenderThread-25194 (24827) [000] d..2 24575.715276: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106233          <idle>-0     (-----) [000] d..1 24575.715295: cpu_idle: state=0 cpu_id=0
106234          <idle>-0     (-----) [001] d.H3 24575.717665: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
106235          <idle>-0     (-----) [001] d.H3 24575.717681: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
106236          <idle>-0     (-----) [005] dnh2 24575.717687: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
106237          <idle>-0     (-----) [005] .n.1 24575.717691: cpu_idle: state=4294967295 cpu_id=5
106238          <idle>-0     (-----) [005] d..2 24575.717696: 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
106239          <idle>-0     (-----) [001] d.H4 24575.717697: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
106240          <idle>-0     (-----) [001] d.s2 24575.717704: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
106241          <idle>-0     (-----) [003] .n.1 24575.717704: cpu_idle: state=4294967295 cpu_id=3
106242         sugov:4-560   (  560) [005] d..2 24575.717709: 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
106243          <idle>-0     (-----) [005] d..1 24575.717715: cpu_idle: state=0 cpu_id=5
106244          <idle>-0     (-----) [003] d..2 24575.717716: 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
106245          <idle>-0     (-----) [001] dns3 24575.717722: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
106246          <idle>-0     (-----) [001] .n.1 24575.717739: cpu_idle: state=4294967295 cpu_id=1
106247         sugov:0-559   (  559) [003] d..2 24575.717744: 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
106248          <idle>-0     (-----) [001] d..2 24575.717749: 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
106249          <idle>-0     (-----) [003] d..1 24575.717754: cpu_idle: state=0 cpu_id=3
106250     rcu_preempt-7     (    7) [001] d..2 24575.717759: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
106251     rcu_preempt-7     (    7) [001] d..3 24575.717779: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
106252     rcu_preempt-7     (    7) [001] d..2 24575.717794: 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
106253         rcuop/0-10    (   10) [001] d..2 24575.717801: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
106254         rcuop/0-10    (   10) [001] d..3 24575.717818: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
106255         rcuop/0-10    (   10) [001] d..2 24575.717829: 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
106256         rcuop/1-21    (   21) [001] d..2 24575.717853: 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
106257          <idle>-0     (-----) [001] d..1 24575.717865: cpu_idle: state=0 cpu_id=1
106258          <idle>-0     (-----) [000] d.h5 24575.718028: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
106259          <idle>-0     (-----) [000] d.h6 24575.718049: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
106260          <idle>-0     (-----) [003] .n.1 24575.718054: cpu_idle: state=4294967295 cpu_id=3
106261          <idle>-0     (-----) [000] d.h5 24575.718054: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
106262          <idle>-0     (-----) [003] d..2 24575.718063: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
106263          <idle>-0     (-----) [000] d.h6 24575.718066: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
106264          <idle>-0     (-----) [002] .n.1 24575.718074: cpu_idle: state=4294967295 cpu_id=2
106265  crtc_event:111-254   (  254) [003] d..3 24575.718081: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
106266          <idle>-0     (-----) [000] ...1 24575.718083: cpu_idle: state=4294967295 cpu_id=0
106267          <idle>-0     (-----) [002] d..2 24575.718085: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
106268          <idle>-0     (-----) [000] d..1 24575.718089: cpu_idle: state=0 cpu_id=0
106269  crtc_event:111-254   (  254) [003] d..4 24575.718100: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
106270          <idle>-0     (-----) [001] .n.1 24575.718106: cpu_idle: state=4294967295 cpu_id=1
106271          <idle>-0     (-----) [001] d..2 24575.718115: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
106272  crtc_event:111-254   (  254) [003] d..2 24575.718122: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
106273          <idle>-0     (-----) [003] d..1 24575.718132: cpu_idle: state=0 cpu_id=3
106274 crtc_commit:111-253   (  253) [002] d..2 24575.718206: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
106275          <idle>-0     (-----) [002] d..1 24575.718216: cpu_idle: state=0 cpu_id=2
106276 kgsl_worker_thr-246   (  246) [001] d..2 24575.718278: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
106277          <idle>-0     (-----) [001] d..1 24575.718288: cpu_idle: state=0 cpu_id=1
106278          <idle>-0     (-----) [001] d.h2 24575.718368: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
106279          <idle>-0     (-----) [001] dnh3 24575.718380: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
106280          <idle>-0     (-----) [001] .n.1 24575.718388: cpu_idle: state=4294967295 cpu_id=1
106281          <idle>-0     (-----) [001] d..2 24575.718397: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
106282 kgsl_worker_thr-246   (  246) [001] d..2 24575.718412: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
106283 kgsl_worker_thr-246   (  246) [001] d..3 24575.718429: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
106284 kgsl_worker_thr-246   (  246) [001] d..2 24575.718441: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
106285  kworker/u16:10-23868 (23868) [001] d..2 24575.718634: 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
106286          <idle>-0     (-----) [001] d..1 24575.718647: cpu_idle: state=0 cpu_id=1
106287          <idle>-0     (-----) [005] ...1 24575.718726: cpu_idle: state=4294967295 cpu_id=5
106288          <idle>-0     (-----) [005] d..1 24575.718728: cpu_idle: state=0 cpu_id=5
106289          <idle>-0     (-----) [000] d.h3 24575.719893: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
106290          <idle>-0     (-----) [000] d.h4 24575.719908: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
106291          <idle>-0     (-----) [001] .n.1 24575.719915: cpu_idle: state=4294967295 cpu_id=1
106292          <idle>-0     (-----) [000] ...1 24575.719921: cpu_idle: state=4294967295 cpu_id=0
106293          <idle>-0     (-----) [001] d..2 24575.719924: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
106294          <idle>-0     (-----) [000] d..1 24575.719926: cpu_idle: state=0 cpu_id=0
106295 kgsl_worker_thr-246   (  246) [001] d..2 24575.719981: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
106296          <idle>-0     (-----) [001] d..1 24575.719991: cpu_idle: state=0 cpu_id=1
106297          <idle>-0     (-----) [000] d.h5 24575.720349: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
106298          <idle>-0     (-----) [000] d.h6 24575.720363: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
106299          <idle>-0     (-----) [002] .n.1 24575.720369: cpu_idle: state=4294967295 cpu_id=2
106300          <idle>-0     (-----) [000] ...1 24575.720374: cpu_idle: state=4294967295 cpu_id=0
106301          <idle>-0     (-----) [002] d..2 24575.720377: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
106302          <idle>-0     (-----) [000] d..1 24575.720379: cpu_idle: state=0 cpu_id=0
106303 crtc_commit:111-253   (  253) [002] d..2 24575.720447: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106304          <idle>-0     (-----) [002] d..1 24575.720455: cpu_idle: state=0 cpu_id=2
106305          <idle>-0     (-----) [000] d.h5 24575.720663: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
106306          <idle>-0     (-----) [000] d.h6 24575.720677: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
106307          <idle>-0     (-----) [003] .n.1 24575.720682: cpu_idle: state=4294967295 cpu_id=3
106308          <idle>-0     (-----) [000] d.h7 24575.720686: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
106309          <idle>-0     (-----) [003] d..2 24575.720692: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
106310          <idle>-0     (-----) [000] dnh8 24575.720698: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
106311          <idle>-0     (-----) [000] dnh9 24575.720710: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
106312  crtc_event:111-254   (  254) [003] d..2 24575.720713: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
106313          <idle>-0     (-----) [003] d..1 24575.720721: cpu_idle: state=0 cpu_id=3
106314          <idle>-0     (-----) [000] dnha 24575.720723: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
106315          <idle>-0     (-----) [000] dnh7 24575.720728: sched_waking: comm=SDM_EventThread pid=624 prio=111 target_cpu=003
106316          <idle>-0     (-----) [002] .n.1 24575.720729: cpu_idle: state=4294967295 cpu_id=2
106317          <idle>-0     (-----) [002] d..2 24575.720736: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
106318          <idle>-0     (-----) [000] dnh8 24575.720764: sched_wakeup: comm=SDM_EventThread pid=624 prio=111 target_cpu=000
106319          <idle>-0     (-----) [000] .n.1 24575.720777: cpu_idle: state=4294967295 cpu_id=0
106320 crtc_commit:111-253   (  253) [002] d..2 24575.720787: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106321          <idle>-0     (-----) [000] d..2 24575.720792: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
106322          <idle>-0     (-----) [002] d..1 24575.720793: cpu_idle: state=0 cpu_id=2
106323     kworker/0:1-13012 (13012) [000] d..2 24575.720810: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=624 next_prio=111
106324 SDM_EventThread-624   (  598) [000] d..2 24575.720865: sched_switch: prev_comm=SDM_EventThread prev_pid=624 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106325          <idle>-0     (-----) [000] d..1 24575.720879: cpu_idle: state=0 cpu_id=0
106326          <idle>-0     (-----) [002] d.s3 24575.720910: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
106327          <idle>-0     (-----) [002] d.s4 24575.720929: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
106328          <idle>-0     (-----) [003] .n.1 24575.720934: cpu_idle: state=4294967295 cpu_id=3
106329          <idle>-0     (-----) [003] d..2 24575.720944: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
106330          <idle>-0     (-----) [002] ...1 24575.720951: cpu_idle: state=4294967295 cpu_id=2
106331          <idle>-0     (-----) [002] d..1 24575.720957: cpu_idle: state=0 cpu_id=2
106332  crtc_event:111-254   (  254) [003] d..2 24575.720971: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
106333          <idle>-0     (-----) [003] d..1 24575.720980: cpu_idle: state=0 cpu_id=3
106334          <idle>-0     (-----) [001] d.h2 24575.722631: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
106335          <idle>-0     (-----) [001] dnh3 24575.722646: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
106336          <idle>-0     (-----) [001] .n.1 24575.722654: cpu_idle: state=4294967295 cpu_id=1
106337          <idle>-0     (-----) [001] d..2 24575.722664: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
106338        DispSync-23904 (23896) [001] d..1 24575.722683: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
106339        DispSync-23904 (23896) [001] d..2 24575.722699: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
106340          <idle>-0     (-----) [003] .n.1 24575.722703: cpu_idle: state=4294967295 cpu_id=3
106341          <idle>-0     (-----) [003] d..2 24575.722712: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
106342        DispSync-23904 (23896) [001] d..2 24575.722727: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
106343          <idle>-0     (-----) [001] d..1 24575.722736: cpu_idle: state=0 cpu_id=1
106344  appEventThread-23905 (23896) [003] d..3 24575.722768: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
106345  appEventThread-23905 (23896) [003] d..4 24575.722795: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
106346          <idle>-0     (-----) [000] .n.1 24575.722801: cpu_idle: state=4294967295 cpu_id=0
106347          <idle>-0     (-----) [000] d..2 24575.722813: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
106348  appEventThread-23905 (23896) [003] d..2 24575.722834: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
106349          <idle>-0     (-----) [003] d..1 24575.722847: cpu_idle: state=0 cpu_id=3
106350 s.nexuslauncher-24827 (24827) [000] .... 24575.723145: binder_transaction: transaction=1671392 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
106351 s.nexuslauncher-24827 (24827) [000] d..4 24575.723155: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
106352 s.nexuslauncher-24827 (24827) [000] d..5 24575.723188: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
106353          <idle>-0     (-----) [001] .n.1 24575.723193: cpu_idle: state=4294967295 cpu_id=1
106354          <idle>-0     (-----) [001] d..2 24575.723202: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
106355  Binder:23896_5-25989 (23896) [001] .... 24575.723210: binder_transaction_received: transaction=1671392
106356 s.nexuslauncher-24827 (24827) [000] d..3 24575.723223: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
106357  Binder:23896_5-25989 (23896) [001] d..1 24575.723240: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
106358 s.nexuslauncher-24827 (24827) [000] d..4 24575.723249: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
106359          <idle>-0     (-----) [002] .n.1 24575.723254: cpu_idle: state=4294967295 cpu_id=2
106360  Binder:23896_5-25989 (23896) [001] d..2 24575.723257: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
106361          <idle>-0     (-----) [003] .n.1 24575.723262: cpu_idle: state=4294967295 cpu_id=3
106362          <idle>-0     (-----) [002] d..2 24575.723266: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
106363          <idle>-0     (-----) [003] d..2 24575.723271: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
106364  Binder:23896_5-25989 (23896) [001] d..2 24575.723299: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
106365  appEventThread-23905 (23896) [003] d..2 24575.723307: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
106366          <idle>-0     (-----) [001] d..1 24575.723308: cpu_idle: state=0 cpu_id=1
106367          <idle>-0     (-----) [003] d..1 24575.723317: cpu_idle: state=0 cpu_id=3
106368    RenderThread-25194 (24827) [002] d..2 24575.723322: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106369          <idle>-0     (-----) [002] d..1 24575.723334: cpu_idle: state=0 cpu_id=2
106370 s.nexuslauncher-24827 (24827) [000] d..3 24575.723594: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
106371 s.nexuslauncher-24827 (24827) [000] d..4 24575.723626: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
106372          <idle>-0     (-----) [001] .n.1 24575.723631: cpu_idle: state=4294967295 cpu_id=1
106373          <idle>-0     (-----) [001] d..2 24575.723641: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
106374 s.nexuslauncher-24827 (24827) [000] d..2 24575.723661: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106375          <idle>-0     (-----) [000] d..1 24575.723679: cpu_idle: state=0 cpu_id=0
106376    RenderThread-25194 (24827) [001] d..1 24575.723850: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
106377    RenderThread-25194 (24827) [001] d..2 24575.723871: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
106378          <idle>-0     (-----) [000] .n.1 24575.723878: cpu_idle: state=4294967295 cpu_id=0
106379          <idle>-0     (-----) [000] d..2 24575.723890: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
106380    RenderThread-25194 (24827) [001] .... 24575.723930: binder_transaction: transaction=1671393 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
106381    RenderThread-25194 (24827) [001] ...2 24575.723939: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
106382    RenderThread-25194 (24827) [001] d..4 24575.723943: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
106383    RenderThread-25194 (24827) [001] dn.5 24575.723957: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
106384    RenderThread-25194 (24827) [001] d..2 24575.723966: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
106385  Binder:23896_5-25989 (23896) [001] .... 24575.723974: binder_transaction_received: transaction=1671393
106386 s.nexuslauncher-24827 (24827) [000] d..2 24575.723997: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106387          <idle>-0     (-----) [000] d..1 24575.724010: cpu_idle: state=0 cpu_id=0
106388  Binder:23896_5-25989 (23896) [001] d..2 24575.724015: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
106389    RenderThread-25194 (24827) [001] d..2 24575.724041: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
106390          <idle>-0     (-----) [001] d..1 24575.724054: cpu_idle: state=0 cpu_id=1
106391          <idle>-0     (-----) [001] d.s2 24575.724244: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
106392          <idle>-0     (-----) [001] dns3 24575.724261: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
106393          <idle>-0     (-----) [001] dns3 24575.724266: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
106394          <idle>-0     (-----) [001] dns4 24575.724278: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
106395          <idle>-0     (-----) [001] .n.1 24575.724292: cpu_idle: state=4294967295 cpu_id=1
106396          <idle>-0     (-----) [001] d..2 24575.724301: 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
106397     rcu_preempt-7     (    7) [001] d..2 24575.724314: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
106398     rcu_preempt-7     (    7) [001] d..3 24575.724349: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
106399     rcu_preempt-7     (    7) [001] d..2 24575.724364: 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
106400         rcuop/2-29    (   29) [001] d..2 24575.724372: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
106401         rcuop/2-29    (   29) [001] d..3 24575.724394: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
106402         rcuop/2-29    (   29) [001] d..2 24575.724407: 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
106403         rcuop/3-37    (   37) [001] d..2 24575.724436: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
106404  kworker/u16:10-23868 (23868) [001] .... 24575.724465: clk_set_rate: l3_cluster0_vote_clk 300000000
106405  kworker/u16:10-23868 (23868) [001] .... 24575.724472: clk_set_rate: l3_clk 300000000
106406  kworker/u16:10-23868 (23868) [001] d..2 24575.724763: 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
106407          <idle>-0     (-----) [001] d..1 24575.724780: cpu_idle: state=0 cpu_id=1
106408          <idle>-0     (-----) [003] d.s3 24575.724799: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
106409          <idle>-0     (-----) [003] d.s4 24575.724835: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
106410          <idle>-0     (-----) [003] dns4 24575.724842: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
106411          <idle>-0     (-----) [003] .n.1 24575.724850: cpu_idle: state=4294967295 cpu_id=3
106412          <idle>-0     (-----) [003] d..2 24575.724864: 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
106413  kworker/u16:10-23868 (23868) [003] d..2 24575.724906: 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
106414          <idle>-0     (-----) [003] d..1 24575.724918: cpu_idle: state=0 cpu_id=3
106415          <idle>-0     (-----) [001] d.h2 24575.726636: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
106416          <idle>-0     (-----) [001] dnh3 24575.726652: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
106417          <idle>-0     (-----) [001] .n.1 24575.726661: cpu_idle: state=4294967295 cpu_id=1
106418          <idle>-0     (-----) [001] d..2 24575.726672: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
106419        DispSync-23904 (23896) [001] d..1 24575.726694: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
106420        DispSync-23904 (23896) [001] d..2 24575.726711: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
106421          <idle>-0     (-----) [002] .n.1 24575.726717: cpu_idle: state=4294967295 cpu_id=2
106422          <idle>-0     (-----) [002] d..2 24575.726728: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
106423        DispSync-23904 (23896) [001] d..2 24575.726746: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
106424          <idle>-0     (-----) [001] d..1 24575.726759: cpu_idle: state=0 cpu_id=1
106425   sfEventThread-23906 (23896) [002] d..3 24575.726780: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
106426   sfEventThread-23906 (23896) [002] d..4 24575.726805: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
106427          <idle>-0     (-----) [001] .n.1 24575.726812: cpu_idle: state=4294967295 cpu_id=1
106428          <idle>-0     (-----) [001] d..2 24575.726822: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
106429   sfEventThread-23906 (23896) [002] d..2 24575.726842: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106430          <idle>-0     (-----) [002] d..1 24575.726857: cpu_idle: state=0 cpu_id=2
106431  surfaceflinger-23896 (23896) [001] d..1 24575.727011: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
106432  surfaceflinger-23896 (23896) [001] d..2 24575.727045: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
106433          <idle>-0     (-----) [000] .n.1 24575.727050: cpu_idle: state=4294967295 cpu_id=0
106434          <idle>-0     (-----) [000] d..2 24575.727066: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
106435  Binder:23896_5-25989 (23896) [000] d..2 24575.727106: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106436          <idle>-0     (-----) [000] d..1 24575.727118: cpu_idle: state=0 cpu_id=0
106437  surfaceflinger-23896 (23896) [001] d..1 24575.727214: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
106438  surfaceflinger-23896 (23896) [001] d..2 24575.727237: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
106439          <idle>-0     (-----) [002] .n.1 24575.727243: cpu_idle: state=4294967295 cpu_id=2
106440          <idle>-0     (-----) [002] d..2 24575.727253: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
106441   sfEventThread-23906 (23896) [002] d..2 24575.727286: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106442          <idle>-0     (-----) [002] d..1 24575.727296: cpu_idle: state=0 cpu_id=2
106443  surfaceflinger-23896 (23896) [001] ...1 24575.727430: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
106444  surfaceflinger-23896 (23896) [001] ...1 24575.727438: tracing_mark_write: E|23896
106445  surfaceflinger-23896 (23896) [001] .... 24575.727493: binder_transaction: transaction=1671394 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
106446  surfaceflinger-23896 (23896) [001] ...2 24575.727520: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
106447  surfaceflinger-23896 (23896) [001] d..4 24575.727527: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
106448  surfaceflinger-23896 (23896) [001] d..5 24575.727551: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
106449          <idle>-0     (-----) [002] .n.1 24575.727556: cpu_idle: state=4294967295 cpu_id=2
106450          <idle>-0     (-----) [002] d..2 24575.727572: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
106451  surfaceflinger-23896 (23896) [001] d.s5 24575.727597: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
106452  surfaceflinger-23896 (23896) [001] d.s6 24575.727618: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
106453  HwBinder:598_3-633   (  598) [002] .... 24575.727635: binder_transaction_received: transaction=1671394
106454  surfaceflinger-23896 (23896) [001] d..2 24575.727646: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
106455  HwBinder:598_3-633   (  598) [002] ...1 24575.727679: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
106456     kworker/1:1-13091 (13091) [001] d..2 24575.727701: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
106457          <idle>-0     (-----) [001] d..1 24575.727714: cpu_idle: state=0 cpu_id=1
106458  HwBinder:598_3-633   (  598) [002] ...1 24575.727798: tracing_mark_write: B|598|HWCSession::PresentDisplay::
106459  HwBinder:598_3-633   (  598) [002] ...1 24575.727973: tracing_mark_write: B|598|HWDeviceDRM::Commit::
106460  HwBinder:598_3-633   (  598) [002] ...1 24575.727986: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
106461  HwBinder:598_3-633   (  598) [002] d..2 24575.728576: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
106462  HwBinder:598_3-633   (  598) [002] d..3 24575.728613: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
106463          <idle>-0     (-----) [003] .n.1 24575.728618: cpu_idle: state=4294967295 cpu_id=3
106464          <idle>-0     (-----) [003] d..2 24575.728629: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
106465  HwBinder:598_3-633   (  598) [002] ...1 24575.728726: tracing_mark_write: E|598
106466  HwBinder:598_3-633   (  598) [002] ...1 24575.728732: tracing_mark_write: E|598
106467  HwBinder:598_3-633   (  598) [002] ...1 24575.728800: tracing_mark_write: E|598
106468  HwBinder:598_3-633   (  598) [002] ...1 24575.728849: tracing_mark_write: E|598
106469  HwBinder:598_3-633   (  598) [002] .... 24575.728865: binder_transaction: transaction=1671395 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
106470  HwBinder:598_3-633   (  598) [002] d..2 24575.728891: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
106471  HwBinder:598_3-633   (  598) [002] d..3 24575.728912: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
106472  HwBinder:598_3-633   (  598) [002] .... 24575.728918: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
106473          <idle>-0     (-----) [001] .n.1 24575.728919: cpu_idle: state=4294967295 cpu_id=1
106474          <idle>-0     (-----) [001] d..2 24575.728926: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
106475  surfaceflinger-23896 (23896) [001] .... 24575.728937: binder_transaction_received: transaction=1671395
106476  HwBinder:598_3-633   (  598) [002] d..2 24575.729012: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106477          <idle>-0     (-----) [002] d..1 24575.729033: cpu_idle: state=0 cpu_id=2
106478 crtc_commit:111-253   (  253) [003] d..2 24575.729109: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
106479          <idle>-0     (-----) [003] d..1 24575.729126: cpu_idle: state=0 cpu_id=3
106480  surfaceflinger-23896 (23896) [001] d..1 24575.729196: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
106481  surfaceflinger-23896 (23896) [001] d..2 24575.729223: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
106482          <idle>-0     (-----) [000] .n.1 24575.729229: cpu_idle: state=4294967295 cpu_id=0
106483          <idle>-0     (-----) [000] d..2 24575.729241: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
106484  Binder:23896_5-25989 (23896) [000] .... 24575.729302: binder_transaction: transaction=1671396 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
106485  Binder:23896_5-25989 (23896) [000] d..2 24575.729318: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
106486  Binder:23896_5-25989 (23896) [000] d..3 24575.729342: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
106487  Binder:23896_5-25989 (23896) [000] .... 24575.729347: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
106488  Binder:23896_5-25989 (23896) [000] d..2 24575.729407: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
106489  surfaceflinger-23896 (23896) [001] d..2 24575.729411: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
106490    RenderThread-25194 (24827) [000] .... 24575.729416: binder_transaction_received: transaction=1671396
106491          <idle>-0     (-----) [001] d..1 24575.729427: cpu_idle: state=0 cpu_id=1
106492          <idle>-0     (-----) [001] d.s2 24575.730915: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
106493          <idle>-0     (-----) [001] dns3 24575.730935: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
106494          <idle>-0     (-----) [001] dns3 24575.730941: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
106495          <idle>-0     (-----) [001] dns4 24575.730972: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
106496          <idle>-0     (-----) [001] .n.1 24575.730990: cpu_idle: state=4294967295 cpu_id=1
106497          <idle>-0     (-----) [001] d..2 24575.731000: 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
106498     rcu_preempt-7     (    7) [001] d..2 24575.731019: 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
106499  kworker/u16:10-23868 (23868) [001] d..2 24575.731208: 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
106500          <idle>-0     (-----) [001] d..1 24575.731223: cpu_idle: state=0 cpu_id=1
106501          <idle>-0     (-----) [003] d.s3 24575.731235: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
106502          <idle>-0     (-----) [003] d.s4 24575.731250: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
106503          <idle>-0     (-----) [003] d.s4 24575.731260: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
106504          <idle>-0     (-----) [001] .n.1 24575.731266: cpu_idle: state=4294967295 cpu_id=1
106505          <idle>-0     (-----) [003] ...1 24575.731269: cpu_idle: state=4294967295 cpu_id=3
106506          <idle>-0     (-----) [003] d..1 24575.731275: cpu_idle: state=0 cpu_id=3
106507          <idle>-0     (-----) [001] d..2 24575.731278: 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
106508  kworker/u16:10-23868 (23868) [001] d..2 24575.731306: 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
106509          <idle>-0     (-----) [001] d..1 24575.731314: cpu_idle: state=0 cpu_id=1
106510    RenderThread-25194 (24827) [000] .... 24575.731666: binder_transaction: transaction=1671397 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
106511    RenderThread-25194 (24827) [000] ...2 24575.731683: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
106512    RenderThread-25194 (24827) [000] d..4 24575.731687: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
106513    RenderThread-25194 (24827) [000] dn.5 24575.731708: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
106514    RenderThread-25194 (24827) [000] d..2 24575.731718: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
106515  Binder:23896_5-25989 (23896) [000] .... 24575.731728: binder_transaction_received: transaction=1671397
106516  Binder:23896_5-25989 (23896) [000] .... 24575.731879: binder_transaction: transaction=1671398 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
106517  Binder:23896_5-25989 (23896) [000] .... 24575.731889: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
106518  Binder:23896_5-25989 (23896) [000] d..2 24575.731947: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
106519    RenderThread-25194 (24827) [000] .... 24575.731957: binder_transaction_received: transaction=1671398
106520    RenderThread-25194 (24827) [000] d..2 24575.732066: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106521          <idle>-0     (-----) [000] d..1 24575.732089: cpu_idle: state=0 cpu_id=0
106522          <idle>-0     (-----) [001] d.h3 24575.733281: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
106523          <idle>-0     (-----) [001] dnh4 24575.733299: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
106524          <idle>-0     (-----) [001] .n.1 24575.733309: cpu_idle: state=4294967295 cpu_id=1
106525          <idle>-0     (-----) [001] d..2 24575.733318: 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
106526  kworker/u16:10-23868 (23868) [001] d..1 24575.733354: clk_disable: gcc_ufs_phy_phy_aux_hw_ctl_clk
106527  kworker/u16:10-23868 (23868) [001] d..1 24575.733376: clk_disable: gcc_ufs_phy_phy_aux_clk
106528  kworker/u16:10-23868 (23868) [001] d..1 24575.733389: clk_disable: gcc_ufs_phy_phy_aux_clk_src
106529  kworker/u16:10-23868 (23868) [001] d..1 24575.733404: clk_disable: gcc_ufs_mem_clkref_clk
106530  kworker/u16:10-23868 (23868) [001] d..1 24575.733421: clk_disable: gcc_ufs_phy_axi_hw_ctl_clk
106531  kworker/u16:10-23868 (23868) [001] d..1 24575.733427: clk_disable: gcc_ufs_phy_axi_clk
106532  kworker/u16:10-23868 (23868) [001] d..1 24575.733438: clk_disable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
106533  kworker/u16:10-23868 (23868) [001] d..1 24575.733444: clk_disable: gcc_aggre_ufs_phy_axi_clk
106534  kworker/u16:10-23868 (23868) [001] d..1 24575.733452: clk_disable: gcc_ufs_phy_axi_clk_src
106535  kworker/u16:10-23868 (23868) [001] d..1 24575.733462: clk_disable: gcc_ufs_phy_ahb_clk
106536  kworker/u16:10-23868 (23868) [001] d..1 24575.733472: clk_disable: gcc_ufs_phy_unipro_core_hw_ctl_clk
106537  kworker/u16:10-23868 (23868) [001] d..1 24575.733478: clk_disable: gcc_ufs_phy_unipro_core_clk
106538  kworker/u16:10-23868 (23868) [001] d..1 24575.733486: clk_disable: gcc_ufs_phy_unipro_core_clk_src
106539  kworker/u16:10-23868 (23868) [001] d..1 24575.733495: clk_disable: gcc_ufs_phy_ice_core_hw_ctl_clk
106540  kworker/u16:10-23868 (23868) [001] d..1 24575.733500: clk_disable: gcc_ufs_phy_ice_core_clk
106541  kworker/u16:10-23868 (23868) [001] d..1 24575.733508: clk_disable: gcc_ufs_phy_ice_core_clk_src
106542          <idle>-0     (-----) [003] ...1 24575.733644: cpu_idle: state=4294967295 cpu_id=3
106543          <idle>-0     (-----) [003] d..1 24575.733649: cpu_idle: state=0 cpu_id=3
106544  kworker/u16:10-23868 (23868) [001] d..2 24575.733887: 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
106545          <idle>-0     (-----) [001] d..1 24575.733904: cpu_idle: state=0 cpu_id=1
106546          <idle>-0     (-----) [003] d.s3 24575.733926: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
106547          <idle>-0     (-----) [003] d.s4 24575.733936: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
106548          <idle>-0     (-----) [003] d.s4 24575.733944: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
106549          <idle>-0     (-----) [001] .n.1 24575.733951: cpu_idle: state=4294967295 cpu_id=1
106550          <idle>-0     (-----) [003] ...1 24575.733951: cpu_idle: state=4294967295 cpu_id=3
106551          <idle>-0     (-----) [003] d..1 24575.733956: cpu_idle: state=0 cpu_id=3
106552          <idle>-0     (-----) [001] d..2 24575.733963: 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
106553  kworker/u16:10-23868 (23868) [001] d..2 24575.734001: 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
106554          <idle>-0     (-----) [001] d..1 24575.734010: cpu_idle: state=0 cpu_id=1
106555          <idle>-0     (-----) [000] d.h5 24575.734560: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
106556          <idle>-0     (-----) [000] d.h6 24575.734585: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
106557          <idle>-0     (-----) [003] .n.1 24575.734589: cpu_idle: state=4294967295 cpu_id=3
106558          <idle>-0     (-----) [000] d.h5 24575.734590: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
106559          <idle>-0     (-----) [003] d..2 24575.734604: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
106560          <idle>-0     (-----) [000] dnh6 24575.734620: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
106561  crtc_event:111-254   (  254) [003] d..3 24575.734626: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
106562          <idle>-0     (-----) [000] .n.1 24575.734637: cpu_idle: state=4294967295 cpu_id=0
106563  crtc_event:111-254   (  254) [003] d..4 24575.734645: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
106564          <idle>-0     (-----) [001] .n.1 24575.734651: cpu_idle: state=4294967295 cpu_id=1
106565          <idle>-0     (-----) [000] d..2 24575.734651: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
106566          <idle>-0     (-----) [001] d..2 24575.734663: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
106567  crtc_event:111-254   (  254) [003] d..2 24575.734679: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
106568          <idle>-0     (-----) [003] d..2 24575.734684: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
106569          <idle>-0     (-----) [003] dn.3 24575.734699: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
106570          <idle>-0     (-----) [003] d..2 24575.734708: 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
106571     ksoftirqd/3-34    (   34) [003] d.s2 24575.734720: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
106572     ksoftirqd/3-34    (   34) [003] d.s3 24575.734737: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
106573     ksoftirqd/3-34    (   34) [003] d..2 24575.734763: 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
106574          <idle>-0     (-----) [003] d..1 24575.734776: cpu_idle: state=0 cpu_id=3
106575 crtc_commit:111-253   (  253) [000] d..2 24575.734840: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
106576          <idle>-0     (-----) [000] d..1 24575.734851: cpu_idle: state=0 cpu_id=0
106577 kgsl_worker_thr-246   (  246) [001] d..2 24575.734874: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
106578  kworker/u16:10-23868 (23868) [001] d.h2 24575.734974: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
106579  kworker/u16:10-23868 (23868) [001] d.h3 24575.735005: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
106580          <idle>-0     (-----) [003] .n.1 24575.735011: cpu_idle: state=4294967295 cpu_id=3
106581          <idle>-0     (-----) [003] d..2 24575.735022: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
106582 kgsl_worker_thr-246   (  246) [003] d..2 24575.735051: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
106583 kgsl_worker_thr-246   (  246) [003] d..3 24575.735079: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
106584 kgsl_worker_thr-246   (  246) [003] d..2 24575.735096: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
106585  kworker/u16:10-23868 (23868) [001] d..2 24575.735120: 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
106586          <idle>-0     (-----) [001] d..1 24575.735132: cpu_idle: state=0 cpu_id=1
106587  kworker/u16:16-25995 (25995) [003] d..2 24575.735556: 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
106588          <idle>-0     (-----) [003] d.s3 24575.735615: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
106589          <idle>-0     (-----) [003] d.s4 24575.735649: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
106590          <idle>-0     (-----) [003] dns4 24575.735655: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
106591          <idle>-0     (-----) [003] d..2 24575.735673: 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
106592  kworker/u16:10-23868 (23868) [003] .... 24575.735764: clk_set_rate: l3_cluster0_vote_clk 403200000
106593  kworker/u16:10-23868 (23868) [003] .... 24575.735773: clk_set_rate: l3_clk 403200000
106594  kworker/u16:10-23868 (23868) [003] d..2 24575.735824: 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
106595          <idle>-0     (-----) [003] d..1 24575.735841: cpu_idle: state=0 cpu_id=3
106596          <idle>-0     (-----) [000] d.h3 24575.736579: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
106597          <idle>-0     (-----) [000] d.h4 24575.736596: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
106598          <idle>-0     (-----) [003] .n.1 24575.736602: cpu_idle: state=4294967295 cpu_id=3
106599          <idle>-0     (-----) [000] ...1 24575.736610: cpu_idle: state=4294967295 cpu_id=0
106600          <idle>-0     (-----) [003] d..2 24575.736612: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
106601          <idle>-0     (-----) [000] d..1 24575.736614: cpu_idle: state=0 cpu_id=0
106602 kgsl_worker_thr-246   (  246) [003] d..2 24575.736681: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
106603          <idle>-0     (-----) [003] d..1 24575.736695: cpu_idle: state=0 cpu_id=3
106604          <idle>-0     (-----) [000] d.h5 24575.736866: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
106605          <idle>-0     (-----) [000] dnh6 24575.736876: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
106606          <idle>-0     (-----) [000] .n.1 24575.736886: cpu_idle: state=4294967295 cpu_id=0
106607          <idle>-0     (-----) [000] d..2 24575.736893: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
106608 crtc_commit:111-253   (  253) [000] d..2 24575.736974: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106609          <idle>-0     (-----) [000] d..1 24575.736983: cpu_idle: state=0 cpu_id=0
106610          <idle>-0     (-----) [000] d.h5 24575.737179: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
106611          <idle>-0     (-----) [000] d.h6 24575.737195: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
106612          <idle>-0     (-----) [003] .n.1 24575.737201: cpu_idle: state=4294967295 cpu_id=3
106613          <idle>-0     (-----) [003] d..2 24575.737210: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
106614          <idle>-0     (-----) [000] ...1 24575.737214: cpu_idle: state=4294967295 cpu_id=0
106615          <idle>-0     (-----) [000] d..1 24575.737218: cpu_idle: state=0 cpu_id=0
106616  crtc_event:111-254   (  254) [003] d..2 24575.737235: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
106617          <idle>-0     (-----) [003] d..1 24575.737245: cpu_idle: state=0 cpu_id=3
106618          <idle>-0     (-----) [001] d.s2 24575.737575: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
106619          <idle>-0     (-----) [001] dns3 24575.737644: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
106620          <idle>-0     (-----) [001] .n.1 24575.737654: cpu_idle: state=4294967295 cpu_id=1
106621          <idle>-0     (-----) [001] d..2 24575.737662: 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
106622     rcu_preempt-7     (    7) [001] d..2 24575.737672: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
106623          <idle>-0     (-----) [000] d.H3 24575.737673: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
106624          <idle>-0     (-----) [000] d.H3 24575.737688: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
106625     rcu_preempt-7     (    7) [001] d..3 24575.737690: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
106626          <idle>-0     (-----) [005] dnh2 24575.737694: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
106627          <idle>-0     (-----) [005] .n.1 24575.737697: cpu_idle: state=4294967295 cpu_id=5
106628     rcu_preempt-7     (    7) [001] d..2 24575.737700: 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
106629          <idle>-0     (-----) [000] d.H4 24575.737702: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
106630          <idle>-0     (-----) [005] d..2 24575.737702: 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
106631         rcuop/0-10    (   10) [001] d..2 24575.737706: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
106632          <idle>-0     (-----) [003] .n.1 24575.737708: cpu_idle: state=4294967295 cpu_id=3
106633          <idle>-0     (-----) [000] d.s3 24575.737710: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
106634         sugov:4-560   (  560) [005] d..2 24575.737719: 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
106635          <idle>-0     (-----) [003] d..2 24575.737721: 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
106636          <idle>-0     (-----) [005] d..1 24575.737724: cpu_idle: state=0 cpu_id=5
106637          <idle>-0     (-----) [000] dns4 24575.737735: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
106638         rcuop/0-10    (   10) [001] d..3 24575.737743: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
106639          <idle>-0     (-----) [000] dns3 24575.737743: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
106640         rcuop/0-10    (   10) [001] d..2 24575.737748: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
106641          <idle>-0     (-----) [000] dns4 24575.737757: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
106642         sugov:0-559   (  559) [003] .... 24575.737762: clk_set_rate: pwrcl_clk 902400000
106643         sugov:0-559   (  559) [003] .... 24575.737774: clk_set_rate: cpu3_pwrcl_clk 1056000000
106644         rcuop/0-10    (   10) [001] d..3 24575.737774: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
106645          <idle>-0     (-----) [000] .n.1 24575.737782: cpu_idle: state=4294967295 cpu_id=0
106646         sugov:0-559   (  559) [003] .... 24575.737785: clk_set_rate: cpu2_pwrcl_clk 1056000000
106647          <idle>-0     (-----) [000] d..2 24575.737792: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
106648         sugov:0-559   (  559) [003] .... 24575.737794: clk_set_rate: cpu1_pwrcl_clk 1056000000
106649         sugov:0-559   (  559) [003] .... 24575.737803: clk_set_rate: cpu0_pwrcl_clk 902400000
106650         rcuop/0-10    (   10) [001] d..2 24575.737809: 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
106651  crtc_event:111-254   (  254) [000] d..2 24575.737811: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
106652         rcuop/1-21    (   21) [001] d..2 24575.737850: 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
106653          <idle>-0     (-----) [001] d..1 24575.737870: cpu_idle: state=0 cpu_id=1
106654     kworker/0:1-13012 (13012) [000] d..2 24575.737909: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106655         sugov:0-559   (  559) [003] .... 24575.737919: cpu_frequency: state=902400 cpu_id=0
106656          <idle>-0     (-----) [000] d..1 24575.737924: cpu_idle: state=0 cpu_id=0
106657         sugov:0-559   (  559) [003] .... 24575.737952: cpu_frequency: state=902400 cpu_id=1
106658         sugov:0-559   (  559) [003] .... 24575.737956: cpu_frequency: state=902400 cpu_id=2
106659         sugov:0-559   (  559) [003] .... 24575.737960: cpu_frequency: state=902400 cpu_id=3
106660         sugov:0-559   (  559) [003] d..2 24575.737980: 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
106661     rcu_preempt-7     (    7) [003] d..2 24575.738008: 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
106662          <idle>-0     (-----) [003] d..1 24575.738021: cpu_idle: state=0 cpu_id=3
106663          <idle>-0     (-----) [005] ...1 24575.738735: cpu_idle: state=4294967295 cpu_id=5
106664          <idle>-0     (-----) [005] d..1 24575.738738: cpu_idle: state=0 cpu_id=5
106665          <idle>-0     (-----) [001] d.h2 24575.739099: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
106666          <idle>-0     (-----) [001] dnh3 24575.739114: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
106667          <idle>-0     (-----) [001] .n.1 24575.739123: cpu_idle: state=4294967295 cpu_id=1
106668          <idle>-0     (-----) [001] d..2 24575.739136: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
106669        DispSync-23904 (23896) [001] d..1 24575.739157: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
106670        DispSync-23904 (23896) [001] d..2 24575.739174: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
106671          <idle>-0     (-----) [003] .n.1 24575.739180: cpu_idle: state=4294967295 cpu_id=3
106672          <idle>-0     (-----) [003] d..2 24575.739190: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
106673        DispSync-23904 (23896) [001] d..2 24575.739205: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
106674          <idle>-0     (-----) [001] d..1 24575.739217: cpu_idle: state=0 cpu_id=1
106675  appEventThread-23905 (23896) [003] d..3 24575.739251: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
106676  appEventThread-23905 (23896) [003] d..4 24575.739276: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
106677          <idle>-0     (-----) [000] .n.1 24575.739281: cpu_idle: state=4294967295 cpu_id=0
106678          <idle>-0     (-----) [000] d..2 24575.739294: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
106679  appEventThread-23905 (23896) [003] d..2 24575.739316: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
106680          <idle>-0     (-----) [003] d..1 24575.739330: cpu_idle: state=0 cpu_id=3
106681 s.nexuslauncher-24827 (24827) [000] .... 24575.739671: binder_transaction: transaction=1671399 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
106682 s.nexuslauncher-24827 (24827) [000] d..4 24575.739681: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
106683 s.nexuslauncher-24827 (24827) [000] d..5 24575.739718: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
106684          <idle>-0     (-----) [001] .n.1 24575.739723: cpu_idle: state=4294967295 cpu_id=1
106685          <idle>-0     (-----) [001] d..2 24575.739735: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
106686  Binder:23896_5-25989 (23896) [001] .... 24575.739743: binder_transaction_received: transaction=1671399
106687 s.nexuslauncher-24827 (24827) [000] d..3 24575.739759: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
106688  Binder:23896_5-25989 (23896) [001] d..1 24575.739777: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
106689 s.nexuslauncher-24827 (24827) [000] d..4 24575.739787: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
106690          <idle>-0     (-----) [002] .n.1 24575.739795: cpu_idle: state=4294967295 cpu_id=2
106691  Binder:23896_5-25989 (23896) [001] d..2 24575.739796: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
106692          <idle>-0     (-----) [003] .n.1 24575.739802: cpu_idle: state=4294967295 cpu_id=3
106693          <idle>-0     (-----) [002] d..2 24575.739810: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
106694          <idle>-0     (-----) [003] d..2 24575.739812: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
106695  Binder:23896_5-25989 (23896) [001] d..2 24575.739839: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
106696  appEventThread-23905 (23896) [003] d..2 24575.739852: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
106697          <idle>-0     (-----) [001] d..1 24575.739852: cpu_idle: state=0 cpu_id=1
106698          <idle>-0     (-----) [003] d..1 24575.739861: cpu_idle: state=0 cpu_id=3
106699    RenderThread-25194 (24827) [002] d..2 24575.739875: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106700          <idle>-0     (-----) [002] d..1 24575.739889: cpu_idle: state=0 cpu_id=2
106701 s.nexuslauncher-24827 (24827) [000] d..3 24575.740196: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
106702 s.nexuslauncher-24827 (24827) [000] d..4 24575.740232: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
106703          <idle>-0     (-----) [001] .n.1 24575.740238: cpu_idle: state=4294967295 cpu_id=1
106704          <idle>-0     (-----) [001] d..2 24575.740250: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
106705 s.nexuslauncher-24827 (24827) [000] d..2 24575.740270: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106706          <idle>-0     (-----) [000] d..1 24575.740289: cpu_idle: state=0 cpu_id=0
106707    RenderThread-25194 (24827) [001] d..1 24575.740495: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
106708    RenderThread-25194 (24827) [001] d..2 24575.740518: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
106709          <idle>-0     (-----) [000] .n.1 24575.740525: cpu_idle: state=4294967295 cpu_id=0
106710          <idle>-0     (-----) [000] d..2 24575.740538: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
106711    RenderThread-25194 (24827) [001] .... 24575.740583: binder_transaction: transaction=1671400 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
106712    RenderThread-25194 (24827) [001] ...2 24575.740593: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
106713    RenderThread-25194 (24827) [001] d..4 24575.740597: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
106714    RenderThread-25194 (24827) [001] dn.5 24575.740613: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
106715    RenderThread-25194 (24827) [001] d..2 24575.740624: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
106716  Binder:23896_5-25989 (23896) [001] .... 24575.740633: binder_transaction_received: transaction=1671400
106717 s.nexuslauncher-24827 (24827) [000] d..2 24575.740659: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106718          <idle>-0     (-----) [000] d..1 24575.740676: cpu_idle: state=0 cpu_id=0
106719  Binder:23896_5-25989 (23896) [001] d..2 24575.740678: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
106720    RenderThread-25194 (24827) [001] d..2 24575.740707: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
106721          <idle>-0     (-----) [001] d..1 24575.740723: cpu_idle: state=0 cpu_id=1
106722          <idle>-0     (-----) [000] d..2 24575.742133: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
106723          <idle>-0     (-----) [000] dn.3 24575.742151: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
106724          <idle>-0     (-----) [000] .n.1 24575.742156: cpu_idle: state=4294967295 cpu_id=0
106725          <idle>-0     (-----) [000] d..2 24575.742170: 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
106726     ksoftirqd/0-3     (    3) [000] d..2 24575.742208: 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
106727          <idle>-0     (-----) [000] d..1 24575.742218: cpu_idle: state=0 cpu_id=0
106728          <idle>-0     (-----) [001] d.h2 24575.743103: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
106729          <idle>-0     (-----) [001] dnh3 24575.743119: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
106730          <idle>-0     (-----) [001] .n.1 24575.743129: cpu_idle: state=4294967295 cpu_id=1
106731          <idle>-0     (-----) [001] d..2 24575.743141: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
106732        DispSync-23904 (23896) [001] d..1 24575.743160: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
106733        DispSync-23904 (23896) [001] d..2 24575.743178: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
106734          <idle>-0     (-----) [002] .n.1 24575.743184: cpu_idle: state=4294967295 cpu_id=2
106735          <idle>-0     (-----) [002] d..2 24575.743195: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
106736        DispSync-23904 (23896) [001] d..2 24575.743211: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
106737          <idle>-0     (-----) [001] d..1 24575.743224: cpu_idle: state=0 cpu_id=1
106738   sfEventThread-23906 (23896) [002] d..3 24575.743247: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
106739   sfEventThread-23906 (23896) [002] d..4 24575.743273: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
106740          <idle>-0     (-----) [001] .n.1 24575.743280: cpu_idle: state=4294967295 cpu_id=1
106741          <idle>-0     (-----) [001] d..2 24575.743291: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
106742   sfEventThread-23906 (23896) [002] d..2 24575.743310: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106743          <idle>-0     (-----) [002] d..1 24575.743324: cpu_idle: state=0 cpu_id=2
106744  surfaceflinger-23896 (23896) [001] d..1 24575.743518: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
106745  surfaceflinger-23896 (23896) [001] d..2 24575.743551: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
106746          <idle>-0     (-----) [000] .n.1 24575.743556: cpu_idle: state=4294967295 cpu_id=0
106747          <idle>-0     (-----) [000] d..2 24575.743568: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
106748  Binder:23896_5-25989 (23896) [000] d..2 24575.743615: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106749          <idle>-0     (-----) [000] d..1 24575.743629: cpu_idle: state=0 cpu_id=0
106750  surfaceflinger-23896 (23896) [001] d..1 24575.743747: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
106751  surfaceflinger-23896 (23896) [001] d..2 24575.743770: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
106752          <idle>-0     (-----) [002] .n.1 24575.743776: cpu_idle: state=4294967295 cpu_id=2
106753          <idle>-0     (-----) [002] d..2 24575.743787: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
106754   sfEventThread-23906 (23896) [002] d..2 24575.743825: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106755          <idle>-0     (-----) [002] d..1 24575.743835: cpu_idle: state=0 cpu_id=2
106756  surfaceflinger-23896 (23896) [001] ...1 24575.743990: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
106757  surfaceflinger-23896 (23896) [001] ...1 24575.744001: tracing_mark_write: E|23896
106758  surfaceflinger-23896 (23896) [001] .... 24575.744073: binder_transaction: transaction=1671401 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
106759  surfaceflinger-23896 (23896) [001] ...2 24575.744109: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
106760  surfaceflinger-23896 (23896) [001] d..4 24575.744119: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
106761  surfaceflinger-23896 (23896) [001] d..5 24575.744144: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
106762          <idle>-0     (-----) [002] .n.1 24575.744149: cpu_idle: state=4294967295 cpu_id=2
106763          <idle>-0     (-----) [002] d..2 24575.744159: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
106764  HwBinder:598_3-633   (  598) [002] .... 24575.744171: binder_transaction_received: transaction=1671401
106765  surfaceflinger-23896 (23896) [001] d..2 24575.744178: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
106766          <idle>-0     (-----) [001] d..1 24575.744198: cpu_idle: state=0 cpu_id=1
106767          <idle>-0     (-----) [003] d.s2 24575.744244: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
106768  HwBinder:598_3-633   (  598) [002] d.s2 24575.744251: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
106769          <idle>-0     (-----) [003] dns3 24575.744265: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
106770  HwBinder:598_3-633   (  598) [002] d.s3 24575.744280: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
106771          <idle>-0     (-----) [003] .n.1 24575.744291: cpu_idle: state=4294967295 cpu_id=3
106772          <idle>-0     (-----) [003] d..2 24575.744303: 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
106773  HwBinder:598_3-633   (  598) [002] ...1 24575.744312: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
106774     rcu_preempt-7     (    7) [003] d..2 24575.744324: 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
106775  kworker/u16:10-23868 (23868) [003] .... 24575.744382: clk_set_rate: l3_cluster0_vote_clk 300000000
106776  kworker/u16:10-23868 (23868) [003] .... 24575.744389: clk_set_rate: l3_clk 300000000
106777  HwBinder:598_3-633   (  598) [002] ...1 24575.744498: tracing_mark_write: B|598|HWCSession::PresentDisplay::
106778  kworker/u16:10-23868 (23868) [003] d..2 24575.744689: 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
106779  HwBinder:598_3-633   (  598) [002] ...1 24575.744709: tracing_mark_write: B|598|HWDeviceDRM::Commit::
106780  HwBinder:598_3-633   (  598) [002] ...1 24575.744725: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
106781          <idle>-0     (-----) [003] d.s4 24575.744738: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
106782          <idle>-0     (-----) [003] d.s5 24575.744749: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
106783          <idle>-0     (-----) [003] dns5 24575.744755: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
106784          <idle>-0     (-----) [003] d..2 24575.744769: 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
106785  kworker/u16:10-23868 (23868) [003] d..2 24575.744802: 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
106786          <idle>-0     (-----) [003] d..1 24575.744820: cpu_idle: state=0 cpu_id=3
106787          <idle>-0     (-----) [000] ...1 24575.745154: cpu_idle: state=4294967295 cpu_id=0
106788          <idle>-0     (-----) [000] d..1 24575.745160: cpu_idle: state=0 cpu_id=0
106789  HwBinder:598_3-633   (  598) [002] d..2 24575.745494: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
106790  HwBinder:598_3-633   (  598) [002] d..3 24575.745526: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
106791          <idle>-0     (-----) [000] .n.1 24575.745530: cpu_idle: state=4294967295 cpu_id=0
106792          <idle>-0     (-----) [000] d..2 24575.745544: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
106793  HwBinder:598_3-633   (  598) [002] ...1 24575.745652: tracing_mark_write: E|598
106794  HwBinder:598_3-633   (  598) [002] ...1 24575.745659: tracing_mark_write: E|598
106795  HwBinder:598_3-633   (  598) [002] ...1 24575.745741: tracing_mark_write: E|598
106796          <idle>-0     (-----) [001] ...1 24575.745755: cpu_idle: state=4294967295 cpu_id=1
106797          <idle>-0     (-----) [001] d..1 24575.745760: cpu_idle: state=0 cpu_id=1
106798  HwBinder:598_3-633   (  598) [002] ...1 24575.745802: tracing_mark_write: E|598
106799  HwBinder:598_3-633   (  598) [002] .... 24575.745823: binder_transaction: transaction=1671402 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
106800  HwBinder:598_3-633   (  598) [002] d..2 24575.745852: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
106801  HwBinder:598_3-633   (  598) [002] d..3 24575.745875: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
106802          <idle>-0     (-----) [001] .n.1 24575.745879: cpu_idle: state=4294967295 cpu_id=1
106803  HwBinder:598_3-633   (  598) [002] .... 24575.745881: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
106804          <idle>-0     (-----) [001] d..2 24575.745890: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
106805  surfaceflinger-23896 (23896) [001] .... 24575.745902: binder_transaction_received: transaction=1671402
106806  HwBinder:598_3-633   (  598) [002] d..2 24575.745983: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106807          <idle>-0     (-----) [002] d..1 24575.746005: cpu_idle: state=0 cpu_id=2
106808  surfaceflinger-23896 (23896) [001] d..1 24575.746210: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
106809  surfaceflinger-23896 (23896) [001] d..2 24575.746248: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
106810          <idle>-0     (-----) [002] .n.1 24575.746255: cpu_idle: state=4294967295 cpu_id=2
106811          <idle>-0     (-----) [002] d..2 24575.746270: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
106812  Binder:23896_5-25989 (23896) [002] .... 24575.746343: binder_transaction: transaction=1671403 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
106813  Binder:23896_5-25989 (23896) [002] d..2 24575.746359: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
106814  Binder:23896_5-25989 (23896) [002] d..3 24575.746387: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
106815  Binder:23896_5-25989 (23896) [002] .... 24575.746392: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
106816 crtc_commit:111-253   (  253) [000] d..2 24575.746451: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
106817  Binder:23896_5-25989 (23896) [002] d..2 24575.746459: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
106818  surfaceflinger-23896 (23896) [001] d..2 24575.746467: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
106819          <idle>-0     (-----) [000] d..1 24575.746468: cpu_idle: state=0 cpu_id=0
106820    RenderThread-25194 (24827) [002] .... 24575.746471: binder_transaction_received: transaction=1671403
106821          <idle>-0     (-----) [001] d..1 24575.746491: cpu_idle: state=0 cpu_id=1
106822    RenderThread-25194 (24827) [002] d.s2 24575.747607: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
106823    RenderThread-25194 (24827) [002] d.s3 24575.747666: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
106824          <idle>-0     (-----) [000] .n.1 24575.747671: cpu_idle: state=4294967295 cpu_id=0
106825    RenderThread-25194 (24827) [002] d.s2 24575.747675: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
106826          <idle>-0     (-----) [000] d..2 24575.747689: 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
106827    RenderThread-25194 (24827) [002] d.s3 24575.747711: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
106828  kworker/u16:10-23868 (23868) [000] d..2 24575.747760: 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
106829     rcu_preempt-7     (    7) [000] d..2 24575.747770: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
106830     rcu_preempt-7     (    7) [000] d..3 24575.747820: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
106831     rcu_preempt-7     (    7) [000] d..2 24575.747835: 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
106832         rcuop/0-10    (   10) [000] d..2 24575.747841: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
106833         rcuop/0-10    (   10) [000] d..3 24575.747874: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
106834         rcuop/0-10    (   10) [000] d..2 24575.747879: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
106835         rcuop/0-10    (   10) [000] d..3 24575.747892: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
106836         rcuop/0-10    (   10) [000] d..2 24575.747901: 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
106837         rcuop/1-21    (   21) [000] d..2 24575.747919: 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
106838     rcu_preempt-7     (    7) [000] d..2 24575.747933: 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
106839  kworker/u16:10-23868 (23868) [000] d..2 24575.747972: 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
106840          <idle>-0     (-----) [000] d..1 24575.747988: cpu_idle: state=0 cpu_id=0
106841    RenderThread-25194 (24827) [002] .... 24575.749465: binder_transaction: transaction=1671404 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
106842    RenderThread-25194 (24827) [002] ...2 24575.749483: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
106843    RenderThread-25194 (24827) [002] d..4 24575.749489: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
106844    RenderThread-25194 (24827) [002] dn.5 24575.749513: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
106845    RenderThread-25194 (24827) [002] d..2 24575.749525: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
106846  Binder:23896_5-25989 (23896) [002] .... 24575.749535: binder_transaction_received: transaction=1671404
106847  Binder:23896_5-25989 (23896) [002] .... 24575.749727: binder_transaction: transaction=1671405 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
106848  Binder:23896_5-25989 (23896) [002] .... 24575.749738: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
106849  Binder:23896_5-25989 (23896) [002] d..2 24575.749807: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
106850    RenderThread-25194 (24827) [002] .... 24575.749818: binder_transaction_received: transaction=1671405
106851    RenderThread-25194 (24827) [002] d..2 24575.749944: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106852          <idle>-0     (-----) [002] d..1 24575.749967: cpu_idle: state=0 cpu_id=2
106853          <idle>-0     (-----) [003] ...1 24575.750926: cpu_idle: state=4294967295 cpu_id=3
106854          <idle>-0     (-----) [003] d..1 24575.750932: cpu_idle: state=0 cpu_id=3
106855          <idle>-0     (-----) [000] d.h5 24575.751024: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
106856          <idle>-0     (-----) [000] dnh6 24575.751041: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
106857          <idle>-0     (-----) [000] dnh5 24575.751048: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
106858          <idle>-0     (-----) [000] dnh6 24575.751069: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
106859          <idle>-0     (-----) [003] .n.1 24575.751075: cpu_idle: state=4294967295 cpu_id=3
106860          <idle>-0     (-----) [000] .n.1 24575.751085: cpu_idle: state=4294967295 cpu_id=0
106861          <idle>-0     (-----) [003] d..2 24575.751087: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
106862          <idle>-0     (-----) [000] d..2 24575.751099: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
106863  crtc_event:111-254   (  254) [000] d..3 24575.751119: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
106864  crtc_event:111-254   (  254) [000] d..4 24575.751143: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
106865          <idle>-0     (-----) [001] .n.1 24575.751150: cpu_idle: state=4294967295 cpu_id=1
106866          <idle>-0     (-----) [001] d..2 24575.751165: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
106867  crtc_event:111-254   (  254) [000] d..2 24575.751173: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106868          <idle>-0     (-----) [000] d..1 24575.751184: cpu_idle: state=0 cpu_id=0
106869 crtc_commit:111-253   (  253) [003] d..2 24575.751278: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
106870          <idle>-0     (-----) [003] d..1 24575.751289: cpu_idle: state=0 cpu_id=3
106871 kgsl_worker_thr-246   (  246) [001] d..2 24575.751389: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
106872          <idle>-0     (-----) [001] d..1 24575.751401: cpu_idle: state=0 cpu_id=1
106873          <idle>-0     (-----) [001] d.h2 24575.751477: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
106874          <idle>-0     (-----) [001] dnh3 24575.751493: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
106875          <idle>-0     (-----) [001] .n.1 24575.751503: cpu_idle: state=4294967295 cpu_id=1
106876          <idle>-0     (-----) [001] d..2 24575.751512: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
106877 kgsl_worker_thr-246   (  246) [001] d..2 24575.751539: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
106878 kgsl_worker_thr-246   (  246) [001] d..3 24575.751586: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
106879 kgsl_worker_thr-246   (  246) [001] d..2 24575.751603: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
106880  kworker/u16:10-23868 (23868) [001] d..2 24575.752028: 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
106881          <idle>-0     (-----) [001] d..1 24575.752044: cpu_idle: state=0 cpu_id=1
106882          <idle>-0     (-----) [000] d.h3 24575.753123: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
106883          <idle>-0     (-----) [000] d.h4 24575.753140: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
106884          <idle>-0     (-----) [001] .n.1 24575.753148: cpu_idle: state=4294967295 cpu_id=1
106885          <idle>-0     (-----) [000] ...1 24575.753157: cpu_idle: state=4294967295 cpu_id=0
106886          <idle>-0     (-----) [001] d..2 24575.753159: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
106887          <idle>-0     (-----) [000] d..1 24575.753162: cpu_idle: state=0 cpu_id=0
106888 kgsl_worker_thr-246   (  246) [001] d..2 24575.753243: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
106889          <idle>-0     (-----) [001] d..1 24575.753255: cpu_idle: state=0 cpu_id=1
106890          <idle>-0     (-----) [000] d.h5 24575.753346: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
106891          <idle>-0     (-----) [000] d.h6 24575.753363: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
106892          <idle>-0     (-----) [003] .n.1 24575.753369: cpu_idle: state=4294967295 cpu_id=3
106893          <idle>-0     (-----) [003] d..2 24575.753378: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
106894          <idle>-0     (-----) [000] ...1 24575.753378: cpu_idle: state=4294967295 cpu_id=0
106895          <idle>-0     (-----) [000] d..1 24575.753383: cpu_idle: state=0 cpu_id=0
106896 crtc_commit:111-253   (  253) [003] d..2 24575.753470: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
106897          <idle>-0     (-----) [003] d..1 24575.753480: cpu_idle: state=0 cpu_id=3
106898          <idle>-0     (-----) [000] d.h5 24575.753657: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
106899          <idle>-0     (-----) [000] dnh6 24575.753667: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
106900          <idle>-0     (-----) [000] .n.1 24575.753685: cpu_idle: state=4294967295 cpu_id=0
106901          <idle>-0     (-----) [000] d..2 24575.753693: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
106902  crtc_event:111-254   (  254) [000] d..2 24575.753719: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106903          <idle>-0     (-----) [000] d..1 24575.753728: cpu_idle: state=0 cpu_id=0
106904          <idle>-0     (-----) [003] d.s3 24575.754247: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
106905          <idle>-0     (-----) [000] d.s2 24575.754249: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
106906          <idle>-0     (-----) [003] d.s4 24575.754268: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
106907          <idle>-0     (-----) [000] dns3 24575.754278: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
106908          <idle>-0     (-----) [000] dns3 24575.754288: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
106909          <idle>-0     (-----) [003] ...1 24575.754303: cpu_idle: state=4294967295 cpu_id=3
106910          <idle>-0     (-----) [003] d..1 24575.754310: cpu_idle: state=0 cpu_id=3
106911          <idle>-0     (-----) [000] dns4 24575.754327: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
106912          <idle>-0     (-----) [000] .n.1 24575.754350: cpu_idle: state=4294967295 cpu_id=0
106913          <idle>-0     (-----) [000] d..2 24575.754359: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
106914  crtc_event:111-254   (  254) [000] d..2 24575.754379: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
106915     rcu_preempt-7     (    7) [000] d..2 24575.754391: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
106916     rcu_preempt-7     (    7) [000] d..3 24575.754407: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
106917     rcu_preempt-7     (    7) [000] d..2 24575.754418: 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
106918         rcuop/0-10    (   10) [000] d..2 24575.754423: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
106919         rcuop/0-10    (   10) [000] d..3 24575.754438: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
106920         rcuop/0-10    (   10) [000] d..2 24575.754448: 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
106921         rcuop/1-21    (   21) [000] d..2 24575.754463: 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
106922  kworker/u16:10-23868 (23868) [000] d..2 24575.754687: 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
106923          <idle>-0     (-----) [000] d..1 24575.754707: cpu_idle: state=0 cpu_id=0
106924          <idle>-0     (-----) [003] d.s3 24575.755174: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
106925          <idle>-0     (-----) [003] d.s4 24575.755188: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
106926          <idle>-0     (-----) [003] d.s4 24575.755198: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
106927          <idle>-0     (-----) [000] .n.1 24575.755208: cpu_idle: state=4294967295 cpu_id=0
106928          <idle>-0     (-----) [003] ...1 24575.755210: cpu_idle: state=4294967295 cpu_id=3
106929          <idle>-0     (-----) [003] d..1 24575.755216: cpu_idle: state=0 cpu_id=3
106930          <idle>-0     (-----) [000] d..2 24575.755221: 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
106931  kworker/u16:10-23868 (23868) [000] .... 24575.755296: clk_set_rate: l3_cluster0_vote_clk 403200000
106932  kworker/u16:10-23868 (23868) [000] .... 24575.755305: clk_set_rate: l3_clk 403200000
106933  kworker/u16:10-23868 (23868) [000] d..2 24575.755354: 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
106934          <idle>-0     (-----) [000] d..1 24575.755372: cpu_idle: state=0 cpu_id=0
106935          <idle>-0     (-----) [001] d.h2 24575.755561: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
106936          <idle>-0     (-----) [001] dnh3 24575.755576: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
106937          <idle>-0     (-----) [001] .n.1 24575.755584: cpu_idle: state=4294967295 cpu_id=1
106938          <idle>-0     (-----) [001] d..2 24575.755595: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
106939        DispSync-23904 (23896) [001] d..1 24575.755615: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
106940        DispSync-23904 (23896) [001] d..2 24575.755630: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
106941          <idle>-0     (-----) [003] .n.1 24575.755635: cpu_idle: state=4294967295 cpu_id=3
106942          <idle>-0     (-----) [003] d..2 24575.755647: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
106943        DispSync-23904 (23896) [001] d..2 24575.755660: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
106944          <idle>-0     (-----) [001] d..1 24575.755673: cpu_idle: state=0 cpu_id=1
106945  appEventThread-23905 (23896) [003] d..3 24575.755694: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
106946  appEventThread-23905 (23896) [003] d..4 24575.755717: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
106947          <idle>-0     (-----) [000] .n.1 24575.755723: cpu_idle: state=4294967295 cpu_id=0
106948          <idle>-0     (-----) [000] d..2 24575.755736: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
106949  appEventThread-23905 (23896) [003] d..2 24575.755758: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
106950          <idle>-0     (-----) [003] d..1 24575.755773: cpu_idle: state=0 cpu_id=3
106951 s.nexuslauncher-24827 (24827) [000] .... 24575.756099: binder_transaction: transaction=1671406 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
106952 s.nexuslauncher-24827 (24827) [000] d..4 24575.756112: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
106953 s.nexuslauncher-24827 (24827) [000] d..5 24575.756151: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
106954          <idle>-0     (-----) [001] .n.1 24575.756156: cpu_idle: state=4294967295 cpu_id=1
106955          <idle>-0     (-----) [001] d..2 24575.756170: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
106956  Binder:23896_5-25989 (23896) [001] .... 24575.756178: binder_transaction_received: transaction=1671406
106957 s.nexuslauncher-24827 (24827) [000] d..3 24575.756194: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
106958  Binder:23896_5-25989 (23896) [001] d..1 24575.756211: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
106959 s.nexuslauncher-24827 (24827) [000] d..4 24575.756214: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
106960          <idle>-0     (-----) [002] .n.1 24575.756222: cpu_idle: state=4294967295 cpu_id=2
106961  Binder:23896_5-25989 (23896) [001] d..2 24575.756230: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
106962          <idle>-0     (-----) [002] d..2 24575.756236: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
106963          <idle>-0     (-----) [003] .n.1 24575.756236: cpu_idle: state=4294967295 cpu_id=3
106964          <idle>-0     (-----) [003] d..2 24575.756246: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
106965  Binder:23896_5-25989 (23896) [001] d..2 24575.756276: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
106966    RenderThread-25194 (24827) [002] d..2 24575.756283: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106967  appEventThread-23905 (23896) [003] d..2 24575.756286: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
106968          <idle>-0     (-----) [001] d..1 24575.756290: cpu_idle: state=0 cpu_id=1
106969          <idle>-0     (-----) [002] d..1 24575.756296: cpu_idle: state=0 cpu_id=2
106970          <idle>-0     (-----) [003] d..1 24575.756298: cpu_idle: state=0 cpu_id=3
106971 s.nexuslauncher-24827 (24827) [000] d..3 24575.756591: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
106972 s.nexuslauncher-24827 (24827) [000] d..4 24575.756615: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
106973          <idle>-0     (-----) [002] .n.1 24575.756620: cpu_idle: state=4294967295 cpu_id=2
106974          <idle>-0     (-----) [002] d..2 24575.756631: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
106975 s.nexuslauncher-24827 (24827) [000] d..2 24575.756654: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106976          <idle>-0     (-----) [000] d..1 24575.756676: cpu_idle: state=0 cpu_id=0
106977    RenderThread-25194 (24827) [002] d..1 24575.756836: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
106978    RenderThread-25194 (24827) [002] d..2 24575.756861: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
106979          <idle>-0     (-----) [000] .n.1 24575.756869: cpu_idle: state=4294967295 cpu_id=0
106980          <idle>-0     (-----) [000] d..2 24575.756884: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
106981    RenderThread-25194 (24827) [002] .... 24575.756925: binder_transaction: transaction=1671407 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
106982    RenderThread-25194 (24827) [002] ...2 24575.756934: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
106983    RenderThread-25194 (24827) [002] d..4 24575.756938: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
106984    RenderThread-25194 (24827) [002] dn.5 24575.756961: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
106985    RenderThread-25194 (24827) [002] d..2 24575.756973: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
106986  Binder:23896_5-25989 (23896) [002] .... 24575.756983: binder_transaction_received: transaction=1671407
106987 s.nexuslauncher-24827 (24827) [000] d..2 24575.757000: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106988          <idle>-0     (-----) [000] d..1 24575.757016: cpu_idle: state=0 cpu_id=0
106989  Binder:23896_5-25989 (23896) [002] d..2 24575.757033: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
106990    RenderThread-25194 (24827) [002] d..2 24575.757062: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106991          <idle>-0     (-----) [002] d..1 24575.757082: cpu_idle: state=0 cpu_id=2
106992          <idle>-0     (-----) [003] d..2 24575.757926: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
106993          <idle>-0     (-----) [003] dn.3 24575.757941: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
106994          <idle>-0     (-----) [003] dnH3 24575.758054: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
106995          <idle>-0     (-----) [003] dnH3 24575.758072: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
106996          <idle>-0     (-----) [005] dnh2 24575.758077: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
106997          <idle>-0     (-----) [005] .n.1 24575.758081: cpu_idle: state=4294967295 cpu_id=5
106998          <idle>-0     (-----) [005] d..2 24575.758086: 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
106999          <idle>-0     (-----) [003] dnH4 24575.758096: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
107000         sugov:4-560   (  560) [005] d..2 24575.758103: 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
107001          <idle>-0     (-----) [002] .n.1 24575.758105: cpu_idle: state=4294967295 cpu_id=2
107002          <idle>-0     (-----) [005] d..1 24575.758110: cpu_idle: state=0 cpu_id=5
107003          <idle>-0     (-----) [003] .n.1 24575.758111: cpu_idle: state=4294967295 cpu_id=3
107004          <idle>-0     (-----) [002] d..2 24575.758117: 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
107005          <idle>-0     (-----) [003] d..2 24575.758128: 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
107006     ksoftirqd/3-34    (   34) [003] d..2 24575.758155: 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
107007         sugov:0-559   (  559) [002] .... 24575.758157: clk_set_rate: pwrcl_clk 825600000
107008          <idle>-0     (-----) [003] d..1 24575.758167: cpu_idle: state=0 cpu_id=3
107009         sugov:0-559   (  559) [002] .... 24575.758168: clk_set_rate: cpu3_pwrcl_clk 902400000
107010         sugov:0-559   (  559) [002] .... 24575.758182: clk_set_rate: cpu2_pwrcl_clk 902400000
107011         sugov:0-559   (  559) [002] .... 24575.758191: clk_set_rate: cpu1_pwrcl_clk 902400000
107012         sugov:0-559   (  559) [002] .... 24575.758201: clk_set_rate: cpu0_pwrcl_clk 825600000
107013         sugov:0-559   (  559) [002] .... 24575.758322: cpu_frequency: state=825600 cpu_id=0
107014         sugov:0-559   (  559) [002] .... 24575.758353: cpu_frequency: state=825600 cpu_id=1
107015         sugov:0-559   (  559) [002] .... 24575.758360: cpu_frequency: state=825600 cpu_id=2
107016         sugov:0-559   (  559) [002] .... 24575.758365: cpu_frequency: state=825600 cpu_id=3
107017          <idle>-0     (-----) [000] ...1 24575.758376: cpu_idle: state=4294967295 cpu_id=0
107018          <idle>-0     (-----) [000] d..1 24575.758382: cpu_idle: state=0 cpu_id=0
107019         sugov:0-559   (  559) [002] d..2 24575.758399: 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
107020          <idle>-0     (-----) [002] d..1 24575.758414: cpu_idle: state=0 cpu_id=2
107021          <idle>-0     (-----) [005] ...1 24575.759126: cpu_idle: state=4294967295 cpu_id=5
107022          <idle>-0     (-----) [005] d..1 24575.759130: cpu_idle: state=0 cpu_id=5
107023          <idle>-0     (-----) [001] d.h2 24575.759559: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
107024          <idle>-0     (-----) [001] dnh3 24575.759576: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
107025          <idle>-0     (-----) [001] .n.1 24575.759585: cpu_idle: state=4294967295 cpu_id=1
107026          <idle>-0     (-----) [001] d..2 24575.759597: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
107027        DispSync-23904 (23896) [001] d..1 24575.759612: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
107028        DispSync-23904 (23896) [001] d..2 24575.759628: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
107029          <idle>-0     (-----) [002] .n.1 24575.759635: cpu_idle: state=4294967295 cpu_id=2
107030          <idle>-0     (-----) [002] d..2 24575.759647: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
107031        DispSync-23904 (23896) [001] d..2 24575.759663: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107032          <idle>-0     (-----) [001] d..1 24575.759677: cpu_idle: state=0 cpu_id=1
107033   sfEventThread-23906 (23896) [002] d..3 24575.759698: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
107034   sfEventThread-23906 (23896) [002] d..4 24575.759723: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
107035          <idle>-0     (-----) [001] .n.1 24575.759728: cpu_idle: state=4294967295 cpu_id=1
107036          <idle>-0     (-----) [001] d..2 24575.759739: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
107037   sfEventThread-23906 (23896) [002] d..2 24575.759761: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107038          <idle>-0     (-----) [002] d..1 24575.759779: cpu_idle: state=0 cpu_id=2
107039  surfaceflinger-23896 (23896) [001] d..1 24575.759936: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
107040  surfaceflinger-23896 (23896) [001] d..2 24575.759974: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
107041          <idle>-0     (-----) [000] .n.1 24575.759978: cpu_idle: state=4294967295 cpu_id=0
107042          <idle>-0     (-----) [000] d..2 24575.759995: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
107043  Binder:23896_5-25989 (23896) [000] d..2 24575.760035: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107044          <idle>-0     (-----) [000] d..1 24575.760050: cpu_idle: state=0 cpu_id=0
107045  surfaceflinger-23896 (23896) [001] d..2 24575.760124: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
107046  surfaceflinger-23896 (23896) [001] d..3 24575.760175: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
107047  surfaceflinger-23896 (23896) [001] d..1 24575.760206: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
107048  surfaceflinger-23896 (23896) [001] d..2 24575.760226: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
107049          <idle>-0     (-----) [002] .n.1 24575.760233: cpu_idle: state=4294967295 cpu_id=2
107050          <idle>-0     (-----) [002] d..2 24575.760246: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
107051   sfEventThread-23906 (23896) [002] d..2 24575.760308: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
107052         rcuop/0-10    (   10) [002] d..2 24575.760316: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
107053         rcuop/0-10    (   10) [002] d..3 24575.760358: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
107054         rcuop/0-10    (   10) [002] d..2 24575.760371: 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
107055     rcu_preempt-7     (    7) [002] d..2 24575.760394: 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
107056          <idle>-0     (-----) [002] d..1 24575.760408: cpu_idle: state=0 cpu_id=2
107057  surfaceflinger-23896 (23896) [001] ...1 24575.760421: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
107058  surfaceflinger-23896 (23896) [001] ...1 24575.760429: tracing_mark_write: E|23896
107059  surfaceflinger-23896 (23896) [001] .... 24575.760498: binder_transaction: transaction=1671408 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
107060  surfaceflinger-23896 (23896) [001] ...2 24575.760529: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
107061  surfaceflinger-23896 (23896) [001] d..4 24575.760538: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
107062  surfaceflinger-23896 (23896) [001] d..5 24575.760563: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
107063          <idle>-0     (-----) [002] .n.1 24575.760569: cpu_idle: state=4294967295 cpu_id=2
107064          <idle>-0     (-----) [002] d..2 24575.760582: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
107065  HwBinder:598_3-633   (  598) [002] .... 24575.760595: binder_transaction_received: transaction=1671408
107066  surfaceflinger-23896 (23896) [001] d..2 24575.760597: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107067          <idle>-0     (-----) [001] d..1 24575.760617: cpu_idle: state=0 cpu_id=1
107068  HwBinder:598_3-633   (  598) [002] ...1 24575.760654: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
107069  HwBinder:598_3-633   (  598) [002] ...1 24575.760830: tracing_mark_write: B|598|HWCSession::PresentDisplay::
107070  HwBinder:598_3-633   (  598) [002] ...1 24575.761116: tracing_mark_write: B|598|HWDeviceDRM::Commit::
107071  HwBinder:598_3-633   (  598) [002] ...1 24575.761133: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
107072          <idle>-0     (-----) [000] ...1 24575.761442: cpu_idle: state=4294967295 cpu_id=0
107073          <idle>-0     (-----) [000] d..1 24575.761447: cpu_idle: state=0 cpu_id=0
107074  HwBinder:598_3-633   (  598) [002] d..2 24575.761877: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
107075  HwBinder:598_3-633   (  598) [002] d..3 24575.761907: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
107076          <idle>-0     (-----) [003] .n.1 24575.761912: cpu_idle: state=4294967295 cpu_id=3
107077          <idle>-0     (-----) [003] d..2 24575.761926: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
107078  HwBinder:598_3-633   (  598) [002] ...1 24575.762030: tracing_mark_write: E|598
107079  HwBinder:598_3-633   (  598) [002] ...1 24575.762036: tracing_mark_write: E|598
107080  HwBinder:598_3-633   (  598) [002] ...1 24575.762116: tracing_mark_write: E|598
107081  HwBinder:598_3-633   (  598) [002] ...1 24575.762178: tracing_mark_write: E|598
107082  HwBinder:598_3-633   (  598) [002] .... 24575.762198: binder_transaction: transaction=1671409 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
107083  HwBinder:598_3-633   (  598) [002] d..2 24575.762226: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
107084  HwBinder:598_3-633   (  598) [002] d..3 24575.762248: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
107085  HwBinder:598_3-633   (  598) [002] .... 24575.762254: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
107086          <idle>-0     (-----) [001] .n.1 24575.762255: cpu_idle: state=4294967295 cpu_id=1
107087          <idle>-0     (-----) [001] d..2 24575.762268: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
107088  surfaceflinger-23896 (23896) [001] .... 24575.762277: binder_transaction_received: transaction=1671409
107089  HwBinder:598_3-633   (  598) [002] d..2 24575.762358: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107090          <idle>-0     (-----) [002] d..1 24575.762373: cpu_idle: state=0 cpu_id=2
107091  surfaceflinger-23896 (23896) [001] d..1 24575.762642: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
107092  surfaceflinger-23896 (23896) [001] d..2 24575.762668: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
107093          <idle>-0     (-----) [000] .n.1 24575.762672: cpu_idle: state=4294967295 cpu_id=0
107094          <idle>-0     (-----) [000] d..2 24575.762685: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
107095  Binder:23896_5-25989 (23896) [000] .... 24575.762760: binder_transaction: transaction=1671410 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
107096  Binder:23896_5-25989 (23896) [000] d..2 24575.762777: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
107097 crtc_commit:111-253   (  253) [003] d..2 24575.762777: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
107098          <idle>-0     (-----) [003] d..1 24575.762795: cpu_idle: state=0 cpu_id=3
107099  Binder:23896_5-25989 (23896) [000] d..3 24575.762803: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
107100  Binder:23896_5-25989 (23896) [000] .... 24575.762808: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
107101  surfaceflinger-23896 (23896) [001] d..2 24575.762869: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107102  Binder:23896_5-25989 (23896) [000] d..2 24575.762876: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
107103    RenderThread-25194 (24827) [000] .... 24575.762885: binder_transaction_received: transaction=1671410
107104          <idle>-0     (-----) [001] d..1 24575.762895: cpu_idle: state=0 cpu_id=1
107105          <idle>-0     (-----) [002] d.s2 24575.764255: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
107106          <idle>-0     (-----) [002] dns3 24575.764277: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
107107          <idle>-0     (-----) [002] dns3 24575.764283: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
107108          <idle>-0     (-----) [002] dns4 24575.764322: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
107109          <idle>-0     (-----) [002] .n.1 24575.764343: cpu_idle: state=4294967295 cpu_id=2
107110          <idle>-0     (-----) [002] d..2 24575.764354: 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
107111     rcu_preempt-7     (    7) [002] d..2 24575.764377: 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
107112          <idle>-0     (-----) [003] ...1 24575.764414: cpu_idle: state=4294967295 cpu_id=3
107113          <idle>-0     (-----) [003] d..1 24575.764419: cpu_idle: state=0 cpu_id=3
107114  kworker/u16:10-23868 (23868) [002] d..2 24575.764549: 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
107115          <idle>-0     (-----) [002] d..1 24575.764567: cpu_idle: state=0 cpu_id=2
107116    RenderThread-25194 (24827) [000] .... 24575.765650: binder_transaction: transaction=1671411 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
107117    RenderThread-25194 (24827) [000] ...2 24575.765667: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
107118    RenderThread-25194 (24827) [000] d..4 24575.765671: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
107119    RenderThread-25194 (24827) [000] dn.5 24575.765695: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
107120    RenderThread-25194 (24827) [000] d..2 24575.765708: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
107121  Binder:23896_5-25989 (23896) [000] .... 24575.765718: binder_transaction_received: transaction=1671411
107122  Binder:23896_5-25989 (23896) [000] .... 24575.765906: binder_transaction: transaction=1671412 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
107123  Binder:23896_5-25989 (23896) [000] .... 24575.765916: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
107124  Binder:23896_5-25989 (23896) [000] d..2 24575.765978: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
107125    RenderThread-25194 (24827) [000] .... 24575.765989: binder_transaction_received: transaction=1671412
107126    RenderThread-25194 (24827) [000] d..2 24575.766112: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107127          <idle>-0     (-----) [000] d..1 24575.766134: cpu_idle: state=0 cpu_id=0
107128          <idle>-0     (-----) [000] d.h5 24575.767500: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
107129          <idle>-0     (-----) [000] dnh6 24575.767521: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
107130          <idle>-0     (-----) [000] dnh5 24575.767528: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
107131          <idle>-0     (-----) [000] dnh6 24575.767543: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
107132          <idle>-0     (-----) [003] .n.1 24575.767548: cpu_idle: state=4294967295 cpu_id=3
107133          <idle>-0     (-----) [000] .n.1 24575.767562: cpu_idle: state=4294967295 cpu_id=0
107134          <idle>-0     (-----) [003] d..2 24575.767565: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
107135          <idle>-0     (-----) [000] d..2 24575.767576: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
107136  crtc_event:111-254   (  254) [000] d..3 24575.767594: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
107137  crtc_event:111-254   (  254) [000] d..4 24575.767609: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
107138          <idle>-0     (-----) [001] .n.1 24575.767616: cpu_idle: state=4294967295 cpu_id=1
107139          <idle>-0     (-----) [001] d..2 24575.767630: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
107140  crtc_event:111-254   (  254) [000] d..2 24575.767640: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107141          <idle>-0     (-----) [000] d..2 24575.767645: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
107142          <idle>-0     (-----) [000] dn.3 24575.767658: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
107143          <idle>-0     (-----) [000] d..2 24575.767667: 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
107144     ksoftirqd/0-3     (    3) [000] d..2 24575.767691: 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
107145          <idle>-0     (-----) [000] d..1 24575.767705: cpu_idle: state=0 cpu_id=0
107146 crtc_commit:111-253   (  253) [003] d..2 24575.767741: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
107147          <idle>-0     (-----) [003] d..1 24575.767751: cpu_idle: state=0 cpu_id=3
107148 kgsl_worker_thr-246   (  246) [001] d..2 24575.767848: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
107149          <idle>-0     (-----) [001] d..1 24575.767861: cpu_idle: state=0 cpu_id=1
107150          <idle>-0     (-----) [001] d.h2 24575.767936: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
107151          <idle>-0     (-----) [001] dnh3 24575.767951: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
107152          <idle>-0     (-----) [001] .n.1 24575.767961: cpu_idle: state=4294967295 cpu_id=1
107153          <idle>-0     (-----) [001] d..2 24575.767971: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
107154 kgsl_worker_thr-246   (  246) [001] d..2 24575.767994: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
107155 kgsl_worker_thr-246   (  246) [001] d..3 24575.768039: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
107156 kgsl_worker_thr-246   (  246) [001] d..2 24575.768057: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
107157  kworker/u16:10-23868 (23868) [001] d..2 24575.768456: 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
107158          <idle>-0     (-----) [001] d..1 24575.768471: cpu_idle: state=0 cpu_id=1
107159          <idle>-0     (-----) [000] d.h3 24575.769542: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
107160          <idle>-0     (-----) [000] d.h4 24575.769560: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
107161          <idle>-0     (-----) [001] .n.1 24575.769567: cpu_idle: state=4294967295 cpu_id=1
107162          <idle>-0     (-----) [000] ...1 24575.769577: cpu_idle: state=4294967295 cpu_id=0
107163          <idle>-0     (-----) [001] d..2 24575.769578: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
107164          <idle>-0     (-----) [000] d..1 24575.769583: cpu_idle: state=0 cpu_id=0
107165 kgsl_worker_thr-246   (  246) [001] d..2 24575.769648: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107166          <idle>-0     (-----) [001] d..1 24575.769659: cpu_idle: state=0 cpu_id=1
107167          <idle>-0     (-----) [000] d.h5 24575.769819: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
107168          <idle>-0     (-----) [000] d.h6 24575.769835: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
107169          <idle>-0     (-----) [003] .n.1 24575.769842: cpu_idle: state=4294967295 cpu_id=3
107170          <idle>-0     (-----) [003] d..2 24575.769850: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
107171          <idle>-0     (-----) [000] ...1 24575.769851: cpu_idle: state=4294967295 cpu_id=0
107172          <idle>-0     (-----) [000] d..1 24575.769857: cpu_idle: state=0 cpu_id=0
107173 crtc_commit:111-253   (  253) [003] d..2 24575.769930: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
107174          <idle>-0     (-----) [003] d..1 24575.769940: cpu_idle: state=0 cpu_id=3
107175          <idle>-0     (-----) [000] d.h5 24575.770126: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
107176          <idle>-0     (-----) [000] dnh6 24575.770137: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
107177          <idle>-0     (-----) [000] .n.1 24575.770154: cpu_idle: state=4294967295 cpu_id=0
107178          <idle>-0     (-----) [000] d..2 24575.770165: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
107179  crtc_event:111-254   (  254) [000] d..2 24575.770191: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107180          <idle>-0     (-----) [000] d..1 24575.770202: cpu_idle: state=0 cpu_id=0
107181          <idle>-0     (-----) [003] d.s3 24575.770911: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
107182          <idle>-0     (-----) [002] d.s2 24575.770914: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
107183          <idle>-0     (-----) [003] d.s4 24575.770932: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
107184          <idle>-0     (-----) [002] dns3 24575.770934: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
107185          <idle>-0     (-----) [000] .n.1 24575.770938: cpu_idle: state=4294967295 cpu_id=0
107186          <idle>-0     (-----) [002] .n.1 24575.770942: cpu_idle: state=4294967295 cpu_id=2
107187          <idle>-0     (-----) [000] d..2 24575.770950: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
107188          <idle>-0     (-----) [002] d..2 24575.770955: 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
107189          <idle>-0     (-----) [003] ...1 24575.770960: cpu_idle: state=4294967295 cpu_id=3
107190     rcu_preempt-7     (    7) [002] d..2 24575.770966: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
107191          <idle>-0     (-----) [003] d..1 24575.770967: cpu_idle: state=0 cpu_id=3
107192  crtc_event:111-254   (  254) [000] d..2 24575.770983: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107193          <idle>-0     (-----) [000] d..1 24575.770996: cpu_idle: state=0 cpu_id=0
107194     rcu_preempt-7     (    7) [002] d..3 24575.771008: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
107195          <idle>-0     (-----) [000] .n.1 24575.771015: cpu_idle: state=4294967295 cpu_id=0
107196          <idle>-0     (-----) [000] d..2 24575.771027: 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
107197     rcu_preempt-7     (    7) [002] d..2 24575.771033: 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
107198         rcuop/0-10    (   10) [000] d..2 24575.771034: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
107199          <idle>-0     (-----) [002] d..1 24575.771046: cpu_idle: state=0 cpu_id=2
107200         rcuop/0-10    (   10) [000] d..3 24575.771058: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
107201         rcuop/0-10    (   10) [000] d..2 24575.771063: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
107202         rcuop/0-10    (   10) [000] d..3 24575.771078: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
107203          <idle>-0     (-----) [002] .n.1 24575.771084: cpu_idle: state=4294967295 cpu_id=2
107204         rcuop/0-10    (   10) [000] d..2 24575.771088: 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
107205          <idle>-0     (-----) [002] d..2 24575.771096: 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
107206         rcuop/1-21    (   21) [000] d..2 24575.771113: 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
107207     rcu_preempt-7     (    7) [002] d..2 24575.771121: 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
107208          <idle>-0     (-----) [000] d..1 24575.771126: cpu_idle: state=0 cpu_id=0
107209          <idle>-0     (-----) [002] d..1 24575.771131: cpu_idle: state=0 cpu_id=2
107210          <idle>-0     (-----) [001] d.h2 24575.772016: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
107211          <idle>-0     (-----) [001] dnh3 24575.772032: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
107212          <idle>-0     (-----) [001] .n.1 24575.772041: cpu_idle: state=4294967295 cpu_id=1
107213          <idle>-0     (-----) [001] d..2 24575.772052: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
107214        DispSync-23904 (23896) [001] d..1 24575.772075: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
107215        DispSync-23904 (23896) [001] d..2 24575.772092: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
107216          <idle>-0     (-----) [003] .n.1 24575.772097: cpu_idle: state=4294967295 cpu_id=3
107217          <idle>-0     (-----) [003] d..2 24575.772109: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
107218        DispSync-23904 (23896) [001] d..2 24575.772125: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107219          <idle>-0     (-----) [001] d..1 24575.772138: cpu_idle: state=0 cpu_id=1
107220  appEventThread-23905 (23896) [003] d..3 24575.772162: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
107221  appEventThread-23905 (23896) [003] d..4 24575.772188: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
107222          <idle>-0     (-----) [000] .n.1 24575.772195: cpu_idle: state=4294967295 cpu_id=0
107223          <idle>-0     (-----) [000] d..2 24575.772207: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
107224  appEventThread-23905 (23896) [003] d..2 24575.772230: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
107225          <idle>-0     (-----) [003] d..1 24575.772246: cpu_idle: state=0 cpu_id=3
107226 s.nexuslauncher-24827 (24827) [000] .... 24575.772584: binder_transaction: transaction=1671413 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
107227 s.nexuslauncher-24827 (24827) [000] d..4 24575.772595: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
107228 s.nexuslauncher-24827 (24827) [000] d..5 24575.772630: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
107229          <idle>-0     (-----) [001] .n.1 24575.772636: cpu_idle: state=4294967295 cpu_id=1
107230          <idle>-0     (-----) [001] d..2 24575.772649: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
107231  Binder:23896_5-25989 (23896) [001] .... 24575.772658: binder_transaction_received: transaction=1671413
107232 s.nexuslauncher-24827 (24827) [000] d..3 24575.772673: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
107233  Binder:23896_5-25989 (23896) [001] d..1 24575.772691: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
107234 s.nexuslauncher-24827 (24827) [000] d..4 24575.772702: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
107235          <idle>-0     (-----) [002] .n.1 24575.772708: cpu_idle: state=4294967295 cpu_id=2
107236  Binder:23896_5-25989 (23896) [001] d..2 24575.772713: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
107237          <idle>-0     (-----) [003] .n.1 24575.772716: cpu_idle: state=4294967295 cpu_id=3
107238          <idle>-0     (-----) [002] d..2 24575.772720: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
107239          <idle>-0     (-----) [003] d..2 24575.772729: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
107240  Binder:23896_5-25989 (23896) [001] d..2 24575.772759: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107241  appEventThread-23905 (23896) [003] d..2 24575.772771: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
107242          <idle>-0     (-----) [001] d..1 24575.772773: cpu_idle: state=0 cpu_id=1
107243          <idle>-0     (-----) [003] d..1 24575.772784: cpu_idle: state=0 cpu_id=3
107244    RenderThread-25194 (24827) [002] d..2 24575.772787: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107245          <idle>-0     (-----) [002] d..1 24575.772800: cpu_idle: state=0 cpu_id=2
107246 s.nexuslauncher-24827 (24827) [000] d..3 24575.773090: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
107247 s.nexuslauncher-24827 (24827) [000] d..4 24575.773127: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
107248          <idle>-0     (-----) [001] .n.1 24575.773133: cpu_idle: state=4294967295 cpu_id=1
107249          <idle>-0     (-----) [001] d..2 24575.773146: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
107250 s.nexuslauncher-24827 (24827) [000] d..2 24575.773167: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107251          <idle>-0     (-----) [000] d..1 24575.773189: cpu_idle: state=0 cpu_id=0
107252    RenderThread-25194 (24827) [001] d..1 24575.773388: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
107253    RenderThread-25194 (24827) [001] d..2 24575.773411: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
107254          <idle>-0     (-----) [000] .n.1 24575.773420: cpu_idle: state=4294967295 cpu_id=0
107255          <idle>-0     (-----) [000] d..2 24575.773433: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
107256    RenderThread-25194 (24827) [001] .... 24575.773480: binder_transaction: transaction=1671414 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
107257    RenderThread-25194 (24827) [001] ...2 24575.773491: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
107258    RenderThread-25194 (24827) [001] d..4 24575.773495: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
107259    RenderThread-25194 (24827) [001] dn.5 24575.773511: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
107260    RenderThread-25194 (24827) [001] d..2 24575.773522: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
107261  Binder:23896_5-25989 (23896) [001] .... 24575.773532: binder_transaction_received: transaction=1671414
107262 s.nexuslauncher-24827 (24827) [000] d..2 24575.773558: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107263          <idle>-0     (-----) [000] d..1 24575.773575: cpu_idle: state=0 cpu_id=0
107264  Binder:23896_5-25989 (23896) [001] d..2 24575.773580: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
107265    RenderThread-25194 (24827) [001] d..2 24575.773609: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107266          <idle>-0     (-----) [001] d..1 24575.773626: cpu_idle: state=0 cpu_id=1
107267          <idle>-0     (-----) [000] d..2 24575.775037: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
107268          <idle>-0     (-----) [000] dn.3 24575.775049: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
107269          <idle>-0     (-----) [000] .n.1 24575.775054: cpu_idle: state=4294967295 cpu_id=0
107270          <idle>-0     (-----) [000] d..2 24575.775068: 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
107271     ksoftirqd/0-3     (    3) [000] d.s2 24575.775078: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
107272     ksoftirqd/0-3     (    3) [000] d.s3 24575.775121: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
107273     ksoftirqd/0-3     (    3) [000] d..2 24575.775138: 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
107274  kworker/u16:10-23868 (23868) [000] d..2 24575.775400: 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
107275          <idle>-0     (-----) [000] d..1 24575.775416: cpu_idle: state=0 cpu_id=0
107276          <idle>-0     (-----) [003] d.s3 24575.775437: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
107277          <idle>-0     (-----) [003] d.s4 24575.775450: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
107278          <idle>-0     (-----) [003] d.s4 24575.775460: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
107279          <idle>-0     (-----) [000] .n.1 24575.775467: cpu_idle: state=4294967295 cpu_id=0
107280          <idle>-0     (-----) [003] ...1 24575.775472: cpu_idle: state=4294967295 cpu_id=3
107281          <idle>-0     (-----) [003] d..1 24575.775479: cpu_idle: state=0 cpu_id=3
107282          <idle>-0     (-----) [000] d..2 24575.775481: 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
107283  kworker/u16:10-23868 (23868) [000] d..2 24575.775575: 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
107284          <idle>-0     (-----) [000] d..1 24575.775590: cpu_idle: state=0 cpu_id=0
107285          <idle>-0     (-----) [001] d.h2 24575.776024: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
107286          <idle>-0     (-----) [001] dnh3 24575.776040: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
107287          <idle>-0     (-----) [001] .n.1 24575.776051: cpu_idle: state=4294967295 cpu_id=1
107288          <idle>-0     (-----) [001] d..2 24575.776063: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
107289        DispSync-23904 (23896) [001] d..1 24575.776085: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
107290        DispSync-23904 (23896) [001] d..2 24575.776100: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
107291          <idle>-0     (-----) [002] .n.1 24575.776106: cpu_idle: state=4294967295 cpu_id=2
107292          <idle>-0     (-----) [002] d..2 24575.776119: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
107293        DispSync-23904 (23896) [001] d..2 24575.776137: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107294          <idle>-0     (-----) [001] d..1 24575.776152: cpu_idle: state=0 cpu_id=1
107295   sfEventThread-23906 (23896) [002] d..3 24575.776177: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
107296   sfEventThread-23906 (23896) [002] d..4 24575.776202: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
107297          <idle>-0     (-----) [001] .n.1 24575.776208: cpu_idle: state=4294967295 cpu_id=1
107298          <idle>-0     (-----) [001] d..2 24575.776220: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
107299   sfEventThread-23906 (23896) [002] d..2 24575.776241: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107300          <idle>-0     (-----) [002] d..1 24575.776253: cpu_idle: state=0 cpu_id=2
107301  surfaceflinger-23896 (23896) [001] d..1 24575.776431: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
107302  surfaceflinger-23896 (23896) [001] d..2 24575.776466: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
107303          <idle>-0     (-----) [000] .n.1 24575.776472: cpu_idle: state=4294967295 cpu_id=0
107304          <idle>-0     (-----) [000] d..2 24575.776485: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
107305  Binder:23896_5-25989 (23896) [000] d..2 24575.776524: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107306          <idle>-0     (-----) [000] d..1 24575.776538: cpu_idle: state=0 cpu_id=0
107307  surfaceflinger-23896 (23896) [001] d..1 24575.776657: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
107308  surfaceflinger-23896 (23896) [001] d..2 24575.776681: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
107309          <idle>-0     (-----) [002] .n.1 24575.776688: cpu_idle: state=4294967295 cpu_id=2
107310          <idle>-0     (-----) [002] d..2 24575.776697: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
107311   sfEventThread-23906 (23896) [002] d..2 24575.776738: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107312          <idle>-0     (-----) [002] d..1 24575.776747: cpu_idle: state=0 cpu_id=2
107313  surfaceflinger-23896 (23896) [001] ...1 24575.776918: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
107314  surfaceflinger-23896 (23896) [001] ...1 24575.776927: tracing_mark_write: E|23896
107315  surfaceflinger-23896 (23896) [001] .... 24575.776995: binder_transaction: transaction=1671415 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
107316  surfaceflinger-23896 (23896) [001] ...2 24575.777029: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
107317  surfaceflinger-23896 (23896) [001] d..4 24575.777036: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
107318  surfaceflinger-23896 (23896) [001] d..5 24575.777060: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
107319          <idle>-0     (-----) [002] .n.1 24575.777065: cpu_idle: state=4294967295 cpu_id=2
107320          <idle>-0     (-----) [002] d..2 24575.777074: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
107321  HwBinder:598_3-633   (  598) [002] .... 24575.777086: binder_transaction_received: transaction=1671415
107322  surfaceflinger-23896 (23896) [001] d..2 24575.777096: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107323          <idle>-0     (-----) [001] d..1 24575.777115: cpu_idle: state=0 cpu_id=1
107324  HwBinder:598_3-633   (  598) [002] ...1 24575.777141: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
107325  HwBinder:598_3-633   (  598) [002] ...1 24575.777319: tracing_mark_write: B|598|HWCSession::PresentDisplay::
107326  HwBinder:598_3-633   (  598) [002] d.H2 24575.777697: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
107327  HwBinder:598_3-633   (  598) [002] d.H2 24575.777718: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
107328          <idle>-0     (-----) [005] dnh2 24575.777722: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
107329          <idle>-0     (-----) [005] .n.1 24575.777727: cpu_idle: state=4294967295 cpu_id=5
107330          <idle>-0     (-----) [005] d..2 24575.777732: 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
107331  HwBinder:598_3-633   (  598) [002] d.H3 24575.777745: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
107332          <idle>-0     (-----) [003] .n.1 24575.777750: cpu_idle: state=4294967295 cpu_id=3
107333         sugov:4-560   (  560) [005] d..2 24575.777750: 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
107334  HwBinder:598_3-633   (  598) [002] d.s1 24575.777752: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
107335          <idle>-0     (-----) [005] d..1 24575.777757: cpu_idle: state=0 cpu_id=5
107336          <idle>-0     (-----) [003] d..2 24575.777762: 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
107337  HwBinder:598_3-633   (  598) [002] d.s2 24575.777794: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
107338         sugov:0-559   (  559) [003] .... 24575.777809: clk_set_rate: pwrcl_clk 902400000
107339  HwBinder:598_3-633   (  598) [002] ...1 24575.777821: tracing_mark_write: B|598|HWDeviceDRM::Commit::
107340         sugov:0-559   (  559) [003] .... 24575.777832: clk_set_rate: cpu3_pwrcl_clk 825600000
107341  HwBinder:598_3-633   (  598) [002] ...1 24575.777838: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
107342         sugov:0-559   (  559) [003] .... 24575.777845: clk_set_rate: cpu2_pwrcl_clk 825600000
107343         sugov:0-559   (  559) [003] .... 24575.777854: clk_set_rate: cpu1_pwrcl_clk 825600000
107344         sugov:0-559   (  559) [003] .... 24575.777864: clk_set_rate: cpu0_pwrcl_clk 902400000
107345         sugov:0-559   (  559) [003] .... 24575.777876: cpu_frequency: state=902400 cpu_id=0
107346         sugov:0-559   (  559) [003] .... 24575.777910: cpu_frequency: state=902400 cpu_id=1
107347         sugov:0-559   (  559) [003] .... 24575.777914: cpu_frequency: state=902400 cpu_id=2
107348         sugov:0-559   (  559) [003] .... 24575.777918: cpu_frequency: state=902400 cpu_id=3
107349         sugov:0-559   (  559) [003] d..2 24575.777940: 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
107350     rcu_preempt-7     (    7) [003] d..2 24575.777978: 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
107351          <idle>-0     (-----) [003] d..1 24575.777993: cpu_idle: state=0 cpu_id=3
107352          <idle>-0     (-----) [000] ...1 24575.778099: cpu_idle: state=4294967295 cpu_id=0
107353          <idle>-0     (-----) [000] d..1 24575.778104: cpu_idle: state=0 cpu_id=0
107354  HwBinder:598_3-633   (  598) [002] d..2 24575.778554: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
107355  HwBinder:598_3-633   (  598) [002] d..3 24575.778581: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
107356          <idle>-0     (-----) [003] .n.1 24575.778586: cpu_idle: state=4294967295 cpu_id=3
107357          <idle>-0     (-----) [003] d..2 24575.778597: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
107358  HwBinder:598_3-633   (  598) [002] ...1 24575.778699: tracing_mark_write: E|598
107359  HwBinder:598_3-633   (  598) [002] ...1 24575.778705: tracing_mark_write: E|598
107360          <idle>-0     (-----) [005] ...1 24575.778767: cpu_idle: state=4294967295 cpu_id=5
107361          <idle>-0     (-----) [005] d..1 24575.778770: cpu_idle: state=0 cpu_id=5
107362  HwBinder:598_3-633   (  598) [002] ...1 24575.778780: tracing_mark_write: E|598
107363  HwBinder:598_3-633   (  598) [002] ...1 24575.778838: tracing_mark_write: E|598
107364  HwBinder:598_3-633   (  598) [002] .... 24575.778858: binder_transaction: transaction=1671416 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
107365  HwBinder:598_3-633   (  598) [002] d..2 24575.778886: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
107366  HwBinder:598_3-633   (  598) [002] d..3 24575.778907: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
107367  HwBinder:598_3-633   (  598) [002] .... 24575.778913: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
107368          <idle>-0     (-----) [001] .n.1 24575.778913: cpu_idle: state=4294967295 cpu_id=1
107369          <idle>-0     (-----) [001] d..2 24575.778926: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
107370  surfaceflinger-23896 (23896) [001] .... 24575.778936: binder_transaction_received: transaction=1671416
107371  HwBinder:598_3-633   (  598) [002] d..2 24575.779006: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107372          <idle>-0     (-----) [002] d..1 24575.779026: cpu_idle: state=0 cpu_id=2
107373  surfaceflinger-23896 (23896) [001] d..1 24575.779207: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
107374  surfaceflinger-23896 (23896) [001] d..2 24575.779235: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
107375          <idle>-0     (-----) [000] .n.1 24575.779239: cpu_idle: state=4294967295 cpu_id=0
107376          <idle>-0     (-----) [000] d..2 24575.779252: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
107377  Binder:23896_5-25989 (23896) [000] .... 24575.779321: binder_transaction: transaction=1671417 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
107378  Binder:23896_5-25989 (23896) [000] d..2 24575.779337: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
107379  Binder:23896_5-25989 (23896) [000] d..3 24575.779363: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
107380  Binder:23896_5-25989 (23896) [000] .... 24575.779368: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
107381  surfaceflinger-23896 (23896) [001] d..2 24575.779421: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107382  Binder:23896_5-25989 (23896) [000] d..2 24575.779430: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
107383    RenderThread-25194 (24827) [000] .... 24575.779439: binder_transaction_received: transaction=1671417
107384          <idle>-0     (-----) [001] d..1 24575.779441: cpu_idle: state=0 cpu_id=1
107385 crtc_commit:111-253   (  253) [003] d..2 24575.779444: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
107386          <idle>-0     (-----) [003] d..1 24575.779458: cpu_idle: state=0 cpu_id=3
107387    RenderThread-25194 (24827) [000] d.s2 24575.780930: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
107388    RenderThread-25194 (24827) [000] d.s3 24575.780958: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
107389    RenderThread-25194 (24827) [000] .... 24575.782049: binder_transaction: transaction=1671418 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
107390    RenderThread-25194 (24827) [000] ...2 24575.782065: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
107391    RenderThread-25194 (24827) [000] d..4 24575.782070: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
107392    RenderThread-25194 (24827) [000] d..5 24575.782103: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
107393          <idle>-0     (-----) [001] .n.1 24575.782110: cpu_idle: state=4294967295 cpu_id=1
107394    RenderThread-25194 (24827) [000] d..2 24575.782123: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
107395          <idle>-0     (-----) [001] d..2 24575.782126: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
107396  Binder:23896_5-25989 (23896) [001] .... 24575.782135: binder_transaction_received: transaction=1671418
107397  Binder:23896_5-25989 (23896) [001] .... 24575.782283: binder_transaction: transaction=1671419 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
107398  Binder:23896_5-25989 (23896) [001] d..2 24575.782293: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
107399  Binder:23896_5-25989 (23896) [001] d..3 24575.782318: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
107400  Binder:23896_5-25989 (23896) [001] .... 24575.782324: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
107401  kworker/u16:10-23868 (23868) [000] d..2 24575.782369: 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
107402  Binder:23896_5-25989 (23896) [001] d..2 24575.782378: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
107403          <idle>-0     (-----) [003] d.s3 24575.782386: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
107404    RenderThread-25194 (24827) [001] .... 24575.782387: binder_transaction_received: transaction=1671419
107405          <idle>-0     (-----) [000] d..1 24575.782391: cpu_idle: state=0 cpu_id=0
107406          <idle>-0     (-----) [003] d.s4 24575.782425: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
107407          <idle>-0     (-----) [003] dns4 24575.782431: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
107408          <idle>-0     (-----) [003] .n.1 24575.782440: cpu_idle: state=4294967295 cpu_id=3
107409          <idle>-0     (-----) [003] d..2 24575.782454: 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
107410  kworker/u16:10-23868 (23868) [003] d..2 24575.782494: 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
107411    RenderThread-25194 (24827) [001] d..2 24575.782498: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107412          <idle>-0     (-----) [003] d..1 24575.782504: cpu_idle: state=0 cpu_id=3
107413          <idle>-0     (-----) [001] d..1 24575.782516: cpu_idle: state=0 cpu_id=1
107414          <idle>-0     (-----) [000] d.h5 24575.783972: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
107415          <idle>-0     (-----) [000] dnh6 24575.783990: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
107416          <idle>-0     (-----) [000] dnh5 24575.783997: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
107417          <idle>-0     (-----) [000] dnh6 24575.784011: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
107418          <idle>-0     (-----) [003] .n.1 24575.784017: cpu_idle: state=4294967295 cpu_id=3
107419          <idle>-0     (-----) [003] d..2 24575.784025: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
107420          <idle>-0     (-----) [000] .n.1 24575.784029: cpu_idle: state=4294967295 cpu_id=0
107421          <idle>-0     (-----) [000] d..2 24575.784040: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
107422  crtc_event:111-254   (  254) [000] d..3 24575.784058: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
107423  crtc_event:111-254   (  254) [000] d..4 24575.784073: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
107424          <idle>-0     (-----) [001] .n.1 24575.784080: cpu_idle: state=4294967295 cpu_id=1
107425          <idle>-0     (-----) [001] d..2 24575.784093: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
107426  crtc_event:111-254   (  254) [000] d..2 24575.784098: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107427          <idle>-0     (-----) [000] d..1 24575.784112: cpu_idle: state=0 cpu_id=0
107428 crtc_commit:111-253   (  253) [003] d..2 24575.784197: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
107429          <idle>-0     (-----) [003] d..1 24575.784207: cpu_idle: state=0 cpu_id=3
107430          <idle>-0     (-----) [003] d.s3 24575.784245: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
107431          <idle>-0     (-----) [003] d.s4 24575.784264: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
107432          <idle>-0     (-----) [003] d.s2 24575.784268: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
107433          <idle>-0     (-----) [000] .n.1 24575.784270: cpu_idle: state=4294967295 cpu_id=0
107434          <idle>-0     (-----) [000] d..2 24575.784283: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
107435          <idle>-0     (-----) [003] dns3 24575.784284: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
107436          <idle>-0     (-----) [003] dns3 24575.784290: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
107437  crtc_event:111-254   (  254) [000] d..2 24575.784315: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107438          <idle>-0     (-----) [000] d..1 24575.784325: cpu_idle: state=0 cpu_id=0
107439          <idle>-0     (-----) [003] dns4 24575.784330: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
107440          <idle>-0     (-----) [000] .n.1 24575.784336: cpu_idle: state=4294967295 cpu_id=0
107441          <idle>-0     (-----) [000] d..2 24575.784348: 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
107442          <idle>-0     (-----) [003] .n.1 24575.784352: cpu_idle: state=4294967295 cpu_id=3
107443 kgsl_worker_thr-246   (  246) [001] d..2 24575.784354: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
107444          <idle>-0     (-----) [003] d..2 24575.784363: 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
107445          <idle>-0     (-----) [001] d..1 24575.784367: cpu_idle: state=0 cpu_id=1
107446     rcu_preempt-7     (    7) [003] d..2 24575.784373: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
107447          <idle>-0     (-----) [001] ...1 24575.784386: cpu_idle: state=4294967295 cpu_id=1
107448          <idle>-0     (-----) [001] d..1 24575.784391: cpu_idle: state=0 cpu_id=1
107449     rcu_preempt-7     (    7) [003] d..3 24575.784412: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
107450     rcu_preempt-7     (    7) [003] d..2 24575.784432: 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
107451          <idle>-0     (-----) [001] d.h2 24575.784438: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
107452         rcuop/0-10    (   10) [003] d..2 24575.784444: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
107453          <idle>-0     (-----) [001] dnh3 24575.784452: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
107454          <idle>-0     (-----) [001] .n.1 24575.784460: cpu_idle: state=4294967295 cpu_id=1
107455          <idle>-0     (-----) [001] d..2 24575.784470: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
107456         rcuop/0-10    (   10) [003] d..3 24575.784479: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
107457         rcuop/0-10    (   10) [003] d..2 24575.784490: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
107458 kgsl_worker_thr-246   (  246) [001] d..2 24575.784494: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
107459         rcuop/0-10    (   10) [003] d..3 24575.784507: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
107460         rcuop/0-10    (   10) [003] d..2 24575.784517: 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
107461 kgsl_worker_thr-246   (  246) [001] d..3 24575.784533: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
107462         rcuop/1-21    (   21) [003] d..2 24575.784544: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
107463 kgsl_worker_thr-246   (  246) [001] d..2 24575.784570: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107464          <idle>-0     (-----) [001] d..1 24575.784581: cpu_idle: state=0 cpu_id=1
107465  kworker/u16:10-23868 (23868) [000] d..2 24575.784982: 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
107466          <idle>-0     (-----) [000] d..1 24575.784998: cpu_idle: state=0 cpu_id=0
107467  kworker/u16:16-25995 (25995) [003] d..2 24575.785136: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
107468     rcu_preempt-7     (    7) [003] d..2 24575.785164: 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
107469          <idle>-0     (-----) [003] d..1 24575.785180: cpu_idle: state=0 cpu_id=3
107470          <idle>-0     (-----) [003] d.s3 24575.785632: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
107471          <idle>-0     (-----) [003] d.s4 24575.785647: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
107472          <idle>-0     (-----) [003] dns4 24575.785654: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
107473          <idle>-0     (-----) [003] .n.1 24575.785663: cpu_idle: state=4294967295 cpu_id=3
107474          <idle>-0     (-----) [003] d..2 24575.785676: 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
107475  kworker/u16:16-25995 (25995) [003] d..2 24575.785708: 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
107476          <idle>-0     (-----) [003] d..1 24575.785719: cpu_idle: state=0 cpu_id=3
107477          <idle>-0     (-----) [000] d.h3 24575.786015: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
107478          <idle>-0     (-----) [000] d.h4 24575.786034: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
107479          <idle>-0     (-----) [001] .n.1 24575.786040: cpu_idle: state=4294967295 cpu_id=1
107480          <idle>-0     (-----) [001] d..2 24575.786051: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
107481          <idle>-0     (-----) [000] ...1 24575.786053: cpu_idle: state=4294967295 cpu_id=0
107482          <idle>-0     (-----) [000] d..1 24575.786059: cpu_idle: state=0 cpu_id=0
107483 kgsl_worker_thr-246   (  246) [001] d..2 24575.786123: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107484          <idle>-0     (-----) [001] d..1 24575.786135: cpu_idle: state=0 cpu_id=1
107485          <idle>-0     (-----) [000] d.h5 24575.786294: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
107486          <idle>-0     (-----) [000] d.h6 24575.786310: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
107487          <idle>-0     (-----) [003] .n.1 24575.786316: cpu_idle: state=4294967295 cpu_id=3
107488          <idle>-0     (-----) [000] ...1 24575.786325: cpu_idle: state=4294967295 cpu_id=0
107489          <idle>-0     (-----) [003] d..2 24575.786327: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
107490          <idle>-0     (-----) [000] d..1 24575.786332: cpu_idle: state=0 cpu_id=0
107491 crtc_commit:111-253   (  253) [003] d..2 24575.786413: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
107492          <idle>-0     (-----) [003] d..1 24575.786425: cpu_idle: state=0 cpu_id=3
107493          <idle>-0     (-----) [000] d.h5 24575.786600: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
107494          <idle>-0     (-----) [000] dnh6 24575.786611: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
107495          <idle>-0     (-----) [000] .n.1 24575.786629: cpu_idle: state=4294967295 cpu_id=0
107496          <idle>-0     (-----) [000] d..2 24575.786639: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
107497  crtc_event:111-254   (  254) [000] d..2 24575.786667: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107498          <idle>-0     (-----) [000] d..1 24575.786678: cpu_idle: state=0 cpu_id=0
107499          <idle>-0     (-----) [000] d..2 24575.787993: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
107500          <idle>-0     (-----) [000] dn.3 24575.788007: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
107501          <idle>-0     (-----) [000] .n.1 24575.788010: cpu_idle: state=4294967295 cpu_id=0
107502          <idle>-0     (-----) [000] d..2 24575.788024: 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
107503     ksoftirqd/0-3     (    3) [000] d..2 24575.788055: 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
107504          <idle>-0     (-----) [000] d..1 24575.788065: cpu_idle: state=0 cpu_id=0
107505          <idle>-0     (-----) [001] d.h2 24575.788479: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
107506          <idle>-0     (-----) [001] dnh3 24575.788495: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
107507          <idle>-0     (-----) [001] .n.1 24575.788503: cpu_idle: state=4294967295 cpu_id=1
107508          <idle>-0     (-----) [001] d..2 24575.788515: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
107509        DispSync-23904 (23896) [001] d..1 24575.788538: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
107510        DispSync-23904 (23896) [001] d..2 24575.788556: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
107511          <idle>-0     (-----) [003] .n.1 24575.788561: cpu_idle: state=4294967295 cpu_id=3
107512          <idle>-0     (-----) [003] d..2 24575.788573: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
107513        DispSync-23904 (23896) [001] d..2 24575.788590: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107514          <idle>-0     (-----) [001] d..1 24575.788602: cpu_idle: state=0 cpu_id=1
107515  appEventThread-23905 (23896) [003] d..3 24575.788622: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
107516  appEventThread-23905 (23896) [003] d..4 24575.788649: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
107517          <idle>-0     (-----) [000] .n.1 24575.788654: cpu_idle: state=4294967295 cpu_id=0
107518          <idle>-0     (-----) [000] d..2 24575.788667: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
107519  appEventThread-23905 (23896) [003] d..2 24575.788689: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
107520          <idle>-0     (-----) [003] d..1 24575.788700: cpu_idle: state=0 cpu_id=3
107521 s.nexuslauncher-24827 (24827) [000] .... 24575.789071: binder_transaction: transaction=1671420 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
107522 s.nexuslauncher-24827 (24827) [000] d..4 24575.789082: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
107523 s.nexuslauncher-24827 (24827) [000] d..5 24575.789107: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
107524          <idle>-0     (-----) [001] .n.1 24575.789113: cpu_idle: state=4294967295 cpu_id=1
107525          <idle>-0     (-----) [001] d..2 24575.789126: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
107526  Binder:23896_5-25989 (23896) [001] .... 24575.789134: binder_transaction_received: transaction=1671420
107527 s.nexuslauncher-24827 (24827) [000] d..3 24575.789147: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
107528  Binder:23896_5-25989 (23896) [001] d..1 24575.789167: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
107529 s.nexuslauncher-24827 (24827) [000] d..4 24575.789177: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
107530          <idle>-0     (-----) [002] .n.1 24575.789185: cpu_idle: state=4294967295 cpu_id=2
107531  Binder:23896_5-25989 (23896) [001] d..2 24575.789185: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
107532          <idle>-0     (-----) [003] .n.1 24575.789191: cpu_idle: state=4294967295 cpu_id=3
107533          <idle>-0     (-----) [003] d..2 24575.789199: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
107534          <idle>-0     (-----) [002] d..2 24575.789201: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
107535  Binder:23896_5-25989 (23896) [001] d..2 24575.789230: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107536  appEventThread-23905 (23896) [003] d..2 24575.789239: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
107537          <idle>-0     (-----) [001] d..1 24575.789243: cpu_idle: state=0 cpu_id=1
107538          <idle>-0     (-----) [003] d..1 24575.789248: cpu_idle: state=0 cpu_id=3
107539    RenderThread-25194 (24827) [002] d..2 24575.789266: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107540          <idle>-0     (-----) [002] d..1 24575.789279: cpu_idle: state=0 cpu_id=2
107541 s.nexuslauncher-24827 (24827) [000] d..3 24575.789568: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
107542 s.nexuslauncher-24827 (24827) [000] d..4 24575.789605: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
107543          <idle>-0     (-----) [001] .n.1 24575.789611: cpu_idle: state=4294967295 cpu_id=1
107544          <idle>-0     (-----) [001] d..2 24575.789623: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
107545 s.nexuslauncher-24827 (24827) [000] d..2 24575.789644: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107546          <idle>-0     (-----) [000] d..1 24575.789664: cpu_idle: state=0 cpu_id=0
107547    RenderThread-25194 (24827) [001] d..1 24575.789861: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
107548    RenderThread-25194 (24827) [001] d..2 24575.789884: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
107549          <idle>-0     (-----) [000] .n.1 24575.789892: cpu_idle: state=4294967295 cpu_id=0
107550          <idle>-0     (-----) [000] d..2 24575.789906: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
107551    RenderThread-25194 (24827) [001] .... 24575.789947: binder_transaction: transaction=1671421 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
107552    RenderThread-25194 (24827) [001] ...2 24575.789957: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
107553    RenderThread-25194 (24827) [001] d..4 24575.789961: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
107554    RenderThread-25194 (24827) [001] dn.5 24575.789980: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
107555    RenderThread-25194 (24827) [001] d..2 24575.789991: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
107556  Binder:23896_5-25989 (23896) [001] .... 24575.789999: binder_transaction_received: transaction=1671421
107557 s.nexuslauncher-24827 (24827) [000] d..2 24575.790030: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107558  Binder:23896_5-25989 (23896) [001] d..2 24575.790046: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
107559          <idle>-0     (-----) [000] d..1 24575.790046: cpu_idle: state=0 cpu_id=0
107560    RenderThread-25194 (24827) [001] d..2 24575.790076: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107561          <idle>-0     (-----) [001] d..1 24575.790093: cpu_idle: state=0 cpu_id=1
107562          <idle>-0     (-----) [003] d.s2 24575.790910: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
107563          <idle>-0     (-----) [003] dns3 24575.790928: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
107564          <idle>-0     (-----) [003] .n.1 24575.790943: cpu_idle: state=4294967295 cpu_id=3
107565          <idle>-0     (-----) [003] d..2 24575.790953: 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
107566     rcu_preempt-7     (    7) [003] d..2 24575.790965: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
107567     rcu_preempt-7     (    7) [003] d..3 24575.790981: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
107568     rcu_preempt-7     (    7) [003] d..2 24575.790993: 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
107569         rcuop/0-10    (   10) [003] d..2 24575.790998: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
107570         rcuop/0-10    (   10) [003] d..3 24575.791011: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
107571         rcuop/0-10    (   10) [003] d..2 24575.791020: 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
107572         rcuop/1-21    (   21) [003] d..2 24575.791053: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
107573          <idle>-0     (-----) [003] d..1 24575.791069: cpu_idle: state=0 cpu_id=3
107574          <idle>-0     (-----) [000] ...1 24575.791449: cpu_idle: state=4294967295 cpu_id=0
107575          <idle>-0     (-----) [000] d..1 24575.791454: cpu_idle: state=0 cpu_id=0
107576          <idle>-0     (-----) [001] d.h2 24575.792487: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
107577          <idle>-0     (-----) [001] dnh3 24575.792503: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
107578          <idle>-0     (-----) [001] .n.1 24575.792513: cpu_idle: state=4294967295 cpu_id=1
107579          <idle>-0     (-----) [001] d..2 24575.792525: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
107580        DispSync-23904 (23896) [001] d..1 24575.792544: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
107581        DispSync-23904 (23896) [001] d..2 24575.792562: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
107582          <idle>-0     (-----) [002] .n.1 24575.792569: cpu_idle: state=4294967295 cpu_id=2
107583          <idle>-0     (-----) [002] d..2 24575.792580: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
107584        DispSync-23904 (23896) [001] d..2 24575.792596: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107585          <idle>-0     (-----) [001] d..1 24575.792611: cpu_idle: state=0 cpu_id=1
107586   sfEventThread-23906 (23896) [002] d..3 24575.792633: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
107587   sfEventThread-23906 (23896) [002] d..4 24575.792656: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
107588          <idle>-0     (-----) [001] .n.1 24575.792661: cpu_idle: state=4294967295 cpu_id=1
107589          <idle>-0     (-----) [001] d..2 24575.792673: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
107590   sfEventThread-23906 (23896) [002] d..2 24575.792693: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107591          <idle>-0     (-----) [002] d..1 24575.792707: cpu_idle: state=0 cpu_id=2
107592          <idle>-0     (-----) [003] ...1 24575.792863: cpu_idle: state=4294967295 cpu_id=3
107593          <idle>-0     (-----) [003] d..1 24575.792868: cpu_idle: state=0 cpu_id=3
107594  surfaceflinger-23896 (23896) [001] d..1 24575.792887: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
107595  surfaceflinger-23896 (23896) [001] d..2 24575.792920: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
107596          <idle>-0     (-----) [000] .n.1 24575.792924: cpu_idle: state=4294967295 cpu_id=0
107597          <idle>-0     (-----) [000] d..2 24575.792940: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
107598  Binder:23896_5-25989 (23896) [000] d..2 24575.792979: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107599          <idle>-0     (-----) [000] d..1 24575.792992: cpu_idle: state=0 cpu_id=0
107600  surfaceflinger-23896 (23896) [001] d..2 24575.793075: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
107601  surfaceflinger-23896 (23896) [001] d..3 24575.793123: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
107602  surfaceflinger-23896 (23896) [001] d..1 24575.793155: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
107603  surfaceflinger-23896 (23896) [001] d..2 24575.793176: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
107604          <idle>-0     (-----) [002] .n.1 24575.793182: cpu_idle: state=4294967295 cpu_id=2
107605          <idle>-0     (-----) [002] d..2 24575.793193: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
107606   sfEventThread-23906 (23896) [002] d..2 24575.793255: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
107607         rcuop/0-10    (   10) [002] d..2 24575.793263: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
107608         rcuop/0-10    (   10) [002] d..3 24575.793302: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
107609         rcuop/0-10    (   10) [002] d..2 24575.793313: 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
107610     rcu_preempt-7     (    7) [002] d..2 24575.793336: 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
107611          <idle>-0     (-----) [002] d..1 24575.793349: cpu_idle: state=0 cpu_id=2
107612  surfaceflinger-23896 (23896) [001] ...1 24575.793382: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
107613  surfaceflinger-23896 (23896) [001] ...1 24575.793393: tracing_mark_write: E|23896
107614  surfaceflinger-23896 (23896) [001] .... 24575.793468: binder_transaction: transaction=1671422 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
107615  surfaceflinger-23896 (23896) [001] ...2 24575.793499: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
107616  surfaceflinger-23896 (23896) [001] d..4 24575.793509: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
107617  surfaceflinger-23896 (23896) [001] d..5 24575.793529: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
107618          <idle>-0     (-----) [002] .n.1 24575.793535: cpu_idle: state=4294967295 cpu_id=2
107619          <idle>-0     (-----) [002] d..2 24575.793546: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
107620  HwBinder:598_3-633   (  598) [002] .... 24575.793559: binder_transaction_received: transaction=1671422
107621  surfaceflinger-23896 (23896) [001] d..2 24575.793563: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107622          <idle>-0     (-----) [001] d..1 24575.793582: cpu_idle: state=0 cpu_id=1
107623  HwBinder:598_3-633   (  598) [002] ...1 24575.793612: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
107624  HwBinder:598_3-633   (  598) [002] ...1 24575.793768: tracing_mark_write: B|598|HWCSession::PresentDisplay::
107625  HwBinder:598_3-633   (  598) [002] ...1 24575.793989: tracing_mark_write: B|598|HWDeviceDRM::Commit::
107626  HwBinder:598_3-633   (  598) [002] ...1 24575.794004: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
107627  HwBinder:598_3-633   (  598) [002] d.s2 24575.794258: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
107628  HwBinder:598_3-633   (  598) [002] d.s3 24575.794304: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
107629  HwBinder:598_3-633   (  598) [002] d..2 24575.794841: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
107630  HwBinder:598_3-633   (  598) [002] d..3 24575.794867: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
107631          <idle>-0     (-----) [003] .n.1 24575.794871: cpu_idle: state=4294967295 cpu_id=3
107632          <idle>-0     (-----) [003] d..2 24575.794886: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
107633  HwBinder:598_3-633   (  598) [002] ...1 24575.794986: tracing_mark_write: E|598
107634  HwBinder:598_3-633   (  598) [002] ...1 24575.794993: tracing_mark_write: E|598
107635  HwBinder:598_3-633   (  598) [002] ...1 24575.795064: tracing_mark_write: E|598
107636  HwBinder:598_3-633   (  598) [002] ...1 24575.795123: tracing_mark_write: E|598
107637  HwBinder:598_3-633   (  598) [002] .... 24575.795141: binder_transaction: transaction=1671423 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
107638  HwBinder:598_3-633   (  598) [002] d..2 24575.795169: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
107639  HwBinder:598_3-633   (  598) [002] d..3 24575.795190: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
107640  HwBinder:598_3-633   (  598) [002] .... 24575.795195: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
107641          <idle>-0     (-----) [001] .n.1 24575.795196: cpu_idle: state=4294967295 cpu_id=1
107642          <idle>-0     (-----) [001] d..2 24575.795209: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
107643  surfaceflinger-23896 (23896) [001] .... 24575.795219: binder_transaction_received: transaction=1671423
107644  HwBinder:598_3-633   (  598) [002] d..2 24575.795275: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
107645  surfaceflinger-23896 (23896) [001] d..1 24575.795498: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
107646  surfaceflinger-23896 (23896) [001] d..2 24575.795523: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
107647          <idle>-0     (-----) [000] .n.1 24575.795528: cpu_idle: state=4294967295 cpu_id=0
107648          <idle>-0     (-----) [000] d..2 24575.795542: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
107649  kworker/u16:16-25995 (25995) [002] d..2 24575.795546: 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
107650 crtc_commit:111-253   (  253) [003] d.s1 24575.795551: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
107651          <idle>-0     (-----) [002] d..1 24575.795560: cpu_idle: state=0 cpu_id=2
107652 crtc_commit:111-253   (  253) [003] d.s2 24575.795570: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
107653  Binder:23896_5-25989 (23896) [000] .... 24575.795607: binder_transaction: transaction=1671424 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
107654  Binder:23896_5-25989 (23896) [000] d..2 24575.795621: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
107655  Binder:23896_5-25989 (23896) [000] d..3 24575.795646: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
107656  Binder:23896_5-25989 (23896) [000] .... 24575.795651: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
107657  surfaceflinger-23896 (23896) [001] d..2 24575.795705: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107658  Binder:23896_5-25989 (23896) [000] d..2 24575.795710: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
107659    RenderThread-25194 (24827) [000] .... 24575.795719: binder_transaction_received: transaction=1671424
107660          <idle>-0     (-----) [001] d..1 24575.795724: cpu_idle: state=0 cpu_id=1
107661 crtc_commit:111-253   (  253) [003] d..2 24575.795783: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
107662     ksoftirqd/3-34    (   34) [003] d.s2 24575.795799: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
107663     ksoftirqd/3-34    (   34) [003] d.s3 24575.795811: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
107664     ksoftirqd/3-34    (   34) [003] d.s3 24575.795822: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
107665          <idle>-0     (-----) [002] .n.1 24575.795827: cpu_idle: state=4294967295 cpu_id=2
107666          <idle>-0     (-----) [002] d..2 24575.795838: 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
107667     ksoftirqd/3-34    (   34) [003] d..2 24575.795849: 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
107668          <idle>-0     (-----) [003] d..1 24575.795865: cpu_idle: state=0 cpu_id=3
107669  kworker/u16:16-25995 (25995) [002] .... 24575.795939: clk_set_rate: l3_cluster0_vote_clk 300000000
107670  kworker/u16:16-25995 (25995) [002] .... 24575.795950: clk_set_rate: l3_clk 300000000
107671  kworker/u16:16-25995 (25995) [002] d..2 24575.796019: 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
107672          <idle>-0     (-----) [002] d..1 24575.796029: cpu_idle: state=0 cpu_id=2
107673          <idle>-0     (-----) [002] d.H3 24575.797696: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
107674          <idle>-0     (-----) [002] d.H3 24575.797714: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
107675          <idle>-0     (-----) [005] dnh2 24575.797721: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
107676          <idle>-0     (-----) [005] .n.1 24575.797724: cpu_idle: state=4294967295 cpu_id=5
107677          <idle>-0     (-----) [005] d..2 24575.797729: 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
107678          <idle>-0     (-----) [002] d.H4 24575.797733: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
107679          <idle>-0     (-----) [003] .n.1 24575.797740: cpu_idle: state=4294967295 cpu_id=3
107680          <idle>-0     (-----) [002] d.s2 24575.797742: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
107681         sugov:4-560   (  560) [005] d..2 24575.797742: 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
107682          <idle>-0     (-----) [005] d..1 24575.797749: cpu_idle: state=0 cpu_id=5
107683          <idle>-0     (-----) [003] d..2 24575.797754: 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
107684          <idle>-0     (-----) [002] dns3 24575.797763: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
107685          <idle>-0     (-----) [002] dns3 24575.797769: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
107686         sugov:0-559   (  559) [003] .... 24575.797799: clk_set_rate: pwrcl_clk 979200000
107687          <idle>-0     (-----) [002] dns4 24575.797806: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
107688         sugov:0-559   (  559) [003] .... 24575.797817: clk_set_rate: cpu3_pwrcl_clk 902400000
107689          <idle>-0     (-----) [002] .n.1 24575.797824: cpu_idle: state=4294967295 cpu_id=2
107690         sugov:0-559   (  559) [003] .... 24575.797829: clk_set_rate: cpu2_pwrcl_clk 902400000
107691          <idle>-0     (-----) [002] d..2 24575.797836: 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
107692         sugov:0-559   (  559) [003] .... 24575.797839: clk_set_rate: cpu1_pwrcl_clk 902400000
107693         sugov:0-559   (  559) [003] .... 24575.797849: clk_set_rate: cpu0_pwrcl_clk 979200000
107694         sugov:0-559   (  559) [003] .... 24575.797860: cpu_frequency: state=979200 cpu_id=0
107695     rcu_preempt-7     (    7) [002] d..2 24575.797870: 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
107696          <idle>-0     (-----) [002] d..1 24575.797889: cpu_idle: state=0 cpu_id=2
107697         sugov:0-559   (  559) [003] .... 24575.797891: cpu_frequency: state=979200 cpu_id=1
107698         sugov:0-559   (  559) [003] .... 24575.797897: cpu_frequency: state=979200 cpu_id=2
107699         sugov:0-559   (  559) [003] .... 24575.797901: cpu_frequency: state=979200 cpu_id=3
107700         sugov:0-559   (  559) [003] d..2 24575.797922: 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
107701  kworker/u16:16-25995 (25995) [003] d..2 24575.798009: 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
107702          <idle>-0     (-----) [003] d..1 24575.798023: cpu_idle: state=0 cpu_id=3
107703    RenderThread-25194 (24827) [000] .... 24575.798381: binder_transaction: transaction=1671425 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
107704    RenderThread-25194 (24827) [000] ...2 24575.798398: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
107705    RenderThread-25194 (24827) [000] d..4 24575.798404: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
107706    RenderThread-25194 (24827) [000] dn.5 24575.798427: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
107707    RenderThread-25194 (24827) [000] d..2 24575.798439: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
107708  Binder:23896_5-25989 (23896) [000] .... 24575.798449: binder_transaction_received: transaction=1671425
107709  Binder:23896_5-25989 (23896) [000] .... 24575.798621: binder_transaction: transaction=1671426 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
107710  Binder:23896_5-25989 (23896) [000] .... 24575.798631: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
107711  Binder:23896_5-25989 (23896) [000] d..2 24575.798694: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
107712    RenderThread-25194 (24827) [000] .... 24575.798705: binder_transaction_received: transaction=1671426
107713          <idle>-0     (-----) [005] ...1 24575.798759: cpu_idle: state=4294967295 cpu_id=5
107714          <idle>-0     (-----) [005] d..1 24575.798762: cpu_idle: state=0 cpu_id=5
107715    RenderThread-25194 (24827) [000] d..2 24575.798824: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107716          <idle>-0     (-----) [000] d..1 24575.798847: cpu_idle: state=0 cpu_id=0
107717          <idle>-0     (-----) [000] d.h5 24575.800444: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
107718          <idle>-0     (-----) [000] dnh6 24575.800463: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
107719          <idle>-0     (-----) [000] dnh5 24575.800470: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
107720          <idle>-0     (-----) [000] dnh6 24575.800484: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
107721          <idle>-0     (-----) [003] .n.1 24575.800491: cpu_idle: state=4294967295 cpu_id=3
107722          <idle>-0     (-----) [000] .n.1 24575.800502: cpu_idle: state=4294967295 cpu_id=0
107723          <idle>-0     (-----) [003] d..2 24575.800502: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
107724          <idle>-0     (-----) [000] d..2 24575.800515: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
107725  crtc_event:111-254   (  254) [000] d..3 24575.800534: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
107726  crtc_event:111-254   (  254) [000] d..4 24575.800548: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
107727          <idle>-0     (-----) [001] .n.1 24575.800556: cpu_idle: state=4294967295 cpu_id=1
107728          <idle>-0     (-----) [001] d..2 24575.800572: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
107729  crtc_event:111-254   (  254) [000] d..2 24575.800576: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107730          <idle>-0     (-----) [000] d..1 24575.800590: cpu_idle: state=0 cpu_id=0
107731 crtc_commit:111-253   (  253) [003] d..2 24575.800682: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
107732          <idle>-0     (-----) [003] d..1 24575.800692: cpu_idle: state=0 cpu_id=3
107733 kgsl_worker_thr-246   (  246) [001] d..2 24575.800800: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
107734          <idle>-0     (-----) [001] d..1 24575.800812: cpu_idle: state=0 cpu_id=1
107735          <idle>-0     (-----) [001] d.h2 24575.800893: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
107736          <idle>-0     (-----) [001] dnh3 24575.800910: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
107737          <idle>-0     (-----) [003] d.s3 24575.800914: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
107738          <idle>-0     (-----) [001] .n.1 24575.800920: cpu_idle: state=4294967295 cpu_id=1
107739          <idle>-0     (-----) [001] d..2 24575.800933: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
107740          <idle>-0     (-----) [003] d.s4 24575.800935: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
107741          <idle>-0     (-----) [000] .n.1 24575.800942: cpu_idle: state=4294967295 cpu_id=0
107742          <idle>-0     (-----) [000] d..2 24575.800954: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
107743 kgsl_worker_thr-246   (  246) [001] d..2 24575.800958: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
107744          <idle>-0     (-----) [003] ...1 24575.800961: cpu_idle: state=4294967295 cpu_id=3
107745          <idle>-0     (-----) [003] d..1 24575.800968: cpu_idle: state=0 cpu_id=3
107746  crtc_event:111-254   (  254) [000] d..2 24575.800989: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107747          <idle>-0     (-----) [000] d..1 24575.801000: cpu_idle: state=0 cpu_id=0
107748 kgsl_worker_thr-246   (  246) [001] d..3 24575.801011: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
107749          <idle>-0     (-----) [000] .n.1 24575.801015: cpu_idle: state=4294967295 cpu_id=0
107750          <idle>-0     (-----) [000] d..2 24575.801027: 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
107751 kgsl_worker_thr-246   (  246) [001] d..2 24575.801038: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107752          <idle>-0     (-----) [001] d..1 24575.801050: cpu_idle: state=0 cpu_id=1
107753  kworker/u16:16-25995 (25995) [000] d..2 24575.801457: 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
107754          <idle>-0     (-----) [000] d..1 24575.801472: cpu_idle: state=0 cpu_id=0
107755          <idle>-0     (-----) [000] d.h3 24575.802506: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
107756          <idle>-0     (-----) [000] d.h4 24575.802526: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
107757          <idle>-0     (-----) [001] .n.1 24575.802532: cpu_idle: state=4294967295 cpu_id=1
107758          <idle>-0     (-----) [001] d..2 24575.802542: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
107759          <idle>-0     (-----) [000] ...1 24575.802544: cpu_idle: state=4294967295 cpu_id=0
107760          <idle>-0     (-----) [000] d..1 24575.802549: cpu_idle: state=0 cpu_id=0
107761 kgsl_worker_thr-246   (  246) [001] d..2 24575.802620: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107762          <idle>-0     (-----) [001] d..1 24575.802631: cpu_idle: state=0 cpu_id=1
107763          <idle>-0     (-----) [000] d.h5 24575.802768: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
107764          <idle>-0     (-----) [000] d.h6 24575.802784: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
107765          <idle>-0     (-----) [003] .n.1 24575.802790: cpu_idle: state=4294967295 cpu_id=3
107766          <idle>-0     (-----) [000] ...1 24575.802801: cpu_idle: state=4294967295 cpu_id=0
107767          <idle>-0     (-----) [003] d..2 24575.802802: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
107768          <idle>-0     (-----) [000] d..1 24575.802808: cpu_idle: state=0 cpu_id=0
107769 crtc_commit:111-253   (  253) [003] d..2 24575.802904: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
107770          <idle>-0     (-----) [003] d..1 24575.802917: cpu_idle: state=0 cpu_id=3
107771          <idle>-0     (-----) [000] d.h5 24575.803074: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
107772          <idle>-0     (-----) [000] dnh6 24575.803085: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
107773          <idle>-0     (-----) [000] .n.1 24575.803105: cpu_idle: state=4294967295 cpu_id=0
107774          <idle>-0     (-----) [000] d..2 24575.803115: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
107775  crtc_event:111-254   (  254) [000] d..2 24575.803143: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107776          <idle>-0     (-----) [000] d..1 24575.803155: cpu_idle: state=0 cpu_id=0
107777          <idle>-0     (-----) [002] d.s2 24575.804250: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
107778          <idle>-0     (-----) [002] dns3 24575.804268: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
107779          <idle>-0     (-----) [002] dns3 24575.804273: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
107780          <idle>-0     (-----) [002] dns4 24575.804306: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
107781          <idle>-0     (-----) [002] .n.1 24575.804316: cpu_idle: state=4294967295 cpu_id=2
107782          <idle>-0     (-----) [002] d..2 24575.804329: 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
107783     rcu_preempt-7     (    7) [002] d..2 24575.804338: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
107784     rcu_preempt-7     (    7) [002] d..3 24575.804356: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
107785     rcu_preempt-7     (    7) [002] d..2 24575.804368: 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
107786         rcuop/0-10    (   10) [002] d..2 24575.804373: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
107787         rcuop/0-10    (   10) [002] d..3 24575.804407: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
107788         rcuop/0-10    (   10) [002] d..2 24575.804412: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
107789         rcuop/0-10    (   10) [002] d..3 24575.804423: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
107790         rcuop/0-10    (   10) [002] d..2 24575.804433: 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
107791         rcuop/1-21    (   21) [002] d..2 24575.804446: 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
107792     rcu_preempt-7     (    7) [002] d..2 24575.804460: 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
107793  kworker/u16:16-25995 (25995) [002] .... 24575.804492: clk_set_rate: l3_cluster0_vote_clk 403200000
107794  kworker/u16:16-25995 (25995) [002] .... 24575.804498: clk_set_rate: l3_clk 403200000
107795          <idle>-0     (-----) [000] ...1 24575.804504: cpu_idle: state=4294967295 cpu_id=0
107796          <idle>-0     (-----) [000] d..1 24575.804509: cpu_idle: state=0 cpu_id=0
107797  kworker/u16:16-25995 (25995) [002] d..2 24575.804778: 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
107798          <idle>-0     (-----) [002] d..1 24575.804795: cpu_idle: state=0 cpu_id=2
107799          <idle>-0     (-----) [001] d.h2 24575.804944: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
107800          <idle>-0     (-----) [001] dnh3 24575.804960: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
107801          <idle>-0     (-----) [001] .n.1 24575.804968: cpu_idle: state=4294967295 cpu_id=1
107802          <idle>-0     (-----) [001] d..2 24575.804979: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
107803        DispSync-23904 (23896) [001] d..1 24575.804998: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
107804        DispSync-23904 (23896) [001] d..2 24575.805014: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
107805          <idle>-0     (-----) [003] .n.1 24575.805020: cpu_idle: state=4294967295 cpu_id=3
107806          <idle>-0     (-----) [003] d..2 24575.805031: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
107807        DispSync-23904 (23896) [001] d..2 24575.805047: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107808          <idle>-0     (-----) [001] d..1 24575.805058: cpu_idle: state=0 cpu_id=1
107809  appEventThread-23905 (23896) [003] d..3 24575.805082: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
107810  appEventThread-23905 (23896) [003] d..4 24575.805109: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
107811          <idle>-0     (-----) [000] .n.1 24575.805113: cpu_idle: state=4294967295 cpu_id=0
107812          <idle>-0     (-----) [000] d..2 24575.805129: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
107813  appEventThread-23905 (23896) [003] d..2 24575.805146: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
107814          <idle>-0     (-----) [003] d..1 24575.805160: cpu_idle: state=0 cpu_id=3
107815          <idle>-0     (-----) [003] d.s3 24575.805263: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
107816          <idle>-0     (-----) [003] d.s4 24575.805273: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
107817          <idle>-0     (-----) [003] d.s4 24575.805282: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
107818          <idle>-0     (-----) [002] .n.1 24575.805289: cpu_idle: state=4294967295 cpu_id=2
107819          <idle>-0     (-----) [003] ...1 24575.805293: cpu_idle: state=4294967295 cpu_id=3
107820          <idle>-0     (-----) [003] d..1 24575.805299: cpu_idle: state=0 cpu_id=3
107821          <idle>-0     (-----) [002] d..2 24575.805302: 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
107822  kworker/u16:16-25995 (25995) [002] d..2 24575.805330: 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
107823          <idle>-0     (-----) [002] d..1 24575.805340: cpu_idle: state=0 cpu_id=2
107824 s.nexuslauncher-24827 (24827) [000] .... 24575.805491: binder_transaction: transaction=1671427 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
107825 s.nexuslauncher-24827 (24827) [000] d..4 24575.805502: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
107826 s.nexuslauncher-24827 (24827) [000] d..5 24575.805537: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
107827          <idle>-0     (-----) [001] .n.1 24575.805543: cpu_idle: state=4294967295 cpu_id=1
107828          <idle>-0     (-----) [001] d..2 24575.805555: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
107829  Binder:23896_5-25989 (23896) [001] .... 24575.805563: binder_transaction_received: transaction=1671427
107830 s.nexuslauncher-24827 (24827) [000] d..3 24575.805575: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
107831  Binder:23896_5-25989 (23896) [001] d..1 24575.805596: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
107832 s.nexuslauncher-24827 (24827) [000] d..4 24575.805601: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
107833          <idle>-0     (-----) [002] .n.1 24575.805607: cpu_idle: state=4294967295 cpu_id=2
107834  Binder:23896_5-25989 (23896) [001] d..2 24575.805613: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
107835          <idle>-0     (-----) [002] d..2 24575.805618: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
107836          <idle>-0     (-----) [003] .n.1 24575.805618: cpu_idle: state=4294967295 cpu_id=3
107837          <idle>-0     (-----) [003] d..2 24575.805628: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
107838  Binder:23896_5-25989 (23896) [001] d..2 24575.805656: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107839          <idle>-0     (-----) [001] d..1 24575.805669: cpu_idle: state=0 cpu_id=1
107840  appEventThread-23905 (23896) [003] d..2 24575.805673: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
107841    RenderThread-25194 (24827) [002] d..2 24575.805677: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107842          <idle>-0     (-----) [003] d..1 24575.805683: cpu_idle: state=0 cpu_id=3
107843          <idle>-0     (-----) [002] d..1 24575.805688: cpu_idle: state=0 cpu_id=2
107844 s.nexuslauncher-24827 (24827) [000] d..3 24575.805989: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
107845 s.nexuslauncher-24827 (24827) [000] d..4 24575.806024: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
107846          <idle>-0     (-----) [001] .n.1 24575.806030: cpu_idle: state=4294967295 cpu_id=1
107847          <idle>-0     (-----) [001] d..2 24575.806043: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
107848 s.nexuslauncher-24827 (24827) [000] d..2 24575.806062: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107849          <idle>-0     (-----) [000] d..1 24575.806083: cpu_idle: state=0 cpu_id=0
107850    RenderThread-25194 (24827) [001] d..1 24575.806285: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
107851    RenderThread-25194 (24827) [001] d..2 24575.806308: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
107852          <idle>-0     (-----) [000] .n.1 24575.806316: cpu_idle: state=4294967295 cpu_id=0
107853          <idle>-0     (-----) [000] d..2 24575.806328: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
107854    RenderThread-25194 (24827) [001] .... 24575.806371: binder_transaction: transaction=1671428 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
107855    RenderThread-25194 (24827) [001] ...2 24575.806380: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
107856    RenderThread-25194 (24827) [001] d..4 24575.806383: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
107857    RenderThread-25194 (24827) [001] dn.5 24575.806399: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
107858    RenderThread-25194 (24827) [001] d..2 24575.806408: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
107859  Binder:23896_5-25989 (23896) [001] .... 24575.806416: binder_transaction_received: transaction=1671428
107860 s.nexuslauncher-24827 (24827) [000] d..2 24575.806442: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107861          <idle>-0     (-----) [000] d..1 24575.806457: cpu_idle: state=0 cpu_id=0
107862  Binder:23896_5-25989 (23896) [001] d..2 24575.806460: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
107863    RenderThread-25194 (24827) [001] d..2 24575.806487: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107864          <idle>-0     (-----) [001] d..1 24575.806502: cpu_idle: state=0 cpu_id=1
107865          <idle>-0     (-----) [000] d..2 24575.807860: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
107866          <idle>-0     (-----) [000] dn.3 24575.807873: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
107867          <idle>-0     (-----) [000] .n.1 24575.807877: cpu_idle: state=4294967295 cpu_id=0
107868          <idle>-0     (-----) [000] d..2 24575.807890: 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
107869     ksoftirqd/0-3     (    3) [000] d..2 24575.807925: 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
107870          <idle>-0     (-----) [000] d..1 24575.807934: cpu_idle: state=0 cpu_id=0
107871          <idle>-0     (-----) [001] d.h2 24575.808941: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
107872          <idle>-0     (-----) [001] dnh3 24575.808956: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
107873          <idle>-0     (-----) [001] .n.1 24575.808965: cpu_idle: state=4294967295 cpu_id=1
107874          <idle>-0     (-----) [001] d..2 24575.808977: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
107875        DispSync-23904 (23896) [001] d..1 24575.808995: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
107876        DispSync-23904 (23896) [001] d..2 24575.809011: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
107877          <idle>-0     (-----) [002] .n.1 24575.809017: cpu_idle: state=4294967295 cpu_id=2
107878          <idle>-0     (-----) [002] d..2 24575.809028: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
107879        DispSync-23904 (23896) [001] d..2 24575.809044: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107880          <idle>-0     (-----) [001] d..1 24575.809056: cpu_idle: state=0 cpu_id=1
107881   sfEventThread-23906 (23896) [002] d..3 24575.809077: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
107882   sfEventThread-23906 (23896) [002] d..4 24575.809102: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
107883          <idle>-0     (-----) [001] .n.1 24575.809107: cpu_idle: state=4294967295 cpu_id=1
107884          <idle>-0     (-----) [001] d..2 24575.809117: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
107885   sfEventThread-23906 (23896) [002] d..2 24575.809137: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107886          <idle>-0     (-----) [002] d..1 24575.809147: cpu_idle: state=0 cpu_id=2
107887  surfaceflinger-23896 (23896) [001] d..1 24575.809335: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
107888  surfaceflinger-23896 (23896) [001] d..2 24575.809367: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
107889          <idle>-0     (-----) [000] .n.1 24575.809372: cpu_idle: state=4294967295 cpu_id=0
107890          <idle>-0     (-----) [000] d..2 24575.809384: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
107891  Binder:23896_5-25989 (23896) [000] d..2 24575.809419: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107892          <idle>-0     (-----) [000] d..1 24575.809431: cpu_idle: state=0 cpu_id=0
107893  surfaceflinger-23896 (23896) [001] d..1 24575.809552: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
107894  surfaceflinger-23896 (23896) [001] d..2 24575.809573: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
107895          <idle>-0     (-----) [002] .n.1 24575.809579: cpu_idle: state=4294967295 cpu_id=2
107896          <idle>-0     (-----) [002] d..2 24575.809587: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
107897   sfEventThread-23906 (23896) [002] d..2 24575.809621: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107898          <idle>-0     (-----) [002] d..1 24575.809628: cpu_idle: state=0 cpu_id=2
107899  surfaceflinger-23896 (23896) [001] ...1 24575.809776: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
107900  surfaceflinger-23896 (23896) [001] ...1 24575.809784: tracing_mark_write: E|23896
107901  surfaceflinger-23896 (23896) [001] .... 24575.809847: binder_transaction: transaction=1671429 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
107902  surfaceflinger-23896 (23896) [001] ...2 24575.809874: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
107903  surfaceflinger-23896 (23896) [001] d..4 24575.809883: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
107904  surfaceflinger-23896 (23896) [001] d..5 24575.809907: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
107905          <idle>-0     (-----) [002] .n.1 24575.809912: cpu_idle: state=4294967295 cpu_id=2
107906          <idle>-0     (-----) [002] d..2 24575.809921: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
107907  HwBinder:598_3-633   (  598) [002] .... 24575.809932: binder_transaction_received: transaction=1671429
107908  surfaceflinger-23896 (23896) [001] d..2 24575.809940: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107909          <idle>-0     (-----) [001] d..1 24575.809958: cpu_idle: state=0 cpu_id=1
107910  HwBinder:598_3-633   (  598) [002] ...1 24575.809988: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
107911  HwBinder:598_3-633   (  598) [002] ...1 24575.810147: tracing_mark_write: B|598|HWCSession::PresentDisplay::
107912  HwBinder:598_3-633   (  598) [002] ...1 24575.810360: tracing_mark_write: B|598|HWDeviceDRM::Commit::
107913  HwBinder:598_3-633   (  598) [002] ...1 24575.810374: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
107914  HwBinder:598_3-633   (  598) [002] d.s1 24575.810919: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
107915  HwBinder:598_3-633   (  598) [002] d.s2 24575.810944: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
107916  HwBinder:598_3-633   (  598) [002] d..2 24575.811147: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
107917  HwBinder:598_3-633   (  598) [002] d..3 24575.811169: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
107918          <idle>-0     (-----) [003] .n.1 24575.811174: cpu_idle: state=4294967295 cpu_id=3
107919          <idle>-0     (-----) [003] d..2 24575.811186: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
107920  HwBinder:598_3-633   (  598) [002] ...1 24575.811288: tracing_mark_write: E|598
107921  HwBinder:598_3-633   (  598) [002] ...1 24575.811295: tracing_mark_write: E|598
107922  HwBinder:598_3-633   (  598) [002] ...1 24575.811368: tracing_mark_write: E|598
107923  HwBinder:598_3-633   (  598) [002] ...1 24575.811427: tracing_mark_write: E|598
107924  HwBinder:598_3-633   (  598) [002] .... 24575.811444: binder_transaction: transaction=1671430 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
107925  HwBinder:598_3-633   (  598) [002] d..2 24575.811470: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
107926  HwBinder:598_3-633   (  598) [002] d..3 24575.811489: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
107927  HwBinder:598_3-633   (  598) [002] .... 24575.811494: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
107928          <idle>-0     (-----) [001] .n.1 24575.811496: cpu_idle: state=4294967295 cpu_id=1
107929          <idle>-0     (-----) [001] d..2 24575.811508: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
107930  surfaceflinger-23896 (23896) [001] .... 24575.811517: binder_transaction_received: transaction=1671430
107931  HwBinder:598_3-633   (  598) [002] d..2 24575.811573: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
107932     rcu_preempt-7     (    7) [002] d..2 24575.811612: 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
107933          <idle>-0     (-----) [002] d..1 24575.811629: cpu_idle: state=0 cpu_id=2
107934  surfaceflinger-23896 (23896) [001] d..1 24575.811769: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
107935  surfaceflinger-23896 (23896) [001] d..2 24575.811792: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
107936          <idle>-0     (-----) [000] .n.1 24575.811798: cpu_idle: state=4294967295 cpu_id=0
107937          <idle>-0     (-----) [000] d..2 24575.811810: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
107938  Binder:23896_5-25989 (23896) [000] .... 24575.811874: binder_transaction: transaction=1671431 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
107939  Binder:23896_5-25989 (23896) [000] d..2 24575.811889: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
107940  Binder:23896_5-25989 (23896) [000] d..3 24575.811911: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
107941  Binder:23896_5-25989 (23896) [000] .... 24575.811916: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
107942  surfaceflinger-23896 (23896) [001] d..2 24575.811964: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107943  Binder:23896_5-25989 (23896) [000] d..2 24575.811973: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
107944    RenderThread-25194 (24827) [000] .... 24575.811981: binder_transaction_received: transaction=1671431
107945          <idle>-0     (-----) [001] d..1 24575.811983: cpu_idle: state=0 cpu_id=1
107946 crtc_commit:111-253   (  253) [003] d..2 24575.812015: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
107947          <idle>-0     (-----) [003] d..1 24575.812030: cpu_idle: state=0 cpu_id=3
107948    RenderThread-25194 (24827) [000] d.s2 24575.814260: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
107949    RenderThread-25194 (24827) [000] d.s3 24575.814311: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
107950          <idle>-0     (-----) [001] .n.1 24575.814317: cpu_idle: state=4294967295 cpu_id=1
107951          <idle>-0     (-----) [001] d..2 24575.814334: 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
107952  kworker/u16:16-25995 (25995) [001] d..2 24575.814502: 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
107953          <idle>-0     (-----) [001] d..1 24575.814516: cpu_idle: state=0 cpu_id=1
107954    RenderThread-25194 (24827) [000] .... 24575.814551: binder_transaction: transaction=1671432 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
107955    RenderThread-25194 (24827) [000] ...2 24575.814566: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
107956    RenderThread-25194 (24827) [000] d..4 24575.814572: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
107957    RenderThread-25194 (24827) [000] dn.5 24575.814590: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
107958    RenderThread-25194 (24827) [000] d..2 24575.814601: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
107959  Binder:23896_5-25989 (23896) [000] .... 24575.814610: binder_transaction_received: transaction=1671432
107960  Binder:23896_5-25989 (23896) [000] .... 24575.814772: binder_transaction: transaction=1671433 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
107961  Binder:23896_5-25989 (23896) [000] .... 24575.814781: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
107962  Binder:23896_5-25989 (23896) [000] d..2 24575.814842: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
107963    RenderThread-25194 (24827) [000] .... 24575.814853: binder_transaction_received: transaction=1671433
107964    RenderThread-25194 (24827) [000] d..2 24575.814955: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107965          <idle>-0     (-----) [000] d..1 24575.814976: cpu_idle: state=0 cpu_id=0
107966          <idle>-0     (-----) [000] d.h5 24575.816914: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
107967          <idle>-0     (-----) [000] dnh6 24575.816931: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
107968          <idle>-0     (-----) [000] dnh5 24575.816938: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
107969          <idle>-0     (-----) [000] dnh6 24575.816951: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
107970          <idle>-0     (-----) [003] .n.1 24575.816958: cpu_idle: state=4294967295 cpu_id=3
107971          <idle>-0     (-----) [000] .n.1 24575.816967: cpu_idle: state=4294967295 cpu_id=0
107972          <idle>-0     (-----) [003] d..2 24575.816968: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
107973          <idle>-0     (-----) [000] d..2 24575.816978: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
107974  crtc_event:111-254   (  254) [000] d..3 24575.816994: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
107975  crtc_event:111-254   (  254) [000] d..4 24575.817006: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
107976          <idle>-0     (-----) [001] .n.1 24575.817013: cpu_idle: state=4294967295 cpu_id=1
107977          <idle>-0     (-----) [001] d..2 24575.817023: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
107978  crtc_event:111-254   (  254) [000] d..2 24575.817029: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107979          <idle>-0     (-----) [000] d..1 24575.817041: cpu_idle: state=0 cpu_id=0
107980 crtc_commit:111-253   (  253) [003] d..2 24575.817130: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
107981          <idle>-0     (-----) [003] d..1 24575.817139: cpu_idle: state=0 cpu_id=3
107982 kgsl_worker_thr-246   (  246) [001] d..2 24575.817230: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
107983          <idle>-0     (-----) [001] d..1 24575.817240: cpu_idle: state=0 cpu_id=1
107984          <idle>-0     (-----) [001] d.h2 24575.817321: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
107985          <idle>-0     (-----) [001] dnh3 24575.817335: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
107986          <idle>-0     (-----) [001] .n.1 24575.817343: cpu_idle: state=4294967295 cpu_id=1
107987          <idle>-0     (-----) [001] d..2 24575.817352: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
107988 kgsl_worker_thr-246   (  246) [001] d..2 24575.817374: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
107989 kgsl_worker_thr-246   (  246) [001] d..3 24575.817393: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
107990 kgsl_worker_thr-246   (  246) [001] d..2 24575.817407: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
107991          <idle>-0     (-----) [002] d.s2 24575.817587: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
107992          <idle>-0     (-----) [002] dns3 24575.817659: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
107993          <idle>-0     (-----) [002] .n.1 24575.817676: cpu_idle: state=4294967295 cpu_id=2
107994          <idle>-0     (-----) [003] d.H3 24575.817687: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
107995          <idle>-0     (-----) [002] d..2 24575.817688: 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
107996     rcu_preempt-7     (    7) [002] d..2 24575.817696: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
107997          <idle>-0     (-----) [003] d.H3 24575.817703: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
107998          <idle>-0     (-----) [005] dnh2 24575.817709: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
107999     rcu_preempt-7     (    7) [002] d..3 24575.817713: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
108000          <idle>-0     (-----) [005] .n.1 24575.817713: cpu_idle: state=4294967295 cpu_id=5
108001          <idle>-0     (-----) [003] dnH4 24575.817716: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
108002          <idle>-0     (-----) [005] d..2 24575.817718: 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
108003     rcu_preempt-7     (    7) [002] d..2 24575.817724: 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
108004          <idle>-0     (-----) [003] dns3 24575.817724: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
108005         rcuop/0-10    (   10) [002] d..2 24575.817730: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
108006         sugov:4-560   (  560) [005] d..2 24575.817734: 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
108007          <idle>-0     (-----) [003] dns4 24575.817739: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
108008          <idle>-0     (-----) [005] d..1 24575.817740: cpu_idle: state=0 cpu_id=5
108009          <idle>-0     (-----) [000] .n.1 24575.817745: cpu_idle: state=4294967295 cpu_id=0
108010          <idle>-0     (-----) [000] d..2 24575.817757: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
108011          <idle>-0     (-----) [003] .n.1 24575.817764: cpu_idle: state=4294967295 cpu_id=3
108012         rcuop/0-10    (   10) [002] d..3 24575.817767: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
108013          <idle>-0     (-----) [003] d..2 24575.817774: 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
108014         rcuop/0-10    (   10) [002] d..2 24575.817780: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
108015  crtc_event:111-254   (  254) [000] d..2 24575.817789: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108016         sugov:0-559   (  559) [003] d..2 24575.817791: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
108017          <idle>-0     (-----) [000] d..1 24575.817799: cpu_idle: state=0 cpu_id=0
108018         rcuop/0-10    (   10) [002] d..3 24575.817809: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
108019          <idle>-0     (-----) [000] .n.1 24575.817814: cpu_idle: state=4294967295 cpu_id=0
108020         rcuop/1-21    (   21) [003] d..2 24575.817817: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
108021          <idle>-0     (-----) [000] d..2 24575.817825: 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
108022         rcuop/0-10    (   10) [002] d..2 24575.817830: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
108023          <idle>-0     (-----) [003] d..1 24575.817831: cpu_idle: state=0 cpu_id=3
108024          <idle>-0     (-----) [002] d..1 24575.817843: cpu_idle: state=0 cpu_id=2
108025  kworker/u16:16-25995 (25995) [001] d..2 24575.817849: 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
108026     rcu_preempt-7     (    7) [000] d..2 24575.817851: 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
108027          <idle>-0     (-----) [000] d..1 24575.817861: cpu_idle: state=0 cpu_id=0
108028          <idle>-0     (-----) [001] d..1 24575.817863: cpu_idle: state=0 cpu_id=1
108029          <idle>-0     (-----) [005] ...1 24575.818755: cpu_idle: state=4294967295 cpu_id=5
108030          <idle>-0     (-----) [005] d..1 24575.818759: cpu_idle: state=0 cpu_id=5
108031          <idle>-0     (-----) [000] d.h3 24575.818945: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
108032          <idle>-0     (-----) [000] d.h4 24575.818963: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
108033          <idle>-0     (-----) [001] .n.1 24575.818969: cpu_idle: state=4294967295 cpu_id=1
108034          <idle>-0     (-----) [000] ...1 24575.818978: cpu_idle: state=4294967295 cpu_id=0
108035          <idle>-0     (-----) [001] d..2 24575.818979: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
108036          <idle>-0     (-----) [000] d..1 24575.818982: cpu_idle: state=0 cpu_id=0
108037 kgsl_worker_thr-246   (  246) [001] d..2 24575.819051: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108038          <idle>-0     (-----) [001] d..1 24575.819062: cpu_idle: state=0 cpu_id=1
108039          <idle>-0     (-----) [000] d.h5 24575.819237: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
108040          <idle>-0     (-----) [000] d.h6 24575.819253: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
108041          <idle>-0     (-----) [003] .n.1 24575.819259: cpu_idle: state=4294967295 cpu_id=3
108042          <idle>-0     (-----) [000] ...1 24575.819266: cpu_idle: state=4294967295 cpu_id=0
108043          <idle>-0     (-----) [003] d..2 24575.819269: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
108044          <idle>-0     (-----) [000] d..1 24575.819270: cpu_idle: state=0 cpu_id=0
108045 crtc_commit:111-253   (  253) [003] d..2 24575.819352: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
108046          <idle>-0     (-----) [003] d..1 24575.819364: cpu_idle: state=0 cpu_id=3
108047          <idle>-0     (-----) [000] d.h5 24575.819546: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
108048          <idle>-0     (-----) [000] dnh6 24575.819555: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
108049          <idle>-0     (-----) [000] .n.1 24575.819570: cpu_idle: state=4294967295 cpu_id=0
108050          <idle>-0     (-----) [000] d..2 24575.819581: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
108051  crtc_event:111-254   (  254) [000] d..2 24575.819604: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108052          <idle>-0     (-----) [000] d..1 24575.819614: cpu_idle: state=0 cpu_id=0
108053          <idle>-0     (-----) [001] d.h2 24575.821404: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
108054          <idle>-0     (-----) [001] dnh3 24575.821419: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
108055          <idle>-0     (-----) [001] .n.1 24575.821428: cpu_idle: state=4294967295 cpu_id=1
108056          <idle>-0     (-----) [001] d..2 24575.821439: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
108057        DispSync-23904 (23896) [001] d..1 24575.821459: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
108058        DispSync-23904 (23896) [001] d..2 24575.821475: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
108059          <idle>-0     (-----) [003] .n.1 24575.821481: cpu_idle: state=4294967295 cpu_id=3
108060          <idle>-0     (-----) [003] d..2 24575.821493: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
108061        DispSync-23904 (23896) [001] d..2 24575.821510: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108062          <idle>-0     (-----) [001] d..2 24575.821516: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
108063          <idle>-0     (-----) [001] dn.3 24575.821531: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
108064  appEventThread-23905 (23896) [003] d..3 24575.821537: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
108065          <idle>-0     (-----) [001] d..2 24575.821540: 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
108066  appEventThread-23905 (23896) [003] d..4 24575.821561: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
108067          <idle>-0     (-----) [000] .n.1 24575.821567: cpu_idle: state=4294967295 cpu_id=0
108068     ksoftirqd/1-18    (   18) [001] d..2 24575.821575: 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
108069          <idle>-0     (-----) [000] d..2 24575.821580: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
108070          <idle>-0     (-----) [001] d..1 24575.821586: cpu_idle: state=0 cpu_id=1
108071  appEventThread-23905 (23896) [003] d..2 24575.821600: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
108072          <idle>-0     (-----) [003] d..1 24575.821613: cpu_idle: state=0 cpu_id=3
108073 s.nexuslauncher-24827 (24827) [000] .... 24575.821961: binder_transaction: transaction=1671434 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
108074 s.nexuslauncher-24827 (24827) [000] d..4 24575.821971: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
108075 s.nexuslauncher-24827 (24827) [000] d..5 24575.822005: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
108076          <idle>-0     (-----) [001] .n.1 24575.822010: cpu_idle: state=4294967295 cpu_id=1
108077          <idle>-0     (-----) [001] d..2 24575.822022: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
108078  Binder:23896_5-25989 (23896) [001] .... 24575.822030: binder_transaction_received: transaction=1671434
108079 s.nexuslauncher-24827 (24827) [000] d..3 24575.822043: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
108080  Binder:23896_5-25989 (23896) [001] d..1 24575.822063: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
108081 s.nexuslauncher-24827 (24827) [000] d..4 24575.822071: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
108082          <idle>-0     (-----) [002] .n.1 24575.822077: cpu_idle: state=4294967295 cpu_id=2
108083  Binder:23896_5-25989 (23896) [001] d..2 24575.822081: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
108084          <idle>-0     (-----) [003] .n.1 24575.822086: cpu_idle: state=4294967295 cpu_id=3
108085          <idle>-0     (-----) [002] d..2 24575.822090: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
108086          <idle>-0     (-----) [003] d..2 24575.822096: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
108087  Binder:23896_5-25989 (23896) [001] d..2 24575.822125: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108088  appEventThread-23905 (23896) [003] d..2 24575.822133: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
108089          <idle>-0     (-----) [001] d..1 24575.822138: cpu_idle: state=0 cpu_id=1
108090          <idle>-0     (-----) [003] d..1 24575.822143: cpu_idle: state=0 cpu_id=3
108091    RenderThread-25194 (24827) [002] d..2 24575.822149: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
108092          <idle>-0     (-----) [002] d..1 24575.822162: cpu_idle: state=0 cpu_id=2
108093 s.nexuslauncher-24827 (24827) [000] d..3 24575.822448: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
108094 s.nexuslauncher-24827 (24827) [000] d..4 24575.822484: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
108095          <idle>-0     (-----) [001] .n.1 24575.822490: cpu_idle: state=4294967295 cpu_id=1
108096          <idle>-0     (-----) [001] d..2 24575.822502: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
108097 s.nexuslauncher-24827 (24827) [000] d..2 24575.822520: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108098          <idle>-0     (-----) [000] d..1 24575.822534: cpu_idle: state=0 cpu_id=0
108099    RenderThread-25194 (24827) [001] d..1 24575.822737: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
108100    RenderThread-25194 (24827) [001] d..2 24575.822760: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
108101          <idle>-0     (-----) [000] .n.1 24575.822767: cpu_idle: state=4294967295 cpu_id=0
108102          <idle>-0     (-----) [000] d..2 24575.822779: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
108103    RenderThread-25194 (24827) [001] .... 24575.822824: binder_transaction: transaction=1671435 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
108104    RenderThread-25194 (24827) [001] ...2 24575.822833: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
108105    RenderThread-25194 (24827) [001] d..4 24575.822837: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
108106    RenderThread-25194 (24827) [001] dn.5 24575.822852: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
108107    RenderThread-25194 (24827) [001] d..2 24575.822863: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
108108  Binder:23896_5-25989 (23896) [001] .... 24575.822871: binder_transaction_received: transaction=1671435
108109 s.nexuslauncher-24827 (24827) [000] d..2 24575.822893: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108110          <idle>-0     (-----) [000] d..1 24575.822904: cpu_idle: state=0 cpu_id=0
108111  Binder:23896_5-25989 (23896) [001] d..2 24575.822914: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
108112    RenderThread-25194 (24827) [001] d..2 24575.822942: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108113          <idle>-0     (-----) [001] d..1 24575.822957: cpu_idle: state=0 cpu_id=1
108114          <idle>-0     (-----) [000] d.s2 24575.824247: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
108115          <idle>-0     (-----) [000] dns3 24575.824266: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
108116          <idle>-0     (-----) [000] dns3 24575.824272: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
108117          <idle>-0     (-----) [000] dns4 24575.824305: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
108118          <idle>-0     (-----) [000] .n.1 24575.824326: cpu_idle: state=4294967295 cpu_id=0
108119          <idle>-0     (-----) [000] d..2 24575.824336: 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
108120     rcu_preempt-7     (    7) [000] d..2 24575.824349: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
108121     rcu_preempt-7     (    7) [000] d..3 24575.824383: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
108122     rcu_preempt-7     (    7) [000] d..2 24575.824394: 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
108123         rcuop/0-10    (   10) [000] d..2 24575.824400: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
108124         rcuop/0-10    (   10) [000] d..3 24575.824430: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
108125         rcuop/0-10    (   10) [000] d..2 24575.824441: 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
108126         rcuop/1-21    (   21) [000] d..2 24575.824456: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
108127  kworker/u16:16-25995 (25995) [000] .... 24575.824490: clk_set_rate: l3_cluster0_vote_clk 300000000
108128  kworker/u16:16-25995 (25995) [000] .... 24575.824505: clk_set_rate: l3_clk 300000000
108129  kworker/u16:16-25995 (25995) [000] d..2 24575.824837: 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
108130          <idle>-0     (-----) [000] d..1 24575.824860: cpu_idle: state=0 cpu_id=0
108131          <idle>-0     (-----) [003] d.s3 24575.824874: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
108132          <idle>-0     (-----) [003] d.s4 24575.824889: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
108133          <idle>-0     (-----) [003] d.s4 24575.824899: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
108134          <idle>-0     (-----) [000] .n.1 24575.824906: cpu_idle: state=4294967295 cpu_id=0
108135          <idle>-0     (-----) [003] ...1 24575.824911: cpu_idle: state=4294967295 cpu_id=3
108136          <idle>-0     (-----) [003] d..1 24575.824918: cpu_idle: state=0 cpu_id=3
108137          <idle>-0     (-----) [000] d..2 24575.824920: 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
108138  kworker/u16:16-25995 (25995) [000] d..2 24575.824953: 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
108139          <idle>-0     (-----) [000] d..1 24575.824965: cpu_idle: state=0 cpu_id=0
108140          <idle>-0     (-----) [001] d.h2 24575.825404: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
108141          <idle>-0     (-----) [001] dnh3 24575.825422: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
108142          <idle>-0     (-----) [001] .n.1 24575.825433: cpu_idle: state=4294967295 cpu_id=1
108143          <idle>-0     (-----) [001] d..2 24575.825446: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
108144        DispSync-23904 (23896) [001] d..1 24575.825470: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
108145        DispSync-23904 (23896) [001] d..2 24575.825488: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
108146          <idle>-0     (-----) [002] .n.1 24575.825495: cpu_idle: state=4294967295 cpu_id=2
108147          <idle>-0     (-----) [002] d..2 24575.825508: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
108148        DispSync-23904 (23896) [001] d..2 24575.825523: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108149          <idle>-0     (-----) [001] d..1 24575.825538: cpu_idle: state=0 cpu_id=1
108150   sfEventThread-23906 (23896) [002] d..3 24575.825565: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
108151   sfEventThread-23906 (23896) [002] d..4 24575.825591: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
108152          <idle>-0     (-----) [001] .n.1 24575.825597: cpu_idle: state=4294967295 cpu_id=1
108153          <idle>-0     (-----) [001] d..2 24575.825610: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
108154   sfEventThread-23906 (23896) [002] d..2 24575.825630: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
108155          <idle>-0     (-----) [002] d..1 24575.825646: cpu_idle: state=0 cpu_id=2
108156  surfaceflinger-23896 (23896) [001] d..1 24575.825833: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
108157  surfaceflinger-23896 (23896) [001] d..2 24575.825869: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
108158          <idle>-0     (-----) [000] .n.1 24575.825874: cpu_idle: state=4294967295 cpu_id=0
108159          <idle>-0     (-----) [000] d..2 24575.825887: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
108160  Binder:23896_5-25989 (23896) [000] d..2 24575.825927: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108161          <idle>-0     (-----) [000] d..1 24575.825940: cpu_idle: state=0 cpu_id=0
108162  surfaceflinger-23896 (23896) [001] d..2 24575.826037: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
108163  surfaceflinger-23896 (23896) [001] d..3 24575.826058: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
108164          <idle>-0     (-----) [000] .n.1 24575.826063: cpu_idle: state=4294967295 cpu_id=0
108165          <idle>-0     (-----) [000] d..2 24575.826076: 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
108166         rcuop/0-10    (   10) [000] d..2 24575.826083: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
108167  surfaceflinger-23896 (23896) [001] d..1 24575.826091: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
108168         rcuop/0-10    (   10) [000] d..3 24575.826105: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
108169  surfaceflinger-23896 (23896) [001] d..2 24575.826112: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
108170         rcuop/0-10    (   10) [000] d..2 24575.826117: 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
108171          <idle>-0     (-----) [002] .n.1 24575.826118: cpu_idle: state=4294967295 cpu_id=2
108172          <idle>-0     (-----) [002] d..2 24575.826129: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
108173     rcu_preempt-7     (    7) [000] d..2 24575.826140: 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
108174          <idle>-0     (-----) [000] d..1 24575.826151: cpu_idle: state=0 cpu_id=0
108175   sfEventThread-23906 (23896) [002] d..2 24575.826168: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
108176          <idle>-0     (-----) [002] d..1 24575.826179: cpu_idle: state=0 cpu_id=2
108177  surfaceflinger-23896 (23896) [001] ...1 24575.826345: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
108178  surfaceflinger-23896 (23896) [001] ...1 24575.826356: tracing_mark_write: E|23896
108179  surfaceflinger-23896 (23896) [001] .... 24575.826429: binder_transaction: transaction=1671436 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
108180  surfaceflinger-23896 (23896) [001] ...2 24575.826460: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
108181  surfaceflinger-23896 (23896) [001] d..4 24575.826469: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
108182  surfaceflinger-23896 (23896) [001] d..5 24575.826500: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
108183          <idle>-0     (-----) [002] .n.1 24575.826502: cpu_idle: state=4294967295 cpu_id=2
108184          <idle>-0     (-----) [002] d..2 24575.826512: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
108185  HwBinder:598_3-633   (  598) [002] .... 24575.826526: binder_transaction_received: transaction=1671436
108186  surfaceflinger-23896 (23896) [001] d..2 24575.826536: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108187          <idle>-0     (-----) [001] d..1 24575.826557: cpu_idle: state=0 cpu_id=1
108188  HwBinder:598_3-633   (  598) [002] ...1 24575.826582: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
108189  HwBinder:598_3-633   (  598) [002] ...1 24575.826749: tracing_mark_write: B|598|HWCSession::PresentDisplay::
108190  HwBinder:598_3-633   (  598) [002] ...1 24575.826980: tracing_mark_write: B|598|HWDeviceDRM::Commit::
108191  HwBinder:598_3-633   (  598) [002] ...1 24575.826996: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
108192  HwBinder:598_3-633   (  598) [002] d..2 24575.827801: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
108193  HwBinder:598_3-633   (  598) [002] d..3 24575.827830: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
108194          <idle>-0     (-----) [003] .n.1 24575.827834: cpu_idle: state=4294967295 cpu_id=3
108195          <idle>-0     (-----) [003] d..2 24575.827849: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
108196  HwBinder:598_3-633   (  598) [002] ...1 24575.827951: tracing_mark_write: E|598
108197  HwBinder:598_3-633   (  598) [002] ...1 24575.827958: tracing_mark_write: E|598
108198  HwBinder:598_3-633   (  598) [002] ...1 24575.828038: tracing_mark_write: E|598
108199  HwBinder:598_3-633   (  598) [002] ...1 24575.828099: tracing_mark_write: E|598
108200  HwBinder:598_3-633   (  598) [002] .... 24575.828117: binder_transaction: transaction=1671437 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
108201  HwBinder:598_3-633   (  598) [002] d..2 24575.828145: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
108202  HwBinder:598_3-633   (  598) [002] d..3 24575.828167: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
108203  HwBinder:598_3-633   (  598) [002] .... 24575.828173: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
108204          <idle>-0     (-----) [001] .n.1 24575.828175: cpu_idle: state=4294967295 cpu_id=1
108205          <idle>-0     (-----) [001] d..2 24575.828188: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
108206  surfaceflinger-23896 (23896) [001] .... 24575.828200: binder_transaction_received: transaction=1671437
108207  HwBinder:598_3-633   (  598) [002] d..2 24575.828281: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
108208          <idle>-0     (-----) [002] d..1 24575.828303: cpu_idle: state=0 cpu_id=2
108209  surfaceflinger-23896 (23896) [001] d..1 24575.828481: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
108210  surfaceflinger-23896 (23896) [001] d..2 24575.828510: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
108211          <idle>-0     (-----) [000] .n.1 24575.828515: cpu_idle: state=4294967295 cpu_id=0
108212          <idle>-0     (-----) [000] d..2 24575.828529: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
108213  Binder:23896_5-25989 (23896) [000] .... 24575.828605: binder_transaction: transaction=1671438 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
108214  Binder:23896_5-25989 (23896) [000] d..2 24575.828622: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
108215  Binder:23896_5-25989 (23896) [000] d..3 24575.828651: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
108216  Binder:23896_5-25989 (23896) [000] .... 24575.828656: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
108217  surfaceflinger-23896 (23896) [001] d..2 24575.828715: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108218 crtc_commit:111-253   (  253) [003] d..2 24575.828726: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
108219  Binder:23896_5-25989 (23896) [000] d..2 24575.828726: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
108220    RenderThread-25194 (24827) [000] .... 24575.828737: binder_transaction_received: transaction=1671438
108221          <idle>-0     (-----) [001] d..1 24575.828739: cpu_idle: state=0 cpu_id=1
108222          <idle>-0     (-----) [003] d..1 24575.828743: cpu_idle: state=0 cpu_id=3
108223    RenderThread-25194 (24827) [000] d.s3 24575.830929: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
108224    RenderThread-25194 (24827) [000] dns4 24575.830954: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
108225    RenderThread-25194 (24827) [000] dns4 24575.830961: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
108226    RenderThread-25194 (24827) [000] dns5 24575.830975: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
108227    RenderThread-25194 (24827) [000] d..2 24575.830991: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
108228     rcu_preempt-7     (    7) [000] d..2 24575.831005: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
108229     rcu_preempt-7     (    7) [000] d..3 24575.831018: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
108230     rcu_preempt-7     (    7) [000] d..2 24575.831028: 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
108231         rcuop/0-10    (   10) [000] d..2 24575.831032: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
108232         rcuop/0-10    (   10) [000] d..3 24575.831045: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
108233         rcuop/0-10    (   10) [000] d..2 24575.831048: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
108234         rcuop/0-10    (   10) [000] d..3 24575.831060: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
108235         rcuop/0-10    (   10) [000] d..2 24575.831068: 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
108236         rcuop/1-21    (   21) [000] d..2 24575.831080: 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
108237     rcu_preempt-7     (    7) [000] d..2 24575.831093: 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
108238  kworker/u16:16-25995 (25995) [000] d..2 24575.831317: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=D ==> next_comm=RenderThread next_pid=25194 next_prio=110
108239          <idle>-0     (-----) [003] d.s3 24575.831361: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
108240          <idle>-0     (-----) [003] d.s4 24575.831389: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
108241          <idle>-0     (-----) [003] dns4 24575.831396: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
108242          <idle>-0     (-----) [003] .n.1 24575.831405: cpu_idle: state=4294967295 cpu_id=3
108243          <idle>-0     (-----) [003] d..2 24575.831419: 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
108244  kworker/u16:16-25995 (25995) [003] d..2 24575.831467: 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
108245          <idle>-0     (-----) [003] d..1 24575.831480: cpu_idle: state=0 cpu_id=3
108246    RenderThread-25194 (24827) [000] .... 24575.831769: binder_transaction: transaction=1671439 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
108247    RenderThread-25194 (24827) [000] ...2 24575.831786: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
108248    RenderThread-25194 (24827) [000] d..4 24575.831792: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
108249    RenderThread-25194 (24827) [000] dn.5 24575.831812: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
108250    RenderThread-25194 (24827) [000] d..2 24575.831823: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
108251  Binder:23896_5-25989 (23896) [000] .... 24575.831833: binder_transaction_received: transaction=1671439
108252  Binder:23896_5-25989 (23896) [000] .... 24575.832020: binder_transaction: transaction=1671440 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
108253  Binder:23896_5-25989 (23896) [000] .... 24575.832030: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
108254  Binder:23896_5-25989 (23896) [000] d..2 24575.832093: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
108255    RenderThread-25194 (24827) [000] .... 24575.832104: binder_transaction_received: transaction=1671440
108256    RenderThread-25194 (24827) [000] d..2 24575.832226: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108257          <idle>-0     (-----) [000] d..1 24575.832248: cpu_idle: state=0 cpu_id=0
108258          <idle>-0     (-----) [000] d.h5 24575.833391: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
108259          <idle>-0     (-----) [000] dnh6 24575.833409: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
108260          <idle>-0     (-----) [000] dnh5 24575.833415: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
108261          <idle>-0     (-----) [000] dnh6 24575.833430: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
108262          <idle>-0     (-----) [003] .n.1 24575.833437: cpu_idle: state=4294967295 cpu_id=3
108263          <idle>-0     (-----) [000] .n.1 24575.833448: cpu_idle: state=4294967295 cpu_id=0
108264          <idle>-0     (-----) [003] d..2 24575.833448: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
108265          <idle>-0     (-----) [000] d..2 24575.833461: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
108266  crtc_event:111-254   (  254) [000] d..3 24575.833478: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
108267  crtc_event:111-254   (  254) [000] d..4 24575.833491: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
108268          <idle>-0     (-----) [001] .n.1 24575.833498: cpu_idle: state=4294967295 cpu_id=1
108269          <idle>-0     (-----) [001] d..2 24575.833513: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
108270  crtc_event:111-254   (  254) [000] d..2 24575.833516: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108271          <idle>-0     (-----) [000] d..1 24575.833529: cpu_idle: state=0 cpu_id=0
108272 crtc_commit:111-253   (  253) [003] d..2 24575.833627: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
108273          <idle>-0     (-----) [003] d..1 24575.833638: cpu_idle: state=0 cpu_id=3
108274 kgsl_worker_thr-246   (  246) [001] d..2 24575.833737: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
108275          <idle>-0     (-----) [001] d..1 24575.833749: cpu_idle: state=0 cpu_id=1
108276          <idle>-0     (-----) [001] d.h2 24575.833825: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
108277          <idle>-0     (-----) [001] dnh3 24575.833841: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
108278          <idle>-0     (-----) [001] .n.1 24575.833850: cpu_idle: state=4294967295 cpu_id=1
108279          <idle>-0     (-----) [001] d..2 24575.833861: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
108280 kgsl_worker_thr-246   (  246) [001] d..2 24575.833886: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
108281 kgsl_worker_thr-246   (  246) [001] d..3 24575.833932: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
108282 kgsl_worker_thr-246   (  246) [001] d..2 24575.833948: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
108283          <idle>-0     (-----) [003] d.s3 24575.834247: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
108284          <idle>-0     (-----) [003] d.s4 24575.834267: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
108285          <idle>-0     (-----) [000] .n.1 24575.834274: cpu_idle: state=4294967295 cpu_id=0
108286          <idle>-0     (-----) [003] d.s3 24575.834276: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
108287          <idle>-0     (-----) [000] d..2 24575.834289: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
108288          <idle>-0     (-----) [003] dns4 24575.834310: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
108289  crtc_event:111-254   (  254) [000] d..2 24575.834328: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108290          <idle>-0     (-----) [003] .n.1 24575.834334: cpu_idle: state=4294967295 cpu_id=3
108291          <idle>-0     (-----) [000] d..1 24575.834335: cpu_idle: state=0 cpu_id=0
108292          <idle>-0     (-----) [003] d..2 24575.834344: 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
108293  kworker/u16:16-25995 (25995) [001] d..2 24575.834428: 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
108294          <idle>-0     (-----) [001] d..1 24575.834444: cpu_idle: state=0 cpu_id=1
108295  kworker/u16:10-23868 (23868) [003] d..2 24575.834587: 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
108296          <idle>-0     (-----) [003] d..1 24575.834604: cpu_idle: state=0 cpu_id=3
108297          <idle>-0     (-----) [003] d.s3 24575.835072: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
108298          <idle>-0     (-----) [003] d.s4 24575.835088: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
108299          <idle>-0     (-----) [003] dns4 24575.835095: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
108300          <idle>-0     (-----) [003] .n.1 24575.835103: cpu_idle: state=4294967295 cpu_id=3
108301          <idle>-0     (-----) [003] d..2 24575.835116: 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
108302  kworker/u16:10-23868 (23868) [003] .... 24575.835193: clk_set_rate: l3_cluster0_vote_clk 403200000
108303  kworker/u16:10-23868 (23868) [003] .... 24575.835203: clk_set_rate: l3_clk 403200000
108304  kworker/u16:10-23868 (23868) [003] d..2 24575.835267: 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
108305          <idle>-0     (-----) [003] d..1 24575.835283: cpu_idle: state=0 cpu_id=3
108306          <idle>-0     (-----) [000] d.h3 24575.835447: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
108307          <idle>-0     (-----) [000] d.h4 24575.835462: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
108308          <idle>-0     (-----) [001] .n.1 24575.835468: cpu_idle: state=4294967295 cpu_id=1
108309          <idle>-0     (-----) [000] ...1 24575.835477: cpu_idle: state=4294967295 cpu_id=0
108310          <idle>-0     (-----) [001] d..2 24575.835479: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
108311          <idle>-0     (-----) [000] d..1 24575.835482: cpu_idle: state=0 cpu_id=0
108312 kgsl_worker_thr-246   (  246) [001] d..2 24575.835547: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108313          <idle>-0     (-----) [001] d..1 24575.835558: cpu_idle: state=0 cpu_id=1
108314          <idle>-0     (-----) [000] d.h5 24575.835710: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
108315          <idle>-0     (-----) [000] d.h6 24575.835725: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
108316          <idle>-0     (-----) [003] .n.1 24575.835731: cpu_idle: state=4294967295 cpu_id=3
108317          <idle>-0     (-----) [000] ...1 24575.835738: cpu_idle: state=4294967295 cpu_id=0
108318          <idle>-0     (-----) [000] d..1 24575.835741: cpu_idle: state=0 cpu_id=0
108319          <idle>-0     (-----) [003] d..2 24575.835742: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
108320 crtc_commit:111-253   (  253) [003] d..2 24575.835825: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
108321          <idle>-0     (-----) [003] d..1 24575.835836: cpu_idle: state=0 cpu_id=3
108322          <idle>-0     (-----) [000] d.h5 24575.836025: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
108323          <idle>-0     (-----) [000] dnh6 24575.836034: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
108324          <idle>-0     (-----) [000] .n.1 24575.836050: cpu_idle: state=4294967295 cpu_id=0
108325          <idle>-0     (-----) [000] d..2 24575.836057: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
108326  crtc_event:111-254   (  254) [000] d..2 24575.836079: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108327          <idle>-0     (-----) [000] d..1 24575.836087: cpu_idle: state=0 cpu_id=0
108328          <idle>-0     (-----) [000] d.H3 24575.837677: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
108329          <idle>-0     (-----) [000] d.H3 24575.837693: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
108330          <idle>-0     (-----) [005] dnh2 24575.837699: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
108331          <idle>-0     (-----) [005] .n.1 24575.837703: cpu_idle: state=4294967295 cpu_id=5
108332          <idle>-0     (-----) [005] d..2 24575.837708: 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
108333          <idle>-0     (-----) [000] d.H4 24575.837708: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
108334          <idle>-0     (-----) [003] .n.1 24575.837714: cpu_idle: state=4294967295 cpu_id=3
108335          <idle>-0     (-----) [000] d.s2 24575.837715: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
108336         sugov:4-560   (  560) [005] d..2 24575.837720: 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
108337          <idle>-0     (-----) [005] d..1 24575.837726: cpu_idle: state=0 cpu_id=5
108338          <idle>-0     (-----) [003] d..2 24575.837726: 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
108339          <idle>-0     (-----) [000] dns3 24575.837735: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
108340          <idle>-0     (-----) [000] dns3 24575.837743: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
108341         sugov:0-559   (  559) [003] d..2 24575.837755: 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
108342          <idle>-0     (-----) [000] dns4 24575.837757: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
108343          <idle>-0     (-----) [003] d..1 24575.837764: cpu_idle: state=0 cpu_id=3
108344          <idle>-0     (-----) [000] .n.1 24575.837776: cpu_idle: state=4294967295 cpu_id=0
108345          <idle>-0     (-----) [000] d..2 24575.837786: 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
108346     rcu_preempt-7     (    7) [000] d..2 24575.837796: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
108347     rcu_preempt-7     (    7) [000] d..3 24575.837811: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
108348     rcu_preempt-7     (    7) [000] d..2 24575.837822: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
108349          <idle>-0     (-----) [001] d.h2 24575.837862: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
108350          <idle>-0     (-----) [001] dnh3 24575.837878: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
108351          <idle>-0     (-----) [001] .n.1 24575.837886: cpu_idle: state=4294967295 cpu_id=1
108352     kworker/0:1-13012 (13012) [000] d..2 24575.837892: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
108353         rcuop/0-10    (   10) [000] d..2 24575.837897: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
108354          <idle>-0     (-----) [001] d..2 24575.837897: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
108355        DispSync-23904 (23896) [001] d..1 24575.837915: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
108356        DispSync-23904 (23896) [001] d..2 24575.837931: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
108357         rcuop/0-10    (   10) [000] d..3 24575.837933: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
108358          <idle>-0     (-----) [003] .n.1 24575.837937: cpu_idle: state=4294967295 cpu_id=3
108359          <idle>-0     (-----) [003] d..2 24575.837946: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
108360         rcuop/0-10    (   10) [000] d..2 24575.837952: 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
108361        DispSync-23904 (23896) [001] d..2 24575.837955: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
108362          <idle>-0     (-----) [000] d..1 24575.837967: cpu_idle: state=0 cpu_id=0
108363         rcuop/1-21    (   21) [001] d..2 24575.837982: 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
108364  appEventThread-23905 (23896) [003] d..3 24575.837991: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
108365          <idle>-0     (-----) [001] d..1 24575.837993: cpu_idle: state=0 cpu_id=1
108366  appEventThread-23905 (23896) [003] d..4 24575.838017: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
108367          <idle>-0     (-----) [000] .n.1 24575.838024: cpu_idle: state=4294967295 cpu_id=0
108368          <idle>-0     (-----) [000] d..2 24575.838037: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
108369  appEventThread-23905 (23896) [003] d..2 24575.838053: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
108370          <idle>-0     (-----) [003] d..1 24575.838068: cpu_idle: state=0 cpu_id=3
108371 s.nexuslauncher-24827 (24827) [000] .... 24575.838424: binder_transaction: transaction=1671441 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
108372 s.nexuslauncher-24827 (24827) [000] d..4 24575.838434: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
108373 s.nexuslauncher-24827 (24827) [000] d..5 24575.838469: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
108374          <idle>-0     (-----) [001] .n.1 24575.838474: cpu_idle: state=4294967295 cpu_id=1
108375          <idle>-0     (-----) [001] d..2 24575.838486: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
108376  Binder:23896_5-25989 (23896) [001] .... 24575.838494: binder_transaction_received: transaction=1671441
108377 s.nexuslauncher-24827 (24827) [000] d..3 24575.838509: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
108378  Binder:23896_5-25989 (23896) [001] d..1 24575.838526: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
108379 s.nexuslauncher-24827 (24827) [000] d..4 24575.838536: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
108380          <idle>-0     (-----) [002] .n.1 24575.838543: cpu_idle: state=4294967295 cpu_id=2
108381  Binder:23896_5-25989 (23896) [001] d..2 24575.838545: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
108382          <idle>-0     (-----) [003] .n.1 24575.838551: cpu_idle: state=4294967295 cpu_id=3
108383          <idle>-0     (-----) [002] d..2 24575.838558: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
108384          <idle>-0     (-----) [003] d..2 24575.838560: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
108385  Binder:23896_5-25989 (23896) [001] d..2 24575.838588: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108386  appEventThread-23905 (23896) [003] d..2 24575.838598: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
108387          <idle>-0     (-----) [001] d..1 24575.838601: cpu_idle: state=0 cpu_id=1
108388          <idle>-0     (-----) [003] d..1 24575.838609: cpu_idle: state=0 cpu_id=3
108389    RenderThread-25194 (24827) [002] d..2 24575.838619: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
108390          <idle>-0     (-----) [002] d..1 24575.838633: cpu_idle: state=0 cpu_id=2
108391          <idle>-0     (-----) [005] ...1 24575.838738: cpu_idle: state=4294967295 cpu_id=5
108392          <idle>-0     (-----) [005] d..1 24575.838740: cpu_idle: state=0 cpu_id=5
108393 s.nexuslauncher-24827 (24827) [000] d..3 24575.838929: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
108394 s.nexuslauncher-24827 (24827) [000] d..4 24575.838964: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
108395          <idle>-0     (-----) [001] .n.1 24575.838969: cpu_idle: state=4294967295 cpu_id=1
108396          <idle>-0     (-----) [001] d..2 24575.838981: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
108397 s.nexuslauncher-24827 (24827) [000] d..2 24575.839000: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108398          <idle>-0     (-----) [000] d..1 24575.839021: cpu_idle: state=0 cpu_id=0
108399    RenderThread-25194 (24827) [001] d..1 24575.839209: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
108400    RenderThread-25194 (24827) [001] d..2 24575.839232: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
108401          <idle>-0     (-----) [000] .n.1 24575.839240: cpu_idle: state=4294967295 cpu_id=0
108402          <idle>-0     (-----) [000] d..2 24575.839252: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
108403    RenderThread-25194 (24827) [001] .... 24575.839295: binder_transaction: transaction=1671442 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
108404    RenderThread-25194 (24827) [001] ...2 24575.839305: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
108405    RenderThread-25194 (24827) [001] d..4 24575.839308: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
108406    RenderThread-25194 (24827) [001] dn.5 24575.839323: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
108407    RenderThread-25194 (24827) [001] d..2 24575.839333: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
108408  Binder:23896_5-25989 (23896) [001] .... 24575.839340: binder_transaction_received: transaction=1671442
108409 s.nexuslauncher-24827 (24827) [000] d..2 24575.839366: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108410          <idle>-0     (-----) [000] d..1 24575.839385: cpu_idle: state=0 cpu_id=0
108411  Binder:23896_5-25989 (23896) [001] d..2 24575.839385: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
108412    RenderThread-25194 (24827) [001] d..2 24575.839412: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108413          <idle>-0     (-----) [001] d..1 24575.839428: cpu_idle: state=0 cpu_id=1
108414          <idle>-0     (-----) [003] ...1 24575.840003: cpu_idle: state=4294967295 cpu_id=3
108415          <idle>-0     (-----) [003] d..1 24575.840007: cpu_idle: state=0 cpu_id=3
108416          <idle>-0     (-----) [000] ...1 24575.840551: cpu_idle: state=4294967295 cpu_id=0
108417          <idle>-0     (-----) [000] d..1 24575.840556: cpu_idle: state=0 cpu_id=0
108418          <idle>-0     (-----) [001] d.h2 24575.841865: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
108419          <idle>-0     (-----) [001] dnh3 24575.841880: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
108420          <idle>-0     (-----) [001] .n.1 24575.841889: cpu_idle: state=4294967295 cpu_id=1
108421          <idle>-0     (-----) [001] d..2 24575.841901: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
108422        DispSync-23904 (23896) [001] d..1 24575.841919: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
108423        DispSync-23904 (23896) [001] d..2 24575.841936: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
108424          <idle>-0     (-----) [002] .n.1 24575.841942: cpu_idle: state=4294967295 cpu_id=2
108425          <idle>-0     (-----) [002] d..2 24575.841955: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
108426        DispSync-23904 (23896) [001] d..2 24575.841974: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108427          <idle>-0     (-----) [001] d..2 24575.841979: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
108428          <idle>-0     (-----) [001] dn.3 24575.841993: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
108429          <idle>-0     (-----) [001] d..2 24575.842001: 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
108430   sfEventThread-23906 (23896) [002] d..3 24575.842004: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
108431   sfEventThread-23906 (23896) [002] d..4 24575.842029: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
108432     ksoftirqd/1-18    (   18) [001] d..2 24575.842038: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
108433   sfEventThread-23906 (23896) [002] d..2 24575.842075: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
108434          <idle>-0     (-----) [002] d..1 24575.842089: cpu_idle: state=0 cpu_id=2
108435  surfaceflinger-23896 (23896) [001] d..1 24575.842246: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
108436  surfaceflinger-23896 (23896) [001] d..2 24575.842277: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
108437          <idle>-0     (-----) [000] .n.1 24575.842282: cpu_idle: state=4294967295 cpu_id=0
108438          <idle>-0     (-----) [000] d..2 24575.842298: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
108439  Binder:23896_5-25989 (23896) [000] d..2 24575.842335: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108440          <idle>-0     (-----) [000] d..1 24575.842347: cpu_idle: state=0 cpu_id=0
108441  surfaceflinger-23896 (23896) [001] d..2 24575.842432: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
108442  surfaceflinger-23896 (23896) [001] d..3 24575.842476: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
108443  surfaceflinger-23896 (23896) [001] d..1 24575.842510: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
108444  surfaceflinger-23896 (23896) [001] d..2 24575.842528: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
108445          <idle>-0     (-----) [002] .n.1 24575.842535: cpu_idle: state=4294967295 cpu_id=2
108446          <idle>-0     (-----) [002] d..2 24575.842545: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
108447   sfEventThread-23906 (23896) [002] d..2 24575.842580: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
108448          <idle>-0     (-----) [002] d..1 24575.842590: cpu_idle: state=0 cpu_id=2
108449  surfaceflinger-23896 (23896) [001] ...1 24575.842938: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
108450  surfaceflinger-23896 (23896) [001] ...1 24575.842946: tracing_mark_write: E|23896
108451  surfaceflinger-23896 (23896) [001] .... 24575.843007: binder_transaction: transaction=1671443 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
108452  surfaceflinger-23896 (23896) [001] ...2 24575.843042: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
108453  surfaceflinger-23896 (23896) [001] d..4 24575.843053: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
108454  surfaceflinger-23896 (23896) [001] d..5 24575.843078: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
108455          <idle>-0     (-----) [002] .n.1 24575.843082: cpu_idle: state=4294967295 cpu_id=2
108456          <idle>-0     (-----) [002] d..2 24575.843092: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
108457  surfaceflinger-23896 (23896) [001] d..2 24575.843099: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
108458  HwBinder:598_3-633   (  598) [002] .... 24575.843102: binder_transaction_received: transaction=1671443
108459         rcuop/0-10    (   10) [001] d..2 24575.843105: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
108460         rcuop/0-10    (   10) [001] d..3 24575.843141: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
108461  HwBinder:598_3-633   (  598) [002] ...1 24575.843150: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
108462         rcuop/0-10    (   10) [001] d..2 24575.843152: 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
108463     rcu_preempt-7     (    7) [001] d..2 24575.843176: 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
108464          <idle>-0     (-----) [001] d..1 24575.843199: cpu_idle: state=0 cpu_id=1
108465  HwBinder:598_3-633   (  598) [002] ...1 24575.843290: tracing_mark_write: B|598|HWCSession::PresentDisplay::
108466  HwBinder:598_3-633   (  598) [002] ...1 24575.843495: tracing_mark_write: B|598|HWDeviceDRM::Commit::
108467  HwBinder:598_3-633   (  598) [002] ...1 24575.843510: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
108468  HwBinder:598_3-633   (  598) [002] d..2 24575.844182: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
108469  HwBinder:598_3-633   (  598) [002] d..3 24575.844210: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
108470          <idle>-0     (-----) [003] .n.1 24575.844215: cpu_idle: state=4294967295 cpu_id=3
108471          <idle>-0     (-----) [003] d..2 24575.844227: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
108472  HwBinder:598_3-633   (  598) [002] d.s3 24575.844251: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
108473  HwBinder:598_3-633   (  598) [002] d.s4 24575.844275: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
108474  HwBinder:598_3-633   (  598) [002] ...1 24575.844398: tracing_mark_write: E|598
108475  HwBinder:598_3-633   (  598) [002] ...1 24575.844404: tracing_mark_write: E|598
108476  HwBinder:598_3-633   (  598) [002] ...1 24575.844478: tracing_mark_write: E|598
108477  HwBinder:598_3-633   (  598) [002] ...1 24575.844539: tracing_mark_write: E|598
108478  HwBinder:598_3-633   (  598) [002] .... 24575.844555: binder_transaction: transaction=1671444 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
108479  HwBinder:598_3-633   (  598) [002] d..2 24575.844580: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
108480  HwBinder:598_3-633   (  598) [002] d..3 24575.844599: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
108481  HwBinder:598_3-633   (  598) [002] .... 24575.844604: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
108482          <idle>-0     (-----) [001] .n.1 24575.844605: cpu_idle: state=4294967295 cpu_id=1
108483          <idle>-0     (-----) [001] d..2 24575.844617: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
108484  surfaceflinger-23896 (23896) [001] .... 24575.844626: binder_transaction_received: transaction=1671444
108485  HwBinder:598_3-633   (  598) [002] d..2 24575.844702: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
108486          <idle>-0     (-----) [002] d..1 24575.844720: cpu_idle: state=0 cpu_id=2
108487  surfaceflinger-23896 (23896) [001] d..1 24575.844888: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
108488  surfaceflinger-23896 (23896) [001] d..2 24575.844912: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
108489          <idle>-0     (-----) [000] .n.1 24575.844918: cpu_idle: state=4294967295 cpu_id=0
108490          <idle>-0     (-----) [000] d..2 24575.844931: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
108491  Binder:23896_5-25989 (23896) [000] .... 24575.844993: binder_transaction: transaction=1671445 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
108492  Binder:23896_5-25989 (23896) [000] d..2 24575.845007: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
108493  Binder:23896_5-25989 (23896) [000] d..3 24575.845030: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
108494  Binder:23896_5-25989 (23896) [000] .... 24575.845036: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
108495 crtc_commit:111-253   (  253) [003] d..2 24575.845048: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
108496  surfaceflinger-23896 (23896) [001] d..2 24575.845098: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108497  Binder:23896_5-25989 (23896) [000] d..2 24575.845115: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
108498    RenderThread-25194 (24827) [000] .... 24575.845124: binder_transaction_received: transaction=1671445
108499          <idle>-0     (-----) [001] d..1 24575.845143: cpu_idle: state=0 cpu_id=1
108500  kworker/u16:10-23868 (23868) [003] .... 24575.845152: clk_set_rate: l3_cluster0_vote_clk 300000000
108501  kworker/u16:10-23868 (23868) [003] .... 24575.845158: clk_set_rate: l3_clk 300000000
108502  kworker/u16:10-23868 (23868) [003] d..2 24575.845457: 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
108503          <idle>-0     (-----) [003] d.s4 24575.845504: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
108504          <idle>-0     (-----) [003] d.s5 24575.845520: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
108505          <idle>-0     (-----) [003] dns5 24575.845526: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
108506          <idle>-0     (-----) [003] d..2 24575.845540: 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
108507  kworker/u16:10-23868 (23868) [003] d..2 24575.845570: 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
108508          <idle>-0     (-----) [003] d..1 24575.845588: cpu_idle: state=0 cpu_id=3
108509          <idle>-0     (-----) [001] d.s2 24575.847581: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
108510    RenderThread-25194 (24827) [000] d.s2 24575.847600: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
108511          <idle>-0     (-----) [001] dns3 24575.847605: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
108512          <idle>-0     (-----) [001] .n.1 24575.847625: cpu_idle: state=4294967295 cpu_id=1
108513          <idle>-0     (-----) [001] d..2 24575.847636: 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
108514    RenderThread-25194 (24827) [000] d.s3 24575.847656: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
108515     rcu_preempt-7     (    7) [001] d..2 24575.847670: 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
108516  kworker/u16:10-23868 (23868) [001] d..2 24575.847761: 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
108517          <idle>-0     (-----) [001] d..1 24575.847776: cpu_idle: state=0 cpu_id=1
108518    RenderThread-25194 (24827) [000] .... 24575.847883: binder_transaction: transaction=1671446 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
108519    RenderThread-25194 (24827) [000] ...2 24575.847899: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
108520    RenderThread-25194 (24827) [000] d..4 24575.847904: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
108521    RenderThread-25194 (24827) [000] dn.5 24575.847924: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
108522    RenderThread-25194 (24827) [000] d..2 24575.847936: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
108523  Binder:23896_5-25989 (23896) [000] .... 24575.847947: binder_transaction_received: transaction=1671446
108524  Binder:23896_5-25989 (23896) [000] .... 24575.848134: binder_transaction: transaction=1671447 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
108525  Binder:23896_5-25989 (23896) [000] .... 24575.848144: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
108526  Binder:23896_5-25989 (23896) [000] d..2 24575.848211: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
108527    RenderThread-25194 (24827) [000] .... 24575.848222: binder_transaction_received: transaction=1671447
108528    RenderThread-25194 (24827) [000] d..2 24575.848343: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108529          <idle>-0     (-----) [000] d..1 24575.848365: cpu_idle: state=0 cpu_id=0
108530          <idle>-0     (-----) [000] d.h5 24575.849870: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
108531          <idle>-0     (-----) [000] dnh6 24575.849889: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
108532          <idle>-0     (-----) [000] dnh5 24575.849896: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
108533          <idle>-0     (-----) [000] dnh6 24575.849911: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
108534          <idle>-0     (-----) [003] .n.1 24575.849919: cpu_idle: state=4294967295 cpu_id=3
108535          <idle>-0     (-----) [000] .n.1 24575.849928: cpu_idle: state=4294967295 cpu_id=0
108536          <idle>-0     (-----) [003] d..2 24575.849931: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
108537          <idle>-0     (-----) [000] d..2 24575.849941: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
108538  crtc_event:111-254   (  254) [000] d..3 24575.849960: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
108539  crtc_event:111-254   (  254) [000] d..4 24575.849974: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
108540          <idle>-0     (-----) [001] .n.1 24575.849980: cpu_idle: state=4294967295 cpu_id=1
108541          <idle>-0     (-----) [001] d..2 24575.849992: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
108542  crtc_event:111-254   (  254) [000] d..2 24575.850000: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108543          <idle>-0     (-----) [000] d..1 24575.850013: cpu_idle: state=0 cpu_id=0
108544 crtc_commit:111-253   (  253) [003] d..2 24575.850114: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
108545          <idle>-0     (-----) [003] d..1 24575.850124: cpu_idle: state=0 cpu_id=3
108546 kgsl_worker_thr-246   (  246) [001] d..2 24575.850213: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
108547          <idle>-0     (-----) [001] d..1 24575.850225: cpu_idle: state=0 cpu_id=1
108548          <idle>-0     (-----) [001] d.h2 24575.850303: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
108549          <idle>-0     (-----) [001] dnh3 24575.850318: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
108550          <idle>-0     (-----) [001] .n.1 24575.850326: cpu_idle: state=4294967295 cpu_id=1
108551          <idle>-0     (-----) [001] d..2 24575.850336: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
108552 kgsl_worker_thr-246   (  246) [001] d..2 24575.850360: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
108553 kgsl_worker_thr-246   (  246) [001] d..3 24575.850378: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
108554 kgsl_worker_thr-246   (  246) [001] d..2 24575.850393: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
108555  kworker/u16:10-23868 (23868) [001] d..2 24575.850814: 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
108556          <idle>-0     (-----) [001] d..1 24575.850828: cpu_idle: state=0 cpu_id=1
108557          <idle>-0     (-----) [003] d.s3 24575.850917: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
108558          <idle>-0     (-----) [003] d.s4 24575.850938: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
108559          <idle>-0     (-----) [000] .n.1 24575.850944: cpu_idle: state=4294967295 cpu_id=0
108560          <idle>-0     (-----) [003] d.s3 24575.850954: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
108561          <idle>-0     (-----) [000] d..2 24575.850958: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
108562          <idle>-0     (-----) [003] dns4 24575.850977: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
108563  crtc_event:111-254   (  254) [000] d..2 24575.850994: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108564          <idle>-0     (-----) [003] .n.1 24575.850998: cpu_idle: state=4294967295 cpu_id=3
108565          <idle>-0     (-----) [000] d..1 24575.851004: cpu_idle: state=0 cpu_id=0
108566          <idle>-0     (-----) [003] d..2 24575.851008: 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
108567     kworker/3:1-12662 (12662) [003] d..2 24575.851066: 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
108568          <idle>-0     (-----) [003] d..1 24575.851079: cpu_idle: state=0 cpu_id=3
108569          <idle>-0     (-----) [000] d.h3 24575.851937: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
108570          <idle>-0     (-----) [000] d.h4 24575.851954: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
108571          <idle>-0     (-----) [001] .n.1 24575.851962: cpu_idle: state=4294967295 cpu_id=1
108572          <idle>-0     (-----) [000] ...1 24575.851973: cpu_idle: state=4294967295 cpu_id=0
108573          <idle>-0     (-----) [001] d..2 24575.851974: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
108574          <idle>-0     (-----) [000] d..1 24575.851979: cpu_idle: state=0 cpu_id=0
108575 kgsl_worker_thr-246   (  246) [001] d..2 24575.852054: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108576          <idle>-0     (-----) [001] d..1 24575.852064: cpu_idle: state=0 cpu_id=1
108577          <idle>-0     (-----) [000] d.h5 24575.852192: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
108578          <idle>-0     (-----) [000] d.h6 24575.852208: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
108579          <idle>-0     (-----) [003] .n.1 24575.852215: cpu_idle: state=4294967295 cpu_id=3
108580          <idle>-0     (-----) [000] ...1 24575.852224: cpu_idle: state=4294967295 cpu_id=0
108581          <idle>-0     (-----) [003] d..2 24575.852225: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
108582          <idle>-0     (-----) [000] d..1 24575.852230: cpu_idle: state=0 cpu_id=0
108583 crtc_commit:111-253   (  253) [003] d..2 24575.852317: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
108584          <idle>-0     (-----) [003] d..1 24575.852331: cpu_idle: state=0 cpu_id=3
108585          <idle>-0     (-----) [000] d.h5 24575.852503: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
108586          <idle>-0     (-----) [000] dnh6 24575.852514: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
108587          <idle>-0     (-----) [000] .n.1 24575.852532: cpu_idle: state=4294967295 cpu_id=0
108588          <idle>-0     (-----) [000] d..2 24575.852542: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
108589  crtc_event:111-254   (  254) [000] d..2 24575.852566: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108590          <idle>-0     (-----) [000] d..1 24575.852578: cpu_idle: state=0 cpu_id=0
108591          <idle>-0     (-----) [001] d.s2 24575.854250: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
108592          <idle>-0     (-----) [001] dns3 24575.854270: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
108593          <idle>-0     (-----) [001] dns3 24575.854276: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
108594          <idle>-0     (-----) [001] dns4 24575.854287: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
108595          <idle>-0     (-----) [000] ...1 24575.854298: cpu_idle: state=4294967295 cpu_id=0
108596          <idle>-0     (-----) [001] .n.1 24575.854299: cpu_idle: state=4294967295 cpu_id=1
108597          <idle>-0     (-----) [000] d..1 24575.854302: cpu_idle: state=0 cpu_id=0
108598          <idle>-0     (-----) [001] d..2 24575.854308: 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
108599     rcu_preempt-7     (    7) [001] d.h3 24575.854317: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
108600     rcu_preempt-7     (    7) [001] d.h4 24575.854346: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
108601          <idle>-0     (-----) [003] .n.1 24575.854353: cpu_idle: state=4294967295 cpu_id=3
108602     rcu_preempt-7     (    7) [001] d..2 24575.854359: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
108603          <idle>-0     (-----) [003] d..2 24575.854367: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
108604        DispSync-23904 (23896) [003] d..1 24575.854390: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
108605     rcu_preempt-7     (    7) [001] d..3 24575.854401: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
108606     rcu_preempt-7     (    7) [001] d..2 24575.854421: 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
108607        DispSync-23904 (23896) [003] d..2 24575.854422: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
108608          <idle>-0     (-----) [002] .n.1 24575.854429: cpu_idle: state=4294967295 cpu_id=2
108609          <idle>-0     (-----) [002] d..2 24575.854443: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
108610        DispSync-23904 (23896) [003] d..2 24575.854449: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
108611         rcuop/0-10    (   10) [003] d..2 24575.854455: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
108612         rcuop/0-10    (   10) [003] d..3 24575.854503: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
108613         rcuop/0-10    (   10) [003] d..2 24575.854517: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
108614  appEventThread-23905 (23896) [002] d..3 24575.854527: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
108615         rcuop/0-10    (   10) [003] d..3 24575.854550: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
108616  appEventThread-23905 (23896) [002] d..4 24575.854555: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
108617          <idle>-0     (-----) [000] .n.1 24575.854559: cpu_idle: state=4294967295 cpu_id=0
108618         rcuop/0-10    (   10) [003] d..2 24575.854568: 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
108619          <idle>-0     (-----) [000] d..2 24575.854574: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
108620  appEventThread-23905 (23896) [002] d..2 24575.854589: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
108621     rcu_preempt-7     (    7) [003] d..2 24575.854604: 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
108622          <idle>-0     (-----) [003] d..1 24575.854620: cpu_idle: state=0 cpu_id=3
108623         rcuop/1-21    (   21) [002] d..2 24575.854623: 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
108624          <idle>-0     (-----) [002] d..1 24575.854639: cpu_idle: state=0 cpu_id=2
108625  kworker/u16:10-23868 (23868) [001] d..2 24575.854763: 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
108626          <idle>-0     (-----) [001] d..1 24575.854782: cpu_idle: state=0 cpu_id=1
108627 s.nexuslauncher-24827 (24827) [000] .... 24575.854972: binder_transaction: transaction=1671448 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
108628 s.nexuslauncher-24827 (24827) [000] d..4 24575.854984: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
108629 s.nexuslauncher-24827 (24827) [000] d..5 24575.855024: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
108630          <idle>-0     (-----) [001] .n.1 24575.855029: cpu_idle: state=4294967295 cpu_id=1
108631          <idle>-0     (-----) [001] d..2 24575.855044: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
108632  Binder:23896_5-25989 (23896) [001] .... 24575.855053: binder_transaction_received: transaction=1671448
108633 s.nexuslauncher-24827 (24827) [000] d..3 24575.855066: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
108634 s.nexuslauncher-24827 (24827) [000] d..4 24575.855094: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
108635  Binder:23896_5-25989 (23896) [001] d..1 24575.855095: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
108636          <idle>-0     (-----) [002] .n.1 24575.855100: cpu_idle: state=4294967295 cpu_id=2
108637          <idle>-0     (-----) [002] d..2 24575.855113: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
108638  Binder:23896_5-25989 (23896) [001] d..2 24575.855136: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
108639          <idle>-0     (-----) [003] .n.1 24575.855142: cpu_idle: state=4294967295 cpu_id=3
108640          <idle>-0     (-----) [003] d..2 24575.855153: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
108641    RenderThread-25194 (24827) [002] d..2 24575.855180: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
108642  Binder:23896_5-25989 (23896) [001] d..2 24575.855187: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108643          <idle>-0     (-----) [002] d..1 24575.855195: cpu_idle: state=0 cpu_id=2
108644          <idle>-0     (-----) [001] d..1 24575.855203: cpu_idle: state=0 cpu_id=1
108645  appEventThread-23905 (23896) [003] d..2 24575.855211: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
108646          <idle>-0     (-----) [003] d.s4 24575.855263: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
108647          <idle>-0     (-----) [003] d.s5 24575.855296: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
108648          <idle>-0     (-----) [003] dns5 24575.855302: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
108649          <idle>-0     (-----) [003] d..2 24575.855316: 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
108650  kworker/u16:10-23868 (23868) [003] .... 24575.855426: clk_set_rate: l3_cluster0_vote_clk 403200000
108651  kworker/u16:10-23868 (23868) [003] .... 24575.855433: clk_set_rate: l3_clk 403200000
108652  kworker/u16:10-23868 (23868) [003] d..2 24575.855487: 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
108653          <idle>-0     (-----) [003] d..1 24575.855504: cpu_idle: state=0 cpu_id=3
108654 s.nexuslauncher-24827 (24827) [000] d..3 24575.855514: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
108655 s.nexuslauncher-24827 (24827) [000] d..4 24575.855548: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
108656          <idle>-0     (-----) [001] .n.1 24575.855553: cpu_idle: state=4294967295 cpu_id=1
108657          <idle>-0     (-----) [001] d..2 24575.855566: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
108658 s.nexuslauncher-24827 (24827) [000] d..2 24575.855585: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108659          <idle>-0     (-----) [000] d..1 24575.855606: cpu_idle: state=0 cpu_id=0
108660    RenderThread-25194 (24827) [001] d..1 24575.855783: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
108661    RenderThread-25194 (24827) [001] d..2 24575.855805: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
108662          <idle>-0     (-----) [000] .n.1 24575.855812: cpu_idle: state=4294967295 cpu_id=0
108663          <idle>-0     (-----) [000] d..2 24575.855825: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
108664    RenderThread-25194 (24827) [001] .... 24575.855868: binder_transaction: transaction=1671449 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
108665    RenderThread-25194 (24827) [001] ...2 24575.855877: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
108666    RenderThread-25194 (24827) [001] d..4 24575.855880: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
108667    RenderThread-25194 (24827) [001] dn.5 24575.855895: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
108668    RenderThread-25194 (24827) [001] d..2 24575.855905: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
108669  Binder:23896_5-25989 (23896) [001] .... 24575.855913: binder_transaction_received: transaction=1671449
108670 s.nexuslauncher-24827 (24827) [000] d..2 24575.855936: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108671          <idle>-0     (-----) [000] d..1 24575.855952: cpu_idle: state=0 cpu_id=0
108672  Binder:23896_5-25989 (23896) [001] d..2 24575.855956: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
108673    RenderThread-25194 (24827) [001] d..2 24575.855983: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108674          <idle>-0     (-----) [001] d..1 24575.856002: cpu_idle: state=0 cpu_id=1
108675          <idle>-0     (-----) [000] ...1 24575.857320: cpu_idle: state=4294967295 cpu_id=0
108676          <idle>-0     (-----) [000] d..1 24575.857326: cpu_idle: state=0 cpu_id=0
108677          <idle>-0     (-----) [001] ...1 24575.857464: cpu_idle: state=4294967295 cpu_id=1
108678          <idle>-0     (-----) [001] d..1 24575.857469: cpu_idle: state=0 cpu_id=1
108679          <idle>-0     (-----) [003] d.h2 24575.858343: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
108680          <idle>-0     (-----) [003] dnh3 24575.858364: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
108681          <idle>-0     (-----) [003] dnh3 24575.858464: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
108682          <idle>-0     (-----) [003] dnh3 24575.858479: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
108683          <idle>-0     (-----) [005] dnh2 24575.858485: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
108684          <idle>-0     (-----) [005] .n.1 24575.858490: cpu_idle: state=4294967295 cpu_id=5
108685          <idle>-0     (-----) [005] d..2 24575.858495: 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
108686          <idle>-0     (-----) [003] dnh4 24575.858499: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
108687          <idle>-0     (-----) [002] .n.1 24575.858505: cpu_idle: state=4294967295 cpu_id=2
108688          <idle>-0     (-----) [003] .n.1 24575.858507: cpu_idle: state=4294967295 cpu_id=3
108689         sugov:4-560   (  560) [005] d..2 24575.858509: 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
108690          <idle>-0     (-----) [005] d..2 24575.858511: sched_waking: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
108691          <idle>-0     (-----) [005] dn.3 24575.858517: sched_wakeup: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
108692          <idle>-0     (-----) [002] d..2 24575.858519: 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
108693          <idle>-0     (-----) [003] d..2 24575.858520: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
108694          <idle>-0     (-----) [005] d..2 24575.858522: 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
108695     ksoftirqd/5-50    (   50) [005] d..2 24575.858537: 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
108696        DispSync-23904 (23896) [003] d..1 24575.858538: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
108697          <idle>-0     (-----) [005] d..1 24575.858543: cpu_idle: state=0 cpu_id=5
108698         sugov:0-559   (  559) [002] d..2 24575.858549: 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
108699        DispSync-23904 (23896) [003] d..2 24575.858559: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
108700          <idle>-0     (-----) [002] d..2 24575.858565: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
108701        DispSync-23904 (23896) [003] d..2 24575.858599: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
108702          <idle>-0     (-----) [003] d..1 24575.858609: cpu_idle: state=0 cpu_id=3
108703   sfEventThread-23906 (23896) [002] d..3 24575.858617: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
108704   sfEventThread-23906 (23896) [002] d..4 24575.858639: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
108705          <idle>-0     (-----) [001] .n.1 24575.858644: cpu_idle: state=4294967295 cpu_id=1
108706          <idle>-0     (-----) [001] d..2 24575.858655: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
108707   sfEventThread-23906 (23896) [002] d..2 24575.858670: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
108708          <idle>-0     (-----) [002] d..1 24575.858684: cpu_idle: state=0 cpu_id=2
108709  surfaceflinger-23896 (23896) [001] d..1 24575.858827: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
108710  surfaceflinger-23896 (23896) [001] d..2 24575.858860: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
108711          <idle>-0     (-----) [000] .n.1 24575.858864: cpu_idle: state=4294967295 cpu_id=0
108712          <idle>-0     (-----) [000] d..2 24575.858878: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
108713  Binder:23896_5-25989 (23896) [000] d..2 24575.858915: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108714          <idle>-0     (-----) [000] d..1 24575.858928: cpu_idle: state=0 cpu_id=0
108715  surfaceflinger-23896 (23896) [001] d..1 24575.859025: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
108716  surfaceflinger-23896 (23896) [001] d..2 24575.859046: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
108717          <idle>-0     (-----) [002] .n.1 24575.859052: cpu_idle: state=4294967295 cpu_id=2
108718          <idle>-0     (-----) [002] d..2 24575.859062: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
108719   sfEventThread-23906 (23896) [002] d..2 24575.859095: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
108720          <idle>-0     (-----) [002] d..1 24575.859104: cpu_idle: state=0 cpu_id=2
108721  surfaceflinger-23896 (23896) [001] ...1 24575.859231: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
108722  surfaceflinger-23896 (23896) [001] ...1 24575.859240: tracing_mark_write: E|23896
108723  surfaceflinger-23896 (23896) [001] .... 24575.859296: binder_transaction: transaction=1671450 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
108724  surfaceflinger-23896 (23896) [001] ...2 24575.859325: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
108725  surfaceflinger-23896 (23896) [001] d..4 24575.859334: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
108726  surfaceflinger-23896 (23896) [001] d..5 24575.859357: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
108727          <idle>-0     (-----) [002] .n.1 24575.859362: cpu_idle: state=4294967295 cpu_id=2
108728          <idle>-0     (-----) [002] d..2 24575.859370: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
108729  HwBinder:598_3-633   (  598) [002] .... 24575.859383: binder_transaction_received: transaction=1671450
108730  surfaceflinger-23896 (23896) [001] d..2 24575.859389: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108731          <idle>-0     (-----) [001] d..1 24575.859408: cpu_idle: state=0 cpu_id=1
108732  HwBinder:598_3-633   (  598) [002] ...1 24575.859432: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
108733  HwBinder:598_3-633   (  598) [002] ...1 24575.859553: tracing_mark_write: B|598|HWCSession::PresentDisplay::
108734          <idle>-0     (-----) [005] ...1 24575.859554: cpu_idle: state=4294967295 cpu_id=5
108735          <idle>-0     (-----) [005] d..1 24575.859556: cpu_idle: state=0 cpu_id=5
108736  HwBinder:598_3-633   (  598) [002] ...1 24575.859737: tracing_mark_write: B|598|HWDeviceDRM::Commit::
108737  HwBinder:598_3-633   (  598) [002] ...1 24575.859751: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
108738  HwBinder:598_3-633   (  598) [002] d..2 24575.860373: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
108739  HwBinder:598_3-633   (  598) [002] d..3 24575.860400: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
108740          <idle>-0     (-----) [003] .n.1 24575.860405: cpu_idle: state=4294967295 cpu_id=3
108741          <idle>-0     (-----) [003] d..2 24575.860414: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
108742  HwBinder:598_3-633   (  598) [002] ...1 24575.860509: tracing_mark_write: E|598
108743  HwBinder:598_3-633   (  598) [002] ...1 24575.860516: tracing_mark_write: E|598
108744  HwBinder:598_3-633   (  598) [002] ...1 24575.860588: tracing_mark_write: E|598
108745  HwBinder:598_3-633   (  598) [002] ...1 24575.860642: tracing_mark_write: E|598
108746  HwBinder:598_3-633   (  598) [002] .... 24575.860657: binder_transaction: transaction=1671451 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
108747  HwBinder:598_3-633   (  598) [002] d..2 24575.860682: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
108748  HwBinder:598_3-633   (  598) [002] d..3 24575.860702: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
108749  HwBinder:598_3-633   (  598) [002] .... 24575.860707: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
108750          <idle>-0     (-----) [001] .n.1 24575.860708: cpu_idle: state=4294967295 cpu_id=1
108751          <idle>-0     (-----) [001] d..2 24575.860719: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
108752  surfaceflinger-23896 (23896) [001] .... 24575.860728: binder_transaction_received: transaction=1671451
108753  HwBinder:598_3-633   (  598) [002] d..2 24575.860796: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
108754          <idle>-0     (-----) [002] d..1 24575.860815: cpu_idle: state=0 cpu_id=2
108755 crtc_commit:111-253   (  253) [003] d.s1 24575.860907: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
108756 crtc_commit:111-253   (  253) [003] d.s2 24575.860929: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
108757  surfaceflinger-23896 (23896) [001] d..1 24575.861022: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
108758  surfaceflinger-23896 (23896) [001] d..2 24575.861046: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
108759          <idle>-0     (-----) [000] .n.1 24575.861051: cpu_idle: state=4294967295 cpu_id=0
108760          <idle>-0     (-----) [000] d..2 24575.861063: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
108761  Binder:23896_5-25989 (23896) [000] .... 24575.861124: binder_transaction: transaction=1671452 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
108762  Binder:23896_5-25989 (23896) [000] d..2 24575.861138: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
108763  Binder:23896_5-25989 (23896) [000] d..3 24575.861161: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
108764  Binder:23896_5-25989 (23896) [000] .... 24575.861166: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
108765  surfaceflinger-23896 (23896) [001] d..2 24575.861221: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108766  Binder:23896_5-25989 (23896) [000] d..2 24575.861222: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
108767    RenderThread-25194 (24827) [000] .... 24575.861231: binder_transaction_received: transaction=1671452
108768          <idle>-0     (-----) [001] d..1 24575.861240: cpu_idle: state=0 cpu_id=1
108769 crtc_commit:111-253   (  253) [003] d..2 24575.861296: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
108770     rcu_preempt-7     (    7) [003] d..2 24575.861329: 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
108771          <idle>-0     (-----) [003] d..1 24575.861345: cpu_idle: state=0 cpu_id=3
108772    RenderThread-25194 (24827) [000] .... 24575.863504: binder_transaction: transaction=1671453 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
108773    RenderThread-25194 (24827) [000] ...2 24575.863519: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
108774    RenderThread-25194 (24827) [000] d..4 24575.863525: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
108775    RenderThread-25194 (24827) [000] dn.5 24575.863545: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
108776    RenderThread-25194 (24827) [000] d..2 24575.863556: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
108777  Binder:23896_5-25989 (23896) [000] .... 24575.863565: binder_transaction_received: transaction=1671453
108778  Binder:23896_5-25989 (23896) [000] .... 24575.863726: binder_transaction: transaction=1671454 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
108779  Binder:23896_5-25989 (23896) [000] .... 24575.863735: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
108780  Binder:23896_5-25989 (23896) [000] d..2 24575.863791: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
108781    RenderThread-25194 (24827) [000] .... 24575.863801: binder_transaction_received: transaction=1671454
108782    RenderThread-25194 (24827) [000] d..2 24575.863915: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108783          <idle>-0     (-----) [000] d..1 24575.863934: cpu_idle: state=0 cpu_id=0
108784          <idle>-0     (-----) [000] d.h5 24575.866345: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
108785          <idle>-0     (-----) [000] dnh6 24575.866365: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
108786          <idle>-0     (-----) [000] dnh5 24575.866371: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
108787          <idle>-0     (-----) [000] dnh6 24575.866385: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
108788          <idle>-0     (-----) [003] .n.1 24575.866392: cpu_idle: state=4294967295 cpu_id=3
108789          <idle>-0     (-----) [000] .n.1 24575.866401: cpu_idle: state=4294967295 cpu_id=0
108790          <idle>-0     (-----) [003] d..2 24575.866405: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
108791          <idle>-0     (-----) [000] d..2 24575.866414: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
108792  crtc_event:111-254   (  254) [000] d..3 24575.866431: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
108793  crtc_event:111-254   (  254) [000] d..4 24575.866445: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
108794          <idle>-0     (-----) [001] .n.1 24575.866453: cpu_idle: state=4294967295 cpu_id=1
108795          <idle>-0     (-----) [001] d..2 24575.866465: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
108796  crtc_event:111-254   (  254) [000] d..2 24575.866474: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108797          <idle>-0     (-----) [000] d..2 24575.866478: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
108798          <idle>-0     (-----) [000] dn.3 24575.866492: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
108799          <idle>-0     (-----) [000] d..2 24575.866500: 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
108800     ksoftirqd/0-3     (    3) [000] d.s2 24575.866513: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
108801     ksoftirqd/0-3     (    3) [000] d.s3 24575.866554: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
108802     ksoftirqd/0-3     (    3) [000] d..2 24575.866569: 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
108803 crtc_commit:111-253   (  253) [003] d..2 24575.866582: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
108804          <idle>-0     (-----) [003] d..1 24575.866592: cpu_idle: state=0 cpu_id=3
108805 kgsl_worker_thr-246   (  246) [001] d..2 24575.866694: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
108806          <idle>-0     (-----) [001] d..1 24575.866705: cpu_idle: state=0 cpu_id=1
108807  kworker/u16:10-23868 (23868) [000] d..2 24575.866741: 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
108808          <idle>-0     (-----) [000] d..1 24575.866757: cpu_idle: state=0 cpu_id=0
108809          <idle>-0     (-----) [001] d.h2 24575.866780: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
108810          <idle>-0     (-----) [001] dnh3 24575.866794: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
108811          <idle>-0     (-----) [001] .n.1 24575.866803: cpu_idle: state=4294967295 cpu_id=1
108812          <idle>-0     (-----) [001] d..2 24575.866812: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
108813 kgsl_worker_thr-246   (  246) [001] d..2 24575.866836: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
108814 kgsl_worker_thr-246   (  246) [001] d..3 24575.866877: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
108815 kgsl_worker_thr-246   (  246) [001] d..2 24575.866893: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
108816  kworker/u16:10-23868 (23868) [001] d..2 24575.867282: 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
108817          <idle>-0     (-----) [001] d..1 24575.867298: cpu_idle: state=0 cpu_id=1
108818          <idle>-0     (-----) [003] d.s3 24575.867578: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
108819          <idle>-0     (-----) [003] d.s4 24575.867597: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
108820          <idle>-0     (-----) [003] d.s2 24575.867600: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
108821          <idle>-0     (-----) [000] .n.1 24575.867603: cpu_idle: state=4294967295 cpu_id=0
108822          <idle>-0     (-----) [000] d..2 24575.867615: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
108823          <idle>-0     (-----) [003] dns3 24575.867616: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
108824          <idle>-0     (-----) [003] .n.1 24575.867632: cpu_idle: state=4294967295 cpu_id=3
108825          <idle>-0     (-----) [003] d..2 24575.867640: 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
108826  crtc_event:111-254   (  254) [000] d..2 24575.867648: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108827     rcu_preempt-7     (    7) [003] d..2 24575.867649: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
108828          <idle>-0     (-----) [000] d..1 24575.867658: cpu_idle: state=0 cpu_id=0
108829     rcu_preempt-7     (    7) [003] d..3 24575.867667: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
108830     rcu_preempt-7     (    7) [003] d..2 24575.867679: 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
108831         rcuop/0-10    (   10) [003] d..2 24575.867685: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
108832         rcuop/0-10    (   10) [003] d..3 24575.867718: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
108833         rcuop/0-10    (   10) [003] d..2 24575.867722: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
108834         rcuop/0-10    (   10) [003] d..3 24575.867733: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
108835         rcuop/0-10    (   10) [003] d..2 24575.867742: 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
108836         rcuop/1-21    (   21) [003] d..2 24575.867758: 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
108837     rcu_preempt-7     (    7) [003] d..2 24575.867781: 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
108838          <idle>-0     (-----) [003] d..1 24575.867792: cpu_idle: state=0 cpu_id=3
108839          <idle>-0     (-----) [000] d.h3 24575.868353: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
108840          <idle>-0     (-----) [000] d.h4 24575.868371: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
108841          <idle>-0     (-----) [001] .n.1 24575.868377: cpu_idle: state=4294967295 cpu_id=1
108842          <idle>-0     (-----) [000] ...1 24575.868386: cpu_idle: state=4294967295 cpu_id=0
108843          <idle>-0     (-----) [001] d..2 24575.868388: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
108844          <idle>-0     (-----) [000] d..1 24575.868391: cpu_idle: state=0 cpu_id=0
108845 kgsl_worker_thr-246   (  246) [001] d..2 24575.868456: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108846          <idle>-0     (-----) [001] d..1 24575.868468: cpu_idle: state=0 cpu_id=1
108847          <idle>-0     (-----) [000] d.h5 24575.868664: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
108848          <idle>-0     (-----) [000] d.h6 24575.868679: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
108849          <idle>-0     (-----) [003] .n.1 24575.868685: cpu_idle: state=4294967295 cpu_id=3
108850          <idle>-0     (-----) [000] ...1 24575.868694: cpu_idle: state=4294967295 cpu_id=0
108851          <idle>-0     (-----) [003] d..2 24575.868694: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
108852          <idle>-0     (-----) [000] d..1 24575.868699: cpu_idle: state=0 cpu_id=0
108853 crtc_commit:111-253   (  253) [003] d..2 24575.868776: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
108854          <idle>-0     (-----) [003] d..1 24575.868787: cpu_idle: state=0 cpu_id=3
108855          <idle>-0     (-----) [000] d.h5 24575.868976: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
108856          <idle>-0     (-----) [000] dnh6 24575.868986: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
108857          <idle>-0     (-----) [000] .n.1 24575.869002: cpu_idle: state=4294967295 cpu_id=0
108858          <idle>-0     (-----) [000] d..2 24575.869011: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
108859  crtc_event:111-254   (  254) [000] d..2 24575.869036: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108860          <idle>-0     (-----) [000] d..1 24575.869048: cpu_idle: state=0 cpu_id=0
108861          <idle>-0     (-----) [000] ...1 24575.870533: cpu_idle: state=4294967295 cpu_id=0
108862          <idle>-0     (-----) [000] d..1 24575.870537: cpu_idle: state=0 cpu_id=0
108863          <idle>-0     (-----) [003] d.h2 24575.870791: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
108864          <idle>-0     (-----) [003] dnh3 24575.870804: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
108865          <idle>-0     (-----) [003] .n.1 24575.870813: cpu_idle: state=4294967295 cpu_id=3
108866          <idle>-0     (-----) [003] d..2 24575.870822: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
108867        DispSync-23904 (23896) [003] d..1 24575.870838: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
108868        DispSync-23904 (23896) [003] d..2 24575.870861: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
108869          <idle>-0     (-----) [002] .n.1 24575.870868: cpu_idle: state=4294967295 cpu_id=2
108870          <idle>-0     (-----) [002] d..2 24575.870880: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
108871        DispSync-23904 (23896) [003] d..2 24575.870890: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
108872          <idle>-0     (-----) [003] d..1 24575.870929: cpu_idle: state=0 cpu_id=3
108873  appEventThread-23905 (23896) [002] d..3 24575.870973: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
108874  appEventThread-23905 (23896) [002] d..4 24575.870999: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
108875          <idle>-0     (-----) [000] .n.1 24575.871004: cpu_idle: state=4294967295 cpu_id=0
108876          <idle>-0     (-----) [000] d..2 24575.871018: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
108877  appEventThread-23905 (23896) [002] d..2 24575.871045: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
108878          <idle>-0     (-----) [002] d..1 24575.871061: cpu_idle: state=0 cpu_id=2
108879 s.nexuslauncher-24827 (24827) [000] .... 24575.871351: binder_transaction: transaction=1671455 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
108880 s.nexuslauncher-24827 (24827) [000] d..4 24575.871361: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
108881 s.nexuslauncher-24827 (24827) [000] d..5 24575.871395: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
108882          <idle>-0     (-----) [001] .n.1 24575.871399: cpu_idle: state=4294967295 cpu_id=1
108883          <idle>-0     (-----) [001] d..2 24575.871412: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
108884  Binder:23896_5-25989 (23896) [001] .... 24575.871420: binder_transaction_received: transaction=1671455
108885 s.nexuslauncher-24827 (24827) [000] d..3 24575.871431: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
108886  Binder:23896_5-25989 (23896) [001] d..1 24575.871455: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
108887 s.nexuslauncher-24827 (24827) [000] d..4 24575.871457: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
108888          <idle>-0     (-----) [002] .n.1 24575.871464: cpu_idle: state=4294967295 cpu_id=2
108889          <idle>-0     (-----) [002] d..2 24575.871476: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
108890  Binder:23896_5-25989 (23896) [001] d..2 24575.871497: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
108891          <idle>-0     (-----) [003] .n.1 24575.871503: cpu_idle: state=4294967295 cpu_id=3
108892          <idle>-0     (-----) [003] d..2 24575.871510: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
108893    RenderThread-25194 (24827) [002] d..2 24575.871534: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
108894  Binder:23896_5-25989 (23896) [001] d..2 24575.871543: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108895          <idle>-0     (-----) [002] d..1 24575.871547: cpu_idle: state=0 cpu_id=2
108896          <idle>-0     (-----) [001] d..1 24575.871558: cpu_idle: state=0 cpu_id=1
108897  appEventThread-23905 (23896) [003] d..2 24575.871561: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
108898          <idle>-0     (-----) [003] d..1 24575.871570: cpu_idle: state=0 cpu_id=3
108899 s.nexuslauncher-24827 (24827) [000] d..3 24575.871816: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
108900 s.nexuslauncher-24827 (24827) [000] d..4 24575.871850: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
108901          <idle>-0     (-----) [001] .n.1 24575.871856: cpu_idle: state=4294967295 cpu_id=1
108902          <idle>-0     (-----) [001] d..2 24575.871869: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
108903 s.nexuslauncher-24827 (24827) [000] d..2 24575.871886: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108904          <idle>-0     (-----) [000] d..1 24575.871908: cpu_idle: state=0 cpu_id=0
108905    RenderThread-25194 (24827) [001] d..1 24575.872068: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
108906    RenderThread-25194 (24827) [001] d..2 24575.872091: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
108907          <idle>-0     (-----) [000] .n.1 24575.872099: cpu_idle: state=4294967295 cpu_id=0
108908          <idle>-0     (-----) [000] d..2 24575.872111: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
108909    RenderThread-25194 (24827) [001] .... 24575.872150: binder_transaction: transaction=1671456 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
108910    RenderThread-25194 (24827) [001] ...2 24575.872160: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
108911    RenderThread-25194 (24827) [001] d..4 24575.872163: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
108912    RenderThread-25194 (24827) [001] dn.5 24575.872178: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
108913    RenderThread-25194 (24827) [001] d..2 24575.872189: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
108914  Binder:23896_5-25989 (23896) [001] .... 24575.872197: binder_transaction_received: transaction=1671456
108915 s.nexuslauncher-24827 (24827) [000] d..2 24575.872224: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108916  Binder:23896_5-25989 (23896) [001] d..2 24575.872238: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
108917          <idle>-0     (-----) [000] d..1 24575.872240: cpu_idle: state=0 cpu_id=0
108918    RenderThread-25194 (24827) [001] d..2 24575.872266: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108919          <idle>-0     (-----) [001] d..1 24575.872283: cpu_idle: state=0 cpu_id=1
108920          <idle>-0     (-----) [000] ...1 24575.873565: cpu_idle: state=4294967295 cpu_id=0
108921          <idle>-0     (-----) [000] d..1 24575.873570: cpu_idle: state=0 cpu_id=0
108922          <idle>-0     (-----) [003] d.s2 24575.874244: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
108923          <idle>-0     (-----) [003] dns3 24575.874262: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
108924          <idle>-0     (-----) [003] dns3 24575.874268: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
108925          <idle>-0     (-----) [003] dns4 24575.874300: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
108926          <idle>-0     (-----) [003] .n.1 24575.874311: cpu_idle: state=4294967295 cpu_id=3
108927          <idle>-0     (-----) [003] d..2 24575.874321: 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
108928     rcu_preempt-7     (    7) [003] d..2 24575.874333: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
108929     rcu_preempt-7     (    7) [003] d..3 24575.874346: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
108930     rcu_preempt-7     (    7) [003] d..2 24575.874356: 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
108931         rcuop/0-10    (   10) [003] d..2 24575.874361: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
108932         rcuop/0-10    (   10) [003] d..3 24575.874373: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
108933         rcuop/0-10    (   10) [003] d..2 24575.874382: 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
108934         rcuop/1-21    (   21) [003] d..2 24575.874397: 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
108935  kworker/u16:10-23868 (23868) [003] d..2 24575.874634: 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
108936          <idle>-0     (-----) [003] d.s4 24575.874685: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
108937          <idle>-0     (-----) [003] d.s5 24575.874695: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
108938          <idle>-0     (-----) [003] dns5 24575.874701: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
108939          <idle>-0     (-----) [003] d..2 24575.874714: 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
108940  kworker/u16:10-23868 (23868) [003] d.h1 24575.874780: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
108941  kworker/u16:10-23868 (23868) [003] d.h2 24575.874807: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
108942          <idle>-0     (-----) [002] .n.1 24575.874813: cpu_idle: state=4294967295 cpu_id=2
108943  kworker/u16:10-23868 (23868) [003] .... 24575.874820: clk_set_rate: l3_cluster0_vote_clk 300000000
108944          <idle>-0     (-----) [002] d..2 24575.874824: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
108945  kworker/u16:10-23868 (23868) [003] .... 24575.874828: clk_set_rate: l3_clk 300000000
108946        DispSync-23904 (23896) [002] d..1 24575.874846: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
108947        DispSync-23904 (23896) [002] d..2 24575.874879: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
108948          <idle>-0     (-----) [000] .n.1 24575.874884: cpu_idle: state=4294967295 cpu_id=0
108949  kworker/u16:10-23868 (23868) [003] d..2 24575.874892: 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
108950          <idle>-0     (-----) [000] d..2 24575.874897: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
108951          <idle>-0     (-----) [003] d..1 24575.874911: cpu_idle: state=0 cpu_id=3
108952        DispSync-23904 (23896) [002] d..2 24575.874916: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
108953          <idle>-0     (-----) [002] d..1 24575.874932: cpu_idle: state=0 cpu_id=2
108954   sfEventThread-23906 (23896) [000] d..3 24575.874970: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
108955   sfEventThread-23906 (23896) [000] d..4 24575.874993: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
108956          <idle>-0     (-----) [001] .n.1 24575.875000: cpu_idle: state=4294967295 cpu_id=1
108957          <idle>-0     (-----) [001] d..2 24575.875015: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
108958   sfEventThread-23906 (23896) [000] d..2 24575.875036: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108959          <idle>-0     (-----) [000] d..1 24575.875053: cpu_idle: state=0 cpu_id=0
108960  surfaceflinger-23896 (23896) [001] d..1 24575.875226: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
108961  surfaceflinger-23896 (23896) [001] d..2 24575.875261: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
108962          <idle>-0     (-----) [000] .n.1 24575.875267: cpu_idle: state=4294967295 cpu_id=0
108963          <idle>-0     (-----) [000] d..2 24575.875282: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
108964  Binder:23896_5-25989 (23896) [000] d..2 24575.875312: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108965          <idle>-0     (-----) [000] d..1 24575.875322: cpu_idle: state=0 cpu_id=0
108966  surfaceflinger-23896 (23896) [001] d..2 24575.875434: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
108967  surfaceflinger-23896 (23896) [001] d..3 24575.875484: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
108968  surfaceflinger-23896 (23896) [001] d..1 24575.875522: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
108969  surfaceflinger-23896 (23896) [001] d..2 24575.875543: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
108970          <idle>-0     (-----) [000] .n.1 24575.875548: cpu_idle: state=4294967295 cpu_id=0
108971          <idle>-0     (-----) [000] d..2 24575.875558: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
108972   sfEventThread-23906 (23896) [000] d..2 24575.875601: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108973          <idle>-0     (-----) [000] d..1 24575.875613: cpu_idle: state=0 cpu_id=0
108974  surfaceflinger-23896 (23896) [001] ...1 24575.875778: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
108975  surfaceflinger-23896 (23896) [001] ...1 24575.875788: tracing_mark_write: E|23896
108976  surfaceflinger-23896 (23896) [001] .... 24575.875857: binder_transaction: transaction=1671457 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
108977  surfaceflinger-23896 (23896) [001] ...2 24575.875891: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
108978  surfaceflinger-23896 (23896) [001] d..4 24575.875901: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
108979  surfaceflinger-23896 (23896) [001] d..5 24575.875925: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
108980          <idle>-0     (-----) [002] .n.1 24575.875930: cpu_idle: state=4294967295 cpu_id=2
108981          <idle>-0     (-----) [002] d..2 24575.875941: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
108982  surfaceflinger-23896 (23896) [001] d..2 24575.875950: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
108983  HwBinder:598_3-633   (  598) [002] .... 24575.875952: binder_transaction_received: transaction=1671457
108984         rcuop/0-10    (   10) [001] d..2 24575.875957: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
108985         rcuop/0-10    (   10) [001] d..3 24575.875975: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
108986          <idle>-0     (-----) [003] .n.1 24575.875981: cpu_idle: state=4294967295 cpu_id=3
108987          <idle>-0     (-----) [003] d..2 24575.875996: 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
108988         rcuop/0-10    (   10) [001] d..2 24575.875999: 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
108989  HwBinder:598_3-633   (  598) [002] ...1 24575.876006: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
108990          <idle>-0     (-----) [001] d..1 24575.876021: cpu_idle: state=0 cpu_id=1
108991     rcu_preempt-7     (    7) [003] d..2 24575.876021: 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
108992          <idle>-0     (-----) [003] d..1 24575.876030: cpu_idle: state=0 cpu_id=3
108993  HwBinder:598_3-633   (  598) [002] ...1 24575.876180: tracing_mark_write: B|598|HWCSession::PresentDisplay::
108994  HwBinder:598_3-633   (  598) [002] ...1 24575.876402: tracing_mark_write: B|598|HWDeviceDRM::Commit::
108995  HwBinder:598_3-633   (  598) [002] ...1 24575.876418: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
108996  HwBinder:598_3-633   (  598) [002] d..2 24575.877126: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
108997  HwBinder:598_3-633   (  598) [002] d..3 24575.877154: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
108998          <idle>-0     (-----) [003] .n.1 24575.877159: cpu_idle: state=4294967295 cpu_id=3
108999          <idle>-0     (-----) [003] d..2 24575.877173: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
109000  HwBinder:598_3-633   (  598) [002] ...1 24575.877272: tracing_mark_write: E|598
109001  HwBinder:598_3-633   (  598) [002] ...1 24575.877279: tracing_mark_write: E|598
109002  HwBinder:598_3-633   (  598) [002] ...1 24575.877358: tracing_mark_write: E|598
109003  HwBinder:598_3-633   (  598) [002] ...1 24575.877418: tracing_mark_write: E|598
109004  HwBinder:598_3-633   (  598) [002] .... 24575.877435: binder_transaction: transaction=1671458 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
109005  HwBinder:598_3-633   (  598) [002] d..2 24575.877463: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
109006  HwBinder:598_3-633   (  598) [002] d..3 24575.877484: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
109007  HwBinder:598_3-633   (  598) [002] .... 24575.877489: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
109008          <idle>-0     (-----) [001] .n.1 24575.877491: cpu_idle: state=4294967295 cpu_id=1
109009          <idle>-0     (-----) [001] d..2 24575.877502: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
109010  surfaceflinger-23896 (23896) [001] .... 24575.877513: binder_transaction_received: transaction=1671458
109011 crtc_commit:111-253   (  253) [003] d.H2 24575.877682: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
109012          <idle>-0     (-----) [005] dnh2 24575.877708: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
109013  HwBinder:598_3-633   (  598) [002] d..2 24575.877710: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109014          <idle>-0     (-----) [005] .n.1 24575.877712: cpu_idle: state=4294967295 cpu_id=5
109015          <idle>-0     (-----) [005] d..2 24575.877717: 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
109016         sugov:4-560   (  560) [005] d..2 24575.877728: 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
109017          <idle>-0     (-----) [002] d..1 24575.877730: cpu_idle: state=0 cpu_id=2
109018          <idle>-0     (-----) [005] d..1 24575.877734: cpu_idle: state=0 cpu_id=5
109019  surfaceflinger-23896 (23896) [001] d..1 24575.877902: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
109020  surfaceflinger-23896 (23896) [001] d..2 24575.877932: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
109021          <idle>-0     (-----) [000] .n.1 24575.877937: cpu_idle: state=4294967295 cpu_id=0
109022          <idle>-0     (-----) [000] d..2 24575.877949: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
109023  Binder:23896_5-25989 (23896) [000] .... 24575.878021: binder_transaction: transaction=1671459 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
109024  Binder:23896_5-25989 (23896) [000] d..2 24575.878037: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
109025  Binder:23896_5-25989 (23896) [000] d..3 24575.878065: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
109026  Binder:23896_5-25989 (23896) [000] .... 24575.878070: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
109027  surfaceflinger-23896 (23896) [001] d..2 24575.878122: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109028  Binder:23896_5-25989 (23896) [000] d..2 24575.878136: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
109029          <idle>-0     (-----) [001] d..1 24575.878144: cpu_idle: state=0 cpu_id=1
109030    RenderThread-25194 (24827) [000] .... 24575.878146: binder_transaction_received: transaction=1671459
109031 crtc_commit:111-253   (  253) [003] d..2 24575.878211: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
109032          <idle>-0     (-----) [003] d..1 24575.878227: cpu_idle: state=0 cpu_id=3
109033          <idle>-0     (-----) [005] ...1 24575.878751: cpu_idle: state=4294967295 cpu_id=5
109034          <idle>-0     (-----) [005] d..1 24575.878754: cpu_idle: state=0 cpu_id=5
109035    RenderThread-25194 (24827) [000] .... 24575.880699: binder_transaction: transaction=1671460 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
109036    RenderThread-25194 (24827) [000] ...2 24575.880716: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
109037    RenderThread-25194 (24827) [000] d..4 24575.880721: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
109038    RenderThread-25194 (24827) [000] dn.5 24575.880746: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
109039    RenderThread-25194 (24827) [000] d..2 24575.880758: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
109040  Binder:23896_5-25989 (23896) [000] .... 24575.880768: binder_transaction_received: transaction=1671460
109041          <idle>-0     (-----) [003] d.s2 24575.880915: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109042          <idle>-0     (-----) [003] dns3 24575.880940: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109043          <idle>-0     (-----) [003] dns3 24575.880946: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
109044          <idle>-0     (-----) [003] dns4 24575.880959: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
109045          <idle>-0     (-----) [003] .n.1 24575.880975: cpu_idle: state=4294967295 cpu_id=3
109046          <idle>-0     (-----) [003] d..2 24575.880985: 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
109047  Binder:23896_5-25989 (23896) [000] .... 24575.880992: binder_transaction: transaction=1671461 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
109048  Binder:23896_5-25989 (23896) [000] .... 24575.881003: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
109049     rcu_preempt-7     (    7) [003] d..2 24575.881004: 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
109050  Binder:23896_5-25989 (23896) [000] d..2 24575.881062: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
109051    RenderThread-25194 (24827) [000] .... 24575.881074: binder_transaction_received: transaction=1671461
109052  kworker/u16:10-23868 (23868) [003] d..2 24575.881101: 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
109053          <idle>-0     (-----) [003] d..1 24575.881116: cpu_idle: state=0 cpu_id=3
109054    RenderThread-25194 (24827) [000] d..2 24575.881187: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109055          <idle>-0     (-----) [000] d..1 24575.881209: cpu_idle: state=0 cpu_id=0
109056          <idle>-0     (-----) [000] d.h5 24575.882825: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
109057          <idle>-0     (-----) [000] dnh6 24575.882845: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
109058          <idle>-0     (-----) [000] dnh5 24575.882852: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
109059          <idle>-0     (-----) [000] dnh6 24575.882866: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
109060          <idle>-0     (-----) [003] .n.1 24575.882873: cpu_idle: state=4294967295 cpu_id=3
109061          <idle>-0     (-----) [000] .n.1 24575.882882: cpu_idle: state=4294967295 cpu_id=0
109062          <idle>-0     (-----) [003] d..2 24575.882884: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
109063          <idle>-0     (-----) [000] d..2 24575.882896: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
109064  crtc_event:111-254   (  254) [000] d..3 24575.882913: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
109065  crtc_event:111-254   (  254) [000] d..4 24575.882928: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
109066          <idle>-0     (-----) [001] .n.1 24575.882936: cpu_idle: state=4294967295 cpu_id=1
109067          <idle>-0     (-----) [001] d..2 24575.882950: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
109068  crtc_event:111-254   (  254) [000] d..2 24575.882954: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109069          <idle>-0     (-----) [000] d..1 24575.882970: cpu_idle: state=0 cpu_id=0
109070 crtc_commit:111-253   (  253) [003] d..2 24575.883058: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
109071          <idle>-0     (-----) [003] d..1 24575.883068: cpu_idle: state=0 cpu_id=3
109072 kgsl_worker_thr-246   (  246) [001] d..2 24575.883173: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
109073          <idle>-0     (-----) [001] d..1 24575.883185: cpu_idle: state=0 cpu_id=1
109074          <idle>-0     (-----) [001] d.h2 24575.883261: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
109075          <idle>-0     (-----) [001] dnh3 24575.883276: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
109076          <idle>-0     (-----) [001] .n.1 24575.883286: cpu_idle: state=4294967295 cpu_id=1
109077          <idle>-0     (-----) [001] d..2 24575.883296: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
109078 kgsl_worker_thr-246   (  246) [001] d..2 24575.883321: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
109079 kgsl_worker_thr-246   (  246) [001] d..3 24575.883366: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
109080 kgsl_worker_thr-246   (  246) [001] d..2 24575.883382: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
109081  kworker/u16:10-23868 (23868) [001] d..2 24575.883784: 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
109082          <idle>-0     (-----) [001] d..1 24575.883801: cpu_idle: state=0 cpu_id=1
109083          <idle>-0     (-----) [003] d.s3 24575.884250: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
109084          <idle>-0     (-----) [003] d.s4 24575.884271: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
109085          <idle>-0     (-----) [000] .n.1 24575.884277: cpu_idle: state=4294967295 cpu_id=0
109086          <idle>-0     (-----) [003] d.s3 24575.884278: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
109087          <idle>-0     (-----) [000] d..2 24575.884289: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
109088          <idle>-0     (-----) [003] d.s4 24575.884295: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
109089          <idle>-0     (-----) [001] .n.1 24575.884303: cpu_idle: state=4294967295 cpu_id=1
109090          <idle>-0     (-----) [003] ...1 24575.884313: cpu_idle: state=4294967295 cpu_id=3
109091          <idle>-0     (-----) [001] d..2 24575.884318: 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
109092          <idle>-0     (-----) [003] d..1 24575.884318: cpu_idle: state=0 cpu_id=3
109093  crtc_event:111-254   (  254) [000] d..2 24575.884324: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109094          <idle>-0     (-----) [000] d..1 24575.884334: cpu_idle: state=0 cpu_id=0
109095          <idle>-0     (-----) [000] ...1 24575.884353: cpu_idle: state=4294967295 cpu_id=0
109096          <idle>-0     (-----) [000] d..1 24575.884358: cpu_idle: state=0 cpu_id=0
109097  kworker/u16:10-23868 (23868) [001] .... 24575.884373: clk_set_rate: l3_cluster0_vote_clk 403200000
109098  kworker/u16:10-23868 (23868) [001] .... 24575.884383: clk_set_rate: l3_clk 403200000
109099  kworker/u16:10-23868 (23868) [001] d..2 24575.884690: 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
109100          <idle>-0     (-----) [001] d..1 24575.884706: cpu_idle: state=0 cpu_id=1
109101          <idle>-0     (-----) [000] d.h3 24575.884875: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
109102          <idle>-0     (-----) [000] d.h4 24575.884892: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
109103          <idle>-0     (-----) [001] .n.1 24575.884898: cpu_idle: state=4294967295 cpu_id=1
109104          <idle>-0     (-----) [000] ...1 24575.884907: cpu_idle: state=4294967295 cpu_id=0
109105          <idle>-0     (-----) [001] d..2 24575.884908: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
109106          <idle>-0     (-----) [000] d..1 24575.884912: cpu_idle: state=0 cpu_id=0
109107 kgsl_worker_thr-246   (  246) [001] d..2 24575.884982: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109108          <idle>-0     (-----) [001] d..1 24575.884995: cpu_idle: state=0 cpu_id=1
109109          <idle>-0     (-----) [000] d.h5 24575.885145: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
109110          <idle>-0     (-----) [000] d.h6 24575.885160: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
109111          <idle>-0     (-----) [000] ...1 24575.885175: cpu_idle: state=4294967295 cpu_id=0
109112          <idle>-0     (-----) [003] dns2 24575.885177: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
109113          <idle>-0     (-----) [000] d..1 24575.885180: cpu_idle: state=0 cpu_id=0
109114          <idle>-0     (-----) [003] dns3 24575.885191: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
109115          <idle>-0     (-----) [003] .n.1 24575.885198: cpu_idle: state=4294967295 cpu_id=3
109116          <idle>-0     (-----) [003] d..2 24575.885205: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
109117 crtc_commit:111-253   (  253) [003] d..2 24575.885281: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
109118     ksoftirqd/3-34    (   34) [003] d.s2 24575.885297: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
109119     ksoftirqd/3-34    (   34) [003] d.s3 24575.885308: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
109120     ksoftirqd/3-34    (   34) [003] d.s3 24575.885319: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
109121          <idle>-0     (-----) [001] .n.1 24575.885323: cpu_idle: state=4294967295 cpu_id=1
109122          <idle>-0     (-----) [001] d..2 24575.885336: 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
109123     ksoftirqd/3-34    (   34) [003] d..2 24575.885343: 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
109124          <idle>-0     (-----) [003] d..1 24575.885354: cpu_idle: state=0 cpu_id=3
109125  kworker/u16:10-23868 (23868) [001] d..2 24575.885367: 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
109126          <idle>-0     (-----) [001] d..1 24575.885378: cpu_idle: state=0 cpu_id=1
109127          <idle>-0     (-----) [000] d.h5 24575.885447: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
109128          <idle>-0     (-----) [000] dnh6 24575.885457: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
109129          <idle>-0     (-----) [000] .n.1 24575.885473: cpu_idle: state=4294967295 cpu_id=0
109130          <idle>-0     (-----) [000] d..2 24575.885483: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
109131  crtc_event:111-254   (  254) [000] d..2 24575.885507: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109132          <idle>-0     (-----) [000] d..1 24575.885517: cpu_idle: state=0 cpu_id=0
109133          <idle>-0     (-----) [001] ...1 24575.886661: cpu_idle: state=4294967295 cpu_id=1
109134          <idle>-0     (-----) [001] d..1 24575.886665: cpu_idle: state=0 cpu_id=1
109135          <idle>-0     (-----) [000] ...1 24575.886958: cpu_idle: state=4294967295 cpu_id=0
109136          <idle>-0     (-----) [000] d..1 24575.886962: cpu_idle: state=0 cpu_id=0
109137          <idle>-0     (-----) [002] d.h2 24575.887261: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
109138          <idle>-0     (-----) [002] dnh3 24575.887277: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
109139          <idle>-0     (-----) [002] .n.1 24575.887286: cpu_idle: state=4294967295 cpu_id=2
109140          <idle>-0     (-----) [002] d..2 24575.887296: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
109141        DispSync-23904 (23896) [002] d..1 24575.887317: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
109142        DispSync-23904 (23896) [002] d..2 24575.887333: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
109143          <idle>-0     (-----) [003] .n.1 24575.887340: cpu_idle: state=4294967295 cpu_id=3
109144          <idle>-0     (-----) [003] d..2 24575.887348: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
109145        DispSync-23904 (23896) [002] d..2 24575.887365: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109146          <idle>-0     (-----) [002] d..1 24575.887377: cpu_idle: state=0 cpu_id=2
109147  appEventThread-23905 (23896) [003] d..3 24575.887398: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
109148  appEventThread-23905 (23896) [003] d..4 24575.887422: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
109149          <idle>-0     (-----) [000] .n.1 24575.887426: cpu_idle: state=4294967295 cpu_id=0
109150          <idle>-0     (-----) [000] d..2 24575.887439: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
109151  appEventThread-23905 (23896) [003] d..2 24575.887459: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109152          <idle>-0     (-----) [003] d..1 24575.887468: cpu_idle: state=0 cpu_id=3
109153          <idle>-0     (-----) [003] d.s2 24575.887578: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109154          <idle>-0     (-----) [003] dns3 24575.887593: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109155          <idle>-0     (-----) [003] .n.1 24575.887602: cpu_idle: state=4294967295 cpu_id=3
109156          <idle>-0     (-----) [003] d..2 24575.887611: 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
109157     rcu_preempt-7     (    7) [003] d..2 24575.887618: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
109158     rcu_preempt-7     (    7) [003] d..3 24575.887653: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
109159     rcu_preempt-7     (    7) [003] d..2 24575.887665: 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
109160         rcuop/0-10    (   10) [003] d..2 24575.887669: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
109161         rcuop/0-10    (   10) [003] d..3 24575.887683: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
109162         rcuop/0-10    (   10) [003] d..2 24575.887686: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109163         rcuop/0-10    (   10) [003] d..3 24575.887697: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109164         rcuop/0-10    (   10) [003] d..2 24575.887705: 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
109165         rcuop/1-21    (   21) [003] d..2 24575.887718: 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
109166     rcu_preempt-7     (    7) [003] d..2 24575.887745: 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
109167          <idle>-0     (-----) [003] d..1 24575.887758: cpu_idle: state=0 cpu_id=3
109168 s.nexuslauncher-24827 (24827) [000] .... 24575.887860: binder_transaction: transaction=1671462 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
109169 s.nexuslauncher-24827 (24827) [000] d..4 24575.887871: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
109170 s.nexuslauncher-24827 (24827) [000] d..5 24575.887909: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
109171          <idle>-0     (-----) [001] .n.1 24575.887913: cpu_idle: state=4294967295 cpu_id=1
109172          <idle>-0     (-----) [001] d..2 24575.887926: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
109173  Binder:23896_5-25989 (23896) [001] .... 24575.887935: binder_transaction_received: transaction=1671462
109174 s.nexuslauncher-24827 (24827) [000] d..3 24575.887947: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
109175  Binder:23896_5-25989 (23896) [001] d..1 24575.887969: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
109176 s.nexuslauncher-24827 (24827) [000] d..4 24575.887974: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
109177          <idle>-0     (-----) [002] .n.1 24575.887981: cpu_idle: state=4294967295 cpu_id=2
109178  Binder:23896_5-25989 (23896) [001] d..2 24575.887989: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
109179          <idle>-0     (-----) [002] d..2 24575.887993: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
109180          <idle>-0     (-----) [003] .n.1 24575.887996: cpu_idle: state=4294967295 cpu_id=3
109181          <idle>-0     (-----) [003] d..2 24575.888006: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
109182  Binder:23896_5-25989 (23896) [001] d..2 24575.888035: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109183  appEventThread-23905 (23896) [003] d..2 24575.888048: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109184          <idle>-0     (-----) [001] d..1 24575.888051: cpu_idle: state=0 cpu_id=1
109185    RenderThread-25194 (24827) [002] d..2 24575.888052: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109186          <idle>-0     (-----) [003] d..1 24575.888061: cpu_idle: state=0 cpu_id=3
109187          <idle>-0     (-----) [002] d..1 24575.888063: cpu_idle: state=0 cpu_id=2
109188 s.nexuslauncher-24827 (24827) [000] d..3 24575.888361: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
109189 s.nexuslauncher-24827 (24827) [000] d..4 24575.888394: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
109190          <idle>-0     (-----) [001] .n.1 24575.888401: cpu_idle: state=4294967295 cpu_id=1
109191          <idle>-0     (-----) [001] d..2 24575.888413: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
109192 s.nexuslauncher-24827 (24827) [000] d..2 24575.888432: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109193          <idle>-0     (-----) [000] d..1 24575.888453: cpu_idle: state=0 cpu_id=0
109194    RenderThread-25194 (24827) [001] d..1 24575.888643: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
109195    RenderThread-25194 (24827) [001] d..2 24575.888667: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
109196          <idle>-0     (-----) [000] .n.1 24575.888674: cpu_idle: state=4294967295 cpu_id=0
109197          <idle>-0     (-----) [000] d..2 24575.888687: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
109198    RenderThread-25194 (24827) [001] .... 24575.888733: binder_transaction: transaction=1671463 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
109199    RenderThread-25194 (24827) [001] ...2 24575.888741: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
109200    RenderThread-25194 (24827) [001] d..4 24575.888745: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
109201    RenderThread-25194 (24827) [001] dn.5 24575.888762: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
109202    RenderThread-25194 (24827) [001] d..2 24575.888771: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
109203  Binder:23896_5-25989 (23896) [001] .... 24575.888780: binder_transaction_received: transaction=1671463
109204 s.nexuslauncher-24827 (24827) [000] d..2 24575.888802: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109205          <idle>-0     (-----) [000] d..1 24575.888818: cpu_idle: state=0 cpu_id=0
109206  Binder:23896_5-25989 (23896) [001] d..2 24575.888823: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
109207    RenderThread-25194 (24827) [001] d..2 24575.888851: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109208          <idle>-0     (-----) [001] d..1 24575.888871: cpu_idle: state=0 cpu_id=1
109209          <idle>-0     (-----) [000] ...1 24575.890093: cpu_idle: state=4294967295 cpu_id=0
109210          <idle>-0     (-----) [000] d..1 24575.890098: cpu_idle: state=0 cpu_id=0
109211          <idle>-0     (-----) [001] ...1 24575.890226: cpu_idle: state=4294967295 cpu_id=1
109212          <idle>-0     (-----) [001] d..1 24575.890231: cpu_idle: state=0 cpu_id=1
109213          <idle>-0     (-----) [002] d.h2 24575.891245: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
109214          <idle>-0     (-----) [002] dnh3 24575.891259: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
109215          <idle>-0     (-----) [002] .n.1 24575.891268: cpu_idle: state=4294967295 cpu_id=2
109216          <idle>-0     (-----) [002] d..2 24575.891279: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
109217        DispSync-23904 (23896) [002] d..1 24575.891298: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
109218        DispSync-23904 (23896) [002] d..2 24575.891315: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
109219          <idle>-0     (-----) [000] .n.1 24575.891321: cpu_idle: state=4294967295 cpu_id=0
109220          <idle>-0     (-----) [000] d..2 24575.891333: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
109221        DispSync-23904 (23896) [002] d..2 24575.891351: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109222          <idle>-0     (-----) [002] d..2 24575.891355: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
109223          <idle>-0     (-----) [002] dn.3 24575.891373: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
109224          <idle>-0     (-----) [002] d..2 24575.891383: 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
109225   sfEventThread-23906 (23896) [000] d..3 24575.891383: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
109226   sfEventThread-23906 (23896) [000] d..4 24575.891404: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
109227          <idle>-0     (-----) [001] .n.1 24575.891409: cpu_idle: state=4294967295 cpu_id=1
109228     ksoftirqd/2-26    (   26) [002] d..2 24575.891418: 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
109229          <idle>-0     (-----) [001] d..2 24575.891420: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
109230          <idle>-0     (-----) [002] d..1 24575.891429: cpu_idle: state=0 cpu_id=2
109231   sfEventThread-23906 (23896) [000] d..2 24575.891442: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109232          <idle>-0     (-----) [000] d..1 24575.891456: cpu_idle: state=0 cpu_id=0
109233  surfaceflinger-23896 (23896) [001] d..1 24575.891624: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
109234  surfaceflinger-23896 (23896) [001] d..2 24575.891655: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
109235          <idle>-0     (-----) [000] .n.1 24575.891661: cpu_idle: state=4294967295 cpu_id=0
109236          <idle>-0     (-----) [000] d..2 24575.891674: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
109237  Binder:23896_5-25989 (23896) [000] d..2 24575.891702: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109238          <idle>-0     (-----) [000] d..1 24575.891713: cpu_idle: state=0 cpu_id=0
109239  surfaceflinger-23896 (23896) [001] d..1 24575.891836: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
109240  surfaceflinger-23896 (23896) [001] d..2 24575.891859: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
109241          <idle>-0     (-----) [000] .n.1 24575.891864: cpu_idle: state=4294967295 cpu_id=0
109242          <idle>-0     (-----) [000] d..2 24575.891874: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
109243   sfEventThread-23906 (23896) [000] d..2 24575.891909: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109244          <idle>-0     (-----) [000] d..1 24575.891919: cpu_idle: state=0 cpu_id=0
109245  surfaceflinger-23896 (23896) [001] ...1 24575.892067: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
109246  surfaceflinger-23896 (23896) [001] ...1 24575.892079: tracing_mark_write: E|23896
109247  surfaceflinger-23896 (23896) [001] .... 24575.892139: binder_transaction: transaction=1671464 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
109248  surfaceflinger-23896 (23896) [001] ...2 24575.892173: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
109249  surfaceflinger-23896 (23896) [001] d..4 24575.892183: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
109250  surfaceflinger-23896 (23896) [001] d..5 24575.892205: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
109251          <idle>-0     (-----) [002] .n.1 24575.892211: cpu_idle: state=4294967295 cpu_id=2
109252          <idle>-0     (-----) [002] d..2 24575.892221: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
109253  HwBinder:598_3-633   (  598) [002] .... 24575.892232: binder_transaction_received: transaction=1671464
109254  surfaceflinger-23896 (23896) [001] d..2 24575.892237: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109255          <idle>-0     (-----) [001] d..1 24575.892257: cpu_idle: state=0 cpu_id=1
109256  HwBinder:598_3-633   (  598) [002] ...1 24575.892283: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
109257  HwBinder:598_3-633   (  598) [002] ...1 24575.892430: tracing_mark_write: B|598|HWCSession::PresentDisplay::
109258  HwBinder:598_3-633   (  598) [002] ...1 24575.892645: tracing_mark_write: B|598|HWDeviceDRM::Commit::
109259  HwBinder:598_3-633   (  598) [002] ...1 24575.892661: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
109260  HwBinder:598_3-633   (  598) [002] d..2 24575.893358: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
109261  HwBinder:598_3-633   (  598) [002] d..3 24575.893383: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
109262          <idle>-0     (-----) [003] .n.1 24575.893388: cpu_idle: state=4294967295 cpu_id=3
109263          <idle>-0     (-----) [003] d..2 24575.893399: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
109264  HwBinder:598_3-633   (  598) [002] ...1 24575.893491: tracing_mark_write: E|598
109265  HwBinder:598_3-633   (  598) [002] ...1 24575.893498: tracing_mark_write: E|598
109266          <idle>-0     (-----) [001] ...1 24575.893557: cpu_idle: state=4294967295 cpu_id=1
109267          <idle>-0     (-----) [001] d..1 24575.893562: cpu_idle: state=0 cpu_id=1
109268  HwBinder:598_3-633   (  598) [002] ...1 24575.893565: tracing_mark_write: E|598
109269  HwBinder:598_3-633   (  598) [002] ...1 24575.893621: tracing_mark_write: E|598
109270  HwBinder:598_3-633   (  598) [002] .... 24575.893638: binder_transaction: transaction=1671465 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
109271  HwBinder:598_3-633   (  598) [002] d..2 24575.893662: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
109272  HwBinder:598_3-633   (  598) [002] d..3 24575.893681: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
109273          <idle>-0     (-----) [001] .n.1 24575.893685: cpu_idle: state=4294967295 cpu_id=1
109274  HwBinder:598_3-633   (  598) [002] .... 24575.893686: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
109275          <idle>-0     (-----) [001] d..2 24575.893695: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
109276  surfaceflinger-23896 (23896) [001] .... 24575.893705: binder_transaction_received: transaction=1671465
109277  HwBinder:598_3-633   (  598) [002] d..2 24575.893777: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109278          <idle>-0     (-----) [002] d..1 24575.893795: cpu_idle: state=0 cpu_id=2
109279  surfaceflinger-23896 (23896) [001] d..1 24575.893960: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
109280  surfaceflinger-23896 (23896) [001] d..2 24575.893984: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
109281          <idle>-0     (-----) [000] .n.1 24575.893989: cpu_idle: state=4294967295 cpu_id=0
109282          <idle>-0     (-----) [000] d..2 24575.894000: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
109283  Binder:23896_5-25989 (23896) [000] .... 24575.894061: binder_transaction: transaction=1671466 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
109284  Binder:23896_5-25989 (23896) [000] d..2 24575.894075: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
109285  Binder:23896_5-25989 (23896) [000] d..3 24575.894099: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
109286  Binder:23896_5-25989 (23896) [000] .... 24575.894104: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
109287  surfaceflinger-23896 (23896) [001] d..2 24575.894159: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109288  Binder:23896_5-25989 (23896) [000] d..2 24575.894162: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
109289    RenderThread-25194 (24827) [000] .... 24575.894170: binder_transaction_received: transaction=1671466
109290          <idle>-0     (-----) [001] d..1 24575.894178: cpu_idle: state=0 cpu_id=1
109291 crtc_commit:111-253   (  253) [003] d..2 24575.894225: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
109292    RenderThread-25194 (24827) [000] d.s2 24575.894249: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
109293          <idle>-0     (-----) [003] d.s3 24575.894256: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109294          <idle>-0     (-----) [003] dns4 24575.894274: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109295    RenderThread-25194 (24827) [000] d.s3 24575.894290: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
109296          <idle>-0     (-----) [003] d..2 24575.894312: 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
109297     rcu_preempt-7     (    7) [003] d..2 24575.894330: 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
109298  kworker/u16:10-23868 (23868) [003] d..2 24575.894564: 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
109299          <idle>-0     (-----) [003] d.s4 24575.894609: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
109300          <idle>-0     (-----) [003] d.s5 24575.894619: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
109301          <idle>-0     (-----) [003] dns5 24575.894624: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
109302          <idle>-0     (-----) [003] d..2 24575.894637: 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
109303  kworker/u16:10-23868 (23868) [003] .... 24575.894731: clk_set_rate: l3_cluster0_vote_clk 300000000
109304  kworker/u16:10-23868 (23868) [003] .... 24575.894738: clk_set_rate: l3_clk 300000000
109305  kworker/u16:10-23868 (23868) [003] d..2 24575.894793: 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
109306          <idle>-0     (-----) [003] d..1 24575.894813: cpu_idle: state=0 cpu_id=3
109307    RenderThread-25194 (24827) [000] .... 24575.896806: binder_transaction: transaction=1671467 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
109308    RenderThread-25194 (24827) [000] ...2 24575.896823: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
109309    RenderThread-25194 (24827) [000] d..4 24575.896828: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
109310    RenderThread-25194 (24827) [000] dn.5 24575.896853: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
109311    RenderThread-25194 (24827) [000] d..2 24575.896865: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
109312  Binder:23896_5-25989 (23896) [000] .... 24575.896875: binder_transaction_received: transaction=1671467
109313  Binder:23896_5-25989 (23896) [000] .... 24575.897051: binder_transaction: transaction=1671468 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
109314  Binder:23896_5-25989 (23896) [000] .... 24575.897062: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
109315  Binder:23896_5-25989 (23896) [000] d..2 24575.897124: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
109316    RenderThread-25194 (24827) [000] .... 24575.897135: binder_transaction_received: transaction=1671468
109317    RenderThread-25194 (24827) [000] d..2 24575.897251: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109318          <idle>-0     (-----) [000] d..1 24575.897275: cpu_idle: state=0 cpu_id=0
109319          <idle>-0     (-----) [000] d.h5 24575.899302: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
109320          <idle>-0     (-----) [000] dnh6 24575.899327: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
109321          <idle>-0     (-----) [000] dnh5 24575.899333: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
109322          <idle>-0     (-----) [000] dnh6 24575.899350: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
109323          <idle>-0     (-----) [003] .n.1 24575.899358: cpu_idle: state=4294967295 cpu_id=3
109324          <idle>-0     (-----) [003] d..2 24575.899372: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
109325          <idle>-0     (-----) [000] dnh3 24575.899468: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
109326 crtc_commit:111-253   (  253) [003] d..2 24575.899485: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
109327          <idle>-0     (-----) [003] d..2 24575.899490: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
109328          <idle>-0     (-----) [000] dnh3 24575.899494: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
109329          <idle>-0     (-----) [006] dnh2 24575.899504: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
109330          <idle>-0     (-----) [003] dn.3 24575.899505: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
109331          <idle>-0     (-----) [006] .n.1 24575.899508: cpu_idle: state=4294967295 cpu_id=6
109332          <idle>-0     (-----) [000] dnh4 24575.899511: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
109333          <idle>-0     (-----) [006] d..2 24575.899515: 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
109334          <idle>-0     (-----) [003] d..2 24575.899515: 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
109335          <idle>-0     (-----) [002] .n.1 24575.899519: cpu_idle: state=4294967295 cpu_id=2
109336          <idle>-0     (-----) [000] .n.1 24575.899521: cpu_idle: state=4294967295 cpu_id=0
109337     ksoftirqd/3-34    (   34) [003] d.s2 24575.899526: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
109338         sugov:4-560   (  560) [006] d..2 24575.899533: 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
109339          <idle>-0     (-----) [002] d..2 24575.899534: 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
109340          <idle>-0     (-----) [000] d..2 24575.899535: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
109341          <idle>-0     (-----) [006] d..1 24575.899540: cpu_idle: state=0 cpu_id=6
109342  crtc_event:111-254   (  254) [000] d..3 24575.899555: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
109343     ksoftirqd/3-34    (   34) [003] d.s3 24575.899568: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
109344  crtc_event:111-254   (  254) [000] d..4 24575.899570: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
109345  crtc_event:111-254   (  254) [000] d..2 24575.899576: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
109346          <idle>-0     (-----) [001] .n.1 24575.899578: cpu_idle: state=4294967295 cpu_id=1
109347  crtc_event:111-254   (  254) [000] d..3 24575.899591: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
109348          <idle>-0     (-----) [001] d..2 24575.899592: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
109349         sugov:0-559   (  559) [002] .... 24575.899595: clk_set_rate: pwrcl_clk 1056000000
109350     ksoftirqd/3-34    (   34) [003] d..2 24575.899600: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
109351         sugov:0-559   (  559) [002] .... 24575.899609: clk_set_rate: cpu3_pwrcl_clk 979200000
109352         sugov:0-559   (  559) [002] .... 24575.899623: clk_set_rate: cpu2_pwrcl_clk 979200000
109353  crtc_event:111-254   (  254) [000] d..2 24575.899631: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109354         sugov:0-559   (  559) [002] .... 24575.899633: clk_set_rate: cpu1_pwrcl_clk 979200000
109355         sugov:0-559   (  559) [002] .... 24575.899642: clk_set_rate: cpu0_pwrcl_clk 1056000000
109356          <idle>-0     (-----) [000] d..1 24575.899647: cpu_idle: state=0 cpu_id=0
109357         sugov:0-559   (  559) [002] .... 24575.899655: cpu_frequency: state=1056000 cpu_id=0
109358         sugov:0-559   (  559) [002] .... 24575.899700: cpu_frequency: state=1056000 cpu_id=1
109359         sugov:0-559   (  559) [002] .... 24575.899703: cpu_frequency: state=1056000 cpu_id=2
109360         sugov:0-559   (  559) [002] .... 24575.899706: cpu_frequency: state=1056000 cpu_id=3
109361 crtc_commit:111-253   (  253) [003] d..2 24575.899714: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
109362          <idle>-0     (-----) [003] d..1 24575.899728: cpu_idle: state=0 cpu_id=3
109363         sugov:0-559   (  559) [002] d..2 24575.899729: 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
109364 kgsl_worker_thr-246   (  246) [001] d..2 24575.899814: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
109365  kworker/u16:10-23868 (23868) [002] d..2 24575.899816: 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
109366          <idle>-0     (-----) [001] d..1 24575.899827: cpu_idle: state=0 cpu_id=1
109367          <idle>-0     (-----) [002] d..1 24575.899830: cpu_idle: state=0 cpu_id=2
109368          <idle>-0     (-----) [001] d.h2 24575.899902: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
109369          <idle>-0     (-----) [001] dnh3 24575.899917: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
109370          <idle>-0     (-----) [001] .n.1 24575.899926: cpu_idle: state=4294967295 cpu_id=1
109371          <idle>-0     (-----) [001] d..2 24575.899936: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
109372 kgsl_worker_thr-246   (  246) [001] d..2 24575.899962: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
109373 kgsl_worker_thr-246   (  246) [001] d..3 24575.900006: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
109374 kgsl_worker_thr-246   (  246) [001] d..2 24575.900020: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
109375  kworker/u16:10-23868 (23868) [001] d..2 24575.900427: 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
109376          <idle>-0     (-----) [001] d..1 24575.900444: cpu_idle: state=0 cpu_id=1
109377          <idle>-0     (-----) [003] d.s3 24575.900914: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
109378          <idle>-0     (-----) [003] d.s4 24575.900936: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
109379          <idle>-0     (-----) [003] d.s2 24575.900939: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109380          <idle>-0     (-----) [000] .n.1 24575.900939: cpu_idle: state=4294967295 cpu_id=0
109381          <idle>-0     (-----) [000] d..2 24575.900950: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
109382          <idle>-0     (-----) [003] dns3 24575.900957: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109383          <idle>-0     (-----) [003] .n.1 24575.900969: cpu_idle: state=4294967295 cpu_id=3
109384          <idle>-0     (-----) [003] d..2 24575.900978: 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
109385  crtc_event:111-254   (  254) [000] d..2 24575.900986: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109386     rcu_preempt-7     (    7) [003] d..2 24575.900989: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
109387          <idle>-0     (-----) [000] d..1 24575.900996: cpu_idle: state=0 cpu_id=0
109388     rcu_preempt-7     (    7) [003] d..3 24575.901006: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
109389     rcu_preempt-7     (    7) [003] d..2 24575.901018: 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
109390         rcuop/0-10    (   10) [003] d..2 24575.901025: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
109391         rcuop/0-10    (   10) [003] d..3 24575.901039: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
109392         rcuop/0-10    (   10) [003] d..2 24575.901043: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109393         rcuop/0-10    (   10) [003] d..3 24575.901054: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109394         rcuop/0-10    (   10) [003] d..2 24575.901061: 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
109395         rcuop/1-21    (   21) [003] d..2 24575.901077: 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
109396     rcu_preempt-7     (    7) [003] d..2 24575.901099: 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
109397          <idle>-0     (-----) [003] d..1 24575.901114: cpu_idle: state=0 cpu_id=3
109398          <idle>-0     (-----) [000] d.h3 24575.901521: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
109399          <idle>-0     (-----) [000] d.h4 24575.901538: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
109400          <idle>-0     (-----) [001] .n.1 24575.901549: cpu_idle: state=4294967295 cpu_id=1
109401          <idle>-0     (-----) [001] d..2 24575.901561: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
109402 kgsl_worker_thr-246   (  246) [001] d..2 24575.901630: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109403          <idle>-0     (-----) [000] d.h5 24575.901641: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
109404          <idle>-0     (-----) [001] d..1 24575.901642: cpu_idle: state=0 cpu_id=1
109405          <idle>-0     (-----) [000] d.h6 24575.901656: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
109406          <idle>-0     (-----) [003] .n.1 24575.901663: cpu_idle: state=4294967295 cpu_id=3
109407          <idle>-0     (-----) [000] ...1 24575.901670: cpu_idle: state=4294967295 cpu_id=0
109408          <idle>-0     (-----) [003] d..2 24575.901673: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
109409          <idle>-0     (-----) [000] d..1 24575.901676: cpu_idle: state=0 cpu_id=0
109410 crtc_commit:111-253   (  253) [003] d..2 24575.901763: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109411          <idle>-0     (-----) [003] d..1 24575.901775: cpu_idle: state=0 cpu_id=3
109412          <idle>-0     (-----) [000] d.h5 24575.901928: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
109413          <idle>-0     (-----) [000] dnh6 24575.901938: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
109414          <idle>-0     (-----) [000] .n.1 24575.901971: cpu_idle: state=4294967295 cpu_id=0
109415          <idle>-0     (-----) [000] d..2 24575.901981: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
109416  crtc_event:111-254   (  254) [000] d..2 24575.902005: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109417          <idle>-0     (-----) [000] d..1 24575.902016: cpu_idle: state=0 cpu_id=0
109418          <idle>-0     (-----) [002] d.h2 24575.903705: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
109419          <idle>-0     (-----) [002] dnh3 24575.903723: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
109420          <idle>-0     (-----) [002] .n.1 24575.903731: cpu_idle: state=4294967295 cpu_id=2
109421          <idle>-0     (-----) [002] d..2 24575.903742: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
109422        DispSync-23904 (23896) [002] d..1 24575.903767: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
109423        DispSync-23904 (23896) [002] d..2 24575.903784: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
109424          <idle>-0     (-----) [003] .n.1 24575.903790: cpu_idle: state=4294967295 cpu_id=3
109425          <idle>-0     (-----) [003] d..2 24575.903801: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
109426        DispSync-23904 (23896) [002] d..2 24575.903816: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109427          <idle>-0     (-----) [002] d..1 24575.903828: cpu_idle: state=0 cpu_id=2
109428  appEventThread-23905 (23896) [003] d..3 24575.903850: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
109429  appEventThread-23905 (23896) [003] d..4 24575.903879: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
109430          <idle>-0     (-----) [000] .n.1 24575.903884: cpu_idle: state=4294967295 cpu_id=0
109431          <idle>-0     (-----) [000] d..2 24575.903897: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
109432  appEventThread-23905 (23896) [003] d..2 24575.903917: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109433          <idle>-0     (-----) [003] d..1 24575.903930: cpu_idle: state=0 cpu_id=3
109434 s.nexuslauncher-24827 (24827) [000] d.s2 24575.904261: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
109435 s.nexuslauncher-24827 (24827) [000] d.s3 24575.904309: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
109436 s.nexuslauncher-24827 (24827) [000] .... 24575.904426: binder_transaction: transaction=1671469 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
109437 s.nexuslauncher-24827 (24827) [000] d..4 24575.904436: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
109438 s.nexuslauncher-24827 (24827) [000] d..5 24575.904473: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
109439          <idle>-0     (-----) [001] .n.1 24575.904479: cpu_idle: state=4294967295 cpu_id=1
109440          <idle>-0     (-----) [001] d..2 24575.904494: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
109441  Binder:23896_5-25989 (23896) [001] .... 24575.904503: binder_transaction_received: transaction=1671469
109442 s.nexuslauncher-24827 (24827) [000] d..3 24575.904516: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
109443  Binder:23896_5-25989 (23896) [001] d..1 24575.904544: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
109444 s.nexuslauncher-24827 (24827) [000] d..4 24575.904545: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
109445          <idle>-0     (-----) [002] .n.1 24575.904552: cpu_idle: state=4294967295 cpu_id=2
109446  Binder:23896_5-25989 (23896) [001] d..2 24575.904564: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
109447          <idle>-0     (-----) [002] d..2 24575.904566: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
109448          <idle>-0     (-----) [003] .n.1 24575.904570: cpu_idle: state=4294967295 cpu_id=3
109449          <idle>-0     (-----) [003] d..2 24575.904581: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
109450  Binder:23896_5-25989 (23896) [001] d..2 24575.904617: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109451  appEventThread-23905 (23896) [003] d..2 24575.904625: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109452          <idle>-0     (-----) [001] d..1 24575.904632: cpu_idle: state=0 cpu_id=1
109453    RenderThread-25194 (24827) [002] d..2 24575.904632: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109454          <idle>-0     (-----) [003] d..1 24575.904634: cpu_idle: state=0 cpu_id=3
109455          <idle>-0     (-----) [002] d..1 24575.904644: cpu_idle: state=0 cpu_id=2
109456 s.nexuslauncher-24827 (24827) [000] d..3 24575.904971: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
109457 s.nexuslauncher-24827 (24827) [000] d..4 24575.905009: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
109458          <idle>-0     (-----) [001] .n.1 24575.905015: cpu_idle: state=4294967295 cpu_id=1
109459          <idle>-0     (-----) [001] d..2 24575.905029: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
109460 s.nexuslauncher-24827 (24827) [000] d..2 24575.905037: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
109461  kworker/u16:10-23868 (23868) [000] .... 24575.905102: clk_set_rate: l3_cluster0_vote_clk 403200000
109462  kworker/u16:10-23868 (23868) [000] .... 24575.905108: clk_set_rate: l3_clk 403200000
109463    RenderThread-25194 (24827) [001] d..1 24575.905296: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
109464    RenderThread-25194 (24827) [001] d..2 24575.905329: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
109465          <idle>-0     (-----) [002] .n.1 24575.905334: cpu_idle: state=4294967295 cpu_id=2
109466          <idle>-0     (-----) [002] d..2 24575.905346: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
109467    RenderThread-25194 (24827) [001] .... 24575.905389: binder_transaction: transaction=1671470 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
109468    RenderThread-25194 (24827) [001] ...2 24575.905398: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
109469    RenderThread-25194 (24827) [001] d..4 24575.905402: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
109470  kworker/u16:10-23868 (23868) [000] d..2 24575.905407: 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
109471    RenderThread-25194 (24827) [001] dn.5 24575.905416: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
109472          <idle>-0     (-----) [000] d..1 24575.905425: cpu_idle: state=0 cpu_id=0
109473    RenderThread-25194 (24827) [001] d..2 24575.905427: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
109474  Binder:23896_5-25989 (23896) [001] .... 24575.905435: binder_transaction_received: transaction=1671470
109475 s.nexuslauncher-24827 (24827) [002] d..2 24575.905476: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109476  Binder:23896_5-25989 (23896) [001] d..2 24575.905477: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
109477          <idle>-0     (-----) [002] d..1 24575.905490: cpu_idle: state=0 cpu_id=2
109478    RenderThread-25194 (24827) [001] d..2 24575.905503: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109479          <idle>-0     (-----) [001] d..1 24575.905520: cpu_idle: state=0 cpu_id=1
109480          <idle>-0     (-----) [003] d.s3 24575.905901: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
109481          <idle>-0     (-----) [003] d.s4 24575.905913: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
109482          <idle>-0     (-----) [003] d.s4 24575.905923: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
109483          <idle>-0     (-----) [000] .n.1 24575.905930: cpu_idle: state=4294967295 cpu_id=0
109484          <idle>-0     (-----) [003] ...1 24575.905932: cpu_idle: state=4294967295 cpu_id=3
109485          <idle>-0     (-----) [003] d..1 24575.905937: cpu_idle: state=0 cpu_id=3
109486          <idle>-0     (-----) [000] d..2 24575.905942: 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
109487  kworker/u16:10-23868 (23868) [000] d..2 24575.905972: 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
109488          <idle>-0     (-----) [000] d..1 24575.905984: cpu_idle: state=0 cpu_id=0
109489          <idle>-0     (-----) [003] d.s2 24575.907577: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109490          <idle>-0     (-----) [003] dns3 24575.907591: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109491          <idle>-0     (-----) [000] ...1 24575.907608: cpu_idle: state=4294967295 cpu_id=0
109492          <idle>-0     (-----) [003] .n.1 24575.907609: cpu_idle: state=4294967295 cpu_id=3
109493          <idle>-0     (-----) [000] d..1 24575.907612: cpu_idle: state=0 cpu_id=0
109494          <idle>-0     (-----) [003] d..2 24575.907618: 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
109495     rcu_preempt-7     (    7) [003] d..2 24575.907631: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
109496     rcu_preempt-7     (    7) [003] d..3 24575.907644: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
109497     rcu_preempt-7     (    7) [003] d..2 24575.907655: 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
109498         rcuop/0-10    (   10) [003] d..2 24575.907659: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
109499         rcuop/0-10    (   10) [003] d..3 24575.907671: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
109500         rcuop/0-10    (   10) [003] d..2 24575.907680: 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
109501          <idle>-0     (-----) [002] d.h2 24575.907703: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
109502         rcuop/1-21    (   21) [003] d..2 24575.907708: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109503          <idle>-0     (-----) [002] dnh3 24575.907720: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
109504          <idle>-0     (-----) [003] d..1 24575.907724: cpu_idle: state=0 cpu_id=3
109505          <idle>-0     (-----) [002] .n.1 24575.907727: cpu_idle: state=4294967295 cpu_id=2
109506          <idle>-0     (-----) [002] d..2 24575.907738: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
109507        DispSync-23904 (23896) [002] d..1 24575.907757: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
109508        DispSync-23904 (23896) [002] d..2 24575.907775: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
109509          <idle>-0     (-----) [000] .n.1 24575.907780: cpu_idle: state=4294967295 cpu_id=0
109510          <idle>-0     (-----) [000] d..2 24575.907789: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
109511        DispSync-23904 (23896) [002] d..2 24575.907807: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109512          <idle>-0     (-----) [002] d..1 24575.907819: cpu_idle: state=0 cpu_id=2
109513   sfEventThread-23906 (23896) [000] d..3 24575.907839: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
109514   sfEventThread-23906 (23896) [000] d..4 24575.907864: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
109515          <idle>-0     (-----) [001] .n.1 24575.907871: cpu_idle: state=4294967295 cpu_id=1
109516          <idle>-0     (-----) [001] d..2 24575.907883: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
109517   sfEventThread-23906 (23896) [000] d..2 24575.907899: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109518          <idle>-0     (-----) [000] d..1 24575.907913: cpu_idle: state=0 cpu_id=0
109519  surfaceflinger-23896 (23896) [001] d..1 24575.908087: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
109520  surfaceflinger-23896 (23896) [001] d..2 24575.908120: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
109521          <idle>-0     (-----) [000] .n.1 24575.908126: cpu_idle: state=4294967295 cpu_id=0
109522          <idle>-0     (-----) [000] d..2 24575.908138: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
109523  Binder:23896_5-25989 (23896) [000] d..2 24575.908164: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109524          <idle>-0     (-----) [000] d..1 24575.908174: cpu_idle: state=0 cpu_id=0
109525  surfaceflinger-23896 (23896) [001] d..2 24575.908277: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
109526  surfaceflinger-23896 (23896) [001] d..3 24575.908320: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
109527  surfaceflinger-23896 (23896) [001] d..1 24575.908349: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
109528  surfaceflinger-23896 (23896) [001] d..2 24575.908370: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
109529          <idle>-0     (-----) [000] .n.1 24575.908375: cpu_idle: state=4294967295 cpu_id=0
109530          <idle>-0     (-----) [000] d..2 24575.908384: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
109531   sfEventThread-23906 (23896) [000] d..2 24575.908440: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
109532         rcuop/0-10    (   10) [000] d..2 24575.908447: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109533         rcuop/0-10    (   10) [000] d..3 24575.908463: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109534          <idle>-0     (-----) [003] .n.1 24575.908469: cpu_idle: state=4294967295 cpu_id=3
109535         rcuop/0-10    (   10) [000] d..2 24575.908479: 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
109536          <idle>-0     (-----) [003] d..2 24575.908480: 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
109537          <idle>-0     (-----) [000] d..1 24575.908491: cpu_idle: state=0 cpu_id=0
109538     rcu_preempt-7     (    7) [003] d..2 24575.908501: 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
109539          <idle>-0     (-----) [003] d..1 24575.908509: cpu_idle: state=0 cpu_id=3
109540  surfaceflinger-23896 (23896) [001] ...1 24575.908557: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
109541  surfaceflinger-23896 (23896) [001] ...1 24575.908565: tracing_mark_write: E|23896
109542  surfaceflinger-23896 (23896) [001] .... 24575.908636: binder_transaction: transaction=1671471 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
109543  surfaceflinger-23896 (23896) [001] ...2 24575.908661: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
109544  surfaceflinger-23896 (23896) [001] d..4 24575.908671: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
109545  surfaceflinger-23896 (23896) [001] d..5 24575.908696: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
109546          <idle>-0     (-----) [002] .n.1 24575.908702: cpu_idle: state=4294967295 cpu_id=2
109547          <idle>-0     (-----) [002] d..2 24575.908713: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
109548  HwBinder:598_3-633   (  598) [002] .... 24575.908724: binder_transaction_received: transaction=1671471
109549  surfaceflinger-23896 (23896) [001] d..2 24575.908727: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109550          <idle>-0     (-----) [001] d..1 24575.908745: cpu_idle: state=0 cpu_id=1
109551  HwBinder:598_3-633   (  598) [002] ...1 24575.908781: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
109552  HwBinder:598_3-633   (  598) [002] ...1 24575.909034: tracing_mark_write: B|598|HWCSession::PresentDisplay::
109553  HwBinder:598_3-633   (  598) [002] ...1 24575.909229: tracing_mark_write: B|598|HWDeviceDRM::Commit::
109554  HwBinder:598_3-633   (  598) [002] ...1 24575.909245: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
109555  HwBinder:598_3-633   (  598) [002] d..2 24575.909906: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
109556  HwBinder:598_3-633   (  598) [002] d..3 24575.909932: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
109557          <idle>-0     (-----) [003] .n.1 24575.909936: cpu_idle: state=4294967295 cpu_id=3
109558          <idle>-0     (-----) [003] d..2 24575.909946: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
109559  HwBinder:598_3-633   (  598) [002] ...1 24575.910037: tracing_mark_write: E|598
109560  HwBinder:598_3-633   (  598) [002] ...1 24575.910043: tracing_mark_write: E|598
109561  HwBinder:598_3-633   (  598) [002] ...1 24575.910111: tracing_mark_write: E|598
109562  HwBinder:598_3-633   (  598) [002] ...1 24575.910167: tracing_mark_write: E|598
109563  HwBinder:598_3-633   (  598) [002] .... 24575.910183: binder_transaction: transaction=1671472 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
109564  HwBinder:598_3-633   (  598) [002] d..2 24575.910207: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
109565  HwBinder:598_3-633   (  598) [002] d..3 24575.910226: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
109566  HwBinder:598_3-633   (  598) [002] .... 24575.910231: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
109567          <idle>-0     (-----) [001] .n.1 24575.910232: cpu_idle: state=4294967295 cpu_id=1
109568          <idle>-0     (-----) [001] d..2 24575.910242: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
109569  surfaceflinger-23896 (23896) [001] .... 24575.910251: binder_transaction_received: transaction=1671472
109570  HwBinder:598_3-633   (  598) [002] d..2 24575.910317: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109571          <idle>-0     (-----) [002] d..1 24575.910335: cpu_idle: state=0 cpu_id=2
109572  surfaceflinger-23896 (23896) [001] d..1 24575.910499: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
109573  surfaceflinger-23896 (23896) [001] d..2 24575.910523: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
109574          <idle>-0     (-----) [000] .n.1 24575.910528: cpu_idle: state=4294967295 cpu_id=0
109575          <idle>-0     (-----) [000] d..2 24575.910539: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
109576  Binder:23896_5-25989 (23896) [000] .... 24575.910599: binder_transaction: transaction=1671473 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
109577  Binder:23896_5-25989 (23896) [000] d..2 24575.910613: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
109578  Binder:23896_5-25989 (23896) [000] d..3 24575.910634: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
109579  Binder:23896_5-25989 (23896) [000] .... 24575.910638: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
109580  surfaceflinger-23896 (23896) [001] d..2 24575.910689: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109581  Binder:23896_5-25989 (23896) [000] d..2 24575.910691: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
109582    RenderThread-25194 (24827) [000] .... 24575.910700: binder_transaction_received: transaction=1671473
109583          <idle>-0     (-----) [001] d..1 24575.910707: cpu_idle: state=0 cpu_id=1
109584 crtc_commit:111-253   (  253) [003] d..2 24575.910775: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
109585          <idle>-0     (-----) [003] d..1 24575.910788: cpu_idle: state=0 cpu_id=3
109586    RenderThread-25194 (24827) [000] .... 24575.913103: binder_transaction: transaction=1671474 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
109587    RenderThread-25194 (24827) [000] ...2 24575.913117: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
109588    RenderThread-25194 (24827) [000] d..4 24575.913121: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
109589    RenderThread-25194 (24827) [000] dn.5 24575.913142: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
109590    RenderThread-25194 (24827) [000] d..2 24575.913152: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
109591  Binder:23896_5-25989 (23896) [000] .... 24575.913160: binder_transaction_received: transaction=1671474
109592  Binder:23896_5-25989 (23896) [000] .... 24575.913314: binder_transaction: transaction=1671475 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
109593  Binder:23896_5-25989 (23896) [000] .... 24575.913323: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
109594  Binder:23896_5-25989 (23896) [000] d..2 24575.913375: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
109595    RenderThread-25194 (24827) [000] .... 24575.913385: binder_transaction_received: transaction=1671475
109596    RenderThread-25194 (24827) [000] d..2 24575.913490: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109597          <idle>-0     (-----) [000] d..1 24575.913510: cpu_idle: state=0 cpu_id=0
109598          <idle>-0     (-----) [003] d.s2 24575.914245: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109599          <idle>-0     (-----) [003] dns3 24575.914264: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109600          <idle>-0     (-----) [003] dns3 24575.914269: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
109601          <idle>-0     (-----) [003] dns4 24575.914300: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
109602          <idle>-0     (-----) [003] .n.1 24575.914311: cpu_idle: state=4294967295 cpu_id=3
109603          <idle>-0     (-----) [003] d..2 24575.914323: 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
109604     rcu_preempt-7     (    7) [003] d..2 24575.914334: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
109605     rcu_preempt-7     (    7) [003] d..3 24575.914362: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
109606     rcu_preempt-7     (    7) [003] d..2 24575.914374: 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
109607         rcuop/0-10    (   10) [003] d..2 24575.914378: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
109608         rcuop/0-10    (   10) [003] d..3 24575.914391: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
109609         rcuop/0-10    (   10) [003] d..2 24575.914393: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109610         rcuop/0-10    (   10) [003] d..3 24575.914404: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109611         rcuop/0-10    (   10) [003] d..2 24575.914412: 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
109612         rcuop/1-21    (   21) [003] d..2 24575.914423: 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
109613     rcu_preempt-7     (    7) [003] d..2 24575.914433: 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
109614  kworker/u16:10-23868 (23868) [003] d..2 24575.914527: 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
109615          <idle>-0     (-----) [003] d..1 24575.914542: cpu_idle: state=0 cpu_id=3
109616          <idle>-0     (-----) [000] d.h5 24575.915763: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
109617          <idle>-0     (-----) [000] dnh6 24575.915778: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
109618          <idle>-0     (-----) [000] dnh5 24575.915783: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
109619          <idle>-0     (-----) [000] dnh6 24575.915795: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
109620          <idle>-0     (-----) [003] .n.1 24575.915802: cpu_idle: state=4294967295 cpu_id=3
109621          <idle>-0     (-----) [000] .n.1 24575.915810: cpu_idle: state=4294967295 cpu_id=0
109622          <idle>-0     (-----) [003] d..2 24575.915812: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
109623          <idle>-0     (-----) [000] d..2 24575.915822: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
109624  crtc_event:111-254   (  254) [000] d..3 24575.915838: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
109625  crtc_event:111-254   (  254) [000] d..4 24575.915851: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
109626          <idle>-0     (-----) [001] .n.1 24575.915858: cpu_idle: state=4294967295 cpu_id=1
109627          <idle>-0     (-----) [001] d..2 24575.915872: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
109628  crtc_event:111-254   (  254) [000] d..2 24575.915873: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109629          <idle>-0     (-----) [000] d..1 24575.915885: cpu_idle: state=0 cpu_id=0
109630 crtc_commit:111-253   (  253) [003] d..2 24575.915972: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
109631          <idle>-0     (-----) [003] d..1 24575.915981: cpu_idle: state=0 cpu_id=3
109632 kgsl_worker_thr-246   (  246) [001] d..2 24575.916076: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
109633          <idle>-0     (-----) [001] d..1 24575.916085: cpu_idle: state=0 cpu_id=1
109634          <idle>-0     (-----) [001] d.h2 24575.916165: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
109635          <idle>-0     (-----) [001] dnh3 24575.916178: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
109636          <idle>-0     (-----) [001] .n.1 24575.916186: cpu_idle: state=4294967295 cpu_id=1
109637          <idle>-0     (-----) [001] d..2 24575.916192: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
109638 kgsl_worker_thr-246   (  246) [001] d..2 24575.916217: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
109639 kgsl_worker_thr-246   (  246) [001] d..3 24575.916235: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
109640          <idle>-0     (-----) [003] .n.1 24575.916241: cpu_idle: state=4294967295 cpu_id=3
109641          <idle>-0     (-----) [003] d..2 24575.916250: 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
109642 kgsl_worker_thr-246   (  246) [001] d..2 24575.916254: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109643          <idle>-0     (-----) [001] d..1 24575.916262: cpu_idle: state=0 cpu_id=1
109644  kworker/u16:10-23868 (23868) [003] d..2 24575.916638: 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
109645          <idle>-0     (-----) [003] d..1 24575.916647: cpu_idle: state=0 cpu_id=3
109646          <idle>-0     (-----) [001] d.s3 24575.917586: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
109647          <idle>-0     (-----) [001] dns4 24575.917656: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
109648          <idle>-0     (-----) [003] d.H3 24575.917671: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
109649          <idle>-0     (-----) [001] .n.1 24575.917676: cpu_idle: state=4294967295 cpu_id=1
109650          <idle>-0     (-----) [001] d..2 24575.917685: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
109651          <idle>-0     (-----) [003] d.s3 24575.917694: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
109652          <idle>-0     (-----) [006] dnh2 24575.917695: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
109653          <idle>-0     (-----) [006] .n.1 24575.917699: cpu_idle: state=4294967295 cpu_id=6
109654          <idle>-0     (-----) [006] d..2 24575.917705: 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
109655          <idle>-0     (-----) [003] d.s4 24575.917709: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
109656          <idle>-0     (-----) [000] .n.1 24575.917716: cpu_idle: state=4294967295 cpu_id=0
109657         sugov:4-560   (  560) [006] d..2 24575.917720: 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
109658          <idle>-0     (-----) [000] d..2 24575.917726: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
109659          <idle>-0     (-----) [006] d..1 24575.917726: cpu_idle: state=0 cpu_id=6
109660          <idle>-0     (-----) [003] ...1 24575.917730: cpu_idle: state=4294967295 cpu_id=3
109661          <idle>-0     (-----) [003] d..1 24575.917735: cpu_idle: state=0 cpu_id=3
109662  crtc_event:111-254   (  254) [000] d.h2 24575.917758: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
109663  crtc_event:111-254   (  254) [000] d.h3 24575.917785: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
109664          <idle>-0     (-----) [003] .n.1 24575.917790: cpu_idle: state=4294967295 cpu_id=3
109665          <idle>-0     (-----) [003] d..2 24575.917798: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
109666  crtc_event:111-254   (  254) [000] d..2 24575.917818: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109667          <idle>-0     (-----) [000] d..1 24575.917829: cpu_idle: state=0 cpu_id=0
109668     kworker/1:1-13091 (13091) [001] d..2 24575.917834: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
109669          <idle>-0     (-----) [001] d..1 24575.917847: cpu_idle: state=0 cpu_id=1
109670 kgsl_worker_thr-246   (  246) [003] d..2 24575.917866: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109671          <idle>-0     (-----) [003] d..1 24575.917874: cpu_idle: state=0 cpu_id=3
109672          <idle>-0     (-----) [000] d.h5 24575.918087: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
109673          <idle>-0     (-----) [000] d.h6 24575.918103: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
109674          <idle>-0     (-----) [003] .n.1 24575.918110: cpu_idle: state=4294967295 cpu_id=3
109675          <idle>-0     (-----) [003] d..2 24575.918117: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
109676          <idle>-0     (-----) [000] ...1 24575.918118: cpu_idle: state=4294967295 cpu_id=0
109677          <idle>-0     (-----) [000] d..1 24575.918123: cpu_idle: state=0 cpu_id=0
109678 crtc_commit:111-253   (  253) [003] d..2 24575.918195: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109679          <idle>-0     (-----) [003] d..1 24575.918203: cpu_idle: state=0 cpu_id=3
109680          <idle>-0     (-----) [000] d.h5 24575.918399: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
109681          <idle>-0     (-----) [000] dnh6 24575.918409: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
109682          <idle>-0     (-----) [000] .n.1 24575.918424: cpu_idle: state=4294967295 cpu_id=0
109683          <idle>-0     (-----) [000] d..2 24575.918433: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
109684  crtc_event:111-254   (  254) [000] d..2 24575.918455: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109685          <idle>-0     (-----) [000] d..1 24575.918464: cpu_idle: state=0 cpu_id=0
109686          <idle>-0     (-----) [000] d.h3 24575.918583: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
109687          <idle>-0     (-----) [000] dnh4 24575.918599: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
109688          <idle>-0     (-----) [000] .n.1 24575.918621: cpu_idle: state=4294967295 cpu_id=0
109689          <idle>-0     (-----) [000] d..2 24575.918631: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
109690     kworker/0:1-13012 (13012) [000] d..2 24575.918642: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
109691     kworker/0:1-13012 (13012) [000] d..3 24575.918650: sched_blocked_reason: pid=13091 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
109692     kworker/0:1-13012 (13012) [000] d..3 24575.918659: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
109693          <idle>-0     (-----) [001] .n.1 24575.918665: cpu_idle: state=4294967295 cpu_id=1
109694          <idle>-0     (-----) [001] d..2 24575.918676: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
109695     kworker/0:1-13012 (13012) [000] d..2 24575.918678: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109696          <idle>-0     (-----) [000] d..1 24575.918687: cpu_idle: state=0 cpu_id=0
109697     kworker/1:1-13091 (13091) [001] d..2 24575.918790: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109698          <idle>-0     (-----) [001] d..1 24575.918801: cpu_idle: state=0 cpu_id=1
109699          <idle>-0     (-----) [002] d.h2 24575.920165: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
109700          <idle>-0     (-----) [002] dnh3 24575.920181: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
109701          <idle>-0     (-----) [002] .n.1 24575.920189: cpu_idle: state=4294967295 cpu_id=2
109702          <idle>-0     (-----) [002] d..2 24575.920200: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
109703        DispSync-23904 (23896) [002] d..1 24575.920222: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
109704        DispSync-23904 (23896) [002] d..2 24575.920237: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
109705          <idle>-0     (-----) [003] .n.1 24575.920243: cpu_idle: state=4294967295 cpu_id=3
109706          <idle>-0     (-----) [003] d..2 24575.920251: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
109707        DispSync-23904 (23896) [002] d..2 24575.920268: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109708          <idle>-0     (-----) [002] d..1 24575.920280: cpu_idle: state=0 cpu_id=2
109709  appEventThread-23905 (23896) [003] d..3 24575.920294: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
109710  appEventThread-23905 (23896) [003] d..4 24575.920325: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
109711          <idle>-0     (-----) [000] .n.1 24575.920330: cpu_idle: state=4294967295 cpu_id=0
109712          <idle>-0     (-----) [000] d..2 24575.920341: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
109713  appEventThread-23905 (23896) [003] d..2 24575.920360: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109714          <idle>-0     (-----) [003] d..1 24575.920369: cpu_idle: state=0 cpu_id=3
109715 s.nexuslauncher-24827 (24827) [000] .... 24575.920711: binder_transaction: transaction=1671476 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
109716 s.nexuslauncher-24827 (24827) [000] d..4 24575.920720: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
109717 s.nexuslauncher-24827 (24827) [000] d..5 24575.920756: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
109718          <idle>-0     (-----) [001] .n.1 24575.920762: cpu_idle: state=4294967295 cpu_id=1
109719          <idle>-0     (-----) [001] d..2 24575.920773: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
109720  Binder:23896_5-25989 (23896) [001] .... 24575.920781: binder_transaction_received: transaction=1671476
109721 s.nexuslauncher-24827 (24827) [000] d..3 24575.920793: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
109722  Binder:23896_5-25989 (23896) [001] d..1 24575.920815: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
109723 s.nexuslauncher-24827 (24827) [000] d..4 24575.920819: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
109724          <idle>-0     (-----) [002] .n.1 24575.920825: cpu_idle: state=4294967295 cpu_id=2
109725  Binder:23896_5-25989 (23896) [001] d..2 24575.920834: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
109726          <idle>-0     (-----) [002] d..2 24575.920837: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
109727          <idle>-0     (-----) [003] .n.1 24575.920839: cpu_idle: state=4294967295 cpu_id=3
109728          <idle>-0     (-----) [003] d..2 24575.920846: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
109729  Binder:23896_5-25989 (23896) [001] d..2 24575.920876: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109730  appEventThread-23905 (23896) [003] d..2 24575.920881: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109731    RenderThread-25194 (24827) [002] d..2 24575.920897: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109732          <idle>-0     (-----) [003] d.s3 24575.920915: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109733          <idle>-0     (-----) [001] d..1 24575.920927: cpu_idle: state=0 cpu_id=1
109734          <idle>-0     (-----) [002] d..1 24575.920951: cpu_idle: state=0 cpu_id=2
109735          <idle>-0     (-----) [003] d.s4 24575.920953: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
109736          <idle>-0     (-----) [001] .n.1 24575.920959: cpu_idle: state=4294967295 cpu_id=1
109737          <idle>-0     (-----) [001] d..2 24575.920971: 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
109738          <idle>-0     (-----) [003] d..1 24575.920971: cpu_idle: state=0 cpu_id=3
109739     rcu_preempt-7     (    7) [001] d..2 24575.921002: 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
109740          <idle>-0     (-----) [001] d..1 24575.921011: cpu_idle: state=0 cpu_id=1
109741 s.nexuslauncher-24827 (24827) [000] d..3 24575.921245: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
109742 s.nexuslauncher-24827 (24827) [000] d..4 24575.921280: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
109743          <idle>-0     (-----) [001] .n.1 24575.921285: cpu_idle: state=4294967295 cpu_id=1
109744          <idle>-0     (-----) [001] d..2 24575.921296: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
109745 s.nexuslauncher-24827 (24827) [000] d..2 24575.921314: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109746          <idle>-0     (-----) [000] d..1 24575.921332: cpu_idle: state=0 cpu_id=0
109747    RenderThread-25194 (24827) [001] d..1 24575.921520: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
109748    RenderThread-25194 (24827) [001] d..2 24575.921541: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
109749          <idle>-0     (-----) [000] .n.1 24575.921547: cpu_idle: state=4294967295 cpu_id=0
109750          <idle>-0     (-----) [000] d..2 24575.921560: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
109751    RenderThread-25194 (24827) [001] .... 24575.921601: binder_transaction: transaction=1671477 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
109752    RenderThread-25194 (24827) [001] ...2 24575.921609: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
109753    RenderThread-25194 (24827) [001] d..4 24575.921613: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
109754    RenderThread-25194 (24827) [001] dn.5 24575.921627: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
109755    RenderThread-25194 (24827) [001] d..2 24575.921638: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
109756  Binder:23896_5-25989 (23896) [001] .... 24575.921645: binder_transaction_received: transaction=1671477
109757 s.nexuslauncher-24827 (24827) [000] d..2 24575.921670: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109758          <idle>-0     (-----) [000] d..1 24575.921685: cpu_idle: state=0 cpu_id=0
109759  Binder:23896_5-25989 (23896) [001] d..2 24575.921687: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
109760    RenderThread-25194 (24827) [001] d..2 24575.921713: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109761          <idle>-0     (-----) [001] d..1 24575.921730: cpu_idle: state=0 cpu_id=1
109762          <idle>-0     (-----) [003] ...1 24575.922397: cpu_idle: state=4294967295 cpu_id=3
109763          <idle>-0     (-----) [003] d..1 24575.922401: cpu_idle: state=0 cpu_id=3
109764          <idle>-0     (-----) [000] ...1 24575.922861: cpu_idle: state=4294967295 cpu_id=0
109765          <idle>-0     (-----) [000] d..1 24575.922865: cpu_idle: state=0 cpu_id=0
109766          <idle>-0     (-----) [002] d.h2 24575.924161: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
109767          <idle>-0     (-----) [002] dnh3 24575.924176: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
109768          <idle>-0     (-----) [002] .n.1 24575.924184: cpu_idle: state=4294967295 cpu_id=2
109769          <idle>-0     (-----) [002] d..2 24575.924193: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
109770        DispSync-23904 (23896) [002] d..1 24575.924211: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
109771        DispSync-23904 (23896) [002] d..2 24575.924227: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
109772          <idle>-0     (-----) [000] .n.1 24575.924233: cpu_idle: state=4294967295 cpu_id=0
109773          <idle>-0     (-----) [000] d..2 24575.924245: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
109774        DispSync-23904 (23896) [002] d.s3 24575.924261: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
109775   sfEventThread-23906 (23896) [000] d..2 24575.924295: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109776          <idle>-0     (-----) [000] d..1 24575.924308: cpu_idle: state=0 cpu_id=0
109777          <idle>-0     (-----) [000] .n.1 24575.924312: cpu_idle: state=4294967295 cpu_id=0
109778        DispSync-23904 (23896) [002] d.s4 24575.924314: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
109779          <idle>-0     (-----) [000] d..2 24575.924328: 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
109780        DispSync-23904 (23896) [002] d..1 24575.924335: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
109781        DispSync-23904 (23896) [002] d..2 24575.924356: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
109782          <idle>-0     (-----) [003] .n.1 24575.924361: cpu_idle: state=4294967295 cpu_id=3
109783          <idle>-0     (-----) [003] d..2 24575.924372: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
109784        DispSync-23904 (23896) [002] d..2 24575.924407: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109785          <idle>-0     (-----) [002] d..1 24575.924420: cpu_idle: state=0 cpu_id=2
109786  kworker/u16:10-23868 (23868) [000] .... 24575.924421: clk_set_rate: l3_cluster0_vote_clk 300000000
109787   sfEventThread-23906 (23896) [003] d..3 24575.924426: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
109788  kworker/u16:10-23868 (23868) [000] .... 24575.924430: clk_set_rate: l3_clk 300000000
109789   sfEventThread-23906 (23896) [003] d..4 24575.924448: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
109790          <idle>-0     (-----) [001] .n.1 24575.924455: cpu_idle: state=4294967295 cpu_id=1
109791          <idle>-0     (-----) [001] d..2 24575.924471: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
109792   sfEventThread-23906 (23896) [003] d..2 24575.924488: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109793          <idle>-0     (-----) [003] d..1 24575.924504: cpu_idle: state=0 cpu_id=3
109794  surfaceflinger-23896 (23896) [001] d..1 24575.924678: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
109795  surfaceflinger-23896 (23896) [001] d..2 24575.924712: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
109796          <idle>-0     (-----) [002] .n.1 24575.924719: cpu_idle: state=4294967295 cpu_id=2
109797          <idle>-0     (-----) [002] d..2 24575.924732: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
109798  Binder:23896_5-25989 (23896) [002] d..2 24575.924762: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109799  kworker/u16:10-23868 (23868) [000] d..2 24575.924766: 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
109800          <idle>-0     (-----) [002] d..1 24575.924773: cpu_idle: state=0 cpu_id=2
109801          <idle>-0     (-----) [000] d..1 24575.924783: cpu_idle: state=0 cpu_id=0
109802          <idle>-0     (-----) [003] d.s3 24575.924806: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
109803          <idle>-0     (-----) [003] d.s4 24575.924819: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
109804          <idle>-0     (-----) [003] d.s4 24575.924830: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
109805          <idle>-0     (-----) [000] .n.1 24575.924837: cpu_idle: state=4294967295 cpu_id=0
109806          <idle>-0     (-----) [003] ...1 24575.924839: cpu_idle: state=4294967295 cpu_id=3
109807          <idle>-0     (-----) [003] d..1 24575.924845: cpu_idle: state=0 cpu_id=3
109808          <idle>-0     (-----) [000] d..2 24575.924849: 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
109809  kworker/u16:10-23868 (23868) [000] d..2 24575.924881: 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
109810  surfaceflinger-23896 (23896) [001] d..1 24575.924886: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
109811          <idle>-0     (-----) [000] d..1 24575.924891: cpu_idle: state=0 cpu_id=0
109812  surfaceflinger-23896 (23896) [001] d..2 24575.924908: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
109813          <idle>-0     (-----) [003] .n.1 24575.924913: cpu_idle: state=4294967295 cpu_id=3
109814          <idle>-0     (-----) [003] d..2 24575.924925: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
109815   sfEventThread-23906 (23896) [003] d..2 24575.924964: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109816          <idle>-0     (-----) [003] d..1 24575.924975: cpu_idle: state=0 cpu_id=3
109817  surfaceflinger-23896 (23896) [001] ...1 24575.925129: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
109818  surfaceflinger-23896 (23896) [001] ...1 24575.925139: tracing_mark_write: E|23896
109819  surfaceflinger-23896 (23896) [001] .... 24575.925212: binder_transaction: transaction=1671478 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
109820  surfaceflinger-23896 (23896) [001] ...2 24575.925243: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
109821  surfaceflinger-23896 (23896) [001] d..4 24575.925255: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
109822  surfaceflinger-23896 (23896) [001] d..5 24575.925280: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
109823          <idle>-0     (-----) [002] .n.1 24575.925285: cpu_idle: state=4294967295 cpu_id=2
109824          <idle>-0     (-----) [002] d..2 24575.925295: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
109825  HwBinder:598_3-633   (  598) [002] .... 24575.925306: binder_transaction_received: transaction=1671478
109826  surfaceflinger-23896 (23896) [001] d..2 24575.925316: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109827          <idle>-0     (-----) [001] d..1 24575.925331: cpu_idle: state=0 cpu_id=1
109828  HwBinder:598_3-633   (  598) [002] ...1 24575.925364: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
109829  HwBinder:598_3-633   (  598) [002] ...1 24575.925543: tracing_mark_write: B|598|HWCSession::PresentDisplay::
109830  HwBinder:598_3-633   (  598) [002] ...1 24575.925761: tracing_mark_write: B|598|HWDeviceDRM::Commit::
109831  HwBinder:598_3-633   (  598) [002] ...1 24575.925775: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
109832  HwBinder:598_3-633   (  598) [002] d..2 24575.926480: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
109833  HwBinder:598_3-633   (  598) [002] d..3 24575.926509: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
109834          <idle>-0     (-----) [003] .n.1 24575.926513: cpu_idle: state=4294967295 cpu_id=3
109835          <idle>-0     (-----) [003] d..2 24575.926524: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
109836  HwBinder:598_3-633   (  598) [002] ...1 24575.926629: tracing_mark_write: E|598
109837  HwBinder:598_3-633   (  598) [002] ...1 24575.926636: tracing_mark_write: E|598
109838  HwBinder:598_3-633   (  598) [002] ...1 24575.926714: tracing_mark_write: E|598
109839  HwBinder:598_3-633   (  598) [002] ...1 24575.926772: tracing_mark_write: E|598
109840  HwBinder:598_3-633   (  598) [002] .... 24575.926790: binder_transaction: transaction=1671479 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
109841  HwBinder:598_3-633   (  598) [002] d..2 24575.926818: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
109842  HwBinder:598_3-633   (  598) [002] d..3 24575.926839: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
109843  HwBinder:598_3-633   (  598) [002] .... 24575.926845: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
109844          <idle>-0     (-----) [001] .n.1 24575.926847: cpu_idle: state=4294967295 cpu_id=1
109845          <idle>-0     (-----) [001] d..2 24575.926855: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
109846  surfaceflinger-23896 (23896) [001] .... 24575.926864: binder_transaction_received: transaction=1671479
109847  HwBinder:598_3-633   (  598) [002] d..2 24575.926944: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109848          <idle>-0     (-----) [002] d..1 24575.926964: cpu_idle: state=0 cpu_id=2
109849  surfaceflinger-23896 (23896) [001] d..1 24575.927135: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
109850  surfaceflinger-23896 (23896) [001] d..2 24575.927169: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
109851          <idle>-0     (-----) [000] .n.1 24575.927173: cpu_idle: state=4294967295 cpu_id=0
109852          <idle>-0     (-----) [000] d..2 24575.927184: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
109853  Binder:23896_5-25989 (23896) [000] .... 24575.927252: binder_transaction: transaction=1671480 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
109854  Binder:23896_5-25989 (23896) [000] d..2 24575.927267: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
109855  Binder:23896_5-25989 (23896) [000] d..3 24575.927292: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
109856  Binder:23896_5-25989 (23896) [000] .... 24575.927298: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
109857  surfaceflinger-23896 (23896) [001] d..2 24575.927352: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109858  Binder:23896_5-25989 (23896) [000] d..2 24575.927360: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
109859          <idle>-0     (-----) [001] d..1 24575.927368: cpu_idle: state=0 cpu_id=1
109860    RenderThread-25194 (24827) [000] .... 24575.927369: binder_transaction_received: transaction=1671480
109861 crtc_commit:111-253   (  253) [003] d..2 24575.927382: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
109862          <idle>-0     (-----) [003] d..1 24575.927398: cpu_idle: state=0 cpu_id=3
109863          <idle>-0     (-----) [001] d.s2 24575.927583: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
109864          <idle>-0     (-----) [001] dns3 24575.927603: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
109865          <idle>-0     (-----) [001] .n.1 24575.927622: cpu_idle: state=4294967295 cpu_id=1
109866          <idle>-0     (-----) [001] d..2 24575.927632: 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
109867     rcu_preempt-7     (    7) [001] d..2 24575.927641: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
109868     rcu_preempt-7     (    7) [001] d..3 24575.927676: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
109869     rcu_preempt-7     (    7) [001] d..2 24575.927688: 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
109870         rcuop/0-10    (   10) [001] d..2 24575.927693: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
109871         rcuop/0-10    (   10) [001] d..3 24575.927722: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
109872         rcuop/0-10    (   10) [001] d..2 24575.927725: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
109873         rcuop/0-10    (   10) [001] d..3 24575.927736: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
109874         rcuop/0-10    (   10) [001] d..2 24575.927743: 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
109875         rcuop/1-21    (   21) [001] d..2 24575.927757: 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
109876     rcu_preempt-7     (    7) [001] d..2 24575.927784: 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
109877          <idle>-0     (-----) [001] d..1 24575.927800: cpu_idle: state=0 cpu_id=1
109878    RenderThread-25194 (24827) [000] .... 24575.929947: binder_transaction: transaction=1671481 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
109879    RenderThread-25194 (24827) [000] ...2 24575.929963: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
109880    RenderThread-25194 (24827) [000] d..4 24575.929970: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
109881    RenderThread-25194 (24827) [000] dn.5 24575.929993: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
109882    RenderThread-25194 (24827) [000] d..2 24575.930004: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
109883  Binder:23896_5-25989 (23896) [000] .... 24575.930014: binder_transaction_received: transaction=1671481
109884  Binder:23896_5-25989 (23896) [000] .... 24575.930181: binder_transaction: transaction=1671482 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
109885  Binder:23896_5-25989 (23896) [000] .... 24575.930192: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
109886  Binder:23896_5-25989 (23896) [000] d..2 24575.930252: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
109887    RenderThread-25194 (24827) [000] .... 24575.930264: binder_transaction_received: transaction=1671482
109888    RenderThread-25194 (24827) [000] d..2 24575.930377: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109889          <idle>-0     (-----) [000] d..1 24575.930400: cpu_idle: state=0 cpu_id=0
109890          <idle>-0     (-----) [000] d.h5 24575.932252: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
109891          <idle>-0     (-----) [000] dnh6 24575.932270: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
109892          <idle>-0     (-----) [000] dnh5 24575.932277: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
109893          <idle>-0     (-----) [000] dnh6 24575.932290: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
109894          <idle>-0     (-----) [003] .n.1 24575.932297: cpu_idle: state=4294967295 cpu_id=3
109895          <idle>-0     (-----) [000] .n.1 24575.932307: cpu_idle: state=4294967295 cpu_id=0
109896          <idle>-0     (-----) [003] d..2 24575.932311: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
109897          <idle>-0     (-----) [000] d..2 24575.932320: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
109898  crtc_event:111-254   (  254) [000] d..3 24575.932336: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
109899  crtc_event:111-254   (  254) [000] d..4 24575.932360: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
109900          <idle>-0     (-----) [002] .n.1 24575.932368: cpu_idle: state=4294967295 cpu_id=2
109901          <idle>-0     (-----) [002] d..2 24575.932383: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
109902  crtc_event:111-254   (  254) [000] d..2 24575.932391: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109903          <idle>-0     (-----) [000] d..2 24575.932395: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
109904          <idle>-0     (-----) [000] dn.3 24575.932411: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
109905          <idle>-0     (-----) [000] d..2 24575.932422: 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
109906     ksoftirqd/0-3     (    3) [000] d.s2 24575.932434: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
109907     ksoftirqd/0-3     (    3) [000] d.s3 24575.932454: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
109908     ksoftirqd/0-3     (    3) [000] d..2 24575.932464: 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
109909 crtc_commit:111-253   (  253) [003] d..2 24575.932482: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
109910          <idle>-0     (-----) [003] d..1 24575.932491: cpu_idle: state=0 cpu_id=3
109911  kworker/u16:10-23868 (23868) [000] d..2 24575.932556: 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
109912          <idle>-0     (-----) [000] d..1 24575.932572: cpu_idle: state=0 cpu_id=0
109913 kgsl_worker_thr-246   (  246) [002] d..2 24575.932603: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
109914          <idle>-0     (-----) [002] d..1 24575.932614: cpu_idle: state=0 cpu_id=2
109915          <idle>-0     (-----) [002] d.h2 24575.932691: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
109916          <idle>-0     (-----) [002] dnh3 24575.932705: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
109917          <idle>-0     (-----) [002] .n.1 24575.932713: cpu_idle: state=4294967295 cpu_id=2
109918          <idle>-0     (-----) [002] d..2 24575.932723: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
109919 kgsl_worker_thr-246   (  246) [002] d..2 24575.932749: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
109920 kgsl_worker_thr-246   (  246) [002] d..3 24575.932793: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
109921 kgsl_worker_thr-246   (  246) [002] d..2 24575.932809: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
109922  kworker/u16:10-23868 (23868) [002] d..2 24575.933229: 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
109923          <idle>-0     (-----) [002] d..1 24575.933243: cpu_idle: state=0 cpu_id=2
109924          <idle>-0     (-----) [001] d.s2 24575.934246: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
109925          <idle>-0     (-----) [003] d.s3 24575.934247: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
109926          <idle>-0     (-----) [001] dns3 24575.934262: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
109927          <idle>-0     (-----) [003] d.s4 24575.934268: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
109928          <idle>-0     (-----) [000] .n.1 24575.934275: cpu_idle: state=4294967295 cpu_id=0
109929          <idle>-0     (-----) [001] .n.1 24575.934276: cpu_idle: state=4294967295 cpu_id=1
109930          <idle>-0     (-----) [003] d.s3 24575.934277: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
109931          <idle>-0     (-----) [001] d..2 24575.934288: 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
109932          <idle>-0     (-----) [003] d.s4 24575.934294: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
109933          <idle>-0     (-----) [002] .n.1 24575.934302: cpu_idle: state=4294967295 cpu_id=2
109934          <idle>-0     (-----) [002] d..2 24575.934316: 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
109935          <idle>-0     (-----) [000] dnh3 24575.934317: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
109936     rcu_preempt-7     (    7) [001] d..2 24575.934321: 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
109937          <idle>-0     (-----) [003] ...1 24575.934325: cpu_idle: state=4294967295 cpu_id=3
109938          <idle>-0     (-----) [003] d..1 24575.934334: cpu_idle: state=0 cpu_id=3
109939          <idle>-0     (-----) [001] d..1 24575.934334: cpu_idle: state=0 cpu_id=1
109940          <idle>-0     (-----) [000] dnh4 24575.934345: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
109941          <idle>-0     (-----) [003] .n.1 24575.934350: cpu_idle: state=4294967295 cpu_id=3
109942          <idle>-0     (-----) [003] d..2 24575.934361: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
109943          <idle>-0     (-----) [000] d..2 24575.934376: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
109944  crtc_event:111-254   (  254) [000] d..2 24575.934417: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109945          <idle>-0     (-----) [000] d..1 24575.934430: cpu_idle: state=0 cpu_id=0
109946 kgsl_worker_thr-246   (  246) [003] d..2 24575.934459: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109947          <idle>-0     (-----) [003] d..1 24575.934472: cpu_idle: state=0 cpu_id=3
109948          <idle>-0     (-----) [000] d.h5 24575.934568: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
109949          <idle>-0     (-----) [000] d.h6 24575.934584: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
109950          <idle>-0     (-----) [003] .n.1 24575.934590: cpu_idle: state=4294967295 cpu_id=3
109951          <idle>-0     (-----) [003] d..2 24575.934600: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
109952          <idle>-0     (-----) [000] ...1 24575.934600: cpu_idle: state=4294967295 cpu_id=0
109953          <idle>-0     (-----) [000] d..1 24575.934605: cpu_idle: state=0 cpu_id=0
109954  kworker/u16:10-23868 (23868) [002] d..2 24575.934662: 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
109955          <idle>-0     (-----) [002] d..1 24575.934675: cpu_idle: state=0 cpu_id=2
109956 crtc_commit:111-253   (  253) [003] d..2 24575.934685: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109957          <idle>-0     (-----) [003] d..1 24575.934697: cpu_idle: state=0 cpu_id=3
109958          <idle>-0     (-----) [000] d.h5 24575.934878: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
109959          <idle>-0     (-----) [000] dnh6 24575.934888: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
109960          <idle>-0     (-----) [000] .n.1 24575.934906: cpu_idle: state=4294967295 cpu_id=0
109961          <idle>-0     (-----) [000] d..2 24575.934916: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
109962  crtc_event:111-254   (  254) [000] d..2 24575.934941: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109963          <idle>-0     (-----) [000] d..1 24575.934951: cpu_idle: state=0 cpu_id=0
109964          <idle>-0     (-----) [003] d.s3 24575.935156: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
109965          <idle>-0     (-----) [003] d.s4 24575.935192: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
109966          <idle>-0     (-----) [003] dns4 24575.935199: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
109967          <idle>-0     (-----) [003] .n.1 24575.935207: cpu_idle: state=4294967295 cpu_id=3
109968          <idle>-0     (-----) [003] d..2 24575.935219: 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
109969  kworker/u16:10-23868 (23868) [003] .... 24575.935302: clk_set_rate: l3_cluster0_vote_clk 403200000
109970  kworker/u16:10-23868 (23868) [003] .... 24575.935311: clk_set_rate: l3_clk 403200000
109971  kworker/u16:10-23868 (23868) [003] d..2 24575.935368: 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
109972          <idle>-0     (-----) [003] d..1 24575.935383: cpu_idle: state=0 cpu_id=3
109973          <idle>-0     (-----) [002] d.h2 24575.936764: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
109974          <idle>-0     (-----) [002] dnh3 24575.936778: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
109975          <idle>-0     (-----) [002] .n.1 24575.936786: cpu_idle: state=4294967295 cpu_id=2
109976          <idle>-0     (-----) [002] d..2 24575.936795: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
109977        DispSync-23904 (23896) [002] d..1 24575.936818: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
109978        DispSync-23904 (23896) [002] d..2 24575.936833: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
109979          <idle>-0     (-----) [003] .n.1 24575.936839: cpu_idle: state=4294967295 cpu_id=3
109980          <idle>-0     (-----) [003] d..2 24575.936849: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
109981        DispSync-23904 (23896) [002] d..2 24575.936864: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109982          <idle>-0     (-----) [002] d..1 24575.936875: cpu_idle: state=0 cpu_id=2
109983  appEventThread-23905 (23896) [003] d..3 24575.936894: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
109984  appEventThread-23905 (23896) [003] d..4 24575.936916: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
109985          <idle>-0     (-----) [000] .n.1 24575.936921: cpu_idle: state=4294967295 cpu_id=0
109986          <idle>-0     (-----) [000] d..2 24575.936933: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
109987  appEventThread-23905 (23896) [003] d..2 24575.936952: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109988          <idle>-0     (-----) [003] d..1 24575.936966: cpu_idle: state=0 cpu_id=3
109989 s.nexuslauncher-24827 (24827) [000] .... 24575.937293: binder_transaction: transaction=1671483 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
109990 s.nexuslauncher-24827 (24827) [000] d..4 24575.937303: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
109991 s.nexuslauncher-24827 (24827) [000] d..5 24575.937339: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
109992          <idle>-0     (-----) [001] .n.1 24575.937344: cpu_idle: state=4294967295 cpu_id=1
109993          <idle>-0     (-----) [001] d..2 24575.937356: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
109994  Binder:23896_5-25989 (23896) [001] .... 24575.937363: binder_transaction_received: transaction=1671483
109995 s.nexuslauncher-24827 (24827) [000] d..3 24575.937378: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
109996  Binder:23896_5-25989 (23896) [001] d..1 24575.937397: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
109997 s.nexuslauncher-24827 (24827) [000] d..4 24575.937406: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
109998          <idle>-0     (-----) [002] .n.1 24575.937410: cpu_idle: state=4294967295 cpu_id=2
109999  Binder:23896_5-25989 (23896) [001] d..2 24575.937416: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
110000          <idle>-0     (-----) [002] d..2 24575.937421: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
110001          <idle>-0     (-----) [003] .n.1 24575.937421: cpu_idle: state=4294967295 cpu_id=3
110002          <idle>-0     (-----) [003] d..2 24575.937431: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
110003  Binder:23896_5-25989 (23896) [001] d..2 24575.937460: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110004  appEventThread-23905 (23896) [003] d..2 24575.937466: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110005          <idle>-0     (-----) [001] d..1 24575.937473: cpu_idle: state=0 cpu_id=1
110006    RenderThread-25194 (24827) [002] d..2 24575.937477: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
110007          <idle>-0     (-----) [003] d..1 24575.937479: cpu_idle: state=0 cpu_id=3
110008          <idle>-0     (-----) [002] d..1 24575.937489: cpu_idle: state=0 cpu_id=2
110009 s.nexuslauncher-24827 (24827) [000] d.H2 24575.937684: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
110010 s.nexuslauncher-24827 (24827) [000] d.H2 24575.937703: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
110011          <idle>-0     (-----) [006] dnh2 24575.937709: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
110012          <idle>-0     (-----) [006] .n.1 24575.937713: cpu_idle: state=4294967295 cpu_id=6
110013          <idle>-0     (-----) [006] d..2 24575.937718: 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
110014 s.nexuslauncher-24827 (24827) [000] d.H3 24575.937721: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
110015          <idle>-0     (-----) [002] .n.1 24575.937726: cpu_idle: state=4294967295 cpu_id=2
110016 s.nexuslauncher-24827 (24827) [000] d.s2 24575.937732: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
110017         sugov:4-560   (  560) [006] d..2 24575.937733: 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
110018          <idle>-0     (-----) [002] d..2 24575.937738: 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
110019          <idle>-0     (-----) [006] d..1 24575.937739: cpu_idle: state=0 cpu_id=6
110020 s.nexuslauncher-24827 (24827) [000] d.s3 24575.937749: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
110021         sugov:0-559   (  559) [002] .... 24575.937781: clk_set_rate: pwrcl_clk 979200000
110022         sugov:0-559   (  559) [002] .... 24575.937793: clk_set_rate: cpu3_pwrcl_clk 1056000000
110023         sugov:0-559   (  559) [002] .... 24575.937807: clk_set_rate: cpu2_pwrcl_clk 1056000000
110024         sugov:0-559   (  559) [002] .... 24575.937815: clk_set_rate: cpu1_pwrcl_clk 1056000000
110025         sugov:0-559   (  559) [002] .... 24575.937825: clk_set_rate: cpu0_pwrcl_clk 979200000
110026         sugov:0-559   (  559) [002] .... 24575.937944: cpu_frequency: state=979200 cpu_id=0
110027         sugov:0-559   (  559) [002] .... 24575.937975: cpu_frequency: state=979200 cpu_id=1
110028         sugov:0-559   (  559) [002] .... 24575.937980: cpu_frequency: state=979200 cpu_id=2
110029         sugov:0-559   (  559) [002] .... 24575.937983: cpu_frequency: state=979200 cpu_id=3
110030 s.nexuslauncher-24827 (24827) [000] d..3 24575.938012: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
110031         sugov:0-559   (  559) [002] d..2 24575.938021: 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
110032          <idle>-0     (-----) [002] d..1 24575.938031: cpu_idle: state=0 cpu_id=2
110033 s.nexuslauncher-24827 (24827) [000] d..4 24575.938055: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
110034          <idle>-0     (-----) [001] .n.1 24575.938060: cpu_idle: state=4294967295 cpu_id=1
110035          <idle>-0     (-----) [001] d..2 24575.938075: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
110036 s.nexuslauncher-24827 (24827) [000] d..2 24575.938079: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
110037     kworker/0:1-13012 (13012) [000] d..2 24575.938163: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110038          <idle>-0     (-----) [000] d..1 24575.938181: cpu_idle: state=0 cpu_id=0
110039    RenderThread-25194 (24827) [001] d..1 24575.938297: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
110040    RenderThread-25194 (24827) [001] d..2 24575.938320: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
110041          <idle>-0     (-----) [000] .n.1 24575.938327: cpu_idle: state=4294967295 cpu_id=0
110042          <idle>-0     (-----) [000] d..2 24575.938339: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
110043    RenderThread-25194 (24827) [001] .... 24575.938383: binder_transaction: transaction=1671484 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
110044    RenderThread-25194 (24827) [001] ...2 24575.938392: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
110045    RenderThread-25194 (24827) [001] d..4 24575.938396: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
110046    RenderThread-25194 (24827) [001] dn.5 24575.938412: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
110047    RenderThread-25194 (24827) [001] d..2 24575.938422: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
110048  Binder:23896_5-25989 (23896) [001] .... 24575.938431: binder_transaction_received: transaction=1671484
110049 s.nexuslauncher-24827 (24827) [000] d..2 24575.938456: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110050          <idle>-0     (-----) [000] d..1 24575.938471: cpu_idle: state=0 cpu_id=0
110051  Binder:23896_5-25989 (23896) [001] d..2 24575.938474: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
110052    RenderThread-25194 (24827) [001] d..2 24575.938501: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110053          <idle>-0     (-----) [001] d..1 24575.938515: cpu_idle: state=0 cpu_id=1
110054          <idle>-0     (-----) [003] ...1 24575.938741: cpu_idle: state=4294967295 cpu_id=3
110055          <idle>-0     (-----) [003] d..1 24575.938745: cpu_idle: state=0 cpu_id=3
110056          <idle>-0     (-----) [002] d.h2 24575.940621: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
110057          <idle>-0     (-----) [002] dnh3 24575.940637: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
110058          <idle>-0     (-----) [002] .n.1 24575.940646: cpu_idle: state=4294967295 cpu_id=2
110059          <idle>-0     (-----) [002] d..2 24575.940656: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
110060        DispSync-23904 (23896) [002] d..1 24575.940674: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
110061        DispSync-23904 (23896) [002] d..2 24575.940691: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
110062          <idle>-0     (-----) [003] .n.1 24575.940695: cpu_idle: state=4294967295 cpu_id=3
110063          <idle>-0     (-----) [003] d..2 24575.940706: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
110064        DispSync-23904 (23896) [002] d..2 24575.940722: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
110065          <idle>-0     (-----) [002] d..1 24575.940734: cpu_idle: state=0 cpu_id=2
110066   sfEventThread-23906 (23896) [003] d..3 24575.940739: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
110067   sfEventThread-23906 (23896) [003] d..4 24575.940762: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
110068          <idle>-0     (-----) [001] .n.1 24575.940768: cpu_idle: state=4294967295 cpu_id=1
110069          <idle>-0     (-----) [001] d..2 24575.940777: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
110070   sfEventThread-23906 (23896) [003] d..2 24575.940792: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110071          <idle>-0     (-----) [003] d..1 24575.940806: cpu_idle: state=0 cpu_id=3
110072  surfaceflinger-23896 (23896) [001] d.s1 24575.940918: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
110073  surfaceflinger-23896 (23896) [001] d.s2 24575.940944: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
110074  surfaceflinger-23896 (23896) [001] d..1 24575.941059: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
110075  surfaceflinger-23896 (23896) [001] d..2 24575.941089: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
110076          <idle>-0     (-----) [000] .n.1 24575.941095: cpu_idle: state=4294967295 cpu_id=0
110077          <idle>-0     (-----) [000] d..2 24575.941111: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
110078  Binder:23896_5-25989 (23896) [000] d..2 24575.941156: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110079          <idle>-0     (-----) [000] d..1 24575.941169: cpu_idle: state=0 cpu_id=0
110080  surfaceflinger-23896 (23896) [001] d..1 24575.941263: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
110081  surfaceflinger-23896 (23896) [001] d..2 24575.941286: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
110082          <idle>-0     (-----) [003] .n.1 24575.941291: cpu_idle: state=4294967295 cpu_id=3
110083          <idle>-0     (-----) [003] d..2 24575.941302: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
110084   sfEventThread-23906 (23896) [003] d..2 24575.941337: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110085          <idle>-0     (-----) [003] d..1 24575.941349: cpu_idle: state=0 cpu_id=3
110086  surfaceflinger-23896 (23896) [001] ...1 24575.941503: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
110087  surfaceflinger-23896 (23896) [001] ...1 24575.941511: tracing_mark_write: E|23896
110088  surfaceflinger-23896 (23896) [001] .... 24575.941581: binder_transaction: transaction=1671485 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
110089  surfaceflinger-23896 (23896) [001] ...2 24575.941609: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
110090  surfaceflinger-23896 (23896) [001] d..4 24575.941617: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
110091  surfaceflinger-23896 (23896) [001] d..5 24575.941641: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
110092          <idle>-0     (-----) [002] .n.1 24575.941647: cpu_idle: state=4294967295 cpu_id=2
110093          <idle>-0     (-----) [002] d..2 24575.941660: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
110094  surfaceflinger-23896 (23896) [001] d..2 24575.941663: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
110095  HwBinder:598_3-633   (  598) [002] .... 24575.941670: binder_transaction_received: transaction=1671485
110096     rcu_preempt-7     (    7) [001] d..2 24575.941674: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
110097     rcu_preempt-7     (    7) [001] d..3 24575.941694: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
110098     rcu_preempt-7     (    7) [001] d..2 24575.941705: 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
110099         rcuop/0-10    (   10) [001] d..2 24575.941709: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
110100         rcuop/0-10    (   10) [001] d..3 24575.941722: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
110101  HwBinder:598_3-633   (  598) [002] ...1 24575.941722: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
110102         rcuop/0-10    (   10) [001] d..2 24575.941725: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
110103         rcuop/0-10    (   10) [001] d..3 24575.941735: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
110104         rcuop/0-10    (   10) [001] d..2 24575.941744: 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
110105         rcuop/1-21    (   21) [001] d..2 24575.941757: 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
110106     rcu_preempt-7     (    7) [001] d..2 24575.941781: 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
110107          <idle>-0     (-----) [001] d..1 24575.941797: cpu_idle: state=0 cpu_id=1
110108  HwBinder:598_3-633   (  598) [002] ...1 24575.941858: tracing_mark_write: B|598|HWCSession::PresentDisplay::
110109  HwBinder:598_3-633   (  598) [002] ...1 24575.942064: tracing_mark_write: B|598|HWDeviceDRM::Commit::
110110  HwBinder:598_3-633   (  598) [002] ...1 24575.942079: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
110111  HwBinder:598_3-633   (  598) [002] d..2 24575.942765: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
110112  HwBinder:598_3-633   (  598) [002] d..3 24575.942794: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
110113          <idle>-0     (-----) [003] .n.1 24575.942800: cpu_idle: state=4294967295 cpu_id=3
110114          <idle>-0     (-----) [003] d..2 24575.942810: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
110115  HwBinder:598_3-633   (  598) [002] ...1 24575.942901: tracing_mark_write: E|598
110116  HwBinder:598_3-633   (  598) [002] ...1 24575.942908: tracing_mark_write: E|598
110117  HwBinder:598_3-633   (  598) [002] ...1 24575.942980: tracing_mark_write: E|598
110118  HwBinder:598_3-633   (  598) [002] ...1 24575.943037: tracing_mark_write: E|598
110119  HwBinder:598_3-633   (  598) [002] .... 24575.943052: binder_transaction: transaction=1671486 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
110120  HwBinder:598_3-633   (  598) [002] d..2 24575.943078: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
110121  HwBinder:598_3-633   (  598) [002] d..3 24575.943097: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
110122  HwBinder:598_3-633   (  598) [002] .... 24575.943102: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
110123          <idle>-0     (-----) [001] .n.1 24575.943103: cpu_idle: state=4294967295 cpu_id=1
110124          <idle>-0     (-----) [001] d..2 24575.943114: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
110125  surfaceflinger-23896 (23896) [001] .... 24575.943122: binder_transaction_received: transaction=1671486
110126  HwBinder:598_3-633   (  598) [002] d..2 24575.943192: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
110127          <idle>-0     (-----) [002] d..1 24575.943211: cpu_idle: state=0 cpu_id=2
110128  surfaceflinger-23896 (23896) [001] d..1 24575.943381: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
110129  surfaceflinger-23896 (23896) [001] d..2 24575.943404: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
110130          <idle>-0     (-----) [000] .n.1 24575.943410: cpu_idle: state=4294967295 cpu_id=0
110131          <idle>-0     (-----) [000] d..2 24575.943421: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
110132  Binder:23896_5-25989 (23896) [000] .... 24575.943483: binder_transaction: transaction=1671487 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
110133  Binder:23896_5-25989 (23896) [000] d..2 24575.943497: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
110134  Binder:23896_5-25989 (23896) [000] d..3 24575.943520: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
110135  Binder:23896_5-25989 (23896) [000] .... 24575.943525: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
110136  surfaceflinger-23896 (23896) [001] d..2 24575.943580: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110137  Binder:23896_5-25989 (23896) [000] d..2 24575.943583: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
110138    RenderThread-25194 (24827) [000] .... 24575.943591: binder_transaction_received: transaction=1671487
110139          <idle>-0     (-----) [001] d..1 24575.943598: cpu_idle: state=0 cpu_id=1
110140 crtc_commit:111-253   (  253) [003] d..2 24575.943637: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
110141          <idle>-0     (-----) [003] d..1 24575.943654: cpu_idle: state=0 cpu_id=3
110142    RenderThread-25194 (24827) [000] d.s2 24575.944258: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
110143    RenderThread-25194 (24827) [000] d.s3 24575.944311: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
110144          <idle>-0     (-----) [001] .n.1 24575.944317: cpu_idle: state=4294967295 cpu_id=1
110145          <idle>-0     (-----) [001] d..2 24575.944333: 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
110146  kworker/u16:10-23868 (23868) [001] .... 24575.944395: clk_set_rate: l3_cluster0_vote_clk 300000000
110147  kworker/u16:10-23868 (23868) [001] .... 24575.944402: clk_set_rate: l3_clk 300000000
110148  kworker/u16:10-23868 (23868) [001] d..2 24575.944722: 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
110149          <idle>-0     (-----) [001] d..1 24575.944736: cpu_idle: state=0 cpu_id=1
110150          <idle>-0     (-----) [003] d.s3 24575.944755: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
110151          <idle>-0     (-----) [003] d.s4 24575.944769: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
110152          <idle>-0     (-----) [003] d.s4 24575.944780: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
110153          <idle>-0     (-----) [001] .n.1 24575.944787: cpu_idle: state=4294967295 cpu_id=1
110154          <idle>-0     (-----) [003] ...1 24575.944793: cpu_idle: state=4294967295 cpu_id=3
110155          <idle>-0     (-----) [001] d..2 24575.944798: 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
110156          <idle>-0     (-----) [003] d..1 24575.944799: cpu_idle: state=0 cpu_id=3
110157  kworker/u16:10-23868 (23868) [001] d..2 24575.944828: 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
110158          <idle>-0     (-----) [001] d..1 24575.944836: cpu_idle: state=0 cpu_id=1
110159    RenderThread-25194 (24827) [000] .... 24575.946269: binder_transaction: transaction=1671488 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
110160    RenderThread-25194 (24827) [000] ...2 24575.946286: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
110161    RenderThread-25194 (24827) [000] d..4 24575.946292: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
110162    RenderThread-25194 (24827) [000] dn.5 24575.946317: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
110163    RenderThread-25194 (24827) [000] d..2 24575.946329: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
110164  Binder:23896_5-25989 (23896) [000] .... 24575.946339: binder_transaction_received: transaction=1671488
110165  Binder:23896_5-25989 (23896) [000] .... 24575.946517: binder_transaction: transaction=1671489 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
110166  Binder:23896_5-25989 (23896) [000] .... 24575.946528: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
110167  Binder:23896_5-25989 (23896) [000] d..2 24575.946591: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
110168    RenderThread-25194 (24827) [000] .... 24575.946602: binder_transaction_received: transaction=1671489
110169    RenderThread-25194 (24827) [000] d..2 24575.946720: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110170          <idle>-0     (-----) [000] d..1 24575.946743: cpu_idle: state=0 cpu_id=0
110171          <idle>-0     (-----) [001] d.s2 24575.947582: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
110172          <idle>-0     (-----) [001] dns3 24575.947604: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
110173          <idle>-0     (-----) [001] dns3 24575.947610: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
110174          <idle>-0     (-----) [001] dns4 24575.947622: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
110175          <idle>-0     (-----) [001] .n.1 24575.947642: cpu_idle: state=4294967295 cpu_id=1
110176          <idle>-0     (-----) [001] d..2 24575.947651: 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
110177     rcu_preempt-7     (    7) [001] d..2 24575.947663: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
110178     rcu_preempt-7     (    7) [001] d..3 24575.947677: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
110179     rcu_preempt-7     (    7) [001] d..2 24575.947687: 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
110180         rcuop/0-10    (   10) [001] d..2 24575.947692: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
110181         rcuop/0-10    (   10) [001] d..3 24575.947705: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
110182         rcuop/0-10    (   10) [001] d..2 24575.947709: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
110183         rcuop/0-10    (   10) [001] d..3 24575.947719: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
110184         rcuop/0-10    (   10) [001] d..2 24575.947728: 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
110185         rcuop/1-21    (   21) [001] d..2 24575.947739: 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
110186     rcu_preempt-7     (    7) [001] d..2 24575.947752: 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
110187  kworker/u16:10-23868 (23868) [001] d..2 24575.947838: 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
110188          <idle>-0     (-----) [001] d..1 24575.947853: cpu_idle: state=0 cpu_id=1
110189          <idle>-0     (-----) [000] d.h5 24575.948729: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
110190          <idle>-0     (-----) [000] dnh6 24575.948751: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
110191          <idle>-0     (-----) [000] dnh5 24575.948757: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
110192          <idle>-0     (-----) [000] dnh6 24575.948772: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
110193          <idle>-0     (-----) [003] .n.1 24575.948778: cpu_idle: state=4294967295 cpu_id=3
110194          <idle>-0     (-----) [000] .n.1 24575.948789: cpu_idle: state=4294967295 cpu_id=0
110195          <idle>-0     (-----) [003] d..2 24575.948790: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
110196          <idle>-0     (-----) [000] d..2 24575.948803: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
110197  crtc_event:111-254   (  254) [000] d..3 24575.948820: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
110198  crtc_event:111-254   (  254) [000] d..4 24575.948846: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
110199          <idle>-0     (-----) [002] .n.1 24575.948855: cpu_idle: state=4294967295 cpu_id=2
110200          <idle>-0     (-----) [002] d..2 24575.948869: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
110201  crtc_event:111-254   (  254) [000] d..2 24575.948873: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110202          <idle>-0     (-----) [000] d..1 24575.948888: cpu_idle: state=0 cpu_id=0
110203 crtc_commit:111-253   (  253) [003] d..2 24575.948970: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
110204          <idle>-0     (-----) [003] d..1 24575.948982: cpu_idle: state=0 cpu_id=3
110205 kgsl_worker_thr-246   (  246) [002] d..2 24575.949103: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
110206          <idle>-0     (-----) [002] d..1 24575.949114: cpu_idle: state=0 cpu_id=2
110207          <idle>-0     (-----) [002] d.h2 24575.949188: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
110208          <idle>-0     (-----) [002] dnh3 24575.949203: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
110209          <idle>-0     (-----) [002] .n.1 24575.949212: cpu_idle: state=4294967295 cpu_id=2
110210          <idle>-0     (-----) [002] d..2 24575.949223: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
110211 kgsl_worker_thr-246   (  246) [002] d..2 24575.949247: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
110212 kgsl_worker_thr-246   (  246) [002] d..3 24575.949293: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
110213 kgsl_worker_thr-246   (  246) [002] d..2 24575.949309: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
110214  kworker/u16:10-23868 (23868) [002] d..2 24575.949737: 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
110215          <idle>-0     (-----) [002] d..1 24575.949752: cpu_idle: state=0 cpu_id=2
110216          <idle>-0     (-----) [000] d.h3 24575.950816: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
110217          <idle>-0     (-----) [000] d.h4 24575.950833: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
110218          <idle>-0     (-----) [002] .n.1 24575.950841: cpu_idle: state=4294967295 cpu_id=2
110219          <idle>-0     (-----) [000] ...1 24575.950850: cpu_idle: state=4294967295 cpu_id=0
110220          <idle>-0     (-----) [002] d..2 24575.950851: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
110221          <idle>-0     (-----) [000] d..1 24575.950856: cpu_idle: state=0 cpu_id=0
110222          <idle>-0     (-----) [003] d.s3 24575.950912: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
110223          <idle>-0     (-----) [003] d.s4 24575.950931: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
110224          <idle>-0     (-----) [000] .n.1 24575.950937: cpu_idle: state=4294967295 cpu_id=0
110225          <idle>-0     (-----) [000] d..2 24575.950951: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
110226          <idle>-0     (-----) [003] ...1 24575.950958: cpu_idle: state=4294967295 cpu_id=3
110227          <idle>-0     (-----) [003] d..1 24575.950965: cpu_idle: state=0 cpu_id=3
110228 kgsl_worker_thr-246   (  246) [002] d..2 24575.950984: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
110229          <idle>-0     (-----) [002] d..1 24575.950996: cpu_idle: state=0 cpu_id=2
110230  crtc_event:111-254   (  254) [000] d.h4 24575.951062: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
110231  crtc_event:111-254   (  254) [000] d.h5 24575.951080: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
110232          <idle>-0     (-----) [003] .n.1 24575.951086: cpu_idle: state=4294967295 cpu_id=3
110233          <idle>-0     (-----) [003] d..2 24575.951096: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
110234  crtc_event:111-254   (  254) [000] d..2 24575.951117: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110235          <idle>-0     (-----) [000] d..1 24575.951129: cpu_idle: state=0 cpu_id=0
110236 crtc_commit:111-253   (  253) [003] d..2 24575.951184: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110237          <idle>-0     (-----) [003] d..1 24575.951197: cpu_idle: state=0 cpu_id=3
110238          <idle>-0     (-----) [000] d.h5 24575.951359: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
110239          <idle>-0     (-----) [000] dnh6 24575.951371: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
110240          <idle>-0     (-----) [000] .n.1 24575.951389: cpu_idle: state=4294967295 cpu_id=0
110241          <idle>-0     (-----) [000] d..2 24575.951398: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
110242  crtc_event:111-254   (  254) [000] d..2 24575.951422: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110243          <idle>-0     (-----) [000] d..1 24575.951433: cpu_idle: state=0 cpu_id=0
110244          <idle>-0     (-----) [002] d.h2 24575.953082: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
110245          <idle>-0     (-----) [002] dnh3 24575.953097: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
110246          <idle>-0     (-----) [002] .n.1 24575.953106: cpu_idle: state=4294967295 cpu_id=2
110247          <idle>-0     (-----) [002] d..2 24575.953116: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
110248        DispSync-23904 (23896) [002] d..1 24575.953142: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
110249        DispSync-23904 (23896) [002] d..2 24575.953162: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
110250          <idle>-0     (-----) [003] .n.1 24575.953168: cpu_idle: state=4294967295 cpu_id=3
110251          <idle>-0     (-----) [003] d..2 24575.953179: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
110252        DispSync-23904 (23896) [002] d..2 24575.953198: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
110253          <idle>-0     (-----) [002] d..1 24575.953211: cpu_idle: state=0 cpu_id=2
110254  appEventThread-23905 (23896) [003] d..3 24575.953229: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
110255  appEventThread-23905 (23896) [003] d..4 24575.953255: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
110256          <idle>-0     (-----) [000] .n.1 24575.953260: cpu_idle: state=4294967295 cpu_id=0
110257          <idle>-0     (-----) [000] d..2 24575.953274: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
110258  appEventThread-23905 (23896) [003] d..2 24575.953298: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110259          <idle>-0     (-----) [003] d..1 24575.953313: cpu_idle: state=0 cpu_id=3
110260 s.nexuslauncher-24827 (24827) [000] .... 24575.953680: binder_transaction: transaction=1671490 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
110261 s.nexuslauncher-24827 (24827) [000] d..4 24575.953692: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
110262 s.nexuslauncher-24827 (24827) [000] d..5 24575.953731: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
110263          <idle>-0     (-----) [001] .n.1 24575.953737: cpu_idle: state=4294967295 cpu_id=1
110264          <idle>-0     (-----) [001] d..2 24575.953753: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
110265  Binder:23896_5-25989 (23896) [001] .... 24575.953763: binder_transaction_received: transaction=1671490
110266 s.nexuslauncher-24827 (24827) [000] d..3 24575.953776: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
110267  Binder:23896_5-25989 (23896) [001] d..1 24575.953803: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
110268 s.nexuslauncher-24827 (24827) [000] d..4 24575.953806: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
110269          <idle>-0     (-----) [002] .n.1 24575.953812: cpu_idle: state=4294967295 cpu_id=2
110270          <idle>-0     (-----) [002] d..2 24575.953825: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
110271  Binder:23896_5-25989 (23896) [001] d..2 24575.953826: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
110272          <idle>-0     (-----) [003] .n.1 24575.953832: cpu_idle: state=4294967295 cpu_id=3
110273          <idle>-0     (-----) [003] d..2 24575.953843: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
110274  Binder:23896_5-25989 (23896) [001] d..2 24575.953876: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110275  appEventThread-23905 (23896) [003] d..2 24575.953884: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110276          <idle>-0     (-----) [001] d..1 24575.953888: cpu_idle: state=0 cpu_id=1
110277    RenderThread-25194 (24827) [002] d..2 24575.953891: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
110278          <idle>-0     (-----) [003] d..1 24575.953895: cpu_idle: state=0 cpu_id=3
110279          <idle>-0     (-----) [002] d..1 24575.953904: cpu_idle: state=0 cpu_id=2
110280 s.nexuslauncher-24827 (24827) [000] d..3 24575.954207: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
110281 s.nexuslauncher-24827 (24827) [000] d..4 24575.954250: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
110282          <idle>-0     (-----) [001] dns2 24575.954265: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
110283          <idle>-0     (-----) [001] dns3 24575.954311: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
110284          <idle>-0     (-----) [001] dns3 24575.954317: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
110285 s.nexuslauncher-24827 (24827) [000] d..2 24575.954337: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
110286          <idle>-0     (-----) [001] dns4 24575.954353: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
110287     rcu_preempt-7     (    7) [000] d..2 24575.954365: 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
110288          <idle>-0     (-----) [001] .n.1 24575.954371: cpu_idle: state=4294967295 cpu_id=1
110289          <idle>-0     (-----) [001] d..2 24575.954382: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
110290  kworker/u16:10-23868 (23868) [000] d..2 24575.954626: 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
110291    RenderThread-25194 (24827) [001] d..1 24575.954630: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
110292          <idle>-0     (-----) [000] d..1 24575.954647: cpu_idle: state=0 cpu_id=0
110293          <idle>-0     (-----) [000] .n.1 24575.954652: cpu_idle: state=4294967295 cpu_id=0
110294    RenderThread-25194 (24827) [001] d..2 24575.954653: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
110295          <idle>-0     (-----) [000] d..2 24575.954670: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
110296    RenderThread-25194 (24827) [001] .... 24575.954722: binder_transaction: transaction=1671491 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
110297    RenderThread-25194 (24827) [001] ...2 24575.954732: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
110298    RenderThread-25194 (24827) [001] d..4 24575.954736: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
110299    RenderThread-25194 (24827) [001] dn.5 24575.954754: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
110300    RenderThread-25194 (24827) [001] d..2 24575.954765: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
110301  Binder:23896_5-25989 (23896) [001] .... 24575.954775: binder_transaction_received: transaction=1671491
110302 s.nexuslauncher-24827 (24827) [000] d..2 24575.954806: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110303  Binder:23896_5-25989 (23896) [001] d..2 24575.954823: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
110304          <idle>-0     (-----) [000] d..1 24575.954824: cpu_idle: state=0 cpu_id=0
110305    RenderThread-25194 (24827) [001] d..2 24575.954857: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110306          <idle>-0     (-----) [001] d..1 24575.954878: cpu_idle: state=0 cpu_id=1
110307          <idle>-0     (-----) [003] d.s3 24575.955112: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
110308          <idle>-0     (-----) [003] d.s4 24575.955124: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
110309          <idle>-0     (-----) [003] d.s4 24575.955134: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
110310          <idle>-0     (-----) [000] .n.1 24575.955141: cpu_idle: state=4294967295 cpu_id=0
110311          <idle>-0     (-----) [003] ...1 24575.955147: cpu_idle: state=4294967295 cpu_id=3
110312          <idle>-0     (-----) [003] d..1 24575.955153: cpu_idle: state=0 cpu_id=3
110313          <idle>-0     (-----) [000] d..2 24575.955155: 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
110314  kworker/u16:10-23868 (23868) [000] .... 24575.955236: clk_set_rate: l3_cluster0_vote_clk 403200000
110315  kworker/u16:10-23868 (23868) [000] .... 24575.955247: clk_set_rate: l3_clk 403200000
110316  kworker/u16:10-23868 (23868) [000] d..2 24575.955308: 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
110317          <idle>-0     (-----) [000] d..1 24575.955323: cpu_idle: state=0 cpu_id=0
110318          <idle>-0     (-----) [002] d.h2 24575.957092: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
110319          <idle>-0     (-----) [002] dnh3 24575.957106: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
110320          <idle>-0     (-----) [002] .n.1 24575.957115: cpu_idle: state=4294967295 cpu_id=2
110321          <idle>-0     (-----) [002] d..2 24575.957126: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
110322        DispSync-23904 (23896) [002] d..1 24575.957143: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
110323        DispSync-23904 (23896) [002] d..2 24575.957159: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
110324          <idle>-0     (-----) [003] .n.1 24575.957164: cpu_idle: state=4294967295 cpu_id=3
110325          <idle>-0     (-----) [003] d..2 24575.957176: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
110326        DispSync-23904 (23896) [002] d..2 24575.957188: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
110327          <idle>-0     (-----) [002] d..1 24575.957201: cpu_idle: state=0 cpu_id=2
110328   sfEventThread-23906 (23896) [003] d..3 24575.957211: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
110329   sfEventThread-23906 (23896) [003] d..4 24575.957230: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
110330          <idle>-0     (-----) [001] .n.1 24575.957236: cpu_idle: state=4294967295 cpu_id=1
110331          <idle>-0     (-----) [001] d..2 24575.957249: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
110332   sfEventThread-23906 (23896) [003] d..2 24575.957261: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110333          <idle>-0     (-----) [003] d..1 24575.957273: cpu_idle: state=0 cpu_id=3
110334  surfaceflinger-23896 (23896) [001] d..1 24575.957449: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
110335  surfaceflinger-23896 (23896) [001] d..2 24575.957484: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
110336          <idle>-0     (-----) [000] .n.1 24575.957489: cpu_idle: state=4294967295 cpu_id=0
110337          <idle>-0     (-----) [000] d..2 24575.957502: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
110338  Binder:23896_5-25989 (23896) [000] d..2 24575.957539: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110339          <idle>-0     (-----) [000] d..1 24575.957554: cpu_idle: state=0 cpu_id=0
110340  surfaceflinger-23896 (23896) [001] d.H2 24575.957689: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
110341  surfaceflinger-23896 (23896) [001] d.H2 24575.957709: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
110342          <idle>-0     (-----) [006] dnh2 24575.957715: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
110343          <idle>-0     (-----) [006] .n.1 24575.957719: cpu_idle: state=4294967295 cpu_id=6
110344          <idle>-0     (-----) [006] d..2 24575.957724: 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
110345  surfaceflinger-23896 (23896) [001] d.H3 24575.957726: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
110346          <idle>-0     (-----) [002] .n.1 24575.957732: cpu_idle: state=4294967295 cpu_id=2
110347         sugov:4-560   (  560) [006] d..2 24575.957739: 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
110348          <idle>-0     (-----) [006] d..1 24575.957744: cpu_idle: state=0 cpu_id=6
110349          <idle>-0     (-----) [002] d..2 24575.957744: 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
110350         sugov:0-559   (  559) [002] d..2 24575.957773: 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
110351          <idle>-0     (-----) [002] d..1 24575.957782: cpu_idle: state=0 cpu_id=2
110352  surfaceflinger-23896 (23896) [001] d..1 24575.957852: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
110353  surfaceflinger-23896 (23896) [001] d..2 24575.957875: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
110354          <idle>-0     (-----) [003] .n.1 24575.957880: cpu_idle: state=4294967295 cpu_id=3
110355          <idle>-0     (-----) [003] d..2 24575.957891: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
110356   sfEventThread-23906 (23896) [003] d..2 24575.957924: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110357          <idle>-0     (-----) [003] d..1 24575.957935: cpu_idle: state=0 cpu_id=3
110358  surfaceflinger-23896 (23896) [001] ...1 24575.958086: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
110359  surfaceflinger-23896 (23896) [001] ...1 24575.958095: tracing_mark_write: E|23896
110360  surfaceflinger-23896 (23896) [001] .... 24575.958163: binder_transaction: transaction=1671492 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
110361  surfaceflinger-23896 (23896) [001] ...2 24575.958197: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
110362  surfaceflinger-23896 (23896) [001] d..4 24575.958206: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
110363  surfaceflinger-23896 (23896) [001] d..5 24575.958229: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
110364          <idle>-0     (-----) [002] .n.1 24575.958234: cpu_idle: state=4294967295 cpu_id=2
110365          <idle>-0     (-----) [002] d..2 24575.958244: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
110366  HwBinder:598_3-633   (  598) [002] .... 24575.958256: binder_transaction_received: transaction=1671492
110367  surfaceflinger-23896 (23896) [001] d..2 24575.958262: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110368          <idle>-0     (-----) [001] d..1 24575.958281: cpu_idle: state=0 cpu_id=1
110369  HwBinder:598_3-633   (  598) [002] ...1 24575.958308: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
110370  HwBinder:598_3-633   (  598) [002] ...1 24575.958463: tracing_mark_write: B|598|HWCSession::PresentDisplay::
110371  HwBinder:598_3-633   (  598) [002] ...1 24575.958667: tracing_mark_write: B|598|HWDeviceDRM::Commit::
110372  HwBinder:598_3-633   (  598) [002] ...1 24575.958680: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
110373  HwBinder:598_3-633   (  598) [002] d..2 24575.959344: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
110374  HwBinder:598_3-633   (  598) [002] d..3 24575.959372: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
110375          <idle>-0     (-----) [003] .n.1 24575.959376: cpu_idle: state=4294967295 cpu_id=3
110376          <idle>-0     (-----) [003] d..2 24575.959386: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
110377  HwBinder:598_3-633   (  598) [002] ...1 24575.959484: tracing_mark_write: E|598
110378  HwBinder:598_3-633   (  598) [002] ...1 24575.959490: tracing_mark_write: E|598
110379  HwBinder:598_3-633   (  598) [002] ...1 24575.959562: tracing_mark_write: E|598
110380  HwBinder:598_3-633   (  598) [002] ...1 24575.959620: tracing_mark_write: E|598
110381  HwBinder:598_3-633   (  598) [002] .... 24575.959636: binder_transaction: transaction=1671493 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
110382  HwBinder:598_3-633   (  598) [002] d..2 24575.959662: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
110383  HwBinder:598_3-633   (  598) [002] d..3 24575.959682: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
110384  HwBinder:598_3-633   (  598) [002] .... 24575.959687: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
110385          <idle>-0     (-----) [001] .n.1 24575.959688: cpu_idle: state=4294967295 cpu_id=1
110386          <idle>-0     (-----) [001] d..2 24575.959699: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
110387  surfaceflinger-23896 (23896) [001] .... 24575.959708: binder_transaction_received: transaction=1671493
110388  HwBinder:598_3-633   (  598) [002] d..2 24575.959776: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
110389          <idle>-0     (-----) [002] d..1 24575.959794: cpu_idle: state=0 cpu_id=2
110390  surfaceflinger-23896 (23896) [001] d..1 24575.959963: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
110391  surfaceflinger-23896 (23896) [001] d..2 24575.959989: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
110392          <idle>-0     (-----) [000] .n.1 24575.959994: cpu_idle: state=4294967295 cpu_id=0
110393          <idle>-0     (-----) [000] d..2 24575.960006: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
110394  Binder:23896_5-25989 (23896) [000] .... 24575.960068: binder_transaction: transaction=1671494 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
110395  Binder:23896_5-25989 (23896) [000] d..2 24575.960082: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
110396  Binder:23896_5-25989 (23896) [000] d..3 24575.960107: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
110397  Binder:23896_5-25989 (23896) [000] .... 24575.960111: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
110398  surfaceflinger-23896 (23896) [001] d..2 24575.960167: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110399  Binder:23896_5-25989 (23896) [000] d..2 24575.960168: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
110400    RenderThread-25194 (24827) [000] .... 24575.960177: binder_transaction_received: transaction=1671494
110401          <idle>-0     (-----) [001] d..1 24575.960186: cpu_idle: state=0 cpu_id=1
110402 crtc_commit:111-253   (  253) [003] d..2 24575.960204: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
110403          <idle>-0     (-----) [003] d..1 24575.960222: cpu_idle: state=0 cpu_id=3
110404    RenderThread-25194 (24827) [000] d.s1 24575.960921: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
110405    RenderThread-25194 (24827) [000] dns2 24575.960948: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
110406    RenderThread-25194 (24827) [000] d..2 24575.960968: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
110407     rcu_preempt-7     (    7) [000] d..2 24575.960976: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
110408     rcu_preempt-7     (    7) [000] d..3 24575.961012: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
110409     rcu_preempt-7     (    7) [000] d..2 24575.961023: 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
110410         rcuop/0-10    (   10) [000] d..2 24575.961028: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
110411         rcuop/0-10    (   10) [000] d..3 24575.961058: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
110412         rcuop/0-10    (   10) [000] d..2 24575.961061: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
110413         rcuop/0-10    (   10) [000] d..3 24575.961073: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
110414         rcuop/0-10    (   10) [000] d..2 24575.961083: 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
110415         rcuop/1-21    (   21) [000] d..2 24575.961099: 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
110416     rcu_preempt-7     (    7) [000] d..2 24575.961111: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
110417          <idle>-0     (-----) [003] ...1 24575.962164: cpu_idle: state=4294967295 cpu_id=3
110418          <idle>-0     (-----) [003] d..1 24575.962168: cpu_idle: state=0 cpu_id=3
110419    RenderThread-25194 (24827) [000] .... 24575.962718: binder_transaction: transaction=1671495 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
110420    RenderThread-25194 (24827) [000] ...2 24575.962732: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
110421    RenderThread-25194 (24827) [000] d..4 24575.962736: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
110422    RenderThread-25194 (24827) [000] dn.5 24575.962755: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
110423    RenderThread-25194 (24827) [000] d..2 24575.962766: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
110424  Binder:23896_5-25989 (23896) [000] .... 24575.962775: binder_transaction_received: transaction=1671495
110425  Binder:23896_5-25989 (23896) [000] .... 24575.962930: binder_transaction: transaction=1671496 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
110426  Binder:23896_5-25989 (23896) [000] .... 24575.962939: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
110427  Binder:23896_5-25989 (23896) [000] d..2 24575.962993: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
110428    RenderThread-25194 (24827) [000] .... 24575.963004: binder_transaction_received: transaction=1671496
110429    RenderThread-25194 (24827) [000] d..2 24575.963111: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110430          <idle>-0     (-----) [000] d..1 24575.963131: cpu_idle: state=0 cpu_id=0
110431          <idle>-0     (-----) [000] d.h5 24575.965197: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
110432          <idle>-0     (-----) [000] dnh6 24575.965213: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
110433          <idle>-0     (-----) [000] dnh5 24575.965219: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
110434          <idle>-0     (-----) [000] dnh6 24575.965232: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
110435          <idle>-0     (-----) [003] .n.1 24575.965238: cpu_idle: state=4294967295 cpu_id=3
110436          <idle>-0     (-----) [000] .n.1 24575.965249: cpu_idle: state=4294967295 cpu_id=0
110437          <idle>-0     (-----) [003] d..2 24575.965250: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
110438          <idle>-0     (-----) [000] d..2 24575.965262: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
110439  crtc_event:111-254   (  254) [000] d..3 24575.965278: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
110440  crtc_event:111-254   (  254) [000] d..4 24575.965292: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
110441          <idle>-0     (-----) [002] .n.1 24575.965299: cpu_idle: state=4294967295 cpu_id=2
110442          <idle>-0     (-----) [002] d..2 24575.965313: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
110443  crtc_event:111-254   (  254) [000] d..2 24575.965320: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110444          <idle>-0     (-----) [000] d..2 24575.965324: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
110445          <idle>-0     (-----) [000] dn.3 24575.965337: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
110446          <idle>-0     (-----) [000] d..2 24575.965346: 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
110447     ksoftirqd/0-3     (    3) [000] d.s2 24575.965356: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
110448     ksoftirqd/0-3     (    3) [000] d.s3 24575.965374: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
110449     ksoftirqd/0-3     (    3) [000] d..2 24575.965387: 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
110450 crtc_commit:111-253   (  253) [003] d..2 24575.965412: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
110451          <idle>-0     (-----) [003] d..1 24575.965421: cpu_idle: state=0 cpu_id=3
110452 kgsl_worker_thr-246   (  246) [002] d..2 24575.965541: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
110453          <idle>-0     (-----) [002] d..1 24575.965552: cpu_idle: state=0 cpu_id=2
110454  kworker/u16:10-23868 (23868) [000] d..2 24575.965586: 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
110455          <idle>-0     (-----) [000] d..1 24575.965597: cpu_idle: state=0 cpu_id=0
110456          <idle>-0     (-----) [002] d.h2 24575.965628: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
110457          <idle>-0     (-----) [002] dnh3 24575.965642: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
110458          <idle>-0     (-----) [002] .n.1 24575.965649: cpu_idle: state=4294967295 cpu_id=2
110459          <idle>-0     (-----) [002] d..2 24575.965659: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
110460 kgsl_worker_thr-246   (  246) [002] d..2 24575.965683: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
110461 kgsl_worker_thr-246   (  246) [002] d..3 24575.965723: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
110462 kgsl_worker_thr-246   (  246) [002] d..2 24575.965736: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
110463  kworker/u16:10-23868 (23868) [002] d..2 24575.966149: 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
110464          <idle>-0     (-----) [002] d..1 24575.966163: cpu_idle: state=0 cpu_id=2
110465          <idle>-0     (-----) [000] d.h3 24575.967210: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
110466          <idle>-0     (-----) [000] d.h4 24575.967229: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
110467          <idle>-0     (-----) [002] .n.1 24575.967235: cpu_idle: state=4294967295 cpu_id=2
110468          <idle>-0     (-----) [000] ...1 24575.967244: cpu_idle: state=4294967295 cpu_id=0
110469          <idle>-0     (-----) [002] d..2 24575.967245: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
110470          <idle>-0     (-----) [000] d..1 24575.967249: cpu_idle: state=0 cpu_id=0
110471 kgsl_worker_thr-246   (  246) [002] d..2 24575.967312: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
110472          <idle>-0     (-----) [002] d..1 24575.967322: cpu_idle: state=0 cpu_id=2
110473          <idle>-0     (-----) [000] d.h5 24575.967521: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
110474          <idle>-0     (-----) [000] d.h6 24575.967537: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
110475          <idle>-0     (-----) [003] .n.1 24575.967543: cpu_idle: state=4294967295 cpu_id=3
110476          <idle>-0     (-----) [003] dns5 24575.967543: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
110477          <idle>-0     (-----) [003] dns6 24575.967543: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
110478          <idle>-0     (-----) [000] d.s2 24575.967575: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
110479          <idle>-0     (-----) [000] dns3 24575.967593: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
110480          <idle>-0     (-----) [000] .n.1 24575.967620: cpu_idle: state=4294967295 cpu_id=0
110481          <idle>-0     (-----) [003] d..2 24575.967620: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
110482          <idle>-0     (-----) [000] d..2 24575.967628: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
110483  crtc_event:111-254   (  254) [000] d..2 24575.967648: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
110484     rcu_preempt-7     (    7) [000] d..2 24575.967680: 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
110485          <idle>-0     (-----) [000] d..1 24575.967693: cpu_idle: state=0 cpu_id=0
110486 crtc_commit:111-253   (  253) [003] d..2 24575.967701: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110487          <idle>-0     (-----) [003] d..1 24575.967715: cpu_idle: state=0 cpu_id=3
110488          <idle>-0     (-----) [000] d.h5 24575.967833: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
110489          <idle>-0     (-----) [000] dnh6 24575.967845: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
110490          <idle>-0     (-----) [000] .n.1 24575.967863: cpu_idle: state=4294967295 cpu_id=0
110491          <idle>-0     (-----) [000] d..2 24575.967873: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
110492  crtc_event:111-254   (  254) [000] d..2 24575.967898: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110493          <idle>-0     (-----) [000] d..1 24575.967909: cpu_idle: state=0 cpu_id=0
110494          <idle>-0     (-----) [002] d.h2 24575.969540: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
110495          <idle>-0     (-----) [002] dnh3 24575.969556: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
110496          <idle>-0     (-----) [002] .n.1 24575.969565: cpu_idle: state=4294967295 cpu_id=2
110497          <idle>-0     (-----) [002] d..2 24575.969575: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
110498        DispSync-23904 (23896) [002] d..1 24575.969598: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
110499        DispSync-23904 (23896) [002] d..2 24575.969615: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
110500          <idle>-0     (-----) [003] .n.1 24575.969622: cpu_idle: state=4294967295 cpu_id=3
110501          <idle>-0     (-----) [003] d..2 24575.969633: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
110502        DispSync-23904 (23896) [002] d..2 24575.969648: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
110503          <idle>-0     (-----) [002] d..1 24575.969660: cpu_idle: state=0 cpu_id=2
110504  appEventThread-23905 (23896) [003] d..3 24575.969675: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
110505  appEventThread-23905 (23896) [003] d..4 24575.969700: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
110506          <idle>-0     (-----) [000] .n.1 24575.969706: cpu_idle: state=4294967295 cpu_id=0
110507          <idle>-0     (-----) [000] d..2 24575.969717: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
110508  appEventThread-23905 (23896) [003] d..2 24575.969736: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110509          <idle>-0     (-----) [003] d..1 24575.969750: cpu_idle: state=0 cpu_id=3
110510 s.nexuslauncher-24827 (24827) [000] .... 24575.970074: binder_transaction: transaction=1671497 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
110511 s.nexuslauncher-24827 (24827) [000] d..4 24575.970085: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
110512 s.nexuslauncher-24827 (24827) [000] d..5 24575.970118: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
110513          <idle>-0     (-----) [001] .n.1 24575.970124: cpu_idle: state=4294967295 cpu_id=1
110514          <idle>-0     (-----) [001] d..2 24575.970140: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
110515  Binder:23896_5-25989 (23896) [001] .... 24575.970149: binder_transaction_received: transaction=1671497
110516 s.nexuslauncher-24827 (24827) [000] d..3 24575.970157: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
110517  Binder:23896_5-25989 (23896) [001] d..1 24575.970181: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
110518 s.nexuslauncher-24827 (24827) [000] d..4 24575.970183: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
110519          <idle>-0     (-----) [002] .n.1 24575.970189: cpu_idle: state=4294967295 cpu_id=2
110520          <idle>-0     (-----) [002] d..2 24575.970201: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
110521  Binder:23896_5-25989 (23896) [001] d..2 24575.970201: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
110522          <idle>-0     (-----) [003] .n.1 24575.970207: cpu_idle: state=4294967295 cpu_id=3
110523          <idle>-0     (-----) [003] d..2 24575.970216: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
110524  Binder:23896_5-25989 (23896) [001] d..2 24575.970246: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110525  appEventThread-23905 (23896) [003] d..2 24575.970254: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110526    RenderThread-25194 (24827) [002] d..2 24575.970258: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
110527          <idle>-0     (-----) [001] d..1 24575.970262: cpu_idle: state=0 cpu_id=1
110528          <idle>-0     (-----) [003] d..1 24575.970265: cpu_idle: state=0 cpu_id=3
110529          <idle>-0     (-----) [002] d..1 24575.970270: cpu_idle: state=0 cpu_id=2
110530 s.nexuslauncher-24827 (24827) [000] d..3 24575.970555: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
110531 s.nexuslauncher-24827 (24827) [000] d..4 24575.970589: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
110532          <idle>-0     (-----) [001] .n.1 24575.970595: cpu_idle: state=4294967295 cpu_id=1
110533          <idle>-0     (-----) [001] d..2 24575.970608: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
110534 s.nexuslauncher-24827 (24827) [000] d..2 24575.970624: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110535          <idle>-0     (-----) [000] d..1 24575.970643: cpu_idle: state=0 cpu_id=0
110536    RenderThread-25194 (24827) [001] d..1 24575.970839: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
110537    RenderThread-25194 (24827) [001] d..2 24575.970861: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
110538          <idle>-0     (-----) [000] .n.1 24575.970868: cpu_idle: state=4294967295 cpu_id=0
110539          <idle>-0     (-----) [000] d..2 24575.970881: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
110540    RenderThread-25194 (24827) [001] .... 24575.970975: binder_transaction: transaction=1671498 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
110541    RenderThread-25194 (24827) [001] ...2 24575.970985: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
110542    RenderThread-25194 (24827) [001] d..4 24575.970991: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
110543    RenderThread-25194 (24827) [001] dn.5 24575.971006: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
110544    RenderThread-25194 (24827) [001] d..2 24575.971017: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
110545  Binder:23896_5-25989 (23896) [001] .... 24575.971025: binder_transaction_received: transaction=1671498
110546 s.nexuslauncher-24827 (24827) [000] d..2 24575.971039: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110547          <idle>-0     (-----) [000] d..1 24575.971053: cpu_idle: state=0 cpu_id=0
110548  Binder:23896_5-25989 (23896) [001] d..2 24575.971069: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
110549    RenderThread-25194 (24827) [001] d..2 24575.971100: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110550          <idle>-0     (-----) [001] d..1 24575.971119: cpu_idle: state=0 cpu_id=1
110551          <idle>-0     (-----) [002] d.h2 24575.973543: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
110552          <idle>-0     (-----) [002] dnh3 24575.973557: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
110553          <idle>-0     (-----) [002] .n.1 24575.973566: cpu_idle: state=4294967295 cpu_id=2
110554          <idle>-0     (-----) [002] d..2 24575.973577: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
110555        DispSync-23904 (23896) [002] d..1 24575.973594: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
110556        DispSync-23904 (23896) [002] d..2 24575.973612: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
110557          <idle>-0     (-----) [003] .n.1 24575.973614: cpu_idle: state=4294967295 cpu_id=3
110558          <idle>-0     (-----) [003] d..2 24575.973625: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
110559        DispSync-23904 (23896) [002] d..2 24575.973640: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
110560          <idle>-0     (-----) [002] d..1 24575.973652: cpu_idle: state=0 cpu_id=2
110561   sfEventThread-23906 (23896) [003] d..3 24575.973655: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
110562   sfEventThread-23906 (23896) [003] d..4 24575.973675: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
110563          <idle>-0     (-----) [001] .n.1 24575.973680: cpu_idle: state=4294967295 cpu_id=1
110564          <idle>-0     (-----) [001] d..2 24575.973692: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
110565   sfEventThread-23906 (23896) [003] d..2 24575.973704: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110566          <idle>-0     (-----) [003] d..1 24575.973717: cpu_idle: state=0 cpu_id=3
110567  surfaceflinger-23896 (23896) [001] d..1 24575.973870: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
110568  surfaceflinger-23896 (23896) [001] d..2 24575.973902: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
110569          <idle>-0     (-----) [000] .n.1 24575.973908: cpu_idle: state=4294967295 cpu_id=0
110570          <idle>-0     (-----) [000] d..2 24575.973919: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
110571  Binder:23896_5-25989 (23896) [000] d..2 24575.973954: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110572          <idle>-0     (-----) [000] d..1 24575.973964: cpu_idle: state=0 cpu_id=0
110573  surfaceflinger-23896 (23896) [001] d..1 24575.974058: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
110574  surfaceflinger-23896 (23896) [001] d..2 24575.974079: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
110575          <idle>-0     (-----) [003] .n.1 24575.974085: cpu_idle: state=4294967295 cpu_id=3
110576          <idle>-0     (-----) [003] d..2 24575.974094: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
110577   sfEventThread-23906 (23896) [003] d..2 24575.974124: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110578          <idle>-0     (-----) [003] d..1 24575.974134: cpu_idle: state=0 cpu_id=3
110579          <idle>-0     (-----) [000] d.s2 24575.974240: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
110580  surfaceflinger-23896 (23896) [001] d.s2 24575.974250: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
110581          <idle>-0     (-----) [000] dns3 24575.974262: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
110582          <idle>-0     (-----) [000] .n.1 24575.974273: cpu_idle: state=4294967295 cpu_id=0
110583          <idle>-0     (-----) [000] d..2 24575.974282: 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
110584     rcu_preempt-7     (    7) [000] d..2 24575.974292: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
110585  surfaceflinger-23896 (23896) [001] d.s3 24575.974300: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
110586  surfaceflinger-23896 (23896) [001] d.s2 24575.974313: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
110587  surfaceflinger-23896 (23896) [001] d.s3 24575.974332: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
110588     rcu_preempt-7     (    7) [000] d..3 24575.974349: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
110589     rcu_preempt-7     (    7) [000] d..2 24575.974363: 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
110590  surfaceflinger-23896 (23896) [001] ...1 24575.974441: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
110591  surfaceflinger-23896 (23896) [001] ...1 24575.974448: tracing_mark_write: E|23896
110592  surfaceflinger-23896 (23896) [001] .... 24575.974500: binder_transaction: transaction=1671499 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
110593  surfaceflinger-23896 (23896) [001] ...2 24575.974527: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
110594  surfaceflinger-23896 (23896) [001] d..4 24575.974533: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
110595  surfaceflinger-23896 (23896) [001] d..5 24575.974552: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
110596          <idle>-0     (-----) [002] .n.1 24575.974558: cpu_idle: state=4294967295 cpu_id=2
110597          <idle>-0     (-----) [002] d..2 24575.974570: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
110598  surfaceflinger-23896 (23896) [001] d..2 24575.974574: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
110599  HwBinder:598_3-633   (  598) [002] .... 24575.974581: binder_transaction_received: transaction=1671499
110600     kworker/1:1-13091 (13091) [001] d..2 24575.974609: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
110601         rcuop/0-10    (   10) [001] d..2 24575.974615: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
110602  kworker/u16:10-23868 (23868) [000] d..2 24575.974616: 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
110603  HwBinder:598_3-633   (  598) [002] ...1 24575.974626: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
110604          <idle>-0     (-----) [000] d..1 24575.974634: cpu_idle: state=0 cpu_id=0
110605          <idle>-0     (-----) [000] .n.1 24575.974639: cpu_idle: state=4294967295 cpu_id=0
110606         rcuop/0-10    (   10) [001] d..3 24575.974639: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
110607         rcuop/0-10    (   10) [001] d..2 24575.974643: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
110608          <idle>-0     (-----) [003] d.s3 24575.974655: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
110609          <idle>-0     (-----) [000] d..2 24575.974656: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
110610         rcuop/0-10    (   10) [001] d..3 24575.974663: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
110611         rcuop/1-21    (   21) [000] d..2 24575.974679: 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
110612         rcuop/0-10    (   10) [001] d..2 24575.974690: 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
110613          <idle>-0     (-----) [003] d.s4 24575.974701: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
110614          <idle>-0     (-----) [003] dns4 24575.974707: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
110615          <idle>-0     (-----) [001] d..1 24575.974707: cpu_idle: state=0 cpu_id=1
110616     rcu_preempt-7     (    7) [000] d..2 24575.974710: 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
110617          <idle>-0     (-----) [003] .n.1 24575.974715: cpu_idle: state=4294967295 cpu_id=3
110618          <idle>-0     (-----) [000] d..1 24575.974721: cpu_idle: state=0 cpu_id=0
110619          <idle>-0     (-----) [003] d..2 24575.974727: 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
110620  HwBinder:598_3-633   (  598) [002] ...1 24575.974738: tracing_mark_write: B|598|HWCSession::PresentDisplay::
110621  kworker/u16:10-23868 (23868) [003] .... 24575.974828: clk_set_rate: l3_cluster0_vote_clk 300000000
110622  kworker/u16:10-23868 (23868) [003] .... 24575.974835: clk_set_rate: l3_clk 300000000
110623  kworker/u16:10-23868 (23868) [003] d..2 24575.974897: 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
110624          <idle>-0     (-----) [003] d..1 24575.974912: cpu_idle: state=0 cpu_id=3
110625  HwBinder:598_3-633   (  598) [002] ...1 24575.974955: tracing_mark_write: B|598|HWDeviceDRM::Commit::
110626  HwBinder:598_3-633   (  598) [002] ...1 24575.974970: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
110627  HwBinder:598_3-633   (  598) [002] d..2 24575.975620: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
110628  HwBinder:598_3-633   (  598) [002] d..3 24575.975648: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
110629          <idle>-0     (-----) [003] .n.1 24575.975654: cpu_idle: state=4294967295 cpu_id=3
110630          <idle>-0     (-----) [003] d..2 24575.975665: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
110631  HwBinder:598_3-633   (  598) [002] ...1 24575.975769: tracing_mark_write: E|598
110632  HwBinder:598_3-633   (  598) [002] ...1 24575.975776: tracing_mark_write: E|598
110633  HwBinder:598_3-633   (  598) [002] ...1 24575.975852: tracing_mark_write: E|598
110634  HwBinder:598_3-633   (  598) [002] ...1 24575.975914: tracing_mark_write: E|598
110635  HwBinder:598_3-633   (  598) [002] .... 24575.975932: binder_transaction: transaction=1671500 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
110636  HwBinder:598_3-633   (  598) [002] d..2 24575.975959: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
110637  HwBinder:598_3-633   (  598) [002] d..3 24575.975981: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
110638  HwBinder:598_3-633   (  598) [002] .... 24575.975987: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
110639          <idle>-0     (-----) [001] .n.1 24575.975988: cpu_idle: state=4294967295 cpu_id=1
110640          <idle>-0     (-----) [001] d..2 24575.976001: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
110641  surfaceflinger-23896 (23896) [001] .... 24575.976013: binder_transaction_received: transaction=1671500
110642  HwBinder:598_3-633   (  598) [002] d..2 24575.976088: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
110643          <idle>-0     (-----) [002] d..1 24575.976110: cpu_idle: state=0 cpu_id=2
110644  surfaceflinger-23896 (23896) [001] d..1 24575.976293: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
110645  surfaceflinger-23896 (23896) [001] d..2 24575.976321: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
110646          <idle>-0     (-----) [000] .n.1 24575.976325: cpu_idle: state=4294967295 cpu_id=0
110647          <idle>-0     (-----) [000] d..2 24575.976337: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
110648  Binder:23896_5-25989 (23896) [000] .... 24575.976403: binder_transaction: transaction=1671501 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
110649  Binder:23896_5-25989 (23896) [000] d..2 24575.976419: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
110650  Binder:23896_5-25989 (23896) [000] d..3 24575.976446: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
110651  Binder:23896_5-25989 (23896) [000] .... 24575.976451: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
110652  surfaceflinger-23896 (23896) [001] d..2 24575.976515: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110653  Binder:23896_5-25989 (23896) [000] d..2 24575.976516: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
110654 crtc_commit:111-253   (  253) [003] d..2 24575.976523: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
110655    RenderThread-25194 (24827) [000] .... 24575.976526: binder_transaction_received: transaction=1671501
110656          <idle>-0     (-----) [001] d..1 24575.976537: cpu_idle: state=0 cpu_id=1
110657          <idle>-0     (-----) [003] d..1 24575.976543: cpu_idle: state=0 cpu_id=3
110658    RenderThread-25194 (24827) [000] d.H2 24575.977705: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
110659    RenderThread-25194 (24827) [000] d.H2 24575.977726: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
110660          <idle>-0     (-----) [006] dnh2 24575.977731: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
110661          <idle>-0     (-----) [006] .n.1 24575.977735: cpu_idle: state=4294967295 cpu_id=6
110662          <idle>-0     (-----) [006] d..2 24575.977740: 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
110663    RenderThread-25194 (24827) [000] d.H3 24575.977744: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
110664          <idle>-0     (-----) [002] .n.1 24575.977752: cpu_idle: state=4294967295 cpu_id=2
110665         sugov:4-560   (  560) [006] d..2 24575.977753: 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
110666          <idle>-0     (-----) [006] d..1 24575.977760: cpu_idle: state=0 cpu_id=6
110667          <idle>-0     (-----) [002] d..2 24575.977767: 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
110668         sugov:0-559   (  559) [002] d..2 24575.977799: 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
110669          <idle>-0     (-----) [002] d..1 24575.977809: cpu_idle: state=0 cpu_id=2
110670          <idle>-0     (-----) [003] ...1 24575.978064: cpu_idle: state=4294967295 cpu_id=3
110671          <idle>-0     (-----) [003] d..1 24575.978069: cpu_idle: state=0 cpu_id=3
110672          <idle>-0     (-----) [006] ...1 24575.978774: cpu_idle: state=4294967295 cpu_id=6
110673          <idle>-0     (-----) [006] d..1 24575.978777: cpu_idle: state=0 cpu_id=6
110674    RenderThread-25194 (24827) [000] .... 24575.979689: binder_transaction: transaction=1671502 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
110675    RenderThread-25194 (24827) [000] ...2 24575.979706: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
110676    RenderThread-25194 (24827) [000] d..4 24575.979711: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
110677    RenderThread-25194 (24827) [000] dn.5 24575.979735: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
110678    RenderThread-25194 (24827) [000] d..2 24575.979748: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
110679  Binder:23896_5-25989 (23896) [000] .... 24575.979758: binder_transaction_received: transaction=1671502
110680  Binder:23896_5-25989 (23896) [000] .... 24575.979924: binder_transaction: transaction=1671503 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
110681  Binder:23896_5-25989 (23896) [000] .... 24575.979935: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
110682  Binder:23896_5-25989 (23896) [000] d..2 24575.979997: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
110683    RenderThread-25194 (24827) [000] .... 24575.980008: binder_transaction_received: transaction=1671503
110684    RenderThread-25194 (24827) [000] d..2 24575.980120: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110685          <idle>-0     (-----) [000] d..1 24575.980137: cpu_idle: state=0 cpu_id=0
110686          <idle>-0     (-----) [000] d.s2 24575.980920: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
110687          <idle>-0     (-----) [000] dns3 24575.980943: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
110688          <idle>-0     (-----) [000] dns3 24575.980950: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
110689          <idle>-0     (-----) [000] dns4 24575.980987: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
110690          <idle>-0     (-----) [000] .n.1 24575.981006: cpu_idle: state=4294967295 cpu_id=0
110691          <idle>-0     (-----) [000] d..2 24575.981017: 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
110692     rcu_preempt-7     (    7) [000] d..2 24575.981031: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
110693     rcu_preempt-7     (    7) [000] d..3 24575.981065: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
110694     rcu_preempt-7     (    7) [000] d..2 24575.981077: 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
110695         rcuop/0-10    (   10) [000] d..2 24575.981082: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
110696         rcuop/0-10    (   10) [000] d..3 24575.981096: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
110697         rcuop/0-10    (   10) [000] d..2 24575.981099: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
110698         rcuop/0-10    (   10) [000] d..3 24575.981111: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
110699         rcuop/0-10    (   10) [000] d..2 24575.981119: 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
110700         rcuop/1-21    (   21) [000] d..2 24575.981133: 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
110701     rcu_preempt-7     (    7) [000] d..2 24575.981144: 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
110702  kworker/u16:10-23868 (23868) [000] d..2 24575.981245: 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
110703          <idle>-0     (-----) [000] d..1 24575.981263: cpu_idle: state=0 cpu_id=0
110704          <idle>-0     (-----) [000] d.h5 24575.981678: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
110705          <idle>-0     (-----) [000] dnh6 24575.981697: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
110706          <idle>-0     (-----) [000] dnh5 24575.981703: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
110707          <idle>-0     (-----) [000] dnh6 24575.981718: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
110708          <idle>-0     (-----) [003] .n.1 24575.981723: cpu_idle: state=4294967295 cpu_id=3
110709          <idle>-0     (-----) [000] .n.1 24575.981735: cpu_idle: state=4294967295 cpu_id=0
110710          <idle>-0     (-----) [003] d..2 24575.981736: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
110711          <idle>-0     (-----) [000] d..2 24575.981748: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
110712  crtc_event:111-254   (  254) [000] d..3 24575.981768: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
110713  crtc_event:111-254   (  254) [000] d..4 24575.981782: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
110714          <idle>-0     (-----) [002] .n.1 24575.981788: cpu_idle: state=4294967295 cpu_id=2
110715          <idle>-0     (-----) [002] d..2 24575.981799: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
110716  crtc_event:111-254   (  254) [000] d..2 24575.981807: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110717          <idle>-0     (-----) [000] d..1 24575.981819: cpu_idle: state=0 cpu_id=0
110718 crtc_commit:111-253   (  253) [003] d..2 24575.981909: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
110719          <idle>-0     (-----) [003] d..1 24575.981918: cpu_idle: state=0 cpu_id=3
110720 kgsl_worker_thr-246   (  246) [002] d..2 24575.982026: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
110721          <idle>-0     (-----) [002] d..1 24575.982036: cpu_idle: state=0 cpu_id=2
110722          <idle>-0     (-----) [002] d.h2 24575.982117: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
110723          <idle>-0     (-----) [002] dnh3 24575.982131: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
110724          <idle>-0     (-----) [002] .n.1 24575.982141: cpu_idle: state=4294967295 cpu_id=2
110725          <idle>-0     (-----) [002] d..2 24575.982151: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
110726 kgsl_worker_thr-246   (  246) [002] d..2 24575.982176: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
110727 kgsl_worker_thr-246   (  246) [002] d..3 24575.982196: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
110728          <idle>-0     (-----) [000] .n.1 24575.982202: cpu_idle: state=4294967295 cpu_id=0
110729          <idle>-0     (-----) [000] d..2 24575.982215: 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
110730 kgsl_worker_thr-246   (  246) [002] d..2 24575.982220: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
110731          <idle>-0     (-----) [002] d..1 24575.982230: cpu_idle: state=0 cpu_id=2
110732  kworker/u16:10-23868 (23868) [000] d..2 24575.982662: 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
110733          <idle>-0     (-----) [000] d..1 24575.982676: cpu_idle: state=0 cpu_id=0
110734          <idle>-0     (-----) [000] d.h3 24575.983748: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
110735          <idle>-0     (-----) [000] d.h4 24575.983767: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
110736          <idle>-0     (-----) [002] .n.1 24575.983773: cpu_idle: state=4294967295 cpu_id=2
110737          <idle>-0     (-----) [002] d..2 24575.983783: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
110738          <idle>-0     (-----) [000] ...1 24575.983784: cpu_idle: state=4294967295 cpu_id=0
110739          <idle>-0     (-----) [000] d..1 24575.983789: cpu_idle: state=0 cpu_id=0
110740 kgsl_worker_thr-246   (  246) [002] d..2 24575.983860: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
110741          <idle>-0     (-----) [002] d..1 24575.983871: cpu_idle: state=0 cpu_id=2
110742          <idle>-0     (-----) [000] d.h5 24575.984002: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
110743          <idle>-0     (-----) [000] d.h6 24575.984018: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
110744          <idle>-0     (-----) [003] .n.1 24575.984025: cpu_idle: state=4294967295 cpu_id=3
110745          <idle>-0     (-----) [000] ...1 24575.984033: cpu_idle: state=4294967295 cpu_id=0
110746          <idle>-0     (-----) [003] d..2 24575.984033: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
110747          <idle>-0     (-----) [000] d..1 24575.984037: cpu_idle: state=0 cpu_id=0
110748 crtc_commit:111-253   (  253) [003] d..2 24575.984122: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110749          <idle>-0     (-----) [003] d..1 24575.984131: cpu_idle: state=0 cpu_id=3
110750          <idle>-0     (-----) [003] d.s3 24575.984249: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
110751          <idle>-0     (-----) [003] d.s4 24575.984268: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
110752          <idle>-0     (-----) [003] d.s3 24575.984275: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
110753          <idle>-0     (-----) [003] dns4 24575.984301: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
110754          <idle>-0     (-----) [003] .n.1 24575.984322: cpu_idle: state=4294967295 cpu_id=3
110755          <idle>-0     (-----) [000] .n.1 24575.984327: cpu_idle: state=4294967295 cpu_id=0
110756          <idle>-0     (-----) [003] d..2 24575.984336: 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
110757          <idle>-0     (-----) [000] d..2 24575.984341: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
110758  crtc_event:111-254   (  254) [000] d..2 24575.984399: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110759          <idle>-0     (-----) [000] d..1 24575.984418: cpu_idle: state=0 cpu_id=0
110760  kworker/u16:10-23868 (23868) [003] .... 24575.984431: clk_set_rate: l3_cluster0_vote_clk 480000000
110761  kworker/u16:10-23868 (23868) [003] .... 24575.984439: clk_set_rate: l3_clk 480000000
110762  kworker/u16:10-23868 (23868) [003] d..2 24575.984740: 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
110763          <idle>-0     (-----) [003] d..1 24575.984755: cpu_idle: state=0 cpu_id=3
110764          <idle>-0     (-----) [003] d.s3 24575.985223: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
110765          <idle>-0     (-----) [003] d.s4 24575.985237: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
110766          <idle>-0     (-----) [003] dns4 24575.985243: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
110767          <idle>-0     (-----) [003] .n.1 24575.985251: cpu_idle: state=4294967295 cpu_id=3
110768          <idle>-0     (-----) [003] d..2 24575.985263: 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
110769  kworker/u16:10-23868 (23868) [003] d..2 24575.985293: 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
110770          <idle>-0     (-----) [003] d..1 24575.985304: cpu_idle: state=0 cpu_id=3
110771          <idle>-0     (-----) [002] d.h2 24575.986001: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
110772          <idle>-0     (-----) [002] dnh3 24575.986015: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
110773          <idle>-0     (-----) [002] .n.1 24575.986023: cpu_idle: state=4294967295 cpu_id=2
110774          <idle>-0     (-----) [002] d..2 24575.986033: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
110775        DispSync-23904 (23896) [002] d..1 24575.986056: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
110776        DispSync-23904 (23896) [002] d..2 24575.986072: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
110777          <idle>-0     (-----) [003] .n.1 24575.986078: cpu_idle: state=4294967295 cpu_id=3
110778          <idle>-0     (-----) [003] d..2 24575.986088: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
110779        DispSync-23904 (23896) [002] d..2 24575.986103: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
110780          <idle>-0     (-----) [002] d..1 24575.986114: cpu_idle: state=0 cpu_id=2
110781  appEventThread-23905 (23896) [003] d..3 24575.986136: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
110782  appEventThread-23905 (23896) [003] d..4 24575.986160: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
110783          <idle>-0     (-----) [000] .n.1 24575.986165: cpu_idle: state=4294967295 cpu_id=0
110784          <idle>-0     (-----) [000] d..2 24575.986176: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
110785  appEventThread-23905 (23896) [003] d..2 24575.986196: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110786          <idle>-0     (-----) [003] d..1 24575.986209: cpu_idle: state=0 cpu_id=3
110787 s.nexuslauncher-24827 (24827) [000] .... 24575.986562: binder_transaction: transaction=1671504 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
110788 s.nexuslauncher-24827 (24827) [000] d..4 24575.986571: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
110789 s.nexuslauncher-24827 (24827) [000] d..5 24575.986603: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
110790          <idle>-0     (-----) [001] .n.1 24575.986610: cpu_idle: state=4294967295 cpu_id=1
110791          <idle>-0     (-----) [001] d..2 24575.986623: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
110792  Binder:23896_5-25989 (23896) [001] .... 24575.986631: binder_transaction_received: transaction=1671504
110793 s.nexuslauncher-24827 (24827) [000] d..3 24575.986641: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
110794  Binder:23896_5-25989 (23896) [001] d..1 24575.986660: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
110795 s.nexuslauncher-24827 (24827) [000] d..4 24575.986667: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
110796          <idle>-0     (-----) [002] .n.1 24575.986673: cpu_idle: state=4294967295 cpu_id=2
110797  Binder:23896_5-25989 (23896) [001] d..2 24575.986678: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
110798          <idle>-0     (-----) [003] .n.1 24575.986684: cpu_idle: state=4294967295 cpu_id=3
110799          <idle>-0     (-----) [002] d..2 24575.986685: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
110800          <idle>-0     (-----) [003] d..2 24575.986693: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
110801  Binder:23896_5-25989 (23896) [001] d..2 24575.986720: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110802  appEventThread-23905 (23896) [003] d..2 24575.986730: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110803          <idle>-0     (-----) [001] d..1 24575.986734: cpu_idle: state=0 cpu_id=1
110804    RenderThread-25194 (24827) [002] d..2 24575.986741: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
110805          <idle>-0     (-----) [003] d..1 24575.986742: cpu_idle: state=0 cpu_id=3
110806          <idle>-0     (-----) [002] d..1 24575.986752: cpu_idle: state=0 cpu_id=2
110807 s.nexuslauncher-24827 (24827) [000] d..3 24575.987033: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
110808 s.nexuslauncher-24827 (24827) [000] d..4 24575.987064: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
110809          <idle>-0     (-----) [001] .n.1 24575.987070: cpu_idle: state=4294967295 cpu_id=1
110810          <idle>-0     (-----) [001] d..2 24575.987084: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
110811 s.nexuslauncher-24827 (24827) [000] d..2 24575.987099: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110812          <idle>-0     (-----) [000] d..1 24575.987112: cpu_idle: state=0 cpu_id=0
110813    RenderThread-25194 (24827) [001] d..1 24575.987326: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
110814    RenderThread-25194 (24827) [001] d..2 24575.987347: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
110815          <idle>-0     (-----) [000] .n.1 24575.987354: cpu_idle: state=4294967295 cpu_id=0
110816          <idle>-0     (-----) [000] d..2 24575.987365: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
110817    RenderThread-25194 (24827) [001] .... 24575.987411: binder_transaction: transaction=1671505 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
110818    RenderThread-25194 (24827) [001] ...2 24575.987420: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
110819    RenderThread-25194 (24827) [001] d..4 24575.987423: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
110820    RenderThread-25194 (24827) [001] dn.5 24575.987438: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
110821    RenderThread-25194 (24827) [001] d..2 24575.987448: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
110822  Binder:23896_5-25989 (23896) [001] .... 24575.987456: binder_transaction_received: transaction=1671505
110823 s.nexuslauncher-24827 (24827) [000] d..2 24575.987475: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110824          <idle>-0     (-----) [000] d..1 24575.987486: cpu_idle: state=0 cpu_id=0
110825  Binder:23896_5-25989 (23896) [001] d..2 24575.987497: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
110826    RenderThread-25194 (24827) [001] d..2 24575.987525: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110827          <idle>-0     (-----) [001] d..1 24575.987541: cpu_idle: state=0 cpu_id=1
110828          <idle>-0     (-----) [000] d.s2 24575.987576: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
110829          <idle>-0     (-----) [000] dns3 24575.987594: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
110830          <idle>-0     (-----) [000] .n.1 24575.987612: cpu_idle: state=4294967295 cpu_id=0
110831          <idle>-0     (-----) [000] d..2 24575.987622: 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
110832     rcu_preempt-7     (    7) [000] d..2 24575.987634: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
110833     rcu_preempt-7     (    7) [000] d..3 24575.987649: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
110834     rcu_preempt-7     (    7) [000] d..2 24575.987659: 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
110835         rcuop/0-10    (   10) [000] d..2 24575.987665: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
110836         rcuop/0-10    (   10) [000] d..3 24575.987676: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
110837         rcuop/0-10    (   10) [000] d..2 24575.987685: 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
110838         rcuop/1-21    (   21) [000] d..2 24575.987713: 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
110839          <idle>-0     (-----) [000] d..1 24575.987725: cpu_idle: state=0 cpu_id=0
110840          <idle>-0     (-----) [003] ...1 24575.988194: cpu_idle: state=4294967295 cpu_id=3
110841          <idle>-0     (-----) [003] d..1 24575.988198: cpu_idle: state=0 cpu_id=3
110842          <idle>-0     (-----) [002] d.h2 24575.990006: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
110843          <idle>-0     (-----) [002] dnh3 24575.990020: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
110844          <idle>-0     (-----) [002] .n.1 24575.990029: cpu_idle: state=4294967295 cpu_id=2
110845          <idle>-0     (-----) [002] d..2 24575.990039: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
110846        DispSync-23904 (23896) [002] d..1 24575.990057: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
110847        DispSync-23904 (23896) [002] d..2 24575.990073: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
110848          <idle>-0     (-----) [003] .n.1 24575.990078: cpu_idle: state=4294967295 cpu_id=3
110849          <idle>-0     (-----) [003] d..2 24575.990088: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
110850        DispSync-23904 (23896) [002] d..2 24575.990101: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
110851          <idle>-0     (-----) [002] d..1 24575.990112: cpu_idle: state=0 cpu_id=2
110852   sfEventThread-23906 (23896) [003] d..3 24575.990121: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
110853   sfEventThread-23906 (23896) [003] d..4 24575.990142: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
110854          <idle>-0     (-----) [001] .n.1 24575.990148: cpu_idle: state=4294967295 cpu_id=1
110855          <idle>-0     (-----) [001] d..2 24575.990160: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
110856   sfEventThread-23906 (23896) [003] d..2 24575.990169: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110857          <idle>-0     (-----) [003] d..1 24575.990184: cpu_idle: state=0 cpu_id=3
110858  surfaceflinger-23896 (23896) [001] d..1 24575.990371: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
110859  surfaceflinger-23896 (23896) [001] d..2 24575.990402: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
110860          <idle>-0     (-----) [000] .n.1 24575.990408: cpu_idle: state=4294967295 cpu_id=0
110861          <idle>-0     (-----) [000] d..2 24575.990419: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
110862  Binder:23896_5-25989 (23896) [000] d..2 24575.990453: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110863          <idle>-0     (-----) [000] d..1 24575.990464: cpu_idle: state=0 cpu_id=0
110864          <idle>-0     (-----) [000] d.h2 24575.990508: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
110865          <idle>-0     (-----) [000] dnh3 24575.990520: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
110866          <idle>-0     (-----) [000] .n.1 24575.990527: cpu_idle: state=4294967295 cpu_id=0
110867          <idle>-0     (-----) [000] d..2 24575.990538: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
110868  surfaceflinger-23896 (23896) [001] d..2 24575.990555: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
110869  surfaceflinger-23896 (23896) [001] d..3 24575.990581: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
110870 s.nexuslauncher-24827 (24827) [000] d..2 24575.990603: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
110871         rcuop/0-10    (   10) [000] d..2 24575.990609: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
110872  surfaceflinger-23896 (23896) [001] d..1 24575.990610: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
110873         rcuop/0-10    (   10) [000] d..3 24575.990625: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
110874  surfaceflinger-23896 (23896) [001] d..2 24575.990627: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
110875          <idle>-0     (-----) [003] .n.1 24575.990633: cpu_idle: state=4294967295 cpu_id=3
110876         rcuop/0-10    (   10) [000] d..2 24575.990636: 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
110877          <idle>-0     (-----) [003] d..2 24575.990642: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
110878     rcu_preempt-7     (    7) [000] d..2 24575.990657: 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
110879          <idle>-0     (-----) [000] d..1 24575.990670: cpu_idle: state=0 cpu_id=0
110880   sfEventThread-23906 (23896) [003] d..2 24575.990673: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110881          <idle>-0     (-----) [003] d..1 24575.990684: cpu_idle: state=0 cpu_id=3
110882  surfaceflinger-23896 (23896) [001] ...1 24575.990825: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
110883  surfaceflinger-23896 (23896) [001] ...1 24575.990833: tracing_mark_write: E|23896
110884  surfaceflinger-23896 (23896) [001] .... 24575.990940: binder_transaction: transaction=1671506 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
110885  surfaceflinger-23896 (23896) [001] ...2 24575.990972: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
110886  surfaceflinger-23896 (23896) [001] d..4 24575.990981: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
110887  surfaceflinger-23896 (23896) [001] d..5 24575.991001: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
110888          <idle>-0     (-----) [002] .n.1 24575.991006: cpu_idle: state=4294967295 cpu_id=2
110889          <idle>-0     (-----) [002] d..2 24575.991017: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
110890  HwBinder:598_3-633   (  598) [002] .... 24575.991027: binder_transaction_received: transaction=1671506
110891  surfaceflinger-23896 (23896) [001] d..2 24575.991037: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110892          <idle>-0     (-----) [001] d..1 24575.991053: cpu_idle: state=0 cpu_id=1
110893  HwBinder:598_3-633   (  598) [002] ...1 24575.991076: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
110894  HwBinder:598_3-633   (  598) [002] ...1 24575.991230: tracing_mark_write: B|598|HWCSession::PresentDisplay::
110895  HwBinder:598_3-633   (  598) [002] ...1 24575.991443: tracing_mark_write: B|598|HWDeviceDRM::Commit::
110896  HwBinder:598_3-633   (  598) [002] ...1 24575.991457: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
110897  HwBinder:598_3-633   (  598) [002] d..2 24575.992140: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
110898  HwBinder:598_3-633   (  598) [002] d..3 24575.992166: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
110899          <idle>-0     (-----) [003] .n.1 24575.992171: cpu_idle: state=4294967295 cpu_id=3
110900          <idle>-0     (-----) [003] d..2 24575.992181: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
110901  HwBinder:598_3-633   (  598) [002] ...1 24575.992272: tracing_mark_write: E|598
110902  HwBinder:598_3-633   (  598) [002] ...1 24575.992278: tracing_mark_write: E|598
110903  HwBinder:598_3-633   (  598) [002] ...1 24575.992348: tracing_mark_write: E|598
110904  HwBinder:598_3-633   (  598) [002] ...1 24575.992403: tracing_mark_write: E|598
110905  HwBinder:598_3-633   (  598) [002] .... 24575.992417: binder_transaction: transaction=1671507 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
110906  HwBinder:598_3-633   (  598) [002] d..2 24575.992442: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
110907  HwBinder:598_3-633   (  598) [002] d..3 24575.992462: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
110908  HwBinder:598_3-633   (  598) [002] .... 24575.992466: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
110909          <idle>-0     (-----) [001] .n.1 24575.992468: cpu_idle: state=4294967295 cpu_id=1
110910          <idle>-0     (-----) [001] d..2 24575.992478: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
110911  surfaceflinger-23896 (23896) [001] .... 24575.992486: binder_transaction_received: transaction=1671507
110912  HwBinder:598_3-633   (  598) [002] d..2 24575.992556: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
110913          <idle>-0     (-----) [002] d..1 24575.992573: cpu_idle: state=0 cpu_id=2
110914  surfaceflinger-23896 (23896) [001] d..1 24575.992735: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
110915  surfaceflinger-23896 (23896) [001] d..2 24575.992758: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
110916          <idle>-0     (-----) [000] .n.1 24575.992764: cpu_idle: state=4294967295 cpu_id=0
110917          <idle>-0     (-----) [000] d..2 24575.992777: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
110918  Binder:23896_5-25989 (23896) [000] .... 24575.992832: binder_transaction: transaction=1671508 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
110919  Binder:23896_5-25989 (23896) [000] d..2 24575.992845: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
110920  Binder:23896_5-25989 (23896) [000] d..3 24575.992867: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
110921  Binder:23896_5-25989 (23896) [000] .... 24575.992871: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
110922  surfaceflinger-23896 (23896) [001] d..2 24575.992919: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110923  Binder:23896_5-25989 (23896) [000] d..2 24575.992925: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
110924    RenderThread-25194 (24827) [000] .... 24575.992933: binder_transaction_received: transaction=1671508
110925          <idle>-0     (-----) [001] d..1 24575.992937: cpu_idle: state=0 cpu_id=1
110926 crtc_commit:111-253   (  253) [003] d..2 24575.992992: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
110927          <idle>-0     (-----) [003] d..1 24575.993007: cpu_idle: state=0 cpu_id=3
110928    RenderThread-25194 (24827) [000] d.s2 24575.994251: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
110929    RenderThread-25194 (24827) [000] dns3 24575.994273: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
110930    RenderThread-25194 (24827) [000] dns3 24575.994279: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
110931    RenderThread-25194 (24827) [000] dns4 24575.994318: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
110932          <idle>-0     (-----) [001] .n.1 24575.994325: cpu_idle: state=4294967295 cpu_id=1
110933    RenderThread-25194 (24827) [000] d..2 24575.994339: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
110934          <idle>-0     (-----) [001] d..2 24575.994341: 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
110935     rcu_preempt-7     (    7) [000] d..2 24575.994358: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
110936  kworker/u16:10-23868 (23868) [001] .... 24575.994480: clk_set_rate: l3_cluster0_vote_clk 403200000
110937  kworker/u16:10-23868 (23868) [001] .... 24575.994486: clk_set_rate: l3_clk 403200000
110938  kworker/u16:10-23868 (23868) [001] d..2 24575.994547: 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
110939          <idle>-0     (-----) [001] d..1 24575.994562: cpu_idle: state=0 cpu_id=1
110940          <idle>-0     (-----) [003] ...1 24575.994815: cpu_idle: state=4294967295 cpu_id=3
110941          <idle>-0     (-----) [003] d..1 24575.994820: cpu_idle: state=0 cpu_id=3
110942    RenderThread-25194 (24827) [000] .... 24575.995511: binder_transaction: transaction=1671509 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
110943    RenderThread-25194 (24827) [000] ...2 24575.995526: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
110944    RenderThread-25194 (24827) [000] d..4 24575.995530: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
110945    RenderThread-25194 (24827) [000] dn.5 24575.995550: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
110946    RenderThread-25194 (24827) [000] d..2 24575.995561: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
110947  Binder:23896_5-25989 (23896) [000] .... 24575.995570: binder_transaction_received: transaction=1671509
110948  Binder:23896_5-25989 (23896) [000] .... 24575.995733: binder_transaction: transaction=1671510 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
110949  Binder:23896_5-25989 (23896) [000] .... 24575.995742: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
110950  Binder:23896_5-25989 (23896) [000] d..2 24575.995801: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
110951    RenderThread-25194 (24827) [000] .... 24575.995812: binder_transaction_received: transaction=1671510
110952    RenderThread-25194 (24827) [000] d..2 24575.995922: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110953          <idle>-0     (-----) [000] d..1 24575.995940: cpu_idle: state=0 cpu_id=0
110954          <idle>-0     (-----) [000] d.h5 24575.998157: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
110955          <idle>-0     (-----) [000] dnh6 24575.998180: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
110956          <idle>-0     (-----) [000] dnh5 24575.998187: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
110957          <idle>-0     (-----) [000] dnh6 24575.998202: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
110958          <idle>-0     (-----) [003] .n.1 24575.998207: cpu_idle: state=4294967295 cpu_id=3
110959          <idle>-0     (-----) [003] d..2 24575.998219: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
110960          <idle>-0     (-----) [000] dnh3 24575.998314: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
110961 crtc_commit:111-253   (  253) [003] d..2 24575.998320: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
110962          <idle>-0     (-----) [003] d..2 24575.998325: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
110963          <idle>-0     (-----) [000] dnh3 24575.998329: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
110964          <idle>-0     (-----) [006] dnh2 24575.998335: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
110965          <idle>-0     (-----) [006] .n.1 24575.998339: cpu_idle: state=4294967295 cpu_id=6
110966          <idle>-0     (-----) [003] dn.3 24575.998340: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
110967          <idle>-0     (-----) [000] dnh4 24575.998343: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
110968          <idle>-0     (-----) [006] d..2 24575.998344: 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
110969          <idle>-0     (-----) [002] .n.1 24575.998351: cpu_idle: state=4294967295 cpu_id=2
110970          <idle>-0     (-----) [000] .n.1 24575.998351: cpu_idle: state=4294967295 cpu_id=0
110971          <idle>-0     (-----) [003] d..2 24575.998352: 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
110972         sugov:4-560   (  560) [006] d..2 24575.998356: 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
110973          <idle>-0     (-----) [006] d..1 24575.998362: cpu_idle: state=0 cpu_id=6
110974          <idle>-0     (-----) [000] d..2 24575.998364: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
110975     ksoftirqd/3-34    (   34) [003] d.s2 24575.998365: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
110976          <idle>-0     (-----) [002] d..2 24575.998366: 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
110977  crtc_event:111-254   (  254) [000] d..3 24575.998381: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
110978     ksoftirqd/3-34    (   34) [003] d.s3 24575.998410: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
110979  crtc_event:111-254   (  254) [000] d..4 24575.998410: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
110980         sugov:0-559   (  559) [002] .... 24575.998413: clk_set_rate: pwrcl_clk 1056000000
110981          <idle>-0     (-----) [001] .n.1 24575.998415: cpu_idle: state=4294967295 cpu_id=1
110982  crtc_event:111-254   (  254) [000] d..2 24575.998415: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
110983     ksoftirqd/3-34    (   34) [003] d..2 24575.998422: 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
110984         sugov:0-559   (  559) [002] .... 24575.998425: clk_set_rate: cpu3_pwrcl_clk 979200000
110985          <idle>-0     (-----) [001] d..2 24575.998427: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
110986  crtc_event:111-254   (  254) [000] d..3 24575.998437: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
110987         sugov:0-559   (  559) [002] .... 24575.998438: clk_set_rate: cpu2_pwrcl_clk 979200000
110988         sugov:0-559   (  559) [002] .... 24575.998447: clk_set_rate: cpu1_pwrcl_clk 979200000
110989         sugov:0-559   (  559) [002] .... 24575.998456: clk_set_rate: cpu0_pwrcl_clk 1056000000
110990  crtc_event:111-254   (  254) [000] d..2 24575.998462: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110991         sugov:0-559   (  559) [002] .... 24575.998468: cpu_frequency: state=1056000 cpu_id=0
110992          <idle>-0     (-----) [000] d..1 24575.998476: cpu_idle: state=0 cpu_id=0
110993  kworker/u16:10-23868 (23868) [003] d..2 24575.998485: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
110994         sugov:0-559   (  559) [002] .... 24575.998503: cpu_frequency: state=1056000 cpu_id=1
110995         sugov:0-559   (  559) [002] .... 24575.998507: cpu_frequency: state=1056000 cpu_id=2
110996         sugov:0-559   (  559) [002] .... 24575.998510: cpu_frequency: state=1056000 cpu_id=3
110997         sugov:0-559   (  559) [002] d..2 24575.998542: 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
110998          <idle>-0     (-----) [002] d..1 24575.998553: cpu_idle: state=0 cpu_id=2
110999 crtc_commit:111-253   (  253) [003] d..2 24575.998573: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
111000  kworker/u16:10-23868 (23868) [003] d..2 24575.998599: 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
111001          <idle>-0     (-----) [003] d..1 24575.998609: cpu_idle: state=0 cpu_id=3
111002 kgsl_worker_thr-246   (  246) [001] d..2 24575.998641: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
111003          <idle>-0     (-----) [001] d..1 24575.998651: cpu_idle: state=0 cpu_id=1
111004          <idle>-0     (-----) [001] d.h2 24575.998733: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
111005          <idle>-0     (-----) [001] dnh3 24575.998746: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
111006          <idle>-0     (-----) [001] .n.1 24575.998756: cpu_idle: state=4294967295 cpu_id=1
111007          <idle>-0     (-----) [001] d..2 24575.998764: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
111008 kgsl_worker_thr-246   (  246) [001] d..2 24575.998788: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
111009 kgsl_worker_thr-246   (  246) [001] d..3 24575.998805: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
111010          <idle>-0     (-----) [003] .n.1 24575.998811: cpu_idle: state=4294967295 cpu_id=3
111011          <idle>-0     (-----) [003] d..2 24575.998820: 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
111012 kgsl_worker_thr-246   (  246) [001] d..2 24575.998827: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111013          <idle>-0     (-----) [001] d..1 24575.998837: cpu_idle: state=0 cpu_id=1
111014  kworker/u16:10-23868 (23868) [003] d..2 24575.999218: 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
111015          <idle>-0     (-----) [003] d..1 24575.999227: cpu_idle: state=0 cpu_id=3
111016          <idle>-0     (-----) [006] ...1 24575.999378: cpu_idle: state=4294967295 cpu_id=6
111017          <idle>-0     (-----) [006] d..1 24575.999381: cpu_idle: state=0 cpu_id=6
111018          <idle>-0     (-----) [000] d.h3 24576.000232: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
111019          <idle>-0     (-----) [000] d.h4 24576.000248: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
111020          <idle>-0     (-----) [001] .n.1 24576.000253: cpu_idle: state=4294967295 cpu_id=1
111021          <idle>-0     (-----) [000] ...1 24576.000262: cpu_idle: state=4294967295 cpu_id=0
111022          <idle>-0     (-----) [001] d..2 24576.000263: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
111023          <idle>-0     (-----) [000] d..1 24576.000267: cpu_idle: state=0 cpu_id=0
111024 kgsl_worker_thr-246   (  246) [001] d..2 24576.000330: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111025          <idle>-0     (-----) [001] d..1 24576.000340: cpu_idle: state=0 cpu_id=1
111026          <idle>-0     (-----) [000] d.h5 24576.000477: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
111027          <idle>-0     (-----) [000] d.h6 24576.000492: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
111028          <idle>-0     (-----) [003] .n.1 24576.000497: cpu_idle: state=4294967295 cpu_id=3
111029          <idle>-0     (-----) [000] ...1 24576.000505: cpu_idle: state=4294967295 cpu_id=0
111030          <idle>-0     (-----) [003] d..2 24576.000505: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
111031          <idle>-0     (-----) [000] d..1 24576.000508: cpu_idle: state=0 cpu_id=0
111032 crtc_commit:111-253   (  253) [003] d..2 24576.000581: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111033          <idle>-0     (-----) [003] d..1 24576.000589: cpu_idle: state=0 cpu_id=3
111034          <idle>-0     (-----) [000] d.h5 24576.000791: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
111035          <idle>-0     (-----) [000] dnh6 24576.000801: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
111036          <idle>-0     (-----) [000] .n.1 24576.000817: cpu_idle: state=4294967295 cpu_id=0
111037          <idle>-0     (-----) [000] d..2 24576.000824: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
111038  crtc_event:111-254   (  254) [000] d..2 24576.000845: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111039          <idle>-0     (-----) [000] d..1 24576.000852: cpu_idle: state=0 cpu_id=0
111040          <idle>-0     (-----) [000] d.s2 24576.000910: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
111041          <idle>-0     (-----) [003] d.s3 24576.000910: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
111042          <idle>-0     (-----) [003] d.s4 24576.000932: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
111043          <idle>-0     (-----) [000] dns3 24576.000939: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
111044          <idle>-0     (-----) [000] .n.1 24576.000956: cpu_idle: state=4294967295 cpu_id=0
111045          <idle>-0     (-----) [003] ...1 24576.000962: cpu_idle: state=4294967295 cpu_id=3
111046          <idle>-0     (-----) [000] d..2 24576.000962: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
111047          <idle>-0     (-----) [003] d..1 24576.000968: cpu_idle: state=0 cpu_id=3
111048  crtc_event:111-254   (  254) [000] d..2 24576.000979: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
111049     rcu_preempt-7     (    7) [000] d..2 24576.000988: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
111050     rcu_preempt-7     (    7) [000] d..3 24576.001004: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
111051     rcu_preempt-7     (    7) [000] d..2 24576.001014: 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
111052         rcuop/0-10    (   10) [000] d..2 24576.001020: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
111053         rcuop/0-10    (   10) [000] d..3 24576.001033: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
111054         rcuop/0-10    (   10) [000] d..2 24576.001036: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
111055         rcuop/0-10    (   10) [000] d..3 24576.001046: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
111056         rcuop/0-10    (   10) [000] d..2 24576.001053: 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
111057         rcuop/1-21    (   21) [000] d..2 24576.001066: 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
111058     rcu_preempt-7     (    7) [000] d..2 24576.001092: 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
111059          <idle>-0     (-----) [000] d..1 24576.001105: cpu_idle: state=0 cpu_id=0
111060          <idle>-0     (-----) [002] d.h2 24576.002462: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
111061          <idle>-0     (-----) [002] dnh3 24576.002479: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
111062          <idle>-0     (-----) [002] .n.1 24576.002487: cpu_idle: state=4294967295 cpu_id=2
111063          <idle>-0     (-----) [002] d..2 24576.002499: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
111064        DispSync-23904 (23896) [002] d..1 24576.002522: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
111065        DispSync-23904 (23896) [002] d..2 24576.002539: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
111066          <idle>-0     (-----) [003] .n.1 24576.002544: cpu_idle: state=4294967295 cpu_id=3
111067          <idle>-0     (-----) [003] d..2 24576.002555: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
111068        DispSync-23904 (23896) [002] d..2 24576.002569: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
111069          <idle>-0     (-----) [002] d..1 24576.002581: cpu_idle: state=0 cpu_id=2
111070  appEventThread-23905 (23896) [003] d..3 24576.002601: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
111071  appEventThread-23905 (23896) [003] d..4 24576.002627: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
111072          <idle>-0     (-----) [000] .n.1 24576.002632: cpu_idle: state=4294967295 cpu_id=0
111073          <idle>-0     (-----) [000] d..2 24576.002645: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
111074  appEventThread-23905 (23896) [003] d..2 24576.002665: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111075          <idle>-0     (-----) [003] d..1 24576.002678: cpu_idle: state=0 cpu_id=3
111076 s.nexuslauncher-24827 (24827) [000] .... 24576.003000: binder_transaction: transaction=1671511 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
111077 s.nexuslauncher-24827 (24827) [000] d..4 24576.003010: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
111078 s.nexuslauncher-24827 (24827) [000] d..5 24576.003044: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
111079          <idle>-0     (-----) [001] .n.1 24576.003048: cpu_idle: state=4294967295 cpu_id=1
111080          <idle>-0     (-----) [001] d..2 24576.003060: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
111081  Binder:23896_5-25989 (23896) [001] .... 24576.003068: binder_transaction_received: transaction=1671511
111082 s.nexuslauncher-24827 (24827) [000] d..3 24576.003081: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
111083  Binder:23896_5-25989 (23896) [001] d..1 24576.003102: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
111084 s.nexuslauncher-24827 (24827) [000] d..4 24576.003107: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
111085          <idle>-0     (-----) [002] .n.1 24576.003113: cpu_idle: state=4294967295 cpu_id=2
111086  Binder:23896_5-25989 (23896) [001] d..2 24576.003120: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
111087          <idle>-0     (-----) [002] d..2 24576.003125: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
111088          <idle>-0     (-----) [003] .n.1 24576.003126: cpu_idle: state=4294967295 cpu_id=3
111089          <idle>-0     (-----) [003] d..2 24576.003136: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
111090  Binder:23896_5-25989 (23896) [001] d..2 24576.003163: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111091  appEventThread-23905 (23896) [003] d..2 24576.003172: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111092          <idle>-0     (-----) [001] d..1 24576.003176: cpu_idle: state=0 cpu_id=1
111093    RenderThread-25194 (24827) [002] d..2 24576.003181: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
111094          <idle>-0     (-----) [003] d..1 24576.003183: cpu_idle: state=0 cpu_id=3
111095          <idle>-0     (-----) [002] d..1 24576.003192: cpu_idle: state=0 cpu_id=2
111096 s.nexuslauncher-24827 (24827) [000] d..3 24576.003597: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
111097 s.nexuslauncher-24827 (24827) [000] d..4 24576.003629: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
111098          <idle>-0     (-----) [001] .n.1 24576.003635: cpu_idle: state=4294967295 cpu_id=1
111099          <idle>-0     (-----) [001] d..2 24576.003648: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
111100 s.nexuslauncher-24827 (24827) [000] d..2 24576.003666: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111101          <idle>-0     (-----) [000] d..1 24576.003684: cpu_idle: state=0 cpu_id=0
111102    RenderThread-25194 (24827) [001] d..1 24576.003873: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
111103    RenderThread-25194 (24827) [001] d..2 24576.003896: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
111104          <idle>-0     (-----) [000] .n.1 24576.003902: cpu_idle: state=4294967295 cpu_id=0
111105          <idle>-0     (-----) [000] d..2 24576.003916: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
111106    RenderThread-25194 (24827) [001] .... 24576.003955: binder_transaction: transaction=1671512 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
111107    RenderThread-25194 (24827) [001] ...2 24576.003964: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
111108    RenderThread-25194 (24827) [001] d..4 24576.003967: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
111109    RenderThread-25194 (24827) [001] dn.5 24576.003983: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
111110    RenderThread-25194 (24827) [001] d..2 24576.003993: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
111111  Binder:23896_5-25989 (23896) [001] .... 24576.004000: binder_transaction_received: transaction=1671512
111112 s.nexuslauncher-24827 (24827) [000] d..2 24576.004025: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111113          <idle>-0     (-----) [000] d..1 24576.004039: cpu_idle: state=0 cpu_id=0
111114  Binder:23896_5-25989 (23896) [001] d..2 24576.004040: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
111115    RenderThread-25194 (24827) [001] d..2 24576.004066: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111116          <idle>-0     (-----) [001] d..1 24576.004083: cpu_idle: state=0 cpu_id=1
111117          <idle>-0     (-----) [003] d..2 24576.004749: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
111118          <idle>-0     (-----) [003] dn.3 24576.004760: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
111119          <idle>-0     (-----) [003] .n.1 24576.004765: cpu_idle: state=4294967295 cpu_id=3
111120          <idle>-0     (-----) [003] d..2 24576.004776: 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
111121     ksoftirqd/3-34    (   34) [003] d.s2 24576.004784: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
111122     ksoftirqd/3-34    (   34) [003] d.s3 24576.004800: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
111123     ksoftirqd/3-34    (   34) [003] d..2 24576.004814: 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
111124  kworker/u16:10-23868 (23868) [003] d..2 24576.004925: 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
111125          <idle>-0     (-----) [003] d..1 24576.004937: cpu_idle: state=0 cpu_id=3
111126          <idle>-0     (-----) [002] d.h2 24576.006466: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
111127          <idle>-0     (-----) [002] dnh3 24576.006479: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
111128          <idle>-0     (-----) [002] .n.1 24576.006488: cpu_idle: state=4294967295 cpu_id=2
111129          <idle>-0     (-----) [002] d..2 24576.006498: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
111130        DispSync-23904 (23896) [002] d..1 24576.006517: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
111131        DispSync-23904 (23896) [002] d..2 24576.006534: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
111132          <idle>-0     (-----) [003] .n.1 24576.006540: cpu_idle: state=4294967295 cpu_id=3
111133          <idle>-0     (-----) [003] d..2 24576.006550: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
111134        DispSync-23904 (23896) [002] d..2 24576.006562: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
111135          <idle>-0     (-----) [002] d..1 24576.006573: cpu_idle: state=0 cpu_id=2
111136   sfEventThread-23906 (23896) [003] d..3 24576.006586: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
111137   sfEventThread-23906 (23896) [003] d..4 24576.006608: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
111138          <idle>-0     (-----) [001] .n.1 24576.006615: cpu_idle: state=4294967295 cpu_id=1
111139          <idle>-0     (-----) [001] d..2 24576.006626: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
111140   sfEventThread-23906 (23896) [003] d..2 24576.006638: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111141          <idle>-0     (-----) [003] d..1 24576.006651: cpu_idle: state=0 cpu_id=3
111142  surfaceflinger-23896 (23896) [001] d..1 24576.006805: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
111143  surfaceflinger-23896 (23896) [001] d..2 24576.006836: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
111144          <idle>-0     (-----) [000] .n.1 24576.006843: cpu_idle: state=4294967295 cpu_id=0
111145          <idle>-0     (-----) [000] d..2 24576.006858: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
111146  Binder:23896_5-25989 (23896) [000] d..2 24576.006893: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111147          <idle>-0     (-----) [000] d..1 24576.006903: cpu_idle: state=0 cpu_id=0
111148  surfaceflinger-23896 (23896) [001] d..1 24576.007008: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
111149  surfaceflinger-23896 (23896) [001] d..2 24576.007030: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
111150          <idle>-0     (-----) [003] .n.1 24576.007037: cpu_idle: state=4294967295 cpu_id=3
111151          <idle>-0     (-----) [003] d..2 24576.007046: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
111152   sfEventThread-23906 (23896) [003] d..2 24576.007078: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111153          <idle>-0     (-----) [003] d..1 24576.007088: cpu_idle: state=0 cpu_id=3
111154  surfaceflinger-23896 (23896) [001] ...1 24576.007230: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
111155  surfaceflinger-23896 (23896) [001] ...1 24576.007243: tracing_mark_write: E|23896
111156  surfaceflinger-23896 (23896) [001] .... 24576.007296: binder_transaction: transaction=1671513 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
111157  surfaceflinger-23896 (23896) [001] ...2 24576.007325: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
111158  surfaceflinger-23896 (23896) [001] d..4 24576.007332: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
111159  surfaceflinger-23896 (23896) [001] d..5 24576.007356: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
111160          <idle>-0     (-----) [002] .n.1 24576.007362: cpu_idle: state=4294967295 cpu_id=2
111161          <idle>-0     (-----) [002] d..2 24576.007372: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
111162  HwBinder:598_3-633   (  598) [002] .... 24576.007382: binder_transaction_received: transaction=1671513
111163  surfaceflinger-23896 (23896) [001] d..2 24576.007387: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111164          <idle>-0     (-----) [001] d..1 24576.007405: cpu_idle: state=0 cpu_id=1
111165  HwBinder:598_3-633   (  598) [002] ...1 24576.007429: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
111166          <idle>-0     (-----) [000] d.s2 24576.007574: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
111167          <idle>-0     (-----) [000] dns3 24576.007593: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
111168          <idle>-0     (-----) [000] .n.1 24576.007610: cpu_idle: state=4294967295 cpu_id=0
111169  HwBinder:598_3-633   (  598) [002] ...1 24576.007618: tracing_mark_write: B|598|HWCSession::PresentDisplay::
111170          <idle>-0     (-----) [000] d..2 24576.007619: 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
111171     rcu_preempt-7     (    7) [000] d..2 24576.007648: 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
111172          <idle>-0     (-----) [000] d..1 24576.007660: cpu_idle: state=0 cpu_id=0
111173  HwBinder:598_3-633   (  598) [002] ...1 24576.007821: tracing_mark_write: B|598|HWDeviceDRM::Commit::
111174  HwBinder:598_3-633   (  598) [002] ...1 24576.007836: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
111175  HwBinder:598_3-633   (  598) [002] d..2 24576.008498: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
111176  HwBinder:598_3-633   (  598) [002] d..3 24576.008524: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
111177          <idle>-0     (-----) [003] .n.1 24576.008529: cpu_idle: state=4294967295 cpu_id=3
111178          <idle>-0     (-----) [003] d..2 24576.008539: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
111179  HwBinder:598_3-633   (  598) [002] ...1 24576.008627: tracing_mark_write: E|598
111180  HwBinder:598_3-633   (  598) [002] ...1 24576.008633: tracing_mark_write: E|598
111181  HwBinder:598_3-633   (  598) [002] ...1 24576.008702: tracing_mark_write: E|598
111182  HwBinder:598_3-633   (  598) [002] ...1 24576.008755: tracing_mark_write: E|598
111183  HwBinder:598_3-633   (  598) [002] .... 24576.008770: binder_transaction: transaction=1671514 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
111184  HwBinder:598_3-633   (  598) [002] d..2 24576.008793: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
111185  HwBinder:598_3-633   (  598) [002] d..3 24576.008812: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
111186  HwBinder:598_3-633   (  598) [002] .... 24576.008817: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
111187          <idle>-0     (-----) [001] .n.1 24576.008819: cpu_idle: state=4294967295 cpu_id=1
111188          <idle>-0     (-----) [001] d..2 24576.008833: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
111189  surfaceflinger-23896 (23896) [001] .... 24576.008841: binder_transaction_received: transaction=1671514
111190  HwBinder:598_3-633   (  598) [002] d..2 24576.008903: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
111191          <idle>-0     (-----) [002] d..1 24576.008922: cpu_idle: state=0 cpu_id=2
111192  surfaceflinger-23896 (23896) [001] d..1 24576.009090: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
111193  surfaceflinger-23896 (23896) [001] d..2 24576.009115: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
111194          <idle>-0     (-----) [000] .n.1 24576.009120: cpu_idle: state=4294967295 cpu_id=0
111195          <idle>-0     (-----) [000] d..2 24576.009131: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
111196  Binder:23896_5-25989 (23896) [000] .... 24576.009195: binder_transaction: transaction=1671515 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
111197  Binder:23896_5-25989 (23896) [000] d..2 24576.009209: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
111198  Binder:23896_5-25989 (23896) [000] d..3 24576.009230: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
111199  Binder:23896_5-25989 (23896) [000] .... 24576.009235: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
111200  surfaceflinger-23896 (23896) [001] d..2 24576.009280: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111201  Binder:23896_5-25989 (23896) [000] d..2 24576.009290: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
111202          <idle>-0     (-----) [001] d..1 24576.009298: cpu_idle: state=0 cpu_id=1
111203    RenderThread-25194 (24827) [000] .... 24576.009299: binder_transaction_received: transaction=1671515
111204 crtc_commit:111-253   (  253) [003] d..2 24576.009351: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
111205          <idle>-0     (-----) [003] d..1 24576.009366: cpu_idle: state=0 cpu_id=3
111206    RenderThread-25194 (24827) [000] .... 24576.011634: binder_transaction: transaction=1671516 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
111207    RenderThread-25194 (24827) [000] ...2 24576.011648: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
111208    RenderThread-25194 (24827) [000] d..4 24576.011652: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
111209    RenderThread-25194 (24827) [000] dn.5 24576.011671: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
111210    RenderThread-25194 (24827) [000] d..2 24576.011681: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
111211  Binder:23896_5-25989 (23896) [000] .... 24576.011690: binder_transaction_received: transaction=1671516
111212  Binder:23896_5-25989 (23896) [000] .... 24576.011845: binder_transaction: transaction=1671517 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
111213  Binder:23896_5-25989 (23896) [000] .... 24576.011853: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
111214  Binder:23896_5-25989 (23896) [000] d..2 24576.011906: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
111215    RenderThread-25194 (24827) [000] .... 24576.011916: binder_transaction_received: transaction=1671517
111216    RenderThread-25194 (24827) [000] d..2 24576.012022: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111217          <idle>-0     (-----) [000] d..1 24576.012037: cpu_idle: state=0 cpu_id=0
111218          <idle>-0     (-----) [000] d.s2 24576.014246: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
111219          <idle>-0     (-----) [000] dns3 24576.014264: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
111220          <idle>-0     (-----) [000] dns3 24576.014269: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
111221          <idle>-0     (-----) [000] dns4 24576.014306: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
111222          <idle>-0     (-----) [000] .n.1 24576.014318: cpu_idle: state=4294967295 cpu_id=0
111223          <idle>-0     (-----) [000] d..2 24576.014328: 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
111224     rcu_preempt-7     (    7) [000] d..2 24576.014337: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
111225     rcu_preempt-7     (    7) [000] d..3 24576.014351: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
111226     rcu_preempt-7     (    7) [000] d..2 24576.014360: 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
111227         rcuop/0-10    (   10) [000] d..2 24576.014364: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
111228         rcuop/0-10    (   10) [000] d..3 24576.014376: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
111229         rcuop/0-10    (   10) [000] d..2 24576.014381: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
111230         rcuop/0-10    (   10) [000] d..3 24576.014392: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
111231         rcuop/0-10    (   10) [000] d..2 24576.014399: 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
111232         rcuop/1-21    (   21) [000] d..2 24576.014413: 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
111233     rcu_preempt-7     (    7) [000] d..2 24576.014425: 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
111234  kworker/u16:10-23868 (23868) [000] d..2 24576.014528: 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
111235          <idle>-0     (-----) [000] d.h6 24576.014633: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
111236          <idle>-0     (-----) [000] dnh7 24576.014649: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
111237          <idle>-0     (-----) [000] dnh6 24576.014655: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
111238          <idle>-0     (-----) [000] dnh7 24576.014668: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
111239          <idle>-0     (-----) [003] .n.1 24576.014675: cpu_idle: state=4294967295 cpu_id=3
111240          <idle>-0     (-----) [003] d..2 24576.014685: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
111241          <idle>-0     (-----) [000] d..2 24576.014687: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
111242  crtc_event:111-254   (  254) [000] d..3 24576.014703: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
111243  crtc_event:111-254   (  254) [000] d..4 24576.014715: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
111244          <idle>-0     (-----) [001] .n.1 24576.014723: cpu_idle: state=4294967295 cpu_id=1
111245          <idle>-0     (-----) [001] d..2 24576.014736: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
111246  crtc_event:111-254   (  254) [000] d..2 24576.014739: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111247          <idle>-0     (-----) [000] d..1 24576.014754: cpu_idle: state=0 cpu_id=0
111248 crtc_commit:111-253   (  253) [003] d..2 24576.014843: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
111249          <idle>-0     (-----) [003] d..1 24576.014852: cpu_idle: state=0 cpu_id=3
111250 kgsl_worker_thr-246   (  246) [001] d..2 24576.014941: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
111251          <idle>-0     (-----) [001] d..1 24576.014951: cpu_idle: state=0 cpu_id=1
111252          <idle>-0     (-----) [001] d.h2 24576.015031: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
111253          <idle>-0     (-----) [001] dnh3 24576.015044: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
111254          <idle>-0     (-----) [001] .n.1 24576.015053: cpu_idle: state=4294967295 cpu_id=1
111255          <idle>-0     (-----) [001] d..2 24576.015062: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
111256 kgsl_worker_thr-246   (  246) [001] d..2 24576.015085: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
111257 kgsl_worker_thr-246   (  246) [001] d..3 24576.015101: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
111258          <idle>-0     (-----) [000] .n.1 24576.015107: cpu_idle: state=4294967295 cpu_id=0
111259          <idle>-0     (-----) [000] d..2 24576.015120: 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
111260 kgsl_worker_thr-246   (  246) [001] d..2 24576.015125: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111261          <idle>-0     (-----) [001] d..1 24576.015135: cpu_idle: state=0 cpu_id=1
111262  kworker/u16:10-23868 (23868) [000] d..2 24576.015515: 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
111263          <idle>-0     (-----) [000] d..1 24576.015527: cpu_idle: state=0 cpu_id=0
111264          <idle>-0     (-----) [000] d.h3 24576.016527: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
111265          <idle>-0     (-----) [000] d.h4 24576.016544: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
111266          <idle>-0     (-----) [001] .n.1 24576.016550: cpu_idle: state=4294967295 cpu_id=1
111267          <idle>-0     (-----) [001] d..2 24576.016559: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
111268          <idle>-0     (-----) [000] ...1 24576.016559: cpu_idle: state=4294967295 cpu_id=0
111269          <idle>-0     (-----) [000] d..1 24576.016563: cpu_idle: state=0 cpu_id=0
111270 kgsl_worker_thr-246   (  246) [001] d..2 24576.016626: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111271          <idle>-0     (-----) [001] d..1 24576.016636: cpu_idle: state=0 cpu_id=1
111272          <idle>-0     (-----) [000] d.h5 24576.016958: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
111273          <idle>-0     (-----) [000] d.h6 24576.016973: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
111274          <idle>-0     (-----) [003] .n.1 24576.016979: cpu_idle: state=4294967295 cpu_id=3
111275          <idle>-0     (-----) [000] ...1 24576.016986: cpu_idle: state=4294967295 cpu_id=0
111276          <idle>-0     (-----) [003] d..2 24576.016987: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
111277          <idle>-0     (-----) [000] d..1 24576.016990: cpu_idle: state=0 cpu_id=0
111278 crtc_commit:111-253   (  253) [003] d..2 24576.017064: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111279          <idle>-0     (-----) [003] d..1 24576.017072: cpu_idle: state=0 cpu_id=3
111280          <idle>-0     (-----) [000] d.h5 24576.017270: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
111281          <idle>-0     (-----) [000] dnh6 24576.017282: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
111282          <idle>-0     (-----) [000] .n.1 24576.017297: cpu_idle: state=4294967295 cpu_id=0
111283          <idle>-0     (-----) [000] d..2 24576.017307: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
111284  crtc_event:111-254   (  254) [000] d..2 24576.017333: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111285          <idle>-0     (-----) [000] d..1 24576.017342: cpu_idle: state=0 cpu_id=0
111286          <idle>-0     (-----) [003] d.H3 24576.017676: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
111287          <idle>-0     (-----) [003] d.s3 24576.017698: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
111288          <idle>-0     (-----) [006] dnh2 24576.017699: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
111289          <idle>-0     (-----) [006] .n.1 24576.017703: cpu_idle: state=4294967295 cpu_id=6
111290          <idle>-0     (-----) [006] d..2 24576.017708: 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
111291          <idle>-0     (-----) [003] d.s4 24576.017713: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
111292          <idle>-0     (-----) [000] .n.1 24576.017718: cpu_idle: state=4294967295 cpu_id=0
111293         sugov:4-560   (  560) [006] d..2 24576.017721: 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
111294          <idle>-0     (-----) [006] d..1 24576.017727: cpu_idle: state=0 cpu_id=6
111295          <idle>-0     (-----) [000] d..2 24576.017729: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
111296          <idle>-0     (-----) [003] ...1 24576.017737: cpu_idle: state=4294967295 cpu_id=3
111297          <idle>-0     (-----) [003] d..1 24576.017744: cpu_idle: state=0 cpu_id=3
111298  crtc_event:111-254   (  254) [000] d..2 24576.017761: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111299          <idle>-0     (-----) [000] d..1 24576.017768: cpu_idle: state=0 cpu_id=0
111300          <idle>-0     (-----) [006] ...1 24576.018742: cpu_idle: state=4294967295 cpu_id=6
111301          <idle>-0     (-----) [006] d..1 24576.018745: cpu_idle: state=0 cpu_id=6
111302          <idle>-0     (-----) [002] d.h2 24576.018927: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
111303          <idle>-0     (-----) [002] dnh3 24576.018943: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
111304          <idle>-0     (-----) [002] .n.1 24576.018951: cpu_idle: state=4294967295 cpu_id=2
111305          <idle>-0     (-----) [002] d..2 24576.018962: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
111306        DispSync-23904 (23896) [002] d..1 24576.018984: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
111307        DispSync-23904 (23896) [002] d..2 24576.019001: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
111308          <idle>-0     (-----) [003] .n.1 24576.019006: cpu_idle: state=4294967295 cpu_id=3
111309          <idle>-0     (-----) [003] d..2 24576.019017: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
111310        DispSync-23904 (23896) [002] d..2 24576.019033: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
111311          <idle>-0     (-----) [002] d..1 24576.019045: cpu_idle: state=0 cpu_id=2
111312  appEventThread-23905 (23896) [003] d..3 24576.019061: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
111313  appEventThread-23905 (23896) [003] d..4 24576.019083: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
111314          <idle>-0     (-----) [000] .n.1 24576.019088: cpu_idle: state=4294967295 cpu_id=0
111315          <idle>-0     (-----) [000] d..2 24576.019098: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
111316  appEventThread-23905 (23896) [003] d..2 24576.019120: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111317          <idle>-0     (-----) [003] d..1 24576.019133: cpu_idle: state=0 cpu_id=3
111318 s.nexuslauncher-24827 (24827) [000] .... 24576.019447: binder_transaction: transaction=1671518 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
111319 s.nexuslauncher-24827 (24827) [000] d..4 24576.019457: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
111320 s.nexuslauncher-24827 (24827) [000] d..5 24576.019491: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
111321          <idle>-0     (-----) [001] .n.1 24576.019495: cpu_idle: state=4294967295 cpu_id=1
111322          <idle>-0     (-----) [001] d..2 24576.019508: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
111323  Binder:23896_5-25989 (23896) [001] .... 24576.019517: binder_transaction_received: transaction=1671518
111324 s.nexuslauncher-24827 (24827) [000] d..3 24576.019527: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
111325  Binder:23896_5-25989 (23896) [001] d..1 24576.019549: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
111326 s.nexuslauncher-24827 (24827) [000] d..4 24576.019553: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
111327          <idle>-0     (-----) [002] .n.1 24576.019559: cpu_idle: state=4294967295 cpu_id=2
111328  Binder:23896_5-25989 (23896) [001] d..2 24576.019567: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
111329          <idle>-0     (-----) [002] d..2 24576.019571: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
111330          <idle>-0     (-----) [003] .n.1 24576.019573: cpu_idle: state=4294967295 cpu_id=3
111331          <idle>-0     (-----) [003] d..2 24576.019583: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
111332  Binder:23896_5-25989 (23896) [001] d..2 24576.019609: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111333  appEventThread-23905 (23896) [003] d..2 24576.019618: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111334          <idle>-0     (-----) [001] d..1 24576.019623: cpu_idle: state=0 cpu_id=1
111335    RenderThread-25194 (24827) [002] d..2 24576.019626: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
111336          <idle>-0     (-----) [003] d..1 24576.019629: cpu_idle: state=0 cpu_id=3
111337          <idle>-0     (-----) [002] d..1 24576.019638: cpu_idle: state=0 cpu_id=2
111338          <idle>-0     (-----) [007] ...1 24576.019793: cpu_idle: state=4294967295 cpu_id=7
111339          <idle>-0     (-----) [007] d..1 24576.019799: cpu_idle: state=0 cpu_id=7
111340 s.nexuslauncher-24827 (24827) [000] d..3 24576.019901: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
111341 s.nexuslauncher-24827 (24827) [000] d..4 24576.019935: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
111342          <idle>-0     (-----) [001] .n.1 24576.019941: cpu_idle: state=4294967295 cpu_id=1
111343          <idle>-0     (-----) [001] d..2 24576.019952: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
111344 s.nexuslauncher-24827 (24827) [000] d..2 24576.019971: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111345          <idle>-0     (-----) [000] d..1 24576.019985: cpu_idle: state=0 cpu_id=0
111346    RenderThread-25194 (24827) [001] d..1 24576.020162: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
111347    RenderThread-25194 (24827) [001] d..2 24576.020184: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
111348          <idle>-0     (-----) [000] .n.1 24576.020191: cpu_idle: state=4294967295 cpu_id=0
111349          <idle>-0     (-----) [000] d..2 24576.020202: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
111350    RenderThread-25194 (24827) [001] .... 24576.020242: binder_transaction: transaction=1671519 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
111351    RenderThread-25194 (24827) [001] ...2 24576.020251: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
111352    RenderThread-25194 (24827) [001] d..4 24576.020254: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
111353    RenderThread-25194 (24827) [001] dn.5 24576.020268: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
111354    RenderThread-25194 (24827) [001] d..2 24576.020278: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
111355  Binder:23896_5-25989 (23896) [001] .... 24576.020285: binder_transaction_received: transaction=1671519
111356 s.nexuslauncher-24827 (24827) [000] d..2 24576.020307: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111357          <idle>-0     (-----) [000] d..1 24576.020318: cpu_idle: state=0 cpu_id=0
111358  Binder:23896_5-25989 (23896) [001] d..2 24576.020329: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
111359    RenderThread-25194 (24827) [001] d..2 24576.020355: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111360          <idle>-0     (-----) [001] d..1 24576.020373: cpu_idle: state=0 cpu_id=1
111361          <idle>-0     (-----) [000] d.s2 24576.020913: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
111362          <idle>-0     (-----) [000] dns3 24576.020933: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
111363          <idle>-0     (-----) [000] .n.1 24576.020952: cpu_idle: state=4294967295 cpu_id=0
111364          <idle>-0     (-----) [000] d..2 24576.020961: 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
111365     rcu_preempt-7     (    7) [000] d..2 24576.020975: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
111366     rcu_preempt-7     (    7) [000] d..3 24576.020991: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
111367     rcu_preempt-7     (    7) [000] d..2 24576.021002: 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
111368         rcuop/0-10    (   10) [000] d..2 24576.021007: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
111369         rcuop/0-10    (   10) [000] d..3 24576.021020: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
111370         rcuop/0-10    (   10) [000] d..2 24576.021028: 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
111371         rcuop/1-21    (   21) [000] d..2 24576.021059: 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
111372          <idle>-0     (-----) [000] d..1 24576.021074: cpu_idle: state=0 cpu_id=0
111373          <idle>-0     (-----) [000] ...1 24576.022620: cpu_idle: state=4294967295 cpu_id=0
111374          <idle>-0     (-----) [000] d..1 24576.022624: cpu_idle: state=0 cpu_id=0
111375          <idle>-0     (-----) [002] d.h2 24576.022924: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
111376          <idle>-0     (-----) [002] dnh3 24576.022941: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
111377          <idle>-0     (-----) [002] .n.1 24576.022949: cpu_idle: state=4294967295 cpu_id=2
111378          <idle>-0     (-----) [002] d..2 24576.022959: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
111379        DispSync-23904 (23896) [002] d..1 24576.022975: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
111380        DispSync-23904 (23896) [002] d..2 24576.022991: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
111381          <idle>-0     (-----) [003] .n.1 24576.022997: cpu_idle: state=4294967295 cpu_id=3
111382          <idle>-0     (-----) [003] d..2 24576.023007: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
111383        DispSync-23904 (23896) [002] d..2 24576.023022: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
111384          <idle>-0     (-----) [002] d..1 24576.023034: cpu_idle: state=0 cpu_id=2
111385   sfEventThread-23906 (23896) [003] d..3 24576.023036: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
111386   sfEventThread-23906 (23896) [003] d..4 24576.023056: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
111387          <idle>-0     (-----) [001] .n.1 24576.023062: cpu_idle: state=4294967295 cpu_id=1
111388          <idle>-0     (-----) [001] d..2 24576.023074: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
111389   sfEventThread-23906 (23896) [003] d..2 24576.023085: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111390          <idle>-0     (-----) [003] d..1 24576.023097: cpu_idle: state=0 cpu_id=3
111391  surfaceflinger-23896 (23896) [001] d..1 24576.023274: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
111392  surfaceflinger-23896 (23896) [001] d..2 24576.023306: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
111393          <idle>-0     (-----) [000] .n.1 24576.023310: cpu_idle: state=4294967295 cpu_id=0
111394          <idle>-0     (-----) [000] d..2 24576.023322: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
111395  Binder:23896_5-25989 (23896) [000] d..2 24576.023357: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111396          <idle>-0     (-----) [000] d..1 24576.023368: cpu_idle: state=0 cpu_id=0
111397  surfaceflinger-23896 (23896) [001] d..2 24576.023446: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
111398  surfaceflinger-23896 (23896) [001] d..3 24576.023497: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
111399  surfaceflinger-23896 (23896) [001] d..1 24576.023526: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
111400  surfaceflinger-23896 (23896) [001] d..2 24576.023544: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
111401          <idle>-0     (-----) [003] .n.1 24576.023549: cpu_idle: state=4294967295 cpu_id=3
111402          <idle>-0     (-----) [003] d..2 24576.023559: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
111403   sfEventThread-23906 (23896) [003] d..2 24576.023588: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111404          <idle>-0     (-----) [003] d..1 24576.023598: cpu_idle: state=0 cpu_id=3
111405  surfaceflinger-23896 (23896) [001] ...1 24576.023740: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
111406  surfaceflinger-23896 (23896) [001] ...1 24576.023747: tracing_mark_write: E|23896
111407  surfaceflinger-23896 (23896) [001] .... 24576.023810: binder_transaction: transaction=1671520 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
111408  surfaceflinger-23896 (23896) [001] ...2 24576.023840: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
111409  surfaceflinger-23896 (23896) [001] d..4 24576.023850: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
111410  surfaceflinger-23896 (23896) [001] d..5 24576.023873: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
111411          <idle>-0     (-----) [002] .n.1 24576.023879: cpu_idle: state=4294967295 cpu_id=2
111412          <idle>-0     (-----) [002] d..2 24576.023888: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
111413  surfaceflinger-23896 (23896) [001] d..2 24576.023894: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
111414  HwBinder:598_3-633   (  598) [002] .... 24576.023898: binder_transaction_received: transaction=1671520
111415         rcuop/0-10    (   10) [001] d..2 24576.023900: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
111416         rcuop/0-10    (   10) [001] d..3 24576.023936: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
111417  HwBinder:598_3-633   (  598) [002] ...1 24576.023945: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
111418         rcuop/0-10    (   10) [001] d..2 24576.023946: 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
111419     rcu_preempt-7     (    7) [001] d..2 24576.023971: 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
111420          <idle>-0     (-----) [001] d..1 24576.023986: cpu_idle: state=0 cpu_id=1
111421  HwBinder:598_3-633   (  598) [002] ...1 24576.024083: tracing_mark_write: B|598|HWCSession::PresentDisplay::
111422  HwBinder:598_3-633   (  598) [002] d.s2 24576.024253: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
111423  HwBinder:598_3-633   (  598) [002] d.s3 24576.024300: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
111424  HwBinder:598_3-633   (  598) [002] ...1 24576.024396: tracing_mark_write: B|598|HWDeviceDRM::Commit::
111425  HwBinder:598_3-633   (  598) [002] ...1 24576.024410: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
111426          <idle>-0     (-----) [000] ...1 24576.024995: cpu_idle: state=4294967295 cpu_id=0
111427          <idle>-0     (-----) [000] d..1 24576.024999: cpu_idle: state=0 cpu_id=0
111428  HwBinder:598_3-633   (  598) [002] d..2 24576.025060: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
111429  HwBinder:598_3-633   (  598) [002] d..3 24576.025085: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
111430          <idle>-0     (-----) [003] .n.1 24576.025091: cpu_idle: state=4294967295 cpu_id=3
111431          <idle>-0     (-----) [003] d..2 24576.025102: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
111432  HwBinder:598_3-633   (  598) [002] ...1 24576.025189: tracing_mark_write: E|598
111433  HwBinder:598_3-633   (  598) [002] ...1 24576.025195: tracing_mark_write: E|598
111434  HwBinder:598_3-633   (  598) [002] ...1 24576.025260: tracing_mark_write: E|598
111435  HwBinder:598_3-633   (  598) [002] ...1 24576.025313: tracing_mark_write: E|598
111436  HwBinder:598_3-633   (  598) [002] .... 24576.025328: binder_transaction: transaction=1671521 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
111437  HwBinder:598_3-633   (  598) [002] d..2 24576.025353: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
111438  HwBinder:598_3-633   (  598) [002] d..3 24576.025371: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
111439  HwBinder:598_3-633   (  598) [002] .... 24576.025376: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
111440          <idle>-0     (-----) [001] .n.1 24576.025377: cpu_idle: state=4294967295 cpu_id=1
111441          <idle>-0     (-----) [001] d..2 24576.025389: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
111442  surfaceflinger-23896 (23896) [001] .... 24576.025398: binder_transaction_received: transaction=1671521
111443  HwBinder:598_3-633   (  598) [002] d..2 24576.025449: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
111444  kworker/u16:10-23868 (23868) [002] .... 24576.025539: clk_set_rate: l3_cluster0_vote_clk 300000000
111445  kworker/u16:10-23868 (23868) [002] .... 24576.025547: clk_set_rate: l3_clk 300000000
111446  surfaceflinger-23896 (23896) [001] d..1 24576.025697: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
111447  surfaceflinger-23896 (23896) [001] d..2 24576.025723: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
111448          <idle>-0     (-----) [000] .n.1 24576.025727: cpu_idle: state=4294967295 cpu_id=0
111449          <idle>-0     (-----) [000] d..2 24576.025742: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
111450  Binder:23896_5-25989 (23896) [000] .... 24576.025811: binder_transaction: transaction=1671522 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
111451  Binder:23896_5-25989 (23896) [000] d..2 24576.025826: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
111452  Binder:23896_5-25989 (23896) [000] d..3 24576.025850: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
111453  Binder:23896_5-25989 (23896) [000] .... 24576.025855: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
111454  Binder:23896_5-25989 (23896) [000] d..2 24576.025915: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
111455  surfaceflinger-23896 (23896) [001] d..2 24576.025916: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111456    RenderThread-25194 (24827) [000] .... 24576.025925: binder_transaction_received: transaction=1671522
111457          <idle>-0     (-----) [001] d..1 24576.025932: cpu_idle: state=0 cpu_id=1
111458  kworker/u16:10-23868 (23868) [002] d..2 24576.025957: 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
111459          <idle>-0     (-----) [002] d..1 24576.025977: cpu_idle: state=0 cpu_id=2
111460 crtc_commit:111-253   (  253) [003] d.s2 24576.025983: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
111461 crtc_commit:111-253   (  253) [003] d.s3 24576.026003: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
111462 crtc_commit:111-253   (  253) [003] d..2 24576.026020: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
111463     ksoftirqd/3-34    (   34) [003] d.s2 24576.026038: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
111464     ksoftirqd/3-34    (   34) [003] d.s3 24576.026053: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
111465     ksoftirqd/3-34    (   34) [003] d.s3 24576.026064: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
111466          <idle>-0     (-----) [002] .n.1 24576.026071: cpu_idle: state=4294967295 cpu_id=2
111467          <idle>-0     (-----) [002] d..2 24576.026084: 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
111468     ksoftirqd/3-34    (   34) [003] d..2 24576.026089: 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
111469          <idle>-0     (-----) [003] d..1 24576.026108: cpu_idle: state=0 cpu_id=3
111470  kworker/u16:10-23868 (23868) [002] d..2 24576.026120: 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
111471          <idle>-0     (-----) [002] d..1 24576.026130: cpu_idle: state=0 cpu_id=2
111472          <idle>-0     (-----) [001] d.s2 24576.027582: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
111473          <idle>-0     (-----) [001] dns3 24576.027603: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
111474          <idle>-0     (-----) [001] .n.1 24576.027626: cpu_idle: state=4294967295 cpu_id=1
111475          <idle>-0     (-----) [001] d..2 24576.027635: 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
111476     rcu_preempt-7     (    7) [001] d..2 24576.027669: 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
111477          <idle>-0     (-----) [001] d..1 24576.027682: cpu_idle: state=0 cpu_id=1
111478          <idle>-0     (-----) [003] ...1 24576.028032: cpu_idle: state=4294967295 cpu_id=3
111479          <idle>-0     (-----) [003] d..1 24576.028037: cpu_idle: state=0 cpu_id=3
111480    RenderThread-25194 (24827) [000] .... 24576.028457: binder_transaction: transaction=1671523 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
111481    RenderThread-25194 (24827) [000] ...2 24576.028474: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
111482    RenderThread-25194 (24827) [000] d..4 24576.028478: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
111483    RenderThread-25194 (24827) [000] dn.5 24576.028499: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
111484    RenderThread-25194 (24827) [000] d..2 24576.028510: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
111485  Binder:23896_5-25989 (23896) [000] .... 24576.028520: binder_transaction_received: transaction=1671523
111486  Binder:23896_5-25989 (23896) [000] .... 24576.028704: binder_transaction: transaction=1671524 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
111487  Binder:23896_5-25989 (23896) [000] .... 24576.028714: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
111488  Binder:23896_5-25989 (23896) [000] d..2 24576.028774: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
111489    RenderThread-25194 (24827) [000] .... 24576.028786: binder_transaction_received: transaction=1671524
111490    RenderThread-25194 (24827) [000] d..2 24576.028904: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111491          <idle>-0     (-----) [000] d..1 24576.028926: cpu_idle: state=0 cpu_id=0
111492          <idle>-0     (-----) [000] d.h5 24576.031114: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
111493          <idle>-0     (-----) [000] dnh6 24576.031133: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
111494          <idle>-0     (-----) [000] dnh5 24576.031138: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
111495          <idle>-0     (-----) [000] dnh6 24576.031154: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
111496          <idle>-0     (-----) [003] .n.1 24576.031159: cpu_idle: state=4294967295 cpu_id=3
111497          <idle>-0     (-----) [000] .n.1 24576.031171: cpu_idle: state=4294967295 cpu_id=0
111498          <idle>-0     (-----) [003] d..2 24576.031172: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
111499          <idle>-0     (-----) [000] d..2 24576.031184: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
111500  crtc_event:111-254   (  254) [000] d..3 24576.031203: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
111501  crtc_event:111-254   (  254) [000] d..4 24576.031218: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
111502          <idle>-0     (-----) [001] .n.1 24576.031225: cpu_idle: state=4294967295 cpu_id=1
111503          <idle>-0     (-----) [001] d..2 24576.031238: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
111504  crtc_event:111-254   (  254) [000] d..2 24576.031247: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111505          <idle>-0     (-----) [000] d..2 24576.031252: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
111506          <idle>-0     (-----) [000] dn.3 24576.031266: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
111507          <idle>-0     (-----) [000] d..2 24576.031275: 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
111508     ksoftirqd/0-3     (    3) [000] d.s2 24576.031288: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
111509     ksoftirqd/0-3     (    3) [000] d.s3 24576.031326: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
111510     ksoftirqd/0-3     (    3) [000] d..2 24576.031339: 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
111511 crtc_commit:111-253   (  253) [003] d..2 24576.031347: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
111512          <idle>-0     (-----) [003] d..1 24576.031355: cpu_idle: state=0 cpu_id=3
111513  kworker/u16:10-23868 (23868) [000] d..2 24576.031434: 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
111514          <idle>-0     (-----) [000] d..1 24576.031450: cpu_idle: state=0 cpu_id=0
111515 kgsl_worker_thr-246   (  246) [001] d..2 24576.031455: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
111516          <idle>-0     (-----) [001] d..1 24576.031464: cpu_idle: state=0 cpu_id=1
111517          <idle>-0     (-----) [001] d.h2 24576.031544: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
111518          <idle>-0     (-----) [001] dnh3 24576.031557: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
111519          <idle>-0     (-----) [001] .n.1 24576.031566: cpu_idle: state=4294967295 cpu_id=1
111520          <idle>-0     (-----) [001] d..2 24576.031573: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
111521 kgsl_worker_thr-246   (  246) [001] d..2 24576.031597: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
111522 kgsl_worker_thr-246   (  246) [001] d..3 24576.031615: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
111523          <idle>-0     (-----) [000] .n.1 24576.031622: cpu_idle: state=4294967295 cpu_id=0
111524          <idle>-0     (-----) [000] d..2 24576.031635: 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
111525 kgsl_worker_thr-246   (  246) [001] d..2 24576.031639: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111526          <idle>-0     (-----) [001] d..1 24576.031647: cpu_idle: state=0 cpu_id=1
111527  kworker/u16:10-23868 (23868) [000] d..2 24576.032051: 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
111528          <idle>-0     (-----) [000] d..1 24576.032066: cpu_idle: state=0 cpu_id=0
111529          <idle>-0     (-----) [000] d.h3 24576.033052: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
111530          <idle>-0     (-----) [000] d.h4 24576.033072: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
111531          <idle>-0     (-----) [001] .n.1 24576.033077: cpu_idle: state=4294967295 cpu_id=1
111532          <idle>-0     (-----) [001] d..2 24576.033085: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
111533          <idle>-0     (-----) [000] ...1 24576.033090: cpu_idle: state=4294967295 cpu_id=0
111534          <idle>-0     (-----) [000] d..1 24576.033096: cpu_idle: state=0 cpu_id=0
111535 kgsl_worker_thr-246   (  246) [001] d..2 24576.033155: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111536          <idle>-0     (-----) [001] d..1 24576.033162: cpu_idle: state=0 cpu_id=1
111537          <idle>-0     (-----) [000] d.h5 24576.033437: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
111538          <idle>-0     (-----) [000] d.h6 24576.033453: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
111539          <idle>-0     (-----) [003] .n.1 24576.033459: cpu_idle: state=4294967295 cpu_id=3
111540          <idle>-0     (-----) [003] d..2 24576.033467: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
111541          <idle>-0     (-----) [000] ...1 24576.033468: cpu_idle: state=4294967295 cpu_id=0
111542          <idle>-0     (-----) [000] d..1 24576.033473: cpu_idle: state=0 cpu_id=0
111543 crtc_commit:111-253   (  253) [003] d..2 24576.033549: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111544          <idle>-0     (-----) [003] d..1 24576.033557: cpu_idle: state=0 cpu_id=3
111545          <idle>-0     (-----) [000] d.h5 24576.033745: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
111546          <idle>-0     (-----) [000] dnh6 24576.033755: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
111547          <idle>-0     (-----) [000] .n.1 24576.033772: cpu_idle: state=4294967295 cpu_id=0
111548          <idle>-0     (-----) [000] d..2 24576.033784: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
111549  crtc_event:111-254   (  254) [000] d..2 24576.033812: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111550          <idle>-0     (-----) [000] d..1 24576.033824: cpu_idle: state=0 cpu_id=0
111551          <idle>-0     (-----) [001] d.s2 24576.034245: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
111552          <idle>-0     (-----) [003] d.s3 24576.034245: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
111553          <idle>-0     (-----) [001] dns3 24576.034265: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
111554          <idle>-0     (-----) [003] d.s4 24576.034266: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
111555          <idle>-0     (-----) [000] .n.1 24576.034273: cpu_idle: state=4294967295 cpu_id=0
111556          <idle>-0     (-----) [003] d.s3 24576.034274: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
111557          <idle>-0     (-----) [001] .n.1 24576.034275: cpu_idle: state=4294967295 cpu_id=1
111558          <idle>-0     (-----) [001] d..2 24576.034284: 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
111559          <idle>-0     (-----) [000] d..2 24576.034285: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
111560     rcu_preempt-7     (    7) [001] d..2 24576.034293: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
111561          <idle>-0     (-----) [003] dns4 24576.034314: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
111562  crtc_event:111-254   (  254) [000] d..2 24576.034332: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111563          <idle>-0     (-----) [003] .n.1 24576.034337: cpu_idle: state=4294967295 cpu_id=3
111564     rcu_preempt-7     (    7) [001] d..3 24576.034342: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
111565          <idle>-0     (-----) [003] d..2 24576.034347: 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
111566          <idle>-0     (-----) [000] d..2 24576.034352: 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
111567         rcuop/0-10    (   10) [000] d..2 24576.034370: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
111568     rcu_preempt-7     (    7) [001] d..2 24576.034377: 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
111569          <idle>-0     (-----) [001] d..1 24576.034390: cpu_idle: state=0 cpu_id=1
111570         rcuop/0-10    (   10) [000] d..3 24576.034401: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
111571          <idle>-0     (-----) [001] .n.1 24576.034406: cpu_idle: state=4294967295 cpu_id=1
111572         rcuop/0-10    (   10) [000] d..2 24576.034411: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
111573          <idle>-0     (-----) [001] d..2 24576.034419: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
111574         rcuop/0-10    (   10) [000] d..3 24576.034438: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
111575         rcuop/1-21    (   21) [001] d..2 24576.034446: 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
111576     rcu_preempt-7     (    7) [001] d..2 24576.034468: 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
111577         rcuop/0-10    (   10) [000] d..2 24576.034473: 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
111578          <idle>-0     (-----) [000] d..1 24576.034485: cpu_idle: state=0 cpu_id=0
111579          <idle>-0     (-----) [001] d..1 24576.034509: cpu_idle: state=0 cpu_id=1
111580  kworker/u16:10-23868 (23868) [003] d..2 24576.034730: 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
111581          <idle>-0     (-----) [003] d..1 24576.034746: cpu_idle: state=0 cpu_id=3
111582          <idle>-0     (-----) [003] d.s3 24576.035215: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
111583          <idle>-0     (-----) [003] d.s4 24576.035230: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
111584          <idle>-0     (-----) [003] dns4 24576.035236: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
111585          <idle>-0     (-----) [003] .n.1 24576.035244: cpu_idle: state=4294967295 cpu_id=3
111586          <idle>-0     (-----) [003] d..2 24576.035256: 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
111587  kworker/u16:10-23868 (23868) [003] .... 24576.035334: clk_set_rate: l3_cluster0_vote_clk 480000000
111588  kworker/u16:10-23868 (23868) [003] .... 24576.035341: clk_set_rate: l3_clk 480000000
111589          <idle>-0     (-----) [002] d.h2 24576.035386: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
111590          <idle>-0     (-----) [002] dnh3 24576.035403: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
111591  kworker/u16:10-23868 (23868) [003] d..2 24576.035404: 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
111592          <idle>-0     (-----) [002] .n.1 24576.035412: cpu_idle: state=4294967295 cpu_id=2
111593          <idle>-0     (-----) [003] d..1 24576.035418: cpu_idle: state=0 cpu_id=3
111594          <idle>-0     (-----) [002] d..2 24576.035422: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
111595        DispSync-23904 (23896) [002] d..1 24576.035443: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
111596        DispSync-23904 (23896) [002] d..2 24576.035457: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
111597          <idle>-0     (-----) [003] .n.1 24576.035463: cpu_idle: state=4294967295 cpu_id=3
111598          <idle>-0     (-----) [003] d..2 24576.035472: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
111599        DispSync-23904 (23896) [002] d..2 24576.035486: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
111600          <idle>-0     (-----) [002] d..1 24576.035497: cpu_idle: state=0 cpu_id=2
111601  appEventThread-23905 (23896) [003] d..3 24576.035519: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
111602  appEventThread-23905 (23896) [003] d..4 24576.035540: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
111603          <idle>-0     (-----) [000] .n.1 24576.035544: cpu_idle: state=4294967295 cpu_id=0
111604          <idle>-0     (-----) [000] d..2 24576.035555: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
111605  appEventThread-23905 (23896) [003] d..2 24576.035574: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111606          <idle>-0     (-----) [003] d..1 24576.035587: cpu_idle: state=0 cpu_id=3
111607 s.nexuslauncher-24827 (24827) [000] .... 24576.035879: binder_transaction: transaction=1671525 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
111608 s.nexuslauncher-24827 (24827) [000] d..4 24576.035888: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
111609 s.nexuslauncher-24827 (24827) [000] d..5 24576.035918: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
111610          <idle>-0     (-----) [001] .n.1 24576.035922: cpu_idle: state=4294967295 cpu_id=1
111611          <idle>-0     (-----) [001] d..2 24576.035932: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
111612  Binder:23896_5-25989 (23896) [001] .... 24576.035939: binder_transaction_received: transaction=1671525
111613 s.nexuslauncher-24827 (24827) [000] d..3 24576.035952: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
111614  Binder:23896_5-25989 (23896) [001] d..1 24576.035970: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
111615 s.nexuslauncher-24827 (24827) [000] d..4 24576.035977: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
111616          <idle>-0     (-----) [002] .n.1 24576.035982: cpu_idle: state=4294967295 cpu_id=2
111617  Binder:23896_5-25989 (23896) [001] d..2 24576.035988: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
111618          <idle>-0     (-----) [003] .n.1 24576.035995: cpu_idle: state=4294967295 cpu_id=3
111619          <idle>-0     (-----) [002] d..2 24576.035996: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
111620          <idle>-0     (-----) [003] d..2 24576.036004: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
111621  Binder:23896_5-25989 (23896) [001] d..2 24576.036026: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111622  appEventThread-23905 (23896) [003] d..2 24576.036038: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111623          <idle>-0     (-----) [001] d..1 24576.036038: cpu_idle: state=0 cpu_id=1
111624    RenderThread-25194 (24827) [002] d..2 24576.036048: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
111625          <idle>-0     (-----) [003] d..1 24576.036049: cpu_idle: state=0 cpu_id=3
111626          <idle>-0     (-----) [002] d..1 24576.036059: cpu_idle: state=0 cpu_id=2
111627 s.nexuslauncher-24827 (24827) [000] d..3 24576.036305: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
111628 s.nexuslauncher-24827 (24827) [000] d..4 24576.036335: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
111629          <idle>-0     (-----) [001] .n.1 24576.036341: cpu_idle: state=4294967295 cpu_id=1
111630          <idle>-0     (-----) [001] d..2 24576.036352: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
111631 s.nexuslauncher-24827 (24827) [000] d..2 24576.036368: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111632          <idle>-0     (-----) [000] d..1 24576.036385: cpu_idle: state=0 cpu_id=0
111633    RenderThread-25194 (24827) [001] d..1 24576.036539: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
111634    RenderThread-25194 (24827) [001] d..2 24576.036559: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
111635          <idle>-0     (-----) [000] .n.1 24576.036566: cpu_idle: state=4294967295 cpu_id=0
111636          <idle>-0     (-----) [000] d..2 24576.036577: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
111637    RenderThread-25194 (24827) [001] .... 24576.036613: binder_transaction: transaction=1671526 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
111638    RenderThread-25194 (24827) [001] ...2 24576.036622: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
111639    RenderThread-25194 (24827) [001] d..4 24576.036626: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
111640    RenderThread-25194 (24827) [001] dn.5 24576.036639: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
111641    RenderThread-25194 (24827) [001] d..2 24576.036648: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
111642  Binder:23896_5-25989 (23896) [001] .... 24576.036656: binder_transaction_received: transaction=1671526
111643 s.nexuslauncher-24827 (24827) [000] d..2 24576.036679: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111644          <idle>-0     (-----) [000] d..1 24576.036693: cpu_idle: state=0 cpu_id=0
111645  Binder:23896_5-25989 (23896) [001] d..2 24576.036696: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
111646    RenderThread-25194 (24827) [001] d..2 24576.036721: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111647          <idle>-0     (-----) [001] d..1 24576.036736: cpu_idle: state=0 cpu_id=1
111648          <idle>-0     (-----) [003] ...1 24576.037442: cpu_idle: state=4294967295 cpu_id=3
111649          <idle>-0     (-----) [003] d..1 24576.037446: cpu_idle: state=0 cpu_id=3
111650          <idle>-0     (-----) [000] d..2 24576.038137: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
111651          <idle>-0     (-----) [000] dn.3 24576.038148: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
111652          <idle>-0     (-----) [000] dnH3 24576.038242: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
111653          <idle>-0     (-----) [000] dnH3 24576.038257: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
111654          <idle>-0     (-----) [006] dnh2 24576.038263: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
111655          <idle>-0     (-----) [006] .n.1 24576.038267: cpu_idle: state=4294967295 cpu_id=6
111656          <idle>-0     (-----) [000] dnH4 24576.038272: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
111657          <idle>-0     (-----) [006] d..2 24576.038273: 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
111658          <idle>-0     (-----) [002] .n.1 24576.038278: cpu_idle: state=4294967295 cpu_id=2
111659          <idle>-0     (-----) [000] dns3 24576.038285: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
111660         sugov:4-560   (  560) [006] d..2 24576.038286: 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
111661          <idle>-0     (-----) [002] d..2 24576.038289: 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
111662          <idle>-0     (-----) [006] d..1 24576.038292: cpu_idle: state=0 cpu_id=6
111663          <idle>-0     (-----) [000] dns4 24576.038302: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
111664          <idle>-0     (-----) [000] .n.1 24576.038309: cpu_idle: state=4294967295 cpu_id=0
111665          <idle>-0     (-----) [000] d..2 24576.038322: 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
111666         sugov:0-559   (  559) [002] .... 24576.038332: clk_set_rate: pwrcl_clk 979200000
111667     ksoftirqd/0-3     (    3) [000] d..2 24576.038333: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
111668         sugov:0-559   (  559) [002] .... 24576.038346: clk_set_rate: cpu3_pwrcl_clk 1056000000
111669         sugov:0-559   (  559) [002] .... 24576.038357: clk_set_rate: cpu2_pwrcl_clk 1056000000
111670         sugov:0-559   (  559) [002] .... 24576.038365: clk_set_rate: cpu1_pwrcl_clk 1056000000
111671         sugov:0-559   (  559) [002] .... 24576.038374: clk_set_rate: cpu0_pwrcl_clk 979200000
111672     kworker/0:1-13012 (13012) [000] d..2 24576.038431: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111673          <idle>-0     (-----) [000] d..1 24576.038447: cpu_idle: state=0 cpu_id=0
111674         sugov:0-559   (  559) [002] .... 24576.038490: cpu_frequency: state=979200 cpu_id=0
111675         sugov:0-559   (  559) [002] .... 24576.038518: cpu_frequency: state=979200 cpu_id=1
111676         sugov:0-559   (  559) [002] .... 24576.038522: cpu_frequency: state=979200 cpu_id=2
111677         sugov:0-559   (  559) [002] .... 24576.038526: cpu_frequency: state=979200 cpu_id=3
111678         sugov:0-559   (  559) [002] d..2 24576.038553: 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
111679          <idle>-0     (-----) [002] d..1 24576.038563: cpu_idle: state=0 cpu_id=2
111680          <idle>-0     (-----) [006] ...1 24576.039309: cpu_idle: state=4294967295 cpu_id=6
111681          <idle>-0     (-----) [006] d..1 24576.039312: cpu_idle: state=0 cpu_id=6
111682          <idle>-0     (-----) [002] d.h2 24576.039381: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
111683          <idle>-0     (-----) [002] dnh3 24576.039396: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
111684          <idle>-0     (-----) [002] .n.1 24576.039405: cpu_idle: state=4294967295 cpu_id=2
111685          <idle>-0     (-----) [002] d..2 24576.039413: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
111686        DispSync-23904 (23896) [002] d..1 24576.039431: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
111687        DispSync-23904 (23896) [002] d..2 24576.039447: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
111688          <idle>-0     (-----) [003] .n.1 24576.039452: cpu_idle: state=4294967295 cpu_id=3
111689          <idle>-0     (-----) [003] d..2 24576.039463: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
111690        DispSync-23904 (23896) [002] d..2 24576.039476: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
111691          <idle>-0     (-----) [002] d..1 24576.039488: cpu_idle: state=0 cpu_id=2
111692   sfEventThread-23906 (23896) [003] d..3 24576.039493: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
111693   sfEventThread-23906 (23896) [003] d..4 24576.039513: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
111694          <idle>-0     (-----) [001] .n.1 24576.039519: cpu_idle: state=4294967295 cpu_id=1
111695          <idle>-0     (-----) [001] d..2 24576.039530: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
111696   sfEventThread-23906 (23896) [003] d..2 24576.039542: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111697          <idle>-0     (-----) [003] d..1 24576.039556: cpu_idle: state=0 cpu_id=3
111698  surfaceflinger-23896 (23896) [001] d..1 24576.039700: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
111699  surfaceflinger-23896 (23896) [001] d..2 24576.039731: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
111700          <idle>-0     (-----) [000] .n.1 24576.039737: cpu_idle: state=4294967295 cpu_id=0
111701          <idle>-0     (-----) [000] d..2 24576.039747: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
111702  Binder:23896_5-25989 (23896) [000] d..2 24576.039781: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111703          <idle>-0     (-----) [000] d..1 24576.039794: cpu_idle: state=0 cpu_id=0
111704  surfaceflinger-23896 (23896) [001] d..1 24576.039891: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
111705  surfaceflinger-23896 (23896) [001] d..2 24576.039912: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
111706          <idle>-0     (-----) [003] .n.1 24576.039918: cpu_idle: state=4294967295 cpu_id=3
111707          <idle>-0     (-----) [003] d..2 24576.039930: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
111708   sfEventThread-23906 (23896) [003] d..2 24576.039960: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111709          <idle>-0     (-----) [003] d..1 24576.039971: cpu_idle: state=0 cpu_id=3
111710  surfaceflinger-23896 (23896) [001] ...1 24576.040113: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
111711  surfaceflinger-23896 (23896) [001] ...1 24576.040121: tracing_mark_write: E|23896
111712  surfaceflinger-23896 (23896) [001] .... 24576.040175: binder_transaction: transaction=1671527 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
111713  surfaceflinger-23896 (23896) [001] ...2 24576.040202: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
111714  surfaceflinger-23896 (23896) [001] d..4 24576.040209: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
111715  surfaceflinger-23896 (23896) [001] d..5 24576.040230: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
111716          <idle>-0     (-----) [002] .n.1 24576.040236: cpu_idle: state=4294967295 cpu_id=2
111717          <idle>-0     (-----) [002] d..2 24576.040245: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
111718  HwBinder:598_3-633   (  598) [002] .... 24576.040255: binder_transaction_received: transaction=1671527
111719  surfaceflinger-23896 (23896) [001] d..2 24576.040260: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111720          <idle>-0     (-----) [001] d..1 24576.040273: cpu_idle: state=0 cpu_id=1
111721  HwBinder:598_3-633   (  598) [002] ...1 24576.040306: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
111722  HwBinder:598_3-633   (  598) [002] ...1 24576.040462: tracing_mark_write: B|598|HWCSession::PresentDisplay::
111723  HwBinder:598_3-633   (  598) [002] ...1 24576.040669: tracing_mark_write: B|598|HWDeviceDRM::Commit::
111724  HwBinder:598_3-633   (  598) [002] ...1 24576.040685: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
111725          <idle>-0     (-----) [001] d.s2 24576.040907: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
111726          <idle>-0     (-----) [001] dns3 24576.040926: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
111727          <idle>-0     (-----) [001] .n.1 24576.040944: cpu_idle: state=4294967295 cpu_id=1
111728          <idle>-0     (-----) [001] d..2 24576.040953: 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
111729     rcu_preempt-7     (    7) [001] d..2 24576.040982: 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
111730          <idle>-0     (-----) [001] d..1 24576.040995: cpu_idle: state=0 cpu_id=1
111731          <idle>-0     (-----) [000] ...1 24576.041275: cpu_idle: state=4294967295 cpu_id=0
111732          <idle>-0     (-----) [000] d..1 24576.041280: cpu_idle: state=0 cpu_id=0
111733          <idle>-0     (-----) [003] ...1 24576.041290: cpu_idle: state=4294967295 cpu_id=3
111734          <idle>-0     (-----) [003] d..1 24576.041294: cpu_idle: state=0 cpu_id=3
111735  HwBinder:598_3-633   (  598) [002] d..2 24576.041403: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
111736  HwBinder:598_3-633   (  598) [002] d..3 24576.041428: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
111737          <idle>-0     (-----) [003] .n.1 24576.041432: cpu_idle: state=4294967295 cpu_id=3
111738          <idle>-0     (-----) [003] d..2 24576.041443: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
111739  HwBinder:598_3-633   (  598) [002] ...1 24576.041533: tracing_mark_write: E|598
111740  HwBinder:598_3-633   (  598) [002] ...1 24576.041539: tracing_mark_write: E|598
111741  HwBinder:598_3-633   (  598) [002] ...1 24576.041608: tracing_mark_write: E|598
111742  HwBinder:598_3-633   (  598) [002] ...1 24576.041666: tracing_mark_write: E|598
111743  HwBinder:598_3-633   (  598) [002] .... 24576.041682: binder_transaction: transaction=1671528 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
111744  HwBinder:598_3-633   (  598) [002] d..2 24576.041704: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
111745  HwBinder:598_3-633   (  598) [002] d..3 24576.041723: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
111746  HwBinder:598_3-633   (  598) [002] .... 24576.041727: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
111747          <idle>-0     (-----) [001] .n.1 24576.041728: cpu_idle: state=4294967295 cpu_id=1
111748          <idle>-0     (-----) [001] d..2 24576.041737: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
111749  surfaceflinger-23896 (23896) [001] .... 24576.041745: binder_transaction_received: transaction=1671528
111750  HwBinder:598_3-633   (  598) [002] d..2 24576.041815: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
111751          <idle>-0     (-----) [002] d..1 24576.041832: cpu_idle: state=0 cpu_id=2
111752  surfaceflinger-23896 (23896) [001] d..1 24576.041998: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
111753  surfaceflinger-23896 (23896) [001] d..2 24576.042021: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
111754          <idle>-0     (-----) [000] .n.1 24576.042025: cpu_idle: state=4294967295 cpu_id=0
111755          <idle>-0     (-----) [000] d..2 24576.042037: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
111756  Binder:23896_5-25989 (23896) [000] .... 24576.042095: binder_transaction: transaction=1671529 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
111757  Binder:23896_5-25989 (23896) [000] d..2 24576.042110: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
111758  Binder:23896_5-25989 (23896) [000] d..3 24576.042133: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
111759  Binder:23896_5-25989 (23896) [000] .... 24576.042137: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
111760  surfaceflinger-23896 (23896) [001] d..2 24576.042191: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111761  Binder:23896_5-25989 (23896) [000] d..2 24576.042192: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
111762    RenderThread-25194 (24827) [000] .... 24576.042199: binder_transaction_received: transaction=1671529
111763          <idle>-0     (-----) [001] d..1 24576.042207: cpu_idle: state=0 cpu_id=1
111764 crtc_commit:111-253   (  253) [003] d..2 24576.042255: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
111765          <idle>-0     (-----) [003] d..1 24576.042269: cpu_idle: state=0 cpu_id=3
111766    RenderThread-25194 (24827) [000] d.s2 24576.044255: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
111767    RenderThread-25194 (24827) [000] d.s3 24576.044305: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
111768          <idle>-0     (-----) [001] .n.1 24576.044311: cpu_idle: state=4294967295 cpu_id=1
111769          <idle>-0     (-----) [001] d..2 24576.044327: 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
111770  kworker/u16:10-23868 (23868) [001] .... 24576.044386: clk_set_rate: l3_cluster0_vote_clk 403200000
111771  kworker/u16:10-23868 (23868) [001] .... 24576.044392: clk_set_rate: l3_clk 403200000
111772  kworker/u16:10-23868 (23868) [001] d..2 24576.044529: 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
111773          <idle>-0     (-----) [001] d..1 24576.044540: cpu_idle: state=0 cpu_id=1
111774    RenderThread-25194 (24827) [000] .... 24576.044697: binder_transaction: transaction=1671530 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
111775    RenderThread-25194 (24827) [000] ...2 24576.044710: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
111776    RenderThread-25194 (24827) [000] d..4 24576.044714: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
111777    RenderThread-25194 (24827) [000] dn.5 24576.044732: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
111778    RenderThread-25194 (24827) [000] d..2 24576.044743: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
111779  Binder:23896_5-25989 (23896) [000] .... 24576.044752: binder_transaction_received: transaction=1671530
111780  Binder:23896_5-25989 (23896) [000] .... 24576.044914: binder_transaction: transaction=1671531 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
111781  Binder:23896_5-25989 (23896) [000] .... 24576.044922: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
111782  Binder:23896_5-25989 (23896) [000] d..2 24576.044980: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
111783    RenderThread-25194 (24827) [000] .... 24576.044990: binder_transaction_received: transaction=1671531
111784    RenderThread-25194 (24827) [000] d..2 24576.045101: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111785          <idle>-0     (-----) [000] d..1 24576.045121: cpu_idle: state=0 cpu_id=0
111786          <idle>-0     (-----) [001] d.s2 24576.047578: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
111787          <idle>-0     (-----) [000] d.h5 24576.047585: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
111788          <idle>-0     (-----) [001] dns3 24576.047597: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
111789          <idle>-0     (-----) [001] dns3 24576.047602: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
111790          <idle>-0     (-----) [000] dnh6 24576.047604: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
111791          <idle>-0     (-----) [000] dnh5 24576.047611: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
111792          <idle>-0     (-----) [000] dnh6 24576.047623: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
111793          <idle>-0     (-----) [003] .n.1 24576.047630: cpu_idle: state=4294967295 cpu_id=3
111794          <idle>-0     (-----) [001] dns4 24576.047636: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
111795          <idle>-0     (-----) [003] d..2 24576.047644: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
111796          <idle>-0     (-----) [000] .n.1 24576.047644: cpu_idle: state=4294967295 cpu_id=0
111797          <idle>-0     (-----) [001] .n.1 24576.047652: cpu_idle: state=4294967295 cpu_id=1
111798          <idle>-0     (-----) [000] d..2 24576.047657: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
111799          <idle>-0     (-----) [001] d..2 24576.047662: 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
111800     rcu_preempt-7     (    7) [001] d..2 24576.047671: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
111801  crtc_event:111-254   (  254) [000] d..3 24576.047675: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
111802  crtc_event:111-254   (  254) [000] d..4 24576.047701: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
111803     rcu_preempt-7     (    7) [001] d..3 24576.047706: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
111804          <idle>-0     (-----) [002] .n.1 24576.047708: cpu_idle: state=4294967295 cpu_id=2
111805  crtc_event:111-254   (  254) [000] d..2 24576.047717: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
111806     rcu_preempt-7     (    7) [001] d..2 24576.047718: 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
111807          <idle>-0     (-----) [002] d..2 24576.047721: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
111808         rcuop/0-10    (   10) [001] d..2 24576.047722: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
111809         rcuop/0-10    (   10) [001] d..3 24576.047750: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
111810         rcuop/0-10    (   10) [001] d..2 24576.047754: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
111811         rcuop/0-10    (   10) [001] d..3 24576.047775: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
111812         rcuop/0-10    (   10) [001] d..2 24576.047796: 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
111813  kworker/u16:10-23868 (23868) [000] d..2 24576.047799: 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
111814 crtc_commit:111-253   (  253) [003] d..2 24576.047802: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
111815          <idle>-0     (-----) [001] d..1 24576.047811: cpu_idle: state=0 cpu_id=1
111816          <idle>-0     (-----) [003] d..1 24576.047811: cpu_idle: state=0 cpu_id=3
111817          <idle>-0     (-----) [000] d..1 24576.047813: cpu_idle: state=0 cpu_id=0
111818 kgsl_worker_thr-246   (  246) [002] d..2 24576.047926: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=rcuop/1 next_pid=21 next_prio=120
111819         rcuop/1-21    (   21) [002] d..2 24576.047946: 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
111820     rcu_preempt-7     (    7) [002] d..2 24576.047972: 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
111821          <idle>-0     (-----) [002] d..1 24576.047983: cpu_idle: state=0 cpu_id=2
111822          <idle>-0     (-----) [002] d.h2 24576.048023: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
111823          <idle>-0     (-----) [002] dnh3 24576.048037: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
111824          <idle>-0     (-----) [002] .n.1 24576.048045: cpu_idle: state=4294967295 cpu_id=2
111825          <idle>-0     (-----) [002] d..2 24576.048055: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
111826 kgsl_worker_thr-246   (  246) [002] d..2 24576.048078: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
111827 kgsl_worker_thr-246   (  246) [002] d..3 24576.048120: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
111828 kgsl_worker_thr-246   (  246) [002] d..2 24576.048135: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
111829  kworker/u16:10-23868 (23868) [002] d..2 24576.048543: 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
111830          <idle>-0     (-----) [002] d..1 24576.048556: cpu_idle: state=0 cpu_id=2
111831          <idle>-0     (-----) [000] d.h3 24576.049521: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
111832          <idle>-0     (-----) [000] d.h4 24576.049539: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
111833          <idle>-0     (-----) [002] .n.1 24576.049546: cpu_idle: state=4294967295 cpu_id=2
111834          <idle>-0     (-----) [002] d..2 24576.049556: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
111835          <idle>-0     (-----) [000] ...1 24576.049556: cpu_idle: state=4294967295 cpu_id=0
111836          <idle>-0     (-----) [000] d..1 24576.049562: cpu_idle: state=0 cpu_id=0
111837 kgsl_worker_thr-246   (  246) [002] d..2 24576.049626: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
111838          <idle>-0     (-----) [002] d..1 24576.049636: cpu_idle: state=0 cpu_id=2
111839          <idle>-0     (-----) [000] d.h5 24576.049912: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
111840          <idle>-0     (-----) [000] d.h6 24576.049927: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
111841          <idle>-0     (-----) [003] .n.1 24576.049933: cpu_idle: state=4294967295 cpu_id=3
111842          <idle>-0     (-----) [003] d..2 24576.049941: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
111843          <idle>-0     (-----) [000] ...1 24576.049941: cpu_idle: state=4294967295 cpu_id=0
111844          <idle>-0     (-----) [000] d..1 24576.049946: cpu_idle: state=0 cpu_id=0
111845 crtc_commit:111-253   (  253) [003] d..2 24576.050014: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111846          <idle>-0     (-----) [003] d..1 24576.050022: cpu_idle: state=0 cpu_id=3
111847          <idle>-0     (-----) [000] d.h5 24576.050217: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
111848          <idle>-0     (-----) [000] dnh6 24576.050226: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
111849          <idle>-0     (-----) [000] .n.1 24576.050242: cpu_idle: state=4294967295 cpu_id=0
111850          <idle>-0     (-----) [000] d..2 24576.050252: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
111851  crtc_event:111-254   (  254) [000] d..2 24576.050277: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111852          <idle>-0     (-----) [000] d..1 24576.050287: cpu_idle: state=0 cpu_id=0
111853          <idle>-0     (-----) [003] d.s3 24576.050915: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
111854          <idle>-0     (-----) [003] d.s4 24576.050934: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
111855          <idle>-0     (-----) [000] .n.1 24576.050939: cpu_idle: state=4294967295 cpu_id=0
111856          <idle>-0     (-----) [000] d..2 24576.050953: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
111857          <idle>-0     (-----) [003] ...1 24576.050969: cpu_idle: state=4294967295 cpu_id=3
111858          <idle>-0     (-----) [003] d..1 24576.050976: cpu_idle: state=0 cpu_id=3
111859  crtc_event:111-254   (  254) [000] d..2 24576.050985: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111860          <idle>-0     (-----) [000] d..1 24576.050995: cpu_idle: state=0 cpu_id=0
111861          <idle>-0     (-----) [002] d.h2 24576.051844: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
111862          <idle>-0     (-----) [002] dnh3 24576.051860: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
111863          <idle>-0     (-----) [002] .n.1 24576.051868: cpu_idle: state=4294967295 cpu_id=2
111864          <idle>-0     (-----) [002] d..2 24576.051879: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
111865        DispSync-23904 (23896) [002] d..1 24576.051901: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
111866        DispSync-23904 (23896) [002] d..2 24576.051918: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
111867          <idle>-0     (-----) [003] .n.1 24576.051924: cpu_idle: state=4294967295 cpu_id=3
111868          <idle>-0     (-----) [003] d..2 24576.051935: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
111869        DispSync-23904 (23896) [002] d..2 24576.051950: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
111870          <idle>-0     (-----) [002] d..1 24576.051960: cpu_idle: state=0 cpu_id=2
111871  appEventThread-23905 (23896) [003] d..3 24576.051980: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
111872  appEventThread-23905 (23896) [003] d..4 24576.052004: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
111873          <idle>-0     (-----) [000] .n.1 24576.052010: cpu_idle: state=4294967295 cpu_id=0
111874          <idle>-0     (-----) [000] d..2 24576.052021: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
111875  appEventThread-23905 (23896) [003] d..2 24576.052042: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111876          <idle>-0     (-----) [003] d..1 24576.052057: cpu_idle: state=0 cpu_id=3
111877 s.nexuslauncher-24827 (24827) [000] .... 24576.052387: binder_transaction: transaction=1671532 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
111878 s.nexuslauncher-24827 (24827) [000] d..4 24576.052397: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
111879 s.nexuslauncher-24827 (24827) [000] d..5 24576.052430: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
111880          <idle>-0     (-----) [001] .n.1 24576.052435: cpu_idle: state=4294967295 cpu_id=1
111881          <idle>-0     (-----) [001] d..2 24576.052448: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
111882  Binder:23896_5-25989 (23896) [001] .... 24576.052457: binder_transaction_received: transaction=1671532
111883 s.nexuslauncher-24827 (24827) [000] d..3 24576.052468: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
111884  Binder:23896_5-25989 (23896) [001] d..1 24576.052492: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
111885 s.nexuslauncher-24827 (24827) [000] d..4 24576.052494: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
111886          <idle>-0     (-----) [002] .n.1 24576.052500: cpu_idle: state=4294967295 cpu_id=2
111887          <idle>-0     (-----) [002] d..2 24576.052510: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
111888  Binder:23896_5-25989 (23896) [001] d..2 24576.052512: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
111889          <idle>-0     (-----) [003] .n.1 24576.052519: cpu_idle: state=4294967295 cpu_id=3
111890          <idle>-0     (-----) [003] d..2 24576.052528: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
111891  Binder:23896_5-25989 (23896) [001] d..2 24576.052557: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111892  appEventThread-23905 (23896) [003] d..2 24576.052566: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111893    RenderThread-25194 (24827) [002] d..2 24576.052569: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
111894          <idle>-0     (-----) [001] d..1 24576.052572: cpu_idle: state=0 cpu_id=1
111895          <idle>-0     (-----) [003] d..1 24576.052577: cpu_idle: state=0 cpu_id=3
111896          <idle>-0     (-----) [002] d..1 24576.052578: cpu_idle: state=0 cpu_id=2
111897 s.nexuslauncher-24827 (24827) [000] d..3 24576.052855: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
111898 s.nexuslauncher-24827 (24827) [000] d..4 24576.052889: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
111899          <idle>-0     (-----) [001] .n.1 24576.052895: cpu_idle: state=4294967295 cpu_id=1
111900          <idle>-0     (-----) [001] d..2 24576.052908: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
111901 s.nexuslauncher-24827 (24827) [000] d..2 24576.052925: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111902          <idle>-0     (-----) [000] d..1 24576.052946: cpu_idle: state=0 cpu_id=0
111903    RenderThread-25194 (24827) [001] d..1 24576.053136: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
111904    RenderThread-25194 (24827) [001] d..2 24576.053159: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
111905          <idle>-0     (-----) [000] .n.1 24576.053166: cpu_idle: state=4294967295 cpu_id=0
111906          <idle>-0     (-----) [000] d..2 24576.053179: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
111907    RenderThread-25194 (24827) [001] .... 24576.053219: binder_transaction: transaction=1671533 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
111908    RenderThread-25194 (24827) [001] ...2 24576.053229: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
111909    RenderThread-25194 (24827) [001] d..4 24576.053235: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
111910    RenderThread-25194 (24827) [001] dn.5 24576.053251: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
111911    RenderThread-25194 (24827) [001] d..2 24576.053261: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
111912  Binder:23896_5-25989 (23896) [001] .... 24576.053270: binder_transaction_received: transaction=1671533
111913 s.nexuslauncher-24827 (24827) [000] d..2 24576.053288: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111914          <idle>-0     (-----) [000] d..1 24576.053304: cpu_idle: state=0 cpu_id=0
111915  Binder:23896_5-25989 (23896) [001] d..2 24576.053313: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
111916    RenderThread-25194 (24827) [001] d..2 24576.053339: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111917          <idle>-0     (-----) [001] d..1 24576.053358: cpu_idle: state=0 cpu_id=1
111918          <idle>-0     (-----) [002] d.s2 24576.054248: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
111919          <idle>-0     (-----) [002] dns3 24576.054268: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
111920          <idle>-0     (-----) [002] dns3 24576.054275: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
111921          <idle>-0     (-----) [002] dns4 24576.054287: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
111922          <idle>-0     (-----) [002] .n.1 24576.054311: cpu_idle: state=4294967295 cpu_id=2
111923          <idle>-0     (-----) [002] d..2 24576.054320: 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
111924     rcu_preempt-7     (    7) [002] d..2 24576.054332: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
111925     rcu_preempt-7     (    7) [002] d..3 24576.054365: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
111926     rcu_preempt-7     (    7) [002] d..2 24576.054377: 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
111927         rcuop/0-10    (   10) [002] d..2 24576.054381: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
111928         rcuop/0-10    (   10) [002] d..3 24576.054393: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
111929         rcuop/0-10    (   10) [002] d..2 24576.054402: 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
111930         rcuop/1-21    (   21) [002] d..2 24576.054420: 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
111931  kworker/u16:10-23868 (23868) [002] d..2 24576.054690: 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
111932          <idle>-0     (-----) [002] d..1 24576.054704: cpu_idle: state=0 cpu_id=2
111933          <idle>-0     (-----) [003] d.s3 24576.054732: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
111934          <idle>-0     (-----) [003] d.s4 24576.054768: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
111935          <idle>-0     (-----) [003] dns4 24576.054774: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
111936          <idle>-0     (-----) [003] .n.1 24576.054784: cpu_idle: state=4294967295 cpu_id=3
111937          <idle>-0     (-----) [000] ...1 24576.054784: cpu_idle: state=4294967295 cpu_id=0
111938          <idle>-0     (-----) [000] d..1 24576.054789: cpu_idle: state=0 cpu_id=0
111939          <idle>-0     (-----) [003] d..2 24576.054797: 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
111940  kworker/u16:10-23868 (23868) [003] .... 24576.054876: clk_set_rate: l3_cluster0_vote_clk 300000000
111941  kworker/u16:10-23868 (23868) [003] .... 24576.054886: clk_set_rate: l3_clk 300000000
111942  kworker/u16:10-23868 (23868) [003] d..2 24576.054950: 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
111943          <idle>-0     (-----) [003] d..1 24576.054966: cpu_idle: state=0 cpu_id=3
111944          <idle>-0     (-----) [002] d.h2 24576.055852: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
111945          <idle>-0     (-----) [002] dnh3 24576.055868: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
111946          <idle>-0     (-----) [002] .n.1 24576.055878: cpu_idle: state=4294967295 cpu_id=2
111947          <idle>-0     (-----) [002] d..2 24576.055891: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
111948        DispSync-23904 (23896) [002] d..1 24576.055915: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
111949        DispSync-23904 (23896) [002] d..2 24576.055931: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
111950          <idle>-0     (-----) [003] .n.1 24576.055937: cpu_idle: state=4294967295 cpu_id=3
111951          <idle>-0     (-----) [003] d..2 24576.055948: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
111952        DispSync-23904 (23896) [002] d..2 24576.055965: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
111953          <idle>-0     (-----) [002] d..1 24576.055981: cpu_idle: state=0 cpu_id=2
111954   sfEventThread-23906 (23896) [003] d..3 24576.055987: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
111955   sfEventThread-23906 (23896) [003] d..4 24576.056010: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
111956          <idle>-0     (-----) [001] .n.1 24576.056016: cpu_idle: state=4294967295 cpu_id=1
111957          <idle>-0     (-----) [001] d..2 24576.056031: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
111958   sfEventThread-23906 (23896) [003] d..2 24576.056047: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111959          <idle>-0     (-----) [003] d..1 24576.056065: cpu_idle: state=0 cpu_id=3
111960  surfaceflinger-23896 (23896) [001] d..1 24576.056240: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
111961  surfaceflinger-23896 (23896) [001] d..2 24576.056276: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
111962          <idle>-0     (-----) [000] .n.1 24576.056281: cpu_idle: state=4294967295 cpu_id=0
111963          <idle>-0     (-----) [000] d..2 24576.056298: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
111964  Binder:23896_5-25989 (23896) [000] d..2 24576.056341: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111965          <idle>-0     (-----) [000] d..1 24576.056355: cpu_idle: state=0 cpu_id=0
111966  surfaceflinger-23896 (23896) [001] d..2 24576.056433: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
111967  surfaceflinger-23896 (23896) [001] d..3 24576.056482: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
111968  surfaceflinger-23896 (23896) [001] d..1 24576.056517: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
111969  surfaceflinger-23896 (23896) [001] d..2 24576.056539: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
111970          <idle>-0     (-----) [003] .n.1 24576.056546: cpu_idle: state=4294967295 cpu_id=3
111971          <idle>-0     (-----) [003] d..2 24576.056557: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
111972   sfEventThread-23906 (23896) [003] d..2 24576.056592: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111973          <idle>-0     (-----) [003] d..1 24576.056605: cpu_idle: state=0 cpu_id=3
111974  surfaceflinger-23896 (23896) [001] ...1 24576.056766: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
111975  surfaceflinger-23896 (23896) [001] ...1 24576.056776: tracing_mark_write: E|23896
111976  surfaceflinger-23896 (23896) [001] .... 24576.056845: binder_transaction: transaction=1671534 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
111977  surfaceflinger-23896 (23896) [001] ...2 24576.056875: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
111978  surfaceflinger-23896 (23896) [001] d..4 24576.056883: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
111979  surfaceflinger-23896 (23896) [001] d..5 24576.056906: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
111980          <idle>-0     (-----) [002] .n.1 24576.056913: cpu_idle: state=4294967295 cpu_id=2
111981          <idle>-0     (-----) [002] d..2 24576.056925: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
111982  surfaceflinger-23896 (23896) [001] d..2 24576.056931: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
111983         rcuop/0-10    (   10) [001] d..2 24576.056938: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
111984  HwBinder:598_3-633   (  598) [002] .... 24576.056939: binder_transaction_received: transaction=1671534
111985         rcuop/0-10    (   10) [001] d..3 24576.056979: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
111986         rcuop/0-10    (   10) [001] d..2 24576.056990: 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
111987  HwBinder:598_3-633   (  598) [002] ...1 24576.056996: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
111988     rcu_preempt-7     (    7) [001] d..2 24576.057018: 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
111989          <idle>-0     (-----) [001] d..1 24576.057038: cpu_idle: state=0 cpu_id=1
111990  HwBinder:598_3-633   (  598) [002] ...1 24576.057156: tracing_mark_write: B|598|HWCSession::PresentDisplay::
111991  HwBinder:598_3-633   (  598) [002] ...1 24576.057368: tracing_mark_write: B|598|HWDeviceDRM::Commit::
111992  HwBinder:598_3-633   (  598) [002] ...1 24576.057383: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
111993  HwBinder:598_3-633   (  598) [002] d.H2 24576.057695: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
111994          <idle>-0     (-----) [006] dnh2 24576.057722: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
111995          <idle>-0     (-----) [006] .n.1 24576.057726: cpu_idle: state=4294967295 cpu_id=6
111996          <idle>-0     (-----) [006] d..2 24576.057731: 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
111997         sugov:4-560   (  560) [006] d..2 24576.057746: 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
111998          <idle>-0     (-----) [006] d..1 24576.057752: cpu_idle: state=0 cpu_id=6
111999          <idle>-0     (-----) [000] ...1 24576.057887: cpu_idle: state=4294967295 cpu_id=0
112000          <idle>-0     (-----) [000] d..1 24576.057892: cpu_idle: state=0 cpu_id=0
112001  HwBinder:598_3-633   (  598) [002] d..2 24576.058276: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
112002  HwBinder:598_3-633   (  598) [002] d..3 24576.058305: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
112003          <idle>-0     (-----) [003] .n.1 24576.058310: cpu_idle: state=4294967295 cpu_id=3
112004          <idle>-0     (-----) [003] d..2 24576.058321: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
112005  HwBinder:598_3-633   (  598) [002] ...1 24576.058424: tracing_mark_write: E|598
112006  HwBinder:598_3-633   (  598) [002] ...1 24576.058431: tracing_mark_write: E|598
112007  HwBinder:598_3-633   (  598) [002] ...1 24576.058509: tracing_mark_write: E|598
112008  HwBinder:598_3-633   (  598) [002] ...1 24576.058570: tracing_mark_write: E|598
112009  HwBinder:598_3-633   (  598) [002] .... 24576.058588: binder_transaction: transaction=1671535 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
112010  HwBinder:598_3-633   (  598) [002] d..2 24576.058615: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
112011  HwBinder:598_3-633   (  598) [002] d..3 24576.058638: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
112012  HwBinder:598_3-633   (  598) [002] .... 24576.058644: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
112013          <idle>-0     (-----) [001] .n.1 24576.058646: cpu_idle: state=4294967295 cpu_id=1
112014          <idle>-0     (-----) [001] d..2 24576.058659: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
112015  surfaceflinger-23896 (23896) [001] .... 24576.058669: binder_transaction_received: transaction=1671535
112016  HwBinder:598_3-633   (  598) [002] d..2 24576.058746: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112017          <idle>-0     (-----) [006] ...1 24576.058763: cpu_idle: state=4294967295 cpu_id=6
112018          <idle>-0     (-----) [006] d..1 24576.058765: cpu_idle: state=0 cpu_id=6
112019          <idle>-0     (-----) [002] d..1 24576.058769: cpu_idle: state=0 cpu_id=2
112020  surfaceflinger-23896 (23896) [001] d..1 24576.058958: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
112021  surfaceflinger-23896 (23896) [001] d..2 24576.058987: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
112022          <idle>-0     (-----) [000] .n.1 24576.058992: cpu_idle: state=4294967295 cpu_id=0
112023          <idle>-0     (-----) [000] d..2 24576.059005: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
112024  Binder:23896_5-25989 (23896) [000] .... 24576.059067: binder_transaction: transaction=1671536 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
112025  Binder:23896_5-25989 (23896) [000] d..2 24576.059083: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
112026  Binder:23896_5-25989 (23896) [000] d..3 24576.059111: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
112027  Binder:23896_5-25989 (23896) [000] .... 24576.059117: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
112028  surfaceflinger-23896 (23896) [001] d..2 24576.059179: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
112029  Binder:23896_5-25989 (23896) [000] d..2 24576.059182: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
112030 crtc_commit:111-253   (  253) [003] d..2 24576.059184: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
112031    RenderThread-25194 (24827) [000] .... 24576.059192: binder_transaction_received: transaction=1671536
112032          <idle>-0     (-----) [001] d..1 24576.059197: cpu_idle: state=0 cpu_id=1
112033          <idle>-0     (-----) [003] d..1 24576.059201: cpu_idle: state=0 cpu_id=3
112034          <idle>-0     (-----) [002] ...1 24576.060845: cpu_idle: state=4294967295 cpu_id=2
112035          <idle>-0     (-----) [002] d..1 24576.060850: cpu_idle: state=0 cpu_id=2
112036          <idle>-0     (-----) [001] d.s2 24576.060915: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
112037          <idle>-0     (-----) [001] dns3 24576.060939: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
112038          <idle>-0     (-----) [001] .n.1 24576.060960: cpu_idle: state=4294967295 cpu_id=1
112039          <idle>-0     (-----) [001] d..2 24576.060971: 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
112040     rcu_preempt-7     (    7) [001] d..2 24576.061004: 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
112041          <idle>-0     (-----) [001] d..1 24576.061019: cpu_idle: state=0 cpu_id=1
112042    RenderThread-25194 (24827) [000] .... 24576.061655: binder_transaction: transaction=1671537 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
112043    RenderThread-25194 (24827) [000] ...2 24576.061672: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
112044    RenderThread-25194 (24827) [000] d..4 24576.061676: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
112045    RenderThread-25194 (24827) [000] dn.5 24576.061697: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
112046    RenderThread-25194 (24827) [000] d..2 24576.061709: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
112047  Binder:23896_5-25989 (23896) [000] .... 24576.061719: binder_transaction_received: transaction=1671537
112048  Binder:23896_5-25989 (23896) [000] .... 24576.061883: binder_transaction: transaction=1671538 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
112049  Binder:23896_5-25989 (23896) [000] .... 24576.061893: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
112050  Binder:23896_5-25989 (23896) [000] d..2 24576.061954: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
112051    RenderThread-25194 (24827) [000] .... 24576.061967: binder_transaction_received: transaction=1671538
112052    RenderThread-25194 (24827) [000] d..2 24576.062086: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112053          <idle>-0     (-----) [000] d..1 24576.062109: cpu_idle: state=0 cpu_id=0
112054          <idle>-0     (-----) [000] d.h5 24576.064058: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
112055          <idle>-0     (-----) [000] dnh6 24576.064077: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
112056          <idle>-0     (-----) [000] dnh5 24576.064083: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
112057          <idle>-0     (-----) [000] dnh6 24576.064097: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
112058          <idle>-0     (-----) [003] .n.1 24576.064104: cpu_idle: state=4294967295 cpu_id=3
112059          <idle>-0     (-----) [000] .n.1 24576.064113: cpu_idle: state=4294967295 cpu_id=0
112060          <idle>-0     (-----) [003] d..2 24576.064116: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
112061          <idle>-0     (-----) [000] d..2 24576.064126: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
112062  crtc_event:111-254   (  254) [000] d..3 24576.064143: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
112063  crtc_event:111-254   (  254) [000] d..4 24576.064158: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
112064          <idle>-0     (-----) [002] .n.1 24576.064163: cpu_idle: state=4294967295 cpu_id=2
112065          <idle>-0     (-----) [002] d..2 24576.064178: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
112066  crtc_event:111-254   (  254) [000] d..2 24576.064182: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112067          <idle>-0     (-----) [000] d..1 24576.064196: cpu_idle: state=0 cpu_id=0
112068 kgsl_worker_thr-246   (  246) [002] d.s3 24576.064246: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
112069 kgsl_worker_thr-246   (  246) [002] d.s4 24576.064296: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
112070 crtc_commit:111-253   (  253) [003] d..2 24576.064343: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
112071          <idle>-0     (-----) [003] d..1 24576.064354: cpu_idle: state=0 cpu_id=3
112072 kgsl_worker_thr-246   (  246) [002] d..2 24576.064488: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
112073  kworker/u16:10-23868 (23868) [002] .... 24576.064524: clk_set_rate: l3_cluster0_vote_clk 403200000
112074  kworker/u16:10-23868 (23868) [002] .... 24576.064532: clk_set_rate: l3_clk 403200000
112075  kworker/u16:10-23868 (23868) [002] d.h2 24576.064581: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
112076  kworker/u16:10-23868 (23868) [002] d.h3 24576.064612: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
112077          <idle>-0     (-----) [003] .n.1 24576.064617: cpu_idle: state=4294967295 cpu_id=3
112078          <idle>-0     (-----) [003] d..2 24576.064627: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
112079 kgsl_worker_thr-246   (  246) [003] d..2 24576.064654: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
112080 kgsl_worker_thr-246   (  246) [003] d..3 24576.064707: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
112081 kgsl_worker_thr-246   (  246) [003] d..2 24576.064737: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
112082  kworker/u16:10-23868 (23868) [002] d..2 24576.064963: 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
112083          <idle>-0     (-----) [002] d..1 24576.064979: cpu_idle: state=0 cpu_id=2
112084  kworker/u16:16-25995 (25995) [003] d..2 24576.065168: 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
112085          <idle>-0     (-----) [003] d..1 24576.065180: cpu_idle: state=0 cpu_id=3
112086          <idle>-0     (-----) [003] d.s3 24576.065457: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
112087          <idle>-0     (-----) [003] d.s4 24576.065489: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
112088          <idle>-0     (-----) [003] dns4 24576.065495: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
112089          <idle>-0     (-----) [003] .n.1 24576.065502: cpu_idle: state=4294967295 cpu_id=3
112090          <idle>-0     (-----) [003] d..2 24576.065512: 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
112091  kworker/u16:10-23868 (23868) [003] d..2 24576.065547: 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
112092          <idle>-0     (-----) [003] d..1 24576.065555: cpu_idle: state=0 cpu_id=3
112093          <idle>-0     (-----) [000] d.h3 24576.066057: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
112094          <idle>-0     (-----) [000] d.h4 24576.066073: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
112095          <idle>-0     (-----) [003] .n.1 24576.066079: cpu_idle: state=4294967295 cpu_id=3
112096          <idle>-0     (-----) [003] d..2 24576.066087: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
112097          <idle>-0     (-----) [000] ...1 24576.066089: cpu_idle: state=4294967295 cpu_id=0
112098          <idle>-0     (-----) [000] d..1 24576.066096: cpu_idle: state=0 cpu_id=0
112099 kgsl_worker_thr-246   (  246) [003] d..2 24576.066156: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112100          <idle>-0     (-----) [003] d..1 24576.066165: cpu_idle: state=0 cpu_id=3
112101          <idle>-0     (-----) [000] d.h5 24576.066379: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
112102          <idle>-0     (-----) [000] d.h6 24576.066394: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
112103          <idle>-0     (-----) [003] .n.1 24576.066399: cpu_idle: state=4294967295 cpu_id=3
112104          <idle>-0     (-----) [003] d..2 24576.066407: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
112105          <idle>-0     (-----) [000] ...1 24576.066408: cpu_idle: state=4294967295 cpu_id=0
112106          <idle>-0     (-----) [000] d..1 24576.066413: cpu_idle: state=0 cpu_id=0
112107 crtc_commit:111-253   (  253) [003] d..2 24576.066484: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112108          <idle>-0     (-----) [003] d..1 24576.066492: cpu_idle: state=0 cpu_id=3
112109          <idle>-0     (-----) [000] d.h5 24576.066683: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
112110          <idle>-0     (-----) [000] dnh6 24576.066693: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
112111          <idle>-0     (-----) [000] .n.1 24576.066708: cpu_idle: state=4294967295 cpu_id=0
112112          <idle>-0     (-----) [000] d..2 24576.066720: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
112113  crtc_event:111-254   (  254) [000] d..2 24576.066743: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112114          <idle>-0     (-----) [000] d..1 24576.066753: cpu_idle: state=0 cpu_id=0
112115          <idle>-0     (-----) [001] d.s2 24576.067576: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
112116          <idle>-0     (-----) [003] d.s3 24576.067579: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
112117          <idle>-0     (-----) [001] dns3 24576.067592: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
112118          <idle>-0     (-----) [003] d.s4 24576.067599: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
112119          <idle>-0     (-----) [001] .n.1 24576.067603: cpu_idle: state=4294967295 cpu_id=1
112120          <idle>-0     (-----) [000] .n.1 24576.067605: cpu_idle: state=4294967295 cpu_id=0
112121          <idle>-0     (-----) [001] d..2 24576.067615: 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
112122          <idle>-0     (-----) [000] d..2 24576.067618: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
112123          <idle>-0     (-----) [003] ...1 24576.067622: cpu_idle: state=4294967295 cpu_id=3
112124     rcu_preempt-7     (    7) [001] d..2 24576.067623: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
112125          <idle>-0     (-----) [003] d..1 24576.067630: cpu_idle: state=0 cpu_id=3
112126  crtc_event:111-254   (  254) [000] d..2 24576.067649: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112127          <idle>-0     (-----) [000] d..1 24576.067659: cpu_idle: state=0 cpu_id=0
112128     rcu_preempt-7     (    7) [001] d..3 24576.067666: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
112129          <idle>-0     (-----) [000] .n.1 24576.067671: cpu_idle: state=4294967295 cpu_id=0
112130          <idle>-0     (-----) [000] d..2 24576.067683: 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
112131         rcuop/0-10    (   10) [000] d..2 24576.067689: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
112132     rcu_preempt-7     (    7) [001] d..2 24576.067690: 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
112133          <idle>-0     (-----) [001] d..1 24576.067702: cpu_idle: state=0 cpu_id=1
112134         rcuop/0-10    (   10) [000] d..3 24576.067733: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
112135         rcuop/0-10    (   10) [000] d..2 24576.067737: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
112136          <idle>-0     (-----) [001] .n.1 24576.067738: cpu_idle: state=4294967295 cpu_id=1
112137          <idle>-0     (-----) [001] d..2 24576.067751: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
112138         rcuop/0-10    (   10) [000] d..3 24576.067758: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
112139         rcuop/1-21    (   21) [001] d..2 24576.067769: 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
112140         rcuop/0-10    (   10) [000] d..2 24576.067790: 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
112141     rcu_preempt-7     (    7) [001] d..2 24576.067792: 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
112142          <idle>-0     (-----) [000] d..1 24576.067802: cpu_idle: state=0 cpu_id=0
112143          <idle>-0     (-----) [001] d..1 24576.067803: cpu_idle: state=0 cpu_id=1
112144          <idle>-0     (-----) [002] d.h2 24576.068309: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
112145          <idle>-0     (-----) [002] dnh3 24576.068325: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
112146          <idle>-0     (-----) [002] .n.1 24576.068334: cpu_idle: state=4294967295 cpu_id=2
112147          <idle>-0     (-----) [002] d..2 24576.068345: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
112148        DispSync-23904 (23896) [002] d..1 24576.068368: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
112149        DispSync-23904 (23896) [002] d..2 24576.068385: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
112150          <idle>-0     (-----) [003] .n.1 24576.068392: cpu_idle: state=4294967295 cpu_id=3
112151          <idle>-0     (-----) [003] d..2 24576.068403: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
112152        DispSync-23904 (23896) [002] d..2 24576.068418: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112153          <idle>-0     (-----) [002] d..1 24576.068430: cpu_idle: state=0 cpu_id=2
112154  appEventThread-23905 (23896) [003] d..3 24576.068453: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
112155  appEventThread-23905 (23896) [003] d..4 24576.068480: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
112156          <idle>-0     (-----) [000] .n.1 24576.068486: cpu_idle: state=4294967295 cpu_id=0
112157          <idle>-0     (-----) [000] d..2 24576.068498: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
112158  appEventThread-23905 (23896) [003] d..2 24576.068518: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112159          <idle>-0     (-----) [003] d..1 24576.068534: cpu_idle: state=0 cpu_id=3
112160 s.nexuslauncher-24827 (24827) [000] .... 24576.068852: binder_transaction: transaction=1671539 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
112161 s.nexuslauncher-24827 (24827) [000] d..4 24576.068861: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
112162 s.nexuslauncher-24827 (24827) [000] d..5 24576.068896: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
112163          <idle>-0     (-----) [001] .n.1 24576.068900: cpu_idle: state=4294967295 cpu_id=1
112164          <idle>-0     (-----) [001] d..2 24576.068912: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
112165  Binder:23896_5-25989 (23896) [001] .... 24576.068921: binder_transaction_received: transaction=1671539
112166 s.nexuslauncher-24827 (24827) [000] d..3 24576.068934: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
112167  Binder:23896_5-25989 (23896) [001] d..1 24576.068955: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
112168 s.nexuslauncher-24827 (24827) [000] d..4 24576.068960: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
112169          <idle>-0     (-----) [002] .n.1 24576.068966: cpu_idle: state=4294967295 cpu_id=2
112170  Binder:23896_5-25989 (23896) [001] d..2 24576.068976: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
112171          <idle>-0     (-----) [002] d..2 24576.068978: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
112172          <idle>-0     (-----) [003] .n.1 24576.068982: cpu_idle: state=4294967295 cpu_id=3
112173          <idle>-0     (-----) [003] d..2 24576.068992: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
112174  Binder:23896_5-25989 (23896) [001] d..2 24576.069018: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
112175  appEventThread-23905 (23896) [003] d..2 24576.069028: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112176          <idle>-0     (-----) [001] d..1 24576.069031: cpu_idle: state=0 cpu_id=1
112177    RenderThread-25194 (24827) [002] d..2 24576.069035: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112178          <idle>-0     (-----) [003] d..1 24576.069040: cpu_idle: state=0 cpu_id=3
112179          <idle>-0     (-----) [002] d..1 24576.069047: cpu_idle: state=0 cpu_id=2
112180 s.nexuslauncher-24827 (24827) [000] d..3 24576.069329: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
112181 s.nexuslauncher-24827 (24827) [000] d..4 24576.069364: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
112182          <idle>-0     (-----) [001] .n.1 24576.069370: cpu_idle: state=4294967295 cpu_id=1
112183          <idle>-0     (-----) [001] d..2 24576.069383: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
112184 s.nexuslauncher-24827 (24827) [000] d..2 24576.069402: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112185          <idle>-0     (-----) [000] d..1 24576.069423: cpu_idle: state=0 cpu_id=0
112186    RenderThread-25194 (24827) [001] d..1 24576.069617: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
112187    RenderThread-25194 (24827) [001] d..2 24576.069640: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
112188          <idle>-0     (-----) [000] .n.1 24576.069648: cpu_idle: state=4294967295 cpu_id=0
112189          <idle>-0     (-----) [000] d..2 24576.069660: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
112190    RenderThread-25194 (24827) [001] .... 24576.069701: binder_transaction: transaction=1671540 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
112191    RenderThread-25194 (24827) [001] ...2 24576.069711: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
112192    RenderThread-25194 (24827) [001] d..4 24576.069715: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
112193    RenderThread-25194 (24827) [001] dn.5 24576.069731: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
112194    RenderThread-25194 (24827) [001] d..2 24576.069742: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
112195  Binder:23896_5-25989 (23896) [001] .... 24576.069750: binder_transaction_received: transaction=1671540
112196 s.nexuslauncher-24827 (24827) [000] d..2 24576.069773: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112197          <idle>-0     (-----) [000] d..1 24576.069790: cpu_idle: state=0 cpu_id=0
112198  Binder:23896_5-25989 (23896) [001] d..2 24576.069791: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
112199    RenderThread-25194 (24827) [001] d..2 24576.069820: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
112200          <idle>-0     (-----) [001] d..1 24576.069837: cpu_idle: state=0 cpu_id=1
112201          <idle>-0     (-----) [003] ...1 24576.070657: cpu_idle: state=4294967295 cpu_id=3
112202          <idle>-0     (-----) [003] d..1 24576.070662: cpu_idle: state=0 cpu_id=3
112203          <idle>-0     (-----) [000] d..2 24576.071197: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
112204          <idle>-0     (-----) [000] dn.3 24576.071216: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
112205          <idle>-0     (-----) [000] .n.1 24576.071220: cpu_idle: state=4294967295 cpu_id=0
112206          <idle>-0     (-----) [000] d..2 24576.071235: 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
112207     ksoftirqd/0-3     (    3) [000] d..2 24576.071272: 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
112208          <idle>-0     (-----) [000] d..1 24576.071283: cpu_idle: state=0 cpu_id=0
112209          <idle>-0     (-----) [002] d.h2 24576.072310: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
112210          <idle>-0     (-----) [002] dnh3 24576.072325: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
112211          <idle>-0     (-----) [002] .n.1 24576.072334: cpu_idle: state=4294967295 cpu_id=2
112212          <idle>-0     (-----) [002] d..2 24576.072345: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
112213        DispSync-23904 (23896) [002] d..1 24576.072363: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
112214        DispSync-23904 (23896) [002] d..2 24576.072380: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
112215          <idle>-0     (-----) [003] .n.1 24576.072388: cpu_idle: state=4294967295 cpu_id=3
112216          <idle>-0     (-----) [003] d..2 24576.072399: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
112217        DispSync-23904 (23896) [002] d..2 24576.072411: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112218          <idle>-0     (-----) [002] d..1 24576.072424: cpu_idle: state=0 cpu_id=2
112219   sfEventThread-23906 (23896) [003] d..3 24576.072432: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
112220   sfEventThread-23906 (23896) [003] d..4 24576.072452: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
112221          <idle>-0     (-----) [001] .n.1 24576.072459: cpu_idle: state=4294967295 cpu_id=1
112222          <idle>-0     (-----) [001] d..2 24576.072472: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
112223   sfEventThread-23906 (23896) [003] d..2 24576.072482: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112224          <idle>-0     (-----) [003] d..1 24576.072496: cpu_idle: state=0 cpu_id=3
112225  surfaceflinger-23896 (23896) [001] d..1 24576.072681: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
112226  surfaceflinger-23896 (23896) [001] d..2 24576.072713: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
112227          <idle>-0     (-----) [000] .n.1 24576.072718: cpu_idle: state=4294967295 cpu_id=0
112228          <idle>-0     (-----) [000] d..2 24576.072730: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
112229  Binder:23896_5-25989 (23896) [000] d..2 24576.072765: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112230          <idle>-0     (-----) [000] d..1 24576.072779: cpu_idle: state=0 cpu_id=0
112231  surfaceflinger-23896 (23896) [001] d..1 24576.072888: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
112232  surfaceflinger-23896 (23896) [001] d..2 24576.072910: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
112233          <idle>-0     (-----) [003] .n.1 24576.072916: cpu_idle: state=4294967295 cpu_id=3
112234          <idle>-0     (-----) [003] d..2 24576.072925: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
112235   sfEventThread-23906 (23896) [003] d..2 24576.072956: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112236          <idle>-0     (-----) [003] d..1 24576.072967: cpu_idle: state=0 cpu_id=3
112237  surfaceflinger-23896 (23896) [001] ...1 24576.073128: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
112238  surfaceflinger-23896 (23896) [001] ...1 24576.073140: tracing_mark_write: E|23896
112239  surfaceflinger-23896 (23896) [001] .... 24576.073210: binder_transaction: transaction=1671541 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
112240  surfaceflinger-23896 (23896) [001] ...2 24576.073236: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
112241  surfaceflinger-23896 (23896) [001] d..4 24576.073245: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
112242  surfaceflinger-23896 (23896) [001] d..5 24576.073265: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
112243          <idle>-0     (-----) [002] .n.1 24576.073271: cpu_idle: state=4294967295 cpu_id=2
112244          <idle>-0     (-----) [002] d..2 24576.073280: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
112245  HwBinder:598_3-633   (  598) [002] .... 24576.073290: binder_transaction_received: transaction=1671541
112246  surfaceflinger-23896 (23896) [001] d..2 24576.073299: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
112247          <idle>-0     (-----) [001] d..1 24576.073312: cpu_idle: state=0 cpu_id=1
112248  HwBinder:598_3-633   (  598) [002] ...1 24576.073345: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
112249  HwBinder:598_3-633   (  598) [002] ...1 24576.073505: tracing_mark_write: B|598|HWCSession::PresentDisplay::
112250  HwBinder:598_3-633   (  598) [002] ...1 24576.073716: tracing_mark_write: B|598|HWDeviceDRM::Commit::
112251  HwBinder:598_3-633   (  598) [002] ...1 24576.073731: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
112252          <idle>-0     (-----) [000] ...1 24576.074232: cpu_idle: state=4294967295 cpu_id=0
112253          <idle>-0     (-----) [000] d..1 24576.074236: cpu_idle: state=0 cpu_id=0
112254          <idle>-0     (-----) [001] d.s2 24576.074243: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
112255  HwBinder:598_3-633   (  598) [002] d.s2 24576.074251: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
112256          <idle>-0     (-----) [001] dns3 24576.074262: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
112257          <idle>-0     (-----) [001] .n.1 24576.074280: cpu_idle: state=4294967295 cpu_id=1
112258          <idle>-0     (-----) [001] d..2 24576.074289: 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
112259  HwBinder:598_3-633   (  598) [002] d.s3 24576.074312: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
112260     rcu_preempt-7     (    7) [001] d..2 24576.074330: 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
112261  HwBinder:598_3-633   (  598) [002] d..2 24576.074542: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
112262  HwBinder:598_3-633   (  598) [002] d..3 24576.074562: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
112263          <idle>-0     (-----) [003] .n.1 24576.074568: cpu_idle: state=4294967295 cpu_id=3
112264          <idle>-0     (-----) [003] d..2 24576.074577: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
112265  kworker/u16:10-23868 (23868) [001] d..2 24576.074586: 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
112266          <idle>-0     (-----) [001] d..1 24576.074603: cpu_idle: state=0 cpu_id=1
112267 crtc_commit:111-253   (  253) [003] d.s3 24576.074615: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
112268 crtc_commit:111-253   (  253) [003] d.s4 24576.074631: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
112269  HwBinder:598_3-633   (  598) [002] ...1 24576.074673: tracing_mark_write: E|598
112270  HwBinder:598_3-633   (  598) [002] ...1 24576.074680: tracing_mark_write: E|598
112271  HwBinder:598_3-633   (  598) [002] ...1 24576.074753: tracing_mark_write: E|598
112272  HwBinder:598_3-633   (  598) [002] ...1 24576.074815: tracing_mark_write: E|598
112273  HwBinder:598_3-633   (  598) [002] .... 24576.074832: binder_transaction: transaction=1671542 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
112274  HwBinder:598_3-633   (  598) [002] d..2 24576.074857: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
112275  HwBinder:598_3-633   (  598) [002] d..3 24576.074876: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
112276          <idle>-0     (-----) [001] .n.1 24576.074881: cpu_idle: state=4294967295 cpu_id=1
112277  HwBinder:598_3-633   (  598) [002] .... 24576.074881: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
112278          <idle>-0     (-----) [001] d..2 24576.074891: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
112279  surfaceflinger-23896 (23896) [001] .... 24576.074902: binder_transaction_received: transaction=1671542
112280  HwBinder:598_3-633   (  598) [002] d..2 24576.074971: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112281          <idle>-0     (-----) [002] d..1 24576.074990: cpu_idle: state=0 cpu_id=2
112282  surfaceflinger-23896 (23896) [001] d..1 24576.075169: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
112283  surfaceflinger-23896 (23896) [001] d..2 24576.075195: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
112284          <idle>-0     (-----) [000] .n.1 24576.075199: cpu_idle: state=4294967295 cpu_id=0
112285          <idle>-0     (-----) [000] d..2 24576.075211: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
112286  Binder:23896_5-25989 (23896) [000] .... 24576.075279: binder_transaction: transaction=1671543 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
112287  Binder:23896_5-25989 (23896) [000] d..2 24576.075294: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
112288  Binder:23896_5-25989 (23896) [000] d..3 24576.075316: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
112289  Binder:23896_5-25989 (23896) [000] .... 24576.075322: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
112290  surfaceflinger-23896 (23896) [001] d..2 24576.075372: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
112291  Binder:23896_5-25989 (23896) [000] d..2 24576.075380: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
112292    RenderThread-25194 (24827) [000] .... 24576.075389: binder_transaction_received: transaction=1671543
112293          <idle>-0     (-----) [001] d..1 24576.075389: cpu_idle: state=0 cpu_id=1
112294 crtc_commit:111-253   (  253) [003] d..2 24576.075453: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
112295     ksoftirqd/3-34    (   34) [003] d.s2 24576.075469: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
112296     ksoftirqd/3-34    (   34) [003] d.s3 24576.075482: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
112297     ksoftirqd/3-34    (   34) [003] d.s3 24576.075492: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
112298          <idle>-0     (-----) [001] .n.1 24576.075499: cpu_idle: state=4294967295 cpu_id=1
112299          <idle>-0     (-----) [001] d..2 24576.075512: 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
112300     ksoftirqd/3-34    (   34) [003] d..2 24576.075517: 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
112301          <idle>-0     (-----) [003] d..1 24576.075534: cpu_idle: state=0 cpu_id=3
112302  kworker/u16:10-23868 (23868) [001] .... 24576.075617: clk_set_rate: l3_cluster0_vote_clk 300000000
112303  kworker/u16:10-23868 (23868) [001] .... 24576.075624: clk_set_rate: l3_clk 300000000
112304  kworker/u16:10-23868 (23868) [001] d..2 24576.075683: 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
112305          <idle>-0     (-----) [001] d..1 24576.075698: cpu_idle: state=0 cpu_id=1
112306          <idle>-0     (-----) [003] ...1 24576.077353: cpu_idle: state=4294967295 cpu_id=3
112307          <idle>-0     (-----) [003] d..1 24576.077358: cpu_idle: state=0 cpu_id=3
112308    RenderThread-25194 (24827) [000] d.H2 24576.077708: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
112309    RenderThread-25194 (24827) [000] d.H2 24576.077730: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
112310          <idle>-0     (-----) [006] dnh2 24576.077737: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
112311          <idle>-0     (-----) [006] .n.1 24576.077741: cpu_idle: state=4294967295 cpu_id=6
112312          <idle>-0     (-----) [006] d..2 24576.077746: 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
112313    RenderThread-25194 (24827) [000] d.H3 24576.077749: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
112314          <idle>-0     (-----) [002] .n.1 24576.077756: cpu_idle: state=4294967295 cpu_id=2
112315         sugov:4-560   (  560) [006] d..2 24576.077760: 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
112316          <idle>-0     (-----) [006] d..1 24576.077766: cpu_idle: state=0 cpu_id=6
112317          <idle>-0     (-----) [002] d..2 24576.077771: 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
112318         sugov:0-559   (  559) [002] d..2 24576.077807: 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
112319          <idle>-0     (-----) [002] d..1 24576.077817: cpu_idle: state=0 cpu_id=2
112320    RenderThread-25194 (24827) [000] .... 24576.078221: binder_transaction: transaction=1671544 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
112321    RenderThread-25194 (24827) [000] ...2 24576.078237: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
112322    RenderThread-25194 (24827) [000] d..4 24576.078242: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
112323    RenderThread-25194 (24827) [000] dn.5 24576.078267: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=000
112324    RenderThread-25194 (24827) [000] d..2 24576.078278: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
112325  Binder:23896_5-25989 (23896) [000] .... 24576.078288: binder_transaction_received: transaction=1671544
112326  Binder:23896_5-25989 (23896) [000] .... 24576.078469: binder_transaction: transaction=1671545 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
112327  Binder:23896_5-25989 (23896) [000] .... 24576.078479: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
112328  Binder:23896_5-25989 (23896) [000] d..2 24576.078544: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
112329    RenderThread-25194 (24827) [000] .... 24576.078555: binder_transaction_received: transaction=1671545
112330    RenderThread-25194 (24827) [000] d..2 24576.078667: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112331          <idle>-0     (-----) [000] d..1 24576.078690: cpu_idle: state=0 cpu_id=0
112332          <idle>-0     (-----) [006] ...1 24576.078783: cpu_idle: state=4294967295 cpu_id=6
112333          <idle>-0     (-----) [006] d..1 24576.078786: cpu_idle: state=0 cpu_id=6
112334          <idle>-0     (-----) [000] d.h5 24576.080534: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
112335          <idle>-0     (-----) [000] dnh6 24576.080554: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
112336          <idle>-0     (-----) [000] dnh5 24576.080562: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
112337          <idle>-0     (-----) [000] dnh6 24576.080576: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
112338          <idle>-0     (-----) [003] .n.1 24576.080582: cpu_idle: state=4294967295 cpu_id=3
112339          <idle>-0     (-----) [000] .n.1 24576.080595: cpu_idle: state=4294967295 cpu_id=0
112340          <idle>-0     (-----) [003] d..2 24576.080595: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
112341          <idle>-0     (-----) [000] d..2 24576.080608: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
112342  crtc_event:111-254   (  254) [000] d..3 24576.080627: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
112343  crtc_event:111-254   (  254) [000] d..4 24576.080651: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
112344          <idle>-0     (-----) [001] .n.1 24576.080657: cpu_idle: state=4294967295 cpu_id=1
112345          <idle>-0     (-----) [001] d..2 24576.080672: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
112346  crtc_event:111-254   (  254) [000] d..2 24576.080677: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112347          <idle>-0     (-----) [000] d..1 24576.080691: cpu_idle: state=0 cpu_id=0
112348 crtc_commit:111-253   (  253) [003] d..2 24576.080772: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
112349          <idle>-0     (-----) [003] d..1 24576.080782: cpu_idle: state=0 cpu_id=3
112350          <idle>-0     (-----) [003] d.s3 24576.080908: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
112351 kgsl_worker_thr-246   (  246) [001] d.s2 24576.080914: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
112352          <idle>-0     (-----) [003] d.s4 24576.080928: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
112353          <idle>-0     (-----) [000] .n.1 24576.080934: cpu_idle: state=4294967295 cpu_id=0
112354          <idle>-0     (-----) [000] d..2 24576.080948: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
112355          <idle>-0     (-----) [003] ...1 24576.080952: cpu_idle: state=4294967295 cpu_id=3
112356          <idle>-0     (-----) [003] d..1 24576.080959: cpu_idle: state=0 cpu_id=3
112357 kgsl_worker_thr-246   (  246) [001] d.s3 24576.080975: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
112358 kgsl_worker_thr-246   (  246) [001] d.H3 24576.080984: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
112359 kgsl_worker_thr-246   (  246) [001] d.H4 24576.080989: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
112360  crtc_event:111-254   (  254) [000] d..2 24576.080993: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
112361 kgsl_worker_thr-246   (  246) [001] d.s3 24576.081001: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
112362     rcu_preempt-7     (    7) [000] d..2 24576.081006: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
112363     rcu_preempt-7     (    7) [000] d..3 24576.081037: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
112364 kgsl_worker_thr-246   (  246) [001] d.s4 24576.081047: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
112365     rcu_preempt-7     (    7) [000] d..2 24576.081063: 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
112366         rcuop/0-10    (   10) [000] d..2 24576.081069: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
112367         rcuop/0-10    (   10) [000] d..3 24576.081085: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
112368         rcuop/0-10    (   10) [000] d..2 24576.081089: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
112369 kgsl_worker_thr-246   (  246) [001] d..2 24576.081103: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
112370         rcuop/0-10    (   10) [000] d..3 24576.081129: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
112371         rcuop/0-10    (   10) [000] d..2 24576.081142: 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
112372         rcuop/1-21    (   21) [001] d..2 24576.081147: 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
112373  kworker/u16:10-23868 (23868) [000] d..2 24576.081148: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
112374     rcu_preempt-7     (    7) [001] d..2 24576.081177: 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
112375  kworker/u16:10-23868 (23868) [000] d..3 24576.081195: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
112376          <idle>-0     (-----) [001] d..2 24576.081209: 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
112377  kworker/u16:10-23868 (23868) [000] d..2 24576.081286: 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
112378          <idle>-0     (-----) [000] d..1 24576.081301: cpu_idle: state=0 cpu_id=0
112379  kworker/u16:16-25995 (25995) [001] d..2 24576.081646: 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
112380          <idle>-0     (-----) [001] d..1 24576.081659: cpu_idle: state=0 cpu_id=1
112381          <idle>-0     (-----) [000] d.h3 24576.082490: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
112382          <idle>-0     (-----) [000] d.h4 24576.082509: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
112383          <idle>-0     (-----) [001] .n.1 24576.082516: cpu_idle: state=4294967295 cpu_id=1
112384          <idle>-0     (-----) [001] d..2 24576.082527: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
112385          <idle>-0     (-----) [000] ...1 24576.082528: cpu_idle: state=4294967295 cpu_id=0
112386          <idle>-0     (-----) [000] d..1 24576.082533: cpu_idle: state=0 cpu_id=0
112387 kgsl_worker_thr-246   (  246) [001] d..2 24576.082604: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
112388          <idle>-0     (-----) [001] d..1 24576.082615: cpu_idle: state=0 cpu_id=1
112389          <idle>-0     (-----) [000] d.h5 24576.082854: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
112390          <idle>-0     (-----) [000] d.h6 24576.082870: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
112391          <idle>-0     (-----) [003] .n.1 24576.082876: cpu_idle: state=4294967295 cpu_id=3
112392          <idle>-0     (-----) [000] ...1 24576.082886: cpu_idle: state=4294967295 cpu_id=0
112393          <idle>-0     (-----) [003] d..2 24576.082887: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
112394          <idle>-0     (-----) [000] d..1 24576.082891: cpu_idle: state=0 cpu_id=0
112395 crtc_commit:111-253   (  253) [003] d..2 24576.082976: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112396          <idle>-0     (-----) [003] d..1 24576.082990: cpu_idle: state=0 cpu_id=3
112397          <idle>-0     (-----) [000] d.h5 24576.083159: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
112398          <idle>-0     (-----) [000] dnh6 24576.083169: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
112399          <idle>-0     (-----) [000] .n.1 24576.083187: cpu_idle: state=4294967295 cpu_id=0
112400          <idle>-0     (-----) [000] d..2 24576.083198: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
112401  crtc_event:111-254   (  254) [000] d..2 24576.083223: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112402          <idle>-0     (-----) [000] d..1 24576.083237: cpu_idle: state=0 cpu_id=0
112403          <idle>-0     (-----) [000] d..2 24576.084706: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
112404          <idle>-0     (-----) [000] dn.3 24576.084720: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
112405          <idle>-0     (-----) [000] .n.1 24576.084724: cpu_idle: state=4294967295 cpu_id=0
112406          <idle>-0     (-----) [000] d..2 24576.084738: 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
112407     ksoftirqd/0-3     (    3) [000] d.s2 24576.084748: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
112408          <idle>-0     (-----) [002] d.h2 24576.084766: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
112409          <idle>-0     (-----) [002] dnh3 24576.084783: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
112410     ksoftirqd/0-3     (    3) [000] d.s3 24576.084788: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
112411          <idle>-0     (-----) [002] .n.1 24576.084793: cpu_idle: state=4294967295 cpu_id=2
112412     ksoftirqd/0-3     (    3) [000] d..2 24576.084803: 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
112413          <idle>-0     (-----) [002] d..2 24576.084804: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
112414        DispSync-23904 (23896) [002] d..1 24576.084847: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
112415        DispSync-23904 (23896) [002] d..2 24576.084868: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
112416          <idle>-0     (-----) [003] .n.1 24576.084874: cpu_idle: state=4294967295 cpu_id=3
112417          <idle>-0     (-----) [003] d..2 24576.084899: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
112418        DispSync-23904 (23896) [002] d..2 24576.084916: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112419  kworker/u16:16-25995 (25995) [000] .... 24576.084925: clk_set_rate: l3_cluster0_vote_clk 403200000
112420          <idle>-0     (-----) [002] d..1 24576.084929: cpu_idle: state=0 cpu_id=2
112421  kworker/u16:16-25995 (25995) [000] .... 24576.084931: clk_set_rate: l3_clk 403200000
112422  appEventThread-23905 (23896) [003] d..3 24576.084967: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
112423  appEventThread-23905 (23896) [003] d..4 24576.085003: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
112424          <idle>-0     (-----) [001] .n.1 24576.085009: cpu_idle: state=4294967295 cpu_id=1
112425          <idle>-0     (-----) [001] d..2 24576.085024: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
112426  appEventThread-23905 (23896) [003] d..2 24576.085060: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112427          <idle>-0     (-----) [003] d..1 24576.085075: cpu_idle: state=0 cpu_id=3
112428  kworker/u16:16-25995 (25995) [000] d..2 24576.085243: 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
112429          <idle>-0     (-----) [000] d..1 24576.085258: cpu_idle: state=0 cpu_id=0
112430 s.nexuslauncher-24827 (24827) [001] .... 24576.085360: binder_transaction: transaction=1671546 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
112431 s.nexuslauncher-24827 (24827) [001] d..4 24576.085372: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
112432 s.nexuslauncher-24827 (24827) [001] d..5 24576.085398: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
112433          <idle>-0     (-----) [000] .n.1 24576.085404: cpu_idle: state=4294967295 cpu_id=0
112434          <idle>-0     (-----) [000] d..2 24576.085417: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
112435  Binder:23896_5-25989 (23896) [000] .... 24576.085427: binder_transaction_received: transaction=1671546
112436  Binder:23896_5-25989 (23896) [000] d..1 24576.085464: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
112437  Binder:23896_5-25989 (23896) [000] d..2 24576.085487: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
112438          <idle>-0     (-----) [003] .n.1 24576.085492: cpu_idle: state=4294967295 cpu_id=3
112439          <idle>-0     (-----) [003] d..2 24576.085502: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
112440 s.nexuslauncher-24827 (24827) [001] d..2 24576.085508: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
112441          <idle>-0     (-----) [001] d..1 24576.085522: cpu_idle: state=0 cpu_id=1
112442  Binder:23896_5-25989 (23896) [000] d..2 24576.085534: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112443  appEventThread-23905 (23896) [003] d..2 24576.085540: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112444          <idle>-0     (-----) [003] d..1 24576.085551: cpu_idle: state=0 cpu_id=3
112445          <idle>-0     (-----) [000] d..1 24576.085552: cpu_idle: state=0 cpu_id=0
112446          <idle>-0     (-----) [003] d.s3 24576.085732: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
112447          <idle>-0     (-----) [003] d.s4 24576.085743: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
112448          <idle>-0     (-----) [003] d.s4 24576.085752: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
112449          <idle>-0     (-----) [000] .n.1 24576.085760: cpu_idle: state=4294967295 cpu_id=0
112450          <idle>-0     (-----) [003] ...1 24576.085763: cpu_idle: state=4294967295 cpu_id=3
112451          <idle>-0     (-----) [003] d..1 24576.085769: cpu_idle: state=0 cpu_id=3
112452          <idle>-0     (-----) [000] d..2 24576.085772: 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
112453  kworker/u16:16-25995 (25995) [000] d..2 24576.085807: 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
112454          <idle>-0     (-----) [000] d..1 24576.085819: cpu_idle: state=0 cpu_id=0
112455          <idle>-0     (-----) [000] ...1 24576.087280: cpu_idle: state=4294967295 cpu_id=0
112456          <idle>-0     (-----) [000] d..1 24576.087287: cpu_idle: state=0 cpu_id=0
112457          <idle>-0     (-----) [001] d.s2 24576.087578: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
112458          <idle>-0     (-----) [001] dns3 24576.087597: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
112459          <idle>-0     (-----) [001] .n.1 24576.087618: cpu_idle: state=4294967295 cpu_id=1
112460          <idle>-0     (-----) [001] d..2 24576.087627: 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
112461     rcu_preempt-7     (    7) [001] d..2 24576.087640: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
112462     rcu_preempt-7     (    7) [001] d..3 24576.087676: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
112463     rcu_preempt-7     (    7) [001] d..2 24576.087686: 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
112464         rcuop/0-10    (   10) [001] d..2 24576.087690: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
112465         rcuop/0-10    (   10) [001] d..3 24576.087703: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
112466         rcuop/0-10    (   10) [001] d..2 24576.087712: 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
112467         rcuop/1-21    (   21) [001] d..2 24576.087743: 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
112468          <idle>-0     (-----) [001] d..1 24576.087757: cpu_idle: state=0 cpu_id=1
112469          <idle>-0     (-----) [002] d.h2 24576.088795: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
112470          <idle>-0     (-----) [002] dnh3 24576.088808: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
112471          <idle>-0     (-----) [002] .n.1 24576.088815: cpu_idle: state=4294967295 cpu_id=2
112472          <idle>-0     (-----) [002] d..2 24576.088828: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
112473        DispSync-23904 (23896) [002] d..1 24576.088841: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
112474        DispSync-23904 (23896) [002] d..2 24576.088856: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
112475          <idle>-0     (-----) [003] .n.1 24576.088861: cpu_idle: state=4294967295 cpu_id=3
112476          <idle>-0     (-----) [003] d..2 24576.088874: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
112477        DispSync-23904 (23896) [002] d..2 24576.088885: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112478          <idle>-0     (-----) [002] d..1 24576.088897: cpu_idle: state=0 cpu_id=2
112479   sfEventThread-23906 (23896) [003] d..3 24576.088907: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
112480   sfEventThread-23906 (23896) [003] d..4 24576.088928: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
112481          <idle>-0     (-----) [001] .n.1 24576.088933: cpu_idle: state=4294967295 cpu_id=1
112482          <idle>-0     (-----) [001] d..2 24576.088945: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
112483   sfEventThread-23906 (23896) [003] d..2 24576.088961: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112484          <idle>-0     (-----) [003] d..1 24576.088974: cpu_idle: state=0 cpu_id=3
112485  surfaceflinger-23896 (23896) [001] d..2 24576.089317: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
112486  surfaceflinger-23896 (23896) [001] d..3 24576.089344: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
112487  surfaceflinger-23896 (23896) [001] d..1 24576.089377: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
112488  surfaceflinger-23896 (23896) [001] d..2 24576.089396: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
112489          <idle>-0     (-----) [003] .n.1 24576.089402: cpu_idle: state=4294967295 cpu_id=3
112490          <idle>-0     (-----) [003] d..2 24576.089412: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
112491   sfEventThread-23906 (23896) [003] d..2 24576.089471: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
112492         rcuop/0-10    (   10) [003] d..2 24576.089476: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
112493         rcuop/0-10    (   10) [003] d..3 24576.089512: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112494         rcuop/0-10    (   10) [003] d..2 24576.089523: 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
112495     rcu_preempt-7     (    7) [003] d..2 24576.089545: 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
112496          <idle>-0     (-----) [003] d..1 24576.089557: cpu_idle: state=0 cpu_id=3
112497  surfaceflinger-23896 (23896) [001] ...1 24576.089579: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
112498  surfaceflinger-23896 (23896) [001] ...1 24576.089590: tracing_mark_write: E|23896
112499  surfaceflinger-23896 (23896) [001] .... 24576.089656: binder_transaction: transaction=1671547 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
112500  surfaceflinger-23896 (23896) [001] ...2 24576.089688: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
112501  surfaceflinger-23896 (23896) [001] d..4 24576.089696: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
112502  surfaceflinger-23896 (23896) [001] d..5 24576.089720: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
112503          <idle>-0     (-----) [002] .n.1 24576.089726: cpu_idle: state=4294967295 cpu_id=2
112504          <idle>-0     (-----) [002] d..2 24576.089736: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
112505  HwBinder:598_3-633   (  598) [002] .... 24576.089745: binder_transaction_received: transaction=1671547
112506  surfaceflinger-23896 (23896) [001] d..2 24576.089756: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
112507          <idle>-0     (-----) [001] d..1 24576.089774: cpu_idle: state=0 cpu_id=1
112508  HwBinder:598_3-633   (  598) [002] ...1 24576.089793: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
112509  HwBinder:598_3-633   (  598) [002] ...1 24576.089938: tracing_mark_write: B|598|HWCSession::PresentDisplay::
112510  HwBinder:598_3-633   (  598) [002] ...1 24576.090144: tracing_mark_write: B|598|HWDeviceDRM::Commit::
112511  HwBinder:598_3-633   (  598) [002] ...1 24576.090158: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
112512  HwBinder:598_3-633   (  598) [002] d..2 24576.090822: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
112513  HwBinder:598_3-633   (  598) [002] d..3 24576.090847: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
112514          <idle>-0     (-----) [003] .n.1 24576.090853: cpu_idle: state=4294967295 cpu_id=3
112515          <idle>-0     (-----) [003] d..2 24576.090864: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
112516  HwBinder:598_3-633   (  598) [002] ...1 24576.091001: tracing_mark_write: E|598
112517  HwBinder:598_3-633   (  598) [002] ...1 24576.091007: tracing_mark_write: E|598
112518  HwBinder:598_3-633   (  598) [002] ...1 24576.091076: tracing_mark_write: E|598
112519  HwBinder:598_3-633   (  598) [002] ...1 24576.091134: tracing_mark_write: E|598
112520  HwBinder:598_3-633   (  598) [002] .... 24576.091150: binder_transaction: transaction=1671548 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
112521  HwBinder:598_3-633   (  598) [002] d..2 24576.091175: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
112522  HwBinder:598_3-633   (  598) [002] d..3 24576.091193: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
112523  HwBinder:598_3-633   (  598) [002] .... 24576.091199: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
112524          <idle>-0     (-----) [001] .n.1 24576.091200: cpu_idle: state=4294967295 cpu_id=1
112525          <idle>-0     (-----) [001] d..2 24576.091212: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
112526  surfaceflinger-23896 (23896) [001] .... 24576.091220: binder_transaction_received: transaction=1671548
112527  HwBinder:598_3-633   (  598) [002] d..2 24576.091291: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112528          <idle>-0     (-----) [002] d..1 24576.091310: cpu_idle: state=0 cpu_id=2
112529  surfaceflinger-23896 (23896) [001] d..2 24576.091642: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
112530          <idle>-0     (-----) [001] d..1 24576.091662: cpu_idle: state=0 cpu_id=1
112531 crtc_commit:111-253   (  253) [003] d..2 24576.091727: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
112532          <idle>-0     (-----) [003] d..1 24576.091739: cpu_idle: state=0 cpu_id=3
112533          <idle>-0     (-----) [001] ...1 24576.094043: cpu_idle: state=4294967295 cpu_id=1
112534          <idle>-0     (-----) [001] d..1 24576.094047: cpu_idle: state=0 cpu_id=1
112535          <idle>-0     (-----) [003] d.s2 24576.094243: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112536          <idle>-0     (-----) [003] dns3 24576.094261: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112537          <idle>-0     (-----) [003] dns3 24576.094267: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
112538          <idle>-0     (-----) [003] dns4 24576.094298: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
112539          <idle>-0     (-----) [003] .n.1 24576.094315: cpu_idle: state=4294967295 cpu_id=3
112540          <idle>-0     (-----) [003] d..2 24576.094324: 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
112541     rcu_preempt-7     (    7) [003] d..2 24576.094334: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
112542     rcu_preempt-7     (    7) [003] d..3 24576.094347: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
112543     rcu_preempt-7     (    7) [003] d..2 24576.094357: 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
112544         rcuop/0-10    (   10) [003] d..2 24576.094360: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
112545         rcuop/0-10    (   10) [003] d..3 24576.094392: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
112546         rcuop/0-10    (   10) [003] d..2 24576.094394: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112547         rcuop/0-10    (   10) [003] d..3 24576.094406: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112548         rcuop/0-10    (   10) [003] d..2 24576.094414: 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
112549         rcuop/1-21    (   21) [003] d..2 24576.094426: 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
112550     rcu_preempt-7     (    7) [003] d..2 24576.094437: 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
112551  kworker/u16:16-25995 (25995) [003] d..2 24576.094644: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
112552          <idle>-0     (-----) [003] d.s4 24576.094690: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
112553          <idle>-0     (-----) [003] d.s5 24576.094699: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
112554          <idle>-0     (-----) [003] dns5 24576.094704: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
112555          <idle>-0     (-----) [003] d..2 24576.094716: 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
112556  kworker/u16:16-25995 (25995) [003] .... 24576.094773: clk_set_rate: l3_cluster0_vote_clk 300000000
112557  kworker/u16:16-25995 (25995) [003] .... 24576.094778: clk_set_rate: l3_clk 300000000
112558  kworker/u16:16-25995 (25995) [003] d..2 24576.094828: 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
112559          <idle>-0     (-----) [003] d..1 24576.094850: cpu_idle: state=0 cpu_id=3
112560          <idle>-0     (-----) [000] d.h5 24576.096992: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
112561          <idle>-0     (-----) [000] dnh6 24576.097007: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
112562          <idle>-0     (-----) [000] dnh5 24576.097012: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
112563          <idle>-0     (-----) [000] dnh6 24576.097026: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
112564          <idle>-0     (-----) [003] .n.1 24576.097034: cpu_idle: state=4294967295 cpu_id=3
112565          <idle>-0     (-----) [000] .n.1 24576.097042: cpu_idle: state=4294967295 cpu_id=0
112566          <idle>-0     (-----) [003] d..2 24576.097046: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
112567          <idle>-0     (-----) [000] d..2 24576.097054: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
112568  crtc_event:111-254   (  254) [000] d..2 24576.097088: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112569          <idle>-0     (-----) [000] d..1 24576.097100: cpu_idle: state=0 cpu_id=0
112570 crtc_commit:111-253   (  253) [003] d..2 24576.097216: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
112571          <idle>-0     (-----) [003] d..1 24576.097226: cpu_idle: state=0 cpu_id=3
112572          <idle>-0     (-----) [003] d.H3 24576.097672: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
112573          <idle>-0     (-----) [006] dnh2 24576.097696: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
112574          <idle>-0     (-----) [003] d.s3 24576.097696: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
112575          <idle>-0     (-----) [006] .n.1 24576.097700: cpu_idle: state=4294967295 cpu_id=6
112576          <idle>-0     (-----) [006] d..2 24576.097706: 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
112577          <idle>-0     (-----) [003] d.s4 24576.097713: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
112578          <idle>-0     (-----) [000] .n.1 24576.097720: cpu_idle: state=4294967295 cpu_id=0
112579          <idle>-0     (-----) [003] d.s3 24576.097720: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
112580         sugov:4-560   (  560) [006] d..2 24576.097721: 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
112581          <idle>-0     (-----) [006] d..1 24576.097727: cpu_idle: state=0 cpu_id=6
112582          <idle>-0     (-----) [000] d..2 24576.097730: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
112583          <idle>-0     (-----) [003] dns4 24576.097741: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
112584          <idle>-0     (-----) [003] dns3 24576.097754: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
112585  crtc_event:111-254   (  254) [000] d..2 24576.097762: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112586          <idle>-0     (-----) [003] dns4 24576.097771: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
112587          <idle>-0     (-----) [000] d..1 24576.097772: cpu_idle: state=0 cpu_id=0
112588          <idle>-0     (-----) [003] .n.1 24576.097784: cpu_idle: state=4294967295 cpu_id=3
112589          <idle>-0     (-----) [003] d..2 24576.097794: 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
112590     kworker/3:1-12662 (12662) [003] d..2 24576.097835: 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
112591  kworker/u16:16-25995 (25995) [003] d..2 24576.097915: 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
112592          <idle>-0     (-----) [003] d..1 24576.097927: cpu_idle: state=0 cpu_id=3
112593          <idle>-0     (-----) [006] ...1 24576.098742: cpu_idle: state=4294967295 cpu_id=6
112594          <idle>-0     (-----) [006] d..1 24576.098745: cpu_idle: state=0 cpu_id=6
112595          <idle>-0     (-----) [000] d.h5 24576.099321: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
112596          <idle>-0     (-----) [000] d.h6 24576.099341: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
112597          <idle>-0     (-----) [003] .n.1 24576.099346: cpu_idle: state=4294967295 cpu_id=3
112598          <idle>-0     (-----) [003] d..2 24576.099355: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
112599          <idle>-0     (-----) [000] ...1 24576.099357: cpu_idle: state=4294967295 cpu_id=0
112600          <idle>-0     (-----) [000] d..1 24576.099363: cpu_idle: state=0 cpu_id=0
112601 crtc_commit:111-253   (  253) [003] d..2 24576.099434: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112602          <idle>-0     (-----) [003] d..1 24576.099443: cpu_idle: state=0 cpu_id=3
112603          <idle>-0     (-----) [000] d.h5 24576.099628: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
112604          <idle>-0     (-----) [000] dnh6 24576.099639: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
112605          <idle>-0     (-----) [000] .n.1 24576.099654: cpu_idle: state=4294967295 cpu_id=0
112606          <idle>-0     (-----) [000] d..2 24576.099664: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
112607  crtc_event:111-254   (  254) [000] d..2 24576.099689: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112608          <idle>-0     (-----) [000] d..1 24576.099700: cpu_idle: state=0 cpu_id=0
112609          <idle>-0     (-----) [003] d.s2 24576.100916: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112610          <idle>-0     (-----) [003] dns3 24576.100937: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112611          <idle>-0     (-----) [003] .n.1 24576.100947: cpu_idle: state=4294967295 cpu_id=3
112612          <idle>-0     (-----) [003] d..2 24576.100956: 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
112613     rcu_preempt-7     (    7) [003] d..2 24576.100966: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
112614     rcu_preempt-7     (    7) [003] d..3 24576.100982: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
112615     rcu_preempt-7     (    7) [003] d..2 24576.100993: 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
112616         rcuop/0-10    (   10) [003] d..2 24576.100997: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
112617         rcuop/0-10    (   10) [003] d..3 24576.101011: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
112618         rcuop/0-10    (   10) [003] d..2 24576.101019: 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
112619         rcuop/1-21    (   21) [003] d..2 24576.101050: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112620          <idle>-0     (-----) [003] d..1 24576.101065: cpu_idle: state=0 cpu_id=3
112621          <idle>-0     (-----) [002] d.h2 24576.101227: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
112622          <idle>-0     (-----) [002] dnh3 24576.101245: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
112623          <idle>-0     (-----) [002] .n.1 24576.101254: cpu_idle: state=4294967295 cpu_id=2
112624          <idle>-0     (-----) [002] d..2 24576.101265: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
112625        DispSync-23904 (23896) [002] d..1 24576.101289: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
112626        DispSync-23904 (23896) [002] d..2 24576.101306: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
112627          <idle>-0     (-----) [003] .n.1 24576.101312: cpu_idle: state=4294967295 cpu_id=3
112628          <idle>-0     (-----) [003] d..2 24576.101323: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
112629        DispSync-23904 (23896) [002] d..2 24576.101344: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112630          <idle>-0     (-----) [002] d..1 24576.101358: cpu_idle: state=0 cpu_id=2
112631  appEventThread-23905 (23896) [003] d..3 24576.101367: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
112632  appEventThread-23905 (23896) [003] d..4 24576.101398: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
112633          <idle>-0     (-----) [000] .n.1 24576.101403: cpu_idle: state=4294967295 cpu_id=0
112634          <idle>-0     (-----) [000] d..2 24576.101419: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
112635  appEventThread-23905 (23896) [003] d..2 24576.101439: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112636          <idle>-0     (-----) [003] d..1 24576.101455: cpu_idle: state=0 cpu_id=3
112637 s.nexuslauncher-24827 (24827) [000] .... 24576.101695: binder_transaction: transaction=1671549 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
112638 s.nexuslauncher-24827 (24827) [000] d..4 24576.101706: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
112639 s.nexuslauncher-24827 (24827) [000] d..5 24576.101746: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
112640          <idle>-0     (-----) [001] .n.1 24576.101751: cpu_idle: state=4294967295 cpu_id=1
112641          <idle>-0     (-----) [001] d..2 24576.101770: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
112642  Binder:23896_5-25989 (23896) [001] .... 24576.101780: binder_transaction_received: transaction=1671549
112643  Binder:23896_5-25989 (23896) [001] d..1 24576.101816: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
112644  Binder:23896_5-25989 (23896) [001] d..2 24576.101840: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
112645          <idle>-0     (-----) [003] .n.1 24576.101845: cpu_idle: state=4294967295 cpu_id=3
112646          <idle>-0     (-----) [003] d..2 24576.101857: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
112647 s.nexuslauncher-24827 (24827) [000] d..2 24576.101861: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112648          <idle>-0     (-----) [000] d..1 24576.101882: cpu_idle: state=0 cpu_id=0
112649  Binder:23896_5-25989 (23896) [001] d..2 24576.101890: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
112650  appEventThread-23905 (23896) [003] d..2 24576.101897: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112651          <idle>-0     (-----) [001] d..1 24576.101908: cpu_idle: state=0 cpu_id=1
112652          <idle>-0     (-----) [003] d..1 24576.101910: cpu_idle: state=0 cpu_id=3
112653          <idle>-0     (-----) [003] ...1 24576.103518: cpu_idle: state=4294967295 cpu_id=3
112654          <idle>-0     (-----) [003] d..1 24576.103522: cpu_idle: state=0 cpu_id=3
112655          <idle>-0     (-----) [001] d..2 24576.104680: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
112656          <idle>-0     (-----) [001] dn.3 24576.104703: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
112657          <idle>-0     (-----) [001] .n.1 24576.104708: cpu_idle: state=4294967295 cpu_id=1
112658          <idle>-0     (-----) [001] d..2 24576.104725: 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
112659     ksoftirqd/1-18    (   18) [001] d.s2 24576.104748: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
112660     ksoftirqd/1-18    (   18) [001] d.s3 24576.104793: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
112661     ksoftirqd/1-18    (   18) [001] d..2 24576.104811: 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
112662  kworker/u16:16-25995 (25995) [001] d..2 24576.104910: 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
112663          <idle>-0     (-----) [001] d..1 24576.104926: cpu_idle: state=0 cpu_id=1
112664          <idle>-0     (-----) [002] d.h2 24576.105230: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
112665          <idle>-0     (-----) [002] dnh3 24576.105244: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
112666          <idle>-0     (-----) [002] .n.1 24576.105253: cpu_idle: state=4294967295 cpu_id=2
112667          <idle>-0     (-----) [002] d..2 24576.105263: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
112668        DispSync-23904 (23896) [002] d..1 24576.105276: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
112669        DispSync-23904 (23896) [002] d..2 24576.105293: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
112670          <idle>-0     (-----) [003] .n.1 24576.105298: cpu_idle: state=4294967295 cpu_id=3
112671          <idle>-0     (-----) [003] d..2 24576.105309: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
112672        DispSync-23904 (23896) [002] d..2 24576.105323: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112673          <idle>-0     (-----) [002] d..1 24576.105337: cpu_idle: state=0 cpu_id=2
112674   sfEventThread-23906 (23896) [003] d..3 24576.105342: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
112675   sfEventThread-23906 (23896) [003] d..4 24576.105365: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
112676          <idle>-0     (-----) [001] .n.1 24576.105372: cpu_idle: state=4294967295 cpu_id=1
112677          <idle>-0     (-----) [001] d..2 24576.105387: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
112678   sfEventThread-23906 (23896) [003] d..2 24576.105398: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112679          <idle>-0     (-----) [003] d..1 24576.105413: cpu_idle: state=0 cpu_id=3
112680  surfaceflinger-23896 (23896) [001] d..2 24576.105697: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
112681  surfaceflinger-23896 (23896) [001] d..3 24576.105749: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
112682  surfaceflinger-23896 (23896) [001] d..1 24576.105865: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
112683  surfaceflinger-23896 (23896) [001] d..2 24576.105887: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
112684          <idle>-0     (-----) [003] .n.1 24576.105894: cpu_idle: state=4294967295 cpu_id=3
112685          <idle>-0     (-----) [003] d..2 24576.105905: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
112686   sfEventThread-23906 (23896) [003] d..2 24576.105960: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
112687         rcuop/0-10    (   10) [003] d..2 24576.105965: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112688         rcuop/0-10    (   10) [003] d..3 24576.105983: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112689  surfaceflinger-23896 (23896) [001] ...1 24576.105985: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
112690  surfaceflinger-23896 (23896) [001] ...1 24576.105992: tracing_mark_write: E|23896
112691         rcuop/0-10    (   10) [003] d..2 24576.105994: 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
112692     rcu_preempt-7     (    7) [003] d..2 24576.106016: 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
112693          <idle>-0     (-----) [003] d..1 24576.106028: cpu_idle: state=0 cpu_id=3
112694  surfaceflinger-23896 (23896) [001] .... 24576.106041: binder_transaction: transaction=1671550 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
112695  surfaceflinger-23896 (23896) [001] ...2 24576.106066: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
112696  surfaceflinger-23896 (23896) [001] d..4 24576.106073: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
112697  surfaceflinger-23896 (23896) [001] d..5 24576.106100: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
112698          <idle>-0     (-----) [002] .n.1 24576.106106: cpu_idle: state=4294967295 cpu_id=2
112699          <idle>-0     (-----) [002] d..2 24576.106118: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
112700  HwBinder:598_3-633   (  598) [002] .... 24576.106129: binder_transaction_received: transaction=1671550
112701  surfaceflinger-23896 (23896) [001] d..2 24576.106138: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
112702          <idle>-0     (-----) [001] d..1 24576.106160: cpu_idle: state=0 cpu_id=1
112703  HwBinder:598_3-633   (  598) [002] ...1 24576.106174: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
112704  HwBinder:598_3-633   (  598) [002] ...1 24576.106309: tracing_mark_write: B|598|HWCSession::PresentDisplay::
112705  HwBinder:598_3-633   (  598) [002] ...1 24576.106500: tracing_mark_write: B|598|HWDeviceDRM::Commit::
112706  HwBinder:598_3-633   (  598) [002] ...1 24576.106516: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
112707  HwBinder:598_3-633   (  598) [002] d..2 24576.107160: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
112708  HwBinder:598_3-633   (  598) [002] d..3 24576.107189: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
112709          <idle>-0     (-----) [003] .n.1 24576.107195: cpu_idle: state=4294967295 cpu_id=3
112710          <idle>-0     (-----) [003] d..2 24576.107206: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
112711  HwBinder:598_3-633   (  598) [002] ...1 24576.107300: tracing_mark_write: E|598
112712  HwBinder:598_3-633   (  598) [002] ...1 24576.107306: tracing_mark_write: E|598
112713  HwBinder:598_3-633   (  598) [002] ...1 24576.107372: tracing_mark_write: E|598
112714  HwBinder:598_3-633   (  598) [002] ...1 24576.107422: tracing_mark_write: E|598
112715  HwBinder:598_3-633   (  598) [002] .... 24576.107439: binder_transaction: transaction=1671551 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
112716  HwBinder:598_3-633   (  598) [002] d..2 24576.107466: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
112717  HwBinder:598_3-633   (  598) [002] d..3 24576.107488: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
112718  HwBinder:598_3-633   (  598) [002] .... 24576.107495: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
112719          <idle>-0     (-----) [001] .n.1 24576.107495: cpu_idle: state=4294967295 cpu_id=1
112720          <idle>-0     (-----) [001] d..2 24576.107506: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
112721  surfaceflinger-23896 (23896) [001] .... 24576.107518: binder_transaction_received: transaction=1671551
112722  HwBinder:598_3-633   (  598) [002] d..2 24576.107637: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112723          <idle>-0     (-----) [002] d..1 24576.107657: cpu_idle: state=0 cpu_id=2
112724  surfaceflinger-23896 (23896) [001] d..2 24576.107953: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
112725          <idle>-0     (-----) [001] d..1 24576.107975: cpu_idle: state=0 cpu_id=1
112726 crtc_commit:111-253   (  253) [003] d..2 24576.108087: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
112727          <idle>-0     (-----) [003] d..1 24576.108101: cpu_idle: state=0 cpu_id=3
112728          <idle>-0     (-----) [003] d.s2 24576.110914: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112729          <idle>-0     (-----) [003] dns3 24576.110934: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112730          <idle>-0     (-----) [003] .n.1 24576.110951: cpu_idle: state=4294967295 cpu_id=3
112731          <idle>-0     (-----) [003] d..2 24576.110960: 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
112732     rcu_preempt-7     (    7) [003] d..2 24576.110971: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
112733     rcu_preempt-7     (    7) [003] d..3 24576.110986: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
112734     rcu_preempt-7     (    7) [003] d..2 24576.110997: 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
112735         rcuop/0-10    (   10) [003] d..2 24576.111001: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
112736         rcuop/0-10    (   10) [003] d..3 24576.111013: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
112737         rcuop/0-10    (   10) [003] d..2 24576.111016: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112738         rcuop/0-10    (   10) [003] d..3 24576.111027: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112739         rcuop/0-10    (   10) [003] d..2 24576.111035: 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
112740         rcuop/1-21    (   21) [003] d..2 24576.111047: 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
112741     rcu_preempt-7     (    7) [003] d..2 24576.111074: 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
112742          <idle>-0     (-----) [003] d..1 24576.111089: cpu_idle: state=0 cpu_id=3
112743          <idle>-0     (-----) [000] d.h5 24576.113468: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
112744          <idle>-0     (-----) [000] dnh6 24576.113485: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
112745          <idle>-0     (-----) [000] dnh5 24576.113490: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
112746          <idle>-0     (-----) [000] dnh6 24576.113504: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
112747          <idle>-0     (-----) [003] .n.1 24576.113511: cpu_idle: state=4294967295 cpu_id=3
112748          <idle>-0     (-----) [000] .n.1 24576.113520: cpu_idle: state=4294967295 cpu_id=0
112749          <idle>-0     (-----) [003] d..2 24576.113523: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
112750          <idle>-0     (-----) [000] d..2 24576.113534: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
112751  crtc_event:111-254   (  254) [000] d..2 24576.113568: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112752          <idle>-0     (-----) [000] d..1 24576.113582: cpu_idle: state=0 cpu_id=0
112753 crtc_commit:111-253   (  253) [003] d..2 24576.113685: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
112754          <idle>-0     (-----) [003] d..1 24576.113695: cpu_idle: state=0 cpu_id=3
112755          <idle>-0     (-----) [003] d.s3 24576.114248: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
112756          <idle>-0     (-----) [003] d.s4 24576.114268: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
112757          <idle>-0     (-----) [003] d.s3 24576.114273: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
112758          <idle>-0     (-----) [000] .n.1 24576.114274: cpu_idle: state=4294967295 cpu_id=0
112759          <idle>-0     (-----) [000] d..2 24576.114286: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
112760          <idle>-0     (-----) [003] dns4 24576.114308: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
112761  crtc_event:111-254   (  254) [000] d..2 24576.114321: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112762          <idle>-0     (-----) [003] .n.1 24576.114324: cpu_idle: state=4294967295 cpu_id=3
112763          <idle>-0     (-----) [000] d..1 24576.114332: cpu_idle: state=0 cpu_id=0
112764          <idle>-0     (-----) [003] d..2 24576.114334: 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
112765  kworker/u16:16-25995 (25995) [003] d..2 24576.114428: 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
112766          <idle>-0     (-----) [003] d..1 24576.114440: cpu_idle: state=0 cpu_id=3
112767          <idle>-0     (-----) [000] d.h5 24576.115797: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
112768          <idle>-0     (-----) [000] d.h6 24576.115814: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
112769          <idle>-0     (-----) [003] .n.1 24576.115823: cpu_idle: state=4294967295 cpu_id=3
112770          <idle>-0     (-----) [000] ...1 24576.115831: cpu_idle: state=4294967295 cpu_id=0
112771          <idle>-0     (-----) [003] d..2 24576.115832: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
112772          <idle>-0     (-----) [000] d..1 24576.115837: cpu_idle: state=0 cpu_id=0
112773 crtc_commit:111-253   (  253) [003] d..2 24576.115905: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112774          <idle>-0     (-----) [003] d..1 24576.115915: cpu_idle: state=0 cpu_id=3
112775          <idle>-0     (-----) [000] d.h5 24576.116101: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
112776          <idle>-0     (-----) [000] dnh6 24576.116112: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
112777          <idle>-0     (-----) [000] .n.1 24576.116128: cpu_idle: state=4294967295 cpu_id=0
112778          <idle>-0     (-----) [000] d..2 24576.116138: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
112779  crtc_event:111-254   (  254) [000] d..2 24576.116163: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112780          <idle>-0     (-----) [000] d..1 24576.116173: cpu_idle: state=0 cpu_id=0
112781          <idle>-0     (-----) [003] d.H3 24576.117659: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
112782          <idle>-0     (-----) [003] d.H3 24576.117678: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
112783          <idle>-0     (-----) [006] dnh2 24576.117684: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
112784          <idle>-0     (-----) [002] d.h2 24576.117685: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
112785          <idle>-0     (-----) [006] .n.1 24576.117688: cpu_idle: state=4294967295 cpu_id=6
112786          <idle>-0     (-----) [006] d..2 24576.117693: 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
112787          <idle>-0     (-----) [003] d.H4 24576.117701: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
112788         sugov:4-560   (  560) [006] d..2 24576.117713: 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
112789          <idle>-0     (-----) [003] d.s2 24576.117717: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112790          <idle>-0     (-----) [006] d..1 24576.117719: cpu_idle: state=0 cpu_id=6
112791          <idle>-0     (-----) [002] dnh3 24576.117723: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
112792          <idle>-0     (-----) [002] .n.1 24576.117740: cpu_idle: state=4294967295 cpu_id=2
112793          <idle>-0     (-----) [002] d..2 24576.117753: 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
112794          <idle>-0     (-----) [003] dns3 24576.117771: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
112795          <idle>-0     (-----) [003] .n.1 24576.117784: cpu_idle: state=4294967295 cpu_id=3
112796          <idle>-0     (-----) [003] d..2 24576.117794: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
112797         sugov:0-559   (  559) [002] .... 24576.117805: clk_set_rate: pwrcl_clk 652800000
112798        DispSync-23904 (23896) [003] d..1 24576.117816: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
112799         sugov:0-559   (  559) [002] .... 24576.117819: clk_set_rate: cpu3_pwrcl_clk 979200000
112800         sugov:0-559   (  559) [002] .... 24576.117831: clk_set_rate: cpu2_pwrcl_clk 979200000
112801        DispSync-23904 (23896) [003] d..2 24576.117841: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
112802         sugov:0-559   (  559) [002] .... 24576.117841: clk_set_rate: cpu1_pwrcl_clk 979200000
112803          <idle>-0     (-----) [001] .n.1 24576.117848: cpu_idle: state=4294967295 cpu_id=1
112804         sugov:0-559   (  559) [002] .... 24576.117850: clk_set_rate: cpu0_pwrcl_clk 652800000
112805          <idle>-0     (-----) [001] d..2 24576.117866: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
112806        DispSync-23904 (23896) [003] d..2 24576.117890: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112807          <idle>-0     (-----) [003] d..1 24576.117911: cpu_idle: state=0 cpu_id=3
112808  appEventThread-23905 (23896) [001] d..3 24576.117925: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
112809  appEventThread-23905 (23896) [001] d..4 24576.117960: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
112810          <idle>-0     (-----) [000] .n.1 24576.117966: cpu_idle: state=4294967295 cpu_id=0
112811         sugov:0-559   (  559) [002] .... 24576.117969: cpu_frequency: state=652800 cpu_id=0
112812          <idle>-0     (-----) [000] d..2 24576.117983: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
112813         sugov:0-559   (  559) [002] .... 24576.118007: cpu_frequency: state=652800 cpu_id=1
112814         sugov:0-559   (  559) [002] .... 24576.118013: cpu_frequency: state=652800 cpu_id=2
112815         sugov:0-559   (  559) [002] .... 24576.118018: cpu_frequency: state=652800 cpu_id=3
112816  appEventThread-23905 (23896) [001] d..2 24576.118018: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
112817          <idle>-0     (-----) [001] d..1 24576.118040: cpu_idle: state=0 cpu_id=1
112818         sugov:0-559   (  559) [002] d..2 24576.118049: 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
112819     rcu_preempt-7     (    7) [002] d..2 24576.118095: 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
112820          <idle>-0     (-----) [002] d..1 24576.118114: cpu_idle: state=0 cpu_id=2
112821 s.nexuslauncher-24827 (24827) [000] .... 24576.118245: binder_transaction: transaction=1671552 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
112822 s.nexuslauncher-24827 (24827) [000] d..4 24576.118258: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
112823 s.nexuslauncher-24827 (24827) [000] d..5 24576.118295: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
112824          <idle>-0     (-----) [001] .n.1 24576.118302: cpu_idle: state=4294967295 cpu_id=1
112825          <idle>-0     (-----) [001] d..2 24576.118322: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
112826  Binder:23896_5-25989 (23896) [001] .... 24576.118333: binder_transaction_received: transaction=1671552
112827  Binder:23896_5-25989 (23896) [001] d..1 24576.118373: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
112828  Binder:23896_5-25989 (23896) [001] d..2 24576.118411: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
112829          <idle>-0     (-----) [003] .n.1 24576.118419: cpu_idle: state=4294967295 cpu_id=3
112830 s.nexuslauncher-24827 (24827) [000] d..2 24576.118430: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112831          <idle>-0     (-----) [003] d..2 24576.118432: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
112832          <idle>-0     (-----) [000] d..1 24576.118455: cpu_idle: state=0 cpu_id=0
112833  Binder:23896_5-25989 (23896) [001] d..2 24576.118473: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
112834          <idle>-0     (-----) [001] d..1 24576.118494: cpu_idle: state=0 cpu_id=1
112835  appEventThread-23905 (23896) [003] d..2 24576.118494: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112836          <idle>-0     (-----) [003] d..1 24576.118510: cpu_idle: state=0 cpu_id=3
112837          <idle>-0     (-----) [006] ...1 24576.118736: cpu_idle: state=4294967295 cpu_id=6
112838          <idle>-0     (-----) [006] d..1 24576.118739: cpu_idle: state=0 cpu_id=6
112839          <idle>-0     (-----) [003] d.h2 24576.121704: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
112840          <idle>-0     (-----) [003] dnh3 24576.121720: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
112841          <idle>-0     (-----) [003] .n.1 24576.121732: cpu_idle: state=4294967295 cpu_id=3
112842          <idle>-0     (-----) [003] d..2 24576.121746: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
112843        DispSync-23904 (23896) [003] d..1 24576.121766: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
112844        DispSync-23904 (23896) [003] d..2 24576.121795: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
112845          <idle>-0     (-----) [002] .n.1 24576.121803: cpu_idle: state=4294967295 cpu_id=2
112846          <idle>-0     (-----) [002] d..2 24576.121821: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
112847        DispSync-23904 (23896) [003] d..2 24576.121843: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112848          <idle>-0     (-----) [003] d..2 24576.121850: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
112849          <idle>-0     (-----) [003] dn.3 24576.121866: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
112850   sfEventThread-23906 (23896) [002] d..3 24576.121876: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
112851          <idle>-0     (-----) [003] d..2 24576.121879: 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
112852   sfEventThread-23906 (23896) [002] d..4 24576.121904: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
112853          <idle>-0     (-----) [001] .n.1 24576.121911: cpu_idle: state=4294967295 cpu_id=1
112854     ksoftirqd/3-34    (   34) [003] d..2 24576.121922: 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
112855          <idle>-0     (-----) [001] d..2 24576.121927: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
112856          <idle>-0     (-----) [003] d..1 24576.121939: cpu_idle: state=0 cpu_id=3
112857   sfEventThread-23906 (23896) [002] d..2 24576.121955: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112858          <idle>-0     (-----) [002] d..1 24576.121970: cpu_idle: state=0 cpu_id=2
112859  surfaceflinger-23896 (23896) [001] d..2 24576.122121: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
112860          <idle>-0     (-----) [001] d..1 24576.122143: cpu_idle: state=0 cpu_id=1
112861          <idle>-0     (-----) [002] d.s2 24576.124256: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
112862          <idle>-0     (-----) [002] dns3 24576.124283: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
112863          <idle>-0     (-----) [002] dns3 24576.124292: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
112864          <idle>-0     (-----) [002] dns4 24576.124343: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
112865          <idle>-0     (-----) [002] .n.1 24576.124371: cpu_idle: state=4294967295 cpu_id=2
112866          <idle>-0     (-----) [002] d..2 24576.124385: 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
112867     rcu_preempt-7     (    7) [002] d..2 24576.124396: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
112868     rcu_preempt-7     (    7) [002] d..3 24576.124441: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
112869     rcu_preempt-7     (    7) [002] d..2 24576.124457: 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
112870         rcuop/0-10    (   10) [002] d..2 24576.124463: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
112871         rcuop/0-10    (   10) [002] d..3 24576.124505: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
112872         rcuop/0-10    (   10) [002] d..2 24576.124518: 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
112873         rcuop/1-21    (   21) [002] d..2 24576.124536: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
112874  kworker/u16:16-25995 (25995) [002] d..2 24576.124672: 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
112875          <idle>-0     (-----) [002] d..1 24576.124693: cpu_idle: state=0 cpu_id=2
112876          <idle>-0     (-----) [000] d.h5 24576.129948: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
112877          <idle>-0     (-----) [000] dnh6 24576.129972: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
112878          <idle>-0     (-----) [000] .n.1 24576.129997: cpu_idle: state=4294967295 cpu_id=0
112879          <idle>-0     (-----) [000] d..2 24576.130015: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
112880  crtc_event:111-254   (  254) [000] d..2 24576.130067: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112881          <idle>-0     (-----) [000] d..2 24576.130073: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
112882          <idle>-0     (-----) [000] dn.3 24576.130091: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
112883          <idle>-0     (-----) [000] d..2 24576.130103: 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
112884     ksoftirqd/0-3     (    3) [000] d..2 24576.130139: 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
112885          <idle>-0     (-----) [000] d..1 24576.130158: cpu_idle: state=0 cpu_id=0
112886          <idle>-0     (-----) [000] d..2 24576.132594: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
112887          <idle>-0     (-----) [000] dn.3 24576.132607: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
112888          <idle>-0     (-----) [000] .n.1 24576.132612: cpu_idle: state=4294967295 cpu_id=0
112889          <idle>-0     (-----) [000] d..2 24576.132631: 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
112890     ksoftirqd/0-3     (    3) [000] d.s2 24576.132642: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
112891     ksoftirqd/0-3     (    3) [000] d.s3 24576.132697: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
112892     ksoftirqd/0-3     (    3) [000] d..2 24576.132714: 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
112893  kworker/u16:16-25995 (25995) [000] d..2 24576.132978: 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
112894          <idle>-0     (-----) [000] d..1 24576.133000: cpu_idle: state=0 cpu_id=0
112895          <idle>-0     (-----) [003] d.s3 24576.133009: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
112896          <idle>-0     (-----) [003] d.s4 24576.133024: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
112897          <idle>-0     (-----) [003] d.s4 24576.133036: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
112898          <idle>-0     (-----) [000] .n.1 24576.133044: cpu_idle: state=4294967295 cpu_id=0
112899          <idle>-0     (-----) [003] ...1 24576.133052: cpu_idle: state=4294967295 cpu_id=3
112900          <idle>-0     (-----) [003] d..1 24576.133060: cpu_idle: state=0 cpu_id=3
112901          <idle>-0     (-----) [000] d..2 24576.133062: 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
112902  kworker/u16:16-25995 (25995) [000] d..2 24576.133105: 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
112903          <idle>-0     (-----) [000] d..1 24576.133121: cpu_idle: state=0 cpu_id=0
112904          <idle>-0     (-----) [003] d.h2 24576.134162: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
112905          <idle>-0     (-----) [003] dnh3 24576.134181: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
112906          <idle>-0     (-----) [003] .n.1 24576.134193: cpu_idle: state=4294967295 cpu_id=3
112907          <idle>-0     (-----) [003] d..2 24576.134206: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
112908        DispSync-23904 (23896) [003] d.s2 24576.134249: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
112909        DispSync-23904 (23896) [003] d.s3 24576.134271: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
112910          <idle>-0     (-----) [000] .n.1 24576.134277: cpu_idle: state=4294967295 cpu_id=0
112911          <idle>-0     (-----) [000] d..2 24576.134298: 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
112912        DispSync-23904 (23896) [003] d..1 24576.134301: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
112913        DispSync-23904 (23896) [003] d..2 24576.134332: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
112914          <idle>-0     (-----) [002] .n.1 24576.134341: cpu_idle: state=4294967295 cpu_id=2
112915          <idle>-0     (-----) [002] d..2 24576.134359: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
112916        DispSync-23904 (23896) [003] d..2 24576.134409: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112917  appEventThread-23905 (23896) [002] d..3 24576.134410: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
112918          <idle>-0     (-----) [003] d..1 24576.134428: cpu_idle: state=0 cpu_id=3
112919  appEventThread-23905 (23896) [002] d..4 24576.134448: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
112920          <idle>-0     (-----) [001] .n.1 24576.134456: cpu_idle: state=4294967295 cpu_id=1
112921          <idle>-0     (-----) [001] d..2 24576.134479: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
112922  kworker/u16:16-25995 (25995) [000] d..2 24576.134524: 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
112923  appEventThread-23905 (23896) [002] d..2 24576.134529: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112924          <idle>-0     (-----) [000] d..1 24576.134543: cpu_idle: state=0 cpu_id=0
112925          <idle>-0     (-----) [002] d..1 24576.134549: cpu_idle: state=0 cpu_id=2
112926 s.nexuslauncher-24827 (24827) [001] .... 24576.134760: binder_transaction: transaction=1671553 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
112927 s.nexuslauncher-24827 (24827) [001] d..4 24576.134776: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
112928 s.nexuslauncher-24827 (24827) [001] d..5 24576.134827: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
112929          <idle>-0     (-----) [000] .n.1 24576.134832: cpu_idle: state=4294967295 cpu_id=0
112930          <idle>-0     (-----) [000] d..2 24576.134850: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
112931  Binder:23896_5-25989 (23896) [000] .... 24576.134866: binder_transaction_received: transaction=1671553
112932  Binder:23896_5-25989 (23896) [000] d..1 24576.134916: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
112933  Binder:23896_5-25989 (23896) [000] d..2 24576.134947: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
112934          <idle>-0     (-----) [002] .n.1 24576.134954: cpu_idle: state=4294967295 cpu_id=2
112935          <idle>-0     (-----) [002] d..2 24576.134971: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
112936 s.nexuslauncher-24827 (24827) [001] d..2 24576.134973: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
112937          <idle>-0     (-----) [001] d..1 24576.135000: cpu_idle: state=0 cpu_id=1
112938  Binder:23896_5-25989 (23896) [000] d..2 24576.135011: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112939  appEventThread-23905 (23896) [002] d..2 24576.135025: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112940          <idle>-0     (-----) [000] d..1 24576.135033: cpu_idle: state=0 cpu_id=0
112941          <idle>-0     (-----) [002] d..1 24576.135041: cpu_idle: state=0 cpu_id=2
112942          <idle>-0     (-----) [003] d.h2 24576.138185: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
112943          <idle>-0     (-----) [003] dnh3 24576.138211: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
112944          <idle>-0     (-----) [003] dnh3 24576.138310: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
112945          <idle>-0     (-----) [003] dnh3 24576.138327: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
112946          <idle>-0     (-----) [006] dnh2 24576.138335: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
112947          <idle>-0     (-----) [006] .n.1 24576.138339: cpu_idle: state=4294967295 cpu_id=6
112948          <idle>-0     (-----) [003] dnh4 24576.138345: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
112949          <idle>-0     (-----) [006] d..2 24576.138346: 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
112950          <idle>-0     (-----) [002] .n.1 24576.138353: cpu_idle: state=4294967295 cpu_id=2
112951          <idle>-0     (-----) [003] .n.1 24576.138356: cpu_idle: state=4294967295 cpu_id=3
112952         sugov:4-560   (  560) [006] d..2 24576.138361: 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
112953          <idle>-0     (-----) [006] d..2 24576.138366: sched_waking: comm=ksoftirqd/6 pid=58 prio=120 target_cpu=006
112954          <idle>-0     (-----) [002] d..2 24576.138368: 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
112955          <idle>-0     (-----) [003] d..2 24576.138371: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
112956          <idle>-0     (-----) [006] dn.3 24576.138380: sched_wakeup: comm=ksoftirqd/6 pid=58 prio=120 target_cpu=006
112957          <idle>-0     (-----) [006] d..2 24576.138387: 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
112958        DispSync-23904 (23896) [003] d..1 24576.138388: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
112959     ksoftirqd/6-58    (   58) [006] d.s2 24576.138403: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
112960         sugov:0-559   (  559) [002] d..2 24576.138406: 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
112961     ksoftirqd/6-58    (   58) [006] d.s3 24576.138413: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
112962        DispSync-23904 (23896) [003] d..2 24576.138418: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
112963     ksoftirqd/6-58    (   58) [006] d..2 24576.138424: sched_switch: prev_comm=ksoftirqd/6 prev_pid=58 prev_prio=120 prev_state=S ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
112964          <idle>-0     (-----) [002] d..2 24576.138426: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
112965   sfEventThread-23906 (23896) [002] d..1 24576.138462: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
112966        DispSync-23904 (23896) [003] d..2 24576.138469: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112967          <idle>-0     (-----) [003] d..1 24576.138488: cpu_idle: state=0 cpu_id=3
112968          <idle>-0     (-----) [003] .n.1 24576.138494: cpu_idle: state=4294967295 cpu_id=3
112969   sfEventThread-23906 (23896) [002] d..2 24576.138495: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
112970     kworker/6:0-21469 (21469) [006] d..2 24576.138496: 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
112971          <idle>-0     (-----) [006] d..1 24576.138504: cpu_idle: state=0 cpu_id=6
112972          <idle>-0     (-----) [003] d..2 24576.138511: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
112973   sfEventThread-23906 (23896) [002] d..2 24576.138532: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112974          <idle>-0     (-----) [002] d..1 24576.138550: cpu_idle: state=0 cpu_id=2
112975        DispSync-23904 (23896) [003] d..2 24576.138550: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112976          <idle>-0     (-----) [003] d..1 24576.138564: cpu_idle: state=0 cpu_id=3
112977          <idle>-0     (-----) [006] ...1 24576.139519: cpu_idle: state=4294967295 cpu_id=6
112978          <idle>-0     (-----) [006] d..1 24576.139522: cpu_idle: state=0 cpu_id=6
112979          <idle>-0     (-----) [000] d..2 24576.149067: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
112980          <idle>-0     (-----) [000] dn.3 24576.149089: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
112981          <idle>-0     (-----) [000] .n.1 24576.149094: cpu_idle: state=4294967295 cpu_id=0
112982          <idle>-0     (-----) [000] d..2 24576.149115: 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
112983     ksoftirqd/0-3     (    3) [000] d.s2 24576.149129: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
112984     ksoftirqd/0-3     (    3) [000] d.s3 24576.149156: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
112985     ksoftirqd/0-3     (    3) [000] d..2 24576.149180: 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
112986  kworker/u16:16-25995 (25995) [000] d..2 24576.149362: 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
112987          <idle>-0     (-----) [000] d..1 24576.149384: cpu_idle: state=0 cpu_id=0
112988          <idle>-0     (-----) [003] d.h2 24576.150574: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
112989          <idle>-0     (-----) [003] dnh3 24576.150592: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
112990          <idle>-0     (-----) [003] .n.1 24576.150604: cpu_idle: state=4294967295 cpu_id=3
112991          <idle>-0     (-----) [003] d..2 24576.150616: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
112992        DispSync-23904 (23896) [003] d..1 24576.150632: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
112993        DispSync-23904 (23896) [003] d..2 24576.150652: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
112994          <idle>-0     (-----) [002] .n.1 24576.150659: cpu_idle: state=4294967295 cpu_id=2
112995          <idle>-0     (-----) [002] d..2 24576.150676: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
112996        DispSync-23904 (23896) [003] d..2 24576.150692: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112997          <idle>-0     (-----) [003] d..1 24576.150710: cpu_idle: state=0 cpu_id=3
112998  appEventThread-23905 (23896) [002] d..3 24576.150716: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
112999  appEventThread-23905 (23896) [002] d..4 24576.150757: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
113000          <idle>-0     (-----) [000] .n.1 24576.150764: cpu_idle: state=4294967295 cpu_id=0
113001          <idle>-0     (-----) [000] d..2 24576.150782: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
113002  appEventThread-23905 (23896) [002] d..2 24576.150806: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113003          <idle>-0     (-----) [002] d..1 24576.150825: cpu_idle: state=0 cpu_id=2
113004 s.nexuslauncher-24827 (24827) [000] .... 24576.151119: binder_transaction: transaction=1671554 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
113005 s.nexuslauncher-24827 (24827) [000] d..4 24576.151134: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
113006 s.nexuslauncher-24827 (24827) [000] d..5 24576.151181: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
113007          <idle>-0     (-----) [001] .n.1 24576.151189: cpu_idle: state=4294967295 cpu_id=1
113008          <idle>-0     (-----) [001] d..2 24576.151213: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
113009  Binder:23896_5-25989 (23896) [001] .... 24576.151228: binder_transaction_received: transaction=1671554
113010  Binder:23896_5-25989 (23896) [001] d..1 24576.151271: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
113011  Binder:23896_5-25989 (23896) [001] d..2 24576.151299: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
113012          <idle>-0     (-----) [002] .n.1 24576.151306: cpu_idle: state=4294967295 cpu_id=2
113013          <idle>-0     (-----) [002] d..2 24576.151322: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
113014 s.nexuslauncher-24827 (24827) [000] d..2 24576.151332: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113015          <idle>-0     (-----) [000] d..1 24576.151359: cpu_idle: state=0 cpu_id=0
113016  Binder:23896_5-25989 (23896) [001] d..2 24576.151368: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
113017  appEventThread-23905 (23896) [002] d..2 24576.151372: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113018          <idle>-0     (-----) [002] d..1 24576.151387: cpu_idle: state=0 cpu_id=2
113019          <idle>-0     (-----) [001] d..1 24576.151390: cpu_idle: state=0 cpu_id=1
113020          <idle>-0     (-----) [001] d.H3 24576.161012: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
113021          <idle>-0     (-----) [001] d.H3 24576.161034: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
113022          <idle>-0     (-----) [006] dnh2 24576.161041: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
113023          <idle>-0     (-----) [006] .n.1 24576.161045: cpu_idle: state=4294967295 cpu_id=6
113024          <idle>-0     (-----) [006] d..2 24576.161051: 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
113025          <idle>-0     (-----) [001] d.H4 24576.161055: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
113026          <idle>-0     (-----) [002] .n.1 24576.161061: cpu_idle: state=4294967295 cpu_id=2
113027         sugov:4-560   (  560) [006] d..2 24576.161067: 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
113028          <idle>-0     (-----) [006] d..1 24576.161074: cpu_idle: state=0 cpu_id=6
113029          <idle>-0     (-----) [002] d..2 24576.161075: 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
113030          <idle>-0     (-----) [001] d.s3 24576.161077: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
113031         sugov:0-559   (  559) [002] d..2 24576.161108: 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
113032          <idle>-0     (-----) [002] d..1 24576.161122: cpu_idle: state=0 cpu_id=2
113033          <idle>-0     (-----) [001] dns4 24576.161127: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
113034          <idle>-0     (-----) [001] .n.1 24576.161163: cpu_idle: state=4294967295 cpu_id=1
113035          <idle>-0     (-----) [001] d..2 24576.161182: 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
113036  kworker/u16:16-25995 (25995) [001] d..2 24576.161189: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
113037  kworker/u16:16-25995 (25995) [001] d..3 24576.161237: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113038  kworker/u16:16-25995 (25995) [001] d..2 24576.161363: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
113039  kworker/u16:10-23868 (23868) [001] d.h2 24576.161459: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
113040  kworker/u16:10-23868 (23868) [001] d.h3 24576.161483: sched_blocked_reason: pid=25995 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
113041  kworker/u16:10-23868 (23868) [001] dnh3 24576.161492: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
113042  kworker/u16:10-23868 (23868) [001] d..2 24576.161513: 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
113043  kworker/u16:16-25995 (25995) [001] d..2 24576.161648: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
113044  kworker/u16:10-23868 (23868) [001] d..2 24576.161676: 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
113045          <idle>-0     (-----) [001] d..1 24576.161694: cpu_idle: state=0 cpu_id=1
113046          <idle>-0     (-----) [001] d.h2 24576.161750: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
113047          <idle>-0     (-----) [001] d.h3 24576.161762: sched_blocked_reason: pid=25995 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
113048          <idle>-0     (-----) [001] dnh3 24576.161768: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
113049          <idle>-0     (-----) [001] .n.1 24576.161780: cpu_idle: state=4294967295 cpu_id=1
113050          <idle>-0     (-----) [001] d..2 24576.161796: 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
113051  kworker/u16:16-25995 (25995) [001] d..2 24576.161919: 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
113052          <idle>-0     (-----) [001] d..1 24576.161934: cpu_idle: state=0 cpu_id=1
113053          <idle>-0     (-----) [001] d.h2 24576.162012: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
113054          <idle>-0     (-----) [001] d.h3 24576.162024: sched_blocked_reason: pid=25995 iowait=0 caller=a6xx_wait_for_lowest_idle+0x2a0/0x730
113055          <idle>-0     (-----) [001] dnh3 24576.162030: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
113056          <idle>-0     (-----) [001] .n.1 24576.162041: cpu_idle: state=4294967295 cpu_id=1
113057          <idle>-0     (-----) [001] d..2 24576.162055: 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
113058          <idle>-0     (-----) [006] ...1 24576.162086: cpu_idle: state=4294967295 cpu_id=6
113059  kworker/u16:16-25995 (25995) [001] d..2 24576.162087: 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
113060          <idle>-0     (-----) [006] d..1 24576.162089: cpu_idle: state=0 cpu_id=6
113061          <idle>-0     (-----) [001] d..1 24576.162100: cpu_idle: state=0 cpu_id=1
113062          <idle>-0     (-----) [001] d.h2 24576.162181: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
113063          <idle>-0     (-----) [001] d.h3 24576.162190: sched_blocked_reason: pid=25995 iowait=0 caller=a6xx_wait_for_lowest_idle+0x2a0/0x730
113064          <idle>-0     (-----) [001] dnh3 24576.162197: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
113065          <idle>-0     (-----) [001] .n.1 24576.162208: cpu_idle: state=4294967295 cpu_id=1
113066          <idle>-0     (-----) [001] d..2 24576.162221: 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
113067  kworker/u16:16-25995 (25995) [001] d..2 24576.162253: 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
113068          <idle>-0     (-----) [001] d..1 24576.162264: cpu_idle: state=0 cpu_id=1
113069          <idle>-0     (-----) [001] d.h2 24576.162348: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
113070          <idle>-0     (-----) [001] d.h3 24576.162357: sched_blocked_reason: pid=25995 iowait=0 caller=a6xx_wait_for_lowest_idle+0x2a0/0x730
113071          <idle>-0     (-----) [001] dnh3 24576.162362: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
113072          <idle>-0     (-----) [001] .n.1 24576.162373: cpu_idle: state=4294967295 cpu_id=1
113073          <idle>-0     (-----) [001] d..2 24576.162388: 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
113074  kworker/u16:16-25995 (25995) [001] d..2 24576.162683: 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
113075          <idle>-0     (-----) [001] d..1 24576.162704: cpu_idle: state=0 cpu_id=1
113076          <idle>-0     (-----) [003] d.s3 24576.162726: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
113077          <idle>-0     (-----) [003] d.s4 24576.162743: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
113078          <idle>-0     (-----) [003] d.s4 24576.162755: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
113079          <idle>-0     (-----) [001] .n.1 24576.162763: cpu_idle: state=4294967295 cpu_id=1
113080          <idle>-0     (-----) [003] ...1 24576.162771: cpu_idle: state=4294967295 cpu_id=3
113081          <idle>-0     (-----) [003] d..1 24576.162778: cpu_idle: state=0 cpu_id=3
113082          <idle>-0     (-----) [001] d..2 24576.162780: 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
113083  kworker/u16:16-25995 (25995) [001] d..2 24576.162865: 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
113084          <idle>-0     (-----) [001] d..1 24576.162879: cpu_idle: state=0 cpu_id=1
113085          <idle>-0     (-----) [001] d.h2 24576.162960: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
113086          <idle>-0     (-----) [001] d.h3 24576.162974: sched_blocked_reason: pid=25995 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
113087          <idle>-0     (-----) [001] dnh3 24576.162980: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
113088          <idle>-0     (-----) [001] .n.1 24576.162993: cpu_idle: state=4294967295 cpu_id=1
113089          <idle>-0     (-----) [001] d..2 24576.163008: 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
113090  kworker/u16:16-25995 (25995) [001] d..2 24576.163139: 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
113091          <idle>-0     (-----) [001] d..1 24576.163152: cpu_idle: state=0 cpu_id=1
113092          <idle>-0     (-----) [001] d.h2 24576.163232: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
113093          <idle>-0     (-----) [001] d.h3 24576.163251: sched_blocked_reason: pid=25995 iowait=0 caller=a6xx_rpmh_gpu_pwrctrl+0x13d4/0x3168
113094          <idle>-0     (-----) [001] dnh3 24576.163258: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
113095          <idle>-0     (-----) [001] .n.1 24576.163269: cpu_idle: state=4294967295 cpu_id=1
113096          <idle>-0     (-----) [001] d..2 24576.163285: 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
113097  kworker/u16:16-25995 (25995) [001] d..1 24576.163321: clk_disable: gpu_cc_cx_gmu_clk
113098  kworker/u16:16-25995 (25995) [001] d..1 24576.163371: clk_disable: gpu_cc_gmu_clk_src
113099  kworker/u16:16-25995 (25995) [001] d..1 24576.163436: clk_disable: gcc_gpu_gpll0_div_clk_src
113100  kworker/u16:16-25995 (25995) [001] d..1 24576.163966: clk_disable: gpll0_out_even
113101  kworker/u16:16-25995 (25995) [001] d..1 24576.164069: clk_disable: gpu_cc_cxo_clk
113102  kworker/u16:16-25995 (25995) [001] d..1 24576.164097: clk_disable: gcc_ddrss_gpu_axi_clk
113103  kworker/u16:16-25995 (25995) [001] d..1 24576.164129: clk_disable: gcc_gpu_memnoc_gfx_clk
113104  kworker/u16:16-25995 (25995) [001] d..2 24576.164334: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113105  kworker/u16:16-25995 (25995) [001] d..3 24576.164360: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113106          <idle>-0     (-----) [002] ...1 24576.164447: cpu_idle: state=4294967295 cpu_id=2
113107          <idle>-0     (-----) [003] ...1 24576.164455: cpu_idle: state=4294967295 cpu_id=3
113108          <idle>-0     (-----) [004] ...1 24576.164456: cpu_idle: state=4294967295 cpu_id=4
113109          <idle>-0     (-----) [002] d..1 24576.164457: cpu_idle: state=2 cpu_id=2
113110          <idle>-0     (-----) [005] ...1 24576.164457: cpu_idle: state=4294967295 cpu_id=5
113111          <idle>-0     (-----) [003] d..1 24576.164460: cpu_idle: state=0 cpu_id=3
113112          <idle>-0     (-----) [006] ...1 24576.164461: cpu_idle: state=4294967295 cpu_id=6
113113          <idle>-0     (-----) [004] d..1 24576.164464: cpu_idle: state=2 cpu_id=4
113114          <idle>-0     (-----) [005] d..1 24576.164464: cpu_idle: state=2 cpu_id=5
113115          <idle>-0     (-----) [007] ...1 24576.164464: cpu_idle: state=4294967295 cpu_id=7
113116          <idle>-0     (-----) [006] d..1 24576.164465: cpu_idle: state=2 cpu_id=6
113117          <idle>-0     (-----) [007] d..1 24576.164470: cpu_idle: state=2 cpu_id=7
113118  kworker/u16:16-25995 (25995) [001] d..2 24576.165185: 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
113119  kworker/u16:10-23868 (23868) [001] d..2 24576.165222: 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
113120          <idle>-0     (-----) [001] d..1 24576.165246: cpu_idle: state=0 cpu_id=1
113121          <idle>-0     (-----) [000] ...1 24576.165528: cpu_idle: state=4294967295 cpu_id=0
113122          <idle>-0     (-----) [000] d..1 24576.165538: cpu_idle: state=0 cpu_id=0
113123          <idle>-0     (-----) [001] ...1 24576.166370: cpu_idle: state=4294967295 cpu_id=1
113124          <idle>-0     (-----) [001] d..1 24576.166377: cpu_idle: state=0 cpu_id=1
113125          <idle>-0     (-----) [003] d.h2 24576.167069: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
113126          <idle>-0     (-----) [003] dnh3 24576.167090: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
113127          <idle>-0     (-----) [003] .n.1 24576.167102: cpu_idle: state=4294967295 cpu_id=3
113128          <idle>-0     (-----) [003] d..2 24576.167115: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
113129        DispSync-23904 (23896) [003] d..1 24576.167130: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
113130        DispSync-23904 (23896) [003] d..2 24576.167150: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
113131        DispSync-23904 (23896) [003] d..2 24576.167190: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
113132          <idle>-0     (-----) [003] d..1 24576.167210: cpu_idle: state=2 cpu_id=3
113133          <idle>-0     (-----) [002] .n.1 24576.167707: cpu_idle: state=4294967295 cpu_id=2
113134          <idle>-0     (-----) [002] d..2 24576.167746: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
113135  appEventThread-23905 (23896) [002] d..3 24576.167811: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
113136  appEventThread-23905 (23896) [002] d..4 24576.167845: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
113137          <idle>-0     (-----) [000] .n.1 24576.167852: cpu_idle: state=4294967295 cpu_id=0
113138          <idle>-0     (-----) [000] d..2 24576.167877: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
113139  appEventThread-23905 (23896) [002] d..2 24576.167913: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113140          <idle>-0     (-----) [002] d..2 24576.167922: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
113141          <idle>-0     (-----) [002] dn.3 24576.167943: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
113142          <idle>-0     (-----) [002] d..2 24576.167958: 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
113143     ksoftirqd/2-26    (   26) [002] d..2 24576.168000: 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
113144          <idle>-0     (-----) [002] d..1 24576.168024: cpu_idle: state=0 cpu_id=2
113145 s.nexuslauncher-24827 (24827) [000] .... 24576.168096: binder_transaction: transaction=1671555 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
113146 s.nexuslauncher-24827 (24827) [000] d..4 24576.168111: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
113147 s.nexuslauncher-24827 (24827) [000] d..5 24576.168154: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
113148          <idle>-0     (-----) [001] .n.1 24576.168159: cpu_idle: state=4294967295 cpu_id=1
113149          <idle>-0     (-----) [001] d..2 24576.168178: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
113150  Binder:23896_5-25989 (23896) [001] .... 24576.168189: binder_transaction_received: transaction=1671555
113151  Binder:23896_5-25989 (23896) [001] d..1 24576.168234: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
113152  Binder:23896_5-25989 (23896) [001] d..2 24576.168261: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
113153          <idle>-0     (-----) [002] .n.1 24576.168270: cpu_idle: state=4294967295 cpu_id=2
113154          <idle>-0     (-----) [002] d..2 24576.168283: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
113155 s.nexuslauncher-24827 (24827) [000] d..2 24576.168288: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113156          <idle>-0     (-----) [000] d..1 24576.168314: cpu_idle: state=0 cpu_id=0
113157  Binder:23896_5-25989 (23896) [001] d..2 24576.168323: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
113158  appEventThread-23905 (23896) [002] d..2 24576.168339: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113159          <idle>-0     (-----) [001] d..1 24576.168346: cpu_idle: state=0 cpu_id=1
113160          <idle>-0     (-----) [002] d..1 24576.168358: cpu_idle: state=0 cpu_id=2
113161          <idle>-0     (-----) [001] ...1 24576.169469: cpu_idle: state=4294967295 cpu_id=1
113162          <idle>-0     (-----) [001] d..1 24576.169475: cpu_idle: state=0 cpu_id=1
113163          <idle>-0     (-----) [002] d..2 24576.174378: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
113164          <idle>-0     (-----) [002] dn.3 24576.174392: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
113165          <idle>-0     (-----) [002] .n.1 24576.174397: cpu_idle: state=4294967295 cpu_id=2
113166          <idle>-0     (-----) [002] d..2 24576.174415: 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
113167     ksoftirqd/2-26    (   26) [002] d.s2 24576.174427: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113168     ksoftirqd/2-26    (   26) [002] d.s3 24576.174484: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
113169     ksoftirqd/2-26    (   26) [002] d..2 24576.174506: 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
113170  kworker/u16:10-23868 (23868) [002] d..2 24576.174634: 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
113171          <idle>-0     (-----) [002] d..1 24576.174654: cpu_idle: state=2 cpu_id=2
113172          <idle>-0     (-----) [000] d..2 24576.182001: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
113173          <idle>-0     (-----) [000] dn.3 24576.182017: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
113174          <idle>-0     (-----) [000] dnH3 24576.182104: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
113175          <idle>-0     (-----) [000] dnH3 24576.182124: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
113176          <idle>-0     (-----) [000] dnH4 24576.182143: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
113177          <idle>-0     (-----) [000] dns3 24576.182159: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
113178          <idle>-0     (-----) [000] dns4 24576.182210: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
113179          <idle>-0     (-----) [000] .n.1 24576.182222: cpu_idle: state=4294967295 cpu_id=0
113180          <idle>-0     (-----) [000] d..2 24576.182244: 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
113181     ksoftirqd/0-3     (    3) [000] d..2 24576.182260: 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
113182  kworker/u16:10-23868 (23868) [000] d..2 24576.182497: 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
113183          <idle>-0     (-----) [002] .n.1 24576.182510: cpu_idle: state=4294967295 cpu_id=2
113184          <idle>-0     (-----) [000] d..1 24576.182518: cpu_idle: state=0 cpu_id=0
113185          <idle>-0     (-----) [002] d..2 24576.182538: 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
113186         sugov:0-559   (  559) [002] d..2 24576.182587: 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
113187          <idle>-0     (-----) [002] d..1 24576.182609: cpu_idle: state=0 cpu_id=2
113188          <idle>-0     (-----) [003] d.s3 24576.182857: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
113189          <idle>-0     (-----) [003] d.s4 24576.182915: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
113190          <idle>-0     (-----) [003] dns4 24576.182926: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
113191          <idle>-0     (-----) [003] .n.1 24576.182939: cpu_idle: state=4294967295 cpu_id=3
113192          <idle>-0     (-----) [003] d..2 24576.182961: 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
113193  kworker/u16:10-23868 (23868) [003] d..2 24576.183021: 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
113194          <idle>-0     (-----) [003] d..1 24576.183040: cpu_idle: state=0 cpu_id=3
113195          <idle>-0     (-----) [006] dnh2 24576.183218: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
113196          <idle>-0     (-----) [006] .n.1 24576.183231: cpu_idle: state=4294967295 cpu_id=6
113197          <idle>-0     (-----) [006] d..2 24576.183248: 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
113198         sugov:4-560   (  560) [006] d..2 24576.183278: 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
113199          <idle>-0     (-----) [006] d..1 24576.183294: cpu_idle: state=2 cpu_id=6
113200          <idle>-0     (-----) [003] d.h2 24576.183528: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
113201          <idle>-0     (-----) [003] dnh3 24576.183550: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
113202          <idle>-0     (-----) [003] .n.1 24576.183615: cpu_idle: state=4294967295 cpu_id=3
113203          <idle>-0     (-----) [003] d..2 24576.183628: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
113204        DispSync-23904 (23896) [003] d..1 24576.183663: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
113205        DispSync-23904 (23896) [003] d..2 24576.183685: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
113206          <idle>-0     (-----) [002] .n.1 24576.183692: cpu_idle: state=4294967295 cpu_id=2
113207          <idle>-0     (-----) [002] d..2 24576.183706: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
113208        DispSync-23904 (23896) [003] d..2 24576.183733: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
113209          <idle>-0     (-----) [003] d..1 24576.183754: cpu_idle: state=2 cpu_id=3
113210  appEventThread-23905 (23896) [002] d..3 24576.183769: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
113211  appEventThread-23905 (23896) [002] d..4 24576.183804: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
113212          <idle>-0     (-----) [000] .n.1 24576.183811: cpu_idle: state=4294967295 cpu_id=0
113213          <idle>-0     (-----) [000] d..2 24576.183830: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
113214  appEventThread-23905 (23896) [002] d..2 24576.183859: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113215          <idle>-0     (-----) [002] d..1 24576.183882: cpu_idle: state=0 cpu_id=2
113216 s.nexuslauncher-24827 (24827) [000] .... 24576.184058: binder_transaction: transaction=1671556 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
113217 s.nexuslauncher-24827 (24827) [000] d..4 24576.184074: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
113218 s.nexuslauncher-24827 (24827) [000] d..5 24576.184112: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
113219          <idle>-0     (-----) [001] .n.1 24576.184116: cpu_idle: state=4294967295 cpu_id=1
113220          <idle>-0     (-----) [001] d..2 24576.184138: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
113221  Binder:23896_5-25989 (23896) [001] .... 24576.184147: binder_transaction_received: transaction=1671556
113222  Binder:23896_5-25989 (23896) [001] d..1 24576.184180: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
113223  Binder:23896_5-25989 (23896) [001] d..2 24576.184208: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
113224          <idle>-0     (-----) [002] .n.1 24576.184217: cpu_idle: state=4294967295 cpu_id=2
113225          <idle>-0     (-----) [002] d..2 24576.184234: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
113226  Binder:23896_5-25989 (23896) [001] d.s2 24576.184260: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
113227 s.nexuslauncher-24827 (24827) [000] d..2 24576.184263: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113228  Binder:23896_5-25989 (23896) [001] d.s3 24576.184281: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
113229  appEventThread-23905 (23896) [002] d..2 24576.184284: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113230          <idle>-0     (-----) [002] d..1 24576.184300: cpu_idle: state=0 cpu_id=2
113231  Binder:23896_5-25989 (23896) [001] d..1 24576.184303: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
113232  Binder:23896_5-25989 (23896) [001] d..2 24576.184323: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
113233          <idle>-0     (-----) [002] .n.1 24576.184330: cpu_idle: state=4294967295 cpu_id=2
113234          <idle>-0     (-----) [002] d..2 24576.184341: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
113235          <idle>-0     (-----) [000] d..1 24576.184354: cpu_idle: state=0 cpu_id=0
113236  Binder:23896_5-25989 (23896) [001] d..2 24576.184385: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
113237  appEventThread-23905 (23896) [002] d..2 24576.184397: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113238          <idle>-0     (-----) [001] d..1 24576.184408: cpu_idle: state=0 cpu_id=1
113239          <idle>-0     (-----) [002] d..1 24576.184413: cpu_idle: state=0 cpu_id=2
113240          <idle>-0     (-----) [003] .n.1 24576.184609: cpu_idle: state=4294967295 cpu_id=3
113241          <idle>-0     (-----) [003] d..2 24576.184642: 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
113242  kworker/u16:10-23868 (23868) [003] d..2 24576.184772: 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
113243          <idle>-0     (-----) [003] d..1 24576.184798: cpu_idle: state=0 cpu_id=3
113244          <idle>-0     (-----) [002] ...1 24576.185853: cpu_idle: state=4294967295 cpu_id=2
113245          <idle>-0     (-----) [002] d..1 24576.185860: cpu_idle: state=2 cpu_id=2
113246          <idle>-0     (-----) [000] d.s3 24576.187585: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
113247          <idle>-0     (-----) [000] d.s4 24576.187614: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
113248          <idle>-0     (-----) [003] .n.1 24576.187623: cpu_idle: state=4294967295 cpu_id=3
113249          <idle>-0     (-----) [000] ...1 24576.187637: cpu_idle: state=4294967295 cpu_id=0
113250          <idle>-0     (-----) [003] d..2 24576.187641: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
113251          <idle>-0     (-----) [000] d..1 24576.187648: cpu_idle: state=0 cpu_id=0
113252 crtc_commit:111-253   (  253) [003] d..2 24576.187806: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
113253          <idle>-0     (-----) [003] d..1 24576.187826: cpu_idle: state=0 cpu_id=3
113254          <idle>-0     (-----) [003] d..2 24576.193845: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
113255          <idle>-0     (-----) [003] dn.3 24576.193866: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
113256          <idle>-0     (-----) [003] .n.1 24576.193872: cpu_idle: state=4294967295 cpu_id=3
113257          <idle>-0     (-----) [003] d..2 24576.193893: 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
113258     ksoftirqd/3-34    (   34) [003] d..2 24576.193938: 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
113259          <idle>-0     (-----) [003] d..1 24576.193953: cpu_idle: state=2 cpu_id=3
113260          <idle>-0     (-----) [000] d.h5 24576.198450: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
113261          <idle>-0     (-----) [000] d.h6 24576.198476: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
113262          <idle>-0     (-----) [000] d..2 24576.198492: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
113263          <idle>-0     (-----) [000] dn.3 24576.198507: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
113264          <idle>-0     (-----) [000] dnH3 24576.198587: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
113265          <idle>-0     (-----) [000] dnH3 24576.198604: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
113266          <idle>-0     (-----) [000] dnH4 24576.198618: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
113267          <idle>-0     (-----) [000] dns3 24576.198632: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
113268          <idle>-0     (-----) [000] dns4 24576.198682: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
113269          <idle>-0     (-----) [000] .n.1 24576.198696: cpu_idle: state=4294967295 cpu_id=0
113270          <idle>-0     (-----) [000] d..2 24576.198719: 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
113271     ksoftirqd/0-3     (    3) [000] d..2 24576.198733: 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
113272          <idle>-0     (-----) [003] .n.1 24576.198771: cpu_idle: state=4294967295 cpu_id=3
113273          <idle>-0     (-----) [003] d..2 24576.198799: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
113274          <idle>-0     (-----) [001] ...1 24576.198888: cpu_idle: state=4294967295 cpu_id=1
113275          <idle>-0     (-----) [001] d..1 24576.198897: cpu_idle: state=2 cpu_id=1
113276          <idle>-0     (-----) [002] .n.1 24576.198924: cpu_idle: state=4294967295 cpu_id=2
113277  kworker/u16:10-23868 (23868) [000] d..2 24576.198934: 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
113278          <idle>-0     (-----) [002] d..2 24576.198951: 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
113279          <idle>-0     (-----) [000] d..1 24576.198957: cpu_idle: state=2 cpu_id=0
113280         sugov:0-559   (  559) [002] d..2 24576.198997: 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
113281 crtc_commit:111-253   (  253) [003] d..1 24576.199005: clk_disable: disp_cc_mdss_byte0_intf_clk
113282          <idle>-0     (-----) [002] d..1 24576.199018: cpu_idle: state=2 cpu_id=2
113283 crtc_commit:111-253   (  253) [003] d..1 24576.199035: clk_disable: disp_cc_mdss_byte0_div_clk_src
113284 crtc_commit:111-253   (  253) [003] d..1 24576.199044: clk_disable: disp_cc_mdss_pclk0_clk
113285 crtc_commit:111-253   (  253) [003] d..1 24576.199063: clk_disable: disp_cc_mdss_pclk0_clk_src
113286 crtc_commit:111-253   (  253) [003] d..1 24576.199067: clk_disable: dsi0_phy_pll_out_dsiclk
113287 crtc_commit:111-253   (  253) [003] d..1 24576.199072: clk_disable: dsi0pll_pclk_src
113288 crtc_commit:111-253   (  253) [003] d..1 24576.199077: clk_disable: dsi0pll_pclk_src_mux
113289 crtc_commit:111-253   (  253) [003] d..1 24576.199082: clk_disable: dsi0pll_post_bit_div
113290 crtc_commit:111-253   (  253) [003] d..1 24576.199089: clk_disable: disp_cc_mdss_byte0_clk
113291 crtc_commit:111-253   (  253) [003] d..1 24576.199103: clk_disable: disp_cc_mdss_byte0_clk_src
113292 crtc_commit:111-253   (  253) [003] d..1 24576.199108: clk_disable: dsi0_phy_pll_out_byteclk
113293 crtc_commit:111-253   (  253) [003] d..1 24576.199111: clk_disable: dsi0pll_byteclk_src
113294 crtc_commit:111-253   (  253) [003] d..1 24576.199114: clk_disable: dsi0pll_bitclk_src
113295 crtc_commit:111-253   (  253) [003] d..1 24576.199118: clk_disable: dsi0pll_pll_out_div
113296 crtc_commit:111-253   (  253) [003] d..1 24576.199121: clk_disable: dsi0pll_vco_clk
113297 crtc_commit:111-253   (  253) [003] d..1 24576.199207: clk_disable: disp_cc_mdss_esc0_clk
113298 crtc_commit:111-253   (  253) [003] d..1 24576.199225: clk_disable: disp_cc_mdss_esc0_clk_src
113299 crtc_commit:111-253   (  253) [003] d..1 24576.199419: clk_disable: disp_cc_mdss_vsync_clk
113300 crtc_commit:111-253   (  253) [003] d..1 24576.199442: clk_disable: disp_cc_mdss_mdp_clk
113301 crtc_commit:111-253   (  253) [003] d..1 24576.199457: clk_disable: disp_cc_mdss_mdp_clk_src
113302 crtc_commit:111-253   (  253) [003] d..1 24576.199500: clk_disable: gcc_disp_gpll0_clk_src
113303          <idle>-0     (-----) [006] dnh2 24576.199614: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
113304          <idle>-0     (-----) [006] .n.1 24576.199623: cpu_idle: state=4294967295 cpu_id=6
113305          <idle>-0     (-----) [006] d..2 24576.199635: 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
113306         sugov:4-560   (  560) [006] d..2 24576.199658: 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
113307          <idle>-0     (-----) [006] d..1 24576.199669: cpu_idle: state=2 cpu_id=6
113308 crtc_commit:111-253   (  253) [003] d.h2 24576.200024: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
113309 crtc_commit:111-253   (  253) [003] d.h3 24576.200066: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
113310 crtc_commit:111-253   (  253) [003] d..1 24576.200137: clk_disable: disp_cc_mdss_axi_clk
113311 crtc_commit:111-253   (  253) [003] d..1 24576.200161: clk_disable: disp_cc_mdss_ahb_clk
113312 crtc_commit:111-253   (  253) [003] d..1 24576.200179: clk_disable: gcc_disp_axi_clk
113313 crtc_commit:111-253   (  253) [003] d..2 24576.200294: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
113314          <idle>-0     (-----) [003] d..1 24576.200314: cpu_idle: state=0 cpu_id=3
113315          <idle>-0     (-----) [001] .n.1 24576.200366: cpu_idle: state=4294967295 cpu_id=1
113316          <idle>-0     (-----) [003] d.h2 24576.200370: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
113317          <idle>-0     (-----) [003] dnh3 24576.200386: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
113318          <idle>-0     (-----) [003] dnh2 24576.200393: sched_waking: comm=LazyTaskWriterT pid=24117 prio=130 target_cpu=003
113319          <idle>-0     (-----) [001] d..2 24576.200400: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
113320        DispSync-23904 (23896) [001] d..1 24576.200431: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
113321          <idle>-0     (-----) [003] dnh3 24576.200464: sched_wakeup: comm=LazyTaskWriterT pid=24117 prio=130 target_cpu=001
113322        DispSync-23904 (23896) [001] d..2 24576.200466: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
113323          <idle>-0     (-----) [003] .n.1 24576.200479: cpu_idle: state=4294967295 cpu_id=3
113324          <idle>-0     (-----) [003] d..2 24576.200494: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
113325        DispSync-23904 (23896) [001] d..2 24576.200506: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=LazyTaskWriterT next_pid=24117 next_prio=130
113326 crtc_commit:111-253   (  253) [003] d..1 24576.200524: clk_disable: disp_cc_mdss_rscc_ahb_clk
113327 crtc_commit:111-253   (  253) [003] d..1 24576.200547: clk_disable: disp_cc_mdss_rscc_vsync_clk
113328 crtc_commit:111-253   (  253) [003] d..1 24576.200561: clk_disable: disp_cc_mdss_vsync_clk_src
113329          <idle>-0     (-----) [002] .n.1 24576.200758: cpu_idle: state=4294967295 cpu_id=2
113330          <idle>-0     (-----) [002] d..2 24576.200783: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
113331  appEventThread-23905 (23896) [002] d..3 24576.200846: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
113332 crtc_commit:111-253   (  253) [003] d..2 24576.200855: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
113333  appEventThread-23905 (23896) [002] d..4 24576.200881: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
113334          <idle>-0     (-----) [003] d.s4 24576.200941: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
113335          <idle>-0     (-----) [003] d.s5 24576.200970: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
113336  appEventThread-23905 (23896) [002] d..2 24576.201015: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
113337          <idle>-0     (-----) [003] d..1 24576.201020: cpu_idle: state=0 cpu_id=3
113338          <idle>-0     (-----) [000] .n.1 24576.201174: cpu_idle: state=4294967295 cpu_id=0
113339          <idle>-0     (-----) [000] d..2 24576.201206: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
113340 s.nexuslauncher-24827 (24827) [002] .... 24576.201280: binder_transaction: transaction=1671557 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
113341 s.nexuslauncher-24827 (24827) [002] d..4 24576.201295: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
113342 s.nexuslauncher-24827 (24827) [002] d..5 24576.201347: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=003
113343          <idle>-0     (-----) [003] .n.1 24576.201355: cpu_idle: state=4294967295 cpu_id=3
113344          <idle>-0     (-----) [003] d..2 24576.201375: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
113345  Binder:23896_5-25989 (23896) [003] .... 24576.201389: binder_transaction_received: transaction=1671557
113346  Binder:23896_5-25989 (23896) [003] d..1 24576.201440: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
113347  Binder:23896_5-25989 (23896) [003] dn.2 24576.201477: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
113348  Binder:23896_5-25989 (23896) [003] d..2 24576.201491: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
113349 s.nexuslauncher-24827 (24827) [002] d..2 24576.201511: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113350 crtc_commit:111-253   (  253) [000] d..2 24576.201524: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
113351  appEventThread-23905 (23896) [003] d.s3 24576.201537: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
113352          <idle>-0     (-----) [002] d..1 24576.201542: cpu_idle: state=0 cpu_id=2
113353          <idle>-0     (-----) [000] d..1 24576.201553: cpu_idle: state=0 cpu_id=0
113354  appEventThread-23905 (23896) [003] d.s4 24576.201554: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
113355  appEventThread-23905 (23896) [003] d..2 24576.201588: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
113356     ksoftirqd/3-34    (   34) [003] d.s2 24576.201604: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
113357     ksoftirqd/3-34    (   34) [003] d.s3 24576.201627: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
113358          <idle>-0     (-----) [000] .n.1 24576.201634: cpu_idle: state=4294967295 cpu_id=0
113359     ksoftirqd/3-34    (   34) [003] d..2 24576.201645: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
113360          <idle>-0     (-----) [000] d..2 24576.201649: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
113361  Binder:23896_5-25989 (23896) [003] d..1 24576.201655: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
113362  Binder:23896_5-25989 (23896) [003] d..2 24576.201679: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
113363          <idle>-0     (-----) [002] .n.1 24576.201691: cpu_idle: state=4294967295 cpu_id=2
113364 crtc_commit:111-253   (  253) [000] d..3 24576.201701: sched_waking: comm=SDM_EventThread pid=624 prio=111 target_cpu=000
113365          <idle>-0     (-----) [002] d..2 24576.201707: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
113366  Binder:23896_5-25989 (23896) [003] d..2 24576.201742: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
113367          <idle>-0     (-----) [003] d..1 24576.201769: cpu_idle: state=0 cpu_id=3
113368 crtc_commit:111-253   (  253) [000] d..4 24576.201779: sched_wakeup: comm=SDM_EventThread pid=624 prio=111 target_cpu=003
113369          <idle>-0     (-----) [003] .n.1 24576.201787: cpu_idle: state=4294967295 cpu_id=3
113370  appEventThread-23905 (23896) [002] d..2 24576.201787: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113371          <idle>-0     (-----) [003] d..2 24576.201804: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=624 next_prio=111
113372          <idle>-0     (-----) [002] d..1 24576.201809: cpu_idle: state=0 cpu_id=2
113373 crtc_commit:111-253   (  253) [000] d..2 24576.201819: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113374          <idle>-0     (-----) [000] d..1 24576.201839: cpu_idle: state=0 cpu_id=0
113375<...>-24117 ( 23968) [001] d..2 24576.201849: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
113376<...>-24117 ( 23968) [001] d..3 24576.201932: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
113377 SDM_EventThread-624   (  598) [003] d..2 24576.201975: sched_switch: prev_comm=SDM_EventThread prev_pid=624 prev_prio=111 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
113378         rcuop/0-10    (   10) [003] d..2 24576.201988: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
113379         rcuop/0-10    (   10) [003] d..3 24576.202048: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
113380         rcuop/0-10    (   10) [003] d..2 24576.202063: 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
113381     rcu_preempt-7     (    7) [003] d..2 24576.202098: 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
113382          <idle>-0     (-----) [003] d..1 24576.202119: cpu_idle: state=0 cpu_id=3
113383<...>-24117 ( 23968) [001] d..3 24576.205712: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
113384<...>-24117 ( 23968) [001] d..4 24576.205778: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113385<...>-24117 ( 23968) [001] d..3 24576.205817: sched_waking: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
113386<...>-24117 ( 23968) [001] dn.4 24576.205849: sched_wakeup: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
113387<...>-24117 ( 23968) [001] d..2 24576.205867: sched_switch: prev_comm=LazyTaskWriterT prev_pid=24117 prev_prio=130 prev_state=R+ ==> next_comm=kworker/1:1H next_pid=533 next_prio=100
113388    kworker/1:1H-533   (  533) [001] d..2 24576.205925: sched_switch: prev_comm=kworker/1:1H prev_pid=533 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
113389  kworker/u16:10-23868 (23868) [001] d..2 24576.206333: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=LazyTaskWriterT next_pid=24117 next_prio=130
113390<...>-24117 ( 23968) [001] d..2 24576.206399: sched_switch: prev_comm=LazyTaskWriterT prev_pid=24117 prev_prio=130 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
113391          <idle>-0     (-----) [001] d..1 24576.206432: cpu_idle: state=0 cpu_id=1
113392          <idle>-0     (-----) [003] d.s3 24576.207276: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113393          <idle>-0     (-----) [003] d.s4 24576.207293: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
113394          <idle>-0     (-----) [003] d.s4 24576.207305: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113395          <idle>-0     (-----) [001] .n.1 24576.207314: cpu_idle: state=4294967295 cpu_id=1
113396          <idle>-0     (-----) [003] ...1 24576.207318: cpu_idle: state=4294967295 cpu_id=3
113397          <idle>-0     (-----) [003] d..1 24576.207325: cpu_idle: state=0 cpu_id=3
113398          <idle>-0     (-----) [001] d..2 24576.207327: 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
113399  kworker/u16:10-23868 (23868) [001] d..2 24576.207487: 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
113400          <idle>-0     (-----) [001] d..1 24576.207500: cpu_idle: state=0 cpu_id=1
113401          <idle>-0     (-----) [003] d.s3 24576.207502: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113402          <idle>-0     (-----) [003] d.s4 24576.207515: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
113403          <idle>-0     (-----) [003] d.s4 24576.207526: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113404          <idle>-0     (-----) [001] .n.1 24576.207533: cpu_idle: state=4294967295 cpu_id=1
113405          <idle>-0     (-----) [003] ...1 24576.207536: cpu_idle: state=4294967295 cpu_id=3
113406          <idle>-0     (-----) [003] d..1 24576.207542: cpu_idle: state=0 cpu_id=3
113407          <idle>-0     (-----) [001] d..2 24576.207545: 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
113408          <idle>-0     (-----) [003] d.s2 24576.207586: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
113409  kworker/u16:10-23868 (23868) [001] d.s4 24576.207593: sched_waking: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
113410          <idle>-0     (-----) [003] dns3 24576.207607: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
113411  kworker/u16:10-23868 (23868) [001] dns5 24576.207609: sched_wakeup: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
113412  kworker/u16:10-23868 (23868) [001] dns4 24576.207616: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
113413          <idle>-0     (-----) [003] .n.1 24576.207621: cpu_idle: state=4294967295 cpu_id=3
113414          <idle>-0     (-----) [003] d..2 24576.207638: 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
113415  kworker/u16:10-23868 (23868) [001] dns5 24576.207678: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
113416  kworker/u16:10-23868 (23868) [001] dns4 24576.207693: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
113417     rcu_preempt-7     (    7) [003] d..2 24576.207698: 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
113418  kworker/u16:10-23868 (23868) [001] dns5 24576.207743: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
113419  kworker/u16:10-23868 (23868) [001] d..2 24576.207776: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1H next_pid=533 next_prio=100
113420    kworker/1:1H-533   (  533) [001] d..2 24576.207813: sched_switch: prev_comm=kworker/1:1H prev_pid=533 prev_prio=100 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
113421          <idle>-0     (-----) [002] ...1 24576.207822: cpu_idle: state=4294967295 cpu_id=2
113422     rcu_preempt-7     (    7) [001] d..2 24576.207823: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
113423          <idle>-0     (-----) [002] d..1 24576.207829: cpu_idle: state=2 cpu_id=2
113424          <idle>-0     (-----) [000] ...1 24576.207853: cpu_idle: state=4294967295 cpu_id=0
113425          <idle>-0     (-----) [000] d..1 24576.207860: cpu_idle: state=2 cpu_id=0
113426     rcu_preempt-7     (    7) [001] d..3 24576.207866: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
113427     rcu_preempt-7     (    7) [001] d..2 24576.207879: 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
113428         rcuop/0-10    (   10) [001] d..2 24576.207885: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
113429         rcuop/0-10    (   10) [001] d..3 24576.207928: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
113430         rcuop/0-10    (   10) [001] d..2 24576.207933: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
113431         rcuop/0-10    (   10) [001] d..3 24576.207948: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
113432         rcuop/0-10    (   10) [001] d..2 24576.207961: 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
113433         rcuop/1-21    (   21) [001] d..2 24576.207987: 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
113434  kworker/u16:16-25995 (25995) [003] d..2 24576.207993: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
113435     rcu_preempt-7     (    7) [001] d..2 24576.208004: 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
113436  kworker/u16:10-23868 (23868) [001] d..1 24576.208044: clk_enable: gcc_ufs_phy_axi_clk_src
113437          <idle>-0     (-----) [003] d.s4 24576.208045: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
113438  kworker/u16:10-23868 (23868) [001] d..1 24576.208061: clk_enable: gcc_ufs_phy_axi_clk
113439          <idle>-0     (-----) [003] d.s5 24576.208064: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
113440          <idle>-0     (-----) [003] dns5 24576.208071: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
113441  kworker/u16:10-23868 (23868) [001] d..1 24576.208072: clk_enable: gcc_ufs_phy_axi_hw_ctl_clk
113442          <idle>-0     (-----) [003] d..2 24576.208088: 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
113443  kworker/u16:10-23868 (23868) [001] d..1 24576.208088: clk_enable: gcc_aggre_ufs_phy_axi_clk
113444  kworker/u16:10-23868 (23868) [001] d..1 24576.208099: clk_enable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
113445  kworker/u16:10-23868 (23868) [001] d..1 24576.208112: clk_enable: gcc_ufs_phy_ahb_clk
113446  kworker/u16:10-23868 (23868) [001] d..1 24576.208133: clk_enable: gcc_ufs_phy_unipro_core_clk_src
113447  kworker/u16:10-23868 (23868) [001] d..1 24576.208142: clk_enable: gcc_ufs_phy_unipro_core_clk
113448  kworker/u16:10-23868 (23868) [001] d..1 24576.208152: clk_enable: gcc_ufs_phy_unipro_core_hw_ctl_clk
113449  kworker/u16:10-23868 (23868) [001] d..1 24576.208184: clk_enable: gcc_ufs_phy_ice_core_clk_src
113450  kworker/u16:10-23868 (23868) [001] d..1 24576.208194: clk_enable: gcc_ufs_phy_ice_core_clk
113451  kworker/u16:10-23868 (23868) [001] d..1 24576.208203: clk_enable: gcc_ufs_phy_ice_core_hw_ctl_clk
113452  kworker/u16:16-25995 (25995) [003] .... 24576.208235: clk_set_rate: l3_cluster0_vote_clk 480000000
113453  kworker/u16:16-25995 (25995) [003] .... 24576.208244: clk_set_rate: l3_clk 480000000
113454  kworker/u16:10-23868 (23868) [001] d..1 24576.208277: clk_enable: gcc_ufs_mem_clkref_clk
113455  kworker/u16:10-23868 (23868) [001] d..1 24576.208293: clk_enable: gcc_ufs_phy_phy_aux_clk_src
113456  kworker/u16:10-23868 (23868) [001] d..1 24576.208301: clk_enable: gcc_ufs_phy_phy_aux_clk
113457  kworker/u16:16-25995 (25995) [003] d..2 24576.208305: 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
113458  kworker/u16:10-23868 (23868) [001] d..1 24576.208312: clk_enable: gcc_ufs_phy_phy_aux_hw_ctl_clk
113459          <idle>-0     (-----) [003] d..1 24576.208328: cpu_idle: state=0 cpu_id=3
113460  kworker/u16:10-23868 (23868) [001] d..3 24576.208387: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
113461  kworker/u16:10-23868 (23868) [001] d..4 24576.208412: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
113462          <idle>-0     (-----) [003] .n.1 24576.208420: cpu_idle: state=4294967295 cpu_id=3
113463          <idle>-0     (-----) [003] d..2 24576.208435: 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
113464  kworker/u16:16-25995 (25995) [003] d..2 24576.208482: 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
113465          <idle>-0     (-----) [003] d..1 24576.208498: cpu_idle: state=0 cpu_id=3
113466  kworker/u16:10-23868 (23868) [001] d..2 24576.208555: 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
113467          <idle>-0     (-----) [001] d..1 24576.208574: cpu_idle: state=0 cpu_id=1
113468          <idle>-0     (-----) [000] ...1 24576.208626: cpu_idle: state=4294967295 cpu_id=0
113469          <idle>-0     (-----) [000] d..1 24576.208642: cpu_idle: state=0 cpu_id=0
113470          <idle>-0     (-----) [002] ...1 24576.208670: cpu_idle: state=4294967295 cpu_id=2
113471          <idle>-0     (-----) [002] d..1 24576.208686: cpu_idle: state=0 cpu_id=2
113472          <idle>-0     (-----) [001] d.h4 24576.209605: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113473          <idle>-0     (-----) [003] ...1 24576.209620: cpu_idle: state=4294967295 cpu_id=3
113474          <idle>-0     (-----) [001] dnh5 24576.209626: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113475          <idle>-0     (-----) [003] d..1 24576.209626: cpu_idle: state=0 cpu_id=3
113476          <idle>-0     (-----) [001] dns3 24576.209733: sched_waking: comm=LazyTaskWriterT pid=24117 prio=130 target_cpu=001
113477          <idle>-0     (-----) [001] dns4 24576.209750: sched_blocked_reason: pid=24117 iowait=1 caller=__filemap_fdatawait_range+0x120/0x184
113478          <idle>-0     (-----) [001] dns4 24576.209755: sched_wakeup: comm=LazyTaskWriterT pid=24117 prio=130 target_cpu=001
113479          <idle>-0     (-----) [001] dns4 24576.209788: sched_waking: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
113480          <idle>-0     (-----) [001] dns5 24576.209799: sched_wakeup: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
113481          <idle>-0     (-----) [001] .n.1 24576.209825: cpu_idle: state=4294967295 cpu_id=1
113482          <idle>-0     (-----) [001] d..2 24576.209839: 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
113483    kworker/1:1H-533   (  533) [001] d..2 24576.209857: sched_switch: prev_comm=kworker/1:1H prev_pid=533 prev_prio=100 prev_state=S ==> next_comm=LazyTaskWriterT next_pid=24117 next_prio=130
113484<...>-24117 ( 23968) [001] d..2 24576.210088: sched_switch: prev_comm=LazyTaskWriterT prev_pid=24117 prev_prio=130 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
113485  kworker/u16:10-23868 (23868) [001] d.s4 24576.210144: sched_waking: comm=LazyTaskWriterT pid=24117 prio=130 target_cpu=001
113486  kworker/u16:10-23868 (23868) [001] d.s5 24576.210164: sched_blocked_reason: pid=24117 iowait=1 caller=wait_on_node_pages_writeback+0x140/0x248
113487  kworker/u16:10-23868 (23868) [001] d.s5 24576.210172: sched_wakeup: comm=LazyTaskWriterT pid=24117 prio=130 target_cpu=001
113488  kworker/u16:10-23868 (23868) [001] d.s5 24576.210184: sched_waking: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
113489  kworker/u16:10-23868 (23868) [001] dns6 24576.210195: sched_wakeup: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
113490  kworker/u16:10-23868 (23868) [001] d..2 24576.210218: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1H next_pid=533 next_prio=100
113491    kworker/1:1H-533   (  533) [001] d..2 24576.210233: sched_switch: prev_comm=kworker/1:1H prev_pid=533 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
113492  kworker/u16:10-23868 (23868) [001] d..2 24576.210257: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=LazyTaskWriterT next_pid=24117 next_prio=130
113493<...>-24117 ( 23968) [001] d.s2 24576.210924: sched_waking: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
113494<...>-24117 ( 23968) [001] dns3 24576.210939: sched_wakeup: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
113495<...>-24117 ( 23968) [001] d..2 24576.210961: sched_switch: prev_comm=LazyTaskWriterT prev_pid=24117 prev_prio=130 prev_state=R+ ==> next_comm=kworker/1:1H next_pid=533 next_prio=100
113496    kworker/1:1H-533   (  533) [001] d..2 24576.210979: sched_switch: prev_comm=kworker/1:1H prev_pid=533 prev_prio=100 prev_state=S ==> next_comm=LazyTaskWriterT next_pid=24117 next_prio=130
113497<...>-24117 ( 23968) [001] d..2 24576.211021: sched_switch: prev_comm=LazyTaskWriterT prev_pid=24117 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
113498          <idle>-0     (-----) [001] d..1 24576.211042: cpu_idle: state=0 cpu_id=1
113499          <idle>-0     (-----) [001] d.s2 24576.214246: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
113500          <idle>-0     (-----) [001] dns3 24576.214267: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
113501          <idle>-0     (-----) [001] .n.1 24576.214288: cpu_idle: state=4294967295 cpu_id=1
113502          <idle>-0     (-----) [001] d..2 24576.214299: 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
113503     rcu_preempt-7     (    7) [001] d..2 24576.214312: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
113504     rcu_preempt-7     (    7) [001] d..3 24576.214331: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
113505     rcu_preempt-7     (    7) [001] d..2 24576.214343: 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
113506         rcuop/0-10    (   10) [001] d..2 24576.214348: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
113507         rcuop/0-10    (   10) [001] d..3 24576.214365: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
113508         rcuop/0-10    (   10) [001] d..2 24576.214369: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
113509         rcuop/0-10    (   10) [001] d..3 24576.214383: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
113510         rcuop/0-10    (   10) [001] d..2 24576.214395: 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
113511         rcuop/1-21    (   21) [001] d..2 24576.214415: 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
113512     rcu_preempt-7     (    7) [001] d..2 24576.214447: 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
113513          <idle>-0     (-----) [001] d..1 24576.214459: cpu_idle: state=0 cpu_id=1
113514          <idle>-0     (-----) [000] ...1 24576.214653: cpu_idle: state=4294967295 cpu_id=0
113515          <idle>-0     (-----) [000] d..1 24576.214660: cpu_idle: state=0 cpu_id=0
113516          <idle>-0     (-----) [002] ...1 24576.214699: cpu_idle: state=4294967295 cpu_id=2
113517          <idle>-0     (-----) [002] d..1 24576.214706: cpu_idle: state=0 cpu_id=2
113518          <idle>-0     (-----) [001] d.h2 24576.216465: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
113519          <idle>-0     (-----) [001] dnh3 24576.216483: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
113520          <idle>-0     (-----) [001] .n.1 24576.216492: cpu_idle: state=4294967295 cpu_id=1
113521          <idle>-0     (-----) [001] d..2 24576.216501: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
113522        DispSync-23904 (23896) [001] d..1 24576.216527: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
113523        DispSync-23904 (23896) [001] d..2 24576.216545: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
113524          <idle>-0     (-----) [002] .n.1 24576.216551: cpu_idle: state=4294967295 cpu_id=2
113525          <idle>-0     (-----) [002] d..2 24576.216566: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
113526        DispSync-23904 (23896) [001] d..2 24576.216586: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
113527          <idle>-0     (-----) [001] d..1 24576.216600: cpu_idle: state=0 cpu_id=1
113528  appEventThread-23905 (23896) [002] d..3 24576.216621: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
113529  appEventThread-23905 (23896) [002] d..4 24576.216661: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
113530          <idle>-0     (-----) [000] .n.1 24576.216666: cpu_idle: state=4294967295 cpu_id=0
113531          <idle>-0     (-----) [000] d..2 24576.216686: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
113532  appEventThread-23905 (23896) [002] d..2 24576.216719: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113533          <idle>-0     (-----) [002] d..1 24576.216740: cpu_idle: state=0 cpu_id=2
113534 s.nexuslauncher-24827 (24827) [000] .... 24576.216934: binder_transaction: transaction=1671558 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
113535 s.nexuslauncher-24827 (24827) [000] d..4 24576.216947: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=003
113536 s.nexuslauncher-24827 (24827) [000] d..5 24576.216986: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
113537          <idle>-0     (-----) [001] .n.1 24576.216993: cpu_idle: state=4294967295 cpu_id=1
113538          <idle>-0     (-----) [001] d..2 24576.217006: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
113539  Binder:23896_5-25989 (23896) [001] .... 24576.217016: binder_transaction_received: transaction=1671558
113540  Binder:23896_5-25989 (23896) [001] d..1 24576.217055: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
113541  Binder:23896_5-25989 (23896) [001] d..2 24576.217075: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
113542          <idle>-0     (-----) [002] .n.1 24576.217083: cpu_idle: state=4294967295 cpu_id=2
113543          <idle>-0     (-----) [002] d..2 24576.217095: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
113544 s.nexuslauncher-24827 (24827) [000] d..2 24576.217109: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113545  Binder:23896_5-25989 (23896) [001] d..2 24576.217129: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
113546          <idle>-0     (-----) [000] d..1 24576.217133: cpu_idle: state=0 cpu_id=0
113547  appEventThread-23905 (23896) [002] d..2 24576.217142: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113548          <idle>-0     (-----) [001] d..1 24576.217143: cpu_idle: state=0 cpu_id=1
113549          <idle>-0     (-----) [002] d..1 24576.217158: cpu_idle: state=0 cpu_id=2
113550          <idle>-0     (-----) [001] d.H3 24576.217662: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
113551          <idle>-0     (-----) [001] d.H3 24576.217681: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
113552          <idle>-0     (-----) [001] d.H4 24576.217699: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
113553          <idle>-0     (-----) [002] .n.1 24576.217706: cpu_idle: state=4294967295 cpu_id=2
113554          <idle>-0     (-----) [001] d.s3 24576.217714: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
113555          <idle>-0     (-----) [002] d..2 24576.217720: 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
113556          <idle>-0     (-----) [001] dns4 24576.217734: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
113557          <idle>-0     (-----) [001] dns3 24576.217741: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113558         sugov:0-559   (  559) [002] .... 24576.217764: clk_set_rate: pwrcl_clk 748800000
113559         sugov:0-559   (  559) [002] .... 24576.217778: clk_set_rate: cpu3_pwrcl_clk 652800000
113560          <idle>-0     (-----) [001] dns4 24576.217788: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
113561         sugov:0-559   (  559) [002] .... 24576.217789: clk_set_rate: cpu2_pwrcl_clk 652800000
113562         sugov:0-559   (  559) [002] .... 24576.217799: clk_set_rate: cpu1_pwrcl_clk 652800000
113563          <idle>-0     (-----) [001] .n.1 24576.217805: cpu_idle: state=4294967295 cpu_id=1
113564         sugov:0-559   (  559) [002] .... 24576.217808: clk_set_rate: cpu0_pwrcl_clk 748800000
113565          <idle>-0     (-----) [001] d..2 24576.217819: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
113566         sugov:0-559   (  559) [002] .... 24576.217820: cpu_frequency: state=748800 cpu_id=0
113567          <idle>-0     (-----) [000] ...1 24576.217852: cpu_idle: state=4294967295 cpu_id=0
113568         sugov:0-559   (  559) [002] .... 24576.217853: cpu_frequency: state=748800 cpu_id=1
113569          <idle>-0     (-----) [003] ...1 24576.217854: cpu_idle: state=4294967295 cpu_id=3
113570         sugov:0-559   (  559) [002] .... 24576.217859: cpu_frequency: state=748800 cpu_id=2
113571          <idle>-0     (-----) [000] d..1 24576.217859: cpu_idle: state=0 cpu_id=0
113572          <idle>-0     (-----) [003] d..1 24576.217860: cpu_idle: state=2 cpu_id=3
113573         sugov:0-559   (  559) [002] .... 24576.217863: cpu_frequency: state=748800 cpu_id=3
113574     kworker/1:1-13091 (13091) [001] d..2 24576.217884: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
113575         sugov:0-559   (  559) [002] d..2 24576.217885: 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
113576          <idle>-0     (-----) [001] d..1 24576.217895: cpu_idle: state=0 cpu_id=1
113577  kworker/u16:10-23868 (23868) [002] .... 24576.217915: clk_set_rate: l3_cluster0_vote_clk 300000000
113578  kworker/u16:10-23868 (23868) [002] .... 24576.217920: clk_set_rate: l3_clk 300000000
113579  kworker/u16:10-23868 (23868) [002] d..2 24576.218187: 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
113580          <idle>-0     (-----) [002] d..1 24576.218208: cpu_idle: state=2 cpu_id=2
113581          <idle>-0     (-----) [003] d.s3 24576.218385: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
113582          <idle>-0     (-----) [003] d.s4 24576.218437: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
113583          <idle>-0     (-----) [006] dnh2 24576.218443: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
113584          <idle>-0     (-----) [003] dns4 24576.218446: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
113585          <idle>-0     (-----) [006] .n.1 24576.218453: cpu_idle: state=4294967295 cpu_id=6
113586          <idle>-0     (-----) [003] .n.1 24576.218457: cpu_idle: state=4294967295 cpu_id=3
113587          <idle>-0     (-----) [006] d..2 24576.218465: 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
113588          <idle>-0     (-----) [003] d..2 24576.218478: 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
113589         sugov:4-560   (  560) [006] d..2 24576.218488: 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
113590          <idle>-0     (-----) [006] d..1 24576.218499: cpu_idle: state=2 cpu_id=6
113591  kworker/u16:10-23868 (23868) [003] d..2 24576.218525: 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
113592          <idle>-0     (-----) [003] d..1 24576.218545: cpu_idle: state=0 cpu_id=3
113593          <idle>-0     (-----) [003] ...1 24576.219736: cpu_idle: state=4294967295 cpu_id=3
113594          <idle>-0     (-----) [003] d..1 24576.219742: cpu_idle: state=2 cpu_id=3
113595          <idle>-0     (-----) [001] d.s2 24576.220918: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
113596          <idle>-0     (-----) [001] dns3 24576.220940: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
113597          <idle>-0     (-----) [001] dns3 24576.220949: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
113598          <idle>-0     (-----) [001] dns4 24576.220958: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
113599          <idle>-0     (-----) [001] .n.1 24576.220968: cpu_idle: state=4294967295 cpu_id=1
113600          <idle>-0     (-----) [001] d..2 24576.220979: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
113601     kworker/1:1-13091 (13091) [001] d..2 24576.221015: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
113602     rcu_preempt-7     (    7) [001] d..2 24576.221027: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
113603     rcu_preempt-7     (    7) [001] d..3 24576.221047: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
113604     rcu_preempt-7     (    7) [001] d..2 24576.221058: 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
113605         rcuop/0-10    (   10) [001] d..2 24576.221063: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
113606         rcuop/0-10    (   10) [001] d..3 24576.221079: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
113607         rcuop/0-10    (   10) [001] d..2 24576.221090: 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
113608         rcuop/1-21    (   21) [001] d..2 24576.221133: 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
113609          <idle>-0     (-----) [001] d..1 24576.221153: cpu_idle: state=2 cpu_id=1
113610          <idle>-0     (-----) [000] d.s3 24576.227624: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
113611          <idle>-0     (-----) [000] dns4 24576.227649: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
113612          <idle>-0     (-----) [000] dns3 24576.227657: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
113613          <idle>-0     (-----) [000] dns4 24576.227701: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
113614          <idle>-0     (-----) [000] .n.1 24576.227726: cpu_idle: state=4294967295 cpu_id=0
113615          <idle>-0     (-----) [000] d..2 24576.227743: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
113616     kworker/0:1-13012 (13012) [000] d..2 24576.227808: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
113617  kworker/u16:10-23868 (23868) [000] d..2 24576.227917: 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
113618          <idle>-0     (-----) [000] d..1 24576.227937: cpu_idle: state=2 cpu_id=0
113619          <idle>-0     (-----) [001] d.h2 24576.233172: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
113620          <idle>-0     (-----) [001] dnh3 24576.233198: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
113621          <idle>-0     (-----) [001] .n.1 24576.233213: cpu_idle: state=4294967295 cpu_id=1
113622          <idle>-0     (-----) [001] d..2 24576.233231: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
113623        DispSync-23904 (23896) [001] d..1 24576.233258: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
113624        DispSync-23904 (23896) [001] d..2 24576.233278: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
113625        DispSync-23904 (23896) [001] d..2 24576.233328: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
113626          <idle>-0     (-----) [001] d..2 24576.233335: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
113627          <idle>-0     (-----) [001] dn.3 24576.233352: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
113628          <idle>-0     (-----) [001] d..2 24576.233362: 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
113629     ksoftirqd/1-18    (   18) [001] d.s2 24576.233376: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
113630     ksoftirqd/1-18    (   18) [001] d.s3 24576.233420: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113631     ksoftirqd/1-18    (   18) [001] d..2 24576.233435: 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
113632          <idle>-0     (-----) [002] .n.1 24576.233463: cpu_idle: state=4294967295 cpu_id=2
113633          <idle>-0     (-----) [002] d..2 24576.233492: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
113634  kworker/u16:10-23868 (23868) [001] d..2 24576.233496: 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
113635          <idle>-0     (-----) [001] d..1 24576.233519: cpu_idle: state=2 cpu_id=1
113636  appEventThread-23905 (23896) [002] d..3 24576.233549: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
113637  appEventThread-23905 (23896) [002] d..4 24576.233586: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
113638  appEventThread-23905 (23896) [002] d..2 24576.233642: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113639          <idle>-0     (-----) [002] d..1 24576.233663: cpu_idle: state=2 cpu_id=2
113640          <idle>-0     (-----) [000] .n.1 24576.233781: cpu_idle: state=4294967295 cpu_id=0
113641          <idle>-0     (-----) [000] d..2 24576.233808: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
113642 s.nexuslauncher-24827 (24827) [000] .... 24576.234058: binder_transaction: transaction=1671559 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
113643 s.nexuslauncher-24827 (24827) [000] d..4 24576.234071: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
113644 s.nexuslauncher-24827 (24827) [000] d..5 24576.234104: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
113645 s.nexuslauncher-24827 (24827) [000] d..2 24576.234228: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113646          <idle>-0     (-----) [001] .n.1 24576.234283: cpu_idle: state=4294967295 cpu_id=1
113647          <idle>-0     (-----) [000] d..1 24576.234297: cpu_idle: state=2 cpu_id=0
113648          <idle>-0     (-----) [001] d..2 24576.234321: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
113649  Binder:23896_5-25989 (23896) [001] .... 24576.234332: binder_transaction_received: transaction=1671559
113650  Binder:23896_5-25989 (23896) [001] d..1 24576.234377: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
113651  Binder:23896_5-25989 (23896) [001] d..2 24576.234402: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
113652  Binder:23896_5-25989 (23896) [001] d..2 24576.234466: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
113653          <idle>-0     (-----) [001] d..1 24576.234490: cpu_idle: state=0 cpu_id=1
113654          <idle>-0     (-----) [002] .n.1 24576.234587: cpu_idle: state=4294967295 cpu_id=2
113655          <idle>-0     (-----) [002] d..2 24576.234617: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
113656  appEventThread-23905 (23896) [002] d..2 24576.234708: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113657          <idle>-0     (-----) [002] d..1 24576.234736: cpu_idle: state=0 cpu_id=2
113658          <idle>-0     (-----) [001] d..2 24576.240509: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
113659          <idle>-0     (-----) [001] dn.3 24576.240525: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
113660          <idle>-0     (-----) [001] dnH3 24576.240602: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
113661          <idle>-0     (-----) [001] dnH3 24576.240619: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
113662          <idle>-0     (-----) [001] dnH4 24576.240635: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
113663          <idle>-0     (-----) [002] .n.1 24576.240643: cpu_idle: state=4294967295 cpu_id=2
113664          <idle>-0     (-----) [001] dns3 24576.240647: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113665          <idle>-0     (-----) [002] d..2 24576.240657: 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
113666          <idle>-0     (-----) [001] dns4 24576.240668: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113667          <idle>-0     (-----) [001] dns3 24576.240678: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
113668          <idle>-0     (-----) [001] dns4 24576.240688: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
113669         sugov:0-559   (  559) [002] .... 24576.240694: clk_set_rate: pwrcl_clk 652800000
113670          <idle>-0     (-----) [001] .n.1 24576.240698: cpu_idle: state=4294967295 cpu_id=1
113671         sugov:0-559   (  559) [002] .... 24576.240707: clk_set_rate: cpu3_pwrcl_clk 748800000
113672          <idle>-0     (-----) [001] d..2 24576.240718: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
113673         sugov:0-559   (  559) [002] .... 24576.240719: clk_set_rate: cpu2_pwrcl_clk 748800000
113674         sugov:0-559   (  559) [002] .... 24576.240728: clk_set_rate: cpu1_pwrcl_clk 748800000
113675         sugov:0-559   (  559) [002] .... 24576.240736: clk_set_rate: cpu0_pwrcl_clk 652800000
113676     kworker/1:1-13091 (13091) [001] d..2 24576.240779: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
113677     ksoftirqd/1-18    (   18) [001] d..2 24576.240792: 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
113678         sugov:0-559   (  559) [002] .... 24576.240852: cpu_frequency: state=652800 cpu_id=0
113679         sugov:0-559   (  559) [002] .... 24576.240877: cpu_frequency: state=652800 cpu_id=1
113680         sugov:0-559   (  559) [002] .... 24576.240937: cpu_frequency: state=652800 cpu_id=2
113681         sugov:0-559   (  559) [002] .... 24576.240942: cpu_frequency: state=652800 cpu_id=3
113682         sugov:0-559   (  559) [002] d..2 24576.240990: 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
113683          <idle>-0     (-----) [002] d..1 24576.241045: cpu_idle: state=0 cpu_id=2
113684  kworker/u16:10-23868 (23868) [001] d..2 24576.241073: 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
113685          <idle>-0     (-----) [001] d..1 24576.241098: cpu_idle: state=2 cpu_id=1
113686          <idle>-0     (-----) [006] dnh2 24576.241378: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
113687          <idle>-0     (-----) [006] .n.1 24576.241387: cpu_idle: state=4294967295 cpu_id=6
113688          <idle>-0     (-----) [006] d..2 24576.241400: 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
113689         sugov:4-560   (  560) [006] d..2 24576.241422: 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
113690          <idle>-0     (-----) [006] d..1 24576.241434: cpu_idle: state=2 cpu_id=6
113691          <idle>-0     (-----) [002] d..2 24576.247056: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
113692          <idle>-0     (-----) [002] dn.3 24576.247076: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
113693          <idle>-0     (-----) [002] .n.1 24576.247083: cpu_idle: state=4294967295 cpu_id=2
113694          <idle>-0     (-----) [002] d..2 24576.247099: 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
113695     ksoftirqd/2-26    (   26) [002] d..2 24576.247141: 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
113696          <idle>-0     (-----) [002] d..1 24576.247154: cpu_idle: state=2 cpu_id=2
113697          <idle>-0     (-----) [001] d.h2 24576.249635: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
113698          <idle>-0     (-----) [001] dnh3 24576.249663: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
113699          <idle>-0     (-----) [001] .n.1 24576.249677: cpu_idle: state=4294967295 cpu_id=1
113700          <idle>-0     (-----) [001] d..2 24576.249696: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
113701        DispSync-23904 (23896) [001] d..1 24576.249725: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
113702        DispSync-23904 (23896) [001] d..2 24576.249745: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
113703        DispSync-23904 (23896) [001] d..2 24576.249801: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
113704          <idle>-0     (-----) [001] d..2 24576.249808: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
113705          <idle>-0     (-----) [001] dn.3 24576.249821: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
113706          <idle>-0     (-----) [001] d..2 24576.249833: 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
113707     ksoftirqd/1-18    (   18) [001] d.s2 24576.249844: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113708     ksoftirqd/1-18    (   18) [001] d.s3 24576.249866: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113709     ksoftirqd/1-18    (   18) [001] d..2 24576.249884: 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
113710          <idle>-0     (-----) [002] .n.1 24576.249938: cpu_idle: state=4294967295 cpu_id=2
113711          <idle>-0     (-----) [002] d..2 24576.249969: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
113712  kworker/u16:10-23868 (23868) [001] d..2 24576.249976: 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
113713          <idle>-0     (-----) [001] d..1 24576.250001: cpu_idle: state=0 cpu_id=1
113714  appEventThread-23905 (23896) [002] d..3 24576.250030: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
113715  appEventThread-23905 (23896) [002] d..4 24576.250072: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
113716  appEventThread-23905 (23896) [002] d..2 24576.250141: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113717          <idle>-0     (-----) [002] d..1 24576.250172: cpu_idle: state=0 cpu_id=2
113718          <idle>-0     (-----) [000] .n.1 24576.250261: cpu_idle: state=4294967295 cpu_id=0
113719          <idle>-0     (-----) [000] d..2 24576.250294: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
113720 s.nexuslauncher-24827 (24827) [000] .... 24576.250555: binder_transaction: transaction=1671560 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
113721 s.nexuslauncher-24827 (24827) [000] d..4 24576.250571: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
113722 s.nexuslauncher-24827 (24827) [000] d..5 24576.250612: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
113723          <idle>-0     (-----) [001] .n.1 24576.250618: cpu_idle: state=4294967295 cpu_id=1
113724          <idle>-0     (-----) [001] d..2 24576.250636: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
113725  Binder:23896_5-25989 (23896) [001] .... 24576.250648: binder_transaction_received: transaction=1671560
113726  Binder:23896_5-25989 (23896) [001] d..1 24576.250696: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
113727  Binder:23896_5-25989 (23896) [001] d..2 24576.250722: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
113728          <idle>-0     (-----) [002] .n.1 24576.250731: cpu_idle: state=4294967295 cpu_id=2
113729          <idle>-0     (-----) [002] d..2 24576.250744: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
113730 s.nexuslauncher-24827 (24827) [000] d..2 24576.250750: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113731          <idle>-0     (-----) [000] d..1 24576.250779: cpu_idle: state=2 cpu_id=0
113732  Binder:23896_5-25989 (23896) [001] d..2 24576.250782: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
113733  appEventThread-23905 (23896) [002] d..2 24576.250798: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113734          <idle>-0     (-----) [001] d..1 24576.250805: cpu_idle: state=0 cpu_id=1
113735          <idle>-0     (-----) [002] d..1 24576.250815: cpu_idle: state=0 cpu_id=2
113736          <idle>-0     (-----) [002] d..2 24576.256829: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
113737          <idle>-0     (-----) [002] dn.3 24576.256843: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
113738          <idle>-0     (-----) [002] .n.1 24576.256849: cpu_idle: state=4294967295 cpu_id=2
113739          <idle>-0     (-----) [002] d..2 24576.256866: 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
113740     ksoftirqd/2-26    (   26) [002] d.s2 24576.256879: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113741     ksoftirqd/2-26    (   26) [002] d.s3 24576.256931: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
113742     ksoftirqd/2-26    (   26) [002] d..2 24576.256951: 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
113743  kworker/u16:10-23868 (23868) [002] d..2 24576.257058: 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
113744          <idle>-0     (-----) [002] d..1 24576.257077: cpu_idle: state=2 cpu_id=2
113745          <idle>-0     (-----) [001] d.h3 24576.260142: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
113746          <idle>-0     (-----) [001] dnh4 24576.260196: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113747          <idle>-0     (-----) [001] dnh3 24576.260279: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
113748          <idle>-0     (-----) [001] dnh3 24576.260297: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
113749          <idle>-0     (-----) [001] dnh4 24576.260315: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
113750          <idle>-0     (-----) [001] .n.1 24576.260323: cpu_idle: state=4294967295 cpu_id=1
113751          <idle>-0     (-----) [001] d..2 24576.260344: 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
113752  kworker/u16:10-23868 (23868) [001] d..1 24576.260371: clk_disable: gcc_ufs_phy_phy_aux_hw_ctl_clk
113753  kworker/u16:10-23868 (23868) [001] d..1 24576.260383: clk_disable: gcc_ufs_phy_phy_aux_clk
113754  kworker/u16:10-23868 (23868) [001] d..1 24576.260395: clk_disable: gcc_ufs_phy_phy_aux_clk_src
113755  kworker/u16:10-23868 (23868) [001] d..1 24576.260405: clk_disable: gcc_ufs_mem_clkref_clk
113756  kworker/u16:10-23868 (23868) [001] d..1 24576.260421: clk_disable: gcc_ufs_phy_axi_hw_ctl_clk
113757  kworker/u16:10-23868 (23868) [001] d..1 24576.260428: clk_disable: gcc_ufs_phy_axi_clk
113758  kworker/u16:10-23868 (23868) [001] d..1 24576.260440: clk_disable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
113759  kworker/u16:10-23868 (23868) [001] d..1 24576.260448: clk_disable: gcc_aggre_ufs_phy_axi_clk
113760  kworker/u16:10-23868 (23868) [001] d..1 24576.260456: clk_disable: gcc_ufs_phy_axi_clk_src
113761  kworker/u16:10-23868 (23868) [001] d..1 24576.260465: clk_disable: gcc_ufs_phy_ahb_clk
113762  kworker/u16:10-23868 (23868) [001] d..1 24576.260477: clk_disable: gcc_ufs_phy_unipro_core_hw_ctl_clk
113763  kworker/u16:10-23868 (23868) [001] d..1 24576.260483: clk_disable: gcc_ufs_phy_unipro_core_clk
113764  kworker/u16:10-23868 (23868) [001] d..1 24576.260493: clk_disable: gcc_ufs_phy_unipro_core_clk_src
113765          <idle>-0     (-----) [002] .n.1 24576.260497: cpu_idle: state=4294967295 cpu_id=2
113766  kworker/u16:10-23868 (23868) [001] d..1 24576.260501: clk_disable: gcc_ufs_phy_ice_core_hw_ctl_clk
113767  kworker/u16:10-23868 (23868) [001] d..1 24576.260507: clk_disable: gcc_ufs_phy_ice_core_clk
113768  kworker/u16:10-23868 (23868) [001] d..1 24576.260516: clk_disable: gcc_ufs_phy_ice_core_clk_src
113769          <idle>-0     (-----) [002] d..2 24576.260528: 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
113770         sugov:0-559   (  559) [002] d..2 24576.260582: 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
113771          <idle>-0     (-----) [002] d..2 24576.260589: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
113772          <idle>-0     (-----) [002] dn.3 24576.260607: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
113773          <idle>-0     (-----) [002] d..2 24576.260618: 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
113774     ksoftirqd/2-26    (   26) [002] d.s2 24576.260630: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
113775     ksoftirqd/2-26    (   26) [002] d.s3 24576.260680: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
113776     ksoftirqd/2-26    (   26) [002] d..2 24576.260697: 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
113777          <idle>-0     (-----) [003] ...1 24576.260867: cpu_idle: state=4294967295 cpu_id=3
113778          <idle>-0     (-----) [003] d..1 24576.260884: cpu_idle: state=0 cpu_id=3
113779          <idle>-0     (-----) [003] d.s3 24576.260960: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113780  kworker/u16:10-23868 (23868) [001] d..2 24576.260988: 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
113781  kworker/u16:16-25995 (25995) [002] d..2 24576.260993: 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
113782          <idle>-0     (-----) [003] d.s4 24576.261011: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
113783          <idle>-0     (-----) [001] d..1 24576.261012: cpu_idle: state=0 cpu_id=1
113784          <idle>-0     (-----) [002] d..1 24576.261021: cpu_idle: state=0 cpu_id=2
113785          <idle>-0     (-----) [003] d.s4 24576.261024: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113786          <idle>-0     (-----) [001] .n.1 24576.261032: cpu_idle: state=4294967295 cpu_id=1
113787          <idle>-0     (-----) [003] ...1 24576.261041: cpu_idle: state=4294967295 cpu_id=3
113788          <idle>-0     (-----) [001] d..2 24576.261049: 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
113789          <idle>-0     (-----) [003] d..1 24576.261050: cpu_idle: state=0 cpu_id=3
113790  kworker/u16:10-23868 (23868) [001] d..2 24576.261096: 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
113791          <idle>-0     (-----) [001] d..1 24576.261110: cpu_idle: state=0 cpu_id=1
113792          <idle>-0     (-----) [006] dnh2 24576.261114: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
113793          <idle>-0     (-----) [006] .n.1 24576.261124: cpu_idle: state=4294967295 cpu_id=6
113794          <idle>-0     (-----) [006] d..2 24576.261135: 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
113795         sugov:4-560   (  560) [006] d..2 24576.261158: 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
113796          <idle>-0     (-----) [006] d..1 24576.261170: cpu_idle: state=2 cpu_id=6
113797          <idle>-0     (-----) [001] d.h2 24576.265828: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
113798          <idle>-0     (-----) [001] dnh3 24576.265849: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
113799          <idle>-0     (-----) [001] .n.1 24576.265863: cpu_idle: state=4294967295 cpu_id=1
113800          <idle>-0     (-----) [001] d..2 24576.265877: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
113801        DispSync-23904 (23896) [001] d..1 24576.265900: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
113802        DispSync-23904 (23896) [001] d..2 24576.265921: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
113803          <idle>-0     (-----) [002] .n.1 24576.265931: cpu_idle: state=4294967295 cpu_id=2
113804          <idle>-0     (-----) [002] d..2 24576.265952: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
113805        DispSync-23904 (23896) [001] d..2 24576.265971: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
113806          <idle>-0     (-----) [001] d..2 24576.265979: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
113807          <idle>-0     (-----) [001] dn.3 24576.265994: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
113808          <idle>-0     (-----) [001] d..2 24576.266006: 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
113809  appEventThread-23905 (23896) [002] d..3 24576.266015: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
113810     ksoftirqd/1-18    (   18) [001] d.s2 24576.266018: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113811     ksoftirqd/1-18    (   18) [001] d.s3 24576.266041: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113812  appEventThread-23905 (23896) [002] d..4 24576.266046: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
113813     ksoftirqd/1-18    (   18) [001] d..2 24576.266061: 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
113814  appEventThread-23905 (23896) [002] d..2 24576.266108: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113815          <idle>-0     (-----) [002] d..1 24576.266129: cpu_idle: state=2 cpu_id=2
113816          <idle>-0     (-----) [000] .n.1 24576.266362: cpu_idle: state=4294967295 cpu_id=0
113817          <idle>-0     (-----) [000] d..2 24576.266394: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
113818          <idle>-0     (-----) [002] ...1 24576.266643: cpu_idle: state=4294967295 cpu_id=2
113819 s.nexuslauncher-24827 (24827) [000] .... 24576.266647: binder_transaction: transaction=1671561 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
113820          <idle>-0     (-----) [002] d..1 24576.266659: cpu_idle: state=0 cpu_id=2
113821  kworker/u16:10-23868 (23868) [001] d..2 24576.266663: 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
113822 s.nexuslauncher-24827 (24827) [000] d..4 24576.266663: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
113823          <idle>-0     (-----) [001] d..1 24576.266686: cpu_idle: state=2 cpu_id=1
113824 s.nexuslauncher-24827 (24827) [000] d..5 24576.266702: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
113825          <idle>-0     (-----) [001] .n.1 24576.266721: cpu_idle: state=4294967295 cpu_id=1
113826          <idle>-0     (-----) [001] d..2 24576.266740: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
113827  Binder:23896_5-25989 (23896) [001] .... 24576.266751: binder_transaction_received: transaction=1671561
113828  Binder:23896_5-25989 (23896) [001] d..1 24576.266792: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
113829  Binder:23896_5-25989 (23896) [001] d..2 24576.266817: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
113830          <idle>-0     (-----) [002] .n.1 24576.266824: cpu_idle: state=4294967295 cpu_id=2
113831 s.nexuslauncher-24827 (24827) [000] d..2 24576.266843: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113832          <idle>-0     (-----) [002] d..2 24576.266843: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
113833          <idle>-0     (-----) [000] d..1 24576.266871: cpu_idle: state=2 cpu_id=0
113834  Binder:23896_5-25989 (23896) [001] d..2 24576.266883: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
113835          <idle>-0     (-----) [001] d..1 24576.266908: cpu_idle: state=0 cpu_id=1
113836  appEventThread-23905 (23896) [002] d..2 24576.266932: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113837          <idle>-0     (-----) [002] d..1 24576.266951: cpu_idle: state=0 cpu_id=2
113838          <idle>-0     (-----) [001] d..2 24576.272922: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
113839          <idle>-0     (-----) [001] dn.3 24576.272936: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
113840          <idle>-0     (-----) [001] .n.1 24576.272941: cpu_idle: state=4294967295 cpu_id=1
113841          <idle>-0     (-----) [001] d..2 24576.272961: 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
113842          <idle>-0     (-----) [002] ...1 24576.272966: cpu_idle: state=4294967295 cpu_id=2
113843     ksoftirqd/1-18    (   18) [001] d.s2 24576.272971: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113844          <idle>-0     (-----) [002] d..1 24576.272972: cpu_idle: state=2 cpu_id=2
113845     ksoftirqd/1-18    (   18) [001] d.s3 24576.272994: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113846     ksoftirqd/1-18    (   18) [001] d..2 24576.273009: 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
113847  kworker/u16:10-23868 (23868) [001] d..2 24576.273077: 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
113848          <idle>-0     (-----) [001] d..1 24576.273095: cpu_idle: state=2 cpu_id=1
113849          <idle>-0     (-----) [001] d.h2 24576.282629: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
113850          <idle>-0     (-----) [001] dnh3 24576.282661: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
113851          <idle>-0     (-----) [001] dnh3 24576.282758: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
113852          <idle>-0     (-----) [001] dnh3 24576.282777: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
113853          <idle>-0     (-----) [001] dnh4 24576.282792: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
113854          <idle>-0     (-----) [001] .n.1 24576.282802: cpu_idle: state=4294967295 cpu_id=1
113855          <idle>-0     (-----) [001] d..2 24576.282822: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
113856        DispSync-23904 (23896) [001] d..1 24576.282849: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
113857        DispSync-23904 (23896) [001] d..2 24576.282875: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
113858          <idle>-0     (-----) [003] .n.1 24576.282882: cpu_idle: state=4294967295 cpu_id=3
113859          <idle>-0     (-----) [003] d..2 24576.282904: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
113860        DispSync-23904 (23896) [001] d..2 24576.282931: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
113861          <idle>-0     (-----) [001] d..2 24576.282939: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
113862          <idle>-0     (-----) [001] dn.3 24576.282953: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
113863          <idle>-0     (-----) [001] d..2 24576.282966: 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
113864  appEventThread-23905 (23896) [003] d..3 24576.282973: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
113865     ksoftirqd/1-18    (   18) [001] d.s2 24576.282977: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113866     ksoftirqd/1-18    (   18) [001] d.s3 24576.283003: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113867  appEventThread-23905 (23896) [003] d..4 24576.283008: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
113868     ksoftirqd/1-18    (   18) [001] d..2 24576.283024: 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
113869  appEventThread-23905 (23896) [003] d..2 24576.283078: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
113870          <idle>-0     (-----) [002] .n.1 24576.283111: cpu_idle: state=4294967295 cpu_id=2
113871          <idle>-0     (-----) [002] d..2 24576.283138: 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
113872          <idle>-0     (-----) [003] d..1 24576.283146: cpu_idle: state=0 cpu_id=3
113873         sugov:0-559   (  559) [002] d..2 24576.283187: 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
113874          <idle>-0     (-----) [002] d..1 24576.283251: cpu_idle: state=0 cpu_id=2
113875          <idle>-0     (-----) [000] .n.1 24576.283330: cpu_idle: state=4294967295 cpu_id=0
113876  kworker/u16:10-23868 (23868) [001] d..2 24576.283331: 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
113877          <idle>-0     (-----) [001] d..1 24576.283357: cpu_idle: state=0 cpu_id=1
113878          <idle>-0     (-----) [000] d..2 24576.283362: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
113879 s.nexuslauncher-24827 (24827) [000] .... 24576.283615: binder_transaction: transaction=1671562 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
113880 s.nexuslauncher-24827 (24827) [000] d..4 24576.283631: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
113881 s.nexuslauncher-24827 (24827) [000] d..5 24576.283666: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
113882          <idle>-0     (-----) [001] .n.1 24576.283674: cpu_idle: state=4294967295 cpu_id=1
113883          <idle>-0     (-----) [001] d..2 24576.283692: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
113884  Binder:23896_5-25989 (23896) [001] .... 24576.283705: binder_transaction_received: transaction=1671562
113885  Binder:23896_5-25989 (23896) [001] d..1 24576.283754: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
113886  Binder:23896_5-25989 (23896) [001] d..2 24576.283779: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
113887          <idle>-0     (-----) [003] .n.1 24576.283786: cpu_idle: state=4294967295 cpu_id=3
113888          <idle>-0     (-----) [003] d..2 24576.283800: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
113889 s.nexuslauncher-24827 (24827) [000] d..2 24576.283806: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113890          <idle>-0     (-----) [006] dnh2 24576.283822: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
113891          <idle>-0     (-----) [006] .n.1 24576.283833: cpu_idle: state=4294967295 cpu_id=6
113892          <idle>-0     (-----) [000] d..1 24576.283835: cpu_idle: state=2 cpu_id=0
113893  Binder:23896_5-25989 (23896) [001] d..2 24576.283845: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
113894          <idle>-0     (-----) [006] d..2 24576.283845: 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
113895  appEventThread-23905 (23896) [003] d..2 24576.283858: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
113896         sugov:4-560   (  560) [006] d..2 24576.283869: 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
113897          <idle>-0     (-----) [001] d..1 24576.283869: cpu_idle: state=0 cpu_id=1
113898          <idle>-0     (-----) [003] d..1 24576.283877: cpu_idle: state=0 cpu_id=3
113899          <idle>-0     (-----) [006] d..1 24576.283879: cpu_idle: state=2 cpu_id=6
113900          <idle>-0     (-----) [002] d..2 24576.289266: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
113901          <idle>-0     (-----) [002] dn.3 24576.289285: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
113902          <idle>-0     (-----) [002] .n.1 24576.289292: cpu_idle: state=4294967295 cpu_id=2
113903          <idle>-0     (-----) [002] d..2 24576.289311: 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
113904     ksoftirqd/2-26    (   26) [002] d..2 24576.289360: 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
113905          <idle>-0     (-----) [002] d..1 24576.289374: cpu_idle: state=2 cpu_id=2
113906          <idle>-0     (-----) [001] ...1 24576.289884: cpu_idle: state=4294967295 cpu_id=1
113907          <idle>-0     (-----) [001] d..1 24576.289891: cpu_idle: state=2 cpu_id=1
113908          <idle>-0     (-----) [003] ...1 24576.289892: cpu_idle: state=4294967295 cpu_id=3
113909          <idle>-0     (-----) [003] d..1 24576.289898: cpu_idle: state=2 cpu_id=3
113910          <idle>-0     (-----) [001] d.h2 24576.299150: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
113911          <idle>-0     (-----) [001] dnh3 24576.299182: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
113912          <idle>-0     (-----) [001] dnh3 24576.299274: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
113913          <idle>-0     (-----) [001] dnh3 24576.299292: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
113914          <idle>-0     (-----) [001] dnh4 24576.299309: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
113915          <idle>-0     (-----) [001] .n.1 24576.299319: cpu_idle: state=4294967295 cpu_id=1
113916          <idle>-0     (-----) [001] d..2 24576.299340: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
113917        DispSync-23904 (23896) [001] d..1 24576.299369: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
113918        DispSync-23904 (23896) [001] d..2 24576.299389: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
113919        DispSync-23904 (23896) [001] d..2 24576.299443: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
113920          <idle>-0     (-----) [001] d..2 24576.299450: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
113921          <idle>-0     (-----) [001] dn.3 24576.299464: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
113922          <idle>-0     (-----) [001] d..2 24576.299477: 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
113923     ksoftirqd/1-18    (   18) [001] d.s2 24576.299489: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113924     ksoftirqd/1-18    (   18) [001] d.s3 24576.299513: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113925     ksoftirqd/1-18    (   18) [001] d..2 24576.299534: 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
113926          <idle>-0     (-----) [002] .n.1 24576.299630: cpu_idle: state=4294967295 cpu_id=2
113927          <idle>-0     (-----) [002] d..2 24576.299660: 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
113928  kworker/u16:10-23868 (23868) [001] d..2 24576.299704: 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
113929         sugov:0-559   (  559) [002] d..2 24576.299715: 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
113930          <idle>-0     (-----) [003] .n.1 24576.299728: cpu_idle: state=4294967295 cpu_id=3
113931          <idle>-0     (-----) [001] d..1 24576.299731: cpu_idle: state=0 cpu_id=1
113932          <idle>-0     (-----) [002] d..1 24576.299742: cpu_idle: state=0 cpu_id=2
113933          <idle>-0     (-----) [003] d..2 24576.299757: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
113934  appEventThread-23905 (23896) [003] d..3 24576.299815: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
113935  appEventThread-23905 (23896) [003] d..4 24576.299852: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
113936  appEventThread-23905 (23896) [003] d..2 24576.299913: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
113937          <idle>-0     (-----) [003] d..1 24576.299939: cpu_idle: state=2 cpu_id=3
113938          <idle>-0     (-----) [000] .n.1 24576.300170: cpu_idle: state=4294967295 cpu_id=0
113939          <idle>-0     (-----) [000] d..2 24576.300199: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
113940          <idle>-0     (-----) [006] dnh2 24576.300350: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
113941          <idle>-0     (-----) [006] .n.1 24576.300359: cpu_idle: state=4294967295 cpu_id=6
113942          <idle>-0     (-----) [006] d..2 24576.300371: 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
113943         sugov:4-560   (  560) [006] d..2 24576.300394: 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
113944          <idle>-0     (-----) [006] d..1 24576.300405: cpu_idle: state=2 cpu_id=6
113945 s.nexuslauncher-24827 (24827) [000] .... 24576.300450: binder_transaction: transaction=1671563 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
113946 s.nexuslauncher-24827 (24827) [000] d..4 24576.300465: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
113947 s.nexuslauncher-24827 (24827) [000] d..5 24576.300503: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
113948          <idle>-0     (-----) [001] .n.1 24576.300512: cpu_idle: state=4294967295 cpu_id=1
113949          <idle>-0     (-----) [001] d..2 24576.300529: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
113950  Binder:23896_5-25989 (23896) [001] .... 24576.300542: binder_transaction_received: transaction=1671563
113951  Binder:23896_5-25989 (23896) [001] d..1 24576.300589: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
113952  Binder:23896_5-25989 (23896) [001] d..2 24576.300614: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
113953 s.nexuslauncher-24827 (24827) [000] d..2 24576.300644: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113954          <idle>-0     (-----) [000] d..1 24576.300672: cpu_idle: state=2 cpu_id=0
113955  Binder:23896_5-25989 (23896) [001] d..2 24576.300677: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
113956          <idle>-0     (-----) [001] d..1 24576.300701: cpu_idle: state=0 cpu_id=1
113957          <idle>-0     (-----) [003] .n.1 24576.300936: cpu_idle: state=4294967295 cpu_id=3
113958          <idle>-0     (-----) [003] d..2 24576.300971: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
113959  appEventThread-23905 (23896) [003] d..2 24576.301065: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
113960          <idle>-0     (-----) [003] d..2 24576.301075: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
113961          <idle>-0     (-----) [003] dn.3 24576.301096: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
113962          <idle>-0     (-----) [003] d..2 24576.301109: 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
113963     ksoftirqd/3-34    (   34) [003] d..2 24576.301143: 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
113964          <idle>-0     (-----) [003] d..1 24576.301166: cpu_idle: state=0 cpu_id=3
113965          <idle>-0     (-----) [002] d..2 24576.305761: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
113966          <idle>-0     (-----) [002] dn.3 24576.305784: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
113967          <idle>-0     (-----) [002] .n.1 24576.305791: cpu_idle: state=4294967295 cpu_id=2
113968          <idle>-0     (-----) [002] d..2 24576.305811: 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
113969     ksoftirqd/2-26    (   26) [002] d..2 24576.305865: 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
113970          <idle>-0     (-----) [002] d..1 24576.305879: cpu_idle: state=2 cpu_id=2
113971          <idle>-0     (-----) [001] ...1 24576.306717: cpu_idle: state=4294967295 cpu_id=1
113972          <idle>-0     (-----) [001] d..1 24576.306725: cpu_idle: state=2 cpu_id=1
113973          <idle>-0     (-----) [003] ...1 24576.307181: cpu_idle: state=4294967295 cpu_id=3
113974          <idle>-0     (-----) [003] d..1 24576.307187: cpu_idle: state=2 cpu_id=3
113975          <idle>-0     (-----) [001] d.h2 24576.315593: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
113976          <idle>-0     (-----) [001] dnh3 24576.315619: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
113977          <idle>-0     (-----) [001] .n.1 24576.315634: cpu_idle: state=4294967295 cpu_id=1
113978          <idle>-0     (-----) [001] d..2 24576.315656: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
113979        DispSync-23904 (23896) [001] d..1 24576.315685: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
113980        DispSync-23904 (23896) [001] d..2 24576.315706: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
113981        DispSync-23904 (23896) [001] d..2 24576.315763: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
113982          <idle>-0     (-----) [001] d..2 24576.315771: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
113983          <idle>-0     (-----) [001] dn.3 24576.315783: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
113984          <idle>-0     (-----) [001] d..2 24576.315796: 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
113985     ksoftirqd/1-18    (   18) [001] d.s2 24576.315808: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113986     ksoftirqd/1-18    (   18) [001] d.s3 24576.315831: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
113987     ksoftirqd/1-18    (   18) [001] d..2 24576.315851: 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
113988  kworker/u16:10-23868 (23868) [001] d..2 24576.315959: 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
113989          <idle>-0     (-----) [001] d..1 24576.315982: cpu_idle: state=2 cpu_id=1
113990          <idle>-0     (-----) [003] .n.1 24576.316043: cpu_idle: state=4294967295 cpu_id=3
113991          <idle>-0     (-----) [003] d..2 24576.316074: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
113992  appEventThread-23905 (23896) [003] d..3 24576.316130: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
113993  appEventThread-23905 (23896) [003] d..4 24576.316163: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
113994  appEventThread-23905 (23896) [003] d..2 24576.316221: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
113995          <idle>-0     (-----) [003] d..1 24576.316247: cpu_idle: state=0 cpu_id=3
113996          <idle>-0     (-----) [000] .n.1 24576.316487: cpu_idle: state=4294967295 cpu_id=0
113997          <idle>-0     (-----) [000] d..2 24576.316525: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
113998 s.nexuslauncher-24827 (24827) [000] .... 24576.316784: binder_transaction: transaction=1671564 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
113999 s.nexuslauncher-24827 (24827) [000] d..4 24576.316801: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114000 s.nexuslauncher-24827 (24827) [000] d..5 24576.316843: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114001 s.nexuslauncher-24827 (24827) [000] d..2 24576.316989: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114002          <idle>-0     (-----) [000] d..1 24576.317022: cpu_idle: state=2 cpu_id=0
114003          <idle>-0     (-----) [001] .n.1 24576.317180: cpu_idle: state=4294967295 cpu_id=1
114004          <idle>-0     (-----) [001] d..2 24576.317208: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
114005  Binder:23896_5-25989 (23896) [001] .... 24576.317221: binder_transaction_received: transaction=1671564
114006  Binder:23896_5-25989 (23896) [001] d..1 24576.317271: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114007  Binder:23896_5-25989 (23896) [001] d..2 24576.317306: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114008          <idle>-0     (-----) [003] .n.1 24576.317314: cpu_idle: state=4294967295 cpu_id=3
114009          <idle>-0     (-----) [003] d..2 24576.317331: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114010  Binder:23896_5-25989 (23896) [001] d..2 24576.317374: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114011  appEventThread-23905 (23896) [003] d..2 24576.317387: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114012          <idle>-0     (-----) [001] d..1 24576.317402: cpu_idle: state=0 cpu_id=1
114013          <idle>-0     (-----) [003] d..1 24576.317407: cpu_idle: state=0 cpu_id=3
114014          <idle>-0     (-----) [001] d..2 24576.323423: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114015          <idle>-0     (-----) [003] ...1 24576.323429: cpu_idle: state=4294967295 cpu_id=3
114016          <idle>-0     (-----) [003] d..1 24576.323436: cpu_idle: state=2 cpu_id=3
114017          <idle>-0     (-----) [001] dn.3 24576.323441: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114018          <idle>-0     (-----) [001] dnH3 24576.323525: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
114019          <idle>-0     (-----) [001] dnH3 24576.323542: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
114020          <idle>-0     (-----) [001] dnH4 24576.323560: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
114021          <idle>-0     (-----) [001] dns3 24576.323580: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
114022          <idle>-0     (-----) [001] dns3 24576.323600: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
114023          <idle>-0     (-----) [001] dns4 24576.323620: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
114024          <idle>-0     (-----) [001] .n.1 24576.323631: cpu_idle: state=4294967295 cpu_id=1
114025          <idle>-0     (-----) [001] d..2 24576.323652: 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
114026     ksoftirqd/1-18    (   18) [001] d..2 24576.323690: 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
114027          <idle>-0     (-----) [001] d..1 24576.323708: cpu_idle: state=2 cpu_id=1
114028          <idle>-0     (-----) [002] .n.1 24576.323901: cpu_idle: state=4294967295 cpu_id=2
114029          <idle>-0     (-----) [002] d..2 24576.323926: 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
114030         sugov:0-559   (  559) [002] d..2 24576.323969: 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
114031          <idle>-0     (-----) [003] .n.1 24576.323975: cpu_idle: state=4294967295 cpu_id=3
114032          <idle>-0     (-----) [002] d..1 24576.323991: cpu_idle: state=0 cpu_id=2
114033          <idle>-0     (-----) [003] d..2 24576.324016: 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
114034     kworker/3:1-12662 (12662) [003] d..2 24576.324089: 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
114035          <idle>-0     (-----) [003] d..1 24576.324116: cpu_idle: state=0 cpu_id=3
114036          <idle>-0     (-----) [004] dnh2 24576.324630: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
114037          <idle>-0     (-----) [004] .n.1 24576.324640: cpu_idle: state=4294967295 cpu_id=4
114038          <idle>-0     (-----) [004] d..2 24576.324664: 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
114039          <idle>-0     (-----) [006] dnh2 24576.324680: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
114040          <idle>-0     (-----) [006] .n.1 24576.324690: cpu_idle: state=4294967295 cpu_id=6
114041          <idle>-0     (-----) [006] d..2 24576.324702: 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
114042     kworker/4:0-24269 (24269) [004] d..2 24576.324705: 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
114043          <idle>-0     (-----) [004] d..2 24576.324710: sched_waking: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
114044          <idle>-0     (-----) [004] dn.3 24576.324725: sched_wakeup: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
114045         sugov:4-560   (  560) [006] d..2 24576.324727: 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
114046          <idle>-0     (-----) [004] d..2 24576.324737: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/4 next_pid=42 next_prio=120
114047          <idle>-0     (-----) [006] d..1 24576.324737: cpu_idle: state=2 cpu_id=6
114048     ksoftirqd/4-42    (   42) [004] d.s2 24576.324751: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
114049     ksoftirqd/4-42    (   42) [004] d..2 24576.324798: sched_switch: prev_comm=ksoftirqd/4 prev_pid=42 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
114050          <idle>-0     (-----) [002] dnh2 24576.324803: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
114051          <idle>-0     (-----) [004] d..1 24576.324811: cpu_idle: state=2 cpu_id=4
114052          <idle>-0     (-----) [002] .n.1 24576.324813: cpu_idle: state=4294967295 cpu_id=2
114053          <idle>-0     (-----) [002] d..2 24576.324827: 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
114054  kworker/u16:10-23868 (23868) [002] d..2 24576.324946: 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
114055          <idle>-0     (-----) [002] d..1 24576.324964: cpu_idle: state=2 cpu_id=2
114056          <idle>-0     (-----) [003] d..2 24576.330131: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
114057          <idle>-0     (-----) [003] dn.3 24576.330149: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
114058          <idle>-0     (-----) [003] .n.1 24576.330155: cpu_idle: state=4294967295 cpu_id=3
114059          <idle>-0     (-----) [003] d..2 24576.330173: 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
114060     ksoftirqd/3-34    (   34) [003] d..2 24576.330218: 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
114061          <idle>-0     (-----) [003] d..1 24576.330233: cpu_idle: state=2 cpu_id=3
114062          <idle>-0     (-----) [001] d.h2 24576.332041: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
114063          <idle>-0     (-----) [001] dnh3 24576.332069: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
114064          <idle>-0     (-----) [001] .n.1 24576.332086: cpu_idle: state=4294967295 cpu_id=1
114065          <idle>-0     (-----) [001] d..2 24576.332105: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
114066        DispSync-23904 (23896) [001] d..1 24576.332133: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114067        DispSync-23904 (23896) [001] d..2 24576.332153: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114068        DispSync-23904 (23896) [001] d..2 24576.332210: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114069          <idle>-0     (-----) [001] d..2 24576.332217: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114070          <idle>-0     (-----) [001] dn.3 24576.332230: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114071          <idle>-0     (-----) [001] d..2 24576.332242: 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
114072     ksoftirqd/1-18    (   18) [001] d.s2 24576.332253: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
114073     ksoftirqd/1-18    (   18) [001] d.s3 24576.332301: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
114074     ksoftirqd/1-18    (   18) [001] d..2 24576.332318: 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
114075  kworker/u16:10-23868 (23868) [001] d..2 24576.332407: 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
114076          <idle>-0     (-----) [001] d..1 24576.332431: cpu_idle: state=0 cpu_id=1
114077          <idle>-0     (-----) [003] .n.1 24576.332473: cpu_idle: state=4294967295 cpu_id=3
114078          <idle>-0     (-----) [003] d..2 24576.332508: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114079  appEventThread-23905 (23896) [003] d..3 24576.332568: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114080  appEventThread-23905 (23896) [003] d..4 24576.332610: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114081  appEventThread-23905 (23896) [003] d..2 24576.332680: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114082          <idle>-0     (-----) [003] d..1 24576.332712: cpu_idle: state=0 cpu_id=3
114083          <idle>-0     (-----) [000] .n.1 24576.332925: cpu_idle: state=4294967295 cpu_id=0
114084          <idle>-0     (-----) [000] d..2 24576.332961: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
114085 s.nexuslauncher-24827 (24827) [000] .... 24576.333221: binder_transaction: transaction=1671565 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
114086 s.nexuslauncher-24827 (24827) [000] d..4 24576.333236: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114087 s.nexuslauncher-24827 (24827) [000] d..5 24576.333276: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114088          <idle>-0     (-----) [001] .n.1 24576.333284: cpu_idle: state=4294967295 cpu_id=1
114089          <idle>-0     (-----) [001] d..2 24576.333300: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
114090  Binder:23896_5-25989 (23896) [001] .... 24576.333312: binder_transaction_received: transaction=1671565
114091  Binder:23896_5-25989 (23896) [001] d..1 24576.333360: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114092  Binder:23896_5-25989 (23896) [001] d..2 24576.333385: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114093          <idle>-0     (-----) [003] .n.1 24576.333395: cpu_idle: state=4294967295 cpu_id=3
114094          <idle>-0     (-----) [003] d..2 24576.333408: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114095 s.nexuslauncher-24827 (24827) [000] d..2 24576.333416: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114096          <idle>-0     (-----) [000] d..1 24576.333445: cpu_idle: state=2 cpu_id=0
114097  Binder:23896_5-25989 (23896) [001] d..2 24576.333448: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114098  appEventThread-23905 (23896) [003] d..2 24576.333460: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114099          <idle>-0     (-----) [001] d..1 24576.333472: cpu_idle: state=0 cpu_id=1
114100          <idle>-0     (-----) [003] d..1 24576.333477: cpu_idle: state=2 cpu_id=3
114101          <idle>-0     (-----) [001] d..2 24576.339491: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114102          <idle>-0     (-----) [001] dn.3 24576.339509: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114103          <idle>-0     (-----) [001] dnH3 24576.339593: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
114104          <idle>-0     (-----) [001] dnH3 24576.339612: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
114105          <idle>-0     (-----) [001] dnH4 24576.339628: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
114106          <idle>-0     (-----) [001] dns3 24576.339640: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
114107          <idle>-0     (-----) [001] dns4 24576.339689: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
114108          <idle>-0     (-----) [001] dns3 24576.339699: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
114109          <idle>-0     (-----) [001] dns4 24576.339711: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
114110          <idle>-0     (-----) [001] .n.1 24576.339723: cpu_idle: state=4294967295 cpu_id=1
114111          <idle>-0     (-----) [001] d..2 24576.339743: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
114112     kworker/1:1-13091 (13091) [001] d..2 24576.339794: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
114113     ksoftirqd/1-18    (   18) [001] d..2 24576.339836: 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
114114          <idle>-0     (-----) [001] d..1 24576.339855: cpu_idle: state=2 cpu_id=1
114115          <idle>-0     (-----) [002] .n.1 24576.339950: cpu_idle: state=4294967295 cpu_id=2
114116          <idle>-0     (-----) [002] d..2 24576.339981: 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
114117         sugov:0-559   (  559) [002] d..2 24576.340009: 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
114118  kworker/u16:10-23868 (23868) [002] d..2 24576.340128: 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
114119          <idle>-0     (-----) [002] d..1 24576.340149: cpu_idle: state=2 cpu_id=2
114120          <idle>-0     (-----) [006] dnh2 24576.340675: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
114121          <idle>-0     (-----) [006] .n.1 24576.340685: cpu_idle: state=4294967295 cpu_id=6
114122          <idle>-0     (-----) [006] d..2 24576.340698: 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
114123         sugov:4-560   (  560) [006] d..2 24576.340720: 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
114124          <idle>-0     (-----) [006] d..1 24576.340731: cpu_idle: state=2 cpu_id=6
114125          <idle>-0     (-----) [001] d.h2 24576.348502: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
114126          <idle>-0     (-----) [001] dnh3 24576.348531: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
114127          <idle>-0     (-----) [001] .n.1 24576.348546: cpu_idle: state=4294967295 cpu_id=1
114128          <idle>-0     (-----) [001] d..2 24576.348566: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
114129        DispSync-23904 (23896) [001] d..1 24576.348593: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114130        DispSync-23904 (23896) [001] d..2 24576.348612: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114131        DispSync-23904 (23896) [001] d..2 24576.348671: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114132          <idle>-0     (-----) [001] d..2 24576.348678: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114133          <idle>-0     (-----) [001] dn.3 24576.348692: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114134          <idle>-0     (-----) [001] d..2 24576.348707: 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
114135     ksoftirqd/1-18    (   18) [001] d.s2 24576.348723: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
114136     ksoftirqd/1-18    (   18) [001] d.s3 24576.348735: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
114137     ksoftirqd/1-18    (   18) [001] d.s2 24576.348744: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
114138     ksoftirqd/1-18    (   18) [001] d.s3 24576.348762: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
114139     ksoftirqd/1-18    (   18) [001] d.s2 24576.348773: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
114140     ksoftirqd/1-18    (   18) [001] d.s3 24576.348820: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
114141     ksoftirqd/1-18    (   18) [001] d..2 24576.348842: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
114142     kworker/1:1-13091 (13091) [001] d..2 24576.348876: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
114143     kworker/1:1-13091 (13091) [001] d..3 24576.348906: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
114144          <idle>-0     (-----) [003] .n.1 24576.348929: cpu_idle: state=4294967295 cpu_id=3
114145          <idle>-0     (-----) [003] d..2 24576.348963: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114146     kworker/1:1-13091 (13091) [001] d..2 24576.348983: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114147          <idle>-0     (-----) [001] d..1 24576.349009: cpu_idle: state=0 cpu_id=1
114148  appEventThread-23905 (23896) [003] d..3 24576.349023: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114149  appEventThread-23905 (23896) [003] d..4 24576.349077: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
114150          <idle>-0     (-----) [000] .n.1 24576.349080: cpu_idle: state=4294967295 cpu_id=0
114151          <idle>-0     (-----) [001] .n.1 24576.349087: cpu_idle: state=4294967295 cpu_id=1
114152          <idle>-0     (-----) [001] d..2 24576.349104: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
114153          <idle>-0     (-----) [000] d..2 24576.349116: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
114154  appEventThread-23905 (23896) [003] d..2 24576.349143: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114155     kworker/0:1-13012 (13012) [000] d..2 24576.349161: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
114156          <idle>-0     (-----) [003] d..1 24576.349170: cpu_idle: state=2 cpu_id=3
114157          <idle>-0     (-----) [002] .n.1 24576.349218: cpu_idle: state=4294967295 cpu_id=2
114158          <idle>-0     (-----) [002] d..2 24576.349249: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
114159     kworker/2:0-12895 (12895) [002] d..2 24576.349324: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
114160          <idle>-0     (-----) [002] d..1 24576.349385: cpu_idle: state=2 cpu_id=2
114161 s.nexuslauncher-24827 (24827) [001] .... 24576.349422: binder_transaction: transaction=1671566 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
114162 s.nexuslauncher-24827 (24827) [001] d..4 24576.349437: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114163  kworker/u16:10-23868 (23868) [000] d..2 24576.349466: 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
114164 s.nexuslauncher-24827 (24827) [001] d..5 24576.349483: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
114165          <idle>-0     (-----) [000] d..1 24576.349492: cpu_idle: state=2 cpu_id=0
114166 s.nexuslauncher-24827 (24827) [001] d..2 24576.349624: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114167          <idle>-0     (-----) [001] d..1 24576.349652: cpu_idle: state=0 cpu_id=1
114168          <idle>-0     (-----) [002] .n.1 24576.349844: cpu_idle: state=4294967295 cpu_id=2
114169          <idle>-0     (-----) [002] d..2 24576.349877: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
114170  Binder:23896_5-25989 (23896) [002] .... 24576.349892: binder_transaction_received: transaction=1671566
114171  Binder:23896_5-25989 (23896) [002] d..1 24576.349943: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114172  Binder:23896_5-25989 (23896) [002] d..2 24576.349970: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114173  Binder:23896_5-25989 (23896) [002] d..2 24576.350037: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
114174          <idle>-0     (-----) [002] d..1 24576.350068: cpu_idle: state=0 cpu_id=2
114175          <idle>-0     (-----) [003] .n.1 24576.350292: cpu_idle: state=4294967295 cpu_id=3
114176          <idle>-0     (-----) [003] d..2 24576.350318: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114177  appEventThread-23905 (23896) [003] d..2 24576.350404: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114178          <idle>-0     (-----) [003] d..1 24576.350426: cpu_idle: state=0 cpu_id=3
114179          <idle>-0     (-----) [001] d..2 24576.355669: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114180          <idle>-0     (-----) [001] dn.3 24576.355686: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114181          <idle>-0     (-----) [001] .n.1 24576.355693: cpu_idle: state=4294967295 cpu_id=1
114182          <idle>-0     (-----) [001] d..2 24576.355713: 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
114183     ksoftirqd/1-18    (   18) [001] d..2 24576.355756: 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
114184          <idle>-0     (-----) [001] d..1 24576.355770: cpu_idle: state=2 cpu_id=1
114185          <idle>-0     (-----) [002] ...1 24576.356081: cpu_idle: state=4294967295 cpu_id=2
114186          <idle>-0     (-----) [002] d..1 24576.356087: cpu_idle: state=2 cpu_id=2
114187          <idle>-0     (-----) [003] ...1 24576.356439: cpu_idle: state=4294967295 cpu_id=3
114188          <idle>-0     (-----) [003] d..1 24576.356446: cpu_idle: state=2 cpu_id=3
114189          <idle>-0     (-----) [001] d.h2 24576.364960: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
114190          <idle>-0     (-----) [001] dnh3 24576.364992: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
114191          <idle>-0     (-----) [001] dnh3 24576.365085: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
114192          <idle>-0     (-----) [001] dnh3 24576.365103: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
114193          <idle>-0     (-----) [001] dnh4 24576.365119: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
114194          <idle>-0     (-----) [001] .n.1 24576.365130: cpu_idle: state=4294967295 cpu_id=1
114195          <idle>-0     (-----) [001] d..2 24576.365150: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
114196        DispSync-23904 (23896) [001] d..1 24576.365182: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114197        DispSync-23904 (23896) [001] d..2 24576.365202: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114198        DispSync-23904 (23896) [001] d..2 24576.365260: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114199          <idle>-0     (-----) [001] d..2 24576.365267: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114200          <idle>-0     (-----) [001] dn.3 24576.365283: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114201          <idle>-0     (-----) [001] d..2 24576.365295: 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
114202     ksoftirqd/1-18    (   18) [001] d.s2 24576.365306: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
114203     ksoftirqd/1-18    (   18) [001] d.s3 24576.365355: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
114204     ksoftirqd/1-18    (   18) [001] d..2 24576.365395: 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
114205          <idle>-0     (-----) [001] d..1 24576.365419: cpu_idle: state=2 cpu_id=1
114206          <idle>-0     (-----) [002] .n.1 24576.365446: cpu_idle: state=4294967295 cpu_id=2
114207          <idle>-0     (-----) [002] d..2 24576.365478: 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
114208         sugov:0-559   (  559) [002] d..2 24576.365507: 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
114209          <idle>-0     (-----) [003] .n.1 24576.365535: cpu_idle: state=4294967295 cpu_id=3
114210          <idle>-0     (-----) [003] d..2 24576.365562: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114211  appEventThread-23905 (23896) [003] d..3 24576.365645: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
114212  kworker/u16:10-23868 (23868) [002] d..2 24576.365665: 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
114213  appEventThread-23905 (23896) [003] d..4 24576.365690: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114214          <idle>-0     (-----) [002] d..1 24576.365691: cpu_idle: state=0 cpu_id=2
114215  appEventThread-23905 (23896) [003] d..2 24576.365759: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114216          <idle>-0     (-----) [003] d..1 24576.365791: cpu_idle: state=0 cpu_id=3
114217          <idle>-0     (-----) [000] .n.1 24576.366004: cpu_idle: state=4294967295 cpu_id=0
114218          <idle>-0     (-----) [000] d..2 24576.366039: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
114219          <idle>-0     (-----) [006] dnh2 24576.366155: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
114220          <idle>-0     (-----) [006] .n.1 24576.366165: cpu_idle: state=4294967295 cpu_id=6
114221          <idle>-0     (-----) [006] d..2 24576.366180: 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
114222         sugov:4-560   (  560) [006] d..2 24576.366203: 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
114223          <idle>-0     (-----) [006] d..1 24576.366216: cpu_idle: state=2 cpu_id=6
114224 s.nexuslauncher-24827 (24827) [000] .... 24576.366297: binder_transaction: transaction=1671567 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
114225 s.nexuslauncher-24827 (24827) [000] d..4 24576.366311: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
114226 s.nexuslauncher-24827 (24827) [000] d..5 24576.366362: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114227 s.nexuslauncher-24827 (24827) [000] d..2 24576.366505: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114228          <idle>-0     (-----) [000] d..1 24576.366533: cpu_idle: state=2 cpu_id=0
114229          <idle>-0     (-----) [001] .n.1 24576.366754: cpu_idle: state=4294967295 cpu_id=1
114230          <idle>-0     (-----) [001] d..2 24576.366783: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
114231  Binder:23896_5-25989 (23896) [001] .... 24576.366795: binder_transaction_received: transaction=1671567
114232  Binder:23896_5-25989 (23896) [001] d..1 24576.366847: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114233  Binder:23896_5-25989 (23896) [001] d..2 24576.366876: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114234          <idle>-0     (-----) [003] .n.1 24576.366884: cpu_idle: state=4294967295 cpu_id=3
114235          <idle>-0     (-----) [003] d..2 24576.366899: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114236  Binder:23896_5-25989 (23896) [001] d..2 24576.366943: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114237  appEventThread-23905 (23896) [003] d..2 24576.366954: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114238          <idle>-0     (-----) [001] d..1 24576.366970: cpu_idle: state=0 cpu_id=1
114239          <idle>-0     (-----) [003] d..1 24576.366970: cpu_idle: state=0 cpu_id=3
114240          <idle>-0     (-----) [002] d..2 24576.371709: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
114241          <idle>-0     (-----) [002] dn.3 24576.371729: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
114242          <idle>-0     (-----) [002] .n.1 24576.371735: cpu_idle: state=4294967295 cpu_id=2
114243          <idle>-0     (-----) [002] d..2 24576.371757: 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
114244     ksoftirqd/2-26    (   26) [002] d..2 24576.371805: 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
114245          <idle>-0     (-----) [002] d..1 24576.371821: cpu_idle: state=2 cpu_id=2
114246          <idle>-0     (-----) [003] ...1 24576.372986: cpu_idle: state=4294967295 cpu_id=3
114247          <idle>-0     (-----) [001] ...1 24576.372991: cpu_idle: state=4294967295 cpu_id=1
114248          <idle>-0     (-----) [003] d..1 24576.372992: cpu_idle: state=2 cpu_id=3
114249          <idle>-0     (-----) [001] d..1 24576.372999: cpu_idle: state=2 cpu_id=1
114250          <idle>-0     (-----) [001] d.h2 24576.381421: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
114251          <idle>-0     (-----) [001] dnh3 24576.381453: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
114252          <idle>-0     (-----) [001] dnh3 24576.381546: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
114253          <idle>-0     (-----) [001] dnh3 24576.381564: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
114254          <idle>-0     (-----) [001] dnh4 24576.381581: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
114255          <idle>-0     (-----) [001] .n.1 24576.381591: cpu_idle: state=4294967295 cpu_id=1
114256          <idle>-0     (-----) [001] d..2 24576.381612: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
114257        DispSync-23904 (23896) [001] d..1 24576.381641: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114258        DispSync-23904 (23896) [001] d..2 24576.381660: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114259        DispSync-23904 (23896) [001] d..2 24576.381714: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114260          <idle>-0     (-----) [001] d..2 24576.381721: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114261          <idle>-0     (-----) [001] dn.3 24576.381735: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114262          <idle>-0     (-----) [001] d..2 24576.381748: 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
114263     ksoftirqd/1-18    (   18) [001] d.s2 24576.381760: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
114264     ksoftirqd/1-18    (   18) [001] d.s3 24576.381810: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
114265     ksoftirqd/1-18    (   18) [001] d..2 24576.381832: 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
114266          <idle>-0     (-----) [002] .n.1 24576.381911: cpu_idle: state=4294967295 cpu_id=2
114267          <idle>-0     (-----) [002] d..2 24576.381941: 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
114268         sugov:0-559   (  559) [002] d..2 24576.381992: 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
114269          <idle>-0     (-----) [003] .n.1 24576.381997: cpu_idle: state=4294967295 cpu_id=3
114270  kworker/u16:10-23868 (23868) [001] d..2 24576.382005: 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
114271          <idle>-0     (-----) [002] d..1 24576.382016: cpu_idle: state=0 cpu_id=2
114272          <idle>-0     (-----) [003] d..2 24576.382025: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114273          <idle>-0     (-----) [001] d..1 24576.382036: cpu_idle: state=0 cpu_id=1
114274  appEventThread-23905 (23896) [003] d..3 24576.382084: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114275  appEventThread-23905 (23896) [003] d..4 24576.382122: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114276  appEventThread-23905 (23896) [003] d..2 24576.382184: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114277          <idle>-0     (-----) [003] d..1 24576.382210: cpu_idle: state=0 cpu_id=3
114278          <idle>-0     (-----) [000] .n.1 24576.382435: cpu_idle: state=4294967295 cpu_id=0
114279          <idle>-0     (-----) [000] d..2 24576.382466: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
114280          <idle>-0     (-----) [006] dnh2 24576.382618: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
114281          <idle>-0     (-----) [006] .n.1 24576.382627: cpu_idle: state=4294967295 cpu_id=6
114282          <idle>-0     (-----) [006] d..2 24576.382639: 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
114283         sugov:4-560   (  560) [006] d..2 24576.382662: 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
114284          <idle>-0     (-----) [006] d..1 24576.382674: cpu_idle: state=2 cpu_id=6
114285 s.nexuslauncher-24827 (24827) [000] .... 24576.382724: binder_transaction: transaction=1671568 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
114286 s.nexuslauncher-24827 (24827) [000] d..4 24576.382739: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114287 s.nexuslauncher-24827 (24827) [000] d..5 24576.382781: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114288          <idle>-0     (-----) [001] .n.1 24576.382789: cpu_idle: state=4294967295 cpu_id=1
114289          <idle>-0     (-----) [001] d..2 24576.382806: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
114290  Binder:23896_5-25989 (23896) [001] .... 24576.382819: binder_transaction_received: transaction=1671568
114291  Binder:23896_5-25989 (23896) [001] d..1 24576.382867: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114292  Binder:23896_5-25989 (23896) [001] d..2 24576.382894: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114293          <idle>-0     (-----) [003] .n.1 24576.382902: cpu_idle: state=4294967295 cpu_id=3
114294          <idle>-0     (-----) [003] d..2 24576.382915: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114295 s.nexuslauncher-24827 (24827) [000] d..2 24576.382923: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114296          <idle>-0     (-----) [000] d..1 24576.382951: cpu_idle: state=2 cpu_id=0
114297  Binder:23896_5-25989 (23896) [001] d..2 24576.382959: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114298  appEventThread-23905 (23896) [003] d..2 24576.382969: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114299          <idle>-0     (-----) [001] d..1 24576.382983: cpu_idle: state=0 cpu_id=1
114300          <idle>-0     (-----) [003] d..1 24576.382985: cpu_idle: state=0 cpu_id=3
114301          <idle>-0     (-----) [002] d..2 24576.388032: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
114302          <idle>-0     (-----) [002] dn.3 24576.388050: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
114303          <idle>-0     (-----) [002] .n.1 24576.388057: cpu_idle: state=4294967295 cpu_id=2
114304          <idle>-0     (-----) [002] d..2 24576.388075: 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
114305     ksoftirqd/2-26    (   26) [002] d..2 24576.388121: 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
114306          <idle>-0     (-----) [002] d..1 24576.388138: cpu_idle: state=2 cpu_id=2
114307          <idle>-0     (-----) [001] ...1 24576.388999: cpu_idle: state=4294967295 cpu_id=1
114308          <idle>-0     (-----) [003] ...1 24576.389003: cpu_idle: state=4294967295 cpu_id=3
114309          <idle>-0     (-----) [001] d..1 24576.389005: cpu_idle: state=2 cpu_id=1
114310          <idle>-0     (-----) [003] d..1 24576.389011: cpu_idle: state=2 cpu_id=3
114311          <idle>-0     (-----) [001] d.h2 24576.397850: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
114312          <idle>-0     (-----) [001] dnh3 24576.397882: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
114313          <idle>-0     (-----) [001] dnh3 24576.397972: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
114314          <idle>-0     (-----) [001] dnh3 24576.397990: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
114315          <idle>-0     (-----) [001] dnh4 24576.398005: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
114316          <idle>-0     (-----) [001] .n.1 24576.398016: cpu_idle: state=4294967295 cpu_id=1
114317          <idle>-0     (-----) [001] d..2 24576.398035: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
114318        DispSync-23904 (23896) [001] d..1 24576.398064: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114319        DispSync-23904 (23896) [001] d..2 24576.398083: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114320        DispSync-23904 (23896) [001] d..2 24576.398138: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114321          <idle>-0     (-----) [001] d..2 24576.398145: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114322          <idle>-0     (-----) [001] dn.3 24576.398159: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114323          <idle>-0     (-----) [001] d..2 24576.398172: 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
114324     ksoftirqd/1-18    (   18) [001] d.s2 24576.398188: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
114325     ksoftirqd/1-18    (   18) [001] d.s3 24576.398212: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
114326     ksoftirqd/1-18    (   18) [001] d..2 24576.398233: 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
114327          <idle>-0     (-----) [002] .n.1 24576.398326: cpu_idle: state=4294967295 cpu_id=2
114328          <idle>-0     (-----) [002] d..2 24576.398355: 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
114329  kworker/u16:10-23868 (23868) [001] d..2 24576.398396: 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
114330         sugov:0-559   (  559) [002] d..2 24576.398407: 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
114331          <idle>-0     (-----) [003] .n.1 24576.398422: cpu_idle: state=4294967295 cpu_id=3
114332          <idle>-0     (-----) [001] d..1 24576.398423: cpu_idle: state=0 cpu_id=1
114333          <idle>-0     (-----) [002] d..1 24576.398435: cpu_idle: state=0 cpu_id=2
114334          <idle>-0     (-----) [003] d..2 24576.398449: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114335  appEventThread-23905 (23896) [003] d..3 24576.398508: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114336  appEventThread-23905 (23896) [003] d..4 24576.398545: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114337  appEventThread-23905 (23896) [003] d..2 24576.398605: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114338          <idle>-0     (-----) [003] d..1 24576.398629: cpu_idle: state=2 cpu_id=3
114339          <idle>-0     (-----) [000] .n.1 24576.398858: cpu_idle: state=4294967295 cpu_id=0
114340          <idle>-0     (-----) [000] d..2 24576.398887: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
114341          <idle>-0     (-----) [006] dnh2 24576.399047: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
114342          <idle>-0     (-----) [006] .n.1 24576.399057: cpu_idle: state=4294967295 cpu_id=6
114343          <idle>-0     (-----) [006] d..2 24576.399070: 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
114344         sugov:4-560   (  560) [006] d..2 24576.399093: 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
114345          <idle>-0     (-----) [006] d..1 24576.399105: cpu_idle: state=2 cpu_id=6
114346 s.nexuslauncher-24827 (24827) [000] .... 24576.399137: binder_transaction: transaction=1671569 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
114347 s.nexuslauncher-24827 (24827) [000] d..4 24576.399152: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114348 s.nexuslauncher-24827 (24827) [000] d..5 24576.399192: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114349          <idle>-0     (-----) [001] .n.1 24576.399199: cpu_idle: state=4294967295 cpu_id=1
114350          <idle>-0     (-----) [001] d..2 24576.399217: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
114351  Binder:23896_5-25989 (23896) [001] .... 24576.399230: binder_transaction_received: transaction=1671569
114352  Binder:23896_5-25989 (23896) [001] d..1 24576.399276: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114353  Binder:23896_5-25989 (23896) [001] d..2 24576.399301: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114354 s.nexuslauncher-24827 (24827) [000] d..2 24576.399333: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114355          <idle>-0     (-----) [000] d..1 24576.399361: cpu_idle: state=2 cpu_id=0
114356  Binder:23896_5-25989 (23896) [001] d..2 24576.399364: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114357          <idle>-0     (-----) [001] d..1 24576.399387: cpu_idle: state=0 cpu_id=1
114358          <idle>-0     (-----) [003] .n.1 24576.399654: cpu_idle: state=4294967295 cpu_id=3
114359          <idle>-0     (-----) [003] d..2 24576.399680: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114360  appEventThread-23905 (23896) [003] d..2 24576.399767: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114361          <idle>-0     (-----) [003] d..1 24576.399791: cpu_idle: state=0 cpu_id=3
114362          <idle>-0     (-----) [002] d..2 24576.404452: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
114363          <idle>-0     (-----) [002] dn.3 24576.404471: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
114364          <idle>-0     (-----) [002] .n.1 24576.404477: cpu_idle: state=4294967295 cpu_id=2
114365          <idle>-0     (-----) [002] d..2 24576.404496: 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
114366     ksoftirqd/2-26    (   26) [002] d..2 24576.404544: 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
114367          <idle>-0     (-----) [002] d..1 24576.404560: cpu_idle: state=2 cpu_id=2
114368          <idle>-0     (-----) [001] ...1 24576.405403: cpu_idle: state=4294967295 cpu_id=1
114369          <idle>-0     (-----) [001] d..1 24576.405409: cpu_idle: state=2 cpu_id=1
114370          <idle>-0     (-----) [003] ...1 24576.405805: cpu_idle: state=4294967295 cpu_id=3
114371          <idle>-0     (-----) [003] d..1 24576.405811: cpu_idle: state=2 cpu_id=3
114372          <idle>-0     (-----) [001] d.h2 24576.414314: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
114373          <idle>-0     (-----) [001] dnh3 24576.414339: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
114374          <idle>-0     (-----) [001] .n.1 24576.414356: cpu_idle: state=4294967295 cpu_id=1
114375          <idle>-0     (-----) [001] d..2 24576.414375: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
114376        DispSync-23904 (23896) [001] d..1 24576.414404: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114377        DispSync-23904 (23896) [001] d..2 24576.414423: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114378        DispSync-23904 (23896) [001] d..2 24576.414480: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114379          <idle>-0     (-----) [001] d..2 24576.414486: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114380          <idle>-0     (-----) [001] dn.3 24576.414499: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114381          <idle>-0     (-----) [001] d..2 24576.414512: 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
114382     ksoftirqd/1-18    (   18) [001] d.s2 24576.414525: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
114383     ksoftirqd/1-18    (   18) [001] d.s3 24576.414549: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
114384     ksoftirqd/1-18    (   18) [001] d..2 24576.414569: 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
114385  kworker/u16:10-23868 (23868) [001] d..2 24576.414678: 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
114386          <idle>-0     (-----) [001] d..1 24576.414701: cpu_idle: state=2 cpu_id=1
114387          <idle>-0     (-----) [003] .n.1 24576.414760: cpu_idle: state=4294967295 cpu_id=3
114388          <idle>-0     (-----) [003] d..2 24576.414791: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114389  appEventThread-23905 (23896) [003] d..3 24576.414849: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114390  appEventThread-23905 (23896) [003] d..4 24576.414882: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114391  appEventThread-23905 (23896) [003] d..2 24576.414939: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114392          <idle>-0     (-----) [003] d..1 24576.414964: cpu_idle: state=0 cpu_id=3
114393          <idle>-0     (-----) [000] .n.1 24576.415206: cpu_idle: state=4294967295 cpu_id=0
114394          <idle>-0     (-----) [000] d..2 24576.415244: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
114395 s.nexuslauncher-24827 (24827) [000] .... 24576.415503: binder_transaction: transaction=1671570 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
114396 s.nexuslauncher-24827 (24827) [000] d..4 24576.415519: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114397 s.nexuslauncher-24827 (24827) [000] d..5 24576.415559: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114398 s.nexuslauncher-24827 (24827) [000] d..2 24576.415709: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114399          <idle>-0     (-----) [000] d..1 24576.415740: cpu_idle: state=2 cpu_id=0
114400          <idle>-0     (-----) [001] .n.1 24576.415895: cpu_idle: state=4294967295 cpu_id=1
114401          <idle>-0     (-----) [001] d..2 24576.415924: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
114402  Binder:23896_5-25989 (23896) [001] .... 24576.415937: binder_transaction_received: transaction=1671570
114403  Binder:23896_5-25989 (23896) [001] d..1 24576.415989: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114404  Binder:23896_5-25989 (23896) [001] d..2 24576.416019: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114405          <idle>-0     (-----) [003] .n.1 24576.416028: cpu_idle: state=4294967295 cpu_id=3
114406          <idle>-0     (-----) [003] d..2 24576.416043: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114407  Binder:23896_5-25989 (23896) [001] d..2 24576.416086: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114408  appEventThread-23905 (23896) [003] d..2 24576.416098: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114409          <idle>-0     (-----) [001] d..1 24576.416112: cpu_idle: state=0 cpu_id=1
114410          <idle>-0     (-----) [003] d..1 24576.416116: cpu_idle: state=0 cpu_id=3
114411          <idle>-0     (-----) [001] d..2 24576.422133: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114412          <idle>-0     (-----) [003] ...1 24576.422139: cpu_idle: state=4294967295 cpu_id=3
114413          <idle>-0     (-----) [003] d..1 24576.422146: cpu_idle: state=2 cpu_id=3
114414          <idle>-0     (-----) [001] dn.3 24576.422151: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114415          <idle>-0     (-----) [001] dnH3 24576.422235: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
114416          <idle>-0     (-----) [001] dnH3 24576.422252: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
114417          <idle>-0     (-----) [001] dnH4 24576.422270: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
114418          <idle>-0     (-----) [001] .n.1 24576.422287: cpu_idle: state=4294967295 cpu_id=1
114419          <idle>-0     (-----) [001] d..2 24576.422308: 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
114420     ksoftirqd/1-18    (   18) [001] d..2 24576.422346: 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
114421          <idle>-0     (-----) [001] d..1 24576.422361: cpu_idle: state=2 cpu_id=1
114422          <idle>-0     (-----) [002] .n.1 24576.422593: cpu_idle: state=4294967295 cpu_id=2
114423          <idle>-0     (-----) [002] d..2 24576.422619: 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
114424         sugov:0-559   (  559) [002] d..2 24576.422664: 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
114425          <idle>-0     (-----) [002] d..1 24576.422687: cpu_idle: state=0 cpu_id=2
114426          <idle>-0     (-----) [006] dnh2 24576.423321: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
114427          <idle>-0     (-----) [006] .n.1 24576.423332: cpu_idle: state=4294967295 cpu_id=6
114428          <idle>-0     (-----) [006] d..2 24576.423348: 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
114429         sugov:4-560   (  560) [006] d..2 24576.423377: 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
114430          <idle>-0     (-----) [006] d..1 24576.423391: cpu_idle: state=2 cpu_id=6
114431          <idle>-0     (-----) [002] d..2 24576.428707: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
114432          <idle>-0     (-----) [002] dn.3 24576.428725: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
114433          <idle>-0     (-----) [002] .n.1 24576.428731: cpu_idle: state=4294967295 cpu_id=2
114434          <idle>-0     (-----) [002] d..2 24576.428750: 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
114435     ksoftirqd/2-26    (   26) [002] d.s2 24576.428761: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
114436     ksoftirqd/2-26    (   26) [002] d.s3 24576.428819: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
114437     ksoftirqd/2-26    (   26) [002] d..2 24576.428842: 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
114438  kworker/u16:10-23868 (23868) [002] d..2 24576.428963: 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
114439          <idle>-0     (-----) [002] d..1 24576.428982: cpu_idle: state=2 cpu_id=2
114440          <idle>-0     (-----) [001] d.h2 24576.430767: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
114441          <idle>-0     (-----) [001] dnh3 24576.430794: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
114442          <idle>-0     (-----) [001] .n.1 24576.430810: cpu_idle: state=4294967295 cpu_id=1
114443          <idle>-0     (-----) [001] d..2 24576.430829: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
114444        DispSync-23904 (23896) [001] d..1 24576.430858: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114445        DispSync-23904 (23896) [001] d..2 24576.430878: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114446        DispSync-23904 (23896) [001] d.s3 24576.430923: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
114447        DispSync-23904 (23896) [001] d.s4 24576.430977: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
114448        DispSync-23904 (23896) [001] d..2 24576.431021: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
114449  kworker/u16:10-23868 (23868) [001] d..2 24576.431125: 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
114450          <idle>-0     (-----) [001] d..1 24576.431150: cpu_idle: state=0 cpu_id=1
114451          <idle>-0     (-----) [003] .n.1 24576.431209: cpu_idle: state=4294967295 cpu_id=3
114452          <idle>-0     (-----) [003] d..2 24576.431244: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114453  appEventThread-23905 (23896) [003] d..3 24576.431307: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114454  appEventThread-23905 (23896) [003] d..4 24576.431349: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114455  appEventThread-23905 (23896) [003] d..2 24576.431423: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114456          <idle>-0     (-----) [003] d..1 24576.431453: cpu_idle: state=0 cpu_id=3
114457          <idle>-0     (-----) [000] .n.1 24576.431674: cpu_idle: state=4294967295 cpu_id=0
114458          <idle>-0     (-----) [000] d..2 24576.431711: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
114459 s.nexuslauncher-24827 (24827) [000] .... 24576.431970: binder_transaction: transaction=1671571 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
114460 s.nexuslauncher-24827 (24827) [000] d..4 24576.431985: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114461 s.nexuslauncher-24827 (24827) [000] d..5 24576.432028: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114462          <idle>-0     (-----) [001] .n.1 24576.432036: cpu_idle: state=4294967295 cpu_id=1
114463          <idle>-0     (-----) [001] d..2 24576.432057: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
114464  Binder:23896_5-25989 (23896) [001] .... 24576.432069: binder_transaction_received: transaction=1671571
114465  Binder:23896_5-25989 (23896) [001] d..1 24576.432116: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114466  Binder:23896_5-25989 (23896) [001] d..2 24576.432145: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114467          <idle>-0     (-----) [003] .n.1 24576.432154: cpu_idle: state=4294967295 cpu_id=3
114468          <idle>-0     (-----) [003] d..2 24576.432170: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114469 s.nexuslauncher-24827 (24827) [000] d..2 24576.432171: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114470          <idle>-0     (-----) [000] d..1 24576.432198: cpu_idle: state=2 cpu_id=0
114471  Binder:23896_5-25989 (23896) [001] d..2 24576.432208: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114472  appEventThread-23905 (23896) [003] d..2 24576.432224: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114473          <idle>-0     (-----) [001] d..1 24576.432233: cpu_idle: state=0 cpu_id=1
114474          <idle>-0     (-----) [003] d..1 24576.432241: cpu_idle: state=0 cpu_id=3
114475          <idle>-0     (-----) [001] d..2 24576.438253: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114476          <idle>-0     (-----) [003] ...1 24576.438261: cpu_idle: state=4294967295 cpu_id=3
114477          <idle>-0     (-----) [003] d..1 24576.438268: cpu_idle: state=2 cpu_id=3
114478          <idle>-0     (-----) [001] dn.3 24576.438270: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114479          <idle>-0     (-----) [001] dnH3 24576.438353: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
114480          <idle>-0     (-----) [001] dnH3 24576.438372: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
114481          <idle>-0     (-----) [001] dnH4 24576.438389: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
114482          <idle>-0     (-----) [001] dns3 24576.438402: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
114483          <idle>-0     (-----) [001] dns4 24576.438424: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
114484          <idle>-0     (-----) [001] dns3 24576.438433: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
114485          <idle>-0     (-----) [001] dns4 24576.438445: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
114486          <idle>-0     (-----) [001] .n.1 24576.438455: cpu_idle: state=4294967295 cpu_id=1
114487          <idle>-0     (-----) [001] d..2 24576.438475: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
114488     kworker/1:1-13091 (13091) [001] d..2 24576.438521: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
114489     ksoftirqd/1-18    (   18) [001] d..2 24576.438533: 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
114490  kworker/u16:10-23868 (23868) [001] d..2 24576.438649: 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
114491          <idle>-0     (-----) [001] d..1 24576.438669: cpu_idle: state=2 cpu_id=1
114492          <idle>-0     (-----) [002] .n.1 24576.438720: cpu_idle: state=4294967295 cpu_id=2
114493          <idle>-0     (-----) [002] d..2 24576.438749: 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
114494         sugov:0-559   (  559) [002] d..2 24576.438796: 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
114495          <idle>-0     (-----) [002] d..1 24576.438818: cpu_idle: state=2 cpu_id=2
114496          <idle>-0     (-----) [006] dnh2 24576.439432: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
114497          <idle>-0     (-----) [006] .n.1 24576.439442: cpu_idle: state=4294967295 cpu_id=6
114498          <idle>-0     (-----) [006] d..2 24576.439454: 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
114499         sugov:4-560   (  560) [006] d..2 24576.439477: 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
114500          <idle>-0     (-----) [006] d..1 24576.439488: cpu_idle: state=2 cpu_id=6
114501          <idle>-0     (-----) [001] d.h2 24576.447328: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
114502          <idle>-0     (-----) [001] dnh3 24576.447357: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
114503          <idle>-0     (-----) [001] .n.1 24576.447371: cpu_idle: state=4294967295 cpu_id=1
114504          <idle>-0     (-----) [001] d..2 24576.447392: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
114505        DispSync-23904 (23896) [001] d..1 24576.447421: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114506        DispSync-23904 (23896) [001] d..2 24576.447439: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114507        DispSync-23904 (23896) [001] d..2 24576.447496: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114508          <idle>-0     (-----) [001] d..2 24576.447502: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114509          <idle>-0     (-----) [001] dn.3 24576.447516: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114510          <idle>-0     (-----) [001] d..2 24576.447527: 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
114511     ksoftirqd/1-18    (   18) [001] d..2 24576.447556: 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
114512          <idle>-0     (-----) [001] d.s4 24576.447598: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
114513          <idle>-0     (-----) [001] dns5 24576.447623: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
114514          <idle>-0     (-----) [001] d..2 24576.447654: 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
114515          <idle>-0     (-----) [003] .n.1 24576.447761: cpu_idle: state=4294967295 cpu_id=3
114516          <idle>-0     (-----) [003] d..2 24576.447793: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114517  kworker/u16:10-23868 (23868) [001] d..2 24576.447821: 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
114518          <idle>-0     (-----) [001] d..1 24576.447850: cpu_idle: state=0 cpu_id=1
114519  appEventThread-23905 (23896) [003] d..3 24576.447852: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114520  appEventThread-23905 (23896) [003] d..4 24576.447891: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114521  appEventThread-23905 (23896) [003] d..2 24576.447960: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114522          <idle>-0     (-----) [003] d..1 24576.447989: cpu_idle: state=2 cpu_id=3
114523          <idle>-0     (-----) [000] .n.1 24576.448203: cpu_idle: state=4294967295 cpu_id=0
114524          <idle>-0     (-----) [000] d..2 24576.448233: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
114525 s.nexuslauncher-24827 (24827) [000] .... 24576.448484: binder_transaction: transaction=1671572 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
114526 s.nexuslauncher-24827 (24827) [000] d..4 24576.448499: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114527 s.nexuslauncher-24827 (24827) [000] d..5 24576.448535: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114528          <idle>-0     (-----) [001] .n.1 24576.448543: cpu_idle: state=4294967295 cpu_id=1
114529          <idle>-0     (-----) [001] d..2 24576.448561: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
114530  Binder:23896_5-25989 (23896) [001] .... 24576.448573: binder_transaction_received: transaction=1671572
114531  Binder:23896_5-25989 (23896) [001] d..1 24576.448619: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114532  Binder:23896_5-25989 (23896) [001] d..2 24576.448643: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114533 s.nexuslauncher-24827 (24827) [000] d..2 24576.448680: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114534          <idle>-0     (-----) [000] d..1 24576.448706: cpu_idle: state=2 cpu_id=0
114535  Binder:23896_5-25989 (23896) [001] d..2 24576.448709: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114536          <idle>-0     (-----) [001] d..1 24576.448737: cpu_idle: state=0 cpu_id=1
114537          <idle>-0     (-----) [003] .n.1 24576.448957: cpu_idle: state=4294967295 cpu_id=3
114538          <idle>-0     (-----) [003] d..2 24576.448983: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114539  appEventThread-23905 (23896) [003] d..2 24576.449066: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114540          <idle>-0     (-----) [003] d..1 24576.449090: cpu_idle: state=0 cpu_id=3
114541          <idle>-0     (-----) [001] d..2 24576.454753: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114542          <idle>-0     (-----) [001] dn.3 24576.454768: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114543          <idle>-0     (-----) [001] .n.1 24576.454775: cpu_idle: state=4294967295 cpu_id=1
114544          <idle>-0     (-----) [001] d..2 24576.454795: 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
114545     ksoftirqd/1-18    (   18) [001] d..2 24576.454836: 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
114546          <idle>-0     (-----) [001] d..1 24576.454851: cpu_idle: state=2 cpu_id=1
114547          <idle>-0     (-----) [003] ...1 24576.455105: cpu_idle: state=4294967295 cpu_id=3
114548          <idle>-0     (-----) [003] d..1 24576.455112: cpu_idle: state=2 cpu_id=3
114549          <idle>-0     (-----) [001] d.h2 24576.463678: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
114550          <idle>-0     (-----) [001] dnh3 24576.463711: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
114551          <idle>-0     (-----) [001] dnh3 24576.463805: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
114552          <idle>-0     (-----) [001] dnh3 24576.463821: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
114553          <idle>-0     (-----) [001] dnh4 24576.463839: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
114554          <idle>-0     (-----) [001] .n.1 24576.463850: cpu_idle: state=4294967295 cpu_id=1
114555          <idle>-0     (-----) [001] d..2 24576.463870: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
114556        DispSync-23904 (23896) [001] d..1 24576.463898: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114557        DispSync-23904 (23896) [001] d..2 24576.463917: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114558        DispSync-23904 (23896) [001] d..2 24576.463972: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114559          <idle>-0     (-----) [001] d..2 24576.463979: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114560          <idle>-0     (-----) [001] dn.3 24576.463993: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114561          <idle>-0     (-----) [001] d..2 24576.464005: 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
114562     ksoftirqd/1-18    (   18) [001] d.s2 24576.464016: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
114563     ksoftirqd/1-18    (   18) [001] d.s3 24576.464065: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
114564     ksoftirqd/1-18    (   18) [001] d..2 24576.464102: 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
114565          <idle>-0     (-----) [001] d..1 24576.464124: cpu_idle: state=2 cpu_id=1
114566          <idle>-0     (-----) [002] .n.1 24576.464182: cpu_idle: state=4294967295 cpu_id=2
114567          <idle>-0     (-----) [002] d..2 24576.464213: 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
114568          <idle>-0     (-----) [003] .n.1 24576.464261: cpu_idle: state=4294967295 cpu_id=3
114569          <idle>-0     (-----) [003] d..2 24576.464292: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114570         sugov:0-559   (  559) [002] d..2 24576.464300: 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
114571  appEventThread-23905 (23896) [003] d..3 24576.464371: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114572  appEventThread-23905 (23896) [003] d..4 24576.464405: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114573  kworker/u16:10-23868 (23868) [002] d..2 24576.464488: 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
114574  appEventThread-23905 (23896) [003] d..2 24576.464496: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114575          <idle>-0     (-----) [002] d..1 24576.464513: cpu_idle: state=2 cpu_id=2
114576          <idle>-0     (-----) [003] d..1 24576.464528: cpu_idle: state=0 cpu_id=3
114577          <idle>-0     (-----) [000] .n.1 24576.464720: cpu_idle: state=4294967295 cpu_id=0
114578          <idle>-0     (-----) [000] d..2 24576.464754: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
114579          <idle>-0     (-----) [006] dnh2 24576.464878: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
114580          <idle>-0     (-----) [006] .n.1 24576.464888: cpu_idle: state=4294967295 cpu_id=6
114581          <idle>-0     (-----) [006] d..2 24576.464899: 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
114582         sugov:4-560   (  560) [006] d..2 24576.464922: 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
114583          <idle>-0     (-----) [006] d..1 24576.464934: cpu_idle: state=2 cpu_id=6
114584 s.nexuslauncher-24827 (24827) [000] .... 24576.465010: binder_transaction: transaction=1671573 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
114585 s.nexuslauncher-24827 (24827) [000] d..4 24576.465026: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114586 s.nexuslauncher-24827 (24827) [000] d..5 24576.465066: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114587 s.nexuslauncher-24827 (24827) [000] d..2 24576.465203: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114588          <idle>-0     (-----) [000] d..1 24576.465231: cpu_idle: state=2 cpu_id=0
114589          <idle>-0     (-----) [001] .n.1 24576.465472: cpu_idle: state=4294967295 cpu_id=1
114590          <idle>-0     (-----) [001] d..2 24576.465501: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
114591  Binder:23896_5-25989 (23896) [001] .... 24576.465514: binder_transaction_received: transaction=1671573
114592  Binder:23896_5-25989 (23896) [001] d..1 24576.465563: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114593  Binder:23896_5-25989 (23896) [001] d..2 24576.465594: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114594          <idle>-0     (-----) [003] .n.1 24576.465603: cpu_idle: state=4294967295 cpu_id=3
114595          <idle>-0     (-----) [003] d..2 24576.465618: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114596  Binder:23896_5-25989 (23896) [001] d..2 24576.465663: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114597  appEventThread-23905 (23896) [003] d..2 24576.465676: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114598          <idle>-0     (-----) [001] d..1 24576.465689: cpu_idle: state=0 cpu_id=1
114599          <idle>-0     (-----) [003] d..1 24576.465695: cpu_idle: state=0 cpu_id=3
114600          <idle>-0     (-----) [001] d..2 24576.471706: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114601          <idle>-0     (-----) [003] ...1 24576.471713: cpu_idle: state=4294967295 cpu_id=3
114602          <idle>-0     (-----) [003] d..1 24576.471720: cpu_idle: state=2 cpu_id=3
114603          <idle>-0     (-----) [001] dn.3 24576.471721: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114604          <idle>-0     (-----) [001] .n.1 24576.471727: cpu_idle: state=4294967295 cpu_id=1
114605          <idle>-0     (-----) [001] d..2 24576.471745: 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
114606     ksoftirqd/1-18    (   18) [001] d.s2 24576.471758: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
114607     ksoftirqd/1-18    (   18) [001] d.s3 24576.471774: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
114608     ksoftirqd/1-18    (   18) [001] d..2 24576.471788: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
114609     kworker/1:1-13091 (13091) [001] d..2 24576.471850: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114610          <idle>-0     (-----) [001] d..1 24576.471866: cpu_idle: state=2 cpu_id=1
114611          <idle>-0     (-----) [007] d.H3 24576.478792: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
114612          <idle>-0     (-----) [007] d.H4 24576.478811: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
114613          <idle>-0     (-----) [007] d.H3 24576.478816: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
114614          <idle>-0     (-----) [007] d.s3 24576.478855: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
114615          <idle>-0     (-----) [007] ...1 24576.478901: cpu_idle: state=4294967295 cpu_id=7
114616          <idle>-0     (-----) [007] d..1 24576.478910: cpu_idle: state=2 cpu_id=7
114617          <idle>-0     (-----) [002] dnh2 24576.479237: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
114618          <idle>-0     (-----) [002] dnh2 24576.479246: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
114619          <idle>-0     (-----) [002] .n.1 24576.479257: cpu_idle: state=4294967295 cpu_id=2
114620          <idle>-0     (-----) [002] d..2 24576.479277: 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
114621         sugov:0-559   (  559) [002] d..2 24576.479299: 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
114622  kworker/u16:10-23868 (23868) [002] d..2 24576.479424: 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
114623          <idle>-0     (-----) [002] d..1 24576.479447: cpu_idle: state=2 cpu_id=2
114624          <idle>-0     (-----) [006] .n.1 24576.479509: cpu_idle: state=4294967295 cpu_id=6
114625          <idle>-0     (-----) [006] d..2 24576.479530: 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
114626         sugov:4-560   (  560) [006] d..2 24576.479555: 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
114627          <idle>-0     (-----) [006] d..1 24576.479569: cpu_idle: state=2 cpu_id=6
114628          <idle>-0     (-----) [001] d.h2 24576.480150: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
114629          <idle>-0     (-----) [001] dnh3 24576.480178: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
114630          <idle>-0     (-----) [001] .n.1 24576.480195: cpu_idle: state=4294967295 cpu_id=1
114631          <idle>-0     (-----) [001] d..2 24576.480213: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
114632        DispSync-23904 (23896) [001] d..1 24576.480241: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114633        DispSync-23904 (23896) [001] d..2 24576.480263: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114634        DispSync-23904 (23896) [001] d..2 24576.480311: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114635          <idle>-0     (-----) [001] d..1 24576.480335: cpu_idle: state=0 cpu_id=1
114636          <idle>-0     (-----) [003] .n.1 24576.480601: cpu_idle: state=4294967295 cpu_id=3
114637          <idle>-0     (-----) [003] d..2 24576.480639: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114638  appEventThread-23905 (23896) [003] d..3 24576.480703: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114639  appEventThread-23905 (23896) [003] d..4 24576.480743: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114640  appEventThread-23905 (23896) [003] d..2 24576.480816: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114641          <idle>-0     (-----) [003] d..1 24576.480850: cpu_idle: state=0 cpu_id=3
114642          <idle>-0     (-----) [000] .n.1 24576.481067: cpu_idle: state=4294967295 cpu_id=0
114643          <idle>-0     (-----) [000] d..2 24576.481109: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
114644 s.nexuslauncher-24827 (24827) [000] .... 24576.481366: binder_transaction: transaction=1671574 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
114645 s.nexuslauncher-24827 (24827) [000] d..4 24576.481382: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114646 s.nexuslauncher-24827 (24827) [000] d..5 24576.481426: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114647          <idle>-0     (-----) [001] .n.1 24576.481434: cpu_idle: state=4294967295 cpu_id=1
114648          <idle>-0     (-----) [001] d..2 24576.481458: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
114649  Binder:23896_5-25989 (23896) [001] .... 24576.481470: binder_transaction_received: transaction=1671574
114650  Binder:23896_5-25989 (23896) [001] d..1 24576.481515: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114651  Binder:23896_5-25989 (23896) [001] d..2 24576.481543: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114652          <idle>-0     (-----) [003] .n.1 24576.481552: cpu_idle: state=4294967295 cpu_id=3
114653          <idle>-0     (-----) [003] d..2 24576.481568: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114654 s.nexuslauncher-24827 (24827) [000] d..2 24576.481574: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114655          <idle>-0     (-----) [000] d..2 24576.481586: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
114656          <idle>-0     (-----) [000] dn.3 24576.481601: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
114657  Binder:23896_5-25989 (23896) [001] d..2 24576.481610: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114658          <idle>-0     (-----) [000] d..2 24576.481617: 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
114659  appEventThread-23905 (23896) [003] d..2 24576.481623: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114660     ksoftirqd/0-3     (    3) [000] d.s2 24576.481631: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
114661          <idle>-0     (-----) [001] d..1 24576.481634: cpu_idle: state=0 cpu_id=1
114662          <idle>-0     (-----) [003] d..1 24576.481643: cpu_idle: state=0 cpu_id=3
114663     ksoftirqd/0-3     (    3) [000] d.s3 24576.481686: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
114664     ksoftirqd/0-3     (    3) [000] d..2 24576.481704: 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
114665  kworker/u16:10-23868 (23868) [000] d..2 24576.481798: 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
114666          <idle>-0     (-----) [000] d..1 24576.481821: cpu_idle: state=2 cpu_id=0
114667          <idle>-0     (-----) [001] d..2 24576.487651: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114668          <idle>-0     (-----) [003] ...1 24576.487661: cpu_idle: state=4294967295 cpu_id=3
114669          <idle>-0     (-----) [003] d..1 24576.487668: cpu_idle: state=2 cpu_id=3
114670          <idle>-0     (-----) [001] dn.3 24576.487669: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114671          <idle>-0     (-----) [001] .n.1 24576.487674: cpu_idle: state=4294967295 cpu_id=1
114672          <idle>-0     (-----) [001] d..2 24576.487692: 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
114673     ksoftirqd/1-18    (   18) [001] d.s2 24576.487705: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
114674     ksoftirqd/1-18    (   18) [001] d.s3 24576.487757: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
114675     ksoftirqd/1-18    (   18) [001] d..2 24576.487778: 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
114676  kworker/u16:10-23868 (23868) [001] d..2 24576.487898: 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
114677          <idle>-0     (-----) [001] d..1 24576.487917: cpu_idle: state=2 cpu_id=1
114678          <idle>-0     (-----) [001] d.h2 24576.496591: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
114679          <idle>-0     (-----) [001] dnh3 24576.496617: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
114680          <idle>-0     (-----) [001] .n.1 24576.496634: cpu_idle: state=4294967295 cpu_id=1
114681          <idle>-0     (-----) [001] d..2 24576.496653: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
114682        DispSync-23904 (23896) [001] d..1 24576.496682: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114683        DispSync-23904 (23896) [001] d..2 24576.496702: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114684        DispSync-23904 (23896) [001] d..2 24576.496757: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114685          <idle>-0     (-----) [001] d..2 24576.496764: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114686          <idle>-0     (-----) [001] dn.3 24576.496778: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114687          <idle>-0     (-----) [001] d..2 24576.496790: 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
114688     ksoftirqd/1-18    (   18) [001] d..2 24576.496818: 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
114689          <idle>-0     (-----) [001] d..1 24576.496841: cpu_idle: state=0 cpu_id=1
114690          <idle>-0     (-----) [003] .n.1 24576.497037: cpu_idle: state=4294967295 cpu_id=3
114691          <idle>-0     (-----) [003] d..2 24576.497075: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114692  appEventThread-23905 (23896) [003] d..3 24576.497137: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114693  appEventThread-23905 (23896) [003] d..4 24576.497175: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114694  appEventThread-23905 (23896) [003] d..2 24576.497248: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114695          <idle>-0     (-----) [003] d..1 24576.497276: cpu_idle: state=2 cpu_id=3
114696          <idle>-0     (-----) [000] .n.1 24576.497493: cpu_idle: state=4294967295 cpu_id=0
114697          <idle>-0     (-----) [000] d..2 24576.497525: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
114698 s.nexuslauncher-24827 (24827) [000] d.H2 24576.497684: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
114699 s.nexuslauncher-24827 (24827) [000] d.H2 24576.497709: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
114700 s.nexuslauncher-24827 (24827) [000] d.H3 24576.497730: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
114701 s.nexuslauncher-24827 (24827) [000] d.s2 24576.497743: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
114702 s.nexuslauncher-24827 (24827) [000] d.s3 24576.497797: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
114703          <idle>-0     (-----) [002] .n.1 24576.498050: cpu_idle: state=4294967295 cpu_id=2
114704 s.nexuslauncher-24827 (24827) [000] .... 24576.498057: binder_transaction: transaction=1671575 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
114705 s.nexuslauncher-24827 (24827) [000] d..4 24576.498073: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114706          <idle>-0     (-----) [002] d..2 24576.498079: 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
114707         sugov:0-559   (  559) [002] d..2 24576.498106: 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
114708 s.nexuslauncher-24827 (24827) [000] d..5 24576.498108: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114709          <idle>-0     (-----) [001] .n.1 24576.498118: cpu_idle: state=4294967295 cpu_id=1
114710          <idle>-0     (-----) [001] d..2 24576.498137: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
114711  Binder:23896_5-25989 (23896) [001] .... 24576.498151: binder_transaction_received: transaction=1671575
114712  Binder:23896_5-25989 (23896) [001] d..1 24576.498218: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114713  Binder:23896_5-25989 (23896) [001] d..2 24576.498243: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114714 s.nexuslauncher-24827 (24827) [000] d..2 24576.498279: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114715  Binder:23896_5-25989 (23896) [001] d..2 24576.498317: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114716          <idle>-0     (-----) [000] d..1 24576.498344: cpu_idle: state=2 cpu_id=0
114717          <idle>-0     (-----) [001] d..1 24576.498383: cpu_idle: state=0 cpu_id=1
114718  kworker/u16:10-23868 (23868) [002] d..2 24576.498465: 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
114719          <idle>-0     (-----) [002] d..1 24576.498491: cpu_idle: state=2 cpu_id=2
114720          <idle>-0     (-----) [003] .n.1 24576.498566: cpu_idle: state=4294967295 cpu_id=3
114721          <idle>-0     (-----) [003] d..2 24576.498592: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114722  appEventThread-23905 (23896) [003] d..2 24576.498673: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114723          <idle>-0     (-----) [003] d..1 24576.498696: cpu_idle: state=0 cpu_id=3
114724          <idle>-0     (-----) [006] dnh2 24576.498765: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
114725          <idle>-0     (-----) [006] .n.1 24576.498774: cpu_idle: state=4294967295 cpu_id=6
114726          <idle>-0     (-----) [006] d..2 24576.498787: 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
114727         sugov:4-560   (  560) [006] d..2 24576.498811: 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
114728          <idle>-0     (-----) [006] d..1 24576.498822: cpu_idle: state=2 cpu_id=6
114729          <idle>-0     (-----) [001] d..2 24576.504398: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114730          <idle>-0     (-----) [001] dn.3 24576.504415: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114731          <idle>-0     (-----) [001] .n.1 24576.504420: cpu_idle: state=4294967295 cpu_id=1
114732          <idle>-0     (-----) [001] d..2 24576.504439: 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
114733     ksoftirqd/1-18    (   18) [001] d..2 24576.504483: 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
114734          <idle>-0     (-----) [001] d..1 24576.504498: cpu_idle: state=2 cpu_id=1
114735          <idle>-0     (-----) [003] ...1 24576.504710: cpu_idle: state=4294967295 cpu_id=3
114736          <idle>-0     (-----) [003] d..1 24576.504718: cpu_idle: state=2 cpu_id=3
114737          <idle>-0     (-----) [001] d.h2 24576.513027: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
114738          <idle>-0     (-----) [001] dnh3 24576.513055: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
114739          <idle>-0     (-----) [001] .n.1 24576.513071: cpu_idle: state=4294967295 cpu_id=1
114740          <idle>-0     (-----) [001] d..2 24576.513090: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
114741        DispSync-23904 (23896) [001] d..1 24576.513118: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114742        DispSync-23904 (23896) [001] d..2 24576.513136: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114743        DispSync-23904 (23896) [001] d..2 24576.513191: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114744          <idle>-0     (-----) [001] d..2 24576.513198: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114745          <idle>-0     (-----) [001] dn.3 24576.513211: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114746          <idle>-0     (-----) [001] d..2 24576.513224: 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
114747     ksoftirqd/1-18    (   18) [001] d.s2 24576.513236: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
114748     ksoftirqd/1-18    (   18) [001] d.s3 24576.513287: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
114749     ksoftirqd/1-18    (   18) [001] d..2 24576.513307: 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
114750  kworker/u16:10-23868 (23868) [001] d..2 24576.513416: 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
114751          <idle>-0     (-----) [001] d..1 24576.513441: cpu_idle: state=2 cpu_id=1
114752          <idle>-0     (-----) [003] .n.1 24576.513456: cpu_idle: state=4294967295 cpu_id=3
114753          <idle>-0     (-----) [003] d..2 24576.513487: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114754  appEventThread-23905 (23896) [003] d..3 24576.513545: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114755  appEventThread-23905 (23896) [003] d..4 24576.513578: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114756  appEventThread-23905 (23896) [003] d..2 24576.513634: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114757          <idle>-0     (-----) [003] d..1 24576.513659: cpu_idle: state=0 cpu_id=3
114758          <idle>-0     (-----) [000] .n.1 24576.513891: cpu_idle: state=4294967295 cpu_id=0
114759          <idle>-0     (-----) [000] d..2 24576.513927: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
114760 s.nexuslauncher-24827 (24827) [000] .... 24576.514182: binder_transaction: transaction=1671576 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
114761 s.nexuslauncher-24827 (24827) [000] d..4 24576.514196: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114762 s.nexuslauncher-24827 (24827) [000] d..5 24576.514233: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114763 s.nexuslauncher-24827 (24827) [000] d..2 24576.514448: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114764          <idle>-0     (-----) [000] d..1 24576.514479: cpu_idle: state=2 cpu_id=0
114765          <idle>-0     (-----) [001] .n.1 24576.514543: cpu_idle: state=4294967295 cpu_id=1
114766          <idle>-0     (-----) [001] d..2 24576.514576: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
114767  Binder:23896_5-25989 (23896) [001] .... 24576.514588: binder_transaction_received: transaction=1671576
114768  Binder:23896_5-25989 (23896) [001] d..1 24576.514640: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114769  Binder:23896_5-25989 (23896) [001] d..2 24576.514667: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114770          <idle>-0     (-----) [003] .n.1 24576.514676: cpu_idle: state=4294967295 cpu_id=3
114771          <idle>-0     (-----) [003] d..2 24576.514690: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114772  Binder:23896_5-25989 (23896) [001] d..2 24576.514733: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114773  appEventThread-23905 (23896) [003] d..2 24576.514748: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114774          <idle>-0     (-----) [001] d..1 24576.514759: cpu_idle: state=0 cpu_id=1
114775          <idle>-0     (-----) [003] d..1 24576.514766: cpu_idle: state=0 cpu_id=3
114776          <idle>-0     (-----) [001] d..2 24576.520781: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114777          <idle>-0     (-----) [003] ...1 24576.520785: cpu_idle: state=4294967295 cpu_id=3
114778          <idle>-0     (-----) [003] d..1 24576.520792: cpu_idle: state=2 cpu_id=3
114779          <idle>-0     (-----) [001] dn.3 24576.520797: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114780          <idle>-0     (-----) [001] dnH3 24576.520881: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
114781          <idle>-0     (-----) [001] dnH3 24576.520899: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
114782          <idle>-0     (-----) [001] dnH4 24576.520916: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
114783          <idle>-0     (-----) [001] .n.1 24576.520932: cpu_idle: state=4294967295 cpu_id=1
114784          <idle>-0     (-----) [001] d..2 24576.520957: 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
114785     ksoftirqd/1-18    (   18) [001] d..2 24576.520994: 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
114786          <idle>-0     (-----) [001] d..2 24576.521001: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114787          <idle>-0     (-----) [001] dn.3 24576.521012: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114788          <idle>-0     (-----) [001] d..2 24576.521021: 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
114789     ksoftirqd/1-18    (   18) [001] d.s2 24576.521031: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
114790     ksoftirqd/1-18    (   18) [001] d.s3 24576.521055: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
114791     ksoftirqd/1-18    (   18) [001] d..2 24576.521074: 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
114792  kworker/u16:10-23868 (23868) [001] d..2 24576.521181: 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
114793          <idle>-0     (-----) [001] d..1 24576.521200: cpu_idle: state=2 cpu_id=1
114794          <idle>-0     (-----) [002] .n.1 24576.521241: cpu_idle: state=4294967295 cpu_id=2
114795          <idle>-0     (-----) [002] d..2 24576.521269: 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
114796         sugov:0-559   (  559) [002] d..2 24576.521317: 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
114797          <idle>-0     (-----) [002] d..1 24576.521341: cpu_idle: state=2 cpu_id=2
114798          <idle>-0     (-----) [006] dnh2 24576.521984: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
114799          <idle>-0     (-----) [006] .n.1 24576.521993: cpu_idle: state=4294967295 cpu_id=6
114800          <idle>-0     (-----) [006] d..2 24576.522006: 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
114801         sugov:4-560   (  560) [006] d..2 24576.522028: 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
114802          <idle>-0     (-----) [006] d..1 24576.522040: cpu_idle: state=2 cpu_id=6
114803          <idle>-0     (-----) [001] d.h2 24576.529494: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
114804          <idle>-0     (-----) [001] dnh3 24576.529523: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
114805          <idle>-0     (-----) [001] .n.1 24576.529540: cpu_idle: state=4294967295 cpu_id=1
114806          <idle>-0     (-----) [001] d..2 24576.529560: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
114807        DispSync-23904 (23896) [001] d..1 24576.529589: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114808        DispSync-23904 (23896) [001] d..2 24576.529612: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114809        DispSync-23904 (23896) [001] d..2 24576.529669: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114810          <idle>-0     (-----) [001] d..2 24576.529676: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114811          <idle>-0     (-----) [001] dn.3 24576.529689: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114812          <idle>-0     (-----) [001] d..2 24576.529701: 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
114813     ksoftirqd/1-18    (   18) [001] d..2 24576.529731: 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
114814          <idle>-0     (-----) [001] d..1 24576.529753: cpu_idle: state=0 cpu_id=1
114815          <idle>-0     (-----) [003] .n.1 24576.529946: cpu_idle: state=4294967295 cpu_id=3
114816          <idle>-0     (-----) [003] d..2 24576.529984: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114817  appEventThread-23905 (23896) [003] d..3 24576.530046: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114818  appEventThread-23905 (23896) [003] d..4 24576.530088: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114819  appEventThread-23905 (23896) [003] d..2 24576.530161: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114820          <idle>-0     (-----) [003] d..1 24576.530191: cpu_idle: state=0 cpu_id=3
114821          <idle>-0     (-----) [000] .n.1 24576.530414: cpu_idle: state=4294967295 cpu_id=0
114822          <idle>-0     (-----) [000] d..2 24576.530453: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
114823 s.nexuslauncher-24827 (24827) [000] .... 24576.530710: binder_transaction: transaction=1671577 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
114824 s.nexuslauncher-24827 (24827) [000] d..4 24576.530724: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114825 s.nexuslauncher-24827 (24827) [000] d..5 24576.530767: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114826          <idle>-0     (-----) [001] .n.1 24576.530776: cpu_idle: state=4294967295 cpu_id=1
114827          <idle>-0     (-----) [001] d..2 24576.530793: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
114828  Binder:23896_5-25989 (23896) [001] .... 24576.530808: binder_transaction_received: transaction=1671577
114829  Binder:23896_5-25989 (23896) [001] d..1 24576.530853: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114830  Binder:23896_5-25989 (23896) [001] d..2 24576.530880: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114831          <idle>-0     (-----) [003] .n.1 24576.530890: cpu_idle: state=4294967295 cpu_id=3
114832          <idle>-0     (-----) [003] d..2 24576.530910: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114833 s.nexuslauncher-24827 (24827) [000] d..2 24576.530915: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114834  Binder:23896_5-25989 (23896) [001] d.s3 24576.530930: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
114835  appEventThread-23905 (23896) [003] d..2 24576.530957: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114836          <idle>-0     (-----) [003] d..1 24576.530974: cpu_idle: state=0 cpu_id=3
114837  Binder:23896_5-25989 (23896) [001] d.s4 24576.530987: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
114838          <idle>-0     (-----) [000] d..2 24576.531010: 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
114839  Binder:23896_5-25989 (23896) [001] d..1 24576.531014: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114840  Binder:23896_5-25989 (23896) [001] d..2 24576.531034: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114841          <idle>-0     (-----) [003] .n.1 24576.531041: cpu_idle: state=4294967295 cpu_id=3
114842          <idle>-0     (-----) [003] d..2 24576.531056: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114843  appEventThread-23905 (23896) [003] d..2 24576.531126: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114844  Binder:23896_5-25989 (23896) [001] d..2 24576.531137: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114845          <idle>-0     (-----) [001] d..1 24576.531162: cpu_idle: state=0 cpu_id=1
114846          <idle>-0     (-----) [003] d..1 24576.531169: cpu_idle: state=2 cpu_id=3
114847  kworker/u16:10-23868 (23868) [000] d..2 24576.531305: 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
114848          <idle>-0     (-----) [000] d..1 24576.531329: cpu_idle: state=2 cpu_id=0
114849          <idle>-0     (-----) [001] d..2 24576.537175: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114850          <idle>-0     (-----) [001] dn.3 24576.537188: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114851          <idle>-0     (-----) [001] .n.1 24576.537194: cpu_idle: state=4294967295 cpu_id=1
114852          <idle>-0     (-----) [001] d..2 24576.537213: 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
114853     ksoftirqd/1-18    (   18) [001] d..2 24576.537252: 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
114854          <idle>-0     (-----) [001] d..1 24576.537267: cpu_idle: state=2 cpu_id=1
114855          <idle>-0     (-----) [002] d.h2 24576.540144: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=002
114856          <idle>-0     (-----) [002] dnh3 24576.540194: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=002
114857          <idle>-0     (-----) [002] dnh3 24576.540299: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
114858          <idle>-0     (-----) [002] dnh3 24576.540319: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
114859          <idle>-0     (-----) [002] dnh4 24576.540348: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
114860          <idle>-0     (-----) [002] .n.1 24576.540360: cpu_idle: state=4294967295 cpu_id=2
114861          <idle>-0     (-----) [002] d..2 24576.540382: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=bluetooth@1.0-s next_pid=24508 next_prio=98
114862 bluetooth@1.0-s-24508 (  759) [002] d..2 24576.540616: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
114863          <idle>-0     (-----) [002] d..2 24576.540623: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
114864          <idle>-0     (-----) [002] dn.3 24576.540641: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
114865          <idle>-0     (-----) [002] d..2 24576.540654: 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
114866     ksoftirqd/2-26    (   26) [002] d.s2 24576.540670: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
114867          <idle>-0     (-----) [003] .n.1 24576.540671: cpu_idle: state=4294967295 cpu_id=3
114868     ksoftirqd/2-26    (   26) [002] d.s3 24576.540685: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
114869     ksoftirqd/2-26    (   26) [002] d..2 24576.540702: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
114870          <idle>-0     (-----) [003] d..2 24576.540704: 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
114871         sugov:0-559   (  559) [003] d..2 24576.540761: 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
114872     kworker/2:0-12895 (12895) [002] d..2 24576.540763: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
114873          <idle>-0     (-----) [003] d..1 24576.540780: cpu_idle: state=2 cpu_id=3
114874          <idle>-0     (-----) [002] d..1 24576.540791: cpu_idle: state=2 cpu_id=2
114875          <idle>-0     (-----) [006] dnh2 24576.541381: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
114876          <idle>-0     (-----) [006] .n.1 24576.541389: cpu_idle: state=4294967295 cpu_id=6
114877          <idle>-0     (-----) [006] d..2 24576.541402: 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
114878         sugov:4-560   (  560) [006] d..2 24576.541427: 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
114879          <idle>-0     (-----) [006] d..2 24576.541432: sched_waking: comm=ksoftirqd/6 pid=58 prio=120 target_cpu=006
114880          <idle>-0     (-----) [006] dn.3 24576.541447: sched_wakeup: comm=ksoftirqd/6 pid=58 prio=120 target_cpu=006
114881          <idle>-0     (-----) [006] d..2 24576.541455: 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
114882     ksoftirqd/6-58    (   58) [006] d.s2 24576.541467: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
114883     ksoftirqd/6-58    (   58) [006] d..2 24576.541499: 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
114884          <idle>-0     (-----) [006] d..1 24576.541511: cpu_idle: state=2 cpu_id=6
114885          <idle>-0     (-----) [000] dnh2 24576.542016: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
114886          <idle>-0     (-----) [000] .n.1 24576.542030: cpu_idle: state=4294967295 cpu_id=0
114887          <idle>-0     (-----) [000] d..2 24576.542053: 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
114888  kworker/u16:10-23868 (23868) [000] d..2 24576.542171: 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
114889          <idle>-0     (-----) [000] d..1 24576.542192: cpu_idle: state=2 cpu_id=0
114890          <idle>-0     (-----) [001] d.h2 24576.545942: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
114891          <idle>-0     (-----) [001] dnh3 24576.545970: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
114892          <idle>-0     (-----) [001] .n.1 24576.545986: cpu_idle: state=4294967295 cpu_id=1
114893          <idle>-0     (-----) [001] d..2 24576.546005: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
114894        DispSync-23904 (23896) [001] d..1 24576.546034: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114895        DispSync-23904 (23896) [001] d..2 24576.546053: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114896        DispSync-23904 (23896) [001] d..2 24576.546111: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114897          <idle>-0     (-----) [001] d..2 24576.546117: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114898          <idle>-0     (-----) [001] dn.3 24576.546132: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114899          <idle>-0     (-----) [001] d..2 24576.546143: 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
114900     ksoftirqd/1-18    (   18) [001] d..2 24576.546173: 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
114901          <idle>-0     (-----) [001] d..1 24576.546196: cpu_idle: state=0 cpu_id=1
114902          <idle>-0     (-----) [003] .n.1 24576.546380: cpu_idle: state=4294967295 cpu_id=3
114903          <idle>-0     (-----) [003] d..2 24576.546416: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114904  appEventThread-23905 (23896) [003] d..3 24576.546478: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114905  appEventThread-23905 (23896) [003] d..4 24576.546520: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114906  appEventThread-23905 (23896) [003] d..2 24576.546592: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114907          <idle>-0     (-----) [003] d..1 24576.546621: cpu_idle: state=2 cpu_id=3
114908          <idle>-0     (-----) [000] .n.1 24576.546832: cpu_idle: state=4294967295 cpu_id=0
114909          <idle>-0     (-----) [000] d..2 24576.546865: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
114910 s.nexuslauncher-24827 (24827) [000] .... 24576.547116: binder_transaction: transaction=1671578 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
114911 s.nexuslauncher-24827 (24827) [000] d..4 24576.547132: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114912 s.nexuslauncher-24827 (24827) [000] d..5 24576.547168: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114913          <idle>-0     (-----) [001] .n.1 24576.547177: cpu_idle: state=4294967295 cpu_id=1
114914          <idle>-0     (-----) [001] d..2 24576.547196: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
114915  Binder:23896_5-25989 (23896) [001] .... 24576.547209: binder_transaction_received: transaction=1671578
114916  Binder:23896_5-25989 (23896) [001] d..1 24576.547252: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114917  Binder:23896_5-25989 (23896) [001] d..2 24576.547274: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
114918 s.nexuslauncher-24827 (24827) [000] d..2 24576.547308: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114919          <idle>-0     (-----) [000] d..1 24576.547335: cpu_idle: state=2 cpu_id=0
114920  Binder:23896_5-25989 (23896) [001] d..2 24576.547338: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114921          <idle>-0     (-----) [001] d..1 24576.547364: cpu_idle: state=0 cpu_id=1
114922          <idle>-0     (-----) [003] .n.1 24576.547591: cpu_idle: state=4294967295 cpu_id=3
114923          <idle>-0     (-----) [003] d..2 24576.547626: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114924  appEventThread-23905 (23896) [003] d..2 24576.547722: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114925          <idle>-0     (-----) [003] d..2 24576.547730: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
114926          <idle>-0     (-----) [003] dn.3 24576.547751: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
114927          <idle>-0     (-----) [003] d..2 24576.547765: 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
114928     ksoftirqd/3-34    (   34) [003] d.s2 24576.547779: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
114929     ksoftirqd/3-34    (   34) [003] d.s3 24576.547831: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
114930     ksoftirqd/3-34    (   34) [003] d..2 24576.547850: 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
114931  kworker/u16:10-23868 (23868) [003] d..2 24576.547935: 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
114932          <idle>-0     (-----) [003] d..1 24576.547961: cpu_idle: state=0 cpu_id=3
114933          <idle>-0     (-----) [001] d..2 24576.553384: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114934          <idle>-0     (-----) [001] dn.3 24576.553399: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114935          <idle>-0     (-----) [001] .n.1 24576.553406: cpu_idle: state=4294967295 cpu_id=1
114936          <idle>-0     (-----) [001] d..2 24576.553425: 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
114937     ksoftirqd/1-18    (   18) [001] d.s2 24576.553440: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
114938     ksoftirqd/1-18    (   18) [001] d.s3 24576.553502: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
114939     ksoftirqd/1-18    (   18) [001] d..2 24576.553525: 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
114940  kworker/u16:10-23868 (23868) [001] d..2 24576.553654: 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
114941          <idle>-0     (-----) [001] d..1 24576.553674: cpu_idle: state=2 cpu_id=1
114942          <idle>-0     (-----) [003] ...1 24576.553975: cpu_idle: state=4294967295 cpu_id=3
114943          <idle>-0     (-----) [003] d..1 24576.553982: cpu_idle: state=2 cpu_id=3
114944          <idle>-0     (-----) [001] d.h2 24576.562409: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
114945          <idle>-0     (-----) [001] dnh3 24576.562442: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
114946          <idle>-0     (-----) [001] dnh3 24576.562535: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
114947          <idle>-0     (-----) [001] dnh3 24576.562552: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
114948          <idle>-0     (-----) [001] dnh4 24576.562569: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
114949          <idle>-0     (-----) [001] .n.1 24576.562580: cpu_idle: state=4294967295 cpu_id=1
114950          <idle>-0     (-----) [001] d..2 24576.562600: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
114951        DispSync-23904 (23896) [001] d..1 24576.562628: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
114952        DispSync-23904 (23896) [001] d..2 24576.562655: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
114953        DispSync-23904 (23896) [001] d..2 24576.562712: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114954          <idle>-0     (-----) [001] d..2 24576.562719: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114955          <idle>-0     (-----) [001] dn.3 24576.562733: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114956          <idle>-0     (-----) [001] d..2 24576.562745: 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
114957     ksoftirqd/1-18    (   18) [001] d.s2 24576.562757: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
114958     ksoftirqd/1-18    (   18) [001] d.s3 24576.562781: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
114959     ksoftirqd/1-18    (   18) [001] d..2 24576.562799: 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
114960          <idle>-0     (-----) [003] .n.1 24576.562893: cpu_idle: state=4294967295 cpu_id=3
114961  kworker/u16:10-23868 (23868) [001] d..2 24576.562908: 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
114962          <idle>-0     (-----) [003] d..2 24576.562924: 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
114963          <idle>-0     (-----) [001] d..1 24576.562935: cpu_idle: state=2 cpu_id=1
114964         sugov:0-559   (  559) [003] d..2 24576.562979: 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
114965          <idle>-0     (-----) [002] .n.1 24576.563004: cpu_idle: state=4294967295 cpu_id=2
114966          <idle>-0     (-----) [003] d..1 24576.563004: cpu_idle: state=0 cpu_id=3
114967          <idle>-0     (-----) [002] d..2 24576.563032: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114968  appEventThread-23905 (23896) [002] d..3 24576.563093: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114969  appEventThread-23905 (23896) [002] d..4 24576.563128: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
114970  appEventThread-23905 (23896) [002] d..2 24576.563189: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
114971          <idle>-0     (-----) [002] d..1 24576.563216: cpu_idle: state=2 cpu_id=2
114972          <idle>-0     (-----) [000] .n.1 24576.563443: cpu_idle: state=4294967295 cpu_id=0
114973          <idle>-0     (-----) [000] d..2 24576.563475: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
114974          <idle>-0     (-----) [006] dnh2 24576.563608: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
114975          <idle>-0     (-----) [006] .n.1 24576.563617: cpu_idle: state=4294967295 cpu_id=6
114976          <idle>-0     (-----) [006] d..2 24576.563629: 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
114977         sugov:4-560   (  560) [006] d..2 24576.563652: 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
114978          <idle>-0     (-----) [006] d..1 24576.563663: cpu_idle: state=2 cpu_id=6
114979 s.nexuslauncher-24827 (24827) [000] .... 24576.563725: binder_transaction: transaction=1671579 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
114980 s.nexuslauncher-24827 (24827) [000] d..4 24576.563740: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114981 s.nexuslauncher-24827 (24827) [000] d..5 24576.563776: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
114982 s.nexuslauncher-24827 (24827) [000] d..2 24576.563914: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114983          <idle>-0     (-----) [000] d..1 24576.563940: cpu_idle: state=2 cpu_id=0
114984          <idle>-0     (-----) [001] .n.1 24576.564195: cpu_idle: state=4294967295 cpu_id=1
114985          <idle>-0     (-----) [001] d..2 24576.564223: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
114986  Binder:23896_5-25989 (23896) [001] .... 24576.564284: binder_transaction_received: transaction=1671579
114987  Binder:23896_5-25989 (23896) [001] d..1 24576.564331: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
114988  Binder:23896_5-25989 (23896) [001] d..2 24576.564359: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
114989  Binder:23896_5-25989 (23896) [001] d..2 24576.564431: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114990          <idle>-0     (-----) [001] d..1 24576.564458: cpu_idle: state=0 cpu_id=1
114991          <idle>-0     (-----) [002] .n.1 24576.564683: cpu_idle: state=4294967295 cpu_id=2
114992          <idle>-0     (-----) [002] d..2 24576.564712: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
114993  appEventThread-23905 (23896) [002] d..2 24576.564801: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
114994          <idle>-0     (-----) [002] d..1 24576.564827: cpu_idle: state=0 cpu_id=2
114995          <idle>-0     (-----) [003] d..2 24576.569022: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
114996          <idle>-0     (-----) [003] dn.3 24576.569044: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
114997          <idle>-0     (-----) [003] .n.1 24576.569049: cpu_idle: state=4294967295 cpu_id=3
114998          <idle>-0     (-----) [003] d..2 24576.569069: 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
114999     ksoftirqd/3-34    (   34) [003] d..2 24576.569117: 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
115000          <idle>-0     (-----) [003] d..1 24576.569131: cpu_idle: state=2 cpu_id=3
115001          <idle>-0     (-----) [001] ...1 24576.570471: cpu_idle: state=4294967295 cpu_id=1
115002          <idle>-0     (-----) [001] d..1 24576.570478: cpu_idle: state=2 cpu_id=1
115003          <idle>-0     (-----) [002] ...1 24576.570840: cpu_idle: state=4294967295 cpu_id=2
115004          <idle>-0     (-----) [002] d..1 24576.570847: cpu_idle: state=2 cpu_id=2
115005          <idle>-0     (-----) [001] d.h2 24576.578869: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
115006          <idle>-0     (-----) [001] dnh3 24576.578903: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
115007          <idle>-0     (-----) [001] dnh3 24576.578995: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
115008          <idle>-0     (-----) [001] dnh3 24576.579013: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
115009          <idle>-0     (-----) [001] dnh4 24576.579030: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
115010          <idle>-0     (-----) [001] .n.1 24576.579039: cpu_idle: state=4294967295 cpu_id=1
115011          <idle>-0     (-----) [001] d..2 24576.579060: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
115012        DispSync-23904 (23896) [001] d..1 24576.579089: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115013        DispSync-23904 (23896) [001] d..2 24576.579106: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115014        DispSync-23904 (23896) [001] d..2 24576.579162: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115015          <idle>-0     (-----) [001] d..2 24576.579169: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115016          <idle>-0     (-----) [001] dn.3 24576.579184: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115017          <idle>-0     (-----) [001] d..2 24576.579196: 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
115018     ksoftirqd/1-18    (   18) [001] d.s2 24576.579209: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115019     ksoftirqd/1-18    (   18) [001] d.s3 24576.579233: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115020     ksoftirqd/1-18    (   18) [001] d..2 24576.579253: 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
115021          <idle>-0     (-----) [003] .n.1 24576.579358: cpu_idle: state=4294967295 cpu_id=3
115022  kworker/u16:10-23868 (23868) [001] d..2 24576.579363: 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
115023          <idle>-0     (-----) [003] d..2 24576.579389: 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
115024          <idle>-0     (-----) [001] d..1 24576.579391: cpu_idle: state=0 cpu_id=1
115025          <idle>-0     (-----) [002] .n.1 24576.579443: cpu_idle: state=4294967295 cpu_id=2
115026         sugov:0-559   (  559) [003] d..2 24576.579447: 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
115027          <idle>-0     (-----) [002] d..2 24576.579472: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115028          <idle>-0     (-----) [003] d..1 24576.579476: cpu_idle: state=0 cpu_id=3
115029  appEventThread-23905 (23896) [002] d..3 24576.579530: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115030  appEventThread-23905 (23896) [002] d..4 24576.579569: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115031  appEventThread-23905 (23896) [002] d..2 24576.579632: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115032          <idle>-0     (-----) [002] d..1 24576.579659: cpu_idle: state=0 cpu_id=2
115033          <idle>-0     (-----) [000] .n.1 24576.579881: cpu_idle: state=4294967295 cpu_id=0
115034          <idle>-0     (-----) [000] d..2 24576.579917: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
115035          <idle>-0     (-----) [006] dnh2 24576.580063: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
115036          <idle>-0     (-----) [006] .n.1 24576.580073: cpu_idle: state=4294967295 cpu_id=6
115037          <idle>-0     (-----) [006] d..2 24576.580084: 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
115038         sugov:4-560   (  560) [006] d..2 24576.580107: 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
115039          <idle>-0     (-----) [006] d..1 24576.580120: cpu_idle: state=2 cpu_id=6
115040 s.nexuslauncher-24827 (24827) [000] .... 24576.580174: binder_transaction: transaction=1671580 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
115041 s.nexuslauncher-24827 (24827) [000] d..4 24576.580189: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
115042 s.nexuslauncher-24827 (24827) [000] d..5 24576.580228: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
115043          <idle>-0     (-----) [001] .n.1 24576.580237: cpu_idle: state=4294967295 cpu_id=1
115044          <idle>-0     (-----) [001] d..2 24576.580255: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
115045  Binder:23896_5-25989 (23896) [001] .... 24576.580267: binder_transaction_received: transaction=1671580
115046  Binder:23896_5-25989 (23896) [001] d..1 24576.580316: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115047  Binder:23896_5-25989 (23896) [001] d..2 24576.580344: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115048          <idle>-0     (-----) [002] .n.1 24576.580352: cpu_idle: state=4294967295 cpu_id=2
115049          <idle>-0     (-----) [002] d..2 24576.580366: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115050 s.nexuslauncher-24827 (24827) [000] d..2 24576.580368: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115051          <idle>-0     (-----) [000] d..1 24576.580395: cpu_idle: state=2 cpu_id=0
115052  Binder:23896_5-25989 (23896) [001] d..2 24576.580408: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115053  appEventThread-23905 (23896) [002] d..2 24576.580420: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115054          <idle>-0     (-----) [001] d..1 24576.580432: cpu_idle: state=0 cpu_id=1
115055          <idle>-0     (-----) [002] d..1 24576.580438: cpu_idle: state=0 cpu_id=2
115056          <idle>-0     (-----) [003] d..2 24576.585493: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
115057          <idle>-0     (-----) [003] dn.3 24576.585512: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
115058          <idle>-0     (-----) [003] .n.1 24576.585517: cpu_idle: state=4294967295 cpu_id=3
115059          <idle>-0     (-----) [003] d..2 24576.585537: 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
115060     ksoftirqd/3-34    (   34) [003] d.s2 24576.585551: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115061     ksoftirqd/3-34    (   34) [003] d.s3 24576.585607: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
115062     ksoftirqd/3-34    (   34) [003] d..2 24576.585626: 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
115063  kworker/u16:10-23868 (23868) [003] d..2 24576.585734: 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
115064          <idle>-0     (-----) [003] d..1 24576.585752: cpu_idle: state=2 cpu_id=3
115065          <idle>-0     (-----) [001] ...1 24576.586448: cpu_idle: state=4294967295 cpu_id=1
115066          <idle>-0     (-----) [001] d..1 24576.586454: cpu_idle: state=2 cpu_id=1
115067          <idle>-0     (-----) [002] ...1 24576.586456: cpu_idle: state=4294967295 cpu_id=2
115068          <idle>-0     (-----) [002] d..1 24576.586462: cpu_idle: state=2 cpu_id=2
115069          <idle>-0     (-----) [001] d.h2 24576.595312: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
115070          <idle>-0     (-----) [001] dnh3 24576.595339: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
115071          <idle>-0     (-----) [001] .n.1 24576.595355: cpu_idle: state=4294967295 cpu_id=1
115072          <idle>-0     (-----) [001] d..2 24576.595374: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
115073        DispSync-23904 (23896) [001] d..1 24576.595403: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115074        DispSync-23904 (23896) [001] d..2 24576.595424: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115075        DispSync-23904 (23896) [001] d..2 24576.595481: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115076          <idle>-0     (-----) [001] d..2 24576.595490: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115077          <idle>-0     (-----) [001] dn.3 24576.595502: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115078          <idle>-0     (-----) [001] d..2 24576.595514: 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
115079     ksoftirqd/1-18    (   18) [001] d.s2 24576.595527: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
115080     ksoftirqd/1-18    (   18) [001] d.s3 24576.595578: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115081     ksoftirqd/1-18    (   18) [001] d.s2 24576.595587: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
115082     ksoftirqd/1-18    (   18) [001] d.s3 24576.595603: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
115083     ksoftirqd/1-18    (   18) [001] d..2 24576.595620: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
115084     kworker/1:1-13091 (13091) [001] d..2 24576.595657: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
115085          <idle>-0     (-----) [002] .n.1 24576.595752: cpu_idle: state=4294967295 cpu_id=2
115086  kworker/u16:10-23868 (23868) [001] d..2 24576.595765: 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
115087          <idle>-0     (-----) [002] d..2 24576.595783: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115088          <idle>-0     (-----) [001] d..1 24576.595793: cpu_idle: state=0 cpu_id=1
115089  appEventThread-23905 (23896) [002] d..3 24576.595841: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115090  appEventThread-23905 (23896) [002] d..4 24576.595882: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115091  appEventThread-23905 (23896) [002] d..2 24576.595948: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115092          <idle>-0     (-----) [002] d..1 24576.595981: cpu_idle: state=0 cpu_id=2
115093          <idle>-0     (-----) [000] .n.1 24576.596210: cpu_idle: state=4294967295 cpu_id=0
115094          <idle>-0     (-----) [000] d..2 24576.596244: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
115095 s.nexuslauncher-24827 (24827) [000] .... 24576.596500: binder_transaction: transaction=1671581 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
115096 s.nexuslauncher-24827 (24827) [000] d..4 24576.596515: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
115097 s.nexuslauncher-24827 (24827) [000] d..5 24576.596555: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
115098          <idle>-0     (-----) [001] .n.1 24576.596563: cpu_idle: state=4294967295 cpu_id=1
115099          <idle>-0     (-----) [001] d..2 24576.596583: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
115100  Binder:23896_5-25989 (23896) [001] .... 24576.596596: binder_transaction_received: transaction=1671581
115101  Binder:23896_5-25989 (23896) [001] d..1 24576.596649: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115102  Binder:23896_5-25989 (23896) [001] d..2 24576.596677: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115103          <idle>-0     (-----) [002] .n.1 24576.596686: cpu_idle: state=4294967295 cpu_id=2
115104 s.nexuslauncher-24827 (24827) [000] d..2 24576.596697: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115105          <idle>-0     (-----) [002] d..2 24576.596699: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115106          <idle>-0     (-----) [000] d..1 24576.596725: cpu_idle: state=2 cpu_id=0
115107  Binder:23896_5-25989 (23896) [001] d..2 24576.596740: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115108  appEventThread-23905 (23896) [002] d..2 24576.596752: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115109          <idle>-0     (-----) [001] d..1 24576.596764: cpu_idle: state=0 cpu_id=1
115110          <idle>-0     (-----) [002] d..1 24576.596771: cpu_idle: state=0 cpu_id=2
115111          <idle>-0     (-----) [001] d..2 24576.602786: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115112          <idle>-0     (-----) [002] ...1 24576.602792: cpu_idle: state=4294967295 cpu_id=2
115113          <idle>-0     (-----) [002] d..1 24576.602797: cpu_idle: state=2 cpu_id=2
115114          <idle>-0     (-----) [001] dn.3 24576.602804: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115115          <idle>-0     (-----) [001] dnH3 24576.602887: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
115116          <idle>-0     (-----) [001] dnH3 24576.602905: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
115117          <idle>-0     (-----) [001] dnH4 24576.602923: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
115118          <idle>-0     (-----) [001] dns3 24576.602936: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115119          <idle>-0     (-----) [001] dns4 24576.602959: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115120          <idle>-0     (-----) [001] .n.1 24576.602969: cpu_idle: state=4294967295 cpu_id=1
115121          <idle>-0     (-----) [001] d..2 24576.602990: 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
115122     ksoftirqd/1-18    (   18) [001] d..2 24576.603006: 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
115123  kworker/u16:10-23868 (23868) [001] d..2 24576.603094: 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
115124          <idle>-0     (-----) [001] d..1 24576.603112: cpu_idle: state=2 cpu_id=1
115125          <idle>-0     (-----) [003] .n.1 24576.603249: cpu_idle: state=4294967295 cpu_id=3
115126          <idle>-0     (-----) [003] d..2 24576.603276: 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
115127         sugov:0-559   (  559) [003] d..2 24576.603322: 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
115128          <idle>-0     (-----) [003] d..1 24576.603344: cpu_idle: state=0 cpu_id=3
115129          <idle>-0     (-----) [006] dnh2 24576.603970: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
115130          <idle>-0     (-----) [006] .n.1 24576.603981: cpu_idle: state=4294967295 cpu_id=6
115131          <idle>-0     (-----) [006] d..2 24576.603996: 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
115132         sugov:4-560   (  560) [006] d..2 24576.604026: 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
115133          <idle>-0     (-----) [006] d..1 24576.604039: cpu_idle: state=2 cpu_id=6
115134          <idle>-0     (-----) [003] d..2 24576.609366: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
115135          <idle>-0     (-----) [003] dn.3 24576.609383: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
115136          <idle>-0     (-----) [003] .n.1 24576.609390: cpu_idle: state=4294967295 cpu_id=3
115137          <idle>-0     (-----) [003] d..2 24576.609408: 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
115138     ksoftirqd/3-34    (   34) [003] d.s2 24576.609419: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115139     ksoftirqd/3-34    (   34) [003] d.s3 24576.609476: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
115140     ksoftirqd/3-34    (   34) [003] d..2 24576.609498: 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
115141  kworker/u16:10-23868 (23868) [003] d..2 24576.609620: 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
115142          <idle>-0     (-----) [003] d..1 24576.609639: cpu_idle: state=2 cpu_id=3
115143          <idle>-0     (-----) [001] d.h2 24576.611770: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
115144          <idle>-0     (-----) [001] dnh3 24576.611798: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
115145          <idle>-0     (-----) [001] .n.1 24576.611814: cpu_idle: state=4294967295 cpu_id=1
115146          <idle>-0     (-----) [001] d..2 24576.611836: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
115147        DispSync-23904 (23896) [001] d..1 24576.611865: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115148        DispSync-23904 (23896) [001] d..2 24576.611887: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115149        DispSync-23904 (23896) [001] d..2 24576.611943: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115150          <idle>-0     (-----) [001] d..2 24576.611950: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115151          <idle>-0     (-----) [001] dn.3 24576.611963: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115152          <idle>-0     (-----) [001] d..2 24576.611976: 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
115153     ksoftirqd/1-18    (   18) [001] d..2 24576.612003: 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
115154          <idle>-0     (-----) [001] d..1 24576.612024: cpu_idle: state=2 cpu_id=1
115155          <idle>-0     (-----) [002] .n.1 24576.612239: cpu_idle: state=4294967295 cpu_id=2
115156          <idle>-0     (-----) [002] d..2 24576.612266: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115157  appEventThread-23905 (23896) [002] d..3 24576.612322: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115158  appEventThread-23905 (23896) [002] d..4 24576.612357: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115159  appEventThread-23905 (23896) [002] d..2 24576.612413: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115160          <idle>-0     (-----) [002] d..1 24576.612437: cpu_idle: state=2 cpu_id=2
115161          <idle>-0     (-----) [000] .n.1 24576.612675: cpu_idle: state=4294967295 cpu_id=0
115162          <idle>-0     (-----) [000] d..2 24576.612706: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
115163 s.nexuslauncher-24827 (24827) [000] .... 24576.612957: binder_transaction: transaction=1671582 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
115164 s.nexuslauncher-24827 (24827) [000] d..4 24576.612972: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
115165 s.nexuslauncher-24827 (24827) [000] d..5 24576.613007: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
115166 s.nexuslauncher-24827 (24827) [000] d..2 24576.613144: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115167          <idle>-0     (-----) [000] d..1 24576.613174: cpu_idle: state=2 cpu_id=0
115168          <idle>-0     (-----) [001] .n.1 24576.613344: cpu_idle: state=4294967295 cpu_id=1
115169          <idle>-0     (-----) [001] d..2 24576.613373: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
115170  Binder:23896_5-25989 (23896) [001] .... 24576.613384: binder_transaction_received: transaction=1671582
115171  Binder:23896_5-25989 (23896) [001] d..1 24576.613432: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115172  Binder:23896_5-25989 (23896) [001] d..2 24576.613458: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115173  Binder:23896_5-25989 (23896) [001] d..2 24576.613521: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115174          <idle>-0     (-----) [001] d..1 24576.613546: cpu_idle: state=0 cpu_id=1
115175          <idle>-0     (-----) [002] .n.1 24576.613794: cpu_idle: state=4294967295 cpu_id=2
115176          <idle>-0     (-----) [002] d..2 24576.613829: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115177  appEventThread-23905 (23896) [002] d..2 24576.613930: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115178          <idle>-0     (-----) [002] d..1 24576.613960: cpu_idle: state=0 cpu_id=2
115179          <idle>-0     (-----) [001] d..2 24576.619571: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115180          <idle>-0     (-----) [001] dn.3 24576.619590: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115181          <idle>-0     (-----) [001] dnH3 24576.619680: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
115182          <idle>-0     (-----) [001] dnH3 24576.619700: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
115183          <idle>-0     (-----) [001] dnH4 24576.619717: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
115184          <idle>-0     (-----) [001] dns3 24576.619732: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
115185          <idle>-0     (-----) [001] dns4 24576.619783: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115186          <idle>-0     (-----) [001] .n.1 24576.619797: cpu_idle: state=4294967295 cpu_id=1
115187          <idle>-0     (-----) [001] d..2 24576.619821: 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
115188     ksoftirqd/1-18    (   18) [001] d..2 24576.619836: 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
115189  kworker/u16:10-23868 (23868) [001] d..2 24576.619955: 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
115190          <idle>-0     (-----) [002] ...1 24576.619974: cpu_idle: state=4294967295 cpu_id=2
115191          <idle>-0     (-----) [001] d..1 24576.619974: cpu_idle: state=2 cpu_id=1
115192          <idle>-0     (-----) [002] d..1 24576.619983: cpu_idle: state=2 cpu_id=2
115193          <idle>-0     (-----) [003] .n.1 24576.620044: cpu_idle: state=4294967295 cpu_id=3
115194          <idle>-0     (-----) [003] d..2 24576.620070: 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
115195         sugov:0-559   (  559) [003] d..2 24576.620115: 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
115196          <idle>-0     (-----) [003] d..1 24576.620137: cpu_idle: state=0 cpu_id=3
115197          <idle>-0     (-----) [006] dnh2 24576.620757: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
115198          <idle>-0     (-----) [006] .n.1 24576.620767: cpu_idle: state=4294967295 cpu_id=6
115199          <idle>-0     (-----) [006] d..2 24576.620780: 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
115200         sugov:4-560   (  560) [006] d..2 24576.620803: 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
115201          <idle>-0     (-----) [006] d..1 24576.620815: cpu_idle: state=2 cpu_id=6
115202          <idle>-0     (-----) [003] d..2 24576.626154: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
115203          <idle>-0     (-----) [003] dn.3 24576.626171: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
115204          <idle>-0     (-----) [003] .n.1 24576.626176: cpu_idle: state=4294967295 cpu_id=3
115205          <idle>-0     (-----) [003] d..2 24576.626195: 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
115206     ksoftirqd/3-34    (   34) [003] d..2 24576.626240: 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
115207          <idle>-0     (-----) [003] d..1 24576.626255: cpu_idle: state=2 cpu_id=3
115208          <idle>-0     (-----) [001] d.h2 24576.628228: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
115209          <idle>-0     (-----) [001] dnh3 24576.628256: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
115210          <idle>-0     (-----) [001] .n.1 24576.628271: cpu_idle: state=4294967295 cpu_id=1
115211          <idle>-0     (-----) [001] d..2 24576.628292: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
115212        DispSync-23904 (23896) [001] d..1 24576.628320: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115213        DispSync-23904 (23896) [001] d..2 24576.628340: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115214        DispSync-23904 (23896) [001] d..2 24576.628397: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115215          <idle>-0     (-----) [001] d..2 24576.628403: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115216          <idle>-0     (-----) [001] dn.3 24576.628416: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115217          <idle>-0     (-----) [001] d..2 24576.628428: 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
115218     ksoftirqd/1-18    (   18) [001] d.s2 24576.628438: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115219     ksoftirqd/1-18    (   18) [001] d.s3 24576.628461: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115220     ksoftirqd/1-18    (   18) [001] d..2 24576.628480: 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
115221  kworker/u16:10-23868 (23868) [001] d..2 24576.628590: 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
115222          <idle>-0     (-----) [001] d..1 24576.628616: cpu_idle: state=0 cpu_id=1
115223          <idle>-0     (-----) [002] .n.1 24576.628661: cpu_idle: state=4294967295 cpu_id=2
115224          <idle>-0     (-----) [002] d..2 24576.628696: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115225  appEventThread-23905 (23896) [002] d..3 24576.628753: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115226  appEventThread-23905 (23896) [002] d..4 24576.628794: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115227  appEventThread-23905 (23896) [002] d..2 24576.628864: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115228          <idle>-0     (-----) [002] d..1 24576.628896: cpu_idle: state=0 cpu_id=2
115229          <idle>-0     (-----) [000] .n.1 24576.629112: cpu_idle: state=4294967295 cpu_id=0
115230          <idle>-0     (-----) [000] d..2 24576.629148: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
115231 s.nexuslauncher-24827 (24827) [000] .... 24576.629406: binder_transaction: transaction=1671583 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
115232 s.nexuslauncher-24827 (24827) [000] d..4 24576.629421: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
115233 s.nexuslauncher-24827 (24827) [000] d..5 24576.629460: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
115234          <idle>-0     (-----) [001] .n.1 24576.629469: cpu_idle: state=4294967295 cpu_id=1
115235          <idle>-0     (-----) [001] d..2 24576.629486: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
115236  Binder:23896_5-25989 (23896) [001] .... 24576.629500: binder_transaction_received: transaction=1671583
115237  Binder:23896_5-25989 (23896) [001] d..1 24576.629549: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115238  Binder:23896_5-25989 (23896) [001] d..2 24576.629575: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115239          <idle>-0     (-----) [002] .n.1 24576.629584: cpu_idle: state=4294967295 cpu_id=2
115240          <idle>-0     (-----) [002] d..2 24576.629600: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115241 s.nexuslauncher-24827 (24827) [000] d..2 24576.629601: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115242          <idle>-0     (-----) [000] d..1 24576.629628: cpu_idle: state=2 cpu_id=0
115243  Binder:23896_5-25989 (23896) [001] d..2 24576.629639: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115244  appEventThread-23905 (23896) [002] d..2 24576.629653: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115245          <idle>-0     (-----) [001] d..1 24576.629662: cpu_idle: state=0 cpu_id=1
115246          <idle>-0     (-----) [002] d..1 24576.629671: cpu_idle: state=0 cpu_id=2
115247          <idle>-0     (-----) [001] d..2 24576.635679: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115248          <idle>-0     (-----) [002] ...1 24576.635690: cpu_idle: state=4294967295 cpu_id=2
115249          <idle>-0     (-----) [001] dn.3 24576.635695: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115250          <idle>-0     (-----) [002] d..1 24576.635697: cpu_idle: state=2 cpu_id=2
115251          <idle>-0     (-----) [001] .n.1 24576.635700: cpu_idle: state=4294967295 cpu_id=1
115252          <idle>-0     (-----) [001] d..2 24576.635720: 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
115253     ksoftirqd/1-18    (   18) [001] d.s2 24576.635730: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115254     ksoftirqd/1-18    (   18) [001] d.s3 24576.635753: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115255     ksoftirqd/1-18    (   18) [001] d..2 24576.635769: 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
115256  kworker/u16:10-23868 (23868) [001] d..2 24576.635866: 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
115257          <idle>-0     (-----) [001] d..1 24576.635883: cpu_idle: state=2 cpu_id=1
115258          <idle>-0     (-----) [001] d.h2 24576.644674: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
115259          <idle>-0     (-----) [001] dnh3 24576.644708: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
115260          <idle>-0     (-----) [001] dnh3 24576.644797: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
115261          <idle>-0     (-----) [001] dnh3 24576.644815: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
115262          <idle>-0     (-----) [001] dnh4 24576.644831: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
115263          <idle>-0     (-----) [001] .n.1 24576.644841: cpu_idle: state=4294967295 cpu_id=1
115264          <idle>-0     (-----) [001] d..2 24576.644861: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
115265        DispSync-23904 (23896) [001] d..1 24576.644890: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115266        DispSync-23904 (23896) [001] d..2 24576.644907: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115267        DispSync-23904 (23896) [001] d..2 24576.644963: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115268          <idle>-0     (-----) [001] d..2 24576.644969: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115269          <idle>-0     (-----) [001] dn.3 24576.644987: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115270          <idle>-0     (-----) [001] d..2 24576.644999: 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
115271     ksoftirqd/1-18    (   18) [001] d.s2 24576.645010: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115272     ksoftirqd/1-18    (   18) [001] d.s3 24576.645035: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115273     ksoftirqd/1-18    (   18) [001] d.s2 24576.645045: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
115274     ksoftirqd/1-18    (   18) [001] d.s3 24576.645058: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
115275     ksoftirqd/1-18    (   18) [001] d..2 24576.645073: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
115276     kworker/1:1-13091 (13091) [001] d..2 24576.645113: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
115277          <idle>-0     (-----) [003] .n.1 24576.645158: cpu_idle: state=4294967295 cpu_id=3
115278          <idle>-0     (-----) [003] d..2 24576.645188: 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
115279          <idle>-0     (-----) [002] .n.1 24576.645241: cpu_idle: state=4294967295 cpu_id=2
115280         sugov:0-559   (  559) [003] d..2 24576.645259: 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
115281          <idle>-0     (-----) [002] d..2 24576.645270: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115282          <idle>-0     (-----) [003] d..1 24576.645292: cpu_idle: state=2 cpu_id=3
115283  kworker/u16:10-23868 (23868) [001] d..2 24576.645309: 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
115284  appEventThread-23905 (23896) [002] d..3 24576.645326: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115285          <idle>-0     (-----) [001] d..1 24576.645337: cpu_idle: state=0 cpu_id=1
115286  appEventThread-23905 (23896) [002] d..4 24576.645364: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115287  appEventThread-23905 (23896) [002] d..2 24576.645424: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115288          <idle>-0     (-----) [002] d..1 24576.645452: cpu_idle: state=0 cpu_id=2
115289          <idle>-0     (-----) [000] .n.1 24576.645690: cpu_idle: state=4294967295 cpu_id=0
115290          <idle>-0     (-----) [000] d..2 24576.645721: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
115291          <idle>-0     (-----) [006] dnh2 24576.645865: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
115292          <idle>-0     (-----) [006] .n.1 24576.645874: cpu_idle: state=4294967295 cpu_id=6
115293          <idle>-0     (-----) [006] d..2 24576.645885: 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
115294         sugov:4-560   (  560) [006] d..2 24576.645907: 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
115295          <idle>-0     (-----) [006] d..1 24576.645919: cpu_idle: state=2 cpu_id=6
115296 s.nexuslauncher-24827 (24827) [000] .... 24576.645978: binder_transaction: transaction=1671584 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
115297 s.nexuslauncher-24827 (24827) [000] d..4 24576.645994: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
115298 s.nexuslauncher-24827 (24827) [000] d..5 24576.646035: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
115299          <idle>-0     (-----) [001] .n.1 24576.646044: cpu_idle: state=4294967295 cpu_id=1
115300          <idle>-0     (-----) [001] d..2 24576.646063: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
115301  Binder:23896_5-25989 (23896) [001] .... 24576.646076: binder_transaction_received: transaction=1671584
115302  Binder:23896_5-25989 (23896) [001] d..1 24576.646125: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115303  Binder:23896_5-25989 (23896) [001] d..2 24576.646151: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115304          <idle>-0     (-----) [002] .n.1 24576.646159: cpu_idle: state=4294967295 cpu_id=2
115305          <idle>-0     (-----) [002] d..2 24576.646174: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115306 s.nexuslauncher-24827 (24827) [000] d..2 24576.646175: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115307          <idle>-0     (-----) [000] d..1 24576.646202: cpu_idle: state=2 cpu_id=0
115308  Binder:23896_5-25989 (23896) [001] d..2 24576.646212: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115309  appEventThread-23905 (23896) [002] d..2 24576.646226: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115310          <idle>-0     (-----) [001] d..1 24576.646237: cpu_idle: state=0 cpu_id=1
115311          <idle>-0     (-----) [002] d..1 24576.646245: cpu_idle: state=0 cpu_id=2
115312          <idle>-0     (-----) [001] d..2 24576.652254: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115313          <idle>-0     (-----) [002] ...1 24576.652265: cpu_idle: state=4294967295 cpu_id=2
115314          <idle>-0     (-----) [001] dn.3 24576.652269: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115315          <idle>-0     (-----) [002] d..1 24576.652273: cpu_idle: state=2 cpu_id=2
115316          <idle>-0     (-----) [001] .n.1 24576.652274: cpu_idle: state=4294967295 cpu_id=1
115317          <idle>-0     (-----) [001] d..2 24576.652294: 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
115318     ksoftirqd/1-18    (   18) [001] d.s2 24576.652305: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115319     ksoftirqd/1-18    (   18) [001] d.s3 24576.652330: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115320     ksoftirqd/1-18    (   18) [001] d..2 24576.652345: 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
115321  kworker/u16:10-23868 (23868) [001] d..2 24576.652433: 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
115322          <idle>-0     (-----) [001] d..1 24576.652450: cpu_idle: state=2 cpu_id=1
115323          <idle>-0     (-----) [001] d.h2 24576.661134: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
115324          <idle>-0     (-----) [001] dnh3 24576.661167: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
115325          <idle>-0     (-----) [001] dnh3 24576.661261: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
115326          <idle>-0     (-----) [001] dnh3 24576.661277: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
115327          <idle>-0     (-----) [001] dnh4 24576.661293: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
115328          <idle>-0     (-----) [001] .n.1 24576.661304: cpu_idle: state=4294967295 cpu_id=1
115329          <idle>-0     (-----) [001] d..2 24576.661323: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
115330        DispSync-23904 (23896) [001] d..1 24576.661351: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115331        DispSync-23904 (23896) [001] d..2 24576.661370: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115332        DispSync-23904 (23896) [001] d..2 24576.661426: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115333          <idle>-0     (-----) [001] d..2 24576.661432: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115334          <idle>-0     (-----) [001] dn.3 24576.661448: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115335          <idle>-0     (-----) [001] d..2 24576.661460: 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
115336     ksoftirqd/1-18    (   18) [001] d.s2 24576.661471: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115337     ksoftirqd/1-18    (   18) [001] d.s3 24576.661496: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115338     ksoftirqd/1-18    (   18) [001] d..2 24576.661516: 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
115339          <idle>-0     (-----) [003] .n.1 24576.661617: cpu_idle: state=4294967295 cpu_id=3
115340  kworker/u16:10-23868 (23868) [001] d..2 24576.661626: 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
115341          <idle>-0     (-----) [003] d..2 24576.661648: 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
115342          <idle>-0     (-----) [001] d..1 24576.661652: cpu_idle: state=2 cpu_id=1
115343         sugov:0-559   (  559) [003] d..2 24576.661701: 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
115344          <idle>-0     (-----) [002] .n.1 24576.661721: cpu_idle: state=4294967295 cpu_id=2
115345          <idle>-0     (-----) [003] d..1 24576.661725: cpu_idle: state=2 cpu_id=3
115346          <idle>-0     (-----) [002] d..2 24576.661748: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115347  appEventThread-23905 (23896) [002] d..3 24576.661804: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115348  appEventThread-23905 (23896) [002] d..4 24576.661838: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115349  appEventThread-23905 (23896) [002] d..2 24576.661896: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115350          <idle>-0     (-----) [002] d..1 24576.661920: cpu_idle: state=2 cpu_id=2
115351          <idle>-0     (-----) [000] .n.1 24576.662156: cpu_idle: state=4294967295 cpu_id=0
115352          <idle>-0     (-----) [000] d..2 24576.662184: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
115353          <idle>-0     (-----) [006] dnh2 24576.662336: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
115354          <idle>-0     (-----) [006] .n.1 24576.662346: cpu_idle: state=4294967295 cpu_id=6
115355          <idle>-0     (-----) [006] d..2 24576.662359: 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
115356         sugov:4-560   (  560) [006] d..2 24576.662382: 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
115357          <idle>-0     (-----) [006] d..1 24576.662393: cpu_idle: state=2 cpu_id=6
115358 s.nexuslauncher-24827 (24827) [000] .... 24576.662437: binder_transaction: transaction=1671585 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
115359 s.nexuslauncher-24827 (24827) [000] d..4 24576.662452: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
115360 s.nexuslauncher-24827 (24827) [000] d..5 24576.662491: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
115361 s.nexuslauncher-24827 (24827) [000] d..2 24576.662628: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115362          <idle>-0     (-----) [000] d..1 24576.662654: cpu_idle: state=2 cpu_id=0
115363          <idle>-0     (-----) [001] .n.1 24576.662935: cpu_idle: state=4294967295 cpu_id=1
115364          <idle>-0     (-----) [001] d..2 24576.662964: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
115365  Binder:23896_5-25989 (23896) [001] .... 24576.662977: binder_transaction_received: transaction=1671585
115366  Binder:23896_5-25989 (23896) [001] d..1 24576.663023: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115367  Binder:23896_5-25989 (23896) [001] d..2 24576.663049: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115368  Binder:23896_5-25989 (23896) [001] d..2 24576.663113: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115369          <idle>-0     (-----) [001] d..1 24576.663138: cpu_idle: state=0 cpu_id=1
115370          <idle>-0     (-----) [002] .n.1 24576.663384: cpu_idle: state=4294967295 cpu_id=2
115371          <idle>-0     (-----) [002] d..2 24576.663421: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115372  appEventThread-23905 (23896) [002] d..2 24576.663522: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115373          <idle>-0     (-----) [002] d..1 24576.663552: cpu_idle: state=0 cpu_id=2
115374          <idle>-0     (-----) [001] d..2 24576.669155: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115375          <idle>-0     (-----) [001] dn.3 24576.669169: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115376          <idle>-0     (-----) [001] .n.1 24576.669176: cpu_idle: state=4294967295 cpu_id=1
115377          <idle>-0     (-----) [001] d..2 24576.669196: 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
115378     ksoftirqd/1-18    (   18) [001] d..2 24576.669242: 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
115379          <idle>-0     (-----) [001] d..1 24576.669257: cpu_idle: state=2 cpu_id=1
115380          <idle>-0     (-----) [002] ...1 24576.669566: cpu_idle: state=4294967295 cpu_id=2
115381          <idle>-0     (-----) [002] d..1 24576.669573: cpu_idle: state=2 cpu_id=2
115382          <idle>-0     (-----) [001] d.h2 24576.677536: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
115383          <idle>-0     (-----) [001] dnh3 24576.677561: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
115384          <idle>-0     (-----) [001] dnh3 24576.677660: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
115385          <idle>-0     (-----) [001] dnh3 24576.677677: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
115386          <idle>-0     (-----) [001] dnh4 24576.677693: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
115387          <idle>-0     (-----) [001] .n.1 24576.677703: cpu_idle: state=4294967295 cpu_id=1
115388          <idle>-0     (-----) [001] d..2 24576.677724: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
115389        DispSync-23904 (23896) [001] d..1 24576.677751: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115390        DispSync-23904 (23896) [001] d..2 24576.677769: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115391        DispSync-23904 (23896) [001] d..2 24576.677826: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115392          <idle>-0     (-----) [001] d..2 24576.677832: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115393          <idle>-0     (-----) [001] dn.3 24576.677847: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115394          <idle>-0     (-----) [001] d..2 24576.677858: 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
115395     ksoftirqd/1-18    (   18) [001] d.s2 24576.677869: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115396     ksoftirqd/1-18    (   18) [001] d.s3 24576.677893: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115397     ksoftirqd/1-18    (   18) [001] d..2 24576.677912: 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
115398          <idle>-0     (-----) [003] .n.1 24576.677972: cpu_idle: state=4294967295 cpu_id=3
115399          <idle>-0     (-----) [003] d..2 24576.678004: 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
115400          <idle>-0     (-----) [002] .n.1 24576.678059: cpu_idle: state=4294967295 cpu_id=2
115401         sugov:0-559   (  559) [003] d..2 24576.678078: 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
115402          <idle>-0     (-----) [002] d..2 24576.678088: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115403          <idle>-0     (-----) [003] d..1 24576.678111: cpu_idle: state=2 cpu_id=3
115404  kworker/u16:10-23868 (23868) [001] d..2 24576.678129: 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
115405  appEventThread-23905 (23896) [002] d..3 24576.678145: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115406          <idle>-0     (-----) [001] d..1 24576.678157: cpu_idle: state=0 cpu_id=1
115407  appEventThread-23905 (23896) [002] d..4 24576.678182: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115408  appEventThread-23905 (23896) [002] d..2 24576.678243: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115409          <idle>-0     (-----) [002] d..1 24576.678270: cpu_idle: state=0 cpu_id=2
115410          <idle>-0     (-----) [000] .n.1 24576.678454: cpu_idle: state=4294967295 cpu_id=0
115411          <idle>-0     (-----) [000] d..2 24576.678489: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
115412          <idle>-0     (-----) [006] dnh2 24576.678632: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
115413          <idle>-0     (-----) [006] .n.1 24576.678641: cpu_idle: state=4294967295 cpu_id=6
115414          <idle>-0     (-----) [006] d..2 24576.678652: 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
115415         sugov:4-560   (  560) [006] d..2 24576.678674: 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
115416          <idle>-0     (-----) [006] d..1 24576.678686: cpu_idle: state=2 cpu_id=6
115417 s.nexuslauncher-24827 (24827) [000] .... 24576.678746: binder_transaction: transaction=1671586 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
115418 s.nexuslauncher-24827 (24827) [000] d..4 24576.678761: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
115419 s.nexuslauncher-24827 (24827) [000] d..5 24576.678800: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
115420          <idle>-0     (-----) [001] .n.1 24576.678809: cpu_idle: state=4294967295 cpu_id=1
115421          <idle>-0     (-----) [001] d..2 24576.678827: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
115422  Binder:23896_5-25989 (23896) [001] .... 24576.678841: binder_transaction_received: transaction=1671586
115423  Binder:23896_5-25989 (23896) [001] d..1 24576.678890: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115424  Binder:23896_5-25989 (23896) [001] d..2 24576.678916: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115425          <idle>-0     (-----) [002] .n.1 24576.678924: cpu_idle: state=4294967295 cpu_id=2
115426          <idle>-0     (-----) [002] d..2 24576.678937: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115427 s.nexuslauncher-24827 (24827) [000] d..2 24576.678942: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115428          <idle>-0     (-----) [000] d..1 24576.678969: cpu_idle: state=2 cpu_id=0
115429  Binder:23896_5-25989 (23896) [001] d..2 24576.678979: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115430  appEventThread-23905 (23896) [002] d..2 24576.678990: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115431          <idle>-0     (-----) [001] d..1 24576.679002: cpu_idle: state=0 cpu_id=1
115432          <idle>-0     (-----) [002] d..1 24576.679009: cpu_idle: state=0 cpu_id=2
115433          <idle>-0     (-----) [001] d..2 24576.685017: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115434          <idle>-0     (-----) [002] ...1 24576.685027: cpu_idle: state=4294967295 cpu_id=2
115435          <idle>-0     (-----) [001] dn.3 24576.685031: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115436          <idle>-0     (-----) [002] d..1 24576.685033: cpu_idle: state=2 cpu_id=2
115437          <idle>-0     (-----) [001] .n.1 24576.685037: cpu_idle: state=4294967295 cpu_id=1
115438          <idle>-0     (-----) [001] d..2 24576.685055: 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
115439     ksoftirqd/1-18    (   18) [001] d.s2 24576.685065: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115440     ksoftirqd/1-18    (   18) [001] d.s3 24576.685087: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115441     ksoftirqd/1-18    (   18) [001] d..2 24576.685104: 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
115442  kworker/u16:10-23868 (23868) [001] d..2 24576.685198: 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
115443          <idle>-0     (-----) [001] d..1 24576.685214: cpu_idle: state=2 cpu_id=1
115444          <idle>-0     (-----) [001] d.h2 24576.694030: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
115445          <idle>-0     (-----) [001] dnh3 24576.694055: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
115446          <idle>-0     (-----) [001] .n.1 24576.694076: cpu_idle: state=4294967295 cpu_id=1
115447          <idle>-0     (-----) [001] d..2 24576.694095: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
115448        DispSync-23904 (23896) [001] d..1 24576.694124: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115449        DispSync-23904 (23896) [001] d..2 24576.694143: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115450        DispSync-23904 (23896) [001] d..2 24576.694198: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115451          <idle>-0     (-----) [001] d..2 24576.694204: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115452          <idle>-0     (-----) [001] dn.3 24576.694218: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115453          <idle>-0     (-----) [001] dns3 24576.694261: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115454          <idle>-0     (-----) [001] dns4 24576.694283: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115455          <idle>-0     (-----) [001] d..2 24576.694309: 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
115456     ksoftirqd/1-18    (   18) [001] d..2 24576.694324: 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
115457  kworker/u16:10-23868 (23868) [001] d..2 24576.694438: 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
115458          <idle>-0     (-----) [002] .n.1 24576.694457: cpu_idle: state=4294967295 cpu_id=2
115459          <idle>-0     (-----) [001] d..1 24576.694465: cpu_idle: state=0 cpu_id=1
115460          <idle>-0     (-----) [002] d..2 24576.694491: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115461  appEventThread-23905 (23896) [002] d..3 24576.694548: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115462  appEventThread-23905 (23896) [002] d..4 24576.694586: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115463  appEventThread-23905 (23896) [002] d..2 24576.694655: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115464          <idle>-0     (-----) [002] d..1 24576.694687: cpu_idle: state=0 cpu_id=2
115465          <idle>-0     (-----) [000] .n.1 24576.694904: cpu_idle: state=4294967295 cpu_id=0
115466          <idle>-0     (-----) [000] d..2 24576.694937: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
115467 s.nexuslauncher-24827 (24827) [000] .... 24576.695193: binder_transaction: transaction=1671587 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
115468 s.nexuslauncher-24827 (24827) [000] d..4 24576.695209: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
115469 s.nexuslauncher-24827 (24827) [000] d..5 24576.695246: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
115470          <idle>-0     (-----) [001] .n.1 24576.695254: cpu_idle: state=4294967295 cpu_id=1
115471          <idle>-0     (-----) [001] d..2 24576.695273: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
115472  Binder:23896_5-25989 (23896) [001] .... 24576.695286: binder_transaction_received: transaction=1671587
115473  Binder:23896_5-25989 (23896) [001] d..1 24576.695333: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115474  Binder:23896_5-25989 (23896) [001] d..2 24576.695360: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115475          <idle>-0     (-----) [002] .n.1 24576.695370: cpu_idle: state=4294967295 cpu_id=2
115476 s.nexuslauncher-24827 (24827) [000] d..2 24576.695384: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115477          <idle>-0     (-----) [002] d..2 24576.695385: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115478          <idle>-0     (-----) [000] d..1 24576.695411: cpu_idle: state=2 cpu_id=0
115479  Binder:23896_5-25989 (23896) [001] d..2 24576.695422: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115480  appEventThread-23905 (23896) [002] d..2 24576.695438: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115481          <idle>-0     (-----) [001] d..1 24576.695446: cpu_idle: state=0 cpu_id=1
115482          <idle>-0     (-----) [002] d..1 24576.695458: cpu_idle: state=0 cpu_id=2
115483          <idle>-0     (-----) [001] d..2 24576.701466: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115484          <idle>-0     (-----) [002] ...1 24576.701477: cpu_idle: state=4294967295 cpu_id=2
115485          <idle>-0     (-----) [002] d..1 24576.701483: cpu_idle: state=2 cpu_id=2
115486          <idle>-0     (-----) [001] dn.3 24576.701484: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115487          <idle>-0     (-----) [001] dnH3 24576.701566: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
115488          <idle>-0     (-----) [001] dnH3 24576.701584: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
115489          <idle>-0     (-----) [001] dnH4 24576.701601: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
115490          <idle>-0     (-----) [001] dns3 24576.701613: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115491          <idle>-0     (-----) [001] dns4 24576.701637: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115492          <idle>-0     (-----) [001] .n.1 24576.701648: cpu_idle: state=4294967295 cpu_id=1
115493          <idle>-0     (-----) [001] d..2 24576.701668: 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
115494     ksoftirqd/1-18    (   18) [001] d..2 24576.701684: 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
115495  kworker/u16:10-23868 (23868) [001] d..2 24576.701771: 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
115496          <idle>-0     (-----) [001] d..1 24576.701788: cpu_idle: state=2 cpu_id=1
115497          <idle>-0     (-----) [003] .n.1 24576.701927: cpu_idle: state=4294967295 cpu_id=3
115498          <idle>-0     (-----) [003] d..2 24576.701954: 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
115499         sugov:0-559   (  559) [003] d..2 24576.702000: 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
115500          <idle>-0     (-----) [003] d..1 24576.702020: cpu_idle: state=2 cpu_id=3
115501          <idle>-0     (-----) [006] dnh2 24576.702663: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
115502          <idle>-0     (-----) [006] .n.1 24576.702672: cpu_idle: state=4294967295 cpu_id=6
115503          <idle>-0     (-----) [006] d..2 24576.702685: 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
115504         sugov:4-560   (  560) [006] d..2 24576.702710: 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
115505          <idle>-0     (-----) [006] d..1 24576.702721: cpu_idle: state=2 cpu_id=6
115506          <idle>-0     (-----) [001] d.h2 24576.710483: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
115507          <idle>-0     (-----) [001] dnh3 24576.710510: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
115508          <idle>-0     (-----) [001] .n.1 24576.710525: cpu_idle: state=4294967295 cpu_id=1
115509          <idle>-0     (-----) [001] d..2 24576.710544: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
115510        DispSync-23904 (23896) [001] d..1 24576.710572: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115511        DispSync-23904 (23896) [001] d..2 24576.710592: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115512        DispSync-23904 (23896) [001] d..2 24576.710648: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115513          <idle>-0     (-----) [001] d..2 24576.710655: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115514          <idle>-0     (-----) [001] dn.3 24576.710668: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115515          <idle>-0     (-----) [001] d..2 24576.710681: 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
115516     ksoftirqd/1-18    (   18) [001] d.s2 24576.710691: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115517     ksoftirqd/1-18    (   18) [001] d.s3 24576.710714: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115518     ksoftirqd/1-18    (   18) [001] d..2 24576.710733: 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
115519  kworker/u16:10-23868 (23868) [001] d..2 24576.710840: 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
115520          <idle>-0     (-----) [001] d..1 24576.710863: cpu_idle: state=2 cpu_id=1
115521          <idle>-0     (-----) [002] .n.1 24576.710913: cpu_idle: state=4294967295 cpu_id=2
115522          <idle>-0     (-----) [002] d..2 24576.710950: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115523  appEventThread-23905 (23896) [002] d..3 24576.711007: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115524  appEventThread-23905 (23896) [002] d..4 24576.711040: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115525  appEventThread-23905 (23896) [002] d..2 24576.711104: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115526          <idle>-0     (-----) [002] d..2 24576.711112: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
115527          <idle>-0     (-----) [002] dn.3 24576.711127: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
115528          <idle>-0     (-----) [002] d..2 24576.711139: 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
115529     ksoftirqd/2-26    (   26) [002] d..2 24576.711171: 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
115530          <idle>-0     (-----) [002] d..1 24576.711193: cpu_idle: state=2 cpu_id=2
115531          <idle>-0     (-----) [000] dnh2 24576.711421: sched_waking: comm=PowerManagerSer pid=24006 prio=116 target_cpu=000
115532          <idle>-0     (-----) [000] dnh3 24576.711482: sched_wakeup: comm=PowerManagerSer pid=24006 prio=116 target_cpu=001
115533          <idle>-0     (-----) [000] .n.1 24576.711501: cpu_idle: state=4294967295 cpu_id=0
115534          <idle>-0     (-----) [000] d..2 24576.711524: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
115535 s.nexuslauncher-24827 (24827) [000] .... 24576.711778: binder_transaction: transaction=1671588 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
115536 s.nexuslauncher-24827 (24827) [000] d..4 24576.711792: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
115537          <idle>-0     (-----) [001] .n.1 24576.711798: cpu_idle: state=4294967295 cpu_id=1
115538 s.nexuslauncher-24827 (24827) [000] d..5 24576.711836: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
115539          <idle>-0     (-----) [001] d..2 24576.711840: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=24006 next_prio=116
115540 s.nexuslauncher-24827 (24827) [000] d..2 24576.711976: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115541          <idle>-0     (-----) [000] d..1 24576.712004: cpu_idle: state=2 cpu_id=0
115542          <idle>-0     (-----) [002] .n.1 24576.712176: cpu_idle: state=4294967295 cpu_id=2
115543 PowerManagerSer-24006 (23968) [001] d..2 24576.712191: sched_switch: prev_comm=PowerManagerSer prev_pid=24006 prev_prio=116 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115544          <idle>-0     (-----) [002] d..2 24576.712208: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
115545          <idle>-0     (-----) [001] d..1 24576.712218: cpu_idle: state=0 cpu_id=1
115546  Binder:23896_5-25989 (23896) [002] .... 24576.712221: binder_transaction_received: transaction=1671588
115547  Binder:23896_5-25989 (23896) [002] d..1 24576.712267: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115548  Binder:23896_5-25989 (23896) [002] d..2 24576.712312: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
115549          <idle>-0     (-----) [001] .n.1 24576.712321: cpu_idle: state=4294967295 cpu_id=1
115550          <idle>-0     (-----) [001] d..2 24576.712338: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115551  Binder:23896_5-25989 (23896) [002] d..2 24576.712381: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115552          <idle>-0     (-----) [002] d..1 24576.712410: cpu_idle: state=0 cpu_id=2
115553  appEventThread-23905 (23896) [001] d..2 24576.712419: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115554          <idle>-0     (-----) [001] d..1 24576.712440: cpu_idle: state=0 cpu_id=1
115555          <idle>-0     (-----) [002] d..2 24576.718431: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
115556          <idle>-0     (-----) [002] dn.3 24576.718448: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
115557          <idle>-0     (-----) [001] ...1 24576.718459: cpu_idle: state=4294967295 cpu_id=1
115558          <idle>-0     (-----) [001] d..1 24576.718465: cpu_idle: state=2 cpu_id=1
115559          <idle>-0     (-----) [002] dnH3 24576.718532: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
115560          <idle>-0     (-----) [002] dnH3 24576.718550: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
115561          <idle>-0     (-----) [002] dnH4 24576.718567: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
115562          <idle>-0     (-----) [002] dns3 24576.718581: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115563          <idle>-0     (-----) [002] dns4 24576.718631: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
115564          <idle>-0     (-----) [002] dns3 24576.718642: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
115565          <idle>-0     (-----) [002] dns4 24576.718655: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
115566          <idle>-0     (-----) [002] .n.1 24576.718666: cpu_idle: state=4294967295 cpu_id=2
115567          <idle>-0     (-----) [002] d..2 24576.718686: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
115568     kworker/2:0-12895 (12895) [002] d..2 24576.718726: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
115569     ksoftirqd/2-26    (   26) [002] d..2 24576.718737: 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
115570  kworker/u16:10-23868 (23868) [002] d..2 24576.718853: 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
115571          <idle>-0     (-----) [002] d..1 24576.718878: cpu_idle: state=2 cpu_id=2
115572          <idle>-0     (-----) [003] .n.1 24576.718889: cpu_idle: state=4294967295 cpu_id=3
115573          <idle>-0     (-----) [003] d..2 24576.718918: 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
115574         sugov:0-559   (  559) [003] d..2 24576.718969: 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
115575          <idle>-0     (-----) [003] d..1 24576.718992: cpu_idle: state=2 cpu_id=3
115576          <idle>-0     (-----) [006] dnh2 24576.719639: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
115577          <idle>-0     (-----) [006] .n.1 24576.719648: cpu_idle: state=4294967295 cpu_id=6
115578          <idle>-0     (-----) [006] d..2 24576.719660: 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
115579         sugov:4-560   (  560) [006] d..2 24576.719682: 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
115580          <idle>-0     (-----) [006] d..1 24576.719693: cpu_idle: state=2 cpu_id=6
115581          <idle>-0     (-----) [001] d.h2 24576.726957: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
115582          <idle>-0     (-----) [001] dnh3 24576.726986: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
115583          <idle>-0     (-----) [001] dnh2 24576.726993: sched_waking: comm=LazyTaskWriterT pid=24117 prio=130 target_cpu=001
115584          <idle>-0     (-----) [001] dnh3 24576.727021: sched_wakeup: comm=LazyTaskWriterT pid=24117 prio=130 target_cpu=001
115585          <idle>-0     (-----) [001] .n.1 24576.727037: cpu_idle: state=4294967295 cpu_id=1
115586          <idle>-0     (-----) [001] d..2 24576.727057: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
115587        DispSync-23904 (23896) [001] d..1 24576.727086: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
115588        DispSync-23904 (23896) [001] d..2 24576.727116: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
115589        DispSync-23904 (23896) [001] d..2 24576.727150: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=LazyTaskWriterT next_pid=24117 next_prio=130
115590          <idle>-0     (-----) [000] .n.1 24576.727429: cpu_idle: state=4294967295 cpu_id=0
115591          <idle>-0     (-----) [000] d..2 24576.727463: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115592  appEventThread-23905 (23896) [000] d..3 24576.727530: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115593  appEventThread-23905 (23896) [000] d..4 24576.727578: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
115594<...>-24117 ( 23968) [001] d.s2 24576.727606: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
115595<...>-24117 ( 23968) [001] d.s3 24576.727671: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
115596  appEventThread-23905 (23896) [000] d..2 24576.727694: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
115597<...>-24117 ( 23968) [001] d.s2 24576.727703: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
115598<...>-24117 ( 23968) [001] d.s3 24576.727753: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
115599  kworker/u16:10-23868 (23868) [000] d..2 24576.727780: 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
115600  kworker/u16:16-25995 (25995) [000] d..2 24576.727798: 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
115601          <idle>-0     (-----) [002] .n.1 24576.727891: cpu_idle: state=4294967295 cpu_id=2
115602          <idle>-0     (-----) [002] d..2 24576.727928: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
115603<...>-24117 ( 23968) [001] .... 24576.728013: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24117 comm=LazyTaskWriterT
115604  kworker/u16:10-23868 (23868) [000] d..2 24576.728018: 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
115605          <idle>-0     (-----) [000] d..1 24576.728044: cpu_idle: state=2 cpu_id=0
115606 s.nexuslauncher-24827 (24827) [002] .... 24576.728215: binder_transaction: transaction=1671589 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
115607 s.nexuslauncher-24827 (24827) [002] d..4 24576.728231: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
115608 s.nexuslauncher-24827 (24827) [002] d..5 24576.728277: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
115609 s.nexuslauncher-24827 (24827) [002] d..2 24576.728415: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115610          <idle>-0     (-----) [002] d..1 24576.728444: cpu_idle: state=0 cpu_id=2
115611          <idle>-0     (-----) [000] .n.1 24576.728582: cpu_idle: state=4294967295 cpu_id=0
115612          <idle>-0     (-----) [000] d..2 24576.728618: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
115613  Binder:23896_5-25989 (23896) [000] .... 24576.728632: binder_transaction_received: transaction=1671589
115614  Binder:23896_5-25989 (23896) [000] d..1 24576.728681: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
115615  Binder:23896_5-25989 (23896) [000] d..2 24576.728722: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115616          <idle>-0     (-----) [002] .n.1 24576.728732: cpu_idle: state=4294967295 cpu_id=2
115617          <idle>-0     (-----) [002] d..2 24576.728750: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115618  Binder:23896_5-25989 (23896) [000] d..2 24576.728793: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115619          <idle>-0     (-----) [000] d..1 24576.728822: cpu_idle: state=0 cpu_id=0
115620  appEventThread-23905 (23896) [002] d..2 24576.728832: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115621          <idle>-0     (-----) [002] d..1 24576.728854: cpu_idle: state=0 cpu_id=2
115622<...>-24117 ( 23968) [001] d..1 24576.728927: sched_waking: comm=TaskSnapshotPer pid=24113 prio=130 target_cpu=006
115623<...>-24117 ( 23968) [001] .... 24576.729144: cgroup_attach_task: dst_root=3 dst_id=3 dst_level=1 dst_path=/background pid=24117 comm=LazyTaskWriterT
115624<...>-24117 ( 23968) [001] d..2 24576.729810: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
115625<...>-24117 ( 23968) [001] d..3 24576.729858: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
115626          <idle>-0     (-----) [006] dnh2 24576.730073: sched_wakeup: comm=TaskSnapshotPer pid=24113 prio=130 target_cpu=006
115627          <idle>-0     (-----) [006] .n.1 24576.730082: cpu_idle: state=4294967295 cpu_id=6
115628          <idle>-0     (-----) [006] d..2 24576.730096: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=24113 next_prio=130
115629<...>-24113 ( 23968) [006] d..2 24576.730472: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=000
115630          <idle>-0     (-----) [000] dnh2 24576.730525: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=000
115631          <idle>-0     (-----) [000] .n.1 24576.730536: cpu_idle: state=4294967295 cpu_id=0
115632          <idle>-0     (-----) [000] d..2 24576.730552: 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
115633         rcuop/6-61    (   61) [000] d..2 24576.730571: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
115634         rcuop/6-61    (   61) [000] d..3 24576.730638: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
115635<...>-24113 ( 23968) [006] d..2 24576.730648: sched_switch: prev_comm=TaskSnapshotPer prev_pid=24113 prev_prio=130 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
115636         rcuop/6-61    (   61) [000] d..2 24576.730655: 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
115637          <idle>-0     (-----) [006] d..1 24576.730663: cpu_idle: state=2 cpu_id=6
115638     rcu_preempt-7     (    7) [000] d..2 24576.730696: 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
115639          <idle>-0     (-----) [000] d..1 24576.730713: cpu_idle: state=0 cpu_id=0
115640<...>-24117 ( 23968) [001] d.s2 24576.730942: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
115641<...>-24117 ( 23968) [001] d.s3 24576.730991: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
115642          <idle>-0     (-----) [000] .n.1 24576.730996: cpu_idle: state=4294967295 cpu_id=0
115643          <idle>-0     (-----) [000] d..2 24576.731019: 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
115644         rcuop/0-10    (   10) [000] d..2 24576.731063: 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
115645          <idle>-0     (-----) [000] d..1 24576.731073: cpu_idle: state=0 cpu_id=0
115646<...>-24117 ( 23968) [001] d..2 24576.731298: sched_switch: prev_comm=LazyTaskWriterT prev_pid=24117 prev_prio=130 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
115647     logd.writer-563   (  555) [001] d..2 24576.731797: 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
115648          <idle>-0     (-----) [001] d..1 24576.731826: cpu_idle: state=0 cpu_id=1
115649          <idle>-0     (-----) [000] d.s2 24576.734257: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
115650          <idle>-0     (-----) [000] dns3 24576.734281: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
115651          <idle>-0     (-----) [000] dns3 24576.734290: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
115652          <idle>-0     (-----) [000] dns4 24576.734306: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
115653          <idle>-0     (-----) [000] .n.1 24576.734332: cpu_idle: state=4294967295 cpu_id=0
115654          <idle>-0     (-----) [000] d..2 24576.734344: 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
115655     rcu_preempt-7     (    7) [000] d..2 24576.734364: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=000
115656     rcu_preempt-7     (    7) [000] d..3 24576.734383: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=000
115657     rcu_preempt-7     (    7) [000] d..2 24576.734402: 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
115658         rcuop/6-61    (   61) [000] d..2 24576.734422: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
115659  kworker/u16:10-23868 (23868) [000] d..2 24576.734523: 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
115660          <idle>-0     (-----) [000] d..1 24576.734544: cpu_idle: state=0 cpu_id=0
115661          <idle>-0     (-----) [002] ...1 24576.734872: cpu_idle: state=4294967295 cpu_id=2
115662          <idle>-0     (-----) [002] d..1 24576.734879: cpu_idle: state=2 cpu_id=2
115663          <idle>-0     (-----) [000] d.H3 24576.740997: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
115664          <idle>-0     (-----) [000] d.H3 24576.741018: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
115665          <idle>-0     (-----) [000] d.H4 24576.741037: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
115666          <idle>-0     (-----) [000] d.s2 24576.741046: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
115667          <idle>-0     (-----) [000] dns3 24576.741068: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
115668          <idle>-0     (-----) [000] dns3 24576.741075: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
115669          <idle>-0     (-----) [000] dns4 24576.741120: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
115670          <idle>-0     (-----) [000] .n.1 24576.741137: cpu_idle: state=4294967295 cpu_id=0
115671          <idle>-0     (-----) [000] d..2 24576.741156: 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
115672     rcu_preempt-7     (    7) [000] d..2 24576.741169: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
115673     rcu_preempt-7     (    7) [000] d..3 24576.741192: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
115674     rcu_preempt-7     (    7) [000] d..2 24576.741208: 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
115675         rcuop/0-10    (   10) [000] d..2 24576.741212: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
115676         rcuop/0-10    (   10) [000] d..3 24576.741255: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
115677         rcuop/0-10    (   10) [000] d..2 24576.741260: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
115678         rcuop/0-10    (   10) [000] d..3 24576.741275: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
115679         rcuop/0-10    (   10) [000] d..2 24576.741287: 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
115680          <idle>-0     (-----) [003] .n.1 24576.741349: cpu_idle: state=4294967295 cpu_id=3
115681         rcuop/1-21    (   21) [000] d..2 24576.741356: 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
115682          <idle>-0     (-----) [003] d..2 24576.741378: 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
115683     rcu_preempt-7     (    7) [000] d..2 24576.741404: 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
115684         sugov:0-559   (  559) [003] d..2 24576.741407: 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
115685          <idle>-0     (-----) [000] d..1 24576.741426: cpu_idle: state=0 cpu_id=0
115686          <idle>-0     (-----) [000] ...1 24576.741452: cpu_idle: state=4294967295 cpu_id=0
115687          <idle>-0     (-----) [000] d..1 24576.741461: cpu_idle: state=2 cpu_id=0
115688  kworker/u16:10-23868 (23868) [003] d..2 24576.741561: 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
115689          <idle>-0     (-----) [003] d..1 24576.741583: cpu_idle: state=2 cpu_id=3
115690          <idle>-0     (-----) [006] dnh2 24576.742053: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
115691          <idle>-0     (-----) [006] .n.1 24576.742062: cpu_idle: state=4294967295 cpu_id=6
115692          <idle>-0     (-----) [006] d..2 24576.742075: 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
115693         sugov:4-560   (  560) [006] d..2 24576.742097: 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
115694          <idle>-0     (-----) [006] d..1 24576.742108: cpu_idle: state=2 cpu_id=6
115695          <idle>-0     (-----) [001] d.h2 24576.743017: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
115696          <idle>-0     (-----) [001] dnh3 24576.743040: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
115697          <idle>-0     (-----) [001] .n.1 24576.743053: cpu_idle: state=4294967295 cpu_id=1
115698          <idle>-0     (-----) [001] d..2 24576.743073: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
115699        DispSync-23904 (23896) [001] d..1 24576.743101: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115700        DispSync-23904 (23896) [001] d..2 24576.743123: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115701        DispSync-23904 (23896) [001] d..2 24576.743169: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115702          <idle>-0     (-----) [001] d..1 24576.743191: cpu_idle: state=0 cpu_id=1
115703          <idle>-0     (-----) [002] .n.1 24576.743449: cpu_idle: state=4294967295 cpu_id=2
115704          <idle>-0     (-----) [002] d..2 24576.743484: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115705  appEventThread-23905 (23896) [002] d..3 24576.743552: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
115706  appEventThread-23905 (23896) [002] d..4 24576.743602: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115707  appEventThread-23905 (23896) [002] d..2 24576.743672: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115708          <idle>-0     (-----) [002] d..1 24576.743701: cpu_idle: state=0 cpu_id=2
115709          <idle>-0     (-----) [000] .n.1 24576.743925: cpu_idle: state=4294967295 cpu_id=0
115710          <idle>-0     (-----) [000] d..2 24576.743958: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
115711 s.nexuslauncher-24827 (24827) [000] d.s2 24576.744284: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
115712 s.nexuslauncher-24827 (24827) [000] dns3 24576.744312: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
115713 s.nexuslauncher-24827 (24827) [000] d..2 24576.744337: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
115714     kworker/0:1-13012 (13012) [000] d..2 24576.744387: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
115715 s.nexuslauncher-24827 (24827) [000] .... 24576.744413: binder_transaction: transaction=1671590 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
115716 s.nexuslauncher-24827 (24827) [000] d..4 24576.744430: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
115717 s.nexuslauncher-24827 (24827) [000] d..5 24576.744473: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
115718          <idle>-0     (-----) [001] .n.1 24576.744484: cpu_idle: state=4294967295 cpu_id=1
115719          <idle>-0     (-----) [001] d..2 24576.744505: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
115720  Binder:23896_5-25989 (23896) [001] .... 24576.744518: binder_transaction_received: transaction=1671590
115721  Binder:23896_5-25989 (23896) [001] d..1 24576.744563: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115722  Binder:23896_5-25989 (23896) [001] d..2 24576.744589: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115723          <idle>-0     (-----) [002] .n.1 24576.744599: cpu_idle: state=4294967295 cpu_id=2
115724          <idle>-0     (-----) [002] d..2 24576.744617: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115725 s.nexuslauncher-24827 (24827) [000] d..2 24576.744626: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115726          <idle>-0     (-----) [000] d..1 24576.744648: cpu_idle: state=0 cpu_id=0
115727  Binder:23896_5-25989 (23896) [001] d..2 24576.744654: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115728  appEventThread-23905 (23896) [002] d..2 24576.744672: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115729          <idle>-0     (-----) [001] d..1 24576.744679: cpu_idle: state=0 cpu_id=1
115730          <idle>-0     (-----) [002] d..1 24576.744691: cpu_idle: state=0 cpu_id=2
115731          <idle>-0     (-----) [000] d.s2 24576.747628: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
115732          <idle>-0     (-----) [000] dns3 24576.747655: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
115733          <idle>-0     (-----) [000] .n.1 24576.747669: cpu_idle: state=4294967295 cpu_id=0
115734          <idle>-0     (-----) [000] d..2 24576.747682: 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
115735     rcu_preempt-7     (    7) [000] d..2 24576.747697: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
115736     rcu_preempt-7     (    7) [000] d..3 24576.747717: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
115737     rcu_preempt-7     (    7) [000] d..2 24576.747730: 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
115738         rcuop/0-10    (   10) [000] d..2 24576.747737: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
115739         rcuop/0-10    (   10) [000] d..3 24576.747753: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
115740         rcuop/0-10    (   10) [000] d..2 24576.747767: 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
115741         rcuop/1-21    (   21) [000] d..2 24576.747815: 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
115742          <idle>-0     (-----) [000] d..1 24576.747839: cpu_idle: state=0 cpu_id=0
115743          <idle>-0     (-----) [001] ...1 24576.750694: cpu_idle: state=4294967295 cpu_id=1
115744          <idle>-0     (-----) [001] d..1 24576.750701: cpu_idle: state=2 cpu_id=1
115745          <idle>-0     (-----) [002] ...1 24576.750707: cpu_idle: state=4294967295 cpu_id=2
115746          <idle>-0     (-----) [002] d..1 24576.750714: cpu_idle: state=2 cpu_id=2
115747          <idle>-0     (-----) [000] d..2 24576.753852: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
115748          <idle>-0     (-----) [000] dn.3 24576.753868: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
115749          <idle>-0     (-----) [000] .n.1 24576.753874: cpu_idle: state=4294967295 cpu_id=0
115750          <idle>-0     (-----) [000] d..2 24576.753892: 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
115751     ksoftirqd/0-3     (    3) [000] d.s2 24576.753905: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
115752     ksoftirqd/0-3     (    3) [000] d.s3 24576.753955: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
115753     ksoftirqd/0-3     (    3) [000] d..2 24576.753975: 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
115754  kworker/u16:10-23868 (23868) [000] d..2 24576.754149: 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
115755          <idle>-0     (-----) [000] d..1 24576.754170: cpu_idle: state=2 cpu_id=0
115756          <idle>-0     (-----) [001] d.h2 24576.759877: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
115757          <idle>-0     (-----) [001] dnh3 24576.759909: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
115758          <idle>-0     (-----) [001] dnh3 24576.760008: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
115759          <idle>-0     (-----) [001] dnh3 24576.760026: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
115760          <idle>-0     (-----) [001] dnh4 24576.760041: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
115761          <idle>-0     (-----) [001] .n.1 24576.760052: cpu_idle: state=4294967295 cpu_id=1
115762          <idle>-0     (-----) [001] d..2 24576.760072: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
115763        DispSync-23904 (23896) [001] d..1 24576.760101: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115764        DispSync-23904 (23896) [001] d..2 24576.760119: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115765        DispSync-23904 (23896) [001] d..2 24576.760174: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115766          <idle>-0     (-----) [001] d..2 24576.760181: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115767          <idle>-0     (-----) [001] dn.3 24576.760196: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115768          <idle>-0     (-----) [001] d..2 24576.760209: 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
115769     ksoftirqd/1-18    (   18) [001] d..2 24576.760240: 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
115770          <idle>-0     (-----) [001] d..1 24576.760261: cpu_idle: state=2 cpu_id=1
115771          <idle>-0     (-----) [003] .n.1 24576.760370: cpu_idle: state=4294967295 cpu_id=3
115772          <idle>-0     (-----) [003] d..2 24576.760401: 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
115773         sugov:0-559   (  559) [003] d..2 24576.760456: 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
115774          <idle>-0     (-----) [003] d..1 24576.760476: cpu_idle: state=2 cpu_id=3
115775          <idle>-0     (-----) [002] .n.1 24576.760477: cpu_idle: state=4294967295 cpu_id=2
115776          <idle>-0     (-----) [002] d..2 24576.760507: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115777  appEventThread-23905 (23896) [002] d..3 24576.760564: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115778  appEventThread-23905 (23896) [002] d..4 24576.760596: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115779  appEventThread-23905 (23896) [002] d..2 24576.760653: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115780          <idle>-0     (-----) [002] d..1 24576.760676: cpu_idle: state=2 cpu_id=2
115781          <idle>-0     (-----) [000] .n.1 24576.760914: cpu_idle: state=4294967295 cpu_id=0
115782          <idle>-0     (-----) [000] d..2 24576.760949: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
115783          <idle>-0     (-----) [006] dnh2 24576.761110: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
115784          <idle>-0     (-----) [006] .n.1 24576.761120: cpu_idle: state=4294967295 cpu_id=6
115785          <idle>-0     (-----) [006] d..2 24576.761134: 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
115786         sugov:4-560   (  560) [006] d..2 24576.761159: 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
115787          <idle>-0     (-----) [006] d..2 24576.761164: sched_waking: comm=ksoftirqd/6 pid=58 prio=120 target_cpu=006
115788          <idle>-0     (-----) [006] dn.3 24576.761176: sched_wakeup: comm=ksoftirqd/6 pid=58 prio=120 target_cpu=006
115789          <idle>-0     (-----) [006] d..2 24576.761183: 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
115790     ksoftirqd/6-58    (   58) [006] d.s2 24576.761194: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
115791 s.nexuslauncher-24827 (24827) [000] .... 24576.761204: binder_transaction: transaction=1671591 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
115792     ksoftirqd/6-58    (   58) [006] d..2 24576.761225: 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
115793          <idle>-0     (-----) [006] d..1 24576.761236: cpu_idle: state=2 cpu_id=6
115794 s.nexuslauncher-24827 (24827) [000] d.h1 24576.761239: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
115795 s.nexuslauncher-24827 (24827) [000] d..4 24576.761257: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
115796 s.nexuslauncher-24827 (24827) [000] d..5 24576.761292: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
115797 s.nexuslauncher-24827 (24827) [000] d..2 24576.761412: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
115798  kworker/u16:10-23868 (23868) [000] d..2 24576.761535: 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
115799          <idle>-0     (-----) [000] d..1 24576.761562: cpu_idle: state=0 cpu_id=0
115800          <idle>-0     (-----) [001] .n.1 24576.761727: cpu_idle: state=4294967295 cpu_id=1
115801          <idle>-0     (-----) [001] d..2 24576.761763: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
115802  Binder:23896_5-25989 (23896) [001] .... 24576.761776: binder_transaction_received: transaction=1671591
115803  Binder:23896_5-25989 (23896) [001] d..1 24576.761824: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115804  Binder:23896_5-25989 (23896) [001] d..2 24576.761855: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115805  Binder:23896_5-25989 (23896) [001] d..2 24576.761931: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115806          <idle>-0     (-----) [001] d..1 24576.761963: cpu_idle: state=0 cpu_id=1
115807          <idle>-0     (-----) [002] .n.1 24576.762185: cpu_idle: state=4294967295 cpu_id=2
115808          <idle>-0     (-----) [002] d..2 24576.762217: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115809  appEventThread-23905 (23896) [002] d..2 24576.762307: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115810          <idle>-0     (-----) [002] d..1 24576.762333: cpu_idle: state=0 cpu_id=2
115811          <idle>-0     (-----) [000] d..2 24576.767580: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
115812          <idle>-0     (-----) [000] dn.3 24576.767600: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
115813          <idle>-0     (-----) [000] .n.1 24576.767608: cpu_idle: state=4294967295 cpu_id=0
115814          <idle>-0     (-----) [000] d..2 24576.767630: 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
115815     ksoftirqd/0-3     (    3) [000] d..2 24576.767678: 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
115816          <idle>-0     (-----) [000] d..1 24576.767693: cpu_idle: state=2 cpu_id=0
115817          <idle>-0     (-----) [001] ...1 24576.767977: cpu_idle: state=4294967295 cpu_id=1
115818          <idle>-0     (-----) [001] d..1 24576.767984: cpu_idle: state=2 cpu_id=1
115819          <idle>-0     (-----) [002] ...1 24576.768348: cpu_idle: state=4294967295 cpu_id=2
115820          <idle>-0     (-----) [002] d..1 24576.768355: cpu_idle: state=2 cpu_id=2
115821          <idle>-0     (-----) [001] d.h2 24576.776328: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
115822          <idle>-0     (-----) [001] dnh3 24576.776352: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
115823          <idle>-0     (-----) [001] .n.1 24576.776368: cpu_idle: state=4294967295 cpu_id=1
115824          <idle>-0     (-----) [001] d..2 24576.776388: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
115825        DispSync-23904 (23896) [001] d..1 24576.776417: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115826        DispSync-23904 (23896) [001] d..2 24576.776438: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115827        DispSync-23904 (23896) [001] d..2 24576.776496: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115828          <idle>-0     (-----) [001] d..2 24576.776504: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115829          <idle>-0     (-----) [001] dn.3 24576.776516: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115830          <idle>-0     (-----) [001] d..2 24576.776529: 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
115831     ksoftirqd/1-18    (   18) [001] d.s2 24576.776541: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
115832     ksoftirqd/1-18    (   18) [001] d.s3 24576.776591: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115833     ksoftirqd/1-18    (   18) [001] d..2 24576.776611: 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
115834  kworker/u16:10-23868 (23868) [001] d..2 24576.776720: 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
115835          <idle>-0     (-----) [001] d..1 24576.776745: cpu_idle: state=0 cpu_id=1
115836          <idle>-0     (-----) [002] .n.1 24576.776768: cpu_idle: state=4294967295 cpu_id=2
115837          <idle>-0     (-----) [002] d..2 24576.776807: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115838  appEventThread-23905 (23896) [002] d..3 24576.776867: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115839  appEventThread-23905 (23896) [002] d..4 24576.776905: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115840  appEventThread-23905 (23896) [002] d..2 24576.776974: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115841          <idle>-0     (-----) [002] d..1 24576.777005: cpu_idle: state=0 cpu_id=2
115842          <idle>-0     (-----) [000] .n.1 24576.777233: cpu_idle: state=4294967295 cpu_id=0
115843          <idle>-0     (-----) [000] d..2 24576.777267: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
115844 s.nexuslauncher-24827 (24827) [000] d.H3 24576.777685: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
115845 s.nexuslauncher-24827 (24827) [000] d.H3 24576.777712: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
115846 s.nexuslauncher-24827 (24827) [000] d.H4 24576.777734: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
115847 s.nexuslauncher-24827 (24827) [000] .... 24576.777750: binder_transaction: transaction=1671592 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
115848 s.nexuslauncher-24827 (24827) [000] d..4 24576.777765: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
115849 s.nexuslauncher-24827 (24827) [000] d..5 24576.777794: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
115850          <idle>-0     (-----) [001] .n.1 24576.777804: cpu_idle: state=4294967295 cpu_id=1
115851          <idle>-0     (-----) [001] d..2 24576.777826: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
115852  Binder:23896_5-25989 (23896) [001] .... 24576.777838: binder_transaction_received: transaction=1671592
115853  Binder:23896_5-25989 (23896) [001] d..1 24576.777886: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115854  Binder:23896_5-25989 (23896) [001] d..2 24576.777914: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115855          <idle>-0     (-----) [002] .n.1 24576.777923: cpu_idle: state=4294967295 cpu_id=2
115856          <idle>-0     (-----) [002] d..2 24576.777940: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115857 s.nexuslauncher-24827 (24827) [000] d..2 24576.777950: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115858  Binder:23896_5-25989 (23896) [001] d..2 24576.777980: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115859          <idle>-0     (-----) [000] d..1 24576.777981: cpu_idle: state=0 cpu_id=0
115860  appEventThread-23905 (23896) [002] d..2 24576.777994: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115861          <idle>-0     (-----) [001] d..1 24576.778004: cpu_idle: state=0 cpu_id=1
115862          <idle>-0     (-----) [002] d..1 24576.778012: cpu_idle: state=0 cpu_id=2
115863          <idle>-0     (-----) [003] .n.1 24576.778052: cpu_idle: state=4294967295 cpu_id=3
115864          <idle>-0     (-----) [003] d..2 24576.778082: 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
115865         sugov:0-559   (  559) [003] d..2 24576.778131: 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
115866          <idle>-0     (-----) [003] d..1 24576.778152: cpu_idle: state=2 cpu_id=3
115867          <idle>-0     (-----) [006] dnh2 24576.778771: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
115868          <idle>-0     (-----) [006] .n.1 24576.778780: cpu_idle: state=4294967295 cpu_id=6
115869          <idle>-0     (-----) [006] d..2 24576.778793: 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
115870         sugov:4-560   (  560) [006] d..2 24576.778815: 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
115871          <idle>-0     (-----) [006] d..1 24576.778827: cpu_idle: state=2 cpu_id=6
115872          <idle>-0     (-----) [000] d..2 24576.783997: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
115873          <idle>-0     (-----) [000] dn.3 24576.784014: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
115874          <idle>-0     (-----) [000] .n.1 24576.784020: cpu_idle: state=4294967295 cpu_id=0
115875          <idle>-0     (-----) [001] ...1 24576.784023: cpu_idle: state=4294967295 cpu_id=1
115876          <idle>-0     (-----) [002] ...1 24576.784025: cpu_idle: state=4294967295 cpu_id=2
115877          <idle>-0     (-----) [001] d..1 24576.784030: cpu_idle: state=2 cpu_id=1
115878          <idle>-0     (-----) [002] d..1 24576.784032: cpu_idle: state=2 cpu_id=2
115879          <idle>-0     (-----) [000] d..2 24576.784039: 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
115880     ksoftirqd/0-3     (    3) [000] d..2 24576.784078: 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
115881          <idle>-0     (-----) [000] d..1 24576.784094: cpu_idle: state=2 cpu_id=0
115882          <idle>-0     (-----) [001] d.h2 24576.792788: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
115883          <idle>-0     (-----) [001] dnh3 24576.792815: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
115884          <idle>-0     (-----) [001] .n.1 24576.792831: cpu_idle: state=4294967295 cpu_id=1
115885          <idle>-0     (-----) [001] d..2 24576.792852: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
115886        DispSync-23904 (23896) [001] d..1 24576.792881: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115887        DispSync-23904 (23896) [001] d..2 24576.792899: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115888        DispSync-23904 (23896) [001] d..2 24576.792959: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115889          <idle>-0     (-----) [001] d..2 24576.792965: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115890          <idle>-0     (-----) [001] dn.3 24576.792981: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115891          <idle>-0     (-----) [001] d..2 24576.792994: 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
115892     ksoftirqd/1-18    (   18) [001] d.s2 24576.793007: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115893     ksoftirqd/1-18    (   18) [001] d.s3 24576.793032: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115894     ksoftirqd/1-18    (   18) [001] d..2 24576.793053: 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
115895  kworker/u16:10-23868 (23868) [001] d..2 24576.793223: 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
115896          <idle>-0     (-----) [002] .n.1 24576.793230: cpu_idle: state=4294967295 cpu_id=2
115897          <idle>-0     (-----) [001] d..1 24576.793249: cpu_idle: state=0 cpu_id=1
115898          <idle>-0     (-----) [002] d..2 24576.793267: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115899  appEventThread-23905 (23896) [002] d..3 24576.793325: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115900  appEventThread-23905 (23896) [002] d..4 24576.793362: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115901  appEventThread-23905 (23896) [002] d..2 24576.793430: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115902          <idle>-0     (-----) [002] d..1 24576.793461: cpu_idle: state=0 cpu_id=2
115903          <idle>-0     (-----) [000] .n.1 24576.793687: cpu_idle: state=4294967295 cpu_id=0
115904          <idle>-0     (-----) [000] d..2 24576.793723: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
115905 s.nexuslauncher-24827 (24827) [000] .... 24576.793981: binder_transaction: transaction=1671593 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
115906 s.nexuslauncher-24827 (24827) [000] d..4 24576.793996: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
115907 s.nexuslauncher-24827 (24827) [000] d..5 24576.794037: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
115908          <idle>-0     (-----) [001] .n.1 24576.794047: cpu_idle: state=4294967295 cpu_id=1
115909          <idle>-0     (-----) [001] d..2 24576.794068: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
115910  Binder:23896_5-25989 (23896) [001] .... 24576.794082: binder_transaction_received: transaction=1671593
115911  Binder:23896_5-25989 (23896) [001] d..1 24576.794129: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115912  Binder:23896_5-25989 (23896) [001] d..2 24576.794158: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115913          <idle>-0     (-----) [002] .n.1 24576.794167: cpu_idle: state=4294967295 cpu_id=2
115914          <idle>-0     (-----) [002] d..2 24576.794180: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115915 s.nexuslauncher-24827 (24827) [000] d..2 24576.794181: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115916          <idle>-0     (-----) [000] d..1 24576.794211: cpu_idle: state=0 cpu_id=0
115917  Binder:23896_5-25989 (23896) [001] d..2 24576.794221: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115918  appEventThread-23905 (23896) [002] d..2 24576.794233: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115919          <idle>-0     (-----) [001] d..1 24576.794304: cpu_idle: state=0 cpu_id=1
115920          <idle>-0     (-----) [002] d..1 24576.794314: cpu_idle: state=0 cpu_id=2
115921          <idle>-0     (-----) [000] d..2 24576.800233: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
115922          <idle>-0     (-----) [000] dn.3 24576.800252: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
115923          <idle>-0     (-----) [001] ...1 24576.800331: cpu_idle: state=4294967295 cpu_id=1
115924          <idle>-0     (-----) [002] ...1 24576.800333: cpu_idle: state=4294967295 cpu_id=2
115925          <idle>-0     (-----) [001] d..1 24576.800337: cpu_idle: state=2 cpu_id=1
115926          <idle>-0     (-----) [002] d..1 24576.800339: cpu_idle: state=2 cpu_id=2
115927          <idle>-0     (-----) [000] dnH3 24576.800344: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
115928          <idle>-0     (-----) [000] dnH3 24576.800367: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
115929          <idle>-0     (-----) [000] dnH4 24576.800386: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
115930          <idle>-0     (-----) [000] .n.1 24576.800403: cpu_idle: state=4294967295 cpu_id=0
115931          <idle>-0     (-----) [000] d..2 24576.800425: 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
115932     ksoftirqd/0-3     (    3) [000] d..2 24576.800462: 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
115933          <idle>-0     (-----) [000] d..1 24576.800481: cpu_idle: state=2 cpu_id=0
115934          <idle>-0     (-----) [003] .n.1 24576.800720: cpu_idle: state=4294967295 cpu_id=3
115935          <idle>-0     (-----) [003] d..2 24576.800747: 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
115936         sugov:0-559   (  559) [003] d..2 24576.800793: 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
115937          <idle>-0     (-----) [003] d..1 24576.800813: cpu_idle: state=2 cpu_id=3
115938          <idle>-0     (-----) [006] dnh2 24576.801426: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
115939          <idle>-0     (-----) [006] .n.1 24576.801435: cpu_idle: state=4294967295 cpu_id=6
115940          <idle>-0     (-----) [006] d..2 24576.801447: 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
115941         sugov:4-560   (  560) [006] d..2 24576.801472: 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
115942          <idle>-0     (-----) [006] d..2 24576.801476: sched_waking: comm=ksoftirqd/6 pid=58 prio=120 target_cpu=006
115943          <idle>-0     (-----) [006] dn.3 24576.801487: sched_wakeup: comm=ksoftirqd/6 pid=58 prio=120 target_cpu=006
115944          <idle>-0     (-----) [006] d..2 24576.801494: 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
115945     ksoftirqd/6-58    (   58) [006] d.s2 24576.801502: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115946     ksoftirqd/6-58    (   58) [006] d..2 24576.801537: 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
115947          <idle>-0     (-----) [006] d..1 24576.801550: cpu_idle: state=2 cpu_id=6
115948          <idle>-0     (-----) [001] dnh2 24576.802062: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115949          <idle>-0     (-----) [001] .n.1 24576.802077: cpu_idle: state=4294967295 cpu_id=1
115950          <idle>-0     (-----) [001] d..2 24576.802099: 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
115951  kworker/u16:10-23868 (23868) [001] d..2 24576.802273: 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
115952          <idle>-0     (-----) [001] d..1 24576.802295: cpu_idle: state=2 cpu_id=1
115953          <idle>-0     (-----) [001] d.h2 24576.809230: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
115954          <idle>-0     (-----) [001] dnh3 24576.809259: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
115955          <idle>-0     (-----) [001] .n.1 24576.809274: cpu_idle: state=4294967295 cpu_id=1
115956          <idle>-0     (-----) [001] d..2 24576.809299: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
115957        DispSync-23904 (23896) [001] d..1 24576.809328: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115958        DispSync-23904 (23896) [001] d..2 24576.809347: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115959        DispSync-23904 (23896) [001] d..2 24576.809403: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115960          <idle>-0     (-----) [001] d..2 24576.809410: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115961          <idle>-0     (-----) [001] dn.3 24576.809425: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115962          <idle>-0     (-----) [001] d..2 24576.809437: 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
115963     ksoftirqd/1-18    (   18) [001] d..2 24576.809466: 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
115964          <idle>-0     (-----) [001] d..1 24576.809485: cpu_idle: state=2 cpu_id=1
115965          <idle>-0     (-----) [002] .n.1 24576.809697: cpu_idle: state=4294967295 cpu_id=2
115966          <idle>-0     (-----) [002] d..2 24576.809721: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115967  appEventThread-23905 (23896) [002] d..3 24576.809779: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115968  appEventThread-23905 (23896) [002] d..4 24576.809811: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
115969  appEventThread-23905 (23896) [002] d..2 24576.809868: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115970          <idle>-0     (-----) [002] d..1 24576.809892: cpu_idle: state=2 cpu_id=2
115971          <idle>-0     (-----) [000] .n.1 24576.810128: cpu_idle: state=4294967295 cpu_id=0
115972          <idle>-0     (-----) [000] d..2 24576.810157: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
115973 s.nexuslauncher-24827 (24827) [000] .... 24576.810405: binder_transaction: transaction=1671594 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
115974 s.nexuslauncher-24827 (24827) [000] d..4 24576.810422: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
115975 s.nexuslauncher-24827 (24827) [000] d..5 24576.810458: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
115976 s.nexuslauncher-24827 (24827) [000] d..2 24576.810592: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115977          <idle>-0     (-----) [000] d..1 24576.810619: cpu_idle: state=2 cpu_id=0
115978          <idle>-0     (-----) [001] .n.1 24576.810796: cpu_idle: state=4294967295 cpu_id=1
115979          <idle>-0     (-----) [001] d..2 24576.810824: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
115980  Binder:23896_5-25989 (23896) [001] .... 24576.810835: binder_transaction_received: transaction=1671594
115981  Binder:23896_5-25989 (23896) [001] d.s2 24576.810926: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115982  Binder:23896_5-25989 (23896) [001] d.s3 24576.810957: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
115983  Binder:23896_5-25989 (23896) [001] d..1 24576.810977: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
115984  Binder:23896_5-25989 (23896) [001] d..2 24576.810997: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
115985  Binder:23896_5-25989 (23896) [001] d..2 24576.811043: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
115986  kworker/u16:10-23868 (23868) [001] d..2 24576.811164: 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
115987          <idle>-0     (-----) [001] d..1 24576.811192: cpu_idle: state=0 cpu_id=1
115988          <idle>-0     (-----) [002] .n.1 24576.811323: cpu_idle: state=4294967295 cpu_id=2
115989          <idle>-0     (-----) [002] d..2 24576.811359: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
115990  appEventThread-23905 (23896) [002] d..2 24576.811451: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115991          <idle>-0     (-----) [002] d..1 24576.811481: cpu_idle: state=0 cpu_id=2
115992          <idle>-0     (-----) [001] d..2 24576.817213: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115993          <idle>-0     (-----) [001] dn.3 24576.817228: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
115994          <idle>-0     (-----) [001] .n.1 24576.817234: cpu_idle: state=4294967295 cpu_id=1
115995          <idle>-0     (-----) [001] d..2 24576.817259: 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
115996     ksoftirqd/1-18    (   18) [001] d..2 24576.817302: 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
115997          <idle>-0     (-----) [001] d..1 24576.817317: cpu_idle: state=2 cpu_id=1
115998          <idle>-0     (-----) [002] ...1 24576.817495: cpu_idle: state=4294967295 cpu_id=2
115999          <idle>-0     (-----) [002] d..1 24576.817501: cpu_idle: state=2 cpu_id=2
116000          <idle>-0     (-----) [001] d.h2 24576.825700: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
116001          <idle>-0     (-----) [001] dnh3 24576.825733: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
116002          <idle>-0     (-----) [001] dnh3 24576.825826: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
116003          <idle>-0     (-----) [001] dnh3 24576.825844: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
116004          <idle>-0     (-----) [001] dnh4 24576.825860: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
116005          <idle>-0     (-----) [001] .n.1 24576.825870: cpu_idle: state=4294967295 cpu_id=1
116006          <idle>-0     (-----) [001] d..2 24576.825890: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
116007        DispSync-23904 (23896) [001] d..1 24576.825919: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
116008        DispSync-23904 (23896) [001] d..2 24576.825936: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
116009        DispSync-23904 (23896) [001] d..2 24576.825991: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116010          <idle>-0     (-----) [001] d..2 24576.825997: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
116011          <idle>-0     (-----) [001] dn.3 24576.826012: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
116012          <idle>-0     (-----) [001] d..2 24576.826024: 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
116013     ksoftirqd/1-18    (   18) [001] d.s2 24576.826036: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
116014     ksoftirqd/1-18    (   18) [001] d.s3 24576.826060: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
116015     ksoftirqd/1-18    (   18) [001] d..2 24576.826081: 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
116016          <idle>-0     (-----) [003] .n.1 24576.826186: cpu_idle: state=4294967295 cpu_id=3
116017  kworker/u16:10-23868 (23868) [001] d..2 24576.826189: 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
116018          <idle>-0     (-----) [003] d..2 24576.826217: 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
116019          <idle>-0     (-----) [001] d..1 24576.826217: cpu_idle: state=0 cpu_id=1
116020          <idle>-0     (-----) [002] .n.1 24576.826275: cpu_idle: state=4294967295 cpu_id=2
116021         sugov:0-559   (  559) [003] d..2 24576.826276: 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
116022          <idle>-0     (-----) [003] d..1 24576.826302: cpu_idle: state=2 cpu_id=3
116023          <idle>-0     (-----) [002] d..2 24576.826303: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116024  appEventThread-23905 (23896) [002] d..3 24576.826360: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
116025  appEventThread-23905 (23896) [002] d..4 24576.826399: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
116026  appEventThread-23905 (23896) [002] d..2 24576.826457: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116027          <idle>-0     (-----) [002] d..1 24576.826484: cpu_idle: state=0 cpu_id=2
116028          <idle>-0     (-----) [000] .n.1 24576.826714: cpu_idle: state=4294967295 cpu_id=0
116029          <idle>-0     (-----) [000] d..2 24576.826745: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
116030          <idle>-0     (-----) [006] dnh2 24576.826900: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
116031          <idle>-0     (-----) [006] .n.1 24576.826909: cpu_idle: state=4294967295 cpu_id=6
116032          <idle>-0     (-----) [006] d..2 24576.826923: 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
116033         sugov:4-560   (  560) [006] d..2 24576.826946: 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
116034          <idle>-0     (-----) [006] d..1 24576.826959: cpu_idle: state=2 cpu_id=6
116035 s.nexuslauncher-24827 (24827) [000] .... 24576.827002: binder_transaction: transaction=1671595 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
116036 s.nexuslauncher-24827 (24827) [000] d..4 24576.827017: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
116037 s.nexuslauncher-24827 (24827) [000] d..5 24576.827057: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
116038          <idle>-0     (-----) [001] .n.1 24576.827066: cpu_idle: state=4294967295 cpu_id=1
116039          <idle>-0     (-----) [001] d..2 24576.827085: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
116040  Binder:23896_5-25989 (23896) [001] .... 24576.827097: binder_transaction_received: transaction=1671595
116041  Binder:23896_5-25989 (23896) [001] d..1 24576.827146: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
116042  Binder:23896_5-25989 (23896) [001] d..2 24576.827175: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
116043          <idle>-0     (-----) [002] .n.1 24576.827183: cpu_idle: state=4294967295 cpu_id=2
116044          <idle>-0     (-----) [002] d..2 24576.827196: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116045 s.nexuslauncher-24827 (24827) [000] d..2 24576.827196: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116046          <idle>-0     (-----) [000] d..1 24576.827223: cpu_idle: state=2 cpu_id=0
116047  Binder:23896_5-25989 (23896) [001] d..2 24576.827238: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116048  appEventThread-23905 (23896) [002] d..2 24576.827250: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116049          <idle>-0     (-----) [001] d..1 24576.827264: cpu_idle: state=0 cpu_id=1
116050          <idle>-0     (-----) [002] d..1 24576.827267: cpu_idle: state=0 cpu_id=2
116051          <idle>-0     (-----) [006] d.h2 24576.831740: sched_waking: comm=oid.setupwizard pid=24795 prio=120 target_cpu=006
116052          <idle>-0     (-----) [006] d.h2 24576.831809: sched_waking: comm=TaskSnapshotPer pid=24113 prio=130 target_cpu=006
116053          <idle>-0     (-----) [001] dnh2 24576.831833: sched_wakeup: comm=oid.setupwizard pid=24795 prio=120 target_cpu=001
116054          <idle>-0     (-----) [001] .n.1 24576.831845: cpu_idle: state=4294967295 cpu_id=1
116055          <idle>-0     (-----) [006] d..2 24576.831857: sched_waking: comm=ksoftirqd/6 pid=58 prio=120 target_cpu=006
116056          <idle>-0     (-----) [001] d..2 24576.831865: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=oid.setupwizard next_pid=24795 next_prio=120
116057          <idle>-0     (-----) [006] dn.3 24576.831867: sched_wakeup: comm=ksoftirqd/6 pid=58 prio=120 target_cpu=006
116058          <idle>-0     (-----) [002] dnh2 24576.831868: sched_wakeup: comm=TaskSnapshotPer pid=24113 prio=130 target_cpu=002
116059          <idle>-0     (-----) [002] .n.1 24576.831877: cpu_idle: state=4294967295 cpu_id=2
116060          <idle>-0     (-----) [002] d..2 24576.831919: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=24113 next_prio=130
116061          <idle>-0     (-----) [006] dnH3 24576.831920: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
116062          <idle>-0     (-----) [006] dnH4 24576.831930: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
116063          <idle>-0     (-----) [006] dnH3 24576.831932: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
116064          <idle>-0     (-----) [006] .n.1 24576.831950: cpu_idle: state=4294967295 cpu_id=6
116065          <idle>-0     (-----) [006] d..2 24576.831964: 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
116066         sugov:4-560   (  560) [006] d..2 24576.831975: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=ksoftirqd/6 next_pid=58 next_prio=120
116067     ksoftirqd/6-58    (   58) [006] d..2 24576.831993: 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
116068          <idle>-0     (-----) [006] d..1 24576.832004: cpu_idle: state=2 cpu_id=6
116069<...>-24113 ( 23968) [002] d..2 24576.832066: sched_switch: prev_comm=TaskSnapshotPer prev_pid=24113 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116070          <idle>-0     (-----) [002] d..1 24576.832090: cpu_idle: state=0 cpu_id=2
116071 oid.setupwizard-24795 (24795) [001] d..2 24576.832233: sched_switch: prev_comm=oid.setupwizard prev_pid=24795 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116072          <idle>-0     (-----) [001] d..1 24576.832254: cpu_idle: state=0 cpu_id=1
116073          <idle>-0     (-----) [003] dnh2 24576.832276: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
116074          <idle>-0     (-----) [003] .n.1 24576.832289: cpu_idle: state=4294967295 cpu_id=3
116075          <idle>-0     (-----) [003] d..2 24576.832308: 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
116076         sugov:0-559   (  559) [003] d..2 24576.832349: 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
116077          <idle>-0     (-----) [003] d..1 24576.832369: cpu_idle: state=2 cpu_id=3
116078          <idle>-0     (-----) [002] d..2 24576.838109: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
116079          <idle>-0     (-----) [002] dn.3 24576.838128: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
116080          <idle>-0     (-----) [002] dnH3 24576.838213: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
116081          <idle>-0     (-----) [002] dnH3 24576.838233: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
116082          <idle>-0     (-----) [002] dnH4 24576.838250: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
116083          <idle>-0     (-----) [002] dns3 24576.838264: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
116084          <idle>-0     (-----) [002] dns4 24576.838315: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
116085          <idle>-0     (-----) [002] .n.1 24576.838330: cpu_idle: state=4294967295 cpu_id=2
116086          <idle>-0     (-----) [002] d..2 24576.838351: 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
116087     ksoftirqd/2-26    (   26) [002] d..2 24576.838366: 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
116088  kworker/u16:10-23868 (23868) [002] d..2 24576.838490: 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
116089          <idle>-0     (-----) [002] d..1 24576.838510: cpu_idle: state=2 cpu_id=2
116090          <idle>-0     (-----) [003] .n.1 24576.838565: cpu_idle: state=4294967295 cpu_id=3
116091          <idle>-0     (-----) [003] d..2 24576.838591: 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
116092         sugov:0-559   (  559) [003] d..2 24576.838637: 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
116093          <idle>-0     (-----) [003] d..1 24576.838656: cpu_idle: state=2 cpu_id=3
116094          <idle>-0     (-----) [006] dnh2 24576.839274: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
116095          <idle>-0     (-----) [006] .n.1 24576.839283: cpu_idle: state=4294967295 cpu_id=6
116096          <idle>-0     (-----) [006] d..2 24576.839295: 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
116097         sugov:4-560   (  560) [006] d..2 24576.839316: 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
116098          <idle>-0     (-----) [006] d..1 24576.839328: cpu_idle: state=2 cpu_id=6
116099          <idle>-0     (-----) [001] d.h2 24576.841750: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
116100          <idle>-0     (-----) [001] dnh3 24576.841772: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
116101          <idle>-0     (-----) [001] .n.1 24576.841786: cpu_idle: state=4294967295 cpu_id=1
116102          <idle>-0     (-----) [001] d..2 24576.841802: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
116103        DispSync-23904 (23896) [001] d..1 24576.841825: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
116104        DispSync-23904 (23896) [001] d..2 24576.841844: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
116105        DispSync-23904 (23896) [001] d..2 24576.841893: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116106          <idle>-0     (-----) [001] d..2 24576.841899: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
116107          <idle>-0     (-----) [001] dn.3 24576.841914: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
116108          <idle>-0     (-----) [001] d..2 24576.841926: 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
116109     ksoftirqd/1-18    (   18) [001] d.s2 24576.841938: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
116110     ksoftirqd/1-18    (   18) [001] d.s3 24576.841987: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
116111     ksoftirqd/1-18    (   18) [001] d.s2 24576.841993: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
116112     ksoftirqd/1-18    (   18) [001] d.s3 24576.842007: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
116113     ksoftirqd/1-18    (   18) [001] d..2 24576.842022: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
116114     kworker/1:1-13091 (13091) [001] d..2 24576.842059: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
116115  kworker/u16:10-23868 (23868) [001] d..2 24576.842144: 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
116116          <idle>-0     (-----) [001] d..1 24576.842168: cpu_idle: state=0 cpu_id=1
116117          <idle>-0     (-----) [002] .n.1 24576.842170: cpu_idle: state=4294967295 cpu_id=2
116118          <idle>-0     (-----) [002] d..2 24576.842204: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116119  appEventThread-23905 (23896) [002] d..3 24576.842265: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
116120  appEventThread-23905 (23896) [002] d..4 24576.842310: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
116121  appEventThread-23905 (23896) [002] d..2 24576.842379: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116122          <idle>-0     (-----) [002] d..1 24576.842410: cpu_idle: state=0 cpu_id=2
116123          <idle>-0     (-----) [000] .n.1 24576.842639: cpu_idle: state=4294967295 cpu_id=0
116124          <idle>-0     (-----) [000] d..2 24576.842674: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
116125 s.nexuslauncher-24827 (24827) [000] .... 24576.842930: binder_transaction: transaction=1671596 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
116126 s.nexuslauncher-24827 (24827) [000] d..4 24576.842945: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
116127 s.nexuslauncher-24827 (24827) [000] d..5 24576.842986: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
116128          <idle>-0     (-----) [001] .n.1 24576.842994: cpu_idle: state=4294967295 cpu_id=1
116129          <idle>-0     (-----) [001] d..2 24576.843012: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
116130  Binder:23896_5-25989 (23896) [001] .... 24576.843025: binder_transaction_received: transaction=1671596
116131  Binder:23896_5-25989 (23896) [001] d..1 24576.843068: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
116132  Binder:23896_5-25989 (23896) [001] d..2 24576.843095: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
116133          <idle>-0     (-----) [002] .n.1 24576.843105: cpu_idle: state=4294967295 cpu_id=2
116134          <idle>-0     (-----) [002] d..2 24576.843121: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116135 s.nexuslauncher-24827 (24827) [000] d..2 24576.843126: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116136          <idle>-0     (-----) [000] d..1 24576.843154: cpu_idle: state=2 cpu_id=0
116137  Binder:23896_5-25989 (23896) [001] d..2 24576.843158: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116138  appEventThread-23905 (23896) [002] d..2 24576.843174: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116139          <idle>-0     (-----) [001] d..1 24576.843178: cpu_idle: state=2 cpu_id=1
116140          <idle>-0     (-----) [002] d..1 24576.843191: cpu_idle: state=2 cpu_id=2
116141          <idle>-0     (-----) [001] ...1 24576.847368: cpu_idle: state=4294967295 cpu_id=1
116142          <idle>-0     (-----) [002] ...1 24576.847370: cpu_idle: state=4294967295 cpu_id=2
116143          <idle>-0     (-----) [001] d..1 24576.847376: cpu_idle: state=2 cpu_id=1
116144          <idle>-0     (-----) [002] d..1 24576.847380: cpu_idle: state=2 cpu_id=2
116145          <idle>-0     (-----) [000] d..2 24576.851183: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116146          <idle>-0     (-----) [000] dn.3 24576.851205: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116147          <idle>-0     (-----) [000] .n.1 24576.851212: cpu_idle: state=4294967295 cpu_id=0
116148          <idle>-0     (-----) [000] d..2 24576.851238: 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
116149     ksoftirqd/0-3     (    3) [000] d.s2 24576.851253: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
116150     ksoftirqd/0-3     (    3) [000] d.s3 24576.851270: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
116151     ksoftirqd/0-3     (    3) [000] d.s2 24576.851275: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
116152     ksoftirqd/0-3     (    3) [000] d.s3 24576.851333: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116153     ksoftirqd/0-3     (    3) [000] d..2 24576.851358: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
116154     kworker/0:1-13012 (13012) [000] d..2 24576.851403: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
116155  kworker/u16:10-23868 (23868) [000] d..2 24576.851579: 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
116156          <idle>-0     (-----) [000] d..1 24576.851602: cpu_idle: state=2 cpu_id=0
116157          <idle>-0     (-----) [001] d.h2 24576.858612: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
116158          <idle>-0     (-----) [001] dnh3 24576.858646: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
116159          <idle>-0     (-----) [001] dnh3 24576.858741: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
116160          <idle>-0     (-----) [001] dnh3 24576.858758: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
116161          <idle>-0     (-----) [001] dnh4 24576.858775: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
116162          <idle>-0     (-----) [001] .n.1 24576.858786: cpu_idle: state=4294967295 cpu_id=1
116163          <idle>-0     (-----) [001] d..2 24576.858806: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
116164        DispSync-23904 (23896) [001] d..1 24576.858838: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
116165        DispSync-23904 (23896) [001] d..2 24576.858855: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
116166        DispSync-23904 (23896) [001] d..2 24576.858910: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116167          <idle>-0     (-----) [001] d..2 24576.858916: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
116168          <idle>-0     (-----) [001] dn.3 24576.858931: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
116169          <idle>-0     (-----) [001] d..2 24576.858944: 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
116170     ksoftirqd/1-18    (   18) [001] d..2 24576.858974: 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
116171          <idle>-0     (-----) [001] d..1 24576.858992: cpu_idle: state=2 cpu_id=1
116172          <idle>-0     (-----) [003] .n.1 24576.859107: cpu_idle: state=4294967295 cpu_id=3
116173          <idle>-0     (-----) [003] d..2 24576.859139: 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
116174         sugov:0-559   (  559) [003] d..2 24576.859188: 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
116175          <idle>-0     (-----) [003] d..1 24576.859206: cpu_idle: state=2 cpu_id=3
116176          <idle>-0     (-----) [002] .n.1 24576.859210: cpu_idle: state=4294967295 cpu_id=2
116177          <idle>-0     (-----) [002] d..2 24576.859238: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116178  appEventThread-23905 (23896) [002] d..3 24576.859293: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
116179  appEventThread-23905 (23896) [002] d..4 24576.859327: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
116180  appEventThread-23905 (23896) [002] d..2 24576.859384: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116181          <idle>-0     (-----) [002] d..1 24576.859406: cpu_idle: state=2 cpu_id=2
116182          <idle>-0     (-----) [000] .n.1 24576.859642: cpu_idle: state=4294967295 cpu_id=0
116183          <idle>-0     (-----) [000] d..2 24576.859670: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
116184          <idle>-0     (-----) [006] dnh2 24576.859843: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
116185          <idle>-0     (-----) [006] .n.1 24576.859852: cpu_idle: state=4294967295 cpu_id=6
116186          <idle>-0     (-----) [006] d..2 24576.859865: 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
116187         sugov:4-560   (  560) [006] d..2 24576.859887: 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
116188          <idle>-0     (-----) [006] d..1 24576.859898: cpu_idle: state=2 cpu_id=6
116189 s.nexuslauncher-24827 (24827) [000] .... 24576.859920: binder_transaction: transaction=1671597 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
116190 s.nexuslauncher-24827 (24827) [000] d..4 24576.859938: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
116191 s.nexuslauncher-24827 (24827) [000] d..5 24576.859978: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
116192 s.nexuslauncher-24827 (24827) [000] d..2 24576.860119: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116193          <idle>-0     (-----) [000] d..1 24576.860146: cpu_idle: state=2 cpu_id=0
116194          <idle>-0     (-----) [001] .n.1 24576.860451: cpu_idle: state=4294967295 cpu_id=1
116195          <idle>-0     (-----) [001] d..2 24576.860480: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
116196  Binder:23896_5-25989 (23896) [001] .... 24576.860492: binder_transaction_received: transaction=1671597
116197  Binder:23896_5-25989 (23896) [001] d..1 24576.860539: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
116198  Binder:23896_5-25989 (23896) [001] d..2 24576.860567: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
116199  Binder:23896_5-25989 (23896) [001] d..2 24576.860630: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116200          <idle>-0     (-----) [001] d..1 24576.860653: cpu_idle: state=2 cpu_id=1
116201          <idle>-0     (-----) [002] .n.1 24576.860891: cpu_idle: state=4294967295 cpu_id=2
116202          <idle>-0     (-----) [002] d..2 24576.860920: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116203  appEventThread-23905 (23896) [002] d..2 24576.861008: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116204          <idle>-0     (-----) [002] d..2 24576.861017: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
116205          <idle>-0     (-----) [002] dn.3 24576.861036: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
116206          <idle>-0     (-----) [002] d..2 24576.861050: 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
116207     ksoftirqd/2-26    (   26) [002] d.s2 24576.861064: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116208     ksoftirqd/2-26    (   26) [002] d.s3 24576.861117: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
116209     ksoftirqd/2-26    (   26) [002] d..2 24576.861140: 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
116210  kworker/u16:10-23868 (23868) [002] d..2 24576.861250: 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
116211          <idle>-0     (-----) [002] d..1 24576.861272: cpu_idle: state=2 cpu_id=2
116212          <idle>-0     (-----) [001] d.h2 24576.879632: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
116213          <idle>-0     (-----) [000] d..2 24576.879775: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116214          <idle>-0     (-----) [001] dnh3 24576.879872: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
116215          <idle>-0     (-----) [000] dn.3 24576.879893: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116216          <idle>-0     (-----) [000] .n.1 24576.879928: cpu_idle: state=4294967295 cpu_id=0
116217          <idle>-0     (-----) [001] dnh3 24576.880274: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
116218          <idle>-0     (-----) [000] d..2 24576.880301: 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
116219          <idle>-0     (-----) [001] dnh3 24576.880318: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
116220          <idle>-0     (-----) [001] dnh4 24576.880358: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
116221          <idle>-0     (-----) [001] .n.1 24576.880374: cpu_idle: state=4294967295 cpu_id=1
116222     ksoftirqd/0-3     (    3) [000] d.s2 24576.880405: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
116223          <idle>-0     (-----) [001] d..2 24576.880420: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
116224     ksoftirqd/0-3     (    3) [000] d.s3 24576.880626: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116225        DispSync-23904 (23896) [001] d..1 24576.880666: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
116226     ksoftirqd/0-3     (    3) [000] d..2 24576.880683: 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
116227        DispSync-23904 (23896) [001] d..2 24576.880704: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
116228          <idle>-0     (-----) [003] .n.1 24576.880753: cpu_idle: state=4294967295 cpu_id=3
116229          <idle>-0     (-----) [003] d..2 24576.880810: 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
116230        DispSync-23904 (23896) [001] d..2 24576.880955: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116231         sugov:0-559   (  559) [003] d..2 24576.880956: 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
116232  kworker/u16:10-23868 (23868) [000] d.h4 24576.881024: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
116233  kworker/u16:10-23868 (23868) [000] d.h5 24576.881083: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
116234          <idle>-0     (-----) [002] .n.1 24576.881087: cpu_idle: state=4294967295 cpu_id=2
116235          <idle>-0     (-----) [001] d..2 24576.881107: 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
116236          <idle>-0     (-----) [002] d..2 24576.881142: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116237          <idle>-0     (-----) [003] d..1 24576.881144: cpu_idle: state=2 cpu_id=3
116238  kworker/u16:16-25995 (25995) [001] d..3 24576.881175: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
116239  kworker/u16:16-25995 (25995) [001] d..4 24576.881213: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
116240  kworker/u16:16-25995 (25995) [001] d..2 24576.881245: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
116241     kworker/1:1-13091 (13091) [001] d..3 24576.881278: sched_waking: comm=msm_irqbalance pid=805 prio=120 target_cpu=001
116242     kworker/1:1-13091 (13091) [001] d..4 24576.881320: sched_wakeup: comm=msm_irqbalance pid=805 prio=120 target_cpu=001
116243     kworker/1:1-13091 (13091) [001] d..2 24576.881380: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=msm_irqbalance next_pid=805 next_prio=120
116244          <idle>-0     (-----) [006] dnh2 24576.881451: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
116245          <idle>-0     (-----) [006] .n.1 24576.881469: cpu_idle: state=4294967295 cpu_id=6
116246          <idle>-0     (-----) [006] d..2 24576.881493: 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
116247  appEventThread-23905 (23896) [002] d..3 24576.881525: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
116248         sugov:4-560   (  560) [006] d..2 24576.881538: 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
116249          <idle>-0     (-----) [006] d..1 24576.881559: cpu_idle: state=2 cpu_id=6
116250  appEventThread-23905 (23896) [002] d..4 24576.881599: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=003
116251  kworker/u16:10-23868 (23868) [000] d..2 24576.881716: 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
116252  appEventThread-23905 (23896) [002] d..2 24576.881718: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116253          <idle>-0     (-----) [000] d..1 24576.881753: cpu_idle: state=2 cpu_id=0
116254          <idle>-0     (-----) [002] d..1 24576.881756: cpu_idle: state=2 cpu_id=2
116255          <idle>-0     (-----) [003] .n.1 24576.882082: cpu_idle: state=4294967295 cpu_id=3
116256          <idle>-0     (-----) [003] d..2 24576.882114: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
116257 s.nexuslauncher-24827 (24827) [003] .... 24576.883967: binder_transaction: transaction=1671598 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
116258 s.nexuslauncher-24827 (24827) [003] d..4 24576.884058: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
116259 s.nexuslauncher-24827 (24827) [003] d..5 24576.884138: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
116260          <idle>-0     (-----) [000] .n.1 24576.884446: cpu_idle: state=4294967295 cpu_id=0
116261          <idle>-0     (-----) [000] d..2 24576.884482: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
116262  Binder:23896_5-25989 (23896) [000] .... 24576.884527: binder_transaction_received: transaction=1671598
116263 s.nexuslauncher-24827 (24827) [003] d..2 24576.884590: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
116264          <idle>-0     (-----) [003] d..1 24576.884616: cpu_idle: state=2 cpu_id=3
116265  Binder:23896_5-25989 (23896) [000] d..1 24576.884718: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
116266  Binder:23896_5-25989 (23896) [000] d..2 24576.884747: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
116267  Binder:23896_5-25989 (23896) [000] d..2 24576.884882: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116268          <idle>-0     (-----) [000] d..1 24576.884907: cpu_idle: state=2 cpu_id=0
116269          <idle>-0     (-----) [002] .n.1 24576.885089: cpu_idle: state=4294967295 cpu_id=2
116270          <idle>-0     (-----) [002] d..2 24576.885115: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116271  appEventThread-23905 (23896) [002] d..2 24576.885237: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116272          <idle>-0     (-----) [002] d..1 24576.885258: cpu_idle: state=2 cpu_id=2
116273  msm_irqbalance-805   (  805) [001] d.s2 24576.890934: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116274  msm_irqbalance-805   (  805) [001] d.s3 24576.890993: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
116275  msm_irqbalance-805   (  805) [001] d.h2 24576.891194: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
116276  msm_irqbalance-805   (  805) [001] d.h3 24576.891235: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
116277          <idle>-0     (-----) [000] .n.1 24576.891545: cpu_idle: state=4294967295 cpu_id=0
116278          <idle>-0     (-----) [000] d..2 24576.891577: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
116279        DispSync-23904 (23896) [000] d..1 24576.891610: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
116280        DispSync-23904 (23896) [000] d..2 24576.891640: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
116281        DispSync-23904 (23896) [000] d..2 24576.891760: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
116282  kworker/u16:10-23868 (23868) [000] .... 24576.891872: clk_set_rate: l3_cluster0_vote_clk 480000000
116283  kworker/u16:10-23868 (23868) [000] .... 24576.891892: clk_set_rate: l3_clk 480000000
116284          <idle>-0     (-----) [002] .n.1 24576.891959: cpu_idle: state=4294967295 cpu_id=2
116285          <idle>-0     (-----) [002] d..2 24576.891989: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116286  appEventThread-23905 (23896) [002] d..3 24576.892049: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=003
116287  appEventThread-23905 (23896) [002] d..4 24576.892082: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=003
116288  appEventThread-23905 (23896) [002] d..2 24576.892146: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116289          <idle>-0     (-----) [002] d..1 24576.892203: cpu_idle: state=2 cpu_id=2
116290          <idle>-0     (-----) [003] .n.1 24576.892382: cpu_idle: state=4294967295 cpu_id=3
116291          <idle>-0     (-----) [003] d..2 24576.892408: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
116292 s.nexuslauncher-24827 (24827) [003] .... 24576.892634: binder_transaction: transaction=1671599 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
116293 s.nexuslauncher-24827 (24827) [003] d..4 24576.892646: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
116294 s.nexuslauncher-24827 (24827) [003] d..5 24576.892686: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
116295  kworker/u16:10-23868 (23868) [000] d..2 24576.892725: 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
116296          <idle>-0     (-----) [000] d..1 24576.892746: cpu_idle: state=2 cpu_id=0
116297 s.nexuslauncher-24827 (24827) [003] d.s5 24576.892798: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116298 s.nexuslauncher-24827 (24827) [003] d.s6 24576.892819: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
116299 s.nexuslauncher-24827 (24827) [003] d.s6 24576.892834: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116300 s.nexuslauncher-24827 (24827) [003] d..2 24576.892973: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
116301          <idle>-0     (-----) [002] .n.1 24576.892982: cpu_idle: state=4294967295 cpu_id=2
116302          <idle>-0     (-----) [003] d..1 24576.892995: cpu_idle: state=2 cpu_id=3
116303          <idle>-0     (-----) [002] d..2 24576.893009: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
116304  Binder:23896_5-25989 (23896) [002] .... 24576.893020: binder_transaction_received: transaction=1671599
116305  Binder:23896_5-25989 (23896) [002] d..1 24576.893062: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
116306  Binder:23896_5-25989 (23896) [002] d..2 24576.893097: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
116307  Binder:23896_5-25989 (23896) [002] d..2 24576.893157: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116308          <idle>-0     (-----) [002] d..1 24576.893176: cpu_idle: state=2 cpu_id=2
116309          <idle>-0     (-----) [000] .n.1 24576.893229: cpu_idle: state=4294967295 cpu_id=0
116310          <idle>-0     (-----) [000] d..2 24576.893254: 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
116311  kworker/u16:10-23868 (23868) [000] d..2 24576.893323: 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
116312          <idle>-0     (-----) [000] d..1 24576.893340: cpu_idle: state=2 cpu_id=0
116313          <idle>-0     (-----) [003] .n.1 24576.893497: cpu_idle: state=4294967295 cpu_id=3
116314          <idle>-0     (-----) [003] d..2 24576.893517: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116315  appEventThread-23905 (23896) [003] d..2 24576.893593: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
116316          <idle>-0     (-----) [003] d..1 24576.893612: cpu_idle: state=2 cpu_id=3
116317  msm_irqbalance-805   (  805) [001] d..2 24576.896798: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
116318  msm_irqbalance-805   (  805) [001] dn.3 24576.896884: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
116319  msm_irqbalance-805   (  805) [001] d..2 24576.896908: 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
116320         rcuop/0-10    (   10) [001] d..2 24576.896941: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
116321         rcuop/0-10    (   10) [001] d..3 24576.897009: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
116322         rcuop/0-10    (   10) [001] d..2 24576.897036: 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
116323     rcu_preempt-7     (    7) [001] d..2 24576.897084: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=msm_irqbalance next_pid=805 next_prio=120
116324  msm_irqbalance-805   (  805) [001] d.H2 24576.897685: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
116325  msm_irqbalance-805   (  805) [001] d.H2 24576.897709: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
116326  msm_irqbalance-805   (  805) [001] d.H3 24576.897728: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
116327          <idle>-0     (-----) [003] .n.1 24576.898029: cpu_idle: state=4294967295 cpu_id=3
116328          <idle>-0     (-----) [003] d..2 24576.898057: 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
116329         sugov:0-559   (  559) [003] .... 24576.898130: clk_set_rate: pwrcl_clk 748800000
116330         sugov:0-559   (  559) [003] .... 24576.898155: clk_set_rate: cpu3_pwrcl_clk 652800000
116331         sugov:0-559   (  559) [003] .... 24576.898173: clk_set_rate: cpu2_pwrcl_clk 652800000
116332         sugov:0-559   (  559) [003] .... 24576.898183: clk_set_rate: cpu1_pwrcl_clk 652800000
116333         sugov:0-559   (  559) [003] .... 24576.898194: clk_set_rate: cpu0_pwrcl_clk 748800000
116334         sugov:0-559   (  559) [003] .... 24576.898211: cpu_frequency: state=748800 cpu_id=0
116335         sugov:0-559   (  559) [003] .... 24576.898277: cpu_frequency: state=748800 cpu_id=1
116336         sugov:0-559   (  559) [003] .... 24576.898282: cpu_frequency: state=748800 cpu_id=2
116337         sugov:0-559   (  559) [003] .... 24576.898288: cpu_frequency: state=748800 cpu_id=3
116338         sugov:0-559   (  559) [003] d..2 24576.898333: 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
116339          <idle>-0     (-----) [003] d..1 24576.898367: cpu_idle: state=0 cpu_id=3
116340  msm_irqbalance-805   (  805) [001] d..3 24576.898379: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
116341  msm_irqbalance-805   (  805) [001] dn.4 24576.898401: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
116342  msm_irqbalance-805   (  805) [001] d..2 24576.898416: sched_switch: prev_comm=msm_irqbalance prev_pid=805 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
116343     kworker/1:1-13091 (13091) [001] d..2 24576.898478: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=msm_irqbalance next_pid=805 next_prio=120
116344          <idle>-0     (-----) [006] dnh2 24576.898750: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
116345          <idle>-0     (-----) [006] .n.1 24576.898759: cpu_idle: state=4294967295 cpu_id=6
116346          <idle>-0     (-----) [006] d..2 24576.898772: 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
116347         sugov:4-560   (  560) [006] d..2 24576.898796: 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
116348          <idle>-0     (-----) [006] d..1 24576.898807: cpu_idle: state=2 cpu_id=6
116349  msm_irqbalance-805   (  805) [001] d..2 24576.898912: 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
116350          <idle>-0     (-----) [001] d..1 24576.898933: cpu_idle: state=0 cpu_id=1
116351          <idle>-0     (-----) [001] d.s2 24576.900922: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
116352          <idle>-0     (-----) [001] dns3 24576.900946: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
116353          <idle>-0     (-----) [001] dns3 24576.900953: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116354          <idle>-0     (-----) [001] dns4 24576.900995: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
116355          <idle>-0     (-----) [003] .n.1 24576.901005: cpu_idle: state=4294967295 cpu_id=3
116356          <idle>-0     (-----) [003] d..2 24576.901024: 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
116357          <idle>-0     (-----) [001] .n.1 24576.901024: cpu_idle: state=4294967295 cpu_id=1
116358          <idle>-0     (-----) [001] d..2 24576.901038: 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
116359     rcu_preempt-7     (    7) [001] d..2 24576.901120: 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
116360          <idle>-0     (-----) [001] d..1 24576.901137: cpu_idle: state=2 cpu_id=1
116361  kworker/u16:10-23868 (23868) [003] d..2 24576.901331: 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
116362          <idle>-0     (-----) [003] d..1 24576.901350: cpu_idle: state=0 cpu_id=3
116363          <idle>-0     (-----) [003] d.s3 24576.901936: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
116364          <idle>-0     (-----) [003] d.s4 24576.901948: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
116365          <idle>-0     (-----) [003] dns4 24576.901954: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
116366          <idle>-0     (-----) [003] .n.1 24576.901965: cpu_idle: state=4294967295 cpu_id=3
116367          <idle>-0     (-----) [003] d..2 24576.901978: 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
116368  kworker/u16:10-23868 (23868) [003] .... 24576.902050: clk_set_rate: l3_cluster0_vote_clk 403200000
116369  kworker/u16:10-23868 (23868) [003] .... 24576.902060: clk_set_rate: l3_clk 403200000
116370  kworker/u16:10-23868 (23868) [003] d..2 24576.902183: 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
116371          <idle>-0     (-----) [003] d..1 24576.902201: cpu_idle: state=0 cpu_id=3
116372          <idle>-0     (-----) [000] d.h2 24576.907811: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
116373          <idle>-0     (-----) [000] dnh3 24576.907838: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
116374          <idle>-0     (-----) [000] .n.1 24576.907857: cpu_idle: state=4294967295 cpu_id=0
116375          <idle>-0     (-----) [000] d..2 24576.907876: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
116376        DispSync-23904 (23896) [000] d..1 24576.907900: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
116377        DispSync-23904 (23896) [000] d..2 24576.907919: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
116378          <idle>-0     (-----) [003] .n.1 24576.907927: cpu_idle: state=4294967295 cpu_id=3
116379          <idle>-0     (-----) [003] d..2 24576.907942: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116380        DispSync-23904 (23896) [000] d..2 24576.907972: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116381          <idle>-0     (-----) [000] d..2 24576.907978: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116382          <idle>-0     (-----) [000] dn.3 24576.907992: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116383  appEventThread-23905 (23896) [003] d..3 24576.907996: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=003
116384          <idle>-0     (-----) [000] d..2 24576.908004: 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
116385     ksoftirqd/0-3     (    3) [000] d..2 24576.908032: 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
116386  appEventThread-23905 (23896) [003] d..4 24576.908034: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
116387          <idle>-0     (-----) [000] d..1 24576.908054: cpu_idle: state=0 cpu_id=0
116388  appEventThread-23905 (23896) [003] d..2 24576.908085: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
116389          <idle>-0     (-----) [001] dns2 24576.908088: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
116390          <idle>-0     (-----) [003] d..1 24576.908107: cpu_idle: state=0 cpu_id=3
116391          <idle>-0     (-----) [001] dns3 24576.908128: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
116392          <idle>-0     (-----) [003] .n.1 24576.908136: cpu_idle: state=4294967295 cpu_id=3
116393          <idle>-0     (-----) [001] .n.1 24576.908142: cpu_idle: state=4294967295 cpu_id=1
116394          <idle>-0     (-----) [003] d..2 24576.908150: 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
116395          <idle>-0     (-----) [001] d..2 24576.908161: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
116396     rcu_preempt-7     (    7) [003] d..2 24576.908167: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
116397     rcu_preempt-7     (    7) [003] d..3 24576.908215: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
116398     rcu_preempt-7     (    7) [003] d..2 24576.908234: 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
116399         rcuop/0-10    (   10) [003] d..2 24576.908242: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
116400         rcuop/0-10    (   10) [003] d..3 24576.908290: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
116401         rcuop/0-10    (   10) [003] d..2 24576.908296: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
116402         rcuop/0-10    (   10) [003] d..3 24576.908311: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
116403         rcuop/0-10    (   10) [003] d..2 24576.908321: 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
116404         rcuop/1-21    (   21) [003] d..2 24576.908352: 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
116405     rcu_preempt-7     (    7) [003] d..2 24576.908378: 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
116406 s.nexuslauncher-24827 (24827) [001] .... 24576.908387: binder_transaction: transaction=1671600 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
116407          <idle>-0     (-----) [003] d..1 24576.908393: cpu_idle: state=0 cpu_id=3
116408 s.nexuslauncher-24827 (24827) [001] d..4 24576.908400: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
116409 s.nexuslauncher-24827 (24827) [001] d..5 24576.908439: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
116410          <idle>-0     (-----) [000] .n.1 24576.908449: cpu_idle: state=4294967295 cpu_id=0
116411          <idle>-0     (-----) [000] d..2 24576.908467: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
116412  Binder:23896_5-25989 (23896) [000] .... 24576.908478: binder_transaction_received: transaction=1671600
116413  Binder:23896_5-25989 (23896) [000] d..1 24576.908516: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
116414  Binder:23896_5-25989 (23896) [000] d..2 24576.908536: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
116415          <idle>-0     (-----) [003] .n.1 24576.908543: cpu_idle: state=4294967295 cpu_id=3
116416          <idle>-0     (-----) [003] d..2 24576.908556: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116417 s.nexuslauncher-24827 (24827) [001] d..2 24576.908560: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116418          <idle>-0     (-----) [001] d..1 24576.908581: cpu_idle: state=2 cpu_id=1
116419  Binder:23896_5-25989 (23896) [000] d..2 24576.908587: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116420  appEventThread-23905 (23896) [003] d..2 24576.908606: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
116421          <idle>-0     (-----) [000] d..1 24576.908606: cpu_idle: state=0 cpu_id=0
116422          <idle>-0     (-----) [003] d..1 24576.908619: cpu_idle: state=0 cpu_id=3
116423          <idle>-0     (-----) [003] d.s2 24576.914250: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
116424          <idle>-0     (-----) [003] dns3 24576.914270: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
116425          <idle>-0     (-----) [003] dns3 24576.914277: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
116426          <idle>-0     (-----) [003] dns4 24576.914292: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
116427          <idle>-0     (-----) [003] .n.1 24576.914315: cpu_idle: state=4294967295 cpu_id=3
116428          <idle>-0     (-----) [003] d..2 24576.914329: 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
116429     rcu_preempt-7     (    7) [003] d..2 24576.914341: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
116430     rcu_preempt-7     (    7) [003] d..3 24576.914359: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
116431     rcu_preempt-7     (    7) [003] d..2 24576.914371: 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
116432         rcuop/0-10    (   10) [003] d..2 24576.914377: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
116433         rcuop/0-10    (   10) [003] d..3 24576.914391: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
116434         rcuop/0-10    (   10) [003] d..2 24576.914402: 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
116435         rcuop/1-21    (   21) [003] d..2 24576.914436: 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
116436  kworker/u16:10-23868 (23868) [003] .... 24576.914463: clk_set_rate: l3_cluster0_vote_clk 300000000
116437  kworker/u16:10-23868 (23868) [003] .... 24576.914470: clk_set_rate: l3_clk 300000000
116438          <idle>-0     (-----) [000] ...1 24576.914619: cpu_idle: state=4294967295 cpu_id=0
116439          <idle>-0     (-----) [000] d..1 24576.914625: cpu_idle: state=2 cpu_id=0
116440  kworker/u16:10-23868 (23868) [003] d..2 24576.914750: 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
116441          <idle>-0     (-----) [003] d.s4 24576.914806: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
116442          <idle>-0     (-----) [003] d.s5 24576.914826: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
116443          <idle>-0     (-----) [003] dns5 24576.914833: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
116444          <idle>-0     (-----) [003] d..2 24576.914850: 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
116445  kworker/u16:10-23868 (23868) [003] d..2 24576.914886: 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
116446          <idle>-0     (-----) [003] d..1 24576.914907: cpu_idle: state=2 cpu_id=3
116447          <idle>-0     (-----) [000] d.h2 24576.924352: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
116448          <idle>-0     (-----) [000] dnh3 24576.924383: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
116449          <idle>-0     (-----) [000] dnh3 24576.924473: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
116450          <idle>-0     (-----) [000] dnh3 24576.924504: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
116451          <idle>-0     (-----) [000] dnh4 24576.924520: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
116452          <idle>-0     (-----) [000] .n.1 24576.924531: cpu_idle: state=4294967295 cpu_id=0
116453          <idle>-0     (-----) [000] d..2 24576.924549: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
116454        DispSync-23904 (23896) [000] d..1 24576.924576: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
116455        DispSync-23904 (23896) [000] d..2 24576.924601: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
116456        DispSync-23904 (23896) [000] d..2 24576.924653: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116457          <idle>-0     (-----) [000] d..2 24576.924661: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116458          <idle>-0     (-----) [000] dn.3 24576.924674: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116459          <idle>-0     (-----) [000] d..2 24576.924686: 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
116460     ksoftirqd/0-3     (    3) [000] d.s2 24576.924700: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
116461     ksoftirqd/0-3     (    3) [000] d.s3 24576.924746: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116462     ksoftirqd/0-3     (    3) [000] d..2 24576.924766: 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
116463          <idle>-0     (-----) [003] .n.1 24576.924836: cpu_idle: state=4294967295 cpu_id=3
116464          <idle>-0     (-----) [003] d..2 24576.924865: 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
116465  kworker/u16:10-23868 (23868) [000] d..2 24576.924868: 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
116466          <idle>-0     (-----) [000] d..1 24576.924894: cpu_idle: state=0 cpu_id=0
116467         sugov:0-559   (  559) [003] d..2 24576.924914: 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
116468          <idle>-0     (-----) [002] .n.1 24576.924931: cpu_idle: state=4294967295 cpu_id=2
116469          <idle>-0     (-----) [003] d..1 24576.924938: cpu_idle: state=2 cpu_id=3
116470          <idle>-0     (-----) [002] d..2 24576.924958: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116471  appEventThread-23905 (23896) [002] d..3 24576.925014: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
116472  appEventThread-23905 (23896) [002] d..4 24576.925060: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
116473          <idle>-0     (-----) [000] .n.1 24576.925069: cpu_idle: state=4294967295 cpu_id=0
116474          <idle>-0     (-----) [000] d..2 24576.925085: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
116475  appEventThread-23905 (23896) [002] d..2 24576.925115: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116476          <idle>-0     (-----) [002] d..1 24576.925143: cpu_idle: state=0 cpu_id=2
116477 s.nexuslauncher-24827 (24827) [000] .... 24576.925337: binder_transaction: transaction=1671601 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
116478 s.nexuslauncher-24827 (24827) [000] d..4 24576.925352: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
116479 s.nexuslauncher-24827 (24827) [000] d..5 24576.925399: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
116480 s.nexuslauncher-24827 (24827) [000] d..2 24576.925534: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116481          <idle>-0     (-----) [000] d..1 24576.925563: cpu_idle: state=0 cpu_id=0
116482          <idle>-0     (-----) [007] dnh2 24576.925618: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
116483          <idle>-0     (-----) [007] .n.1 24576.925631: cpu_idle: state=4294967295 cpu_id=7
116484          <idle>-0     (-----) [007] d..2 24576.925648: 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
116485         sugov:4-560   (  560) [007] d..2 24576.925675: 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
116486          <idle>-0     (-----) [007] d..1 24576.925692: cpu_idle: state=2 cpu_id=7
116487          <idle>-0     (-----) [001] .n.1 24576.925710: cpu_idle: state=4294967295 cpu_id=1
116488          <idle>-0     (-----) [001] d..2 24576.925739: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
116489  Binder:23896_5-25989 (23896) [001] .... 24576.925754: binder_transaction_received: transaction=1671601
116490  Binder:23896_5-25989 (23896) [001] d..1 24576.925803: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
116491  Binder:23896_5-25989 (23896) [001] d..2 24576.925832: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
116492          <idle>-0     (-----) [002] .n.1 24576.925841: cpu_idle: state=4294967295 cpu_id=2
116493          <idle>-0     (-----) [002] d..2 24576.925853: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116494  Binder:23896_5-25989 (23896) [001] d..2 24576.925897: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116495  appEventThread-23905 (23896) [002] d..2 24576.925902: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116496          <idle>-0     (-----) [001] d..1 24576.925918: cpu_idle: state=0 cpu_id=1
116497          <idle>-0     (-----) [002] d..1 24576.925919: cpu_idle: state=0 cpu_id=2
116498          <idle>-0     (-----) [001] d.s3 24576.930959: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
116499          <idle>-0     (-----) [001] dns4 24576.930977: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
116500          <idle>-0     (-----) [001] .n.1 24576.931003: cpu_idle: state=4294967295 cpu_id=1
116501          <idle>-0     (-----) [001] d..2 24576.931018: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
116502     kworker/1:1-13091 (13091) [001] d..2 24576.931254: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
116503          <idle>-0     (-----) [001] d..1 24576.931273: cpu_idle: state=2 cpu_id=1
116504          <idle>-0     (-----) [000] ...1 24576.931576: cpu_idle: state=4294967295 cpu_id=0
116505          <idle>-0     (-----) [000] d..1 24576.931582: cpu_idle: state=2 cpu_id=0
116506          <idle>-0     (-----) [002] ...1 24576.931930: cpu_idle: state=4294967295 cpu_id=2
116507          <idle>-0     (-----) [002] d..1 24576.931936: cpu_idle: state=2 cpu_id=2
116508          <idle>-0     (-----) [000] d.h3 24576.932316: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
116509          <idle>-0     (-----) [000] dnh4 24576.932355: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
116510          <idle>-0     (-----) [000] .n.1 24576.932388: cpu_idle: state=4294967295 cpu_id=0
116511          <idle>-0     (-----) [000] d..2 24576.932410: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
116512     kworker/0:1-13012 (13012) [000] d..2 24576.932431: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
116513     kworker/0:1-13012 (13012) [000] d..3 24576.932441: sched_blocked_reason: pid=13091 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
116514     kworker/0:1-13012 (13012) [000] d..3 24576.932451: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
116515     kworker/0:1-13012 (13012) [000] d..2 24576.932485: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116516          <idle>-0     (-----) [000] d..1 24576.932504: cpu_idle: state=2 cpu_id=0
116517          <idle>-0     (-----) [001] .n.1 24576.932756: cpu_idle: state=4294967295 cpu_id=1
116518          <idle>-0     (-----) [001] d..2 24576.932782: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
116519     kworker/1:1-13091 (13091) [001] d..2 24576.932957: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116520          <idle>-0     (-----) [001] d..1 24576.932979: cpu_idle: state=0 cpu_id=1
116521          <idle>-0     (-----) [001] d..2 24576.939001: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
116522          <idle>-0     (-----) [001] dn.3 24576.939032: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
116523          <idle>-0     (-----) [001] dnH3 24576.939120: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
116524          <idle>-0     (-----) [001] dns3 24576.939147: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116525          <idle>-0     (-----) [001] dns4 24576.939195: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
116526          <idle>-0     (-----) [001] .n.1 24576.939209: cpu_idle: state=4294967295 cpu_id=1
116527          <idle>-0     (-----) [001] d..2 24576.939229: 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
116528     ksoftirqd/1-18    (   18) [001] d..2 24576.939262: 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
116529  kworker/u16:10-23868 (23868) [001] d..2 24576.939377: 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
116530          <idle>-0     (-----) [001] d..1 24576.939395: cpu_idle: state=2 cpu_id=1
116531          <idle>-0     (-----) [007] dnh2 24576.940229: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
116532          <idle>-0     (-----) [007] .n.1 24576.940239: cpu_idle: state=4294967295 cpu_id=7
116533          <idle>-0     (-----) [007] d..2 24576.940252: 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
116534         sugov:4-560   (  560) [007] d..2 24576.940276: 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
116535          <idle>-0     (-----) [007] d..1 24576.940287: cpu_idle: state=2 cpu_id=7
116536          <idle>-0     (-----) [000] d.h2 24576.940873: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
116537          <idle>-0     (-----) [000] dnh3 24576.940900: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
116538          <idle>-0     (-----) [000] .n.1 24576.940915: cpu_idle: state=4294967295 cpu_id=0
116539          <idle>-0     (-----) [000] d..2 24576.940936: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
116540        DispSync-23904 (23896) [000] d..1 24576.940967: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
116541        DispSync-23904 (23896) [000] d..2 24576.940991: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
116542        DispSync-23904 (23896) [000] d..2 24576.941044: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116543          <idle>-0     (-----) [000] d..2 24576.941052: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116544          <idle>-0     (-----) [000] dn.3 24576.941065: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116545          <idle>-0     (-----) [000] d..2 24576.941077: 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
116546     ksoftirqd/0-3     (    3) [000] d.s2 24576.941088: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
116547     ksoftirqd/0-3     (    3) [000] d.s3 24576.941105: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
116548     ksoftirqd/0-3     (    3) [000] d..2 24576.941129: 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
116549          <idle>-0     (-----) [000] d..1 24576.941150: cpu_idle: state=2 cpu_id=0
116550          <idle>-0     (-----) [002] .n.1 24576.941314: cpu_idle: state=4294967295 cpu_id=2
116551          <idle>-0     (-----) [002] d..2 24576.941343: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116552  appEventThread-23905 (23896) [002] d..3 24576.941397: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
116553          <idle>-0     (-----) [001] .n.1 24576.941421: cpu_idle: state=4294967295 cpu_id=1
116554  appEventThread-23905 (23896) [002] d..4 24576.941427: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
116555          <idle>-0     (-----) [001] d..2 24576.941451: 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
116556  appEventThread-23905 (23896) [002] d..2 24576.941482: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116557          <idle>-0     (-----) [002] d..1 24576.941507: cpu_idle: state=0 cpu_id=2
116558  kworker/u16:10-23868 (23868) [001] d..2 24576.941704: 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
116559          <idle>-0     (-----) [001] d..1 24576.941733: cpu_idle: state=0 cpu_id=1
116560          <idle>-0     (-----) [000] .n.1 24576.941734: cpu_idle: state=4294967295 cpu_id=0
116561          <idle>-0     (-----) [000] d..2 24576.941763: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
116562 s.nexuslauncher-24827 (24827) [000] .... 24576.942009: binder_transaction: transaction=1671602 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
116563 s.nexuslauncher-24827 (24827) [000] d..4 24576.942024: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
116564          <idle>-0     (-----) [003] d.s3 24576.942031: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
116565 s.nexuslauncher-24827 (24827) [000] d..5 24576.942064: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
116566          <idle>-0     (-----) [001] .n.1 24576.942071: cpu_idle: state=4294967295 cpu_id=1
116567          <idle>-0     (-----) [003] d.s4 24576.942084: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
116568          <idle>-0     (-----) [001] d..2 24576.942089: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
116569          <idle>-0     (-----) [003] dns4 24576.942094: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
116570  Binder:23896_5-25989 (23896) [001] .... 24576.942101: binder_transaction_received: transaction=1671602
116571          <idle>-0     (-----) [003] .n.1 24576.942107: cpu_idle: state=4294967295 cpu_id=3
116572          <idle>-0     (-----) [003] d..2 24576.942128: 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
116573  Binder:23896_5-25989 (23896) [001] d..1 24576.942153: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
116574  Binder:23896_5-25989 (23896) [001] d..2 24576.942181: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
116575  kworker/u16:10-23868 (23868) [003] d..2 24576.942183: 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
116576          <idle>-0     (-----) [002] .n.1 24576.942189: cpu_idle: state=4294967295 cpu_id=2
116577 s.nexuslauncher-24827 (24827) [000] d..2 24576.942196: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116578          <idle>-0     (-----) [002] d..2 24576.942201: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116579          <idle>-0     (-----) [003] d..1 24576.942202: cpu_idle: state=2 cpu_id=3
116580          <idle>-0     (-----) [000] d..1 24576.942226: cpu_idle: state=0 cpu_id=0
116581  Binder:23896_5-25989 (23896) [001] d..2 24576.942240: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116582  appEventThread-23905 (23896) [002] d..2 24576.942250: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116583          <idle>-0     (-----) [001] d..1 24576.942261: cpu_idle: state=0 cpu_id=1
116584          <idle>-0     (-----) [002] d..1 24576.942267: cpu_idle: state=0 cpu_id=2
116585          <idle>-0     (-----) [000] d..2 24576.948243: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116586          <idle>-0     (-----) [000] dn.3 24576.948258: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116587          <idle>-0     (-----) [000] .n.1 24576.948265: cpu_idle: state=4294967295 cpu_id=0
116588          <idle>-0     (-----) [001] ...1 24576.948278: cpu_idle: state=4294967295 cpu_id=1
116589          <idle>-0     (-----) [002] ...1 24576.948279: cpu_idle: state=4294967295 cpu_id=2
116590          <idle>-0     (-----) [000] d..2 24576.948282: 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
116591          <idle>-0     (-----) [001] d..1 24576.948283: cpu_idle: state=2 cpu_id=1
116592          <idle>-0     (-----) [002] d..1 24576.948285: cpu_idle: state=2 cpu_id=2
116593     ksoftirqd/0-3     (    3) [000] d.s2 24576.948293: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
116594     ksoftirqd/0-3     (    3) [000] d.s3 24576.948341: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116595     ksoftirqd/0-3     (    3) [000] d..2 24576.948361: 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
116596  kworker/u16:10-23868 (23868) [000] d..2 24576.948473: 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
116597          <idle>-0     (-----) [000] d..1 24576.948492: cpu_idle: state=2 cpu_id=0
116598          <idle>-0     (-----) [000] d.h2 24576.957267: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
116599          <idle>-0     (-----) [000] dnh3 24576.957290: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
116600          <idle>-0     (-----) [000] .n.1 24576.957304: cpu_idle: state=4294967295 cpu_id=0
116601          <idle>-0     (-----) [000] d..2 24576.957324: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
116602        DispSync-23904 (23896) [000] d..1 24576.957353: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
116603        DispSync-23904 (23896) [000] d..2 24576.957373: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
116604        DispSync-23904 (23896) [000] d..2 24576.957426: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116605          <idle>-0     (-----) [000] d..2 24576.957433: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116606          <idle>-0     (-----) [000] dn.3 24576.957446: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116607          <idle>-0     (-----) [000] d..2 24576.957458: 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
116608     ksoftirqd/0-3     (    3) [000] d.s2 24576.957468: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116609     ksoftirqd/0-3     (    3) [000] d.s3 24576.957489: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116610     ksoftirqd/0-3     (    3) [000] d.s2 24576.957498: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
116611     ksoftirqd/0-3     (    3) [000] d.s3 24576.957512: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
116612     ksoftirqd/0-3     (    3) [000] d..2 24576.957526: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
116613     kworker/0:1-13012 (13012) [000] d.H2 24576.957654: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
116614     kworker/0:1-13012 (13012) [000] d.H2 24576.957677: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
116615          <idle>-0     (-----) [002] .n.1 24576.957691: cpu_idle: state=4294967295 cpu_id=2
116616     kworker/0:1-13012 (13012) [000] d.H3 24576.957693: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
116617          <idle>-0     (-----) [002] d..2 24576.957728: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116618  appEventThread-23905 (23896) [002] d..3 24576.957782: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
116619  appEventThread-23905 (23896) [002] d..4 24576.957828: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
116620     kworker/0:1-13012 (13012) [000] d..2 24576.957840: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
116621  appEventThread-23905 (23896) [002] d..2 24576.957895: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116622          <idle>-0     (-----) [002] d..1 24576.957918: cpu_idle: state=2 cpu_id=2
116623  kworker/u16:10-23868 (23868) [000] d..2 24576.957999: 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
116624          <idle>-0     (-----) [003] .n.1 24576.958008: cpu_idle: state=4294967295 cpu_id=3
116625          <idle>-0     (-----) [000] d..1 24576.958028: cpu_idle: state=0 cpu_id=0
116626          <idle>-0     (-----) [003] d..2 24576.958034: 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
116627         sugov:0-559   (  559) [003] .... 24576.958071: clk_set_rate: pwrcl_clk 652800000
116628         sugov:0-559   (  559) [003] .... 24576.958089: clk_set_rate: cpu3_pwrcl_clk 748800000
116629         sugov:0-559   (  559) [003] .... 24576.958102: clk_set_rate: cpu2_pwrcl_clk 748800000
116630         sugov:0-559   (  559) [003] .... 24576.958114: clk_set_rate: cpu1_pwrcl_clk 748800000
116631         sugov:0-559   (  559) [003] .... 24576.958126: clk_set_rate: cpu0_pwrcl_clk 652800000
116632          <idle>-0     (-----) [001] .n.1 24576.958145: cpu_idle: state=4294967295 cpu_id=1
116633          <idle>-0     (-----) [001] d..2 24576.958184: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
116634         sugov:0-559   (  559) [003] .... 24576.958244: cpu_frequency: state=652800 cpu_id=0
116635         sugov:0-559   (  559) [003] .... 24576.958269: cpu_frequency: state=652800 cpu_id=1
116636         sugov:0-559   (  559) [003] .... 24576.958275: cpu_frequency: state=652800 cpu_id=2
116637         sugov:0-559   (  559) [003] .... 24576.958280: cpu_frequency: state=652800 cpu_id=3
116638         sugov:0-559   (  559) [003] d..2 24576.958328: 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
116639          <idle>-0     (-----) [003] d..1 24576.958351: cpu_idle: state=2 cpu_id=3
116640 s.nexuslauncher-24827 (24827) [001] .... 24576.958446: binder_transaction: transaction=1671603 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
116641 s.nexuslauncher-24827 (24827) [001] d..4 24576.958461: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
116642 s.nexuslauncher-24827 (24827) [001] d..5 24576.958508: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
116643          <idle>-0     (-----) [000] .n.1 24576.958517: cpu_idle: state=4294967295 cpu_id=0
116644          <idle>-0     (-----) [000] d..2 24576.958535: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
116645  Binder:23896_5-25989 (23896) [000] .... 24576.958549: binder_transaction_received: transaction=1671603
116646  Binder:23896_5-25989 (23896) [000] d..1 24576.958596: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
116647  Binder:23896_5-25989 (23896) [000] d..2 24576.958620: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
116648 s.nexuslauncher-24827 (24827) [001] d..2 24576.958648: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116649          <idle>-0     (-----) [001] d..1 24576.958678: cpu_idle: state=0 cpu_id=1
116650  Binder:23896_5-25989 (23896) [000] d..2 24576.958687: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116651          <idle>-0     (-----) [000] d..1 24576.958716: cpu_idle: state=0 cpu_id=0
116652          <idle>-0     (-----) [007] dnh2 24576.958728: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
116653          <idle>-0     (-----) [007] .n.1 24576.958738: cpu_idle: state=4294967295 cpu_id=7
116654          <idle>-0     (-----) [007] d..2 24576.958751: 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
116655         sugov:4-560   (  560) [007] d..2 24576.958774: 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
116656          <idle>-0     (-----) [007] d..1 24576.958784: cpu_idle: state=2 cpu_id=7
116657          <idle>-0     (-----) [002] .n.1 24576.958971: cpu_idle: state=4294967295 cpu_id=2
116658          <idle>-0     (-----) [002] d..2 24576.958997: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116659  appEventThread-23905 (23896) [002] d..2 24576.959080: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116660          <idle>-0     (-----) [002] d..1 24576.959105: cpu_idle: state=0 cpu_id=2
116661          <idle>-0     (-----) [001] d..2 24576.964697: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
116662          <idle>-0     (-----) [001] dn.3 24576.964716: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
116663          <idle>-0     (-----) [001] .n.1 24576.964722: cpu_idle: state=4294967295 cpu_id=1
116664          <idle>-0     (-----) [000] ...1 24576.964733: cpu_idle: state=4294967295 cpu_id=0
116665          <idle>-0     (-----) [000] d..1 24576.964740: cpu_idle: state=2 cpu_id=0
116666          <idle>-0     (-----) [001] d..2 24576.964744: 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
116667     ksoftirqd/1-18    (   18) [001] d.s2 24576.964766: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
116668     ksoftirqd/1-18    (   18) [001] d.s3 24576.964786: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
116669     ksoftirqd/1-18    (   18) [001] d..2 24576.964803: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
116670     kworker/1:1-13091 (13091) [001] d..2 24576.964876: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116671          <idle>-0     (-----) [001] d..1 24576.964892: cpu_idle: state=2 cpu_id=1
116672          <idle>-0     (-----) [002] ...1 24576.965120: cpu_idle: state=4294967295 cpu_id=2
116673          <idle>-0     (-----) [002] d..1 24576.965126: cpu_idle: state=2 cpu_id=2
116674          <idle>-0     (-----) [000] d.h2 24576.973731: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
116675          <idle>-0     (-----) [000] dnh3 24576.973758: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
116676          <idle>-0     (-----) [000] .n.1 24576.973775: cpu_idle: state=4294967295 cpu_id=0
116677          <idle>-0     (-----) [000] d..2 24576.973794: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
116678        DispSync-23904 (23896) [000] d..1 24576.973824: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
116679        DispSync-23904 (23896) [000] d..2 24576.973843: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
116680        DispSync-23904 (23896) [000] d..2 24576.973901: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116681          <idle>-0     (-----) [000] d..2 24576.973908: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116682          <idle>-0     (-----) [000] dn.3 24576.973923: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116683          <idle>-0     (-----) [000] d..2 24576.973936: 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
116684     ksoftirqd/0-3     (    3) [000] d.s2 24576.973948: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116685     ksoftirqd/0-3     (    3) [000] d.s3 24576.973972: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116686     ksoftirqd/0-3     (    3) [000] d..2 24576.973992: 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
116687  kworker/u16:10-23868 (23868) [000] d..2 24576.974103: 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
116688          <idle>-0     (-----) [000] d..1 24576.974130: cpu_idle: state=0 cpu_id=0
116689          <idle>-0     (-----) [002] .n.1 24576.974170: cpu_idle: state=4294967295 cpu_id=2
116690          <idle>-0     (-----) [002] d..2 24576.974207: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116691  appEventThread-23905 (23896) [002] d..3 24576.974353: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
116692  appEventThread-23905 (23896) [002] d..4 24576.974401: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
116693          <idle>-0     (-----) [000] .n.1 24576.974410: cpu_idle: state=4294967295 cpu_id=0
116694          <idle>-0     (-----) [000] d..2 24576.974433: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
116695  appEventThread-23905 (23896) [002] d..2 24576.974474: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116696          <idle>-0     (-----) [002] d..1 24576.974504: cpu_idle: state=0 cpu_id=2
116697 s.nexuslauncher-24827 (24827) [000] .... 24576.974705: binder_transaction: transaction=1671604 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
116698 s.nexuslauncher-24827 (24827) [000] d..4 24576.974721: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
116699 s.nexuslauncher-24827 (24827) [000] d..5 24576.974773: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
116700 s.nexuslauncher-24827 (24827) [000] d..2 24576.974917: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116701          <idle>-0     (-----) [000] d..1 24576.974949: cpu_idle: state=0 cpu_id=0
116702          <idle>-0     (-----) [001] .n.1 24576.975093: cpu_idle: state=4294967295 cpu_id=1
116703          <idle>-0     (-----) [001] d..2 24576.975128: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
116704  Binder:23896_5-25989 (23896) [001] .... 24576.975144: binder_transaction_received: transaction=1671604
116705  Binder:23896_5-25989 (23896) [001] d..1 24576.975196: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
116706  Binder:23896_5-25989 (23896) [001] d..2 24576.975226: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
116707          <idle>-0     (-----) [002] .n.1 24576.975240: cpu_idle: state=4294967295 cpu_id=2
116708          <idle>-0     (-----) [002] d..2 24576.975255: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116709  Binder:23896_5-25989 (23896) [001] d..2 24576.975300: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116710  appEventThread-23905 (23896) [002] d..2 24576.975311: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116711          <idle>-0     (-----) [001] d..1 24576.975326: cpu_idle: state=0 cpu_id=1
116712          <idle>-0     (-----) [002] d..1 24576.975329: cpu_idle: state=0 cpu_id=2
116713          <idle>-0     (-----) [000] d..2 24576.980975: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116714          <idle>-0     (-----) [000] dn.3 24576.980993: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116715          <idle>-0     (-----) [000] dnH3 24576.981087: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
116716          <idle>-0     (-----) [000] dnH3 24576.981107: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
116717          <idle>-0     (-----) [000] dnH4 24576.981126: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
116718          <idle>-0     (-----) [000] dns3 24576.981142: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116719          <idle>-0     (-----) [000] dns4 24576.981166: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116720          <idle>-0     (-----) [000] .n.1 24576.981181: cpu_idle: state=4294967295 cpu_id=0
116721          <idle>-0     (-----) [000] d..2 24576.981203: 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
116722     ksoftirqd/0-3     (    3) [000] d..2 24576.981219: 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
116723  kworker/u16:10-23868 (23868) [000] d..2 24576.981340: 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
116724          <idle>-0     (-----) [001] ...1 24576.981341: cpu_idle: state=4294967295 cpu_id=1
116725          <idle>-0     (-----) [002] ...1 24576.981345: cpu_idle: state=4294967295 cpu_id=2
116726          <idle>-0     (-----) [001] d..1 24576.981349: cpu_idle: state=2 cpu_id=1
116727          <idle>-0     (-----) [002] d..1 24576.981353: cpu_idle: state=2 cpu_id=2
116728          <idle>-0     (-----) [000] d..1 24576.981361: cpu_idle: state=2 cpu_id=0
116729          <idle>-0     (-----) [003] .n.1 24576.981454: cpu_idle: state=4294967295 cpu_id=3
116730          <idle>-0     (-----) [003] d..2 24576.981480: 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
116731         sugov:0-559   (  559) [003] d..2 24576.981527: 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
116732          <idle>-0     (-----) [003] d..1 24576.981549: cpu_idle: state=2 cpu_id=3
116733          <idle>-0     (-----) [007] dnh2 24576.982197: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
116734          <idle>-0     (-----) [007] .n.1 24576.982207: cpu_idle: state=4294967295 cpu_id=7
116735          <idle>-0     (-----) [007] d..2 24576.982221: 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
116736         sugov:4-560   (  560) [007] d..2 24576.982244: 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
116737          <idle>-0     (-----) [007] d..1 24576.982254: cpu_idle: state=2 cpu_id=7
116738          <idle>-0     (-----) [000] d.h2 24576.990176: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
116739          <idle>-0     (-----) [000] dnh3 24576.990204: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
116740          <idle>-0     (-----) [000] .n.1 24576.990219: cpu_idle: state=4294967295 cpu_id=0
116741          <idle>-0     (-----) [000] d..2 24576.990238: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
116742        DispSync-23904 (23896) [000] d..1 24576.990269: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
116743        DispSync-23904 (23896) [000] d..2 24576.990291: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
116744        DispSync-23904 (23896) [000] d..2 24576.990348: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116745          <idle>-0     (-----) [000] d..2 24576.990358: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116746          <idle>-0     (-----) [000] dn.3 24576.990370: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116747          <idle>-0     (-----) [000] d..2 24576.990382: 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
116748     ksoftirqd/0-3     (    3) [000] d..2 24576.990411: 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
116749          <idle>-0     (-----) [000] d..1 24576.990431: cpu_idle: state=0 cpu_id=0
116750          <idle>-0     (-----) [002] .n.1 24576.990613: cpu_idle: state=4294967295 cpu_id=2
116751          <idle>-0     (-----) [002] d..2 24576.990650: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116752  appEventThread-23905 (23896) [002] d..3 24576.990714: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
116753  appEventThread-23905 (23896) [002] d..4 24576.990758: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
116754          <idle>-0     (-----) [000] .n.1 24576.990767: cpu_idle: state=4294967295 cpu_id=0
116755          <idle>-0     (-----) [000] d..2 24576.990785: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
116756  appEventThread-23905 (23896) [002] d..2 24576.990826: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116757          <idle>-0     (-----) [002] d..1 24576.990854: cpu_idle: state=0 cpu_id=2
116758 s.nexuslauncher-24827 (24827) [000] d.s2 24576.990934: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116759 s.nexuslauncher-24827 (24827) [000] d.s3 24576.990968: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116760 s.nexuslauncher-24827 (24827) [000] .... 24576.991175: binder_transaction: transaction=1671605 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
116761 s.nexuslauncher-24827 (24827) [000] d..4 24576.991189: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
116762 s.nexuslauncher-24827 (24827) [000] d..5 24576.991223: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
116763          <idle>-0     (-----) [001] .n.1 24576.991530: cpu_idle: state=4294967295 cpu_id=1
116764          <idle>-0     (-----) [001] d..2 24576.991563: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
116765  Binder:23896_5-25989 (23896) [001] .... 24576.991577: binder_transaction_received: transaction=1671605
116766 s.nexuslauncher-24827 (24827) [000] d..2 24576.991587: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
116767  Binder:23896_5-25989 (23896) [001] d..1 24576.991652: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
116768  Binder:23896_5-25989 (23896) [001] d..2 24576.991681: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
116769          <idle>-0     (-----) [002] .n.1 24576.991689: cpu_idle: state=4294967295 cpu_id=2
116770          <idle>-0     (-----) [002] d..2 24576.991707: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116771  appEventThread-23905 (23896) [002] d..2 24576.991780: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116772  Binder:23896_5-25989 (23896) [001] d..2 24576.991783: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116773          <idle>-0     (-----) [001] d..1 24576.991807: cpu_idle: state=2 cpu_id=1
116774          <idle>-0     (-----) [002] d..1 24576.991828: cpu_idle: state=0 cpu_id=2
116775  kworker/u16:10-23868 (23868) [000] d..2 24576.991916: 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
116776          <idle>-0     (-----) [000] d..1 24576.991942: cpu_idle: state=2 cpu_id=0
116777          <idle>-0     (-----) [002] d..2 24576.997849: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
116778          <idle>-0     (-----) [002] dn.3 24576.997882: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
116779          <idle>-0     (-----) [002] dnH3 24576.997974: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
116780          <idle>-0     (-----) [002] dnH3 24576.997996: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
116781          <idle>-0     (-----) [002] dnH4 24576.998013: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
116782          <idle>-0     (-----) [002] .n.1 24576.998030: cpu_idle: state=4294967295 cpu_id=2
116783          <idle>-0     (-----) [002] d..2 24576.998051: 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
116784     ksoftirqd/2-26    (   26) [002] d..2 24576.998109: 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
116785          <idle>-0     (-----) [002] d..1 24576.998126: cpu_idle: state=2 cpu_id=2
116786          <idle>-0     (-----) [003] .n.1 24576.998344: cpu_idle: state=4294967295 cpu_id=3
116787          <idle>-0     (-----) [003] d..2 24576.998370: 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
116788         sugov:0-559   (  559) [003] d..2 24576.998415: 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
116789          <idle>-0     (-----) [003] d..1 24576.998436: cpu_idle: state=2 cpu_id=3
116790          <idle>-0     (-----) [007] dnh2 24576.999080: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
116791          <idle>-0     (-----) [007] .n.1 24576.999089: cpu_idle: state=4294967295 cpu_id=7
116792          <idle>-0     (-----) [007] d..2 24576.999102: 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
116793         sugov:4-560   (  560) [007] d..2 24576.999124: 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
116794          <idle>-0     (-----) [007] d..1 24576.999136: cpu_idle: state=2 cpu_id=7
116795          <idle>-0     (-----) [000] d.h2 24577.006650: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
116796          <idle>-0     (-----) [000] dnh3 24577.006678: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
116797          <idle>-0     (-----) [000] .n.1 24577.006694: cpu_idle: state=4294967295 cpu_id=0
116798          <idle>-0     (-----) [000] d..2 24577.006714: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
116799        DispSync-23904 (23896) [000] d..1 24577.006745: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
116800        DispSync-23904 (23896) [000] d..2 24577.006768: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
116801        DispSync-23904 (23896) [000] d..2 24577.006827: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116802          <idle>-0     (-----) [000] d..2 24577.006834: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116803          <idle>-0     (-----) [000] dn.3 24577.006848: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116804          <idle>-0     (-----) [000] d..2 24577.006861: 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
116805     ksoftirqd/0-3     (    3) [000] d.s2 24577.006874: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116806     ksoftirqd/0-3     (    3) [000] d.s3 24577.006900: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116807     ksoftirqd/0-3     (    3) [000] d..2 24577.006920: 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
116808  kworker/u16:10-23868 (23868) [000] d..2 24577.007031: 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
116809          <idle>-0     (-----) [000] d..1 24577.007055: cpu_idle: state=2 cpu_id=0
116810          <idle>-0     (-----) [002] .n.1 24577.007096: cpu_idle: state=4294967295 cpu_id=2
116811          <idle>-0     (-----) [002] d..2 24577.007127: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116812  appEventThread-23905 (23896) [002] d..3 24577.007186: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
116813  appEventThread-23905 (23896) [002] d..4 24577.007220: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
116814  appEventThread-23905 (23896) [002] d..2 24577.007278: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116815          <idle>-0     (-----) [002] d..1 24577.007303: cpu_idle: state=2 cpu_id=2
116816          <idle>-0     (-----) [000] .n.1 24577.007538: cpu_idle: state=4294967295 cpu_id=0
116817          <idle>-0     (-----) [000] d..2 24577.007572: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
116818 s.nexuslauncher-24827 (24827) [000] .... 24577.007828: binder_transaction: transaction=1671606 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
116819 s.nexuslauncher-24827 (24827) [000] d..4 24577.007849: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
116820 s.nexuslauncher-24827 (24827) [000] d..5 24577.007885: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
116821 s.nexuslauncher-24827 (24827) [000] d..2 24577.008096: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116822          <idle>-0     (-----) [000] d..2 24577.008106: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116823          <idle>-0     (-----) [000] dn.3 24577.008120: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116824          <idle>-0     (-----) [000] d..2 24577.008133: 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
116825     ksoftirqd/0-3     (    3) [000] d.s2 24577.008145: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116826     ksoftirqd/0-3     (    3) [000] d.s3 24577.008166: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116827     ksoftirqd/0-3     (    3) [000] d..2 24577.008183: 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
116828          <idle>-0     (-----) [001] .n.1 24577.008203: cpu_idle: state=4294967295 cpu_id=1
116829          <idle>-0     (-----) [001] d..2 24577.008243: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
116830  Binder:23896_5-25989 (23896) [001] .... 24577.008256: binder_transaction_received: transaction=1671606
116831  kworker/u16:10-23868 (23868) [000] d..2 24577.008270: 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
116832          <idle>-0     (-----) [000] d..1 24577.008300: cpu_idle: state=0 cpu_id=0
116833  Binder:23896_5-25989 (23896) [001] d..1 24577.008306: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
116834  Binder:23896_5-25989 (23896) [001] d..2 24577.008338: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
116835  Binder:23896_5-25989 (23896) [001] d..2 24577.008415: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116836          <idle>-0     (-----) [001] d..1 24577.008443: cpu_idle: state=2 cpu_id=1
116837          <idle>-0     (-----) [002] .n.1 24577.008659: cpu_idle: state=4294967295 cpu_id=2
116838          <idle>-0     (-----) [002] d..2 24577.008686: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116839  appEventThread-23905 (23896) [002] d..2 24577.008767: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116840          <idle>-0     (-----) [002] d..1 24577.008790: cpu_idle: state=0 cpu_id=2
116841          <idle>-0     (-----) [000] d..2 24577.014317: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116842          <idle>-0     (-----) [000] dn.3 24577.014330: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116843          <idle>-0     (-----) [000] .n.1 24577.014337: cpu_idle: state=4294967295 cpu_id=0
116844          <idle>-0     (-----) [000] d..2 24577.014357: 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
116845     ksoftirqd/0-3     (    3) [000] d.s2 24577.014368: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116846     ksoftirqd/0-3     (    3) [000] d.s3 24577.014391: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116847     ksoftirqd/0-3     (    3) [000] d..2 24577.014413: 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
116848  kworker/u16:10-23868 (23868) [000] d..2 24577.014535: 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
116849          <idle>-0     (-----) [000] d..1 24577.014556: cpu_idle: state=2 cpu_id=0
116850          <idle>-0     (-----) [002] d..2 24577.019827: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
116851          <idle>-0     (-----) [002] dn.3 24577.019846: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
116852          <idle>-0     (-----) [002] dnH3 24577.019972: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
116853          <idle>-0     (-----) [002] dnH3 24577.019992: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
116854          <idle>-0     (-----) [002] dnH4 24577.020012: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
116855          <idle>-0     (-----) [002] .n.1 24577.020029: cpu_idle: state=4294967295 cpu_id=2
116856          <idle>-0     (-----) [002] d..2 24577.020051: 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
116857     ksoftirqd/2-26    (   26) [002] d..2 24577.020089: 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
116858          <idle>-0     (-----) [002] d..1 24577.020110: cpu_idle: state=0 cpu_id=2
116859          <idle>-0     (-----) [003] .n.1 24577.020340: cpu_idle: state=4294967295 cpu_id=3
116860          <idle>-0     (-----) [003] d..2 24577.020374: 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
116861         sugov:0-559   (  559) [003] d..2 24577.020433: 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
116862          <idle>-0     (-----) [003] d..1 24577.020459: cpu_idle: state=2 cpu_id=3
116863          <idle>-0     (-----) [007] dnh2 24577.021047: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
116864          <idle>-0     (-----) [007] .n.1 24577.021058: cpu_idle: state=4294967295 cpu_id=7
116865          <idle>-0     (-----) [007] d..2 24577.021072: 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
116866         sugov:4-560   (  560) [007] d..2 24577.021100: 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
116867          <idle>-0     (-----) [007] d..2 24577.021106: sched_waking: comm=ksoftirqd/7 pid=66 prio=120 target_cpu=007
116868          <idle>-0     (-----) [007] dn.3 24577.021125: sched_wakeup: comm=ksoftirqd/7 pid=66 prio=120 target_cpu=007
116869          <idle>-0     (-----) [007] d..2 24577.021137: 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
116870     ksoftirqd/7-66    (   66) [007] d..2 24577.021172: 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
116871          <idle>-0     (-----) [007] d..1 24577.021183: cpu_idle: state=2 cpu_id=7
116872          <idle>-0     (-----) [000] d.h2 24577.023047: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
116873          <idle>-0     (-----) [000] dnh3 24577.023078: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
116874          <idle>-0     (-----) [000] .n.1 24577.023093: cpu_idle: state=4294967295 cpu_id=0
116875          <idle>-0     (-----) [000] d..2 24577.023114: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
116876        DispSync-23904 (23896) [000] d..1 24577.023146: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
116877        DispSync-23904 (23896) [000] d..2 24577.023173: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
116878          <idle>-0     (-----) [002] .n.1 24577.023183: cpu_idle: state=4294967295 cpu_id=2
116879          <idle>-0     (-----) [002] d..2 24577.023200: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116880        DispSync-23904 (23896) [000] d..2 24577.023225: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116881  appEventThread-23905 (23896) [002] d..3 24577.023252: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
116882          <idle>-0     (-----) [000] d..1 24577.023252: cpu_idle: state=0 cpu_id=0
116883  appEventThread-23905 (23896) [002] d..4 24577.023284: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
116884          <idle>-0     (-----) [000] .n.1 24577.023294: cpu_idle: state=4294967295 cpu_id=0
116885          <idle>-0     (-----) [000] d..2 24577.023316: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
116886  appEventThread-23905 (23896) [002] d..2 24577.023338: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116887          <idle>-0     (-----) [002] d..1 24577.023362: cpu_idle: state=0 cpu_id=2
116888 s.nexuslauncher-24827 (24827) [000] .... 24577.023580: binder_transaction: transaction=1671607 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
116889 s.nexuslauncher-24827 (24827) [000] d..4 24577.023595: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
116890 s.nexuslauncher-24827 (24827) [000] d..5 24577.023637: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
116891 s.nexuslauncher-24827 (24827) [000] d..2 24577.023775: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116892          <idle>-0     (-----) [000] d..1 24577.023805: cpu_idle: state=0 cpu_id=0
116893          <idle>-0     (-----) [001] .n.1 24577.023955: cpu_idle: state=4294967295 cpu_id=1
116894          <idle>-0     (-----) [001] d..2 24577.023989: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
116895  Binder:23896_5-25989 (23896) [001] .... 24577.024003: binder_transaction_received: transaction=1671607
116896  Binder:23896_5-25989 (23896) [001] d..1 24577.024055: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
116897  Binder:23896_5-25989 (23896) [001] d..2 24577.024086: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
116898          <idle>-0     (-----) [002] .n.1 24577.024094: cpu_idle: state=4294967295 cpu_id=2
116899          <idle>-0     (-----) [002] d..2 24577.024110: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116900  Binder:23896_5-25989 (23896) [001] d..2 24577.024154: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116901  appEventThread-23905 (23896) [002] d..2 24577.024161: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116902          <idle>-0     (-----) [001] d..1 24577.024176: cpu_idle: state=2 cpu_id=1
116903          <idle>-0     (-----) [002] d..1 24577.024179: cpu_idle: state=0 cpu_id=2
116904          <idle>-0     (-----) [000] d..2 24577.029821: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116905          <idle>-0     (-----) [000] dn.3 24577.029838: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116906          <idle>-0     (-----) [000] .n.1 24577.029845: cpu_idle: state=4294967295 cpu_id=0
116907          <idle>-0     (-----) [000] d..2 24577.029864: 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
116908     ksoftirqd/0-3     (    3) [000] d.s2 24577.029876: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116909     ksoftirqd/0-3     (    3) [000] d.s3 24577.029905: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116910     ksoftirqd/0-3     (    3) [000] d..2 24577.029924: 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
116911  kworker/u16:10-23868 (23868) [000] d..2 24577.030045: 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
116912          <idle>-0     (-----) [000] d..1 24577.030065: cpu_idle: state=2 cpu_id=0
116913          <idle>-0     (-----) [002] ...1 24577.030192: cpu_idle: state=4294967295 cpu_id=2
116914          <idle>-0     (-----) [002] d..1 24577.030200: cpu_idle: state=2 cpu_id=2
116915          <idle>-0     (-----) [000] d.h2 24577.039575: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
116916          <idle>-0     (-----) [000] dnh3 24577.039607: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
116917          <idle>-0     (-----) [000] dnh3 24577.039703: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
116918          <idle>-0     (-----) [000] dnh3 24577.039721: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
116919          <idle>-0     (-----) [000] dnh4 24577.039739: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
116920          <idle>-0     (-----) [000] .n.1 24577.039749: cpu_idle: state=4294967295 cpu_id=0
116921          <idle>-0     (-----) [000] d..2 24577.039769: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
116922        DispSync-23904 (23896) [000] d..1 24577.039802: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
116923        DispSync-23904 (23896) [000] d..2 24577.039821: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
116924        DispSync-23904 (23896) [000] d..2 24577.039880: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116925          <idle>-0     (-----) [000] d..2 24577.039888: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116926          <idle>-0     (-----) [000] dn.3 24577.039902: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116927          <idle>-0     (-----) [000] d..2 24577.039914: 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
116928     ksoftirqd/0-3     (    3) [000] d.s2 24577.039925: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116929     ksoftirqd/0-3     (    3) [000] d.s3 24577.039950: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116930     ksoftirqd/0-3     (    3) [000] d..2 24577.039970: 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
116931          <idle>-0     (-----) [003] .n.1 24577.040062: cpu_idle: state=4294967295 cpu_id=3
116932  kworker/u16:10-23868 (23868) [000] d..2 24577.040079: 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
116933          <idle>-0     (-----) [003] d..2 24577.040092: 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
116934          <idle>-0     (-----) [000] d..1 24577.040108: cpu_idle: state=0 cpu_id=0
116935         sugov:0-559   (  559) [003] d..2 24577.040147: 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
116936          <idle>-0     (-----) [002] .n.1 24577.040150: cpu_idle: state=4294967295 cpu_id=2
116937          <idle>-0     (-----) [003] d..1 24577.040173: cpu_idle: state=2 cpu_id=3
116938          <idle>-0     (-----) [002] d..2 24577.040177: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116939  appEventThread-23905 (23896) [002] d..3 24577.040235: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
116940  appEventThread-23905 (23896) [002] d..4 24577.040274: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
116941          <idle>-0     (-----) [000] .n.1 24577.040283: cpu_idle: state=4294967295 cpu_id=0
116942          <idle>-0     (-----) [000] d..2 24577.040302: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
116943  appEventThread-23905 (23896) [002] d..2 24577.040332: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116944          <idle>-0     (-----) [002] d..1 24577.040360: cpu_idle: state=0 cpu_id=2
116945 s.nexuslauncher-24827 (24827) [000] .... 24577.040565: binder_transaction: transaction=1671608 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
116946 s.nexuslauncher-24827 (24827) [000] d..4 24577.040579: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
116947 s.nexuslauncher-24827 (24827) [000] d..5 24577.040617: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
116948 s.nexuslauncher-24827 (24827) [000] d..2 24577.040756: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116949          <idle>-0     (-----) [000] d..1 24577.040786: cpu_idle: state=0 cpu_id=0
116950          <idle>-0     (-----) [007] dnh2 24577.040792: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
116951          <idle>-0     (-----) [007] .n.1 24577.040801: cpu_idle: state=4294967295 cpu_id=7
116952          <idle>-0     (-----) [007] d..2 24577.040814: 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
116953         sugov:4-560   (  560) [007] d..2 24577.040836: 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
116954          <idle>-0     (-----) [007] d..1 24577.040847: cpu_idle: state=2 cpu_id=7
116955          <idle>-0     (-----) [001] .n.1 24577.040940: cpu_idle: state=4294967295 cpu_id=1
116956          <idle>-0     (-----) [001] d..2 24577.040978: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
116957  Binder:23896_5-25989 (23896) [001] .... 24577.040991: binder_transaction_received: transaction=1671608
116958  Binder:23896_5-25989 (23896) [001] d..1 24577.041045: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
116959  Binder:23896_5-25989 (23896) [001] d..2 24577.041076: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
116960          <idle>-0     (-----) [002] .n.1 24577.041084: cpu_idle: state=4294967295 cpu_id=2
116961          <idle>-0     (-----) [002] d..2 24577.041100: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116962  Binder:23896_5-25989 (23896) [001] d..2 24577.041154: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116963  appEventThread-23905 (23896) [002] d..2 24577.041156: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116964          <idle>-0     (-----) [002] d..2 24577.041162: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
116965          <idle>-0     (-----) [002] dn.3 24577.041177: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
116966          <idle>-0     (-----) [001] d..1 24577.041178: cpu_idle: state=2 cpu_id=1
116967          <idle>-0     (-----) [002] d..2 24577.041192: 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
116968     ksoftirqd/2-26    (   26) [002] d.s2 24577.041206: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116969     ksoftirqd/2-26    (   26) [002] d.s3 24577.041256: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
116970     ksoftirqd/2-26    (   26) [002] d..2 24577.041274: 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
116971  kworker/u16:10-23868 (23868) [002] d..2 24577.041366: 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
116972          <idle>-0     (-----) [002] d..1 24577.041385: cpu_idle: state=2 cpu_id=2
116973          <idle>-0     (-----) [000] d..2 24577.046801: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116974          <idle>-0     (-----) [000] dn.3 24577.046815: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116975          <idle>-0     (-----) [000] .n.1 24577.046820: cpu_idle: state=4294967295 cpu_id=0
116976          <idle>-0     (-----) [000] d..2 24577.046839: 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
116977     ksoftirqd/0-3     (    3) [000] d..2 24577.046880: 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
116978          <idle>-0     (-----) [000] d..1 24577.046895: cpu_idle: state=2 cpu_id=0
116979          <idle>-0     (-----) [000] d.h2 24577.056023: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
116980          <idle>-0     (-----) [000] dnh3 24577.056049: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
116981          <idle>-0     (-----) [000] .n.1 24577.056066: cpu_idle: state=4294967295 cpu_id=0
116982          <idle>-0     (-----) [000] d..2 24577.056086: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
116983        DispSync-23904 (23896) [000] d..1 24577.056119: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
116984        DispSync-23904 (23896) [000] d..2 24577.056141: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
116985        DispSync-23904 (23896) [000] d..2 24577.056199: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116986          <idle>-0     (-----) [000] d..2 24577.056207: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116987          <idle>-0     (-----) [000] dn.3 24577.056220: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116988          <idle>-0     (-----) [000] d..2 24577.056232: 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
116989     ksoftirqd/0-3     (    3) [000] d.s2 24577.056244: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
116990     ksoftirqd/0-3     (    3) [000] d.s3 24577.056294: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
116991     ksoftirqd/0-3     (    3) [000] d..2 24577.056320: 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
116992  kworker/u16:10-23868 (23868) [000] d..2 24577.056427: 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
116993          <idle>-0     (-----) [000] d..1 24577.056453: cpu_idle: state=2 cpu_id=0
116994          <idle>-0     (-----) [002] .n.1 24577.056468: cpu_idle: state=4294967295 cpu_id=2
116995          <idle>-0     (-----) [002] d..2 24577.056499: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
116996  appEventThread-23905 (23896) [002] d..3 24577.056558: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
116997  appEventThread-23905 (23896) [002] d..4 24577.056592: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
116998  appEventThread-23905 (23896) [002] d..2 24577.056649: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116999          <idle>-0     (-----) [002] d..1 24577.056674: cpu_idle: state=2 cpu_id=2
117000          <idle>-0     (-----) [000] .n.1 24577.056943: cpu_idle: state=4294967295 cpu_id=0
117001          <idle>-0     (-----) [000] d..2 24577.056972: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
117002 s.nexuslauncher-24827 (24827) [000] .... 24577.057231: binder_transaction: transaction=1671609 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
117003 s.nexuslauncher-24827 (24827) [000] d..4 24577.057246: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117004 s.nexuslauncher-24827 (24827) [000] d..5 24577.057282: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117005 s.nexuslauncher-24827 (24827) [000] d..2 24577.057421: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117006          <idle>-0     (-----) [000] d..1 24577.057451: cpu_idle: state=0 cpu_id=0
117007          <idle>-0     (-----) [001] .n.1 24577.057606: cpu_idle: state=4294967295 cpu_id=1
117008          <idle>-0     (-----) [001] d..2 24577.057663: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
117009  Binder:23896_5-25989 (23896) [001] d.h4 24577.057753: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
117010  Binder:23896_5-25989 (23896) [001] d.h4 24577.057775: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
117011  Binder:23896_5-25989 (23896) [001] d.h5 24577.057796: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
117012  Binder:23896_5-25989 (23896) [001] .... 24577.057811: binder_transaction_received: transaction=1671609
117013  Binder:23896_5-25989 (23896) [001] d..1 24577.057860: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117014  Binder:23896_5-25989 (23896) [001] d..2 24577.057879: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117015  Binder:23896_5-25989 (23896) [001] d..2 24577.057956: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
117016          <idle>-0     (-----) [001] d..2 24577.057963: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
117017          <idle>-0     (-----) [001] dn.3 24577.057977: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
117018          <idle>-0     (-----) [001] d..2 24577.057990: 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
117019     ksoftirqd/1-18    (   18) [001] d.s2 24577.058003: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117020     ksoftirqd/1-18    (   18) [001] d.s3 24577.058053: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
117021     ksoftirqd/1-18    (   18) [001] d.s2 24577.058062: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
117022     ksoftirqd/1-18    (   18) [001] d.s3 24577.058076: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
117023     ksoftirqd/1-18    (   18) [001] d..2 24577.058091: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
117024          <idle>-0     (-----) [003] .n.1 24577.058114: cpu_idle: state=4294967295 cpu_id=3
117025          <idle>-0     (-----) [003] d..2 24577.058141: 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
117026     kworker/1:1-13091 (13091) [001] d..2 24577.058145: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
117027         sugov:0-559   (  559) [003] d..2 24577.058188: 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
117028          <idle>-0     (-----) [002] .n.1 24577.058204: cpu_idle: state=4294967295 cpu_id=2
117029          <idle>-0     (-----) [003] d..1 24577.058212: cpu_idle: state=2 cpu_id=3
117030          <idle>-0     (-----) [002] d..2 24577.058231: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117031  kworker/u16:10-23868 (23868) [001] d..2 24577.058232: 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
117032          <idle>-0     (-----) [001] d..1 24577.058255: cpu_idle: state=2 cpu_id=1
117033  appEventThread-23905 (23896) [002] d..2 24577.058313: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117034          <idle>-0     (-----) [002] d..1 24577.058339: cpu_idle: state=0 cpu_id=2
117035          <idle>-0     (-----) [007] dnh2 24577.058836: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
117036          <idle>-0     (-----) [007] .n.1 24577.058845: cpu_idle: state=4294967295 cpu_id=7
117037          <idle>-0     (-----) [007] d..2 24577.058860: 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
117038         sugov:4-560   (  560) [007] d..2 24577.058881: 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
117039          <idle>-0     (-----) [007] d..1 24577.058892: cpu_idle: state=2 cpu_id=7
117040          <idle>-0     (-----) [000] d..2 24577.063468: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117041          <idle>-0     (-----) [000] dn.3 24577.063487: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117042          <idle>-0     (-----) [000] .n.1 24577.063493: cpu_idle: state=4294967295 cpu_id=0
117043          <idle>-0     (-----) [000] d..2 24577.063514: 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
117044     ksoftirqd/0-3     (    3) [000] d..2 24577.063561: 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
117045          <idle>-0     (-----) [000] d..1 24577.063576: cpu_idle: state=2 cpu_id=0
117046          <idle>-0     (-----) [002] d..2 24577.064355: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
117047          <idle>-0     (-----) [002] dn.3 24577.064374: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
117048          <idle>-0     (-----) [002] .n.1 24577.064381: cpu_idle: state=4294967295 cpu_id=2
117049          <idle>-0     (-----) [002] d..2 24577.064400: 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
117050     ksoftirqd/2-26    (   26) [002] d.s2 24577.064412: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
117051     ksoftirqd/2-26    (   26) [002] d.s3 24577.064468: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
117052     ksoftirqd/2-26    (   26) [002] d..2 24577.064492: 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
117053  kworker/u16:10-23868 (23868) [002] d..2 24577.064618: 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
117054          <idle>-0     (-----) [002] d..1 24577.064639: cpu_idle: state=2 cpu_id=2
117055          <idle>-0     (-----) [000] d.h2 24577.072483: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
117056          <idle>-0     (-----) [000] dnh3 24577.072511: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
117057          <idle>-0     (-----) [000] .n.1 24577.072526: cpu_idle: state=4294967295 cpu_id=0
117058          <idle>-0     (-----) [000] d..2 24577.072547: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
117059        DispSync-23904 (23896) [000] d..1 24577.072578: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117060        DispSync-23904 (23896) [000] d..2 24577.072600: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117061        DispSync-23904 (23896) [000] d..2 24577.072659: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117062          <idle>-0     (-----) [000] d..2 24577.072666: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117063          <idle>-0     (-----) [000] dn.3 24577.072680: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117064          <idle>-0     (-----) [000] d..2 24577.072692: 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
117065     ksoftirqd/0-3     (    3) [000] d..2 24577.072721: 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
117066          <idle>-0     (-----) [000] d..1 24577.072745: cpu_idle: state=0 cpu_id=0
117067          <idle>-0     (-----) [002] .n.1 24577.072934: cpu_idle: state=4294967295 cpu_id=2
117068          <idle>-0     (-----) [002] d..2 24577.072976: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117069  appEventThread-23905 (23896) [002] d..3 24577.073039: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117070  appEventThread-23905 (23896) [002] d..4 24577.073082: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117071          <idle>-0     (-----) [000] .n.1 24577.073091: cpu_idle: state=4294967295 cpu_id=0
117072          <idle>-0     (-----) [000] d..2 24577.073109: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
117073  appEventThread-23905 (23896) [002] d..2 24577.073151: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117074          <idle>-0     (-----) [002] d..1 24577.073180: cpu_idle: state=0 cpu_id=2
117075 s.nexuslauncher-24827 (24827) [000] .... 24577.073368: binder_transaction: transaction=1671610 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
117076 s.nexuslauncher-24827 (24827) [000] d..4 24577.073383: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117077 s.nexuslauncher-24827 (24827) [000] d..5 24577.073420: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117078 s.nexuslauncher-24827 (24827) [000] d..2 24577.073554: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117079          <idle>-0     (-----) [000] d..1 24577.073586: cpu_idle: state=0 cpu_id=0
117080          <idle>-0     (-----) [001] .n.1 24577.073742: cpu_idle: state=4294967295 cpu_id=1
117081          <idle>-0     (-----) [001] d..2 24577.073774: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
117082  Binder:23896_5-25989 (23896) [001] .... 24577.073792: binder_transaction_received: transaction=1671610
117083  Binder:23896_5-25989 (23896) [001] d..1 24577.073843: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117084  Binder:23896_5-25989 (23896) [001] d..2 24577.073875: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117085          <idle>-0     (-----) [002] .n.1 24577.073883: cpu_idle: state=4294967295 cpu_id=2
117086          <idle>-0     (-----) [002] d..2 24577.073898: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117087  Binder:23896_5-25989 (23896) [001] d..2 24577.073943: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
117088  appEventThread-23905 (23896) [002] d..2 24577.073953: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117089          <idle>-0     (-----) [001] d..1 24577.073966: cpu_idle: state=2 cpu_id=1
117090          <idle>-0     (-----) [002] d..1 24577.073971: cpu_idle: state=0 cpu_id=2
117091          <idle>-0     (-----) [000] d..2 24577.079607: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117092          <idle>-0     (-----) [000] dn.3 24577.079624: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117093          <idle>-0     (-----) [000] dnH3 24577.079716: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
117094          <idle>-0     (-----) [000] dnH3 24577.079736: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
117095          <idle>-0     (-----) [000] dnH4 24577.079755: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
117096          <idle>-0     (-----) [000] dns3 24577.079768: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
117097          <idle>-0     (-----) [000] dns4 24577.079818: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117098          <idle>-0     (-----) [000] .n.1 24577.079835: cpu_idle: state=4294967295 cpu_id=0
117099          <idle>-0     (-----) [000] d..2 24577.079857: 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
117100     ksoftirqd/0-3     (    3) [000] d..2 24577.079871: 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
117101          <idle>-0     (-----) [002] ...1 24577.079986: cpu_idle: state=4294967295 cpu_id=2
117102  kworker/u16:10-23868 (23868) [000] d..2 24577.079990: 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
117103          <idle>-0     (-----) [002] d..1 24577.079994: cpu_idle: state=2 cpu_id=2
117104          <idle>-0     (-----) [000] d..1 24577.080010: cpu_idle: state=2 cpu_id=0
117105          <idle>-0     (-----) [003] .n.1 24577.080083: cpu_idle: state=4294967295 cpu_id=3
117106          <idle>-0     (-----) [003] d..2 24577.080108: 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
117107         sugov:0-559   (  559) [003] d..2 24577.080152: 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
117108          <idle>-0     (-----) [003] d..1 24577.080173: cpu_idle: state=2 cpu_id=3
117109          <idle>-0     (-----) [007] dnh2 24577.080820: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
117110          <idle>-0     (-----) [007] .n.1 24577.080829: cpu_idle: state=4294967295 cpu_id=7
117111          <idle>-0     (-----) [007] d..2 24577.080840: 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
117112         sugov:4-560   (  560) [007] d..2 24577.080862: 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
117113          <idle>-0     (-----) [007] d..1 24577.080873: cpu_idle: state=2 cpu_id=7
117114          <idle>-0     (-----) [000] d.h2 24577.088942: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
117115          <idle>-0     (-----) [000] dnh3 24577.088970: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
117116          <idle>-0     (-----) [000] .n.1 24577.088988: cpu_idle: state=4294967295 cpu_id=0
117117          <idle>-0     (-----) [000] d..2 24577.089008: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
117118        DispSync-23904 (23896) [000] d..1 24577.089040: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117119        DispSync-23904 (23896) [000] d..2 24577.089065: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117120        DispSync-23904 (23896) [000] d..2 24577.089125: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117121          <idle>-0     (-----) [000] d..2 24577.089133: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117122          <idle>-0     (-----) [000] dn.3 24577.089146: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117123          <idle>-0     (-----) [000] d..2 24577.089158: 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
117124     ksoftirqd/0-3     (    3) [000] d.s2 24577.089170: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117125     ksoftirqd/0-3     (    3) [000] d.s3 24577.089192: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117126     ksoftirqd/0-3     (    3) [000] d.s2 24577.089202: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
117127     ksoftirqd/0-3     (    3) [000] d.s3 24577.089216: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
117128     ksoftirqd/0-3     (    3) [000] d..2 24577.089232: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
117129     kworker/0:1-13012 (13012) [000] d..2 24577.089271: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
117130  kworker/u16:10-23868 (23868) [000] d..2 24577.089376: 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
117131          <idle>-0     (-----) [002] .n.1 24577.089386: cpu_idle: state=4294967295 cpu_id=2
117132          <idle>-0     (-----) [000] d..1 24577.089405: cpu_idle: state=0 cpu_id=0
117133          <idle>-0     (-----) [002] d..2 24577.089421: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117134  appEventThread-23905 (23896) [002] d..3 24577.089480: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117135  appEventThread-23905 (23896) [002] d..4 24577.089524: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117136          <idle>-0     (-----) [000] .n.1 24577.089535: cpu_idle: state=4294967295 cpu_id=0
117137          <idle>-0     (-----) [000] d..2 24577.089558: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
117138  appEventThread-23905 (23896) [002] d..2 24577.089591: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117139          <idle>-0     (-----) [002] d..1 24577.089620: cpu_idle: state=0 cpu_id=2
117140 s.nexuslauncher-24827 (24827) [000] .... 24577.089823: binder_transaction: transaction=1671611 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
117141 s.nexuslauncher-24827 (24827) [000] d..4 24577.089838: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117142 s.nexuslauncher-24827 (24827) [000] d..5 24577.089878: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117143 s.nexuslauncher-24827 (24827) [000] d..2 24577.090020: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117144          <idle>-0     (-----) [000] d..1 24577.090050: cpu_idle: state=0 cpu_id=0
117145          <idle>-0     (-----) [001] .n.1 24577.090201: cpu_idle: state=4294967295 cpu_id=1
117146          <idle>-0     (-----) [001] d..2 24577.090234: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
117147  Binder:23896_5-25989 (23896) [001] .... 24577.090247: binder_transaction_received: transaction=1671611
117148  Binder:23896_5-25989 (23896) [001] d..1 24577.090300: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117149  Binder:23896_5-25989 (23896) [001] d..2 24577.090333: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117150          <idle>-0     (-----) [002] .n.1 24577.090343: cpu_idle: state=4294967295 cpu_id=2
117151          <idle>-0     (-----) [002] d..2 24577.090359: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117152  Binder:23896_5-25989 (23896) [001] d..2 24577.090405: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
117153  appEventThread-23905 (23896) [002] d..2 24577.090412: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117154          <idle>-0     (-----) [002] d..1 24577.090429: cpu_idle: state=0 cpu_id=2
117155          <idle>-0     (-----) [001] d..1 24577.090429: cpu_idle: state=2 cpu_id=1
117156          <idle>-0     (-----) [000] d..2 24577.096067: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117157          <idle>-0     (-----) [000] dn.3 24577.096081: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117158          <idle>-0     (-----) [000] .n.1 24577.096086: cpu_idle: state=4294967295 cpu_id=0
117159          <idle>-0     (-----) [000] d..2 24577.096107: 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
117160     ksoftirqd/0-3     (    3) [000] d.s2 24577.096119: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117161     ksoftirqd/0-3     (    3) [000] d.s3 24577.096144: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117162     ksoftirqd/0-3     (    3) [000] d..2 24577.096164: 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
117163  kworker/u16:10-23868 (23868) [000] d..2 24577.096268: 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
117164          <idle>-0     (-----) [000] d..1 24577.096286: cpu_idle: state=2 cpu_id=0
117165          <idle>-0     (-----) [002] ...1 24577.096444: cpu_idle: state=4294967295 cpu_id=2
117166          <idle>-0     (-----) [002] d..1 24577.096450: cpu_idle: state=2 cpu_id=2
117167          <idle>-0     (-----) [000] d.h2 24577.105388: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
117168          <idle>-0     (-----) [000] dnh3 24577.105421: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
117169          <idle>-0     (-----) [000] dnh3 24577.105509: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
117170          <idle>-0     (-----) [000] dnh3 24577.105526: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
117171          <idle>-0     (-----) [000] dnh4 24577.105541: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
117172          <idle>-0     (-----) [000] .n.1 24577.105552: cpu_idle: state=4294967295 cpu_id=0
117173          <idle>-0     (-----) [000] d..2 24577.105572: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
117174        DispSync-23904 (23896) [000] d..1 24577.105609: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117175        DispSync-23904 (23896) [000] d..2 24577.105628: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117176        DispSync-23904 (23896) [000] d..2 24577.105685: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117177          <idle>-0     (-----) [000] d..2 24577.105693: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117178          <idle>-0     (-----) [000] dn.3 24577.105708: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117179          <idle>-0     (-----) [000] d..2 24577.105720: 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
117180     ksoftirqd/0-3     (    3) [000] d.s2 24577.105732: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117181     ksoftirqd/0-3     (    3) [000] d.s3 24577.105755: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117182     ksoftirqd/0-3     (    3) [000] d..2 24577.105775: 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
117183          <idle>-0     (-----) [003] .n.1 24577.105858: cpu_idle: state=4294967295 cpu_id=3
117184  kworker/u16:10-23868 (23868) [000] d..2 24577.105883: 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
117185          <idle>-0     (-----) [003] d..2 24577.105889: 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
117186          <idle>-0     (-----) [000] d..1 24577.105911: cpu_idle: state=2 cpu_id=0
117187         sugov:0-559   (  559) [003] d..2 24577.105942: 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
117188          <idle>-0     (-----) [002] .n.1 24577.105949: cpu_idle: state=4294967295 cpu_id=2
117189          <idle>-0     (-----) [003] d..1 24577.105966: cpu_idle: state=2 cpu_id=3
117190          <idle>-0     (-----) [002] d..2 24577.105976: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117191  appEventThread-23905 (23896) [002] d..3 24577.106034: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117192  appEventThread-23905 (23896) [002] d..4 24577.106069: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117193  appEventThread-23905 (23896) [002] d..2 24577.106127: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117194          <idle>-0     (-----) [002] d..1 24577.106151: cpu_idle: state=2 cpu_id=2
117195          <idle>-0     (-----) [000] .n.1 24577.106389: cpu_idle: state=4294967295 cpu_id=0
117196          <idle>-0     (-----) [000] d..2 24577.106417: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
117197          <idle>-0     (-----) [007] dnh2 24577.106639: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
117198          <idle>-0     (-----) [007] .n.1 24577.106649: cpu_idle: state=4294967295 cpu_id=7
117199          <idle>-0     (-----) [007] d..2 24577.106662: 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
117200 s.nexuslauncher-24827 (24827) [000] .... 24577.106673: binder_transaction: transaction=1671612 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
117201         sugov:4-560   (  560) [007] d..2 24577.106684: 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
117202 s.nexuslauncher-24827 (24827) [000] d..4 24577.106691: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117203          <idle>-0     (-----) [007] d..1 24577.106695: cpu_idle: state=2 cpu_id=7
117204 s.nexuslauncher-24827 (24827) [000] d..5 24577.106733: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117205 s.nexuslauncher-24827 (24827) [000] d..2 24577.106874: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117206          <idle>-0     (-----) [000] d..1 24577.106907: cpu_idle: state=0 cpu_id=0
117207          <idle>-0     (-----) [001] .n.1 24577.107177: cpu_idle: state=4294967295 cpu_id=1
117208          <idle>-0     (-----) [001] d..2 24577.107211: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
117209  Binder:23896_5-25989 (23896) [001] .... 24577.107223: binder_transaction_received: transaction=1671612
117210  Binder:23896_5-25989 (23896) [001] d..1 24577.107275: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117211  Binder:23896_5-25989 (23896) [001] d..2 24577.107301: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117212  Binder:23896_5-25989 (23896) [001] d..2 24577.107374: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
117213          <idle>-0     (-----) [001] d..1 24577.107401: cpu_idle: state=2 cpu_id=1
117214          <idle>-0     (-----) [002] .n.1 24577.107615: cpu_idle: state=4294967295 cpu_id=2
117215          <idle>-0     (-----) [002] d..2 24577.107646: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117216  appEventThread-23905 (23896) [002] d..2 24577.107734: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117217          <idle>-0     (-----) [002] d..2 24577.107742: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
117218          <idle>-0     (-----) [002] dn.3 24577.107760: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
117219          <idle>-0     (-----) [002] d..2 24577.107772: 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
117220     ksoftirqd/2-26    (   26) [002] d.s2 24577.107784: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117221     ksoftirqd/2-26    (   26) [002] d.s3 24577.107836: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
117222     ksoftirqd/2-26    (   26) [002] d..2 24577.107854: 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
117223  kworker/u16:10-23868 (23868) [002] d..2 24577.107937: 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
117224          <idle>-0     (-----) [002] d..1 24577.107963: cpu_idle: state=0 cpu_id=2
117225          <idle>-0     (-----) [000] d..2 24577.112930: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117226          <idle>-0     (-----) [000] dn.3 24577.112950: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117227          <idle>-0     (-----) [000] .n.1 24577.112957: cpu_idle: state=4294967295 cpu_id=0
117228          <idle>-0     (-----) [000] d..2 24577.112981: 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
117229     ksoftirqd/0-3     (    3) [000] d..2 24577.113032: 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
117230          <idle>-0     (-----) [000] d..1 24577.113047: cpu_idle: state=2 cpu_id=0
117231          <idle>-0     (-----) [002] ...1 24577.113978: cpu_idle: state=4294967295 cpu_id=2
117232          <idle>-0     (-----) [002] d..1 24577.113987: cpu_idle: state=2 cpu_id=2
117233          <idle>-0     (-----) [000] d.h2 24577.121860: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
117234          <idle>-0     (-----) [000] dnh3 24577.121894: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
117235          <idle>-0     (-----) [000] dnh3 24577.121988: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
117236          <idle>-0     (-----) [000] dnh3 24577.122005: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
117237          <idle>-0     (-----) [000] dnh4 24577.122021: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
117238          <idle>-0     (-----) [000] .n.1 24577.122032: cpu_idle: state=4294967295 cpu_id=0
117239          <idle>-0     (-----) [000] d..2 24577.122052: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
117240        DispSync-23904 (23896) [000] d..1 24577.122084: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117241        DispSync-23904 (23896) [000] d..2 24577.122104: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117242        DispSync-23904 (23896) [000] d..2 24577.122161: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117243          <idle>-0     (-----) [000] d..2 24577.122170: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117244          <idle>-0     (-----) [000] dn.3 24577.122184: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117245          <idle>-0     (-----) [000] d..2 24577.122198: 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
117246     ksoftirqd/0-3     (    3) [000] d.s2 24577.122209: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
117247     ksoftirqd/0-3     (    3) [000] d.s3 24577.122260: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117248     ksoftirqd/0-3     (    3) [000] d..2 24577.122281: 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
117249          <idle>-0     (-----) [003] .n.1 24577.122343: cpu_idle: state=4294967295 cpu_id=3
117250          <idle>-0     (-----) [003] d..2 24577.122375: 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
117251          <idle>-0     (-----) [002] .n.1 24577.122435: cpu_idle: state=4294967295 cpu_id=2
117252         sugov:0-559   (  559) [003] d..2 24577.122446: 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
117253          <idle>-0     (-----) [002] d..2 24577.122463: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117254          <idle>-0     (-----) [003] d..1 24577.122479: cpu_idle: state=2 cpu_id=3
117255  kworker/u16:10-23868 (23868) [000] d..2 24577.122494: 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
117256  appEventThread-23905 (23896) [002] d..3 24577.122521: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117257          <idle>-0     (-----) [000] d..1 24577.122523: cpu_idle: state=0 cpu_id=0
117258  appEventThread-23905 (23896) [002] d..4 24577.122560: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117259          <idle>-0     (-----) [000] .n.1 24577.122570: cpu_idle: state=4294967295 cpu_id=0
117260          <idle>-0     (-----) [000] d..2 24577.122588: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
117261  appEventThread-23905 (23896) [002] d..2 24577.122621: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117262          <idle>-0     (-----) [002] d..1 24577.122648: cpu_idle: state=0 cpu_id=2
117263 s.nexuslauncher-24827 (24827) [000] .... 24577.122850: binder_transaction: transaction=1671613 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
117264 s.nexuslauncher-24827 (24827) [000] d..4 24577.122866: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117265 s.nexuslauncher-24827 (24827) [000] d..5 24577.122904: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117266 s.nexuslauncher-24827 (24827) [000] d..2 24577.123042: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117267          <idle>-0     (-----) [007] dnh2 24577.123042: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
117268          <idle>-0     (-----) [007] .n.1 24577.123051: cpu_idle: state=4294967295 cpu_id=7
117269          <idle>-0     (-----) [007] d..2 24577.123064: 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
117270          <idle>-0     (-----) [000] d..1 24577.123072: cpu_idle: state=0 cpu_id=0
117271         sugov:4-560   (  560) [007] d..2 24577.123086: 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
117272          <idle>-0     (-----) [007] d..1 24577.123097: cpu_idle: state=2 cpu_id=7
117273          <idle>-0     (-----) [001] .n.1 24577.123235: cpu_idle: state=4294967295 cpu_id=1
117274          <idle>-0     (-----) [001] d..2 24577.123266: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
117275  Binder:23896_5-25989 (23896) [001] .... 24577.123279: binder_transaction_received: transaction=1671613
117276  Binder:23896_5-25989 (23896) [001] d..1 24577.123332: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117277  Binder:23896_5-25989 (23896) [001] d..2 24577.123360: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117278          <idle>-0     (-----) [002] .n.1 24577.123368: cpu_idle: state=4294967295 cpu_id=2
117279          <idle>-0     (-----) [002] d..2 24577.123382: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117280  Binder:23896_5-25989 (23896) [001] d..2 24577.123427: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
117281  appEventThread-23905 (23896) [002] d..2 24577.123435: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117282          <idle>-0     (-----) [001] d..1 24577.123452: cpu_idle: state=2 cpu_id=1
117283          <idle>-0     (-----) [002] d..1 24577.123454: cpu_idle: state=0 cpu_id=2
117284          <idle>-0     (-----) [000] d..2 24577.129088: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117285          <idle>-0     (-----) [000] dn.3 24577.129102: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117286          <idle>-0     (-----) [000] .n.1 24577.129108: cpu_idle: state=4294967295 cpu_id=0
117287          <idle>-0     (-----) [000] d..2 24577.129127: 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
117288     ksoftirqd/0-3     (    3) [000] d..2 24577.129170: 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
117289          <idle>-0     (-----) [000] d..1 24577.129185: cpu_idle: state=2 cpu_id=0
117290          <idle>-0     (-----) [002] ...1 24577.129467: cpu_idle: state=4294967295 cpu_id=2
117291          <idle>-0     (-----) [002] d..1 24577.129473: cpu_idle: state=2 cpu_id=2
117292          <idle>-0     (-----) [000] d.h2 24577.138311: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
117293          <idle>-0     (-----) [000] dnh3 24577.138344: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
117294          <idle>-0     (-----) [000] dnh3 24577.138439: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
117295          <idle>-0     (-----) [000] dnh3 24577.138455: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
117296          <idle>-0     (-----) [000] dnh4 24577.138471: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
117297          <idle>-0     (-----) [000] .n.1 24577.138483: cpu_idle: state=4294967295 cpu_id=0
117298          <idle>-0     (-----) [000] d..2 24577.138502: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
117299        DispSync-23904 (23896) [000] d..1 24577.138533: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117300        DispSync-23904 (23896) [000] d..2 24577.138553: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117301        DispSync-23904 (23896) [000] d..2 24577.138612: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117302          <idle>-0     (-----) [000] d..2 24577.138620: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117303          <idle>-0     (-----) [000] dn.3 24577.138635: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117304          <idle>-0     (-----) [000] d..2 24577.138647: 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
117305     ksoftirqd/0-3     (    3) [000] d.s2 24577.138659: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117306     ksoftirqd/0-3     (    3) [000] d.s3 24577.138684: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117307     ksoftirqd/0-3     (    3) [000] d..2 24577.138702: 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
117308          <idle>-0     (-----) [003] .n.1 24577.138797: cpu_idle: state=4294967295 cpu_id=3
117309  kworker/u16:10-23868 (23868) [000] d..2 24577.138813: 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
117310          <idle>-0     (-----) [003] d..2 24577.138828: 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
117311          <idle>-0     (-----) [000] d..1 24577.138843: cpu_idle: state=0 cpu_id=0
117312         sugov:0-559   (  559) [003] d..2 24577.138883: 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
117313          <idle>-0     (-----) [002] .n.1 24577.138887: cpu_idle: state=4294967295 cpu_id=2
117314          <idle>-0     (-----) [003] d..1 24577.138910: cpu_idle: state=2 cpu_id=3
117315          <idle>-0     (-----) [002] d..2 24577.138915: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117316  appEventThread-23905 (23896) [002] d..3 24577.138974: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117317  appEventThread-23905 (23896) [002] d..4 24577.139012: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117318          <idle>-0     (-----) [000] .n.1 24577.139021: cpu_idle: state=4294967295 cpu_id=0
117319          <idle>-0     (-----) [000] d..2 24577.139039: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
117320  appEventThread-23905 (23896) [002] d..2 24577.139071: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117321          <idle>-0     (-----) [002] d..1 24577.139099: cpu_idle: state=0 cpu_id=2
117322 s.nexuslauncher-24827 (24827) [000] .... 24577.139302: binder_transaction: transaction=1671614 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
117323 s.nexuslauncher-24827 (24827) [000] d..4 24577.139317: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117324 s.nexuslauncher-24827 (24827) [000] d..5 24577.139356: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117325 s.nexuslauncher-24827 (24827) [000] d..2 24577.139495: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117326          <idle>-0     (-----) [007] dnh2 24577.139499: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
117327          <idle>-0     (-----) [007] .n.1 24577.139510: cpu_idle: state=4294967295 cpu_id=7
117328          <idle>-0     (-----) [007] d..2 24577.139522: 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
117329          <idle>-0     (-----) [000] d..1 24577.139527: cpu_idle: state=0 cpu_id=0
117330         sugov:4-560   (  560) [007] d..2 24577.139545: 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
117331          <idle>-0     (-----) [007] d..1 24577.139557: cpu_idle: state=2 cpu_id=7
117332          <idle>-0     (-----) [001] .n.1 24577.139680: cpu_idle: state=4294967295 cpu_id=1
117333          <idle>-0     (-----) [001] d..2 24577.139710: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
117334  Binder:23896_5-25989 (23896) [001] .... 24577.139723: binder_transaction_received: transaction=1671614
117335  Binder:23896_5-25989 (23896) [001] d..1 24577.139776: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117336  Binder:23896_5-25989 (23896) [001] d..2 24577.139808: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117337          <idle>-0     (-----) [002] .n.1 24577.139816: cpu_idle: state=4294967295 cpu_id=2
117338          <idle>-0     (-----) [002] d..2 24577.139831: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117339  Binder:23896_5-25989 (23896) [001] d..2 24577.139878: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
117340  appEventThread-23905 (23896) [002] d..2 24577.139885: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117341          <idle>-0     (-----) [001] d..1 24577.139901: cpu_idle: state=2 cpu_id=1
117342          <idle>-0     (-----) [002] d..1 24577.139903: cpu_idle: state=0 cpu_id=2
117343          <idle>-0     (-----) [000] d..2 24577.145544: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117344          <idle>-0     (-----) [000] dn.3 24577.145559: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117345          <idle>-0     (-----) [000] .n.1 24577.145565: cpu_idle: state=4294967295 cpu_id=0
117346          <idle>-0     (-----) [000] d..2 24577.145588: 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
117347     ksoftirqd/0-3     (    3) [000] d.s2 24577.145600: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117348     ksoftirqd/0-3     (    3) [000] d.s3 24577.145625: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117349     ksoftirqd/0-3     (    3) [000] d..2 24577.145643: 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
117350  kworker/u16:10-23868 (23868) [000] d..2 24577.145752: 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
117351          <idle>-0     (-----) [000] d..1 24577.145769: cpu_idle: state=2 cpu_id=0
117352          <idle>-0     (-----) [002] ...1 24577.145918: cpu_idle: state=4294967295 cpu_id=2
117353          <idle>-0     (-----) [002] d..1 24577.145926: cpu_idle: state=2 cpu_id=2
117354          <idle>-0     (-----) [000] d.h2 24577.154770: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
117355          <idle>-0     (-----) [000] dnh3 24577.154795: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
117356          <idle>-0     (-----) [000] .n.1 24577.154810: cpu_idle: state=4294967295 cpu_id=0
117357          <idle>-0     (-----) [000] d..2 24577.154832: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
117358        DispSync-23904 (23896) [000] d..1 24577.154865: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117359        DispSync-23904 (23896) [000] d..2 24577.154888: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117360        DispSync-23904 (23896) [000] d..2 24577.154946: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117361          <idle>-0     (-----) [000] d..2 24577.154954: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117362          <idle>-0     (-----) [000] dn.3 24577.154966: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117363          <idle>-0     (-----) [000] d..2 24577.154979: 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
117364     ksoftirqd/0-3     (    3) [000] d.s2 24577.154989: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117365     ksoftirqd/0-3     (    3) [000] d.s3 24577.155012: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117366     ksoftirqd/0-3     (    3) [000] d..2 24577.155032: 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
117367  kworker/u16:10-23868 (23868) [000] d..2 24577.155140: 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
117368          <idle>-0     (-----) [000] d..1 24577.155165: cpu_idle: state=2 cpu_id=0
117369          <idle>-0     (-----) [002] .n.1 24577.155227: cpu_idle: state=4294967295 cpu_id=2
117370          <idle>-0     (-----) [002] d..2 24577.155258: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117371  appEventThread-23905 (23896) [002] d..3 24577.155315: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117372  appEventThread-23905 (23896) [002] d..4 24577.155350: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117373  appEventThread-23905 (23896) [002] d..2 24577.155408: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117374          <idle>-0     (-----) [002] d..1 24577.155433: cpu_idle: state=2 cpu_id=2
117375          <idle>-0     (-----) [000] .n.1 24577.155669: cpu_idle: state=4294967295 cpu_id=0
117376          <idle>-0     (-----) [000] d..2 24577.155699: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
117377 s.nexuslauncher-24827 (24827) [000] .... 24577.155956: binder_transaction: transaction=1671615 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
117378 s.nexuslauncher-24827 (24827) [000] d..4 24577.155971: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117379 s.nexuslauncher-24827 (24827) [000] d..5 24577.156005: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117380 s.nexuslauncher-24827 (24827) [000] d..2 24577.156141: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117381          <idle>-0     (-----) [000] d..1 24577.156170: cpu_idle: state=0 cpu_id=0
117382          <idle>-0     (-----) [001] .n.1 24577.156330: cpu_idle: state=4294967295 cpu_id=1
117383          <idle>-0     (-----) [001] d..2 24577.156371: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
117384  Binder:23896_5-25989 (23896) [001] .... 24577.156385: binder_transaction_received: transaction=1671615
117385  Binder:23896_5-25989 (23896) [001] d..1 24577.156436: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117386  Binder:23896_5-25989 (23896) [001] d..2 24577.156468: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117387  Binder:23896_5-25989 (23896) [001] d..2 24577.156544: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
117388          <idle>-0     (-----) [001] d..1 24577.156572: cpu_idle: state=2 cpu_id=1
117389          <idle>-0     (-----) [002] .n.1 24577.156789: cpu_idle: state=4294967295 cpu_id=2
117390          <idle>-0     (-----) [002] d..2 24577.156814: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117391  appEventThread-23905 (23896) [002] d..2 24577.156896: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117392          <idle>-0     (-----) [002] d..1 24577.156921: cpu_idle: state=0 cpu_id=2
117393          <idle>-0     (-----) [000] d..2 24577.162196: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117394          <idle>-0     (-----) [000] dn.3 24577.162213: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117395          <idle>-0     (-----) [000] dnH3 24577.162304: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
117396          <idle>-0     (-----) [000] dnH3 24577.162323: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
117397          <idle>-0     (-----) [000] dnH4 24577.162342: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
117398          <idle>-0     (-----) [000] dns3 24577.162355: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117399          <idle>-0     (-----) [000] dns4 24577.162377: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117400          <idle>-0     (-----) [000] dns3 24577.162382: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
117401          <idle>-0     (-----) [000] dns4 24577.162393: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
117402          <idle>-0     (-----) [000] .n.1 24577.162404: cpu_idle: state=4294967295 cpu_id=0
117403          <idle>-0     (-----) [000] d..2 24577.162426: 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
117404     ksoftirqd/0-3     (    3) [000] d..2 24577.162441: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
117405     kworker/0:1-13012 (13012) [000] d..2 24577.162487: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
117406  kworker/u16:10-23868 (23868) [000] d..2 24577.162575: 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
117407          <idle>-0     (-----) [000] d..1 24577.162593: cpu_idle: state=2 cpu_id=0
117408          <idle>-0     (-----) [003] .n.1 24577.162665: cpu_idle: state=4294967295 cpu_id=3
117409          <idle>-0     (-----) [003] d..2 24577.162692: 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
117410         sugov:0-559   (  559) [003] .... 24577.162727: clk_set_rate: pwrcl_clk 748800000
117411         sugov:0-559   (  559) [003] .... 24577.162741: clk_set_rate: cpu3_pwrcl_clk 652800000
117412         sugov:0-559   (  559) [003] .... 24577.162755: clk_set_rate: cpu2_pwrcl_clk 652800000
117413         sugov:0-559   (  559) [003] .... 24577.162767: clk_set_rate: cpu1_pwrcl_clk 652800000
117414         sugov:0-559   (  559) [003] .... 24577.162779: clk_set_rate: cpu0_pwrcl_clk 748800000
117415         sugov:0-559   (  559) [003] .... 24577.162794: cpu_frequency: state=748800 cpu_id=0
117416         sugov:0-559   (  559) [003] .... 24577.162816: cpu_frequency: state=748800 cpu_id=1
117417         sugov:0-559   (  559) [003] .... 24577.162821: cpu_frequency: state=748800 cpu_id=2
117418         sugov:0-559   (  559) [003] .... 24577.162827: cpu_frequency: state=748800 cpu_id=3
117419         sugov:0-559   (  559) [003] d..2 24577.162867: 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
117420          <idle>-0     (-----) [003] d..1 24577.162887: cpu_idle: state=2 cpu_id=3
117421          <idle>-0     (-----) [002] ...1 24577.162933: cpu_idle: state=4294967295 cpu_id=2
117422          <idle>-0     (-----) [002] d..1 24577.162940: cpu_idle: state=2 cpu_id=2
117423          <idle>-0     (-----) [007] dnh2 24577.163415: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
117424          <idle>-0     (-----) [007] .n.1 24577.163423: cpu_idle: state=4294967295 cpu_id=7
117425          <idle>-0     (-----) [007] d..2 24577.163435: 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
117426         sugov:4-560   (  560) [007] d..2 24577.163457: 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
117427          <idle>-0     (-----) [007] d..1 24577.163468: cpu_idle: state=2 cpu_id=7
117428          <idle>-0     (-----) [000] d.h2 24577.171212: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
117429          <idle>-0     (-----) [000] dnh3 24577.171237: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
117430          <idle>-0     (-----) [000] .n.1 24577.171251: cpu_idle: state=4294967295 cpu_id=0
117431          <idle>-0     (-----) [000] d..2 24577.171268: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
117432        DispSync-23904 (23896) [000] d..1 24577.171297: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117433        DispSync-23904 (23896) [000] d..2 24577.171318: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117434        DispSync-23904 (23896) [000] d..2 24577.171371: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117435          <idle>-0     (-----) [000] d..2 24577.171379: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117436          <idle>-0     (-----) [000] dn.3 24577.171391: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117437          <idle>-0     (-----) [000] d..2 24577.171403: 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
117438     ksoftirqd/0-3     (    3) [000] d.s2 24577.171412: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117439     ksoftirqd/0-3     (    3) [000] d.s3 24577.171433: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117440     ksoftirqd/0-3     (    3) [000] d..2 24577.171450: 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
117441  kworker/u16:10-23868 (23868) [000] d..2 24577.171548: 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
117442          <idle>-0     (-----) [000] d..1 24577.171571: cpu_idle: state=0 cpu_id=0
117443          <idle>-0     (-----) [002] .n.1 24577.171636: cpu_idle: state=4294967295 cpu_id=2
117444          <idle>-0     (-----) [002] d..2 24577.171669: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117445  appEventThread-23905 (23896) [002] d..3 24577.171723: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117446  appEventThread-23905 (23896) [002] d..4 24577.171761: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117447          <idle>-0     (-----) [000] .n.1 24577.171771: cpu_idle: state=4294967295 cpu_id=0
117448          <idle>-0     (-----) [000] d..2 24577.171788: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
117449  appEventThread-23905 (23896) [002] d..2 24577.171821: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117450          <idle>-0     (-----) [002] d..1 24577.171849: cpu_idle: state=0 cpu_id=2
117451 s.nexuslauncher-24827 (24827) [000] .... 24577.172032: binder_transaction: transaction=1671616 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
117452 s.nexuslauncher-24827 (24827) [000] d..4 24577.172049: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117453 s.nexuslauncher-24827 (24827) [000] d..5 24577.172086: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117454 s.nexuslauncher-24827 (24827) [000] d..2 24577.172215: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117455          <idle>-0     (-----) [000] d..1 24577.172244: cpu_idle: state=0 cpu_id=0
117456          <idle>-0     (-----) [001] .n.1 24577.172403: cpu_idle: state=4294967295 cpu_id=1
117457          <idle>-0     (-----) [001] d..2 24577.172433: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
117458  Binder:23896_5-25989 (23896) [001] .... 24577.172445: binder_transaction_received: transaction=1671616
117459  Binder:23896_5-25989 (23896) [001] d..1 24577.172494: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117460  Binder:23896_5-25989 (23896) [001] d..2 24577.172525: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117461          <idle>-0     (-----) [002] .n.1 24577.172533: cpu_idle: state=4294967295 cpu_id=2
117462          <idle>-0     (-----) [002] d..2 24577.172548: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117463  Binder:23896_5-25989 (23896) [001] d..2 24577.172592: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
117464  appEventThread-23905 (23896) [002] d..2 24577.172597: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117465          <idle>-0     (-----) [002] d..1 24577.172614: cpu_idle: state=0 cpu_id=2
117466          <idle>-0     (-----) [001] d..1 24577.172614: cpu_idle: state=2 cpu_id=1
117467          <idle>-0     (-----) [000] d..2 24577.178263: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117468          <idle>-0     (-----) [000] dn.3 24577.178279: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117469          <idle>-0     (-----) [000] dnH3 24577.178366: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
117470          <idle>-0     (-----) [000] .n.1 24577.178397: cpu_idle: state=4294967295 cpu_id=0
117471          <idle>-0     (-----) [000] d..2 24577.178417: 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
117472     ksoftirqd/0-3     (    3) [000] d..2 24577.178451: 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
117473          <idle>-0     (-----) [000] d..1 24577.178466: cpu_idle: state=2 cpu_id=0
117474          <idle>-0     (-----) [002] ...1 24577.178626: cpu_idle: state=4294967295 cpu_id=2
117475          <idle>-0     (-----) [002] d..1 24577.178633: cpu_idle: state=2 cpu_id=2
117476          <idle>-0     (-----) [007] dnh2 24577.179450: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
117477          <idle>-0     (-----) [007] .n.1 24577.179458: cpu_idle: state=4294967295 cpu_id=7
117478          <idle>-0     (-----) [007] d..2 24577.179470: 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
117479         sugov:4-560   (  560) [007] d..2 24577.179492: 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
117480          <idle>-0     (-----) [007] d..1 24577.179503: cpu_idle: state=2 cpu_id=7
117481          <idle>-0     (-----) [000] d.h2 24577.187676: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
117482          <idle>-0     (-----) [000] dnh3 24577.187702: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
117483          <idle>-0     (-----) [000] .n.1 24577.187718: cpu_idle: state=4294967295 cpu_id=0
117484          <idle>-0     (-----) [000] d..2 24577.187735: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
117485        DispSync-23904 (23896) [000] d..1 24577.187765: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117486        DispSync-23904 (23896) [000] d..2 24577.187789: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117487        DispSync-23904 (23896) [000] d..2 24577.187841: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117488          <idle>-0     (-----) [000] d..2 24577.187850: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117489          <idle>-0     (-----) [000] dn.3 24577.187861: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117490          <idle>-0     (-----) [000] d..2 24577.187873: 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
117491     ksoftirqd/0-3     (    3) [000] d.s2 24577.187883: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117492     ksoftirqd/0-3     (    3) [000] d.s3 24577.187906: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117493     ksoftirqd/0-3     (    3) [000] d..2 24577.187923: 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
117494  kworker/u16:10-23868 (23868) [000] d..2 24577.188022: 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
117495          <idle>-0     (-----) [000] d..1 24577.188045: cpu_idle: state=0 cpu_id=0
117496          <idle>-0     (-----) [002] .n.1 24577.188114: cpu_idle: state=4294967295 cpu_id=2
117497          <idle>-0     (-----) [002] d..2 24577.188148: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117498  appEventThread-23905 (23896) [002] d..3 24577.188202: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117499  appEventThread-23905 (23896) [002] d..4 24577.188245: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117500          <idle>-0     (-----) [000] .n.1 24577.188255: cpu_idle: state=4294967295 cpu_id=0
117501          <idle>-0     (-----) [000] d..2 24577.188273: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
117502  appEventThread-23905 (23896) [002] d..2 24577.188307: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117503          <idle>-0     (-----) [002] d..1 24577.188335: cpu_idle: state=0 cpu_id=2
117504 s.nexuslauncher-24827 (24827) [000] .... 24577.188518: binder_transaction: transaction=1671617 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
117505 s.nexuslauncher-24827 (24827) [000] d..4 24577.188532: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117506 s.nexuslauncher-24827 (24827) [000] d..5 24577.188577: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117507 s.nexuslauncher-24827 (24827) [000] d..2 24577.188705: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117508          <idle>-0     (-----) [000] d..1 24577.188733: cpu_idle: state=0 cpu_id=0
117509          <idle>-0     (-----) [001] .n.1 24577.188887: cpu_idle: state=4294967295 cpu_id=1
117510          <idle>-0     (-----) [001] d..2 24577.188917: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
117511  Binder:23896_5-25989 (23896) [001] .... 24577.188930: binder_transaction_received: transaction=1671617
117512  Binder:23896_5-25989 (23896) [001] d..1 24577.188981: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117513  Binder:23896_5-25989 (23896) [001] d..2 24577.189009: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117514          <idle>-0     (-----) [002] .n.1 24577.189018: cpu_idle: state=4294967295 cpu_id=2
117515          <idle>-0     (-----) [002] d..2 24577.189032: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117516  Binder:23896_5-25989 (23896) [001] d..2 24577.189076: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
117517  appEventThread-23905 (23896) [002] d..2 24577.189086: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117518          <idle>-0     (-----) [001] d..1 24577.189098: cpu_idle: state=2 cpu_id=1
117519          <idle>-0     (-----) [002] d..1 24577.189102: cpu_idle: state=0 cpu_id=2
117520          <idle>-0     (-----) [000] d..2 24577.194748: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117521          <idle>-0     (-----) [000] dn.3 24577.194761: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117522          <idle>-0     (-----) [000] .n.1 24577.194767: cpu_idle: state=4294967295 cpu_id=0
117523          <idle>-0     (-----) [000] d..2 24577.194786: 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
117524     ksoftirqd/0-3     (    3) [000] d.s2 24577.194798: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117525     ksoftirqd/0-3     (    3) [000] d.s3 24577.194821: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117526     ksoftirqd/0-3     (    3) [000] d..2 24577.194837: 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
117527  kworker/u16:10-23868 (23868) [000] d..2 24577.194938: 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
117528          <idle>-0     (-----) [000] d..1 24577.194956: cpu_idle: state=2 cpu_id=0
117529          <idle>-0     (-----) [002] ...1 24577.195115: cpu_idle: state=4294967295 cpu_id=2
117530          <idle>-0     (-----) [002] d..1 24577.195121: cpu_idle: state=2 cpu_id=2
117531          <idle>-0     (-----) [000] d.h2 24577.204136: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
117532          <idle>-0     (-----) [000] dnh3 24577.204167: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
117533          <idle>-0     (-----) [000] dnh3 24577.204256: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
117534          <idle>-0     (-----) [000] dnh3 24577.204271: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
117535          <idle>-0     (-----) [000] dnh4 24577.204287: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
117536          <idle>-0     (-----) [000] .n.1 24577.204298: cpu_idle: state=4294967295 cpu_id=0
117537          <idle>-0     (-----) [000] d..2 24577.204316: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
117538        DispSync-23904 (23896) [000] d..1 24577.204346: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117539        DispSync-23904 (23896) [000] d..2 24577.204365: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117540        DispSync-23904 (23896) [000] d..2 24577.204418: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117541          <idle>-0     (-----) [000] d..2 24577.204425: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117542          <idle>-0     (-----) [000] dn.3 24577.204439: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117543          <idle>-0     (-----) [000] d..2 24577.204450: 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
117544     ksoftirqd/0-3     (    3) [000] d.s2 24577.204461: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117545     ksoftirqd/0-3     (    3) [000] d.s3 24577.204482: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117546     ksoftirqd/0-3     (    3) [000] d..2 24577.204500: 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
117547  kworker/u16:10-23868 (23868) [000] d..2 24577.204599: 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
117548          <idle>-0     (-----) [003] .n.1 24577.204608: cpu_idle: state=4294967295 cpu_id=3
117549          <idle>-0     (-----) [000] d..1 24577.204624: cpu_idle: state=2 cpu_id=0
117550          <idle>-0     (-----) [003] d..2 24577.204638: 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
117551         sugov:0-559   (  559) [003] .... 24577.204671: clk_set_rate: pwrcl_clk 652800000
117552         sugov:0-559   (  559) [003] .... 24577.204682: clk_set_rate: cpu3_pwrcl_clk 748800000
117553         sugov:0-559   (  559) [003] .... 24577.204694: clk_set_rate: cpu2_pwrcl_clk 748800000
117554          <idle>-0     (-----) [002] .n.1 24577.204694: cpu_idle: state=4294967295 cpu_id=2
117555         sugov:0-559   (  559) [003] .... 24577.204705: clk_set_rate: cpu1_pwrcl_clk 748800000
117556         sugov:0-559   (  559) [003] .... 24577.204715: clk_set_rate: cpu0_pwrcl_clk 652800000
117557          <idle>-0     (-----) [002] d..2 24577.204720: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117558  appEventThread-23905 (23896) [002] d..3 24577.204784: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117559  appEventThread-23905 (23896) [002] d..4 24577.204818: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117560         sugov:0-559   (  559) [003] .... 24577.204833: cpu_frequency: state=652800 cpu_id=0
117561         sugov:0-559   (  559) [003] .... 24577.204850: cpu_frequency: state=652800 cpu_id=1
117562         sugov:0-559   (  559) [003] .... 24577.204857: cpu_frequency: state=652800 cpu_id=2
117563         sugov:0-559   (  559) [003] .... 24577.204862: cpu_frequency: state=652800 cpu_id=3
117564  appEventThread-23905 (23896) [002] d..2 24577.204876: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117565          <idle>-0     (-----) [002] d..1 24577.204903: cpu_idle: state=2 cpu_id=2
117566         sugov:0-559   (  559) [003] d..2 24577.204917: 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
117567          <idle>-0     (-----) [003] d..1 24577.204943: cpu_idle: state=2 cpu_id=3
117568          <idle>-0     (-----) [000] .n.1 24577.205147: cpu_idle: state=4294967295 cpu_id=0
117569          <idle>-0     (-----) [000] d..2 24577.205175: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
117570          <idle>-0     (-----) [007] dnh2 24577.205387: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
117571          <idle>-0     (-----) [007] .n.1 24577.205396: cpu_idle: state=4294967295 cpu_id=7
117572          <idle>-0     (-----) [007] d..2 24577.205408: 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
117573         sugov:4-560   (  560) [007] d..2 24577.205430: 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
117574 s.nexuslauncher-24827 (24827) [000] .... 24577.205430: binder_transaction: transaction=1671618 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
117575          <idle>-0     (-----) [007] d..1 24577.205441: cpu_idle: state=2 cpu_id=7
117576 s.nexuslauncher-24827 (24827) [000] d..4 24577.205447: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117577 s.nexuslauncher-24827 (24827) [000] d..5 24577.205488: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117578 s.nexuslauncher-24827 (24827) [000] d..2 24577.205629: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117579          <idle>-0     (-----) [000] d..1 24577.205662: cpu_idle: state=0 cpu_id=0
117580          <idle>-0     (-----) [001] .n.1 24577.205923: cpu_idle: state=4294967295 cpu_id=1
117581          <idle>-0     (-----) [001] d..2 24577.205956: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
117582  Binder:23896_5-25989 (23896) [001] .... 24577.205968: binder_transaction_received: transaction=1671618
117583  Binder:23896_5-25989 (23896) [001] d..1 24577.206018: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117584  Binder:23896_5-25989 (23896) [001] d..2 24577.206045: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117585  Binder:23896_5-25989 (23896) [001] d..2 24577.206117: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
117586          <idle>-0     (-----) [001] d..1 24577.206143: cpu_idle: state=2 cpu_id=1
117587          <idle>-0     (-----) [002] .n.1 24577.206361: cpu_idle: state=4294967295 cpu_id=2
117588          <idle>-0     (-----) [002] d..2 24577.206385: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117589  appEventThread-23905 (23896) [002] d..2 24577.206462: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117590          <idle>-0     (-----) [002] d..1 24577.206487: cpu_idle: state=0 cpu_id=2
117591          <idle>-0     (-----) [000] d..2 24577.211679: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117592          <idle>-0     (-----) [000] dn.3 24577.211694: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117593          <idle>-0     (-----) [000] .n.1 24577.211701: cpu_idle: state=4294967295 cpu_id=0
117594          <idle>-0     (-----) [000] d..2 24577.211722: 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
117595     ksoftirqd/0-3     (    3) [000] d.s2 24577.211734: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117596     ksoftirqd/0-3     (    3) [000] d.s3 24577.211761: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117597     ksoftirqd/0-3     (    3) [000] d.s2 24577.211767: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
117598     ksoftirqd/0-3     (    3) [000] d.s3 24577.211782: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
117599     ksoftirqd/0-3     (    3) [000] d..2 24577.211798: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
117600     kworker/0:1-13012 (13012) [000] d..2 24577.211840: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
117601  kworker/u16:10-23868 (23868) [000] d..2 24577.211934: 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
117602          <idle>-0     (-----) [000] d..1 24577.211953: cpu_idle: state=2 cpu_id=0
117603          <idle>-0     (-----) [002] ...1 24577.212502: cpu_idle: state=4294967295 cpu_id=2
117604          <idle>-0     (-----) [002] d..1 24577.212509: cpu_idle: state=2 cpu_id=2
117605          <idle>-0     (-----) [000] d.h2 24577.220582: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
117606          <idle>-0     (-----) [000] dnh3 24577.220615: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
117607          <idle>-0     (-----) [000] dnh3 24577.220703: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
117608          <idle>-0     (-----) [000] dnh3 24577.220721: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
117609          <idle>-0     (-----) [000] dnh4 24577.220736: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
117610          <idle>-0     (-----) [000] .n.1 24577.220747: cpu_idle: state=4294967295 cpu_id=0
117611          <idle>-0     (-----) [000] d..2 24577.220766: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
117612        DispSync-23904 (23896) [000] d..1 24577.220797: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117613        DispSync-23904 (23896) [000] d..2 24577.220816: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117614        DispSync-23904 (23896) [000] d..2 24577.220873: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117615          <idle>-0     (-----) [000] d.s3 24577.220920: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117616          <idle>-0     (-----) [000] dns4 24577.220948: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117617          <idle>-0     (-----) [000] d..2 24577.220984: 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
117618          <idle>-0     (-----) [003] .n.1 24577.221061: cpu_idle: state=4294967295 cpu_id=3
117619          <idle>-0     (-----) [003] d..2 24577.221093: 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
117620  kworker/u16:10-23868 (23868) [000] d..2 24577.221103: 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
117621          <idle>-0     (-----) [000] d..1 24577.221131: cpu_idle: state=0 cpu_id=0
117622         sugov:0-559   (  559) [003] d..2 24577.221147: 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
117623          <idle>-0     (-----) [002] .n.1 24577.221153: cpu_idle: state=4294967295 cpu_id=2
117624          <idle>-0     (-----) [003] d..1 24577.221173: cpu_idle: state=2 cpu_id=3
117625          <idle>-0     (-----) [002] d..2 24577.221180: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117626  appEventThread-23905 (23896) [002] d..3 24577.221238: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117627  appEventThread-23905 (23896) [002] d..4 24577.221276: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117628          <idle>-0     (-----) [000] .n.1 24577.221285: cpu_idle: state=4294967295 cpu_id=0
117629          <idle>-0     (-----) [000] d..2 24577.221303: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
117630  appEventThread-23905 (23896) [002] d..2 24577.221334: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117631          <idle>-0     (-----) [002] d..1 24577.221361: cpu_idle: state=0 cpu_id=2
117632 s.nexuslauncher-24827 (24827) [000] .... 24577.221564: binder_transaction: transaction=1671619 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
117633 s.nexuslauncher-24827 (24827) [000] d..4 24577.221580: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117634 s.nexuslauncher-24827 (24827) [000] d..5 24577.221618: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117635 s.nexuslauncher-24827 (24827) [000] d..2 24577.221758: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117636          <idle>-0     (-----) [007] dnh2 24577.221788: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
117637          <idle>-0     (-----) [000] d..1 24577.221790: cpu_idle: state=0 cpu_id=0
117638          <idle>-0     (-----) [007] .n.1 24577.221798: cpu_idle: state=4294967295 cpu_id=7
117639          <idle>-0     (-----) [007] d..2 24577.221810: 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
117640         sugov:4-560   (  560) [007] d..2 24577.221832: 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
117641          <idle>-0     (-----) [007] d..1 24577.221843: cpu_idle: state=2 cpu_id=7
117642          <idle>-0     (-----) [001] .n.1 24577.221938: cpu_idle: state=4294967295 cpu_id=1
117643          <idle>-0     (-----) [001] d..2 24577.221969: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
117644  Binder:23896_5-25989 (23896) [001] .... 24577.221982: binder_transaction_received: transaction=1671619
117645  Binder:23896_5-25989 (23896) [001] d..1 24577.222034: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117646  Binder:23896_5-25989 (23896) [001] d..2 24577.222063: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117647          <idle>-0     (-----) [002] .n.1 24577.222072: cpu_idle: state=4294967295 cpu_id=2
117648          <idle>-0     (-----) [002] d..2 24577.222086: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117649  Binder:23896_5-25989 (23896) [001] d..2 24577.222131: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
117650  appEventThread-23905 (23896) [002] d..2 24577.222140: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117651          <idle>-0     (-----) [001] d..1 24577.222155: cpu_idle: state=2 cpu_id=1
117652          <idle>-0     (-----) [002] d..1 24577.222159: cpu_idle: state=0 cpu_id=2
117653          <idle>-0     (-----) [000] d..2 24577.227805: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117654          <idle>-0     (-----) [000] dn.3 24577.227823: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117655          <idle>-0     (-----) [000] .n.1 24577.227829: cpu_idle: state=4294967295 cpu_id=0
117656          <idle>-0     (-----) [000] d..2 24577.227848: 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
117657     ksoftirqd/0-3     (    3) [000] d..2 24577.227891: 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
117658          <idle>-0     (-----) [000] d..1 24577.227906: cpu_idle: state=2 cpu_id=0
117659          <idle>-0     (-----) [002] ...1 24577.228171: cpu_idle: state=4294967295 cpu_id=2
117660          <idle>-0     (-----) [002] d..1 24577.228178: cpu_idle: state=2 cpu_id=2
117661          <idle>-0     (-----) [000] d.h2 24577.237059: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
117662          <idle>-0     (-----) [000] dnh3 24577.237084: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
117663          <idle>-0     (-----) [000] .n.1 24577.237101: cpu_idle: state=4294967295 cpu_id=0
117664          <idle>-0     (-----) [000] d..2 24577.237121: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
117665        DispSync-23904 (23896) [000] d..1 24577.237152: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117666        DispSync-23904 (23896) [000] d..2 24577.237173: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117667        DispSync-23904 (23896) [000] d..2 24577.237232: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117668          <idle>-0     (-----) [000] d..2 24577.237238: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117669          <idle>-0     (-----) [000] dn.3 24577.237251: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117670          <idle>-0     (-----) [000] d..2 24577.237263: 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
117671     ksoftirqd/0-3     (    3) [000] d.s2 24577.237278: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117672     ksoftirqd/0-3     (    3) [000] d.s3 24577.237301: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117673     ksoftirqd/0-3     (    3) [000] d..2 24577.237321: 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
117674  kworker/u16:10-23868 (23868) [000] d..2 24577.237430: 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
117675          <idle>-0     (-----) [000] d..1 24577.237456: cpu_idle: state=0 cpu_id=0
117676          <idle>-0     (-----) [002] .n.1 24577.237502: cpu_idle: state=4294967295 cpu_id=2
117677          <idle>-0     (-----) [002] d..2 24577.237538: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117678  appEventThread-23905 (23896) [002] d.H4 24577.237685: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
117679  appEventThread-23905 (23896) [002] d.H4 24577.237710: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
117680  appEventThread-23905 (23896) [002] d.H5 24577.237729: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
117681  appEventThread-23905 (23896) [002] d..3 24577.237813: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117682  appEventThread-23905 (23896) [002] d..4 24577.237846: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117683          <idle>-0     (-----) [000] .n.1 24577.237857: cpu_idle: state=4294967295 cpu_id=0
117684          <idle>-0     (-----) [000] d..2 24577.237878: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
117685  appEventThread-23905 (23896) [002] d..2 24577.237908: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117686          <idle>-0     (-----) [002] d..1 24577.237939: cpu_idle: state=0 cpu_id=2
117687          <idle>-0     (-----) [003] .n.1 24577.238053: cpu_idle: state=4294967295 cpu_id=3
117688          <idle>-0     (-----) [003] d..2 24577.238082: 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
117689         sugov:0-559   (  559) [003] d..2 24577.238133: 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
117690 s.nexuslauncher-24827 (24827) [000] .... 24577.238141: binder_transaction: transaction=1671620 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
117691          <idle>-0     (-----) [003] d..1 24577.238155: cpu_idle: state=2 cpu_id=3
117692 s.nexuslauncher-24827 (24827) [000] d..4 24577.238157: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117693 s.nexuslauncher-24827 (24827) [000] d..5 24577.238197: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117694 s.nexuslauncher-24827 (24827) [000] d..2 24577.238334: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117695          <idle>-0     (-----) [000] d..1 24577.238362: cpu_idle: state=0 cpu_id=0
117696          <idle>-0     (-----) [001] .n.1 24577.238518: cpu_idle: state=4294967295 cpu_id=1
117697          <idle>-0     (-----) [001] d..2 24577.238547: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
117698  Binder:23896_5-25989 (23896) [001] .... 24577.238559: binder_transaction_received: transaction=1671620
117699  Binder:23896_5-25989 (23896) [001] d..1 24577.238613: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117700  Binder:23896_5-25989 (23896) [001] d..2 24577.238641: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117701          <idle>-0     (-----) [002] .n.1 24577.238650: cpu_idle: state=4294967295 cpu_id=2
117702          <idle>-0     (-----) [002] d..2 24577.238665: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117703  Binder:23896_5-25989 (23896) [001] d..2 24577.238712: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
117704  appEventThread-23905 (23896) [002] d..2 24577.238719: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117705          <idle>-0     (-----) [001] d..1 24577.238735: cpu_idle: state=2 cpu_id=1
117706          <idle>-0     (-----) [002] d..1 24577.238737: cpu_idle: state=0 cpu_id=2
117707          <idle>-0     (-----) [007] dnh2 24577.238780: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
117708          <idle>-0     (-----) [007] .n.1 24577.238789: cpu_idle: state=4294967295 cpu_id=7
117709          <idle>-0     (-----) [007] d..2 24577.238802: 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
117710         sugov:4-560   (  560) [007] d..2 24577.238823: 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
117711          <idle>-0     (-----) [007] d..1 24577.238834: cpu_idle: state=2 cpu_id=7
117712          <idle>-0     (-----) [000] d..2 24577.244379: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117713          <idle>-0     (-----) [000] dn.3 24577.244395: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117714          <idle>-0     (-----) [000] .n.1 24577.244402: cpu_idle: state=4294967295 cpu_id=0
117715          <idle>-0     (-----) [000] d..2 24577.244424: 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
117716     ksoftirqd/0-3     (    3) [000] d.s2 24577.244436: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117717     ksoftirqd/0-3     (    3) [000] d.s3 24577.244463: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117718     ksoftirqd/0-3     (    3) [000] d..2 24577.244484: 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
117719  kworker/u16:10-23868 (23868) [000] d..2 24577.244668: 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
117720          <idle>-0     (-----) [000] d..1 24577.244690: cpu_idle: state=2 cpu_id=0
117721          <idle>-0     (-----) [002] ...1 24577.244750: cpu_idle: state=4294967295 cpu_id=2
117722          <idle>-0     (-----) [002] d..1 24577.244758: cpu_idle: state=2 cpu_id=2
117723          <idle>-0     (-----) [000] d.h2 24577.253519: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
117724          <idle>-0     (-----) [000] dnh3 24577.253548: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
117725          <idle>-0     (-----) [000] .n.1 24577.253563: cpu_idle: state=4294967295 cpu_id=0
117726          <idle>-0     (-----) [000] d..2 24577.253584: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
117727        DispSync-23904 (23896) [000] d..1 24577.253617: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117728        DispSync-23904 (23896) [000] d..2 24577.253638: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117729        DispSync-23904 (23896) [000] d..2 24577.253695: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117730          <idle>-0     (-----) [000] d..2 24577.253703: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117731          <idle>-0     (-----) [000] dn.3 24577.253716: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117732          <idle>-0     (-----) [000] d..2 24577.253727: 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
117733     ksoftirqd/0-3     (    3) [000] d..2 24577.253756: 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
117734          <idle>-0     (-----) [000] d..1 24577.253779: cpu_idle: state=2 cpu_id=0
117735          <idle>-0     (-----) [002] .n.1 24577.253990: cpu_idle: state=4294967295 cpu_id=2
117736          <idle>-0     (-----) [002] d..2 24577.254017: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117737  appEventThread-23905 (23896) [002] d..3 24577.254074: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117738  appEventThread-23905 (23896) [002] d..4 24577.254105: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117739  appEventThread-23905 (23896) [002] d..2 24577.254163: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117740          <idle>-0     (-----) [002] d..1 24577.254187: cpu_idle: state=2 cpu_id=2
117741          <idle>-0     (-----) [000] .n.1 24577.254424: cpu_idle: state=4294967295 cpu_id=0
117742          <idle>-0     (-----) [000] d..2 24577.254461: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
117743 s.nexuslauncher-24827 (24827) [000] .... 24577.254716: binder_transaction: transaction=1671621 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
117744 s.nexuslauncher-24827 (24827) [000] d..4 24577.254732: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117745 s.nexuslauncher-24827 (24827) [000] d..5 24577.254767: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117746 s.nexuslauncher-24827 (24827) [000] d..2 24577.254915: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117747          <idle>-0     (-----) [000] d..2 24577.254925: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117748          <idle>-0     (-----) [000] dn.3 24577.254937: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117749          <idle>-0     (-----) [000] d..2 24577.254952: 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
117750     ksoftirqd/0-3     (    3) [000] d.s2 24577.254963: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117751     ksoftirqd/0-3     (    3) [000] d.s3 24577.254984: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117752     ksoftirqd/0-3     (    3) [000] d..2 24577.255002: 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
117753          <idle>-0     (-----) [001] .n.1 24577.255087: cpu_idle: state=4294967295 cpu_id=1
117754  kworker/u16:10-23868 (23868) [000] d..2 24577.255114: 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
117755          <idle>-0     (-----) [001] d..2 24577.255128: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
117756  Binder:23896_5-25989 (23896) [001] .... 24577.255141: binder_transaction_received: transaction=1671621
117757          <idle>-0     (-----) [000] d..1 24577.255144: cpu_idle: state=0 cpu_id=0
117758  Binder:23896_5-25989 (23896) [001] d..1 24577.255188: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117759  Binder:23896_5-25989 (23896) [001] d..2 24577.255220: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117760  Binder:23896_5-25989 (23896) [001] d..2 24577.255294: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
117761          <idle>-0     (-----) [001] d..1 24577.255324: cpu_idle: state=2 cpu_id=1
117762          <idle>-0     (-----) [002] .n.1 24577.255540: cpu_idle: state=4294967295 cpu_id=2
117763          <idle>-0     (-----) [002] d..2 24577.255567: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117764  appEventThread-23905 (23896) [002] d..2 24577.255649: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117765          <idle>-0     (-----) [002] d..1 24577.255675: cpu_idle: state=0 cpu_id=2
117766          <idle>-0     (-----) [000] d..2 24577.261167: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117767          <idle>-0     (-----) [000] dn.3 24577.261183: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117768          <idle>-0     (-----) [000] dnH3 24577.261274: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
117769          <idle>-0     (-----) [000] dnH3 24577.261295: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
117770          <idle>-0     (-----) [000] dnH4 24577.261313: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
117771          <idle>-0     (-----) [000] dns3 24577.261326: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117772          <idle>-0     (-----) [000] dns4 24577.261350: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117773          <idle>-0     (-----) [000] dns3 24577.261354: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
117774          <idle>-0     (-----) [000] dns4 24577.261367: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
117775          <idle>-0     (-----) [000] .n.1 24577.261378: cpu_idle: state=4294967295 cpu_id=0
117776          <idle>-0     (-----) [000] d..2 24577.261400: 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
117777     ksoftirqd/0-3     (    3) [000] d..2 24577.261416: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
117778     kworker/0:1-13012 (13012) [000] d..2 24577.261459: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
117779  kworker/u16:10-23868 (23868) [000] d..2 24577.261548: 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
117780          <idle>-0     (-----) [000] d..1 24577.261567: cpu_idle: state=2 cpu_id=0
117781          <idle>-0     (-----) [003] .n.1 24577.261637: cpu_idle: state=4294967295 cpu_id=3
117782          <idle>-0     (-----) [003] d..2 24577.261663: 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
117783          <idle>-0     (-----) [002] ...1 24577.261690: cpu_idle: state=4294967295 cpu_id=2
117784          <idle>-0     (-----) [002] d..1 24577.261697: cpu_idle: state=2 cpu_id=2
117785         sugov:0-559   (  559) [003] d..2 24577.261709: 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
117786          <idle>-0     (-----) [003] d..1 24577.261730: cpu_idle: state=2 cpu_id=3
117787          <idle>-0     (-----) [007] dnh2 24577.262380: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
117788          <idle>-0     (-----) [007] .n.1 24577.262389: cpu_idle: state=4294967295 cpu_id=7
117789          <idle>-0     (-----) [007] d..2 24577.262401: 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
117790         sugov:4-560   (  560) [007] d..2 24577.262423: 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
117791          <idle>-0     (-----) [007] d..1 24577.262434: cpu_idle: state=2 cpu_id=7
117792          <idle>-0     (-----) [000] d.h2 24577.269980: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
117793          <idle>-0     (-----) [000] dnh3 24577.270008: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
117794          <idle>-0     (-----) [000] .n.1 24577.270024: cpu_idle: state=4294967295 cpu_id=0
117795          <idle>-0     (-----) [000] d..2 24577.270044: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
117796        DispSync-23904 (23896) [000] d..1 24577.270076: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117797        DispSync-23904 (23896) [000] d..2 24577.270101: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117798        DispSync-23904 (23896) [000] d..2 24577.270159: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117799          <idle>-0     (-----) [000] d..2 24577.270167: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117800          <idle>-0     (-----) [000] dn.3 24577.270180: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117801          <idle>-0     (-----) [000] d..2 24577.270193: 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
117802     ksoftirqd/0-3     (    3) [000] d.s2 24577.270204: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117803     ksoftirqd/0-3     (    3) [000] d.s3 24577.270227: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117804     ksoftirqd/0-3     (    3) [000] d..2 24577.270247: 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
117805  kworker/u16:10-23868 (23868) [000] d..2 24577.270356: 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
117806          <idle>-0     (-----) [000] d..1 24577.270382: cpu_idle: state=0 cpu_id=0
117807          <idle>-0     (-----) [002] .n.1 24577.270430: cpu_idle: state=4294967295 cpu_id=2
117808          <idle>-0     (-----) [002] d..2 24577.270467: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117809  appEventThread-23905 (23896) [002] d..3 24577.270526: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117810  appEventThread-23905 (23896) [002] d..4 24577.270570: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117811          <idle>-0     (-----) [000] .n.1 24577.270580: cpu_idle: state=4294967295 cpu_id=0
117812          <idle>-0     (-----) [000] d..2 24577.270600: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
117813  appEventThread-23905 (23896) [002] d..2 24577.270635: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117814          <idle>-0     (-----) [002] d..1 24577.270666: cpu_idle: state=0 cpu_id=2
117815 s.nexuslauncher-24827 (24827) [000] .... 24577.270864: binder_transaction: transaction=1671622 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
117816 s.nexuslauncher-24827 (24827) [000] d..4 24577.270879: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117817 s.nexuslauncher-24827 (24827) [000] d..5 24577.270919: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117818 s.nexuslauncher-24827 (24827) [000] d..2 24577.271127: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117819          <idle>-0     (-----) [000] d..1 24577.271157: cpu_idle: state=0 cpu_id=0
117820          <idle>-0     (-----) [001] .n.1 24577.271241: cpu_idle: state=4294967295 cpu_id=1
117821          <idle>-0     (-----) [001] d..2 24577.271275: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
117822  Binder:23896_5-25989 (23896) [001] .... 24577.271287: binder_transaction_received: transaction=1671622
117823  Binder:23896_5-25989 (23896) [001] d..1 24577.271341: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117824  Binder:23896_5-25989 (23896) [001] d..2 24577.271374: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117825          <idle>-0     (-----) [002] .n.1 24577.271383: cpu_idle: state=4294967295 cpu_id=2
117826          <idle>-0     (-----) [002] d..2 24577.271399: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117827  Binder:23896_5-25989 (23896) [001] d..2 24577.271447: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
117828  appEventThread-23905 (23896) [002] d..2 24577.271454: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117829          <idle>-0     (-----) [001] d..1 24577.271472: cpu_idle: state=2 cpu_id=1
117830          <idle>-0     (-----) [002] d..1 24577.271473: cpu_idle: state=0 cpu_id=2
117831          <idle>-0     (-----) [000] d..2 24577.277172: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117832          <idle>-0     (-----) [000] dn.3 24577.277186: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117833          <idle>-0     (-----) [000] .n.1 24577.277194: cpu_idle: state=4294967295 cpu_id=0
117834          <idle>-0     (-----) [000] d..2 24577.277218: 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
117835     ksoftirqd/0-3     (    3) [000] d..2 24577.277259: 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
117836          <idle>-0     (-----) [000] d..1 24577.277274: cpu_idle: state=2 cpu_id=0
117837          <idle>-0     (-----) [002] ...1 24577.277487: cpu_idle: state=4294967295 cpu_id=2
117838          <idle>-0     (-----) [002] d..1 24577.277494: cpu_idle: state=2 cpu_id=2
117839          <idle>-0     (-----) [000] d.h2 24577.286429: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
117840          <idle>-0     (-----) [000] dnh3 24577.286464: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
117841          <idle>-0     (-----) [000] dnh3 24577.286552: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
117842          <idle>-0     (-----) [000] dnh3 24577.286569: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
117843          <idle>-0     (-----) [000] dnh4 24577.286586: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
117844          <idle>-0     (-----) [000] .n.1 24577.286598: cpu_idle: state=4294967295 cpu_id=0
117845          <idle>-0     (-----) [000] d..2 24577.286617: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
117846        DispSync-23904 (23896) [000] d..1 24577.286647: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117847        DispSync-23904 (23896) [000] d..2 24577.286667: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117848        DispSync-23904 (23896) [000] d..2 24577.286725: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117849          <idle>-0     (-----) [000] d..2 24577.286732: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117850          <idle>-0     (-----) [000] dn.3 24577.286747: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117851          <idle>-0     (-----) [000] d..2 24577.286760: 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
117852     ksoftirqd/0-3     (    3) [000] d.s2 24577.286771: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117853     ksoftirqd/0-3     (    3) [000] d.s3 24577.286795: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117854     ksoftirqd/0-3     (    3) [000] d..2 24577.286814: 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
117855          <idle>-0     (-----) [003] .n.1 24577.286908: cpu_idle: state=4294967295 cpu_id=3
117856  kworker/u16:10-23868 (23868) [000] d..2 24577.286923: 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
117857          <idle>-0     (-----) [003] d..2 24577.286939: 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
117858          <idle>-0     (-----) [000] d..1 24577.286952: cpu_idle: state=0 cpu_id=0
117859          <idle>-0     (-----) [002] .n.1 24577.286992: cpu_idle: state=4294967295 cpu_id=2
117860         sugov:0-559   (  559) [003] d..2 24577.286994: 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
117861          <idle>-0     (-----) [003] d..1 24577.287020: cpu_idle: state=2 cpu_id=3
117862          <idle>-0     (-----) [002] d..2 24577.287020: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117863  appEventThread-23905 (23896) [002] d..3 24577.287079: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117864  appEventThread-23905 (23896) [002] d..4 24577.287117: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
117865          <idle>-0     (-----) [000] .n.1 24577.287127: cpu_idle: state=4294967295 cpu_id=0
117866          <idle>-0     (-----) [000] d..2 24577.287144: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
117867  appEventThread-23905 (23896) [002] d..2 24577.287176: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117868          <idle>-0     (-----) [002] d..1 24577.287203: cpu_idle: state=0 cpu_id=2
117869 s.nexuslauncher-24827 (24827) [000] .... 24577.287405: binder_transaction: transaction=1671623 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
117870 s.nexuslauncher-24827 (24827) [000] d..4 24577.287420: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117871 s.nexuslauncher-24827 (24827) [000] d..5 24577.287459: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
117872          <idle>-0     (-----) [007] dnh2 24577.287633: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
117873          <idle>-0     (-----) [007] .n.1 24577.287643: cpu_idle: state=4294967295 cpu_id=7
117874          <idle>-0     (-----) [007] d..2 24577.287656: 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
117875 s.nexuslauncher-24827 (24827) [000] d..2 24577.287663: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117876         sugov:4-560   (  560) [007] d..2 24577.287680: 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
117877          <idle>-0     (-----) [007] d..1 24577.287691: cpu_idle: state=2 cpu_id=7
117878          <idle>-0     (-----) [000] d..1 24577.287693: cpu_idle: state=0 cpu_id=0
117879          <idle>-0     (-----) [001] .n.1 24577.287777: cpu_idle: state=4294967295 cpu_id=1
117880          <idle>-0     (-----) [001] d..2 24577.287810: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
117881  Binder:23896_5-25989 (23896) [001] .... 24577.287822: binder_transaction_received: transaction=1671623
117882  Binder:23896_5-25989 (23896) [001] d..1 24577.287874: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
117883  Binder:23896_5-25989 (23896) [001] d..2 24577.287903: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
117884          <idle>-0     (-----) [002] .n.1 24577.287911: cpu_idle: state=4294967295 cpu_id=2
117885          <idle>-0     (-----) [002] d..2 24577.287926: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
117886  Binder:23896_5-25989 (23896) [001] d..2 24577.287970: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
117887  appEventThread-23905 (23896) [002] d..2 24577.287982: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117888          <idle>-0     (-----) [001] d..1 24577.287994: cpu_idle: state=2 cpu_id=1
117889          <idle>-0     (-----) [002] d..1 24577.288000: cpu_idle: state=0 cpu_id=2
117890          <idle>-0     (-----) [001] d.h3 24577.289669: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
117891          <idle>-0     (-----) [001] dnh4 24577.289751: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
117892          <idle>-0     (-----) [001] .n.1 24577.289769: cpu_idle: state=4294967295 cpu_id=1
117893          <idle>-0     (-----) [001] d..2 24577.289793: 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
117894   kworker/u17:2-23076 (23076) [001] d..2 24577.289900: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
117895   kworker/u17:2-23076 (23076) [001] d..3 24577.289928: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
117896   kworker/u17:2-23076 (23076) [001] d..2 24577.289990: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
117897     kworker/1:1-13091 (13091) [001] d..2 24577.290054: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
117898     kworker/1:1-13091 (13091) [001] d..3 24577.290127: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
117899     kworker/1:1-13091 (13091) [001] d..2 24577.290170: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
117900            adbd-23484 ( 1007) [001] d.h2 24577.290586: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
117901            adbd-23484 ( 1007) [001] dnh3 24577.290619: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
117902            adbd-23484 ( 1007) [001] d..2 24577.290637: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
117903   kworker/u17:2-23076 (23076) [001] d..2 24577.290661: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
117904   kworker/u17:2-23076 (23076) [001] d..3 24577.290674: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
117905   kworker/u17:2-23076 (23076) [001] d..2 24577.290708: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
117906     kworker/1:1-13091 (13091) [001] d..2 24577.290751: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
117907            adbd-23484 ( 1007) [001] d..2 24577.290884: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
117908            adbd-23484 ( 1007) [001] d..3 24577.290930: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
117909            adbd-23484 ( 1007) [001] d..2 24577.291156: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
117910          <idle>-0     (-----) [000] ...1 24577.293708: cpu_idle: state=4294967295 cpu_id=0
117911          <idle>-0     (-----) [000] d..1 24577.293715: cpu_idle: state=2 cpu_id=0
117912          <idle>-0     (-----) [002] ...1 24577.294015: cpu_idle: state=4294967295 cpu_id=2
117913          <idle>-0     (-----) [002] d..1 24577.294021: cpu_idle: state=2 cpu_id=2
117914            adbd-1007  ( 1007) [001] d.s2 24577.294267: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
117915            adbd-1007  ( 1007) [001] d.s3 24577.294329: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
117916            adbd-1007  ( 1007) [001] d..2 24577.296136: 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
117917  kworker/u16:10-23868 (23868) [001] d..2 24577.296388: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=adbd next_pid=13415 next_prio=120
117918          <idle>-0     (-----) [003] d.s3 24577.297279: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
117919          <idle>-0     (-----) [003] d.s4 24577.297323: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
117920          <idle>-0     (-----) [003] dns4 24577.297333: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
117921          <idle>-0     (-----) [003] .n.1 24577.297345: cpu_idle: state=4294967295 cpu_id=3
117922          <idle>-0     (-----) [003] d..2 24577.297369: 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
117923  kworker/u16:10-23868 (23868) [003] .... 24577.297494: clk_set_rate: l3_cluster0_vote_clk 480000000
117924  kworker/u16:10-23868 (23868) [003] .... 24577.297501: clk_set_rate: l3_clk 480000000
117925              sh-13415 (13415) [001] d.H2 24577.297681: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
117926              sh-13415 (13415) [001] d.H2 24577.297701: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
117927              sh-13415 (13415) [001] d.H3 24577.297731: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
117928              sh-13415 (13415) [001] d.s2 24577.297743: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
117929              sh-13415 (13415) [001] d.s3 24577.297790: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
117930  kworker/u16:10-23868 (23868) [003] d..2 24577.297843: 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
117931          <idle>-0     (-----) [003] d.s4 24577.297889: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
117932          <idle>-0     (-----) [003] d.s5 24577.297909: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
117933          <idle>-0     (-----) [003] dns5 24577.297916: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
117934          <idle>-0     (-----) [003] d..2 24577.297934: 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
117935  kworker/u16:10-23868 (23868) [003] d..2 24577.297968: 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
117936          <idle>-0     (-----) [002] .n.1 24577.297984: cpu_idle: state=4294967295 cpu_id=2
117937          <idle>-0     (-----) [003] d..1 24577.297989: cpu_idle: state=2 cpu_id=3
117938          <idle>-0     (-----) [002] d..2 24577.298008: 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
117939         sugov:0-559   (  559) [002] d..2 24577.298032: 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
117940         rcuop/0-10    (   10) [002] d..2 24577.298040: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
117941         rcuop/0-10    (   10) [002] d..3 24577.298094: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
117942         rcuop/0-10    (   10) [002] d..2 24577.298109: 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
117943     rcu_preempt-7     (    7) [002] d..2 24577.298143: 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
117944          <idle>-0     (-----) [002] d..1 24577.298162: cpu_idle: state=2 cpu_id=2
117945          <idle>-0     (-----) [007] dnh2 24577.298661: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
117946          <idle>-0     (-----) [007] .n.1 24577.298669: cpu_idle: state=4294967295 cpu_id=7
117947          <idle>-0     (-----) [007] d..2 24577.298680: 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
117948         sugov:4-560   (  560) [007] d..2 24577.298698: 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
117949          <idle>-0     (-----) [007] d..1 24577.298708: cpu_idle: state=2 cpu_id=7
117950              sh-13415 (13415) [001] d..2 24577.299167: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
117951              sh-13415 (13415) [001] d..3 24577.299216: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
117952          <idle>-0     (-----) [000] .n.1 24577.299468: cpu_idle: state=4294967295 cpu_id=0
117953          <idle>-0     (-----) [000] d..2 24577.299495: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
117954            adbd-1007  ( 1007) [000] d..1 24577.300148: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
117955            adbd-1007  ( 1007) [000] d..2 24577.300216: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
117956              sh-13415 (13415) [001] d..2 24577.300246: sched_switch: prev_comm=sh prev_pid=13415 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=23485 next_prio=120
117957            adbd-1007  ( 1007) [000] d..2 24577.300416: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=13416 next_prio=120
117958            adbd-23485 ( 1007) [001] d.h2 24577.300419: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
117959            adbd-23485 ( 1007) [001] dnh3 24577.300476: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
117960            adbd-23485 ( 1007) [001] d..2 24577.300496: 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
117961   kworker/u17:2-23076 (23076) [001] d..2 24577.300521: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
117962   kworker/u17:2-23076 (23076) [001] d..3 24577.300536: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
117963 shell svc 13415-13416 ( 1007) [000] d..2 24577.300552: sched_switch: prev_comm=shell svc 13415 prev_pid=13416 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117964   kworker/u17:2-23076 (23076) [001] d..2 24577.300570: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
117965          <idle>-0     (-----) [000] d..1 24577.300582: cpu_idle: state=0 cpu_id=0
117966     kworker/1:1-13091 (13091) [001] d..2 24577.300603: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
117967            adbd-23485 ( 1007) [001] d..2 24577.300659: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13415 next_prio=120
117968              sh-13415 (13415) [001] d.h2 24577.301106: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
117969              sh-13415 (13415) [001] d.h3 24577.301147: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
117970          <idle>-0     (-----) [000] .n.1 24577.301155: cpu_idle: state=4294967295 cpu_id=0
117971          <idle>-0     (-----) [000] d..2 24577.301179: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
117972   kworker/u17:2-23076 (23076) [000] d..2 24577.301205: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
117973   kworker/u17:2-23076 (23076) [000] d..3 24577.301224: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
117974   kworker/u17:2-23076 (23076) [000] d..2 24577.301258: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
117975     kworker/0:1-13012 (13012) [000] d..2 24577.301281: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
117976     kworker/0:1-13012 (13012) [000] d..3 24577.301339: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
117977     kworker/0:1-13012 (13012) [000] d..2 24577.301364: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
117978            adbd-23484 ( 1007) [000] d..2 24577.301520: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117979          <idle>-0     (-----) [000] d..1 24577.301538: cpu_idle: state=0 cpu_id=0
117980              sh-13415 (13415) [001] d.h2 24577.301539: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
117981              sh-13415 (13415) [001] d.h3 24577.301575: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
117982          <idle>-0     (-----) [000] .n.1 24577.301582: cpu_idle: state=4294967295 cpu_id=0
117983          <idle>-0     (-----) [000] d..2 24577.301598: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
117984   kworker/u17:2-23076 (23076) [000] d..2 24577.301616: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
117985   kworker/u17:2-23076 (23076) [000] d..3 24577.301631: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
117986   kworker/u17:2-23076 (23076) [000] d..2 24577.301662: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
117987     kworker/0:1-13012 (13012) [000] d..2 24577.301679: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
117988     kworker/0:1-13012 (13012) [000] d..3 24577.301700: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
117989     kworker/0:1-13012 (13012) [000] d..2 24577.301723: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
117990            adbd-23484 ( 1007) [000] d..2 24577.301765: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
117991            adbd-23484 ( 1007) [000] d..3 24577.301780: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
117992            adbd-23484 ( 1007) [000] d..2 24577.301871: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
117993            adbd-1007  ( 1007) [000] d..2 24577.302032: sched_waking: comm=shell svc 13415 pid=13416 prio=120 target_cpu=000
117994            adbd-1007  ( 1007) [000] d..3 24577.302050: sched_wakeup: comm=shell svc 13415 pid=13416 prio=120 target_cpu=000
117995            adbd-1007  ( 1007) [000] d..1 24577.302073: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
117996            adbd-1007  ( 1007) [000] d..2 24577.302102: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
117997              sh-13415 (13415) [001] d..2 24577.302125: sched_switch: prev_comm=sh prev_pid=13415 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=23485 next_prio=120
117998            adbd-1007  ( 1007) [000] d..2 24577.302218: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=shell svc 13415 next_pid=13416 next_prio=120
117999            adbd-23485 ( 1007) [001] d.h4 24577.302245: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
118000            adbd-23485 ( 1007) [001] d.h5 24577.302281: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
118001 shell svc 13415-13416 ( 1007) [000] d..2 24577.302298: sched_switch: prev_comm=shell svc 13415 prev_pid=13416 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
118002            adbd-23485 ( 1007) [001] d..2 24577.302324: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13415 next_prio=120
118003   kworker/u17:2-23076 (23076) [000] d..2 24577.302326: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
118004   kworker/u17:2-23076 (23076) [000] d..3 24577.302342: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
118005   kworker/u17:2-23076 (23076) [000] d..2 24577.302376: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
118006     kworker/0:1-13012 (13012) [000] d..2 24577.302390: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
118007     kworker/0:1-13012 (13012) [000] d..3 24577.302418: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
118008              sh-13415 (13415) [001] d..2 24577.302432: sched_switch: prev_comm=sh prev_pid=13415 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=23485 next_prio=120
118009     kworker/0:1-13012 (13012) [000] d..2 24577.302457: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=shell svc 13415 next_pid=13416 next_prio=120
118010            adbd-23485 ( 1007) [001] d..2 24577.302467: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13415 next_prio=120
118011 shell svc 13415-13416 ( 1007) [000] d.h1 24577.302477: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
118012 shell svc 13415-13416 ( 1007) [000] d.h2 24577.302512: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
118013 shell svc 13415-13416 ( 1007) [000] d..2 24577.302585: sched_switch: prev_comm=shell svc 13415 prev_pid=13416 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118014          <idle>-0     (-----) [000] d..1 24577.302606: cpu_idle: state=2 cpu_id=0
118015          <idle>-0     (-----) [002] .n.1 24577.302784: cpu_idle: state=4294967295 cpu_id=2
118016          <idle>-0     (-----) [002] d..2 24577.302808: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
118017        DispSync-23904 (23896) [002] d..1 24577.302844: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
118018        DispSync-23904 (23896) [002] d..2 24577.302881: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
118019        DispSync-23904 (23896) [002] d..2 24577.302928: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118020          <idle>-0     (-----) [002] d..1 24577.302942: cpu_idle: state=0 cpu_id=2
118021          <idle>-0     (-----) [003] .n.1 24577.303151: cpu_idle: state=4294967295 cpu_id=3
118022          <idle>-0     (-----) [003] d..2 24577.303182: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
118023  appEventThread-23905 (23896) [003] d..3 24577.303252: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
118024  appEventThread-23905 (23896) [003] d..4 24577.303291: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
118025  appEventThread-23905 (23896) [003] d..2 24577.303356: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
118026          <idle>-0     (-----) [003] d..1 24577.303379: cpu_idle: state=2 cpu_id=3
118027          <idle>-0     (-----) [000] .n.1 24577.303551: cpu_idle: state=4294967295 cpu_id=0
118028          <idle>-0     (-----) [000] d..2 24577.303575: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
118029 s.nexuslauncher-24827 (24827) [000] .... 24577.303937: binder_transaction: transaction=1671624 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
118030 s.nexuslauncher-24827 (24827) [000] d..4 24577.303954: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
118031 s.nexuslauncher-24827 (24827) [000] d..5 24577.304000: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
118032          <idle>-0     (-----) [002] .n.1 24577.304006: cpu_idle: state=4294967295 cpu_id=2
118033          <idle>-0     (-----) [002] d..2 24577.304021: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
118034  Binder:23896_5-25989 (23896) [002] .... 24577.304033: binder_transaction_received: transaction=1671624
118035  Binder:23896_5-25989 (23896) [002] d..1 24577.304073: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
118036  Binder:23896_5-25989 (23896) [002] d..2 24577.304094: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
118037 s.nexuslauncher-24827 (24827) [000] d..2 24577.304137: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118038  Binder:23896_5-25989 (23896) [002] d..2 24577.304156: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118039          <idle>-0     (-----) [000] d..1 24577.304162: cpu_idle: state=0 cpu_id=0
118040          <idle>-0     (-----) [002] d..1 24577.304173: cpu_idle: state=0 cpu_id=2
118041              sh-13415 (13415) [001] d.s2 24577.304265: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
118042          <idle>-0     (-----) [002] d.s2 24577.304289: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
118043              sh-13415 (13415) [001] d.s3 24577.304294: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
118044          <idle>-0     (-----) [002] dns3 24577.304314: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
118045          <idle>-0     (-----) [002] .n.1 24577.304340: cpu_idle: state=4294967295 cpu_id=2
118046          <idle>-0     (-----) [002] d..2 24577.304352: 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
118047          <idle>-0     (-----) [003] .n.1 24577.304352: cpu_idle: state=4294967295 cpu_id=3
118048          <idle>-0     (-----) [003] d..2 24577.304377: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
118049     rcu_preempt-7     (    7) [002] d..2 24577.304397: 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
118050          <idle>-0     (-----) [002] d..1 24577.304416: cpu_idle: state=2 cpu_id=2
118051  appEventThread-23905 (23896) [003] d..2 24577.304436: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
118052  kworker/u16:10-23868 (23868) [003] d..2 24577.304611: 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
118053          <idle>-0     (-----) [003] d..1 24577.304634: cpu_idle: state=0 cpu_id=3
118054          <idle>-0     (-----) [000] ...1 24577.305609: cpu_idle: state=4294967295 cpu_id=0
118055          <idle>-0     (-----) [000] d..1 24577.305617: cpu_idle: state=2 cpu_id=0
118056          <idle>-0     (-----) [003] ...1 24577.310646: cpu_idle: state=4294967295 cpu_id=3
118057          <idle>-0     (-----) [003] d..1 24577.310652: cpu_idle: state=2 cpu_id=3
118058              sh-13415 (13415) [001] d.s2 24577.310924: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
118059              sh-13415 (13415) [001] d.s3 24577.310969: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
118060          <idle>-0     (-----) [002] d.s2 24577.311222: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
118061          <idle>-0     (-----) [003] .n.1 24577.311243: cpu_idle: state=4294967295 cpu_id=3
118062          <idle>-0     (-----) [002] dns3 24577.311255: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
118063          <idle>-0     (-----) [002] .n.1 24577.311268: cpu_idle: state=4294967295 cpu_id=2
118064          <idle>-0     (-----) [003] d..2 24577.311273: 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
118065          <idle>-0     (-----) [002] d..2 24577.311289: 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
118066     rcu_preempt-7     (    7) [002] d..2 24577.311302: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
118067     rcu_preempt-7     (    7) [002] d..3 24577.311323: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
118068     rcu_preempt-7     (    7) [002] d..2 24577.311337: 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
118069         rcuop/0-10    (   10) [002] d..2 24577.311344: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
118070         rcuop/0-10    (   10) [002] d..3 24577.311369: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
118071  kworker/u16:10-23868 (23868) [003] d..2 24577.311382: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
118072         rcuop/0-10    (   10) [002] d..2 24577.311390: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
118073         rcuop/1-21    (   21) [003] d..2 24577.311418: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
118074         rcuop/0-10    (   10) [002] d..3 24577.311439: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
118075          <idle>-0     (-----) [003] d..2 24577.311454: 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
118076         rcuop/0-10    (   10) [002] d..2 24577.311472: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118077     rcu_preempt-7     (    7) [003] d..2 24577.311487: 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
118078          <idle>-0     (-----) [002] d..1 24577.311494: cpu_idle: state=2 cpu_id=2
118079          <idle>-0     (-----) [003] d..1 24577.311499: cpu_idle: state=0 cpu_id=3
118080              sh-13415 (13415) [001] d.s2 24577.314252: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
118081              sh-13415 (13415) [001] d.s3 24577.314282: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
118082          <idle>-0     (-----) [003] .n.1 24577.314289: cpu_idle: state=4294967295 cpu_id=3
118083          <idle>-0     (-----) [003] d..2 24577.314306: 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
118084  kworker/u16:10-23868 (23868) [003] d..2 24577.314584: 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
118085          <idle>-0     (-----) [003] d.s4 24577.314642: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
118086          <idle>-0     (-----) [003] d.s5 24577.314656: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
118087          <idle>-0     (-----) [003] dns5 24577.314664: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
118088          <idle>-0     (-----) [003] d..2 24577.314681: 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
118089  kworker/u16:10-23868 (23868) [003] d..2 24577.314809: 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
118090          <idle>-0     (-----) [003] d..1 24577.314823: cpu_idle: state=0 cpu_id=3
118091          <idle>-0     (-----) [003] d.H3 24577.317685: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
118092          <idle>-0     (-----) [003] d.H3 24577.317709: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
118093          <idle>-0     (-----) [003] d.H4 24577.317728: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
118094          <idle>-0     (-----) [003] d.s2 24577.317739: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
118095          <idle>-0     (-----) [003] dns3 24577.317760: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
118096          <idle>-0     (-----) [003] .n.1 24577.317788: cpu_idle: state=4294967295 cpu_id=3
118097          <idle>-0     (-----) [003] d..2 24577.317800: 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
118098     rcu_preempt-7     (    7) [003] d..2 24577.317814: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
118099     rcu_preempt-7     (    7) [003] d..3 24577.317861: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
118100     rcu_preempt-7     (    7) [003] d..2 24577.317876: 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
118101         rcuop/0-10    (   10) [003] d..2 24577.317881: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
118102         rcuop/0-10    (   10) [003] d..3 24577.317922: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
118103         rcuop/0-10    (   10) [003] d..2 24577.317962: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
118104          <idle>-0     (-----) [003] d..1 24577.317982: cpu_idle: state=0 cpu_id=3
118105          <idle>-0     (-----) [002] .n.1 24577.318025: cpu_idle: state=4294967295 cpu_id=2
118106          <idle>-0     (-----) [002] d..2 24577.318052: 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
118107         sugov:0-559   (  559) [002] .... 24577.318107: clk_set_rate: pwrcl_clk 748800000
118108         sugov:0-559   (  559) [002] .... 24577.318136: clk_set_rate: cpu3_pwrcl_clk 652800000
118109         sugov:0-559   (  559) [002] .... 24577.318151: clk_set_rate: cpu2_pwrcl_clk 652800000
118110         sugov:0-559   (  559) [002] .... 24577.318163: clk_set_rate: cpu1_pwrcl_clk 652800000
118111         sugov:0-559   (  559) [002] .... 24577.318174: clk_set_rate: cpu0_pwrcl_clk 748800000
118112         sugov:0-559   (  559) [002] .... 24577.318188: cpu_frequency: state=748800 cpu_id=0
118113         sugov:0-559   (  559) [002] .... 24577.318228: cpu_frequency: state=748800 cpu_id=1
118114         sugov:0-559   (  559) [002] .... 24577.318234: cpu_frequency: state=748800 cpu_id=2
118115         sugov:0-559   (  559) [002] .... 24577.318239: cpu_frequency: state=748800 cpu_id=3
118116         sugov:0-559   (  559) [002] d..2 24577.318263: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
118117         rcuop/1-21    (   21) [002] d..2 24577.318374: 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
118118          <idle>-0     (-----) [002] d..1 24577.318392: cpu_idle: state=0 cpu_id=2
118119          <idle>-0     (-----) [007] dnh2 24577.318773: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
118120          <idle>-0     (-----) [007] .n.1 24577.318782: cpu_idle: state=4294967295 cpu_id=7
118121          <idle>-0     (-----) [007] d..2 24577.318794: 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
118122         sugov:4-560   (  560) [007] d..2 24577.318819: 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
118123          <idle>-0     (-----) [007] d..1 24577.318832: cpu_idle: state=2 cpu_id=7
118124          <idle>-0     (-----) [002] d.h2 24577.318969: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
118125          <idle>-0     (-----) [002] dnh3 24577.318990: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
118126          <idle>-0     (-----) [002] .n.1 24577.319034: cpu_idle: state=4294967295 cpu_id=2
118127          <idle>-0     (-----) [002] d..2 24577.319047: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
118128        DispSync-23904 (23896) [002] d..1 24577.319083: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
118129        DispSync-23904 (23896) [002] d..2 24577.319101: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
118130          <idle>-0     (-----) [003] .n.1 24577.319109: cpu_idle: state=4294967295 cpu_id=3
118131          <idle>-0     (-----) [003] d..2 24577.319123: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
118132        DispSync-23904 (23896) [002] d..2 24577.319143: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118133          <idle>-0     (-----) [002] d..1 24577.319159: cpu_idle: state=2 cpu_id=2
118134  appEventThread-23905 (23896) [003] d..3 24577.319185: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
118135  appEventThread-23905 (23896) [003] d..4 24577.319210: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
118136  appEventThread-23905 (23896) [003] d..2 24577.319256: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
118137          <idle>-0     (-----) [003] d..1 24577.319275: cpu_idle: state=0 cpu_id=3
118138          <idle>-0     (-----) [000] .n.1 24577.319498: cpu_idle: state=4294967295 cpu_id=0
118139          <idle>-0     (-----) [000] d..2 24577.319532: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
118140              sh-13415 (13415) [001] d..2 24577.319807: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
118141              sh-13415 (13415) [001] d..3 24577.319866: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
118142 s.nexuslauncher-24827 (24827) [000] .... 24577.319924: binder_transaction: transaction=1671625 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
118143 s.nexuslauncher-24827 (24827) [000] d..4 24577.319944: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
118144 s.nexuslauncher-24827 (24827) [000] d..5 24577.319979: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
118145 s.nexuslauncher-24827 (24827) [000] d..2 24577.320107: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
118146         rcuop/0-10    (   10) [000] d..2 24577.320116: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
118147         rcuop/0-10    (   10) [000] d..3 24577.320163: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
118148         rcuop/0-10    (   10) [000] d..2 24577.320175: 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
118149     rcu_preempt-7     (    7) [000] d..2 24577.320207: 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
118150          <idle>-0     (-----) [000] d..1 24577.320226: cpu_idle: state=0 cpu_id=0
118151          <idle>-0     (-----) [002] .n.1 24577.320260: cpu_idle: state=4294967295 cpu_id=2
118152          <idle>-0     (-----) [002] d..2 24577.320283: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
118153  Binder:23896_5-25989 (23896) [002] .... 24577.320296: binder_transaction_received: transaction=1671625
118154  Binder:23896_5-25989 (23896) [002] d..1 24577.320350: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
118155  Binder:23896_5-25989 (23896) [002] d..2 24577.320373: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
118156          <idle>-0     (-----) [003] .n.1 24577.320381: cpu_idle: state=4294967295 cpu_id=3
118157          <idle>-0     (-----) [003] d..2 24577.320393: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
118158  Binder:23896_5-25989 (23896) [002] d..2 24577.320438: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118159  appEventThread-23905 (23896) [003] d..2 24577.320443: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
118160          <idle>-0     (-----) [003] d..1 24577.320456: cpu_idle: state=2 cpu_id=3
118161          <idle>-0     (-----) [002] d..1 24577.320459: cpu_idle: state=0 cpu_id=2
118162          <idle>-0     (-----) [000] d.s2 24577.324253: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
118163              sh-13415 (13415) [001] d.s2 24577.324256: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
118164          <idle>-0     (-----) [000] dns3 24577.324272: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
118165          <idle>-0     (-----) [000] .n.1 24577.324297: cpu_idle: state=4294967295 cpu_id=0
118166              sh-13415 (13415) [001] d.s3 24577.324311: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
118167          <idle>-0     (-----) [000] d..2 24577.324322: 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
118168              sh-13415 (13415) [001] d.s2 24577.324335: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
118169     rcu_preempt-7     (    7) [000] d..2 24577.324346: 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
118170              sh-13415 (13415) [001] d.s3 24577.324367: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
118171  kworker/u16:10-23868 (23868) [000] .... 24577.324419: clk_set_rate: l3_cluster0_vote_clk 576000000
118172  kworker/u16:10-23868 (23868) [000] .... 24577.324431: clk_set_rate: l3_clk 576000000
118173  kworker/u16:10-23868 (23868) [000] d..2 24577.324749: 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
118174     rcu_preempt-7     (    7) [000] d..2 24577.324757: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
118175     rcu_preempt-7     (    7) [000] d..3 24577.324777: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
118176     rcu_preempt-7     (    7) [000] d..2 24577.324791: 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
118177         rcuop/0-10    (   10) [000] d..2 24577.324795: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
118178         rcuop/0-10    (   10) [000] d..3 24577.324835: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
118179         rcuop/0-10    (   10) [000] d..2 24577.324839: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
118180         rcuop/0-10    (   10) [000] d..3 24577.324853: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
118181         rcuop/0-10    (   10) [000] d..2 24577.324863: 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
118182         rcuop/1-21    (   21) [000] d..2 24577.324884: 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
118183              sh-13415 (13415) [001] d..2 24577.324908: sched_waking: comm=shell svc 13415 pid=13416 prio=120 target_cpu=000
118184     rcu_preempt-7     (    7) [000] d..2 24577.324916: 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
118185          <idle>-0     (-----) [000] d..1 24577.324932: cpu_idle: state=0 cpu_id=0
118186              sh-13415 (13415) [001] d..3 24577.324948: sched_wakeup: comm=shell svc 13415 pid=13416 prio=120 target_cpu=001
118187              sh-13415 (13415) [001] d..2 24577.324990: sched_switch: prev_comm=sh prev_pid=13415 prev_prio=120 prev_state=S ==> next_comm=shell svc 13415 next_pid=13416 next_prio=120
118188 shell svc 13415-13416 ( 1007) [001] d..2 24577.325051: sched_waking: comm=sh pid=13415 prio=120 target_cpu=001
118189 shell svc 13415-13416 ( 1007) [001] d..3 24577.325068: sched_wakeup: comm=sh pid=13415 prio=120 target_cpu=001
118190 shell svc 13415-13416 ( 1007) [001] d..2 24577.325099: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
118191 shell svc 13415-13416 ( 1007) [001] d..3 24577.325137: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
118192          <idle>-0     (-----) [000] .n.1 24577.325144: cpu_idle: state=4294967295 cpu_id=0
118193          <idle>-0     (-----) [000] d..2 24577.325161: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
118194 shell svc 13415-13416 ( 1007) [001] d..2 24577.325172: sched_switch: prev_comm=shell svc 13415 prev_pid=13416 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13415 next_prio=120
118195              sh-13415 (13415) [001] d..2 24577.325203: sched_switch: prev_comm=sh prev_pid=13415 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118196          <idle>-0     (-----) [001] d..1 24577.325232: cpu_idle: state=0 cpu_id=1
118197            adbd-1007  ( 1007) [000] d..1 24577.325384: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
118198            adbd-1007  ( 1007) [000] d..2 24577.325439: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
118199            adbd-1007  ( 1007) [000] d..2 24577.325532: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
118200          <idle>-0     (-----) [003] d.s3 24577.325614: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
118201          <idle>-0     (-----) [003] d.s4 24577.325645: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
118202          <idle>-0     (-----) [003] dns4 24577.325653: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
118203          <idle>-0     (-----) [003] .n.1 24577.325662: cpu_idle: state=4294967295 cpu_id=3
118204            adbd-23485 ( 1007) [000] d..2 24577.325670: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118205          <idle>-0     (-----) [001] d.h3 24577.325672: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
118206          <idle>-0     (-----) [003] d..2 24577.325679: 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
118207          <idle>-0     (-----) [000] d..1 24577.325687: cpu_idle: state=0 cpu_id=0
118208          <idle>-0     (-----) [001] dnh4 24577.325718: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118209  kworker/u16:10-23868 (23868) [003] d..2 24577.325720: 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
118210          <idle>-0     (-----) [001] .n.1 24577.325730: cpu_idle: state=4294967295 cpu_id=1
118211          <idle>-0     (-----) [003] d..1 24577.325735: cpu_idle: state=2 cpu_id=3
118212          <idle>-0     (-----) [001] d..2 24577.325746: 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
118213   kworker/u17:2-23076 (23076) [001] d..2 24577.325775: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118214   kworker/u17:2-23076 (23076) [001] d..3 24577.325790: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118215   kworker/u17:2-23076 (23076) [001] d..2 24577.325824: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
118216     kworker/1:1-13091 (13091) [001] d..2 24577.325842: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
118217     kworker/1:1-13091 (13091) [001] d..3 24577.325858: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
118218          <idle>-0     (-----) [000] .n.1 24577.325864: cpu_idle: state=4294967295 cpu_id=0
118219          <idle>-0     (-----) [000] d..2 24577.325879: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
118220     kworker/1:1-13091 (13091) [001] d..2 24577.325888: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118221          <idle>-0     (-----) [001] d..1 24577.325904: cpu_idle: state=0 cpu_id=1
118222            adbd-23485 ( 1007) [000] d..2 24577.325981: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118223          <idle>-0     (-----) [000] d..1 24577.325994: cpu_idle: state=0 cpu_id=0
118224          <idle>-0     (-----) [001] d.h3 24577.325998: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118225          <idle>-0     (-----) [001] dnh4 24577.326010: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118226          <idle>-0     (-----) [001] .n.1 24577.326020: cpu_idle: state=4294967295 cpu_id=1
118227          <idle>-0     (-----) [001] d..2 24577.326035: 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
118228   kworker/u17:2-23076 (23076) [001] d..2 24577.326051: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118229   kworker/u17:2-23076 (23076) [001] d..3 24577.326061: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118230   kworker/u17:2-23076 (23076) [001] d..2 24577.326092: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
118231     kworker/1:1-13091 (13091) [001] d..2 24577.326102: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
118232     kworker/1:1-13091 (13091) [001] d..3 24577.326119: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
118233          <idle>-0     (-----) [000] .n.1 24577.326125: cpu_idle: state=4294967295 cpu_id=0
118234          <idle>-0     (-----) [000] d..2 24577.326139: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
118235     kworker/1:1-13091 (13091) [001] d..2 24577.326146: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118236          <idle>-0     (-----) [001] d..1 24577.326161: cpu_idle: state=0 cpu_id=1
118237            adbd-23485 ( 1007) [000] d..2 24577.326247: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118238          <idle>-0     (-----) [000] d..1 24577.326267: cpu_idle: state=0 cpu_id=0
118239          <idle>-0     (-----) [001] d.h3 24577.326275: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118240          <idle>-0     (-----) [001] dnh4 24577.326287: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118241          <idle>-0     (-----) [001] .n.1 24577.326296: cpu_idle: state=4294967295 cpu_id=1
118242          <idle>-0     (-----) [001] d..2 24577.326309: 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
118243   kworker/u17:2-23076 (23076) [001] d..2 24577.326324: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118244   kworker/u17:2-23076 (23076) [001] d..3 24577.326334: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118245   kworker/u17:2-23076 (23076) [001] d..2 24577.326363: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
118246     kworker/1:1-13091 (13091) [001] d..2 24577.326388: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
118247     kworker/1:1-13091 (13091) [001] d..3 24577.326417: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
118248          <idle>-0     (-----) [000] .n.1 24577.326423: cpu_idle: state=4294967295 cpu_id=0
118249          <idle>-0     (-----) [000] d..2 24577.326438: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
118250     kworker/1:1-13091 (13091) [001] d..2 24577.326447: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118251          <idle>-0     (-----) [001] d..1 24577.326464: cpu_idle: state=0 cpu_id=1
118252          <idle>-0     (-----) [002] ...1 24577.326469: cpu_idle: state=4294967295 cpu_id=2
118253          <idle>-0     (-----) [002] d..1 24577.326475: cpu_idle: state=2 cpu_id=2
118254            adbd-23484 ( 1007) [000] d..2 24577.326475: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
118255            adbd-23484 ( 1007) [000] d..3 24577.326491: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
118256            adbd-23484 ( 1007) [000] d..2 24577.326582: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
118257            adbd-1007  ( 1007) [000] d..2 24577.326752: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118258          <idle>-0     (-----) [000] d..1 24577.326769: cpu_idle: state=0 cpu_id=0
118259          <idle>-0     (-----) [001] d.h3 24577.326848: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118260          <idle>-0     (-----) [001] dnh4 24577.326860: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118261          <idle>-0     (-----) [001] .n.1 24577.326870: cpu_idle: state=4294967295 cpu_id=1
118262          <idle>-0     (-----) [001] d..2 24577.326884: 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
118263   kworker/u17:2-23076 (23076) [001] d..2 24577.326901: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118264   kworker/u17:2-23076 (23076) [001] d..3 24577.326911: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118265   kworker/u17:2-23076 (23076) [001] d..2 24577.326941: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
118266     kworker/1:1-13091 (13091) [001] d..2 24577.326956: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
118267     kworker/1:1-13091 (13091) [001] d..3 24577.326973: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
118268          <idle>-0     (-----) [000] .n.1 24577.326979: cpu_idle: state=4294967295 cpu_id=0
118269          <idle>-0     (-----) [000] d..2 24577.326995: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
118270     kworker/1:1-13091 (13091) [001] d..2 24577.327000: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118271          <idle>-0     (-----) [001] d..1 24577.327016: cpu_idle: state=0 cpu_id=1
118272            adbd-23484 ( 1007) [000] d..2 24577.327103: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118273          <idle>-0     (-----) [001] d.h3 24577.327108: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118274          <idle>-0     (-----) [000] d..1 24577.327117: cpu_idle: state=0 cpu_id=0
118275          <idle>-0     (-----) [001] dnh4 24577.327120: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118276          <idle>-0     (-----) [001] .n.1 24577.327130: cpu_idle: state=4294967295 cpu_id=1
118277          <idle>-0     (-----) [001] d..2 24577.327143: 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
118278   kworker/u17:2-23076 (23076) [001] d..2 24577.327159: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118279   kworker/u17:2-23076 (23076) [001] d..3 24577.327170: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118280   kworker/u17:2-23076 (23076) [001] d..2 24577.327199: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
118281     kworker/1:1-13091 (13091) [001] d..2 24577.327225: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
118282     kworker/1:1-13091 (13091) [001] d..3 24577.327241: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
118283          <idle>-0     (-----) [000] .n.1 24577.327247: cpu_idle: state=4294967295 cpu_id=0
118284          <idle>-0     (-----) [000] d..2 24577.327261: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
118285     kworker/1:1-13091 (13091) [001] d..2 24577.327269: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118286            adbd-23484 ( 1007) [000] d..2 24577.327282: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
118287          <idle>-0     (-----) [001] d..1 24577.327284: cpu_idle: state=0 cpu_id=1
118288            adbd-23484 ( 1007) [000] d..3 24577.327297: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
118289            adbd-23484 ( 1007) [000] d..2 24577.327395: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
118290            adbd-1007  ( 1007) [000] d..2 24577.327494: sched_waking: comm=shell svc 13415 pid=13416 prio=120 target_cpu=001
118291            adbd-1007  ( 1007) [000] d..3 24577.327519: sched_wakeup: comm=shell svc 13415 pid=13416 prio=120 target_cpu=000
118292            adbd-1007  ( 1007) [000] d..1 24577.327541: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
118293            adbd-1007  ( 1007) [000] d..2 24577.327572: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
118294          <idle>-0     (-----) [001] .n.1 24577.327579: cpu_idle: state=4294967295 cpu_id=1
118295          <idle>-0     (-----) [001] d..2 24577.327597: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
118296            adbd-1007  ( 1007) [000] d..2 24577.327678: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=shell svc 13415 next_pid=13416 next_prio=120
118297            adbd-23485 ( 1007) [001] d..2 24577.327713: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118298 shell svc 13415-13416 ( 1007) [000] d..2 24577.327725: sched_waking: comm=sh pid=13415 prio=120 target_cpu=001
118299          <idle>-0     (-----) [001] d.h4 24577.327739: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118300 shell svc 13415-13416 ( 1007) [000] d..3 24577.327748: sched_wakeup: comm=sh pid=13415 prio=120 target_cpu=000
118301          <idle>-0     (-----) [001] dnh5 24577.327759: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118302          <idle>-0     (-----) [001] d..2 24577.327777: 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
118303   kworker/u17:2-23076 (23076) [001] d..2 24577.327792: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118304   kworker/u17:2-23076 (23076) [001] d..3 24577.327802: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118305 shell svc 13415-13416 ( 1007) [000] d..2 24577.327805: sched_switch: prev_comm=shell svc 13415 prev_pid=13416 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13415 next_prio=120
118306   kworker/u17:2-23076 (23076) [001] d..2 24577.327831: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
118307     kworker/1:1-13091 (13091) [001] d..2 24577.327843: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
118308     kworker/1:1-13091 (13091) [001] d..3 24577.327860: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
118309     kworker/1:1-13091 (13091) [001] d..2 24577.327881: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
118310            adbd-23485 ( 1007) [001] d..2 24577.327925: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118311          <idle>-0     (-----) [001] d..1 24577.327942: cpu_idle: state=0 cpu_id=1
118312          <idle>-0     (-----) [001] .n.1 24577.329156: cpu_idle: state=4294967295 cpu_id=1
118313          <idle>-0     (-----) [001] d..2 24577.329170: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=13417 next_prio=120
118314              sh-13415 (13415) [000] d..2 24577.329324: sched_switch: prev_comm=sh prev_pid=13415 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118315          <idle>-0     (-----) [000] d..1 24577.329348: cpu_idle: state=0 cpu_id=0
118316              sh-13417 (13417) [001] ...1 24577.329773: tracing_mark_write: trace_event_clock_sync: name=dc63ee24-d40b-47fa-b141-a53900002c9c
118317              sh-13417 (13417) [001] d..3 24577.330868: sched_waking: comm=sh pid=13415 prio=120 target_cpu=000
118318              sh-13417 (13417) [001] d..4 24577.330899: sched_wakeup: comm=sh pid=13415 prio=120 target_cpu=000
118319          <idle>-0     (-----) [000] dns2 24577.330925: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
118320          <idle>-0     (-----) [000] dns3 24577.330977: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
118321              sh-13417 (13417) [001] d..2 24577.330989: sched_switch: prev_comm=sh prev_pid=13417 prev_prio=120 prev_state=x ==> next_comm=rcu_preempt next_pid=7 next_prio=120
118322          <idle>-0     (-----) [000] dns3 24577.331002: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
118323          <idle>-0     (-----) [000] dns4 24577.331023: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
118324          <idle>-0     (-----) [000] .n.1 24577.331036: cpu_idle: state=4294967295 cpu_id=0
118325     rcu_preempt-7     (    7) [001] d..2 24577.331039: 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
118326          <idle>-0     (-----) [000] d..2 24577.331048: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=13415 next_prio=120
118327          <idle>-0     (-----) [001] d..1 24577.331059: cpu_idle: state=2 cpu_id=1
118328              sh-13415 (13415) [000] d..2 24577.331277: sched_waking: comm=shell svc 13415 pid=13416 prio=120 target_cpu=000
118329          <idle>-0     (-----) [002] .n.1 24577.331287: cpu_idle: state=4294967295 cpu_id=2
118330              sh-13415 (13415) [000] d..3 24577.331293: sched_wakeup: comm=shell svc 13415 pid=13416 prio=120 target_cpu=000
118331          <idle>-0     (-----) [002] d..2 24577.331312: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
118332     kworker/2:0-12895 (12895) [002] d..2 24577.331404: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=shell svc 13415 next_pid=13416 next_prio=120
118333 shell svc 13415-13416 ( 1007) [002] d..2 24577.331458: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
118334 shell svc 13415-13416 ( 1007) [002] dn.3 24577.331481: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
118335 shell svc 13415-13416 ( 1007) [002] d..2 24577.331492: sched_switch: prev_comm=shell svc 13415 prev_pid=13416 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=1007 next_prio=120
118336            adbd-1007  ( 1007) [002] d..1 24577.331604: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
118337            adbd-1007  ( 1007) [002] d..2 24577.331650: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
118338            adbd-1007  ( 1007) [002] d..2 24577.331724: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=shell svc 13415 next_pid=13416 next_prio=120
118339 shell svc 13415-13416 ( 1007) [002] d..2 24577.331784: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
118340 shell svc 13415-13416 ( 1007) [002] d..3 24577.331841: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
118341              sh-13415 (13415) [000] d..2 24577.331862: sched_switch: prev_comm=sh prev_pid=13415 prev_prio=120 prev_state=R+ ==> next_comm=rcuop/2 next_pid=29 next_prio=120
118342         rcuop/2-29    (   29) [000] d..2 24577.331886: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13415 next_prio=120
118343          <idle>-0     (-----) [001] .n.1 24577.331920: cpu_idle: state=4294967295 cpu_id=1
118344          <idle>-0     (-----) [004] d.s3 24577.331927: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
118345 shell svc 13415-13416 ( 1007) [002] d..2 24577.331939: sched_switch: prev_comm=shell svc 13415 prev_pid=13416 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118346          <idle>-0     (-----) [001] d..2 24577.331943: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
118347          <idle>-0     (-----) [004] dns4 24577.331944: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
118348          <idle>-0     (-----) [002] d..1 24577.331960: cpu_idle: state=0 cpu_id=2
118349          <idle>-0     (-----) [004] .n.1 24577.331963: cpu_idle: state=4294967295 cpu_id=4
118350          <idle>-0     (-----) [004] d..2 24577.331976: 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
118351     kworker/4:0-24269 (24269) [004] d..2 24577.332003: 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
118352          <idle>-0     (-----) [004] d..1 24577.332017: cpu_idle: state=2 cpu_id=4
118353            adbd-23485 ( 1007) [001] d..2 24577.332063: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118354          <idle>-0     (-----) [001] d.h4 24577.332096: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118355          <idle>-0     (-----) [001] dnh5 24577.332119: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118356          <idle>-0     (-----) [001] d..2 24577.332136: 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
118357   kworker/u17:2-23076 (23076) [001] d..2 24577.332153: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118358   kworker/u17:2-23076 (23076) [001] d..3 24577.332166: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118359   kworker/u17:2-23076 (23076) [001] d..2 24577.332195: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
118360     kworker/1:1-13091 (13091) [001] d..2 24577.332206: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
118361     kworker/1:1-13091 (13091) [001] d..3 24577.332252: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
118362              sh-13415 (13415) [000] d..2 24577.332265: sched_switch: prev_comm=sh prev_pid=13415 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=23485 next_prio=120
118363     kworker/1:1-13091 (13091) [001] d..2 24577.332304: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118364          <idle>-0     (-----) [001] d..1 24577.332320: cpu_idle: state=0 cpu_id=1
118365            adbd-23485 ( 1007) [000] d..2 24577.332383: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13415 next_prio=120
118366          <idle>-0     (-----) [001] d.h3 24577.332393: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118367          <idle>-0     (-----) [001] dnh4 24577.332404: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118368          <idle>-0     (-----) [001] .n.1 24577.332414: cpu_idle: state=4294967295 cpu_id=1
118369          <idle>-0     (-----) [001] d..2 24577.332427: 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
118370   kworker/u17:2-23076 (23076) [001] d..2 24577.332442: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118371          <idle>-0     (-----) [005] ...1 24577.332445: cpu_idle: state=4294967295 cpu_id=5
118372              sh-13415 (13415) [000] d..4 24577.332451: sched_waking: comm=shell svc 13415 pid=13416 prio=120 target_cpu=002
118373   kworker/u17:2-23076 (23076) [001] d..3 24577.332452: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118374          <idle>-0     (-----) [005] d..1 24577.332457: cpu_idle: state=2 cpu_id=5
118375              sh-13415 (13415) [000] d..5 24577.332472: sched_wakeup: comm=shell svc 13415 pid=13416 prio=120 target_cpu=000
118376   kworker/u17:2-23076 (23076) [001] d..2 24577.332479: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
118377              sh-13415 (13415) [000] d..2 24577.332484: sched_switch: prev_comm=sh prev_pid=13415 prev_prio=120 prev_state=x ==> next_comm=shell svc 13415 next_pid=13416 next_prio=120
118378     kworker/1:1-13091 (13091) [001] d..2 24577.332490: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
118379          <idle>-0     (-----) [006] ...1 24577.332507: cpu_idle: state=4294967295 cpu_id=6
118380          <idle>-0     (-----) [006] d..1 24577.332517: cpu_idle: state=2 cpu_id=6
118381     kworker/1:1-13091 (13091) [001] d..3 24577.332534: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
118382     kworker/1:1-13091 (13091) [001] d..2 24577.332552: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
118383            adbd-23485 ( 1007) [001] d..2 24577.332600: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118384          <idle>-0     (-----) [001] d..1 24577.332615: cpu_idle: state=0 cpu_id=1
118385 shell svc 13415-13416 ( 1007) [000] d..2 24577.332630: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
118386          <idle>-0     (-----) [001] d.h3 24577.332667: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118387 shell svc 13415-13416 ( 1007) [000] d..3 24577.332680: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
118388          <idle>-0     (-----) [001] dnh4 24577.332699: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118389          <idle>-0     (-----) [001] .n.1 24577.332712: cpu_idle: state=4294967295 cpu_id=1
118390          <idle>-0     (-----) [001] d..2 24577.332725: 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
118391   kworker/u17:2-23076 (23076) [001] d..2 24577.332740: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118392   kworker/u17:2-23076 (23076) [001] d..3 24577.332751: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118393   kworker/u17:2-23076 (23076) [001] d..2 24577.332779: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
118394     kworker/1:1-13091 (13091) [001] d..2 24577.332793: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
118395     kworker/1:1-13091 (13091) [001] d..3 24577.332836: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
118396     kworker/1:1-13091 (13091) [001] d..2 24577.332853: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
118397 shell svc 13415-13416 ( 1007) [000] d..2 24577.332923: sched_switch: prev_comm=shell svc 13415 prev_pid=13416 prev_prio=120 prev_state=x ==> next_comm=adbd next_pid=1007 next_prio=120
118398            adbd-23484 ( 1007) [001] d..2 24577.332974: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118399          <idle>-0     (-----) [001] d..1 24577.332991: cpu_idle: state=0 cpu_id=1
118400            adbd-1007  ( 1007) [000] d..1 24577.333017: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
118401            adbd-1007  ( 1007) [000] d..2 24577.333037: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
118402          <idle>-0     (-----) [001] .n.1 24577.333043: cpu_idle: state=4294967295 cpu_id=1
118403          <idle>-0     (-----) [001] d..2 24577.333057: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
118404            adbd-23485 ( 1007) [001] d..2 24577.333147: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118405          <idle>-0     (-----) [001] d.h4 24577.333173: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118406          <idle>-0     (-----) [001] dnh5 24577.333185: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118407            adbd-1007  ( 1007) [000] d..2 24577.333193: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118408          <idle>-0     (-----) [001] d..2 24577.333201: 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
118409   kworker/u17:2-23076 (23076) [001] d..2 24577.333215: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118410          <idle>-0     (-----) [000] d..1 24577.333220: cpu_idle: state=0 cpu_id=0
118411   kworker/u17:2-23076 (23076) [001] d..3 24577.333226: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118412   kworker/u17:2-23076 (23076) [001] d..2 24577.333256: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
118413     kworker/1:1-13091 (13091) [001] d..2 24577.333267: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
118414     kworker/1:1-13091 (13091) [001] d..3 24577.333285: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
118415     kworker/1:1-13091 (13091) [001] d..2 24577.333305: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
118416            adbd-23485 ( 1007) [001] d..2 24577.333401: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118417          <idle>-0     (-----) [001] d.h4 24577.333427: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118418          <idle>-0     (-----) [001] dnh5 24577.333439: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118419          <idle>-0     (-----) [001] d..2 24577.333454: 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
118420   kworker/u17:2-23076 (23076) [001] d..2 24577.333470: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118421   kworker/u17:2-23076 (23076) [001] d..3 24577.333482: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118422   kworker/u17:2-23076 (23076) [001] d..2 24577.333511: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
118423     kworker/1:1-13091 (13091) [001] d..2 24577.333522: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
118424     kworker/1:1-13091 (13091) [001] d..3 24577.333540: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
118425     kworker/1:1-13091 (13091) [001] d..2 24577.333557: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
118426            adbd-23485 ( 1007) [001] d.h2 24577.333612: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118427            adbd-23485 ( 1007) [001] dnh3 24577.333632: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118428            adbd-23485 ( 1007) [001] d..2 24577.333646: 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
118429   kworker/u17:2-23076 (23076) [001] d..2 24577.333663: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118430   kworker/u17:2-23076 (23076) [001] d..3 24577.333673: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118431   kworker/u17:2-23076 (23076) [001] d..2 24577.333703: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
118432     kworker/1:1-13091 (13091) [001] d..2 24577.333717: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
118433     kworker/1:1-13091 (13091) [001] d..3 24577.333734: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
118434     kworker/1:1-13091 (13091) [001] d..2 24577.333754: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
118435            adbd-23484 ( 1007) [001] d..2 24577.333777: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
118436            adbd-23484 ( 1007) [001] d..3 24577.333795: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
118437          <idle>-0     (-----) [000] .n.1 24577.333803: cpu_idle: state=4294967295 cpu_id=0
118438          <idle>-0     (-----) [000] d..2 24577.333818: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
118439            adbd-23484 ( 1007) [001] d..2 24577.333884: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
118440            adbd-1007  ( 1007) [000] d..2 24577.333943: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118441            adbd-23485 ( 1007) [001] d..2 24577.333950: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118442          <idle>-0     (-----) [000] d..1 24577.333961: cpu_idle: state=0 cpu_id=0
118443          <idle>-0     (-----) [001] d.h4 24577.333976: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118444          <idle>-0     (-----) [001] dnh5 24577.333988: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118445          <idle>-0     (-----) [001] d..2 24577.334003: 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
118446   kworker/u17:2-23076 (23076) [001] d..2 24577.334018: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118447   kworker/u17:2-23076 (23076) [001] d..3 24577.334029: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118448   kworker/u17:2-23076 (23076) [001] d..2 24577.334058: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
118449     kworker/1:1-13091 (13091) [001] d..2 24577.334069: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
118450     kworker/1:1-13091 (13091) [001] d..3 24577.334086: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
118451     kworker/1:1-13091 (13091) [001] d..2 24577.334106: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
118452            adbd-23485 ( 1007) [001] d.h3 24577.334189: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118453            adbd-23485 ( 1007) [001] dnh4 24577.334209: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118454            adbd-23485 ( 1007) [001] dns3 24577.334250: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
118455            adbd-23485 ( 1007) [001] dns4 24577.334293: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
118456            adbd-23485 ( 1007) [001] dns3 24577.334305: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118457            adbd-23485 ( 1007) [001] dns4 24577.334316: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118458            adbd-23485 ( 1007) [001] dns3 24577.334329: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
118459            adbd-23485 ( 1007) [001] dns4 24577.334345: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
118460            adbd-23485 ( 1007) [001] d..2 24577.334360: 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
118461   kworker/u17:2-23076 (23076) [001] d.h2 24577.334414: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
118462   kworker/u17:2-23076 (23076) [001] d.h3 24577.334470: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
118463          <idle>-0     (-----) [000] .n.1 24577.334478: cpu_idle: state=4294967295 cpu_id=0
118464          <idle>-0     (-----) [000] d..2 24577.334499: 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
118465   kworker/u17:2-23076 (23076) [001] d..2 24577.334519: 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
118466     rcu_preempt-7     (    7) [001] d..2 24577.334526: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
118467   kworker/u17:1-18284 (18284) [000] d..2 24577.334543: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118468     rcu_preempt-7     (    7) [001] d..3 24577.334555: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
118469          <idle>-0     (-----) [000] d..2 24577.334564: 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
118470         rcuop/0-10    (   10) [000] d..2 24577.334573: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
118471     rcu_preempt-7     (    7) [001] d..2 24577.334582: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
118472         rcuop/0-10    (   10) [000] d..3 24577.334598: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
118473         rcuop/0-10    (   10) [000] d..2 24577.334612: 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
118474     kworker/1:1-13091 (13091) [001] d..2 24577.334619: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
118475         rcuop/1-21    (   21) [000] d..2 24577.334659: 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
118476     kworker/1:1-13091 (13091) [001] d..3 24577.334670: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
118477          <idle>-0     (-----) [000] d..2 24577.334680: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
118478            adbd-23484 ( 1007) [000] d..2 24577.334708: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
118479     kworker/1:1-13091 (13091) [001] d..2 24577.334711: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
118480            adbd-23484 ( 1007) [000] d..3 24577.334722: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
118481            adbd-23485 ( 1007) [001] d..2 24577.334813: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
118482  kworker/u16:10-23868 (23868) [001] d.h4 24577.334838: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118483            adbd-23484 ( 1007) [000] d..2 24577.334846: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
118484  kworker/u16:10-23868 (23868) [001] dnh5 24577.334857: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118485  kworker/u16:10-23868 (23868) [001] d..2 24577.334870: 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
118486   kworker/u17:2-23076 (23076) [001] d..2 24577.334886: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118487   kworker/u17:2-23076 (23076) [001] d..3 24577.334897: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118488   kworker/u17:2-23076 (23076) [001] d..2 24577.334925: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
118489     kworker/1:1-13091 (13091) [001] d..2 24577.334936: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
118490     kworker/1:1-13091 (13091) [001] d..3 24577.334952: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
118491     kworker/1:1-13091 (13091) [001] d..2 24577.334970: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
118492            adbd-1007  ( 1007) [000] d..2 24577.334975: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118493            adbd-23485 ( 1007) [001] d..2 24577.334991: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
118494          <idle>-0     (-----) [000] d..1 24577.334996: cpu_idle: state=0 cpu_id=0
118495  kworker/u16:10-23868 (23868) [001] .... 24577.335084: clk_set_rate: l3_cluster0_vote_clk 480000000
118496  kworker/u16:10-23868 (23868) [001] .... 24577.335102: clk_set_rate: l3_clk 480000000
118497  kworker/u16:10-23868 (23868) [001] d..2 24577.335169: 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
118498          <idle>-0     (-----) [001] d..1 24577.335188: cpu_idle: state=0 cpu_id=1
118499          <idle>-0     (-----) [002] d.h2 24577.335414: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
118500          <idle>-0     (-----) [002] dnh3 24577.335436: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
118501          <idle>-0     (-----) [002] .n.1 24577.335447: cpu_idle: state=4294967295 cpu_id=2
118502          <idle>-0     (-----) [002] d..2 24577.335461: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
118503        DispSync-23904 (23896) [002] d..1 24577.335502: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
118504        DispSync-23904 (23896) [002] d..2 24577.335520: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
118505        DispSync-23904 (23896) [002] d..2 24577.335561: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118506          <idle>-0     (-----) [002] d..1 24577.335580: cpu_idle: state=0 cpu_id=2
118507          <idle>-0     (-----) [003] .n.1 24577.335787: cpu_idle: state=4294967295 cpu_id=3
118508          <idle>-0     (-----) [003] d..2 24577.335813: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
118509  appEventThread-23905 (23896) [003] d..3 24577.335896: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
118510  appEventThread-23905 (23896) [003] d..4 24577.335925: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
118511          <idle>-0     (-----) [000] .n.1 24577.335933: cpu_idle: state=4294967295 cpu_id=0
118512          <idle>-0     (-----) [000] d..2 24577.335949: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
118513  appEventThread-23905 (23896) [003] d..2 24577.335980: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
118514          <idle>-0     (-----) [003] d..1 24577.335999: cpu_idle: state=2 cpu_id=3
118515 s.nexuslauncher-24827 (24827) [000] .... 24577.336315: binder_transaction: transaction=1671626 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
118516 s.nexuslauncher-24827 (24827) [000] d..4 24577.336335: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
118517 s.nexuslauncher-24827 (24827) [000] d..5 24577.336373: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
118518          <idle>-0     (-----) [001] .n.1 24577.336379: cpu_idle: state=4294967295 cpu_id=1
118519          <idle>-0     (-----) [001] d..2 24577.336394: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
118520  Binder:23896_5-25989 (23896) [001] .... 24577.336407: binder_transaction_received: transaction=1671626
118521  Binder:23896_5-25989 (23896) [001] d..1 24577.336457: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
118522  Binder:23896_5-25989 (23896) [001] d..2 24577.336482: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
118523 s.nexuslauncher-24827 (24827) [000] d..2 24577.336512: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118524          <idle>-0     (-----) [000] d..1 24577.336533: cpu_idle: state=0 cpu_id=0
118525  Binder:23896_5-25989 (23896) [001] d..2 24577.336542: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118526          <idle>-0     (-----) [001] d..1 24577.336559: cpu_idle: state=0 cpu_id=1
118527          <idle>-0     (-----) [003] .n.1 24577.336740: cpu_idle: state=4294967295 cpu_id=3
118528          <idle>-0     (-----) [003] d..2 24577.336760: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
118529  appEventThread-23905 (23896) [003] d..2 24577.336840: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
118530          <idle>-0     (-----) [003] d..1 24577.336859: cpu_idle: state=0 cpu_id=3
118531          <idle>-0     (-----) [001] d..2 24577.337598: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
118532          <idle>-0     (-----) [001] dn.3 24577.337617: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
118533          <idle>-0     (-----) [001] dnH3 24577.337727: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
118534          <idle>-0     (-----) [001] dnH3 24577.337746: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
118535          <idle>-0     (-----) [001] dnH4 24577.337762: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
118536          <idle>-0     (-----) [002] .n.1 24577.337770: cpu_idle: state=4294967295 cpu_id=2
118537          <idle>-0     (-----) [001] .n.1 24577.337776: cpu_idle: state=4294967295 cpu_id=1
118538          <idle>-0     (-----) [002] d..2 24577.337784: 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
118539          <idle>-0     (-----) [001] d..2 24577.337795: 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
118540         sugov:0-559   (  559) [002] .... 24577.337824: clk_set_rate: pwrcl_clk 1056000000
118541     ksoftirqd/1-18    (   18) [001] d..2 24577.337832: 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
118542         sugov:0-559   (  559) [002] .... 24577.337838: clk_set_rate: cpu3_pwrcl_clk 748800000
118543          <idle>-0     (-----) [001] d..1 24577.337842: cpu_idle: state=0 cpu_id=1
118544         sugov:0-559   (  559) [002] .... 24577.337849: clk_set_rate: cpu2_pwrcl_clk 748800000
118545         sugov:0-559   (  559) [002] .... 24577.337860: clk_set_rate: cpu1_pwrcl_clk 748800000
118546         sugov:0-559   (  559) [002] .... 24577.337870: clk_set_rate: cpu0_pwrcl_clk 1056000000
118547         sugov:0-559   (  559) [002] .... 24577.337884: cpu_frequency: state=1056000 cpu_id=0
118548         sugov:0-559   (  559) [002] .... 24577.337914: cpu_frequency: state=1056000 cpu_id=1
118549         sugov:0-559   (  559) [002] .... 24577.337921: cpu_frequency: state=1056000 cpu_id=2
118550         sugov:0-559   (  559) [002] .... 24577.337929: cpu_frequency: state=1056000 cpu_id=3
118551         sugov:0-559   (  559) [002] d..2 24577.337958: 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
118552          <idle>-0     (-----) [002] d..1 24577.337970: cpu_idle: state=0 cpu_id=2
118553          <idle>-0     (-----) [000] ...1 24577.338283: cpu_idle: state=4294967295 cpu_id=0
118554          <idle>-0     (-----) [000] d..1 24577.338289: cpu_idle: state=2 cpu_id=0
118555          <idle>-0     (-----) [007] dnh2 24577.338722: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
118556          <idle>-0     (-----) [007] .n.1 24577.338731: cpu_idle: state=4294967295 cpu_id=7
118557          <idle>-0     (-----) [007] d..2 24577.338742: 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
118558         sugov:4-560   (  560) [007] d..2 24577.338764: 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
118559          <idle>-0     (-----) [007] d..1 24577.338777: cpu_idle: state=2 cpu_id=7
118560          <idle>-0     (-----) [001] d.s2 24577.340908: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
118561          <idle>-0     (-----) [001] dns3 24577.340925: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
118562          <idle>-0     (-----) [001] .n.1 24577.340939: cpu_idle: state=4294967295 cpu_id=1
118563          <idle>-0     (-----) [001] d..2 24577.340947: 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
118564     rcu_preempt-7     (    7) [001] d..2 24577.340957: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
118565     rcu_preempt-7     (    7) [001] d..3 24577.340989: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
118566     rcu_preempt-7     (    7) [001] d..2 24577.341003: 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
118567         rcuop/2-29    (   29) [001] d..2 24577.341034: 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
118568          <idle>-0     (-----) [001] d..1 24577.341046: cpu_idle: state=2 cpu_id=1
118569          <idle>-0     (-----) [003] ...1 24577.342865: cpu_idle: state=4294967295 cpu_id=3
118570          <idle>-0     (-----) [003] d..1 24577.342868: cpu_idle: state=2 cpu_id=3
118571          <idle>-0     (-----) [002] ...1 24577.343975: cpu_idle: state=4294967295 cpu_id=2
118572          <idle>-0     (-----) [002] d..1 24577.343980: cpu_idle: state=2 cpu_id=2
118573          <idle>-0     (-----) [001] d.s2 24577.347901: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
118574          <idle>-0     (-----) [001] dns3 24577.347921: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
118575          <idle>-0     (-----) [001] dns3 24577.347926: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
118576          <idle>-0     (-----) [001] dns4 24577.347939: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
118577          <idle>-0     (-----) [001] .n.1 24577.347958: cpu_idle: state=4294967295 cpu_id=1
118578          <idle>-0     (-----) [001] d..2 24577.347972: 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
118579     rcu_preempt-7     (    7) [001] d..2 24577.347981: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
118580     rcu_preempt-7     (    7) [001] d..3 24577.348014: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
118581     rcu_preempt-7     (    7) [001] d..2 24577.348026: 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
118582         rcuop/0-10    (   10) [001] d..2 24577.348031: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
118583         rcuop/0-10    (   10) [001] d..3 24577.348060: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
118584         rcuop/0-10    (   10) [001] d..2 24577.348147: 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
118585         rcuop/1-21    (   21) [001] d..2 24577.348158: 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
118586  kworker/u16:10-23868 (23868) [001] .... 24577.348182: clk_set_rate: l3_cluster0_vote_clk 300000000
118587  kworker/u16:10-23868 (23868) [001] .... 24577.348188: clk_set_rate: l3_clk 300000000
118588  kworker/u16:10-23868 (23868) [001] d..2 24577.348470: 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
118589          <idle>-0     (-----) [001] d..1 24577.348488: cpu_idle: state=0 cpu_id=1
118590          <idle>-0     (-----) [003] d.s3 24577.348787: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
118591          <idle>-0     (-----) [003] d.s4 24577.348836: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
118592          <idle>-0     (-----) [003] dns4 24577.348847: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
118593          <idle>-0     (-----) [003] .n.1 24577.348857: cpu_idle: state=4294967295 cpu_id=3
118594          <idle>-0     (-----) [003] d..2 24577.348879: 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
118595  kworker/u16:10-23868 (23868) [003] d..2 24577.349150: 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
118596          <idle>-0     (-----) [003] d.s4 24577.349192: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
118597          <idle>-0     (-----) [003] d.s5 24577.349201: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
118598          <idle>-0     (-----) [003] dns5 24577.349206: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
118599          <idle>-0     (-----) [003] d..2 24577.349219: 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
118600  kworker/u16:10-23868 (23868) [003] d..2 24577.349245: 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
118601          <idle>-0     (-----) [003] d..1 24577.349268: cpu_idle: state=0 cpu_id=3
118602          <idle>-0     (-----) [002] d.h2 24577.352225: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
118603          <idle>-0     (-----) [002] dnh3 24577.352252: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
118604          <idle>-0     (-----) [002] .n.1 24577.352267: cpu_idle: state=4294967295 cpu_id=2
118605          <idle>-0     (-----) [002] d..2 24577.352285: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
118606        DispSync-23904 (23896) [002] d..1 24577.352316: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
118607        DispSync-23904 (23896) [002] d..2 24577.352333: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
118608          <idle>-0     (-----) [003] .n.1 24577.352342: cpu_idle: state=4294967295 cpu_id=3
118609          <idle>-0     (-----) [003] d..2 24577.352356: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
118610        DispSync-23904 (23896) [002] d..2 24577.352381: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118611          <idle>-0     (-----) [002] d..2 24577.352388: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
118612          <idle>-0     (-----) [002] dn.3 24577.352410: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
118613  appEventThread-23905 (23896) [003] d..3 24577.352416: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
118614          <idle>-0     (-----) [002] d..2 24577.352428: 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
118615  appEventThread-23905 (23896) [003] d..4 24577.352446: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
118616     ksoftirqd/2-26    (   26) [002] d..2 24577.352466: 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
118617          <idle>-0     (-----) [002] d..1 24577.352484: cpu_idle: state=0 cpu_id=2
118618  appEventThread-23905 (23896) [003] d..2 24577.352490: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
118619          <idle>-0     (-----) [003] d..1 24577.352508: cpu_idle: state=0 cpu_id=3
118620          <idle>-0     (-----) [000] .n.1 24577.352759: cpu_idle: state=4294967295 cpu_id=0
118621          <idle>-0     (-----) [000] d..2 24577.352788: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
118622 s.nexuslauncher-24827 (24827) [000] .... 24577.353185: binder_transaction: transaction=1671627 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
118623 s.nexuslauncher-24827 (24827) [000] d..4 24577.353204: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
118624 s.nexuslauncher-24827 (24827) [000] d..5 24577.353239: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
118625          <idle>-0     (-----) [001] .n.1 24577.353246: cpu_idle: state=4294967295 cpu_id=1
118626          <idle>-0     (-----) [001] d..2 24577.353260: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
118627  Binder:23896_5-25989 (23896) [001] .... 24577.353272: binder_transaction_received: transaction=1671627
118628  Binder:23896_5-25989 (23896) [001] d..1 24577.353317: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
118629  Binder:23896_5-25989 (23896) [001] d..2 24577.353343: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
118630          <idle>-0     (-----) [003] .n.1 24577.353350: cpu_idle: state=4294967295 cpu_id=3
118631          <idle>-0     (-----) [003] d..2 24577.353360: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
118632 s.nexuslauncher-24827 (24827) [000] d..2 24577.353376: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118633          <idle>-0     (-----) [000] d..1 24577.353398: cpu_idle: state=0 cpu_id=0
118634  Binder:23896_5-25989 (23896) [001] d..2 24577.353399: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118635  appEventThread-23905 (23896) [003] d..2 24577.353401: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
118636          <idle>-0     (-----) [001] d..1 24577.353412: cpu_idle: state=0 cpu_id=1
118637          <idle>-0     (-----) [003] d..1 24577.353412: cpu_idle: state=0 cpu_id=3
118638          <idle>-0     (-----) [001] d.s2 24577.354248: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
118639          <idle>-0     (-----) [001] dns3 24577.354268: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
118640          <idle>-0     (-----) [001] .n.1 24577.354281: cpu_idle: state=4294967295 cpu_id=1
118641          <idle>-0     (-----) [001] d..2 24577.354290: 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
118642     rcu_preempt-7     (    7) [001] d..2 24577.354302: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
118643     rcu_preempt-7     (    7) [001] d..3 24577.354316: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
118644     rcu_preempt-7     (    7) [001] d..2 24577.354330: 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
118645         rcuop/2-29    (   29) [001] d..2 24577.354362: 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
118646          <idle>-0     (-----) [001] d..1 24577.354377: cpu_idle: state=2 cpu_id=1
118647          <idle>-0     (-----) [000] ...1 24577.355304: cpu_idle: state=4294967295 cpu_id=0
118648          <idle>-0     (-----) [000] d..1 24577.355309: cpu_idle: state=2 cpu_id=0
118649          <idle>-0     (-----) [002] d..2 24577.358497: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
118650          <idle>-0     (-----) [002] dn.3 24577.358508: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
118651          <idle>-0     (-----) [002] dnH3 24577.358593: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
118652          <idle>-0     (-----) [002] dnH3 24577.358608: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
118653          <idle>-0     (-----) [002] dnH4 24577.358620: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
118654          <idle>-0     (-----) [002] dns3 24577.358638: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
118655          <idle>-0     (-----) [002] dns4 24577.358659: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
118656          <idle>-0     (-----) [002] dns3 24577.358668: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
118657          <idle>-0     (-----) [002] dns4 24577.358678: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
118658          <idle>-0     (-----) [002] dns3 24577.358682: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
118659          <idle>-0     (-----) [002] dns4 24577.358716: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
118660          <idle>-0     (-----) [002] .n.1 24577.358727: cpu_idle: state=4294967295 cpu_id=2
118661          <idle>-0     (-----) [002] d..2 24577.358741: 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
118662         sugov:0-559   (  559) [002] .... 24577.358770: clk_set_rate: pwrcl_clk 652800000
118663         sugov:0-559   (  559) [002] .... 24577.358781: clk_set_rate: cpu3_pwrcl_clk 1056000000
118664         sugov:0-559   (  559) [002] .... 24577.358793: clk_set_rate: cpu2_pwrcl_clk 1056000000
118665         sugov:0-559   (  559) [002] .... 24577.358804: clk_set_rate: cpu1_pwrcl_clk 1056000000
118666         sugov:0-559   (  559) [002] .... 24577.358814: clk_set_rate: cpu0_pwrcl_clk 652800000
118667         sugov:0-559   (  559) [002] .... 24577.358930: cpu_frequency: state=652800 cpu_id=0
118668         sugov:0-559   (  559) [002] .... 24577.358955: cpu_frequency: state=652800 cpu_id=1
118669         sugov:0-559   (  559) [002] .... 24577.358964: cpu_frequency: state=652800 cpu_id=2
118670         sugov:0-559   (  559) [002] .... 24577.358970: cpu_frequency: state=652800 cpu_id=3
118671          <idle>-0     (-----) [000] .n.1 24577.358978: cpu_idle: state=4294967295 cpu_id=0
118672         sugov:0-559   (  559) [002] d..2 24577.358997: 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
118673          <idle>-0     (-----) [000] d..2 24577.359014: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
118674     ksoftirqd/2-26    (   26) [002] d..2 24577.359015: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
118675     kworker/2:0-12895 (12895) [002] d..2 24577.359038: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118676     kworker/0:1-13012 (13012) [000] d..2 24577.359051: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
118677     kworker/2:0-12895 (12895) [002] d..3 24577.359063: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118678     kworker/2:0-12895 (12895) [002] d..2 24577.359150: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118679          <idle>-0     (-----) [002] d..1 24577.359170: cpu_idle: state=2 cpu_id=2
118680  kworker/u16:10-23868 (23868) [000] d..2 24577.359221: 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
118681          <idle>-0     (-----) [000] d..1 24577.359244: cpu_idle: state=2 cpu_id=0
118682          <idle>-0     (-----) [001] .n.1 24577.359402: cpu_idle: state=4294967295 cpu_id=1
118683          <idle>-0     (-----) [003] ...1 24577.359427: cpu_idle: state=4294967295 cpu_id=3
118684          <idle>-0     (-----) [003] d..1 24577.359434: cpu_idle: state=2 cpu_id=3
118685          <idle>-0     (-----) [001] d..2 24577.359435: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
118686     kworker/1:1-13091 (13091) [001] d..2 24577.359497: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118687          <idle>-0     (-----) [001] d..1 24577.359512: cpu_idle: state=0 cpu_id=1
118688          <idle>-0     (-----) [007] dnh2 24577.359708: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
118689          <idle>-0     (-----) [007] .n.1 24577.359718: cpu_idle: state=4294967295 cpu_id=7
118690          <idle>-0     (-----) [007] d..2 24577.359732: 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
118691         sugov:4-560   (  560) [007] d..2 24577.359756: 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
118692          <idle>-0     (-----) [007] d..1 24577.359769: cpu_idle: state=2 cpu_id=7
118693          <idle>-0     (-----) [001] d.s2 24577.360957: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
118694          <idle>-0     (-----) [001] dns3 24577.360989: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
118695          <idle>-0     (-----) [001] dns3 24577.360999: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
118696          <idle>-0     (-----) [001] dns4 24577.361046: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
118697          <idle>-0     (-----) [001] dns3 24577.361055: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118698          <idle>-0     (-----) [001] dns4 24577.361065: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118699          <idle>-0     (-----) [001] .n.1 24577.361091: cpu_idle: state=4294967295 cpu_id=1
118700          <idle>-0     (-----) [001] d..2 24577.361104: 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
118701     rcu_preempt-7     (    7) [001] d..2 24577.361118: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
118702     rcu_preempt-7     (    7) [001] d..3 24577.361140: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
118703     rcu_preempt-7     (    7) [001] d..2 24577.361156: 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
118704         rcuop/0-10    (   10) [001] d..2 24577.361163: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
118705         rcuop/0-10    (   10) [001] d..3 24577.361185: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
118706         rcuop/0-10    (   10) [001] d..2 24577.361190: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
118707         rcuop/0-10    (   10) [001] d..3 24577.361207: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
118708         rcuop/0-10    (   10) [001] d..2 24577.361220: 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
118709         rcuop/1-21    (   21) [001] d..2 24577.361287: 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
118710     rcu_preempt-7     (    7) [001] d..2 24577.361306: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
118711     kworker/1:1-13091 (13091) [001] d..2 24577.361412: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
118712  kworker/u16:10-23868 (23868) [001] d..2 24577.361517: 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
118713          <idle>-0     (-----) [001] d..1 24577.361539: cpu_idle: state=2 cpu_id=1
118714          <idle>-0     (-----) [001] d.s2 24577.367999: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
118715          <idle>-0     (-----) [001] dns3 24577.368031: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
118716          <idle>-0     (-----) [001] dns3 24577.368041: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
118717          <idle>-0     (-----) [001] dns4 24577.368060: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
118718          <idle>-0     (-----) [001] .n.1 24577.368080: cpu_idle: state=4294967295 cpu_id=1
118719          <idle>-0     (-----) [001] d..2 24577.368099: 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
118720     rcu_preempt-7     (    7) [001] d..2 24577.368115: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
118721     rcu_preempt-7     (    7) [001] d..3 24577.368134: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
118722     rcu_preempt-7     (    7) [001] d..2 24577.368151: 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
118723         rcuop/0-10    (   10) [001] d..2 24577.368157: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
118724         rcuop/0-10    (   10) [001] d..3 24577.368174: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
118725         rcuop/0-10    (   10) [001] d..2 24577.368186: 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
118726         rcuop/1-21    (   21) [001] d..2 24577.368208: 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
118727  kworker/u16:10-23868 (23868) [001] d..2 24577.368330: 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
118728          <idle>-0     (-----) [001] d..1 24577.368354: cpu_idle: state=2 cpu_id=1
118729          <idle>-0     (-----) [002] d.h2 24577.368681: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
118730          <idle>-0     (-----) [002] dnh3 24577.368709: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
118731          <idle>-0     (-----) [002] .n.1 24577.368725: cpu_idle: state=4294967295 cpu_id=2
118732          <idle>-0     (-----) [002] d..2 24577.368744: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
118733        DispSync-23904 (23896) [002] d..1 24577.368775: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
118734        DispSync-23904 (23896) [002] d..2 24577.368797: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
118735        DispSync-23904 (23896) [002] d..2 24577.368848: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118736          <idle>-0     (-----) [002] d..1 24577.368870: cpu_idle: state=2 cpu_id=2
118737          <idle>-0     (-----) [003] .n.1 24577.369118: cpu_idle: state=4294967295 cpu_id=3
118738          <idle>-0     (-----) [003] d..2 24577.369145: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
118739  appEventThread-23905 (23896) [003] d..3 24577.369207: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
118740  appEventThread-23905 (23896) [003] d..4 24577.369241: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
118741  appEventThread-23905 (23896) [003] d..2 24577.369300: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
118742          <idle>-0     (-----) [003] d..1 24577.369325: cpu_idle: state=0 cpu_id=3
118743          <idle>-0     (-----) [000] .n.1 24577.369570: cpu_idle: state=4294967295 cpu_id=0
118744          <idle>-0     (-----) [000] d..2 24577.369617: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
118745 s.nexuslauncher-24827 (24827) [000] .... 24577.370040: binder_transaction: transaction=1671628 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
118746 s.nexuslauncher-24827 (24827) [000] d..4 24577.370065: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
118747 s.nexuslauncher-24827 (24827) [000] d..5 24577.370110: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
118748 s.nexuslauncher-24827 (24827) [000] d..2 24577.370278: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118749          <idle>-0     (-----) [000] d..1 24577.370308: cpu_idle: state=2 cpu_id=0
118750          <idle>-0     (-----) [001] .n.1 24577.370431: cpu_idle: state=4294967295 cpu_id=1
118751          <idle>-0     (-----) [001] d..2 24577.370460: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
118752  Binder:23896_5-25989 (23896) [001] .... 24577.370471: binder_transaction_received: transaction=1671628
118753  Binder:23896_5-25989 (23896) [001] d..1 24577.370522: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
118754  Binder:23896_5-25989 (23896) [001] d..2 24577.370555: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
118755          <idle>-0     (-----) [003] .n.1 24577.370564: cpu_idle: state=4294967295 cpu_id=3
118756          <idle>-0     (-----) [003] d..2 24577.370581: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
118757  Binder:23896_5-25989 (23896) [001] d..2 24577.370621: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118758  appEventThread-23905 (23896) [003] d..2 24577.370636: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
118759          <idle>-0     (-----) [001] d..1 24577.370649: cpu_idle: state=0 cpu_id=1
118760          <idle>-0     (-----) [003] d..1 24577.370653: cpu_idle: state=2 cpu_id=3
118761          <idle>-0     (-----) [001] d..2 24577.376665: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
118762          <idle>-0     (-----) [001] dn.3 24577.376684: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
118763          <idle>-0     (-----) [001] .n.1 24577.376691: cpu_idle: state=4294967295 cpu_id=1
118764          <idle>-0     (-----) [001] d..2 24577.376709: 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
118765     ksoftirqd/1-18    (   18) [001] d..2 24577.376757: 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
118766          <idle>-0     (-----) [001] d..1 24577.376772: cpu_idle: state=2 cpu_id=1
118767          <idle>-0     (-----) [002] d.h2 24577.385221: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
118768          <idle>-0     (-----) [002] dnh3 24577.385254: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
118769          <idle>-0     (-----) [002] dnh3 24577.385349: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
118770          <idle>-0     (-----) [002] dnh3 24577.385368: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
118771          <idle>-0     (-----) [002] dnh4 24577.385396: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
118772          <idle>-0     (-----) [002] .n.1 24577.385408: cpu_idle: state=4294967295 cpu_id=2
118773          <idle>-0     (-----) [002] d..2 24577.385428: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
118774        DispSync-23904 (23896) [002] d..1 24577.385457: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
118775        DispSync-23904 (23896) [002] d..2 24577.385482: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
118776        DispSync-23904 (23896) [002] d..2 24577.385538: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118777          <idle>-0     (-----) [002] d..2 24577.385545: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
118778          <idle>-0     (-----) [002] dn.3 24577.385561: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
118779          <idle>-0     (-----) [002] d..2 24577.385573: 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
118780     ksoftirqd/2-26    (   26) [002] d.s2 24577.385587: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
118781     ksoftirqd/2-26    (   26) [002] d.s3 24577.385637: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
118782     ksoftirqd/2-26    (   26) [002] d..2 24577.385676: 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
118783          <idle>-0     (-----) [002] d..1 24577.385698: cpu_idle: state=2 cpu_id=2
118784          <idle>-0     (-----) [003] .n.1 24577.385722: cpu_idle: state=4294967295 cpu_id=3
118785          <idle>-0     (-----) [003] d..2 24577.385754: 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
118786         sugov:0-559   (  559) [003] d..2 24577.385784: 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
118787          <idle>-0     (-----) [001] .n.1 24577.385812: cpu_idle: state=4294967295 cpu_id=1
118788          <idle>-0     (-----) [001] d..2 24577.385839: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
118789  appEventThread-23905 (23896) [001] d..3 24577.385922: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
118790  kworker/u16:10-23868 (23868) [003] d..2 24577.385948: 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
118791  appEventThread-23905 (23896) [001] d..4 24577.385958: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
118792          <idle>-0     (-----) [003] d..1 24577.385973: cpu_idle: state=2 cpu_id=3
118793  appEventThread-23905 (23896) [001] d..2 24577.386024: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118794          <idle>-0     (-----) [001] d..1 24577.386053: cpu_idle: state=0 cpu_id=1
118795          <idle>-0     (-----) [000] .n.1 24577.386277: cpu_idle: state=4294967295 cpu_id=0
118796          <idle>-0     (-----) [000] d..2 24577.386312: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
118797          <idle>-0     (-----) [007] dnh2 24577.386436: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
118798          <idle>-0     (-----) [007] .n.1 24577.386445: cpu_idle: state=4294967295 cpu_id=7
118799          <idle>-0     (-----) [007] d..2 24577.386459: 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
118800         sugov:4-560   (  560) [007] d..2 24577.386482: 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
118801          <idle>-0     (-----) [007] d..1 24577.386494: cpu_idle: state=2 cpu_id=7
118802 s.nexuslauncher-24827 (24827) [000] .... 24577.386642: binder_transaction: transaction=1671629 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
118803 s.nexuslauncher-24827 (24827) [000] d..4 24577.386661: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
118804 s.nexuslauncher-24827 (24827) [000] d..5 24577.386703: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
118805          <idle>-0     (-----) [001] .n.1 24577.386710: cpu_idle: state=4294967295 cpu_id=1
118806          <idle>-0     (-----) [001] d..2 24577.386729: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
118807  Binder:23896_5-25989 (23896) [001] .... 24577.386742: binder_transaction_received: transaction=1671629
118808  Binder:23896_5-25989 (23896) [001] d..1 24577.386785: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
118809  Binder:23896_5-25989 (23896) [001] d..2 24577.386820: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
118810 s.nexuslauncher-24827 (24827) [000] d..2 24577.386854: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118811          <idle>-0     (-----) [000] d..1 24577.386880: cpu_idle: state=2 cpu_id=0
118812  Binder:23896_5-25989 (23896) [001] d..2 24577.386886: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118813          <idle>-0     (-----) [001] d..1 24577.386913: cpu_idle: state=0 cpu_id=1
118814          <idle>-0     (-----) [002] .n.1 24577.387141: cpu_idle: state=4294967295 cpu_id=2
118815          <idle>-0     (-----) [002] d..2 24577.387169: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
118816  appEventThread-23905 (23896) [002] d..2 24577.387264: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118817          <idle>-0     (-----) [002] d..1 24577.387287: cpu_idle: state=0 cpu_id=2
118818          <idle>-0     (-----) [001] d.h3 24577.391132: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118819          <idle>-0     (-----) [001] dnh4 24577.391166: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118820          <idle>-0     (-----) [001] .n.1 24577.391182: cpu_idle: state=4294967295 cpu_id=1
118821          <idle>-0     (-----) [001] d..2 24577.391204: 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
118822   kworker/u17:2-23076 (23076) [001] d..2 24577.391236: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118823   kworker/u17:2-23076 (23076) [001] d..3 24577.391255: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118824   kworker/u17:2-23076 (23076) [001] d..2 24577.391293: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
118825     kworker/1:1-13091 (13091) [001] d..2 24577.391321: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
118826     kworker/1:1-13091 (13091) [001] d..3 24577.391380: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
118827     kworker/1:1-13091 (13091) [001] d..2 24577.391403: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
118828            adbd-23484 ( 1007) [001] d..2 24577.391594: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118829          <idle>-0     (-----) [001] d.h4 24577.391632: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118830          <idle>-0     (-----) [001] dnh5 24577.391648: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118831          <idle>-0     (-----) [001] d..2 24577.391668: 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
118832   kworker/u17:2-23076 (23076) [001] d..2 24577.391691: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118833   kworker/u17:2-23076 (23076) [001] d..3 24577.391705: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
118834   kworker/u17:2-23076 (23076) [001] d..2 24577.391740: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
118835     kworker/1:1-13091 (13091) [001] d..2 24577.391775: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
118836     kworker/1:1-13091 (13091) [001] d..3 24577.391802: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
118837     kworker/1:1-13091 (13091) [001] d..2 24577.391826: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
118838            adbd-23484 ( 1007) [001] d..2 24577.391862: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
118839            adbd-23484 ( 1007) [001] d..3 24577.391892: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
118840            adbd-23484 ( 1007) [001] d..2 24577.392008: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
118841          <idle>-0     (-----) [002] d..2 24577.393297: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
118842          <idle>-0     (-----) [002] dn.3 24577.393313: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
118843          <idle>-0     (-----) [002] .n.1 24577.393320: cpu_idle: state=4294967295 cpu_id=2
118844          <idle>-0     (-----) [002] d..2 24577.393336: 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
118845     ksoftirqd/2-26    (   26) [002] d..2 24577.393369: 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
118846          <idle>-0     (-----) [002] d..1 24577.393383: cpu_idle: state=2 cpu_id=2
118847            adbd-1007  ( 1007) [001] d.s2 24577.394271: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
118848            adbd-1007  ( 1007) [001] d.s3 24577.394333: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
118849            adbd-1007  ( 1007) [001] d..2 24577.394910: 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
118850  kworker/u16:10-23868 (23868) [001] .... 24577.394948: clk_set_rate: l3_cluster0_vote_clk 403200000
118851  kworker/u16:10-23868 (23868) [001] .... 24577.394959: clk_set_rate: l3_clk 403200000
118852  kworker/u16:10-23868 (23868) [001] d..2 24577.395282: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=adbd next_pid=13418 next_prio=120
118853          <idle>-0     (-----) [003] d.s3 24577.396162: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
118854          <idle>-0     (-----) [003] d.s4 24577.396203: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
118855          <idle>-0     (-----) [003] dns4 24577.396211: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
118856          <idle>-0     (-----) [003] .n.1 24577.396222: cpu_idle: state=4294967295 cpu_id=3
118857          <idle>-0     (-----) [003] d..2 24577.396243: 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
118858  kworker/u16:10-23868 (23868) [003] d..2 24577.396298: 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
118859          <idle>-0     (-----) [003] d..1 24577.396316: cpu_idle: state=2 cpu_id=3
118860              sh-13418 (13418) [001] d..2 24577.397219: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
118861              sh-13418 (13418) [001] d..3 24577.397267: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
118862              sh-13418 (13418) [001] d..2 24577.397280: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
118863              sh-13418 (13418) [001] d..3 24577.397325: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
118864          <idle>-0     (-----) [000] .n.1 24577.397529: cpu_idle: state=4294967295 cpu_id=0
118865          <idle>-0     (-----) [000] d..2 24577.397568: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
118866              sh-13418 (13418) [001] d.s2 24577.397605: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
118867              sh-13418 (13418) [001] d.s3 24577.397696: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
118868            adbd-1007  ( 1007) [000] d.H4 24577.397706: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
118869            adbd-1007  ( 1007) [000] d.H4 24577.397729: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
118870            adbd-1007  ( 1007) [000] d.H5 24577.397750: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
118871          <idle>-0     (-----) [003] .n.1 24577.398013: cpu_idle: state=4294967295 cpu_id=3
118872          <idle>-0     (-----) [003] d..2 24577.398040: 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
118873         sugov:0-559   (  559) [003] .... 24577.398073: clk_set_rate: pwrcl_clk 748800000
118874         sugov:0-559   (  559) [003] .... 24577.398086: clk_set_rate: cpu3_pwrcl_clk 652800000
118875         sugov:0-559   (  559) [003] .... 24577.398097: clk_set_rate: cpu2_pwrcl_clk 652800000
118876         sugov:0-559   (  559) [003] .... 24577.398107: clk_set_rate: cpu1_pwrcl_clk 652800000
118877         sugov:0-559   (  559) [003] .... 24577.398117: clk_set_rate: cpu0_pwrcl_clk 748800000
118878         sugov:0-559   (  559) [003] .... 24577.398129: cpu_frequency: state=748800 cpu_id=0
118879         sugov:0-559   (  559) [003] .... 24577.398152: cpu_frequency: state=748800 cpu_id=1
118880         sugov:0-559   (  559) [003] .... 24577.398157: cpu_frequency: state=748800 cpu_id=2
118881         sugov:0-559   (  559) [003] .... 24577.398161: cpu_frequency: state=748800 cpu_id=3
118882         sugov:0-559   (  559) [003] d..2 24577.398234: 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
118883            adbd-1007  ( 1007) [000] d..1 24577.398281: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
118884            adbd-1007  ( 1007) [000] d..2 24577.398338: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
118885  kworker/u16:10-23868 (23868) [003] d..2 24577.398462: 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
118886            adbd-1007  ( 1007) [000] d..2 24577.398486: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
118887         rcuop/0-10    (   10) [000] d..2 24577.398496: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
118888            adbd-23485 ( 1007) [003] d.s4 24577.398505: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
118889            adbd-23485 ( 1007) [003] d.s5 24577.398531: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
118890            adbd-23485 ( 1007) [003] d.s5 24577.398539: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
118891         rcuop/0-10    (   10) [000] d..3 24577.398559: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
118892         rcuop/0-10    (   10) [000] d..2 24577.398573: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=13419 next_prio=120
118893            adbd-23485 ( 1007) [003] d..1 24577.398607: sched_waking: comm=adbd pid=13419 prio=120 target_cpu=000
118894 shell svc 13418-13419 ( 1007) [000] d..2 24577.398628: sched_switch: prev_comm=adbd prev_pid=13419 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
118895            adbd-23485 ( 1007) [003] d..2 24577.398648: sched_blocked_reason: pid=13419 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
118896          <idle>-0     (-----) [000] d..1 24577.398651: cpu_idle: state=2 cpu_id=0
118897            adbd-23485 ( 1007) [003] d..2 24577.398657: sched_wakeup: comm=adbd pid=13419 prio=120 target_cpu=000
118898          <idle>-0     (-----) [000] .n.1 24577.398682: cpu_idle: state=4294967295 cpu_id=0
118899          <idle>-0     (-----) [007] dnh2 24577.398691: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
118900          <idle>-0     (-----) [000] d..2 24577.398698: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=13419 next_prio=120
118901          <idle>-0     (-----) [007] .n.1 24577.398700: cpu_idle: state=4294967295 cpu_id=7
118902          <idle>-0     (-----) [007] d..2 24577.398713: 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
118903         sugov:4-560   (  560) [007] d..2 24577.398735: 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
118904            adbd-23485 ( 1007) [003] d..2 24577.398745: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
118905          <idle>-0     (-----) [007] d..1 24577.398745: cpu_idle: state=2 cpu_id=7
118906     rcu_preempt-7     (    7) [003] d..2 24577.398764: 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
118907              sh-13418 (13418) [001] d.h2 24577.398774: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
118908 shell svc 13418-13419 ( 1007) [000] d..2 24577.398801: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118909  kworker/u16:10-23868 (23868) [003] d..2 24577.398802: 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
118910          <idle>-0     (-----) [000] d..1 24577.398820: cpu_idle: state=0 cpu_id=0
118911          <idle>-0     (-----) [003] d..1 24577.398820: cpu_idle: state=0 cpu_id=3
118912              sh-13418 (13418) [001] d.h3 24577.398835: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
118913          <idle>-0     (-----) [003] .n.1 24577.398842: cpu_idle: state=4294967295 cpu_id=3
118914          <idle>-0     (-----) [003] d..2 24577.398857: 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
118915   kworker/u17:2-23076 (23076) [003] d..2 24577.398885: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
118916   kworker/u17:2-23076 (23076) [003] d..3 24577.398910: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
118917   kworker/u17:2-23076 (23076) [003] d..2 24577.398943: 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
118918     kworker/3:1-12662 (12662) [003] d..2 24577.398961: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
118919     kworker/3:1-12662 (12662) [003] d..3 24577.398982: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
118920     kworker/3:1-12662 (12662) [003] d..2 24577.399001: 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
118921            adbd-23485 ( 1007) [003] d..2 24577.399056: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
118922          <idle>-0     (-----) [003] d..1 24577.399071: cpu_idle: state=0 cpu_id=3
118923              sh-13418 (13418) [001] d.h3 24577.399392: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
118924              sh-13418 (13418) [001] d.h4 24577.399446: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
118925          <idle>-0     (-----) [000] .n.1 24577.399453: cpu_idle: state=4294967295 cpu_id=0
118926          <idle>-0     (-----) [000] d..2 24577.399470: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
118927   kworker/u17:2-23076 (23076) [000] d..2 24577.399495: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
118928   kworker/u17:2-23076 (23076) [000] d..3 24577.399514: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
118929   kworker/u17:2-23076 (23076) [000] d..2 24577.399546: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
118930     kworker/0:1-13012 (13012) [000] d..2 24577.399566: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
118931     kworker/0:1-13012 (13012) [000] d..3 24577.399615: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
118932     kworker/0:1-13012 (13012) [000] d..2 24577.399638: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
118933            adbd-23484 ( 1007) [000] d..2 24577.399767: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118934          <idle>-0     (-----) [000] d..1 24577.399788: cpu_idle: state=0 cpu_id=0
118935              sh-13418 (13418) [001] d.h2 24577.399790: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
118936              sh-13418 (13418) [001] d.h3 24577.399815: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
118937          <idle>-0     (-----) [000] .n.1 24577.399822: cpu_idle: state=4294967295 cpu_id=0
118938          <idle>-0     (-----) [000] d..2 24577.399839: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
118939   kworker/u17:2-23076 (23076) [000] d..2 24577.399856: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
118940   kworker/u17:2-23076 (23076) [000] d..3 24577.399870: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
118941   kworker/u17:2-23076 (23076) [000] d..2 24577.399902: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
118942     kworker/0:1-13012 (13012) [000] d..2 24577.399917: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
118943     kworker/0:1-13012 (13012) [000] d..3 24577.399935: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
118944     kworker/0:1-13012 (13012) [000] d..2 24577.399954: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
118945            adbd-23484 ( 1007) [000] d..2 24577.399988: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
118946            adbd-23484 ( 1007) [000] d..3 24577.400000: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
118947            adbd-23484 ( 1007) [000] d..2 24577.400088: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
118948            adbd-1007  ( 1007) [000] d..2 24577.400211: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
118949            adbd-1007  ( 1007) [000] d..3 24577.400228: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
118950            adbd-1007  ( 1007) [000] d..1 24577.400258: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
118951            adbd-1007  ( 1007) [000] d..2 24577.400311: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
118952              sh-13418 (13418) [001] d..2 24577.400333: sched_switch: prev_comm=sh prev_pid=13418 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
118953            adbd-1007  ( 1007) [000] d..2 24577.400391: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
118954            adbd-23485 ( 1007) [001] d..2 24577.400443: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13418 next_prio=120
118955              sh-13418 (13418) [001] d.h4 24577.400470: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
118956              sh-13418 (13418) [001] d.h5 24577.400500: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
118957 shell svc 13418-13419 ( 1007) [000] d..2 24577.400513: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
118958   kworker/u17:2-23076 (23076) [000] d..2 24577.400541: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
118959   kworker/u17:2-23076 (23076) [000] d..3 24577.400556: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
118960   kworker/u17:2-23076 (23076) [000] d..2 24577.400586: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
118961     kworker/0:1-13012 (13012) [000] d..2 24577.400601: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
118962     kworker/0:1-13012 (13012) [000] d..3 24577.400647: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
118963     kworker/0:1-13012 (13012) [000] d..2 24577.400667: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
118964            adbd-23485 ( 1007) [000] d..2 24577.400706: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118965          <idle>-0     (-----) [000] d..1 24577.400727: cpu_idle: state=0 cpu_id=0
118966          <idle>-0     (-----) [002] d.h2 24577.401551: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
118967          <idle>-0     (-----) [002] dnh3 24577.401579: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
118968          <idle>-0     (-----) [002] .n.1 24577.401593: cpu_idle: state=4294967295 cpu_id=2
118969          <idle>-0     (-----) [002] d..2 24577.401611: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
118970        DispSync-23904 (23896) [002] d..1 24577.401654: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
118971        DispSync-23904 (23896) [002] d..2 24577.401689: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
118972          <idle>-0     (-----) [003] .n.1 24577.401695: cpu_idle: state=4294967295 cpu_id=3
118973          <idle>-0     (-----) [003] d..2 24577.401711: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
118974        DispSync-23904 (23896) [002] d..2 24577.401740: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118975          <idle>-0     (-----) [002] d..1 24577.401762: cpu_idle: state=0 cpu_id=2
118976  appEventThread-23905 (23896) [003] d..3 24577.401785: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
118977  appEventThread-23905 (23896) [003] d..4 24577.401814: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
118978          <idle>-0     (-----) [000] .n.1 24577.401823: cpu_idle: state=4294967295 cpu_id=0
118979          <idle>-0     (-----) [000] d..2 24577.401839: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
118980  appEventThread-23905 (23896) [003] d..2 24577.401866: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
118981          <idle>-0     (-----) [003] d..1 24577.401879: cpu_idle: state=0 cpu_id=3
118982 s.nexuslauncher-24827 (24827) [000] .... 24577.402209: binder_transaction: transaction=1671630 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
118983 s.nexuslauncher-24827 (24827) [000] d..4 24577.402228: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
118984 s.nexuslauncher-24827 (24827) [000] d..5 24577.402272: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
118985          <idle>-0     (-----) [002] .n.1 24577.402278: cpu_idle: state=4294967295 cpu_id=2
118986          <idle>-0     (-----) [002] d..2 24577.402292: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
118987  Binder:23896_5-25989 (23896) [002] .... 24577.402305: binder_transaction_received: transaction=1671630
118988  Binder:23896_5-25989 (23896) [002] d..1 24577.402355: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
118989  Binder:23896_5-25989 (23896) [002] d..2 24577.402374: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
118990          <idle>-0     (-----) [003] .n.1 24577.402381: cpu_idle: state=4294967295 cpu_id=3
118991          <idle>-0     (-----) [003] d..2 24577.402390: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
118992 s.nexuslauncher-24827 (24827) [000] d..2 24577.402421: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118993  Binder:23896_5-25989 (23896) [002] d..2 24577.402434: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118994  appEventThread-23905 (23896) [003] d..2 24577.402437: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
118995          <idle>-0     (-----) [000] d..1 24577.402443: cpu_idle: state=0 cpu_id=0
118996          <idle>-0     (-----) [003] d..1 24577.402446: cpu_idle: state=0 cpu_id=3
118997          <idle>-0     (-----) [002] d..1 24577.402454: cpu_idle: state=0 cpu_id=2
118998          <idle>-0     (-----) [000] ...1 24577.403907: cpu_idle: state=4294967295 cpu_id=0
118999          <idle>-0     (-----) [000] d..1 24577.403913: cpu_idle: state=2 cpu_id=0
119000          <idle>-0     (-----) [003] d.s2 24577.404247: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
119001              sh-13418 (13418) [001] d.s2 24577.404260: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
119002          <idle>-0     (-----) [003] dns3 24577.404268: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
119003              sh-13418 (13418) [001] d.s3 24577.404296: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
119004          <idle>-0     (-----) [003] .n.1 24577.404304: cpu_idle: state=4294967295 cpu_id=3
119005          <idle>-0     (-----) [003] d..2 24577.404315: 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
119006     rcu_preempt-7     (    7) [003] d..2 24577.404332: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
119007     rcu_preempt-7     (    7) [003] d..3 24577.404375: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
119008     rcu_preempt-7     (    7) [003] d..2 24577.404389: 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
119009         rcuop/0-10    (   10) [003] d..2 24577.404395: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
119010         rcuop/0-10    (   10) [003] d..3 24577.404437: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
119011         rcuop/0-10    (   10) [003] d..2 24577.404451: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
119012         rcuop/0-10    (   10) [003] d..3 24577.404466: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
119013         rcuop/0-10    (   10) [003] d..2 24577.404477: 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
119014         rcuop/1-21    (   21) [003] d..2 24577.404500: 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
119015     rcu_preempt-7     (    7) [003] d..2 24577.404516: 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
119016  kworker/u16:10-23868 (23868) [003] .... 24577.404665: clk_set_rate: l3_cluster0_vote_clk 576000000
119017  kworker/u16:10-23868 (23868) [003] .... 24577.404673: clk_set_rate: l3_clk 576000000
119018  kworker/u16:10-23868 (23868) [003] d..2 24577.404731: 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
119019          <idle>-0     (-----) [003] d..1 24577.404749: cpu_idle: state=0 cpu_id=3
119020          <idle>-0     (-----) [002] ...1 24577.408464: cpu_idle: state=4294967295 cpu_id=2
119021          <idle>-0     (-----) [002] d..1 24577.408470: cpu_idle: state=2 cpu_id=2
119022              sh-13418 (13418) [001] d.s2 24577.410914: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
119023          <idle>-0     (-----) [003] d.s2 24577.410915: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
119024              sh-13418 (13418) [001] d.s3 24577.410942: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
119025          <idle>-0     (-----) [003] dns3 24577.410953: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
119026          <idle>-0     (-----) [003] .n.1 24577.410971: cpu_idle: state=4294967295 cpu_id=3
119027          <idle>-0     (-----) [003] d..2 24577.410985: 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
119028     rcu_preempt-7     (    7) [003] d..2 24577.410996: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
119029     rcu_preempt-7     (    7) [003] d..3 24577.411012: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
119030     rcu_preempt-7     (    7) [003] d..2 24577.411024: 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
119031         rcuop/0-10    (   10) [003] d..2 24577.411029: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
119032         rcuop/0-10    (   10) [003] d..3 24577.411044: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
119033         rcuop/0-10    (   10) [003] d..2 24577.411055: 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
119034         rcuop/1-21    (   21) [003] d..2 24577.411073: 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
119035  kworker/u16:10-23868 (23868) [003] d..2 24577.411156: 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
119036          <idle>-0     (-----) [003] d..1 24577.411171: cpu_idle: state=2 cpu_id=3
119037              sh-13418 (13418) [001] d..2 24577.412746: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
119038              sh-13418 (13418) [001] dn.3 24577.412796: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
119039              sh-13418 (13418) [001] d..2 24577.412809: sched_switch: prev_comm=sh prev_pid=13418 prev_prio=120 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
119040         rcuop/0-10    (   10) [001] d..2 24577.412817: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
119041         rcuop/0-10    (   10) [001] d..3 24577.412830: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
119042         rcuop/0-10    (   10) [001] d..2 24577.412842: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13418 next_prio=120
119043          <idle>-0     (-----) [003] .n.1 24577.413088: cpu_idle: state=4294967295 cpu_id=3
119044          <idle>-0     (-----) [003] d..2 24577.413111: 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
119045     rcu_preempt-7     (    7) [003] d..2 24577.413146: 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
119046          <idle>-0     (-----) [003] d..1 24577.413160: cpu_idle: state=0 cpu_id=3
119047              sh-13418 (13418) [001] d.s2 24577.414258: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
119048              sh-13418 (13418) [001] d.s3 24577.414288: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
119049          <idle>-0     (-----) [003] .n.1 24577.414293: cpu_idle: state=4294967295 cpu_id=3
119050          <idle>-0     (-----) [003] d..2 24577.414308: 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
119051  kworker/u16:10-23868 (23868) [003] d..2 24577.414649: 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
119052          <idle>-0     (-----) [003] d.s4 24577.414703: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
119053          <idle>-0     (-----) [003] d.s5 24577.414716: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
119054          <idle>-0     (-----) [003] dns5 24577.414723: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
119055          <idle>-0     (-----) [003] d..2 24577.414737: 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
119056  kworker/u16:10-23868 (23868) [003] d..2 24577.414771: 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
119057          <idle>-0     (-----) [003] d..1 24577.414784: cpu_idle: state=0 cpu_id=3
119058          <idle>-0     (-----) [003] .n.1 24577.416852: cpu_idle: state=4294967295 cpu_id=3
119059          <idle>-0     (-----) [003] d..2 24577.416865: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=13420 next_prio=120
119060              sh-13418 (13418) [001] d..2 24577.417035: sched_switch: prev_comm=sh prev_pid=13418 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119061          <idle>-0     (-----) [001] d..1 24577.417080: cpu_idle: state=0 cpu_id=1
119062              sh-13420 (13420) [003] d.H2 24577.417722: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
119063              sh-13420 (13420) [003] d.H2 24577.417750: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
119064              sh-13420 (13420) [003] d.H3 24577.417781: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
119065              sh-13420 (13420) [003] d.s1 24577.417789: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
119066          <idle>-0     (-----) [001] .n.1 24577.417790: cpu_idle: state=4294967295 cpu_id=1
119067          <idle>-0     (-----) [001] d..2 24577.417806: 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
119068              sh-13420 (13420) [003] d.s2 24577.417843: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
119069         sugov:0-559   (  559) [001] d..2 24577.417855: 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
119070              sh-13420 (13420) [003] d..2 24577.417894: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
119071     rcu_preempt-7     (    7) [001] d..2 24577.417898: 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
119072          <idle>-0     (-----) [001] d..1 24577.417912: cpu_idle: state=0 cpu_id=1
119073              sh-13420 (13420) [003] dn.3 24577.417944: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
119074              sh-13420 (13420) [003] d..2 24577.417957: sched_switch: prev_comm=sh prev_pid=13420 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
119075         rcuop/2-29    (   29) [003] d..2 24577.417978: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13420 next_prio=120
119076          <idle>-0     (-----) [002] d.h2 24577.418075: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
119077          <idle>-0     (-----) [002] dnh3 24577.418102: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
119078          <idle>-0     (-----) [002] .n.1 24577.418116: cpu_idle: state=4294967295 cpu_id=2
119079          <idle>-0     (-----) [002] d..2 24577.418135: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
119080        DispSync-23904 (23896) [002] d..1 24577.418186: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
119081        DispSync-23904 (23896) [002] d..2 24577.418214: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
119082          <idle>-0     (-----) [001] .n.1 24577.418220: cpu_idle: state=4294967295 cpu_id=1
119083          <idle>-0     (-----) [001] d..2 24577.418232: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
119084        DispSync-23904 (23896) [002] d..2 24577.418263: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
119085          <idle>-0     (-----) [002] d..1 24577.418284: cpu_idle: state=0 cpu_id=2
119086  appEventThread-23905 (23896) [001] d..3 24577.418333: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
119087  appEventThread-23905 (23896) [001] d..4 24577.418365: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
119088  appEventThread-23905 (23896) [001] d..2 24577.418416: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119089          <idle>-0     (-----) [001] d..1 24577.418432: cpu_idle: state=0 cpu_id=1
119090          <idle>-0     (-----) [000] .n.1 24577.418680: cpu_idle: state=4294967295 cpu_id=0
119091          <idle>-0     (-----) [000] d..2 24577.418708: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
119092          <idle>-0     (-----) [001] .n.1 24577.418720: cpu_idle: state=4294967295 cpu_id=1
119093          <idle>-0     (-----) [001] d..2 24577.418736: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=13421 next_prio=120
119094          <idle>-0     (-----) [007] dnh2 24577.418847: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
119095          <idle>-0     (-----) [007] .n.1 24577.418858: cpu_idle: state=4294967295 cpu_id=7
119096          <idle>-0     (-----) [007] d..2 24577.418872: 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
119097              sh-13420 (13420) [003] d..2 24577.418878: sched_switch: prev_comm=sh prev_pid=13420 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119098         sugov:4-560   (  560) [007] d..2 24577.418902: 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
119099          <idle>-0     (-----) [003] d..1 24577.418906: cpu_idle: state=0 cpu_id=3
119100          <idle>-0     (-----) [007] d..1 24577.418915: cpu_idle: state=2 cpu_id=7
119101              ps-13421 (13421) [001] d..2 24577.419145: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
119102              ps-13421 (13421) [001] dn.3 24577.419170: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
119103              ps-13421 (13421) [001] d..2 24577.419186: sched_switch: prev_comm=sh prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=migration/1 next_pid=17 next_prio=0
119104          <idle>-0     (-----) [002] .n.1 24577.419256: cpu_idle: state=4294967295 cpu_id=2
119105          <idle>-0     (-----) [002] d..2 24577.419270: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=13421 next_prio=120
119106     migration/1-17    (   17) [001] d..2 24577.419282: 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
119107          <idle>-0     (-----) [001] d..1 24577.419305: cpu_idle: state=0 cpu_id=1
119108 s.nexuslauncher-24827 (24827) [000] .... 24577.419317: binder_transaction: transaction=1671631 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
119109 s.nexuslauncher-24827 (24827) [000] d..4 24577.419347: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
119110 s.nexuslauncher-24827 (24827) [000] d..5 24577.419388: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
119111          <idle>-0     (-----) [001] .n.1 24577.419395: cpu_idle: state=4294967295 cpu_id=1
119112          <idle>-0     (-----) [001] d..2 24577.419410: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
119113  Binder:23896_5-25989 (23896) [001] .... 24577.419427: binder_transaction_received: transaction=1671631
119114  Binder:23896_5-25989 (23896) [001] d..1 24577.419490: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
119115  Binder:23896_5-25989 (23896) [001] d..2 24577.419519: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
119116          <idle>-0     (-----) [003] .n.1 24577.419527: cpu_idle: state=4294967295 cpu_id=3
119117          <idle>-0     (-----) [003] d..2 24577.419540: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
119118  Binder:23896_5-25989 (23896) [001] d..2 24577.419586: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119119 s.nexuslauncher-24827 (24827) [000] d..2 24577.419587: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119120          <idle>-0     (-----) [001] d..1 24577.419602: cpu_idle: state=0 cpu_id=1
119121  appEventThread-23905 (23896) [003] d..2 24577.419614: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119122          <idle>-0     (-----) [000] d..1 24577.419614: cpu_idle: state=0 cpu_id=0
119123          <idle>-0     (-----) [003] d..1 24577.419630: cpu_idle: state=0 cpu_id=3
119124          <idle>-0     (-----) [000] ...1 24577.421076: cpu_idle: state=4294967295 cpu_id=0
119125          <idle>-0     (-----) [000] d..1 24577.421084: cpu_idle: state=2 cpu_id=0
119126          <idle>-0     (-----) [001] d.s2 24577.424250: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
119127              ps-13421 (13421) [002] d.s2 24577.424261: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
119128          <idle>-0     (-----) [001] dns3 24577.424271: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
119129          <idle>-0     (-----) [001] .n.1 24577.424296: cpu_idle: state=4294967295 cpu_id=1
119130          <idle>-0     (-----) [001] d..2 24577.424316: 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
119131     rcu_preempt-7     (    7) [001] d..2 24577.424324: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
119132              ps-13421 (13421) [002] d.s3 24577.424331: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
119133     rcu_preempt-7     (    7) [001] d..3 24577.424354: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
119134     rcu_preempt-7     (    7) [001] d..2 24577.424376: 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
119135  kworker/u16:10-23868 (23868) [001] d..2 24577.424681: 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
119136         rcuop/0-10    (   10) [001] d..2 24577.424690: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
119137         rcuop/0-10    (   10) [001] d..3 24577.424742: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
119138         rcuop/0-10    (   10) [001] d..2 24577.424758: 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
119139         rcuop/1-21    (   21) [001] d..2 24577.424806: 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
119140          <idle>-0     (-----) [001] d..1 24577.424824: cpu_idle: state=0 cpu_id=1
119141          <idle>-0     (-----) [003] d.s3 24577.425299: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
119142          <idle>-0     (-----) [003] d.s4 24577.425315: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
119143          <idle>-0     (-----) [003] d.s4 24577.425327: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
119144          <idle>-0     (-----) [001] .n.1 24577.425334: cpu_idle: state=4294967295 cpu_id=1
119145          <idle>-0     (-----) [003] ...1 24577.425340: cpu_idle: state=4294967295 cpu_id=3
119146          <idle>-0     (-----) [003] d..1 24577.425346: cpu_idle: state=0 cpu_id=3
119147          <idle>-0     (-----) [001] d..2 24577.425348: 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
119148  kworker/u16:10-23868 (23868) [001] .... 24577.425474: clk_set_rate: l3_cluster0_vote_clk 403200000
119149  kworker/u16:10-23868 (23868) [001] .... 24577.425483: clk_set_rate: l3_clk 403200000
119150  kworker/u16:10-23868 (23868) [001] d..2 24577.425550: 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
119151          <idle>-0     (-----) [001] d..1 24577.425566: cpu_idle: state=0 cpu_id=1
119152          <idle>-0     (-----) [001] d.s2 24577.430918: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
119153          <idle>-0     (-----) [001] dns3 24577.430940: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
119154          <idle>-0     (-----) [001] .n.1 24577.430954: cpu_idle: state=4294967295 cpu_id=1
119155          <idle>-0     (-----) [001] d..2 24577.430967: 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
119156     rcu_preempt-7     (    7) [001] d..2 24577.430981: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
119157     rcu_preempt-7     (    7) [001] d..3 24577.431023: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
119158     rcu_preempt-7     (    7) [001] d..2 24577.431041: 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
119159         rcuop/2-29    (   29) [001] d..2 24577.431049: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
119160         rcuop/2-29    (   29) [001] d..3 24577.431077: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
119161         rcuop/2-29    (   29) [001] d..2 24577.431090: 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
119162         rcuop/3-37    (   37) [001] d..2 24577.431139: 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
119163          <idle>-0     (-----) [001] d..1 24577.431156: cpu_idle: state=2 cpu_id=1
119164              ps-13421 (13421) [002] d.h1 24577.434195: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
119165              ps-13421 (13421) [002] d.h2 24577.434235: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
119166          <idle>-0     (-----) [003] .n.1 24577.434240: cpu_idle: state=4294967295 cpu_id=3
119167          <idle>-0     (-----) [003] d..2 24577.434256: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
119168              ps-13421 (13421) [002] d.s2 24577.434275: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
119169        DispSync-23904 (23896) [003] d..1 24577.434285: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
119170        DispSync-23904 (23896) [003] d..2 24577.434318: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
119171              ps-13421 (13421) [002] d.s3 24577.434325: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
119172        DispSync-23904 (23896) [003] d..2 24577.434347: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
119173  kworker/u16:10-23868 (23868) [003] .... 24577.434410: clk_set_rate: l3_cluster0_vote_clk 576000000
119174  kworker/u16:10-23868 (23868) [003] .... 24577.434416: clk_set_rate: l3_clk 576000000
119175          <idle>-0     (-----) [000] .n.1 24577.434631: cpu_idle: state=4294967295 cpu_id=0
119176          <idle>-0     (-----) [000] d..2 24577.434655: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
119177  kworker/u16:10-23868 (23868) [003] d..2 24577.434709: 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
119178  appEventThread-23905 (23896) [000] d..3 24577.434721: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
119179  appEventThread-23905 (23896) [000] d..4 24577.434756: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
119180          <idle>-0     (-----) [003] d.s4 24577.434761: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
119181          <idle>-0     (-----) [003] d.s5 24577.434772: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
119182          <idle>-0     (-----) [003] dns5 24577.434778: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
119183          <idle>-0     (-----) [003] d..2 24577.434793: 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
119184  appEventThread-23905 (23896) [000] d..2 24577.434809: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119185  kworker/u16:10-23868 (23868) [003] d..2 24577.434826: 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
119186          <idle>-0     (-----) [000] d..1 24577.434829: cpu_idle: state=2 cpu_id=0
119187          <idle>-0     (-----) [003] d..1 24577.434846: cpu_idle: state=2 cpu_id=3
119188          <idle>-0     (-----) [001] .n.1 24577.435062: cpu_idle: state=4294967295 cpu_id=1
119189          <idle>-0     (-----) [001] d..2 24577.435085: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
119190 s.nexuslauncher-24827 (24827) [001] .... 24577.435644: binder_transaction: transaction=1671632 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
119191 s.nexuslauncher-24827 (24827) [001] d..4 24577.435668: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
119192 s.nexuslauncher-24827 (24827) [001] d..5 24577.435704: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
119193 s.nexuslauncher-24827 (24827) [001] d..2 24577.435875: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119194          <idle>-0     (-----) [001] d..1 24577.435890: cpu_idle: state=0 cpu_id=1
119195          <idle>-0     (-----) [000] .n.1 24577.436003: cpu_idle: state=4294967295 cpu_id=0
119196          <idle>-0     (-----) [000] d..2 24577.436034: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
119197  Binder:23896_5-25989 (23896) [000] .... 24577.436049: binder_transaction_received: transaction=1671632
119198  Binder:23896_5-25989 (23896) [000] d..1 24577.436113: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
119199  Binder:23896_5-25989 (23896) [000] d..2 24577.436146: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
119200          <idle>-0     (-----) [001] .n.1 24577.436154: cpu_idle: state=4294967295 cpu_id=1
119201          <idle>-0     (-----) [001] d..2 24577.436167: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
119202  Binder:23896_5-25989 (23896) [000] d..2 24577.436211: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119203          <idle>-0     (-----) [000] d..1 24577.436233: cpu_idle: state=0 cpu_id=0
119204  appEventThread-23905 (23896) [001] d..2 24577.436240: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119205          <idle>-0     (-----) [001] d..1 24577.436252: cpu_idle: state=0 cpu_id=1
119206          <idle>-0     (-----) [001] d.H3 24577.437749: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
119207          <idle>-0     (-----) [001] d.H3 24577.437771: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
119208          <idle>-0     (-----) [001] dnH4 24577.437786: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
119209          <idle>-0     (-----) [001] dns2 24577.437795: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
119210          <idle>-0     (-----) [001] dns3 24577.437817: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
119211          <idle>-0     (-----) [001] .n.1 24577.437841: cpu_idle: state=4294967295 cpu_id=1
119212          <idle>-0     (-----) [001] d..2 24577.437850: 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
119213         sugov:0-559   (  559) [001] .... 24577.437920: clk_set_rate: pwrcl_clk 1766400000
119214         sugov:0-559   (  559) [001] d..2 24577.438070: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
119215     rcu_preempt-7     (    7) [001] d..2 24577.438083: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
119216     rcu_preempt-7     (    7) [001] d..3 24577.438104: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
119217     rcu_preempt-7     (    7) [001] d..2 24577.438122: 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
119218         rcuop/0-10    (   10) [001] d..2 24577.438130: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
119219         rcuop/0-10    (   10) [001] d..3 24577.438150: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
119220         rcuop/0-10    (   10) [001] d..2 24577.438161: 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
119221         rcuop/1-21    (   21) [001] d..2 24577.438210: 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
119222          <idle>-0     (-----) [001] d..1 24577.438229: cpu_idle: state=0 cpu_id=1
119223          <idle>-0     (-----) [003] d.s3 24577.438521: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
119224          <idle>-0     (-----) [003] d.s4 24577.438544: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
119225          <idle>-0     (-----) [001] .n.1 24577.438551: cpu_idle: state=4294967295 cpu_id=1
119226          <idle>-0     (-----) [003] ...1 24577.438559: cpu_idle: state=4294967295 cpu_id=3
119227          <idle>-0     (-----) [001] d..2 24577.438562: 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
119228          <idle>-0     (-----) [003] d..1 24577.438571: cpu_idle: state=0 cpu_id=3
119229         sugov:0-559   (  559) [001] .... 24577.438597: clk_set_rate: cpu3_pwrcl_clk 748800000
119230         sugov:0-559   (  559) [001] .... 24577.438614: clk_set_rate: cpu2_pwrcl_clk 748800000
119231         sugov:0-559   (  559) [001] .... 24577.438625: clk_set_rate: cpu1_pwrcl_clk 748800000
119232         sugov:0-559   (  559) [001] .... 24577.438635: clk_set_rate: cpu0_pwrcl_clk 1766400000
119233         sugov:0-559   (  559) [001] .... 24577.438653: cpu_frequency: state=1766400 cpu_id=0
119234          <idle>-0     (-----) [007] dnh2 24577.438849: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
119235          <idle>-0     (-----) [007] .n.1 24577.438860: cpu_idle: state=4294967295 cpu_id=7
119236         sugov:0-559   (  559) [001] d..2 24577.438871: 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
119237          <idle>-0     (-----) [007] d..2 24577.438873: 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
119238          <idle>-0     (-----) [001] d..1 24577.438880: cpu_idle: state=0 cpu_id=1
119239         sugov:4-560   (  560) [007] d..2 24577.438899: 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
119240          <idle>-0     (-----) [007] d..1 24577.438911: cpu_idle: state=2 cpu_id=7
119241          <idle>-0     (-----) [003] d.s3 24577.439463: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
119242          <idle>-0     (-----) [003] d.s4 24577.439473: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
119243          <idle>-0     (-----) [001] .n.1 24577.439479: cpu_idle: state=4294967295 cpu_id=1
119244          <idle>-0     (-----) [003] ...1 24577.439480: cpu_idle: state=4294967295 cpu_id=3
119245          <idle>-0     (-----) [003] d..1 24577.439482: cpu_idle: state=0 cpu_id=3
119246          <idle>-0     (-----) [001] d..2 24577.439485: 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
119247         sugov:0-559   (  559) [001] .... 24577.439493: cpu_frequency: state=1766400 cpu_id=1
119248         sugov:0-559   (  559) [001] .... 24577.439497: cpu_frequency: state=1766400 cpu_id=2
119249         sugov:0-559   (  559) [001] .... 24577.439499: cpu_frequency: state=1766400 cpu_id=3
119250         sugov:0-559   (  559) [001] d..2 24577.439515: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119251          <idle>-0     (-----) [001] d..1 24577.439520: cpu_idle: state=0 cpu_id=1
119252          <idle>-0     (-----) [000] ...1 24577.442238: cpu_idle: state=4294967295 cpu_id=0
119253          <idle>-0     (-----) [000] d..1 24577.442242: cpu_idle: state=2 cpu_id=0
119254          <idle>-0     (-----) [001] d.s2 24577.444234: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
119255              ps-13421 (13421) [002] d.s2 24577.444234: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
119256          <idle>-0     (-----) [001] dns3 24577.444246: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
119257          <idle>-0     (-----) [001] .n.1 24577.444254: cpu_idle: state=4294967295 cpu_id=1
119258          <idle>-0     (-----) [001] d..2 24577.444265: 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
119259              ps-13421 (13421) [002] d.s3 24577.444273: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
119260     rcu_preempt-7     (    7) [001] d..2 24577.444281: 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
119261              ps-13421 (13421) [002] d.s2 24577.444286: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
119262              ps-13421 (13421) [002] d.s3 24577.444307: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
119263              ps-13421 (13421) [002] d.s2 24577.444318: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
119264              ps-13421 (13421) [002] d.s3 24577.444328: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
119265  kworker/u16:10-23868 (23868) [001] .... 24577.444398: clk_set_rate: l3_cluster0_vote_clk 1036800000
119266  kworker/u16:10-23868 (23868) [001] .... 24577.444402: clk_set_rate: l3_clk 1036800000
119267  kworker/u16:10-23868 (23868) [001] d..2 24577.444425: 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
119268  kworker/u16:16-25995 (25995) [001] d..2 24577.444440: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
119269     rcu_preempt-7     (    7) [001] d..2 24577.444446: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
119270     rcu_preempt-7     (    7) [001] d..3 24577.444461: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
119271     rcu_preempt-7     (    7) [001] d..2 24577.444469: 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
119272         rcuop/2-29    (   29) [001] d..2 24577.444492: 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
119273          <idle>-0     (-----) [001] d..1 24577.444501: cpu_idle: state=0 cpu_id=1
119274              ps-13421 (13421) [002] d..2 24577.445303: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
119275              ps-13421 (13421) [002] dn.3 24577.445332: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
119276              ps-13421 (13421) [002] d..2 24577.445340: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
119277         rcuop/2-29    (   29) [002] d..2 24577.445344: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
119278         rcuop/2-29    (   29) [002] d..3 24577.445352: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
119279          <idle>-0     (-----) [001] .n.1 24577.445358: cpu_idle: state=4294967295 cpu_id=1
119280         rcuop/2-29    (   29) [002] d..2 24577.445359: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119281          <idle>-0     (-----) [001] d..2 24577.445364: 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
119282     rcu_preempt-7     (    7) [001] d..2 24577.445376: 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
119283          <idle>-0     (-----) [001] d..1 24577.445381: cpu_idle: state=0 cpu_id=1
119284              ps-13421 (13421) [002] d.s2 24577.447567: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
119285              ps-13421 (13421) [002] dns3 24577.447592: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
119286              ps-13421 (13421) [002] d..2 24577.447602: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
119287  kworker/u16:16-25995 (25995) [002] d..2 24577.447768: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=D ==> next_comm=ps next_pid=13421 next_prio=120
119288          <idle>-0     (-----) [003] d.s3 24577.447791: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
119289          <idle>-0     (-----) [003] d.s4 24577.447808: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
119290          <idle>-0     (-----) [003] dns4 24577.447811: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
119291          <idle>-0     (-----) [003] .n.1 24577.447816: cpu_idle: state=4294967295 cpu_id=3
119292          <idle>-0     (-----) [003] d..2 24577.447824: 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
119293  kworker/u16:16-25995 (25995) [003] d..2 24577.447851: 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
119294          <idle>-0     (-----) [003] d..1 24577.447857: cpu_idle: state=0 cpu_id=3
119295              ps-13421 (13421) [002] d..2 24577.448997: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
119296              ps-13421 (13421) [002] d..3 24577.449021: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119297          <idle>-0     (-----) [003] d.h2 24577.450645: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
119298          <idle>-0     (-----) [003] dnh3 24577.450654: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
119299          <idle>-0     (-----) [003] .n.1 24577.450688: cpu_idle: state=4294967295 cpu_id=3
119300          <idle>-0     (-----) [003] d..2 24577.450694: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
119301        DispSync-23904 (23896) [003] d..1 24577.450715: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
119302        DispSync-23904 (23896) [003] d..2 24577.450725: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
119303          <idle>-0     (-----) [001] .n.1 24577.450729: cpu_idle: state=4294967295 cpu_id=1
119304          <idle>-0     (-----) [001] d..2 24577.450736: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
119305        DispSync-23904 (23896) [003] d..2 24577.450767: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119306  appEventThread-23905 (23896) [001] d..3 24577.450773: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
119307  appEventThread-23905 (23896) [001] d..4 24577.450793: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
119308  appEventThread-23905 (23896) [001] d..2 24577.450815: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119309          <idle>-0     (-----) [001] d..1 24577.450821: cpu_idle: state=0 cpu_id=1
119310 shell svc 13418-13419 ( 1007) [003] d..2 24577.450865: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
119311 shell svc 13418-13419 ( 1007) [003] dn.3 24577.450886: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
119312          <idle>-0     (-----) [001] d.s2 24577.450897: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
119313          <idle>-0     (-----) [001] dns3 24577.450906: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
119314 shell svc 13418-13419 ( 1007) [003] d..2 24577.450915: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=1007 next_prio=120
119315          <idle>-0     (-----) [001] .n.1 24577.450916: cpu_idle: state=4294967295 cpu_id=1
119316          <idle>-0     (-----) [001] d..2 24577.450921: 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
119317     rcu_preempt-7     (    7) [001] d..2 24577.450937: 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
119318          <idle>-0     (-----) [001] d..1 24577.450945: cpu_idle: state=2 cpu_id=1
119319          <idle>-0     (-----) [000] .n.1 24577.451051: cpu_idle: state=4294967295 cpu_id=0
119320          <idle>-0     (-----) [000] d..2 24577.451065: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
119321            adbd-1007  ( 1007) [003] d..1 24577.451177: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
119322            adbd-1007  ( 1007) [003] d..2 24577.451202: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
119323            adbd-1007  ( 1007) [003] d..2 24577.451272: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119324 s.nexuslauncher-24827 (24827) [000] .... 24577.451314: binder_transaction: transaction=1671633 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
119325 shell svc 13418-13419 ( 1007) [003] d..2 24577.451325: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119326 s.nexuslauncher-24827 (24827) [000] d..4 24577.451327: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
119327          <idle>-0     (-----) [003] d..1 24577.451336: cpu_idle: state=0 cpu_id=3
119328 s.nexuslauncher-24827 (24827) [000] d..5 24577.451349: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
119329 s.nexuslauncher-24827 (24827) [000] d..2 24577.451422: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
119330              ps-13421 (13421) [002] d..2 24577.451464: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=003
119331              ps-13421 (13421) [002] d..3 24577.451479: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119332            adbd-23485 ( 1007) [000] d..2 24577.451586: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119333          <idle>-0     (-----) [000] d..1 24577.451599: cpu_idle: state=0 cpu_id=0
119334          <idle>-0     (-----) [001] dnh3 24577.451612: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
119335          <idle>-0     (-----) [001] dnh4 24577.451649: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119336          <idle>-0     (-----) [001] .n.1 24577.451657: cpu_idle: state=4294967295 cpu_id=1
119337          <idle>-0     (-----) [001] d..2 24577.451666: 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
119338   kworker/u17:2-23076 (23076) [001] d..2 24577.451699: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119339   kworker/u17:2-23076 (23076) [001] d..3 24577.451716: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119340   kworker/u17:2-23076 (23076) [001] d..2 24577.451746: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119341     kworker/1:1-13091 (13091) [001] d..2 24577.451764: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
119342     kworker/1:1-13091 (13091) [001] d..3 24577.451786: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
119343     kworker/1:1-13091 (13091) [001] d..2 24577.451802: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
119344            adbd-23485 ( 1007) [001] d..2 24577.451870: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
119345  Binder:23896_5-25989 (23896) [001] .... 24577.451878: binder_transaction_received: transaction=1671633
119346  Binder:23896_5-25989 (23896) [001] d.h2 24577.451901: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119347  Binder:23896_5-25989 (23896) [001] dnh3 24577.451912: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119348  Binder:23896_5-25989 (23896) [001] d..2 24577.451920: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
119349   kworker/u17:2-23076 (23076) [001] d..2 24577.451928: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119350   kworker/u17:2-23076 (23076) [001] d..3 24577.451934: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119351   kworker/u17:2-23076 (23076) [001] d..2 24577.451953: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119352     kworker/1:1-13091 (13091) [001] d..2 24577.451960: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
119353     kworker/1:1-13091 (13091) [001] d..3 24577.451968: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
119354     kworker/1:1-13091 (13091) [001] d..2 24577.451977: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
119355            adbd-23485 ( 1007) [001] d..2 24577.452032: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
119356  Binder:23896_5-25989 (23896) [001] d..1 24577.452059: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
119357  Binder:23896_5-25989 (23896) [001] d..2 24577.452075: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
119358          <idle>-0     (-----) [000] .n.1 24577.452080: cpu_idle: state=4294967295 cpu_id=0
119359          <idle>-0     (-----) [000] d..2 24577.452086: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
119360  Binder:23896_5-25989 (23896) [001] d..2 24577.452109: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119361          <idle>-0     (-----) [001] d..1 24577.452117: cpu_idle: state=0 cpu_id=1
119362  appEventThread-23905 (23896) [000] d..2 24577.452134: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119363 shell svc 13418-13419 ( 1007) [000] d..2 24577.452188: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119364              ps-13421 (13421) [002] d..2 24577.452190: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
119365          <idle>-0     (-----) [001] d.h3 24577.452195: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119366          <idle>-0     (-----) [000] d..1 24577.452197: cpu_idle: state=0 cpu_id=0
119367          <idle>-0     (-----) [001] dnh4 24577.452201: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119368              ps-13421 (13421) [002] d..3 24577.452207: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119369          <idle>-0     (-----) [001] .n.1 24577.452207: cpu_idle: state=4294967295 cpu_id=1
119370          <idle>-0     (-----) [001] d..2 24577.452214: 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
119371   kworker/u17:2-23076 (23076) [001] d..2 24577.452226: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119372   kworker/u17:2-23076 (23076) [001] d..3 24577.452232: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119373   kworker/u17:2-23076 (23076) [001] d..2 24577.452252: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119374     kworker/1:1-13091 (13091) [001] d..2 24577.452272: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
119375     kworker/1:1-13091 (13091) [001] d..3 24577.452300: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
119376     kworker/1:1-13091 (13091) [001] d..2 24577.452312: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
119377            adbd-23484 ( 1007) [001] d..2 24577.452347: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
119378            adbd-23484 ( 1007) [001] d..3 24577.452360: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
119379            adbd-23484 ( 1007) [001] d..2 24577.452431: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
119380            adbd-1007  ( 1007) [001] d..1 24577.452524: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
119381            adbd-1007  ( 1007) [001] d..2 24577.452536: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
119382            adbd-1007  ( 1007) [001] d..2 24577.452566: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
119383            adbd-23485 ( 1007) [001] d..2 24577.452624: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119384          <idle>-0     (-----) [001] d.h4 24577.452644: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119385          <idle>-0     (-----) [001] dnh5 24577.452651: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119386          <idle>-0     (-----) [001] d..2 24577.452659: 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
119387   kworker/u17:2-23076 (23076) [001] d..2 24577.452668: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119388   kworker/u17:2-23076 (23076) [001] d..3 24577.452674: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119389   kworker/u17:2-23076 (23076) [001] d..2 24577.452692: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119390     kworker/1:1-13091 (13091) [001] d..2 24577.452697: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
119391     kworker/1:1-13091 (13091) [001] d..3 24577.452706: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
119392     kworker/1:1-13091 (13091) [001] d..2 24577.452715: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
119393            adbd-23485 ( 1007) [001] d..2 24577.452769: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119394          <idle>-0     (-----) [001] d..1 24577.452777: cpu_idle: state=0 cpu_id=1
119395          <idle>-0     (-----) [001] d.h3 24577.452797: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119396          <idle>-0     (-----) [001] dnh4 24577.452803: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119397          <idle>-0     (-----) [001] .n.1 24577.452809: cpu_idle: state=4294967295 cpu_id=1
119398          <idle>-0     (-----) [001] d..2 24577.452815: 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
119399   kworker/u17:2-23076 (23076) [001] d..2 24577.452825: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119400   kworker/u17:2-23076 (23076) [001] d..3 24577.452830: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119401   kworker/u17:2-23076 (23076) [001] d..2 24577.452850: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119402     kworker/1:1-13091 (13091) [001] d..2 24577.452855: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
119403     kworker/1:1-13091 (13091) [001] d..3 24577.452864: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
119404     kworker/1:1-13091 (13091) [001] d..2 24577.452872: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
119405            adbd-23485 ( 1007) [001] d..2 24577.452892: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119406          <idle>-0     (-----) [001] d..1 24577.452898: cpu_idle: state=0 cpu_id=1
119407          <idle>-0     (-----) [001] d.h3 24577.452983: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119408          <idle>-0     (-----) [001] dnh4 24577.452989: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119409          <idle>-0     (-----) [001] .n.1 24577.452995: cpu_idle: state=4294967295 cpu_id=1
119410          <idle>-0     (-----) [001] d..2 24577.453001: 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
119411   kworker/u17:2-23076 (23076) [001] d..2 24577.453010: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119412   kworker/u17:2-23076 (23076) [001] d..3 24577.453016: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119413   kworker/u17:2-23076 (23076) [001] d..2 24577.453035: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119414     kworker/1:1-13091 (13091) [001] d..2 24577.453044: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
119415     kworker/1:1-13091 (13091) [001] d..3 24577.453053: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
119416     kworker/1:1-13091 (13091) [001] d..2 24577.453061: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
119417            adbd-23484 ( 1007) [001] d..2 24577.453073: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
119418            adbd-23484 ( 1007) [001] d..3 24577.453079: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
119419            adbd-23484 ( 1007) [001] d..2 24577.453129: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
119420            adbd-1007  ( 1007) [001] d..2 24577.453191: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119421          <idle>-0     (-----) [001] d..1 24577.453199: cpu_idle: state=0 cpu_id=1
119422              ps-13421 (13421) [002] dns2 24577.454237: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
119423              ps-13421 (13421) [002] dns3 24577.454264: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
119424          <idle>-0     (-----) [000] .n.1 24577.454269: cpu_idle: state=4294967295 cpu_id=0
119425              ps-13421 (13421) [002] d..2 24577.454273: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119426          <idle>-0     (-----) [000] d..2 24577.454277: 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
119427  kworker/u16:16-25995 (25995) [000] .... 24577.454316: clk_set_rate: l3_cluster0_vote_clk 1401600000
119428 shell svc 13418-13419 ( 1007) [002] d..2 24577.454319: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
119429  kworker/u16:16-25995 (25995) [000] .... 24577.454320: clk_set_rate: l3_clk 1401600000
119430 shell svc 13418-13419 ( 1007) [002] d..3 24577.454346: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
119431 shell svc 13418-13419 ( 1007) [002] d..2 24577.454360: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119432              ps-13421 (13421) [002] d..2 24577.454497: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119433  kworker/u16:16-25995 (25995) [000] d..2 24577.454503: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=D ==> next_comm=adbd next_pid=1007 next_prio=120
119434              ps-13421 (13421) [002] dn.3 24577.454506: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119435              ps-13421 (13421) [002] d..2 24577.454512: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119436 shell svc 13418-13419 ( 1007) [002] d..2 24577.454535: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119437          <idle>-0     (-----) [003] d.s3 24577.454541: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
119438          <idle>-0     (-----) [003] d.s4 24577.454555: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
119439            adbd-1007  ( 1007) [000] d..1 24577.454556: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
119440          <idle>-0     (-----) [003] dns4 24577.454558: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
119441          <idle>-0     (-----) [003] .n.1 24577.454563: cpu_idle: state=4294967295 cpu_id=3
119442          <idle>-0     (-----) [003] d..2 24577.454570: 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
119443            adbd-1007  ( 1007) [000] d..2 24577.454580: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
119444  kworker/u16:16-25995 (25995) [003] d..2 24577.454587: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
119445            adbd-1007  ( 1007) [000] d..2 24577.454627: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119446          <idle>-0     (-----) [000] d..1 24577.454635: cpu_idle: state=0 cpu_id=0
119447            adbd-23485 ( 1007) [003] d..2 24577.454643: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119448          <idle>-0     (-----) [003] d..1 24577.454651: cpu_idle: state=0 cpu_id=3
119449          <idle>-0     (-----) [001] d.h3 24577.454659: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119450          <idle>-0     (-----) [001] dnh4 24577.454669: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119451          <idle>-0     (-----) [001] .n.1 24577.454675: cpu_idle: state=4294967295 cpu_id=1
119452          <idle>-0     (-----) [001] d..2 24577.454682: 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
119453   kworker/u17:2-23076 (23076) [001] d..2 24577.454691: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119454   kworker/u17:2-23076 (23076) [001] d..3 24577.454696: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119455   kworker/u17:2-23076 (23076) [001] d..2 24577.454716: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119456              ps-13421 (13421) [002] d..2 24577.454720: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119457     kworker/1:1-13091 (13091) [001] d..2 24577.454722: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
119458              ps-13421 (13421) [002] dn.3 24577.454729: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119459     kworker/1:1-13091 (13091) [001] d..3 24577.454731: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
119460              ps-13421 (13421) [002] d..2 24577.454735: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119461          <idle>-0     (-----) [003] .n.1 24577.454737: cpu_idle: state=4294967295 cpu_id=3
119462          <idle>-0     (-----) [003] d..2 24577.454743: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
119463     kworker/1:1-13091 (13091) [001] d..2 24577.454747: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119464          <idle>-0     (-----) [001] d..1 24577.454752: cpu_idle: state=0 cpu_id=1
119465 shell svc 13418-13419 ( 1007) [002] d..2 24577.454758: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119466            adbd-23485 ( 1007) [003] d..2 24577.454793: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119467          <idle>-0     (-----) [003] d..1 24577.454800: cpu_idle: state=2 cpu_id=3
119468          <idle>-0     (-----) [001] d.h3 24577.454842: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119469          <idle>-0     (-----) [001] dnh4 24577.454847: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119470          <idle>-0     (-----) [001] .n.1 24577.454852: cpu_idle: state=4294967295 cpu_id=1
119471          <idle>-0     (-----) [001] d..2 24577.454857: 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
119472   kworker/u17:2-23076 (23076) [001] d..2 24577.454865: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119473   kworker/u17:2-23076 (23076) [001] d..3 24577.454871: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119474   kworker/u17:2-23076 (23076) [001] d..2 24577.454889: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119475     kworker/1:1-13091 (13091) [001] d..2 24577.454895: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
119476     kworker/1:1-13091 (13091) [001] d..3 24577.454903: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
119477     kworker/1:1-13091 (13091) [001] d..2 24577.454915: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119478          <idle>-0     (-----) [001] d..1 24577.454920: cpu_idle: state=0 cpu_id=1
119479              ps-13421 (13421) [002] d..2 24577.454944: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119480              ps-13421 (13421) [002] dn.3 24577.454952: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119481              ps-13421 (13421) [002] d..2 24577.454958: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119482 shell svc 13418-13419 ( 1007) [002] d..2 24577.454981: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119483          <idle>-0     (-----) [001] d.h3 24577.455072: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119484          <idle>-0     (-----) [001] dnh4 24577.455078: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119485          <idle>-0     (-----) [001] .n.1 24577.455083: cpu_idle: state=4294967295 cpu_id=1
119486          <idle>-0     (-----) [001] d..2 24577.455088: 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
119487   kworker/u17:2-23076 (23076) [001] d..2 24577.455095: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119488   kworker/u17:2-23076 (23076) [001] d..3 24577.455100: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119489   kworker/u17:2-23076 (23076) [001] d..2 24577.455117: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119490     kworker/1:1-13091 (13091) [001] d..2 24577.455124: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
119491     kworker/1:1-13091 (13091) [001] d..3 24577.455133: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
119492          <idle>-0     (-----) [003] .n.1 24577.455135: cpu_idle: state=4294967295 cpu_id=3
119493     kworker/1:1-13091 (13091) [001] d..2 24577.455141: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
119494          <idle>-0     (-----) [003] d..2 24577.455146: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
119495            adbd-23484 ( 1007) [001] d..2 24577.455151: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
119496            adbd-23484 ( 1007) [001] d..3 24577.455163: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
119497              ps-13421 (13421) [002] d..2 24577.455165: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119498            adbd-23485 ( 1007) [003] d..2 24577.455169: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119499              ps-13421 (13421) [002] dn.3 24577.455175: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119500          <idle>-0     (-----) [003] d..1 24577.455177: cpu_idle: state=0 cpu_id=3
119501              ps-13421 (13421) [002] d..2 24577.455181: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119502 shell svc 13418-13419 ( 1007) [002] d..2 24577.455204: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119503            adbd-23484 ( 1007) [001] d..2 24577.455210: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
119504            adbd-1007  ( 1007) [001] d..1 24577.455273: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
119505            adbd-1007  ( 1007) [001] d..2 24577.455284: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
119506          <idle>-0     (-----) [003] .n.1 24577.455289: cpu_idle: state=4294967295 cpu_id=3
119507          <idle>-0     (-----) [003] d..2 24577.455295: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
119508            adbd-1007  ( 1007) [001] d..2 24577.455316: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119509          <idle>-0     (-----) [001] d..1 24577.455322: cpu_idle: state=0 cpu_id=1
119510            adbd-23485 ( 1007) [003] d..2 24577.455349: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119511          <idle>-0     (-----) [003] d..1 24577.455356: cpu_idle: state=0 cpu_id=3
119512          <idle>-0     (-----) [001] d.h3 24577.455369: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119513          <idle>-0     (-----) [001] dnh4 24577.455375: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119514          <idle>-0     (-----) [001] .n.1 24577.455381: cpu_idle: state=4294967295 cpu_id=1
119515          <idle>-0     (-----) [001] d..2 24577.455386: 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
119516              ps-13421 (13421) [002] d..2 24577.455390: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119517   kworker/u17:2-23076 (23076) [001] d..2 24577.455395: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119518              ps-13421 (13421) [002] dn.3 24577.455399: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119519   kworker/u17:2-23076 (23076) [001] d..3 24577.455401: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119520              ps-13421 (13421) [002] d..2 24577.455405: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119521   kworker/u17:2-23076 (23076) [001] d..2 24577.455420: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119522     kworker/1:1-13091 (13091) [001] d..2 24577.455425: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
119523 shell svc 13418-13419 ( 1007) [002] d..2 24577.455429: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119524     kworker/1:1-13091 (13091) [001] d..3 24577.455435: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
119525          <idle>-0     (-----) [003] .n.1 24577.455439: cpu_idle: state=4294967295 cpu_id=3
119526          <idle>-0     (-----) [003] d..2 24577.455446: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
119527     kworker/1:1-13091 (13091) [001] d..2 24577.455448: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119528          <idle>-0     (-----) [001] d..1 24577.455453: cpu_idle: state=0 cpu_id=1
119529            adbd-23485 ( 1007) [003] d..2 24577.455497: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119530          <idle>-0     (-----) [003] d..1 24577.455504: cpu_idle: state=0 cpu_id=3
119531          <idle>-0     (-----) [001] d.h3 24577.455514: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119532          <idle>-0     (-----) [001] dnh4 24577.455520: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119533          <idle>-0     (-----) [001] .n.1 24577.455524: cpu_idle: state=4294967295 cpu_id=1
119534          <idle>-0     (-----) [001] d..2 24577.455530: 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
119535   kworker/u17:2-23076 (23076) [001] d..2 24577.455539: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119536   kworker/u17:2-23076 (23076) [001] d..3 24577.455544: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119537   kworker/u17:2-23076 (23076) [001] d..2 24577.455562: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119538     kworker/1:1-13091 (13091) [001] d..2 24577.455567: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
119539     kworker/1:1-13091 (13091) [001] d..3 24577.455576: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
119540          <idle>-0     (-----) [003] .n.1 24577.455581: cpu_idle: state=4294967295 cpu_id=3
119541          <idle>-0     (-----) [003] d..2 24577.455587: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
119542     kworker/1:1-13091 (13091) [001] d..2 24577.455589: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119543          <idle>-0     (-----) [001] d..1 24577.455594: cpu_idle: state=0 cpu_id=1
119544            adbd-23485 ( 1007) [003] d..2 24577.455602: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119545              ps-13421 (13421) [002] d..2 24577.455608: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119546          <idle>-0     (-----) [003] d..1 24577.455609: cpu_idle: state=0 cpu_id=3
119547              ps-13421 (13421) [002] dn.3 24577.455617: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119548              ps-13421 (13421) [002] d..2 24577.455623: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119549 shell svc 13418-13419 ( 1007) [002] d..2 24577.455645: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119550          <idle>-0     (-----) [001] d.h3 24577.455701: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119551          <idle>-0     (-----) [001] dnh4 24577.455706: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119552          <idle>-0     (-----) [001] .n.1 24577.455710: cpu_idle: state=4294967295 cpu_id=1
119553          <idle>-0     (-----) [001] d..2 24577.455716: 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
119554   kworker/u17:2-23076 (23076) [001] d..2 24577.455724: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119555   kworker/u17:2-23076 (23076) [001] d..3 24577.455729: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119556   kworker/u17:2-23076 (23076) [001] d..2 24577.455747: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119557     kworker/1:1-13091 (13091) [001] d..2 24577.455753: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
119558     kworker/1:1-13091 (13091) [001] d..3 24577.455763: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
119559     kworker/1:1-13091 (13091) [001] d..2 24577.455772: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
119560            adbd-23484 ( 1007) [001] d..2 24577.455783: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
119561            adbd-23484 ( 1007) [001] d..3 24577.455789: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
119562              ps-13421 (13421) [002] d..2 24577.455836: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119563            adbd-23484 ( 1007) [001] d..2 24577.455839: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
119564              ps-13421 (13421) [002] dn.3 24577.455844: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119565              ps-13421 (13421) [002] d..2 24577.455850: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119566 shell svc 13418-13419 ( 1007) [002] d..2 24577.455872: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119567            adbd-1007  ( 1007) [001] d..1 24577.455894: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
119568            adbd-1007  ( 1007) [001] d..2 24577.455906: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
119569          <idle>-0     (-----) [003] .n.1 24577.455911: cpu_idle: state=4294967295 cpu_id=3
119570          <idle>-0     (-----) [003] d..2 24577.455917: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
119571            adbd-1007  ( 1007) [001] d..2 24577.455936: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119572          <idle>-0     (-----) [001] d..1 24577.455943: cpu_idle: state=0 cpu_id=1
119573            adbd-23485 ( 1007) [003] d..2 24577.455965: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119574          <idle>-0     (-----) [003] d..1 24577.455972: cpu_idle: state=0 cpu_id=3
119575          <idle>-0     (-----) [001] d.h3 24577.455993: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119576          <idle>-0     (-----) [001] dnh4 24577.456000: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119577          <idle>-0     (-----) [001] .n.1 24577.456005: cpu_idle: state=4294967295 cpu_id=1
119578          <idle>-0     (-----) [001] d..2 24577.456010: 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
119579   kworker/u17:2-23076 (23076) [001] d..2 24577.456020: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119580   kworker/u17:2-23076 (23076) [001] d..3 24577.456025: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119581   kworker/u17:2-23076 (23076) [001] d..2 24577.456044: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119582     kworker/1:1-13091 (13091) [001] d..2 24577.456052: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
119583              ps-13421 (13421) [002] d..2 24577.456060: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119584     kworker/1:1-13091 (13091) [001] d..3 24577.456061: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
119585          <idle>-0     (-----) [003] .n.1 24577.456066: cpu_idle: state=4294967295 cpu_id=3
119586              ps-13421 (13421) [002] dn.3 24577.456070: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119587          <idle>-0     (-----) [003] d..2 24577.456072: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
119588              ps-13421 (13421) [002] d..2 24577.456077: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119589     kworker/1:1-13091 (13091) [001] d..2 24577.456078: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119590          <idle>-0     (-----) [001] d..1 24577.456083: cpu_idle: state=0 cpu_id=1
119591 shell svc 13418-13419 ( 1007) [002] d..2 24577.456099: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119592            adbd-23485 ( 1007) [003] d..2 24577.456121: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119593          <idle>-0     (-----) [003] d..1 24577.456128: cpu_idle: state=0 cpu_id=3
119594          <idle>-0     (-----) [001] d.h3 24577.456139: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119595          <idle>-0     (-----) [001] dnh4 24577.456144: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119596          <idle>-0     (-----) [001] .n.1 24577.456149: cpu_idle: state=4294967295 cpu_id=1
119597          <idle>-0     (-----) [001] d..2 24577.456153: 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
119598   kworker/u17:2-23076 (23076) [001] d..2 24577.456162: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119599   kworker/u17:2-23076 (23076) [001] d..3 24577.456167: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119600   kworker/u17:2-23076 (23076) [001] d..2 24577.456187: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119601     kworker/1:1-13091 (13091) [001] d..2 24577.456191: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
119602     kworker/1:1-13091 (13091) [001] d..3 24577.456201: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
119603          <idle>-0     (-----) [003] .n.1 24577.456206: cpu_idle: state=4294967295 cpu_id=3
119604          <idle>-0     (-----) [003] d..2 24577.456212: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
119605     kworker/1:1-13091 (13091) [001] d..2 24577.456214: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119606          <idle>-0     (-----) [001] d..1 24577.456219: cpu_idle: state=0 cpu_id=1
119607            adbd-23485 ( 1007) [003] d..2 24577.456229: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119608          <idle>-0     (-----) [003] d..1 24577.456235: cpu_idle: state=0 cpu_id=3
119609              ps-13421 (13421) [002] d..2 24577.456294: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119610              ps-13421 (13421) [002] dn.3 24577.456304: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119611              ps-13421 (13421) [002] d..2 24577.456310: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119612          <idle>-0     (-----) [001] d.h3 24577.456323: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119613          <idle>-0     (-----) [001] dnh4 24577.456328: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119614 shell svc 13418-13419 ( 1007) [002] d..2 24577.456333: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119615          <idle>-0     (-----) [001] .n.1 24577.456334: cpu_idle: state=4294967295 cpu_id=1
119616          <idle>-0     (-----) [001] d..2 24577.456339: 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
119617   kworker/u17:2-23076 (23076) [001] d..2 24577.456346: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119618   kworker/u17:2-23076 (23076) [001] d..3 24577.456352: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119619   kworker/u17:2-23076 (23076) [001] d..2 24577.456370: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119620     kworker/1:1-13091 (13091) [001] d..2 24577.456376: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
119621     kworker/1:1-13091 (13091) [001] d..3 24577.456385: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
119622     kworker/1:1-13091 (13091) [001] d..2 24577.456393: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
119623            adbd-23484 ( 1007) [001] d..2 24577.456406: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
119624            adbd-23484 ( 1007) [001] d..3 24577.456411: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
119625            adbd-23484 ( 1007) [001] d..2 24577.456462: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
119626            adbd-1007  ( 1007) [001] d..1 24577.456516: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
119627              ps-13421 (13421) [002] d..2 24577.456519: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119628              ps-13421 (13421) [002] dn.3 24577.456528: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119629            adbd-1007  ( 1007) [001] d..2 24577.456528: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
119630          <idle>-0     (-----) [003] .n.1 24577.456533: cpu_idle: state=4294967295 cpu_id=3
119631              ps-13421 (13421) [002] d..2 24577.456533: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119632          <idle>-0     (-----) [003] d..2 24577.456539: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
119633 shell svc 13418-13419 ( 1007) [002] d..2 24577.456557: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119634            adbd-1007  ( 1007) [001] d..2 24577.456560: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119635          <idle>-0     (-----) [001] d..1 24577.456566: cpu_idle: state=0 cpu_id=1
119636            adbd-23485 ( 1007) [003] d..2 24577.456585: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119637          <idle>-0     (-----) [003] d..1 24577.456592: cpu_idle: state=0 cpu_id=3
119638          <idle>-0     (-----) [001] d.h3 24577.456598: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119639          <idle>-0     (-----) [001] dnh4 24577.456604: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119640          <idle>-0     (-----) [001] .n.1 24577.456609: cpu_idle: state=4294967295 cpu_id=1
119641          <idle>-0     (-----) [001] d..2 24577.456615: 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
119642   kworker/u17:2-23076 (23076) [001] d..2 24577.456625: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119643   kworker/u17:2-23076 (23076) [001] d..3 24577.456631: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119644   kworker/u17:2-23076 (23076) [001] d..2 24577.456649: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119645     kworker/1:1-13091 (13091) [001] d..2 24577.456656: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
119646     kworker/1:1-13091 (13091) [001] d..3 24577.456677: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
119647     kworker/1:1-13091 (13091) [001] d..2 24577.456687: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
119648            adbd-23485 ( 1007) [001] d..2 24577.456741: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119649              ps-13421 (13421) [002] d..2 24577.456743: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119650          <idle>-0     (-----) [001] d..1 24577.456747: cpu_idle: state=0 cpu_id=1
119651              ps-13421 (13421) [002] dn.3 24577.456751: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119652              ps-13421 (13421) [002] d..2 24577.456757: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119653          <idle>-0     (-----) [001] d.h3 24577.456766: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119654          <idle>-0     (-----) [001] dnh4 24577.456775: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119655 shell svc 13418-13419 ( 1007) [002] d..2 24577.456780: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119656          <idle>-0     (-----) [001] .n.1 24577.456781: cpu_idle: state=4294967295 cpu_id=1
119657          <idle>-0     (-----) [001] d..2 24577.456786: 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
119658   kworker/u17:2-23076 (23076) [001] d..2 24577.456795: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119659   kworker/u17:2-23076 (23076) [001] d..3 24577.456799: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119660   kworker/u17:2-23076 (23076) [001] d..2 24577.456818: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119661     kworker/1:1-13091 (13091) [001] d..2 24577.456823: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
119662     kworker/1:1-13091 (13091) [001] d..3 24577.456831: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
119663     kworker/1:1-13091 (13091) [001] d..2 24577.456839: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
119664            adbd-23485 ( 1007) [001] d..2 24577.456857: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119665          <idle>-0     (-----) [001] d..1 24577.456862: cpu_idle: state=0 cpu_id=1
119666          <idle>-0     (-----) [001] d.h3 24577.456945: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119667          <idle>-0     (-----) [001] dnh4 24577.456951: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119668          <idle>-0     (-----) [001] .n.1 24577.456955: cpu_idle: state=4294967295 cpu_id=1
119669          <idle>-0     (-----) [001] d..2 24577.456960: 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
119670   kworker/u17:2-23076 (23076) [001] d..2 24577.456969: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119671   kworker/u17:2-23076 (23076) [001] d..3 24577.456974: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119672              ps-13421 (13421) [002] d..2 24577.456983: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119673              ps-13421 (13421) [002] dn.3 24577.456992: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119674   kworker/u17:2-23076 (23076) [001] d..2 24577.456992: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119675              ps-13421 (13421) [002] d..2 24577.456998: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119676     kworker/1:1-13091 (13091) [001] d..2 24577.456998: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
119677     kworker/1:1-13091 (13091) [001] d..3 24577.457007: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
119678     kworker/1:1-13091 (13091) [001] d..2 24577.457016: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
119679 shell svc 13418-13419 ( 1007) [002] d..2 24577.457022: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119680            adbd-23484 ( 1007) [001] d..2 24577.457027: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
119681            adbd-23484 ( 1007) [001] d..3 24577.457032: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
119682            adbd-23484 ( 1007) [001] d..2 24577.457079: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
119683            adbd-1007  ( 1007) [001] d..1 24577.457136: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
119684            adbd-1007  ( 1007) [001] d..2 24577.457149: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
119685            adbd-1007  ( 1007) [001] d..2 24577.457175: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
119686              ps-13421 (13421) [002] d..2 24577.457209: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119687              ps-13421 (13421) [002] dn.3 24577.457218: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119688              ps-13421 (13421) [002] d..2 24577.457224: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119689            adbd-23485 ( 1007) [001] d..2 24577.457233: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119690 shell svc 13418-13419 ( 1007) [002] d..2 24577.457246: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119691          <idle>-0     (-----) [001] d.h4 24577.457252: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119692          <idle>-0     (-----) [001] dnh5 24577.457259: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119693          <idle>-0     (-----) [001] d..2 24577.457267: 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
119694   kworker/u17:2-23076 (23076) [001] d..2 24577.457275: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119695   kworker/u17:2-23076 (23076) [001] d..3 24577.457281: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119696   kworker/u17:2-23076 (23076) [001] d..2 24577.457299: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119697     kworker/1:1-13091 (13091) [001] d..2 24577.457304: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
119698     kworker/1:1-13091 (13091) [001] d..3 24577.457312: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
119699     kworker/1:1-13091 (13091) [001] d..2 24577.457321: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
119700            adbd-23485 ( 1007) [001] d..2 24577.457400: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119701          <idle>-0     (-----) [001] d..1 24577.457410: cpu_idle: state=0 cpu_id=1
119702          <idle>-0     (-----) [001] d.h3 24577.457431: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119703          <idle>-0     (-----) [001] dnh4 24577.457438: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119704              ps-13421 (13421) [002] d..2 24577.457439: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119705          <idle>-0     (-----) [001] .n.1 24577.457445: cpu_idle: state=4294967295 cpu_id=1
119706              ps-13421 (13421) [002] dn.3 24577.457448: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119707          <idle>-0     (-----) [001] d..2 24577.457450: 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
119708              ps-13421 (13421) [002] d..2 24577.457454: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119709   kworker/u17:2-23076 (23076) [001] d..2 24577.457459: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119710   kworker/u17:2-23076 (23076) [001] d..3 24577.457465: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119711 shell svc 13418-13419 ( 1007) [002] d..2 24577.457477: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119712   kworker/u17:2-23076 (23076) [001] d..2 24577.457483: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119713     kworker/1:1-13091 (13091) [001] d..2 24577.457488: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
119714     kworker/1:1-13091 (13091) [001] d..3 24577.457496: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
119715     kworker/1:1-13091 (13091) [001] d..2 24577.457504: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
119716            adbd-23485 ( 1007) [001] d..2 24577.457520: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119717          <idle>-0     (-----) [001] d..1 24577.457525: cpu_idle: state=0 cpu_id=1
119718              ps-13421 (13421) [002] d.h2 24577.457575: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
119719              ps-13421 (13421) [002] dnh3 24577.457586: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
119720          <idle>-0     (-----) [001] d.H3 24577.457662: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119721              ps-13421 (13421) [002] dnH2 24577.457662: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
119722          <idle>-0     (-----) [000] ...1 24577.457670: cpu_idle: state=4294967295 cpu_id=0
119723          <idle>-0     (-----) [001] dnH4 24577.457670: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119724          <idle>-0     (-----) [000] d..1 24577.457673: cpu_idle: state=0 cpu_id=0
119725              ps-13421 (13421) [002] dnH2 24577.457674: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
119726          <idle>-0     (-----) [001] dns2 24577.457675: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
119727          <idle>-0     (-----) [001] dns3 24577.457685: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
119728              ps-13421 (13421) [002] dnH3 24577.457690: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
119729          <idle>-0     (-----) [001] .n.1 24577.457691: cpu_idle: state=4294967295 cpu_id=1
119730          <idle>-0     (-----) [003] .n.1 24577.457695: cpu_idle: state=4294967295 cpu_id=3
119731          <idle>-0     (-----) [001] d..2 24577.457696: 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
119732              ps-13421 (13421) [002] dns2 24577.457699: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
119733          <idle>-0     (-----) [003] d..2 24577.457701: 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
119734   kworker/u17:2-23076 (23076) [001] d..2 24577.457704: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119735   kworker/u17:2-23076 (23076) [001] d..3 24577.457710: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119736              ps-13421 (13421) [002] dns3 24577.457712: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
119737              ps-13421 (13421) [002] d..2 24577.457720: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
119738         sugov:0-559   (  559) [003] d..2 24577.457722: 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
119739          <idle>-0     (-----) [003] d..1 24577.457727: cpu_idle: state=0 cpu_id=3
119740   kworker/u17:2-23076 (23076) [001] d..2 24577.457728: 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
119741     rcu_preempt-7     (    7) [001] d..2 24577.457732: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
119742     rcu_preempt-7     (    7) [001] d..3 24577.457755: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
119743     rcu_preempt-7     (    7) [001] d..2 24577.457780: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119744     migration/2-25    (   25) [002] d..2 24577.457786: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
119745     kworker/1:1-13091 (13091) [001] d..2 24577.457787: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
119746     kworker/1:1-13091 (13091) [001] d..3 24577.457809: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
119747     kworker/2:0-12895 (12895) [002] d..2 24577.457818: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
119748         rcuop/2-29    (   29) [002] d..2 24577.457828: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
119749         rcuop/2-29    (   29) [002] d..3 24577.457840: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
119750     kworker/1:1-13091 (13091) [001] d..2 24577.457847: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
119751     rcu_preempt-7     (    7) [001] d..2 24577.457854: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
119752         rcuop/2-29    (   29) [002] d..2 24577.457857: 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
119753            adbd-23484 ( 1007) [001] d..2 24577.457865: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
119754            adbd-23484 ( 1007) [001] d..3 24577.457871: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
119755          <idle>-0     (-----) [002] d..1 24577.457874: cpu_idle: state=0 cpu_id=2
119756            adbd-23484 ( 1007) [001] d..2 24577.457919: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
119757            adbd-1007  ( 1007) [001] d..1 24577.457973: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
119758            adbd-1007  ( 1007) [001] d..2 24577.457987: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
119759            adbd-1007  ( 1007) [001] d..2 24577.458013: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
119760            adbd-23485 ( 1007) [001] d..2 24577.458067: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119761          <idle>-0     (-----) [001] d..1 24577.458075: cpu_idle: state=0 cpu_id=1
119762          <idle>-0     (-----) [001] d.h3 24577.458099: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119763          <idle>-0     (-----) [001] dnh4 24577.458106: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119764          <idle>-0     (-----) [001] .n.1 24577.458112: cpu_idle: state=4294967295 cpu_id=1
119765          <idle>-0     (-----) [001] d..2 24577.458118: 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
119766   kworker/u17:2-23076 (23076) [001] d..2 24577.458127: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119767   kworker/u17:2-23076 (23076) [001] d..3 24577.458133: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119768   kworker/u17:2-23076 (23076) [001] d..2 24577.458152: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119769     kworker/1:1-13091 (13091) [001] d..2 24577.458158: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
119770     kworker/1:1-13091 (13091) [001] d..3 24577.458166: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
119771     kworker/1:1-13091 (13091) [001] d..2 24577.458175: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
119772            adbd-23485 ( 1007) [001] d..2 24577.458224: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119773          <idle>-0     (-----) [001] d..1 24577.458231: cpu_idle: state=0 cpu_id=1
119774          <idle>-0     (-----) [001] d.h3 24577.458249: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119775          <idle>-0     (-----) [001] dnh4 24577.458256: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119776          <idle>-0     (-----) [001] .n.1 24577.458261: cpu_idle: state=4294967295 cpu_id=1
119777          <idle>-0     (-----) [001] d..2 24577.458267: 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
119778   kworker/u17:2-23076 (23076) [001] d..2 24577.458276: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119779   kworker/u17:2-23076 (23076) [001] d..3 24577.458282: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119780   kworker/u17:2-23076 (23076) [001] d..2 24577.458299: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119781     kworker/1:1-13091 (13091) [001] d..2 24577.458305: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
119782     kworker/1:1-13091 (13091) [001] d..3 24577.458312: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
119783     kworker/1:1-13091 (13091) [001] d..2 24577.458321: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
119784            adbd-23485 ( 1007) [001] d..2 24577.458337: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119785          <idle>-0     (-----) [001] d..1 24577.458343: cpu_idle: state=0 cpu_id=1
119786          <idle>-0     (-----) [001] d.h3 24577.458473: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119787          <idle>-0     (-----) [001] dnh4 24577.458479: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119788          <idle>-0     (-----) [001] .n.1 24577.458484: cpu_idle: state=4294967295 cpu_id=1
119789          <idle>-0     (-----) [001] d..2 24577.458490: 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
119790   kworker/u17:2-23076 (23076) [001] d..2 24577.458498: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119791   kworker/u17:2-23076 (23076) [001] d..3 24577.458504: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119792   kworker/u17:2-23076 (23076) [001] d..2 24577.458522: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119793     kworker/1:1-13091 (13091) [001] d..2 24577.458528: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
119794     kworker/1:1-13091 (13091) [001] d..3 24577.458535: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
119795     kworker/1:1-13091 (13091) [001] d..2 24577.458543: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
119796            adbd-23484 ( 1007) [001] d..2 24577.458553: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
119797            adbd-23484 ( 1007) [001] d..3 24577.458559: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
119798            adbd-23484 ( 1007) [001] d..2 24577.458603: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
119799          <idle>-0     (-----) [004] .n.1 24577.458641: cpu_idle: state=4294967295 cpu_id=4
119800            adbd-1007  ( 1007) [001] d..2 24577.458658: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119801          <idle>-0     (-----) [004] d..2 24577.458663: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ps next_pid=13421 next_prio=120
119802          <idle>-0     (-----) [001] d..1 24577.458666: cpu_idle: state=0 cpu_id=1
119803          <idle>-0     (-----) [007] dnh2 24577.458716: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
119804          <idle>-0     (-----) [007] .n.1 24577.458725: cpu_idle: state=4294967295 cpu_id=7
119805          <idle>-0     (-----) [007] d..2 24577.458735: 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
119806              ps-13421 (13421) [004] d..2 24577.458747: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
119807         sugov:4-560   (  560) [007] d..2 24577.458755: 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
119808          <idle>-0     (-----) [007] d..1 24577.458766: cpu_idle: state=2 cpu_id=7
119809          <idle>-0     (-----) [000] dnh2 24577.458775: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
119810          <idle>-0     (-----) [000] .n.1 24577.458779: cpu_idle: state=4294967295 cpu_id=0
119811          <idle>-0     (-----) [000] d..2 24577.458786: 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
119812         rcuop/4-45    (   45) [000] d..2 24577.458801: 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
119813          <idle>-0     (-----) [000] d..1 24577.458807: cpu_idle: state=2 cpu_id=0
119814              ps-13421 (13421) [004] d..2 24577.458855: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
119815              ps-13421 (13421) [004] dn.3 24577.458874: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119816              ps-13421 (13421) [004] dnh3 24577.458912: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
119817              ps-13421 (13421) [004] dnh4 24577.458922: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
119818              ps-13421 (13421) [004] d..2 24577.458931: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119819 shell svc 13418-13419 ( 1007) [004] d..2 24577.458954: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
119820          <idle>-0     (-----) [001] dnh2 24577.458974: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
119821 shell svc 13418-13419 ( 1007) [004] d..2 24577.458977: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119822          <idle>-0     (-----) [001] .n.1 24577.458978: cpu_idle: state=4294967295 cpu_id=1
119823          <idle>-0     (-----) [001] d..2 24577.458984: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
119824            adbd-1007  ( 1007) [001] d..1 24577.459015: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
119825            adbd-1007  ( 1007) [001] d..2 24577.459027: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
119826            adbd-1007  ( 1007) [001] d..2 24577.459052: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
119827            adbd-23485 ( 1007) [001] d..2 24577.459104: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119828          <idle>-0     (-----) [003] ...1 24577.459108: cpu_idle: state=4294967295 cpu_id=3
119829          <idle>-0     (-----) [003] d..1 24577.459110: cpu_idle: state=2 cpu_id=3
119830          <idle>-0     (-----) [001] d..1 24577.459111: cpu_idle: state=0 cpu_id=1
119831          <idle>-0     (-----) [001] d.h3 24577.459135: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119832          <idle>-0     (-----) [001] dnh4 24577.459144: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119833          <idle>-0     (-----) [001] .n.1 24577.459149: cpu_idle: state=4294967295 cpu_id=1
119834          <idle>-0     (-----) [001] d..2 24577.459156: 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
119835   kworker/u17:2-23076 (23076) [001] d..2 24577.459165: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119836              ps-13421 (13421) [004] d..2 24577.459167: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119837   kworker/u17:2-23076 (23076) [001] d..3 24577.459170: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119838              ps-13421 (13421) [004] dn.3 24577.459175: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119839              ps-13421 (13421) [004] d..2 24577.459181: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119840   kworker/u17:2-23076 (23076) [001] d..2 24577.459189: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119841     kworker/1:1-13091 (13091) [001] d..2 24577.459193: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
119842     kworker/1:1-13091 (13091) [001] d..3 24577.459202: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
119843 shell svc 13418-13419 ( 1007) [004] d..2 24577.459207: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119844     kworker/1:1-13091 (13091) [001] d..2 24577.459210: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
119845            adbd-23485 ( 1007) [001] d..2 24577.459258: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119846          <idle>-0     (-----) [001] d..1 24577.459264: cpu_idle: state=0 cpu_id=1
119847          <idle>-0     (-----) [001] d.h3 24577.459284: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119848          <idle>-0     (-----) [001] dnh4 24577.459289: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119849          <idle>-0     (-----) [001] .n.1 24577.459294: cpu_idle: state=4294967295 cpu_id=1
119850          <idle>-0     (-----) [001] d..2 24577.459301: 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
119851   kworker/u17:2-23076 (23076) [001] d..2 24577.459309: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119852   kworker/u17:2-23076 (23076) [001] d..3 24577.459314: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119853   kworker/u17:2-23076 (23076) [001] d..2 24577.459333: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119854     kworker/1:1-13091 (13091) [001] d..2 24577.459337: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
119855     kworker/1:1-13091 (13091) [001] d..3 24577.459346: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
119856     kworker/1:1-13091 (13091) [001] d..2 24577.459354: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
119857            adbd-23485 ( 1007) [001] d..2 24577.459371: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119858          <idle>-0     (-----) [001] d..1 24577.459377: cpu_idle: state=0 cpu_id=1
119859              ps-13421 (13421) [004] d..2 24577.459379: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119860              ps-13421 (13421) [004] dn.3 24577.459386: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119861              ps-13421 (13421) [004] d..2 24577.459392: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119862 shell svc 13418-13419 ( 1007) [004] d..2 24577.459415: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119863          <idle>-0     (-----) [007] .n.1 24577.459440: cpu_idle: state=4294967295 cpu_id=7
119864          <idle>-0     (-----) [007] d..2 24577.459452: 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
119865          <idle>-0     (-----) [001] d.h3 24577.459470: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119866          <idle>-0     (-----) [001] dnh4 24577.459477: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119867          <idle>-0     (-----) [001] .n.1 24577.459482: cpu_idle: state=4294967295 cpu_id=1
119868         sugov:4-560   (  560) [007] .... 24577.459484: clk_set_rate: perfcl_clk 2803200000
119869         sugov:4-560   (  560) [007] .... 24577.459487: clk_set_rate: cpu7_perfcl_clk 825600000
119870          <idle>-0     (-----) [001] d..2 24577.459489: 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
119871         sugov:4-560   (  560) [007] .... 24577.459494: clk_set_rate: cpu6_perfcl_clk 825600000
119872   kworker/u17:2-23076 (23076) [001] d..2 24577.459497: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119873         sugov:4-560   (  560) [007] .... 24577.459500: clk_set_rate: cpu5_perfcl_clk 825600000
119874   kworker/u17:2-23076 (23076) [001] d..3 24577.459502: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119875         sugov:4-560   (  560) [007] .... 24577.459506: clk_set_rate: cpu4_perfcl_clk 2803200000
119876         sugov:4-560   (  560) [007] .... 24577.459515: cpu_frequency: state=2803200 cpu_id=4
119877   kworker/u17:2-23076 (23076) [001] d..2 24577.459519: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119878     kworker/1:1-13091 (13091) [001] d..2 24577.459524: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
119879     kworker/1:1-13091 (13091) [001] d..3 24577.459533: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
119880     kworker/1:1-13091 (13091) [001] d..2 24577.459541: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
119881            adbd-23484 ( 1007) [001] d..2 24577.459553: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
119882            adbd-23484 ( 1007) [001] d..3 24577.459559: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
119883              ps-13421 (13421) [004] d..2 24577.459596: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119884              ps-13421 (13421) [004] dn.3 24577.459602: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119885            adbd-23484 ( 1007) [001] d..2 24577.459604: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
119886              ps-13421 (13421) [004] d..2 24577.459608: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119887 shell svc 13418-13419 ( 1007) [004] d..2 24577.459636: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119888            adbd-1007  ( 1007) [001] d..1 24577.459667: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
119889            adbd-1007  ( 1007) [001] d..2 24577.459678: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
119890         sugov:4-560   (  560) [007] d..2 24577.459680: 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
119891          <idle>-0     (-----) [007] d..1 24577.459684: cpu_idle: state=2 cpu_id=7
119892            adbd-1007  ( 1007) [001] d..2 24577.459703: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
119893              ps-13421 (13421) [004] d..2 24577.459726: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119894              ps-13421 (13421) [004] dn.3 24577.459729: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119895              ps-13421 (13421) [004] d..2 24577.459732: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119896 shell svc 13418-13419 ( 1007) [004] d..2 24577.459741: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119897            adbd-23485 ( 1007) [001] d..2 24577.459752: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119898          <idle>-0     (-----) [001] d.h4 24577.459771: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119899          <idle>-0     (-----) [001] dnh5 24577.459777: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119900          <idle>-0     (-----) [001] d..2 24577.459785: 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
119901   kworker/u17:2-23076 (23076) [001] d..2 24577.459794: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119902   kworker/u17:2-23076 (23076) [001] d..3 24577.459798: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119903              ps-13421 (13421) [004] d..2 24577.459813: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119904   kworker/u17:2-23076 (23076) [001] d..2 24577.459816: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119905              ps-13421 (13421) [004] dn.3 24577.459817: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119906              ps-13421 (13421) [004] d..2 24577.459820: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119907     kworker/1:1-13091 (13091) [001] d..2 24577.459820: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
119908 shell svc 13418-13419 ( 1007) [004] d..2 24577.459828: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119909     kworker/1:1-13091 (13091) [001] d..3 24577.459829: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
119910     kworker/1:1-13091 (13091) [001] d..2 24577.459836: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
119911            adbd-23485 ( 1007) [001] d..2 24577.459886: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119912          <idle>-0     (-----) [001] d..1 24577.459893: cpu_idle: state=0 cpu_id=1
119913              ps-13421 (13421) [004] d..2 24577.459900: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119914              ps-13421 (13421) [004] dn.3 24577.459904: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119915              ps-13421 (13421) [004] d..2 24577.459907: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119916          <idle>-0     (-----) [001] d.h3 24577.459912: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119917 shell svc 13418-13419 ( 1007) [004] d..2 24577.459914: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119918          <idle>-0     (-----) [001] dnh4 24577.459918: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119919          <idle>-0     (-----) [001] .n.1 24577.459924: cpu_idle: state=4294967295 cpu_id=1
119920          <idle>-0     (-----) [001] d..2 24577.459930: 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
119921   kworker/u17:2-23076 (23076) [001] d..2 24577.459938: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119922   kworker/u17:2-23076 (23076) [001] d..3 24577.459943: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119923   kworker/u17:2-23076 (23076) [001] d..2 24577.459960: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119924     kworker/1:1-13091 (13091) [001] d..2 24577.459964: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
119925     kworker/1:1-13091 (13091) [001] d..3 24577.459972: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
119926              ps-13421 (13421) [004] d..2 24577.459979: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119927     kworker/1:1-13091 (13091) [001] d..2 24577.459981: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
119928              ps-13421 (13421) [004] dn.3 24577.459982: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119929              ps-13421 (13421) [004] d..2 24577.459985: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119930 shell svc 13418-13419 ( 1007) [004] d..2 24577.459993: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119931            adbd-23485 ( 1007) [001] d..2 24577.459997: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119932          <idle>-0     (-----) [001] d..1 24577.460003: cpu_idle: state=0 cpu_id=1
119933              ps-13421 (13421) [004] d..2 24577.460070: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119934              ps-13421 (13421) [004] dn.3 24577.460073: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119935              ps-13421 (13421) [004] d..2 24577.460076: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119936 shell svc 13418-13419 ( 1007) [004] d..2 24577.460084: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119937          <idle>-0     (-----) [001] d.h3 24577.460091: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119938          <idle>-0     (-----) [001] dnh4 24577.460097: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119939          <idle>-0     (-----) [001] .n.1 24577.460102: cpu_idle: state=4294967295 cpu_id=1
119940          <idle>-0     (-----) [001] d..2 24577.460108: 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
119941   kworker/u17:2-23076 (23076) [001] d..2 24577.460116: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119942   kworker/u17:2-23076 (23076) [001] d..3 24577.460121: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119943   kworker/u17:2-23076 (23076) [001] d..2 24577.460140: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119944     kworker/1:1-13091 (13091) [001] d..2 24577.460145: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
119945              ps-13421 (13421) [004] d..2 24577.460151: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119946              ps-13421 (13421) [004] dn.3 24577.460154: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119947     kworker/1:1-13091 (13091) [001] d..3 24577.460155: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
119948              ps-13421 (13421) [004] d..2 24577.460157: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119949     kworker/1:1-13091 (13091) [001] d..2 24577.460163: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
119950 shell svc 13418-13419 ( 1007) [004] d..2 24577.460165: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119951            adbd-23484 ( 1007) [001] d..2 24577.460174: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
119952            adbd-23484 ( 1007) [001] d..3 24577.460180: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
119953            adbd-23484 ( 1007) [001] d..2 24577.460225: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
119954              ps-13421 (13421) [004] d..2 24577.460234: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119955              ps-13421 (13421) [004] dn.3 24577.460237: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119956              ps-13421 (13421) [004] d..2 24577.460240: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119957 shell svc 13418-13419 ( 1007) [004] d..2 24577.460248: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119958            adbd-1007  ( 1007) [001] d..1 24577.460284: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
119959            adbd-1007  ( 1007) [001] d..2 24577.460295: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
119960              ps-13421 (13421) [004] d..2 24577.460316: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119961              ps-13421 (13421) [004] dn.3 24577.460319: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119962            adbd-1007  ( 1007) [001] d..2 24577.460321: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
119963              ps-13421 (13421) [004] d..2 24577.460322: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119964 shell svc 13418-13419 ( 1007) [004] d..2 24577.460329: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119965            adbd-23485 ( 1007) [001] d..2 24577.460370: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119966          <idle>-0     (-----) [001] d.h4 24577.460388: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119967          <idle>-0     (-----) [001] dnh5 24577.460394: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119968              ps-13421 (13421) [004] d..2 24577.460395: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119969              ps-13421 (13421) [004] dn.3 24577.460399: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119970              ps-13421 (13421) [004] d..2 24577.460401: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119971          <idle>-0     (-----) [001] d..2 24577.460402: 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
119972 shell svc 13418-13419 ( 1007) [004] d..2 24577.460409: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119973   kworker/u17:2-23076 (23076) [001] d..2 24577.460410: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119974   kworker/u17:2-23076 (23076) [001] d..3 24577.460414: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119975   kworker/u17:2-23076 (23076) [001] d..2 24577.460430: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119976     kworker/1:1-13091 (13091) [001] d..2 24577.460435: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
119977     kworker/1:1-13091 (13091) [001] d..3 24577.460442: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
119978     kworker/1:1-13091 (13091) [001] d..2 24577.460451: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
119979              ps-13421 (13421) [004] d..2 24577.460469: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119980              ps-13421 (13421) [004] dn.3 24577.460472: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119981              ps-13421 (13421) [004] d..2 24577.460474: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119982 shell svc 13418-13419 ( 1007) [004] d..2 24577.460481: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119983            adbd-23485 ( 1007) [001] d..2 24577.460495: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
119984          <idle>-0     (-----) [001] d..1 24577.460502: cpu_idle: state=0 cpu_id=1
119985          <idle>-0     (-----) [001] d.h3 24577.460520: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119986          <idle>-0     (-----) [001] dnh4 24577.460525: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
119987          <idle>-0     (-----) [001] .n.1 24577.460530: cpu_idle: state=4294967295 cpu_id=1
119988          <idle>-0     (-----) [001] d..2 24577.460536: 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
119989              ps-13421 (13421) [004] d..2 24577.460541: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119990   kworker/u17:2-23076 (23076) [001] d..2 24577.460543: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119991              ps-13421 (13421) [004] dn.3 24577.460544: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
119992              ps-13421 (13421) [004] d..2 24577.460546: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
119993   kworker/u17:2-23076 (23076) [001] d..3 24577.460548: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
119994 shell svc 13418-13419 ( 1007) [004] d..2 24577.460554: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
119995   kworker/u17:2-23076 (23076) [001] d..2 24577.460563: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
119996     kworker/1:1-13091 (13091) [001] d..2 24577.460567: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
119997     kworker/1:1-13091 (13091) [001] d..3 24577.460575: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
119998     kworker/1:1-13091 (13091) [001] d..2 24577.460583: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
119999            adbd-23485 ( 1007) [001] d..2 24577.460599: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120000          <idle>-0     (-----) [001] d..1 24577.460605: cpu_idle: state=0 cpu_id=1
120001              ps-13421 (13421) [004] d..2 24577.460613: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120002              ps-13421 (13421) [004] dn.3 24577.460616: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120003              ps-13421 (13421) [004] d..2 24577.460618: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120004 shell svc 13418-13419 ( 1007) [004] d..2 24577.460625: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120005              ps-13421 (13421) [004] d..2 24577.460689: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120006          <idle>-0     (-----) [001] d.h3 24577.460690: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120007              ps-13421 (13421) [004] dn.3 24577.460692: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120008              ps-13421 (13421) [004] d..2 24577.460694: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120009          <idle>-0     (-----) [001] dnh4 24577.460695: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120010          <idle>-0     (-----) [001] .n.1 24577.460700: cpu_idle: state=4294967295 cpu_id=1
120011 shell svc 13418-13419 ( 1007) [004] d..2 24577.460701: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120012          <idle>-0     (-----) [001] d..2 24577.460707: 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
120013   kworker/u17:2-23076 (23076) [001] d..2 24577.460714: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120014   kworker/u17:2-23076 (23076) [001] d..3 24577.460718: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120015   kworker/u17:2-23076 (23076) [001] d..2 24577.460734: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120016     kworker/1:1-13091 (13091) [001] d..2 24577.460740: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
120017     kworker/1:1-13091 (13091) [001] d..3 24577.460748: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
120018     kworker/1:1-13091 (13091) [001] d..2 24577.460756: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
120019              ps-13421 (13421) [004] d..2 24577.460758: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120020              ps-13421 (13421) [004] dn.3 24577.460760: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120021              ps-13421 (13421) [004] d..2 24577.460763: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120022            adbd-23484 ( 1007) [001] d..2 24577.460766: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
120023 shell svc 13418-13419 ( 1007) [004] d..2 24577.460770: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120024            adbd-23484 ( 1007) [001] d..3 24577.460771: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
120025            adbd-23484 ( 1007) [001] d..2 24577.460811: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
120026              ps-13421 (13421) [004] d..2 24577.460822: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120027              ps-13421 (13421) [004] dn.3 24577.460824: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120028              ps-13421 (13421) [004] d..2 24577.460827: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120029 shell svc 13418-13419 ( 1007) [004] d..2 24577.460834: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120030            adbd-1007  ( 1007) [001] d..1 24577.460871: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120031            adbd-1007  ( 1007) [001] d..2 24577.460883: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120032              ps-13421 (13421) [004] d.s2 24577.460889: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
120033              ps-13421 (13421) [004] d.s2 24577.460904: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
120034              ps-13421 (13421) [004] dns3 24577.460909: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
120035          <idle>-0     (-----) [002] dnh2 24577.460911: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
120036              ps-13421 (13421) [004] d..2 24577.460913: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=kworker/4:0 next_pid=24269 next_prio=120
120037          <idle>-0     (-----) [002] .n.1 24577.460915: cpu_idle: state=4294967295 cpu_id=2
120038          <idle>-0     (-----) [002] d..2 24577.460922: 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
120039            adbd-1007  ( 1007) [001] d..2 24577.460928: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120040     kworker/4:0-24269 (24269) [004] d..2 24577.460940: sched_switch: prev_comm=kworker/4:0 prev_pid=24269 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120041              ps-13421 (13421) [004] d..2 24577.460953: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120042              ps-13421 (13421) [004] dn.3 24577.460956: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120043              ps-13421 (13421) [004] d..2 24577.460958: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120044 shell svc 13418-13419 ( 1007) [004] d..2 24577.460966: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120045  kworker/u16:16-25995 (25995) [002] d..2 24577.460968: 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
120046            adbd-23485 ( 1007) [001] d..2 24577.460973: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120047          <idle>-0     (-----) [002] d..1 24577.460973: cpu_idle: state=2 cpu_id=2
120048          <idle>-0     (-----) [001] d.h4 24577.460990: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120049          <idle>-0     (-----) [001] dnh5 24577.460996: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120050          <idle>-0     (-----) [001] d..2 24577.461003: 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
120051   kworker/u17:2-23076 (23076) [001] d..2 24577.461009: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120052   kworker/u17:2-23076 (23076) [001] d..3 24577.461014: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120053              ps-13421 (13421) [004] d..2 24577.461022: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120054              ps-13421 (13421) [004] dn.3 24577.461026: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120055              ps-13421 (13421) [004] d..2 24577.461028: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120056   kworker/u17:2-23076 (23076) [001] d..2 24577.461029: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120057     kworker/1:1-13091 (13091) [001] d..2 24577.461034: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120058 shell svc 13418-13419 ( 1007) [004] d..2 24577.461036: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120059     kworker/1:1-13091 (13091) [001] d..3 24577.461042: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120060     kworker/1:1-13091 (13091) [001] d..2 24577.461049: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120061              ps-13421 (13421) [004] d..2 24577.461089: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120062              ps-13421 (13421) [004] dn.3 24577.461091: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120063            adbd-23485 ( 1007) [001] d..2 24577.461092: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120064              ps-13421 (13421) [004] d..2 24577.461094: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120065          <idle>-0     (-----) [001] d..1 24577.461098: cpu_idle: state=0 cpu_id=1
120066 shell svc 13418-13419 ( 1007) [004] d..2 24577.461101: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120067          <idle>-0     (-----) [001] d.h3 24577.461145: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120068          <idle>-0     (-----) [001] dnh4 24577.461153: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120069              ps-13421 (13421) [004] d..2 24577.461154: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120070              ps-13421 (13421) [004] dn.3 24577.461157: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120071          <idle>-0     (-----) [001] .n.1 24577.461158: cpu_idle: state=4294967295 cpu_id=1
120072              ps-13421 (13421) [004] d..2 24577.461159: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120073          <idle>-0     (-----) [001] d..2 24577.461163: 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
120074 shell svc 13418-13419 ( 1007) [004] d..2 24577.461166: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120075   kworker/u17:2-23076 (23076) [001] d..2 24577.461169: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120076   kworker/u17:2-23076 (23076) [001] d..3 24577.461173: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120077   kworker/u17:2-23076 (23076) [001] d..2 24577.461189: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120078     kworker/1:1-13091 (13091) [001] d..2 24577.461193: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120079     kworker/1:1-13091 (13091) [001] d..3 24577.461200: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120080     kworker/1:1-13091 (13091) [001] d..2 24577.461208: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120081              ps-13421 (13421) [004] d..2 24577.461218: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120082              ps-13421 (13421) [004] dn.3 24577.461221: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120083              ps-13421 (13421) [004] d..2 24577.461223: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120084            adbd-23485 ( 1007) [001] d..2 24577.461226: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120085 shell svc 13418-13419 ( 1007) [004] d..2 24577.461230: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120086          <idle>-0     (-----) [001] d..1 24577.461231: cpu_idle: state=0 cpu_id=1
120087              ps-13421 (13421) [004] d..2 24577.461288: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120088              ps-13421 (13421) [004] dn.3 24577.461291: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120089              ps-13421 (13421) [004] d..2 24577.461293: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120090 shell svc 13418-13419 ( 1007) [004] d..2 24577.461301: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120091          <idle>-0     (-----) [001] d.h3 24577.461304: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120092          <idle>-0     (-----) [001] dnh4 24577.461309: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120093          <idle>-0     (-----) [001] .n.1 24577.461314: cpu_idle: state=4294967295 cpu_id=1
120094          <idle>-0     (-----) [001] d..2 24577.461318: 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
120095   kworker/u17:2-23076 (23076) [001] d..2 24577.461324: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120096   kworker/u17:2-23076 (23076) [001] d..3 24577.461329: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120097   kworker/u17:2-23076 (23076) [001] d..2 24577.461344: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120098     kworker/1:1-13091 (13091) [001] d..2 24577.461350: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
120099              ps-13421 (13421) [004] d..2 24577.461354: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120100              ps-13421 (13421) [004] dn.3 24577.461356: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120101     kworker/1:1-13091 (13091) [001] d..3 24577.461358: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
120102              ps-13421 (13421) [004] d..2 24577.461359: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120103     kworker/1:1-13091 (13091) [001] d..2 24577.461365: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
120104 shell svc 13418-13419 ( 1007) [004] d..2 24577.461366: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120105            adbd-23484 ( 1007) [001] d..2 24577.461376: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
120106            adbd-23484 ( 1007) [001] d..3 24577.461381: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
120107            adbd-23484 ( 1007) [001] d..2 24577.461420: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
120108              ps-13421 (13421) [004] d..2 24577.461420: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120109              ps-13421 (13421) [004] dn.3 24577.461423: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120110              ps-13421 (13421) [004] d..2 24577.461426: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120111 shell svc 13418-13419 ( 1007) [004] d..2 24577.461434: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120112            adbd-1007  ( 1007) [001] d..1 24577.461479: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120113              ps-13421 (13421) [004] d..2 24577.461485: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120114              ps-13421 (13421) [004] dn.3 24577.461488: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120115            adbd-1007  ( 1007) [001] d..2 24577.461491: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120116              ps-13421 (13421) [004] d..2 24577.461491: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120117          <idle>-0     (-----) [003] d.s3 24577.461495: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
120118 shell svc 13418-13419 ( 1007) [004] d..2 24577.461498: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120119          <idle>-0     (-----) [003] ...1 24577.461511: cpu_idle: state=4294967295 cpu_id=3
120120          <idle>-0     (-----) [003] d..1 24577.461515: cpu_idle: state=0 cpu_id=3
120121            adbd-1007  ( 1007) [001] d..2 24577.461516: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120122              ps-13421 (13421) [004] d..2 24577.461559: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120123            adbd-23485 ( 1007) [001] d..2 24577.461561: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120124              ps-13421 (13421) [004] dn.3 24577.461562: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120125              ps-13421 (13421) [004] d..2 24577.461565: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120126 shell svc 13418-13419 ( 1007) [004] d..2 24577.461575: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120127          <idle>-0     (-----) [001] d.h4 24577.461578: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120128          <idle>-0     (-----) [001] dnh5 24577.461584: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120129          <idle>-0     (-----) [001] d..2 24577.461593: 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
120130   kworker/u17:2-23076 (23076) [001] d..2 24577.461599: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120131   kworker/u17:2-23076 (23076) [001] d..3 24577.461604: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120132   kworker/u17:2-23076 (23076) [001] d..2 24577.461619: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120133     kworker/1:1-13091 (13091) [001] d..2 24577.461623: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120134     kworker/1:1-13091 (13091) [001] d..3 24577.461631: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120135              ps-13421 (13421) [004] d..2 24577.461637: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120136     kworker/1:1-13091 (13091) [001] d..2 24577.461638: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120137              ps-13421 (13421) [004] dn.3 24577.461640: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120138              ps-13421 (13421) [004] d..2 24577.461642: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120139 shell svc 13418-13419 ( 1007) [004] d..2 24577.461650: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120140          <idle>-0     (-----) [007] dnh2 24577.461656: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
120141          <idle>-0     (-----) [007] .n.1 24577.461659: cpu_idle: state=4294967295 cpu_id=7
120142          <idle>-0     (-----) [007] d..2 24577.461664: 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
120143         sugov:4-560   (  560) [007] .... 24577.461668: cpu_frequency: state=2803200 cpu_id=5
120144         sugov:4-560   (  560) [007] .... 24577.461671: cpu_frequency: state=2803200 cpu_id=6
120145         sugov:4-560   (  560) [007] .... 24577.461672: cpu_frequency: state=2803200 cpu_id=7
120146            adbd-23485 ( 1007) [001] d..2 24577.461676: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120147         sugov:4-560   (  560) [007] d..2 24577.461679: 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
120148          <idle>-0     (-----) [007] d..1 24577.461683: cpu_idle: state=2 cpu_id=7
120149          <idle>-0     (-----) [001] d..1 24577.461683: cpu_idle: state=0 cpu_id=1
120150              ps-13421 (13421) [004] d..2 24577.461704: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120151              ps-13421 (13421) [004] dn.3 24577.461707: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120152              ps-13421 (13421) [004] d..2 24577.461710: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120153          <idle>-0     (-----) [001] d.h3 24577.461712: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120154          <idle>-0     (-----) [001] dnh4 24577.461718: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120155 shell svc 13418-13419 ( 1007) [004] d..2 24577.461718: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120156          <idle>-0     (-----) [001] .n.1 24577.461722: cpu_idle: state=4294967295 cpu_id=1
120157          <idle>-0     (-----) [001] d..2 24577.461727: 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
120158   kworker/u17:2-23076 (23076) [001] d..2 24577.461733: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120159   kworker/u17:2-23076 (23076) [001] d..3 24577.461737: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120160   kworker/u17:2-23076 (23076) [001] d..2 24577.461752: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120161     kworker/1:1-13091 (13091) [001] d..2 24577.461756: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120162     kworker/1:1-13091 (13091) [001] d..3 24577.461764: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120163     kworker/1:1-13091 (13091) [001] d..2 24577.461771: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120164              ps-13421 (13421) [004] d..2 24577.461773: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120165              ps-13421 (13421) [004] dn.3 24577.461776: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120166              ps-13421 (13421) [004] d..2 24577.461778: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120167            adbd-23485 ( 1007) [001] d..2 24577.461783: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120168 shell svc 13418-13419 ( 1007) [004] d..2 24577.461786: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120169          <idle>-0     (-----) [001] d..1 24577.461787: cpu_idle: state=0 cpu_id=1
120170              ps-13421 (13421) [004] d..2 24577.461840: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120171              ps-13421 (13421) [004] dn.3 24577.461843: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120172              ps-13421 (13421) [004] d..2 24577.461846: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120173 shell svc 13418-13419 ( 1007) [004] d..2 24577.461853: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120174          <idle>-0     (-----) [001] d.h3 24577.461867: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120175          <idle>-0     (-----) [001] dnh4 24577.461872: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120176          <idle>-0     (-----) [001] .n.1 24577.461876: cpu_idle: state=4294967295 cpu_id=1
120177          <idle>-0     (-----) [001] d..2 24577.461881: 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
120178   kworker/u17:2-23076 (23076) [001] d..2 24577.461888: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120179   kworker/u17:2-23076 (23076) [001] d..3 24577.461893: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120180              ps-13421 (13421) [004] d..2 24577.461903: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120181              ps-13421 (13421) [004] dn.3 24577.461906: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120182   kworker/u17:2-23076 (23076) [001] d..2 24577.461908: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120183              ps-13421 (13421) [004] d..2 24577.461909: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120184     kworker/1:1-13091 (13091) [001] d..2 24577.461913: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
120185 shell svc 13418-13419 ( 1007) [004] d..2 24577.461916: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120186     kworker/1:1-13091 (13091) [001] d..3 24577.461921: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
120187     kworker/1:1-13091 (13091) [001] d..2 24577.461929: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
120188            adbd-23484 ( 1007) [001] d..2 24577.461938: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
120189            adbd-23484 ( 1007) [001] d..3 24577.461944: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
120190              ps-13421 (13421) [004] d..2 24577.461968: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120191              ps-13421 (13421) [004] dn.3 24577.461970: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120192              ps-13421 (13421) [004] d..2 24577.461973: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120193 shell svc 13418-13419 ( 1007) [004] d..2 24577.461980: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120194            adbd-23484 ( 1007) [001] d..2 24577.461983: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
120195              ps-13421 (13421) [004] d..2 24577.462032: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120196              ps-13421 (13421) [004] dn.3 24577.462035: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120197              ps-13421 (13421) [004] d..2 24577.462037: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120198            adbd-1007  ( 1007) [001] d..1 24577.462042: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120199 shell svc 13418-13419 ( 1007) [004] d..2 24577.462046: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120200            adbd-1007  ( 1007) [001] d..2 24577.462053: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120201            adbd-1007  ( 1007) [001] d..2 24577.462078: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120202              ps-13421 (13421) [004] d..2 24577.462101: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120203              ps-13421 (13421) [004] dn.3 24577.462104: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120204              ps-13421 (13421) [004] d..2 24577.462106: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120205 shell svc 13418-13419 ( 1007) [004] d..2 24577.462113: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120206            adbd-23485 ( 1007) [001] d..2 24577.462119: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120207          <idle>-0     (-----) [001] d.h4 24577.462136: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120208          <idle>-0     (-----) [001] dnh5 24577.462141: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120209          <idle>-0     (-----) [001] d..2 24577.462149: 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
120210   kworker/u17:2-23076 (23076) [001] d..2 24577.462155: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120211   kworker/u17:2-23076 (23076) [001] d..3 24577.462159: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120212              ps-13421 (13421) [004] d..2 24577.462167: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120213              ps-13421 (13421) [004] dn.3 24577.462170: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120214              ps-13421 (13421) [004] d..2 24577.462172: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120215   kworker/u17:2-23076 (23076) [001] d..2 24577.462174: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120216     kworker/1:1-13091 (13091) [001] d..2 24577.462180: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120217 shell svc 13418-13419 ( 1007) [004] d..2 24577.462180: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120218     kworker/1:1-13091 (13091) [001] d..3 24577.462187: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120219     kworker/1:1-13091 (13091) [001] d..2 24577.462195: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120220              ps-13421 (13421) [004] d..2 24577.462231: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120221            adbd-23485 ( 1007) [001] d..2 24577.462233: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120222              ps-13421 (13421) [004] dn.3 24577.462235: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120223              ps-13421 (13421) [004] d..2 24577.462237: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120224          <idle>-0     (-----) [001] d..1 24577.462239: cpu_idle: state=0 cpu_id=1
120225 shell svc 13418-13419 ( 1007) [004] d..2 24577.462244: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120226          <idle>-0     (-----) [001] d.h3 24577.462270: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120227          <idle>-0     (-----) [001] dnh4 24577.462276: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120228          <idle>-0     (-----) [001] .n.1 24577.462280: cpu_idle: state=4294967295 cpu_id=1
120229          <idle>-0     (-----) [001] d..2 24577.462285: 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
120230   kworker/u17:2-23076 (23076) [001] d..2 24577.462290: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120231   kworker/u17:2-23076 (23076) [001] d..3 24577.462294: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120232              ps-13421 (13421) [004] d..2 24577.462300: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120233              ps-13421 (13421) [004] dn.3 24577.462303: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120234              ps-13421 (13421) [004] d..2 24577.462305: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120235   kworker/u17:2-23076 (23076) [001] d..2 24577.462309: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120236 shell svc 13418-13419 ( 1007) [004] d..2 24577.462313: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120237     kworker/1:1-13091 (13091) [001] d..2 24577.462313: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120238     kworker/1:1-13091 (13091) [001] d..3 24577.462321: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120239     kworker/1:1-13091 (13091) [001] d..2 24577.462329: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120240            adbd-23485 ( 1007) [001] d..2 24577.462340: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120241          <idle>-0     (-----) [001] d..1 24577.462345: cpu_idle: state=0 cpu_id=1
120242              ps-13421 (13421) [004] d..2 24577.462364: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120243              ps-13421 (13421) [004] dn.3 24577.462367: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120244              ps-13421 (13421) [004] d..2 24577.462369: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120245 shell svc 13418-13419 ( 1007) [004] d..2 24577.462377: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120246          <idle>-0     (-----) [001] d.h3 24577.462422: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120247          <idle>-0     (-----) [001] dnh4 24577.462427: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120248              ps-13421 (13421) [004] d..2 24577.462431: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120249          <idle>-0     (-----) [001] .n.1 24577.462431: cpu_idle: state=4294967295 cpu_id=1
120250              ps-13421 (13421) [004] dn.3 24577.462434: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120251          <idle>-0     (-----) [001] d..2 24577.462436: 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
120252              ps-13421 (13421) [004] d..2 24577.462436: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120253   kworker/u17:2-23076 (23076) [001] d..2 24577.462441: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120254 shell svc 13418-13419 ( 1007) [004] d..2 24577.462443: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120255   kworker/u17:2-23076 (23076) [001] d..3 24577.462447: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120256   kworker/u17:2-23076 (23076) [001] d..2 24577.462462: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120257     kworker/1:1-13091 (13091) [001] d..2 24577.462468: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
120258     kworker/1:1-13091 (13091) [001] d..3 24577.462476: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
120259     kworker/1:1-13091 (13091) [001] d..2 24577.462483: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
120260            adbd-23484 ( 1007) [001] d..2 24577.462493: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
120261              ps-13421 (13421) [004] d..2 24577.462497: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120262            adbd-23484 ( 1007) [001] d..3 24577.462498: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
120263              ps-13421 (13421) [004] dn.3 24577.462500: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120264              ps-13421 (13421) [004] d..2 24577.462502: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120265 shell svc 13418-13419 ( 1007) [004] d..2 24577.462509: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120266            adbd-23484 ( 1007) [001] d..2 24577.462537: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
120267              ps-13421 (13421) [004] d..2 24577.462562: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120268              ps-13421 (13421) [004] dn.3 24577.462565: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120269              ps-13421 (13421) [004] d..2 24577.462567: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120270 shell svc 13418-13419 ( 1007) [004] d..2 24577.462575: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120271            adbd-1007  ( 1007) [001] d..1 24577.462597: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120272            adbd-1007  ( 1007) [001] d..2 24577.462608: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120273              ps-13421 (13421) [004] d..2 24577.462628: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120274              ps-13421 (13421) [004] dn.3 24577.462631: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120275              ps-13421 (13421) [004] d..2 24577.462634: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120276            adbd-1007  ( 1007) [001] d..2 24577.462635: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120277 shell svc 13418-13419 ( 1007) [004] d..2 24577.462642: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120278            adbd-23485 ( 1007) [001] d..2 24577.462675: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120279          <idle>-0     (-----) [001] d..1 24577.462681: cpu_idle: state=0 cpu_id=1
120280              ps-13421 (13421) [004] d..2 24577.462695: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120281          <idle>-0     (-----) [001] d.h3 24577.462697: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120282              ps-13421 (13421) [004] dn.3 24577.462697: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120283              ps-13421 (13421) [004] d..2 24577.462700: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120284          <idle>-0     (-----) [001] dnh4 24577.462703: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120285 shell svc 13418-13419 ( 1007) [004] d..2 24577.462708: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120286          <idle>-0     (-----) [001] .n.1 24577.462708: cpu_idle: state=4294967295 cpu_id=1
120287          <idle>-0     (-----) [001] d..2 24577.462713: 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
120288   kworker/u17:2-23076 (23076) [001] d..2 24577.462719: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120289   kworker/u17:2-23076 (23076) [001] d..3 24577.462724: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120290   kworker/u17:2-23076 (23076) [001] d..2 24577.462741: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120291     kworker/1:1-13091 (13091) [001] d..2 24577.462745: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120292     kworker/1:1-13091 (13091) [001] d..3 24577.462753: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120293     kworker/1:1-13091 (13091) [001] d..2 24577.462761: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120294              ps-13421 (13421) [004] d..2 24577.462761: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120295              ps-13421 (13421) [004] dn.3 24577.462764: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120296              ps-13421 (13421) [004] d..2 24577.462766: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120297 shell svc 13418-13419 ( 1007) [004] d..2 24577.462774: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120298            adbd-23485 ( 1007) [001] d..2 24577.462799: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120299          <idle>-0     (-----) [001] d..1 24577.462804: cpu_idle: state=0 cpu_id=1
120300              ps-13421 (13421) [004] d..2 24577.462827: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120301              ps-13421 (13421) [004] dn.3 24577.462830: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120302              ps-13421 (13421) [004] d..2 24577.462832: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120303          <idle>-0     (-----) [001] d.h3 24577.462836: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120304 shell svc 13418-13419 ( 1007) [004] d..2 24577.462839: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120305          <idle>-0     (-----) [001] dnh4 24577.462842: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120306          <idle>-0     (-----) [001] .n.1 24577.462846: cpu_idle: state=4294967295 cpu_id=1
120307          <idle>-0     (-----) [001] d..2 24577.462851: 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
120308   kworker/u17:2-23076 (23076) [001] d..2 24577.462857: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120309   kworker/u17:2-23076 (23076) [001] d..3 24577.462862: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120310   kworker/u17:2-23076 (23076) [001] d..2 24577.462877: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120311     kworker/1:1-13091 (13091) [001] d..2 24577.462881: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120312     kworker/1:1-13091 (13091) [001] d..3 24577.462888: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120313              ps-13421 (13421) [004] d..2 24577.462893: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120314              ps-13421 (13421) [004] dn.3 24577.462896: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120315     kworker/1:1-13091 (13091) [001] d..2 24577.462896: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120316              ps-13421 (13421) [004] d..2 24577.462898: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120317 shell svc 13418-13419 ( 1007) [004] d..2 24577.462905: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120318            adbd-23485 ( 1007) [001] d..2 24577.462907: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120319          <idle>-0     (-----) [001] d..1 24577.462911: cpu_idle: state=0 cpu_id=1
120320              ps-13421 (13421) [004] d..2 24577.462958: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120321              ps-13421 (13421) [004] dn.3 24577.462961: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120322              ps-13421 (13421) [004] d..2 24577.462963: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120323 shell svc 13418-13419 ( 1007) [004] d..2 24577.462971: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120324          <idle>-0     (-----) [001] d.h3 24577.462988: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120325          <idle>-0     (-----) [001] dnh4 24577.462993: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120326          <idle>-0     (-----) [001] .n.1 24577.462997: cpu_idle: state=4294967295 cpu_id=1
120327          <idle>-0     (-----) [001] d..2 24577.463002: 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
120328   kworker/u17:2-23076 (23076) [001] d..2 24577.463009: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120329   kworker/u17:2-23076 (23076) [001] d..3 24577.463014: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120330              ps-13421 (13421) [004] d..2 24577.463023: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120331              ps-13421 (13421) [004] dn.3 24577.463026: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120332              ps-13421 (13421) [004] d..2 24577.463029: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120333   kworker/u17:2-23076 (23076) [001] d..2 24577.463029: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120334     kworker/1:1-13091 (13091) [001] d..2 24577.463034: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
120335 shell svc 13418-13419 ( 1007) [004] d..2 24577.463036: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120336     kworker/1:1-13091 (13091) [001] d..3 24577.463042: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
120337     kworker/1:1-13091 (13091) [001] d..2 24577.463049: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
120338            adbd-23484 ( 1007) [001] d..2 24577.463059: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
120339            adbd-23484 ( 1007) [001] d..3 24577.463064: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
120340            adbd-23484 ( 1007) [001] d..2 24577.463104: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
120341            adbd-1007  ( 1007) [001] d..1 24577.463162: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120342            adbd-1007  ( 1007) [001] d..2 24577.463173: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120343            adbd-1007  ( 1007) [001] d..2 24577.463198: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120344            adbd-23485 ( 1007) [001] d..2 24577.463237: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120345          <idle>-0     (-----) [001] d..1 24577.463243: cpu_idle: state=0 cpu_id=1
120346          <idle>-0     (-----) [001] d.h3 24577.463259: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120347          <idle>-0     (-----) [001] dnh4 24577.463268: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120348          <idle>-0     (-----) [001] .n.1 24577.463272: cpu_idle: state=4294967295 cpu_id=1
120349          <idle>-0     (-----) [001] d..2 24577.463277: 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
120350   kworker/u17:2-23076 (23076) [001] d..2 24577.463283: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120351   kworker/u17:2-23076 (23076) [001] d..3 24577.463288: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120352   kworker/u17:2-23076 (23076) [001] d..2 24577.463303: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120353     kworker/1:1-13091 (13091) [001] d..2 24577.463307: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120354     kworker/1:1-13091 (13091) [001] d..3 24577.463314: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120355     kworker/1:1-13091 (13091) [001] d..2 24577.463322: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120356            adbd-23485 ( 1007) [001] d..2 24577.463360: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120357          <idle>-0     (-----) [001] d..1 24577.463364: cpu_idle: state=0 cpu_id=1
120358              ps-13421 (13421) [004] d..2 24577.463369: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120359              ps-13421 (13421) [004] dn.3 24577.463373: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120360              ps-13421 (13421) [004] d..2 24577.463376: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120361 shell svc 13418-13419 ( 1007) [004] d..2 24577.463384: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120362          <idle>-0     (-----) [001] d.h3 24577.463398: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120363          <idle>-0     (-----) [001] dnh4 24577.463404: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120364          <idle>-0     (-----) [001] .n.1 24577.463408: cpu_idle: state=4294967295 cpu_id=1
120365          <idle>-0     (-----) [001] d..2 24577.463413: 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
120366   kworker/u17:2-23076 (23076) [001] d..2 24577.463419: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120367   kworker/u17:2-23076 (23076) [001] d..3 24577.463423: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120368              ps-13421 (13421) [004] d..2 24577.463438: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120369   kworker/u17:2-23076 (23076) [001] d..2 24577.463439: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120370              ps-13421 (13421) [004] dn.3 24577.463440: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120371     kworker/1:1-13091 (13091) [001] d..2 24577.463443: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120372              ps-13421 (13421) [004] d..2 24577.463443: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120373 shell svc 13418-13419 ( 1007) [004] d..2 24577.463450: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120374     kworker/1:1-13091 (13091) [001] d..3 24577.463450: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120375     kworker/1:1-13091 (13091) [001] d..2 24577.463458: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120376            adbd-23485 ( 1007) [001] d..2 24577.463469: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120377          <idle>-0     (-----) [001] d..1 24577.463473: cpu_idle: state=0 cpu_id=1
120378              ps-13421 (13421) [004] d..2 24577.463504: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120379              ps-13421 (13421) [004] dn.3 24577.463507: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120380              ps-13421 (13421) [004] d..2 24577.463509: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120381 shell svc 13418-13419 ( 1007) [004] d..2 24577.463517: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120382          <idle>-0     (-----) [001] d.h3 24577.463553: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120383          <idle>-0     (-----) [001] dnh4 24577.463558: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120384          <idle>-0     (-----) [001] .n.1 24577.463562: cpu_idle: state=4294967295 cpu_id=1
120385          <idle>-0     (-----) [001] d..2 24577.463567: 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
120386              ps-13421 (13421) [004] d..2 24577.463570: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120387   kworker/u17:2-23076 (23076) [001] d..2 24577.463572: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120388              ps-13421 (13421) [004] dn.3 24577.463573: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120389              ps-13421 (13421) [004] d..2 24577.463575: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120390   kworker/u17:2-23076 (23076) [001] d..3 24577.463577: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120391 shell svc 13418-13419 ( 1007) [004] d..2 24577.463582: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120392   kworker/u17:2-23076 (23076) [001] d..2 24577.463592: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120393     kworker/1:1-13091 (13091) [001] d..2 24577.463598: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
120394     kworker/1:1-13091 (13091) [001] d..3 24577.463605: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
120395     kworker/1:1-13091 (13091) [001] d..2 24577.463612: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
120396            adbd-23484 ( 1007) [001] d..2 24577.463622: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
120397            adbd-23484 ( 1007) [001] d..3 24577.463628: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
120398              ps-13421 (13421) [004] d..2 24577.463635: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120399              ps-13421 (13421) [004] dn.3 24577.463638: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120400              ps-13421 (13421) [004] d..2 24577.463640: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120401 shell svc 13418-13419 ( 1007) [004] d..2 24577.463648: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120402            adbd-23484 ( 1007) [001] d..2 24577.463667: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
120403              ps-13421 (13421) [004] d..2 24577.463700: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120404              ps-13421 (13421) [004] dn.3 24577.463702: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120405              ps-13421 (13421) [004] d..2 24577.463705: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120406 shell svc 13418-13419 ( 1007) [004] d..2 24577.463712: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120407            adbd-1007  ( 1007) [001] d..1 24577.463725: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120408            adbd-1007  ( 1007) [001] d..2 24577.463735: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120409            adbd-1007  ( 1007) [001] d..2 24577.463761: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120410              ps-13421 (13421) [004] d..2 24577.463765: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120411              ps-13421 (13421) [004] dn.3 24577.463768: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120412              ps-13421 (13421) [004] d..2 24577.463770: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120413 shell svc 13418-13419 ( 1007) [004] d..2 24577.463777: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120414            adbd-23485 ( 1007) [001] d..2 24577.463801: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120415          <idle>-0     (-----) [001] d..1 24577.463807: cpu_idle: state=0 cpu_id=1
120416          <idle>-0     (-----) [001] d.h3 24577.463824: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120417          <idle>-0     (-----) [001] dnh4 24577.463830: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120418              ps-13421 (13421) [004] d..2 24577.463830: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120419              ps-13421 (13421) [004] dn.3 24577.463833: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120420          <idle>-0     (-----) [001] .n.1 24577.463834: cpu_idle: state=4294967295 cpu_id=1
120421              ps-13421 (13421) [004] d..2 24577.463835: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120422          <idle>-0     (-----) [001] d..2 24577.463839: 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
120423 shell svc 13418-13419 ( 1007) [004] d..2 24577.463842: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120424   kworker/u17:2-23076 (23076) [001] d..2 24577.463845: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120425   kworker/u17:2-23076 (23076) [001] d..3 24577.463850: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120426   kworker/u17:2-23076 (23076) [001] d..2 24577.463865: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120427     kworker/1:1-13091 (13091) [001] d..2 24577.463869: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120428     kworker/1:1-13091 (13091) [001] d..3 24577.463877: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120429     kworker/1:1-13091 (13091) [001] d..2 24577.463885: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120430              ps-13421 (13421) [004] d..2 24577.463895: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120431              ps-13421 (13421) [004] dn.3 24577.463898: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120432              ps-13421 (13421) [004] d..2 24577.463900: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120433 shell svc 13418-13419 ( 1007) [004] d..2 24577.463907: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120434            adbd-23485 ( 1007) [001] d..2 24577.463923: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120435          <idle>-0     (-----) [001] d..1 24577.463927: cpu_idle: state=0 cpu_id=1
120436          <idle>-0     (-----) [001] d.h3 24577.463960: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120437              ps-13421 (13421) [004] d..2 24577.463961: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120438              ps-13421 (13421) [004] dn.3 24577.463964: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120439          <idle>-0     (-----) [001] dnh4 24577.463966: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120440              ps-13421 (13421) [004] d..2 24577.463966: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120441          <idle>-0     (-----) [001] .n.1 24577.463970: cpu_idle: state=4294967295 cpu_id=1
120442 shell svc 13418-13419 ( 1007) [004] d..2 24577.463973: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120443          <idle>-0     (-----) [001] d..2 24577.463975: 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
120444   kworker/u17:2-23076 (23076) [001] d..2 24577.463980: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120445   kworker/u17:2-23076 (23076) [001] d..3 24577.463985: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120446   kworker/u17:2-23076 (23076) [001] d..2 24577.464000: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120447     kworker/1:1-13091 (13091) [001] d..2 24577.464005: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120448     kworker/1:1-13091 (13091) [001] d..3 24577.464013: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120449     kworker/1:1-13091 (13091) [001] d..2 24577.464020: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120450              ps-13421 (13421) [004] d..2 24577.464027: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120451              ps-13421 (13421) [004] dn.3 24577.464030: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120452            adbd-23485 ( 1007) [001] d..2 24577.464032: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120453              ps-13421 (13421) [004] d..2 24577.464032: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120454          <idle>-0     (-----) [001] d..1 24577.464036: cpu_idle: state=0 cpu_id=1
120455 shell svc 13418-13419 ( 1007) [004] d..2 24577.464039: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120456              ps-13421 (13421) [004] d..2 24577.464092: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120457              ps-13421 (13421) [004] dn.3 24577.464095: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120458              ps-13421 (13421) [004] d..2 24577.464098: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120459 shell svc 13418-13419 ( 1007) [004] d..2 24577.464105: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120460          <idle>-0     (-----) [001] d.h3 24577.464140: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120461          <idle>-0     (-----) [001] dnh4 24577.464145: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120462          <idle>-0     (-----) [001] .n.1 24577.464149: cpu_idle: state=4294967295 cpu_id=1
120463          <idle>-0     (-----) [001] d..2 24577.464154: 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
120464              ps-13421 (13421) [004] d..2 24577.464160: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120465   kworker/u17:2-23076 (23076) [001] d..2 24577.464160: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120466              ps-13421 (13421) [004] dn.3 24577.464162: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120467              ps-13421 (13421) [004] d..2 24577.464165: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120468   kworker/u17:2-23076 (23076) [001] d..3 24577.464165: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120469 shell svc 13418-13419 ( 1007) [004] d..2 24577.464172: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120470   kworker/u17:2-23076 (23076) [001] d..2 24577.464181: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120471     kworker/1:1-13091 (13091) [001] d..2 24577.464186: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
120472     kworker/1:1-13091 (13091) [001] d..3 24577.464194: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
120473     kworker/1:1-13091 (13091) [001] d..2 24577.464202: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
120474              ps-13421 (13421) [004] d.s2 24577.464221: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
120475            adbd-23484 ( 1007) [001] d.s1 24577.464226: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
120476            adbd-23484 ( 1007) [001] d.s2 24577.464235: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
120477            adbd-23484 ( 1007) [001] d.H2 24577.464240: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
120478            adbd-23484 ( 1007) [001] d..2 24577.464246: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
120479            adbd-23484 ( 1007) [001] d..3 24577.464253: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
120480              ps-13421 (13421) [004] d..2 24577.464256: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120481              ps-13421 (13421) [004] dn.3 24577.464259: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120482              ps-13421 (13421) [004] d..2 24577.464261: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120483 shell svc 13418-13419 ( 1007) [004] d..2 24577.464269: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120484            adbd-23484 ( 1007) [001] d..2 24577.464294: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
120485              ps-13421 (13421) [004] d..2 24577.464326: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120486              ps-13421 (13421) [004] dn.3 24577.464330: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120487              ps-13421 (13421) [004] d..2 24577.464332: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120488 shell svc 13418-13419 ( 1007) [004] d..2 24577.464340: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120489  kworker/u16:16-25995 (25995) [001] d..2 24577.464391: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
120490              ps-13421 (13421) [004] d..2 24577.464393: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120491              ps-13421 (13421) [004] dn.3 24577.464396: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120492     rcu_preempt-7     (    7) [001] d..2 24577.464397: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
120493              ps-13421 (13421) [004] d..2 24577.464398: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120494 shell svc 13418-13419 ( 1007) [004] d..2 24577.464406: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120495     rcu_preempt-7     (    7) [001] d..3 24577.464418: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
120496          <idle>-0     (-----) [003] d.s3 24577.464424: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
120497     rcu_preempt-7     (    7) [001] d..2 24577.464425: 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
120498          <idle>-0     (-----) [003] d.s4 24577.464440: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
120499          <idle>-0     (-----) [003] dns4 24577.464443: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
120500          <idle>-0     (-----) [003] .n.1 24577.464447: cpu_idle: state=4294967295 cpu_id=3
120501          <idle>-0     (-----) [003] d..2 24577.464454: 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
120502              ps-13421 (13421) [004] d..2 24577.464458: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120503              ps-13421 (13421) [004] dn.3 24577.464461: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120504              ps-13421 (13421) [004] d..2 24577.464463: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120505 shell svc 13418-13419 ( 1007) [004] d..2 24577.464474: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120506         rcuop/2-29    (   29) [001] d..2 24577.464488: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
120507  kworker/u16:16-25995 (25995) [003] .... 24577.464493: clk_set_rate: l3_cluster1_vote_clk 1209600000
120508              ps-13421 (13421) [004] d..2 24577.464543: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120509              ps-13421 (13421) [004] dn.3 24577.464546: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120510  kworker/u16:16-25995 (25995) [003] .... 24577.464548: clk_set_rate: l3_cluster0_vote_clk 1132800000
120511              ps-13421 (13421) [004] d..2 24577.464549: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120512  kworker/u16:16-25995 (25995) [003] .... 24577.464551: clk_set_rate: l3_clk 1209600000
120513 shell svc 13418-13419 ( 1007) [004] d..2 24577.464557: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120514            adbd-1007  ( 1007) [001] d..1 24577.464566: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120515  kworker/u16:16-25995 (25995) [003] d..2 24577.464578: 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
120516          <idle>-0     (-----) [003] d..1 24577.464584: cpu_idle: state=0 cpu_id=3
120517            adbd-1007  ( 1007) [001] d..2 24577.464592: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
120518          <idle>-0     (-----) [003] .n.1 24577.464597: cpu_idle: state=4294967295 cpu_id=3
120519          <idle>-0     (-----) [003] d..2 24577.464604: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
120520              ps-13421 (13421) [004] d..2 24577.464614: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120521              ps-13421 (13421) [004] dn.3 24577.464617: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120522              ps-13421 (13421) [004] d..2 24577.464619: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120523            adbd-1007  ( 1007) [001] d..2 24577.464624: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120524 shell svc 13418-13419 ( 1007) [004] d..2 24577.464627: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120525          <idle>-0     (-----) [001] d..1 24577.464634: cpu_idle: state=0 cpu_id=1
120526            adbd-23485 ( 1007) [003] d..2 24577.464659: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
120527          <idle>-0     (-----) [003] d..1 24577.464666: cpu_idle: state=0 cpu_id=3
120528          <idle>-0     (-----) [001] d.h3 24577.464679: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120529              ps-13421 (13421) [004] d..2 24577.464682: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120530              ps-13421 (13421) [004] dn.3 24577.464685: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120531          <idle>-0     (-----) [001] dnh4 24577.464686: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120532              ps-13421 (13421) [004] d..2 24577.464687: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120533          <idle>-0     (-----) [001] .n.1 24577.464691: cpu_idle: state=4294967295 cpu_id=1
120534 shell svc 13418-13419 ( 1007) [004] d..2 24577.464695: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120535          <idle>-0     (-----) [001] d..2 24577.464698: 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
120536   kworker/u17:2-23076 (23076) [001] d..2 24577.464705: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120537   kworker/u17:2-23076 (23076) [001] d..3 24577.464711: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120538   kworker/u17:2-23076 (23076) [001] d..2 24577.464727: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120539     kworker/1:1-13091 (13091) [001] d..2 24577.464734: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
120540              ps-13421 (13421) [004] d..2 24577.464750: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120541              ps-13421 (13421) [004] dn.3 24577.464753: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120542     kworker/1:1-13091 (13091) [001] d..3 24577.464753: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120543              ps-13421 (13421) [004] d..2 24577.464755: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120544     kworker/1:1-13091 (13091) [001] d..2 24577.464762: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120545 shell svc 13418-13419 ( 1007) [004] d..2 24577.464762: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120546            adbd-23485 ( 1007) [001] d..2 24577.464810: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120547              ps-13421 (13421) [004] d..2 24577.464815: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120548          <idle>-0     (-----) [001] d..1 24577.464818: cpu_idle: state=0 cpu_id=1
120549              ps-13421 (13421) [004] dn.3 24577.464818: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120550              ps-13421 (13421) [004] d..2 24577.464821: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120551 shell svc 13418-13419 ( 1007) [004] d..2 24577.464828: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120552          <idle>-0     (-----) [001] d.h3 24577.464845: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120553          <idle>-0     (-----) [001] dnh4 24577.464851: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120554          <idle>-0     (-----) [001] .n.1 24577.464856: cpu_idle: state=4294967295 cpu_id=1
120555          <idle>-0     (-----) [001] d..2 24577.464862: 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
120556   kworker/u17:2-23076 (23076) [001] d..2 24577.464869: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120557   kworker/u17:2-23076 (23076) [001] d..3 24577.464875: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120558              ps-13421 (13421) [004] d..2 24577.464881: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120559              ps-13421 (13421) [004] dn.3 24577.464885: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120560              ps-13421 (13421) [004] d..2 24577.464887: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120561   kworker/u17:2-23076 (23076) [001] d..2 24577.464890: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120562 shell svc 13418-13419 ( 1007) [004] d..2 24577.464894: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120563     kworker/1:1-13091 (13091) [001] d..2 24577.464895: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120564     kworker/1:1-13091 (13091) [001] d..3 24577.464903: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120565     kworker/1:1-13091 (13091) [001] d..2 24577.464910: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120566            adbd-23485 ( 1007) [001] d..2 24577.464921: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120567          <idle>-0     (-----) [001] d..1 24577.464927: cpu_idle: state=0 cpu_id=1
120568              ps-13421 (13421) [004] d..2 24577.464950: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120569              ps-13421 (13421) [004] dn.3 24577.464953: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120570              ps-13421 (13421) [004] d..2 24577.464955: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120571 shell svc 13418-13419 ( 1007) [004] d..2 24577.464963: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120572              ps-13421 (13421) [004] d..2 24577.465019: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120573              ps-13421 (13421) [004] dn.3 24577.465022: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120574              ps-13421 (13421) [004] d..2 24577.465024: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120575          <idle>-0     (-----) [001] d.h3 24577.465031: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120576 shell svc 13418-13419 ( 1007) [004] d..2 24577.465031: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120577          <idle>-0     (-----) [001] dnh4 24577.465036: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120578          <idle>-0     (-----) [001] .n.1 24577.465040: cpu_idle: state=4294967295 cpu_id=1
120579          <idle>-0     (-----) [001] d..2 24577.465046: 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
120580   kworker/u17:2-23076 (23076) [001] d..2 24577.465053: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120581   kworker/u17:2-23076 (23076) [001] d..3 24577.465058: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120582   kworker/u17:2-23076 (23076) [001] d..2 24577.465074: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120583     kworker/1:1-13091 (13091) [001] d..2 24577.465079: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
120584              ps-13421 (13421) [004] d..2 24577.465085: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120585     kworker/1:1-13091 (13091) [001] d..3 24577.465087: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
120586              ps-13421 (13421) [004] dn.3 24577.465088: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120587              ps-13421 (13421) [004] d..2 24577.465091: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120588     kworker/1:1-13091 (13091) [001] d..2 24577.465095: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
120589 shell svc 13418-13419 ( 1007) [004] d..2 24577.465098: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120590            adbd-23484 ( 1007) [001] d..2 24577.465106: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
120591            adbd-23484 ( 1007) [001] d..3 24577.465111: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
120592            adbd-23484 ( 1007) [001] d..2 24577.465152: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
120593              ps-13421 (13421) [004] d..2 24577.465152: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120594              ps-13421 (13421) [004] dn.3 24577.465155: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120595              ps-13421 (13421) [004] d..2 24577.465157: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120596 shell svc 13418-13419 ( 1007) [004] d..2 24577.465164: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120597            adbd-1007  ( 1007) [001] d..1 24577.465213: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120598              ps-13421 (13421) [004] d..2 24577.465218: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120599              ps-13421 (13421) [004] dn.3 24577.465221: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120600              ps-13421 (13421) [004] d..2 24577.465223: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120601            adbd-1007  ( 1007) [001] d..2 24577.465225: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120602 shell svc 13418-13419 ( 1007) [004] d..2 24577.465231: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120603            adbd-1007  ( 1007) [001] d..2 24577.465251: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120604              ps-13421 (13421) [004] d..2 24577.465285: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120605              ps-13421 (13421) [004] dn.3 24577.465288: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120606              ps-13421 (13421) [004] d..2 24577.465290: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120607            adbd-23485 ( 1007) [001] d..2 24577.465292: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120608 shell svc 13418-13419 ( 1007) [004] d..2 24577.465298: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120609          <idle>-0     (-----) [001] d..1 24577.465300: cpu_idle: state=0 cpu_id=1
120610          <idle>-0     (-----) [001] d.h3 24577.465321: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120611          <idle>-0     (-----) [001] dnh4 24577.465330: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120612          <idle>-0     (-----) [001] .n.1 24577.465335: cpu_idle: state=4294967295 cpu_id=1
120613          <idle>-0     (-----) [001] d..2 24577.465341: 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
120614   kworker/u17:2-23076 (23076) [001] d..2 24577.465347: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120615              ps-13421 (13421) [004] d..2 24577.465351: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120616   kworker/u17:2-23076 (23076) [001] d..3 24577.465352: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120617              ps-13421 (13421) [004] dn.3 24577.465354: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120618              ps-13421 (13421) [004] d..2 24577.465357: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120619 shell svc 13418-13419 ( 1007) [004] d..2 24577.465364: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120620   kworker/u17:2-23076 (23076) [001] d..2 24577.465368: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120621     kworker/1:1-13091 (13091) [001] d..2 24577.465373: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120622     kworker/1:1-13091 (13091) [001] d..3 24577.465381: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120623     kworker/1:1-13091 (13091) [001] d..2 24577.465388: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120624              ps-13421 (13421) [004] d..2 24577.465417: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120625              ps-13421 (13421) [004] dn.3 24577.465420: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120626              ps-13421 (13421) [004] d..2 24577.465423: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120627            adbd-23485 ( 1007) [001] d..2 24577.465428: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120628 shell svc 13418-13419 ( 1007) [004] d..2 24577.465430: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120629          <idle>-0     (-----) [001] d..1 24577.465435: cpu_idle: state=0 cpu_id=1
120630          <idle>-0     (-----) [001] d.h3 24577.465462: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120631          <idle>-0     (-----) [001] dnh4 24577.465468: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120632          <idle>-0     (-----) [001] .n.1 24577.465472: cpu_idle: state=4294967295 cpu_id=1
120633          <idle>-0     (-----) [001] d..2 24577.465478: 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
120634              ps-13421 (13421) [004] d..2 24577.465484: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120635   kworker/u17:2-23076 (23076) [001] d..2 24577.465485: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120636              ps-13421 (13421) [004] dn.3 24577.465487: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120637              ps-13421 (13421) [004] d..2 24577.465489: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120638   kworker/u17:2-23076 (23076) [001] d..3 24577.465490: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120639 shell svc 13418-13419 ( 1007) [004] d..2 24577.465497: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120640   kworker/u17:2-23076 (23076) [001] d..2 24577.465505: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120641     kworker/1:1-13091 (13091) [001] d..2 24577.465510: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120642     kworker/1:1-13091 (13091) [001] d..3 24577.465520: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120643     kworker/1:1-13091 (13091) [001] d..2 24577.465528: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120644            adbd-23485 ( 1007) [001] d..2 24577.465538: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120645          <idle>-0     (-----) [001] d..1 24577.465545: cpu_idle: state=0 cpu_id=1
120646              ps-13421 (13421) [004] d..2 24577.465551: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120647              ps-13421 (13421) [004] dn.3 24577.465554: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120648              ps-13421 (13421) [004] d..2 24577.465557: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120649 shell svc 13418-13419 ( 1007) [004] d..2 24577.465564: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120650              ps-13421 (13421) [004] d..2 24577.465620: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120651              ps-13421 (13421) [004] dn.3 24577.465623: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120652              ps-13421 (13421) [004] d..2 24577.465625: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120653 shell svc 13418-13419 ( 1007) [004] d..2 24577.465632: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120654          <idle>-0     (-----) [001] d.h3 24577.465638: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120655          <idle>-0     (-----) [001] dnh4 24577.465643: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120656          <idle>-0     (-----) [001] .n.1 24577.465647: cpu_idle: state=4294967295 cpu_id=1
120657          <idle>-0     (-----) [001] d..2 24577.465653: 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
120658   kworker/u17:2-23076 (23076) [001] d..2 24577.465660: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120659   kworker/u17:2-23076 (23076) [001] d..3 24577.465664: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120660   kworker/u17:2-23076 (23076) [001] d..2 24577.465680: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120661     kworker/1:1-13091 (13091) [001] d..2 24577.465685: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
120662              ps-13421 (13421) [004] d..2 24577.465691: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120663     kworker/1:1-13091 (13091) [001] d..3 24577.465693: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
120664              ps-13421 (13421) [004] dn.3 24577.465694: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120665              ps-13421 (13421) [004] d..2 24577.465696: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120666     kworker/1:1-13091 (13091) [001] d..2 24577.465701: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
120667 shell svc 13418-13419 ( 1007) [004] d..2 24577.465704: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120668            adbd-23484 ( 1007) [001] d..2 24577.465711: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
120669            adbd-23484 ( 1007) [001] d..3 24577.465717: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
120670              ps-13421 (13421) [004] d..2 24577.465757: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120671            adbd-23484 ( 1007) [001] d..2 24577.465759: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
120672              ps-13421 (13421) [004] dn.3 24577.465760: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120673              ps-13421 (13421) [004] d..2 24577.465763: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120674 shell svc 13418-13419 ( 1007) [004] d..2 24577.465770: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120675            adbd-1007  ( 1007) [001] d..1 24577.465821: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120676              ps-13421 (13421) [004] d..2 24577.465821: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120677              ps-13421 (13421) [004] dn.3 24577.465824: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120678              ps-13421 (13421) [004] d..2 24577.465826: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120679            adbd-1007  ( 1007) [001] d..2 24577.465832: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120680 shell svc 13418-13419 ( 1007) [004] d..2 24577.465834: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120681            adbd-1007  ( 1007) [001] d..2 24577.465859: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120682              ps-13421 (13421) [004] d..2 24577.465887: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120683              ps-13421 (13421) [004] dn.3 24577.465890: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120684              ps-13421 (13421) [004] d..2 24577.465892: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120685            adbd-23485 ( 1007) [001] d..2 24577.465900: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120686 shell svc 13418-13419 ( 1007) [004] d..2 24577.465900: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120687          <idle>-0     (-----) [001] d..1 24577.465907: cpu_idle: state=0 cpu_id=1
120688          <idle>-0     (-----) [001] d.h3 24577.465927: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120689          <idle>-0     (-----) [001] dnh4 24577.465933: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120690          <idle>-0     (-----) [001] .n.1 24577.465938: cpu_idle: state=4294967295 cpu_id=1
120691          <idle>-0     (-----) [001] d..2 24577.465944: 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
120692   kworker/u17:2-23076 (23076) [001] d..2 24577.465950: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120693              ps-13421 (13421) [004] d..2 24577.465954: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120694   kworker/u17:2-23076 (23076) [001] d..3 24577.465956: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120695              ps-13421 (13421) [004] dn.3 24577.465957: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120696              ps-13421 (13421) [004] d..2 24577.465959: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120697 shell svc 13418-13419 ( 1007) [004] d..2 24577.465966: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120698   kworker/u17:2-23076 (23076) [001] d..2 24577.465972: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120699     kworker/1:1-13091 (13091) [001] d..2 24577.465976: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120700     kworker/1:1-13091 (13091) [001] d..3 24577.465984: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120701     kworker/1:1-13091 (13091) [001] d..2 24577.465991: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120702              ps-13421 (13421) [004] d..2 24577.466021: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120703              ps-13421 (13421) [004] dn.3 24577.466024: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120704              ps-13421 (13421) [004] d..2 24577.466026: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120705 shell svc 13418-13419 ( 1007) [004] d..2 24577.466033: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120706            adbd-23485 ( 1007) [001] d..2 24577.466035: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120707          <idle>-0     (-----) [001] d..1 24577.466041: cpu_idle: state=0 cpu_id=1
120708          <idle>-0     (-----) [001] d.h3 24577.466065: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120709          <idle>-0     (-----) [001] dnh4 24577.466071: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120710          <idle>-0     (-----) [001] .n.1 24577.466075: cpu_idle: state=4294967295 cpu_id=1
120711          <idle>-0     (-----) [001] d..2 24577.466081: 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
120712              ps-13421 (13421) [004] d..2 24577.466087: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120713   kworker/u17:2-23076 (23076) [001] d..2 24577.466087: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120714              ps-13421 (13421) [004] dn.3 24577.466090: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120715              ps-13421 (13421) [004] d..2 24577.466093: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120716   kworker/u17:2-23076 (23076) [001] d..3 24577.466093: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120717 shell svc 13418-13419 ( 1007) [004] d..2 24577.466100: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120718   kworker/u17:2-23076 (23076) [001] d..2 24577.466108: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120719     kworker/1:1-13091 (13091) [001] d..2 24577.466113: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120720     kworker/1:1-13091 (13091) [001] d..3 24577.466121: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120721     kworker/1:1-13091 (13091) [001] d..2 24577.466128: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120722            adbd-23485 ( 1007) [001] d..2 24577.466139: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120723          <idle>-0     (-----) [001] d..1 24577.466145: cpu_idle: state=0 cpu_id=1
120724              ps-13421 (13421) [004] d..2 24577.466154: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120725              ps-13421 (13421) [004] dn.3 24577.466157: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120726              ps-13421 (13421) [004] d..2 24577.466159: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120727 shell svc 13418-13419 ( 1007) [004] d..2 24577.466166: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120728          <idle>-0     (-----) [001] d.h3 24577.466215: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120729          <idle>-0     (-----) [001] dnh4 24577.466220: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120730              ps-13421 (13421) [004] d..2 24577.466223: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120731          <idle>-0     (-----) [001] .n.1 24577.466225: cpu_idle: state=4294967295 cpu_id=1
120732              ps-13421 (13421) [004] dn.3 24577.466226: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120733              ps-13421 (13421) [004] d..2 24577.466228: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120734          <idle>-0     (-----) [001] d..2 24577.466230: 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
120735 shell svc 13418-13419 ( 1007) [004] d..2 24577.466235: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120736   kworker/u17:2-23076 (23076) [001] d..2 24577.466236: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120737   kworker/u17:2-23076 (23076) [001] d..3 24577.466242: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120738   kworker/u17:2-23076 (23076) [001] d..2 24577.466257: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120739     kworker/1:1-13091 (13091) [001] d..2 24577.466262: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
120740     kworker/1:1-13091 (13091) [001] d..3 24577.466271: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
120741     kworker/1:1-13091 (13091) [001] d..2 24577.466278: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
120742            adbd-23484 ( 1007) [001] d..2 24577.466288: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
120743              ps-13421 (13421) [004] d..2 24577.466289: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120744              ps-13421 (13421) [004] dn.3 24577.466292: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120745            adbd-23484 ( 1007) [001] d..3 24577.466294: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
120746              ps-13421 (13421) [004] d..2 24577.466295: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120747 shell svc 13418-13419 ( 1007) [004] d..2 24577.466302: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120748            adbd-23484 ( 1007) [001] d..2 24577.466334: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
120749              ps-13421 (13421) [004] d..2 24577.466356: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120750              ps-13421 (13421) [004] dn.3 24577.466359: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120751              ps-13421 (13421) [004] d..2 24577.466361: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120752 shell svc 13418-13419 ( 1007) [004] d..2 24577.466369: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120753            adbd-1007  ( 1007) [001] d..1 24577.466396: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120754            adbd-1007  ( 1007) [001] d..2 24577.466407: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120755              ps-13421 (13421) [004] d..2 24577.466423: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120756              ps-13421 (13421) [004] dn.3 24577.466426: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120757              ps-13421 (13421) [004] d..2 24577.466428: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120758            adbd-1007  ( 1007) [001] d..2 24577.466433: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120759 shell svc 13418-13419 ( 1007) [004] d..2 24577.466436: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120760            adbd-23485 ( 1007) [001] d..2 24577.466474: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120761              ps-13421 (13421) [004] d..2 24577.466489: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120762          <idle>-0     (-----) [001] d.h4 24577.466491: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120763              ps-13421 (13421) [004] dn.3 24577.466492: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120764              ps-13421 (13421) [004] d..2 24577.466494: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120765          <idle>-0     (-----) [001] dnh5 24577.466497: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120766 shell svc 13418-13419 ( 1007) [004] d..2 24577.466501: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120767          <idle>-0     (-----) [001] d..2 24577.466505: 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
120768   kworker/u17:2-23076 (23076) [001] d..2 24577.466511: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120769   kworker/u17:2-23076 (23076) [001] d..3 24577.466516: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120770   kworker/u17:2-23076 (23076) [001] d..2 24577.466531: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120771     kworker/1:1-13091 (13091) [001] d..2 24577.466536: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120772     kworker/1:1-13091 (13091) [001] d..3 24577.466544: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120773     kworker/1:1-13091 (13091) [001] d..2 24577.466552: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120774              ps-13421 (13421) [004] d..2 24577.466556: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120775              ps-13421 (13421) [004] dn.3 24577.466559: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120776              ps-13421 (13421) [004] d..2 24577.466562: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120777 shell svc 13418-13419 ( 1007) [004] d..2 24577.466569: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120778            adbd-23485 ( 1007) [001] d..2 24577.466591: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120779          <idle>-0     (-----) [001] d..1 24577.466599: cpu_idle: state=0 cpu_id=1
120780          <idle>-0     (-----) [001] d.h3 24577.466620: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120781              ps-13421 (13421) [004] d..2 24577.466625: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120782          <idle>-0     (-----) [001] dnh4 24577.466625: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120783              ps-13421 (13421) [004] dn.3 24577.466628: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120784          <idle>-0     (-----) [001] .n.1 24577.466630: cpu_idle: state=4294967295 cpu_id=1
120785              ps-13421 (13421) [004] d..2 24577.466630: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120786          <idle>-0     (-----) [001] d..2 24577.466636: 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
120787 shell svc 13418-13419 ( 1007) [004] d..2 24577.466637: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120788   kworker/u17:2-23076 (23076) [001] d..2 24577.466642: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120789   kworker/u17:2-23076 (23076) [001] d..3 24577.466647: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120790   kworker/u17:2-23076 (23076) [001] d..2 24577.466662: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120791     kworker/1:1-13091 (13091) [001] d..2 24577.466667: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120792     kworker/1:1-13091 (13091) [001] d..3 24577.466676: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120793     kworker/1:1-13091 (13091) [001] d..2 24577.466683: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120794              ps-13421 (13421) [004] d..2 24577.466691: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120795              ps-13421 (13421) [004] dn.3 24577.466694: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120796            adbd-23485 ( 1007) [001] d..2 24577.466695: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120797              ps-13421 (13421) [004] d..2 24577.466696: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120798          <idle>-0     (-----) [001] d..1 24577.466702: cpu_idle: state=0 cpu_id=1
120799 shell svc 13418-13419 ( 1007) [004] d..2 24577.466704: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120800              ps-13421 (13421) [004] d..2 24577.466760: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120801              ps-13421 (13421) [004] dn.3 24577.466763: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120802          <idle>-0     (-----) [001] d.h3 24577.466765: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120803              ps-13421 (13421) [004] d..2 24577.466766: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120804          <idle>-0     (-----) [001] dnh4 24577.466771: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120805 shell svc 13418-13419 ( 1007) [004] d..2 24577.466773: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120806          <idle>-0     (-----) [001] .n.1 24577.466775: cpu_idle: state=4294967295 cpu_id=1
120807          <idle>-0     (-----) [001] d..2 24577.466781: 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
120808   kworker/u17:2-23076 (23076) [001] d..2 24577.466787: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120809   kworker/u17:2-23076 (23076) [001] d..3 24577.466792: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120810   kworker/u17:2-23076 (23076) [001] d..2 24577.466809: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120811     kworker/1:1-13091 (13091) [001] d..2 24577.466814: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
120812     kworker/1:1-13091 (13091) [001] d..3 24577.466822: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
120813              ps-13421 (13421) [004] d..2 24577.466826: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120814              ps-13421 (13421) [004] dn.3 24577.466829: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120815     kworker/1:1-13091 (13091) [001] d..2 24577.466830: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
120816              ps-13421 (13421) [004] d..2 24577.466831: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120817 shell svc 13418-13419 ( 1007) [004] d..2 24577.466839: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120818            adbd-23484 ( 1007) [001] d..2 24577.466840: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
120819            adbd-23484 ( 1007) [001] d..3 24577.466846: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
120820            adbd-23484 ( 1007) [001] d..2 24577.466886: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
120821              ps-13421 (13421) [004] d..2 24577.466891: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120822              ps-13421 (13421) [004] dn.3 24577.466893: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120823              ps-13421 (13421) [004] d..2 24577.466896: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120824 shell svc 13418-13419 ( 1007) [004] d..2 24577.466904: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120825            adbd-1007  ( 1007) [001] d..1 24577.466948: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120826              ps-13421 (13421) [004] d..2 24577.466956: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120827              ps-13421 (13421) [004] dn.3 24577.466959: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120828            adbd-1007  ( 1007) [001] d..2 24577.466960: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
120829              ps-13421 (13421) [004] d..2 24577.466961: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120830 shell svc 13418-13419 ( 1007) [004] d..2 24577.466969: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120831            adbd-1007  ( 1007) [001] d..2 24577.466986: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120832              ps-13421 (13421) [004] d..2 24577.467022: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120833              ps-13421 (13421) [004] dn.3 24577.467026: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120834            adbd-23485 ( 1007) [001] d..2 24577.467027: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120835              ps-13421 (13421) [004] d..2 24577.467028: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120836          <idle>-0     (-----) [001] d..1 24577.467035: cpu_idle: state=0 cpu_id=1
120837 shell svc 13418-13419 ( 1007) [004] d..2 24577.467035: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120838          <idle>-0     (-----) [001] d.h3 24577.467052: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120839          <idle>-0     (-----) [001] dnh4 24577.467059: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120840          <idle>-0     (-----) [001] .n.1 24577.467063: cpu_idle: state=4294967295 cpu_id=1
120841          <idle>-0     (-----) [001] d..2 24577.467069: 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
120842   kworker/u17:2-23076 (23076) [001] d..2 24577.467076: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120843          <idle>-0     (-----) [003] d.h2 24577.467078: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
120844   kworker/u17:2-23076 (23076) [001] d..3 24577.467082: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120845              ps-13421 (13421) [004] d..2 24577.467087: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120846          <idle>-0     (-----) [003] dnh3 24577.467088: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
120847              ps-13421 (13421) [004] dn.3 24577.467090: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120848              ps-13421 (13421) [004] d..2 24577.467093: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120849   kworker/u17:2-23076 (23076) [001] d..2 24577.467098: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120850 shell svc 13418-13419 ( 1007) [004] d..2 24577.467100: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120851     kworker/1:1-13091 (13091) [001] d..2 24577.467102: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
120852          <idle>-0     (-----) [003] .n.1 24577.467114: cpu_idle: state=4294967295 cpu_id=3
120853          <idle>-0     (-----) [003] d..2 24577.467123: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
120854     kworker/1:1-13091 (13091) [001] d..3 24577.467129: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
120855     kworker/1:1-13091 (13091) [001] d..2 24577.467137: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120856        DispSync-23904 (23896) [003] d..1 24577.467142: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
120857          <idle>-0     (-----) [001] d..1 24577.467143: cpu_idle: state=0 cpu_id=1
120858        DispSync-23904 (23896) [003] d..2 24577.467152: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
120859              ps-13421 (13421) [004] d..2 24577.467154: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120860              ps-13421 (13421) [004] dn.3 24577.467157: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120861              ps-13421 (13421) [004] d..2 24577.467160: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120862 shell svc 13418-13419 ( 1007) [004] d..2 24577.467167: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120863        DispSync-23904 (23896) [003] d..2 24577.467167: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120864            adbd-23485 ( 1007) [003] d..2 24577.467216: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
120865              ps-13421 (13421) [004] d..2 24577.467219: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120866              ps-13421 (13421) [004] dn.3 24577.467222: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120867              ps-13421 (13421) [004] d..2 24577.467224: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120868          <idle>-0     (-----) [003] d..1 24577.467225: cpu_idle: state=0 cpu_id=3
120869 shell svc 13418-13419 ( 1007) [004] d..2 24577.467232: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120870          <idle>-0     (-----) [000] .n.1 24577.467254: cpu_idle: state=4294967295 cpu_id=0
120871          <idle>-0     (-----) [001] d.h3 24577.467260: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120872          <idle>-0     (-----) [000] d..2 24577.467265: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
120873          <idle>-0     (-----) [001] dnh4 24577.467265: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120874          <idle>-0     (-----) [001] .n.1 24577.467270: cpu_idle: state=4294967295 cpu_id=1
120875          <idle>-0     (-----) [001] d..2 24577.467276: 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
120876   kworker/u17:2-23076 (23076) [001] d..2 24577.467282: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120877              ps-13421 (13421) [004] d..2 24577.467286: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120878   kworker/u17:2-23076 (23076) [001] d..3 24577.467287: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120879              ps-13421 (13421) [004] dn.3 24577.467289: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120880              ps-13421 (13421) [004] d..2 24577.467291: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120881  appEventThread-23905 (23896) [000] d..3 24577.467298: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
120882 shell svc 13418-13419 ( 1007) [004] d..2 24577.467298: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120883   kworker/u17:2-23076 (23076) [001] d..2 24577.467303: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120884     kworker/1:1-13091 (13091) [001] d..2 24577.467307: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
120885  appEventThread-23905 (23896) [000] d..4 24577.467320: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
120886     kworker/1:1-13091 (13091) [001] d..3 24577.467328: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
120887  appEventThread-23905 (23896) [000] d..2 24577.467338: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
120888     kworker/1:1-13091 (13091) [001] d..2 24577.467347: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120889              ps-13421 (13421) [004] d..2 24577.467351: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120890          <idle>-0     (-----) [001] d..1 24577.467353: cpu_idle: state=0 cpu_id=1
120891              ps-13421 (13421) [004] dn.3 24577.467354: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120892              ps-13421 (13421) [004] d..2 24577.467356: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120893            adbd-23485 ( 1007) [000] d..2 24577.467364: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
120894 shell svc 13418-13419 ( 1007) [004] d..2 24577.467364: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120895          <idle>-0     (-----) [000] d..1 24577.467372: cpu_idle: state=2 cpu_id=0
120896          <idle>-0     (-----) [001] d.h3 24577.467400: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120897          <idle>-0     (-----) [001] dnh4 24577.467407: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120898          <idle>-0     (-----) [001] .n.1 24577.467412: cpu_idle: state=4294967295 cpu_id=1
120899              ps-13421 (13421) [004] d..2 24577.467417: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120900          <idle>-0     (-----) [001] d..2 24577.467418: 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
120901              ps-13421 (13421) [004] dn.3 24577.467420: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120902              ps-13421 (13421) [004] d..2 24577.467422: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120903   kworker/u17:2-23076 (23076) [001] d..2 24577.467424: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120904          <idle>-0     (-----) [002] .n.1 24577.467427: cpu_idle: state=4294967295 cpu_id=2
120905   kworker/u17:2-23076 (23076) [001] d..3 24577.467429: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120906 shell svc 13418-13419 ( 1007) [004] d..2 24577.467430: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120907          <idle>-0     (-----) [002] d..2 24577.467438: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
120908   kworker/u17:2-23076 (23076) [001] d..2 24577.467444: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120909     kworker/1:1-13091 (13091) [001] d..2 24577.467450: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
120910     kworker/1:1-13091 (13091) [001] d..3 24577.467469: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
120911     kworker/1:1-13091 (13091) [001] d..2 24577.467478: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120912              ps-13421 (13421) [004] d..2 24577.467482: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120913          <idle>-0     (-----) [001] d..1 24577.467483: cpu_idle: state=0 cpu_id=1
120914              ps-13421 (13421) [004] dn.3 24577.467485: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120915              ps-13421 (13421) [004] d..2 24577.467488: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120916 shell svc 13418-13419 ( 1007) [004] d..2 24577.467495: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120917              ps-13421 (13421) [004] d..2 24577.467561: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120918              ps-13421 (13421) [004] dn.3 24577.467563: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120919              ps-13421 (13421) [004] d..2 24577.467566: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120920 shell svc 13418-13419 ( 1007) [004] d..2 24577.467574: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120921              ps-13421 (13421) [004] d..2 24577.467629: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120922              ps-13421 (13421) [004] dn.3 24577.467632: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120923              ps-13421 (13421) [004] d..2 24577.467635: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120924 shell svc 13418-13419 ( 1007) [004] d..2 24577.467642: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120925 s.nexuslauncher-24827 (24827) [002] .... 24577.467654: binder_transaction: transaction=1671634 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
120926 s.nexuslauncher-24827 (24827) [002] d..4 24577.467665: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=001
120927 s.nexuslauncher-24827 (24827) [002] d..5 24577.467684: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
120928              ps-13421 (13421) [004] d..2 24577.467695: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120929              ps-13421 (13421) [004] dn.3 24577.467698: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120930              ps-13421 (13421) [004] d..2 24577.467700: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120931 shell svc 13418-13419 ( 1007) [004] d..2 24577.467707: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120932 s.nexuslauncher-24827 (24827) [002] d..2 24577.467738: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
120933            adbd-23484 ( 1007) [002] d..2 24577.467754: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
120934              ps-13421 (13421) [004] d..2 24577.467759: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120935              ps-13421 (13421) [004] dn.3 24577.467762: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120936              ps-13421 (13421) [004] d..2 24577.467764: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120937            adbd-23484 ( 1007) [002] d..3 24577.467766: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
120938 shell svc 13418-13419 ( 1007) [004] d..2 24577.467771: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120939          <idle>-0     (-----) [000] .n.1 24577.467781: cpu_idle: state=4294967295 cpu_id=0
120940          <idle>-0     (-----) [000] d..2 24577.467792: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
120941  Binder:23896_5-25989 (23896) [000] .... 24577.467798: binder_transaction_received: transaction=1671634
120942            adbd-23484 ( 1007) [002] d..2 24577.467813: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
120943  Binder:23896_5-25989 (23896) [000] d..1 24577.467822: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
120944              ps-13421 (13421) [004] d..2 24577.467824: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120945              ps-13421 (13421) [004] dn.3 24577.467827: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120946              ps-13421 (13421) [004] d..2 24577.467829: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120947 shell svc 13418-13419 ( 1007) [004] d..2 24577.467836: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120948  Binder:23896_5-25989 (23896) [000] d..2 24577.467838: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
120949          <idle>-0     (-----) [003] .n.1 24577.467843: cpu_idle: state=4294967295 cpu_id=3
120950          <idle>-0     (-----) [003] d..2 24577.467850: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
120951  Binder:23896_5-25989 (23896) [000] d..2 24577.467867: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
120952          <idle>-0     (-----) [000] d..1 24577.467876: cpu_idle: state=0 cpu_id=0
120953  appEventThread-23905 (23896) [003] d..2 24577.467879: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
120954          <idle>-0     (-----) [003] d..1 24577.467887: cpu_idle: state=0 cpu_id=3
120955            adbd-1007  ( 1007) [002] d..1 24577.467888: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
120956              ps-13421 (13421) [004] d..2 24577.467890: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120957              ps-13421 (13421) [004] dn.3 24577.467893: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120958              ps-13421 (13421) [004] d..2 24577.467895: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120959            adbd-1007  ( 1007) [002] d..2 24577.467899: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
120960 shell svc 13418-13419 ( 1007) [004] d..2 24577.467903: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120961          <idle>-0     (-----) [000] .n.1 24577.467905: cpu_idle: state=4294967295 cpu_id=0
120962          <idle>-0     (-----) [000] d..2 24577.467911: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
120963            adbd-1007  ( 1007) [002] d..2 24577.467933: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
120964          <idle>-0     (-----) [002] d..1 24577.467943: cpu_idle: state=2 cpu_id=2
120965              ps-13421 (13421) [004] d..2 24577.467955: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120966              ps-13421 (13421) [004] dn.3 24577.467958: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120967              ps-13421 (13421) [004] d..2 24577.467960: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120968            adbd-23485 ( 1007) [000] d..2 24577.467964: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
120969 shell svc 13418-13419 ( 1007) [004] d..2 24577.467967: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120970          <idle>-0     (-----) [001] d.h3 24577.467969: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120971          <idle>-0     (-----) [000] d..1 24577.467972: cpu_idle: state=0 cpu_id=0
120972          <idle>-0     (-----) [001] dnh4 24577.467974: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120973          <idle>-0     (-----) [001] .n.1 24577.467978: cpu_idle: state=4294967295 cpu_id=1
120974          <idle>-0     (-----) [001] d..2 24577.467985: 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
120975   kworker/u17:2-23076 (23076) [001] d..2 24577.467991: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120976   kworker/u17:2-23076 (23076) [001] d..3 24577.467996: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
120977   kworker/u17:2-23076 (23076) [001] d..2 24577.468012: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
120978     kworker/1:1-13091 (13091) [001] d..2 24577.468017: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
120979              ps-13421 (13421) [004] d..2 24577.468020: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120980              ps-13421 (13421) [004] dn.3 24577.468023: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120981              ps-13421 (13421) [004] d..2 24577.468025: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120982     kworker/1:1-13091 (13091) [001] d..3 24577.468025: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
120983          <idle>-0     (-----) [000] .n.1 24577.468030: cpu_idle: state=4294967295 cpu_id=0
120984 shell svc 13418-13419 ( 1007) [004] d..2 24577.468032: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120985          <idle>-0     (-----) [000] d..2 24577.468036: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
120986     kworker/1:1-13091 (13091) [001] d..2 24577.468039: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120987          <idle>-0     (-----) [001] d..1 24577.468044: cpu_idle: state=0 cpu_id=1
120988            adbd-23485 ( 1007) [000] d..2 24577.468082: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
120989              ps-13421 (13421) [004] d..2 24577.468086: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120990          <idle>-0     (-----) [000] d..1 24577.468089: cpu_idle: state=0 cpu_id=0
120991              ps-13421 (13421) [004] dn.3 24577.468089: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120992              ps-13421 (13421) [004] d..2 24577.468092: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
120993 shell svc 13418-13419 ( 1007) [004] d..2 24577.468100: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
120994          <idle>-0     (-----) [001] d.h3 24577.468135: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120995          <idle>-0     (-----) [001] dnh4 24577.468141: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
120996          <idle>-0     (-----) [001] .n.1 24577.468145: cpu_idle: state=4294967295 cpu_id=1
120997          <idle>-0     (-----) [001] d..2 24577.468149: 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
120998              ps-13421 (13421) [004] d..2 24577.468154: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
120999   kworker/u17:2-23076 (23076) [001] d..2 24577.468156: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121000              ps-13421 (13421) [004] dn.3 24577.468157: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121001              ps-13421 (13421) [004] d..2 24577.468160: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121002   kworker/u17:2-23076 (23076) [001] d..3 24577.468161: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121003 shell svc 13418-13419 ( 1007) [004] d..2 24577.468167: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121004   kworker/u17:2-23076 (23076) [001] d..2 24577.468176: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121005     kworker/1:1-13091 (13091) [001] d..2 24577.468181: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
121006     kworker/1:1-13091 (13091) [001] d..3 24577.468189: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
121007          <idle>-0     (-----) [000] .n.1 24577.468195: cpu_idle: state=4294967295 cpu_id=0
121008          <idle>-0     (-----) [000] d..2 24577.468200: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
121009     kworker/1:1-13091 (13091) [001] d..2 24577.468202: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121010          <idle>-0     (-----) [001] d..1 24577.468206: cpu_idle: state=0 cpu_id=1
121011            adbd-23485 ( 1007) [000] d..2 24577.468220: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
121012              ps-13421 (13421) [004] d..2 24577.468221: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121013              ps-13421 (13421) [004] dn.3 24577.468224: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121014          <idle>-0     (-----) [000] d..1 24577.468226: cpu_idle: state=0 cpu_id=0
121015              ps-13421 (13421) [004] d..2 24577.468227: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121016 shell svc 13418-13419 ( 1007) [004] d..2 24577.468234: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121017          <idle>-0     (-----) [001] d.h3 24577.468284: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121018              ps-13421 (13421) [004] d..2 24577.468290: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121019          <idle>-0     (-----) [001] dnh4 24577.468290: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121020              ps-13421 (13421) [004] dn.3 24577.468293: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121021          <idle>-0     (-----) [001] .n.1 24577.468294: cpu_idle: state=4294967295 cpu_id=1
121022              ps-13421 (13421) [004] d..2 24577.468295: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121023          <idle>-0     (-----) [001] d..2 24577.468298: 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
121024 shell svc 13418-13419 ( 1007) [004] d..2 24577.468302: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121025   kworker/u17:2-23076 (23076) [001] d..2 24577.468304: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121026   kworker/u17:2-23076 (23076) [001] d..3 24577.468309: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121027   kworker/u17:2-23076 (23076) [001] d..2 24577.468325: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121028     kworker/1:1-13091 (13091) [001] d..2 24577.468330: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
121029     kworker/1:1-13091 (13091) [001] d..3 24577.468349: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
121030              ps-13421 (13421) [004] d..2 24577.468357: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121031     kworker/1:1-13091 (13091) [001] d..2 24577.468358: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
121032              ps-13421 (13421) [004] dn.3 24577.468360: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121033              ps-13421 (13421) [004] d..2 24577.468363: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121034            adbd-23484 ( 1007) [001] d..2 24577.468369: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
121035 shell svc 13418-13419 ( 1007) [004] d..2 24577.468370: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121036            adbd-23484 ( 1007) [001] d..3 24577.468378: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
121037            adbd-23484 ( 1007) [001] d..2 24577.468421: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
121038              ps-13421 (13421) [004] d..2 24577.468423: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121039              ps-13421 (13421) [004] dn.3 24577.468426: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121040              ps-13421 (13421) [004] d..2 24577.468428: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121041 shell svc 13418-13419 ( 1007) [004] d..2 24577.468435: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121042            adbd-1007  ( 1007) [001] d..1 24577.468485: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
121043              ps-13421 (13421) [004] d..2 24577.468491: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121044              ps-13421 (13421) [004] dn.3 24577.468494: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121045            adbd-1007  ( 1007) [001] d..2 24577.468496: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
121046              ps-13421 (13421) [004] d..2 24577.468497: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121047          <idle>-0     (-----) [000] .n.1 24577.468500: cpu_idle: state=4294967295 cpu_id=0
121048 shell svc 13418-13419 ( 1007) [004] d..2 24577.468504: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121049          <idle>-0     (-----) [000] d..2 24577.468506: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
121050            adbd-1007  ( 1007) [001] d..2 24577.468528: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121051          <idle>-0     (-----) [001] d..1 24577.468534: cpu_idle: state=0 cpu_id=1
121052            adbd-23485 ( 1007) [000] d..2 24577.468550: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
121053          <idle>-0     (-----) [000] d..1 24577.468556: cpu_idle: state=0 cpu_id=0
121054              ps-13421 (13421) [004] d..2 24577.468558: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121055              ps-13421 (13421) [004] dn.3 24577.468561: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121056              ps-13421 (13421) [004] d..2 24577.468564: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121057 shell svc 13418-13419 ( 1007) [004] d..2 24577.468571: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121058          <idle>-0     (-----) [001] d.h3 24577.468573: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121059          <idle>-0     (-----) [001] dnh4 24577.468579: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121060          <idle>-0     (-----) [001] .n.1 24577.468584: cpu_idle: state=4294967295 cpu_id=1
121061          <idle>-0     (-----) [001] d..2 24577.468589: 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
121062   kworker/u17:2-23076 (23076) [001] d..2 24577.468597: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121063   kworker/u17:2-23076 (23076) [001] d..3 24577.468602: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121064   kworker/u17:2-23076 (23076) [001] d..2 24577.468619: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121065     kworker/1:1-13091 (13091) [001] d..2 24577.468624: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
121066              ps-13421 (13421) [004] d..2 24577.468624: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121067              ps-13421 (13421) [004] dn.3 24577.468627: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121068              ps-13421 (13421) [004] d..2 24577.468630: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121069     kworker/1:1-13091 (13091) [001] d..3 24577.468633: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
121070 shell svc 13418-13419 ( 1007) [004] d..2 24577.468637: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121071          <idle>-0     (-----) [000] .n.1 24577.468638: cpu_idle: state=4294967295 cpu_id=0
121072          <idle>-0     (-----) [000] d..2 24577.468644: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
121073     kworker/1:1-13091 (13091) [001] d..2 24577.468646: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121074          <idle>-0     (-----) [001] d..1 24577.468651: cpu_idle: state=0 cpu_id=1
121075            adbd-23485 ( 1007) [000] d..2 24577.468688: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
121076              ps-13421 (13421) [004] d..2 24577.468693: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121077          <idle>-0     (-----) [000] d..1 24577.468694: cpu_idle: state=0 cpu_id=0
121078              ps-13421 (13421) [004] dn.3 24577.468696: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121079              ps-13421 (13421) [004] d..2 24577.468699: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121080 shell svc 13418-13419 ( 1007) [004] d..2 24577.468706: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121081          <idle>-0     (-----) [001] d.h3 24577.468715: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121082          <idle>-0     (-----) [001] dnh4 24577.468720: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121083          <idle>-0     (-----) [001] .n.1 24577.468724: cpu_idle: state=4294967295 cpu_id=1
121084          <idle>-0     (-----) [001] d..2 24577.468729: 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
121085   kworker/u17:2-23076 (23076) [001] d..2 24577.468736: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121086   kworker/u17:2-23076 (23076) [001] d..3 24577.468741: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121087   kworker/u17:2-23076 (23076) [001] d..2 24577.468756: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121088     kworker/1:1-13091 (13091) [001] d..2 24577.468761: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
121089              ps-13421 (13421) [004] d..2 24577.468762: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121090              ps-13421 (13421) [004] dn.3 24577.468765: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121091              ps-13421 (13421) [004] d..2 24577.468767: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121092     kworker/1:1-13091 (13091) [001] d..3 24577.468769: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
121093          <idle>-0     (-----) [000] .n.1 24577.468774: cpu_idle: state=4294967295 cpu_id=0
121094 shell svc 13418-13419 ( 1007) [004] d..2 24577.468774: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121095          <idle>-0     (-----) [000] d..2 24577.468779: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
121096     kworker/1:1-13091 (13091) [001] d..2 24577.468781: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121097          <idle>-0     (-----) [001] d..1 24577.468786: cpu_idle: state=0 cpu_id=1
121098            adbd-23485 ( 1007) [000] d..2 24577.468794: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
121099          <idle>-0     (-----) [000] d..1 24577.468800: cpu_idle: state=0 cpu_id=0
121100              ps-13421 (13421) [004] d..2 24577.468831: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121101              ps-13421 (13421) [004] dn.3 24577.468835: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121102              ps-13421 (13421) [004] d..2 24577.468837: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121103 shell svc 13418-13419 ( 1007) [004] d..2 24577.468844: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121104          <idle>-0     (-----) [001] d.h3 24577.468892: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121105          <idle>-0     (-----) [001] dnh4 24577.468897: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121106              ps-13421 (13421) [004] d..2 24577.468898: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121107          <idle>-0     (-----) [001] .n.1 24577.468901: cpu_idle: state=4294967295 cpu_id=1
121108              ps-13421 (13421) [004] dn.3 24577.468902: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121109              ps-13421 (13421) [004] d..2 24577.468904: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121110          <idle>-0     (-----) [001] d..2 24577.468906: 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
121111   kworker/u17:2-23076 (23076) [001] d..2 24577.468911: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121112 shell svc 13418-13419 ( 1007) [004] d..2 24577.468911: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121113   kworker/u17:2-23076 (23076) [001] d..3 24577.468916: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121114   kworker/u17:2-23076 (23076) [001] d..2 24577.468931: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121115     kworker/1:1-13091 (13091) [001] d..2 24577.468937: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
121116     kworker/1:1-13091 (13091) [001] d..3 24577.468946: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
121117     kworker/1:1-13091 (13091) [001] d..2 24577.468954: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
121118            adbd-23484 ( 1007) [001] d..2 24577.468964: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
121119              ps-13421 (13421) [004] d..2 24577.468966: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121120              ps-13421 (13421) [004] dn.3 24577.468969: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121121            adbd-23484 ( 1007) [001] d..3 24577.468970: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
121122              ps-13421 (13421) [004] d..2 24577.468971: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121123 shell svc 13418-13419 ( 1007) [004] d..2 24577.468979: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121124            adbd-23484 ( 1007) [001] d..2 24577.469011: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
121125              ps-13421 (13421) [004] d..2 24577.469033: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121126              ps-13421 (13421) [004] dn.3 24577.469036: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121127              ps-13421 (13421) [004] d..2 24577.469038: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121128 shell svc 13418-13419 ( 1007) [004] d..2 24577.469046: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121129            adbd-1007  ( 1007) [001] d..1 24577.469073: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
121130            adbd-1007  ( 1007) [001] d..2 24577.469084: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
121131          <idle>-0     (-----) [000] .n.1 24577.469089: cpu_idle: state=4294967295 cpu_id=0
121132          <idle>-0     (-----) [000] d..2 24577.469095: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
121133              ps-13421 (13421) [004] d..2 24577.469100: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121134              ps-13421 (13421) [004] dn.3 24577.469103: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121135              ps-13421 (13421) [004] d..2 24577.469105: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121136 shell svc 13418-13419 ( 1007) [004] d..2 24577.469113: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121137            adbd-1007  ( 1007) [001] d..2 24577.469116: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121138          <idle>-0     (-----) [001] d..1 24577.469122: cpu_idle: state=0 cpu_id=1
121139            adbd-23485 ( 1007) [000] d..2 24577.469137: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
121140          <idle>-0     (-----) [000] d..1 24577.469143: cpu_idle: state=0 cpu_id=0
121141          <idle>-0     (-----) [001] d.h3 24577.469156: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121142          <idle>-0     (-----) [001] dnh4 24577.469162: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121143          <idle>-0     (-----) [001] .n.1 24577.469167: cpu_idle: state=4294967295 cpu_id=1
121144              ps-13421 (13421) [004] d..2 24577.469169: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121145          <idle>-0     (-----) [001] d..2 24577.469172: 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
121146              ps-13421 (13421) [004] dn.3 24577.469172: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121147              ps-13421 (13421) [004] d..2 24577.469174: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121148   kworker/u17:2-23076 (23076) [001] d..2 24577.469180: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121149 shell svc 13418-13419 ( 1007) [004] d..2 24577.469182: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121150   kworker/u17:2-23076 (23076) [001] d..3 24577.469186: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121151   kworker/u17:2-23076 (23076) [001] d..2 24577.469201: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121152     kworker/1:1-13091 (13091) [001] d..2 24577.469207: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
121153     kworker/1:1-13091 (13091) [001] d..3 24577.469216: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
121154          <idle>-0     (-----) [000] .n.1 24577.469221: cpu_idle: state=4294967295 cpu_id=0
121155          <idle>-0     (-----) [000] d..2 24577.469227: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
121156     kworker/1:1-13091 (13091) [001] d..2 24577.469229: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121157          <idle>-0     (-----) [001] d..1 24577.469233: cpu_idle: state=0 cpu_id=1
121158              ps-13421 (13421) [004] d..2 24577.469235: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121159              ps-13421 (13421) [004] dn.3 24577.469238: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121160              ps-13421 (13421) [004] d..2 24577.469240: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121161 shell svc 13418-13419 ( 1007) [004] d..2 24577.469247: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121162            adbd-23485 ( 1007) [000] d..2 24577.469270: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
121163          <idle>-0     (-----) [000] d..1 24577.469276: cpu_idle: state=0 cpu_id=0
121164          <idle>-0     (-----) [001] d.h3 24577.469293: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121165          <idle>-0     (-----) [001] dnh4 24577.469298: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121166              ps-13421 (13421) [004] d..2 24577.469302: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121167          <idle>-0     (-----) [001] .n.1 24577.469302: cpu_idle: state=4294967295 cpu_id=1
121168              ps-13421 (13421) [004] dn.3 24577.469305: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121169          <idle>-0     (-----) [001] d..2 24577.469306: 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
121170              ps-13421 (13421) [004] d..2 24577.469307: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121171   kworker/u17:2-23076 (23076) [001] d..2 24577.469313: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121172 shell svc 13418-13419 ( 1007) [004] d..2 24577.469316: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121173   kworker/u17:2-23076 (23076) [001] d..3 24577.469318: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121174   kworker/u17:2-23076 (23076) [001] d..2 24577.469333: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121175     kworker/1:1-13091 (13091) [001] d..2 24577.469339: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
121176     kworker/1:1-13091 (13091) [001] d..3 24577.469358: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121177     kworker/1:1-13091 (13091) [001] d..2 24577.469366: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121178              ps-13421 (13421) [004] d..2 24577.469371: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121179              ps-13421 (13421) [004] dn.3 24577.469374: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121180              ps-13421 (13421) [004] d..2 24577.469377: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121181 shell svc 13418-13419 ( 1007) [004] d..2 24577.469384: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121182            adbd-23485 ( 1007) [001] d..2 24577.469386: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121183          <idle>-0     (-----) [001] d..1 24577.469391: cpu_idle: state=0 cpu_id=1
121184              ps-13421 (13421) [004] d..2 24577.469442: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121185              ps-13421 (13421) [004] dn.3 24577.469445: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121186              ps-13421 (13421) [004] d..2 24577.469447: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121187 shell svc 13418-13419 ( 1007) [004] d..2 24577.469455: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121188          <idle>-0     (-----) [001] d.h3 24577.469468: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121189          <idle>-0     (-----) [001] dnh4 24577.469476: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121190          <idle>-0     (-----) [001] .n.1 24577.469481: cpu_idle: state=4294967295 cpu_id=1
121191          <idle>-0     (-----) [001] d..2 24577.469485: 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
121192   kworker/u17:2-23076 (23076) [001] d..2 24577.469493: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121193   kworker/u17:2-23076 (23076) [001] d..3 24577.469497: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121194              ps-13421 (13421) [004] d..2 24577.469507: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121195              ps-13421 (13421) [004] dn.3 24577.469510: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121196              ps-13421 (13421) [004] d..2 24577.469513: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121197   kworker/u17:2-23076 (23076) [001] d..2 24577.469513: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121198     kworker/1:1-13091 (13091) [001] d..2 24577.469519: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
121199 shell svc 13418-13419 ( 1007) [004] d..2 24577.469520: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121200     kworker/1:1-13091 (13091) [001] d..3 24577.469527: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
121201     kworker/1:1-13091 (13091) [001] d..2 24577.469535: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
121202            adbd-23484 ( 1007) [001] d..2 24577.469545: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
121203            adbd-23484 ( 1007) [001] d..3 24577.469551: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
121204              ps-13421 (13421) [004] d..2 24577.469574: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121205              ps-13421 (13421) [004] dn.3 24577.469577: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121206              ps-13421 (13421) [004] d..2 24577.469579: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121207 shell svc 13418-13419 ( 1007) [004] d..2 24577.469587: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121208            adbd-23484 ( 1007) [001] d..2 24577.469593: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
121209              ps-13421 (13421) [004] d..2 24577.469641: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121210              ps-13421 (13421) [004] dn.3 24577.469643: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121211              ps-13421 (13421) [004] d..2 24577.469646: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121212 shell svc 13418-13419 ( 1007) [004] d..2 24577.469654: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121213            adbd-1007  ( 1007) [001] d..1 24577.469657: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121214            adbd-1007  ( 1007) [001] d..2 24577.469668: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121215            adbd-1007  ( 1007) [001] d..2 24577.469696: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121216              ps-13421 (13421) [004] d..2 24577.469707: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121217              ps-13421 (13421) [004] dn.3 24577.469710: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121218              ps-13421 (13421) [004] d..2 24577.469712: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121219 shell svc 13418-13419 ( 1007) [004] d..2 24577.469720: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121220            adbd-23485 ( 1007) [001] d..2 24577.469742: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121221          <idle>-0     (-----) [001] d.h3 24577.469759: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121222          <idle>-0     (-----) [001] dnh4 24577.469765: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121223          <idle>-0     (-----) [001] d..2 24577.469773: 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
121224              ps-13421 (13421) [004] d..2 24577.469773: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121225              ps-13421 (13421) [004] dn.3 24577.469776: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121226              ps-13421 (13421) [004] d..2 24577.469778: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121227   kworker/u17:2-23076 (23076) [001] d..2 24577.469779: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121228   kworker/u17:2-23076 (23076) [001] d..3 24577.469784: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121229 shell svc 13418-13419 ( 1007) [004] d..2 24577.469786: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121230   kworker/u17:2-23076 (23076) [001] d..2 24577.469800: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121231     kworker/1:1-13091 (13091) [001] d..2 24577.469804: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121232     kworker/1:1-13091 (13091) [001] d..3 24577.469812: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121233     kworker/1:1-13091 (13091) [001] d..2 24577.469820: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121234              ps-13421 (13421) [004] d..2 24577.469841: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121235              ps-13421 (13421) [004] dn.3 24577.469844: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121236              ps-13421 (13421) [004] d..2 24577.469847: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121237 shell svc 13418-13419 ( 1007) [004] d..2 24577.469854: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121238            adbd-23485 ( 1007) [001] d..2 24577.469864: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121239          <idle>-0     (-----) [001] d..1 24577.469870: cpu_idle: state=0 cpu_id=1
121240          <idle>-0     (-----) [001] d.h3 24577.469897: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121241          <idle>-0     (-----) [001] dnh4 24577.469903: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121242              ps-13421 (13421) [004] d..2 24577.469908: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121243          <idle>-0     (-----) [001] .n.1 24577.469908: cpu_idle: state=4294967295 cpu_id=1
121244              ps-13421 (13421) [004] dn.3 24577.469911: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121245          <idle>-0     (-----) [001] d..2 24577.469912: 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
121246              ps-13421 (13421) [004] d..2 24577.469913: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121247   kworker/u17:2-23076 (23076) [001] d..2 24577.469919: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121248 shell svc 13418-13419 ( 1007) [004] d..2 24577.469921: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121249   kworker/u17:2-23076 (23076) [001] d..3 24577.469924: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121250   kworker/u17:2-23076 (23076) [001] d..2 24577.469940: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121251     kworker/1:1-13091 (13091) [001] d..2 24577.469944: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121252     kworker/1:1-13091 (13091) [001] d..3 24577.469952: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121253     kworker/1:1-13091 (13091) [001] d..2 24577.469960: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121254              ps-13421 (13421) [004] d..2 24577.469974: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121255            adbd-23485 ( 1007) [001] d..2 24577.469975: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121256              ps-13421 (13421) [004] dn.3 24577.469977: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121257              ps-13421 (13421) [004] d..2 24577.469980: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121258          <idle>-0     (-----) [001] d..1 24577.469980: cpu_idle: state=0 cpu_id=1
121259 shell svc 13418-13419 ( 1007) [004] d..2 24577.469987: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121260              ps-13421 (13421) [004] d..2 24577.470046: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121261              ps-13421 (13421) [004] dn.3 24577.470049: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121262              ps-13421 (13421) [004] d..2 24577.470052: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121263 shell svc 13418-13419 ( 1007) [004] d..2 24577.470059: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121264          <idle>-0     (-----) [001] d.h3 24577.470062: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121265          <idle>-0     (-----) [001] dnh4 24577.470067: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121266          <idle>-0     (-----) [001] .n.1 24577.470072: cpu_idle: state=4294967295 cpu_id=1
121267          <idle>-0     (-----) [001] d..2 24577.470076: 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
121268   kworker/u17:2-23076 (23076) [001] d..2 24577.470083: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121269   kworker/u17:2-23076 (23076) [001] d..3 24577.470088: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121270   kworker/u17:2-23076 (23076) [001] d..2 24577.470104: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121271     kworker/1:1-13091 (13091) [001] d..2 24577.470110: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
121272              ps-13421 (13421) [004] d..2 24577.470114: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121273              ps-13421 (13421) [004] dn.3 24577.470117: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121274     kworker/1:1-13091 (13091) [001] d..3 24577.470118: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
121275              ps-13421 (13421) [004] d..2 24577.470120: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121276     kworker/1:1-13091 (13091) [001] d..2 24577.470125: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
121277 shell svc 13418-13419 ( 1007) [004] d..2 24577.470127: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121278            adbd-23484 ( 1007) [001] d..2 24577.470136: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
121279            adbd-23484 ( 1007) [001] d..3 24577.470142: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
121280              ps-13421 (13421) [004] d..2 24577.470180: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121281            adbd-23484 ( 1007) [001] d..2 24577.470182: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
121282              ps-13421 (13421) [004] dn.3 24577.470183: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121283              ps-13421 (13421) [004] d..2 24577.470185: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121284 shell svc 13418-13419 ( 1007) [004] d..2 24577.470192: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121285            adbd-1007  ( 1007) [001] d..1 24577.470243: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121286              ps-13421 (13421) [004] d..2 24577.470247: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121287              ps-13421 (13421) [004] dn.3 24577.470250: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121288              ps-13421 (13421) [004] d..2 24577.470252: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121289            adbd-1007  ( 1007) [001] d..2 24577.470255: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121290 shell svc 13418-13419 ( 1007) [004] d..2 24577.470259: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121291            adbd-1007  ( 1007) [001] d..2 24577.470281: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121292              ps-13421 (13421) [004] d..2 24577.470312: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121293              ps-13421 (13421) [004] dn.3 24577.470315: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121294              ps-13421 (13421) [004] d..2 24577.470317: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121295 shell svc 13418-13419 ( 1007) [004] d..2 24577.470324: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121296            adbd-23485 ( 1007) [001] d..2 24577.470327: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121297          <idle>-0     (-----) [001] d.h4 24577.470344: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121298          <idle>-0     (-----) [001] dnh5 24577.470351: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121299          <idle>-0     (-----) [001] d..2 24577.470358: 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
121300   kworker/u17:2-23076 (23076) [001] d..2 24577.470366: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121301   kworker/u17:2-23076 (23076) [001] d..3 24577.470370: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121302              ps-13421 (13421) [004] d..2 24577.470378: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121303              ps-13421 (13421) [004] dn.3 24577.470381: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121304              ps-13421 (13421) [004] d..2 24577.470384: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121305   kworker/u17:2-23076 (23076) [001] d..2 24577.470386: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121306     kworker/1:1-13091 (13091) [001] d..2 24577.470391: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121307 shell svc 13418-13419 ( 1007) [004] d..2 24577.470391: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121308     kworker/1:1-13091 (13091) [001] d..3 24577.470399: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121309     kworker/1:1-13091 (13091) [001] d..2 24577.470406: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121310          <idle>-0     (-----) [000] ...1 24577.470443: cpu_idle: state=4294967295 cpu_id=0
121311              ps-13421 (13421) [004] d..2 24577.470444: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121312          <idle>-0     (-----) [000] d..1 24577.470445: cpu_idle: state=2 cpu_id=0
121313            adbd-23485 ( 1007) [001] d..2 24577.470446: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121314              ps-13421 (13421) [004] dn.3 24577.470447: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121315              ps-13421 (13421) [004] d..2 24577.470449: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121316          <idle>-0     (-----) [001] d..1 24577.470452: cpu_idle: state=0 cpu_id=1
121317 shell svc 13418-13419 ( 1007) [004] d..2 24577.470456: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121318          <idle>-0     (-----) [001] d.h3 24577.470483: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121319          <idle>-0     (-----) [001] dnh4 24577.470489: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121320          <idle>-0     (-----) [001] .n.1 24577.470494: cpu_idle: state=4294967295 cpu_id=1
121321          <idle>-0     (-----) [001] d..2 24577.470498: 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
121322   kworker/u17:2-23076 (23076) [001] d..2 24577.470505: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121323   kworker/u17:2-23076 (23076) [001] d..3 24577.470510: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121324              ps-13421 (13421) [004] d..2 24577.470510: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121325              ps-13421 (13421) [004] dn.3 24577.470513: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121326              ps-13421 (13421) [004] d..2 24577.470515: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121327 shell svc 13418-13419 ( 1007) [004] d..2 24577.470523: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121328   kworker/u17:2-23076 (23076) [001] d..2 24577.470525: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121329     kworker/1:1-13091 (13091) [001] d..2 24577.470530: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121330     kworker/1:1-13091 (13091) [001] d..3 24577.470538: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121331     kworker/1:1-13091 (13091) [001] d..2 24577.470545: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121332            adbd-23485 ( 1007) [001] d..2 24577.470556: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121333          <idle>-0     (-----) [001] d..1 24577.470561: cpu_idle: state=0 cpu_id=1
121334              ps-13421 (13421) [004] d..2 24577.470581: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121335              ps-13421 (13421) [004] dn.3 24577.470584: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121336              ps-13421 (13421) [004] d..2 24577.470586: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121337 shell svc 13418-13419 ( 1007) [004] d..2 24577.470593: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121338          <idle>-0     (-----) [001] d.h3 24577.470634: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121339          <idle>-0     (-----) [001] dnh4 24577.470639: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121340          <idle>-0     (-----) [001] .n.1 24577.470644: cpu_idle: state=4294967295 cpu_id=1
121341          <idle>-0     (-----) [001] d..2 24577.470648: 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
121342              ps-13421 (13421) [004] d..2 24577.470650: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121343              ps-13421 (13421) [004] dn.3 24577.470653: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121344   kworker/u17:2-23076 (23076) [001] d..2 24577.470655: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121345              ps-13421 (13421) [004] d..2 24577.470655: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121346   kworker/u17:2-23076 (23076) [001] d..3 24577.470660: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121347 shell svc 13418-13419 ( 1007) [004] d..2 24577.470663: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121348   kworker/u17:2-23076 (23076) [001] d..2 24577.470676: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121349     kworker/1:1-13091 (13091) [001] d..2 24577.470681: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
121350     kworker/1:1-13091 (13091) [001] d..3 24577.470689: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
121351     kworker/1:1-13091 (13091) [001] d..2 24577.470696: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
121352            adbd-23484 ( 1007) [001] d..2 24577.470707: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
121353            adbd-23484 ( 1007) [001] d..3 24577.470713: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
121354              ps-13421 (13421) [004] d..2 24577.470716: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121355              ps-13421 (13421) [004] dn.3 24577.470719: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121356              ps-13421 (13421) [004] d..2 24577.470722: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121357 shell svc 13418-13419 ( 1007) [004] d..2 24577.470729: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121358            adbd-23484 ( 1007) [001] d..2 24577.470753: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
121359              ps-13421 (13421) [004] d..2 24577.470783: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121360              ps-13421 (13421) [004] dn.3 24577.470786: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121361              ps-13421 (13421) [004] d..2 24577.470788: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121362 shell svc 13418-13419 ( 1007) [004] d..2 24577.470796: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121363            adbd-1007  ( 1007) [001] d..1 24577.470817: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121364            adbd-1007  ( 1007) [001] d..2 24577.470829: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121365              ps-13421 (13421) [004] d..2 24577.470848: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121366              ps-13421 (13421) [004] dn.3 24577.470851: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121367              ps-13421 (13421) [004] d..2 24577.470854: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121368            adbd-1007  ( 1007) [001] d..2 24577.470855: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121369 shell svc 13418-13419 ( 1007) [004] d..2 24577.470861: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121370            adbd-23485 ( 1007) [001] d.s2 24577.470906: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
121371            adbd-23485 ( 1007) [001] dns3 24577.470915: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
121372              ps-13421 (13421) [004] d..2 24577.470928: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121373            adbd-23485 ( 1007) [001] dnH4 24577.470930: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121374              ps-13421 (13421) [004] dn.3 24577.470932: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121375              ps-13421 (13421) [004] d..2 24577.470934: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121376            adbd-23485 ( 1007) [001] dnH5 24577.470937: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121377 shell svc 13418-13419 ( 1007) [004] d..2 24577.470942: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121378            adbd-23485 ( 1007) [001] d..2 24577.470949: 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
121379   kworker/u17:2-23076 (23076) [001] d..2 24577.470955: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121380   kworker/u17:2-23076 (23076) [001] d..3 24577.470960: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121381   kworker/u17:2-23076 (23076) [001] d..2 24577.470977: 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
121382     rcu_preempt-7     (    7) [001] d..2 24577.470982: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
121383              ps-13421 (13421) [004] d..2 24577.470998: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121384              ps-13421 (13421) [004] dn.3 24577.471001: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121385              ps-13421 (13421) [004] d..2 24577.471004: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121386     rcu_preempt-7     (    7) [001] d..3 24577.471004: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
121387          <idle>-0     (-----) [003] .n.1 24577.471009: cpu_idle: state=4294967295 cpu_id=3
121388     rcu_preempt-7     (    7) [001] d..2 24577.471010: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121389 shell svc 13418-13419 ( 1007) [004] d..2 24577.471012: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121390          <idle>-0     (-----) [003] d..2 24577.471016: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/4 next_pid=45 next_prio=120
121391     kworker/1:1-13091 (13091) [001] d..2 24577.471022: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121392         rcuop/4-45    (   45) [003] d..2 24577.471022: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
121393         rcuop/4-45    (   45) [003] d..3 24577.471045: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
121394         rcuop/4-45    (   45) [003] d..2 24577.471050: 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
121395            adbd-23485 ( 1007) [001] d..2 24577.471063: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121396     rcu_preempt-7     (    7) [003] d..2 24577.471065: 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
121397              ps-13421 (13421) [004] d..2 24577.471067: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121398              ps-13421 (13421) [004] dn.3 24577.471070: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121399          <idle>-0     (-----) [003] d..1 24577.471071: cpu_idle: state=2 cpu_id=3
121400              ps-13421 (13421) [004] d..2 24577.471073: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121401          <idle>-0     (-----) [001] d..1 24577.471073: cpu_idle: state=0 cpu_id=1
121402 shell svc 13418-13419 ( 1007) [004] d..2 24577.471080: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121403          <idle>-0     (-----) [001] d.h3 24577.471108: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121404          <idle>-0     (-----) [001] dnh4 24577.471114: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121405          <idle>-0     (-----) [001] .n.1 24577.471119: cpu_idle: state=4294967295 cpu_id=1
121406          <idle>-0     (-----) [001] d..2 24577.471125: 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
121407   kworker/u17:2-23076 (23076) [001] d..2 24577.471131: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121408              ps-13421 (13421) [004] d..2 24577.471135: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121409   kworker/u17:2-23076 (23076) [001] d..3 24577.471136: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121410              ps-13421 (13421) [004] dn.3 24577.471138: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121411              ps-13421 (13421) [004] d..2 24577.471141: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121412 shell svc 13418-13419 ( 1007) [004] d..2 24577.471148: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121413   kworker/u17:2-23076 (23076) [001] d..2 24577.471152: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121414     kworker/1:1-13091 (13091) [001] d..2 24577.471156: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121415     kworker/1:1-13091 (13091) [001] d..3 24577.471164: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121416     kworker/1:1-13091 (13091) [001] d..2 24577.471172: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121417            adbd-23485 ( 1007) [001] d..2 24577.471183: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121418          <idle>-0     (-----) [001] d..1 24577.471190: cpu_idle: state=0 cpu_id=1
121419              ps-13421 (13421) [004] d..2 24577.471202: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121420              ps-13421 (13421) [004] dn.3 24577.471205: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121421              ps-13421 (13421) [004] d..2 24577.471207: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121422 shell svc 13418-13419 ( 1007) [004] d..2 24577.471214: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121423          <idle>-0     (-----) [001] d.h3 24577.471268: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121424              ps-13421 (13421) [004] d..2 24577.471272: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121425          <idle>-0     (-----) [001] dnh4 24577.471274: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121426              ps-13421 (13421) [004] dn.3 24577.471275: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121427              ps-13421 (13421) [004] d..2 24577.471277: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121428          <idle>-0     (-----) [001] .n.1 24577.471283: cpu_idle: state=4294967295 cpu_id=1
121429 shell svc 13418-13419 ( 1007) [004] d..2 24577.471284: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121430          <idle>-0     (-----) [001] d..2 24577.471288: 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
121431   kworker/u17:2-23076 (23076) [001] d..2 24577.471295: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121432   kworker/u17:2-23076 (23076) [001] d..3 24577.471300: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121433   kworker/u17:2-23076 (23076) [001] d..2 24577.471315: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121434     kworker/1:1-13091 (13091) [001] d..2 24577.471320: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
121435     kworker/1:1-13091 (13091) [001] d..3 24577.471329: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
121436     kworker/1:1-13091 (13091) [001] d..2 24577.471336: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
121437              ps-13421 (13421) [004] d..2 24577.471339: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121438              ps-13421 (13421) [004] dn.3 24577.471342: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121439              ps-13421 (13421) [004] d..2 24577.471344: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121440            adbd-23484 ( 1007) [001] d..2 24577.471347: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
121441 shell svc 13418-13419 ( 1007) [004] d..2 24577.471352: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121442            adbd-23484 ( 1007) [001] d..3 24577.471353: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
121443            adbd-23484 ( 1007) [001] d..2 24577.471393: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
121444              ps-13421 (13421) [004] d..2 24577.471409: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121445              ps-13421 (13421) [004] dn.3 24577.471412: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121446              ps-13421 (13421) [004] d..2 24577.471415: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121447 shell svc 13418-13419 ( 1007) [004] d..2 24577.471422: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121448            adbd-1007  ( 1007) [001] d..1 24577.471455: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121449            adbd-1007  ( 1007) [001] d..2 24577.471467: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121450              ps-13421 (13421) [004] d..2 24577.471476: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121451              ps-13421 (13421) [004] dn.3 24577.471479: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121452              ps-13421 (13421) [004] d..2 24577.471482: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121453 shell svc 13418-13419 ( 1007) [004] d..2 24577.471489: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121454            adbd-1007  ( 1007) [001] d..2 24577.471493: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121455            adbd-23485 ( 1007) [001] d..2 24577.471534: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121456              ps-13421 (13421) [004] d..2 24577.471542: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121457              ps-13421 (13421) [004] dn.3 24577.471545: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121458              ps-13421 (13421) [004] d..2 24577.471547: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121459          <idle>-0     (-----) [001] d.h4 24577.471550: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121460 shell svc 13418-13419 ( 1007) [004] d..2 24577.471554: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121461          <idle>-0     (-----) [001] dnh5 24577.471559: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121462          <idle>-0     (-----) [001] d..2 24577.471567: 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
121463   kworker/u17:2-23076 (23076) [001] d..2 24577.471574: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121464   kworker/u17:2-23076 (23076) [001] d..3 24577.471579: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121465   kworker/u17:2-23076 (23076) [001] d..2 24577.471595: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121466     kworker/1:1-13091 (13091) [001] d..2 24577.471599: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121467     kworker/1:1-13091 (13091) [001] d..3 24577.471607: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121468              ps-13421 (13421) [004] d..2 24577.471608: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121469              ps-13421 (13421) [004] dn.3 24577.471611: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121470              ps-13421 (13421) [004] d..2 24577.471613: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121471     kworker/1:1-13091 (13091) [001] d..2 24577.471615: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121472 shell svc 13418-13419 ( 1007) [004] d..2 24577.471620: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121473            adbd-23485 ( 1007) [001] d..2 24577.471653: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121474          <idle>-0     (-----) [001] d..1 24577.471662: cpu_idle: state=0 cpu_id=1
121475              ps-13421 (13421) [004] d..2 24577.471676: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121476              ps-13421 (13421) [004] dn.3 24577.471679: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121477              ps-13421 (13421) [004] d..2 24577.471682: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121478 shell svc 13418-13419 ( 1007) [004] d..2 24577.471689: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121479          <idle>-0     (-----) [001] d.h3 24577.471690: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121480          <idle>-0     (-----) [001] dnh4 24577.471696: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121481          <idle>-0     (-----) [001] .n.1 24577.471701: cpu_idle: state=4294967295 cpu_id=1
121482          <idle>-0     (-----) [001] d..2 24577.471707: 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
121483   kworker/u17:2-23076 (23076) [001] d..2 24577.471714: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121484   kworker/u17:2-23076 (23076) [001] d..3 24577.471719: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121485   kworker/u17:2-23076 (23076) [001] d..2 24577.471735: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121486     kworker/1:1-13091 (13091) [001] d..2 24577.471739: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121487              ps-13421 (13421) [004] d..2 24577.471744: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121488     kworker/1:1-13091 (13091) [001] d..3 24577.471747: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121489              ps-13421 (13421) [004] dn.3 24577.471748: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121490              ps-13421 (13421) [004] d..2 24577.471750: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121491     kworker/1:1-13091 (13091) [001] d..2 24577.471755: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121492 shell svc 13418-13419 ( 1007) [004] d..2 24577.471758: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121493            adbd-23485 ( 1007) [001] d..2 24577.471767: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121494          <idle>-0     (-----) [001] d..1 24577.471774: cpu_idle: state=0 cpu_id=1
121495              ps-13421 (13421) [004] d..2 24577.471817: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121496              ps-13421 (13421) [004] dn.3 24577.471820: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121497              ps-13421 (13421) [004] d..2 24577.471822: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121498 shell svc 13418-13419 ( 1007) [004] d..2 24577.471830: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121499          <idle>-0     (-----) [001] d.h3 24577.471852: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121500          <idle>-0     (-----) [001] dnh4 24577.471857: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121501          <idle>-0     (-----) [001] .n.1 24577.471862: cpu_idle: state=4294967295 cpu_id=1
121502          <idle>-0     (-----) [001] d..2 24577.471868: 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
121503   kworker/u17:2-23076 (23076) [001] d..2 24577.471874: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121504   kworker/u17:2-23076 (23076) [001] d..3 24577.471879: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121505              ps-13421 (13421) [004] d..2 24577.471883: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121506              ps-13421 (13421) [004] dn.3 24577.471886: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121507              ps-13421 (13421) [004] d..2 24577.471889: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121508   kworker/u17:2-23076 (23076) [001] d..2 24577.471895: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121509 shell svc 13418-13419 ( 1007) [004] d..2 24577.471896: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121510     kworker/1:1-13091 (13091) [001] d..2 24577.471900: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
121511     kworker/1:1-13091 (13091) [001] d..3 24577.471908: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
121512     kworker/1:1-13091 (13091) [001] d..2 24577.471916: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
121513            adbd-23484 ( 1007) [001] d..2 24577.471927: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
121514            adbd-23484 ( 1007) [001] d..3 24577.471932: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
121515              ps-13421 (13421) [004] d..2 24577.471949: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121516              ps-13421 (13421) [004] dn.3 24577.471952: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121517              ps-13421 (13421) [004] d..2 24577.471954: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121518 shell svc 13418-13419 ( 1007) [004] d..2 24577.471961: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121519            adbd-23484 ( 1007) [001] d..2 24577.471972: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
121520              ps-13421 (13421) [004] d..2 24577.472013: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121521              ps-13421 (13421) [004] dn.3 24577.472016: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121522              ps-13421 (13421) [004] d..2 24577.472019: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121523 shell svc 13418-13419 ( 1007) [004] d..2 24577.472026: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121524            adbd-1007  ( 1007) [001] d..1 24577.472033: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121525            adbd-1007  ( 1007) [001] d..2 24577.472045: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121526            adbd-1007  ( 1007) [001] d..2 24577.472073: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121527              ps-13421 (13421) [004] d..2 24577.472079: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121528              ps-13421 (13421) [004] dn.3 24577.472083: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121529              ps-13421 (13421) [004] d..2 24577.472085: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121530 shell svc 13418-13419 ( 1007) [004] d..2 24577.472093: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121531            adbd-23485 ( 1007) [001] d..2 24577.472114: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121532          <idle>-0     (-----) [001] d..1 24577.472122: cpu_idle: state=0 cpu_id=1
121533          <idle>-0     (-----) [001] d.h3 24577.472140: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121534          <idle>-0     (-----) [001] dnh4 24577.472146: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121535              ps-13421 (13421) [004] d..2 24577.472149: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121536          <idle>-0     (-----) [001] .n.1 24577.472151: cpu_idle: state=4294967295 cpu_id=1
121537              ps-13421 (13421) [004] dn.3 24577.472152: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121538              ps-13421 (13421) [004] d..2 24577.472155: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121539          <idle>-0     (-----) [001] d..2 24577.472157: 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
121540 shell svc 13418-13419 ( 1007) [004] d..2 24577.472162: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121541   kworker/u17:2-23076 (23076) [001] d..2 24577.472165: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121542   kworker/u17:2-23076 (23076) [001] d..3 24577.472171: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121543   kworker/u17:2-23076 (23076) [001] d..2 24577.472186: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121544     kworker/1:1-13091 (13091) [001] d..2 24577.472191: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121545     kworker/1:1-13091 (13091) [001] d..3 24577.472200: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121546     kworker/1:1-13091 (13091) [001] d..2 24577.472208: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121547              ps-13421 (13421) [004] d..2 24577.472217: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121548              ps-13421 (13421) [004] dn.3 24577.472220: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121549              ps-13421 (13421) [004] d..2 24577.472222: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121550 shell svc 13418-13419 ( 1007) [004] d..2 24577.472229: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121551            adbd-23485 ( 1007) [001] d..2 24577.472248: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121552          <idle>-0     (-----) [001] d..1 24577.472255: cpu_idle: state=0 cpu_id=1
121553              ps-13421 (13421) [004] d..2 24577.472286: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121554              ps-13421 (13421) [004] dn.3 24577.472289: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121555              ps-13421 (13421) [004] d..2 24577.472291: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121556          <idle>-0     (-----) [001] d.h3 24577.472293: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121557 shell svc 13418-13419 ( 1007) [004] d..2 24577.472298: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121558          <idle>-0     (-----) [001] dnh4 24577.472299: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121559          <idle>-0     (-----) [001] .n.1 24577.472305: cpu_idle: state=4294967295 cpu_id=1
121560          <idle>-0     (-----) [001] d..2 24577.472310: 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
121561   kworker/u17:2-23076 (23076) [001] d..2 24577.472316: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121562   kworker/u17:2-23076 (23076) [001] d..3 24577.472321: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121563   kworker/u17:2-23076 (23076) [001] d..2 24577.472337: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121564     kworker/1:1-13091 (13091) [001] d..2 24577.472342: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121565     kworker/1:1-13091 (13091) [001] d..3 24577.472350: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121566              ps-13421 (13421) [004] d..2 24577.472355: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121567     kworker/1:1-13091 (13091) [001] d..2 24577.472357: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121568              ps-13421 (13421) [004] dn.3 24577.472358: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121569              ps-13421 (13421) [004] d..2 24577.472361: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121570 shell svc 13418-13419 ( 1007) [004] d..2 24577.472369: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121571            adbd-23485 ( 1007) [001] d..2 24577.472369: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121572          <idle>-0     (-----) [001] d..1 24577.472376: cpu_idle: state=0 cpu_id=1
121573              ps-13421 (13421) [004] d..2 24577.472426: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121574              ps-13421 (13421) [004] dn.3 24577.472429: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121575              ps-13421 (13421) [004] d..2 24577.472432: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121576 shell svc 13418-13419 ( 1007) [004] d..2 24577.472439: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121577          <idle>-0     (-----) [001] d.h3 24577.472447: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121578          <idle>-0     (-----) [001] dnh4 24577.472452: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121579          <idle>-0     (-----) [001] .n.1 24577.472457: cpu_idle: state=4294967295 cpu_id=1
121580          <idle>-0     (-----) [001] d..2 24577.472463: 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
121581   kworker/u17:2-23076 (23076) [001] d..2 24577.472469: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121582   kworker/u17:2-23076 (23076) [001] d..3 24577.472474: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121583   kworker/u17:2-23076 (23076) [001] d..2 24577.472489: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121584              ps-13421 (13421) [004] d..2 24577.472494: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121585     kworker/1:1-13091 (13091) [001] d..2 24577.472495: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
121586              ps-13421 (13421) [004] dn.3 24577.472497: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121587              ps-13421 (13421) [004] d..2 24577.472500: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121588     kworker/1:1-13091 (13091) [001] d..3 24577.472503: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
121589 shell svc 13418-13419 ( 1007) [004] d..2 24577.472507: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121590     kworker/1:1-13091 (13091) [001] d..2 24577.472511: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
121591            adbd-23484 ( 1007) [001] d..2 24577.472521: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
121592            adbd-23484 ( 1007) [001] d..3 24577.472527: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
121593              ps-13421 (13421) [004] d..2 24577.472564: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121594            adbd-23484 ( 1007) [001] d..2 24577.472567: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
121595              ps-13421 (13421) [004] dn.3 24577.472568: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121596              ps-13421 (13421) [004] d..2 24577.472570: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121597 shell svc 13418-13419 ( 1007) [004] d..2 24577.472578: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121598            adbd-1007  ( 1007) [001] d..1 24577.472628: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121599              ps-13421 (13421) [004] d..2 24577.472635: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121600              ps-13421 (13421) [004] dn.3 24577.472638: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121601            adbd-1007  ( 1007) [001] d..2 24577.472640: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121602              ps-13421 (13421) [004] d..2 24577.472640: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121603 shell svc 13418-13419 ( 1007) [004] d..2 24577.472648: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121604            adbd-1007  ( 1007) [001] d..2 24577.472667: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121605              ps-13421 (13421) [004] d..2 24577.472702: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121606              ps-13421 (13421) [004] dn.3 24577.472705: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121607              ps-13421 (13421) [004] d..2 24577.472708: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121608            adbd-23485 ( 1007) [001] d..2 24577.472708: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121609 shell svc 13418-13419 ( 1007) [004] d..2 24577.472715: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121610          <idle>-0     (-----) [001] d..1 24577.472717: cpu_idle: state=0 cpu_id=1
121611          <idle>-0     (-----) [001] d.h3 24577.472740: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121612          <idle>-0     (-----) [001] dnh4 24577.472746: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121613          <idle>-0     (-----) [001] .n.1 24577.472751: cpu_idle: state=4294967295 cpu_id=1
121614          <idle>-0     (-----) [001] d..2 24577.472757: 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
121615   kworker/u17:2-23076 (23076) [001] d..2 24577.472763: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121616   kworker/u17:2-23076 (23076) [001] d..3 24577.472768: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121617              ps-13421 (13421) [004] d..2 24577.472770: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121618              ps-13421 (13421) [004] dn.3 24577.472773: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121619              ps-13421 (13421) [004] d..2 24577.472776: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121620 shell svc 13418-13419 ( 1007) [004] d..2 24577.472783: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121621   kworker/u17:2-23076 (23076) [001] d..2 24577.472785: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121622     kworker/1:1-13091 (13091) [001] d..2 24577.472789: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121623     kworker/1:1-13091 (13091) [001] d..3 24577.472798: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121624     kworker/1:1-13091 (13091) [001] d..2 24577.472806: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121625              ps-13421 (13421) [004] d..2 24577.472842: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121626              ps-13421 (13421) [004] dn.3 24577.472845: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121627            adbd-23485 ( 1007) [001] d..2 24577.472846: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121628              ps-13421 (13421) [004] d..2 24577.472847: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121629          <idle>-0     (-----) [001] d..1 24577.472853: cpu_idle: state=0 cpu_id=1
121630 shell svc 13418-13419 ( 1007) [004] d..2 24577.472854: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121631          <idle>-0     (-----) [001] d.h3 24577.472896: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121632          <idle>-0     (-----) [001] dnh4 24577.472902: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121633          <idle>-0     (-----) [001] .n.1 24577.472907: cpu_idle: state=4294967295 cpu_id=1
121634              ps-13421 (13421) [004] d..2 24577.472911: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121635          <idle>-0     (-----) [001] d..2 24577.472912: 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
121636              ps-13421 (13421) [004] dn.3 24577.472914: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121637              ps-13421 (13421) [004] d..2 24577.472916: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121638   kworker/u17:2-23076 (23076) [001] d..2 24577.472919: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121639   kworker/u17:2-23076 (23076) [001] d..3 24577.472924: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121640 shell svc 13418-13419 ( 1007) [004] d..2 24577.472924: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121641   kworker/u17:2-23076 (23076) [001] d..2 24577.472939: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121642     kworker/1:1-13091 (13091) [001] d..2 24577.472944: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121643     kworker/1:1-13091 (13091) [001] d..3 24577.472952: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121644     kworker/1:1-13091 (13091) [001] d..2 24577.472960: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121645            adbd-23485 ( 1007) [001] d..2 24577.472971: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121646          <idle>-0     (-----) [001] d..1 24577.472978: cpu_idle: state=0 cpu_id=1
121647              ps-13421 (13421) [004] d..2 24577.472981: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121648              ps-13421 (13421) [004] dn.3 24577.472984: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121649              ps-13421 (13421) [004] d..2 24577.472986: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121650 shell svc 13418-13419 ( 1007) [004] d..2 24577.472995: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121651          <idle>-0     (-----) [001] d.h3 24577.473045: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121652          <idle>-0     (-----) [001] dnh4 24577.473050: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121653              ps-13421 (13421) [004] d..2 24577.473051: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121654              ps-13421 (13421) [004] dn.3 24577.473054: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121655          <idle>-0     (-----) [001] .n.1 24577.473055: cpu_idle: state=4294967295 cpu_id=1
121656              ps-13421 (13421) [004] d..2 24577.473057: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121657          <idle>-0     (-----) [001] d..2 24577.473060: 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
121658 shell svc 13418-13419 ( 1007) [004] d..2 24577.473064: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121659   kworker/u17:2-23076 (23076) [001] d..2 24577.473066: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121660   kworker/u17:2-23076 (23076) [001] d..3 24577.473071: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121661   kworker/u17:2-23076 (23076) [001] d..2 24577.473087: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121662     kworker/1:1-13091 (13091) [001] d..2 24577.473092: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
121663     kworker/1:1-13091 (13091) [001] d..3 24577.473101: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
121664     kworker/1:1-13091 (13091) [001] d..2 24577.473109: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
121665              ps-13421 (13421) [004] d..2 24577.473119: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121666            adbd-23484 ( 1007) [001] d..2 24577.473119: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
121667              ps-13421 (13421) [004] dn.3 24577.473122: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121668              ps-13421 (13421) [004] d..2 24577.473124: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121669            adbd-23484 ( 1007) [001] d..3 24577.473125: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
121670 shell svc 13418-13419 ( 1007) [004] d..2 24577.473132: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121671            adbd-23484 ( 1007) [001] d..2 24577.473166: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
121672              ps-13421 (13421) [004] d..2 24577.473186: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121673              ps-13421 (13421) [004] dn.3 24577.473189: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121674              ps-13421 (13421) [004] d..2 24577.473191: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121675 shell svc 13418-13419 ( 1007) [004] d..2 24577.473199: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121676            adbd-1007  ( 1007) [001] d..1 24577.473229: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121677            adbd-1007  ( 1007) [001] d..2 24577.473241: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121678              ps-13421 (13421) [004] d..2 24577.473253: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121679              ps-13421 (13421) [004] dn.3 24577.473256: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121680              ps-13421 (13421) [004] d..2 24577.473259: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121681 shell svc 13418-13419 ( 1007) [004] d..2 24577.473266: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121682            adbd-1007  ( 1007) [001] d..2 24577.473270: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121683            adbd-23485 ( 1007) [001] d.h3 24577.473319: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121684              ps-13421 (13421) [004] d..2 24577.473321: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121685              ps-13421 (13421) [004] dn.3 24577.473324: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121686              ps-13421 (13421) [004] d..2 24577.473327: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121687            adbd-23485 ( 1007) [001] dnh4 24577.473330: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121688 shell svc 13418-13419 ( 1007) [004] d..2 24577.473334: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121689            adbd-23485 ( 1007) [001] d..2 24577.473338: 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
121690   kworker/u17:2-23076 (23076) [001] d..2 24577.473344: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121691   kworker/u17:2-23076 (23076) [001] d..3 24577.473349: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121692   kworker/u17:2-23076 (23076) [001] d..2 24577.473365: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121693     kworker/1:1-13091 (13091) [001] d..2 24577.473369: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121694     kworker/1:1-13091 (13091) [001] d..3 24577.473370: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121695     kworker/1:1-13091 (13091) [001] d..2 24577.473378: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121696              ps-13421 (13421) [004] d..2 24577.473388: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121697              ps-13421 (13421) [004] dn.3 24577.473391: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121698              ps-13421 (13421) [004] d..2 24577.473394: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121699 shell svc 13418-13419 ( 1007) [004] d..2 24577.473401: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121700            adbd-23485 ( 1007) [001] d..2 24577.473416: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121701          <idle>-0     (-----) [001] d..1 24577.473424: cpu_idle: state=0 cpu_id=1
121702          <idle>-0     (-----) [001] d.h3 24577.473444: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121703          <idle>-0     (-----) [001] dnh4 24577.473450: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121704          <idle>-0     (-----) [001] .n.1 24577.473455: cpu_idle: state=4294967295 cpu_id=1
121705              ps-13421 (13421) [004] d..2 24577.473456: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121706              ps-13421 (13421) [004] dn.3 24577.473459: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121707          <idle>-0     (-----) [001] d..2 24577.473461: 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
121708              ps-13421 (13421) [004] d..2 24577.473462: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121709   kworker/u17:2-23076 (23076) [001] d..2 24577.473467: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121710 shell svc 13418-13419 ( 1007) [004] d..2 24577.473470: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121711   kworker/u17:2-23076 (23076) [001] d..3 24577.473472: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121712   kworker/u17:2-23076 (23076) [001] d..2 24577.473488: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121713     kworker/1:1-13091 (13091) [001] d..2 24577.473493: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121714     kworker/1:1-13091 (13091) [001] d..3 24577.473501: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121715     kworker/1:1-13091 (13091) [001] d..2 24577.473509: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121716            adbd-23485 ( 1007) [001] d..2 24577.473520: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121717              ps-13421 (13421) [004] d..2 24577.473525: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121718          <idle>-0     (-----) [001] d..1 24577.473527: cpu_idle: state=0 cpu_id=1
121719              ps-13421 (13421) [004] dn.3 24577.473529: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121720              ps-13421 (13421) [004] d..2 24577.473531: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121721 shell svc 13418-13419 ( 1007) [004] d..2 24577.473538: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121722          <idle>-0     (-----) [001] d.h3 24577.473546: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121723          <idle>-0     (-----) [001] dnh4 24577.473552: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121724          <idle>-0     (-----) [001] .n.1 24577.473557: cpu_idle: state=4294967295 cpu_id=1
121725          <idle>-0     (-----) [001] d..2 24577.473562: 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
121726   kworker/u17:2-23076 (23076) [001] d..2 24577.473568: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121727   kworker/u17:2-23076 (23076) [001] d..3 24577.473573: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121728   kworker/u17:2-23076 (23076) [001] d..2 24577.473589: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121729              ps-13421 (13421) [004] d..2 24577.473593: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121730     kworker/1:1-13091 (13091) [001] d..2 24577.473595: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
121731              ps-13421 (13421) [004] dn.3 24577.473596: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121732              ps-13421 (13421) [004] d..2 24577.473598: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121733     kworker/1:1-13091 (13091) [001] d..3 24577.473604: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
121734 shell svc 13418-13419 ( 1007) [004] d..2 24577.473606: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121735     kworker/1:1-13091 (13091) [001] d..2 24577.473611: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
121736            adbd-23484 ( 1007) [001] d..2 24577.473622: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
121737            adbd-23484 ( 1007) [001] d..3 24577.473627: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
121738              ps-13421 (13421) [004] d..2 24577.473660: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121739              ps-13421 (13421) [004] dn.3 24577.473663: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121740              ps-13421 (13421) [004] d..2 24577.473666: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121741            adbd-23484 ( 1007) [001] d..2 24577.473668: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
121742 shell svc 13418-13419 ( 1007) [004] d..2 24577.473673: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121743              ps-13421 (13421) [004] d..2 24577.473726: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121744            adbd-1007  ( 1007) [001] d..1 24577.473728: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121745              ps-13421 (13421) [004] dn.3 24577.473730: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121746              ps-13421 (13421) [004] d..2 24577.473732: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121747            adbd-1007  ( 1007) [001] d..2 24577.473740: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121748 shell svc 13418-13419 ( 1007) [004] d..2 24577.473740: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121749            adbd-1007  ( 1007) [001] d..2 24577.473766: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121750              ps-13421 (13421) [004] d..2 24577.473794: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121751              ps-13421 (13421) [004] dn.3 24577.473797: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121752              ps-13421 (13421) [004] d..2 24577.473800: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121753            adbd-23485 ( 1007) [001] d..2 24577.473807: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121754 shell svc 13418-13419 ( 1007) [004] d..2 24577.473807: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121755          <idle>-0     (-----) [001] d.h4 24577.473823: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121756          <idle>-0     (-----) [001] dnh5 24577.473832: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121757          <idle>-0     (-----) [001] d..2 24577.473839: 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
121758   kworker/u17:2-23076 (23076) [001] d..2 24577.473847: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121759   kworker/u17:2-23076 (23076) [001] d..3 24577.473852: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121760              ps-13421 (13421) [004] d..2 24577.473862: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121761              ps-13421 (13421) [004] dn.3 24577.473865: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121762              ps-13421 (13421) [004] d..2 24577.473867: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121763   kworker/u17:2-23076 (23076) [001] d..2 24577.473868: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121764     kworker/1:1-13091 (13091) [001] d..2 24577.473873: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121765 shell svc 13418-13419 ( 1007) [004] d..2 24577.473874: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121766     kworker/1:1-13091 (13091) [001] d..3 24577.473881: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121767     kworker/1:1-13091 (13091) [001] d..2 24577.473888: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121768            adbd-23485 ( 1007) [001] d..2 24577.473927: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121769              ps-13421 (13421) [004] d..2 24577.473930: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121770              ps-13421 (13421) [004] dn.3 24577.473933: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121771          <idle>-0     (-----) [001] d..1 24577.473935: cpu_idle: state=0 cpu_id=1
121772              ps-13421 (13421) [004] d..2 24577.473936: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121773 shell svc 13418-13419 ( 1007) [004] d..2 24577.473943: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121774          <idle>-0     (-----) [001] d.h3 24577.473960: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121775          <idle>-0     (-----) [001] dnh4 24577.473966: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121776          <idle>-0     (-----) [001] .n.1 24577.473971: cpu_idle: state=4294967295 cpu_id=1
121777          <idle>-0     (-----) [001] d..2 24577.473976: 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
121778   kworker/u17:2-23076 (23076) [001] d..2 24577.473983: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121779   kworker/u17:2-23076 (23076) [001] d..3 24577.473988: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121780              ps-13421 (13421) [004] d..2 24577.474000: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121781              ps-13421 (13421) [004] dn.3 24577.474003: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121782   kworker/u17:2-23076 (23076) [001] d..2 24577.474004: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121783              ps-13421 (13421) [004] d..2 24577.474006: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121784     kworker/1:1-13091 (13091) [001] d..2 24577.474008: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121785 shell svc 13418-13419 ( 1007) [004] d..2 24577.474014: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121786     kworker/1:1-13091 (13091) [001] d..3 24577.474016: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121787     kworker/1:1-13091 (13091) [001] d..2 24577.474024: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121788            adbd-23485 ( 1007) [001] d..2 24577.474036: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121789          <idle>-0     (-----) [001] d..1 24577.474043: cpu_idle: state=0 cpu_id=1
121790              ps-13421 (13421) [004] d..2 24577.474068: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121791              ps-13421 (13421) [004] dn.3 24577.474072: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121792              ps-13421 (13421) [004] d..2 24577.474075: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121793 shell svc 13418-13419 ( 1007) [004] d..2 24577.474082: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121794          <idle>-0     (-----) [001] d.h3 24577.474106: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121795          <idle>-0     (-----) [001] dnh4 24577.474111: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121796          <idle>-0     (-----) [001] .n.1 24577.474116: cpu_idle: state=4294967295 cpu_id=1
121797          <idle>-0     (-----) [001] d..2 24577.474121: 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
121798   kworker/u17:2-23076 (23076) [001] d..2 24577.474127: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121799   kworker/u17:2-23076 (23076) [001] d..3 24577.474133: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121800              ps-13421 (13421) [004] d..2 24577.474139: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121801              ps-13421 (13421) [004] dn.3 24577.474142: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121802              ps-13421 (13421) [004] d..2 24577.474145: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121803   kworker/u17:2-23076 (23076) [001] d..2 24577.474148: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121804 shell svc 13418-13419 ( 1007) [004] d..2 24577.474152: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121805     kworker/1:1-13091 (13091) [001] d..2 24577.474154: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
121806     kworker/1:1-13091 (13091) [001] d..3 24577.474162: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
121807     kworker/1:1-13091 (13091) [001] d..2 24577.474170: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
121808            adbd-23484 ( 1007) [001] d..2 24577.474180: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
121809            adbd-23484 ( 1007) [001] d..3 24577.474186: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
121810              ps-13421 (13421) [004] d..2 24577.474209: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121811              ps-13421 (13421) [004] dn.3 24577.474213: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121812              ps-13421 (13421) [004] dns3 24577.474222: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
121813              ps-13421 (13421) [004] d..2 24577.474239: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121814            adbd-23484 ( 1007) [001] d.h2 24577.474242: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
121815 shell svc 13418-13419 ( 1007) [004] d..2 24577.474249: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121816            adbd-23484 ( 1007) [001] d..2 24577.474253: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
121817  kworker/u16:16-25995 (25995) [001] .... 24577.474268: clk_set_rate: l3_cluster0_vote_clk 1209600000
121818  kworker/u16:16-25995 (25995) [001] .... 24577.474327: clk_set_rate: l3_cluster1_vote_clk 1478400000
121819              ps-13421 (13421) [004] d..2 24577.474329: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121820  kworker/u16:16-25995 (25995) [001] .... 24577.474329: clk_set_rate: l3_clk 1478400000
121821              ps-13421 (13421) [004] dn.3 24577.474333: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121822              ps-13421 (13421) [004] d..2 24577.474336: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121823 shell svc 13418-13419 ( 1007) [004] d..2 24577.474344: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121824  kworker/u16:16-25995 (25995) [001] d..2 24577.474355: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
121825              ps-13421 (13421) [004] d..2 24577.474402: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121826              ps-13421 (13421) [004] dn.3 24577.474405: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121827              ps-13421 (13421) [004] d..2 24577.474407: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121828 shell svc 13418-13419 ( 1007) [004] d..2 24577.474415: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121829            adbd-1007  ( 1007) [001] d..1 24577.474425: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121830            adbd-1007  ( 1007) [001] d..2 24577.474437: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121831            adbd-1007  ( 1007) [001] d..2 24577.474464: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121832              ps-13421 (13421) [004] d..2 24577.474470: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121833              ps-13421 (13421) [004] dn.3 24577.474473: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121834              ps-13421 (13421) [004] d..2 24577.474476: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121835 shell svc 13418-13419 ( 1007) [004] d..2 24577.474483: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121836            adbd-23485 ( 1007) [001] d..2 24577.474505: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121837          <idle>-0     (-----) [001] d..1 24577.474513: cpu_idle: state=0 cpu_id=1
121838          <idle>-0     (-----) [001] d.h3 24577.474532: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121839              ps-13421 (13421) [004] d..2 24577.474536: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121840          <idle>-0     (-----) [001] dnh4 24577.474538: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121841              ps-13421 (13421) [004] dn.3 24577.474539: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121842              ps-13421 (13421) [004] d..2 24577.474541: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121843          <idle>-0     (-----) [001] .n.1 24577.474543: cpu_idle: state=4294967295 cpu_id=1
121844 shell svc 13418-13419 ( 1007) [004] d..2 24577.474548: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121845          <idle>-0     (-----) [001] d..2 24577.474549: 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
121846   kworker/u17:2-23076 (23076) [001] d..2 24577.474556: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121847   kworker/u17:2-23076 (23076) [001] d..3 24577.474561: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121848   kworker/u17:2-23076 (23076) [001] d..2 24577.474576: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121849     kworker/1:1-13091 (13091) [001] d..2 24577.474581: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121850     kworker/1:1-13091 (13091) [001] d..3 24577.474589: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121851     kworker/1:1-13091 (13091) [001] d..2 24577.474597: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121852              ps-13421 (13421) [004] d..2 24577.474603: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121853              ps-13421 (13421) [004] dn.3 24577.474606: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121854              ps-13421 (13421) [004] d..2 24577.474609: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121855 shell svc 13418-13419 ( 1007) [004] d..2 24577.474616: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121856            adbd-23485 ( 1007) [001] d..2 24577.474635: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121857          <idle>-0     (-----) [001] d..1 24577.474643: cpu_idle: state=0 cpu_id=1
121858          <idle>-0     (-----) [001] d.h3 24577.474669: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121859              ps-13421 (13421) [004] d..2 24577.474670: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121860              ps-13421 (13421) [004] dn.3 24577.474673: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121861          <idle>-0     (-----) [001] dnh4 24577.474675: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121862              ps-13421 (13421) [004] d..2 24577.474675: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121863          <idle>-0     (-----) [001] .n.1 24577.474680: cpu_idle: state=4294967295 cpu_id=1
121864 shell svc 13418-13419 ( 1007) [004] d..2 24577.474682: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121865          <idle>-0     (-----) [001] d..2 24577.474685: 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
121866   kworker/u17:2-23076 (23076) [001] d..2 24577.474691: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121867   kworker/u17:2-23076 (23076) [001] d..3 24577.474696: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121868   kworker/u17:2-23076 (23076) [001] d..2 24577.474711: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121869     kworker/1:1-13091 (13091) [001] d..2 24577.474716: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121870     kworker/1:1-13091 (13091) [001] d..3 24577.474724: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121871     kworker/1:1-13091 (13091) [001] d..2 24577.474731: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121872              ps-13421 (13421) [004] d..2 24577.474738: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121873              ps-13421 (13421) [004] dn.3 24577.474741: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121874              ps-13421 (13421) [004] d..2 24577.474743: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121875            adbd-23485 ( 1007) [001] d..2 24577.474745: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121876 shell svc 13418-13419 ( 1007) [004] d..2 24577.474751: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121877          <idle>-0     (-----) [001] d..1 24577.474752: cpu_idle: state=0 cpu_id=1
121878              ps-13421 (13421) [004] d..2 24577.474811: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121879          <idle>-0     (-----) [001] d.h3 24577.474812: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121880              ps-13421 (13421) [004] dn.3 24577.474814: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121881              ps-13421 (13421) [004] d..2 24577.474816: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121882          <idle>-0     (-----) [001] dnh4 24577.474818: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121883          <idle>-0     (-----) [001] .n.1 24577.474823: cpu_idle: state=4294967295 cpu_id=1
121884 shell svc 13418-13419 ( 1007) [004] d..2 24577.474823: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121885          <idle>-0     (-----) [001] d..2 24577.474828: 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
121886   kworker/u17:2-23076 (23076) [001] d..2 24577.474834: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121887   kworker/u17:2-23076 (23076) [001] d..3 24577.474839: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121888   kworker/u17:2-23076 (23076) [001] d..2 24577.474854: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121889     kworker/1:1-13091 (13091) [001] d..2 24577.474860: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
121890     kworker/1:1-13091 (13091) [001] d..3 24577.474868: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
121891     kworker/1:1-13091 (13091) [001] d..2 24577.474876: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
121892              ps-13421 (13421) [004] d..2 24577.474878: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121893              ps-13421 (13421) [004] dn.3 24577.474881: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121894              ps-13421 (13421) [004] d..2 24577.474883: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121895            adbd-23484 ( 1007) [001] d..2 24577.474886: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
121896 shell svc 13418-13419 ( 1007) [004] d..2 24577.474891: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121897            adbd-23484 ( 1007) [001] d..3 24577.474891: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
121898            adbd-23484 ( 1007) [001] d..2 24577.474930: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
121899              ps-13421 (13421) [004] d..2 24577.474947: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121900              ps-13421 (13421) [004] dn.3 24577.474950: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121901              ps-13421 (13421) [004] d..2 24577.474952: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121902 shell svc 13418-13419 ( 1007) [004] d..2 24577.474960: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121903            adbd-1007  ( 1007) [001] d..1 24577.474989: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121904            adbd-1007  ( 1007) [001] d..2 24577.475000: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121905              ps-13421 (13421) [004] d..2 24577.475015: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121906              ps-13421 (13421) [004] dn.3 24577.475018: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121907              ps-13421 (13421) [004] d..2 24577.475020: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121908            adbd-1007  ( 1007) [001] d..2 24577.475026: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121909 shell svc 13418-13419 ( 1007) [004] d..2 24577.475028: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121910            adbd-23485 ( 1007) [001] d..2 24577.475066: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121911          <idle>-0     (-----) [001] d..1 24577.475074: cpu_idle: state=0 cpu_id=1
121912              ps-13421 (13421) [004] d..2 24577.475082: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121913              ps-13421 (13421) [004] dn.3 24577.475085: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121914              ps-13421 (13421) [004] d..2 24577.475087: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121915          <idle>-0     (-----) [001] d.h3 24577.475093: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121916 shell svc 13418-13419 ( 1007) [004] d..2 24577.475094: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121917          <idle>-0     (-----) [001] dnh4 24577.475099: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121918          <idle>-0     (-----) [001] .n.1 24577.475104: cpu_idle: state=4294967295 cpu_id=1
121919          <idle>-0     (-----) [001] d..2 24577.475110: 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
121920   kworker/u17:2-23076 (23076) [001] d..2 24577.475117: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121921   kworker/u17:2-23076 (23076) [001] d..3 24577.475122: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121922   kworker/u17:2-23076 (23076) [001] d..2 24577.475137: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121923     kworker/1:1-13091 (13091) [001] d..2 24577.475142: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121924              ps-13421 (13421) [004] d..2 24577.475148: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121925     kworker/1:1-13091 (13091) [001] d..3 24577.475150: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121926              ps-13421 (13421) [004] dn.3 24577.475151: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121927              ps-13421 (13421) [004] d..2 24577.475153: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121928     kworker/1:1-13091 (13091) [001] d..2 24577.475157: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121929 shell svc 13418-13419 ( 1007) [004] d..2 24577.475161: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121930            adbd-23485 ( 1007) [001] d..2 24577.475196: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121931          <idle>-0     (-----) [001] d..1 24577.475203: cpu_idle: state=0 cpu_id=1
121932              ps-13421 (13421) [004] d..2 24577.475215: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121933              ps-13421 (13421) [004] dn.3 24577.475218: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121934              ps-13421 (13421) [004] d..2 24577.475221: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121935 shell svc 13418-13419 ( 1007) [004] d..2 24577.475228: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121936          <idle>-0     (-----) [001] d.h3 24577.475235: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121937          <idle>-0     (-----) [001] dnh4 24577.475241: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121938          <idle>-0     (-----) [001] .n.1 24577.475246: cpu_idle: state=4294967295 cpu_id=1
121939          <idle>-0     (-----) [001] d..2 24577.475251: 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
121940   kworker/u17:2-23076 (23076) [001] d..2 24577.475257: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121941   kworker/u17:2-23076 (23076) [001] d..3 24577.475262: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121942   kworker/u17:2-23076 (23076) [001] d..2 24577.475276: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121943     kworker/1:1-13091 (13091) [001] d..2 24577.475281: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121944     kworker/1:1-13091 (13091) [001] d..3 24577.475288: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121945     kworker/1:1-13091 (13091) [001] d..2 24577.475296: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121946            adbd-23485 ( 1007) [001] d..2 24577.475306: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121947          <idle>-0     (-----) [001] d..1 24577.475313: cpu_idle: state=0 cpu_id=1
121948          <idle>-0     (-----) [001] d.h3 24577.475419: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121949          <idle>-0     (-----) [001] dnh4 24577.475424: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121950          <idle>-0     (-----) [001] .n.1 24577.475429: cpu_idle: state=4294967295 cpu_id=1
121951          <idle>-0     (-----) [001] d..2 24577.475434: 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
121952   kworker/u17:2-23076 (23076) [001] d..2 24577.475440: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121953   kworker/u17:2-23076 (23076) [001] d..3 24577.475445: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121954   kworker/u17:2-23076 (23076) [001] d..2 24577.475460: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121955     kworker/1:1-13091 (13091) [001] d..2 24577.475464: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
121956     kworker/1:1-13091 (13091) [001] d..3 24577.475472: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
121957     kworker/1:1-13091 (13091) [001] d..2 24577.475480: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
121958            adbd-23484 ( 1007) [001] d..2 24577.475489: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
121959            adbd-23484 ( 1007) [001] d..3 24577.475494: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
121960            adbd-23484 ( 1007) [001] d..2 24577.475535: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
121961              ps-13421 (13421) [004] d..2 24577.475547: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121962              ps-13421 (13421) [004] dn.3 24577.475550: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121963              ps-13421 (13421) [004] d..2 24577.475553: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121964 shell svc 13418-13419 ( 1007) [004] d..2 24577.475561: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121965            adbd-1007  ( 1007) [001] d..1 24577.475591: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121966            adbd-1007  ( 1007) [001] d..2 24577.475602: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121967              ps-13421 (13421) [004] d..2 24577.475617: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121968              ps-13421 (13421) [004] dn.3 24577.475620: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121969              ps-13421 (13421) [004] d..2 24577.475623: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121970            adbd-1007  ( 1007) [001] d..2 24577.475627: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121971 shell svc 13418-13419 ( 1007) [004] d..2 24577.475630: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121972            adbd-23485 ( 1007) [001] d..2 24577.475667: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121973          <idle>-0     (-----) [001] d..1 24577.475675: cpu_idle: state=0 cpu_id=1
121974              ps-13421 (13421) [004] d..2 24577.475686: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121975              ps-13421 (13421) [004] dn.3 24577.475689: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121976              ps-13421 (13421) [004] d..2 24577.475692: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121977          <idle>-0     (-----) [001] d.h3 24577.475697: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121978 shell svc 13418-13419 ( 1007) [004] d..2 24577.475699: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121979          <idle>-0     (-----) [001] dnh4 24577.475703: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121980          <idle>-0     (-----) [001] .n.1 24577.475708: cpu_idle: state=4294967295 cpu_id=1
121981          <idle>-0     (-----) [001] d..2 24577.475714: 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
121982   kworker/u17:2-23076 (23076) [001] d..2 24577.475721: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121983   kworker/u17:2-23076 (23076) [001] d..3 24577.475726: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
121984   kworker/u17:2-23076 (23076) [001] d..2 24577.475741: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
121985     kworker/1:1-13091 (13091) [001] d..2 24577.475746: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
121986              ps-13421 (13421) [004] d..2 24577.475751: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121987     kworker/1:1-13091 (13091) [001] d..3 24577.475754: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
121988              ps-13421 (13421) [004] dn.3 24577.475755: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121989              ps-13421 (13421) [004] d..2 24577.475757: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121990     kworker/1:1-13091 (13091) [001] d..2 24577.475762: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
121991 shell svc 13418-13419 ( 1007) [004] d..2 24577.475765: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121992            adbd-23485 ( 1007) [001] d..2 24577.475800: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121993          <idle>-0     (-----) [001] d..1 24577.475807: cpu_idle: state=0 cpu_id=1
121994              ps-13421 (13421) [004] d..2 24577.475820: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121995              ps-13421 (13421) [004] dn.3 24577.475823: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
121996              ps-13421 (13421) [004] d..2 24577.475825: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
121997          <idle>-0     (-----) [001] d.h3 24577.475826: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
121998 shell svc 13418-13419 ( 1007) [004] d..2 24577.475832: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
121999          <idle>-0     (-----) [001] dnh4 24577.475834: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122000          <idle>-0     (-----) [001] .n.1 24577.475839: cpu_idle: state=4294967295 cpu_id=1
122001          <idle>-0     (-----) [001] d..2 24577.475845: 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
122002   kworker/u17:2-23076 (23076) [001] d..2 24577.475851: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122003   kworker/u17:2-23076 (23076) [001] d..3 24577.475856: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122004   kworker/u17:2-23076 (23076) [001] d..2 24577.475871: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122005     kworker/1:1-13091 (13091) [001] d..2 24577.475875: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
122006     kworker/1:1-13091 (13091) [001] d..3 24577.475882: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
122007              ps-13421 (13421) [004] d..2 24577.475886: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122008              ps-13421 (13421) [004] dn.3 24577.475889: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122009     kworker/1:1-13091 (13091) [001] d..2 24577.475890: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
122010              ps-13421 (13421) [004] d..2 24577.475891: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122011 shell svc 13418-13419 ( 1007) [004] d..2 24577.475899: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122012            adbd-23485 ( 1007) [001] d..2 24577.475901: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122013          <idle>-0     (-----) [001] d..1 24577.475907: cpu_idle: state=0 cpu_id=1
122014          <idle>-0     (-----) [001] d.h3 24577.475937: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122015          <idle>-0     (-----) [001] dnh4 24577.475942: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122016          <idle>-0     (-----) [001] .n.1 24577.475947: cpu_idle: state=4294967295 cpu_id=1
122017          <idle>-0     (-----) [001] d..2 24577.475952: 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
122018              ps-13421 (13421) [004] d..2 24577.475953: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122019              ps-13421 (13421) [004] dn.3 24577.475956: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122020   kworker/u17:2-23076 (23076) [001] d..2 24577.475957: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122021              ps-13421 (13421) [004] d..2 24577.475959: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122022   kworker/u17:2-23076 (23076) [001] d..3 24577.475963: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122023 shell svc 13418-13419 ( 1007) [004] d..2 24577.475966: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122024   kworker/u17:2-23076 (23076) [001] d..2 24577.475978: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122025     kworker/1:1-13091 (13091) [001] d..2 24577.475983: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
122026     kworker/1:1-13091 (13091) [001] d..3 24577.475991: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
122027     kworker/1:1-13091 (13091) [001] d..2 24577.475999: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
122028            adbd-23484 ( 1007) [001] d..2 24577.476008: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
122029            adbd-23484 ( 1007) [001] d..3 24577.476014: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
122030              ps-13421 (13421) [004] d..2 24577.476020: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122031              ps-13421 (13421) [004] dn.3 24577.476023: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122032              ps-13421 (13421) [004] d..2 24577.476026: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122033 shell svc 13418-13419 ( 1007) [004] d..2 24577.476033: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122034            adbd-23484 ( 1007) [001] d..2 24577.476053: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
122035              ps-13421 (13421) [004] d..2 24577.476086: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122036              ps-13421 (13421) [004] dn.3 24577.476089: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122037              ps-13421 (13421) [004] d..2 24577.476091: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122038 shell svc 13418-13419 ( 1007) [004] d..2 24577.476099: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122039            adbd-1007  ( 1007) [001] d..1 24577.476111: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
122040            adbd-1007  ( 1007) [001] d..2 24577.476123: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
122041            adbd-1007  ( 1007) [001] d..2 24577.476148: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
122042              ps-13421 (13421) [004] d..2 24577.476150: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122043              ps-13421 (13421) [004] dn.3 24577.476153: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122044              ps-13421 (13421) [004] d..2 24577.476156: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122045 shell svc 13418-13419 ( 1007) [004] d..2 24577.476163: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122046            adbd-23485 ( 1007) [001] d..2 24577.476188: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122047          <idle>-0     (-----) [001] d..1 24577.476196: cpu_idle: state=0 cpu_id=1
122048              ps-13421 (13421) [004] d..2 24577.476217: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122049              ps-13421 (13421) [004] dn.3 24577.476219: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122050          <idle>-0     (-----) [001] d.h3 24577.476220: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122051              ps-13421 (13421) [004] d..2 24577.476222: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122052          <idle>-0     (-----) [001] dnh4 24577.476226: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122053 shell svc 13418-13419 ( 1007) [004] d..2 24577.476229: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122054          <idle>-0     (-----) [001] .n.1 24577.476232: cpu_idle: state=4294967295 cpu_id=1
122055          <idle>-0     (-----) [001] d..2 24577.476237: 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
122056   kworker/u17:2-23076 (23076) [001] d..2 24577.476243: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122057   kworker/u17:2-23076 (23076) [001] d..3 24577.476249: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122058   kworker/u17:2-23076 (23076) [001] d..2 24577.476264: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122059     kworker/1:1-13091 (13091) [001] d..2 24577.476268: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
122060     kworker/1:1-13091 (13091) [001] d..3 24577.476277: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
122061     kworker/1:1-13091 (13091) [001] d..2 24577.476284: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
122062              ps-13421 (13421) [004] d..2 24577.476287: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122063              ps-13421 (13421) [004] dn.3 24577.476291: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122064              ps-13421 (13421) [004] d..2 24577.476293: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122065 shell svc 13418-13419 ( 1007) [004] d..2 24577.476300: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122066            adbd-23485 ( 1007) [001] d..2 24577.476324: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122067          <idle>-0     (-----) [001] d..1 24577.476331: cpu_idle: state=0 cpu_id=1
122068          <idle>-0     (-----) [001] d.h3 24577.476353: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122069              ps-13421 (13421) [004] d..2 24577.476354: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122070              ps-13421 (13421) [004] dn.3 24577.476357: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122071          <idle>-0     (-----) [001] dnh4 24577.476359: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122072              ps-13421 (13421) [004] d..2 24577.476359: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122073          <idle>-0     (-----) [001] .n.1 24577.476364: cpu_idle: state=4294967295 cpu_id=1
122074 shell svc 13418-13419 ( 1007) [004] d..2 24577.476366: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122075          <idle>-0     (-----) [001] d..2 24577.476369: 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
122076   kworker/u17:2-23076 (23076) [001] d..2 24577.476374: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122077   kworker/u17:2-23076 (23076) [001] d..3 24577.476379: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122078   kworker/u17:2-23076 (23076) [001] d..2 24577.476395: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122079     kworker/1:1-13091 (13091) [001] d..2 24577.476399: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
122080     kworker/1:1-13091 (13091) [001] d..3 24577.476407: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
122081     kworker/1:1-13091 (13091) [001] d..2 24577.476414: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
122082              ps-13421 (13421) [004] d..2 24577.476420: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122083              ps-13421 (13421) [004] dn.3 24577.476423: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122084              ps-13421 (13421) [004] d..2 24577.476425: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122085            adbd-23485 ( 1007) [001] d..2 24577.476427: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122086 shell svc 13418-13419 ( 1007) [004] d..2 24577.476432: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122087          <idle>-0     (-----) [001] d..1 24577.476434: cpu_idle: state=0 cpu_id=1
122088              ps-13421 (13421) [004] d..2 24577.476489: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122089              ps-13421 (13421) [004] dn.3 24577.476492: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122090              ps-13421 (13421) [004] d..2 24577.476494: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122091 shell svc 13418-13419 ( 1007) [004] d..2 24577.476501: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122092          <idle>-0     (-----) [001] d.h3 24577.476536: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122093          <idle>-0     (-----) [001] dnh4 24577.476542: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122094          <idle>-0     (-----) [001] .n.1 24577.476547: cpu_idle: state=4294967295 cpu_id=1
122095          <idle>-0     (-----) [001] d..2 24577.476552: 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
122096              ps-13421 (13421) [004] d..2 24577.476557: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122097   kworker/u17:2-23076 (23076) [001] d..2 24577.476557: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122098              ps-13421 (13421) [004] dn.3 24577.476560: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122099              ps-13421 (13421) [004] d..2 24577.476563: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122100   kworker/u17:2-23076 (23076) [001] d..3 24577.476563: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122101 shell svc 13418-13419 ( 1007) [004] d..2 24577.476570: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122102   kworker/u17:2-23076 (23076) [001] d..2 24577.476578: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122103     kworker/1:1-13091 (13091) [001] d..2 24577.476583: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
122104     kworker/1:1-13091 (13091) [001] d..3 24577.476591: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
122105     kworker/1:1-13091 (13091) [001] d..2 24577.476599: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
122106            adbd-23484 ( 1007) [001] d..2 24577.476609: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
122107            adbd-23484 ( 1007) [001] d..3 24577.476615: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
122108              ps-13421 (13421) [004] d..2 24577.476623: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122109              ps-13421 (13421) [004] dn.3 24577.476626: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122110              ps-13421 (13421) [004] d..2 24577.476628: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122111 shell svc 13418-13419 ( 1007) [004] d..2 24577.476635: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122112            adbd-23484 ( 1007) [001] d..2 24577.476655: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
122113              ps-13421 (13421) [004] d..2 24577.476687: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122114              ps-13421 (13421) [004] dn.3 24577.476690: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122115              ps-13421 (13421) [004] d..2 24577.476692: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122116 shell svc 13418-13419 ( 1007) [004] d..2 24577.476700: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122117            adbd-1007  ( 1007) [001] d..1 24577.476715: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
122118            adbd-1007  ( 1007) [001] d..2 24577.476726: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
122119            adbd-1007  ( 1007) [001] d..2 24577.476752: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
122120              ps-13421 (13421) [004] d..2 24577.476754: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122121              ps-13421 (13421) [004] dn.3 24577.476757: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122122              ps-13421 (13421) [004] d..2 24577.476759: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122123 shell svc 13418-13419 ( 1007) [004] d..2 24577.476766: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122124            adbd-23485 ( 1007) [001] d..2 24577.476792: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122125          <idle>-0     (-----) [001] d..1 24577.476800: cpu_idle: state=0 cpu_id=1
122126              ps-13421 (13421) [004] d..2 24577.476819: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122127          <idle>-0     (-----) [001] d.h3 24577.476822: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122128              ps-13421 (13421) [004] dn.3 24577.476822: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122129              ps-13421 (13421) [004] d..2 24577.476824: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122130          <idle>-0     (-----) [001] dnh4 24577.476828: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122131 shell svc 13418-13419 ( 1007) [004] d..2 24577.476832: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122132          <idle>-0     (-----) [001] .n.1 24577.476833: cpu_idle: state=4294967295 cpu_id=1
122133          <idle>-0     (-----) [001] d..2 24577.476839: 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
122134   kworker/u17:2-23076 (23076) [001] d..2 24577.476845: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122135   kworker/u17:2-23076 (23076) [001] d..3 24577.476850: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122136   kworker/u17:2-23076 (23076) [001] d..2 24577.476865: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122137     kworker/1:1-13091 (13091) [001] d..2 24577.476870: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
122138     kworker/1:1-13091 (13091) [001] d..3 24577.476878: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
122139     kworker/1:1-13091 (13091) [001] d..2 24577.476885: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
122140              ps-13421 (13421) [004] d..2 24577.476887: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122141              ps-13421 (13421) [004] dn.3 24577.476890: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122142              ps-13421 (13421) [004] d..2 24577.476892: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122143 shell svc 13418-13419 ( 1007) [004] d..2 24577.476899: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122144            adbd-23485 ( 1007) [001] d..2 24577.476925: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122145          <idle>-0     (-----) [001] d..1 24577.476932: cpu_idle: state=0 cpu_id=1
122146              ps-13421 (13421) [004] d..2 24577.476952: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122147              ps-13421 (13421) [004] dn.3 24577.476955: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122148              ps-13421 (13421) [004] d..2 24577.476957: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122149          <idle>-0     (-----) [001] d.h3 24577.476960: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122150          <idle>-0     (-----) [001] dnh4 24577.476965: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122151 shell svc 13418-13419 ( 1007) [004] d..2 24577.476965: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122152          <idle>-0     (-----) [001] .n.1 24577.476970: cpu_idle: state=4294967295 cpu_id=1
122153          <idle>-0     (-----) [001] d..2 24577.476976: 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
122154   kworker/u17:2-23076 (23076) [001] d..2 24577.476981: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122155   kworker/u17:2-23076 (23076) [001] d..3 24577.476986: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122156   kworker/u17:2-23076 (23076) [001] d..2 24577.477001: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122157     kworker/1:1-13091 (13091) [001] d..2 24577.477005: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
122158     kworker/1:1-13091 (13091) [001] d..3 24577.477013: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
122159              ps-13421 (13421) [004] d..2 24577.477020: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122160     kworker/1:1-13091 (13091) [001] d..2 24577.477021: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
122161              ps-13421 (13421) [004] dn.3 24577.477023: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122162              ps-13421 (13421) [004] d..2 24577.477025: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122163            adbd-23485 ( 1007) [001] d..2 24577.477032: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122164 shell svc 13418-13419 ( 1007) [004] d..2 24577.477033: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122165          <idle>-0     (-----) [001] d..1 24577.477038: cpu_idle: state=0 cpu_id=1
122166              ps-13421 (13421) [004] d..2 24577.477089: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122167              ps-13421 (13421) [004] dn.3 24577.477093: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122168              ps-13421 (13421) [004] d..2 24577.477096: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122169 shell svc 13418-13419 ( 1007) [004] d..2 24577.477103: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122170          <idle>-0     (-----) [001] d.h3 24577.477143: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122171          <idle>-0     (-----) [001] dnh4 24577.477148: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122172          <idle>-0     (-----) [001] .n.1 24577.477153: cpu_idle: state=4294967295 cpu_id=1
122173          <idle>-0     (-----) [001] d..2 24577.477158: 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
122174              ps-13421 (13421) [004] d..2 24577.477160: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122175              ps-13421 (13421) [004] dn.3 24577.477163: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122176   kworker/u17:2-23076 (23076) [001] d..2 24577.477164: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122177              ps-13421 (13421) [004] d..2 24577.477165: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122178   kworker/u17:2-23076 (23076) [001] d..3 24577.477169: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122179 shell svc 13418-13419 ( 1007) [004] d..2 24577.477172: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122180   kworker/u17:2-23076 (23076) [001] d..2 24577.477184: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122181     kworker/1:1-13091 (13091) [001] d..2 24577.477189: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
122182     kworker/1:1-13091 (13091) [001] d..3 24577.477197: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
122183     kworker/1:1-13091 (13091) [001] d..2 24577.477206: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
122184            adbd-23484 ( 1007) [001] d..2 24577.477216: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
122185            adbd-23484 ( 1007) [001] d..3 24577.477221: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
122186              ps-13421 (13421) [004] d..2 24577.477228: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122187              ps-13421 (13421) [004] dn.3 24577.477231: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122188              ps-13421 (13421) [004] d..2 24577.477234: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122189 shell svc 13418-13419 ( 1007) [004] d..2 24577.477241: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122190            adbd-23484 ( 1007) [001] d..2 24577.477261: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
122191              ps-13421 (13421) [004] d..2 24577.477292: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122192              ps-13421 (13421) [004] dn.3 24577.477295: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122193              ps-13421 (13421) [004] d..2 24577.477297: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122194 shell svc 13418-13419 ( 1007) [004] d..2 24577.477304: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122195            adbd-1007  ( 1007) [001] d..1 24577.477320: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
122196            adbd-1007  ( 1007) [001] d..2 24577.477331: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
122197            adbd-1007  ( 1007) [001] d..2 24577.477357: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
122198              ps-13421 (13421) [004] d..2 24577.477358: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122199              ps-13421 (13421) [004] dn.3 24577.477361: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122200              ps-13421 (13421) [004] d..2 24577.477363: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122201 shell svc 13418-13419 ( 1007) [004] d..2 24577.477371: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122202            adbd-23485 ( 1007) [001] d..2 24577.477397: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122203          <idle>-0     (-----) [001] d..1 24577.477405: cpu_idle: state=0 cpu_id=1
122204              ps-13421 (13421) [004] d..2 24577.477424: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122205          <idle>-0     (-----) [001] d.h3 24577.477427: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122206              ps-13421 (13421) [004] dn.3 24577.477427: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122207              ps-13421 (13421) [004] d..2 24577.477430: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122208          <idle>-0     (-----) [001] dnh4 24577.477433: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122209 shell svc 13418-13419 ( 1007) [004] d..2 24577.477437: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122210          <idle>-0     (-----) [001] .n.1 24577.477438: cpu_idle: state=4294967295 cpu_id=1
122211          <idle>-0     (-----) [001] d..2 24577.477444: 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
122212   kworker/u17:2-23076 (23076) [001] d..2 24577.477450: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122213   kworker/u17:2-23076 (23076) [001] d..3 24577.477455: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122214   kworker/u17:2-23076 (23076) [001] d..2 24577.477471: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122215     kworker/1:1-13091 (13091) [001] d..2 24577.477476: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
122216     kworker/1:1-13091 (13091) [001] d..3 24577.477484: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
122217              ps-13421 (13421) [004] d..2 24577.477490: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122218     kworker/1:1-13091 (13091) [001] d..2 24577.477492: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
122219              ps-13421 (13421) [004] dn.3 24577.477493: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122220              ps-13421 (13421) [004] d..2 24577.477496: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122221 shell svc 13418-13419 ( 1007) [004] d..2 24577.477503: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122222            adbd-23485 ( 1007) [001] d..2 24577.477530: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122223          <idle>-0     (-----) [001] d..1 24577.477538: cpu_idle: state=0 cpu_id=1
122224          <idle>-0     (-----) [001] d.h3 24577.477563: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122225          <idle>-0     (-----) [001] dnh4 24577.477583: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122226              ps-13421 (13421) [004] d.H2 24577.477586: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
122227          <idle>-0     (-----) [001] .n.1 24577.477588: cpu_idle: state=4294967295 cpu_id=1
122228              ps-13421 (13421) [004] d.H3 24577.477593: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
122229          <idle>-0     (-----) [001] d..2 24577.477595: 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
122230   kworker/u17:2-23076 (23076) [001] d..2 24577.477601: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122231   kworker/u17:2-23076 (23076) [001] d..3 24577.477606: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122232              ps-13421 (13421) [004] d..2 24577.477614: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122233              ps-13421 (13421) [004] dn.3 24577.477617: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122234              ps-13421 (13421) [004] d..2 24577.477620: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122235   kworker/u17:2-23076 (23076) [001] d..2 24577.477621: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122236     kworker/1:1-13091 (13091) [001] d..2 24577.477625: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
122237 shell svc 13418-13419 ( 1007) [004] d..2 24577.477630: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122238     kworker/1:1-13091 (13091) [001] d..3 24577.477634: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
122239     kworker/1:1-13091 (13091) [001] d..2 24577.477642: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
122240            adbd-23485 ( 1007) [001] d..2 24577.477652: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122241          <idle>-0     (-----) [001] d..1 24577.477659: cpu_idle: state=0 cpu_id=1
122242          <idle>-0     (-----) [003] d.s2 24577.477683: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
122243          <idle>-0     (-----) [003] dns3 24577.477696: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
122244              ps-13421 (13421) [004] d..2 24577.477708: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122245          <idle>-0     (-----) [003] .n.1 24577.477709: cpu_idle: state=4294967295 cpu_id=3
122246              ps-13421 (13421) [004] dn.3 24577.477711: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122247              ps-13421 (13421) [004] d..2 24577.477713: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122248          <idle>-0     (-----) [003] d..2 24577.477717: 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
122249 shell svc 13418-13419 ( 1007) [004] d..2 24577.477721: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122250     rcu_preempt-7     (    7) [003] d..2 24577.477722: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
122251     rcu_preempt-7     (    7) [003] d..3 24577.477730: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
122252     rcu_preempt-7     (    7) [003] d..2 24577.477736: 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
122253          <idle>-0     (-----) [001] d.h3 24577.477740: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122254          <idle>-0     (-----) [001] dnh4 24577.477746: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122255          <idle>-0     (-----) [007] .n.1 24577.477746: cpu_idle: state=4294967295 cpu_id=7
122256          <idle>-0     (-----) [001] .n.1 24577.477751: cpu_idle: state=4294967295 cpu_id=1
122257          <idle>-0     (-----) [007] d..2 24577.477753: 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
122258          <idle>-0     (-----) [001] d..2 24577.477756: 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
122259   kworker/u17:2-23076 (23076) [001] d..2 24577.477762: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122260         sugov:4-560   (  560) [007] d..2 24577.477765: 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
122261   kworker/u17:2-23076 (23076) [001] d..3 24577.477766: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122262          <idle>-0     (-----) [007] d..1 24577.477768: cpu_idle: state=2 cpu_id=7
122263              ps-13421 (13421) [004] d..2 24577.477777: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122264              ps-13421 (13421) [004] dn.3 24577.477780: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122265   kworker/u17:2-23076 (23076) [001] d..2 24577.477782: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122266              ps-13421 (13421) [004] d..2 24577.477782: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122267     kworker/1:1-13091 (13091) [001] d..2 24577.477787: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
122268 shell svc 13418-13419 ( 1007) [004] d..2 24577.477790: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122269     kworker/1:1-13091 (13091) [001] d..3 24577.477807: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
122270     kworker/1:1-13091 (13091) [001] d..2 24577.477815: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122271          <idle>-0     (-----) [001] d..1 24577.477822: cpu_idle: state=0 cpu_id=1
122272              ps-13421 (13421) [004] d..2 24577.477843: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122273              ps-13421 (13421) [004] dn.3 24577.477846: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122274              ps-13421 (13421) [004] d..2 24577.477848: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122275 shell svc 13418-13419 ( 1007) [004] d..2 24577.477856: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122276              ps-13421 (13421) [004] d..2 24577.477913: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122277              ps-13421 (13421) [004] dn.3 24577.477916: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122278              ps-13421 (13421) [004] d..2 24577.477918: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122279 shell svc 13418-13419 ( 1007) [004] d..2 24577.477926: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122280         rcuop/4-45    (   45) [003] d..2 24577.477946: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
122281         rcuop/4-45    (   45) [003] d..3 24577.477956: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
122282         rcuop/4-45    (   45) [003] d..2 24577.477962: 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
122283     rcu_preempt-7     (    7) [003] d..2 24577.477969: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
122284              ps-13421 (13421) [004] d..2 24577.477978: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122285              ps-13421 (13421) [004] dn.3 24577.477981: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122286              ps-13421 (13421) [004] d..2 24577.477984: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122287            adbd-23484 ( 1007) [003] d..2 24577.477985: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
122288 shell svc 13418-13419 ( 1007) [004] d..2 24577.477991: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122289            adbd-23484 ( 1007) [003] d..3 24577.477997: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
122290            adbd-23484 ( 1007) [003] d..2 24577.478043: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
122291              ps-13421 (13421) [004] d..2 24577.478044: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122292              ps-13421 (13421) [004] dn.3 24577.478046: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122293              ps-13421 (13421) [004] d..2 24577.478049: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122294 shell svc 13418-13419 ( 1007) [004] d..2 24577.478056: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122295              ps-13421 (13421) [004] d..2 24577.478110: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122296              ps-13421 (13421) [004] dn.3 24577.478112: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122297            adbd-1007  ( 1007) [003] d..1 24577.478112: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
122298              ps-13421 (13421) [004] d..2 24577.478115: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122299 shell svc 13418-13419 ( 1007) [004] d..2 24577.478122: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122300            adbd-1007  ( 1007) [003] d..2 24577.478134: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
122301          <idle>-0     (-----) [001] .n.1 24577.478139: cpu_idle: state=4294967295 cpu_id=1
122302          <idle>-0     (-----) [001] d..2 24577.478146: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
122303            adbd-1007  ( 1007) [003] d..2 24577.478167: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122304              ps-13421 (13421) [004] d..2 24577.478174: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122305          <idle>-0     (-----) [003] d..1 24577.478174: cpu_idle: state=0 cpu_id=3
122306              ps-13421 (13421) [004] dn.3 24577.478177: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122307              ps-13421 (13421) [004] d..2 24577.478179: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122308 shell svc 13418-13419 ( 1007) [004] d..2 24577.478186: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122309            adbd-23485 ( 1007) [001] d..2 24577.478193: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122310          <idle>-0     (-----) [001] d.h4 24577.478209: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122311          <idle>-0     (-----) [001] dnh5 24577.478217: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122312          <idle>-0     (-----) [001] d..2 24577.478224: 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
122313   kworker/u17:2-23076 (23076) [001] d..2 24577.478231: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122314   kworker/u17:2-23076 (23076) [001] d..3 24577.478235: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122315              ps-13421 (13421) [004] d..2 24577.478238: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122316              ps-13421 (13421) [004] dn.3 24577.478240: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122317              ps-13421 (13421) [004] d..2 24577.478243: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122318   kworker/u17:2-23076 (23076) [001] d..2 24577.478250: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122319 shell svc 13418-13419 ( 1007) [004] d..2 24577.478250: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122320     kworker/1:1-13091 (13091) [001] d..2 24577.478254: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
122321     kworker/1:1-13091 (13091) [001] d..3 24577.478261: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
122322     kworker/1:1-13091 (13091) [001] d..2 24577.478269: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
122323              ps-13421 (13421) [004] d..2 24577.478305: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122324              ps-13421 (13421) [004] dn.3 24577.478308: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122325              ps-13421 (13421) [004] d..2 24577.478310: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122326            adbd-23485 ( 1007) [001] d..2 24577.478311: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122327 shell svc 13418-13419 ( 1007) [004] d..2 24577.478317: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122328          <idle>-0     (-----) [001] d..1 24577.478319: cpu_idle: state=0 cpu_id=1
122329          <idle>-0     (-----) [001] d.h3 24577.478340: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122330          <idle>-0     (-----) [001] dnh4 24577.478345: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122331          <idle>-0     (-----) [001] .n.1 24577.478351: cpu_idle: state=4294967295 cpu_id=1
122332          <idle>-0     (-----) [001] d..2 24577.478356: 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
122333   kworker/u17:2-23076 (23076) [001] d..2 24577.478363: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122334   kworker/u17:2-23076 (23076) [001] d..3 24577.478367: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122335              ps-13421 (13421) [004] d..2 24577.478372: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122336              ps-13421 (13421) [004] dn.3 24577.478375: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122337              ps-13421 (13421) [004] d..2 24577.478377: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122338   kworker/u17:2-23076 (23076) [001] d..2 24577.478383: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122339 shell svc 13418-13419 ( 1007) [004] d..2 24577.478385: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122340     kworker/1:1-13091 (13091) [001] d..2 24577.478387: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
122341     kworker/1:1-13091 (13091) [001] d..3 24577.478395: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
122342     kworker/1:1-13091 (13091) [001] d..2 24577.478402: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
122343            adbd-23485 ( 1007) [001] d..2 24577.478418: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122344          <idle>-0     (-----) [001] d..1 24577.478425: cpu_idle: state=0 cpu_id=1
122345              ps-13421 (13421) [004] d..2 24577.478437: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122346              ps-13421 (13421) [004] dn.3 24577.478441: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122347              ps-13421 (13421) [004] d..2 24577.478443: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122348 shell svc 13418-13419 ( 1007) [004] d..2 24577.478450: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122349              ps-13421 (13421) [004] d..2 24577.478508: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122350              ps-13421 (13421) [004] dn.3 24577.478510: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122351              ps-13421 (13421) [004] d..2 24577.478513: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122352 shell svc 13418-13419 ( 1007) [004] d..2 24577.478521: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122353          <idle>-0     (-----) [001] d.h3 24577.478526: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122354          <idle>-0     (-----) [001] dnh4 24577.478531: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122355          <idle>-0     (-----) [001] .n.1 24577.478536: cpu_idle: state=4294967295 cpu_id=1
122356          <idle>-0     (-----) [001] d..2 24577.478542: 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
122357   kworker/u17:2-23076 (23076) [001] d..2 24577.478548: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122358   kworker/u17:2-23076 (23076) [001] d..3 24577.478553: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122359   kworker/u17:2-23076 (23076) [001] d..2 24577.478568: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122360     kworker/1:1-13091 (13091) [001] d..2 24577.478574: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
122361              ps-13421 (13421) [004] d..2 24577.478575: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122362              ps-13421 (13421) [004] dn.3 24577.478578: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122363              ps-13421 (13421) [004] d..2 24577.478580: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122364 shell svc 13418-13419 ( 1007) [004] d..2 24577.478587: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122365     kworker/1:1-13091 (13091) [001] d..3 24577.478592: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
122366     kworker/1:1-13091 (13091) [001] d..2 24577.478600: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
122367            adbd-23484 ( 1007) [001] d..2 24577.478611: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
122368            adbd-23484 ( 1007) [001] d..3 24577.478620: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
122369              ps-13421 (13421) [004] d..2 24577.478640: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122370              ps-13421 (13421) [004] dn.3 24577.478642: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122371              ps-13421 (13421) [004] d..2 24577.478645: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122372 shell svc 13418-13419 ( 1007) [004] d..2 24577.478652: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122373            adbd-23484 ( 1007) [001] d..2 24577.478661: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
122374              ps-13421 (13421) [004] d..2 24577.478705: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122375              ps-13421 (13421) [004] dn.3 24577.478709: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122376              ps-13421 (13421) [004] d..2 24577.478711: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122377 shell svc 13418-13419 ( 1007) [004] d..2 24577.478718: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122378            adbd-1007  ( 1007) [001] d..1 24577.478736: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
122379            adbd-1007  ( 1007) [001] d..2 24577.478753: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
122380          <idle>-0     (-----) [003] .n.1 24577.478757: cpu_idle: state=4294967295 cpu_id=3
122381          <idle>-0     (-----) [003] d..2 24577.478764: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
122382              ps-13421 (13421) [004] d..2 24577.478770: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122383              ps-13421 (13421) [004] dn.3 24577.478773: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122384              ps-13421 (13421) [004] d..2 24577.478775: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122385 shell svc 13418-13419 ( 1007) [004] d..2 24577.478782: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122386            adbd-1007  ( 1007) [001] d..2 24577.478784: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122387          <idle>-0     (-----) [001] d..1 24577.478792: cpu_idle: state=0 cpu_id=1
122388            adbd-23485 ( 1007) [003] d..2 24577.478811: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122389          <idle>-0     (-----) [003] d..1 24577.478817: cpu_idle: state=0 cpu_id=3
122390          <idle>-0     (-----) [001] d.h3 24577.478823: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122391          <idle>-0     (-----) [001] dnh4 24577.478829: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122392          <idle>-0     (-----) [001] .n.1 24577.478834: cpu_idle: state=4294967295 cpu_id=1
122393              ps-13421 (13421) [004] d..2 24577.478835: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122394              ps-13421 (13421) [004] dn.3 24577.478838: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122395          <idle>-0     (-----) [001] d..2 24577.478840: 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
122396              ps-13421 (13421) [004] d..2 24577.478840: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122397 shell svc 13418-13419 ( 1007) [004] d..2 24577.478847: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122398   kworker/u17:2-23076 (23076) [001] d..2 24577.478848: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122399   kworker/u17:2-23076 (23076) [001] d..3 24577.478853: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122400   kworker/u17:2-23076 (23076) [001] d..2 24577.478868: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122401     kworker/1:1-13091 (13091) [001] d..2 24577.478874: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
122402     kworker/1:1-13091 (13091) [001] d..3 24577.478882: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
122403          <idle>-0     (-----) [003] .n.1 24577.478886: cpu_idle: state=4294967295 cpu_id=3
122404          <idle>-0     (-----) [003] d..2 24577.478893: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
122405     kworker/1:1-13091 (13091) [001] d..2 24577.478895: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122406          <idle>-0     (-----) [001] d..1 24577.478901: cpu_idle: state=0 cpu_id=1
122407              ps-13421 (13421) [004] d..2 24577.478902: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122408              ps-13421 (13421) [004] dn.3 24577.478905: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122409              ps-13421 (13421) [004] d..2 24577.478907: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122410 shell svc 13418-13419 ( 1007) [004] d..2 24577.478914: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122411            adbd-23485 ( 1007) [003] d..2 24577.478937: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122412          <idle>-0     (-----) [003] d..1 24577.478942: cpu_idle: state=0 cpu_id=3
122413          <idle>-0     (-----) [001] d.h3 24577.478965: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122414              ps-13421 (13421) [004] d..2 24577.478967: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122415              ps-13421 (13421) [004] dn.3 24577.478970: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122416          <idle>-0     (-----) [001] dnh4 24577.478970: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122417              ps-13421 (13421) [004] d..2 24577.478972: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122418          <idle>-0     (-----) [001] .n.1 24577.478975: cpu_idle: state=4294967295 cpu_id=1
122419 shell svc 13418-13419 ( 1007) [004] d..2 24577.478979: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122420          <idle>-0     (-----) [001] d..2 24577.478980: 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
122421   kworker/u17:2-23076 (23076) [001] d..2 24577.478986: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122422   kworker/u17:2-23076 (23076) [001] d..3 24577.478991: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122423   kworker/u17:2-23076 (23076) [001] d..2 24577.479006: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122424     kworker/1:1-13091 (13091) [001] d..2 24577.479010: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
122425     kworker/1:1-13091 (13091) [001] d..3 24577.479018: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
122426          <idle>-0     (-----) [003] .n.1 24577.479023: cpu_idle: state=4294967295 cpu_id=3
122427          <idle>-0     (-----) [003] d..2 24577.479028: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
122428     kworker/1:1-13091 (13091) [001] d..2 24577.479031: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122429              ps-13421 (13421) [004] d..2 24577.479033: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122430              ps-13421 (13421) [004] dn.3 24577.479036: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122431          <idle>-0     (-----) [001] d..1 24577.479037: cpu_idle: state=0 cpu_id=1
122432              ps-13421 (13421) [004] d..2 24577.479038: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122433 shell svc 13418-13419 ( 1007) [004] d..2 24577.479046: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122434            adbd-23485 ( 1007) [003] d..2 24577.479046: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122435          <idle>-0     (-----) [003] d..1 24577.479051: cpu_idle: state=0 cpu_id=3
122436              ps-13421 (13421) [004] d..2 24577.479103: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122437              ps-13421 (13421) [004] dn.3 24577.479106: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122438              ps-13421 (13421) [004] d..2 24577.479108: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122439 shell svc 13418-13419 ( 1007) [004] d..2 24577.479115: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122440          <idle>-0     (-----) [001] d.h3 24577.479141: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122441          <idle>-0     (-----) [001] dnh4 24577.479147: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122442          <idle>-0     (-----) [001] .n.1 24577.479152: cpu_idle: state=4294967295 cpu_id=1
122443          <idle>-0     (-----) [001] d..2 24577.479157: 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
122444   kworker/u17:2-23076 (23076) [001] d..2 24577.479162: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122445   kworker/u17:2-23076 (23076) [001] d..3 24577.479167: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122446              ps-13421 (13421) [004] d..2 24577.479169: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122447              ps-13421 (13421) [004] dn.3 24577.479172: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122448              ps-13421 (13421) [004] d..2 24577.479174: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122449 shell svc 13418-13419 ( 1007) [004] d..2 24577.479181: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122450   kworker/u17:2-23076 (23076) [001] d..2 24577.479182: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122451     kworker/1:1-13091 (13091) [001] d..2 24577.479187: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
122452     kworker/1:1-13091 (13091) [001] d..3 24577.479196: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
122453     kworker/1:1-13091 (13091) [001] d..2 24577.479204: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
122454            adbd-23484 ( 1007) [001] d..2 24577.479214: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
122455            adbd-23484 ( 1007) [001] d..3 24577.479219: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
122456              ps-13421 (13421) [004] d..2 24577.479236: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122457              ps-13421 (13421) [004] dn.3 24577.479239: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122458              ps-13421 (13421) [004] d..2 24577.479241: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122459 shell svc 13418-13419 ( 1007) [004] d..2 24577.479249: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122460            adbd-23484 ( 1007) [001] d..2 24577.479261: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
122461              ps-13421 (13421) [004] d..2 24577.479300: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122462              ps-13421 (13421) [004] dn.3 24577.479303: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122463              ps-13421 (13421) [004] d..2 24577.479305: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122464 shell svc 13418-13419 ( 1007) [004] d..2 24577.479313: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122465            adbd-1007  ( 1007) [001] d..1 24577.479324: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
122466            adbd-1007  ( 1007) [001] d..2 24577.479334: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
122467          <idle>-0     (-----) [003] .n.1 24577.479338: cpu_idle: state=4294967295 cpu_id=3
122468          <idle>-0     (-----) [003] d..2 24577.479344: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
122469              ps-13421 (13421) [004] d..2 24577.479364: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122470            adbd-1007  ( 1007) [001] d..2 24577.479366: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122471              ps-13421 (13421) [004] dn.3 24577.479367: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122472              ps-13421 (13421) [004] d..2 24577.479369: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122473          <idle>-0     (-----) [001] d..1 24577.479374: cpu_idle: state=0 cpu_id=1
122474 shell svc 13418-13419 ( 1007) [004] d..2 24577.479376: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122475            adbd-23485 ( 1007) [003] d..2 24577.479387: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122476          <idle>-0     (-----) [003] d..1 24577.479393: cpu_idle: state=0 cpu_id=3
122477          <idle>-0     (-----) [001] d.h3 24577.479406: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122478          <idle>-0     (-----) [001] dnh4 24577.479412: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122479          <idle>-0     (-----) [001] .n.1 24577.479417: cpu_idle: state=4294967295 cpu_id=1
122480          <idle>-0     (-----) [001] d..2 24577.479424: 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
122481              ps-13421 (13421) [004] d..2 24577.479430: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122482   kworker/u17:2-23076 (23076) [001] d..2 24577.479431: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122483              ps-13421 (13421) [004] dn.3 24577.479432: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122484              ps-13421 (13421) [004] d..2 24577.479436: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122485   kworker/u17:2-23076 (23076) [001] d..3 24577.479436: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122486 shell svc 13418-13419 ( 1007) [004] d..2 24577.479443: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122487   kworker/u17:2-23076 (23076) [001] d..2 24577.479451: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122488     kworker/1:1-13091 (13091) [001] d..2 24577.479456: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
122489     kworker/1:1-13091 (13091) [001] d..3 24577.479465: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
122490          <idle>-0     (-----) [003] .n.1 24577.479470: cpu_idle: state=4294967295 cpu_id=3
122491          <idle>-0     (-----) [003] d..2 24577.479476: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
122492     kworker/1:1-13091 (13091) [001] d..2 24577.479478: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122493          <idle>-0     (-----) [001] d..1 24577.479485: cpu_idle: state=0 cpu_id=1
122494              ps-13421 (13421) [004] d..2 24577.479497: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122495              ps-13421 (13421) [004] dn.3 24577.479500: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122496              ps-13421 (13421) [004] d..2 24577.479503: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122497 shell svc 13418-13419 ( 1007) [004] d..2 24577.479510: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122498            adbd-23485 ( 1007) [003] d..2 24577.479518: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122499          <idle>-0     (-----) [003] d..1 24577.479524: cpu_idle: state=0 cpu_id=3
122500          <idle>-0     (-----) [001] d.h3 24577.479543: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122501          <idle>-0     (-----) [001] dnh4 24577.479549: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122502          <idle>-0     (-----) [001] .n.1 24577.479553: cpu_idle: state=4294967295 cpu_id=1
122503          <idle>-0     (-----) [001] d..2 24577.479559: 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
122504              ps-13421 (13421) [004] d..2 24577.479562: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122505              ps-13421 (13421) [004] dn.3 24577.479565: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122506   kworker/u17:2-23076 (23076) [001] d..2 24577.479566: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122507              ps-13421 (13421) [004] d..2 24577.479567: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122508   kworker/u17:2-23076 (23076) [001] d..3 24577.479570: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122509 shell svc 13418-13419 ( 1007) [004] d..2 24577.479574: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122510   kworker/u17:2-23076 (23076) [001] d..2 24577.479585: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122511     kworker/1:1-13091 (13091) [001] d..2 24577.479590: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
122512     kworker/1:1-13091 (13091) [001] d..3 24577.479598: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
122513          <idle>-0     (-----) [003] .n.1 24577.479603: cpu_idle: state=4294967295 cpu_id=3
122514          <idle>-0     (-----) [003] d..2 24577.479609: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
122515     kworker/1:1-13091 (13091) [001] d..2 24577.479612: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122516          <idle>-0     (-----) [001] d..1 24577.479618: cpu_idle: state=0 cpu_id=1
122517            adbd-23485 ( 1007) [003] d..2 24577.479624: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122518              ps-13421 (13421) [004] d..2 24577.479628: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122519          <idle>-0     (-----) [003] d..1 24577.479629: cpu_idle: state=0 cpu_id=3
122520              ps-13421 (13421) [004] dn.3 24577.479631: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122521              ps-13421 (13421) [004] d..2 24577.479633: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122522 shell svc 13418-13419 ( 1007) [004] d..2 24577.479640: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122523              ps-13421 (13421) [004] d..2 24577.479696: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122524              ps-13421 (13421) [004] dn.3 24577.479699: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122525              ps-13421 (13421) [004] d..2 24577.479701: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122526 shell svc 13418-13419 ( 1007) [004] d..2 24577.479709: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122527          <idle>-0     (-----) [001] d.h3 24577.479726: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122528          <idle>-0     (-----) [001] dnh4 24577.479732: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122529          <idle>-0     (-----) [001] .n.1 24577.479736: cpu_idle: state=4294967295 cpu_id=1
122530          <idle>-0     (-----) [001] d..2 24577.479742: 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
122531   kworker/u17:2-23076 (23076) [001] d..2 24577.479748: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122532   kworker/u17:2-23076 (23076) [001] d..3 24577.479753: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122533              ps-13421 (13421) [004] d..2 24577.479762: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122534              ps-13421 (13421) [004] dn.3 24577.479766: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122535   kworker/u17:2-23076 (23076) [001] d..2 24577.479768: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122536              ps-13421 (13421) [004] d..2 24577.479768: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122537     kworker/1:1-13091 (13091) [001] d..2 24577.479773: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
122538 shell svc 13418-13419 ( 1007) [004] d..2 24577.479775: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122539     kworker/1:1-13091 (13091) [001] d..3 24577.479782: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
122540     kworker/1:1-13091 (13091) [001] d..2 24577.479789: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
122541            adbd-23484 ( 1007) [001] d..2 24577.479800: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
122542            adbd-23484 ( 1007) [001] d..3 24577.479805: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
122543              ps-13421 (13421) [004] d..2 24577.479829: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122544              ps-13421 (13421) [004] dn.3 24577.479831: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122545              ps-13421 (13421) [004] d..2 24577.479834: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122546 shell svc 13418-13419 ( 1007) [004] d..2 24577.479841: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122547            adbd-23484 ( 1007) [001] d..2 24577.479846: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
122548              ps-13421 (13421) [004] d..2 24577.479895: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122549              ps-13421 (13421) [004] dn.3 24577.479898: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122550              ps-13421 (13421) [004] d..2 24577.479900: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122551            adbd-1007  ( 1007) [001] d..1 24577.479904: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
122552 shell svc 13418-13419 ( 1007) [004] d..2 24577.479908: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122553            adbd-1007  ( 1007) [001] d..2 24577.479915: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
122554          <idle>-0     (-----) [003] .n.1 24577.479919: cpu_idle: state=4294967295 cpu_id=3
122555          <idle>-0     (-----) [003] d..2 24577.479925: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
122556            adbd-1007  ( 1007) [001] d..2 24577.479946: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122557          <idle>-0     (-----) [001] d..1 24577.479954: cpu_idle: state=0 cpu_id=1
122558              ps-13421 (13421) [004] d..2 24577.479960: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122559              ps-13421 (13421) [004] dn.3 24577.479963: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122560              ps-13421 (13421) [004] d..2 24577.479966: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122561            adbd-23485 ( 1007) [003] d..2 24577.479968: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122562 shell svc 13418-13419 ( 1007) [004] d..2 24577.479973: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122563          <idle>-0     (-----) [003] d..1 24577.479974: cpu_idle: state=0 cpu_id=3
122564          <idle>-0     (-----) [001] d.h3 24577.479989: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122565          <idle>-0     (-----) [001] dnh4 24577.479995: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122566          <idle>-0     (-----) [001] .n.1 24577.480000: cpu_idle: state=4294967295 cpu_id=1
122567          <idle>-0     (-----) [001] d..2 24577.480006: 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
122568   kworker/u17:2-23076 (23076) [001] d..2 24577.480014: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122569   kworker/u17:2-23076 (23076) [001] d..3 24577.480019: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122570              ps-13421 (13421) [004] d..2 24577.480026: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122571              ps-13421 (13421) [004] dn.3 24577.480028: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122572              ps-13421 (13421) [004] d..2 24577.480031: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122573   kworker/u17:2-23076 (23076) [001] d..2 24577.480034: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122574 shell svc 13418-13419 ( 1007) [004] d..2 24577.480038: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122575     kworker/1:1-13091 (13091) [001] d..2 24577.480039: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
122576     kworker/1:1-13091 (13091) [001] d..3 24577.480048: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
122577          <idle>-0     (-----) [003] .n.1 24577.480053: cpu_idle: state=4294967295 cpu_id=3
122578          <idle>-0     (-----) [003] d..2 24577.480058: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
122579     kworker/1:1-13091 (13091) [001] d..2 24577.480061: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122580          <idle>-0     (-----) [001] d..1 24577.480067: cpu_idle: state=0 cpu_id=1
122581              ps-13421 (13421) [004] d..2 24577.480093: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122582              ps-13421 (13421) [004] dn.3 24577.480096: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122583              ps-13421 (13421) [004] d..2 24577.480098: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122584            adbd-23485 ( 1007) [003] d..2 24577.480101: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122585 shell svc 13418-13419 ( 1007) [004] d..2 24577.480106: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122586          <idle>-0     (-----) [003] d..1 24577.480107: cpu_idle: state=0 cpu_id=3
122587          <idle>-0     (-----) [001] d.h3 24577.480134: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122588          <idle>-0     (-----) [001] dnh4 24577.480139: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122589          <idle>-0     (-----) [001] .n.1 24577.480144: cpu_idle: state=4294967295 cpu_id=1
122590          <idle>-0     (-----) [001] d..2 24577.480149: 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
122591   kworker/u17:2-23076 (23076) [001] d..2 24577.480156: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122592              ps-13421 (13421) [004] d..2 24577.480159: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122593   kworker/u17:2-23076 (23076) [001] d..3 24577.480160: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122594              ps-13421 (13421) [004] dn.3 24577.480162: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122595              ps-13421 (13421) [004] d..2 24577.480164: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122596 shell svc 13418-13419 ( 1007) [004] d..2 24577.480171: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122597   kworker/u17:2-23076 (23076) [001] d..2 24577.480175: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122598     kworker/1:1-13091 (13091) [001] d..2 24577.480180: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
122599     kworker/1:1-13091 (13091) [001] d..3 24577.480191: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
122600          <idle>-0     (-----) [003] .n.1 24577.480196: cpu_idle: state=4294967295 cpu_id=3
122601          <idle>-0     (-----) [003] d..2 24577.480201: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
122602     kworker/1:1-13091 (13091) [001] d..2 24577.480204: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122603          <idle>-0     (-----) [001] d..1 24577.480211: cpu_idle: state=0 cpu_id=1
122604            adbd-23485 ( 1007) [003] d..2 24577.480216: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122605          <idle>-0     (-----) [003] d..1 24577.480221: cpu_idle: state=0 cpu_id=3
122606              ps-13421 (13421) [004] d..2 24577.480225: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122607              ps-13421 (13421) [004] dn.3 24577.480229: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122608              ps-13421 (13421) [004] d..2 24577.480231: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122609 shell svc 13418-13419 ( 1007) [004] d..2 24577.480238: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122610          <idle>-0     (-----) [001] d.h3 24577.480286: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122611          <idle>-0     (-----) [001] dnh4 24577.480293: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122612              ps-13421 (13421) [004] d..2 24577.480294: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122613              ps-13421 (13421) [004] dn.3 24577.480297: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122614          <idle>-0     (-----) [001] .n.1 24577.480298: cpu_idle: state=4294967295 cpu_id=1
122615              ps-13421 (13421) [004] d..2 24577.480300: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122616          <idle>-0     (-----) [001] d..2 24577.480304: 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
122617 shell svc 13418-13419 ( 1007) [004] d..2 24577.480307: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122618   kworker/u17:2-23076 (23076) [001] d..2 24577.480309: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122619   kworker/u17:2-23076 (23076) [001] d..3 24577.480314: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122620   kworker/u17:2-23076 (23076) [001] d..2 24577.480329: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122621     kworker/1:1-13091 (13091) [001] d..2 24577.480334: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
122622     kworker/1:1-13091 (13091) [001] d..3 24577.480342: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
122623     kworker/1:1-13091 (13091) [001] d..2 24577.480349: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
122624            adbd-23484 ( 1007) [001] d..2 24577.480360: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
122625              ps-13421 (13421) [004] d..2 24577.480362: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122626              ps-13421 (13421) [004] dn.3 24577.480365: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122627            adbd-23484 ( 1007) [001] d..3 24577.480365: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
122628              ps-13421 (13421) [004] d..2 24577.480367: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122629 shell svc 13418-13419 ( 1007) [004] d..2 24577.480374: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122630            adbd-23484 ( 1007) [001] d..2 24577.480406: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
122631              ps-13421 (13421) [004] d..2 24577.480427: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122632              ps-13421 (13421) [004] dn.3 24577.480430: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122633              ps-13421 (13421) [004] d..2 24577.480432: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122634 shell svc 13418-13419 ( 1007) [004] d..2 24577.480439: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122635            adbd-1007  ( 1007) [001] d..1 24577.480466: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
122636            adbd-1007  ( 1007) [001] d..2 24577.480476: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
122637          <idle>-0     (-----) [003] .n.1 24577.480480: cpu_idle: state=4294967295 cpu_id=3
122638          <idle>-0     (-----) [003] d..2 24577.480485: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
122639              ps-13421 (13421) [004] d..2 24577.480493: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122640              ps-13421 (13421) [004] dn.3 24577.480496: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122641              ps-13421 (13421) [004] d..2 24577.480498: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122642 shell svc 13418-13419 ( 1007) [004] d..2 24577.480505: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122643            adbd-1007  ( 1007) [001] d..2 24577.480507: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122644          <idle>-0     (-----) [001] d..1 24577.480515: cpu_idle: state=0 cpu_id=1
122645            adbd-23485 ( 1007) [003] d..2 24577.480527: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122646          <idle>-0     (-----) [003] d..1 24577.480532: cpu_idle: state=0 cpu_id=3
122647          <idle>-0     (-----) [001] d.h3 24577.480551: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122648          <idle>-0     (-----) [001] dnh4 24577.480557: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122649              ps-13421 (13421) [004] d..2 24577.480561: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122650          <idle>-0     (-----) [001] .n.1 24577.480562: cpu_idle: state=4294967295 cpu_id=1
122651              ps-13421 (13421) [004] dn.3 24577.480564: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122652              ps-13421 (13421) [004] d..2 24577.480566: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122653          <idle>-0     (-----) [001] d..2 24577.480568: 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
122654 shell svc 13418-13419 ( 1007) [004] d..2 24577.480573: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122655   kworker/u17:2-23076 (23076) [001] d..2 24577.480575: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122656   kworker/u17:2-23076 (23076) [001] d..3 24577.480580: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122657   kworker/u17:2-23076 (23076) [001] d..2 24577.480595: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122658     kworker/1:1-13091 (13091) [001] d..2 24577.480600: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
122659     kworker/1:1-13091 (13091) [001] d..3 24577.480609: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
122660          <idle>-0     (-----) [003] .n.1 24577.480613: cpu_idle: state=4294967295 cpu_id=3
122661          <idle>-0     (-----) [003] d..2 24577.480619: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
122662     kworker/1:1-13091 (13091) [001] d..2 24577.480622: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122663              ps-13421 (13421) [004] d..2 24577.480628: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122664          <idle>-0     (-----) [001] d..1 24577.480629: cpu_idle: state=0 cpu_id=1
122665              ps-13421 (13421) [004] dn.3 24577.480631: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122666              ps-13421 (13421) [004] d..2 24577.480634: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122667 shell svc 13418-13419 ( 1007) [004] d..2 24577.480641: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122668            adbd-23485 ( 1007) [003] d..2 24577.480661: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122669          <idle>-0     (-----) [003] d..1 24577.480667: cpu_idle: state=0 cpu_id=3
122670          <idle>-0     (-----) [001] d.h3 24577.480693: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122671              ps-13421 (13421) [004] d..2 24577.480695: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122672          <idle>-0     (-----) [001] dnh4 24577.480698: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122673              ps-13421 (13421) [004] dn.3 24577.480698: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122674              ps-13421 (13421) [004] d..2 24577.480700: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122675          <idle>-0     (-----) [001] .n.1 24577.480702: cpu_idle: state=4294967295 cpu_id=1
122676 shell svc 13418-13419 ( 1007) [004] d..2 24577.480707: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122677          <idle>-0     (-----) [001] d..2 24577.480708: 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
122678   kworker/u17:2-23076 (23076) [001] d..2 24577.480714: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122679   kworker/u17:2-23076 (23076) [001] d..3 24577.480719: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122680   kworker/u17:2-23076 (23076) [001] d..2 24577.480734: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122681     kworker/1:1-13091 (13091) [001] d..2 24577.480739: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
122682     kworker/1:1-13091 (13091) [001] d..3 24577.480747: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
122683          <idle>-0     (-----) [003] .n.1 24577.480752: cpu_idle: state=4294967295 cpu_id=3
122684          <idle>-0     (-----) [003] d..2 24577.480758: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
122685     kworker/1:1-13091 (13091) [001] d..2 24577.480760: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122686              ps-13421 (13421) [004] d..2 24577.480763: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122687          <idle>-0     (-----) [001] d..1 24577.480766: cpu_idle: state=0 cpu_id=1
122688              ps-13421 (13421) [004] dn.3 24577.480766: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122689              ps-13421 (13421) [004] d..2 24577.480769: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122690            adbd-23485 ( 1007) [003] d..2 24577.480772: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122691 shell svc 13418-13419 ( 1007) [004] d..2 24577.480776: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122692          <idle>-0     (-----) [003] d..1 24577.480777: cpu_idle: state=0 cpu_id=3
122693              ps-13421 (13421) [004] d..2 24577.480834: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122694              ps-13421 (13421) [004] dn.3 24577.480837: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122695              ps-13421 (13421) [004] d..2 24577.480839: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122696 shell svc 13418-13419 ( 1007) [004] d..2 24577.480846: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122697          <idle>-0     (-----) [001] d.h3 24577.480873: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122698          <idle>-0     (-----) [001] dnh4 24577.480878: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122699          <idle>-0     (-----) [001] .n.1 24577.480884: cpu_idle: state=4294967295 cpu_id=1
122700          <idle>-0     (-----) [001] d..2 24577.480890: 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
122701   kworker/u17:2-23076 (23076) [001] d..2 24577.480895: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122702   kworker/u17:2-23076 (23076) [001] d..3 24577.480900: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122703              ps-13421 (13421) [004] d..2 24577.480914: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122704   kworker/u17:2-23076 (23076) [001] d..2 24577.480915: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122705              ps-13421 (13421) [004] dn.3 24577.480917: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122706              ps-13421 (13421) [004] d..2 24577.480919: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122707     kworker/1:1-13091 (13091) [001] d..2 24577.480920: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
122708 shell svc 13418-13419 ( 1007) [004] d..2 24577.480927: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122709     kworker/1:1-13091 (13091) [001] d..3 24577.480929: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
122710     kworker/1:1-13091 (13091) [001] d..2 24577.480936: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
122711            adbd-23484 ( 1007) [001] d..2 24577.480954: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
122712            adbd-23484 ( 1007) [001] d..3 24577.480960: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
122713              ps-13421 (13421) [004] d..2 24577.480985: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122714              ps-13421 (13421) [004] dn.3 24577.480988: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122715              ps-13421 (13421) [004] d..2 24577.480990: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122716 shell svc 13418-13419 ( 1007) [004] d..2 24577.480997: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122717            adbd-23484 ( 1007) [001] d..2 24577.481000: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
122718              ps-13421 (13421) [004] d..2 24577.481051: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122719              ps-13421 (13421) [004] dn.3 24577.481054: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122720              ps-13421 (13421) [004] d..2 24577.481057: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122721            adbd-1007  ( 1007) [001] d..1 24577.481061: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
122722 shell svc 13418-13419 ( 1007) [004] d..2 24577.481065: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122723            adbd-1007  ( 1007) [001] d..2 24577.481072: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
122724          <idle>-0     (-----) [003] .n.1 24577.481076: cpu_idle: state=4294967295 cpu_id=3
122725          <idle>-0     (-----) [003] d..2 24577.481082: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
122726            adbd-1007  ( 1007) [001] d..2 24577.481105: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122727          <idle>-0     (-----) [001] d..1 24577.481113: cpu_idle: state=0 cpu_id=1
122728              ps-13421 (13421) [004] d..2 24577.481117: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122729              ps-13421 (13421) [004] dn.3 24577.481120: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122730              ps-13421 (13421) [004] d..2 24577.481122: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122731            adbd-23485 ( 1007) [003] d..2 24577.481124: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122732          <idle>-0     (-----) [003] d..1 24577.481129: cpu_idle: state=0 cpu_id=3
122733 shell svc 13418-13419 ( 1007) [004] d..2 24577.481129: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122734          <idle>-0     (-----) [001] d.h3 24577.481135: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122735          <idle>-0     (-----) [001] dnh4 24577.481141: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122736          <idle>-0     (-----) [001] .n.1 24577.481147: cpu_idle: state=4294967295 cpu_id=1
122737          <idle>-0     (-----) [001] d..2 24577.481152: 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
122738   kworker/u17:2-23076 (23076) [001] d..2 24577.481159: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122739   kworker/u17:2-23076 (23076) [001] d..3 24577.481165: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122740   kworker/u17:2-23076 (23076) [001] d..2 24577.481180: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122741              ps-13421 (13421) [004] d..2 24577.481183: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122742     kworker/1:1-13091 (13091) [001] d..2 24577.481185: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
122743              ps-13421 (13421) [004] dn.3 24577.481186: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122744              ps-13421 (13421) [004] d..2 24577.481188: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122745     kworker/1:1-13091 (13091) [001] d..3 24577.481193: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
122746 shell svc 13418-13419 ( 1007) [004] d..2 24577.481196: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122747          <idle>-0     (-----) [003] .n.1 24577.481198: cpu_idle: state=4294967295 cpu_id=3
122748          <idle>-0     (-----) [003] d..2 24577.481203: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
122749     kworker/1:1-13091 (13091) [001] d..2 24577.481206: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122750          <idle>-0     (-----) [001] d..1 24577.481213: cpu_idle: state=0 cpu_id=1
122751            adbd-23485 ( 1007) [003] d..2 24577.481244: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122752          <idle>-0     (-----) [003] d..1 24577.481248: cpu_idle: state=0 cpu_id=3
122753              ps-13421 (13421) [004] d..2 24577.481251: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122754              ps-13421 (13421) [004] dn.3 24577.481254: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122755              ps-13421 (13421) [004] d..2 24577.481256: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122756 shell svc 13418-13419 ( 1007) [004] d..2 24577.481263: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122757          <idle>-0     (-----) [001] d.h3 24577.481270: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122758          <idle>-0     (-----) [001] dnh4 24577.481275: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122759          <idle>-0     (-----) [001] .n.1 24577.481280: cpu_idle: state=4294967295 cpu_id=1
122760          <idle>-0     (-----) [001] d..2 24577.481285: 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
122761   kworker/u17:2-23076 (23076) [001] d..2 24577.481291: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122762   kworker/u17:2-23076 (23076) [001] d..3 24577.481296: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122763   kworker/u17:2-23076 (23076) [001] d..2 24577.481311: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122764              ps-13421 (13421) [004] d..2 24577.481316: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122765     kworker/1:1-13091 (13091) [001] d..2 24577.481317: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
122766              ps-13421 (13421) [004] dn.3 24577.481319: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122767              ps-13421 (13421) [004] d..2 24577.481321: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122768     kworker/1:1-13091 (13091) [001] d..3 24577.481325: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
122769 shell svc 13418-13419 ( 1007) [004] d..2 24577.481329: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122770          <idle>-0     (-----) [003] .n.1 24577.481330: cpu_idle: state=4294967295 cpu_id=3
122771          <idle>-0     (-----) [003] d..2 24577.481334: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
122772     kworker/1:1-13091 (13091) [001] d..2 24577.481337: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122773          <idle>-0     (-----) [001] d..1 24577.481344: cpu_idle: state=0 cpu_id=1
122774            adbd-23485 ( 1007) [003] d..2 24577.481350: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122775          <idle>-0     (-----) [003] d..1 24577.481354: cpu_idle: state=0 cpu_id=3
122776              ps-13421 (13421) [004] d..2 24577.481384: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122777              ps-13421 (13421) [004] dn.3 24577.481388: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122778              ps-13421 (13421) [004] d..2 24577.481390: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122779 shell svc 13418-13419 ( 1007) [004] d..2 24577.481397: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122780          <idle>-0     (-----) [001] d.h3 24577.481447: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122781              ps-13421 (13421) [004] d..2 24577.481452: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122782          <idle>-0     (-----) [001] dnh4 24577.481452: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122783              ps-13421 (13421) [004] dn.3 24577.481455: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122784          <idle>-0     (-----) [001] .n.1 24577.481457: cpu_idle: state=4294967295 cpu_id=1
122785              ps-13421 (13421) [004] d..2 24577.481457: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122786          <idle>-0     (-----) [001] d..2 24577.481462: 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
122787 shell svc 13418-13419 ( 1007) [004] d..2 24577.481464: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122788   kworker/u17:2-23076 (23076) [001] d..2 24577.481468: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122789   kworker/u17:2-23076 (23076) [001] d..3 24577.481473: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122790   kworker/u17:2-23076 (23076) [001] d..2 24577.481488: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122791     kworker/1:1-13091 (13091) [001] d..2 24577.481494: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
122792     kworker/1:1-13091 (13091) [001] d..3 24577.481502: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
122793     kworker/1:1-13091 (13091) [001] d..2 24577.481510: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
122794            adbd-23484 ( 1007) [001] d..2 24577.481519: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
122795              ps-13421 (13421) [004] d..2 24577.481521: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122796              ps-13421 (13421) [004] dn.3 24577.481523: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122797            adbd-23484 ( 1007) [001] d..3 24577.481525: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
122798              ps-13421 (13421) [004] d..2 24577.481526: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122799 shell svc 13418-13419 ( 1007) [004] d..2 24577.481533: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122800            adbd-23484 ( 1007) [001] d..2 24577.481565: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
122801              ps-13421 (13421) [004] d..2 24577.481587: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122802              ps-13421 (13421) [004] dn.3 24577.481589: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122803              ps-13421 (13421) [004] d..2 24577.481592: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122804 shell svc 13418-13419 ( 1007) [004] d..2 24577.481599: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122805            adbd-1007  ( 1007) [001] d..1 24577.481625: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
122806            adbd-1007  ( 1007) [001] d..2 24577.481636: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
122807          <idle>-0     (-----) [003] .n.1 24577.481640: cpu_idle: state=4294967295 cpu_id=3
122808          <idle>-0     (-----) [003] d..2 24577.481644: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
122809              ps-13421 (13421) [004] d..2 24577.481657: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122810              ps-13421 (13421) [004] dn.3 24577.481661: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122811              ps-13421 (13421) [004] d..2 24577.481663: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122812            adbd-1007  ( 1007) [001] d..2 24577.481667: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122813 shell svc 13418-13419 ( 1007) [004] d..2 24577.481670: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122814          <idle>-0     (-----) [001] d..1 24577.481675: cpu_idle: state=0 cpu_id=1
122815            adbd-23485 ( 1007) [003] d..2 24577.481686: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122816          <idle>-0     (-----) [003] d..1 24577.481690: cpu_idle: state=0 cpu_id=3
122817          <idle>-0     (-----) [001] d.h3 24577.481697: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122818          <idle>-0     (-----) [001] dnh4 24577.481703: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122819          <idle>-0     (-----) [001] .n.1 24577.481709: cpu_idle: state=4294967295 cpu_id=1
122820          <idle>-0     (-----) [001] d..2 24577.481714: 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
122821   kworker/u17:2-23076 (23076) [001] d..2 24577.481722: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122822              ps-13421 (13421) [004] d..2 24577.481726: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122823   kworker/u17:2-23076 (23076) [001] d..3 24577.481727: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122824              ps-13421 (13421) [004] dn.3 24577.481729: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122825              ps-13421 (13421) [004] d..2 24577.481731: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122826 shell svc 13418-13419 ( 1007) [004] d..2 24577.481738: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122827   kworker/u17:2-23076 (23076) [001] d..2 24577.481742: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122828     kworker/1:1-13091 (13091) [001] d..2 24577.481747: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
122829     kworker/1:1-13091 (13091) [001] d..3 24577.481756: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
122830          <idle>-0     (-----) [003] .n.1 24577.481760: cpu_idle: state=4294967295 cpu_id=3
122831          <idle>-0     (-----) [003] d..2 24577.481765: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
122832     kworker/1:1-13091 (13091) [001] d..2 24577.481770: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122833          <idle>-0     (-----) [001] d..1 24577.481776: cpu_idle: state=0 cpu_id=1
122834              ps-13421 (13421) [004] d..2 24577.481790: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122835              ps-13421 (13421) [004] dn.3 24577.481793: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122836              ps-13421 (13421) [004] d..2 24577.481795: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122837 shell svc 13418-13419 ( 1007) [004] d..2 24577.481802: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122838            adbd-23485 ( 1007) [003] d..2 24577.481808: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122839          <idle>-0     (-----) [003] d..1 24577.481812: cpu_idle: state=0 cpu_id=3
122840          <idle>-0     (-----) [001] d.h3 24577.481837: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122841          <idle>-0     (-----) [001] dnh4 24577.481842: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122842          <idle>-0     (-----) [001] .n.1 24577.481847: cpu_idle: state=4294967295 cpu_id=1
122843          <idle>-0     (-----) [001] d..2 24577.481852: 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
122844              ps-13421 (13421) [004] d..2 24577.481854: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122845              ps-13421 (13421) [004] dn.3 24577.481857: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122846   kworker/u17:2-23076 (23076) [001] d..2 24577.481859: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122847              ps-13421 (13421) [004] d..2 24577.481860: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122848   kworker/u17:2-23076 (23076) [001] d..3 24577.481864: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122849 shell svc 13418-13419 ( 1007) [004] d..2 24577.481867: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122850   kworker/u17:2-23076 (23076) [001] d..2 24577.481878: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122851     kworker/1:1-13091 (13091) [001] d..2 24577.481883: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
122852     kworker/1:1-13091 (13091) [001] d..3 24577.481892: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
122853          <idle>-0     (-----) [003] .n.1 24577.481896: cpu_idle: state=4294967295 cpu_id=3
122854          <idle>-0     (-----) [003] d..2 24577.481901: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
122855     kworker/1:1-13091 (13091) [001] d..2 24577.481906: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122856          <idle>-0     (-----) [001] d..1 24577.481912: cpu_idle: state=0 cpu_id=1
122857            adbd-23485 ( 1007) [003] d..2 24577.481915: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122858          <idle>-0     (-----) [003] d..1 24577.481919: cpu_idle: state=0 cpu_id=3
122859              ps-13421 (13421) [004] d..2 24577.481920: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122860              ps-13421 (13421) [004] dn.3 24577.481923: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122861              ps-13421 (13421) [004] d..2 24577.481925: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122862 shell svc 13418-13419 ( 1007) [004] d..2 24577.481932: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122863              ps-13421 (13421) [004] d..2 24577.481991: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122864              ps-13421 (13421) [004] dn.3 24577.481993: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122865              ps-13421 (13421) [004] d..2 24577.481996: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122866 shell svc 13418-13419 ( 1007) [004] d..2 24577.482003: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122867          <idle>-0     (-----) [001] d.h3 24577.482015: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122868          <idle>-0     (-----) [001] dnh4 24577.482020: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122869          <idle>-0     (-----) [001] .n.1 24577.482025: cpu_idle: state=4294967295 cpu_id=1
122870          <idle>-0     (-----) [001] d..2 24577.482030: 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
122871   kworker/u17:2-23076 (23076) [001] d..2 24577.482036: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122872   kworker/u17:2-23076 (23076) [001] d..3 24577.482041: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122873   kworker/u17:2-23076 (23076) [001] d..2 24577.482056: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122874              ps-13421 (13421) [004] d..2 24577.482056: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122875              ps-13421 (13421) [004] dn.3 24577.482059: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122876     kworker/1:1-13091 (13091) [001] d..2 24577.482061: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
122877              ps-13421 (13421) [004] d..2 24577.482061: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122878 shell svc 13418-13419 ( 1007) [004] d..2 24577.482069: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122879     kworker/1:1-13091 (13091) [001] d..3 24577.482069: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
122880     kworker/1:1-13091 (13091) [001] d..2 24577.482077: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
122881            adbd-23484 ( 1007) [001] d..2 24577.482087: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
122882            adbd-23484 ( 1007) [001] d..3 24577.482092: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
122883              ps-13421 (13421) [004] d..2 24577.482123: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122884              ps-13421 (13421) [004] dn.3 24577.482126: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122885              ps-13421 (13421) [004] d..2 24577.482128: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122886            adbd-23484 ( 1007) [001] d..2 24577.482133: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
122887 shell svc 13418-13419 ( 1007) [004] d..2 24577.482135: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122888              ps-13421 (13421) [004] d..2 24577.482189: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122889            adbd-1007  ( 1007) [001] d..1 24577.482192: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
122890              ps-13421 (13421) [004] dn.3 24577.482193: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122891              ps-13421 (13421) [004] d..2 24577.482195: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122892 shell svc 13418-13419 ( 1007) [004] d..2 24577.482202: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122893            adbd-1007  ( 1007) [001] d..2 24577.482205: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
122894          <idle>-0     (-----) [003] .n.1 24577.482209: cpu_idle: state=4294967295 cpu_id=3
122895          <idle>-0     (-----) [003] d..2 24577.482215: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
122896            adbd-1007  ( 1007) [001] d..2 24577.482237: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122897          <idle>-0     (-----) [001] d..1 24577.482245: cpu_idle: state=0 cpu_id=1
122898              ps-13421 (13421) [004] d..2 24577.482255: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122899            adbd-23485 ( 1007) [003] d..2 24577.482256: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122900              ps-13421 (13421) [004] dn.3 24577.482258: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122901              ps-13421 (13421) [004] d..2 24577.482261: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122902          <idle>-0     (-----) [003] d..1 24577.482261: cpu_idle: state=0 cpu_id=3
122903 shell svc 13418-13419 ( 1007) [004] d..2 24577.482268: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122904          <idle>-0     (-----) [001] d.h3 24577.482281: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122905          <idle>-0     (-----) [001] dnh4 24577.482287: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122906          <idle>-0     (-----) [001] .n.1 24577.482292: cpu_idle: state=4294967295 cpu_id=1
122907          <idle>-0     (-----) [001] d..2 24577.482298: 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
122908   kworker/u17:2-23076 (23076) [001] d..2 24577.482305: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122909   kworker/u17:2-23076 (23076) [001] d..3 24577.482310: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122910              ps-13421 (13421) [004] d..2 24577.482326: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122911   kworker/u17:2-23076 (23076) [001] d..2 24577.482326: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122912              ps-13421 (13421) [004] dn.3 24577.482329: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122913              ps-13421 (13421) [004] d..2 24577.482331: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122914     kworker/1:1-13091 (13091) [001] d..2 24577.482331: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
122915 shell svc 13418-13419 ( 1007) [004] d..2 24577.482338: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122916     kworker/1:1-13091 (13091) [001] d..3 24577.482340: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
122917          <idle>-0     (-----) [003] .n.1 24577.482344: cpu_idle: state=4294967295 cpu_id=3
122918          <idle>-0     (-----) [003] d..2 24577.482349: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
122919     kworker/1:1-13091 (13091) [001] d..2 24577.482354: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122920          <idle>-0     (-----) [001] d..1 24577.482360: cpu_idle: state=0 cpu_id=1
122921            adbd-23485 ( 1007) [003] d..2 24577.482391: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122922              ps-13421 (13421) [004] d..2 24577.482392: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122923          <idle>-0     (-----) [003] d..1 24577.482395: cpu_idle: state=0 cpu_id=3
122924              ps-13421 (13421) [004] dn.3 24577.482396: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122925              ps-13421 (13421) [004] d..2 24577.482398: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122926 shell svc 13418-13419 ( 1007) [004] d..2 24577.482405: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122927          <idle>-0     (-----) [001] d.h3 24577.482416: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122928          <idle>-0     (-----) [001] dnh4 24577.482424: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122929          <idle>-0     (-----) [001] .n.1 24577.482430: cpu_idle: state=4294967295 cpu_id=1
122930          <idle>-0     (-----) [001] d..2 24577.482435: 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
122931   kworker/u17:2-23076 (23076) [001] d..2 24577.482443: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122932   kworker/u17:2-23076 (23076) [001] d..3 24577.482447: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122933              ps-13421 (13421) [004] d..2 24577.482461: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122934   kworker/u17:2-23076 (23076) [001] d..2 24577.482462: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122935              ps-13421 (13421) [004] dn.3 24577.482464: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122936              ps-13421 (13421) [004] d..2 24577.482466: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122937     kworker/1:1-13091 (13091) [001] d..2 24577.482466: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
122938 shell svc 13418-13419 ( 1007) [004] d..2 24577.482473: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122939     kworker/1:1-13091 (13091) [001] d..3 24577.482474: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
122940          <idle>-0     (-----) [003] .n.1 24577.482479: cpu_idle: state=4294967295 cpu_id=3
122941          <idle>-0     (-----) [003] d..2 24577.482484: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
122942     kworker/1:1-13091 (13091) [001] d..2 24577.482487: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122943          <idle>-0     (-----) [001] d..1 24577.482493: cpu_idle: state=0 cpu_id=1
122944            adbd-23485 ( 1007) [003] d..2 24577.482498: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122945          <idle>-0     (-----) [003] d..1 24577.482502: cpu_idle: state=0 cpu_id=3
122946              ps-13421 (13421) [004] d..2 24577.482527: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122947              ps-13421 (13421) [004] dn.3 24577.482531: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122948              ps-13421 (13421) [004] d..2 24577.482533: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122949 shell svc 13418-13419 ( 1007) [004] d..2 24577.482540: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122950          <idle>-0     (-----) [001] d.h3 24577.482590: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122951          <idle>-0     (-----) [001] dnh4 24577.482595: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122952              ps-13421 (13421) [004] d..2 24577.482596: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122953              ps-13421 (13421) [004] dn.3 24577.482599: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122954          <idle>-0     (-----) [001] .n.1 24577.482601: cpu_idle: state=4294967295 cpu_id=1
122955              ps-13421 (13421) [004] d..2 24577.482601: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122956          <idle>-0     (-----) [001] d..2 24577.482606: 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
122957 shell svc 13418-13419 ( 1007) [004] d..2 24577.482608: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122958   kworker/u17:2-23076 (23076) [001] d..2 24577.482612: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122959   kworker/u17:2-23076 (23076) [001] d..3 24577.482616: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122960   kworker/u17:2-23076 (23076) [001] d..2 24577.482631: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122961     kworker/1:1-13091 (13091) [001] d..2 24577.482637: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
122962     kworker/1:1-13091 (13091) [001] d..3 24577.482645: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
122963     kworker/1:1-13091 (13091) [001] d..2 24577.482652: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
122964            adbd-23484 ( 1007) [001] d..2 24577.482662: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
122965              ps-13421 (13421) [004] d..2 24577.482663: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122966              ps-13421 (13421) [004] dn.3 24577.482666: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122967            adbd-23484 ( 1007) [001] d..3 24577.482668: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
122968              ps-13421 (13421) [004] d..2 24577.482669: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122969 shell svc 13418-13419 ( 1007) [004] d..2 24577.482676: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122970            adbd-23484 ( 1007) [001] d..2 24577.482708: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
122971              ps-13421 (13421) [004] d..2 24577.482729: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122972              ps-13421 (13421) [004] dn.3 24577.482732: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122973              ps-13421 (13421) [004] d..2 24577.482734: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122974 shell svc 13418-13419 ( 1007) [004] d..2 24577.482741: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122975            adbd-1007  ( 1007) [001] d..1 24577.482768: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
122976            adbd-1007  ( 1007) [001] d..2 24577.482779: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
122977          <idle>-0     (-----) [003] .n.1 24577.482783: cpu_idle: state=4294967295 cpu_id=3
122978          <idle>-0     (-----) [003] d..2 24577.482788: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
122979              ps-13421 (13421) [004] d..2 24577.482795: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122980              ps-13421 (13421) [004] dn.3 24577.482798: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122981              ps-13421 (13421) [004] d..2 24577.482800: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122982 shell svc 13418-13419 ( 1007) [004] d..2 24577.482807: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122983            adbd-1007  ( 1007) [001] d..2 24577.482810: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122984          <idle>-0     (-----) [001] d..1 24577.482818: cpu_idle: state=0 cpu_id=1
122985            adbd-23485 ( 1007) [003] d..2 24577.482829: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122986          <idle>-0     (-----) [003] d..1 24577.482833: cpu_idle: state=0 cpu_id=3
122987          <idle>-0     (-----) [001] d.h3 24577.482841: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122988          <idle>-0     (-----) [001] dnh4 24577.482846: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
122989          <idle>-0     (-----) [001] .n.1 24577.482852: cpu_idle: state=4294967295 cpu_id=1
122990          <idle>-0     (-----) [001] d..2 24577.482857: 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
122991              ps-13421 (13421) [004] d..2 24577.482862: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122992              ps-13421 (13421) [004] dn.3 24577.482865: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
122993   kworker/u17:2-23076 (23076) [001] d..2 24577.482865: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122994              ps-13421 (13421) [004] d..2 24577.482867: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
122995   kworker/u17:2-23076 (23076) [001] d..3 24577.482871: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
122996 shell svc 13418-13419 ( 1007) [004] d..2 24577.482874: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
122997   kworker/u17:2-23076 (23076) [001] d..2 24577.482886: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
122998     kworker/1:1-13091 (13091) [001] d..2 24577.482891: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
122999     kworker/1:1-13091 (13091) [001] d..3 24577.482899: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
123000          <idle>-0     (-----) [003] .n.1 24577.482904: cpu_idle: state=4294967295 cpu_id=3
123001          <idle>-0     (-----) [003] d..2 24577.482909: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123002     kworker/1:1-13091 (13091) [001] d..2 24577.482913: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123003          <idle>-0     (-----) [001] d..1 24577.482920: cpu_idle: state=0 cpu_id=1
123004              ps-13421 (13421) [004] d..2 24577.482931: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123005              ps-13421 (13421) [004] dn.3 24577.482934: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123006              ps-13421 (13421) [004] d..2 24577.482936: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123007 shell svc 13418-13419 ( 1007) [004] d..2 24577.482943: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123008            adbd-23485 ( 1007) [003] d..2 24577.482950: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123009          <idle>-0     (-----) [003] d..1 24577.482955: cpu_idle: state=0 cpu_id=3
123010          <idle>-0     (-----) [001] d.h3 24577.482982: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123011          <idle>-0     (-----) [001] dnh4 24577.482987: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123012          <idle>-0     (-----) [001] .n.1 24577.482992: cpu_idle: state=4294967295 cpu_id=1
123013          <idle>-0     (-----) [001] d..2 24577.482997: 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
123014              ps-13421 (13421) [004] d..2 24577.482997: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123015              ps-13421 (13421) [004] dn.3 24577.483000: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123016              ps-13421 (13421) [004] d..2 24577.483002: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123017   kworker/u17:2-23076 (23076) [001] d..2 24577.483004: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123018 shell svc 13418-13419 ( 1007) [004] d..2 24577.483009: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123019   kworker/u17:2-23076 (23076) [001] d..3 24577.483009: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123020   kworker/u17:2-23076 (23076) [001] d..2 24577.483024: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123021     kworker/1:1-13091 (13091) [001] d..2 24577.483029: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
123022     kworker/1:1-13091 (13091) [001] d..3 24577.483038: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
123023          <idle>-0     (-----) [003] .n.1 24577.483042: cpu_idle: state=4294967295 cpu_id=3
123024          <idle>-0     (-----) [003] d..2 24577.483047: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123025     kworker/1:1-13091 (13091) [001] d..2 24577.483051: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123026          <idle>-0     (-----) [001] d..1 24577.483057: cpu_idle: state=0 cpu_id=1
123027            adbd-23485 ( 1007) [003] d..2 24577.483061: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123028              ps-13421 (13421) [004] d..2 24577.483063: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123029          <idle>-0     (-----) [003] d..1 24577.483066: cpu_idle: state=0 cpu_id=3
123030              ps-13421 (13421) [004] dn.3 24577.483066: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123031              ps-13421 (13421) [004] d..2 24577.483069: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123032 shell svc 13418-13419 ( 1007) [004] d..2 24577.483076: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123033              ps-13421 (13421) [004] d..2 24577.483135: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123034              ps-13421 (13421) [004] dn.3 24577.483138: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123035              ps-13421 (13421) [004] d..2 24577.483140: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123036 shell svc 13418-13419 ( 1007) [004] d..2 24577.483147: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123037          <idle>-0     (-----) [001] d.h3 24577.483155: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123038          <idle>-0     (-----) [001] dnh4 24577.483161: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123039          <idle>-0     (-----) [001] .n.1 24577.483166: cpu_idle: state=4294967295 cpu_id=1
123040          <idle>-0     (-----) [001] d..2 24577.483171: 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
123041   kworker/u17:2-23076 (23076) [001] d..2 24577.483177: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123042   kworker/u17:2-23076 (23076) [001] d..3 24577.483181: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123043   kworker/u17:2-23076 (23076) [001] d..2 24577.483198: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123044              ps-13421 (13421) [004] d..2 24577.483200: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123045     kworker/1:1-13091 (13091) [001] d..2 24577.483203: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
123046              ps-13421 (13421) [004] dn.3 24577.483203: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123047              ps-13421 (13421) [004] d..2 24577.483206: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123048     kworker/1:1-13091 (13091) [001] d..3 24577.483211: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
123049 shell svc 13418-13419 ( 1007) [004] d..2 24577.483213: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123050     kworker/1:1-13091 (13091) [001] d..2 24577.483219: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
123051            adbd-23484 ( 1007) [001] d..2 24577.483229: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
123052            adbd-23484 ( 1007) [001] d..3 24577.483234: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
123053              ps-13421 (13421) [004] d..2 24577.483268: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123054              ps-13421 (13421) [004] dn.3 24577.483271: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123055              ps-13421 (13421) [004] d..2 24577.483273: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123056            adbd-23484 ( 1007) [001] d..2 24577.483275: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
123057 shell svc 13418-13419 ( 1007) [004] d..2 24577.483280: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123058            adbd-1007  ( 1007) [001] d..1 24577.483334: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
123059              ps-13421 (13421) [004] d..2 24577.483335: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123060              ps-13421 (13421) [004] dn.3 24577.483338: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123061              ps-13421 (13421) [004] d..2 24577.483341: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123062            adbd-1007  ( 1007) [001] d..2 24577.483346: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
123063 shell svc 13418-13419 ( 1007) [004] d..2 24577.483348: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123064          <idle>-0     (-----) [003] .n.1 24577.483350: cpu_idle: state=4294967295 cpu_id=3
123065          <idle>-0     (-----) [003] d..2 24577.483355: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123066            adbd-1007  ( 1007) [001] d..2 24577.483377: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123067          <idle>-0     (-----) [001] d..1 24577.483385: cpu_idle: state=0 cpu_id=1
123068            adbd-23485 ( 1007) [003] d..2 24577.483396: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123069          <idle>-0     (-----) [003] d..1 24577.483400: cpu_idle: state=0 cpu_id=3
123070          <idle>-0     (-----) [001] d.h3 24577.483403: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123071              ps-13421 (13421) [004] d..2 24577.483404: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123072              ps-13421 (13421) [004] dn.3 24577.483407: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123073              ps-13421 (13421) [004] d..2 24577.483409: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123074          <idle>-0     (-----) [001] dnh4 24577.483410: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123075          <idle>-0     (-----) [001] .n.1 24577.483415: cpu_idle: state=4294967295 cpu_id=1
123076 shell svc 13418-13419 ( 1007) [004] d..2 24577.483416: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123077          <idle>-0     (-----) [001] d..2 24577.483421: 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
123078   kworker/u17:2-23076 (23076) [001] d..2 24577.483428: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123079   kworker/u17:2-23076 (23076) [001] d..3 24577.483433: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123080   kworker/u17:2-23076 (23076) [001] d..2 24577.483449: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123081     kworker/1:1-13091 (13091) [001] d..2 24577.483454: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
123082     kworker/1:1-13091 (13091) [001] d..3 24577.483462: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
123083          <idle>-0     (-----) [003] .n.1 24577.483467: cpu_idle: state=4294967295 cpu_id=3
123084              ps-13421 (13421) [004] d..2 24577.483470: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123085          <idle>-0     (-----) [003] d..2 24577.483472: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123086              ps-13421 (13421) [004] dn.3 24577.483473: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123087     kworker/1:1-13091 (13091) [001] d..2 24577.483475: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123088              ps-13421 (13421) [004] d..2 24577.483475: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123089          <idle>-0     (-----) [001] d..1 24577.483482: cpu_idle: state=0 cpu_id=1
123090 shell svc 13418-13419 ( 1007) [004] d..2 24577.483483: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123091            adbd-23485 ( 1007) [003] d..2 24577.483513: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123092          <idle>-0     (-----) [003] d..1 24577.483518: cpu_idle: state=0 cpu_id=3
123093              ps-13421 (13421) [004] d..2 24577.483538: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123094              ps-13421 (13421) [004] dn.3 24577.483541: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123095          <idle>-0     (-----) [003] d.h2 24577.483541: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
123096          <idle>-0     (-----) [001] d.h3 24577.483541: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123097              ps-13421 (13421) [004] d..2 24577.483543: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123098          <idle>-0     (-----) [001] dnh4 24577.483547: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123099 shell svc 13418-13419 ( 1007) [004] d..2 24577.483550: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123100          <idle>-0     (-----) [003] dnh3 24577.483551: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
123101          <idle>-0     (-----) [001] .n.1 24577.483552: cpu_idle: state=4294967295 cpu_id=1
123102          <idle>-0     (-----) [003] .n.1 24577.483556: cpu_idle: state=4294967295 cpu_id=3
123103          <idle>-0     (-----) [001] d..2 24577.483557: 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
123104          <idle>-0     (-----) [003] d..2 24577.483561: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
123105   kworker/u17:2-23076 (23076) [001] d..2 24577.483563: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123106   kworker/u17:2-23076 (23076) [001] d..3 24577.483568: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123107        DispSync-23904 (23896) [003] d..1 24577.483579: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
123108   kworker/u17:2-23076 (23076) [001] d..2 24577.483583: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123109     kworker/1:1-13091 (13091) [001] d..2 24577.483588: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
123110        DispSync-23904 (23896) [003] d..2 24577.483593: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
123111     kworker/1:1-13091 (13091) [001] d..3 24577.483596: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
123112              ps-13421 (13421) [004] d..2 24577.483602: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123113              ps-13421 (13421) [004] dn.3 24577.483605: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123114        DispSync-23904 (23896) [003] d..2 24577.483607: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
123115              ps-13421 (13421) [004] d..2 24577.483608: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123116     kworker/1:1-13091 (13091) [001] d..2 24577.483609: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123117 shell svc 13418-13419 ( 1007) [004] d..2 24577.483615: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123118          <idle>-0     (-----) [001] d..1 24577.483616: cpu_idle: state=0 cpu_id=1
123119            adbd-23485 ( 1007) [003] d..2 24577.483626: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123120          <idle>-0     (-----) [003] d..1 24577.483631: cpu_idle: state=0 cpu_id=3
123121              ps-13421 (13421) [004] d..2 24577.483669: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123122              ps-13421 (13421) [004] dn.3 24577.483671: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123123              ps-13421 (13421) [004] d..2 24577.483674: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123124 shell svc 13418-13419 ( 1007) [004] d..2 24577.483681: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123125          <idle>-0     (-----) [002] .n.1 24577.483702: cpu_idle: state=4294967295 cpu_id=2
123126          <idle>-0     (-----) [002] d..2 24577.483713: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
123127          <idle>-0     (-----) [001] d.h3 24577.483730: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123128              ps-13421 (13421) [004] d..2 24577.483734: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123129          <idle>-0     (-----) [001] dnh4 24577.483735: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123130              ps-13421 (13421) [004] dn.3 24577.483737: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123131              ps-13421 (13421) [004] d..2 24577.483739: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123132          <idle>-0     (-----) [001] .n.1 24577.483740: cpu_idle: state=4294967295 cpu_id=1
123133          <idle>-0     (-----) [001] d..2 24577.483745: 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
123134 shell svc 13418-13419 ( 1007) [004] d..2 24577.483746: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123135  appEventThread-23905 (23896) [002] d..3 24577.483748: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
123136   kworker/u17:2-23076 (23076) [001] d..2 24577.483751: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123137   kworker/u17:2-23076 (23076) [001] d..3 24577.483756: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123138  appEventThread-23905 (23896) [002] d..4 24577.483768: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
123139   kworker/u17:2-23076 (23076) [001] d..2 24577.483770: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123140     kworker/1:1-13091 (13091) [001] d..2 24577.483775: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
123141  appEventThread-23905 (23896) [002] d..2 24577.483792: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
123142              ps-13421 (13421) [004] d..2 24577.483797: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123143              ps-13421 (13421) [004] dn.3 24577.483800: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123144     kworker/1:1-13091 (13091) [001] d..3 24577.483802: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
123145              ps-13421 (13421) [004] d..2 24577.483802: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123146          <idle>-0     (-----) [002] d..2 24577.483810: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
123147 shell svc 13418-13419 ( 1007) [004] d..2 24577.483810: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123148     kworker/1:1-13091 (13091) [001] d..2 24577.483815: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123149          <idle>-0     (-----) [001] d..1 24577.483821: cpu_idle: state=0 cpu_id=1
123150            adbd-23484 ( 1007) [002] d..2 24577.483823: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
123151            adbd-23484 ( 1007) [002] d..3 24577.483835: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
123152              ps-13421 (13421) [004] d..2 24577.483861: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123153              ps-13421 (13421) [004] dn.3 24577.483864: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123154              ps-13421 (13421) [004] d..2 24577.483866: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123155          <idle>-0     (-----) [000] .n.1 24577.483867: cpu_idle: state=4294967295 cpu_id=0
123156 shell svc 13418-13419 ( 1007) [004] d..2 24577.483874: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123157          <idle>-0     (-----) [000] d..2 24577.483878: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
123158            adbd-23484 ( 1007) [002] d..2 24577.483879: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
123159              ps-13421 (13421) [004] d..2 24577.483926: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123160              ps-13421 (13421) [004] dn.3 24577.483929: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123161              ps-13421 (13421) [004] d..2 24577.483931: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123162 shell svc 13418-13419 ( 1007) [004] d..2 24577.483939: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123163            adbd-1007  ( 1007) [002] d..1 24577.483946: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
123164            adbd-1007  ( 1007) [002] d..2 24577.483957: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
123165          <idle>-0     (-----) [003] .n.1 24577.483962: cpu_idle: state=4294967295 cpu_id=3
123166          <idle>-0     (-----) [003] d..2 24577.483966: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123167            adbd-1007  ( 1007) [002] d..2 24577.483989: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
123168              ps-13421 (13421) [004] d..2 24577.483990: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123169              ps-13421 (13421) [004] dn.3 24577.483993: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123170              ps-13421 (13421) [004] d..2 24577.483996: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123171          <idle>-0     (-----) [002] d..1 24577.483997: cpu_idle: state=2 cpu_id=2
123172 shell svc 13418-13419 ( 1007) [004] d..2 24577.484003: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123173            adbd-23485 ( 1007) [003] d..2 24577.484010: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123174          <idle>-0     (-----) [003] d..1 24577.484014: cpu_idle: state=0 cpu_id=3
123175          <idle>-0     (-----) [001] d.h3 24577.484031: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123176          <idle>-0     (-----) [001] dnh4 24577.484036: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123177          <idle>-0     (-----) [001] .n.1 24577.484044: cpu_idle: state=4294967295 cpu_id=1
123178          <idle>-0     (-----) [001] d..2 24577.484050: 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
123179              ps-13421 (13421) [004] d..2 24577.484054: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123180   kworker/u17:2-23076 (23076) [001] d..2 24577.484056: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123181              ps-13421 (13421) [004] dn.3 24577.484057: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123182              ps-13421 (13421) [004] d..2 24577.484059: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123183   kworker/u17:2-23076 (23076) [001] d..3 24577.484061: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123184 shell svc 13418-13419 ( 1007) [004] d..2 24577.484066: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123185 s.nexuslauncher-24827 (24827) [000] .... 24577.484067: binder_transaction: transaction=1671635 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
123186 s.nexuslauncher-24827 (24827) [000] d..4 24577.484076: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=000
123187   kworker/u17:2-23076 (23076) [001] d..2 24577.484076: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123188     kworker/1:1-13091 (13091) [001] d..2 24577.484081: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
123189     kworker/1:1-13091 (13091) [001] d..3 24577.484089: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
123190 s.nexuslauncher-24827 (24827) [000] d..5 24577.484093: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
123191          <idle>-0     (-----) [003] .n.1 24577.484094: cpu_idle: state=4294967295 cpu_id=3
123192          <idle>-0     (-----) [003] d..2 24577.484099: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123193     kworker/1:1-13091 (13091) [001] d..2 24577.484102: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123194          <idle>-0     (-----) [001] d..1 24577.484108: cpu_idle: state=0 cpu_id=1
123195              ps-13421 (13421) [004] d..2 24577.484118: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123196              ps-13421 (13421) [004] dn.3 24577.484121: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123197              ps-13421 (13421) [004] d..2 24577.484123: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123198 shell svc 13418-13419 ( 1007) [004] d..2 24577.484130: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123199            adbd-23485 ( 1007) [003] d..2 24577.484139: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123200          <idle>-0     (-----) [003] d..1 24577.484143: cpu_idle: state=0 cpu_id=3
123201 s.nexuslauncher-24827 (24827) [000] d..2 24577.484158: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123202          <idle>-0     (-----) [000] d..1 24577.484167: cpu_idle: state=0 cpu_id=0
123203          <idle>-0     (-----) [001] d.h3 24577.484170: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123204          <idle>-0     (-----) [001] dnh4 24577.484176: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123205          <idle>-0     (-----) [001] .n.1 24577.484180: cpu_idle: state=4294967295 cpu_id=1
123206              ps-13421 (13421) [004] d..2 24577.484183: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123207              ps-13421 (13421) [004] dn.3 24577.484186: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123208          <idle>-0     (-----) [001] d..2 24577.484186: 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
123209              ps-13421 (13421) [004] d..2 24577.484188: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123210          <idle>-0     (-----) [002] .n.1 24577.484190: cpu_idle: state=4294967295 cpu_id=2
123211   kworker/u17:2-23076 (23076) [001] d..2 24577.484192: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123212 shell svc 13418-13419 ( 1007) [004] d..2 24577.484195: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123213   kworker/u17:2-23076 (23076) [001] d..3 24577.484197: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123214          <idle>-0     (-----) [002] d..2 24577.484199: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
123215  Binder:23896_5-25989 (23896) [002] .... 24577.484207: binder_transaction_received: transaction=1671635
123216   kworker/u17:2-23076 (23076) [001] d..2 24577.484212: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123217              ps-13421 (13421) [004] d.s2 24577.484221: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
123218          <idle>-0     (-----) [003] d.s2 24577.484228: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
123219     kworker/1:1-13091 (13091) [001] d..2 24577.484234: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
123220          <idle>-0     (-----) [003] dns3 24577.484237: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
123221  Binder:23896_5-25989 (23896) [002] d.h1 24577.484243: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
123222     kworker/1:1-13091 (13091) [001] d..3 24577.484246: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
123223          <idle>-0     (-----) [003] .n.1 24577.484250: cpu_idle: state=4294967295 cpu_id=3
123224          <idle>-0     (-----) [003] d..2 24577.484255: 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
123225     kworker/1:1-13091 (13091) [001] d..2 24577.484263: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123226     rcu_preempt-7     (    7) [003] d..2 24577.484264: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
123227  Binder:23896_5-25989 (23896) [002] d..1 24577.484267: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
123228          <idle>-0     (-----) [001] d..1 24577.484270: cpu_idle: state=0 cpu_id=1
123229              ps-13421 (13421) [004] d..2 24577.484280: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123230  Binder:23896_5-25989 (23896) [002] d..2 24577.484282: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
123231            adbd-23485 ( 1007) [003] d..2 24577.484283: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123232              ps-13421 (13421) [004] dn.3 24577.484284: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123233              ps-13421 (13421) [004] d..2 24577.484287: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123234          <idle>-0     (-----) [000] .n.1 24577.484289: cpu_idle: state=4294967295 cpu_id=0
123235          <idle>-0     (-----) [003] d..1 24577.484289: cpu_idle: state=0 cpu_id=3
123236 shell svc 13418-13419 ( 1007) [004] d..2 24577.484295: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123237          <idle>-0     (-----) [000] d..2 24577.484295: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
123238  Binder:23896_5-25989 (23896) [002] d..2 24577.484305: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
123239  appEventThread-23905 (23896) [000] d..2 24577.484332: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123240              ps-13421 (13421) [004] d..2 24577.484349: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123241          <idle>-0     (-----) [001] d.h3 24577.484351: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123242          <idle>-0     (-----) [000] d..1 24577.484351: cpu_idle: state=0 cpu_id=0
123243              ps-13421 (13421) [004] dn.3 24577.484352: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123244              ps-13421 (13421) [004] d..2 24577.484354: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123245          <idle>-0     (-----) [001] dnh4 24577.484357: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123246          <idle>-0     (-----) [001] .n.1 24577.484361: cpu_idle: state=4294967295 cpu_id=1
123247 shell svc 13418-13419 ( 1007) [004] d..2 24577.484365: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123248          <idle>-0     (-----) [001] d..2 24577.484367: 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
123249   kworker/u17:2-23076 (23076) [001] d..2 24577.484373: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123250   kworker/u17:2-23076 (23076) [001] d..3 24577.484378: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123251   kworker/u17:2-23076 (23076) [001] d..2 24577.484393: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123252     kworker/1:1-13091 (13091) [001] d..2 24577.484399: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
123253     kworker/1:1-13091 (13091) [001] d..3 24577.484407: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
123254     kworker/1:1-13091 (13091) [001] d..2 24577.484419: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123255              ps-13421 (13421) [004] d..2 24577.484434: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123256              ps-13421 (13421) [004] dn.3 24577.484437: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123257              ps-13421 (13421) [004] d..2 24577.484439: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123258          <idle>-0     (-----) [001] d..1 24577.484439: cpu_idle: state=0 cpu_id=1
123259 shell svc 13418-13419 ( 1007) [004] d..2 24577.484447: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123260          <idle>-0     (-----) [001] ...1 24577.484448: cpu_idle: state=4294967295 cpu_id=1
123261          <idle>-0     (-----) [001] d..1 24577.484450: cpu_idle: state=0 cpu_id=1
123262  kworker/u16:16-25995 (25995) [002] .... 24577.484451: clk_set_rate: l3_cluster0_vote_clk 1132800000
123263  kworker/u16:16-25995 (25995) [002] d..2 24577.484461: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
123264            adbd-23484 ( 1007) [002] d..2 24577.484475: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
123265            adbd-23484 ( 1007) [002] d..3 24577.484481: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
123266              ps-13421 (13421) [004] d..2 24577.484501: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123267              ps-13421 (13421) [004] dn.3 24577.484504: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123268              ps-13421 (13421) [004] d..2 24577.484506: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123269 shell svc 13418-13419 ( 1007) [004] d..2 24577.484514: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123270            adbd-23484 ( 1007) [002] d..2 24577.484525: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
123271              ps-13421 (13421) [004] d..2 24577.484568: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123272              ps-13421 (13421) [004] dn.3 24577.484571: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123273              ps-13421 (13421) [004] d..2 24577.484573: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123274 shell svc 13418-13419 ( 1007) [004] d..2 24577.484581: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123275            adbd-1007  ( 1007) [002] d..1 24577.484590: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
123276            adbd-1007  ( 1007) [002] d..2 24577.484616: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123277          <idle>-0     (-----) [000] .n.1 24577.484621: cpu_idle: state=4294967295 cpu_id=0
123278          <idle>-0     (-----) [000] d..2 24577.484626: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123279              ps-13421 (13421) [004] d..2 24577.484634: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123280              ps-13421 (13421) [004] dn.3 24577.484637: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123281              ps-13421 (13421) [004] d..2 24577.484639: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123282 shell svc 13418-13419 ( 1007) [004] d..2 24577.484647: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123283            adbd-1007  ( 1007) [002] d..2 24577.484647: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
123284          <idle>-0     (-----) [002] d..1 24577.484657: cpu_idle: state=0 cpu_id=2
123285            adbd-23485 ( 1007) [000] d..2 24577.484678: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123286          <idle>-0     (-----) [000] d..1 24577.484685: cpu_idle: state=0 cpu_id=0
123287          <idle>-0     (-----) [001] d.h3 24577.484696: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123288              ps-13421 (13421) [004] d..2 24577.484698: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123289              ps-13421 (13421) [004] dn.3 24577.484701: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123290              ps-13421 (13421) [004] d..2 24577.484703: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123291          <idle>-0     (-----) [001] dnh4 24577.484704: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123292          <idle>-0     (-----) [001] .n.1 24577.484708: cpu_idle: state=4294967295 cpu_id=1
123293 shell svc 13418-13419 ( 1007) [004] d..2 24577.484711: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123294          <idle>-0     (-----) [001] d..2 24577.484714: 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
123295   kworker/u17:2-23076 (23076) [001] d..2 24577.484720: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123296   kworker/u17:2-23076 (23076) [001] d..3 24577.484724: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123297   kworker/u17:2-23076 (23076) [001] d..2 24577.484740: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123298     kworker/1:1-13091 (13091) [001] d..2 24577.484745: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123299     kworker/1:1-13091 (13091) [001] d..3 24577.484754: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123300          <idle>-0     (-----) [000] .n.1 24577.484759: cpu_idle: state=4294967295 cpu_id=0
123301              ps-13421 (13421) [004] d..2 24577.484764: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123302          <idle>-0     (-----) [000] d..2 24577.484765: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123303              ps-13421 (13421) [004] dn.3 24577.484766: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123304     kworker/1:1-13091 (13091) [001] d..2 24577.484768: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123305              ps-13421 (13421) [004] d..2 24577.484769: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123306          <idle>-0     (-----) [001] d..1 24577.484774: cpu_idle: state=0 cpu_id=1
123307 shell svc 13418-13419 ( 1007) [004] d..2 24577.484776: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123308            adbd-23485 ( 1007) [000] d..2 24577.484809: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123309          <idle>-0     (-----) [000] d..1 24577.484816: cpu_idle: state=0 cpu_id=0
123310              ps-13421 (13421) [004] d..2 24577.484833: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123311              ps-13421 (13421) [004] dn.3 24577.484837: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123312              ps-13421 (13421) [004] d..2 24577.484839: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123313          <idle>-0     (-----) [001] d.h3 24577.484846: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123314 shell svc 13418-13419 ( 1007) [004] d..2 24577.484846: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123315          <idle>-0     (-----) [001] dnh4 24577.484851: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123316          <idle>-0     (-----) [001] .n.1 24577.484855: cpu_idle: state=4294967295 cpu_id=1
123317          <idle>-0     (-----) [001] d..2 24577.484861: 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
123318   kworker/u17:2-23076 (23076) [001] d..2 24577.484867: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123319   kworker/u17:2-23076 (23076) [001] d..3 24577.484872: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123320   kworker/u17:2-23076 (23076) [001] d..2 24577.484886: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123321     kworker/1:1-13091 (13091) [001] d..2 24577.484891: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123322     kworker/1:1-13091 (13091) [001] d..3 24577.484900: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123323              ps-13421 (13421) [004] d..2 24577.484903: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123324          <idle>-0     (-----) [000] .n.1 24577.484905: cpu_idle: state=4294967295 cpu_id=0
123325              ps-13421 (13421) [004] dn.3 24577.484906: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123326              ps-13421 (13421) [004] d..2 24577.484908: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123327          <idle>-0     (-----) [000] d..2 24577.484910: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123328     kworker/1:1-13091 (13091) [001] d..2 24577.484912: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123329 shell svc 13418-13419 ( 1007) [004] d..2 24577.484915: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123330          <idle>-0     (-----) [001] d..1 24577.484918: cpu_idle: state=0 cpu_id=1
123331            adbd-23485 ( 1007) [000] d..2 24577.484926: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123332          <idle>-0     (-----) [000] d..1 24577.484932: cpu_idle: state=0 cpu_id=0
123333              ps-13421 (13421) [004] d..2 24577.484974: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123334              ps-13421 (13421) [004] dn.3 24577.484977: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123335              ps-13421 (13421) [004] d..2 24577.484980: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123336 shell svc 13418-13419 ( 1007) [004] d..2 24577.484987: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123337          <idle>-0     (-----) [001] d.h3 24577.485034: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123338          <idle>-0     (-----) [001] dnh4 24577.485039: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123339          <idle>-0     (-----) [001] .n.1 24577.485044: cpu_idle: state=4294967295 cpu_id=1
123340              ps-13421 (13421) [004] d..2 24577.485047: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123341              ps-13421 (13421) [004] dn.3 24577.485050: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123342          <idle>-0     (-----) [001] d..2 24577.485050: 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
123343              ps-13421 (13421) [004] d..2 24577.485052: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123344   kworker/u17:2-23076 (23076) [001] d..2 24577.485055: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123345 shell svc 13418-13419 ( 1007) [004] d..2 24577.485059: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123346   kworker/u17:2-23076 (23076) [001] d..3 24577.485060: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123347   kworker/u17:2-23076 (23076) [001] d..2 24577.485075: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123348     kworker/1:1-13091 (13091) [001] d..2 24577.485080: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
123349     kworker/1:1-13091 (13091) [001] d..3 24577.485102: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
123350          <idle>-0     (-----) [000] .n.1 24577.485107: cpu_idle: state=4294967295 cpu_id=0
123351              ps-13421 (13421) [004] d..2 24577.485113: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123352          <idle>-0     (-----) [000] d..2 24577.485113: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
123353     kworker/1:1-13091 (13091) [001] d..2 24577.485115: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123354              ps-13421 (13421) [004] dn.3 24577.485116: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123355              ps-13421 (13421) [004] d..2 24577.485118: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123356          <idle>-0     (-----) [001] d..1 24577.485121: cpu_idle: state=0 cpu_id=1
123357            adbd-23484 ( 1007) [000] d..2 24577.485125: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
123358 shell svc 13418-13419 ( 1007) [004] d..2 24577.485125: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123359            adbd-23484 ( 1007) [000] d..3 24577.485136: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
123360            adbd-23484 ( 1007) [000] d..2 24577.485178: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
123361              ps-13421 (13421) [004] d..2 24577.485178: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123362              ps-13421 (13421) [004] dn.3 24577.485181: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123363              ps-13421 (13421) [004] d..2 24577.485183: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123364 shell svc 13418-13419 ( 1007) [004] d..2 24577.485191: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123365              ps-13421 (13421) [004] d..2 24577.485244: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123366              ps-13421 (13421) [004] dn.3 24577.485247: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123367              ps-13421 (13421) [004] d..2 24577.485249: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123368            adbd-1007  ( 1007) [000] d..1 24577.485256: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123369 shell svc 13418-13419 ( 1007) [004] d..2 24577.485256: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123370            adbd-1007  ( 1007) [000] d..2 24577.485268: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123371            adbd-1007  ( 1007) [000] d..2 24577.485294: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
123372              ps-13421 (13421) [004] d..2 24577.485312: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123373              ps-13421 (13421) [004] dn.3 24577.485314: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123374              ps-13421 (13421) [004] d..2 24577.485316: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123375 shell svc 13418-13419 ( 1007) [004] d..2 24577.485324: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123376            adbd-23485 ( 1007) [000] d..2 24577.485339: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123377          <idle>-0     (-----) [000] d..1 24577.485347: cpu_idle: state=0 cpu_id=0
123378          <idle>-0     (-----) [001] d.h3 24577.485363: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123379          <idle>-0     (-----) [001] dnh4 24577.485368: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123380          <idle>-0     (-----) [001] .n.1 24577.485373: cpu_idle: state=4294967295 cpu_id=1
123381          <idle>-0     (-----) [001] d..2 24577.485379: 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
123382   kworker/u17:2-23076 (23076) [001] d..2 24577.485385: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123383   kworker/u17:2-23076 (23076) [001] d..3 24577.485390: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123384   kworker/u17:2-23076 (23076) [001] d..2 24577.485406: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123385     kworker/1:1-13091 (13091) [001] d..2 24577.485410: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123386     kworker/1:1-13091 (13091) [001] d..3 24577.485419: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123387          <idle>-0     (-----) [000] .n.1 24577.485424: cpu_idle: state=4294967295 cpu_id=0
123388     kworker/1:1-13091 (13091) [001] d..2 24577.485430: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123389          <idle>-0     (-----) [000] d..2 24577.485431: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123390          <idle>-0     (-----) [001] d..1 24577.485436: cpu_idle: state=0 cpu_id=1
123391              ps-13421 (13421) [004] d..2 24577.485450: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123392              ps-13421 (13421) [004] dn.3 24577.485453: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123393              ps-13421 (13421) [004] d..2 24577.485456: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123394 shell svc 13418-13419 ( 1007) [004] d..2 24577.485464: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123395            adbd-23485 ( 1007) [000] d..2 24577.485473: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123396          <idle>-0     (-----) [000] d..1 24577.485479: cpu_idle: state=0 cpu_id=0
123397          <idle>-0     (-----) [001] d.h3 24577.485511: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123398          <idle>-0     (-----) [001] dnh4 24577.485516: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123399          <idle>-0     (-----) [001] .n.1 24577.485520: cpu_idle: state=4294967295 cpu_id=1
123400          <idle>-0     (-----) [001] d..2 24577.485526: 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
123401              ps-13421 (13421) [004] d..2 24577.485531: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123402   kworker/u17:2-23076 (23076) [001] d..2 24577.485532: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123403              ps-13421 (13421) [004] dn.3 24577.485534: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123404   kworker/u17:2-23076 (23076) [001] d..3 24577.485537: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123405              ps-13421 (13421) [004] d..2 24577.485537: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123406 shell svc 13418-13419 ( 1007) [004] d..2 24577.485544: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123407   kworker/u17:2-23076 (23076) [001] d..2 24577.485552: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123408     kworker/1:1-13091 (13091) [001] d..2 24577.485556: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123409     kworker/1:1-13091 (13091) [001] d..3 24577.485564: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123410          <idle>-0     (-----) [000] .n.1 24577.485569: cpu_idle: state=4294967295 cpu_id=0
123411          <idle>-0     (-----) [000] d..2 24577.485575: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123412     kworker/1:1-13091 (13091) [001] d..2 24577.485576: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123413          <idle>-0     (-----) [001] d..1 24577.485583: cpu_idle: state=0 cpu_id=1
123414            adbd-23485 ( 1007) [000] d..2 24577.485589: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123415          <idle>-0     (-----) [000] d..1 24577.485595: cpu_idle: state=0 cpu_id=0
123416              ps-13421 (13421) [004] d..2 24577.485645: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123417              ps-13421 (13421) [004] dn.3 24577.485649: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123418              ps-13421 (13421) [004] d..2 24577.485652: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123419          <idle>-0     (-----) [001] d.h3 24577.485658: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123420 shell svc 13418-13419 ( 1007) [004] d..2 24577.485659: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123421          <idle>-0     (-----) [001] dnh4 24577.485664: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123422          <idle>-0     (-----) [001] .n.1 24577.485668: cpu_idle: state=4294967295 cpu_id=1
123423          <idle>-0     (-----) [001] d..2 24577.485674: 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
123424   kworker/u17:2-23076 (23076) [001] d..2 24577.485679: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123425   kworker/u17:2-23076 (23076) [001] d..3 24577.485684: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123426   kworker/u17:2-23076 (23076) [001] d..2 24577.485699: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123427     kworker/1:1-13091 (13091) [001] d..2 24577.485705: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
123428     kworker/1:1-13091 (13091) [001] d..3 24577.485712: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
123429              ps-13421 (13421) [004] d..2 24577.485717: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123430          <idle>-0     (-----) [000] .n.1 24577.485717: cpu_idle: state=4294967295 cpu_id=0
123431              ps-13421 (13421) [004] dn.3 24577.485720: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123432              ps-13421 (13421) [004] d..2 24577.485722: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123433          <idle>-0     (-----) [000] d..2 24577.485722: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
123434     kworker/1:1-13091 (13091) [001] d..2 24577.485724: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123435 shell svc 13418-13419 ( 1007) [004] d..2 24577.485730: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123436          <idle>-0     (-----) [001] d..1 24577.485730: cpu_idle: state=0 cpu_id=1
123437            adbd-23484 ( 1007) [000] d..2 24577.485732: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
123438            adbd-23484 ( 1007) [000] d..3 24577.485738: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
123439            adbd-23484 ( 1007) [000] d..2 24577.485780: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
123440              ps-13421 (13421) [004] d..2 24577.485789: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123441              ps-13421 (13421) [004] dn.3 24577.485792: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123442              ps-13421 (13421) [004] d..2 24577.485794: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123443 shell svc 13418-13419 ( 1007) [004] d..2 24577.485801: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123444            adbd-1007  ( 1007) [000] d..1 24577.485836: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123445            adbd-1007  ( 1007) [000] d..2 24577.485848: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123446            adbd-1007  ( 1007) [000] d..2 24577.485873: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
123447              ps-13421 (13421) [004] d..2 24577.485894: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123448              ps-13421 (13421) [004] dn.3 24577.485897: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123449              ps-13421 (13421) [004] d..2 24577.485900: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123450 shell svc 13418-13419 ( 1007) [004] d..2 24577.485908: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123451            adbd-23485 ( 1007) [000] d..2 24577.485919: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123452          <idle>-0     (-----) [001] d.h3 24577.485925: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123453          <idle>-0     (-----) [000] d..1 24577.485926: cpu_idle: state=0 cpu_id=0
123454          <idle>-0     (-----) [001] dnh4 24577.485931: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123455          <idle>-0     (-----) [001] .n.1 24577.485935: cpu_idle: state=4294967295 cpu_id=1
123456          <idle>-0     (-----) [001] d..2 24577.485941: 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
123457   kworker/u17:2-23076 (23076) [001] d..2 24577.485947: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123458   kworker/u17:2-23076 (23076) [001] d..3 24577.485952: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123459   kworker/u17:2-23076 (23076) [001] d..2 24577.485967: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123460     kworker/1:1-13091 (13091) [001] d..2 24577.485972: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123461     kworker/1:1-13091 (13091) [001] d..3 24577.485980: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123462          <idle>-0     (-----) [000] .n.1 24577.485986: cpu_idle: state=4294967295 cpu_id=0
123463     kworker/1:1-13091 (13091) [001] d..2 24577.485992: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123464          <idle>-0     (-----) [000] d..2 24577.485993: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123465          <idle>-0     (-----) [001] d..1 24577.485998: cpu_idle: state=0 cpu_id=1
123466              ps-13421 (13421) [004] d..2 24577.486000: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123467              ps-13421 (13421) [004] dn.3 24577.486003: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123468              ps-13421 (13421) [004] d..2 24577.486006: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123469 shell svc 13418-13419 ( 1007) [004] d..2 24577.486013: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123470            adbd-23485 ( 1007) [000] d..2 24577.486034: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123471          <idle>-0     (-----) [000] d..1 24577.486041: cpu_idle: state=0 cpu_id=0
123472          <idle>-0     (-----) [001] d.h3 24577.486062: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123473          <idle>-0     (-----) [001] dnh4 24577.486067: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123474          <idle>-0     (-----) [001] .n.1 24577.486071: cpu_idle: state=4294967295 cpu_id=1
123475          <idle>-0     (-----) [001] d..2 24577.486077: 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
123476   kworker/u17:2-23076 (23076) [001] d..2 24577.486084: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123477   kworker/u17:2-23076 (23076) [001] d..3 24577.486088: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123478   kworker/u17:2-23076 (23076) [001] d..2 24577.486103: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123479     kworker/1:1-13091 (13091) [001] d..2 24577.486108: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123480     kworker/1:1-13091 (13091) [001] d..3 24577.486116: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123481          <idle>-0     (-----) [000] .n.1 24577.486121: cpu_idle: state=4294967295 cpu_id=0
123482          <idle>-0     (-----) [000] d..2 24577.486126: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123483              ps-13421 (13421) [004] d..2 24577.486127: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123484     kworker/1:1-13091 (13091) [001] d..2 24577.486128: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123485              ps-13421 (13421) [004] dn.3 24577.486130: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123486              ps-13421 (13421) [004] d..2 24577.486132: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123487          <idle>-0     (-----) [001] d..1 24577.486134: cpu_idle: state=0 cpu_id=1
123488 shell svc 13418-13419 ( 1007) [004] d..2 24577.486141: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123489            adbd-23485 ( 1007) [000] d..2 24577.486142: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123490          <idle>-0     (-----) [000] d..1 24577.486148: cpu_idle: state=0 cpu_id=0
123491              ps-13421 (13421) [004] d..2 24577.486200: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123492              ps-13421 (13421) [004] dn.3 24577.486204: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123493              ps-13421 (13421) [004] d..2 24577.486206: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123494 shell svc 13418-13419 ( 1007) [004] d..2 24577.486213: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123495          <idle>-0     (-----) [001] d.h3 24577.486222: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123496          <idle>-0     (-----) [001] dnh4 24577.486226: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123497          <idle>-0     (-----) [001] .n.1 24577.486231: cpu_idle: state=4294967295 cpu_id=1
123498          <idle>-0     (-----) [001] d..2 24577.486236: 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
123499   kworker/u17:2-23076 (23076) [001] d..2 24577.486242: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123500   kworker/u17:2-23076 (23076) [001] d..3 24577.486246: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123501   kworker/u17:2-23076 (23076) [001] d..2 24577.486261: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123502     kworker/1:1-13091 (13091) [001] d..2 24577.486267: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
123503              ps-13421 (13421) [004] d..2 24577.486270: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123504              ps-13421 (13421) [004] dn.3 24577.486273: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123505              ps-13421 (13421) [004] d..2 24577.486275: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123506     kworker/1:1-13091 (13091) [001] d..3 24577.486275: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
123507          <idle>-0     (-----) [000] .n.1 24577.486280: cpu_idle: state=4294967295 cpu_id=0
123508 shell svc 13418-13419 ( 1007) [004] d..2 24577.486282: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123509          <idle>-0     (-----) [000] d..2 24577.486285: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
123510     kworker/1:1-13091 (13091) [001] d..2 24577.486287: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123511          <idle>-0     (-----) [001] d..1 24577.486294: cpu_idle: state=0 cpu_id=1
123512            adbd-23484 ( 1007) [000] d..2 24577.486295: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
123513            adbd-23484 ( 1007) [000] d..3 24577.486301: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
123514              ps-13421 (13421) [004] d..2 24577.486336: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123515              ps-13421 (13421) [004] dn.3 24577.486339: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123516              ps-13421 (13421) [004] d..2 24577.486341: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123517            adbd-23484 ( 1007) [000] d..2 24577.486342: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
123518 shell svc 13418-13419 ( 1007) [004] d..2 24577.486349: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123519            adbd-1007  ( 1007) [000] d..1 24577.486398: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123520            adbd-1007  ( 1007) [000] d..2 24577.486409: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123521            adbd-1007  ( 1007) [000] d..2 24577.486434: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
123522              ps-13421 (13421) [004] d..2 24577.486443: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123523              ps-13421 (13421) [004] dn.3 24577.486446: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123524              ps-13421 (13421) [004] d..2 24577.486448: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123525 shell svc 13418-13419 ( 1007) [004] d..2 24577.486456: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123526            adbd-23485 ( 1007) [000] d..2 24577.486479: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123527          <idle>-0     (-----) [000] d..1 24577.486487: cpu_idle: state=0 cpu_id=0
123528          <idle>-0     (-----) [001] d.h3 24577.486490: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123529          <idle>-0     (-----) [001] dnh4 24577.486495: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123530          <idle>-0     (-----) [001] .n.1 24577.486499: cpu_idle: state=4294967295 cpu_id=1
123531          <idle>-0     (-----) [001] d..2 24577.486505: 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
123532   kworker/u17:2-23076 (23076) [001] d..2 24577.486511: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123533   kworker/u17:2-23076 (23076) [001] d..3 24577.486516: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123534   kworker/u17:2-23076 (23076) [001] d..2 24577.486531: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123535     kworker/1:1-13091 (13091) [001] d..2 24577.486536: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123536     kworker/1:1-13091 (13091) [001] d..3 24577.486544: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123537          <idle>-0     (-----) [000] .n.1 24577.486549: cpu_idle: state=4294967295 cpu_id=0
123538              ps-13421 (13421) [004] d..2 24577.486552: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123539              ps-13421 (13421) [004] dn.3 24577.486555: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123540          <idle>-0     (-----) [000] d..2 24577.486556: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123541     kworker/1:1-13091 (13091) [001] d..2 24577.486557: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123542              ps-13421 (13421) [004] d..2 24577.486558: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123543          <idle>-0     (-----) [001] d..1 24577.486563: cpu_idle: state=0 cpu_id=1
123544 shell svc 13418-13419 ( 1007) [004] d..2 24577.486566: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123545            adbd-23485 ( 1007) [000] d..2 24577.486598: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123546          <idle>-0     (-----) [000] d..1 24577.486604: cpu_idle: state=0 cpu_id=0
123547              ps-13421 (13421) [004] d..2 24577.486626: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123548              ps-13421 (13421) [004] dn.3 24577.486629: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123549              ps-13421 (13421) [004] d..2 24577.486631: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123550          <idle>-0     (-----) [001] d.h3 24577.486632: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123551          <idle>-0     (-----) [001] dnh4 24577.486637: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123552 shell svc 13418-13419 ( 1007) [004] d..2 24577.486639: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123553          <idle>-0     (-----) [001] .n.1 24577.486642: cpu_idle: state=4294967295 cpu_id=1
123554          <idle>-0     (-----) [001] d..2 24577.486647: 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
123555   kworker/u17:2-23076 (23076) [001] d..2 24577.486653: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123556   kworker/u17:2-23076 (23076) [001] d..3 24577.486658: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123557   kworker/u17:2-23076 (23076) [001] d..2 24577.486673: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123558     kworker/1:1-13091 (13091) [001] d..2 24577.486678: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123559     kworker/1:1-13091 (13091) [001] d..3 24577.486695: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123560          <idle>-0     (-----) [000] .n.1 24577.486700: cpu_idle: state=4294967295 cpu_id=0
123561          <idle>-0     (-----) [000] d..2 24577.486706: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123562     kworker/1:1-13091 (13091) [001] d..2 24577.486707: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123563              ps-13421 (13421) [004] d..2 24577.486711: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123564          <idle>-0     (-----) [001] d..1 24577.486714: cpu_idle: state=0 cpu_id=1
123565              ps-13421 (13421) [004] dn.3 24577.486715: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123566              ps-13421 (13421) [004] d..2 24577.486717: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123567            adbd-23485 ( 1007) [000] d..2 24577.486721: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123568 shell svc 13418-13419 ( 1007) [004] d..2 24577.486725: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123569          <idle>-0     (-----) [000] d..1 24577.486726: cpu_idle: state=0 cpu_id=0
123570              ps-13421 (13421) [004] d..2 24577.486784: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123571              ps-13421 (13421) [004] dn.3 24577.486787: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123572              ps-13421 (13421) [004] d..2 24577.486789: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123573 shell svc 13418-13419 ( 1007) [004] d..2 24577.486796: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123574          <idle>-0     (-----) [001] d.h3 24577.486811: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123575          <idle>-0     (-----) [001] dnh4 24577.486818: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123576          <idle>-0     (-----) [001] .n.1 24577.486823: cpu_idle: state=4294967295 cpu_id=1
123577          <idle>-0     (-----) [001] d..2 24577.486828: 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
123578   kworker/u17:2-23076 (23076) [001] d..2 24577.486834: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123579   kworker/u17:2-23076 (23076) [001] d..3 24577.486838: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123580   kworker/u17:2-23076 (23076) [001] d..2 24577.486854: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123581     kworker/1:1-13091 (13091) [001] d..2 24577.486860: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
123582     kworker/1:1-13091 (13091) [001] d..3 24577.486868: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
123583          <idle>-0     (-----) [000] .n.1 24577.486873: cpu_idle: state=4294967295 cpu_id=0
123584          <idle>-0     (-----) [000] d..2 24577.486878: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
123585     kworker/1:1-13091 (13091) [001] d..2 24577.486879: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123586          <idle>-0     (-----) [001] d..1 24577.486886: cpu_idle: state=0 cpu_id=1
123587            adbd-23484 ( 1007) [000] d..2 24577.486888: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
123588              ps-13421 (13421) [004] d..2 24577.486891: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123589              ps-13421 (13421) [004] dn.3 24577.486894: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123590            adbd-23484 ( 1007) [000] d..3 24577.486894: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
123591              ps-13421 (13421) [004] d..2 24577.486896: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123592 shell svc 13418-13419 ( 1007) [004] d..2 24577.486904: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123593            adbd-23484 ( 1007) [000] d..2 24577.486935: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
123594            adbd-1007  ( 1007) [000] d..1 24577.486990: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123595              ps-13421 (13421) [004] d..2 24577.486995: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123596              ps-13421 (13421) [004] dn.3 24577.486998: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123597              ps-13421 (13421) [004] d..2 24577.487000: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123598            adbd-1007  ( 1007) [000] d..2 24577.487002: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123599 shell svc 13418-13419 ( 1007) [004] d..2 24577.487008: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123600            adbd-1007  ( 1007) [000] d..2 24577.487027: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
123601            adbd-23485 ( 1007) [000] d..2 24577.487070: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123602          <idle>-0     (-----) [000] d..1 24577.487078: cpu_idle: state=0 cpu_id=0
123603          <idle>-0     (-----) [001] d.h3 24577.487093: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123604          <idle>-0     (-----) [001] dnh4 24577.487099: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123605          <idle>-0     (-----) [001] .n.1 24577.487103: cpu_idle: state=4294967295 cpu_id=1
123606          <idle>-0     (-----) [001] d..2 24577.487109: 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
123607              ps-13421 (13421) [004] d..2 24577.487109: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123608              ps-13421 (13421) [004] dn.3 24577.487112: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123609   kworker/u17:2-23076 (23076) [001] d..2 24577.487115: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123610              ps-13421 (13421) [004] d..2 24577.487115: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123611   kworker/u17:2-23076 (23076) [001] d..3 24577.487120: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123612 shell svc 13418-13419 ( 1007) [004] d..2 24577.487124: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123613   kworker/u17:2-23076 (23076) [001] d..2 24577.487134: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123614     kworker/1:1-13091 (13091) [001] d..2 24577.487139: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123615     kworker/1:1-13091 (13091) [001] d..3 24577.487147: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123616          <idle>-0     (-----) [000] .n.1 24577.487153: cpu_idle: state=4294967295 cpu_id=0
123617     kworker/1:1-13091 (13091) [001] d..2 24577.487158: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123618          <idle>-0     (-----) [000] d..2 24577.487160: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123619          <idle>-0     (-----) [001] d..1 24577.487165: cpu_idle: state=0 cpu_id=1
123620            adbd-23485 ( 1007) [000] d..2 24577.487201: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123621          <idle>-0     (-----) [000] d..1 24577.487208: cpu_idle: state=0 cpu_id=0
123622              ps-13421 (13421) [004] d..2 24577.487214: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123623              ps-13421 (13421) [004] dn.3 24577.487218: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123624              ps-13421 (13421) [004] d..2 24577.487220: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123625 shell svc 13418-13419 ( 1007) [004] d..2 24577.487227: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123626          <idle>-0     (-----) [001] d.h3 24577.487228: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123627          <idle>-0     (-----) [001] dnh4 24577.487233: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123628          <idle>-0     (-----) [001] .n.1 24577.487238: cpu_idle: state=4294967295 cpu_id=1
123629          <idle>-0     (-----) [001] d..2 24577.487243: 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
123630   kworker/u17:2-23076 (23076) [001] d..2 24577.487249: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123631   kworker/u17:2-23076 (23076) [001] d..3 24577.487254: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123632   kworker/u17:2-23076 (23076) [001] d..2 24577.487268: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123633     kworker/1:1-13091 (13091) [001] d..2 24577.487273: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123634     kworker/1:1-13091 (13091) [001] d..3 24577.487281: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123635          <idle>-0     (-----) [000] .n.1 24577.487286: cpu_idle: state=4294967295 cpu_id=0
123636          <idle>-0     (-----) [000] d..2 24577.487292: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123637     kworker/1:1-13091 (13091) [001] d..2 24577.487293: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123638          <idle>-0     (-----) [001] d..1 24577.487299: cpu_idle: state=0 cpu_id=1
123639            adbd-23485 ( 1007) [000] d..2 24577.487307: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123640          <idle>-0     (-----) [000] d..1 24577.487312: cpu_idle: state=0 cpu_id=0
123641              ps-13421 (13421) [004] d..2 24577.487318: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123642              ps-13421 (13421) [004] dn.3 24577.487321: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123643              ps-13421 (13421) [004] d..2 24577.487324: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123644 shell svc 13418-13419 ( 1007) [004] d..2 24577.487332: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123645          <idle>-0     (-----) [001] d.h3 24577.487408: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123646          <idle>-0     (-----) [001] dnh4 24577.487413: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123647          <idle>-0     (-----) [001] .n.1 24577.487418: cpu_idle: state=4294967295 cpu_id=1
123648          <idle>-0     (-----) [001] d..2 24577.487423: 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
123649              ps-13421 (13421) [004] d..2 24577.487428: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123650   kworker/u17:2-23076 (23076) [001] d..2 24577.487429: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123651              ps-13421 (13421) [004] dn.3 24577.487432: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123652   kworker/u17:2-23076 (23076) [001] d..3 24577.487434: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123653              ps-13421 (13421) [004] d..2 24577.487434: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123654 shell svc 13418-13419 ( 1007) [004] d..2 24577.487442: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123655   kworker/u17:2-23076 (23076) [001] d..2 24577.487448: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123656     kworker/1:1-13091 (13091) [001] d..2 24577.487454: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
123657     kworker/1:1-13091 (13091) [001] d..3 24577.487472: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
123658     kworker/1:1-13091 (13091) [001] d..2 24577.487480: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
123659            adbd-23484 ( 1007) [001] d..2 24577.487491: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
123660            adbd-23484 ( 1007) [001] d..3 24577.487501: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
123661              ps-13421 (13421) [004] d..2 24577.487528: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123662              ps-13421 (13421) [004] dn.3 24577.487531: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123663              ps-13421 (13421) [004] d..2 24577.487534: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123664 shell svc 13418-13419 ( 1007) [004] d..2 24577.487542: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123665            adbd-23484 ( 1007) [001] d..2 24577.487542: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
123666            adbd-1007  ( 1007) [001] d..1 24577.487619: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123667            adbd-1007  ( 1007) [001] d..2 24577.487630: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123668          <idle>-0     (-----) [000] .n.1 24577.487635: cpu_idle: state=4294967295 cpu_id=0
123669          <idle>-0     (-----) [000] d..2 24577.487641: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123670              ps-13421 (13421) [004] d..2 24577.487658: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123671              ps-13421 (13421) [004] dn.3 24577.487661: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123672            adbd-1007  ( 1007) [001] d..2 24577.487663: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123673              ps-13421 (13421) [004] d..2 24577.487664: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123674          <idle>-0     (-----) [001] d..1 24577.487671: cpu_idle: state=0 cpu_id=1
123675 shell svc 13418-13419 ( 1007) [004] d..2 24577.487672: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123676            adbd-23485 ( 1007) [000] d..2 24577.487683: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123677          <idle>-0     (-----) [000] d..1 24577.487689: cpu_idle: state=0 cpu_id=0
123678          <idle>-0     (-----) [001] d.h3 24577.487697: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123679          <idle>-0     (-----) [001] dnh4 24577.487702: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123680          <idle>-0     (-----) [001] .n.1 24577.487708: cpu_idle: state=4294967295 cpu_id=1
123681          <idle>-0     (-----) [001] d..2 24577.487714: 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
123682   kworker/u17:2-23076 (23076) [001] d..2 24577.487721: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123683   kworker/u17:2-23076 (23076) [001] d..3 24577.487726: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123684   kworker/u17:2-23076 (23076) [001] d..2 24577.487742: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123685     kworker/1:1-13091 (13091) [001] d..2 24577.487747: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123686     kworker/1:1-13091 (13091) [001] d..3 24577.487756: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123687          <idle>-0     (-----) [000] .n.1 24577.487761: cpu_idle: state=4294967295 cpu_id=0
123688              ps-13421 (13421) [004] d..2 24577.487764: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123689          <idle>-0     (-----) [000] d..2 24577.487767: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123690              ps-13421 (13421) [004] dn.3 24577.487767: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123691     kworker/1:1-13091 (13091) [001] d..2 24577.487768: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123692              ps-13421 (13421) [004] d..2 24577.487769: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123693          <idle>-0     (-----) [001] d..1 24577.487775: cpu_idle: state=0 cpu_id=1
123694 shell svc 13418-13419 ( 1007) [004] d..2 24577.487777: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123695            adbd-23485 ( 1007) [000] d..2 24577.487808: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123696          <idle>-0     (-----) [000] d..1 24577.487814: cpu_idle: state=0 cpu_id=0
123697          <idle>-0     (-----) [001] d.h3 24577.487836: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123698              ps-13421 (13421) [004] d..2 24577.487838: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123699          <idle>-0     (-----) [001] dnh4 24577.487841: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123700              ps-13421 (13421) [004] dn.3 24577.487841: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123701              ps-13421 (13421) [004] d..2 24577.487843: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123702          <idle>-0     (-----) [001] .n.1 24577.487846: cpu_idle: state=4294967295 cpu_id=1
123703 shell svc 13418-13419 ( 1007) [004] d..2 24577.487851: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123704          <idle>-0     (-----) [001] d..2 24577.487852: 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
123705   kworker/u17:2-23076 (23076) [001] d..2 24577.487858: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123706   kworker/u17:2-23076 (23076) [001] d..3 24577.487863: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123707   kworker/u17:2-23076 (23076) [001] d..2 24577.487878: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123708     kworker/1:1-13091 (13091) [001] d..2 24577.487883: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123709     kworker/1:1-13091 (13091) [001] d..3 24577.487891: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123710          <idle>-0     (-----) [000] .n.1 24577.487896: cpu_idle: state=4294967295 cpu_id=0
123711          <idle>-0     (-----) [000] d..2 24577.487902: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123712     kworker/1:1-13091 (13091) [001] d..2 24577.487903: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123713              ps-13421 (13421) [004] d..2 24577.487909: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123714          <idle>-0     (-----) [001] d..1 24577.487910: cpu_idle: state=0 cpu_id=1
123715              ps-13421 (13421) [004] dn.3 24577.487912: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123716              ps-13421 (13421) [004] d..2 24577.487915: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123717            adbd-23485 ( 1007) [000] d..2 24577.487916: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123718          <idle>-0     (-----) [000] d..1 24577.487921: cpu_idle: state=0 cpu_id=0
123719 shell svc 13418-13419 ( 1007) [004] d..2 24577.487922: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123720          <idle>-0     (-----) [001] d.h3 24577.487995: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123721          <idle>-0     (-----) [001] dnh4 24577.488000: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123722          <idle>-0     (-----) [001] .n.1 24577.488005: cpu_idle: state=4294967295 cpu_id=1
123723          <idle>-0     (-----) [001] d..2 24577.488010: 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
123724   kworker/u17:2-23076 (23076) [001] d..2 24577.488015: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123725   kworker/u17:2-23076 (23076) [001] d..3 24577.488020: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123726   kworker/u17:2-23076 (23076) [001] d..2 24577.488035: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123727     kworker/1:1-13091 (13091) [001] d..2 24577.488040: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
123728     kworker/1:1-13091 (13091) [001] d..3 24577.488048: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
123729     kworker/1:1-13091 (13091) [001] d..2 24577.488055: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
123730            adbd-23484 ( 1007) [001] d..2 24577.488065: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
123731            adbd-23484 ( 1007) [001] d..3 24577.488070: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
123732            adbd-23484 ( 1007) [001] d..2 24577.488109: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
123733              ps-13421 (13421) [004] d..2 24577.488129: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123734              ps-13421 (13421) [004] dn.3 24577.488133: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123735              ps-13421 (13421) [004] d..2 24577.488136: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123736 shell svc 13418-13419 ( 1007) [004] d..2 24577.488145: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123737            adbd-1007  ( 1007) [001] d..1 24577.488165: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123738            adbd-1007  ( 1007) [001] d..2 24577.488176: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123739          <idle>-0     (-----) [000] .n.1 24577.488180: cpu_idle: state=4294967295 cpu_id=0
123740          <idle>-0     (-----) [000] d..2 24577.488185: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123741              ps-13421 (13421) [004] d..2 24577.488204: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123742            adbd-1007  ( 1007) [001] d..2 24577.488206: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123743              ps-13421 (13421) [004] dn.3 24577.488207: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123744              ps-13421 (13421) [004] d..2 24577.488209: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123745          <idle>-0     (-----) [001] d..1 24577.488214: cpu_idle: state=0 cpu_id=1
123746 shell svc 13418-13419 ( 1007) [004] d..2 24577.488217: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123747            adbd-23485 ( 1007) [000] d..2 24577.488227: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123748          <idle>-0     (-----) [000] d..1 24577.488233: cpu_idle: state=0 cpu_id=0
123749          <idle>-0     (-----) [001] d.h3 24577.488239: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123750          <idle>-0     (-----) [001] dnh4 24577.488244: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123751          <idle>-0     (-----) [001] .n.1 24577.488249: cpu_idle: state=4294967295 cpu_id=1
123752          <idle>-0     (-----) [001] d..2 24577.488255: 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
123753   kworker/u17:2-23076 (23076) [001] d..2 24577.488263: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123754   kworker/u17:2-23076 (23076) [001] d..3 24577.488268: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123755              ps-13421 (13421) [004] d..2 24577.488274: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123756              ps-13421 (13421) [004] dn.3 24577.488277: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123757              ps-13421 (13421) [004] d..2 24577.488279: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123758   kworker/u17:2-23076 (23076) [001] d..2 24577.488283: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123759 shell svc 13418-13419 ( 1007) [004] d..2 24577.488287: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123760     kworker/1:1-13091 (13091) [001] d..2 24577.488288: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123761     kworker/1:1-13091 (13091) [001] d..3 24577.488297: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123762          <idle>-0     (-----) [000] .n.1 24577.488301: cpu_idle: state=4294967295 cpu_id=0
123763          <idle>-0     (-----) [000] d..2 24577.488307: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123764     kworker/1:1-13091 (13091) [001] d..2 24577.488309: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123765          <idle>-0     (-----) [001] d..1 24577.488315: cpu_idle: state=0 cpu_id=1
123766            adbd-23485 ( 1007) [000] d..2 24577.488348: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123767          <idle>-0     (-----) [000] d..1 24577.488354: cpu_idle: state=0 cpu_id=0
123768          <idle>-0     (-----) [001] d.h3 24577.488393: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123769          <idle>-0     (-----) [001] dnh4 24577.488398: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123770          <idle>-0     (-----) [001] .n.1 24577.488403: cpu_idle: state=4294967295 cpu_id=1
123771          <idle>-0     (-----) [001] d..2 24577.488408: 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
123772   kworker/u17:2-23076 (23076) [001] d..2 24577.488414: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123773   kworker/u17:2-23076 (23076) [001] d..3 24577.488419: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123774   kworker/u17:2-23076 (23076) [001] d..2 24577.488433: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123775     kworker/1:1-13091 (13091) [001] d..2 24577.488438: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123776     kworker/1:1-13091 (13091) [001] d..3 24577.488446: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123777          <idle>-0     (-----) [000] .n.1 24577.488451: cpu_idle: state=4294967295 cpu_id=0
123778          <idle>-0     (-----) [000] d..2 24577.488457: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123779     kworker/1:1-13091 (13091) [001] d..2 24577.488458: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123780          <idle>-0     (-----) [001] d..1 24577.488464: cpu_idle: state=0 cpu_id=1
123781            adbd-23485 ( 1007) [000] d..2 24577.488471: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123782          <idle>-0     (-----) [000] d..1 24577.488477: cpu_idle: state=0 cpu_id=0
123783          <idle>-0     (-----) [001] d.h3 24577.488551: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123784          <idle>-0     (-----) [001] dnh4 24577.488556: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123785          <idle>-0     (-----) [001] .n.1 24577.488560: cpu_idle: state=4294967295 cpu_id=1
123786          <idle>-0     (-----) [001] d..2 24577.488566: 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
123787   kworker/u17:2-23076 (23076) [001] d..2 24577.488571: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123788   kworker/u17:2-23076 (23076) [001] d..3 24577.488575: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123789   kworker/u17:2-23076 (23076) [001] d..2 24577.488590: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123790     kworker/1:1-13091 (13091) [001] d..2 24577.488595: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
123791     kworker/1:1-13091 (13091) [001] d..3 24577.488603: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
123792     kworker/1:1-13091 (13091) [001] d..2 24577.488611: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
123793            adbd-23484 ( 1007) [001] d..2 24577.488620: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
123794            adbd-23484 ( 1007) [001] d..3 24577.488625: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
123795            adbd-23484 ( 1007) [001] d..2 24577.488664: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
123796            adbd-1007  ( 1007) [001] d..1 24577.488716: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123797            adbd-1007  ( 1007) [001] d..2 24577.488729: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123798          <idle>-0     (-----) [000] .n.1 24577.488733: cpu_idle: state=4294967295 cpu_id=0
123799          <idle>-0     (-----) [000] d..2 24577.488739: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123800            adbd-1007  ( 1007) [001] d..2 24577.488759: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123801          <idle>-0     (-----) [001] d..1 24577.488767: cpu_idle: state=0 cpu_id=1
123802            adbd-23485 ( 1007) [000] d..2 24577.488780: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123803          <idle>-0     (-----) [000] d..1 24577.488786: cpu_idle: state=0 cpu_id=0
123804              ps-13421 (13421) [004] d..2 24577.488789: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123805              ps-13421 (13421) [004] dn.3 24577.488792: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123806              ps-13421 (13421) [004] d..2 24577.488795: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123807          <idle>-0     (-----) [001] d.h3 24577.488803: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123808 shell svc 13418-13419 ( 1007) [004] d..2 24577.488803: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123809          <idle>-0     (-----) [001] dnh4 24577.488809: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123810          <idle>-0     (-----) [001] .n.1 24577.488814: cpu_idle: state=4294967295 cpu_id=1
123811          <idle>-0     (-----) [001] d..2 24577.488819: 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
123812   kworker/u17:2-23076 (23076) [001] d..2 24577.488827: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123813   kworker/u17:2-23076 (23076) [001] d..3 24577.488832: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123814   kworker/u17:2-23076 (23076) [001] d..2 24577.488847: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123815     kworker/1:1-13091 (13091) [001] d..2 24577.488852: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123816              ps-13421 (13421) [004] d..2 24577.488857: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123817              ps-13421 (13421) [004] dn.3 24577.488860: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123818     kworker/1:1-13091 (13091) [001] d..3 24577.488861: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123819              ps-13421 (13421) [004] d..2 24577.488863: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123820          <idle>-0     (-----) [000] .n.1 24577.488866: cpu_idle: state=4294967295 cpu_id=0
123821 shell svc 13418-13419 ( 1007) [004] d..2 24577.488870: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123822          <idle>-0     (-----) [000] d..2 24577.488872: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123823     kworker/1:1-13091 (13091) [001] d..2 24577.488873: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123824          <idle>-0     (-----) [001] d..1 24577.488880: cpu_idle: state=0 cpu_id=1
123825            adbd-23485 ( 1007) [000] d..2 24577.488913: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123826          <idle>-0     (-----) [000] d..1 24577.488919: cpu_idle: state=0 cpu_id=0
123827              ps-13421 (13421) [004] d..2 24577.488925: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123828          <idle>-0     (-----) [001] d.h3 24577.488925: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123829              ps-13421 (13421) [004] dn.3 24577.488928: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123830              ps-13421 (13421) [004] d..2 24577.488930: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123831          <idle>-0     (-----) [001] dnh4 24577.488933: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123832 shell svc 13418-13419 ( 1007) [004] d..2 24577.488937: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123833          <idle>-0     (-----) [001] .n.1 24577.488938: cpu_idle: state=4294967295 cpu_id=1
123834          <idle>-0     (-----) [001] d..2 24577.488944: 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
123835   kworker/u17:2-23076 (23076) [001] d..2 24577.488950: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123836   kworker/u17:2-23076 (23076) [001] d..3 24577.488954: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123837   kworker/u17:2-23076 (23076) [001] d..2 24577.488969: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123838     kworker/1:1-13091 (13091) [001] d..2 24577.488974: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123839     kworker/1:1-13091 (13091) [001] d..3 24577.488982: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123840          <idle>-0     (-----) [000] .n.1 24577.488987: cpu_idle: state=4294967295 cpu_id=0
123841              ps-13421 (13421) [004] d..2 24577.488992: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123842          <idle>-0     (-----) [000] d..2 24577.488993: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123843     kworker/1:1-13091 (13091) [001] d..2 24577.488994: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123844              ps-13421 (13421) [004] dn.3 24577.488995: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123845              ps-13421 (13421) [004] d..2 24577.488998: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123846          <idle>-0     (-----) [001] d..1 24577.489001: cpu_idle: state=0 cpu_id=1
123847 shell svc 13418-13419 ( 1007) [004] d..2 24577.489005: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123848            adbd-23485 ( 1007) [000] d..2 24577.489006: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123849          <idle>-0     (-----) [000] d..1 24577.489012: cpu_idle: state=0 cpu_id=0
123850              ps-13421 (13421) [004] d..2 24577.489065: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123851              ps-13421 (13421) [004] dn.3 24577.489068: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123852              ps-13421 (13421) [004] d..2 24577.489070: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123853 shell svc 13418-13419 ( 1007) [004] d..2 24577.489077: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123854          <idle>-0     (-----) [001] d.h3 24577.489079: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123855          <idle>-0     (-----) [001] dnh4 24577.489084: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123856          <idle>-0     (-----) [001] .n.1 24577.489089: cpu_idle: state=4294967295 cpu_id=1
123857          <idle>-0     (-----) [001] d..2 24577.489094: 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
123858   kworker/u17:2-23076 (23076) [001] d..2 24577.489100: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123859   kworker/u17:2-23076 (23076) [001] d..3 24577.489104: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123860   kworker/u17:2-23076 (23076) [001] d..2 24577.489120: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123861     kworker/1:1-13091 (13091) [001] d..2 24577.489125: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
123862     kworker/1:1-13091 (13091) [001] d..3 24577.489133: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
123863              ps-13421 (13421) [004] d..2 24577.489133: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123864              ps-13421 (13421) [004] dn.3 24577.489137: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123865              ps-13421 (13421) [004] d..2 24577.489139: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123866     kworker/1:1-13091 (13091) [001] d..2 24577.489140: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
123867 shell svc 13418-13419 ( 1007) [004] d..2 24577.489146: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123868            adbd-23484 ( 1007) [001] d..2 24577.489150: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
123869            adbd-23484 ( 1007) [001] d..3 24577.489156: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
123870            adbd-23484 ( 1007) [001] d..2 24577.489196: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
123871              ps-13421 (13421) [004] d..2 24577.489202: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123872              ps-13421 (13421) [004] dn.3 24577.489204: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123873              ps-13421 (13421) [004] d..2 24577.489207: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123874          <idle>-0     (-----) [000] d.h2 24577.489213: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
123875 shell svc 13418-13419 ( 1007) [004] d..2 24577.489214: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123876          <idle>-0     (-----) [000] dnh3 24577.489221: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
123877          <idle>-0     (-----) [000] .n.1 24577.489226: cpu_idle: state=4294967295 cpu_id=0
123878          <idle>-0     (-----) [000] d..2 24577.489232: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
123879            adbd-1007  ( 1007) [001] d..1 24577.489253: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123880            adbd-1007  ( 1007) [001] d..2 24577.489264: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123881              ps-13421 (13421) [004] d..2 24577.489267: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123882              ps-13421 (13421) [004] dn.3 24577.489269: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123883              ps-13421 (13421) [004] d..2 24577.489272: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123884 shell svc 13418-13419 ( 1007) [004] d..2 24577.489279: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123885            adbd-1007  ( 1007) [001] d..2 24577.489305: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
123886              ps-13421 (13421) [004] d..2 24577.489331: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123887              ps-13421 (13421) [004] dn.3 24577.489334: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123888              ps-13421 (13421) [004] d..2 24577.489337: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123889 shell svc 13418-13419 ( 1007) [004] d..2 24577.489344: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123890            adbd-23485 ( 1007) [001] d..2 24577.489349: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123891          <idle>-0     (-----) [001] d.h4 24577.489367: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123892          <idle>-0     (-----) [001] dnh5 24577.489372: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123893          <idle>-0     (-----) [001] d..2 24577.489380: 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
123894 irq/79-1436400.-24613 (24613) [000] d..2 24577.489382: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
123895   kworker/u17:2-23076 (23076) [001] d..2 24577.489386: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123896          <idle>-0     (-----) [000] d..1 24577.489389: cpu_idle: state=0 cpu_id=0
123897   kworker/u17:2-23076 (23076) [001] d..3 24577.489391: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123898          <idle>-0     (-----) [003] d.s3 24577.489404: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
123899   kworker/u17:2-23076 (23076) [001] d..2 24577.489406: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123900     kworker/1:1-13091 (13091) [001] d..2 24577.489410: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
123901          <idle>-0     (-----) [003] d.s4 24577.489412: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
123902          <idle>-0     (-----) [003] ...1 24577.489418: cpu_idle: state=4294967295 cpu_id=3
123903          <idle>-0     (-----) [000] .n.1 24577.489418: cpu_idle: state=4294967295 cpu_id=0
123904          <idle>-0     (-----) [003] d..1 24577.489420: cpu_idle: state=0 cpu_id=3
123905          <idle>-0     (-----) [000] d..2 24577.489423: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
123906     kworker/1:1-13091 (13091) [001] d..3 24577.489431: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123907              ps-13421 (13421) [004] d..2 24577.489435: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123908              ps-13421 (13421) [004] dn.3 24577.489438: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123909              ps-13421 (13421) [004] d..2 24577.489441: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123910 irq/79-1436400.-24613 (24613) [000] d..2 24577.489444: 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
123911     kworker/1:1-13091 (13091) [001] d..2 24577.489444: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123912 shell svc 13418-13419 ( 1007) [004] d..2 24577.489449: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123913          <idle>-0     (-----) [001] d..1 24577.489452: cpu_idle: state=0 cpu_id=1
123914            adbd-23485 ( 1007) [000] d..2 24577.489490: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123915          <idle>-0     (-----) [000] d..1 24577.489497: cpu_idle: state=0 cpu_id=0
123916              ps-13421 (13421) [004] d..2 24577.489506: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123917              ps-13421 (13421) [004] dn.3 24577.489509: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123918              ps-13421 (13421) [004] d..2 24577.489511: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123919 shell svc 13418-13419 ( 1007) [004] d..2 24577.489519: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123920          <idle>-0     (-----) [001] d.h3 24577.489524: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123921          <idle>-0     (-----) [001] dnh4 24577.489529: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123922          <idle>-0     (-----) [001] .n.1 24577.489534: cpu_idle: state=4294967295 cpu_id=1
123923          <idle>-0     (-----) [001] d..2 24577.489540: 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
123924   kworker/u17:2-23076 (23076) [001] d..2 24577.489547: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123925   kworker/u17:2-23076 (23076) [001] d..3 24577.489551: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123926   kworker/u17:2-23076 (23076) [001] d..2 24577.489567: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123927     kworker/1:1-13091 (13091) [001] d..2 24577.489572: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123928              ps-13421 (13421) [004] d..2 24577.489576: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123929              ps-13421 (13421) [004] dn.3 24577.489579: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123930              ps-13421 (13421) [004] d..2 24577.489581: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123931     kworker/1:1-13091 (13091) [001] d..3 24577.489581: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123932          <idle>-0     (-----) [000] .n.1 24577.489586: cpu_idle: state=4294967295 cpu_id=0
123933 shell svc 13418-13419 ( 1007) [004] d..2 24577.489588: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123934          <idle>-0     (-----) [000] d..2 24577.489592: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123935     kworker/1:1-13091 (13091) [001] d..2 24577.489593: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123936          <idle>-0     (-----) [001] d..1 24577.489600: cpu_idle: state=0 cpu_id=1
123937            adbd-23485 ( 1007) [000] d..2 24577.489607: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123938          <idle>-0     (-----) [000] d..1 24577.489613: cpu_idle: state=0 cpu_id=0
123939              ps-13421 (13421) [004] d..2 24577.489643: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123940              ps-13421 (13421) [004] dn.3 24577.489646: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123941          <idle>-0     (-----) [001] d.h3 24577.489647: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123942              ps-13421 (13421) [004] d..2 24577.489649: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123943          <idle>-0     (-----) [001] dnh4 24577.489652: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123944 shell svc 13418-13419 ( 1007) [004] d..2 24577.489656: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123945          <idle>-0     (-----) [001] .n.1 24577.489657: cpu_idle: state=4294967295 cpu_id=1
123946          <idle>-0     (-----) [001] d..2 24577.489663: 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
123947   kworker/u17:2-23076 (23076) [001] d..2 24577.489668: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123948   kworker/u17:2-23076 (23076) [001] d..3 24577.489673: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123949   kworker/u17:2-23076 (23076) [001] d..2 24577.489688: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123950     kworker/1:1-13091 (13091) [001] d..2 24577.489694: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
123951     kworker/1:1-13091 (13091) [001] d..3 24577.489702: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
123952     kworker/1:1-13091 (13091) [001] d..2 24577.489709: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
123953              ps-13421 (13421) [004] d..2 24577.489712: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123954              ps-13421 (13421) [004] dn.3 24577.489715: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123955              ps-13421 (13421) [004] d..2 24577.489717: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123956            adbd-23484 ( 1007) [001] d..2 24577.489719: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
123957 shell svc 13418-13419 ( 1007) [004] d..2 24577.489724: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123958            adbd-23484 ( 1007) [001] d..3 24577.489724: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
123959            adbd-23484 ( 1007) [001] d..2 24577.489765: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
123960              ps-13421 (13421) [004] d..2 24577.489780: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123961              ps-13421 (13421) [004] dn.3 24577.489782: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123962              ps-13421 (13421) [004] d..2 24577.489785: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123963 shell svc 13418-13419 ( 1007) [004] d..2 24577.489792: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123964            adbd-1007  ( 1007) [001] d..1 24577.489824: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123965            adbd-1007  ( 1007) [001] d..2 24577.489835: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123966          <idle>-0     (-----) [000] .n.1 24577.489839: cpu_idle: state=4294967295 cpu_id=0
123967          <idle>-0     (-----) [000] d..2 24577.489844: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123968              ps-13421 (13421) [004] d..2 24577.489847: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123969              ps-13421 (13421) [004] dn.3 24577.489850: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123970              ps-13421 (13421) [004] d..2 24577.489852: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123971 shell svc 13418-13419 ( 1007) [004] d..2 24577.489859: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123972            adbd-1007  ( 1007) [001] d..2 24577.489865: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123973          <idle>-0     (-----) [001] d..1 24577.489873: cpu_idle: state=0 cpu_id=1
123974            adbd-23485 ( 1007) [000] d..2 24577.489887: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123975          <idle>-0     (-----) [000] d..1 24577.489893: cpu_idle: state=0 cpu_id=0
123976          <idle>-0     (-----) [001] d.h3 24577.489905: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123977          <idle>-0     (-----) [001] dnh4 24577.489911: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
123978              ps-13421 (13421) [004] d..2 24577.489914: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123979          <idle>-0     (-----) [001] .n.1 24577.489916: cpu_idle: state=4294967295 cpu_id=1
123980              ps-13421 (13421) [004] dn.3 24577.489918: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123981              ps-13421 (13421) [004] d..2 24577.489920: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123982          <idle>-0     (-----) [001] d..2 24577.489921: 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
123983 shell svc 13418-13419 ( 1007) [004] d..2 24577.489927: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123984   kworker/u17:2-23076 (23076) [001] d..2 24577.489929: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123985   kworker/u17:2-23076 (23076) [001] d..3 24577.489934: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
123986   kworker/u17:2-23076 (23076) [001] d..2 24577.489949: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
123987     kworker/1:1-13091 (13091) [001] d..2 24577.489955: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
123988     kworker/1:1-13091 (13091) [001] d..3 24577.489963: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
123989          <idle>-0     (-----) [000] .n.1 24577.489968: cpu_idle: state=4294967295 cpu_id=0
123990          <idle>-0     (-----) [000] d..2 24577.489974: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
123991     kworker/1:1-13091 (13091) [001] d..2 24577.489976: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
123992          <idle>-0     (-----) [001] d..1 24577.489982: cpu_idle: state=0 cpu_id=1
123993              ps-13421 (13421) [004] d..2 24577.489983: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123994              ps-13421 (13421) [004] dn.3 24577.489986: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
123995              ps-13421 (13421) [004] d..2 24577.489988: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
123996 shell svc 13418-13419 ( 1007) [004] d..2 24577.489996: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
123997            adbd-23485 ( 1007) [000] d..2 24577.490015: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123998          <idle>-0     (-----) [000] d..1 24577.490021: cpu_idle: state=0 cpu_id=0
123999          <idle>-0     (-----) [001] d.h3 24577.490043: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124000          <idle>-0     (-----) [001] dnh4 24577.490048: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124001              ps-13421 (13421) [004] d..2 24577.490050: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124002          <idle>-0     (-----) [001] .n.1 24577.490053: cpu_idle: state=4294967295 cpu_id=1
124003              ps-13421 (13421) [004] dn.3 24577.490053: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124004              ps-13421 (13421) [004] d..2 24577.490055: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124005          <idle>-0     (-----) [001] d..2 24577.490058: 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
124006 shell svc 13418-13419 ( 1007) [004] d..2 24577.490063: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124007   kworker/u17:2-23076 (23076) [001] d..2 24577.490065: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124008   kworker/u17:2-23076 (23076) [001] d..3 24577.490069: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124009   kworker/u17:2-23076 (23076) [001] d..2 24577.490084: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124010     kworker/1:1-13091 (13091) [001] d..2 24577.490089: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
124011     kworker/1:1-13091 (13091) [001] d..3 24577.490097: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
124012          <idle>-0     (-----) [000] .n.1 24577.490102: cpu_idle: state=4294967295 cpu_id=0
124013          <idle>-0     (-----) [000] d..2 24577.490108: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
124014     kworker/1:1-13091 (13091) [001] d..2 24577.490109: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124015          <idle>-0     (-----) [001] d..1 24577.490115: cpu_idle: state=0 cpu_id=1
124016              ps-13421 (13421) [004] d..2 24577.490117: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124017              ps-13421 (13421) [004] dn.3 24577.490120: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124018            adbd-23485 ( 1007) [000] d..2 24577.490122: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124019              ps-13421 (13421) [004] d..2 24577.490122: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124020          <idle>-0     (-----) [000] d..1 24577.490127: cpu_idle: state=0 cpu_id=0
124021 shell svc 13418-13419 ( 1007) [004] d..2 24577.490129: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124022          <idle>-0     (-----) [001] d.h3 24577.490166: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124023          <idle>-0     (-----) [001] dnh4 24577.490170: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124024          <idle>-0     (-----) [001] .n.1 24577.490175: cpu_idle: state=4294967295 cpu_id=1
124025          <idle>-0     (-----) [001] d..2 24577.490180: 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
124026              ps-13421 (13421) [004] d..2 24577.490185: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124027   kworker/u17:2-23076 (23076) [001] d..2 24577.490186: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124028              ps-13421 (13421) [004] dn.3 24577.490188: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124029              ps-13421 (13421) [004] d..2 24577.490190: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124030   kworker/u17:2-23076 (23076) [001] d..3 24577.490191: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124031 shell svc 13418-13419 ( 1007) [004] d..2 24577.490197: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124032   kworker/u17:2-23076 (23076) [001] d..2 24577.490206: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124033     kworker/1:1-13091 (13091) [001] d..2 24577.490211: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
124034     kworker/1:1-13091 (13091) [001] d..3 24577.490220: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
124035     kworker/1:1-13091 (13091) [001] d..2 24577.490228: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
124036            adbd-23484 ( 1007) [001] d..2 24577.490237: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
124037            adbd-23484 ( 1007) [001] d..3 24577.490243: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
124038              ps-13421 (13421) [004] d..2 24577.490252: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124039              ps-13421 (13421) [004] dn.3 24577.490255: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124040              ps-13421 (13421) [004] d..2 24577.490257: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124041 shell svc 13418-13419 ( 1007) [004] d..2 24577.490264: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124042            adbd-23484 ( 1007) [001] d..2 24577.490283: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
124043              ps-13421 (13421) [004] d..2 24577.490319: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124044              ps-13421 (13421) [004] dn.3 24577.490322: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124045              ps-13421 (13421) [004] d..2 24577.490324: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124046 shell svc 13418-13419 ( 1007) [004] d..2 24577.490331: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124047            adbd-1007  ( 1007) [001] d..1 24577.490344: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
124048            adbd-1007  ( 1007) [001] d..2 24577.490354: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
124049          <idle>-0     (-----) [000] .n.1 24577.490359: cpu_idle: state=4294967295 cpu_id=0
124050          <idle>-0     (-----) [000] d..2 24577.490364: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
124051            adbd-1007  ( 1007) [001] d..2 24577.490379: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124052              ps-13421 (13421) [004] d..2 24577.490387: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124053          <idle>-0     (-----) [001] d..1 24577.490387: cpu_idle: state=0 cpu_id=1
124054              ps-13421 (13421) [004] dn.3 24577.490390: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124055              ps-13421 (13421) [004] d..2 24577.490392: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124056 shell svc 13418-13419 ( 1007) [004] d..2 24577.490400: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124057            adbd-23485 ( 1007) [000] d..2 24577.490406: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124058          <idle>-0     (-----) [000] d..1 24577.490412: cpu_idle: state=0 cpu_id=0
124059          <idle>-0     (-----) [001] d.h3 24577.490428: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124060          <idle>-0     (-----) [001] dnh4 24577.490433: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124061          <idle>-0     (-----) [001] .n.1 24577.490439: cpu_idle: state=4294967295 cpu_id=1
124062          <idle>-0     (-----) [001] d..2 24577.490445: 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
124063   kworker/u17:2-23076 (23076) [001] d..2 24577.490452: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124064              ps-13421 (13421) [004] d..2 24577.490455: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124065   kworker/u17:2-23076 (23076) [001] d..3 24577.490457: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124066              ps-13421 (13421) [004] dn.3 24577.490458: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124067              ps-13421 (13421) [004] d..2 24577.490460: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124068 shell svc 13418-13419 ( 1007) [004] d..2 24577.490467: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124069   kworker/u17:2-23076 (23076) [001] d..2 24577.490473: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124070     kworker/1:1-13091 (13091) [001] d..2 24577.490478: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
124071     kworker/1:1-13091 (13091) [001] d..3 24577.490486: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
124072          <idle>-0     (-----) [000] .n.1 24577.490491: cpu_idle: state=4294967295 cpu_id=0
124073     kworker/1:1-13091 (13091) [001] d..2 24577.490494: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124074          <idle>-0     (-----) [000] d..2 24577.490497: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
124075          <idle>-0     (-----) [001] d..1 24577.490500: cpu_idle: state=0 cpu_id=1
124076              ps-13421 (13421) [004] d..2 24577.490521: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124077              ps-13421 (13421) [004] dn.3 24577.490523: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124078              ps-13421 (13421) [004] d..2 24577.490526: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124079 shell svc 13418-13419 ( 1007) [004] d..2 24577.490533: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124080            adbd-23485 ( 1007) [000] d..2 24577.490538: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124081          <idle>-0     (-----) [000] d..1 24577.490544: cpu_idle: state=0 cpu_id=0
124082          <idle>-0     (-----) [001] d.h3 24577.490566: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124083          <idle>-0     (-----) [001] dnh4 24577.490571: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124084          <idle>-0     (-----) [001] .n.1 24577.490575: cpu_idle: state=4294967295 cpu_id=1
124085          <idle>-0     (-----) [001] d..2 24577.490581: 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
124086              ps-13421 (13421) [004] d..2 24577.490587: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124087   kworker/u17:2-23076 (23076) [001] d..2 24577.490587: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124088              ps-13421 (13421) [004] dn.3 24577.490590: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124089   kworker/u17:2-23076 (23076) [001] d..3 24577.490592: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124090              ps-13421 (13421) [004] d..2 24577.490592: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124091 shell svc 13418-13419 ( 1007) [004] d..2 24577.490600: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124092   kworker/u17:2-23076 (23076) [001] d..2 24577.490606: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124093     kworker/1:1-13091 (13091) [001] d..2 24577.490611: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
124094     kworker/1:1-13091 (13091) [001] d..3 24577.490619: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
124095          <idle>-0     (-----) [000] .n.1 24577.490624: cpu_idle: state=4294967295 cpu_id=0
124096     kworker/1:1-13091 (13091) [001] d..2 24577.490627: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124097          <idle>-0     (-----) [000] d..2 24577.490630: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
124098          <idle>-0     (-----) [001] d..1 24577.490633: cpu_idle: state=0 cpu_id=1
124099            adbd-23485 ( 1007) [000] d..2 24577.490644: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124100          <idle>-0     (-----) [000] d..1 24577.490650: cpu_idle: state=0 cpu_id=0
124101              ps-13421 (13421) [004] d..2 24577.490654: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124102              ps-13421 (13421) [004] dn.3 24577.490657: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124103          <idle>-0     (-----) [002] ...1 24577.490658: cpu_idle: state=4294967295 cpu_id=2
124104              ps-13421 (13421) [004] d..2 24577.490659: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124105          <idle>-0     (-----) [002] d..1 24577.490660: cpu_idle: state=2 cpu_id=2
124106 shell svc 13418-13419 ( 1007) [004] d..2 24577.490666: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124107          <idle>-0     (-----) [001] d.h3 24577.490693: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124108          <idle>-0     (-----) [001] dnh4 24577.490698: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124109          <idle>-0     (-----) [001] .n.1 24577.490703: cpu_idle: state=4294967295 cpu_id=1
124110          <idle>-0     (-----) [001] d..2 24577.490708: 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
124111   kworker/u17:2-23076 (23076) [001] d..2 24577.490714: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124112   kworker/u17:2-23076 (23076) [001] d..3 24577.490718: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124113              ps-13421 (13421) [004] d..2 24577.490719: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124114              ps-13421 (13421) [004] dn.3 24577.490722: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124115              ps-13421 (13421) [004] d..2 24577.490725: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124116 shell svc 13418-13419 ( 1007) [004] d..2 24577.490732: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124117   kworker/u17:2-23076 (23076) [001] d..2 24577.490734: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124118     kworker/1:1-13091 (13091) [001] d..2 24577.490739: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
124119     kworker/1:1-13091 (13091) [001] d..3 24577.490747: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
124120     kworker/1:1-13091 (13091) [001] d..2 24577.490755: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
124121            adbd-23484 ( 1007) [001] d..2 24577.490764: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
124122            adbd-23484 ( 1007) [001] d..3 24577.490770: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
124123              ps-13421 (13421) [004] d..2 24577.490788: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124124              ps-13421 (13421) [004] dn.3 24577.490791: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124125              ps-13421 (13421) [004] d..2 24577.490793: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124126 shell svc 13418-13419 ( 1007) [004] d..2 24577.490800: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124127            adbd-23484 ( 1007) [001] d..2 24577.490810: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
124128            adbd-1007  ( 1007) [001] d..1 24577.490867: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
124129            adbd-1007  ( 1007) [001] d..2 24577.490880: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
124130          <idle>-0     (-----) [000] .n.1 24577.490885: cpu_idle: state=4294967295 cpu_id=0
124131          <idle>-0     (-----) [000] d..2 24577.490892: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
124132          <idle>-0     (-----) [003] d.s2 24577.490896: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
124133          <idle>-0     (-----) [003] dns3 24577.490904: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
124134          <idle>-0     (-----) [003] .n.1 24577.490908: cpu_idle: state=4294967295 cpu_id=3
124135              ps-13421 (13421) [004] d..2 24577.490910: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124136              ps-13421 (13421) [004] dn.3 24577.490913: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124137          <idle>-0     (-----) [003] d..2 24577.490914: 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
124138              ps-13421 (13421) [004] d..2 24577.490915: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124139     rcu_preempt-7     (    7) [003] d..2 24577.490919: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
124140 shell svc 13418-13419 ( 1007) [004] d..2 24577.490924: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124141            adbd-1007  ( 1007) [001] d..2 24577.490924: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124142          <idle>-0     (-----) [001] d..1 24577.490932: cpu_idle: state=0 cpu_id=1
124143            adbd-23485 ( 1007) [000] d..2 24577.490936: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124144     rcu_preempt-7     (    7) [003] d..3 24577.490942: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=002
124145          <idle>-0     (-----) [000] d..1 24577.490942: cpu_idle: state=0 cpu_id=0
124146          <idle>-0     (-----) [001] d.h3 24577.490949: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124147     rcu_preempt-7     (    7) [003] d..2 24577.490954: 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
124148          <idle>-0     (-----) [001] dnh4 24577.490958: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124149          <idle>-0     (-----) [003] d..1 24577.490961: cpu_idle: state=2 cpu_id=3
124150          <idle>-0     (-----) [001] .n.1 24577.490963: cpu_idle: state=4294967295 cpu_id=1
124151          <idle>-0     (-----) [001] d..2 24577.490969: 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
124152   kworker/u17:2-23076 (23076) [001] d..2 24577.490976: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124153   kworker/u17:2-23076 (23076) [001] d..3 24577.490981: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124154   kworker/u17:2-23076 (23076) [001] d..2 24577.490996: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124155     kworker/1:1-13091 (13091) [001] d..2 24577.491001: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
124156     kworker/1:1-13091 (13091) [001] d..3 24577.491009: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
124157          <idle>-0     (-----) [000] .n.1 24577.491014: cpu_idle: state=4294967295 cpu_id=0
124158     kworker/1:1-13091 (13091) [001] d..2 24577.491017: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124159          <idle>-0     (-----) [000] d..2 24577.491020: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
124160          <idle>-0     (-----) [001] d..1 24577.491023: cpu_idle: state=0 cpu_id=1
124161          <idle>-0     (-----) [002] .n.1 24577.491051: cpu_idle: state=4294967295 cpu_id=2
124162          <idle>-0     (-----) [002] d..2 24577.491061: 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
124163            adbd-23485 ( 1007) [000] d..2 24577.491062: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124164          <idle>-0     (-----) [000] d..1 24577.491068: cpu_idle: state=0 cpu_id=0
124165              ps-13421 (13421) [004] d..2 24577.491081: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124166              ps-13421 (13421) [004] dn.3 24577.491085: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124167          <idle>-0     (-----) [001] d.h3 24577.491086: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124168              ps-13421 (13421) [004] d..2 24577.491087: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124169          <idle>-0     (-----) [001] dnh4 24577.491091: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124170 shell svc 13418-13419 ( 1007) [004] d..2 24577.491096: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124171          <idle>-0     (-----) [001] .n.1 24577.491096: cpu_idle: state=4294967295 cpu_id=1
124172          <idle>-0     (-----) [001] d..2 24577.491102: 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
124173   kworker/u17:2-23076 (23076) [001] d..2 24577.491107: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124174   kworker/u17:2-23076 (23076) [001] d..3 24577.491112: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124175   kworker/u17:2-23076 (23076) [001] d..2 24577.491126: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124176     kworker/1:1-13091 (13091) [001] d..2 24577.491131: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
124177     kworker/1:1-13091 (13091) [001] d..3 24577.491139: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
124178          <idle>-0     (-----) [000] .n.1 24577.491144: cpu_idle: state=4294967295 cpu_id=0
124179     kworker/1:1-13091 (13091) [001] d..2 24577.491147: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124180          <idle>-0     (-----) [000] d..2 24577.491150: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
124181          <idle>-0     (-----) [001] d..1 24577.491152: cpu_idle: state=0 cpu_id=1
124182            adbd-23485 ( 1007) [000] d..2 24577.491167: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124183          <idle>-0     (-----) [000] d..1 24577.491173: cpu_idle: state=0 cpu_id=0
124184              ps-13421 (13421) [004] d..2 24577.491194: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124185              ps-13421 (13421) [004] dn.3 24577.491198: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124186              ps-13421 (13421) [004] d..2 24577.491200: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124187 shell svc 13418-13419 ( 1007) [004] d..2 24577.491208: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124188          <idle>-0     (-----) [001] d.h3 24577.491226: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124189          <idle>-0     (-----) [001] dnh4 24577.491231: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124190          <idle>-0     (-----) [001] .n.1 24577.491236: cpu_idle: state=4294967295 cpu_id=1
124191         rcuop/4-45    (   45) [002] d..2 24577.491239: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
124192          <idle>-0     (-----) [001] d..2 24577.491241: 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
124193   kworker/u17:2-23076 (23076) [001] d..2 24577.491247: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124194         rcuop/4-45    (   45) [002] d..3 24577.491249: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
124195   kworker/u17:2-23076 (23076) [001] d..3 24577.491251: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124196         rcuop/4-45    (   45) [002] d..2 24577.491265: 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
124197   kworker/u17:2-23076 (23076) [001] d..2 24577.491266: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124198     kworker/1:1-13091 (13091) [001] d..2 24577.491272: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
124199          <idle>-0     (-----) [002] d..1 24577.491273: cpu_idle: state=0 cpu_id=2
124200     kworker/1:1-13091 (13091) [001] d..3 24577.491291: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
124201     kworker/1:1-13091 (13091) [001] d..2 24577.491299: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124202              ps-13421 (13421) [004] d..2 24577.491302: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124203              ps-13421 (13421) [004] dn.3 24577.491305: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124204          <idle>-0     (-----) [001] d..1 24577.491305: cpu_idle: state=0 cpu_id=1
124205              ps-13421 (13421) [004] d..2 24577.491307: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124206 shell svc 13418-13419 ( 1007) [004] d..2 24577.491315: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124207          <idle>-0     (-----) [003] .n.1 24577.491348: cpu_idle: state=4294967295 cpu_id=3
124208          <idle>-0     (-----) [003] d..2 24577.491358: 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
124209     rcu_preempt-7     (    7) [003] d..2 24577.491370: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
124210            adbd-23484 ( 1007) [003] d..2 24577.491385: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
124211            adbd-23484 ( 1007) [003] d..3 24577.491397: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
124212              ps-13421 (13421) [004] d..2 24577.491416: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124213              ps-13421 (13421) [004] dn.3 24577.491419: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124214              ps-13421 (13421) [004] d..2 24577.491421: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124215 shell svc 13418-13419 ( 1007) [004] d..2 24577.491430: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124216            adbd-23484 ( 1007) [003] d..2 24577.491441: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
124217            adbd-1007  ( 1007) [003] d..1 24577.491506: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
124218            adbd-1007  ( 1007) [003] d..2 24577.491517: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
124219          <idle>-0     (-----) [000] .n.1 24577.491522: cpu_idle: state=4294967295 cpu_id=0
124220          <idle>-0     (-----) [000] d..2 24577.491527: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
124221              ps-13421 (13421) [004] d..2 24577.491527: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124222              ps-13421 (13421) [004] dn.3 24577.491531: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124223              ps-13421 (13421) [004] d..2 24577.491533: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124224 shell svc 13418-13419 ( 1007) [004] d..2 24577.491542: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124225            adbd-1007  ( 1007) [003] d..2 24577.491549: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
124226          <idle>-0     (-----) [003] d..1 24577.491558: cpu_idle: state=0 cpu_id=3
124227            adbd-23485 ( 1007) [000] d..2 24577.491569: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124228          <idle>-0     (-----) [000] d..1 24577.491575: cpu_idle: state=0 cpu_id=0
124229          <idle>-0     (-----) [001] d.h3 24577.491591: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124230          <idle>-0     (-----) [001] dnh4 24577.491597: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124231          <idle>-0     (-----) [001] .n.1 24577.491601: cpu_idle: state=4294967295 cpu_id=1
124232          <idle>-0     (-----) [001] d..2 24577.491607: 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
124233   kworker/u17:2-23076 (23076) [001] d..2 24577.491613: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124234   kworker/u17:2-23076 (23076) [001] d..3 24577.491618: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124235   kworker/u17:2-23076 (23076) [001] d..2 24577.491633: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124236     kworker/1:1-13091 (13091) [001] d..2 24577.491638: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
124237              ps-13421 (13421) [004] d..2 24577.491641: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124238              ps-13421 (13421) [004] dn.3 24577.491644: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124239     kworker/1:1-13091 (13091) [001] d..3 24577.491646: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
124240              ps-13421 (13421) [004] d..2 24577.491647: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124241          <idle>-0     (-----) [000] .n.1 24577.491651: cpu_idle: state=4294967295 cpu_id=0
124242 shell svc 13418-13419 ( 1007) [004] d..2 24577.491655: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124243          <idle>-0     (-----) [000] d..2 24577.491657: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
124244     kworker/1:1-13091 (13091) [001] d..2 24577.491659: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124245          <idle>-0     (-----) [001] d..1 24577.491665: cpu_idle: state=0 cpu_id=1
124246            adbd-23485 ( 1007) [000] d..2 24577.491699: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124247          <idle>-0     (-----) [000] d..1 24577.491705: cpu_idle: state=0 cpu_id=0
124248          <idle>-0     (-----) [001] d.h3 24577.491730: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124249          <idle>-0     (-----) [001] dnh4 24577.491736: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124250          <idle>-0     (-----) [001] .n.1 24577.491740: cpu_idle: state=4294967295 cpu_id=1
124251          <idle>-0     (-----) [001] d..2 24577.491745: 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
124252              ps-13421 (13421) [004] d..2 24577.491751: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124253   kworker/u17:2-23076 (23076) [001] d..2 24577.491752: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124254              ps-13421 (13421) [004] dn.3 24577.491754: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124255   kworker/u17:2-23076 (23076) [001] d..3 24577.491757: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124256              ps-13421 (13421) [004] d..2 24577.491757: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124257 shell svc 13418-13419 ( 1007) [004] d..2 24577.491764: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124258   kworker/u17:2-23076 (23076) [001] d..2 24577.491771: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124259     kworker/1:1-13091 (13091) [001] d..2 24577.491776: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
124260     kworker/1:1-13091 (13091) [001] d..3 24577.491784: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
124261          <idle>-0     (-----) [000] .n.1 24577.491789: cpu_idle: state=4294967295 cpu_id=0
124262          <idle>-0     (-----) [000] d..2 24577.491795: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
124263     kworker/1:1-13091 (13091) [001] d..2 24577.491796: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124264          <idle>-0     (-----) [001] d..1 24577.491802: cpu_idle: state=0 cpu_id=1
124265            adbd-23485 ( 1007) [000] d..2 24577.491809: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124266          <idle>-0     (-----) [000] d..1 24577.491814: cpu_idle: state=0 cpu_id=0
124267          <idle>-0     (-----) [001] d.h3 24577.491853: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124268          <idle>-0     (-----) [001] dnh4 24577.491858: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124269          <idle>-0     (-----) [001] .n.1 24577.491863: cpu_idle: state=4294967295 cpu_id=1
124270              ps-13421 (13421) [004] d..2 24577.491866: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124271          <idle>-0     (-----) [001] d..2 24577.491869: 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
124272              ps-13421 (13421) [004] dn.3 24577.491869: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124273              ps-13421 (13421) [004] d..2 24577.491871: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124274   kworker/u17:2-23076 (23076) [001] d..2 24577.491874: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124275   kworker/u17:2-23076 (23076) [001] d..3 24577.491879: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124276 shell svc 13418-13419 ( 1007) [004] d..2 24577.491879: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124277   kworker/u17:2-23076 (23076) [001] d..2 24577.491894: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124278     kworker/1:1-13091 (13091) [001] d..2 24577.491899: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
124279     kworker/1:1-13091 (13091) [001] d..3 24577.491920: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
124280          <idle>-0     (-----) [000] .n.1 24577.491925: cpu_idle: state=4294967295 cpu_id=0
124281          <idle>-0     (-----) [000] d..2 24577.491930: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
124282     kworker/1:1-13091 (13091) [001] d..2 24577.491933: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124283          <idle>-0     (-----) [001] d..1 24577.491940: cpu_idle: state=0 cpu_id=1
124284            adbd-23484 ( 1007) [000] d..2 24577.491941: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
124285            adbd-23484 ( 1007) [000] d..3 24577.491953: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
124286              ps-13421 (13421) [004] d..2 24577.491972: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124287              ps-13421 (13421) [004] dn.3 24577.491975: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124288              ps-13421 (13421) [004] d..2 24577.491978: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124289 shell svc 13418-13419 ( 1007) [004] d..2 24577.491986: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124290            adbd-23484 ( 1007) [000] d..2 24577.491994: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
124291            adbd-1007  ( 1007) [000] d..1 24577.492063: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
124292            adbd-1007  ( 1007) [000] d..2 24577.492075: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
124293              ps-13421 (13421) [004] d..2 24577.492077: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124294              ps-13421 (13421) [004] dn.3 24577.492080: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124295              ps-13421 (13421) [004] d..2 24577.492083: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124296 shell svc 13418-13419 ( 1007) [004] d..2 24577.492091: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124297            adbd-1007  ( 1007) [000] d..2 24577.492100: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
124298            adbd-23485 ( 1007) [000] d..2 24577.492144: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124299          <idle>-0     (-----) [000] d..1 24577.492152: cpu_idle: state=0 cpu_id=0
124300          <idle>-0     (-----) [001] d.h3 24577.492155: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124301          <idle>-0     (-----) [001] dnh4 24577.492160: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124302          <idle>-0     (-----) [001] .n.1 24577.492164: cpu_idle: state=4294967295 cpu_id=1
124303          <idle>-0     (-----) [001] d..2 24577.492170: 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
124304   kworker/u17:2-23076 (23076) [001] d..2 24577.492176: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124305   kworker/u17:2-23076 (23076) [001] d..3 24577.492181: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124306              ps-13421 (13421) [004] d..2 24577.492189: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124307              ps-13421 (13421) [004] dn.3 24577.492192: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124308              ps-13421 (13421) [004] d..2 24577.492195: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124309   kworker/u17:2-23076 (23076) [001] d..2 24577.492196: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124310     kworker/1:1-13091 (13091) [001] d..2 24577.492201: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
124311 shell svc 13418-13419 ( 1007) [004] d..2 24577.492202: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124312     kworker/1:1-13091 (13091) [001] d..3 24577.492209: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
124313          <idle>-0     (-----) [000] .n.1 24577.492214: cpu_idle: state=4294967295 cpu_id=0
124314          <idle>-0     (-----) [000] d..2 24577.492221: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
124315     kworker/1:1-13091 (13091) [001] d..2 24577.492222: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124316          <idle>-0     (-----) [001] d..1 24577.492228: cpu_idle: state=0 cpu_id=1
124317            adbd-23485 ( 1007) [000] d..2 24577.492263: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124318          <idle>-0     (-----) [000] d..1 24577.492269: cpu_idle: state=0 cpu_id=0
124319              ps-13421 (13421) [004] d..2 24577.492292: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124320              ps-13421 (13421) [004] dn.3 24577.492295: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124321              ps-13421 (13421) [004] d..2 24577.492297: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124322          <idle>-0     (-----) [001] d.h3 24577.492297: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124323          <idle>-0     (-----) [001] dnh4 24577.492302: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124324 shell svc 13418-13419 ( 1007) [004] d..2 24577.492305: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124325          <idle>-0     (-----) [001] .n.1 24577.492307: cpu_idle: state=4294967295 cpu_id=1
124326          <idle>-0     (-----) [001] d..2 24577.492313: 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
124327   kworker/u17:2-23076 (23076) [001] d..2 24577.492319: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124328   kworker/u17:2-23076 (23076) [001] d..3 24577.492323: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124329   kworker/u17:2-23076 (23076) [001] d..2 24577.492338: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124330     kworker/1:1-13091 (13091) [001] d..2 24577.492343: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
124331     kworker/1:1-13091 (13091) [001] d..3 24577.492351: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
124332          <idle>-0     (-----) [000] .n.1 24577.492356: cpu_idle: state=4294967295 cpu_id=0
124333          <idle>-0     (-----) [000] d..2 24577.492363: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
124334     kworker/1:1-13091 (13091) [001] d..2 24577.492364: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124335          <idle>-0     (-----) [001] d..1 24577.492370: cpu_idle: state=0 cpu_id=1
124336            adbd-23485 ( 1007) [000] d..2 24577.492377: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124337          <idle>-0     (-----) [000] d..1 24577.492383: cpu_idle: state=0 cpu_id=0
124338              ps-13421 (13421) [004] d..2 24577.492394: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124339              ps-13421 (13421) [004] dn.3 24577.492397: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124340              ps-13421 (13421) [004] d..2 24577.492400: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124341 shell svc 13418-13419 ( 1007) [004] d..2 24577.492407: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124342          <idle>-0     (-----) [001] d.h3 24577.492450: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124343          <idle>-0     (-----) [001] dnh4 24577.492455: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124344          <idle>-0     (-----) [001] .n.1 24577.492459: cpu_idle: state=4294967295 cpu_id=1
124345          <idle>-0     (-----) [001] d..2 24577.492465: 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
124346   kworker/u17:2-23076 (23076) [001] d..2 24577.492471: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124347   kworker/u17:2-23076 (23076) [001] d..3 24577.492476: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124348   kworker/u17:2-23076 (23076) [001] d..2 24577.492491: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124349     kworker/1:1-13091 (13091) [001] d..2 24577.492496: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
124350     kworker/1:1-13091 (13091) [001] d..3 24577.492505: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
124351          <idle>-0     (-----) [000] .n.1 24577.492510: cpu_idle: state=4294967295 cpu_id=0
124352              ps-13421 (13421) [004] d..2 24577.492510: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124353              ps-13421 (13421) [004] dn.3 24577.492513: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124354          <idle>-0     (-----) [000] d..2 24577.492515: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
124355              ps-13421 (13421) [004] d..2 24577.492516: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124356     kworker/1:1-13091 (13091) [001] d..2 24577.492517: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124357          <idle>-0     (-----) [001] d..1 24577.492523: cpu_idle: state=0 cpu_id=1
124358 shell svc 13418-13419 ( 1007) [004] d..2 24577.492525: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124359            adbd-23484 ( 1007) [000] d..2 24577.492525: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
124360            adbd-23484 ( 1007) [000] d..3 24577.492532: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
124361            adbd-23484 ( 1007) [000] d..2 24577.492572: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
124362              ps-13421 (13421) [004] d..2 24577.492619: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124363              ps-13421 (13421) [004] dn.3 24577.492622: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124364              ps-13421 (13421) [004] d..2 24577.492625: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124365            adbd-1007  ( 1007) [000] d..1 24577.492627: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
124366 shell svc 13418-13419 ( 1007) [004] d..2 24577.492633: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124367            adbd-1007  ( 1007) [000] d..2 24577.492638: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
124368            adbd-1007  ( 1007) [000] d..2 24577.492663: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
124369            adbd-23485 ( 1007) [000] d..2 24577.492709: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124370          <idle>-0     (-----) [001] d.h3 24577.492716: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124371          <idle>-0     (-----) [000] d..1 24577.492717: cpu_idle: state=0 cpu_id=0
124372          <idle>-0     (-----) [001] dnh4 24577.492721: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124373          <idle>-0     (-----) [001] .n.1 24577.492726: cpu_idle: state=4294967295 cpu_id=1
124374              ps-13421 (13421) [004] d..2 24577.492727: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124375              ps-13421 (13421) [004] dn.3 24577.492730: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124376          <idle>-0     (-----) [001] d..2 24577.492731: 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
124377              ps-13421 (13421) [004] d..2 24577.492732: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124378   kworker/u17:2-23076 (23076) [001] d..2 24577.492737: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124379 shell svc 13418-13419 ( 1007) [004] d..2 24577.492741: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124380   kworker/u17:2-23076 (23076) [001] d..3 24577.492742: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124381   kworker/u17:2-23076 (23076) [001] d..2 24577.492756: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124382     kworker/1:1-13091 (13091) [001] d..2 24577.492761: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
124383     kworker/1:1-13091 (13091) [001] d..3 24577.492769: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
124384          <idle>-0     (-----) [000] .n.1 24577.492774: cpu_idle: state=4294967295 cpu_id=0
124385          <idle>-0     (-----) [000] d..2 24577.492781: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
124386     kworker/1:1-13091 (13091) [001] d..2 24577.492782: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124387          <idle>-0     (-----) [001] d..1 24577.492788: cpu_idle: state=0 cpu_id=1
124388              ps-13421 (13421) [004] d..2 24577.492833: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124389              ps-13421 (13421) [004] dn.3 24577.492837: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124390              ps-13421 (13421) [004] d..2 24577.492839: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124391            adbd-23485 ( 1007) [000] d..2 24577.492842: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124392 shell svc 13418-13419 ( 1007) [004] d..2 24577.492847: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124393          <idle>-0     (-----) [000] d..3 24577.492848: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
124394          <idle>-0     (-----) [001] d.h3 24577.492867: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124395          <idle>-0     (-----) [000] dn.4 24577.492868: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
124396          <idle>-0     (-----) [001] dnh4 24577.492872: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124397          <idle>-0     (-----) [001] .n.1 24577.492877: cpu_idle: state=4294967295 cpu_id=1
124398          <idle>-0     (-----) [000] d..2 24577.492879: 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
124399          <idle>-0     (-----) [001] d..2 24577.492882: 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
124400   kworker/u17:2-23076 (23076) [001] d..2 24577.492888: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124401         rcuop/0-10    (   10) [000] d..2 24577.492893: 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
124402   kworker/u17:2-23076 (23076) [001] d..3 24577.492893: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124403          <idle>-0     (-----) [000] d..1 24577.492897: cpu_idle: state=0 cpu_id=0
124404   kworker/u17:2-23076 (23076) [001] d..2 24577.492908: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124405     kworker/1:1-13091 (13091) [001] d..2 24577.492913: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
124406     kworker/1:1-13091 (13091) [001] d..3 24577.492931: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
124407              ps-13421 (13421) [004] d..2 24577.492935: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124408          <idle>-0     (-----) [000] .n.1 24577.492936: cpu_idle: state=4294967295 cpu_id=0
124409              ps-13421 (13421) [004] dn.3 24577.492938: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124410              ps-13421 (13421) [004] d..2 24577.492941: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124411          <idle>-0     (-----) [000] d..2 24577.492942: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
124412     kworker/1:1-13091 (13091) [001] d..2 24577.492944: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124413 shell svc 13418-13419 ( 1007) [004] d..2 24577.492948: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124414          <idle>-0     (-----) [001] d..1 24577.492950: cpu_idle: state=0 cpu_id=1
124415            adbd-23485 ( 1007) [000] d..2 24577.492958: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124416          <idle>-0     (-----) [000] d..1 24577.492964: cpu_idle: state=0 cpu_id=0
124417          <idle>-0     (-----) [001] d.h3 24577.493030: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124418          <idle>-0     (-----) [001] dnh4 24577.493037: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124419          <idle>-0     (-----) [001] .n.1 24577.493042: cpu_idle: state=4294967295 cpu_id=1
124420              ps-13421 (13421) [004] d..2 24577.493044: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124421              ps-13421 (13421) [004] dn.3 24577.493047: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124422          <idle>-0     (-----) [001] d..2 24577.493048: 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
124423              ps-13421 (13421) [004] d..2 24577.493049: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124424   kworker/u17:2-23076 (23076) [001] d..2 24577.493053: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124425 shell svc 13418-13419 ( 1007) [004] d..2 24577.493057: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124426   kworker/u17:2-23076 (23076) [001] d..3 24577.493058: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124427   kworker/u17:2-23076 (23076) [001] d..2 24577.493074: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124428     kworker/1:1-13091 (13091) [001] d..2 24577.493080: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
124429     kworker/1:1-13091 (13091) [001] d..3 24577.493087: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
124430          <idle>-0     (-----) [000] .n.1 24577.493092: cpu_idle: state=4294967295 cpu_id=0
124431          <idle>-0     (-----) [000] d..2 24577.493098: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
124432     kworker/1:1-13091 (13091) [001] d..2 24577.493099: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124433          <idle>-0     (-----) [001] d..1 24577.493105: cpu_idle: state=0 cpu_id=1
124434            adbd-23484 ( 1007) [000] d..2 24577.493108: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
124435            adbd-23484 ( 1007) [000] d..3 24577.493114: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
124436              ps-13421 (13421) [004] d..2 24577.493141: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124437              ps-13421 (13421) [004] dn.3 24577.493144: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124438              ps-13421 (13421) [004] d..2 24577.493146: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124439            adbd-23484 ( 1007) [000] d..2 24577.493154: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
124440 shell svc 13418-13419 ( 1007) [004] d..2 24577.493155: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124441            adbd-1007  ( 1007) [000] d..1 24577.493212: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
124442            adbd-1007  ( 1007) [000] d..2 24577.493224: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
124443            adbd-1007  ( 1007) [000] d..2 24577.493249: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
124444              ps-13421 (13421) [004] d..2 24577.493251: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124445              ps-13421 (13421) [004] dn.3 24577.493254: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124446              ps-13421 (13421) [004] d..2 24577.493257: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124447 shell svc 13418-13419 ( 1007) [004] d..2 24577.493265: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124448            adbd-23485 ( 1007) [000] d..2 24577.493293: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124449          <idle>-0     (-----) [001] d.h3 24577.493299: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124450          <idle>-0     (-----) [000] d..1 24577.493301: cpu_idle: state=0 cpu_id=0
124451          <idle>-0     (-----) [001] dnh4 24577.493305: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124452          <idle>-0     (-----) [001] .n.1 24577.493309: cpu_idle: state=4294967295 cpu_id=1
124453          <idle>-0     (-----) [001] d..2 24577.493315: 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
124454   kworker/u17:2-23076 (23076) [001] d..2 24577.493322: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124455   kworker/u17:2-23076 (23076) [001] d..3 24577.493327: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124456   kworker/u17:2-23076 (23076) [001] d..2 24577.493342: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124457     kworker/1:1-13091 (13091) [001] d..2 24577.493347: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
124458     kworker/1:1-13091 (13091) [001] d..3 24577.493355: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
124459          <idle>-0     (-----) [000] .n.1 24577.493360: cpu_idle: state=4294967295 cpu_id=0
124460              ps-13421 (13421) [004] d..2 24577.493365: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124461          <idle>-0     (-----) [000] d..2 24577.493366: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
124462     kworker/1:1-13091 (13091) [001] d..2 24577.493367: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124463              ps-13421 (13421) [004] dn.3 24577.493369: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124464              ps-13421 (13421) [004] d..2 24577.493371: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124465          <idle>-0     (-----) [001] d..1 24577.493373: cpu_idle: state=0 cpu_id=1
124466 shell svc 13418-13419 ( 1007) [004] d..2 24577.493379: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124467            adbd-23485 ( 1007) [000] d..2 24577.493409: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124468          <idle>-0     (-----) [000] d..1 24577.493415: cpu_idle: state=0 cpu_id=0
124469          <idle>-0     (-----) [001] d.h3 24577.493442: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124470          <idle>-0     (-----) [001] dnh4 24577.493448: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124471          <idle>-0     (-----) [001] .n.1 24577.493452: cpu_idle: state=4294967295 cpu_id=1
124472          <idle>-0     (-----) [001] d..2 24577.493458: 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
124473   kworker/u17:2-23076 (23076) [001] d..2 24577.493464: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124474              ps-13421 (13421) [004] d..2 24577.493468: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124475   kworker/u17:2-23076 (23076) [001] d..3 24577.493469: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124476              ps-13421 (13421) [004] dn.3 24577.493471: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124477              ps-13421 (13421) [004] d..2 24577.493473: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124478 shell svc 13418-13419 ( 1007) [004] d..2 24577.493481: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124479   kworker/u17:2-23076 (23076) [001] d..2 24577.493484: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124480     kworker/1:1-13091 (13091) [001] d..2 24577.493488: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
124481     kworker/1:1-13091 (13091) [001] d..3 24577.493496: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
124482          <idle>-0     (-----) [000] .n.1 24577.493502: cpu_idle: state=4294967295 cpu_id=0
124483          <idle>-0     (-----) [000] d..2 24577.493507: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
124484     kworker/1:1-13091 (13091) [001] d..2 24577.493509: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124485          <idle>-0     (-----) [001] d..1 24577.493515: cpu_idle: state=0 cpu_id=1
124486            adbd-23485 ( 1007) [000] d..2 24577.493522: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124487          <idle>-0     (-----) [000] d..1 24577.493527: cpu_idle: state=0 cpu_id=0
124488              ps-13421 (13421) [004] d..2 24577.493574: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124489              ps-13421 (13421) [004] dn.3 24577.493578: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124490              ps-13421 (13421) [004] d..2 24577.493580: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124491 shell svc 13418-13419 ( 1007) [004] d..2 24577.493588: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124492          <idle>-0     (-----) [001] d.h3 24577.493600: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124493          <idle>-0     (-----) [001] dnh4 24577.493605: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124494          <idle>-0     (-----) [001] .n.1 24577.493610: cpu_idle: state=4294967295 cpu_id=1
124495          <idle>-0     (-----) [001] d..2 24577.493616: 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
124496   kworker/u17:2-23076 (23076) [001] d..2 24577.493622: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124497   kworker/u17:2-23076 (23076) [001] d..3 24577.493627: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124498   kworker/u17:2-23076 (23076) [001] d..2 24577.493642: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124499     kworker/1:1-13091 (13091) [001] d..2 24577.493647: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
124500     kworker/1:1-13091 (13091) [001] d..3 24577.493655: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
124501          <idle>-0     (-----) [000] .n.1 24577.493660: cpu_idle: state=4294967295 cpu_id=0
124502          <idle>-0     (-----) [000] d..2 24577.493666: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
124503     kworker/1:1-13091 (13091) [001] d..2 24577.493667: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124504          <idle>-0     (-----) [001] d..1 24577.493673: cpu_idle: state=0 cpu_id=1
124505            adbd-23484 ( 1007) [000] d..2 24577.493675: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
124506              ps-13421 (13421) [004] d..2 24577.493675: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124507              ps-13421 (13421) [004] dn.3 24577.493678: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124508              ps-13421 (13421) [004] d..2 24577.493680: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124509            adbd-23484 ( 1007) [000] d..3 24577.493682: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
124510 shell svc 13418-13419 ( 1007) [004] d..2 24577.493688: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124511            adbd-23484 ( 1007) [000] d..2 24577.493721: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
124512            adbd-1007  ( 1007) [000] d..1 24577.493776: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
124513              ps-13421 (13421) [004] d..2 24577.493778: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124514              ps-13421 (13421) [004] dn.3 24577.493782: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124515              ps-13421 (13421) [004] d..2 24577.493784: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124516            adbd-1007  ( 1007) [000] d..2 24577.493788: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
124517 shell svc 13418-13419 ( 1007) [004] d..2 24577.493792: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124518            adbd-1007  ( 1007) [000] d..2 24577.493813: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
124519            adbd-23485 ( 1007) [000] d..2 24577.493858: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124520          <idle>-0     (-----) [001] d.h3 24577.493863: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124521          <idle>-0     (-----) [000] d..1 24577.493865: cpu_idle: state=0 cpu_id=0
124522          <idle>-0     (-----) [001] dnh4 24577.493868: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124523          <idle>-0     (-----) [001] .n.1 24577.493873: cpu_idle: state=4294967295 cpu_id=1
124524              ps-13421 (13421) [004] d..2 24577.493878: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124525          <idle>-0     (-----) [001] d..2 24577.493878: 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
124526              ps-13421 (13421) [004] dn.3 24577.493881: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124527              ps-13421 (13421) [004] d..2 24577.493883: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124528   kworker/u17:2-23076 (23076) [001] d..2 24577.493884: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124529   kworker/u17:2-23076 (23076) [001] d..3 24577.493889: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124530 shell svc 13418-13419 ( 1007) [004] d..2 24577.493891: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124531   kworker/u17:2-23076 (23076) [001] d..2 24577.493905: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124532     kworker/1:1-13091 (13091) [001] d..2 24577.493909: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
124533     kworker/1:1-13091 (13091) [001] d..3 24577.493918: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
124534          <idle>-0     (-----) [000] .n.1 24577.493923: cpu_idle: state=4294967295 cpu_id=0
124535          <idle>-0     (-----) [000] d..2 24577.493929: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
124536     kworker/1:1-13091 (13091) [001] d..2 24577.493930: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124537          <idle>-0     (-----) [001] d..1 24577.493937: cpu_idle: state=0 cpu_id=1
124538            adbd-23485 ( 1007) [000] d..2 24577.493973: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124539          <idle>-0     (-----) [000] d..1 24577.493979: cpu_idle: state=0 cpu_id=0
124540              ps-13421 (13421) [004] d..2 24577.493984: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124541              ps-13421 (13421) [004] dn.3 24577.493987: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124542              ps-13421 (13421) [004] d..2 24577.493990: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124543 shell svc 13418-13419 ( 1007) [004] d..2 24577.493998: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124544          <idle>-0     (-----) [001] d.h3 24577.494011: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124545          <idle>-0     (-----) [001] dnh4 24577.494016: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124546          <idle>-0     (-----) [001] .n.1 24577.494020: cpu_idle: state=4294967295 cpu_id=1
124547          <idle>-0     (-----) [001] d..2 24577.494026: 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
124548   kworker/u17:2-23076 (23076) [001] d..2 24577.494032: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124549   kworker/u17:2-23076 (23076) [001] d..3 24577.494036: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124550   kworker/u17:2-23076 (23076) [001] d..2 24577.494051: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124551     kworker/1:1-13091 (13091) [001] d..2 24577.494056: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
124552     kworker/1:1-13091 (13091) [001] d..3 24577.494065: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
124553          <idle>-0     (-----) [000] .n.1 24577.494070: cpu_idle: state=4294967295 cpu_id=0
124554          <idle>-0     (-----) [000] d..2 24577.494075: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
124555     kworker/1:1-13091 (13091) [001] d..2 24577.494077: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124556          <idle>-0     (-----) [001] d..1 24577.494083: cpu_idle: state=0 cpu_id=1
124557              ps-13421 (13421) [004] d..2 24577.494088: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124558            adbd-23485 ( 1007) [000] d..2 24577.494090: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124559              ps-13421 (13421) [004] dn.3 24577.494091: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124560              ps-13421 (13421) [004] d..2 24577.494094: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124561          <idle>-0     (-----) [000] d..1 24577.494096: cpu_idle: state=0 cpu_id=0
124562 shell svc 13418-13419 ( 1007) [004] d..2 24577.494102: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124563          <idle>-0     (-----) [001] d.h3 24577.494171: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124564          <idle>-0     (-----) [001] dnh4 24577.494176: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124565          <idle>-0     (-----) [001] .n.1 24577.494180: cpu_idle: state=4294967295 cpu_id=1
124566          <idle>-0     (-----) [001] d..2 24577.494186: 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
124567              ps-13421 (13421) [004] d..2 24577.494186: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124568              ps-13421 (13421) [004] dn.3 24577.494189: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124569   kworker/u17:2-23076 (23076) [001] d..2 24577.494191: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124570              ps-13421 (13421) [004] d..2 24577.494191: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124571   kworker/u17:2-23076 (23076) [001] d..3 24577.494196: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124572 shell svc 13418-13419 ( 1007) [004] d..2 24577.494199: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124573   kworker/u17:2-23076 (23076) [001] d..2 24577.494211: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124574              ps-13421 (13421) [004] d.s2 24577.494221: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
124575     kworker/1:1-13091 (13091) [001] d..2 24577.494232: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
124576     kworker/1:1-13091 (13091) [001] d..3 24577.494244: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
124577          <idle>-0     (-----) [000] dnh2 24577.494248: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
124578          <idle>-0     (-----) [000] .n.1 24577.494254: cpu_idle: state=4294967295 cpu_id=0
124579          <idle>-0     (-----) [000] d..2 24577.494260: 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
124580     kworker/1:1-13091 (13091) [001] d..2 24577.494263: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124581          <idle>-0     (-----) [001] d..1 24577.494270: cpu_idle: state=0 cpu_id=1
124582  kworker/u16:16-25995 (25995) [000] .... 24577.494285: clk_set_rate: l3_cluster0_vote_clk 844800000
124583              ps-13421 (13421) [004] d..2 24577.494328: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124584              ps-13421 (13421) [004] dn.3 24577.494332: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124585              ps-13421 (13421) [004] d..2 24577.494334: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124586 shell svc 13418-13419 ( 1007) [004] d..2 24577.494343: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124587              ps-13421 (13421) [004] d..2 24577.494428: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124588  kworker/u16:16-25995 (25995) [000] d..2 24577.494430: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=D ==> next_comm=adbd next_pid=23484 next_prio=120
124589              ps-13421 (13421) [004] dn.3 24577.494431: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124590              ps-13421 (13421) [004] d..2 24577.494434: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124591            adbd-23484 ( 1007) [000] d..2 24577.494441: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
124592 shell svc 13418-13419 ( 1007) [004] d..2 24577.494442: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124593            adbd-23484 ( 1007) [000] d..3 24577.494447: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
124594          <idle>-0     (-----) [003] d.s3 24577.494466: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
124595          <idle>-0     (-----) [003] d.s4 24577.494480: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
124596          <idle>-0     (-----) [003] dns4 24577.494482: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
124597          <idle>-0     (-----) [003] .n.1 24577.494486: cpu_idle: state=4294967295 cpu_id=3
124598            adbd-23484 ( 1007) [000] d..2 24577.494488: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
124599          <idle>-0     (-----) [003] d..2 24577.494493: 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
124600              ps-13421 (13421) [004] d..2 24577.494546: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124601              ps-13421 (13421) [004] dn.3 24577.494550: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124602              ps-13421 (13421) [004] d..2 24577.494552: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124603            adbd-1007  ( 1007) [000] d..1 24577.494556: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
124604 shell svc 13418-13419 ( 1007) [004] d..2 24577.494561: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124605  kworker/u16:16-25995 (25995) [003] d..2 24577.494572: 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
124606          <idle>-0     (-----) [003] d..1 24577.494577: cpu_idle: state=0 cpu_id=3
124607            adbd-1007  ( 1007) [000] d..2 24577.494583: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
124608          <idle>-0     (-----) [003] .n.1 24577.494588: cpu_idle: state=4294967295 cpu_id=3
124609          <idle>-0     (-----) [003] d..2 24577.494593: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
124610            adbd-1007  ( 1007) [000] d..2 24577.494615: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124611          <idle>-0     (-----) [000] d..1 24577.494623: cpu_idle: state=0 cpu_id=0
124612            adbd-23485 ( 1007) [003] d..2 24577.494638: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
124613          <idle>-0     (-----) [003] d..1 24577.494643: cpu_idle: state=0 cpu_id=3
124614              ps-13421 (13421) [004] d..2 24577.494651: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124615          <idle>-0     (-----) [001] d.h3 24577.494652: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124616              ps-13421 (13421) [004] dn.3 24577.494654: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124617              ps-13421 (13421) [004] d..2 24577.494656: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124618          <idle>-0     (-----) [001] dnh4 24577.494658: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124619          <idle>-0     (-----) [001] .n.1 24577.494663: cpu_idle: state=4294967295 cpu_id=1
124620 shell svc 13418-13419 ( 1007) [004] d..2 24577.494665: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124621          <idle>-0     (-----) [001] d..2 24577.494668: 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
124622   kworker/u17:2-23076 (23076) [001] d..2 24577.494674: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124623   kworker/u17:2-23076 (23076) [001] d..3 24577.494679: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124624   kworker/u17:2-23076 (23076) [001] d..2 24577.494694: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124625     kworker/1:1-13091 (13091) [001] d..2 24577.494699: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
124626     kworker/1:1-13091 (13091) [001] d..3 24577.494707: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
124627          <idle>-0     (-----) [003] .n.1 24577.494712: cpu_idle: state=4294967295 cpu_id=3
124628          <idle>-0     (-----) [003] d..2 24577.494717: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
124629     kworker/1:1-13091 (13091) [001] d..2 24577.494719: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124630          <idle>-0     (-----) [001] d..1 24577.494726: cpu_idle: state=0 cpu_id=1
124631              ps-13421 (13421) [004] d..2 24577.494755: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124632              ps-13421 (13421) [004] dn.3 24577.494760: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124633            adbd-23485 ( 1007) [003] d..2 24577.494760: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
124634              ps-13421 (13421) [004] d..2 24577.494763: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124635          <idle>-0     (-----) [003] d..1 24577.494764: cpu_idle: state=0 cpu_id=3
124636 shell svc 13418-13419 ( 1007) [004] d..2 24577.494771: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124637          <idle>-0     (-----) [001] d.h3 24577.494798: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124638          <idle>-0     (-----) [001] dnh4 24577.494803: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124639          <idle>-0     (-----) [001] .n.1 24577.494807: cpu_idle: state=4294967295 cpu_id=1
124640          <idle>-0     (-----) [001] d..2 24577.494813: 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
124641   kworker/u17:2-23076 (23076) [001] d..2 24577.494819: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124642   kworker/u17:2-23076 (23076) [001] d..3 24577.494824: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124643              ps-13421 (13421) [004] d..2 24577.494830: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124644              ps-13421 (13421) [004] dn.3 24577.494833: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124645              ps-13421 (13421) [004] d..2 24577.494835: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124646   kworker/u17:2-23076 (23076) [001] d..2 24577.494839: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124647     kworker/1:1-13091 (13091) [001] d..2 24577.494843: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
124648 shell svc 13418-13419 ( 1007) [004] d..2 24577.494844: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124649     kworker/1:1-13091 (13091) [001] d..3 24577.494852: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
124650          <idle>-0     (-----) [003] .n.1 24577.494856: cpu_idle: state=4294967295 cpu_id=3
124651          <idle>-0     (-----) [006] d.h2 24577.494858: sched_waking: comm=batterystats-wo pid=23998 prio=120 target_cpu=006
124652          <idle>-0     (-----) [003] d..2 24577.494861: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
124653     kworker/1:1-13091 (13091) [001] d..2 24577.494865: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124654          <idle>-0     (-----) [001] d..1 24577.494870: cpu_idle: state=0 cpu_id=1
124655            adbd-23485 ( 1007) [003] d..2 24577.494879: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
124656          <idle>-0     (-----) [003] d..1 24577.494883: cpu_idle: state=0 cpu_id=3
124657          <idle>-0     (-----) [000] dnh2 24577.494884: sched_wakeup: comm=batterystats-wo pid=23998 prio=120 target_cpu=000
124658          <idle>-0     (-----) [000] .n.1 24577.494910: cpu_idle: state=4294967295 cpu_id=0
124659          <idle>-0     (-----) [006] d.h3 24577.494911: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
124660          <idle>-0     (-----) [000] d..2 24577.494916: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=batterystats-wo next_pid=23998 next_prio=120
124661          <idle>-0     (-----) [006] d.h4 24577.494919: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
124662          <idle>-0     (-----) [006] d.h3 24577.494920: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
124663          <idle>-0     (-----) [006] ...1 24577.494928: cpu_idle: state=4294967295 cpu_id=6
124664              ps-13421 (13421) [004] d..2 24577.494930: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124665          <idle>-0     (-----) [006] d..1 24577.494931: cpu_idle: state=2 cpu_id=6
124666              ps-13421 (13421) [004] dn.3 24577.494933: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124667          <idle>-0     (-----) [003] dnh2 24577.494934: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
124668              ps-13421 (13421) [004] d..2 24577.494936: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124669          <idle>-0     (-----) [003] .n.1 24577.494938: cpu_idle: state=4294967295 cpu_id=3
124670          <idle>-0     (-----) [003] d..2 24577.494942: 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
124671 shell svc 13418-13419 ( 1007) [004] d..2 24577.494944: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124672          <idle>-0     (-----) [001] d.h3 24577.494959: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124673          <idle>-0     (-----) [001] dnh4 24577.494964: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124674         sugov:0-559   (  559) [003] .... 24577.494967: clk_set_rate: pwrcl_clk 1516800000
124675          <idle>-0     (-----) [001] .n.1 24577.494969: cpu_idle: state=4294967295 cpu_id=1
124676          <idle>-0     (-----) [001] d..2 24577.494974: 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
124677         sugov:0-559   (  559) [003] .... 24577.494979: clk_set_rate: cpu3_pwrcl_clk 1766400000
124678   kworker/u17:2-23076 (23076) [001] d..2 24577.494979: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124679   kworker/u17:2-23076 (23076) [001] d..3 24577.494984: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124680         sugov:0-559   (  559) [003] .... 24577.494987: clk_set_rate: cpu2_pwrcl_clk 1766400000
124681         sugov:0-559   (  559) [003] .... 24577.494994: clk_set_rate: cpu1_pwrcl_clk 1766400000
124682   kworker/u17:2-23076 (23076) [001] d..2 24577.494999: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124683         sugov:0-559   (  559) [003] .... 24577.495000: clk_set_rate: cpu0_pwrcl_clk 1516800000
124684     kworker/1:1-13091 (13091) [001] d..2 24577.495004: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
124685     kworker/1:1-13091 (13091) [001] d..3 24577.495031: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
124686              ps-13421 (13421) [004] d..2 24577.495033: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124687              ps-13421 (13421) [004] dn.3 24577.495036: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124688              ps-13421 (13421) [004] d..2 24577.495039: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124689 shell svc 13418-13419 ( 1007) [004] d..2 24577.495047: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124690     kworker/1:1-13091 (13091) [001] d..2 24577.495050: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124691          <idle>-0     (-----) [001] d..1 24577.495063: cpu_idle: state=0 cpu_id=1
124692          <idle>-0     (-----) [007] .n.1 24577.495066: cpu_idle: state=4294967295 cpu_id=7
124693          <idle>-0     (-----) [007] d..2 24577.495073: 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
124694         sugov:4-560   (  560) [007] d..2 24577.495084: 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
124695          <idle>-0     (-----) [007] d..1 24577.495088: cpu_idle: state=2 cpu_id=7
124696         sugov:0-559   (  559) [003] .... 24577.495111: cpu_frequency: state=1516800 cpu_id=0
124697         sugov:0-559   (  559) [003] .... 24577.495127: cpu_frequency: state=1516800 cpu_id=1
124698         sugov:0-559   (  559) [003] .... 24577.495129: cpu_frequency: state=1516800 cpu_id=2
124699         sugov:0-559   (  559) [003] .... 24577.495132: cpu_frequency: state=1516800 cpu_id=3
124700              ps-13421 (13421) [004] d..2 24577.495132: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124701              ps-13421 (13421) [004] dn.3 24577.495136: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124702              ps-13421 (13421) [004] d..2 24577.495138: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124703         sugov:0-559   (  559) [003] d..2 24577.495143: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
124704 shell svc 13418-13419 ( 1007) [004] d..2 24577.495147: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124705            adbd-23484 ( 1007) [003] d..2 24577.495156: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
124706            adbd-23484 ( 1007) [003] d..3 24577.495168: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
124707            adbd-23484 ( 1007) [003] d..2 24577.495212: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
124708              ps-13421 (13421) [004] d..2 24577.495226: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124709              ps-13421 (13421) [004] dn.3 24577.495229: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124710              ps-13421 (13421) [004] d..2 24577.495232: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124711 shell svc 13418-13419 ( 1007) [004] d..2 24577.495240: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124712            adbd-1007  ( 1007) [003] d..1 24577.495283: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
124713            adbd-1007  ( 1007) [003] d..2 24577.495309: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
124714              ps-13421 (13421) [004] d..2 24577.495351: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124715            adbd-1007  ( 1007) [003] d..2 24577.495353: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
124716              ps-13421 (13421) [004] dn.3 24577.495354: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124717              ps-13421 (13421) [004] d..2 24577.495356: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124718 shell svc 13418-13419 ( 1007) [004] d..2 24577.495365: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124719            adbd-23485 ( 1007) [003] d..2 24577.495401: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
124720          <idle>-0     (-----) [001] d.h3 24577.495407: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124721          <idle>-0     (-----) [003] d..1 24577.495408: cpu_idle: state=0 cpu_id=3
124722          <idle>-0     (-----) [001] dnh4 24577.495416: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124723          <idle>-0     (-----) [001] .n.1 24577.495421: cpu_idle: state=4294967295 cpu_id=1
124724          <idle>-0     (-----) [001] d..2 24577.495427: 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
124725   kworker/u17:2-23076 (23076) [001] d..2 24577.495434: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124726   kworker/u17:2-23076 (23076) [001] d..3 24577.495439: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124727   kworker/u17:2-23076 (23076) [001] d..2 24577.495455: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124728              ps-13421 (13421) [004] d..2 24577.495456: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124729              ps-13421 (13421) [004] dn.3 24577.495459: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124730     kworker/1:1-13091 (13091) [001] d..2 24577.495461: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
124731              ps-13421 (13421) [004] d..2 24577.495461: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124732 shell svc 13418-13419 ( 1007) [004] d..2 24577.495469: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124733     kworker/1:1-13091 (13091) [001] d..3 24577.495483: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
124734     kworker/1:1-13091 (13091) [001] d..2 24577.495503: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
124735              ps-13421 (13421) [004] d..2 24577.495554: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124736              ps-13421 (13421) [004] dn.3 24577.495557: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124737            adbd-23485 ( 1007) [001] d..2 24577.495558: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124738              ps-13421 (13421) [004] d..2 24577.495560: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124739          <idle>-0     (-----) [001] d..1 24577.495566: cpu_idle: state=0 cpu_id=1
124740 shell svc 13418-13419 ( 1007) [004] d..2 24577.495568: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124741          <idle>-0     (-----) [001] d.h3 24577.495586: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124742          <idle>-0     (-----) [001] dnh4 24577.495593: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124743          <idle>-0     (-----) [001] .n.1 24577.495598: cpu_idle: state=4294967295 cpu_id=1
124744          <idle>-0     (-----) [001] d..2 24577.495604: 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
124745   kworker/u17:2-23076 (23076) [001] d..2 24577.495611: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124746   kworker/u17:2-23076 (23076) [001] d..3 24577.495616: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124747   kworker/u17:2-23076 (23076) [001] d..2 24577.495632: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124748     kworker/1:1-13091 (13091) [001] d..2 24577.495637: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
124749              ps-13421 (13421) [004] d..2 24577.495654: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124750              ps-13421 (13421) [004] dn.3 24577.495657: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124751     kworker/1:1-13091 (13091) [001] d..3 24577.495658: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
124752              ps-13421 (13421) [004] d..2 24577.495659: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124753 shell svc 13418-13419 ( 1007) [004] d..2 24577.495667: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124754     kworker/1:1-13091 (13091) [001] d..2 24577.495678: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
124755            adbd-23485 ( 1007) [001] d..2 24577.495696: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124756          <idle>-0     (-----) [001] d..1 24577.495704: cpu_idle: state=0 cpu_id=1
124757              ps-13421 (13421) [004] d..2 24577.495751: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124758              ps-13421 (13421) [004] dn.3 24577.495754: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124759              ps-13421 (13421) [004] d..2 24577.495757: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124760 shell svc 13418-13419 ( 1007) [004] d..2 24577.495764: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124761          <idle>-0     (-----) [001] d.h3 24577.495781: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124762          <idle>-0     (-----) [001] dnh4 24577.495787: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124763          <idle>-0     (-----) [001] .n.1 24577.495792: cpu_idle: state=4294967295 cpu_id=1
124764          <idle>-0     (-----) [001] d..2 24577.495798: 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
124765   kworker/u17:2-23076 (23076) [001] d..2 24577.495805: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124766   kworker/u17:2-23076 (23076) [001] d..3 24577.495810: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124767   kworker/u17:2-23076 (23076) [001] d..2 24577.495826: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124768     kworker/1:1-13091 (13091) [001] d..2 24577.495833: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
124769              ps-13421 (13421) [004] d..2 24577.495849: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124770              ps-13421 (13421) [004] dn.3 24577.495852: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124771     kworker/1:1-13091 (13091) [001] d..3 24577.495855: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
124772              ps-13421 (13421) [004] d..2 24577.495855: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124773 shell svc 13418-13419 ( 1007) [004] d..2 24577.495863: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124774 batterystats-wo-23998 (23968) [000] d..2 24577.495863: sched_switch: prev_comm=batterystats-wo prev_pid=23998 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
124775     kworker/1:1-13091 (13091) [001] d..2 24577.495869: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124776          <idle>-0     (-----) [001] d..1 24577.495877: cpu_idle: state=0 cpu_id=1
124777            adbd-23484 ( 1007) [000] d..2 24577.495878: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
124778            adbd-23484 ( 1007) [000] d..3 24577.495891: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
124779            adbd-23484 ( 1007) [000] d..2 24577.495937: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
124780              ps-13421 (13421) [004] d..2 24577.495976: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124781              ps-13421 (13421) [004] dn.3 24577.495979: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124782              ps-13421 (13421) [004] d..2 24577.495981: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124783 shell svc 13418-13419 ( 1007) [004] d..2 24577.495990: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124784            adbd-1007  ( 1007) [000] d..1 24577.496012: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
124785            adbd-1007  ( 1007) [000] d..2 24577.496024: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
124786          <idle>-0     (-----) [001] .n.1 24577.496029: cpu_idle: state=4294967295 cpu_id=1
124787          <idle>-0     (-----) [001] d..2 24577.496036: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
124788              ps-13421 (13421) [004] d..2 24577.496050: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124789              ps-13421 (13421) [004] dn.3 24577.496053: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124790              ps-13421 (13421) [004] d..2 24577.496055: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124791            adbd-1007  ( 1007) [000] d..2 24577.496059: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124792 shell svc 13418-13419 ( 1007) [004] d..2 24577.496063: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124793          <idle>-0     (-----) [000] d..1 24577.496069: cpu_idle: state=0 cpu_id=0
124794            adbd-23485 ( 1007) [001] d..2 24577.496084: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124795          <idle>-0     (-----) [001] d.h4 24577.496101: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124796          <idle>-0     (-----) [001] dnh5 24577.496107: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124797          <idle>-0     (-----) [001] d..2 24577.496115: 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
124798              ps-13421 (13421) [004] d..2 24577.496119: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124799   kworker/u17:2-23076 (23076) [001] d..2 24577.496121: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124800              ps-13421 (13421) [004] dn.3 24577.496122: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124801              ps-13421 (13421) [004] d..2 24577.496124: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124802   kworker/u17:2-23076 (23076) [001] d..3 24577.496127: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124803 shell svc 13418-13419 ( 1007) [004] d..2 24577.496132: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124804   kworker/u17:2-23076 (23076) [001] d..2 24577.496143: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124805     kworker/1:1-13091 (13091) [001] d..2 24577.496147: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
124806     kworker/1:1-13091 (13091) [001] d..3 24577.496156: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
124807     kworker/1:1-13091 (13091) [001] d..2 24577.496164: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
124808              ps-13421 (13421) [004] d..2 24577.496187: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124809              ps-13421 (13421) [004] dn.3 24577.496190: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124810              ps-13421 (13421) [004] d..2 24577.496193: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124811 shell svc 13418-13419 ( 1007) [004] d..2 24577.496200: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124812            adbd-23485 ( 1007) [001] d..2 24577.496210: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124813          <idle>-0     (-----) [001] d..1 24577.496219: cpu_idle: state=0 cpu_id=1
124814          <idle>-0     (-----) [001] d.h3 24577.496243: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124815          <idle>-0     (-----) [001] dnh4 24577.496249: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124816          <idle>-0     (-----) [001] .n.1 24577.496254: cpu_idle: state=4294967295 cpu_id=1
124817              ps-13421 (13421) [004] d..2 24577.496259: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124818          <idle>-0     (-----) [001] d..2 24577.496261: 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
124819              ps-13421 (13421) [004] dn.3 24577.496262: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124820              ps-13421 (13421) [004] d..2 24577.496264: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124821   kworker/u17:2-23076 (23076) [001] d..2 24577.496268: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124822 shell svc 13418-13419 ( 1007) [004] d..2 24577.496272: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124823   kworker/u17:2-23076 (23076) [001] d..3 24577.496273: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124824   kworker/u17:2-23076 (23076) [001] d..2 24577.496289: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124825     kworker/1:1-13091 (13091) [001] d..2 24577.496295: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
124826     kworker/1:1-13091 (13091) [001] d..3 24577.496303: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
124827     kworker/1:1-13091 (13091) [001] d..2 24577.496312: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
124828              ps-13421 (13421) [004] d..2 24577.496327: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124829            adbd-23485 ( 1007) [001] d..2 24577.496328: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124830              ps-13421 (13421) [004] dn.3 24577.496330: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124831              ps-13421 (13421) [004] d..2 24577.496332: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124832          <idle>-0     (-----) [001] d..1 24577.496336: cpu_idle: state=0 cpu_id=1
124833 shell svc 13418-13419 ( 1007) [004] d..2 24577.496339: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124834              ps-13421 (13421) [004] d..2 24577.496430: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124835              ps-13421 (13421) [004] dn.3 24577.496433: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124836              ps-13421 (13421) [004] d..2 24577.496435: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124837          <idle>-0     (-----) [001] d.h3 24577.496437: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124838 shell svc 13418-13419 ( 1007) [004] d..2 24577.496443: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124839          <idle>-0     (-----) [001] dnh4 24577.496443: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124840          <idle>-0     (-----) [001] .n.1 24577.496449: cpu_idle: state=4294967295 cpu_id=1
124841          <idle>-0     (-----) [001] d..2 24577.496455: 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
124842   kworker/u17:2-23076 (23076) [001] d..2 24577.496461: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124843   kworker/u17:2-23076 (23076) [001] d..3 24577.496467: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124844   kworker/u17:2-23076 (23076) [001] d..2 24577.496483: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124845     kworker/1:1-13091 (13091) [001] d..2 24577.496489: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
124846     kworker/1:1-13091 (13091) [001] d..3 24577.496499: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
124847          <idle>-0     (-----) [000] .n.1 24577.496503: cpu_idle: state=4294967295 cpu_id=0
124848          <idle>-0     (-----) [000] d..2 24577.496511: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
124849     kworker/1:1-13091 (13091) [001] d..2 24577.496513: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124850          <idle>-0     (-----) [001] d..1 24577.496520: cpu_idle: state=0 cpu_id=1
124851            adbd-23484 ( 1007) [000] d..2 24577.496521: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
124852            adbd-23484 ( 1007) [000] d..3 24577.496528: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
124853              ps-13421 (13421) [004] d..2 24577.496532: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124854              ps-13421 (13421) [004] dn.3 24577.496535: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124855              ps-13421 (13421) [004] d..2 24577.496538: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124856 shell svc 13418-13419 ( 1007) [004] d..2 24577.496545: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124857            adbd-23484 ( 1007) [000] d..2 24577.496573: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
124858              ps-13421 (13421) [004] d..2 24577.496634: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124859            adbd-1007  ( 1007) [000] d..1 24577.496636: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
124860              ps-13421 (13421) [004] dn.3 24577.496637: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124861              ps-13421 (13421) [004] d..2 24577.496640: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124862            adbd-1007  ( 1007) [000] d..2 24577.496647: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
124863 shell svc 13418-13419 ( 1007) [004] d..2 24577.496648: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124864          <idle>-0     (-----) [001] .n.1 24577.496652: cpu_idle: state=4294967295 cpu_id=1
124865          <idle>-0     (-----) [001] d..2 24577.496658: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
124866            adbd-1007  ( 1007) [000] d..2 24577.496682: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124867          <idle>-0     (-----) [000] d..1 24577.496691: cpu_idle: state=0 cpu_id=0
124868            adbd-23485 ( 1007) [001] d..2 24577.496705: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124869          <idle>-0     (-----) [001] d.h4 24577.496722: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124870          <idle>-0     (-----) [001] dnh5 24577.496728: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124871          <idle>-0     (-----) [001] d..2 24577.496736: 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
124872   kworker/u17:2-23076 (23076) [001] d..2 24577.496743: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124873              ps-13421 (13421) [004] d..2 24577.496745: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124874   kworker/u17:2-23076 (23076) [001] d..3 24577.496747: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124875              ps-13421 (13421) [004] dn.3 24577.496748: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124876              ps-13421 (13421) [004] d..2 24577.496751: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124877 shell svc 13418-13419 ( 1007) [004] d..2 24577.496759: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124878   kworker/u17:2-23076 (23076) [001] d..2 24577.496763: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124879     kworker/1:1-13091 (13091) [001] d..2 24577.496768: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
124880     kworker/1:1-13091 (13091) [001] d..3 24577.496776: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
124881     kworker/1:1-13091 (13091) [001] d..2 24577.496784: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
124882            adbd-23485 ( 1007) [001] d..2 24577.496830: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124883          <idle>-0     (-----) [001] d..1 24577.496838: cpu_idle: state=0 cpu_id=1
124884              ps-13421 (13421) [004] d..2 24577.496846: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124885              ps-13421 (13421) [004] dn.3 24577.496850: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124886              ps-13421 (13421) [004] d..2 24577.496852: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124887          <idle>-0     (-----) [001] d.h3 24577.496856: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124888 shell svc 13418-13419 ( 1007) [004] d..2 24577.496860: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124889          <idle>-0     (-----) [001] dnh4 24577.496862: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124890          <idle>-0     (-----) [001] .n.1 24577.496871: cpu_idle: state=4294967295 cpu_id=1
124891          <idle>-0     (-----) [001] d..2 24577.496878: 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
124892   kworker/u17:2-23076 (23076) [001] d..2 24577.496884: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124893   kworker/u17:2-23076 (23076) [001] d..3 24577.496890: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124894   kworker/u17:2-23076 (23076) [001] d..2 24577.496906: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124895     kworker/1:1-13091 (13091) [001] d..2 24577.496911: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
124896     kworker/1:1-13091 (13091) [001] d..3 24577.496920: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
124897     kworker/1:1-13091 (13091) [001] d..2 24577.496928: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
124898              ps-13421 (13421) [004] d..2 24577.496943: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124899            adbd-23485 ( 1007) [001] d..2 24577.496945: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124900              ps-13421 (13421) [004] dn.3 24577.496946: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124901              ps-13421 (13421) [004] d..2 24577.496948: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124902          <idle>-0     (-----) [001] d..1 24577.496952: cpu_idle: state=0 cpu_id=1
124903 shell svc 13418-13419 ( 1007) [004] d..2 24577.496956: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124904          <idle>-0     (-----) [001] d.h3 24577.497009: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124905          <idle>-0     (-----) [001] dnh4 24577.497015: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124906              ps-13421 (13421) [004] d..2 24577.497017: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124907              ps-13421 (13421) [004] dn.3 24577.497020: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124908          <idle>-0     (-----) [001] .n.1 24577.497021: cpu_idle: state=4294967295 cpu_id=1
124909              ps-13421 (13421) [004] d..2 24577.497022: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124910          <idle>-0     (-----) [001] d..2 24577.497027: 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
124911 shell svc 13418-13419 ( 1007) [004] d..2 24577.497030: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124912   kworker/u17:2-23076 (23076) [001] d..2 24577.497034: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124913   kworker/u17:2-23076 (23076) [001] d..3 24577.497039: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124914   kworker/u17:2-23076 (23076) [001] d..2 24577.497055: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124915     kworker/1:1-13091 (13091) [001] d..2 24577.497061: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
124916     kworker/1:1-13091 (13091) [001] d..3 24577.497070: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
124917          <idle>-0     (-----) [000] .n.1 24577.497075: cpu_idle: state=4294967295 cpu_id=0
124918          <idle>-0     (-----) [000] d..2 24577.497083: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
124919     kworker/1:1-13091 (13091) [001] d..2 24577.497084: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124920          <idle>-0     (-----) [001] d..1 24577.497091: cpu_idle: state=0 cpu_id=1
124921            adbd-23484 ( 1007) [000] d..2 24577.497093: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
124922            adbd-23484 ( 1007) [000] d..3 24577.497100: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
124923              ps-13421 (13421) [004] d..2 24577.497118: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124924              ps-13421 (13421) [004] dn.3 24577.497121: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124925              ps-13421 (13421) [004] d..2 24577.497123: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124926 shell svc 13418-13419 ( 1007) [004] d..2 24577.497131: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124927            adbd-23484 ( 1007) [000] d..2 24577.497146: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
124928              ps-13421 (13421) [004] d..2 24577.497191: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124929              ps-13421 (13421) [004] dn.3 24577.497195: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124930              ps-13421 (13421) [004] d..2 24577.497197: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124931 shell svc 13418-13419 ( 1007) [004] d..2 24577.497204: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124932            adbd-1007  ( 1007) [000] d..1 24577.497208: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
124933            adbd-1007  ( 1007) [000] d..2 24577.497219: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
124934          <idle>-0     (-----) [001] .n.1 24577.497224: cpu_idle: state=4294967295 cpu_id=1
124935          <idle>-0     (-----) [001] d..2 24577.497231: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
124936            adbd-1007  ( 1007) [000] d..2 24577.497253: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124937          <idle>-0     (-----) [000] d..1 24577.497262: cpu_idle: state=0 cpu_id=0
124938          <idle>-0     (-----) [002] ...1 24577.497274: cpu_idle: state=4294967295 cpu_id=2
124939          <idle>-0     (-----) [002] d..1 24577.497277: cpu_idle: state=2 cpu_id=2
124940            adbd-23485 ( 1007) [001] d..2 24577.497277: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124941          <idle>-0     (-----) [001] d..1 24577.497284: cpu_idle: state=0 cpu_id=1
124942              ps-13421 (13421) [004] d..2 24577.497288: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124943              ps-13421 (13421) [004] dn.3 24577.497291: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124944              ps-13421 (13421) [004] d..2 24577.497294: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124945 shell svc 13418-13419 ( 1007) [004] d..2 24577.497302: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124946          <idle>-0     (-----) [001] d.h3 24577.497303: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124947          <idle>-0     (-----) [001] dnh4 24577.497309: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124948          <idle>-0     (-----) [001] .n.1 24577.497315: cpu_idle: state=4294967295 cpu_id=1
124949          <idle>-0     (-----) [001] d..2 24577.497321: 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
124950   kworker/u17:2-23076 (23076) [001] d..2 24577.497328: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124951   kworker/u17:2-23076 (23076) [001] d..3 24577.497333: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124952   kworker/u17:2-23076 (23076) [001] d..2 24577.497349: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124953     kworker/1:1-13091 (13091) [001] d..2 24577.497354: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
124954     kworker/1:1-13091 (13091) [001] d..3 24577.497363: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
124955     kworker/1:1-13091 (13091) [001] d..2 24577.497372: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
124956              ps-13421 (13421) [004] d..2 24577.497414: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124957            adbd-23485 ( 1007) [001] d..2 24577.497417: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124958              ps-13421 (13421) [004] dn.3 24577.497418: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124959              ps-13421 (13421) [004] d..2 24577.497420: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124960          <idle>-0     (-----) [001] d..1 24577.497425: cpu_idle: state=0 cpu_id=1
124961 shell svc 13418-13419 ( 1007) [004] d..2 24577.497428: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124962          <idle>-0     (-----) [001] d.h3 24577.497442: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124963          <idle>-0     (-----) [001] dnh4 24577.497451: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124964          <idle>-0     (-----) [001] .n.1 24577.497457: cpu_idle: state=4294967295 cpu_id=1
124965          <idle>-0     (-----) [001] d..2 24577.497463: 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
124966   kworker/u17:2-23076 (23076) [001] d..2 24577.497470: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124967   kworker/u17:2-23076 (23076) [001] d..3 24577.497475: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124968   kworker/u17:2-23076 (23076) [001] d..2 24577.497491: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124969     kworker/1:1-13091 (13091) [001] d..2 24577.497496: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
124970     kworker/1:1-13091 (13091) [001] d..3 24577.497505: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
124971     kworker/1:1-13091 (13091) [001] d..2 24577.497513: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
124972              ps-13421 (13421) [004] d..2 24577.497513: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124973              ps-13421 (13421) [004] dn.3 24577.497516: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
124974              ps-13421 (13421) [004] d..2 24577.497519: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
124975 shell svc 13418-13419 ( 1007) [004] d..2 24577.497526: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
124976            adbd-23485 ( 1007) [001] d..2 24577.497530: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124977          <idle>-0     (-----) [001] d..1 24577.497537: cpu_idle: state=0 cpu_id=1
124978          <idle>-0     (-----) [003] d.s2 24577.497581: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
124979              ps-13421 (13421) [004] d.H3 24577.497588: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
124980          <idle>-0     (-----) [001] d.h3 24577.497592: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124981          <idle>-0     (-----) [003] dns3 24577.497592: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
124982              ps-13421 (13421) [004] d.H4 24577.497595: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
124983              ps-13421 (13421) [004] d.H3 24577.497596: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
124984          <idle>-0     (-----) [001] dnh4 24577.497599: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
124985          <idle>-0     (-----) [001] .n.1 24577.497605: cpu_idle: state=4294967295 cpu_id=1
124986          <idle>-0     (-----) [003] .n.1 24577.497606: cpu_idle: state=4294967295 cpu_id=3
124987          <idle>-0     (-----) [003] d..2 24577.497611: 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
124988          <idle>-0     (-----) [001] d..2 24577.497612: 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
124989          <idle>-0     (-----) [000] dnh2 24577.497616: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
124990   kworker/u17:2-23076 (23076) [001] d..2 24577.497619: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124991          <idle>-0     (-----) [000] .n.1 24577.497620: cpu_idle: state=4294967295 cpu_id=0
124992   kworker/u17:2-23076 (23076) [001] d..3 24577.497625: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
124993          <idle>-0     (-----) [000] d..2 24577.497627: 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
124994     rcu_preempt-7     (    7) [003] d..2 24577.497630: 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
124995          <idle>-0     (-----) [003] d..1 24577.497636: cpu_idle: state=0 cpu_id=3
124996   kworker/u17:2-23076 (23076) [001] d..2 24577.497642: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
124997         sugov:0-559   (  559) [000] d..2 24577.497644: 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
124998     kworker/1:1-13091 (13091) [001] d..2 24577.497648: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
124999          <idle>-0     (-----) [000] d..1 24577.497650: cpu_idle: state=0 cpu_id=0
125000     kworker/1:1-13091 (13091) [001] d..3 24577.497658: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
125001          <idle>-0     (-----) [000] .n.1 24577.497662: cpu_idle: state=4294967295 cpu_id=0
125002          <idle>-0     (-----) [000] d..2 24577.497669: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
125003     kworker/1:1-13091 (13091) [001] d..2 24577.497672: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125004          <idle>-0     (-----) [001] d..1 24577.497680: cpu_idle: state=0 cpu_id=1
125005            adbd-23484 ( 1007) [000] d..2 24577.497680: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
125006            adbd-23484 ( 1007) [000] d..3 24577.497688: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
125007              ps-13421 (13421) [004] d..2 24577.497715: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125008              ps-13421 (13421) [004] dn.3 24577.497718: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125009              ps-13421 (13421) [004] d..2 24577.497721: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125010 shell svc 13418-13419 ( 1007) [004] d..2 24577.497730: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125011            adbd-23484 ( 1007) [000] d..2 24577.497732: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
125012          <idle>-0     (-----) [007] .n.1 24577.497745: cpu_idle: state=4294967295 cpu_id=7
125013          <idle>-0     (-----) [007] d..2 24577.497751: 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
125014         sugov:4-560   (  560) [007] d..2 24577.497759: 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
125015          <idle>-0     (-----) [007] d..1 24577.497763: cpu_idle: state=2 cpu_id=7
125016            adbd-1007  ( 1007) [000] d..1 24577.497793: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
125017            adbd-1007  ( 1007) [000] d..2 24577.497816: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
125018              ps-13421 (13421) [004] d..2 24577.497820: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125019          <idle>-0     (-----) [001] .n.1 24577.497822: cpu_idle: state=4294967295 cpu_id=1
125020              ps-13421 (13421) [004] dn.3 24577.497823: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125021              ps-13421 (13421) [004] d..2 24577.497826: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125022          <idle>-0     (-----) [001] d..2 24577.497828: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
125023 shell svc 13418-13419 ( 1007) [004] d..2 24577.497834: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125024            adbd-1007  ( 1007) [000] d..2 24577.497851: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125025          <idle>-0     (-----) [000] d..1 24577.497860: cpu_idle: state=0 cpu_id=0
125026            adbd-23485 ( 1007) [001] d..2 24577.497874: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125027          <idle>-0     (-----) [001] d.h4 24577.497891: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125028          <idle>-0     (-----) [001] dnh5 24577.497897: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125029          <idle>-0     (-----) [001] d..2 24577.497905: 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
125030   kworker/u17:2-23076 (23076) [001] d..2 24577.497913: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125031   kworker/u17:2-23076 (23076) [001] d..3 24577.497917: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125032              ps-13421 (13421) [004] d..2 24577.497931: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125033   kworker/u17:2-23076 (23076) [001] d..2 24577.497934: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
125034              ps-13421 (13421) [004] dn.3 24577.497935: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125035              ps-13421 (13421) [004] d..2 24577.497937: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125036     kworker/1:1-13091 (13091) [001] d..2 24577.497938: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
125037 shell svc 13418-13419 ( 1007) [004] d..2 24577.497945: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125038     kworker/1:1-13091 (13091) [001] d..3 24577.497947: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
125039     kworker/1:1-13091 (13091) [001] d..2 24577.497956: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
125040            adbd-23485 ( 1007) [001] d..2 24577.498001: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125041          <idle>-0     (-----) [001] d..1 24577.498009: cpu_idle: state=0 cpu_id=1
125042              ps-13421 (13421) [004] d..2 24577.498033: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125043          <idle>-0     (-----) [001] d.h3 24577.498034: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125044              ps-13421 (13421) [004] dn.3 24577.498036: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125045              ps-13421 (13421) [004] d..2 24577.498039: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125046          <idle>-0     (-----) [001] dnh4 24577.498040: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125047          <idle>-0     (-----) [001] .n.1 24577.498046: cpu_idle: state=4294967295 cpu_id=1
125048 shell svc 13418-13419 ( 1007) [004] d..2 24577.498047: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125049          <idle>-0     (-----) [001] d..2 24577.498052: 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
125050   kworker/u17:2-23076 (23076) [001] d..2 24577.498058: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125051   kworker/u17:2-23076 (23076) [001] d..3 24577.498064: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125052   kworker/u17:2-23076 (23076) [001] d..2 24577.498080: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
125053     kworker/1:1-13091 (13091) [001] d..2 24577.498085: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
125054     kworker/1:1-13091 (13091) [001] d..3 24577.498094: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
125055     kworker/1:1-13091 (13091) [001] d..2 24577.498102: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
125056            adbd-23485 ( 1007) [001] d..2 24577.498121: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125057          <idle>-0     (-----) [001] d..1 24577.498128: cpu_idle: state=0 cpu_id=1
125058              ps-13421 (13421) [004] d..2 24577.498137: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125059              ps-13421 (13421) [004] dn.3 24577.498141: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125060              ps-13421 (13421) [004] d..2 24577.498143: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125061 shell svc 13418-13419 ( 1007) [004] d..2 24577.498151: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125062          <idle>-0     (-----) [001] d.h3 24577.498161: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125063          <idle>-0     (-----) [001] dnh4 24577.498167: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125064          <idle>-0     (-----) [001] .n.1 24577.498172: cpu_idle: state=4294967295 cpu_id=1
125065          <idle>-0     (-----) [001] d..2 24577.498179: 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
125066   kworker/u17:2-23076 (23076) [001] d..2 24577.498185: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125067   kworker/u17:2-23076 (23076) [001] d..3 24577.498191: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125068   kworker/u17:2-23076 (23076) [001] d..2 24577.498208: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
125069     kworker/1:1-13091 (13091) [001] d..2 24577.498215: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
125070     kworker/1:1-13091 (13091) [001] d..3 24577.498226: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
125071          <idle>-0     (-----) [000] .n.1 24577.498231: cpu_idle: state=4294967295 cpu_id=0
125072     kworker/1:1-13091 (13091) [001] d..2 24577.498235: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125073          <idle>-0     (-----) [000] d..2 24577.498239: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
125074          <idle>-0     (-----) [001] d..1 24577.498242: cpu_idle: state=0 cpu_id=1
125075              ps-13421 (13421) [004] d..2 24577.498243: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125076              ps-13421 (13421) [004] dn.3 24577.498246: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125077              ps-13421 (13421) [004] d..2 24577.498248: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125078            adbd-23484 ( 1007) [000] d..2 24577.498250: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
125079 shell svc 13418-13419 ( 1007) [004] d..2 24577.498256: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125080            adbd-23484 ( 1007) [000] d..3 24577.498257: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
125081            adbd-23484 ( 1007) [000] d..2 24577.498301: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
125082              ps-13421 (13421) [004] d..2 24577.498356: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125083              ps-13421 (13421) [004] dn.3 24577.498359: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125084              ps-13421 (13421) [004] d..2 24577.498362: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125085            adbd-1007  ( 1007) [000] d..1 24577.498362: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
125086 shell svc 13418-13419 ( 1007) [004] d..2 24577.498370: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125087            adbd-1007  ( 1007) [000] d..2 24577.498373: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
125088          <idle>-0     (-----) [001] .n.1 24577.498379: cpu_idle: state=4294967295 cpu_id=1
125089          <idle>-0     (-----) [001] d..2 24577.498385: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
125090            adbd-1007  ( 1007) [000] d..2 24577.498408: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125091          <idle>-0     (-----) [000] d..1 24577.498416: cpu_idle: state=0 cpu_id=0
125092            adbd-23485 ( 1007) [001] d..2 24577.498432: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125093          <idle>-0     (-----) [001] d.h4 24577.498449: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125094          <idle>-0     (-----) [001] dnh5 24577.498455: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125095              ps-13421 (13421) [004] d..2 24577.498457: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125096              ps-13421 (13421) [004] dn.3 24577.498461: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125097          <idle>-0     (-----) [001] d..2 24577.498462: 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
125098              ps-13421 (13421) [004] d..2 24577.498463: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125099   kworker/u17:2-23076 (23076) [001] d..2 24577.498469: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125100 shell svc 13418-13419 ( 1007) [004] d..2 24577.498472: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125101   kworker/u17:2-23076 (23076) [001] d..3 24577.498474: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125102   kworker/u17:2-23076 (23076) [001] d..2 24577.498491: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
125103     kworker/1:1-13091 (13091) [001] d..2 24577.498495: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
125104     kworker/1:1-13091 (13091) [001] d..3 24577.498504: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
125105     kworker/1:1-13091 (13091) [001] d..2 24577.498513: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
125106            adbd-23485 ( 1007) [001] d..2 24577.498554: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125107          <idle>-0     (-----) [001] d..1 24577.498563: cpu_idle: state=0 cpu_id=1
125108              ps-13421 (13421) [004] d..2 24577.498565: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125109              ps-13421 (13421) [004] dn.3 24577.498568: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125110              ps-13421 (13421) [004] d..2 24577.498571: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125111 shell svc 13418-13419 ( 1007) [004] d..2 24577.498579: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125112          <idle>-0     (-----) [001] d.h3 24577.498581: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125113          <idle>-0     (-----) [001] dnh4 24577.498587: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125114          <idle>-0     (-----) [001] .n.1 24577.498592: cpu_idle: state=4294967295 cpu_id=1
125115          <idle>-0     (-----) [001] d..2 24577.498599: 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
125116   kworker/u17:2-23076 (23076) [001] d..2 24577.498605: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125117   kworker/u17:2-23076 (23076) [001] d..3 24577.498610: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125118   kworker/u17:2-23076 (23076) [001] d..2 24577.498627: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
125119     kworker/1:1-13091 (13091) [001] d..2 24577.498632: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
125120     kworker/1:1-13091 (13091) [001] d..3 24577.498641: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
125121     kworker/1:1-13091 (13091) [001] d..2 24577.498649: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
125122            adbd-23485 ( 1007) [001] d..2 24577.498661: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125123              ps-13421 (13421) [004] d..2 24577.498665: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125124          <idle>-0     (-----) [001] d..1 24577.498668: cpu_idle: state=0 cpu_id=1
125125              ps-13421 (13421) [004] dn.3 24577.498668: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125126              ps-13421 (13421) [004] d..2 24577.498671: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125127 shell svc 13418-13419 ( 1007) [004] d..2 24577.498679: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125128          <idle>-0     (-----) [001] d.h3 24577.498698: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125129          <idle>-0     (-----) [001] dnh4 24577.498703: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125130          <idle>-0     (-----) [001] .n.1 24577.498709: cpu_idle: state=4294967295 cpu_id=1
125131          <idle>-0     (-----) [001] d..2 24577.498715: 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
125132   kworker/u17:2-23076 (23076) [001] d..2 24577.498721: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125133   kworker/u17:2-23076 (23076) [001] d..3 24577.498727: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125134   kworker/u17:2-23076 (23076) [001] d..2 24577.498743: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
125135     kworker/1:1-13091 (13091) [001] d..2 24577.498750: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
125136     kworker/1:1-13091 (13091) [001] d..3 24577.498758: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
125137          <idle>-0     (-----) [000] .n.1 24577.498764: cpu_idle: state=4294967295 cpu_id=0
125138     kworker/1:1-13091 (13091) [001] d..2 24577.498767: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125139              ps-13421 (13421) [004] d..2 24577.498768: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125140              ps-13421 (13421) [004] dn.3 24577.498771: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125141          <idle>-0     (-----) [000] d..2 24577.498771: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
125142              ps-13421 (13421) [004] d..2 24577.498773: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125143          <idle>-0     (-----) [001] d..1 24577.498774: cpu_idle: state=0 cpu_id=1
125144 shell svc 13418-13419 ( 1007) [004] d..2 24577.498781: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125145            adbd-23484 ( 1007) [000] d..2 24577.498782: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
125146            adbd-23484 ( 1007) [000] d..3 24577.498789: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
125147            adbd-23484 ( 1007) [000] d..2 24577.498834: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
125148              ps-13421 (13421) [004] d..2 24577.498870: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125149              ps-13421 (13421) [004] dn.3 24577.498873: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125150              ps-13421 (13421) [004] d..2 24577.498876: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125151 shell svc 13418-13419 ( 1007) [004] d..2 24577.498884: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125152            adbd-1007  ( 1007) [000] d..1 24577.498898: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
125153            adbd-1007  ( 1007) [000] d..2 24577.498909: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
125154          <idle>-0     (-----) [001] .n.1 24577.498914: cpu_idle: state=4294967295 cpu_id=1
125155          <idle>-0     (-----) [001] d..2 24577.498920: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
125156            adbd-1007  ( 1007) [000] d..2 24577.498943: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125157          <idle>-0     (-----) [000] d..1 24577.498952: cpu_idle: state=0 cpu_id=0
125158            adbd-23485 ( 1007) [001] d..2 24577.498962: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125159          <idle>-0     (-----) [001] d..1 24577.498969: cpu_idle: state=0 cpu_id=1
125160              ps-13421 (13421) [004] d..2 24577.498974: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125161              ps-13421 (13421) [004] dn.3 24577.498978: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125162              ps-13421 (13421) [004] d..2 24577.498980: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125163 shell svc 13418-13419 ( 1007) [004] d..2 24577.498989: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125164          <idle>-0     (-----) [001] d.h3 24577.498990: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125165          <idle>-0     (-----) [001] dnh4 24577.498996: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125166          <idle>-0     (-----) [001] .n.1 24577.499001: cpu_idle: state=4294967295 cpu_id=1
125167          <idle>-0     (-----) [001] d..2 24577.499007: 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
125168   kworker/u17:2-23076 (23076) [001] d..2 24577.499013: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125169   kworker/u17:2-23076 (23076) [001] d..3 24577.499019: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125170   kworker/u17:2-23076 (23076) [001] d..2 24577.499035: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
125171     kworker/1:1-13091 (13091) [001] d..2 24577.499040: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
125172     kworker/1:1-13091 (13091) [001] d..3 24577.499049: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
125173     kworker/1:1-13091 (13091) [001] d..2 24577.499058: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
125174              ps-13421 (13421) [004] d..2 24577.499076: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125175              ps-13421 (13421) [004] dn.3 24577.499080: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125176              ps-13421 (13421) [004] d..2 24577.499082: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125177 shell svc 13418-13419 ( 1007) [004] d..2 24577.499090: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125178            adbd-23485 ( 1007) [001] d..2 24577.499106: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125179          <idle>-0     (-----) [001] d..1 24577.499114: cpu_idle: state=0 cpu_id=1
125180          <idle>-0     (-----) [001] d.h3 24577.499148: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125181          <idle>-0     (-----) [001] dnh4 24577.499155: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125182          <idle>-0     (-----) [001] .n.1 24577.499160: cpu_idle: state=4294967295 cpu_id=1
125183          <idle>-0     (-----) [001] d..2 24577.499166: 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
125184   kworker/u17:2-23076 (23076) [001] d..2 24577.499173: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125185              ps-13421 (13421) [004] d..2 24577.499177: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125186   kworker/u17:2-23076 (23076) [001] d..3 24577.499178: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125187              ps-13421 (13421) [004] dn.3 24577.499180: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125188              ps-13421 (13421) [004] d..2 24577.499182: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125189 shell svc 13418-13419 ( 1007) [004] d..2 24577.499190: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125190   kworker/u17:2-23076 (23076) [001] d..2 24577.499194: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
125191     kworker/1:1-13091 (13091) [001] d..2 24577.499199: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
125192     kworker/1:1-13091 (13091) [001] d..3 24577.499208: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
125193     kworker/1:1-13091 (13091) [001] d..2 24577.499216: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
125194            adbd-23485 ( 1007) [001] d..2 24577.499228: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125195          <idle>-0     (-----) [001] d..1 24577.499236: cpu_idle: state=0 cpu_id=1
125196              ps-13421 (13421) [004] d..2 24577.499267: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125197              ps-13421 (13421) [004] dn.3 24577.499270: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125198              ps-13421 (13421) [004] d..2 24577.499272: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125199          <idle>-0     (-----) [001] d.h3 24577.499279: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125200 shell svc 13418-13419 ( 1007) [004] d..2 24577.499280: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125201          <idle>-0     (-----) [001] dnh4 24577.499285: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125202          <idle>-0     (-----) [001] .n.1 24577.499290: cpu_idle: state=4294967295 cpu_id=1
125203          <idle>-0     (-----) [001] d..2 24577.499296: 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
125204   kworker/u17:2-23076 (23076) [001] d..2 24577.499303: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125205   kworker/u17:2-23076 (23076) [001] d..3 24577.499308: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125206   kworker/u17:2-23076 (23076) [001] d..2 24577.499325: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
125207     kworker/1:1-13091 (13091) [001] d..2 24577.499330: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
125208              ps-13421 (13421) [004] d..2 24577.499339: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125209     kworker/1:1-13091 (13091) [001] d..3 24577.499339: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
125210              ps-13421 (13421) [004] dn.3 24577.499343: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125211              ps-13421 (13421) [004] d..2 24577.499345: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125212          <idle>-0     (-----) [000] .n.1 24577.499346: cpu_idle: state=4294967295 cpu_id=0
125213     kworker/1:1-13091 (13091) [001] d..2 24577.499348: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125214 shell svc 13418-13419 ( 1007) [004] d..2 24577.499352: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125215          <idle>-0     (-----) [000] d..2 24577.499353: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
125216          <idle>-0     (-----) [001] d..1 24577.499355: cpu_idle: state=0 cpu_id=1
125217            adbd-23484 ( 1007) [000] d..2 24577.499364: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
125218            adbd-23484 ( 1007) [000] d..3 24577.499370: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
125219            adbd-23484 ( 1007) [000] d..2 24577.499416: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
125220              ps-13421 (13421) [004] d..2 24577.499438: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125221              ps-13421 (13421) [004] dn.3 24577.499441: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125222              ps-13421 (13421) [004] d..2 24577.499443: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125223 shell svc 13418-13419 ( 1007) [004] d..2 24577.499451: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125224            adbd-1007  ( 1007) [000] d..1 24577.499478: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
125225            adbd-1007  ( 1007) [000] d..2 24577.499489: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
125226          <idle>-0     (-----) [001] .n.1 24577.499494: cpu_idle: state=4294967295 cpu_id=1
125227          <idle>-0     (-----) [001] d..2 24577.499500: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
125228              ps-13421 (13421) [004] d..2 24577.499511: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125229              ps-13421 (13421) [004] dn.3 24577.499514: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125230              ps-13421 (13421) [004] d..2 24577.499516: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125231            adbd-1007  ( 1007) [000] d..2 24577.499523: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125232 shell svc 13418-13419 ( 1007) [004] d..2 24577.499524: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125233          <idle>-0     (-----) [000] d..1 24577.499532: cpu_idle: state=0 cpu_id=0
125234            adbd-23485 ( 1007) [001] d..2 24577.499542: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125235          <idle>-0     (-----) [001] d..1 24577.499550: cpu_idle: state=0 cpu_id=1
125236          <idle>-0     (-----) [001] d.h3 24577.499570: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125237          <idle>-0     (-----) [001] dnh4 24577.499579: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125238              ps-13421 (13421) [004] d..2 24577.499581: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125239          <idle>-0     (-----) [001] .n.1 24577.499585: cpu_idle: state=4294967295 cpu_id=1
125240              ps-13421 (13421) [004] dn.3 24577.499585: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125241              ps-13421 (13421) [004] d..2 24577.499587: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125242          <idle>-0     (-----) [001] d..2 24577.499591: 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
125243 shell svc 13418-13419 ( 1007) [004] d..2 24577.499594: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125244   kworker/u17:2-23076 (23076) [001] d..2 24577.499597: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125245   kworker/u17:2-23076 (23076) [001] d..3 24577.499602: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125246   kworker/u17:2-23076 (23076) [001] d..2 24577.499618: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
125247     kworker/1:1-13091 (13091) [001] d..2 24577.499623: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
125248     kworker/1:1-13091 (13091) [001] d..3 24577.499631: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
125249     kworker/1:1-13091 (13091) [001] d..2 24577.499640: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
125250            adbd-23485 ( 1007) [001] d..2 24577.499681: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125251          <idle>-0     (-----) [001] d..1 24577.499689: cpu_idle: state=0 cpu_id=1
125252              ps-13421 (13421) [004] d..2 24577.499704: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125253              ps-13421 (13421) [004] dn.3 24577.499708: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125254          <idle>-0     (-----) [001] d.h3 24577.499708: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125255              ps-13421 (13421) [004] d..2 24577.499711: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125256          <idle>-0     (-----) [001] dnh4 24577.499714: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125257 shell svc 13418-13419 ( 1007) [004] d..2 24577.499719: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125258          <idle>-0     (-----) [001] .n.1 24577.499720: cpu_idle: state=4294967295 cpu_id=1
125259          <idle>-0     (-----) [001] d..2 24577.499726: 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
125260   kworker/u17:2-23076 (23076) [001] d..2 24577.499732: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125261   kworker/u17:2-23076 (23076) [001] d..3 24577.499737: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125262   kworker/u17:2-23076 (23076) [001] d..2 24577.499754: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
125263     kworker/1:1-13091 (13091) [001] d..2 24577.499759: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
125264     kworker/1:1-13091 (13091) [001] d..3 24577.499768: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
125265     kworker/1:1-13091 (13091) [001] d..2 24577.499776: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
125266              ps-13421 (13421) [004] d..2 24577.499780: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125267              ps-13421 (13421) [004] dn.3 24577.499784: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125268              ps-13421 (13421) [004] d..2 24577.499786: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125269            adbd-23485 ( 1007) [001] d..2 24577.499788: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125270 shell svc 13418-13419 ( 1007) [004] d..2 24577.499793: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125271          <idle>-0     (-----) [001] d..1 24577.499796: cpu_idle: state=0 cpu_id=1
125272          <idle>-0     (-----) [001] d.h3 24577.499827: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125273          <idle>-0     (-----) [001] dnh4 24577.499832: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125274          <idle>-0     (-----) [001] .n.1 24577.499838: cpu_idle: state=4294967295 cpu_id=1
125275          <idle>-0     (-----) [001] d..2 24577.499844: 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
125276   kworker/u17:2-23076 (23076) [001] d..2 24577.499850: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125277              ps-13421 (13421) [004] d..2 24577.499853: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125278   kworker/u17:2-23076 (23076) [001] d..3 24577.499855: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125279              ps-13421 (13421) [004] dn.3 24577.499856: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125280              ps-13421 (13421) [004] d..2 24577.499858: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125281 shell svc 13418-13419 ( 1007) [004] d..2 24577.499865: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125282   kworker/u17:2-23076 (23076) [001] d..2 24577.499872: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
125283     kworker/1:1-13091 (13091) [001] d..2 24577.499878: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
125284     kworker/1:1-13091 (13091) [001] d..3 24577.499887: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
125285          <idle>-0     (-----) [000] .n.1 24577.499892: cpu_idle: state=4294967295 cpu_id=0
125286     kworker/1:1-13091 (13091) [001] d..2 24577.499895: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125287          <idle>-0     (-----) [000] d..2 24577.499899: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
125288          <idle>-0     (-----) [001] d..1 24577.499903: cpu_idle: state=0 cpu_id=1
125289            adbd-23484 ( 1007) [000] d..2 24577.499910: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
125290            adbd-23484 ( 1007) [000] d..3 24577.499917: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
125291              ps-13421 (13421) [004] d..2 24577.499955: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125292              ps-13421 (13421) [004] dn.3 24577.499958: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125293              ps-13421 (13421) [004] d..2 24577.499960: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125294            adbd-23484 ( 1007) [000] d..2 24577.499962: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
125295 shell svc 13418-13419 ( 1007) [004] d..2 24577.499968: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125296          <idle>-0     (-----) [003] d.h2 24577.500012: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
125297          <idle>-0     (-----) [003] dnh3 24577.500023: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
125298            adbd-1007  ( 1007) [000] d..1 24577.500023: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
125299              ps-13421 (13421) [004] d..2 24577.500026: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125300          <idle>-0     (-----) [003] .n.1 24577.500028: cpu_idle: state=4294967295 cpu_id=3
125301              ps-13421 (13421) [004] dn.3 24577.500029: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125302              ps-13421 (13421) [004] d..2 24577.500032: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125303          <idle>-0     (-----) [003] d..2 24577.500035: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
125304 shell svc 13418-13419 ( 1007) [004] d..2 24577.500039: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125305            adbd-1007  ( 1007) [000] d..2 24577.500048: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
125306        DispSync-23904 (23896) [003] d..1 24577.500063: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
125307        DispSync-23904 (23896) [003] d..2 24577.500080: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
125308          <idle>-0     (-----) [001] .n.1 24577.500085: cpu_idle: state=4294967295 cpu_id=1
125309            adbd-1007  ( 1007) [000] d..2 24577.500088: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125310          <idle>-0     (-----) [001] d..2 24577.500090: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
125311          <idle>-0     (-----) [000] d..1 24577.500096: cpu_idle: state=0 cpu_id=0
125312        DispSync-23904 (23896) [003] d..2 24577.500099: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
125313              ps-13421 (13421) [004] d..2 24577.500125: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125314              ps-13421 (13421) [004] dn.3 24577.500128: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125315              ps-13421 (13421) [004] d..2 24577.500131: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125316  appEventThread-23905 (23896) [001] d..3 24577.500135: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
125317 shell svc 13418-13419 ( 1007) [004] d..2 24577.500139: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125318            adbd-23485 ( 1007) [003] d..2 24577.500149: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
125319  appEventThread-23905 (23896) [001] d..4 24577.500150: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
125320          <idle>-0     (-----) [000] .n.1 24577.500155: cpu_idle: state=4294967295 cpu_id=0
125321          <idle>-0     (-----) [003] d..1 24577.500156: cpu_idle: state=0 cpu_id=3
125322          <idle>-0     (-----) [000] d..2 24577.500163: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
125323  appEventThread-23905 (23896) [001] d.h3 24577.500166: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125324  appEventThread-23905 (23896) [001] d.h4 24577.500175: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125325  appEventThread-23905 (23896) [001] d..2 24577.500194: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
125326              ps-13421 (13421) [004] d..2 24577.500199: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125327              ps-13421 (13421) [004] dn.3 24577.500201: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125328   kworker/u17:2-23076 (23076) [001] d..2 24577.500202: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125329              ps-13421 (13421) [004] d..2 24577.500204: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125330   kworker/u17:2-23076 (23076) [001] d..3 24577.500208: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125331 shell svc 13418-13419 ( 1007) [004] d..2 24577.500211: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125332   kworker/u17:2-23076 (23076) [001] d..2 24577.500224: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
125333     kworker/1:1-13091 (13091) [001] d..2 24577.500230: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
125334     kworker/1:1-13091 (13091) [001] d..3 24577.500239: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
125335          <idle>-0     (-----) [003] .n.1 24577.500244: cpu_idle: state=4294967295 cpu_id=3
125336          <idle>-0     (-----) [003] d..2 24577.500251: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
125337     kworker/1:1-13091 (13091) [001] d..2 24577.500255: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125338          <idle>-0     (-----) [001] d..1 24577.500263: cpu_idle: state=0 cpu_id=1
125339              ps-13421 (13421) [004] d..2 24577.500292: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125340              ps-13421 (13421) [004] dn.3 24577.500295: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125341            adbd-23485 ( 1007) [003] d..2 24577.500298: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
125342              ps-13421 (13421) [004] d..2 24577.500298: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125343          <idle>-0     (-----) [003] d..1 24577.500304: cpu_idle: state=0 cpu_id=3
125344 shell svc 13418-13419 ( 1007) [004] d..2 24577.500306: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125345          <idle>-0     (-----) [001] d.h3 24577.500331: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125346          <idle>-0     (-----) [001] dnh4 24577.500337: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125347          <idle>-0     (-----) [001] .n.1 24577.500342: cpu_idle: state=4294967295 cpu_id=1
125348          <idle>-0     (-----) [001] d..2 24577.500348: 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
125349   kworker/u17:2-23076 (23076) [001] d..2 24577.500355: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125350   kworker/u17:2-23076 (23076) [001] d..3 24577.500360: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125351   kworker/u17:2-23076 (23076) [001] d..2 24577.500376: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
125352     kworker/1:1-13091 (13091) [001] d..2 24577.500381: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
125353     kworker/1:1-13091 (13091) [001] d..3 24577.500390: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
125354              ps-13421 (13421) [004] d..2 24577.500393: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125355          <idle>-0     (-----) [003] .n.1 24577.500395: cpu_idle: state=4294967295 cpu_id=3
125356              ps-13421 (13421) [004] dn.3 24577.500396: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125357              ps-13421 (13421) [004] d..2 24577.500398: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125358          <idle>-0     (-----) [003] d..2 24577.500401: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
125359     kworker/1:1-13091 (13091) [001] d..2 24577.500404: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125360 shell svc 13418-13419 ( 1007) [004] d..2 24577.500406: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125361          <idle>-0     (-----) [001] d..1 24577.500412: cpu_idle: state=0 cpu_id=1
125362            adbd-23485 ( 1007) [003] d..2 24577.500420: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
125363          <idle>-0     (-----) [003] d..1 24577.500426: cpu_idle: state=0 cpu_id=3
125364 s.nexuslauncher-24827 (24827) [000] .... 24577.500448: binder_transaction: transaction=1671636 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
125365          <idle>-0     (-----) [001] d.h3 24577.500459: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125366 s.nexuslauncher-24827 (24827) [000] d..4 24577.500462: sched_waking: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
125367              ps-13421 (13421) [004] d..2 24577.500462: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125368          <idle>-0     (-----) [001] dnh4 24577.500464: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125369              ps-13421 (13421) [004] dn.3 24577.500465: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125370              ps-13421 (13421) [004] d..2 24577.500468: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125371          <idle>-0     (-----) [001] .n.1 24577.500469: cpu_idle: state=4294967295 cpu_id=1
125372          <idle>-0     (-----) [001] d..2 24577.500475: 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
125373 shell svc 13418-13419 ( 1007) [004] d..2 24577.500476: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125374 s.nexuslauncher-24827 (24827) [000] d..5 24577.500478: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=120 target_cpu=002
125375   kworker/u17:2-23076 (23076) [001] d..2 24577.500481: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125376   kworker/u17:2-23076 (23076) [001] d..3 24577.500487: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125377   kworker/u17:2-23076 (23076) [001] d..2 24577.500502: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
125378     kworker/1:1-13091 (13091) [001] d..2 24577.500509: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
125379 s.nexuslauncher-24827 (24827) [000] d..3 24577.500517: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
125380              ps-13421 (13421) [004] d..2 24577.500531: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125381     kworker/1:1-13091 (13091) [001] d..3 24577.500532: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
125382              ps-13421 (13421) [004] dn.3 24577.500534: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125383              ps-13421 (13421) [004] d..2 24577.500536: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125384 s.nexuslauncher-24827 (24827) [000] d..4 24577.500541: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=003
125385 shell svc 13418-13419 ( 1007) [004] d..2 24577.500543: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125386          <idle>-0     (-----) [003] .n.1 24577.500545: cpu_idle: state=4294967295 cpu_id=3
125387     kworker/1:1-13091 (13091) [001] d..2 24577.500547: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125388          <idle>-0     (-----) [003] d..2 24577.500552: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
125389          <idle>-0     (-----) [001] d..1 24577.500554: cpu_idle: state=0 cpu_id=1
125390          <idle>-0     (-----) [002] .n.1 24577.500584: cpu_idle: state=4294967295 cpu_id=2
125391          <idle>-0     (-----) [002] d..2 24577.500595: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=120
125392              ps-13421 (13421) [004] d..2 24577.500596: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125393    RenderThread-25194 (24827) [003] d..2 24577.500598: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
125394              ps-13421 (13421) [004] dn.3 24577.500599: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125395              ps-13421 (13421) [004] d..2 24577.500601: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125396  Binder:23896_5-25989 (23896) [002] .... 24577.500604: binder_transaction_received: transaction=1671636
125397          <idle>-0     (-----) [003] d..1 24577.500604: cpu_idle: state=0 cpu_id=3
125398 shell svc 13418-13419 ( 1007) [004] d..2 24577.500608: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125399  Binder:23896_5-25989 (23896) [002] d..1 24577.500640: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
125400  Binder:23896_5-25989 (23896) [002] d..2 24577.500652: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
125401          <idle>-0     (-----) [001] .n.1 24577.500657: cpu_idle: state=4294967295 cpu_id=1
125402              ps-13421 (13421) [004] d..2 24577.500662: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125403          <idle>-0     (-----) [001] d..2 24577.500662: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
125404              ps-13421 (13421) [004] dn.3 24577.500665: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125405              ps-13421 (13421) [004] d..2 24577.500667: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125406 shell svc 13418-13419 ( 1007) [004] d..2 24577.500674: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125407  Binder:23896_5-25989 (23896) [002] d..2 24577.500679: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
125408  appEventThread-23905 (23896) [001] d..2 24577.500692: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125409            adbd-23484 ( 1007) [002] d..2 24577.500694: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
125410          <idle>-0     (-----) [001] d..1 24577.500700: cpu_idle: state=0 cpu_id=1
125411            adbd-23484 ( 1007) [002] d..3 24577.500707: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
125412            adbd-23484 ( 1007) [002] d..2 24577.500755: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
125413              ps-13421 (13421) [004] d..2 24577.500757: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125414              ps-13421 (13421) [004] dn.3 24577.500760: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125415              ps-13421 (13421) [004] d..2 24577.500762: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125416 shell svc 13418-13419 ( 1007) [004] d..2 24577.500770: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125417 s.nexuslauncher-24827 (24827) [000] d..3 24577.500822: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=003
125418            adbd-1007  ( 1007) [002] d..1 24577.500829: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
125419 s.nexuslauncher-24827 (24827) [000] d..4 24577.500840: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
125420            adbd-1007  ( 1007) [002] d..2 24577.500844: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
125421          <idle>-0     (-----) [001] .n.1 24577.500845: cpu_idle: state=4294967295 cpu_id=1
125422          <idle>-0     (-----) [003] .n.1 24577.500848: cpu_idle: state=4294967295 cpu_id=3
125423          <idle>-0     (-----) [001] d..2 24577.500851: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
125424              ps-13421 (13421) [004] d..2 24577.500853: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125425          <idle>-0     (-----) [003] d..2 24577.500855: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
125426              ps-13421 (13421) [004] dn.3 24577.500856: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125427              ps-13421 (13421) [004] d..2 24577.500859: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125428 s.nexuslauncher-24827 (24827) [000] d..2 24577.500861: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125429 shell svc 13418-13419 ( 1007) [004] d..2 24577.500867: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125430          <idle>-0     (-----) [000] d..1 24577.500872: cpu_idle: state=0 cpu_id=0
125431            adbd-1007  ( 1007) [002] d..2 24577.500880: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
125432          <idle>-0     (-----) [002] d..1 24577.500917: cpu_idle: state=0 cpu_id=2
125433            adbd-23485 ( 1007) [003] d..2 24577.500923: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
125434    RenderThread-25194 (24827) [001] d.h2 24577.500927: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125435          <idle>-0     (-----) [003] d..1 24577.500928: cpu_idle: state=0 cpu_id=3
125436    RenderThread-25194 (24827) [001] d.h3 24577.500940: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125437              ps-13421 (13421) [004] d..2 24577.500971: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125438              ps-13421 (13421) [004] dn.3 24577.500975: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125439              ps-13421 (13421) [004] d..2 24577.500977: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125440 shell svc 13418-13419 ( 1007) [004] d..2 24577.500985: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125441              ps-13421 (13421) [004] d..2 24577.501067: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125442              ps-13421 (13421) [004] dn.3 24577.501071: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125443              ps-13421 (13421) [004] d..2 24577.501073: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125444 shell svc 13418-13419 ( 1007) [004] d..2 24577.501081: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125445    RenderThread-25194 (24827) [001] d..1 24577.501126: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
125446    RenderThread-25194 (24827) [001] d..2 24577.501137: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
125447              ps-13421 (13421) [004] d..2 24577.501138: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125448              ps-13421 (13421) [004] dn.3 24577.501141: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125449          <idle>-0     (-----) [000] .n.1 24577.501143: cpu_idle: state=4294967295 cpu_id=0
125450              ps-13421 (13421) [004] d..2 24577.501143: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125451 shell svc 13418-13419 ( 1007) [004] d..2 24577.501151: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125452          <idle>-0     (-----) [000] d..2 24577.501151: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
125453              ps-13421 (13421) [004] d..2 24577.501219: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125454              ps-13421 (13421) [004] dn.3 24577.501222: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125455              ps-13421 (13421) [004] d..2 24577.501225: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125456 s.nexuslauncher-24827 (24827) [000] d..2 24577.501227: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
125457    RenderThread-25194 (24827) [001] .... 24577.501232: binder_transaction: transaction=1671637 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
125458 shell svc 13418-13419 ( 1007) [004] d..2 24577.501232: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125459   kworker/u17:2-23076 (23076) [000] d..2 24577.501239: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
125460   kworker/u17:2-23076 (23076) [000] d..3 24577.501249: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
125461   kworker/u17:2-23076 (23076) [000] d..2 24577.501266: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
125462    RenderThread-25194 (24827) [001] ...2 24577.501271: binder_set_priority: proc=23896 thread=25989 old=120 => new=110 desired=110
125463     kworker/0:1-13012 (13012) [000] d..2 24577.501275: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
125464    RenderThread-25194 (24827) [001] d..4 24577.501275: sched_waking: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=002
125465     kworker/0:1-13012 (13012) [000] d..3 24577.501286: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
125466    RenderThread-25194 (24827) [001] d..5 24577.501288: sched_wakeup: comm=Binder:23896_5 pid=25989 prio=110 target_cpu=001
125467          <idle>-0     (-----) [003] .n.1 24577.501290: cpu_idle: state=4294967295 cpu_id=3
125468          <idle>-0     (-----) [003] d..2 24577.501296: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
125469    RenderThread-25194 (24827) [001] d..2 24577.501298: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
125470     kworker/0:1-13012 (13012) [000] d..2 24577.501301: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125471              ps-13421 (13421) [004] d..2 24577.501301: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125472              ps-13421 (13421) [004] dn.3 24577.501304: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125473  Binder:23896_5-25989 (23896) [001] .... 24577.501305: binder_transaction_received: transaction=1671637
125474              ps-13421 (13421) [004] d..2 24577.501307: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125475          <idle>-0     (-----) [000] d..1 24577.501310: cpu_idle: state=0 cpu_id=0
125476 shell svc 13418-13419 ( 1007) [004] d..2 24577.501315: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125477            adbd-23485 ( 1007) [003] d..2 24577.501351: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
125478          <idle>-0     (-----) [003] d..1 24577.501356: cpu_idle: state=0 cpu_id=3
125479  Binder:23896_5-25989 (23896) [001] d.h3 24577.501388: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
125480              ps-13421 (13421) [004] d..2 24577.501390: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125481              ps-13421 (13421) [004] dn.3 24577.501393: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125482              ps-13421 (13421) [004] d..2 24577.501395: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125483  Binder:23896_5-25989 (23896) [001] d.h4 24577.501399: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
125484 shell svc 13418-13419 ( 1007) [004] d..2 24577.501403: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125485          <idle>-0     (-----) [000] .n.1 24577.501404: cpu_idle: state=4294967295 cpu_id=0
125486  Binder:23896_5-25989 (23896) [001] .... 24577.501405: binder_transaction: transaction=1671638 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
125487          <idle>-0     (-----) [000] d..2 24577.501411: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
125488   kworker/u17:2-23076 (23076) [000] d..2 24577.501418: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
125489  Binder:23896_5-25989 (23896) [001] d..2 24577.501418: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
125490   kworker/u17:2-23076 (23076) [000] d..3 24577.501424: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
125491  Binder:23896_5-25989 (23896) [001] dn.3 24577.501426: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
125492  Binder:23896_5-25989 (23896) [001] d..2 24577.501431: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
125493    RenderThread-25194 (24827) [001] .... 24577.501435: binder_transaction_received: transaction=1671638
125494   kworker/u17:2-23076 (23076) [000] d..2 24577.501440: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
125495     kworker/0:1-13012 (13012) [000] d..2 24577.501446: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
125496     kworker/0:1-13012 (13012) [000] d..3 24577.501455: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
125497          <idle>-0     (-----) [003] .n.1 24577.501460: cpu_idle: state=4294967295 cpu_id=3
125498          <idle>-0     (-----) [003] d..2 24577.501466: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
125499     kworker/0:1-13012 (13012) [000] d..2 24577.501469: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125500          <idle>-0     (-----) [000] d..1 24577.501476: cpu_idle: state=0 cpu_id=0
125501              ps-13421 (13421) [004] d..2 24577.501480: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125502              ps-13421 (13421) [004] dn.3 24577.501483: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125503            adbd-23485 ( 1007) [003] d..2 24577.501486: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
125504              ps-13421 (13421) [004] d..2 24577.501486: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125505          <idle>-0     (-----) [003] d..1 24577.501490: cpu_idle: state=0 cpu_id=3
125506 shell svc 13418-13419 ( 1007) [004] d..2 24577.501494: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125507    RenderThread-25194 (24827) [001] d.h2 24577.501539: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
125508    RenderThread-25194 (24827) [001] d.h3 24577.501550: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
125509              ps-13421 (13421) [004] d..2 24577.501550: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125510              ps-13421 (13421) [004] dn.3 24577.501553: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125511          <idle>-0     (-----) [000] .n.1 24577.501555: cpu_idle: state=4294967295 cpu_id=0
125512              ps-13421 (13421) [004] d..2 24577.501555: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125513          <idle>-0     (-----) [000] d..2 24577.501561: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
125514 shell svc 13418-13419 ( 1007) [004] d..2 24577.501562: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125515   kworker/u17:2-23076 (23076) [000] d..2 24577.501567: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
125516   kworker/u17:2-23076 (23076) [000] d..3 24577.501573: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
125517   kworker/u17:2-23076 (23076) [000] d..2 24577.501589: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
125518     kworker/0:1-13012 (13012) [000] d..2 24577.501597: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
125519              ps-13421 (13421) [004] d..2 24577.501616: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125520              ps-13421 (13421) [004] dn.3 24577.501618: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125521     kworker/0:1-13012 (13012) [000] d..3 24577.501619: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
125522              ps-13421 (13421) [004] d..2 24577.501621: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125523 shell svc 13418-13419 ( 1007) [004] d..2 24577.501628: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125524     kworker/0:1-13012 (13012) [000] d..2 24577.501629: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
125525            adbd-23484 ( 1007) [000] d..2 24577.501644: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
125526            adbd-23484 ( 1007) [000] d..3 24577.501654: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
125527              ps-13421 (13421) [004] d..2 24577.501683: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125528              ps-13421 (13421) [004] dn.3 24577.501686: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125529              ps-13421 (13421) [004] d..2 24577.501688: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125530 shell svc 13418-13419 ( 1007) [004] d..2 24577.501695: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125531            adbd-23484 ( 1007) [000] d..2 24577.501699: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
125532              ps-13421 (13421) [004] d..2 24577.501748: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125533              ps-13421 (13421) [004] dn.3 24577.501751: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125534              ps-13421 (13421) [004] d..2 24577.501753: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125535 shell svc 13418-13419 ( 1007) [004] d..2 24577.501760: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125536            adbd-1007  ( 1007) [000] d..1 24577.501785: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
125537            adbd-1007  ( 1007) [000] d..2 24577.501796: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
125538          <idle>-0     (-----) [003] .n.1 24577.501800: cpu_idle: state=4294967295 cpu_id=3
125539          <idle>-0     (-----) [003] d..2 24577.501806: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
125540              ps-13421 (13421) [004] d..2 24577.501815: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125541              ps-13421 (13421) [004] dn.3 24577.501818: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125542              ps-13421 (13421) [004] d..2 24577.501820: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125543 shell svc 13418-13419 ( 1007) [004] d..2 24577.501828: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125544            adbd-1007  ( 1007) [000] d..2 24577.501831: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125545          <idle>-0     (-----) [000] d..1 24577.501840: cpu_idle: state=0 cpu_id=0
125546            adbd-23485 ( 1007) [003] d..2 24577.501851: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
125547          <idle>-0     (-----) [003] d..1 24577.501856: cpu_idle: state=0 cpu_id=3
125548    RenderThread-25194 (24827) [001] d.h2 24577.501864: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
125549              ps-13421 (13421) [004] d..2 24577.501881: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125550              ps-13421 (13421) [004] dn.3 24577.501883: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125551              ps-13421 (13421) [004] d..2 24577.501886: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125552    RenderThread-25194 (24827) [001] dnh3 24577.501891: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125553 shell svc 13418-13419 ( 1007) [004] d..2 24577.501893: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125554    RenderThread-25194 (24827) [001] d..2 24577.501900: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
125555   kworker/u17:2-23076 (23076) [001] d..2 24577.501909: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125556   kworker/u17:2-23076 (23076) [001] d..3 24577.501914: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125557   kworker/u17:2-23076 (23076) [001] d..2 24577.501931: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
125558              ps-13421 (13421) [004] d..2 24577.501948: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125559              ps-13421 (13421) [004] dn.3 24577.501951: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125560              ps-13421 (13421) [004] d..2 24577.501954: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125561 shell svc 13418-13419 ( 1007) [004] d..2 24577.501961: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125562              ps-13421 (13421) [004] d..2 24577.502014: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125563              ps-13421 (13421) [004] dn.3 24577.502017: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125564              ps-13421 (13421) [004] d..2 24577.502019: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125565 shell svc 13418-13419 ( 1007) [004] d..2 24577.502027: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125566              ps-13421 (13421) [004] d..2 24577.502079: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125567              ps-13421 (13421) [004] dn.3 24577.502083: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125568              ps-13421 (13421) [004] d..2 24577.502085: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125569 shell svc 13418-13419 ( 1007) [004] d..2 24577.502092: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125570              ps-13421 (13421) [004] d..2 24577.502144: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125571              ps-13421 (13421) [004] dn.3 24577.502147: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125572              ps-13421 (13421) [004] d..2 24577.502149: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125573 shell svc 13418-13419 ( 1007) [004] d..2 24577.502156: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125574              ps-13421 (13421) [004] d..2 24577.502209: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125575              ps-13421 (13421) [004] dn.3 24577.502212: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125576              ps-13421 (13421) [004] d..2 24577.502214: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125577 shell svc 13418-13419 ( 1007) [004] d..2 24577.502221: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125578              ps-13421 (13421) [004] d..2 24577.502273: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125579              ps-13421 (13421) [004] dn.3 24577.502276: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125580              ps-13421 (13421) [004] d..2 24577.502278: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125581 shell svc 13418-13419 ( 1007) [004] d..2 24577.502285: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125582              ps-13421 (13421) [004] d..2 24577.502338: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125583              ps-13421 (13421) [004] dn.3 24577.502342: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125584              ps-13421 (13421) [004] d..2 24577.502344: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125585 shell svc 13418-13419 ( 1007) [004] d..2 24577.502351: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125586              ps-13421 (13421) [004] d..2 24577.502405: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125587              ps-13421 (13421) [004] dn.3 24577.502408: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125588              ps-13421 (13421) [004] d..2 24577.502410: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125589 shell svc 13418-13419 ( 1007) [004] d..2 24577.502417: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125590              ps-13421 (13421) [004] d..2 24577.502469: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125591              ps-13421 (13421) [004] dn.3 24577.502472: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125592              ps-13421 (13421) [004] d..2 24577.502474: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125593 shell svc 13418-13419 ( 1007) [004] d..2 24577.502481: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125594              ps-13421 (13421) [004] d..2 24577.502535: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125595              ps-13421 (13421) [004] dn.3 24577.502538: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125596              ps-13421 (13421) [004] d..2 24577.502541: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125597 shell svc 13418-13419 ( 1007) [004] d..2 24577.502548: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125598              ps-13421 (13421) [004] d..2 24577.502600: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125599              ps-13421 (13421) [004] dn.3 24577.502603: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125600              ps-13421 (13421) [004] d..2 24577.502605: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125601 shell svc 13418-13419 ( 1007) [004] d..2 24577.502612: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125602              ps-13421 (13421) [004] d..2 24577.502665: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125603              ps-13421 (13421) [004] dn.3 24577.502668: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125604              ps-13421 (13421) [004] d..2 24577.502670: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125605 shell svc 13418-13419 ( 1007) [004] d..2 24577.502677: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125606              ps-13421 (13421) [004] d..2 24577.502763: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125607              ps-13421 (13421) [004] dn.3 24577.502767: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125608              ps-13421 (13421) [004] d..2 24577.502769: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125609 shell svc 13418-13419 ( 1007) [004] d..2 24577.502777: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125610              ps-13421 (13421) [004] d..2 24577.502866: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125611              ps-13421 (13421) [004] dn.3 24577.502869: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125612              ps-13421 (13421) [004] d..2 24577.502872: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125613 shell svc 13418-13419 ( 1007) [004] d..2 24577.502880: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125614              ps-13421 (13421) [004] d..2 24577.502961: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125615              ps-13421 (13421) [004] dn.3 24577.502964: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125616              ps-13421 (13421) [004] d..2 24577.502967: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125617 shell svc 13418-13419 ( 1007) [004] d..2 24577.502974: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125618          <idle>-0     (-----) [000] ...1 24577.503019: cpu_idle: state=4294967295 cpu_id=0
125619          <idle>-0     (-----) [000] d..1 24577.503023: cpu_idle: state=2 cpu_id=0
125620    RenderThread-25194 (24827) [001] d..2 24577.503079: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
125621    RenderThread-25194 (24827) [001] d..3 24577.503102: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
125622          <idle>-0     (-----) [002] .n.1 24577.503107: cpu_idle: state=4294967295 cpu_id=2
125623          <idle>-0     (-----) [002] d..2 24577.503115: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
125624 kgsl_worker_thr-246   (  246) [002] d..2 24577.503164: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
125625          <idle>-0     (-----) [002] d..1 24577.503171: cpu_idle: state=0 cpu_id=2
125626              ps-13421 (13421) [004] d..2 24577.503172: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125627              ps-13421 (13421) [004] dn.3 24577.503177: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125628              ps-13421 (13421) [004] d..2 24577.503179: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125629 shell svc 13418-13419 ( 1007) [004] d..2 24577.503188: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125630    RenderThread-25194 (24827) [001] d..2 24577.503250: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
125631    RenderThread-25194 (24827) [001] d..3 24577.503262: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
125632          <idle>-0     (-----) [002] .n.1 24577.503267: cpu_idle: state=4294967295 cpu_id=2
125633          <idle>-0     (-----) [002] d..2 24577.503272: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
125634          <idle>-0     (-----) [003] ...1 24577.503310: cpu_idle: state=4294967295 cpu_id=3
125635          <idle>-0     (-----) [003] d..1 24577.503312: cpu_idle: state=0 cpu_id=3
125636              ps-13421 (13421) [004] d..2 24577.503368: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125637              ps-13421 (13421) [004] dn.3 24577.503374: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125638 kgsl_worker_thr-246   (  246) [002] d..1 24577.503374: clk_enable: gpll0_out_even
125639 kgsl_worker_thr-246   (  246) [002] d..1 24577.503376: clk_enable: gcc_gpu_gpll0_div_clk_src
125640              ps-13421 (13421) [004] d..2 24577.503377: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125641 shell svc 13418-13419 ( 1007) [004] d..2 24577.503392: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125642    RenderThread-25194 (24827) [001] .... 24577.503427: binder_transaction: transaction=1671639 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
125643    RenderThread-25194 (24827) [001] ...2 24577.503441: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
125644    RenderThread-25194 (24827) [001] d..4 24577.503444: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
125645              ps-13421 (13421) [004] d..2 24577.503453: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125646              ps-13421 (13421) [004] dn.3 24577.503457: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125647          <idle>-0     (-----) [000] ...1 24577.503458: cpu_idle: state=4294967295 cpu_id=0
125648              ps-13421 (13421) [004] d..2 24577.503460: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125649    RenderThread-25194 (24827) [001] d..5 24577.503466: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
125650 shell svc 13418-13419 ( 1007) [004] d..2 24577.503468: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125651          <idle>-0     (-----) [000] d..2 24577.503474: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
125652  Binder:23896_4-24423 (23896) [000] .... 24577.503485: binder_transaction_received: transaction=1671639
125653    RenderThread-25194 (24827) [001] d..2 24577.503490: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_5 next_pid=25989 next_prio=110
125654          <idle>-0     (-----) [007] ...1 24577.503492: cpu_idle: state=4294967295 cpu_id=7
125655  Binder:23896_5-25989 (23896) [001] .... 24577.503493: binder_set_priority: proc=23896 thread=25989 old=110 => new=120 desired=120
125656          <idle>-0     (-----) [007] d..1 24577.503497: cpu_idle: state=0 cpu_id=7
125657          <idle>-0     (-----) [006] ...1 24577.503521: cpu_idle: state=4294967295 cpu_id=6
125658          <idle>-0     (-----) [006] d..1 24577.503526: cpu_idle: state=0 cpu_id=6
125659  Binder:23896_5-25989 (23896) [001] d..2 24577.503535: sched_switch: prev_comm=Binder:23896_5 prev_pid=25989 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
125660     kworker/1:1-13091 (13091) [001] d..2 24577.503545: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
125661          <idle>-0     (-----) [005] ...1 24577.503549: cpu_idle: state=4294967295 cpu_id=5
125662          <idle>-0     (-----) [005] d..1 24577.503553: cpu_idle: state=0 cpu_id=5
125663     kworker/1:1-13091 (13091) [001] d..3 24577.503571: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
125664              ps-13421 (13421) [004] d..2 24577.503575: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125665  Binder:23896_4-24423 (23896) [000] d..1 24577.503577: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
125666              ps-13421 (13421) [004] dn.3 24577.503578: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125667              ps-13421 (13421) [004] d..2 24577.503581: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125668 shell svc 13418-13419 ( 1007) [004] d..2 24577.503590: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125669     kworker/1:1-13091 (13091) [001] d..2 24577.503594: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125670  Binder:23896_4-24423 (23896) [000] d..2 24577.503601: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
125671          <idle>-0     (-----) [001] d..2 24577.503610: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
125672   sfEventThread-23906 (23896) [001] d..1 24577.503631: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
125673   sfEventThread-23906 (23896) [001] d..2 24577.503642: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
125674          <idle>-0     (-----) [003] .n.1 24577.503647: cpu_idle: state=4294967295 cpu_id=3
125675  Binder:23896_4-24423 (23896) [000] .... 24577.503649: binder_transaction: transaction=1671640 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
125676              ps-13421 (13421) [004] d..2 24577.503650: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125677          <idle>-0     (-----) [003] d..2 24577.503652: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
125678  Binder:23896_4-24423 (23896) [000] d..2 24577.503653: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
125679              ps-13421 (13421) [004] dn.3 24577.503653: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125680              ps-13421 (13421) [004] d..2 24577.503656: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125681 shell svc 13418-13419 ( 1007) [004] d..2 24577.503664: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125682  Binder:23896_4-24423 (23896) [000] d..3 24577.503669: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
125683  Binder:23896_4-24423 (23896) [000] .... 24577.503672: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
125684   sfEventThread-23906 (23896) [001] d..2 24577.503675: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125685          <idle>-0     (-----) [001] d..1 24577.503685: cpu_idle: state=0 cpu_id=1
125686        DispSync-23904 (23896) [003] d..2 24577.503692: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
125687    RenderThread-25194 (24827) [003] .... 24577.503698: binder_transaction_received: transaction=1671640
125688  Binder:23896_4-24423 (23896) [000] d..2 24577.503718: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125689          <idle>-0     (-----) [000] d..1 24577.503727: cpu_idle: state=0 cpu_id=0
125690    RenderThread-25194 (24827) [003] d..2 24577.503744: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
125691              ps-13421 (13421) [004] d..2 24577.503751: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125692              ps-13421 (13421) [004] dn.3 24577.503754: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125693              ps-13421 (13421) [004] d..2 24577.503756: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125694 shell svc 13418-13419 ( 1007) [004] d..2 24577.503764: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125695    RenderThread-25194 (24827) [003] d..3 24577.503774: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
125696    RenderThread-25194 (24827) [003] d..2 24577.503813: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
125697         rcuop/2-29    (   29) [003] d..2 24577.503839: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
125698              ps-13421 (13421) [004] d..2 24577.503845: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125699              ps-13421 (13421) [004] dn.3 24577.503848: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125700              ps-13421 (13421) [004] d..2 24577.503851: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125701 shell svc 13418-13419 ( 1007) [004] d..2 24577.503859: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125702 kgsl_worker_thr-246   (  246) [002] d..1 24577.503885: clk_enable: gpu_cc_gmu_clk_src
125703            adbd-23485 ( 1007) [003] d..2 24577.503906: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
125704 kgsl_worker_thr-246   (  246) [002] d..1 24577.503908: clk_enable: gpu_cc_cx_gmu_clk
125705          <idle>-0     (-----) [003] d..1 24577.503912: cpu_idle: state=0 cpu_id=3
125706 kgsl_worker_thr-246   (  246) [002] d..1 24577.503918: clk_enable: gpu_cc_cxo_clk
125707              ps-13421 (13421) [004] d..2 24577.503919: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125708              ps-13421 (13421) [004] dn.3 24577.503922: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125709              ps-13421 (13421) [004] d..2 24577.503924: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125710 kgsl_worker_thr-246   (  246) [002] d..1 24577.503926: clk_enable: gcc_ddrss_gpu_axi_clk
125711 shell svc 13418-13419 ( 1007) [004] d..2 24577.503932: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125712 kgsl_worker_thr-246   (  246) [002] d..1 24577.503934: clk_enable: gcc_gpu_memnoc_gfx_clk
125713          <idle>-0     (-----) [001] d.h3 24577.503955: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125714          <idle>-0     (-----) [001] dnh4 24577.503965: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125715          <idle>-0     (-----) [001] .n.1 24577.503972: cpu_idle: state=4294967295 cpu_id=1
125716          <idle>-0     (-----) [001] d..2 24577.503978: 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
125717 kgsl_worker_thr-246   (  246) [002] d..2 24577.503985: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
125718   kworker/u17:2-23076 (23076) [001] d..2 24577.503990: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125719              ps-13421 (13421) [004] d..2 24577.503990: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125720          <idle>-0     (-----) [002] d..1 24577.503990: cpu_idle: state=0 cpu_id=2
125721              ps-13421 (13421) [004] dn.3 24577.503993: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125722              ps-13421 (13421) [004] d..2 24577.503995: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125723   kworker/u17:2-23076 (23076) [001] d..3 24577.503996: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125724 shell svc 13418-13419 ( 1007) [004] d..2 24577.504003: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125725   kworker/u17:2-23076 (23076) [001] d..2 24577.504014: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
125726     kworker/1:1-13091 (13091) [001] d..2 24577.504020: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
125727     kworker/1:1-13091 (13091) [001] d..3 24577.504029: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
125728          <idle>-0     (-----) [003] .n.1 24577.504034: cpu_idle: state=4294967295 cpu_id=3
125729          <idle>-0     (-----) [003] d..2 24577.504039: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
125730     kworker/1:1-13091 (13091) [001] d..2 24577.504045: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125731          <idle>-0     (-----) [001] d..1 24577.504052: cpu_idle: state=0 cpu_id=1
125732            adbd-23485 ( 1007) [003] d..2 24577.504061: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
125733              ps-13421 (13421) [004] d..2 24577.504062: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125734          <idle>-0     (-----) [003] d..1 24577.504065: cpu_idle: state=0 cpu_id=3
125735              ps-13421 (13421) [004] dn.3 24577.504066: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125736              ps-13421 (13421) [004] d..2 24577.504068: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125737 shell svc 13418-13419 ( 1007) [004] d..2 24577.504075: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125738          <idle>-0     (-----) [002] d.h2 24577.504080: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
125739          <idle>-0     (-----) [002] dnh3 24577.504087: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
125740          <idle>-0     (-----) [002] .n.1 24577.504092: cpu_idle: state=4294967295 cpu_id=2
125741          <idle>-0     (-----) [002] d..2 24577.504098: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
125742 kgsl_worker_thr-246   (  246) [002] d..2 24577.504112: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
125743          <idle>-0     (-----) [002] d..1 24577.504117: cpu_idle: state=0 cpu_id=2
125744              ps-13421 (13421) [004] d..2 24577.504135: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125745              ps-13421 (13421) [004] dn.3 24577.504138: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125746              ps-13421 (13421) [004] d..2 24577.504141: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125747 shell svc 13418-13419 ( 1007) [004] d..2 24577.504148: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125748          <idle>-0     (-----) [001] d.h3 24577.504181: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125749          <idle>-0     (-----) [001] dnh4 24577.504187: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125750          <idle>-0     (-----) [001] .n.1 24577.504192: cpu_idle: state=4294967295 cpu_id=1
125751          <idle>-0     (-----) [001] d..2 24577.504198: 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
125752   kworker/u17:2-23076 (23076) [001] d..2 24577.504205: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125753              ps-13421 (13421) [004] d..2 24577.504208: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125754          <idle>-0     (-----) [002] d.h2 24577.504210: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
125755   kworker/u17:2-23076 (23076) [001] d..3 24577.504211: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125756              ps-13421 (13421) [004] dn.3 24577.504211: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125757          <idle>-0     (-----) [002] dnh3 24577.504216: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
125758          <idle>-0     (-----) [002] .n.1 24577.504220: cpu_idle: state=4294967295 cpu_id=2
125759          <idle>-0     (-----) [002] d..2 24577.504227: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
125760              ps-13421 (13421) [004] dns3 24577.504232: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
125761          <idle>-0     (-----) [003] d.s2 24577.504233: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
125762          <idle>-0     (-----) [003] dns3 24577.504246: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
125763 kgsl_worker_thr-246   (  246) [002] d..2 24577.504246: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
125764   kworker/u17:2-23076 (23076) [001] d..2 24577.504248: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
125765          <idle>-0     (-----) [003] .n.1 24577.504253: cpu_idle: state=4294967295 cpu_id=3
125766          <idle>-0     (-----) [002] dnh2 24577.504256: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
125767     kworker/1:1-13091 (13091) [001] d..2 24577.504258: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
125768          <idle>-0     (-----) [003] d..2 24577.504258: 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
125769          <idle>-0     (-----) [006] .n.1 24577.504260: cpu_idle: state=4294967295 cpu_id=6
125770          <idle>-0     (-----) [005] ...1 24577.504262: cpu_idle: state=4294967295 cpu_id=5
125771          <idle>-0     (-----) [005] d..1 24577.504263: cpu_idle: state=0 cpu_id=5
125772          <idle>-0     (-----) [002] d..2 24577.504264: 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
125773          <idle>-0     (-----) [006] d..2 24577.504267: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125774     rcu_preempt-7     (    7) [003] d..2 24577.504267: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=002
125775     kworker/1:1-13091 (13091) [001] d..3 24577.504284: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
125776     rcu_preempt-7     (    7) [003] d..3 24577.504294: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
125777 shell svc 13418-13419 ( 1007) [006] d..2 24577.504306: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
125778     rcu_preempt-7     (    7) [003] d..2 24577.504315: 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
125779  kworker/u16:16-25995 (25995) [002] d.h3 24577.504335: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
125780            adbd-23484 ( 1007) [006] d.h2 24577.504341: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
125781     kworker/1:1-13091 (13091) [001] d..2 24577.504341: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125782              ps-13421 (13421) [004] d..2 24577.504343: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
125783            adbd-23484 ( 1007) [006] d.h3 24577.504348: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
125784              ps-13421 (13421) [004] dn.3 24577.504350: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125785              ps-13421 (13421) [004] d..2 24577.504353: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125786          <idle>-0     (-----) [007] .n.1 24577.504353: cpu_idle: state=4294967295 cpu_id=7
125787  kworker/u16:16-25995 (25995) [002] d.h4 24577.504354: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
125788            adbd-23484 ( 1007) [006] d..2 24577.504357: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
125789          <idle>-0     (-----) [007] d..2 24577.504359: 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
125790          <idle>-0     (-----) [001] d..2 24577.504363: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
125791 shell svc 13418-13419 ( 1007) [004] d..2 24577.504364: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125792            adbd-23484 ( 1007) [006] d..3 24577.504367: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=006
125793         sugov:4-560   (  560) [007] d..2 24577.504369: 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
125794          <idle>-0     (-----) [007] d..1 24577.504372: cpu_idle: state=0 cpu_id=7
125795            adbd-23484 ( 1007) [006] d..2 24577.504414: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
125796 kgsl_worker_thr-246   (  246) [001] d..2 24577.504424: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
125797          <idle>-0     (-----) [001] d..1 24577.504430: cpu_idle: state=0 cpu_id=1
125798            adbd-1007  ( 1007) [006] d..1 24577.504476: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
125799         rcuop/4-45    (   45) [003] d.h1 24577.504489: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
125800            adbd-1007  ( 1007) [006] d..2 24577.504497: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
125801          <idle>-0     (-----) [006] d..1 24577.504502: cpu_idle: state=0 cpu_id=6
125802          <idle>-0     (-----) [001] d.h2 24577.504520: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
125803          <idle>-0     (-----) [001] dnh3 24577.504526: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
125804          <idle>-0     (-----) [001] .n.1 24577.504531: cpu_idle: state=4294967295 cpu_id=1
125805          <idle>-0     (-----) [001] d..2 24577.504538: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
125806  kworker/u16:16-25995 (25995) [002] d..2 24577.504539: 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
125807          <idle>-0     (-----) [002] d..1 24577.504546: cpu_idle: state=0 cpu_id=2
125808 kgsl_worker_thr-246   (  246) [001] d..2 24577.504564: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
125809         rcuop/4-45    (   45) [003] d.s2 24577.504566: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
125810          <idle>-0     (-----) [001] d..1 24577.504569: cpu_idle: state=0 cpu_id=1
125811         rcuop/4-45    (   45) [003] d.s3 24577.504574: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
125812         rcuop/4-45    (   45) [003] d.s3 24577.504580: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
125813          <idle>-0     (-----) [002] .n.1 24577.504584: cpu_idle: state=4294967295 cpu_id=2
125814          <idle>-0     (-----) [002] d..2 24577.504592: 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
125815          <idle>-0     (-----) [000] ...1 24577.504597: cpu_idle: state=4294967295 cpu_id=0
125816          <idle>-0     (-----) [000] d..1 24577.504601: cpu_idle: state=0 cpu_id=0
125817          <idle>-0     (-----) [001] d.h2 24577.504659: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
125818          <idle>-0     (-----) [001] dnh3 24577.504665: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
125819          <idle>-0     (-----) [001] .n.1 24577.504670: cpu_idle: state=4294967295 cpu_id=1
125820          <idle>-0     (-----) [001] d..2 24577.504675: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
125821 kgsl_worker_thr-246   (  246) [001] d..2 24577.504689: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
125822          <idle>-0     (-----) [001] d..1 24577.504701: cpu_idle: state=0 cpu_id=1
125823          <idle>-0     (-----) [001] ...1 24577.504710: cpu_idle: state=4294967295 cpu_id=1
125824          <idle>-0     (-----) [001] d..1 24577.504712: cpu_idle: state=0 cpu_id=1
125825  kworker/u16:16-25995 (25995) [002] d..2 24577.504749: 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
125826          <idle>-0     (-----) [002] d..1 24577.504756: cpu_idle: state=0 cpu_id=2
125827          <idle>-0     (-----) [001] d.h2 24577.504782: sched_waking: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
125828          <idle>-0     (-----) [001] dnh3 24577.504788: sched_wakeup: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
125829              ps-13421 (13421) [004] d..2 24577.504793: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125830          <idle>-0     (-----) [001] dnh2 24577.504797: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
125831              ps-13421 (13421) [004] dn.3 24577.504797: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125832              ps-13421 (13421) [004] d..2 24577.504800: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125833 shell svc 13418-13419 ( 1007) [004] d..2 24577.504809: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125834          <idle>-0     (-----) [001] dnh3 24577.504810: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
125835          <idle>-0     (-----) [001] .n.1 24577.504814: cpu_idle: state=4294967295 cpu_id=1
125836          <idle>-0     (-----) [002] .n.1 24577.504815: cpu_idle: state=4294967295 cpu_id=2
125837          <idle>-0     (-----) [001] d..2 24577.504820: 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
125838          <idle>-0     (-----) [002] d..2 24577.504821: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
125839 kgsl_worker_thr-246   (  246) [002] d..2 24577.504837: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
125840          <idle>-0     (-----) [002] d..1 24577.504842: cpu_idle: state=0 cpu_id=2
125841         rcuop/4-45    (   45) [003] d..2 24577.504855: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
125842          <idle>-0     (-----) [000] d.h2 24577.504860: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
125843          <idle>-0     (-----) [000] dnh3 24577.504867: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
125844              ps-13421 (13421) [004] d..2 24577.504869: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125845              ps-13421 (13421) [004] dn.3 24577.504872: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125846          <idle>-0     (-----) [000] .n.1 24577.504873: cpu_idle: state=4294967295 cpu_id=0
125847              ps-13421 (13421) [004] d..2 24577.504875: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125848          <idle>-0     (-----) [000] d..2 24577.504879: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
125849 shell svc 13418-13419 ( 1007) [004] d..2 24577.504883: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125850            adbd-23485 ( 1007) [003] d..2 24577.504908: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
125851          <idle>-0     (-----) [003] d..1 24577.504916: cpu_idle: state=0 cpu_id=3
125852 irq/79-1436400.-24613 (24613) [000] d..2 24577.504921: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
125853          <idle>-0     (-----) [000] d..1 24577.504928: cpu_idle: state=0 cpu_id=0
125854          <idle>-0     (-----) [002] d.h2 24577.504933: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
125855<...>-24617 ( 24617) [001] d.h3 24577.504936: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125856          <idle>-0     (-----) [002] dnh3 24577.504940: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
125857              ps-13421 (13421) [004] d..2 24577.504941: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125858              ps-13421 (13421) [004] dn.3 24577.504944: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125859          <idle>-0     (-----) [002] .n.1 24577.504946: cpu_idle: state=4294967295 cpu_id=2
125860              ps-13421 (13421) [004] d..2 24577.504947: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125861<...>-24617 ( 24617) [001] d.h4 24577.504947: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125862          <idle>-0     (-----) [002] d..2 24577.504951: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
125863 shell svc 13418-13419 ( 1007) [004] d..2 24577.504955: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125864          <idle>-0     (-----) [003] d.s3 24577.504958: sched_waking: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
125865<...>-24617 ( 24617) [001] d..2 24577.504960: sched_switch: prev_comm=irq/80-114a000. prev_pid=24617 prev_prio=49 prev_state=D ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
125866 kgsl_worker_thr-246   (  246) [002] d..2 24577.504966: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
125867   kworker/u17:2-23076 (23076) [001] dn.2 24577.504968: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125868          <idle>-0     (-----) [003] d.s4 24577.504969: sched_wakeup: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
125869          <idle>-0     (-----) [002] d..1 24577.504970: cpu_idle: state=0 cpu_id=2
125870   kworker/u17:2-23076 (23076) [001] dn.3 24577.504976: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125871          <idle>-0     (-----) [003] ...1 24577.504977: cpu_idle: state=4294967295 cpu_id=3
125872          <idle>-0     (-----) [003] d..1 24577.504980: cpu_idle: state=0 cpu_id=3
125873   kworker/u17:2-23076 (23076) [001] d..2 24577.504993: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=R+ ==> next_comm=irq/80-114a000. next_pid=24617 next_prio=49
125874<...>-24617 ( 24617) [001] d..1 24577.505000: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
125875<...>-24617 ( 24617) [001] d..2 24577.505008: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
125876          <idle>-0     (-----) [000] .n.1 24577.505013: cpu_idle: state=4294967295 cpu_id=0
125877              ps-13421 (13421) [004] d..2 24577.505016: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125878          <idle>-0     (-----) [000] d..2 24577.505019: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
125879              ps-13421 (13421) [004] dn.3 24577.505020: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125880              ps-13421 (13421) [004] d..2 24577.505022: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125881<...>-24617 ( 24617) [001] d..2 24577.505024: sched_switch: prev_comm=irq/80-114a000. prev_pid=24617 prev_prio=49 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
125882 shell svc 13418-13419 ( 1007) [004] d..2 24577.505030: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125883   kworker/u17:2-23076 (23076) [001] d..2 24577.505031: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
125884     kworker/1:1-13091 (13091) [001] d..2 24577.505037: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
125885     kworker/1:1-13091 (13091) [001] d..3 24577.505046: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
125886          <idle>-0     (-----) [003] .n.1 24577.505051: cpu_idle: state=4294967295 cpu_id=3
125887          <idle>-0     (-----) [003] d..2 24577.505058: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
125888          <idle>-0     (-----) [002] d.h2 24577.505062: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
125889     kworker/1:1-13091 (13091) [001] d..2 24577.505064: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125890          <idle>-0     (-----) [002] dnh3 24577.505068: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
125891          <idle>-0     (-----) [001] d..1 24577.505072: cpu_idle: state=0 cpu_id=1
125892          <idle>-0     (-----) [002] .n.1 24577.505073: cpu_idle: state=4294967295 cpu_id=2
125893          <idle>-0     (-----) [002] d..2 24577.505078: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
125894              ps-13421 (13421) [004] d..2 24577.505086: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125895              ps-13421 (13421) [004] dn.3 24577.505089: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125896 kgsl_worker_thr-246   (  246) [002] d..2 24577.505091: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
125897              ps-13421 (13421) [004] d..2 24577.505091: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125898          <idle>-0     (-----) [002] d..1 24577.505096: cpu_idle: state=0 cpu_id=2
125899 shell svc 13418-13419 ( 1007) [004] d..2 24577.505099: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125900 irq/79-1436400.-24613 (24613) [000] d..2 24577.505105: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
125901            adbd-23485 ( 1007) [003] d..2 24577.505107: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
125902          <idle>-0     (-----) [000] d..1 24577.505112: cpu_idle: state=0 cpu_id=0
125903          <idle>-0     (-----) [003] d.s4 24577.505132: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
125904          <idle>-0     (-----) [003] d.s5 24577.505140: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
125905          <idle>-0     (-----) [000] .n.1 24577.505145: cpu_idle: state=4294967295 cpu_id=0
125906          <idle>-0     (-----) [003] d..1 24577.505149: cpu_idle: state=0 cpu_id=3
125907          <idle>-0     (-----) [000] d..2 24577.505150: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
125908              ps-13421 (13421) [004] d..2 24577.505157: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125909              ps-13421 (13421) [004] dn.3 24577.505160: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125910              ps-13421 (13421) [004] d..2 24577.505163: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125911 shell svc 13418-13419 ( 1007) [004] d..2 24577.505171: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125912 irq/79-1436400.-24613 (24613) [000] d..2 24577.505171: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125913          <idle>-0     (-----) [001] d.h3 24577.505174: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125914          <idle>-0     (-----) [000] d..1 24577.505177: cpu_idle: state=0 cpu_id=0
125915          <idle>-0     (-----) [001] dnh4 24577.505180: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125916          <idle>-0     (-----) [001] .n.1 24577.505185: cpu_idle: state=4294967295 cpu_id=1
125917          <idle>-0     (-----) [002] d.h2 24577.505188: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
125918          <idle>-0     (-----) [001] d..2 24577.505192: 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
125919          <idle>-0     (-----) [002] dnh3 24577.505195: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
125920          <idle>-0     (-----) [002] .n.1 24577.505199: cpu_idle: state=4294967295 cpu_id=2
125921   kworker/u17:2-23076 (23076) [001] d..2 24577.505200: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125922          <idle>-0     (-----) [002] d..2 24577.505205: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
125923   kworker/u17:2-23076 (23076) [001] d..3 24577.505205: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125924 kgsl_worker_thr-246   (  246) [002] d..2 24577.505219: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
125925   kworker/u17:2-23076 (23076) [001] d..2 24577.505221: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
125926          <idle>-0     (-----) [002] d..1 24577.505224: cpu_idle: state=0 cpu_id=2
125927     kworker/1:1-13091 (13091) [001] d..2 24577.505226: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
125928              ps-13421 (13421) [004] d..2 24577.505228: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125929              ps-13421 (13421) [004] dn.3 24577.505231: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125930              ps-13421 (13421) [004] d..2 24577.505233: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125931     kworker/1:1-13091 (13091) [001] d..3 24577.505235: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
125932          <idle>-0     (-----) [003] .n.1 24577.505240: cpu_idle: state=4294967295 cpu_id=3
125933 shell svc 13418-13419 ( 1007) [004] d..2 24577.505241: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125934          <idle>-0     (-----) [003] d..2 24577.505247: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
125935     kworker/1:1-13091 (13091) [001] d..2 24577.505250: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125936          <idle>-0     (-----) [001] d..1 24577.505257: cpu_idle: state=0 cpu_id=1
125937            adbd-23485 ( 1007) [003] d..2 24577.505266: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
125938          <idle>-0     (-----) [003] d..1 24577.505271: cpu_idle: state=0 cpu_id=3
125939              ps-13421 (13421) [004] d..2 24577.505300: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125940              ps-13421 (13421) [004] dn.3 24577.505304: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125941              ps-13421 (13421) [004] d..2 24577.505306: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125942 shell svc 13418-13419 ( 1007) [004] d..2 24577.505314: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125943          <idle>-0     (-----) [002] d.h2 24577.505316: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
125944          <idle>-0     (-----) [002] dnh3 24577.505322: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
125945          <idle>-0     (-----) [002] .n.1 24577.505326: cpu_idle: state=4294967295 cpu_id=2
125946          <idle>-0     (-----) [002] d..2 24577.505331: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
125947 kgsl_worker_thr-246   (  246) [002] d..2 24577.505355: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
125948          <idle>-0     (-----) [002] d..1 24577.505360: cpu_idle: state=0 cpu_id=2
125949          <idle>-0     (-----) [001] d.h3 24577.505369: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125950              ps-13421 (13421) [004] d..2 24577.505371: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125951              ps-13421 (13421) [004] dn.3 24577.505374: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125952          <idle>-0     (-----) [001] dnh4 24577.505375: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
125953              ps-13421 (13421) [004] d..2 24577.505376: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125954          <idle>-0     (-----) [001] .n.1 24577.505380: cpu_idle: state=4294967295 cpu_id=1
125955 shell svc 13418-13419 ( 1007) [004] d..2 24577.505384: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125956          <idle>-0     (-----) [001] d..2 24577.505386: 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
125957   kworker/u17:2-23076 (23076) [001] d..2 24577.505393: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125958   kworker/u17:2-23076 (23076) [001] d..3 24577.505398: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
125959   kworker/u17:2-23076 (23076) [001] d..2 24577.505414: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
125960     kworker/1:1-13091 (13091) [001] d..2 24577.505422: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=006
125961          <idle>-0     (-----) [006] dnh2 24577.505435: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=006
125962          <idle>-0     (-----) [006] .n.1 24577.505437: cpu_idle: state=4294967295 cpu_id=6
125963              ps-13421 (13421) [004] d..2 24577.505440: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125964          <idle>-0     (-----) [006] d..2 24577.505440: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
125965     kworker/1:1-13091 (13091) [001] d..2 24577.505442: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125966              ps-13421 (13421) [004] dn.3 24577.505443: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125967              ps-13421 (13421) [004] d..2 24577.505446: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125968            adbd-23484 ( 1007) [006] d..2 24577.505446: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=006
125969            adbd-23484 ( 1007) [006] d..3 24577.505448: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=006
125970          <idle>-0     (-----) [001] d..1 24577.505449: cpu_idle: state=0 cpu_id=1
125971          <idle>-0     (-----) [002] d.h2 24577.505452: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
125972 shell svc 13418-13419 ( 1007) [004] d..2 24577.505453: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125973          <idle>-0     (-----) [002] dnh3 24577.505458: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
125974          <idle>-0     (-----) [002] .n.1 24577.505462: cpu_idle: state=4294967295 cpu_id=2
125975          <idle>-0     (-----) [002] d..2 24577.505468: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
125976            adbd-23484 ( 1007) [006] d..2 24577.505476: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
125977 kgsl_worker_thr-246   (  246) [002] d..2 24577.505487: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
125978          <idle>-0     (-----) [002] d..1 24577.505493: cpu_idle: state=0 cpu_id=2
125979            adbd-1007  ( 1007) [006] d..1 24577.505502: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
125980          <idle>-0     (-----) [001] d.s4 24577.505515: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
125981          <idle>-0     (-----) [003] dnh2 24577.505516: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
125982            adbd-1007  ( 1007) [006] d..2 24577.505520: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
125983          <idle>-0     (-----) [003] .n.1 24577.505520: cpu_idle: state=4294967295 cpu_id=3
125984          <idle>-0     (-----) [006] d..1 24577.505523: cpu_idle: state=0 cpu_id=6
125985          <idle>-0     (-----) [003] d..2 24577.505526: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
125986          <idle>-0     (-----) [001] d.s5 24577.505526: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
125987          <idle>-0     (-----) [002] .n.1 24577.505532: cpu_idle: state=4294967295 cpu_id=2
125988          <idle>-0     (-----) [001] ...1 24577.505533: cpu_idle: state=4294967295 cpu_id=1
125989          <idle>-0     (-----) [001] d..1 24577.505536: cpu_idle: state=0 cpu_id=1
125990              ps-13421 (13421) [004] d..2 24577.505537: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125991          <idle>-0     (-----) [002] d..2 24577.505537: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
125992              ps-13421 (13421) [004] dn.3 24577.505540: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
125993              ps-13421 (13421) [004] d..2 24577.505543: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
125994 shell svc 13418-13419 ( 1007) [004] d..2 24577.505551: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
125995 kgsl_worker_thr-246   (  246) [002] d..2 24577.505554: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
125996          <idle>-0     (-----) [002] d..1 24577.505560: cpu_idle: state=0 cpu_id=2
125997          <idle>-0     (-----) [001] d.s4 24577.505566: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
125998            adbd-23485 ( 1007) [003] d..2 24577.505574: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
125999          <idle>-0     (-----) [001] d.s5 24577.505576: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
126000          <idle>-0     (-----) [003] d..1 24577.505580: cpu_idle: state=0 cpu_id=3
126001          <idle>-0     (-----) [002] .n.1 24577.505580: cpu_idle: state=4294967295 cpu_id=2
126002          <idle>-0     (-----) [002] d..2 24577.505586: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
126003          <idle>-0     (-----) [001] d.H5 24577.505592: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126004          <idle>-0     (-----) [001] dnH6 24577.505598: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126005          <idle>-0     (-----) [001] .n.1 24577.505605: cpu_idle: state=4294967295 cpu_id=1
126006          <idle>-0     (-----) [001] d..2 24577.505612: 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
126007 kgsl_worker_thr-246   (  246) [002] d..2 24577.505617: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
126008   kworker/u17:2-23076 (23076) [001] d..2 24577.505619: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126009          <idle>-0     (-----) [002] d..1 24577.505622: cpu_idle: state=0 cpu_id=2
126010   kworker/u17:2-23076 (23076) [001] d..3 24577.505624: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126011              ps-13421 (13421) [004] d..2 24577.505630: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126012              ps-13421 (13421) [004] dn.3 24577.505633: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126013              ps-13421 (13421) [004] d..2 24577.505635: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126014 shell svc 13418-13419 ( 1007) [004] d..2 24577.505643: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126015   kworker/u17:2-23076 (23076) [001] d.s4 24577.505646: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
126016   kworker/u17:2-23076 (23076) [001] d.s5 24577.505656: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
126017          <idle>-0     (-----) [002] .n.1 24577.505661: cpu_idle: state=4294967295 cpu_id=2
126018   kworker/u17:2-23076 (23076) [001] d..2 24577.505664: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126019          <idle>-0     (-----) [002] d..2 24577.505666: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
126020     kworker/1:1-13091 (13091) [001] d..2 24577.505671: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
126021 kgsl_worker_thr-246   (  246) [002] d..2 24577.505685: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
126022          <idle>-0     (-----) [002] d..1 24577.505692: cpu_idle: state=0 cpu_id=2
126023     kworker/1:1-13091 (13091) [001] d..3 24577.505696: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
126024          <idle>-0     (-----) [002] .n.1 24577.505701: cpu_idle: state=4294967295 cpu_id=2
126025          <idle>-0     (-----) [002] d..2 24577.505707: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
126026     kworker/1:1-13091 (13091) [001] d..2 24577.505711: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126027              ps-13421 (13421) [004] d..2 24577.505717: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126028          <idle>-0     (-----) [001] d..1 24577.505719: cpu_idle: state=0 cpu_id=1
126029              ps-13421 (13421) [004] dn.3 24577.505720: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126030              ps-13421 (13421) [004] d..2 24577.505722: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126031 shell svc 13418-13419 ( 1007) [004] d..2 24577.505731: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126032          <idle>-0     (-----) [001] d.s4 24577.505761: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
126033            adbd-23485 ( 1007) [002] d..2 24577.505763: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
126034          <idle>-0     (-----) [002] dn.1 24577.505770: cpu_idle: state=0 cpu_id=2
126035          <idle>-0     (-----) [001] d.s5 24577.505773: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
126036          <idle>-0     (-----) [002] .n.1 24577.505774: cpu_idle: state=4294967295 cpu_id=2
126037          <idle>-0     (-----) [002] d..2 24577.505782: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
126038              ps-13421 (13421) [004] d..2 24577.505790: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126039              ps-13421 (13421) [004] dn.3 24577.505793: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126040          <idle>-0     (-----) [001] d.h4 24577.505795: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126041              ps-13421 (13421) [004] d..2 24577.505795: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126042 kgsl_worker_thr-246   (  246) [002] d..2 24577.505799: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
126043          <idle>-0     (-----) [001] dnh5 24577.505800: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126044 shell svc 13418-13419 ( 1007) [004] d..2 24577.505803: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126045          <idle>-0     (-----) [002] d..1 24577.505805: cpu_idle: state=0 cpu_id=2
126046          <idle>-0     (-----) [001] dns5 24577.505818: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
126047          <idle>-0     (-----) [001] dns6 24577.505828: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
126048          <idle>-0     (-----) [001] .n.1 24577.505832: cpu_idle: state=4294967295 cpu_id=1
126049          <idle>-0     (-----) [002] .n.1 24577.505832: cpu_idle: state=4294967295 cpu_id=2
126050          <idle>-0     (-----) [002] d..2 24577.505838: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
126051          <idle>-0     (-----) [001] d..2 24577.505839: 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
126052   kworker/u17:2-23076 (23076) [001] d..2 24577.505846: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126053   kworker/u17:2-23076 (23076) [001] d..3 24577.505851: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126054              ps-13421 (13421) [004] d..2 24577.505860: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126055              ps-13421 (13421) [004] dn.3 24577.505863: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126056 kgsl_worker_thr-246   (  246) [002] d..2 24577.505864: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
126057              ps-13421 (13421) [004] d..2 24577.505865: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126058   kworker/u17:2-23076 (23076) [001] d..2 24577.505868: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126059          <idle>-0     (-----) [002] d..1 24577.505869: cpu_idle: state=0 cpu_id=2
126060 shell svc 13418-13419 ( 1007) [004] d..2 24577.505873: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126061     kworker/1:1-13091 (13091) [001] d..2 24577.505873: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
126062     kworker/1:1-13091 (13091) [001] d..3 24577.505882: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
126063          <idle>-0     (-----) [002] .n.1 24577.505887: cpu_idle: state=4294967295 cpu_id=2
126064          <idle>-0     (-----) [002] d..2 24577.505893: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
126065     kworker/1:1-13091 (13091) [001] d..2 24577.505897: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126066          <idle>-0     (-----) [001] d..1 24577.505904: cpu_idle: state=0 cpu_id=1
126067            adbd-23485 ( 1007) [002] d..2 24577.505914: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
126068          <idle>-0     (-----) [002] d..1 24577.505919: cpu_idle: state=0 cpu_id=2
126069              ps-13421 (13421) [004] d..2 24577.505931: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126070              ps-13421 (13421) [004] dn.3 24577.505934: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126071              ps-13421 (13421) [004] d..2 24577.505936: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126072 shell svc 13418-13419 ( 1007) [004] d..2 24577.505943: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126073          <idle>-0     (-----) [002] d.h2 24577.505961: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
126074          <idle>-0     (-----) [002] dnh3 24577.505968: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
126075          <idle>-0     (-----) [002] .n.1 24577.505973: cpu_idle: state=4294967295 cpu_id=2
126076          <idle>-0     (-----) [002] d..2 24577.505978: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
126077          <idle>-0     (-----) [001] d.h3 24577.505984: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126078          <idle>-0     (-----) [001] dnh4 24577.505992: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126079          <idle>-0     (-----) [001] .n.1 24577.505998: cpu_idle: state=4294967295 cpu_id=1
126080          <idle>-0     (-----) [001] d..2 24577.506004: 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
126081              ps-13421 (13421) [004] d..2 24577.506005: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126082              ps-13421 (13421) [004] dn.3 24577.506008: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126083              ps-13421 (13421) [004] d..2 24577.506010: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126084   kworker/u17:2-23076 (23076) [001] d..2 24577.506011: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126085   kworker/u17:2-23076 (23076) [001] d..3 24577.506016: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126086 shell svc 13418-13419 ( 1007) [004] d..2 24577.506017: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126087   kworker/u17:2-23076 (23076) [001] d..2 24577.506033: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126088     kworker/1:1-13091 (13091) [001] d..2 24577.506039: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=006
126089          <idle>-0     (-----) [006] dnh2 24577.506051: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=006
126090          <idle>-0     (-----) [006] .n.1 24577.506054: cpu_idle: state=4294967295 cpu_id=6
126091          <idle>-0     (-----) [006] d..2 24577.506056: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
126092     kworker/1:1-13091 (13091) [001] d..2 24577.506059: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126093            adbd-23484 ( 1007) [006] d..2 24577.506060: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=006
126094            adbd-23484 ( 1007) [006] d..3 24577.506063: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=006
126095          <idle>-0     (-----) [001] d..1 24577.506066: cpu_idle: state=0 cpu_id=1
126096              ps-13421 (13421) [004] d..2 24577.506072: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126097              ps-13421 (13421) [004] dn.3 24577.506075: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126098              ps-13421 (13421) [004] d..2 24577.506078: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126099 kgsl_worker_thr-246   (  246) [002] d..2 24577.506084: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
126100 shell svc 13418-13419 ( 1007) [004] d..2 24577.506085: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126101            adbd-23484 ( 1007) [006] d..2 24577.506088: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
126102          <idle>-0     (-----) [002] d..1 24577.506092: cpu_idle: state=0 cpu_id=2
126103            adbd-1007  ( 1007) [006] d..1 24577.506110: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
126104          <idle>-0     (-----) [003] d.s3 24577.506112: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
126105          <idle>-0     (-----) [003] d.s4 24577.506122: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
126106            adbd-1007  ( 1007) [006] d..2 24577.506126: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
126107          <idle>-0     (-----) [002] dnh2 24577.506128: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
126108          <idle>-0     (-----) [006] d..1 24577.506129: cpu_idle: state=0 cpu_id=6
126109          <idle>-0     (-----) [003] ...1 24577.506129: cpu_idle: state=4294967295 cpu_id=3
126110          <idle>-0     (-----) [003] d..1 24577.506132: cpu_idle: state=0 cpu_id=3
126111          <idle>-0     (-----) [002] .n.1 24577.506135: cpu_idle: state=4294967295 cpu_id=2
126112          <idle>-0     (-----) [002] d..2 24577.506141: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
126113              ps-13421 (13421) [004] d..2 24577.506144: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126114              ps-13421 (13421) [004] dn.3 24577.506148: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126115              ps-13421 (13421) [004] d..2 24577.506150: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126116 shell svc 13418-13419 ( 1007) [004] d..2 24577.506158: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126117 kgsl_worker_thr-246   (  246) [002] d..2 24577.506189: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=adbd next_pid=23485 next_prio=120
126118              ps-13421 (13421) [004] d..2 24577.506216: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126119              ps-13421 (13421) [004] dn.3 24577.506219: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126120              ps-13421 (13421) [004] d..2 24577.506221: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126121 shell svc 13418-13419 ( 1007) [004] d..2 24577.506228: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126122            adbd-23485 ( 1007) [002] d..2 24577.506241: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
126123          <idle>-0     (-----) [002] d..1 24577.506247: cpu_idle: state=0 cpu_id=2
126124          <idle>-0     (-----) [001] d.h3 24577.506262: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126125          <idle>-0     (-----) [001] dnh4 24577.506268: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126126          <idle>-0     (-----) [001] .n.1 24577.506273: cpu_idle: state=4294967295 cpu_id=1
126127          <idle>-0     (-----) [001] d..2 24577.506279: 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
126128   kworker/u17:2-23076 (23076) [001] d..2 24577.506287: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126129          <idle>-0     (-----) [002] d.h2 24577.506290: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
126130   kworker/u17:2-23076 (23076) [001] d..3 24577.506292: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126131          <idle>-0     (-----) [002] dnh3 24577.506298: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
126132          <idle>-0     (-----) [002] .n.1 24577.506303: cpu_idle: state=4294967295 cpu_id=2
126133          <idle>-0     (-----) [002] d..2 24577.506308: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
126134   kworker/u17:2-23076 (23076) [001] d..2 24577.506309: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126135     kworker/1:1-13091 (13091) [001] d..2 24577.506314: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
126136     kworker/1:1-13091 (13091) [001] d..3 24577.506324: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
126137              ps-13421 (13421) [004] d..2 24577.506338: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126138              ps-13421 (13421) [004] dn.3 24577.506342: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126139              ps-13421 (13421) [004] d..2 24577.506345: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126140     kworker/1:1-13091 (13091) [001] d..2 24577.506345: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
126141 shell svc 13418-13419 ( 1007) [004] d..2 24577.506353: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126142            adbd-23485 ( 1007) [001] d..2 24577.506396: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126143          <idle>-0     (-----) [001] d..1 24577.506404: cpu_idle: state=0 cpu_id=1
126144          <idle>-0     (-----) [001] d.h3 24577.506421: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126145          <idle>-0     (-----) [001] dnh4 24577.506427: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126146          <idle>-0     (-----) [001] .n.1 24577.506432: cpu_idle: state=4294967295 cpu_id=1
126147          <idle>-0     (-----) [001] d..2 24577.506439: 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
126148   kworker/u17:2-23076 (23076) [001] d..2 24577.506445: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126149   kworker/u17:2-23076 (23076) [001] d..3 24577.506450: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126150   kworker/u17:2-23076 (23076) [001] d..2 24577.506466: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126151     kworker/1:1-13091 (13091) [001] d..2 24577.506471: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
126152              ps-13421 (13421) [004] d..2 24577.506479: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126153              ps-13421 (13421) [004] dn.3 24577.506482: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126154              ps-13421 (13421) [004] d..2 24577.506484: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126155     kworker/1:1-13091 (13091) [001] d..3 24577.506492: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
126156 shell svc 13418-13419 ( 1007) [004] d..2 24577.506493: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126157          <idle>-0     (-----) [000] ...1 24577.506502: cpu_idle: state=4294967295 cpu_id=0
126158          <idle>-0     (-----) [000] d..1 24577.506505: cpu_idle: state=0 cpu_id=0
126159     kworker/1:1-13091 (13091) [001] d..2 24577.506513: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
126160            adbd-23485 ( 1007) [001] d..2 24577.506531: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126161          <idle>-0     (-----) [001] d..1 24577.506539: cpu_idle: state=0 cpu_id=1
126162              ps-13421 (13421) [004] d..2 24577.506588: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126163              ps-13421 (13421) [004] dn.3 24577.506591: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126164              ps-13421 (13421) [004] d..2 24577.506593: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126165          <idle>-0     (-----) [001] d.h3 24577.506601: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126166 shell svc 13418-13419 ( 1007) [004] d..2 24577.506602: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126167          <idle>-0     (-----) [001] dnh4 24577.506607: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126168          <idle>-0     (-----) [001] .n.1 24577.506613: cpu_idle: state=4294967295 cpu_id=1
126169          <idle>-0     (-----) [001] d..2 24577.506619: 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
126170   kworker/u17:2-23076 (23076) [001] d..2 24577.506626: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126171   kworker/u17:2-23076 (23076) [001] d..3 24577.506632: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126172   kworker/u17:2-23076 (23076) [001] d..2 24577.506647: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126173     kworker/1:1-13091 (13091) [001] d..2 24577.506654: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=006
126174          <idle>-0     (-----) [000] ...1 24577.506662: cpu_idle: state=4294967295 cpu_id=0
126175          <idle>-0     (-----) [003] ...1 24577.506665: cpu_idle: state=4294967295 cpu_id=3
126176          <idle>-0     (-----) [000] d..1 24577.506665: cpu_idle: state=0 cpu_id=0
126177          <idle>-0     (-----) [005] ...1 24577.506667: cpu_idle: state=4294967295 cpu_id=5
126178          <idle>-0     (-----) [003] d..1 24577.506667: cpu_idle: state=0 cpu_id=3
126179          <idle>-0     (-----) [005] d..1 24577.506668: cpu_idle: state=0 cpu_id=5
126180          <idle>-0     (-----) [006] ...1 24577.506669: cpu_idle: state=4294967295 cpu_id=6
126181          <idle>-0     (-----) [006] d..1 24577.506670: cpu_idle: state=0 cpu_id=6
126182          <idle>-0     (-----) [007] ...1 24577.506671: cpu_idle: state=4294967295 cpu_id=7
126183          <idle>-0     (-----) [007] d..1 24577.506673: cpu_idle: state=0 cpu_id=7
126184              ps-13421 (13421) [004] d..2 24577.506676: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126185              ps-13421 (13421) [004] dn.3 24577.506679: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126186              ps-13421 (13421) [004] d..2 24577.506681: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126187 kgsl_worker_thr-246   (  246) [002] d..2 24577.506683: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
126188 shell svc 13418-13419 ( 1007) [004] d..2 24577.506689: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126189     kworker/1:1-13091 (13091) [001] d..3 24577.506695: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
126190 kgsl_worker_thr-246   (  246) [002] d..3 24577.506700: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
126191     kworker/1:1-13091 (13091) [001] d.h3 24577.506731: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
126192          <idle>-0     (-----) [007] dnh2 24577.506746: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
126193          <idle>-0     (-----) [007] .n.1 24577.506748: cpu_idle: state=4294967295 cpu_id=7
126194          <idle>-0     (-----) [007] d..2 24577.506750: 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
126195         sugov:4-560   (  560) [007] d..2 24577.506755: 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
126196          <idle>-0     (-----) [007] d..1 24577.506757: cpu_idle: state=0 cpu_id=7
126197              ps-13421 (13421) [004] d..2 24577.506759: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126198              ps-13421 (13421) [004] dn.3 24577.506762: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126199     kworker/1:1-13091 (13091) [001] d..2 24577.506763: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
126200              ps-13421 (13421) [004] d..2 24577.506764: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126201  kworker/u16:16-25995 (25995) [001] d..2 24577.506769: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
126202 shell svc 13418-13419 ( 1007) [004] d..2 24577.506772: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126203  kworker/u16:16-25995 (25995) [001] d..3 24577.506781: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
126204  kworker/u16:16-25995 (25995) [001] d..2 24577.506789: 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
126205 kgsl_worker_thr-246   (  246) [002] d..2 24577.506794: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=adbd next_pid=23484 next_prio=120
126206  kworker/u16:10-23868 (23868) [001] d..2 24577.506801: 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
126207            adbd-23484 ( 1007) [002] d..2 24577.506807: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=006
126208          <idle>-0     (-----) [001] d..1 24577.506810: cpu_idle: state=0 cpu_id=1
126209          <idle>-0     (-----) [000] ...1 24577.506818: cpu_idle: state=4294967295 cpu_id=0
126210          <idle>-0     (-----) [000] d..1 24577.506821: cpu_idle: state=0 cpu_id=0
126211            adbd-23484 ( 1007) [002] d..3 24577.506822: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
126212              ps-13421 (13421) [004] d..2 24577.506841: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126213              ps-13421 (13421) [004] dn.3 24577.506850: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126214              ps-13421 (13421) [004] d..2 24577.506853: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126215 shell svc 13418-13419 ( 1007) [004] d..2 24577.506861: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126216            adbd-23484 ( 1007) [002] d.h1 24577.506891: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
126217            adbd-23484 ( 1007) [002] d.h2 24577.506906: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
126218          <idle>-0     (-----) [000] .n.1 24577.506910: cpu_idle: state=4294967295 cpu_id=0
126219          <idle>-0     (-----) [000] d..2 24577.506915: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
126220            adbd-23484 ( 1007) [002] d..2 24577.506919: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
126221 kgsl_worker_thr-246   (  246) [000] d..2 24577.506958: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
126222          <idle>-0     (-----) [000] d..1 24577.506963: cpu_idle: state=0 cpu_id=0
126223              ps-13421 (13421) [004] d..2 24577.506999: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126224              ps-13421 (13421) [004] dn.3 24577.507002: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126225              ps-13421 (13421) [004] d..2 24577.507005: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126226            adbd-1007  ( 1007) [002] d..1 24577.507006: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
126227 shell svc 13418-13419 ( 1007) [004] d..2 24577.507013: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126228            adbd-1007  ( 1007) [002] d..2 24577.507017: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
126229          <idle>-0     (-----) [001] .n.1 24577.507022: cpu_idle: state=4294967295 cpu_id=1
126230          <idle>-0     (-----) [001] d..2 24577.507028: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
126231            adbd-1007  ( 1007) [002] d..2 24577.507050: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
126232          <idle>-0     (-----) [000] d.h2 24577.507053: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
126233          <idle>-0     (-----) [002] d..1 24577.507059: cpu_idle: state=0 cpu_id=2
126234          <idle>-0     (-----) [000] dnh3 24577.507060: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
126235          <idle>-0     (-----) [000] .n.1 24577.507065: cpu_idle: state=4294967295 cpu_id=0
126236          <idle>-0     (-----) [000] d..2 24577.507070: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
126237            adbd-23485 ( 1007) [001] d..2 24577.507077: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126238 kgsl_worker_thr-246   (  246) [000] d..2 24577.507091: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126239          <idle>-0     (-----) [001] d.h3 24577.507094: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126240          <idle>-0     (-----) [000] d..1 24577.507097: cpu_idle: state=0 cpu_id=0
126241          <idle>-0     (-----) [001] dnh4 24577.507100: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126242          <idle>-0     (-----) [001] d..2 24577.507109: 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
126243   kworker/u17:2-23076 (23076) [001] d..2 24577.507115: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126244              ps-13421 (13421) [004] d..2 24577.507120: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126245   kworker/u17:2-23076 (23076) [001] d..3 24577.507120: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126246              ps-13421 (13421) [004] dn.3 24577.507123: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126247              ps-13421 (13421) [004] d..2 24577.507125: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126248 shell svc 13418-13419 ( 1007) [004] d..2 24577.507134: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126249   kworker/u17:2-23076 (23076) [001] d..2 24577.507136: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126250     kworker/1:1-13091 (13091) [001] d..2 24577.507141: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
126251     kworker/1:1-13091 (13091) [001] d..3 24577.507157: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
126252          <idle>-0     (-----) [000] .n.1 24577.507163: cpu_idle: state=4294967295 cpu_id=0
126253          <idle>-0     (-----) [000] d..2 24577.507169: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
126254     kworker/1:1-13091 (13091) [001] d..2 24577.507172: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126255          <idle>-0     (-----) [001] d..1 24577.507179: cpu_idle: state=0 cpu_id=1
126256            adbd-23485 ( 1007) [000] d..2 24577.507227: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126257          <idle>-0     (-----) [000] d..1 24577.507234: cpu_idle: state=0 cpu_id=0
126258              ps-13421 (13421) [004] d..2 24577.507241: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126259              ps-13421 (13421) [004] dn.3 24577.507244: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126260              ps-13421 (13421) [004] d..2 24577.507246: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126261 shell svc 13418-13419 ( 1007) [004] d..2 24577.507255: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126262          <idle>-0     (-----) [001] d.h3 24577.507272: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126263          <idle>-0     (-----) [001] dnh4 24577.507278: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126264          <idle>-0     (-----) [001] .n.1 24577.507283: cpu_idle: state=4294967295 cpu_id=1
126265          <idle>-0     (-----) [001] d..2 24577.507289: 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
126266   kworker/u17:2-23076 (23076) [001] d..2 24577.507296: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126267   kworker/u17:2-23076 (23076) [001] d..3 24577.507301: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126268   kworker/u17:2-23076 (23076) [001] d..2 24577.507317: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126269     kworker/1:1-13091 (13091) [001] d..2 24577.507323: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
126270     kworker/1:1-13091 (13091) [001] d..3 24577.507331: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
126271          <idle>-0     (-----) [000] .n.1 24577.507336: cpu_idle: state=4294967295 cpu_id=0
126272          <idle>-0     (-----) [000] d..2 24577.507343: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
126273     kworker/1:1-13091 (13091) [001] d..2 24577.507345: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126274          <idle>-0     (-----) [001] d..1 24577.507352: cpu_idle: state=0 cpu_id=1
126275            adbd-23485 ( 1007) [000] d..2 24577.507361: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126276          <idle>-0     (-----) [000] d..1 24577.507368: cpu_idle: state=0 cpu_id=0
126277              ps-13421 (13421) [004] d..2 24577.507371: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126278              ps-13421 (13421) [004] dn.3 24577.507374: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126279              ps-13421 (13421) [004] d..2 24577.507376: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126280 shell svc 13418-13419 ( 1007) [004] d..2 24577.507385: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126281          <idle>-0     (-----) [001] d.h3 24577.507449: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126282          <idle>-0     (-----) [001] dnh4 24577.507454: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126283          <idle>-0     (-----) [001] .n.1 24577.507460: cpu_idle: state=4294967295 cpu_id=1
126284          <idle>-0     (-----) [001] d..2 24577.507466: 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
126285   kworker/u17:2-23076 (23076) [001] d..2 24577.507472: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126286   kworker/u17:2-23076 (23076) [001] d..3 24577.507477: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126287   kworker/u17:2-23076 (23076) [001] d..2 24577.507492: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126288     kworker/1:1-13091 (13091) [001] d..2 24577.507499: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
126289              ps-13421 (13421) [004] d..2 24577.507502: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126290              ps-13421 (13421) [004] dn.3 24577.507505: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126291     kworker/1:1-13091 (13091) [001] d..3 24577.507507: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
126292              ps-13421 (13421) [004] d..2 24577.507508: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126293          <idle>-0     (-----) [002] .n.1 24577.507513: cpu_idle: state=4294967295 cpu_id=2
126294 shell svc 13418-13419 ( 1007) [004] d..2 24577.507517: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126295          <idle>-0     (-----) [002] d..2 24577.507520: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
126296     kworker/1:1-13091 (13091) [001] d..2 24577.507522: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126297          <idle>-0     (-----) [001] d..1 24577.507529: cpu_idle: state=0 cpu_id=1
126298            adbd-23484 ( 1007) [002] d..2 24577.507531: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
126299            adbd-23484 ( 1007) [002] d..3 24577.507537: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
126300            adbd-23484 ( 1007) [002] d..2 24577.507603: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
126301              ps-13421 (13421) [004] d..2 24577.507632: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126302              ps-13421 (13421) [004] dn.3 24577.507636: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126303              ps-13421 (13421) [004] d..2 24577.507639: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126304 shell svc 13418-13419 ( 1007) [004] d..2 24577.507648: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126305            adbd-1007  ( 1007) [002] d..1 24577.507666: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
126306            adbd-1007  ( 1007) [002] d..2 24577.507677: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
126307          <idle>-0     (-----) [000] .n.1 24577.507682: cpu_idle: state=4294967295 cpu_id=0
126308          <idle>-0     (-----) [000] d..2 24577.507689: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
126309            adbd-1007  ( 1007) [002] d..2 24577.507716: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
126310          <idle>-0     (-----) [002] d..1 24577.507725: cpu_idle: state=0 cpu_id=2
126311            adbd-23485 ( 1007) [000] d..2 24577.507738: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126312          <idle>-0     (-----) [000] d..1 24577.507745: cpu_idle: state=0 cpu_id=0
126313              ps-13421 (13421) [004] d..2 24577.507753: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126314              ps-13421 (13421) [004] dn.3 24577.507756: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126315              ps-13421 (13421) [004] d..2 24577.507759: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126316          <idle>-0     (-----) [001] d.h3 24577.507760: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126317          <idle>-0     (-----) [001] dnh4 24577.507765: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126318 shell svc 13418-13419 ( 1007) [004] d..2 24577.507768: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126319          <idle>-0     (-----) [001] .n.1 24577.507771: cpu_idle: state=4294967295 cpu_id=1
126320          <idle>-0     (-----) [001] d..2 24577.507777: 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
126321   kworker/u17:2-23076 (23076) [001] d..2 24577.507785: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126322   kworker/u17:2-23076 (23076) [001] d..3 24577.507790: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126323   kworker/u17:2-23076 (23076) [001] d..2 24577.507807: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126324     kworker/1:1-13091 (13091) [001] d..2 24577.507812: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
126325     kworker/1:1-13091 (13091) [001] d..3 24577.507824: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
126326              ps-13421 (13421) [004] d..2 24577.507828: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126327          <idle>-0     (-----) [000] .n.1 24577.507829: cpu_idle: state=4294967295 cpu_id=0
126328              ps-13421 (13421) [004] dn.3 24577.507831: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126329              ps-13421 (13421) [004] d..2 24577.507833: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126330          <idle>-0     (-----) [000] d..2 24577.507836: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
126331     kworker/1:1-13091 (13091) [001] d..2 24577.507840: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126332 shell svc 13418-13419 ( 1007) [004] d..2 24577.507841: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126333          <idle>-0     (-----) [001] d..1 24577.507847: cpu_idle: state=0 cpu_id=1
126334            adbd-23485 ( 1007) [000] d..2 24577.507882: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126335          <idle>-0     (-----) [000] d..1 24577.507889: cpu_idle: state=0 cpu_id=0
126336          <idle>-0     (-----) [001] d.h3 24577.507917: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126337          <idle>-0     (-----) [001] dnh4 24577.507923: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126338          <idle>-0     (-----) [001] .n.1 24577.507928: cpu_idle: state=4294967295 cpu_id=1
126339          <idle>-0     (-----) [001] d..2 24577.507934: 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
126340   kworker/u17:2-23076 (23076) [001] d..2 24577.507940: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126341   kworker/u17:2-23076 (23076) [001] d..3 24577.507945: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126342              ps-13421 (13421) [004] d..2 24577.507952: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126343              ps-13421 (13421) [004] dn.3 24577.507956: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126344              ps-13421 (13421) [004] d..2 24577.507958: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126345   kworker/u17:2-23076 (23076) [001] d..2 24577.507961: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126346     kworker/1:1-13091 (13091) [001] d..2 24577.507967: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
126347 shell svc 13418-13419 ( 1007) [004] d..2 24577.507967: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126348     kworker/1:1-13091 (13091) [001] d..3 24577.507975: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
126349          <idle>-0     (-----) [000] .n.1 24577.507980: cpu_idle: state=4294967295 cpu_id=0
126350          <idle>-0     (-----) [000] d..2 24577.507986: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
126351     kworker/1:1-13091 (13091) [001] d..2 24577.507990: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126352          <idle>-0     (-----) [001] d..1 24577.507997: cpu_idle: state=0 cpu_id=1
126353            adbd-23485 ( 1007) [000] d..2 24577.508003: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126354          <idle>-0     (-----) [000] d..1 24577.508010: cpu_idle: state=0 cpu_id=0
126355              ps-13421 (13421) [004] d..2 24577.508027: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126356              ps-13421 (13421) [004] dn.3 24577.508030: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126357              ps-13421 (13421) [004] d..2 24577.508033: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126358 shell svc 13418-13419 ( 1007) [004] d..2 24577.508041: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126359          <idle>-0     (-----) [001] d.h3 24577.508110: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126360          <idle>-0     (-----) [001] dnh4 24577.508118: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126361              ps-13421 (13421) [004] d..2 24577.508121: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126362          <idle>-0     (-----) [001] .n.1 24577.508124: cpu_idle: state=4294967295 cpu_id=1
126363              ps-13421 (13421) [004] dn.3 24577.508125: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126364              ps-13421 (13421) [004] d..2 24577.508128: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126365          <idle>-0     (-----) [001] d..2 24577.508130: 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
126366 shell svc 13418-13419 ( 1007) [004] d..2 24577.508136: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126367   kworker/u17:2-23076 (23076) [001] d..2 24577.508137: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126368   kworker/u17:2-23076 (23076) [001] d..3 24577.508142: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126369   kworker/u17:2-23076 (23076) [001] d..2 24577.508158: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126370     kworker/1:1-13091 (13091) [001] d..2 24577.508164: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
126371     kworker/1:1-13091 (13091) [001] d..3 24577.508172: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
126372          <idle>-0     (-----) [002] .n.1 24577.508178: cpu_idle: state=4294967295 cpu_id=2
126373          <idle>-0     (-----) [002] d..2 24577.508185: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
126374     kworker/1:1-13091 (13091) [001] d..2 24577.508187: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126375          <idle>-0     (-----) [001] d..1 24577.508194: cpu_idle: state=0 cpu_id=1
126376            adbd-23484 ( 1007) [002] d..2 24577.508196: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
126377            adbd-23484 ( 1007) [002] d..3 24577.508204: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
126378          <idle>-0     (-----) [000] d.h3 24577.508211: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
126379              ps-13421 (13421) [004] d..2 24577.508218: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126380          <idle>-0     (-----) [000] dnh4 24577.508219: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
126381              ps-13421 (13421) [004] dn.3 24577.508221: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126382              ps-13421 (13421) [004] d..2 24577.508224: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126383          <idle>-0     (-----) [000] .n.1 24577.508227: cpu_idle: state=4294967295 cpu_id=0
126384          <idle>-0     (-----) [000] d..2 24577.508232: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
126385 shell svc 13418-13419 ( 1007) [004] d..2 24577.508232: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126386            adbd-23484 ( 1007) [002] d..2 24577.508247: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
126387 kgsl_worker_thr-246   (  246) [000] d..2 24577.508274: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126388          <idle>-0     (-----) [000] d..1 24577.508282: cpu_idle: state=0 cpu_id=0
126389            adbd-1007  ( 1007) [002] d..1 24577.508308: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
126390              ps-13421 (13421) [004] d..2 24577.508312: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126391              ps-13421 (13421) [004] dn.3 24577.508315: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126392              ps-13421 (13421) [004] d..2 24577.508317: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126393            adbd-1007  ( 1007) [002] d..2 24577.508319: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
126394          <idle>-0     (-----) [000] .n.1 24577.508324: cpu_idle: state=4294967295 cpu_id=0
126395 shell svc 13418-13419 ( 1007) [004] d..2 24577.508326: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126396          <idle>-0     (-----) [000] d..2 24577.508331: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
126397            adbd-1007  ( 1007) [002] d..2 24577.508355: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
126398          <idle>-0     (-----) [002] d..1 24577.508364: cpu_idle: state=0 cpu_id=2
126399            adbd-23485 ( 1007) [000] d..2 24577.508380: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126400          <idle>-0     (-----) [001] d.h3 24577.508384: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126401              ps-13421 (13421) [004] d..2 24577.508387: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126402          <idle>-0     (-----) [000] d..1 24577.508387: cpu_idle: state=0 cpu_id=0
126403          <idle>-0     (-----) [001] dnh4 24577.508390: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126404              ps-13421 (13421) [004] dn.3 24577.508391: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126405              ps-13421 (13421) [004] d..2 24577.508393: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126406          <idle>-0     (-----) [001] .n.1 24577.508395: cpu_idle: state=4294967295 cpu_id=1
126407 shell svc 13418-13419 ( 1007) [004] d..2 24577.508401: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126408          <idle>-0     (-----) [001] d..2 24577.508401: 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
126409   kworker/u17:2-23076 (23076) [001] d..2 24577.508409: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126410   kworker/u17:2-23076 (23076) [001] d..3 24577.508414: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126411   kworker/u17:2-23076 (23076) [001] d..2 24577.508430: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126412     kworker/1:1-13091 (13091) [001] d..2 24577.508435: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
126413     kworker/1:1-13091 (13091) [001] d..3 24577.508444: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
126414          <idle>-0     (-----) [000] .n.1 24577.508450: cpu_idle: state=4294967295 cpu_id=0
126415          <idle>-0     (-----) [000] d..2 24577.508456: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
126416     kworker/1:1-13091 (13091) [001] d..2 24577.508459: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126417              ps-13421 (13421) [004] d..2 24577.508463: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126418              ps-13421 (13421) [004] dn.3 24577.508466: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126419          <idle>-0     (-----) [001] d..1 24577.508466: cpu_idle: state=0 cpu_id=1
126420              ps-13421 (13421) [004] d..2 24577.508468: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126421 shell svc 13418-13419 ( 1007) [004] d..2 24577.508476: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126422            adbd-23485 ( 1007) [000] d..2 24577.508503: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126423          <idle>-0     (-----) [000] d..1 24577.508510: cpu_idle: state=0 cpu_id=0
126424          <idle>-0     (-----) [001] d.h3 24577.508540: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126425          <idle>-0     (-----) [001] dnh4 24577.508546: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126426          <idle>-0     (-----) [001] .n.1 24577.508551: cpu_idle: state=4294967295 cpu_id=1
126427          <idle>-0     (-----) [001] d..2 24577.508557: 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
126428   kworker/u17:2-23076 (23076) [001] d..2 24577.508564: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126429   kworker/u17:2-23076 (23076) [001] d..3 24577.508569: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126430              ps-13421 (13421) [004] d..2 24577.508585: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126431   kworker/u17:2-23076 (23076) [001] d..2 24577.508585: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126432              ps-13421 (13421) [004] dn.3 24577.508588: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126433     kworker/1:1-13091 (13091) [001] d..2 24577.508590: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
126434              ps-13421 (13421) [004] d..2 24577.508590: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126435     kworker/1:1-13091 (13091) [001] d..3 24577.508599: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
126436 shell svc 13418-13419 ( 1007) [004] d..2 24577.508599: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126437          <idle>-0     (-----) [000] .n.1 24577.508604: cpu_idle: state=4294967295 cpu_id=0
126438          <idle>-0     (-----) [000] d..2 24577.508610: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
126439     kworker/1:1-13091 (13091) [001] d..2 24577.508614: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126440          <idle>-0     (-----) [001] d..1 24577.508621: cpu_idle: state=0 cpu_id=1
126441            adbd-23485 ( 1007) [000] d..2 24577.508629: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126442          <idle>-0     (-----) [000] d..1 24577.508635: cpu_idle: state=0 cpu_id=0
126443              ps-13421 (13421) [004] d..2 24577.508707: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126444          <idle>-0     (-----) [001] d.h3 24577.508710: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126445              ps-13421 (13421) [004] dn.3 24577.508711: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126446              ps-13421 (13421) [004] d..2 24577.508713: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126447          <idle>-0     (-----) [001] dnh4 24577.508715: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126448          <idle>-0     (-----) [001] .n.1 24577.508721: cpu_idle: state=4294967295 cpu_id=1
126449 shell svc 13418-13419 ( 1007) [004] d..2 24577.508721: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126450          <idle>-0     (-----) [001] d..2 24577.508727: 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
126451   kworker/u17:2-23076 (23076) [001] d..2 24577.508733: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126452   kworker/u17:2-23076 (23076) [001] d..3 24577.508738: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126453   kworker/u17:2-23076 (23076) [001] d..2 24577.508754: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126454     kworker/1:1-13091 (13091) [001] d..2 24577.508760: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
126455     kworker/1:1-13091 (13091) [001] d..3 24577.508785: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
126456          <idle>-0     (-----) [000] .n.1 24577.508789: cpu_idle: state=4294967295 cpu_id=0
126457          <idle>-0     (-----) [000] d..2 24577.508796: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
126458     kworker/1:1-13091 (13091) [001] d..2 24577.508800: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126459              ps-13421 (13421) [004] d..2 24577.508807: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126460          <idle>-0     (-----) [001] d..1 24577.508807: cpu_idle: state=0 cpu_id=1
126461            adbd-23484 ( 1007) [000] d..2 24577.508808: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
126462              ps-13421 (13421) [004] dn.3 24577.508810: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126463              ps-13421 (13421) [004] d..2 24577.508812: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126464            adbd-23484 ( 1007) [000] d..3 24577.508820: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
126465 shell svc 13418-13419 ( 1007) [004] d..2 24577.508820: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126466            adbd-23484 ( 1007) [000] d..2 24577.508865: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
126467              ps-13421 (13421) [004] d..2 24577.508914: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126468              ps-13421 (13421) [004] dn.3 24577.508917: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126469              ps-13421 (13421) [004] d..2 24577.508920: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126470 shell svc 13418-13419 ( 1007) [004] d..2 24577.508928: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126471            adbd-1007  ( 1007) [000] d..1 24577.508942: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
126472            adbd-1007  ( 1007) [000] d..2 24577.508962: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
126473          <idle>-0     (-----) [001] .n.1 24577.508967: cpu_idle: state=4294967295 cpu_id=1
126474          <idle>-0     (-----) [001] d..2 24577.508973: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
126475            adbd-1007  ( 1007) [000] d..2 24577.508999: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126476          <idle>-0     (-----) [000] d..1 24577.509008: cpu_idle: state=0 cpu_id=0
126477            adbd-23485 ( 1007) [001] d..2 24577.509022: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126478              ps-13421 (13421) [004] d..2 24577.509027: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126479              ps-13421 (13421) [004] dn.3 24577.509030: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126480              ps-13421 (13421) [004] d..2 24577.509033: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126481          <idle>-0     (-----) [001] d.h4 24577.509039: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126482 shell svc 13418-13419 ( 1007) [004] d..2 24577.509042: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126483          <idle>-0     (-----) [001] dnh5 24577.509045: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126484          <idle>-0     (-----) [001] d..2 24577.509053: 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
126485   kworker/u17:2-23076 (23076) [001] d..2 24577.509059: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126486   kworker/u17:2-23076 (23076) [001] d..3 24577.509064: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126487   kworker/u17:2-23076 (23076) [001] d..2 24577.509081: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126488     kworker/1:1-13091 (13091) [001] d..2 24577.509086: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
126489     kworker/1:1-13091 (13091) [001] d..3 24577.509102: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
126490          <idle>-0     (-----) [000] .n.1 24577.509107: cpu_idle: state=4294967295 cpu_id=0
126491          <idle>-0     (-----) [000] d..2 24577.509115: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
126492     kworker/1:1-13091 (13091) [001] d..2 24577.509116: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126493          <idle>-0     (-----) [001] d..1 24577.509124: cpu_idle: state=0 cpu_id=1
126494              ps-13421 (13421) [004] d..2 24577.509133: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126495              ps-13421 (13421) [004] dn.3 24577.509137: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126496              ps-13421 (13421) [004] d..2 24577.509139: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126497 shell svc 13418-13419 ( 1007) [004] d..2 24577.509147: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126498            adbd-23485 ( 1007) [000] d..2 24577.509166: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126499          <idle>-0     (-----) [000] d..1 24577.509174: cpu_idle: state=0 cpu_id=0
126500          <idle>-0     (-----) [001] d.h3 24577.509188: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126501          <idle>-0     (-----) [001] dnh4 24577.509193: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126502          <idle>-0     (-----) [001] .n.1 24577.509199: cpu_idle: state=4294967295 cpu_id=1
126503          <idle>-0     (-----) [001] d..2 24577.509206: 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
126504   kworker/u17:2-23076 (23076) [001] d..2 24577.509213: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126505   kworker/u17:2-23076 (23076) [001] d..3 24577.509218: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126506              ps-13421 (13421) [004] d..2 24577.509229: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126507              ps-13421 (13421) [004] dn.3 24577.509232: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126508   kworker/u17:2-23076 (23076) [001] d..2 24577.509234: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126509              ps-13421 (13421) [004] d..2 24577.509235: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126510     kworker/1:1-13091 (13091) [001] d..2 24577.509239: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
126511 shell svc 13418-13419 ( 1007) [004] d..2 24577.509243: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126512     kworker/1:1-13091 (13091) [001] d..3 24577.509248: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
126513          <idle>-0     (-----) [000] .n.1 24577.509253: cpu_idle: state=4294967295 cpu_id=0
126514          <idle>-0     (-----) [000] d..2 24577.509260: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
126515     kworker/1:1-13091 (13091) [001] d..2 24577.509263: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126516          <idle>-0     (-----) [001] d..1 24577.509270: cpu_idle: state=0 cpu_id=1
126517            adbd-23485 ( 1007) [000] d..2 24577.509277: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126518          <idle>-0     (-----) [000] d..1 24577.509284: cpu_idle: state=0 cpu_id=0
126519              ps-13421 (13421) [004] d..2 24577.509321: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126520              ps-13421 (13421) [004] dn.3 24577.509324: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126521              ps-13421 (13421) [004] d..2 24577.509327: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126522 shell svc 13418-13419 ( 1007) [004] d..2 24577.509335: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126523          <idle>-0     (-----) [001] d.h3 24577.509382: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126524          <idle>-0     (-----) [001] dnh4 24577.509389: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126525          <idle>-0     (-----) [001] .n.1 24577.509394: cpu_idle: state=4294967295 cpu_id=1
126526          <idle>-0     (-----) [001] d..2 24577.509400: 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
126527   kworker/u17:2-23076 (23076) [001] d..2 24577.509406: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126528   kworker/u17:2-23076 (23076) [001] d..3 24577.509411: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126529              ps-13421 (13421) [004] d..2 24577.509424: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126530              ps-13421 (13421) [004] dn.3 24577.509428: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126531   kworker/u17:2-23076 (23076) [001] d..2 24577.509428: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126532              ps-13421 (13421) [004] d..2 24577.509430: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126533     kworker/1:1-13091 (13091) [001] d..2 24577.509434: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
126534 shell svc 13418-13419 ( 1007) [004] d..2 24577.509439: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126535     kworker/1:1-13091 (13091) [001] d..3 24577.509443: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
126536          <idle>-0     (-----) [000] .n.1 24577.509448: cpu_idle: state=4294967295 cpu_id=0
126537          <idle>-0     (-----) [000] d..2 24577.509454: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
126538     kworker/1:1-13091 (13091) [001] d..2 24577.509458: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126539            adbd-23484 ( 1007) [000] d..2 24577.509464: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
126540          <idle>-0     (-----) [001] d..1 24577.509465: cpu_idle: state=0 cpu_id=1
126541            adbd-23484 ( 1007) [000] d..3 24577.509471: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
126542            adbd-23484 ( 1007) [000] d..2 24577.509515: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
126543              ps-13421 (13421) [004] d..2 24577.509523: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126544              ps-13421 (13421) [004] dn.3 24577.509526: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126545              ps-13421 (13421) [004] d..2 24577.509529: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126546 shell svc 13418-13419 ( 1007) [004] d..2 24577.509537: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126547          <idle>-0     (-----) [002] ...1 24577.509572: cpu_idle: state=4294967295 cpu_id=2
126548          <idle>-0     (-----) [002] d..1 24577.509575: cpu_idle: state=0 cpu_id=2
126549            adbd-1007  ( 1007) [000] d..1 24577.509581: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
126550            adbd-1007  ( 1007) [000] d..2 24577.509600: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
126551          <idle>-0     (-----) [001] .n.1 24577.509605: cpu_idle: state=4294967295 cpu_id=1
126552          <idle>-0     (-----) [001] d..2 24577.509611: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
126553              ps-13421 (13421) [004] d..2 24577.509622: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126554              ps-13421 (13421) [004] dn.3 24577.509625: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126555              ps-13421 (13421) [004] d..2 24577.509627: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126556 shell svc 13418-13419 ( 1007) [004] d..2 24577.509636: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126557            adbd-1007  ( 1007) [000] d..2 24577.509636: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126558          <idle>-0     (-----) [000] d..1 24577.509645: cpu_idle: state=0 cpu_id=0
126559            adbd-23485 ( 1007) [001] d..2 24577.509660: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126560          <idle>-0     (-----) [001] d.h4 24577.509677: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126561          <idle>-0     (-----) [001] dnh5 24577.509683: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126562          <idle>-0     (-----) [001] d..2 24577.509691: 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
126563   kworker/u17:2-23076 (23076) [001] d..2 24577.509698: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126564   kworker/u17:2-23076 (23076) [001] d..3 24577.509704: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126565              ps-13421 (13421) [004] d..2 24577.509719: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126566   kworker/u17:2-23076 (23076) [001] d..2 24577.509720: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126567              ps-13421 (13421) [004] dn.3 24577.509722: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126568     kworker/1:1-13091 (13091) [001] d..2 24577.509724: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
126569              ps-13421 (13421) [004] d..2 24577.509725: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126570 shell svc 13418-13419 ( 1007) [004] d..2 24577.509733: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126571     kworker/1:1-13091 (13091) [001] d..3 24577.509740: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
126572          <idle>-0     (-----) [000] .n.1 24577.509746: cpu_idle: state=4294967295 cpu_id=0
126573          <idle>-0     (-----) [000] d..2 24577.509753: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
126574     kworker/1:1-13091 (13091) [001] d..2 24577.509755: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126575          <idle>-0     (-----) [001] d..1 24577.509763: cpu_idle: state=0 cpu_id=1
126576            adbd-23485 ( 1007) [000] d..2 24577.509806: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126577          <idle>-0     (-----) [000] d..1 24577.509813: cpu_idle: state=0 cpu_id=0
126578              ps-13421 (13421) [004] d..2 24577.509820: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126579              ps-13421 (13421) [004] dn.3 24577.509824: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126580              ps-13421 (13421) [004] d..2 24577.509826: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126581 shell svc 13418-13419 ( 1007) [004] d..2 24577.509834: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126582          <idle>-0     (-----) [001] d.h3 24577.509834: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126583          <idle>-0     (-----) [001] dnh4 24577.509840: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126584          <idle>-0     (-----) [001] .n.1 24577.509845: cpu_idle: state=4294967295 cpu_id=1
126585          <idle>-0     (-----) [001] d..2 24577.509851: 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
126586   kworker/u17:2-23076 (23076) [001] d..2 24577.509858: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126587   kworker/u17:2-23076 (23076) [001] d..3 24577.509863: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126588   kworker/u17:2-23076 (23076) [001] d..2 24577.509880: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126589     kworker/1:1-13091 (13091) [001] d..2 24577.509886: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
126590     kworker/1:1-13091 (13091) [001] d..3 24577.509897: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
126591          <idle>-0     (-----) [000] .n.1 24577.509903: cpu_idle: state=4294967295 cpu_id=0
126592          <idle>-0     (-----) [000] d..2 24577.509909: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
126593     kworker/1:1-13091 (13091) [001] d..2 24577.509912: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126594              ps-13421 (13421) [004] d..2 24577.509915: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126595              ps-13421 (13421) [004] dn.3 24577.509918: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126596          <idle>-0     (-----) [001] d..1 24577.509920: cpu_idle: state=0 cpu_id=1
126597              ps-13421 (13421) [004] d..2 24577.509922: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126598            adbd-23485 ( 1007) [000] d..2 24577.509927: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126599 shell svc 13418-13419 ( 1007) [004] d..2 24577.509930: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126600          <idle>-0     (-----) [000] d..1 24577.509933: cpu_idle: state=0 cpu_id=0
126601          <idle>-0     (-----) [001] d.h3 24577.510006: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126602          <idle>-0     (-----) [001] dnh4 24577.510012: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126603          <idle>-0     (-----) [001] .n.1 24577.510017: cpu_idle: state=4294967295 cpu_id=1
126604              ps-13421 (13421) [004] d..2 24577.510022: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126605          <idle>-0     (-----) [001] d..2 24577.510023: 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
126606              ps-13421 (13421) [004] dn.3 24577.510025: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126607              ps-13421 (13421) [004] d..2 24577.510028: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126608   kworker/u17:2-23076 (23076) [001] d..2 24577.510029: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126609   kworker/u17:2-23076 (23076) [001] d..3 24577.510035: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126610 shell svc 13418-13419 ( 1007) [004] d..2 24577.510036: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126611   kworker/u17:2-23076 (23076) [001] d..2 24577.510052: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126612     kworker/1:1-13091 (13091) [001] d..2 24577.510058: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
126613     kworker/1:1-13091 (13091) [001] d..3 24577.510067: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
126614          <idle>-0     (-----) [000] .n.1 24577.510072: cpu_idle: state=4294967295 cpu_id=0
126615          <idle>-0     (-----) [000] d..2 24577.510079: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
126616     kworker/1:1-13091 (13091) [001] d..2 24577.510083: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126617            adbd-23484 ( 1007) [000] d..2 24577.510089: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
126618          <idle>-0     (-----) [001] d..1 24577.510090: cpu_idle: state=0 cpu_id=1
126619            adbd-23484 ( 1007) [000] d..3 24577.510096: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
126620              ps-13421 (13421) [004] d..2 24577.510116: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126621              ps-13421 (13421) [004] dn.3 24577.510119: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126622              ps-13421 (13421) [004] d..2 24577.510121: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126623 shell svc 13418-13419 ( 1007) [004] d..2 24577.510130: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126624            adbd-23484 ( 1007) [000] d..2 24577.510141: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
126625            adbd-1007  ( 1007) [000] d..1 24577.510203: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
126626            adbd-1007  ( 1007) [000] d..2 24577.510222: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
126627          <idle>-0     (-----) [001] .n.1 24577.510227: cpu_idle: state=4294967295 cpu_id=1
126628          <idle>-0     (-----) [001] d..2 24577.510233: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
126629              ps-13421 (13421) [004] d..2 24577.510241: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126630              ps-13421 (13421) [004] dn.3 24577.510244: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126631              ps-13421 (13421) [004] d..2 24577.510246: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126632 shell svc 13418-13419 ( 1007) [004] d..2 24577.510255: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126633            adbd-1007  ( 1007) [000] d..2 24577.510257: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126634          <idle>-0     (-----) [000] d..1 24577.510266: cpu_idle: state=0 cpu_id=0
126635            adbd-23485 ( 1007) [001] d..2 24577.510282: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126636          <idle>-0     (-----) [001] d..1 24577.510290: cpu_idle: state=0 cpu_id=1
126637          <idle>-0     (-----) [001] d.h3 24577.510307: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126638          <idle>-0     (-----) [001] dnh4 24577.510316: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126639              ps-13421 (13421) [004] d..2 24577.510319: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126640              ps-13421 (13421) [004] dn.3 24577.510322: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126641          <idle>-0     (-----) [001] .n.1 24577.510323: cpu_idle: state=4294967295 cpu_id=1
126642              ps-13421 (13421) [004] d..2 24577.510324: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126643          <idle>-0     (-----) [001] d..2 24577.510329: 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
126644 shell svc 13418-13419 ( 1007) [004] d..2 24577.510332: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126645   kworker/u17:2-23076 (23076) [001] d..2 24577.510337: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126646   kworker/u17:2-23076 (23076) [001] d..3 24577.510342: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126647   kworker/u17:2-23076 (23076) [001] d..2 24577.510359: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126648     kworker/1:1-13091 (13091) [001] d..2 24577.510364: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
126649     kworker/1:1-13091 (13091) [001] d..3 24577.510380: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
126650          <idle>-0     (-----) [000] .n.1 24577.510385: cpu_idle: state=4294967295 cpu_id=0
126651              ps-13421 (13421) [004] d..2 24577.510391: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126652          <idle>-0     (-----) [000] d..2 24577.510392: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
126653     kworker/1:1-13091 (13091) [001] d..2 24577.510394: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126654              ps-13421 (13421) [004] dn.3 24577.510395: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126655              ps-13421 (13421) [004] d..2 24577.510397: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126656          <idle>-0     (-----) [001] d..1 24577.510402: cpu_idle: state=0 cpu_id=1
126657 shell svc 13418-13419 ( 1007) [004] d..2 24577.510405: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126658            adbd-23485 ( 1007) [000] d..2 24577.510444: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126659          <idle>-0     (-----) [000] d..1 24577.510451: cpu_idle: state=0 cpu_id=0
126660          <idle>-0     (-----) [001] d.h3 24577.510480: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126661          <idle>-0     (-----) [001] dnh4 24577.510485: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126662          <idle>-0     (-----) [001] .n.1 24577.510490: cpu_idle: state=4294967295 cpu_id=1
126663          <idle>-0     (-----) [001] d..2 24577.510496: 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
126664   kworker/u17:2-23076 (23076) [001] d..2 24577.510504: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126665              ps-13421 (13421) [004] d..2 24577.510505: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126666              ps-13421 (13421) [004] dn.3 24577.510508: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126667   kworker/u17:2-23076 (23076) [001] d..3 24577.510509: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126668              ps-13421 (13421) [004] d..2 24577.510511: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126669 shell svc 13418-13419 ( 1007) [004] d..2 24577.510519: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126670   kworker/u17:2-23076 (23076) [001] d..2 24577.510525: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126671     kworker/1:1-13091 (13091) [001] d..2 24577.510530: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
126672     kworker/1:1-13091 (13091) [001] d..3 24577.510539: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
126673          <idle>-0     (-----) [000] .n.1 24577.510544: cpu_idle: state=4294967295 cpu_id=0
126674          <idle>-0     (-----) [000] d..2 24577.510551: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
126675     kworker/1:1-13091 (13091) [001] d..2 24577.510554: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126676          <idle>-0     (-----) [001] d..1 24577.510561: cpu_idle: state=0 cpu_id=1
126677            adbd-23485 ( 1007) [000] d..2 24577.510568: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126678          <idle>-0     (-----) [000] d..1 24577.510575: cpu_idle: state=0 cpu_id=0
126679              ps-13421 (13421) [004] d..2 24577.510601: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126680              ps-13421 (13421) [004] dn.3 24577.510605: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126681              ps-13421 (13421) [004] d..2 24577.510607: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126682 shell svc 13418-13419 ( 1007) [004] d..2 24577.510616: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126683          <idle>-0     (-----) [001] d.h3 24577.510681: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126684          <idle>-0     (-----) [001] dnh4 24577.510687: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126685          <idle>-0     (-----) [001] .n.1 24577.510692: cpu_idle: state=4294967295 cpu_id=1
126686          <idle>-0     (-----) [001] d..2 24577.510698: 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
126687   kworker/u17:2-23076 (23076) [001] d..2 24577.510704: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126688   kworker/u17:2-23076 (23076) [001] d..3 24577.510709: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126689              ps-13421 (13421) [004] d..2 24577.510713: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126690              ps-13421 (13421) [004] dn.3 24577.510716: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
126691              ps-13421 (13421) [004] d..2 24577.510719: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
126692   kworker/u17:2-23076 (23076) [001] d..2 24577.510725: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126693 shell svc 13418-13419 ( 1007) [004] d..2 24577.510727: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13421 next_prio=120
126694     kworker/1:1-13091 (13091) [001] d..2 24577.510732: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
126695     kworker/1:1-13091 (13091) [001] d..3 24577.510740: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
126696          <idle>-0     (-----) [000] .n.1 24577.510746: cpu_idle: state=4294967295 cpu_id=0
126697          <idle>-0     (-----) [000] d..2 24577.510752: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
126698     kworker/1:1-13091 (13091) [001] d..2 24577.510755: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126699            adbd-23484 ( 1007) [000] d..2 24577.510762: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
126700          <idle>-0     (-----) [001] d..1 24577.510763: cpu_idle: state=0 cpu_id=1
126701            adbd-23484 ( 1007) [000] d..3 24577.510769: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
126702            adbd-23484 ( 1007) [000] d..2 24577.510812: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
126703            adbd-1007  ( 1007) [000] d..1 24577.510874: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
126704            adbd-1007  ( 1007) [000] d..2 24577.510894: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
126705          <idle>-0     (-----) [003] d.s2 24577.510896: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
126706          <idle>-0     (-----) [001] .n.1 24577.510899: cpu_idle: state=4294967295 cpu_id=1
126707          <idle>-0     (-----) [003] dns3 24577.510906: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
126708          <idle>-0     (-----) [001] d..2 24577.510907: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
126709          <idle>-0     (-----) [003] .n.1 24577.510917: cpu_idle: state=4294967295 cpu_id=3
126710          <idle>-0     (-----) [003] d..2 24577.510923: 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
126711     rcu_preempt-7     (    7) [003] d..2 24577.510943: 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
126712          <idle>-0     (-----) [003] d..1 24577.510952: cpu_idle: state=0 cpu_id=3
126713            adbd-1007  ( 1007) [000] d..2 24577.510956: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126714            adbd-23485 ( 1007) [001] d..2 24577.510957: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126715          <idle>-0     (-----) [000] d..1 24577.510965: cpu_idle: state=0 cpu_id=0
126716          <idle>-0     (-----) [001] d.h4 24577.510974: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126717          <idle>-0     (-----) [001] dnh5 24577.510980: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126718          <idle>-0     (-----) [001] d..2 24577.510988: 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
126719   kworker/u17:2-23076 (23076) [001] d..2 24577.510995: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126720   kworker/u17:2-23076 (23076) [001] d..3 24577.511000: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126721   kworker/u17:2-23076 (23076) [001] d..2 24577.511016: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126722     kworker/1:1-13091 (13091) [001] d..2 24577.511021: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
126723              ps-13421 (13421) [004] d..3 24577.511036: sched_waking: comm=sh pid=13420 prio=120 target_cpu=003
126724     kworker/1:1-13091 (13091) [001] d..3 24577.511037: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
126725          <idle>-0     (-----) [000] .n.1 24577.511043: cpu_idle: state=4294967295 cpu_id=0
126726          <idle>-0     (-----) [000] d..2 24577.511050: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
126727     kworker/1:1-13091 (13091) [001] d..2 24577.511051: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126728              ps-13421 (13421) [004] d..2 24577.511058: sched_switch: prev_comm=ps prev_pid=13421 prev_prio=120 prev_state=x ==> next_comm=swapper/4 next_pid=0 next_prio=120
126729          <idle>-0     (-----) [001] d..1 24577.511059: cpu_idle: state=0 cpu_id=1
126730          <idle>-0     (-----) [002] dnh2 24577.511059: sched_wakeup: comm=sh pid=13420 prio=120 target_cpu=002
126731          <idle>-0     (-----) [002] .n.1 24577.511063: cpu_idle: state=4294967295 cpu_id=2
126732          <idle>-0     (-----) [004] d..1 24577.511068: cpu_idle: state=0 cpu_id=4
126733          <idle>-0     (-----) [002] d..2 24577.511069: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=13420 next_prio=120
126734            adbd-23485 ( 1007) [000] d..2 24577.511101: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126735          <idle>-0     (-----) [000] d..1 24577.511109: cpu_idle: state=0 cpu_id=0
126736          <idle>-0     (-----) [001] d.h3 24577.511133: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126737          <idle>-0     (-----) [001] dnh4 24577.511139: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126738          <idle>-0     (-----) [001] .n.1 24577.511144: cpu_idle: state=4294967295 cpu_id=1
126739          <idle>-0     (-----) [001] d..2 24577.511150: 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
126740   kworker/u17:2-23076 (23076) [001] d..2 24577.511156: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126741   kworker/u17:2-23076 (23076) [001] d..3 24577.511161: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126742   kworker/u17:2-23076 (23076) [001] d..2 24577.511178: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126743     kworker/1:1-13091 (13091) [001] d..2 24577.511183: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
126744     kworker/1:1-13091 (13091) [001] d..3 24577.511191: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
126745          <idle>-0     (-----) [000] .n.1 24577.511197: cpu_idle: state=4294967295 cpu_id=0
126746          <idle>-0     (-----) [000] d..2 24577.511203: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
126747     kworker/1:1-13091 (13091) [001] d..2 24577.511205: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126748          <idle>-0     (-----) [001] d..1 24577.511212: cpu_idle: state=0 cpu_id=1
126749            adbd-23485 ( 1007) [000] d..2 24577.511227: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126750          <idle>-0     (-----) [000] d..1 24577.511234: cpu_idle: state=0 cpu_id=0
126751          <idle>-0     (-----) [001] d.h3 24577.511331: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126752          <idle>-0     (-----) [001] dnh4 24577.511337: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
126753          <idle>-0     (-----) [001] .n.1 24577.511342: cpu_idle: state=4294967295 cpu_id=1
126754          <idle>-0     (-----) [001] d..2 24577.511348: 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
126755   kworker/u17:2-23076 (23076) [001] d..2 24577.511354: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126756   kworker/u17:2-23076 (23076) [001] d..3 24577.511359: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
126757   kworker/u17:2-23076 (23076) [001] d..2 24577.511375: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
126758     kworker/1:1-13091 (13091) [001] d..2 24577.511381: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
126759     kworker/1:1-13091 (13091) [001] d..3 24577.511402: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
126760          <idle>-0     (-----) [000] .n.1 24577.511407: cpu_idle: state=4294967295 cpu_id=0
126761          <idle>-0     (-----) [000] d..2 24577.511414: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
126762     kworker/1:1-13091 (13091) [001] d..2 24577.511416: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126763          <idle>-0     (-----) [001] d..1 24577.511424: cpu_idle: state=0 cpu_id=1
126764            adbd-23484 ( 1007) [000] d..2 24577.511424: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
126765            adbd-23484 ( 1007) [000] d..3 24577.511431: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
126766            adbd-23484 ( 1007) [000] d..2 24577.511474: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
126767            adbd-1007  ( 1007) [000] d..2 24577.511535: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126768          <idle>-0     (-----) [000] d..1 24577.511544: cpu_idle: state=0 cpu_id=0
126769          <idle>-0     (-----) [000] .n.1 24577.511776: cpu_idle: state=4294967295 cpu_id=0
126770          <idle>-0     (-----) [000] d..2 24577.511784: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=13422 next_prio=120
126771              sh-13420 (13420) [002] d..2 24577.511866: sched_switch: prev_comm=sh prev_pid=13420 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
126772          <idle>-0     (-----) [002] d..1 24577.511878: cpu_idle: state=0 cpu_id=2
126773              ps-13422 (13422) [000] d..2 24577.511996: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
126774              ps-13422 (13422) [000] dn.3 24577.512006: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
126775              ps-13422 (13422) [000] d..2 24577.512012: sched_switch: prev_comm=sh prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=migration/0 next_pid=13 next_prio=0
126776          <idle>-0     (-----) [001] .n.1 24577.512038: cpu_idle: state=4294967295 cpu_id=1
126777          <idle>-0     (-----) [001] d..2 24577.512044: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=13422 next_prio=120
126778     migration/0-13    (   13) [000] d..2 24577.512047: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126779          <idle>-0     (-----) [000] d..1 24577.512056: cpu_idle: state=0 cpu_id=0
126780          <idle>-0     (-----) [002] ...1 24577.513127: cpu_idle: state=4294967295 cpu_id=2
126781          <idle>-0     (-----) [002] d..1 24577.513130: cpu_idle: state=0 cpu_id=2
126782          <idle>-0     (-----) [000] ...1 24577.513209: cpu_idle: state=4294967295 cpu_id=0
126783          <idle>-0     (-----) [000] d..1 24577.513212: cpu_idle: state=0 cpu_id=0
126784              ps-13422 (13422) [001] d.s2 24577.514237: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
126785              ps-13422 (13422) [001] d.s3 24577.514258: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
126786          <idle>-0     (-----) [000] .n.1 24577.514262: cpu_idle: state=4294967295 cpu_id=0
126787          <idle>-0     (-----) [000] d..2 24577.514270: 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
126788  kworker/u16:10-23868 (23868) [000] d..2 24577.514459: 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
126789          <idle>-0     (-----) [000] d..1 24577.514467: cpu_idle: state=0 cpu_id=0
126790          <idle>-0     (-----) [003] d.s3 24577.514487: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
126791          <idle>-0     (-----) [003] d.s4 24577.514508: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
126792          <idle>-0     (-----) [003] dns4 24577.514511: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
126793          <idle>-0     (-----) [003] .n.1 24577.514516: cpu_idle: state=4294967295 cpu_id=3
126794          <idle>-0     (-----) [003] d..2 24577.514523: 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
126795  kworker/u16:10-23868 (23868) [003] .... 24577.514555: clk_set_rate: l3_cluster1_vote_clk 1305600000
126796  kworker/u16:10-23868 (23868) [003] .... 24577.514562: clk_set_rate: l3_clk 1305600000
126797  kworker/u16:10-23868 (23868) [003] d..2 24577.514895: 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
126798          <idle>-0     (-----) [003] d.s4 24577.514924: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
126799          <idle>-0     (-----) [003] d.s5 24577.514929: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
126800          <idle>-0     (-----) [003] dns5 24577.514932: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
126801          <idle>-0     (-----) [003] d..2 24577.514940: 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
126802  kworker/u16:10-23868 (23868) [003] d..2 24577.514956: 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
126803          <idle>-0     (-----) [003] d..1 24577.514962: cpu_idle: state=0 cpu_id=3
126804          <idle>-0     (-----) [000] ...1 24577.515615: cpu_idle: state=4294967295 cpu_id=0
126805          <idle>-0     (-----) [000] d..1 24577.515618: cpu_idle: state=0 cpu_id=0
126806          <idle>-0     (-----) [003] d.h2 24577.516452: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
126807          <idle>-0     (-----) [003] dnh3 24577.516462: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
126808          <idle>-0     (-----) [003] .n.1 24577.516467: cpu_idle: state=4294967295 cpu_id=3
126809          <idle>-0     (-----) [003] d..2 24577.516471: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
126810        DispSync-23904 (23896) [003] d..1 24577.516503: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
126811        DispSync-23904 (23896) [003] d..2 24577.516523: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
126812          <idle>-0     (-----) [002] .n.1 24577.516527: cpu_idle: state=4294967295 cpu_id=2
126813          <idle>-0     (-----) [002] d..2 24577.516534: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
126814        DispSync-23904 (23896) [003] d..2 24577.516547: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126815          <idle>-0     (-----) [003] d..1 24577.516553: cpu_idle: state=0 cpu_id=3
126816  appEventThread-23905 (23896) [002] d..3 24577.516595: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
126817  appEventThread-23905 (23896) [002] d..4 24577.516611: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
126818          <idle>-0     (-----) [000] .n.1 24577.516616: cpu_idle: state=4294967295 cpu_id=0
126819          <idle>-0     (-----) [000] d..2 24577.516623: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
126820  appEventThread-23905 (23896) [002] d..2 24577.516638: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
126821          <idle>-0     (-----) [002] d..1 24577.516645: cpu_idle: state=0 cpu_id=2
126822 s.nexuslauncher-24827 (24827) [000] .... 24577.517043: binder_transaction: transaction=1671641 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
126823 s.nexuslauncher-24827 (24827) [000] d..4 24577.517056: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
126824 s.nexuslauncher-24827 (24827) [000] d..5 24577.517078: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=002
126825          <idle>-0     (-----) [002] .n.1 24577.517083: cpu_idle: state=4294967295 cpu_id=2
126826          <idle>-0     (-----) [002] d..2 24577.517090: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
126827  Binder:23896_4-24423 (23896) [002] .... 24577.517097: binder_transaction_received: transaction=1671641
126828 s.nexuslauncher-24827 (24827) [000] d..3 24577.517120: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=003
126829  Binder:23896_4-24423 (23896) [002] d..1 24577.517129: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
126830 s.nexuslauncher-24827 (24827) [000] d..4 24577.517133: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=003
126831          <idle>-0     (-----) [003] .n.1 24577.517138: cpu_idle: state=4294967295 cpu_id=3
126832          <idle>-0     (-----) [003] d..2 24577.517144: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
126833  Binder:23896_4-24423 (23896) [002] d..2 24577.517145: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
126834 s.nexuslauncher-24827 (24827) [000] d..2 24577.517156: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
126835  Binder:23896_4-24423 (23896) [002] d..2 24577.517174: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
126836          <idle>-0     (-----) [002] d..1 24577.517180: cpu_idle: state=0 cpu_id=2
126837    RenderThread-25194 (24827) [003] d..2 24577.517187: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126838  appEventThread-23905 (23896) [000] d..2 24577.517189: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
126839          <idle>-0     (-----) [003] d..1 24577.517192: cpu_idle: state=0 cpu_id=3
126840 s.nexuslauncher-24827 (24827) [000] d..3 24577.517502: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=003
126841 s.nexuslauncher-24827 (24827) [000] d..4 24577.517515: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=003
126842          <idle>-0     (-----) [003] .n.1 24577.517519: cpu_idle: state=4294967295 cpu_id=3
126843          <idle>-0     (-----) [003] d..2 24577.517525: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
126844 s.nexuslauncher-24827 (24827) [000] d..2 24577.517535: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126845          <idle>-0     (-----) [000] d..1 24577.517544: cpu_idle: state=0 cpu_id=0
126846    RenderThread-25194 (24827) [003] d.H2 24577.517621: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
126847    RenderThread-25194 (24827) [003] d.H3 24577.517635: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
126848    RenderThread-25194 (24827) [003] d.s1 24577.517638: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
126849          <idle>-0     (-----) [000] .n.1 24577.517640: cpu_idle: state=4294967295 cpu_id=0
126850          <idle>-0     (-----) [000] d..2 24577.517648: 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
126851    RenderThread-25194 (24827) [003] d.s2 24577.517661: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
126852         sugov:0-559   (  559) [000] .... 24577.517676: clk_set_rate: pwrcl_clk 979200000
126853         sugov:0-559   (  559) [000] .... 24577.517683: clk_set_rate: cpu3_pwrcl_clk 1516800000
126854         sugov:0-559   (  559) [000] .... 24577.517691: clk_set_rate: cpu2_pwrcl_clk 1516800000
126855         sugov:0-559   (  559) [000] .... 24577.517697: clk_set_rate: cpu1_pwrcl_clk 1516800000
126856         sugov:0-559   (  559) [000] .... 24577.517703: clk_set_rate: cpu0_pwrcl_clk 979200000
126857         sugov:0-559   (  559) [000] .... 24577.517815: cpu_frequency: state=979200 cpu_id=0
126858         sugov:0-559   (  559) [000] .... 24577.517836: cpu_frequency: state=979200 cpu_id=1
126859         sugov:0-559   (  559) [000] .... 24577.517841: cpu_frequency: state=979200 cpu_id=2
126860         sugov:0-559   (  559) [000] .... 24577.517844: cpu_frequency: state=979200 cpu_id=3
126861         sugov:0-559   (  559) [000] d..2 24577.517860: 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
126862     rcu_preempt-7     (    7) [000] d..2 24577.517868: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
126863    RenderThread-25194 (24827) [003] d..1 24577.517887: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
126864     rcu_preempt-7     (    7) [000] d..3 24577.517910: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
126865    RenderThread-25194 (24827) [003] d..2 24577.517913: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
126866     rcu_preempt-7     (    7) [000] d..2 24577.517913: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
126867          <idle>-0     (-----) [002] .n.1 24577.517918: cpu_idle: state=4294967295 cpu_id=2
126868     rcu_preempt-7     (    7) [000] d..3 24577.517927: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
126869          <idle>-0     (-----) [002] d..2 24577.517929: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
126870     rcu_preempt-7     (    7) [000] d..2 24577.517942: 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
126871         rcuop/2-29    (   29) [000] d..2 24577.517948: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
126872         rcuop/2-29    (   29) [000] d..3 24577.517976: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
126873         rcuop/2-29    (   29) [000] d..2 24577.517986: 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
126874    RenderThread-25194 (24827) [003] .... 24577.517987: binder_transaction: transaction=1671642 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
126875    RenderThread-25194 (24827) [003] ...2 24577.517997: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
126876         rcuop/0-10    (   10) [000] d..2 24577.518000: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
126877    RenderThread-25194 (24827) [003] d..4 24577.518001: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
126878    RenderThread-25194 (24827) [003] d..5 24577.518017: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=003
126879         rcuop/3-37    (   37) [000] d..2 24577.518023: 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
126880    RenderThread-25194 (24827) [003] d..2 24577.518033: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
126881          <idle>-0     (-----) [000] d..1 24577.518034: cpu_idle: state=0 cpu_id=0
126882  Binder:23896_4-24423 (23896) [003] .... 24577.518040: binder_transaction_received: transaction=1671642
126883 s.nexuslauncher-24827 (24827) [002] d..2 24577.518044: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
126884          <idle>-0     (-----) [002] d..1 24577.518054: cpu_idle: state=0 cpu_id=2
126885  Binder:23896_4-24423 (23896) [003] .... 24577.518123: binder_transaction: transaction=1671643 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
126886  Binder:23896_4-24423 (23896) [003] d..2 24577.518138: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=003
126887  Binder:23896_4-24423 (23896) [003] d..3 24577.518150: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=003
126888  Binder:23896_4-24423 (23896) [003] .... 24577.518153: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
126889  Binder:23896_4-24423 (23896) [003] d..2 24577.518165: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
126890    RenderThread-25194 (24827) [003] .... 24577.518171: binder_transaction_received: transaction=1671643
126891    RenderThread-25194 (24827) [003] d..2 24577.520410: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
126892  Binder:23896_4-24423 (23896) [003] d..2 24577.520469: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126893          <idle>-0     (-----) [003] d..1 24577.520481: cpu_idle: state=0 cpu_id=3
126894          <idle>-0     (-----) [003] d.h2 24577.520501: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
126895          <idle>-0     (-----) [003] dnh3 24577.520515: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
126896          <idle>-0     (-----) [003] dnh2 24577.520517: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=003
126897          <idle>-0     (-----) [003] dnh3 24577.520533: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
126898          <idle>-0     (-----) [003] dnh3 24577.520540: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
126899          <idle>-0     (-----) [000] .n.1 24577.520545: cpu_idle: state=4294967295 cpu_id=0
126900          <idle>-0     (-----) [003] .n.1 24577.520547: cpu_idle: state=4294967295 cpu_id=3
126901          <idle>-0     (-----) [000] d..2 24577.520555: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
126902          <idle>-0     (-----) [003] d..2 24577.520558: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
126903        DispSync-23904 (23896) [003] d..1 24577.520575: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
126904        DispSync-23904 (23896) [003] d..2 24577.520594: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
126905          <idle>-0     (-----) [002] .n.1 24577.520600: cpu_idle: state=4294967295 cpu_id=2
126906          <idle>-0     (-----) [002] d..2 24577.520608: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
126907        DispSync-23904 (23896) [003] d..2 24577.520620: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126908          <idle>-0     (-----) [003] d..1 24577.520629: cpu_idle: state=0 cpu_id=3
126909   sfEventThread-23906 (23896) [002] d..3 24577.520649: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
126910   sfEventThread-23906 (23896) [002] d..4 24577.520674: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
126911          <idle>-0     (-----) [003] .n.1 24577.520679: cpu_idle: state=4294967295 cpu_id=3
126912          <idle>-0     (-----) [003] d..2 24577.520688: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
126913   sfEventThread-23906 (23896) [002] d..2 24577.520712: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
126914          <idle>-0     (-----) [002] d..1 24577.520721: cpu_idle: state=0 cpu_id=2
126915    RenderThread-25194 (24827) [000] .... 24577.520772: binder_transaction: transaction=1671644 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
126916    RenderThread-25194 (24827) [000] ...2 24577.520784: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
126917    RenderThread-25194 (24827) [000] d..4 24577.520788: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=003
126918    RenderThread-25194 (24827) [000] d..5 24577.520806: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
126919    RenderThread-25194 (24827) [000] d..2 24577.520818: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
126920  Binder:23896_4-24423 (23896) [000] .... 24577.520825: binder_transaction_received: transaction=1671644
126921          <idle>-0     (-----) [002] d.h2 24577.520834: sched_waking: comm=CCodecWatchdog pid=24367 prio=120 target_cpu=002
126922          <idle>-0     (-----) [002] dnh3 24577.520849: sched_wakeup: comm=CCodecWatchdog pid=24367 prio=120 target_cpu=002
126923          <idle>-0     (-----) [002] .n.1 24577.520872: cpu_idle: state=4294967295 cpu_id=2
126924          <idle>-0     (-----) [002] d..2 24577.520882: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=24367 next_prio=120
126925  surfaceflinger-23896 (23896) [003] d..2 24577.520900: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126926          <idle>-0     (-----) [003] d.h3 24577.520917: sched_waking: comm=CCodecWatchdog pid=25015 prio=120 target_cpu=003
126927  Binder:23896_4-24423 (23896) [000] d..1 24577.520931: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
126928          <idle>-0     (-----) [003] dnh4 24577.520933: sched_wakeup: comm=CCodecWatchdog pid=25015 prio=120 target_cpu=003
126929  Binder:23896_4-24423 (23896) [000] d..2 24577.520946: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
126930  Binder:23896_4-24423 (23896) [000] d..1 24577.520962: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
126931          <idle>-0     (-----) [003] d..2 24577.520964: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
126932  Binder:23896_4-24423 (23896) [000] d..2 24577.520975: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
126933  CCodecWatchdog-24367 (24151) [002] d..2 24577.520988: sched_switch: prev_comm=CCodecWatchdog prev_pid=24367 prev_prio=120 prev_state=S ==> next_comm=sfEventThread next_pid=23906 next_prio=97
126934  Binder:23896_4-24423 (23896) [000] d..2 24577.521015: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126935  surfaceflinger-23896 (23896) [003] d..1 24577.521022: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
126936   sfEventThread-23906 (23896) [002] d..2 24577.521024: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
126937          <idle>-0     (-----) [000] d..1 24577.521025: cpu_idle: state=0 cpu_id=0
126938          <idle>-0     (-----) [002] d..1 24577.521036: cpu_idle: state=0 cpu_id=2
126939  surfaceflinger-23896 (23896) [003] d..2 24577.521037: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
126940          <idle>-0     (-----) [000] .n.1 24577.521043: cpu_idle: state=4294967295 cpu_id=0
126941          <idle>-0     (-----) [000] d..2 24577.521051: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
126942  Binder:23896_4-24423 (23896) [000] .... 24577.521091: binder_transaction: transaction=1671645 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
126943  Binder:23896_4-24423 (23896) [000] d..2 24577.521098: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
126944  Binder:23896_4-24423 (23896) [000] d..3 24577.521108: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
126945  Binder:23896_4-24423 (23896) [000] .... 24577.521111: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
126946  Binder:23896_4-24423 (23896) [000] d..2 24577.521150: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
126947    RenderThread-25194 (24827) [000] .... 24577.521156: binder_transaction_received: transaction=1671645
126948    RenderThread-25194 (24827) [000] d..2 24577.521236: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126949          <idle>-0     (-----) [000] d..1 24577.521246: cpu_idle: state=0 cpu_id=0
126950  surfaceflinger-23896 (23896) [003] ...1 24577.521349: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
126951  surfaceflinger-23896 (23896) [003] ...1 24577.521357: tracing_mark_write: E|23896
126952  surfaceflinger-23896 (23896) [003] .... 24577.521489: binder_transaction: transaction=1671646 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
126953  surfaceflinger-23896 (23896) [003] ...2 24577.521536: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
126954  surfaceflinger-23896 (23896) [003] d..4 24577.521546: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
126955  surfaceflinger-23896 (23896) [003] d..5 24577.521564: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
126956          <idle>-0     (-----) [002] .n.1 24577.521570: cpu_idle: state=4294967295 cpu_id=2
126957          <idle>-0     (-----) [002] d..2 24577.521578: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
126958  surfaceflinger-23896 (23896) [003] d..2 24577.521581: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=CCodecWatchdog next_pid=25015 next_prio=120
126959  HwBinder:598_3-633   (  598) [002] .... 24577.521590: binder_transaction_received: transaction=1671646
126960  HwBinder:598_3-633   (  598) [002] ...1 24577.521647: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
126961  CCodecWatchdog-25015 (24655) [003] d..2 24577.521651: sched_switch: prev_comm=CCodecWatchdog prev_pid=25015 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126962          <idle>-0     (-----) [003] d..1 24577.521665: cpu_idle: state=0 cpu_id=3
126963  HwBinder:598_3-633   (  598) [002] ...1 24577.521764: tracing_mark_write: B|598|HWCSession::PresentDisplay::
126964          <idle>-0     (-----) [000] d.h3 24577.521930: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
126965          <idle>-0     (-----) [000] dnh4 24577.521944: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
126966          <idle>-0     (-----) [000] .n.1 24577.521955: cpu_idle: state=4294967295 cpu_id=0
126967          <idle>-0     (-----) [000] d..2 24577.521962: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
126968 kgsl_worker_thr-246   (  246) [000] d..2 24577.522004: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
126969 kgsl_worker_thr-246   (  246) [000] d..3 24577.522038: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
126970 kgsl_worker_thr-246   (  246) [000] d..2 24577.522064: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126971          <idle>-0     (-----) [000] d..1 24577.522071: cpu_idle: state=0 cpu_id=0
126972  HwBinder:598_3-633   (  598) [002] ...1 24577.522349: tracing_mark_write: B|598|HWDeviceDRM::Validate::
126973          <idle>-0     (-----) [003] ...1 24577.522920: cpu_idle: state=4294967295 cpu_id=3
126974          <idle>-0     (-----) [003] d..1 24577.522925: cpu_idle: state=0 cpu_id=3
126975  HwBinder:598_3-633   (  598) [002] ...1 24577.522962: tracing_mark_write: E|598
126976  HwBinder:598_3-633   (  598) [002] ...1 24577.523104: tracing_mark_write: B|598|HWDeviceDRM::Commit::
126977  HwBinder:598_3-633   (  598) [002] ...1 24577.523114: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
126978  HwBinder:598_3-633   (  598) [002] d..2 24577.523530: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
126979  HwBinder:598_3-633   (  598) [002] d..3 24577.523552: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
126980          <idle>-0     (-----) [000] .n.1 24577.523557: cpu_idle: state=4294967295 cpu_id=0
126981          <idle>-0     (-----) [000] d..2 24577.523564: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
126982  HwBinder:598_3-633   (  598) [002] ...1 24577.523637: tracing_mark_write: E|598
126983  HwBinder:598_3-633   (  598) [002] ...1 24577.523642: tracing_mark_write: E|598
126984  HwBinder:598_3-633   (  598) [002] ...1 24577.523688: tracing_mark_write: E|598
126985  HwBinder:598_3-633   (  598) [002] ...1 24577.523735: tracing_mark_write: E|598
126986 crtc_commit:111-253   (  253) [000] d..2 24577.523745: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
126987          <idle>-0     (-----) [000] d..1 24577.523753: cpu_idle: state=0 cpu_id=0
126988  HwBinder:598_3-633   (  598) [002] .... 24577.523766: binder_transaction: transaction=1671647 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
126989  HwBinder:598_3-633   (  598) [002] d..2 24577.523788: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
126990  HwBinder:598_3-633   (  598) [002] d..3 24577.523803: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
126991  HwBinder:598_3-633   (  598) [002] .... 24577.523807: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
126992          <idle>-0     (-----) [003] .n.1 24577.523807: cpu_idle: state=4294967295 cpu_id=3
126993          <idle>-0     (-----) [003] d..2 24577.523815: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
126994  surfaceflinger-23896 (23896) [003] .... 24577.523823: binder_transaction_received: transaction=1671647
126995  HwBinder:598_3-633   (  598) [002] d..2 24577.523872: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
126996  surfaceflinger-23896 (23896) [003] d.s1 24577.523925: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
126997  surfaceflinger-23896 (23896) [003] d.s2 24577.523939: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
126998  kworker/u16:10-23868 (23868) [002] d..2 24577.524056: 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
126999          <idle>-0     (-----) [002] d..1 24577.524071: cpu_idle: state=0 cpu_id=2
127000          <idle>-0     (-----) [000] d.s2 24577.524238: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
127001              ps-13422 (13422) [001] d.s2 24577.524241: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
127002          <idle>-0     (-----) [000] dns3 24577.524252: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
127003          <idle>-0     (-----) [000] .n.1 24577.524266: cpu_idle: state=4294967295 cpu_id=0
127004          <idle>-0     (-----) [000] d..2 24577.524274: 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
127005              ps-13422 (13422) [001] d.s3 24577.524288: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
127006     rcu_preempt-7     (    7) [000] d..2 24577.524298: 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
127007              ps-13422 (13422) [001] d.s2 24577.524304: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=001
127008              ps-13422 (13422) [001] d.s3 24577.524336: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
127009  surfaceflinger-23896 (23896) [003] d..2 24577.524338: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
127010              ps-13422 (13422) [001] d.s2 24577.524348: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
127011     ksoftirqd/3-34    (   34) [003] d.s2 24577.524354: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
127012     ksoftirqd/3-34    (   34) [003] d.s3 24577.524376: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
127013              ps-13422 (13422) [001] d.s3 24577.524378: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
127014          <idle>-0     (-----) [002] .n.1 24577.524382: cpu_idle: state=4294967295 cpu_id=2
127015     ksoftirqd/3-34    (   34) [003] d..2 24577.524389: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
127016          <idle>-0     (-----) [002] d..2 24577.524392: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
127017     rcu_preempt-7     (    7) [003] d..2 24577.524396: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
127018     rcu_preempt-7     (    7) [003] d..3 24577.524413: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
127019 crtc_commit:111-253   (  253) [002] d..1 24577.524415: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
127020     rcu_preempt-7     (    7) [003] d..2 24577.524427: 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
127021 crtc_commit:111-253   (  253) [002] d..2 24577.524444: sched_blocked_reason: pid=23868 iowait=0 caller=update_request_adhoc+0x384/0x480
127022 crtc_commit:111-253   (  253) [002] d..2 24577.524449: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
127023  kworker/u16:16-25995 (25995) [000] .... 24577.524515: clk_set_rate: l3_cluster1_vote_clk 300000000
127024  kworker/u16:16-25995 (25995) [000] .... 24577.524521: clk_set_rate: l3_clk 844800000
127025 crtc_commit:111-253   (  253) [002] d..2 24577.524625: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
127026         rcuop/4-45    (   45) [003] d.s2 24577.524634: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
127027         rcuop/4-45    (   45) [003] d.s3 24577.524652: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
127028          <idle>-0     (-----) [002] d..2 24577.524672: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
127029 crtc_commit:111-253   (  253) [002] d..1 24577.524713: clk_enable: disp_cc_mdss_vsync_clk_src
127030  kworker/u16:16-25995 (25995) [000] .... 24577.524714: clk_set_rate: l3_cluster0_vote_clk 940800000
127031 crtc_commit:111-253   (  253) [002] d..1 24577.524716: clk_enable: disp_cc_mdss_rscc_vsync_clk
127032  kworker/u16:16-25995 (25995) [000] .... 24577.524717: clk_set_rate: l3_clk 940800000
127033 crtc_commit:111-253   (  253) [002] d..1 24577.524738: clk_enable: disp_cc_mdss_rscc_ahb_clk
127034  kworker/u16:16-25995 (25995) [000] d..2 24577.524740: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
127035  kworker/u16:15-18488 (18488) [000] d..2 24577.524761: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127036          <idle>-0     (-----) [000] d..1 24577.524774: cpu_idle: state=0 cpu_id=0
127037 crtc_commit:111-253   (  253) [002] d..2 24577.524796: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
127038          <idle>-0     (-----) [002] d..1 24577.524806: cpu_idle: state=0 cpu_id=2
127039          <idle>-0     (-----) [002] d.h2 24577.524886: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
127040          <idle>-0     (-----) [002] dnh3 24577.524897: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
127041          <idle>-0     (-----) [002] .n.1 24577.524904: cpu_idle: state=4294967295 cpu_id=2
127042          <idle>-0     (-----) [002] d..2 24577.524912: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
127043 crtc_commit:111-253   (  253) [002] d..1 24577.524948: clk_enable: gcc_disp_axi_clk
127044 crtc_commit:111-253   (  253) [002] d..1 24577.524960: clk_enable: disp_cc_mdss_ahb_clk
127045 crtc_commit:111-253   (  253) [002] d..1 24577.524971: clk_enable: disp_cc_mdss_axi_clk
127046 crtc_commit:111-253   (  253) [002] d..1 24577.524990: clk_enable: gcc_disp_gpll0_clk_src
127047         rcuop/4-45    (   45) [003] d..2 24577.525433: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
127048 crtc_commit:111-253   (  253) [002] d..1 24577.525498: clk_enable: disp_cc_mdss_mdp_clk_src
127049 crtc_commit:111-253   (  253) [002] d..1 24577.525529: clk_enable: disp_cc_mdss_mdp_clk
127050 crtc_commit:111-253   (  253) [002] d..1 24577.525539: clk_enable: disp_cc_mdss_vsync_clk
127051  kworker/u16:10-23868 (23868) [003] d..2 24577.525559: 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
127052          <idle>-0     (-----) [003] d.s4 24577.525591: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
127053          <idle>-0     (-----) [003] d.s5 24577.525602: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
127054          <idle>-0     (-----) [003] dns5 24577.525607: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
127055          <idle>-0     (-----) [003] d..2 24577.525617: 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
127056  kworker/u16:10-23868 (23868) [003] d..2 24577.525643: 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
127057          <idle>-0     (-----) [003] d..1 24577.525655: cpu_idle: state=0 cpu_id=3
127058 crtc_commit:111-253   (  253) [002] d..2 24577.525835: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
127059          <idle>-0     (-----) [002] d..1 24577.525848: cpu_idle: state=0 cpu_id=2
127060          <idle>-0     (-----) [003] d.s3 24577.525879: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
127061          <idle>-0     (-----) [003] d.s4 24577.525894: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
127062          <idle>-0     (-----) [002] .n.1 24577.525900: cpu_idle: state=4294967295 cpu_id=2
127063          <idle>-0     (-----) [003] ...1 24577.525902: cpu_idle: state=4294967295 cpu_id=3
127064          <idle>-0     (-----) [003] d..1 24577.525906: cpu_idle: state=0 cpu_id=3
127065          <idle>-0     (-----) [002] d..2 24577.525909: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
127066 crtc_commit:111-253   (  253) [002] d..1 24577.527344: clk_enable: disp_cc_mdss_esc0_clk_src
127067 crtc_commit:111-253   (  253) [002] d..1 24577.527347: clk_enable: disp_cc_mdss_esc0_clk
127068 crtc_commit:111-253   (  253) [002] d..1 24577.527765: clk_enable: dsi0pll_vco_clk
127069 crtc_commit:111-253   (  253) [002] d..1 24577.527768: clk_enable: dsi0pll_pll_out_div
127070 crtc_commit:111-253   (  253) [002] d..1 24577.527769: clk_enable: dsi0pll_bitclk_src
127071 crtc_commit:111-253   (  253) [002] d..1 24577.527770: clk_enable: dsi0pll_byteclk_src
127072 crtc_commit:111-253   (  253) [002] d..1 24577.527771: clk_enable: dsi0_phy_pll_out_byteclk
127073 crtc_commit:111-253   (  253) [002] d..1 24577.527773: clk_enable: disp_cc_mdss_byte0_clk_src
127074 crtc_commit:111-253   (  253) [002] d..1 24577.527774: clk_enable: disp_cc_mdss_byte0_clk
127075 crtc_commit:111-253   (  253) [002] d..1 24577.527781: clk_enable: dsi0pll_post_bit_div
127076 crtc_commit:111-253   (  253) [002] d..1 24577.527783: clk_enable: dsi0pll_pclk_src_mux
127077 crtc_commit:111-253   (  253) [002] d..1 24577.527784: clk_enable: dsi0pll_pclk_src
127078 crtc_commit:111-253   (  253) [002] d..1 24577.527785: clk_enable: dsi0_phy_pll_out_dsiclk
127079 crtc_commit:111-253   (  253) [002] d..1 24577.527787: clk_enable: disp_cc_mdss_pclk0_clk_src
127080 crtc_commit:111-253   (  253) [002] d..1 24577.527788: clk_enable: disp_cc_mdss_pclk0_clk
127081 crtc_commit:111-253   (  253) [002] d..1 24577.527794: clk_enable: disp_cc_mdss_byte0_div_clk_src
127082 crtc_commit:111-253   (  253) [002] d..1 24577.527795: clk_enable: disp_cc_mdss_byte0_intf_clk
127083          <idle>-0     (-----) [000] ...1 24577.527867: cpu_idle: state=4294967295 cpu_id=0
127084          <idle>-0     (-----) [000] d..1 24577.527872: cpu_idle: state=0 cpu_id=0
127085 crtc_commit:111-253   (  253) [002] d..2 24577.528216: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
127086          <idle>-0     (-----) [003] d.s3 24577.528228: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
127087          <idle>-0     (-----) [002] d..1 24577.528230: cpu_idle: state=0 cpu_id=2
127088          <idle>-0     (-----) [003] d.s4 24577.528241: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
127089          <idle>-0     (-----) [002] .n.1 24577.528249: cpu_idle: state=4294967295 cpu_id=2
127090          <idle>-0     (-----) [003] ...1 24577.528249: cpu_idle: state=4294967295 cpu_id=3
127091          <idle>-0     (-----) [003] d..1 24577.528253: cpu_idle: state=0 cpu_id=3
127092          <idle>-0     (-----) [002] d..2 24577.528257: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
127093 crtc_commit:111-253   (  253) [002] d..2 24577.528301: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
127094          <idle>-0     (-----) [002] d..1 24577.528307: cpu_idle: state=0 cpu_id=2
127095          <idle>-0     (-----) [000] d.h5 24577.529375: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
127096          <idle>-0     (-----) [000] d.h6 24577.529391: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
127097          <idle>-0     (-----) [002] .n.1 24577.529397: cpu_idle: state=4294967295 cpu_id=2
127098          <idle>-0     (-----) [002] d..2 24577.529403: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
127099          <idle>-0     (-----) [000] ...1 24577.529407: cpu_idle: state=4294967295 cpu_id=0
127100          <idle>-0     (-----) [000] d..1 24577.529413: cpu_idle: state=0 cpu_id=0
127101 crtc_commit:111-253   (  253) [002] d..2 24577.529461: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
127102          <idle>-0     (-----) [002] d..1 24577.529468: cpu_idle: state=0 cpu_id=2
127103              ps-13422 (13422) [001] d..2 24577.530378: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
127104              ps-13422 (13422) [001] dn.3 24577.530410: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127105              ps-13422 (13422) [001] dnh3 24577.530465: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
127106              ps-13422 (13422) [001] dnh3 24577.530480: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
127107          <idle>-0     (-----) [007] dnh2 24577.530482: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
127108          <idle>-0     (-----) [007] .n.1 24577.530484: cpu_idle: state=4294967295 cpu_id=7
127109          <idle>-0     (-----) [007] d..2 24577.530487: 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
127110              ps-13422 (13422) [001] dnh4 24577.530493: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
127111          <idle>-0     (-----) [000] .n.1 24577.530498: cpu_idle: state=4294967295 cpu_id=0
127112              ps-13422 (13422) [001] d..2 24577.530504: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127113         sugov:4-560   (  560) [007] .... 24577.530506: clk_set_rate: perfcl_clk 2169600000
127114         sugov:4-560   (  560) [007] .... 24577.530507: clk_set_rate: cpu7_perfcl_clk 2803200000
127115          <idle>-0     (-----) [000] d..2 24577.530508: 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
127116         sugov:4-560   (  560) [007] .... 24577.530512: clk_set_rate: cpu6_perfcl_clk 2803200000
127117         sugov:4-560   (  560) [007] .... 24577.530516: clk_set_rate: cpu5_perfcl_clk 2803200000
127118         sugov:4-560   (  560) [007] .... 24577.530520: clk_set_rate: cpu4_perfcl_clk 2169600000
127119         sugov:4-560   (  560) [007] .... 24577.530525: cpu_frequency: state=2169600 cpu_id=4
127120         sugov:0-559   (  559) [000] .... 24577.530539: clk_set_rate: pwrcl_clk 1228800000
127121         sugov:0-559   (  559) [000] .... 24577.530548: clk_set_rate: cpu3_pwrcl_clk 979200000
127122 shell svc 13418-13419 ( 1007) [001] d..2 24577.530551: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
127123         sugov:0-559   (  559) [000] .... 24577.530557: clk_set_rate: cpu2_pwrcl_clk 979200000
127124         sugov:0-559   (  559) [000] .... 24577.530565: clk_set_rate: cpu1_pwrcl_clk 979200000
127125         sugov:0-559   (  559) [000] .... 24577.530572: clk_set_rate: cpu0_pwrcl_clk 1228800000
127126 shell svc 13418-13419 ( 1007) [001] d..3 24577.530572: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
127127         sugov:0-559   (  559) [000] .... 24577.530581: cpu_frequency: state=1228800 cpu_id=0
127128 shell svc 13418-13419 ( 1007) [001] d..2 24577.530598: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127129         sugov:4-560   (  560) [007] d..2 24577.530632: 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
127130          <idle>-0     (-----) [007] d..1 24577.530635: cpu_idle: state=0 cpu_id=7
127131         sugov:0-559   (  559) [000] d..2 24577.530644: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=adbd next_pid=1007 next_prio=120
127132          <idle>-0     (-----) [003] d.s3 24577.530668: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
127133          <idle>-0     (-----) [003] ...1 24577.530682: cpu_idle: state=4294967295 cpu_id=3
127134          <idle>-0     (-----) [007] dnh2 24577.530682: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
127135          <idle>-0     (-----) [007] .n.1 24577.530685: cpu_idle: state=4294967295 cpu_id=7
127136          <idle>-0     (-----) [003] d..1 24577.530685: cpu_idle: state=0 cpu_id=3
127137          <idle>-0     (-----) [007] d..2 24577.530687: 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
127138         sugov:4-560   (  560) [007] d..1 24577.530690: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
127139         sugov:4-560   (  560) [007] .... 24577.530701: cpu_frequency: state=2169600 cpu_id=5
127140         sugov:4-560   (  560) [007] .... 24577.530702: cpu_frequency: state=2169600 cpu_id=6
127141         sugov:4-560   (  560) [007] .... 24577.530703: cpu_frequency: state=2169600 cpu_id=7
127142         sugov:4-560   (  560) [007] d..2 24577.530709: 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
127143          <idle>-0     (-----) [003] dnh2 24577.530710: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
127144          <idle>-0     (-----) [007] d..1 24577.530712: cpu_idle: state=0 cpu_id=7
127145          <idle>-0     (-----) [003] .n.1 24577.530714: cpu_idle: state=4294967295 cpu_id=3
127146          <idle>-0     (-----) [003] d..2 24577.530722: 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
127147         sugov:0-559   (  559) [003] .... 24577.530729: cpu_frequency: state=1228800 cpu_id=1
127148         sugov:0-559   (  559) [003] .... 24577.530735: cpu_frequency: state=1228800 cpu_id=2
127149         sugov:0-559   (  559) [003] .... 24577.530738: cpu_frequency: state=1228800 cpu_id=3
127150            adbd-1007  ( 1007) [000] d..1 24577.530742: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
127151         sugov:0-559   (  559) [003] d..2 24577.530757: 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
127152          <idle>-0     (-----) [003] d..1 24577.530763: cpu_idle: state=0 cpu_id=3
127153              ps-13422 (13422) [001] d..2 24577.530764: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127154              ps-13422 (13422) [001] dn.3 24577.530775: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127155            adbd-1007  ( 1007) [000] d..2 24577.530781: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
127156              ps-13422 (13422) [001] d..2 24577.530782: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127157          <idle>-0     (-----) [003] .n.1 24577.530785: cpu_idle: state=4294967295 cpu_id=3
127158          <idle>-0     (-----) [003] d..2 24577.530793: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
127159 shell svc 13418-13419 ( 1007) [001] d..2 24577.530815: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127160            adbd-1007  ( 1007) [000] d..2 24577.530839: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127161          <idle>-0     (-----) [000] d..1 24577.530852: cpu_idle: state=0 cpu_id=0
127162            adbd-23485 ( 1007) [003] d..2 24577.530892: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
127163              ps-13422 (13422) [001] d.h2 24577.530896: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
127164          <idle>-0     (-----) [002] ...1 24577.530908: cpu_idle: state=4294967295 cpu_id=2
127165          <idle>-0     (-----) [002] d..1 24577.530911: cpu_idle: state=0 cpu_id=2
127166              ps-13422 (13422) [001] d.h3 24577.530929: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
127167          <idle>-0     (-----) [003] d..2 24577.530941: 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
127168   kworker/u17:2-23076 (23076) [003] d..2 24577.530975: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
127169   kworker/u17:2-23076 (23076) [003] d..3 24577.530993: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
127170   kworker/u17:2-23076 (23076) [003] d..2 24577.531018: 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
127171     kworker/3:1-12662 (12662) [003] d..2 24577.531034: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
127172     kworker/3:1-12662 (12662) [003] d..3 24577.531047: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
127173              ps-13422 (13422) [001] d..2 24577.531062: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127174     kworker/3:1-12662 (12662) [003] d..2 24577.531062: 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
127175              ps-13422 (13422) [001] dn.3 24577.531073: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127176              ps-13422 (13422) [001] d..2 24577.531081: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127177 shell svc 13418-13419 ( 1007) [001] d..2 24577.531113: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127178            adbd-23485 ( 1007) [003] d..2 24577.531127: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
127179              ps-13422 (13422) [001] d.h2 24577.531135: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
127180          <idle>-0     (-----) [003] d..1 24577.531135: cpu_idle: state=0 cpu_id=3
127181              ps-13422 (13422) [001] d.h3 24577.531164: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127182          <idle>-0     (-----) [000] .n.1 24577.531170: cpu_idle: state=4294967295 cpu_id=0
127183          <idle>-0     (-----) [000] d..2 24577.531180: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
127184   kworker/u17:2-23076 (23076) [000] d..2 24577.531196: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127185   kworker/u17:2-23076 (23076) [000] d..3 24577.531213: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127186   kworker/u17:2-23076 (23076) [000] d..2 24577.531235: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
127187     kworker/0:1-13012 (13012) [000] d..2 24577.531249: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
127188     kworker/0:1-13012 (13012) [000] d..3 24577.531279: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
127189     kworker/0:1-13012 (13012) [000] d..2 24577.531293: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
127190              ps-13422 (13422) [001] d..2 24577.531324: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127191              ps-13422 (13422) [001] dn.3 24577.531337: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127192            adbd-23485 ( 1007) [000] d..2 24577.531342: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127193              ps-13422 (13422) [001] d..2 24577.531345: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127194          <idle>-0     (-----) [000] d..1 24577.531353: cpu_idle: state=0 cpu_id=0
127195 shell svc 13418-13419 ( 1007) [001] d..2 24577.531378: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127196              ps-13422 (13422) [001] d.h3 24577.531423: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127197              ps-13422 (13422) [001] d.h4 24577.531437: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127198          <idle>-0     (-----) [000] .n.1 24577.531442: cpu_idle: state=4294967295 cpu_id=0
127199          <idle>-0     (-----) [000] d..2 24577.531450: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
127200   kworker/u17:2-23076 (23076) [000] d..2 24577.531463: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127201   kworker/u17:2-23076 (23076) [000] d..3 24577.531471: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127202   kworker/u17:2-23076 (23076) [000] d..2 24577.531491: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
127203     kworker/0:1-13012 (13012) [000] d..2 24577.531511: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
127204     kworker/0:1-13012 (13012) [000] d..3 24577.531530: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
127205     kworker/0:1-13012 (13012) [000] d..2 24577.531543: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
127206            adbd-23484 ( 1007) [000] d..2 24577.531571: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
127207            adbd-23484 ( 1007) [000] d..3 24577.531580: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
127208              ps-13422 (13422) [001] d..2 24577.531585: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127209              ps-13422 (13422) [001] dn.3 24577.531596: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127210              ps-13422 (13422) [001] d..2 24577.531604: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127211 shell svc 13418-13419 ( 1007) [001] d..2 24577.531635: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127212            adbd-23484 ( 1007) [000] d..2 24577.531646: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
127213            adbd-1007  ( 1007) [000] d..1 24577.531735: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
127214            adbd-1007  ( 1007) [000] d..2 24577.531751: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
127215              ps-13422 (13422) [001] d..2 24577.531787: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127216            adbd-1007  ( 1007) [000] d..2 24577.531789: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
127217              ps-13422 (13422) [001] dn.3 24577.531798: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127218              ps-13422 (13422) [001] d..2 24577.531806: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127219 shell svc 13418-13419 ( 1007) [001] d..2 24577.531837: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127220            adbd-23485 ( 1007) [000] d..2 24577.531854: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127221          <idle>-0     (-----) [000] d..1 24577.531865: cpu_idle: state=0 cpu_id=0
127222              ps-13422 (13422) [001] d.h2 24577.531884: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127223              ps-13422 (13422) [001] d.h3 24577.531897: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127224          <idle>-0     (-----) [000] .n.1 24577.531903: cpu_idle: state=4294967295 cpu_id=0
127225          <idle>-0     (-----) [000] d..2 24577.531912: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
127226   kworker/u17:2-23076 (23076) [000] d..2 24577.531923: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127227   kworker/u17:2-23076 (23076) [000] d..3 24577.531931: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127228   kworker/u17:2-23076 (23076) [000] d..2 24577.531951: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
127229     kworker/0:1-13012 (13012) [000] d..2 24577.531958: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
127230     kworker/0:1-13012 (13012) [000] d..3 24577.531969: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
127231     kworker/0:1-13012 (13012) [000] d..2 24577.531981: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
127232              ps-13422 (13422) [001] d..2 24577.532034: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127233            adbd-23485 ( 1007) [000] d..2 24577.532039: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127234              ps-13422 (13422) [001] dn.3 24577.532047: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127235          <idle>-0     (-----) [000] d..1 24577.532050: cpu_idle: state=0 cpu_id=0
127236              ps-13422 (13422) [001] dnh3 24577.532065: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127237              ps-13422 (13422) [001] dnh4 24577.532076: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127238          <idle>-0     (-----) [000] .n.1 24577.532082: cpu_idle: state=4294967295 cpu_id=0
127239              ps-13422 (13422) [001] d..2 24577.532086: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127240          <idle>-0     (-----) [000] d..2 24577.532090: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
127241   kworker/u17:2-23076 (23076) [000] d..2 24577.532101: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127242   kworker/u17:2-23076 (23076) [000] d..3 24577.532109: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127243 shell svc 13418-13419 ( 1007) [001] d..2 24577.532120: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127244   kworker/u17:2-23076 (23076) [000] d..2 24577.532129: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
127245     kworker/0:1-13012 (13012) [000] d..2 24577.532137: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
127246     kworker/0:1-13012 (13012) [000] d..3 24577.532147: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
127247     kworker/0:1-13012 (13012) [000] d..2 24577.532157: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
127248            adbd-23485 ( 1007) [000] d..2 24577.532181: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127249          <idle>-0     (-----) [000] d..1 24577.532192: cpu_idle: state=0 cpu_id=0
127250              ps-13422 (13422) [001] d.h2 24577.532273: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127251              ps-13422 (13422) [001] d.h3 24577.532288: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127252          <idle>-0     (-----) [000] .n.1 24577.532293: cpu_idle: state=4294967295 cpu_id=0
127253          <idle>-0     (-----) [000] d..2 24577.532303: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
127254   kworker/u17:2-23076 (23076) [000] d..2 24577.532313: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127255   kworker/u17:2-23076 (23076) [000] d..3 24577.532320: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127256              ps-13422 (13422) [001] d..2 24577.532336: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127257   kworker/u17:2-23076 (23076) [000] d..2 24577.532340: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
127258              ps-13422 (13422) [001] dn.3 24577.532347: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127259     kworker/0:1-13012 (13012) [000] d..2 24577.532352: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
127260              ps-13422 (13422) [001] d..2 24577.532354: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127261     kworker/0:1-13012 (13012) [000] d..3 24577.532364: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
127262     kworker/0:1-13012 (13012) [000] d..2 24577.532376: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
127263 shell svc 13418-13419 ( 1007) [001] d..2 24577.532386: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127264            adbd-23484 ( 1007) [000] d..2 24577.532391: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
127265            adbd-23484 ( 1007) [000] d..3 24577.532398: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
127266            adbd-23484 ( 1007) [000] d..2 24577.532454: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
127267            adbd-1007  ( 1007) [000] d..1 24577.532534: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
127268              ps-13422 (13422) [001] d..2 24577.532543: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127269            adbd-1007  ( 1007) [000] d..2 24577.532549: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
127270              ps-13422 (13422) [001] dn.3 24577.532555: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127271              ps-13422 (13422) [001] d..2 24577.532563: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127272            adbd-1007  ( 1007) [000] d..2 24577.532586: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
127273 shell svc 13418-13419 ( 1007) [001] d..2 24577.532595: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127274              ps-13422 (13422) [001] d.h3 24577.532659: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127275              ps-13422 (13422) [001] d.h4 24577.532677: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127276            adbd-23485 ( 1007) [000] dnh5 24577.532700: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
127277            adbd-23485 ( 1007) [000] dnh6 24577.532726: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
127278          <idle>-0     (-----) [003] .n.1 24577.532731: cpu_idle: state=4294967295 cpu_id=3
127279          <idle>-0     (-----) [003] d..2 24577.532738: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
127280            adbd-23485 ( 1007) [000] d..2 24577.532750: 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
127281   kworker/u17:2-23076 (23076) [000] d..2 24577.532760: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127282   kworker/u17:2-23076 (23076) [000] d..3 24577.532767: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127283  crtc_event:111-254   (  254) [003] d..2 24577.532777: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
127284          <idle>-0     (-----) [003] d..1 24577.532782: cpu_idle: state=0 cpu_id=3
127285   kworker/u17:2-23076 (23076) [000] d..2 24577.532788: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
127286              ps-13422 (13422) [001] d..2 24577.532799: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127287     kworker/0:1-13012 (13012) [000] d..2 24577.532806: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
127288              ps-13422 (13422) [001] dn.3 24577.532810: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127289              ps-13422 (13422) [001] d..2 24577.532818: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127290 shell svc 13418-13419 ( 1007) [001] d..2 24577.532849: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127291            adbd-23485 ( 1007) [000] d..2 24577.532868: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127292          <idle>-0     (-----) [000] d..1 24577.532880: cpu_idle: state=0 cpu_id=0
127293              ps-13422 (13422) [001] d.h2 24577.532890: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127294              ps-13422 (13422) [001] d.h3 24577.532903: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127295          <idle>-0     (-----) [000] .n.1 24577.532909: cpu_idle: state=4294967295 cpu_id=0
127296          <idle>-0     (-----) [000] d..2 24577.532918: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
127297   kworker/u17:2-23076 (23076) [000] d..2 24577.532928: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127298   kworker/u17:2-23076 (23076) [000] d..3 24577.532935: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127299   kworker/u17:2-23076 (23076) [000] d..2 24577.532955: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
127300          <idle>-0     (-----) [003] d.h2 24577.532956: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
127301     kworker/0:1-13012 (13012) [000] d..2 24577.532961: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
127302          <idle>-0     (-----) [003] dnh3 24577.532967: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
127303     kworker/0:1-13012 (13012) [000] d..3 24577.532973: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
127304          <idle>-0     (-----) [003] .n.1 24577.532974: cpu_idle: state=4294967295 cpu_id=3
127305          <idle>-0     (-----) [003] d..2 24577.532979: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
127306     kworker/0:1-13012 (13012) [000] d..2 24577.532984: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
127307            adbd-23485 ( 1007) [000] d..2 24577.533007: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127308        DispSync-23904 (23896) [003] d..1 24577.533009: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
127309          <idle>-0     (-----) [000] d..1 24577.533017: cpu_idle: state=0 cpu_id=0
127310        DispSync-23904 (23896) [003] d..2 24577.533024: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
127311          <idle>-0     (-----) [000] .n.1 24577.533030: cpu_idle: state=4294967295 cpu_id=0
127312          <idle>-0     (-----) [000] d..2 24577.533039: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
127313              ps-13422 (13422) [001] d..2 24577.533041: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127314        DispSync-23904 (23896) [003] d..2 24577.533050: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
127315              ps-13422 (13422) [001] dn.3 24577.533052: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127316          <idle>-0     (-----) [003] d..1 24577.533056: cpu_idle: state=0 cpu_id=3
127317              ps-13422 (13422) [001] d..2 24577.533060: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127318 shell svc 13418-13419 ( 1007) [001] d..2 24577.533091: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127319              ps-13422 (13422) [001] d.h4 24577.533109: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127320  appEventThread-23905 (23896) [000] d..3 24577.533116: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
127321              ps-13422 (13422) [001] d.h5 24577.533122: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127322  appEventThread-23905 (23896) [000] d..4 24577.533136: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
127323          <idle>-0     (-----) [002] .n.1 24577.533141: cpu_idle: state=4294967295 cpu_id=2
127324          <idle>-0     (-----) [002] d..2 24577.533149: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
127325  appEventThread-23905 (23896) [000] d..2 24577.533160: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
127326   kworker/u17:2-23076 (23076) [000] d..2 24577.533171: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127327   kworker/u17:2-23076 (23076) [000] d..3 24577.533178: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127328   kworker/u17:2-23076 (23076) [000] d..2 24577.533197: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
127329     kworker/0:1-13012 (13012) [000] d..2 24577.533207: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
127330     kworker/0:1-13012 (13012) [000] d..3 24577.533219: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
127331     kworker/0:1-13012 (13012) [000] d..2 24577.533229: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
127332            adbd-23484 ( 1007) [000] d..2 24577.533243: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
127333            adbd-23484 ( 1007) [000] d..3 24577.533251: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
127334              ps-13422 (13422) [001] d..2 24577.533277: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127335              ps-13422 (13422) [001] dn.3 24577.533288: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127336              ps-13422 (13422) [001] d..2 24577.533296: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127337            adbd-23484 ( 1007) [000] d..2 24577.533304: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
127338 shell svc 13418-13419 ( 1007) [001] d..2 24577.533327: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127339            adbd-1007  ( 1007) [000] d..1 24577.533385: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
127340            adbd-1007  ( 1007) [000] d..2 24577.533418: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
127341            adbd-1007  ( 1007) [000] d..2 24577.533464: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127342          <idle>-0     (-----) [000] d..1 24577.533476: cpu_idle: state=0 cpu_id=0
127343              ps-13422 (13422) [001] d..2 24577.533477: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127344              ps-13422 (13422) [001] dn.3 24577.533488: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127345              ps-13422 (13422) [001] d..2 24577.533496: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127346 shell svc 13418-13419 ( 1007) [001] d..2 24577.533527: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127347 s.nexuslauncher-24827 (24827) [002] .... 24577.533676: binder_transaction: transaction=1671648 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
127348              ps-13422 (13422) [001] d..2 24577.533680: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127349 s.nexuslauncher-24827 (24827) [002] d..4 24577.533690: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
127350              ps-13422 (13422) [001] dn.3 24577.533691: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127351              ps-13422 (13422) [001] d..2 24577.533699: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127352 s.nexuslauncher-24827 (24827) [002] d..5 24577.533708: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
127353          <idle>-0     (-----) [000] .n.1 24577.533715: cpu_idle: state=4294967295 cpu_id=0
127354          <idle>-0     (-----) [000] d..2 24577.533724: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
127355 shell svc 13418-13419 ( 1007) [001] d..2 24577.533730: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127356  Binder:23896_4-24423 (23896) [000] .... 24577.533733: binder_transaction_received: transaction=1671648
127357 s.nexuslauncher-24827 (24827) [002] d..3 24577.533755: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
127358  Binder:23896_4-24423 (23896) [000] d..1 24577.533768: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
127359 s.nexuslauncher-24827 (24827) [002] d..4 24577.533778: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=003
127360  Binder:23896_4-24423 (23896) [000] dn.2 24577.533781: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
127361          <idle>-0     (-----) [003] .n.1 24577.533783: cpu_idle: state=4294967295 cpu_id=3
127362  Binder:23896_4-24423 (23896) [000] d..2 24577.533787: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
127363          <idle>-0     (-----) [003] d..2 24577.533790: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
127364  appEventThread-23905 (23896) [000] d..2 24577.533804: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
127365  Binder:23896_4-24423 (23896) [000] d..1 24577.533808: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
127366  Binder:23896_4-24423 (23896) [000] dn.2 24577.533815: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
127367  Binder:23896_4-24423 (23896) [000] d..2 24577.533820: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
127368    RenderThread-25194 (24827) [003] d..2 24577.533843: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
127369          <idle>-0     (-----) [003] d..1 24577.533849: cpu_idle: state=0 cpu_id=3
127370  appEventThread-23905 (23896) [000] d..2 24577.533856: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
127371              ps-13422 (13422) [001] d..2 24577.533882: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127372  Binder:23896_4-24423 (23896) [000] d..2 24577.533892: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127373              ps-13422 (13422) [001] dn.3 24577.533893: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127374              ps-13422 (13422) [001] d..2 24577.533901: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127375          <idle>-0     (-----) [000] d..1 24577.533903: cpu_idle: state=0 cpu_id=0
127376 shell svc 13418-13419 ( 1007) [001] d..2 24577.533931: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127377              ps-13422 (13422) [001] d..2 24577.534092: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127378              ps-13422 (13422) [001] dn.3 24577.534104: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127379              ps-13422 (13422) [001] d..2 24577.534111: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127380 shell svc 13418-13419 ( 1007) [001] d..2 24577.534143: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127381          <idle>-0     (-----) [003] d.s2 24577.534235: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
127382              ps-13422 (13422) [001] d.s2 24577.534236: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
127383 s.nexuslauncher-24827 (24827) [002] d.s2 24577.534245: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
127384          <idle>-0     (-----) [003] dns3 24577.534248: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
127385          <idle>-0     (-----) [003] .n.1 24577.534258: cpu_idle: state=4294967295 cpu_id=3
127386 s.nexuslauncher-24827 (24827) [002] d.s3 24577.534270: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
127387          <idle>-0     (-----) [003] d..2 24577.534271: 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
127388              ps-13422 (13422) [001] d.s3 24577.534273: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
127389          <idle>-0     (-----) [000] .n.1 24577.534275: cpu_idle: state=4294967295 cpu_id=0
127390          <idle>-0     (-----) [000] d..2 24577.534284: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
127391     rcu_preempt-7     (    7) [003] d..2 24577.534304: 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
127392  crtc_event:111-254   (  254) [000] d..2 24577.534310: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127393          <idle>-0     (-----) [000] d..1 24577.534318: cpu_idle: state=0 cpu_id=0
127394 s.nexuslauncher-24827 (24827) [002] d..3 24577.534320: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=003
127395          <idle>-0     (-----) [000] ...1 24577.534333: cpu_idle: state=4294967295 cpu_id=0
127396          <idle>-0     (-----) [000] d..1 24577.534336: cpu_idle: state=0 cpu_id=0
127397 s.nexuslauncher-24827 (24827) [002] d..4 24577.534341: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
127398          <idle>-0     (-----) [000] .n.1 24577.534346: cpu_idle: state=4294967295 cpu_id=0
127399          <idle>-0     (-----) [000] d..2 24577.534354: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
127400 s.nexuslauncher-24827 (24827) [002] d..2 24577.534358: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
127401              ps-13422 (13422) [001] d..2 24577.534386: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127402  kworker/u16:10-23868 (23868) [003] .... 24577.534396: clk_set_rate: l3_cluster0_vote_clk 844800000
127403              ps-13422 (13422) [001] dn.3 24577.534398: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127404  kworker/u16:10-23868 (23868) [003] .... 24577.534401: clk_set_rate: l3_clk 844800000
127405              ps-13422 (13422) [001] d..2 24577.534405: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127406 shell svc 13418-13419 ( 1007) [001] d..2 24577.534440: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127407            adbd-23485 ( 1007) [002] d..2 24577.534447: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
127408              ps-13422 (13422) [001] d.h4 24577.534460: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127409          <idle>-0     (-----) [002] d..1 24577.534462: cpu_idle: state=0 cpu_id=2
127410              ps-13422 (13422) [001] d.h5 24577.534493: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
127411  kworker/u16:10-23868 (23868) [003] d..2 24577.534508: 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
127412   kworker/u17:2-23076 (23076) [003] d..2 24577.534521: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
127413   kworker/u17:2-23076 (23076) [003] d..3 24577.534529: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
127414   kworker/u17:2-23076 (23076) [003] d..2 24577.534550: 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
127415     kworker/3:1-12662 (12662) [003] d..2 24577.534557: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
127416     kworker/3:1-12662 (12662) [003] d..3 24577.534585: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
127417     kworker/3:1-12662 (12662) [003] d..2 24577.534598: 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
127418            adbd-23485 ( 1007) [003] d..2 24577.534660: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
127419              ps-13422 (13422) [001] d..2 24577.534660: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127420              ps-13422 (13422) [001] dn.3 24577.534672: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127421              ps-13422 (13422) [001] dnh3 24577.534690: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
127422    RenderThread-25194 (24827) [000] d..1 24577.534691: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
127423    RenderThread-25194 (24827) [000] d..2 24577.534706: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
127424              ps-13422 (13422) [001] dnh4 24577.534706: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
127425          <idle>-0     (-----) [002] .n.1 24577.534711: cpu_idle: state=4294967295 cpu_id=2
127426  kworker/u16:10-23868 (23868) [003] d..2 24577.534720: 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
127427              ps-13422 (13422) [001] d..2 24577.534721: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127428          <idle>-0     (-----) [002] d..2 24577.534722: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
127429   kworker/u17:2-23076 (23076) [003] d..2 24577.534729: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
127430   kworker/u17:2-23076 (23076) [003] d..3 24577.534737: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
127431 shell svc 13418-13419 ( 1007) [001] d..2 24577.534754: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127432   kworker/u17:2-23076 (23076) [003] d..2 24577.534756: 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
127433     kworker/3:1-12662 (12662) [003] d..2 24577.534762: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
127434     kworker/3:1-12662 (12662) [003] d..3 24577.534774: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
127435     kworker/3:1-12662 (12662) [003] d..2 24577.534785: 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
127436    RenderThread-25194 (24827) [000] .... 24577.534785: binder_transaction: transaction=1671649 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
127437    RenderThread-25194 (24827) [000] ...2 24577.534794: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
127438    RenderThread-25194 (24827) [000] d..4 24577.534799: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
127439            adbd-23485 ( 1007) [003] d..2 24577.534806: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
127440    RenderThread-25194 (24827) [000] d..5 24577.534809: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
127441 s.nexuslauncher-24827 (24827) [002] d..2 24577.534835: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
127442    RenderThread-25194 (24827) [000] d..2 24577.534841: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127443          <idle>-0     (-----) [000] d..1 24577.534853: cpu_idle: state=0 cpu_id=0
127444  Binder:23896_4-24423 (23896) [002] .... 24577.534855: binder_transaction_received: transaction=1671649
127445              ps-13422 (13422) [001] d.h2 24577.534931: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
127446  Binder:23896_4-24423 (23896) [002] .... 24577.534951: binder_transaction: transaction=1671650 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
127447              ps-13422 (13422) [001] d.h3 24577.534951: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
127448              ps-13422 (13422) [001] d..2 24577.534960: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127449  Binder:23896_4-24423 (23896) [002] d..2 24577.534965: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
127450              ps-13422 (13422) [001] dn.3 24577.534967: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127451              ps-13422 (13422) [001] d..2 24577.534976: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127452  Binder:23896_4-24423 (23896) [002] d..3 24577.534984: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
127453  kworker/u16:10-23868 (23868) [003] d..2 24577.534985: 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
127454  Binder:23896_4-24423 (23896) [002] .... 24577.534988: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
127455   kworker/u17:2-23076 (23076) [003] d..2 24577.534995: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
127456   kworker/u17:2-23076 (23076) [003] d..3 24577.535003: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
127457 shell svc 13418-13419 ( 1007) [001] d..2 24577.535009: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127458  Binder:23896_4-24423 (23896) [002] d..2 24577.535032: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
127459    RenderThread-25194 (24827) [002] .... 24577.535039: binder_transaction_received: transaction=1671650
127460   kworker/u17:2-23076 (23076) [003] d..2 24577.535051: 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
127461     kworker/3:1-12662 (12662) [003] d..2 24577.535060: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
127462     kworker/3:1-12662 (12662) [003] d..3 24577.535088: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
127463     kworker/3:1-12662 (12662) [003] d..2 24577.535100: 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
127464            adbd-23484 ( 1007) [003] d..2 24577.535117: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
127465            adbd-23484 ( 1007) [003] d..3 24577.535144: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
127466              ps-13422 (13422) [001] d..2 24577.535172: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127467              ps-13422 (13422) [001] dn.3 24577.535183: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127468              ps-13422 (13422) [001] d..2 24577.535191: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127469            adbd-23484 ( 1007) [003] d..2 24577.535201: 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
127470 shell svc 13418-13419 ( 1007) [001] d..2 24577.535223: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127471  kworker/u16:10-23868 (23868) [003] d..2 24577.535230: 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
127472          <idle>-0     (-----) [003] d..1 24577.535240: cpu_idle: state=0 cpu_id=3
127473              ps-13422 (13422) [001] d..2 24577.535378: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127474              ps-13422 (13422) [001] dn.3 24577.535390: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127475              ps-13422 (13422) [001] d..2 24577.535398: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127476 shell svc 13418-13419 ( 1007) [001] d..2 24577.535430: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127477              ps-13422 (13422) [001] d..2 24577.535585: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127478              ps-13422 (13422) [001] dn.3 24577.535597: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127479              ps-13422 (13422) [001] d..2 24577.535605: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127480 shell svc 13418-13419 ( 1007) [001] d..2 24577.535638: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127481              ps-13422 (13422) [001] d..2 24577.535797: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127482              ps-13422 (13422) [001] dn.3 24577.535809: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127483              ps-13422 (13422) [001] d..2 24577.535817: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127484 shell svc 13418-13419 ( 1007) [001] d..2 24577.535848: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127485          <idle>-0     (-----) [000] ...1 24577.535989: cpu_idle: state=4294967295 cpu_id=0
127486          <idle>-0     (-----) [000] d..1 24577.535992: cpu_idle: state=0 cpu_id=0
127487              ps-13422 (13422) [001] d..2 24577.536010: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127488              ps-13422 (13422) [001] dn.3 24577.536022: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127489              ps-13422 (13422) [001] d..2 24577.536029: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127490 shell svc 13418-13419 ( 1007) [001] d..2 24577.536061: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127491              ps-13422 (13422) [001] d..2 24577.536217: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127492              ps-13422 (13422) [001] dn.3 24577.536229: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127493              ps-13422 (13422) [001] d..2 24577.536236: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127494 shell svc 13418-13419 ( 1007) [001] d..2 24577.536267: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127495              ps-13422 (13422) [001] d..2 24577.536421: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127496              ps-13422 (13422) [001] dn.3 24577.536433: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127497              ps-13422 (13422) [001] d..2 24577.536441: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127498 shell svc 13418-13419 ( 1007) [001] d..2 24577.536472: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127499              ps-13422 (13422) [001] d..2 24577.536628: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127500              ps-13422 (13422) [001] dn.3 24577.536640: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127501              ps-13422 (13422) [001] d..2 24577.536647: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127502 shell svc 13418-13419 ( 1007) [001] d..2 24577.536678: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127503              ps-13422 (13422) [001] d..2 24577.536833: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127504              ps-13422 (13422) [001] dn.3 24577.536844: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127505              ps-13422 (13422) [001] d..2 24577.536852: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127506 shell svc 13418-13419 ( 1007) [001] d..2 24577.536883: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127507          <idle>-0     (-----) [003] d.h2 24577.536963: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
127508          <idle>-0     (-----) [003] dnh3 24577.536973: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
127509          <idle>-0     (-----) [003] .n.1 24577.536980: cpu_idle: state=4294967295 cpu_id=3
127510          <idle>-0     (-----) [003] d..2 24577.536987: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
127511        DispSync-23904 (23896) [003] d..1 24577.537007: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
127512        DispSync-23904 (23896) [003] d..2 24577.537026: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
127513          <idle>-0     (-----) [000] .n.1 24577.537031: cpu_idle: state=4294967295 cpu_id=0
127514              ps-13422 (13422) [001] d..2 24577.537036: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127515          <idle>-0     (-----) [000] d..2 24577.537039: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
127516              ps-13422 (13422) [001] dn.3 24577.537048: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127517        DispSync-23904 (23896) [003] d..2 24577.537053: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
127518              ps-13422 (13422) [001] d..2 24577.537056: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127519          <idle>-0     (-----) [003] d..1 24577.537062: cpu_idle: state=0 cpu_id=3
127520 shell svc 13418-13419 ( 1007) [001] d..2 24577.537088: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127521   sfEventThread-23906 (23896) [000] d..3 24577.537089: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
127522   sfEventThread-23906 (23896) [000] d..4 24577.537104: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
127523          <idle>-0     (-----) [003] .n.1 24577.537110: cpu_idle: state=4294967295 cpu_id=3
127524          <idle>-0     (-----) [003] d..2 24577.537118: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
127525   sfEventThread-23906 (23896) [000] d..2 24577.537143: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
127526              ps-13422 (13422) [001] d..2 24577.537244: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127527              ps-13422 (13422) [001] dn.3 24577.537256: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127528            adbd-1007  ( 1007) [000] d..1 24577.537262: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
127529              ps-13422 (13422) [001] d..2 24577.537264: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127530            adbd-1007  ( 1007) [000] d..2 24577.537280: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
127531 shell svc 13418-13419 ( 1007) [001] d..2 24577.537295: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127532            adbd-1007  ( 1007) [000] d..2 24577.537327: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127533          <idle>-0     (-----) [000] d..1 24577.537340: cpu_idle: state=0 cpu_id=0
127534              ps-13422 (13422) [001] d..2 24577.537446: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127535              ps-13422 (13422) [001] dn.3 24577.537458: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127536              ps-13422 (13422) [001] d..2 24577.537465: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127537 shell svc 13418-13419 ( 1007) [001] d..2 24577.537497: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127538  surfaceflinger-23896 (23896) [003] d..1 24577.537608: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
127539  surfaceflinger-23896 (23896) [003] d..2 24577.537629: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
127540          <idle>-0     (-----) [000] .n.1 24577.537635: cpu_idle: state=4294967295 cpu_id=0
127541              ps-13422 (13422) [001] d.H2 24577.537642: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
127542          <idle>-0     (-----) [000] d..2 24577.537645: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
127543              ps-13422 (13422) [001] d.H3 24577.537662: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
127544    RenderThread-25194 (24827) [002] d..2 24577.537674: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
127545   sfEventThread-23906 (23896) [000] d..2 24577.537690: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127546         sugov:0-559   (  559) [002] .... 24577.537698: clk_set_rate: pwrcl_clk 1612800000
127547          <idle>-0     (-----) [000] d..1 24577.537700: cpu_idle: state=0 cpu_id=0
127548         sugov:0-559   (  559) [002] .... 24577.537708: clk_set_rate: cpu3_pwrcl_clk 1228800000
127549         sugov:0-559   (  559) [002] .... 24577.537717: clk_set_rate: cpu2_pwrcl_clk 1228800000
127550         sugov:0-559   (  559) [002] .... 24577.537724: clk_set_rate: cpu1_pwrcl_clk 1228800000
127551         sugov:0-559   (  559) [002] .... 24577.537731: clk_set_rate: cpu0_pwrcl_clk 1612800000
127552         sugov:0-559   (  559) [002] .... 24577.537738: cpu_frequency: state=1612800 cpu_id=0
127553         sugov:0-559   (  559) [002] .... 24577.537750: cpu_frequency: state=1612800 cpu_id=1
127554         sugov:0-559   (  559) [002] .... 24577.537753: cpu_frequency: state=1612800 cpu_id=2
127555  surfaceflinger-23896 (23896) [003] ...1 24577.537754: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
127556         sugov:0-559   (  559) [002] .... 24577.537756: cpu_frequency: state=1612800 cpu_id=3
127557  surfaceflinger-23896 (23896) [003] ...1 24577.537761: tracing_mark_write: E|23896
127558         sugov:0-559   (  559) [002] d..2 24577.537770: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
127559              ps-13422 (13422) [001] d..2 24577.537805: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127560              ps-13422 (13422) [001] dn.3 24577.537816: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127561              ps-13422 (13422) [001] d..2 24577.537822: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127562  surfaceflinger-23896 (23896) [003] .... 24577.537827: binder_transaction: transaction=1671651 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
127563 shell svc 13418-13419 ( 1007) [001] d..2 24577.537850: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127564  surfaceflinger-23896 (23896) [003] ...2 24577.537894: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
127565  surfaceflinger-23896 (23896) [003] d..4 24577.537906: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
127566  surfaceflinger-23896 (23896) [003] d..5 24577.537927: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
127567          <idle>-0     (-----) [000] .n.1 24577.537933: cpu_idle: state=4294967295 cpu_id=0
127568          <idle>-0     (-----) [000] d..2 24577.537940: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
127569  surfaceflinger-23896 (23896) [003] d..2 24577.537942: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
127570  HwBinder:598_3-633   (  598) [000] .... 24577.537950: binder_transaction_received: transaction=1671651
127571              ps-13422 (13422) [001] d..2 24577.537975: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127572              ps-13422 (13422) [001] dn.3 24577.537985: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127573    RenderThread-25194 (24827) [002] d..2 24577.537992: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
127574              ps-13422 (13422) [001] d..2 24577.537992: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127575          <idle>-0     (-----) [002] d..1 24577.538001: cpu_idle: state=0 cpu_id=2
127576  HwBinder:598_3-633   (  598) [000] ...1 24577.538006: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
127577            adbd-23485 ( 1007) [003] d..2 24577.538006: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
127578 shell svc 13418-13419 ( 1007) [001] d.h2 24577.538012: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
127579          <idle>-0     (-----) [003] d..1 24577.538013: cpu_idle: state=0 cpu_id=3
127580 shell svc 13418-13419 ( 1007) [001] d.h3 24577.538039: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127581 shell svc 13418-13419 ( 1007) [001] d..2 24577.538068: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127582          <idle>-0     (-----) [002] d.h2 24577.538082: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
127583          <idle>-0     (-----) [002] d.h3 24577.538091: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
127584          <idle>-0     (-----) [002] dnh3 24577.538094: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
127585          <idle>-0     (-----) [002] .n.1 24577.538099: cpu_idle: state=4294967295 cpu_id=2
127586          <idle>-0     (-----) [002] d..2 24577.538106: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
127587  HwBinder:598_3-633   (  598) [000] ...1 24577.538122: tracing_mark_write: B|598|HWCSession::PresentDisplay::
127588              ps-13422 (13422) [001] d..2 24577.538200: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127589              ps-13422 (13422) [001] dn.3 24577.538210: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127590              ps-13422 (13422) [001] d..2 24577.538216: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127591 shell svc 13418-13419 ( 1007) [001] d..2 24577.538242: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127592  HwBinder:598_3-633   (  598) [000] ...1 24577.538270: tracing_mark_write: B|598|HWDeviceDRM::Commit::
127593  HwBinder:598_3-633   (  598) [000] ...1 24577.538281: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
127594    RenderThread-25194 (24827) [002] .... 24577.538332: binder_transaction: transaction=1671652 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
127595    RenderThread-25194 (24827) [002] ...2 24577.538343: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
127596    RenderThread-25194 (24827) [002] d..4 24577.538345: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
127597    RenderThread-25194 (24827) [002] dn.5 24577.538356: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
127598    RenderThread-25194 (24827) [002] d..2 24577.538363: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
127599  Binder:23896_4-24423 (23896) [002] .... 24577.538368: binder_transaction_received: transaction=1671652
127600              ps-13422 (13422) [001] d..2 24577.538372: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127601              ps-13422 (13422) [001] dn.3 24577.538381: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127602              ps-13422 (13422) [001] d..2 24577.538388: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127603 shell svc 13418-13419 ( 1007) [001] d..2 24577.538413: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127604  Binder:23896_4-24423 (23896) [002] .... 24577.538486: binder_transaction: transaction=1671653 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
127605  Binder:23896_4-24423 (23896) [002] .... 24577.538492: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
127606  Binder:23896_4-24423 (23896) [002] d..2 24577.538528: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
127607    RenderThread-25194 (24827) [002] .... 24577.538534: binder_transaction_received: transaction=1671653
127608              ps-13422 (13422) [001] d..2 24577.538539: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127609              ps-13422 (13422) [001] dn.3 24577.538549: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127610              ps-13422 (13422) [001] d..2 24577.538555: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127611 shell svc 13418-13419 ( 1007) [001] d..2 24577.538581: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127612    RenderThread-25194 (24827) [002] d..2 24577.538611: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
127613          <idle>-0     (-----) [002] d..1 24577.538621: cpu_idle: state=0 cpu_id=2
127614              ps-13422 (13422) [001] d..2 24577.538707: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127615              ps-13422 (13422) [001] dn.3 24577.538717: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127616              ps-13422 (13422) [001] d..2 24577.538723: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127617 shell svc 13418-13419 ( 1007) [001] d..2 24577.538749: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127618  HwBinder:598_3-633   (  598) [000] d..2 24577.538762: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
127619  HwBinder:598_3-633   (  598) [000] d..3 24577.538778: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
127620          <idle>-0     (-----) [002] .n.1 24577.538783: cpu_idle: state=4294967295 cpu_id=2
127621          <idle>-0     (-----) [002] d..2 24577.538790: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
127622  HwBinder:598_3-633   (  598) [000] ...1 24577.538863: tracing_mark_write: E|598
127623  HwBinder:598_3-633   (  598) [000] ...1 24577.538867: tracing_mark_write: E|598
127624              ps-13422 (13422) [001] d..2 24577.538877: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127625              ps-13422 (13422) [001] dn.3 24577.538886: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127626              ps-13422 (13422) [001] d..2 24577.538892: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127627 shell svc 13418-13419 ( 1007) [001] d..2 24577.538917: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127628  HwBinder:598_3-633   (  598) [000] ...1 24577.538927: tracing_mark_write: E|598
127629  HwBinder:598_3-633   (  598) [000] ...1 24577.538986: tracing_mark_write: E|598
127630  HwBinder:598_3-633   (  598) [000] .... 24577.539000: binder_transaction: transaction=1671654 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
127631  HwBinder:598_3-633   (  598) [000] d..2 24577.539015: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
127632  HwBinder:598_3-633   (  598) [000] d..3 24577.539027: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
127633  HwBinder:598_3-633   (  598) [000] .... 24577.539030: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
127634          <idle>-0     (-----) [003] .n.1 24577.539031: cpu_idle: state=4294967295 cpu_id=3
127635          <idle>-0     (-----) [003] d..2 24577.539037: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
127636  surfaceflinger-23896 (23896) [003] .... 24577.539042: binder_transaction_received: transaction=1671654
127637              ps-13422 (13422) [001] d..2 24577.539043: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127638              ps-13422 (13422) [001] dn.3 24577.539052: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127639              ps-13422 (13422) [001] d..2 24577.539059: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127640 shell svc 13418-13419 ( 1007) [001] d..2 24577.539084: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127641  HwBinder:598_3-633   (  598) [000] d..2 24577.539091: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
127642   kworker/u17:2-23076 (23076) [000] d..2 24577.539105: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127643   kworker/u17:2-23076 (23076) [000] d..3 24577.539115: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127644   kworker/u17:2-23076 (23076) [000] d..2 24577.539134: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
127645     kworker/0:1-13012 (13012) [000] d..2 24577.539142: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
127646     kworker/0:1-13012 (13012) [000] d..3 24577.539164: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
127647     kworker/0:1-13012 (13012) [000] d..2 24577.539175: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
127648              ps-13422 (13422) [001] d..2 24577.539221: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127649              ps-13422 (13422) [001] dn.3 24577.539231: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127650            adbd-23485 ( 1007) [000] d..2 24577.539236: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127651              ps-13422 (13422) [001] d..2 24577.539237: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127652          <idle>-0     (-----) [000] d..1 24577.539247: cpu_idle: state=0 cpu_id=0
127653 shell svc 13418-13419 ( 1007) [001] d.h2 24577.539260: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127654 shell svc 13418-13419 ( 1007) [001] d.h3 24577.539271: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127655          <idle>-0     (-----) [000] .n.1 24577.539277: cpu_idle: state=4294967295 cpu_id=0
127656          <idle>-0     (-----) [000] d..2 24577.539284: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
127657   kworker/u17:2-23076 (23076) [000] d..2 24577.539295: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127658 shell svc 13418-13419 ( 1007) [001] d..2 24577.539296: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127659   kworker/u17:2-23076 (23076) [000] d..3 24577.539302: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127660   kworker/u17:2-23076 (23076) [000] d..2 24577.539320: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
127661     kworker/0:1-13012 (13012) [000] d..2 24577.539325: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
127662     kworker/0:1-13012 (13012) [000] d..3 24577.539334: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
127663     kworker/0:1-13012 (13012) [000] d..2 24577.539343: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
127664            adbd-23485 ( 1007) [000] d..2 24577.539367: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127665          <idle>-0     (-----) [000] d..1 24577.539375: cpu_idle: state=0 cpu_id=0
127666  surfaceflinger-23896 (23896) [003] d..1 24577.539395: sched_waking: comm=surfaceflinger pid=23930 prio=112 target_cpu=002
127667  surfaceflinger-23896 (23896) [003] d..2 24577.539420: sched_wakeup: comm=surfaceflinger pid=23930 prio=112 target_cpu=000
127668          <idle>-0     (-----) [000] .n.1 24577.539426: cpu_idle: state=4294967295 cpu_id=0
127669              ps-13422 (13422) [001] d..2 24577.539428: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127670          <idle>-0     (-----) [000] d..2 24577.539435: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23930 next_prio=112
127671              ps-13422 (13422) [001] dn.3 24577.539438: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127672              ps-13422 (13422) [001] d..2 24577.539445: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127673  surfaceflinger-23896 (23896) [003] d..2 24577.539461: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
127674  surfaceflinger-23930 (23896) [000] ...1 24577.539467: tracing_mark_write: B|23896|HIDL::IComposerClient::setVsyncEnabled::client
127675          <idle>-0     (-----) [003] d..1 24577.539469: cpu_idle: state=0 cpu_id=3
127676 shell svc 13418-13419 ( 1007) [001] d..2 24577.539471: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127677  surfaceflinger-23930 (23896) [000] ...1 24577.539471: tracing_mark_write: E|23896
127678 crtc_commit:111-253   (  253) [002] d..2 24577.539494: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
127679  surfaceflinger-23930 (23896) [000] .... 24577.539496: binder_transaction: transaction=1671655 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x14
127680          <idle>-0     (-----) [002] d..1 24577.539501: cpu_idle: state=0 cpu_id=2
127681  surfaceflinger-23930 (23896) [000] ...2 24577.539501: binder_set_priority: proc=598 thread=633 old=97 => new=112 desired=112
127682  surfaceflinger-23930 (23896) [000] d..4 24577.539506: sched_waking: comm=HwBinder:598_3 pid=633 prio=112 target_cpu=000
127683              ps-13422 (13422) [001] d.h2 24577.539508: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127684  surfaceflinger-23930 (23896) [000] d..5 24577.539517: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=112 target_cpu=000
127685              ps-13422 (13422) [001] d.h3 24577.539524: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127686  surfaceflinger-23930 (23896) [000] d.h4 24577.539558: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
127687  surfaceflinger-23930 (23896) [000] d.h5 24577.539584: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
127688          <idle>-0     (-----) [003] .n.1 24577.539590: cpu_idle: state=4294967295 cpu_id=3
127689          <idle>-0     (-----) [003] d..2 24577.539596: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
127690  surfaceflinger-23930 (23896) [000] d..2 24577.539603: sched_switch: prev_comm=surfaceflinger prev_pid=23930 prev_prio=112 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
127691   kworker/u17:2-23076 (23076) [000] d..2 24577.539614: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127692   kworker/u17:2-23076 (23076) [000] d..3 24577.539620: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127693   kworker/u17:2-23076 (23076) [000] d..2 24577.539637: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
127694              ps-13422 (13422) [001] d..2 24577.539645: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127695     kworker/0:1-13012 (13012) [000] d..2 24577.539647: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
127696              ps-13422 (13422) [001] dn.3 24577.539655: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127697 kgsl_worker_thr-246   (  246) [003] d..2 24577.539657: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
127698     kworker/0:1-13012 (13012) [000] d..3 24577.539659: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
127699              ps-13422 (13422) [001] d..2 24577.539662: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127700     kworker/0:1-13012 (13012) [000] d..2 24577.539674: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=112
127701  HwBinder:598_3-633   (  598) [000] .... 24577.539679: binder_transaction_received: transaction=1671655
127702 shell svc 13418-13419 ( 1007) [001] d..2 24577.539688: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127703 kgsl_worker_thr-246   (  246) [003] d..3 24577.539692: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
127704  HwBinder:598_3-633   (  598) [000] d..2 24577.539701: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=112 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
127705 kgsl_worker_thr-246   (  246) [003] d..2 24577.539713: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
127706            adbd-23484 ( 1007) [003] d..2 24577.539730: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
127707            adbd-23484 ( 1007) [003] d..3 24577.539743: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
127708            adbd-23484 ( 1007) [003] d..2 24577.539796: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
127709              ps-13422 (13422) [001] d..2 24577.539815: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127710              ps-13422 (13422) [001] dn.3 24577.539824: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127711              ps-13422 (13422) [001] d..2 24577.539830: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127712 shell svc 13418-13419 ( 1007) [001] d..2 24577.539858: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127713            adbd-1007  ( 1007) [003] d..1 24577.539886: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
127714            adbd-1007  ( 1007) [003] d..2 24577.539912: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
127715            adbd-1007  ( 1007) [003] d..2 24577.539945: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
127716              ps-13422 (13422) [001] d..2 24577.539985: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127717  kworker/u16:10-23868 (23868) [000] d..2 24577.539988: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=112
127718              ps-13422 (13422) [001] dn.3 24577.539995: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127719            adbd-23485 ( 1007) [003] d..2 24577.540001: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
127720  HwBinder:598_3-633   (  598) [000] ...1 24577.540006: tracing_mark_write: B|598|HIDL::IComposerClient::setVsyncEnabled::server
127721          <idle>-0     (-----) [003] d..1 24577.540008: cpu_idle: state=0 cpu_id=3
127722              ps-13422 (13422) [001] dnh3 24577.540012: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127723  HwBinder:598_3-633   (  598) [000] ...1 24577.540019: tracing_mark_write: C|598|SetVsyncState |1
127724              ps-13422 (13422) [001] dnh4 24577.540027: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127725  HwBinder:598_3-633   (  598) [000] d..2 24577.540037: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=112 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
127726              ps-13422 (13422) [001] d..2 24577.540038: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127727   kworker/u17:2-23076 (23076) [000] d..2 24577.540048: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127728   kworker/u17:2-23076 (23076) [000] d..3 24577.540055: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127729 shell svc 13418-13419 ( 1007) [001] d..2 24577.540065: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127730   kworker/u17:2-23076 (23076) [000] d..2 24577.540073: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
127731     kworker/0:1-13012 (13012) [000] d..2 24577.540080: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
127732     kworker/0:1-13012 (13012) [000] d..3 24577.540104: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
127733     kworker/0:1-13012 (13012) [000] d..2 24577.540115: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
127734            adbd-23485 ( 1007) [000] d..2 24577.540169: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=112
127735              ps-13422 (13422) [001] d.h2 24577.540207: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127736  HwBinder:598_3-633   (  598) [000] ...1 24577.540215: tracing_mark_write: E|598
127737              ps-13422 (13422) [001] d.h3 24577.540225: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127738  HwBinder:598_3-633   (  598) [000] d..2 24577.540231: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=112 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
127739   kworker/u17:2-23076 (23076) [000] d..2 24577.540245: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127740              ps-13422 (13422) [001] d..2 24577.540246: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127741   kworker/u17:2-23076 (23076) [000] d..3 24577.540251: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127742              ps-13422 (13422) [001] dn.3 24577.540253: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127743              ps-13422 (13422) [001] d..2 24577.540259: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127744   kworker/u17:2-23076 (23076) [000] d..2 24577.540269: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
127745     kworker/0:1-13012 (13012) [000] d..2 24577.540275: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
127746 shell svc 13418-13419 ( 1007) [001] d..2 24577.540285: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127747     kworker/0:1-13012 (13012) [000] d..3 24577.540285: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
127748     kworker/0:1-13012 (13012) [000] d..2 24577.540294: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
127749            adbd-23485 ( 1007) [000] d..2 24577.540310: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=112
127750  HwBinder:598_3-633   (  598) [000] .... 24577.540319: binder_transaction: transaction=1671656 dest_node=0 dest_proc=23896 dest_thread=23930 reply=1 flags=0x0 code=0x0
127751  HwBinder:598_3-633   (  598) [000] d..2 24577.540322: sched_waking: comm=surfaceflinger pid=23930 prio=112 target_cpu=000
127752  HwBinder:598_3-633   (  598) [000] dn.3 24577.540329: sched_wakeup: comm=surfaceflinger pid=23930 prio=112 target_cpu=000
127753  HwBinder:598_3-633   (  598) [000] d..2 24577.540333: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=112 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23930 next_prio=112
127754  surfaceflinger-23930 (23896) [000] .... 24577.540339: binder_transaction_received: transaction=1671656
127755  surfaceflinger-23930 (23896) [000] d..2 24577.540372: sched_switch: prev_comm=surfaceflinger prev_pid=23930 prev_prio=112 prev_state=S ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=112
127756  HwBinder:598_3-633   (  598) [000] .... 24577.540375: binder_set_priority: proc=598 thread=633 old=112 => new=97 desired=97
127757  HwBinder:598_3-633   (  598) [000] d..2 24577.540416: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127758              ps-13422 (13422) [001] d.h2 24577.540418: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127759          <idle>-0     (-----) [000] d..1 24577.540427: cpu_idle: state=0 cpu_id=0
127760              ps-13422 (13422) [001] d.h3 24577.540434: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127761          <idle>-0     (-----) [000] .n.1 24577.540440: cpu_idle: state=4294967295 cpu_id=0
127762          <idle>-0     (-----) [000] d..2 24577.540447: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
127763   kworker/u17:2-23076 (23076) [000] d..2 24577.540458: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127764              ps-13422 (13422) [001] d..2 24577.540458: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127765   kworker/u17:2-23076 (23076) [000] d..3 24577.540465: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127766              ps-13422 (13422) [001] dn.3 24577.540467: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127767              ps-13422 (13422) [001] d..2 24577.540473: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127768   kworker/u17:2-23076 (23076) [000] d..2 24577.540484: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
127769     kworker/0:1-13012 (13012) [000] d..2 24577.540495: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
127770 shell svc 13418-13419 ( 1007) [001] d..2 24577.540501: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127771     kworker/0:1-13012 (13012) [000] d..3 24577.540519: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
127772     kworker/0:1-13012 (13012) [000] d..2 24577.540529: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
127773            adbd-23484 ( 1007) [000] d..2 24577.540543: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
127774          <idle>-0     (-----) [002] d.h2 24577.540547: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=002
127775            adbd-23484 ( 1007) [000] d..3 24577.540553: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
127776          <idle>-0     (-----) [002] dnh3 24577.540560: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=002
127777          <idle>-0     (-----) [002] .n.1 24577.540566: cpu_idle: state=4294967295 cpu_id=2
127778          <idle>-0     (-----) [002] d..2 24577.540573: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=bluetooth@1.0-s next_pid=24508 next_prio=98
127779            adbd-23484 ( 1007) [000] d..2 24577.540604: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
127780              ps-13422 (13422) [001] d..2 24577.540635: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127781              ps-13422 (13422) [001] dn.3 24577.540645: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127782              ps-13422 (13422) [001] d..2 24577.540651: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127783 bluetooth@1.0-s-24508 (  759) [002] d..2 24577.540656: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
127784          <idle>-0     (-----) [002] d..1 24577.540663: cpu_idle: state=0 cpu_id=2
127785 shell svc 13418-13419 ( 1007) [001] d..2 24577.540679: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127786            adbd-1007  ( 1007) [000] d..1 24577.540682: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
127787            adbd-1007  ( 1007) [000] d..2 24577.540696: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
127788            adbd-1007  ( 1007) [000] d..2 24577.540727: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
127789            adbd-23485 ( 1007) [000] d..2 24577.540784: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127790          <idle>-0     (-----) [000] d..1 24577.540795: cpu_idle: state=0 cpu_id=0
127791              ps-13422 (13422) [001] d.h2 24577.540804: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127792              ps-13422 (13422) [001] d.h3 24577.540817: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127793          <idle>-0     (-----) [000] .n.1 24577.540823: cpu_idle: state=4294967295 cpu_id=0
127794          <idle>-0     (-----) [000] d..2 24577.540831: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
127795   kworker/u17:2-23076 (23076) [000] d..2 24577.540842: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127796   kworker/u17:2-23076 (23076) [000] d..3 24577.540849: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127797              ps-13422 (13422) [001] d..2 24577.540858: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127798              ps-13422 (13422) [001] dn.3 24577.540867: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127799   kworker/u17:2-23076 (23076) [000] d..2 24577.540868: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
127800              ps-13422 (13422) [001] d..2 24577.540873: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127801     kworker/0:1-13012 (13012) [000] d..2 24577.540873: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
127802     kworker/0:1-13012 (13012) [000] d..3 24577.540892: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
127803          <idle>-0     (-----) [002] .n.1 24577.540897: cpu_idle: state=4294967295 cpu_id=2
127804          <idle>-0     (-----) [003] d.s2 24577.540902: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
127805          <idle>-0     (-----) [002] d..2 24577.540908: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
127806          <idle>-0     (-----) [003] dns3 24577.540916: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
127807          <idle>-0     (-----) [003] .n.1 24577.540926: cpu_idle: state=4294967295 cpu_id=3
127808 shell svc 13418-13419 ( 1007) [001] d..2 24577.540929: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127809          <idle>-0     (-----) [003] d..2 24577.540932: 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
127810     kworker/0:1-13012 (13012) [000] d..2 24577.540934: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127811          <idle>-0     (-----) [000] d..1 24577.540943: cpu_idle: state=0 cpu_id=0
127812     rcu_preempt-7     (    7) [003] d..2 24577.540946: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
127813            adbd-23485 ( 1007) [002] d..2 24577.540972: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
127814     rcu_preempt-7     (    7) [003] d..3 24577.540973: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
127815     rcu_preempt-7     (    7) [003] d..2 24577.540976: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
127816          <idle>-0     (-----) [000] .n.1 24577.540977: cpu_idle: state=4294967295 cpu_id=0
127817          <idle>-0     (-----) [002] d..1 24577.540978: cpu_idle: state=0 cpu_id=2
127818          <idle>-0     (-----) [000] d..2 24577.540987: 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
127819              ps-13422 (13422) [001] d.h2 24577.540990: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127820     rcu_preempt-7     (    7) [003] d..3 24577.540995: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
127821         rcuop/0-10    (   10) [000] d..2 24577.541005: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
127822              ps-13422 (13422) [001] d.h3 24577.541012: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127823     rcu_preempt-7     (    7) [003] d..2 24577.541029: 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
127824         rcuop/0-10    (   10) [000] dn.3 24577.541042: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
127825         rcuop/0-10    (   10) [000] d..2 24577.541053: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
127826   kworker/u17:2-23076 (23076) [000] d..2 24577.541062: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127827   kworker/u17:2-23076 (23076) [000] d..3 24577.541067: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127828   kworker/u17:2-23076 (23076) [000] d..2 24577.541086: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
127829         rcuop/0-10    (   10) [000] d..2 24577.541099: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
127830     kworker/0:1-13012 (13012) [000] d..2 24577.541106: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
127831              ps-13422 (13422) [001] d..2 24577.541114: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127832     kworker/0:1-13012 (13012) [000] d..3 24577.541115: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
127833          <idle>-0     (-----) [002] .n.1 24577.541120: cpu_idle: state=4294967295 cpu_id=2
127834              ps-13422 (13422) [001] dn.3 24577.541124: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127835          <idle>-0     (-----) [002] d..2 24577.541126: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
127836         rcuop/2-29    (   29) [003] d..2 24577.541127: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
127837              ps-13422 (13422) [001] d..2 24577.541131: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127838     kworker/0:1-13012 (13012) [000] d..2 24577.541134: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127839          <idle>-0     (-----) [000] d..1 24577.541142: cpu_idle: state=0 cpu_id=0
127840            adbd-23485 ( 1007) [002] d..2 24577.541151: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
127841         rcuop/1-21    (   21) [003] d..2 24577.541154: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
127842          <idle>-0     (-----) [002] d..1 24577.541156: cpu_idle: state=0 cpu_id=2
127843 shell svc 13418-13419 ( 1007) [001] d..2 24577.541157: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127844          <idle>-0     (-----) [003] d..1 24577.541164: cpu_idle: state=0 cpu_id=3
127845              ps-13422 (13422) [001] d.h3 24577.541203: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127846              ps-13422 (13422) [001] d.h4 24577.541215: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127847          <idle>-0     (-----) [000] .n.1 24577.541220: cpu_idle: state=4294967295 cpu_id=0
127848          <idle>-0     (-----) [000] d..2 24577.541227: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
127849   kworker/u17:2-23076 (23076) [000] d..2 24577.541236: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127850   kworker/u17:2-23076 (23076) [000] d..3 24577.541242: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127851   kworker/u17:2-23076 (23076) [000] d..2 24577.541260: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
127852     kworker/0:1-13012 (13012) [000] d..2 24577.541269: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
127853     kworker/0:1-13012 (13012) [000] d..3 24577.541278: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
127854     kworker/0:1-13012 (13012) [000] d..2 24577.541287: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
127855            adbd-23484 ( 1007) [000] d..2 24577.541299: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
127856            adbd-23484 ( 1007) [000] d..3 24577.541306: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
127857              ps-13422 (13422) [001] d..2 24577.541336: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127858              ps-13422 (13422) [001] dn.3 24577.541345: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127859              ps-13422 (13422) [001] d..2 24577.541352: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127860            adbd-23484 ( 1007) [000] d..2 24577.541356: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
127861 shell svc 13418-13419 ( 1007) [001] d..2 24577.541379: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127862            adbd-1007  ( 1007) [000] d..1 24577.541424: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
127863            adbd-1007  ( 1007) [000] d..2 24577.541437: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
127864          <idle>-0     (-----) [002] .n.1 24577.541441: cpu_idle: state=4294967295 cpu_id=2
127865          <idle>-0     (-----) [002] d..2 24577.541446: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
127866            adbd-1007  ( 1007) [000] d..2 24577.541475: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127867          <idle>-0     (-----) [000] d..1 24577.541486: cpu_idle: state=0 cpu_id=0
127868            adbd-23485 ( 1007) [002] d..2 24577.541499: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
127869          <idle>-0     (-----) [002] d..1 24577.541504: cpu_idle: state=0 cpu_id=2
127870              ps-13422 (13422) [001] d.h2 24577.541510: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127871              ps-13422 (13422) [001] d.h3 24577.541523: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127872          <idle>-0     (-----) [000] .n.1 24577.541529: cpu_idle: state=4294967295 cpu_id=0
127873          <idle>-0     (-----) [000] d..2 24577.541536: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
127874   kworker/u17:2-23076 (23076) [000] d..2 24577.541549: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127875              ps-13422 (13422) [001] d..2 24577.541554: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127876   kworker/u17:2-23076 (23076) [000] d..3 24577.541556: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127877              ps-13422 (13422) [001] dn.3 24577.541563: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127878              ps-13422 (13422) [001] d..2 24577.541569: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127879   kworker/u17:2-23076 (23076) [000] d..2 24577.541576: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
127880     kworker/0:1-13012 (13012) [000] d..2 24577.541583: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
127881     kworker/0:1-13012 (13012) [000] d..3 24577.541593: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
127882 shell svc 13418-13419 ( 1007) [001] d..2 24577.541595: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127883          <idle>-0     (-----) [002] .n.1 24577.541597: cpu_idle: state=4294967295 cpu_id=2
127884          <idle>-0     (-----) [002] d..2 24577.541603: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
127885     kworker/0:1-13012 (13012) [000] d..2 24577.541610: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127886          <idle>-0     (-----) [000] d..1 24577.541617: cpu_idle: state=0 cpu_id=0
127887            adbd-23485 ( 1007) [002] d..2 24577.541653: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
127888          <idle>-0     (-----) [002] d..1 24577.541658: cpu_idle: state=0 cpu_id=2
127889              ps-13422 (13422) [001] d.h2 24577.541680: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127890              ps-13422 (13422) [001] d.h3 24577.541693: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127891          <idle>-0     (-----) [000] .n.1 24577.541698: cpu_idle: state=4294967295 cpu_id=0
127892          <idle>-0     (-----) [000] d..2 24577.541705: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
127893   kworker/u17:2-23076 (23076) [000] d..2 24577.541716: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127894   kworker/u17:2-23076 (23076) [000] d..3 24577.541722: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127895   kworker/u17:2-23076 (23076) [000] d..2 24577.541740: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
127896     kworker/0:1-13012 (13012) [000] d..2 24577.541746: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
127897     kworker/0:1-13012 (13012) [000] d..3 24577.541755: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
127898          <idle>-0     (-----) [002] .n.1 24577.541760: cpu_idle: state=4294967295 cpu_id=2
127899          <idle>-0     (-----) [002] d..2 24577.541766: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
127900              ps-13422 (13422) [001] d..2 24577.541770: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127901     kworker/0:1-13012 (13012) [000] d..2 24577.541771: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127902          <idle>-0     (-----) [000] d..1 24577.541779: cpu_idle: state=0 cpu_id=0
127903              ps-13422 (13422) [001] dn.3 24577.541780: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127904              ps-13422 (13422) [001] d..2 24577.541787: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127905            adbd-23485 ( 1007) [002] d..2 24577.541789: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
127906          <idle>-0     (-----) [002] d..1 24577.541794: cpu_idle: state=0 cpu_id=2
127907 shell svc 13418-13419 ( 1007) [001] d..2 24577.541815: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127908              ps-13422 (13422) [001] d.h2 24577.541888: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127909              ps-13422 (13422) [001] d.h3 24577.541901: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127910          <idle>-0     (-----) [000] .n.1 24577.541905: cpu_idle: state=4294967295 cpu_id=0
127911          <idle>-0     (-----) [000] d..2 24577.541912: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
127912   kworker/u17:2-23076 (23076) [000] d..2 24577.541921: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127913   kworker/u17:2-23076 (23076) [000] d..3 24577.541928: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127914   kworker/u17:2-23076 (23076) [000] d..2 24577.541946: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
127915     kworker/0:1-13012 (13012) [000] d..2 24577.541953: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
127916     kworker/0:1-13012 (13012) [000] d..3 24577.541964: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
127917     kworker/0:1-13012 (13012) [000] d..2 24577.541973: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
127918            adbd-23484 ( 1007) [000] d..2 24577.541986: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
127919              ps-13422 (13422) [001] d..2 24577.541992: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127920            adbd-23484 ( 1007) [000] d..3 24577.541993: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
127921              ps-13422 (13422) [001] dn.3 24577.542002: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127922              ps-13422 (13422) [001] d..2 24577.542008: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127923 shell svc 13418-13419 ( 1007) [001] d..2 24577.542036: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127924            adbd-23484 ( 1007) [000] d..2 24577.542043: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
127925            adbd-1007  ( 1007) [000] d..1 24577.542109: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
127926            adbd-1007  ( 1007) [000] d..2 24577.542136: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
127927            adbd-1007  ( 1007) [000] d..2 24577.542167: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
127928              ps-13422 (13422) [001] d..2 24577.542172: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127929              ps-13422 (13422) [001] dn.3 24577.542182: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127930              ps-13422 (13422) [001] d..2 24577.542188: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127931 shell svc 13418-13419 ( 1007) [001] d..2 24577.542214: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127932            adbd-23485 ( 1007) [000] d..2 24577.542225: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127933          <idle>-0     (-----) [000] d..1 24577.542235: cpu_idle: state=0 cpu_id=0
127934              ps-13422 (13422) [001] d.h2 24577.542242: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127935              ps-13422 (13422) [001] d.h3 24577.542253: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127936          <idle>-0     (-----) [000] .n.1 24577.542258: cpu_idle: state=4294967295 cpu_id=0
127937          <idle>-0     (-----) [000] d..2 24577.542265: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
127938   kworker/u17:2-23076 (23076) [000] d..2 24577.542276: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127939   kworker/u17:2-23076 (23076) [000] d..3 24577.542284: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127940   kworker/u17:2-23076 (23076) [000] d..2 24577.542302: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
127941     kworker/0:1-13012 (13012) [000] d..2 24577.542308: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
127942     kworker/0:1-13012 (13012) [000] d..3 24577.542318: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
127943     kworker/0:1-13012 (13012) [000] d..2 24577.542327: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
127944            adbd-23485 ( 1007) [000] d..2 24577.542380: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127945          <idle>-0     (-----) [000] d..1 24577.542388: cpu_idle: state=0 cpu_id=0
127946              ps-13422 (13422) [001] d.h2 24577.542388: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127947              ps-13422 (13422) [001] d.h3 24577.542401: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127948          <idle>-0     (-----) [000] .n.1 24577.542406: cpu_idle: state=4294967295 cpu_id=0
127949          <idle>-0     (-----) [000] d..2 24577.542413: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
127950              ps-13422 (13422) [001] d..2 24577.542419: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127951   kworker/u17:2-23076 (23076) [000] d..2 24577.542423: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127952              ps-13422 (13422) [001] dn.3 24577.542426: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127953   kworker/u17:2-23076 (23076) [000] d..3 24577.542430: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127954              ps-13422 (13422) [001] d..2 24577.542432: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127955   kworker/u17:2-23076 (23076) [000] d..2 24577.542448: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
127956     kworker/0:1-13012 (13012) [000] d..2 24577.542453: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
127957 shell svc 13418-13419 ( 1007) [001] d..2 24577.542458: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127958     kworker/0:1-13012 (13012) [000] d..3 24577.542465: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
127959     kworker/0:1-13012 (13012) [000] d..2 24577.542473: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
127960            adbd-23485 ( 1007) [000] d..2 24577.542493: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127961          <idle>-0     (-----) [000] d..1 24577.542501: cpu_idle: state=0 cpu_id=0
127962              ps-13422 (13422) [001] d.h2 24577.542608: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127963              ps-13422 (13422) [001] d.h3 24577.542625: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127964          <idle>-0     (-----) [000] .n.1 24577.542629: cpu_idle: state=4294967295 cpu_id=0
127965          <idle>-0     (-----) [000] d..2 24577.542636: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
127966              ps-13422 (13422) [001] d..2 24577.542643: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127967   kworker/u17:2-23076 (23076) [000] d..2 24577.542646: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127968              ps-13422 (13422) [001] dn.3 24577.542650: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127969   kworker/u17:2-23076 (23076) [000] d..3 24577.542652: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127970              ps-13422 (13422) [001] d..2 24577.542656: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127971   kworker/u17:2-23076 (23076) [000] d..2 24577.542670: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
127972     kworker/0:1-13012 (13012) [000] d..2 24577.542677: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
127973 shell svc 13418-13419 ( 1007) [001] d..2 24577.542682: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127974     kworker/0:1-13012 (13012) [000] d..3 24577.542687: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
127975     kworker/0:1-13012 (13012) [000] d..2 24577.542696: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
127976            adbd-23484 ( 1007) [000] d..2 24577.542708: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
127977            adbd-23484 ( 1007) [000] d..3 24577.542714: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
127978            adbd-23484 ( 1007) [000] d..2 24577.542759: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
127979              ps-13422 (13422) [001] d..2 24577.542810: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127980              ps-13422 (13422) [001] dn.3 24577.542820: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
127981            adbd-1007  ( 1007) [000] d..1 24577.542824: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
127982              ps-13422 (13422) [001] d..2 24577.542826: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
127983            adbd-1007  ( 1007) [000] d..2 24577.542844: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
127984          <idle>-0     (-----) [002] .n.1 24577.542849: cpu_idle: state=4294967295 cpu_id=2
127985 shell svc 13418-13419 ( 1007) [001] d..2 24577.542852: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
127986          <idle>-0     (-----) [002] d..2 24577.542855: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
127987            adbd-1007  ( 1007) [000] d..2 24577.542881: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127988          <idle>-0     (-----) [000] d..1 24577.542891: cpu_idle: state=0 cpu_id=0
127989            adbd-23485 ( 1007) [002] d..2 24577.542905: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
127990          <idle>-0     (-----) [002] d..1 24577.542910: cpu_idle: state=0 cpu_id=2
127991              ps-13422 (13422) [001] d.h2 24577.542929: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127992              ps-13422 (13422) [001] d.h3 24577.542941: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
127993          <idle>-0     (-----) [000] .n.1 24577.542947: cpu_idle: state=4294967295 cpu_id=0
127994          <idle>-0     (-----) [000] d..2 24577.542955: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
127995   kworker/u17:2-23076 (23076) [000] d..2 24577.542965: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127996   kworker/u17:2-23076 (23076) [000] d..3 24577.542972: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
127997   kworker/u17:2-23076 (23076) [000] d..2 24577.542990: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
127998     kworker/0:1-13012 (13012) [000] d..2 24577.542997: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
127999     kworker/0:1-13012 (13012) [000] d..3 24577.543007: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
128000          <idle>-0     (-----) [002] .n.1 24577.543011: cpu_idle: state=4294967295 cpu_id=2
128001              ps-13422 (13422) [001] d..2 24577.543014: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128002          <idle>-0     (-----) [002] d..2 24577.543017: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
128003     kworker/0:1-13012 (13012) [000] d..2 24577.543022: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128004              ps-13422 (13422) [001] dn.3 24577.543024: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128005          <idle>-0     (-----) [000] d..1 24577.543030: cpu_idle: state=0 cpu_id=0
128006              ps-13422 (13422) [001] d..2 24577.543030: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128007 shell svc 13418-13419 ( 1007) [001] d..2 24577.543057: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128008            adbd-23485 ( 1007) [002] d..2 24577.543065: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128009          <idle>-0     (-----) [002] d..1 24577.543070: cpu_idle: state=0 cpu_id=2
128010              ps-13422 (13422) [001] d.h2 24577.543093: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128011              ps-13422 (13422) [001] d.h3 24577.543104: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128012          <idle>-0     (-----) [000] .n.1 24577.543110: cpu_idle: state=4294967295 cpu_id=0
128013          <idle>-0     (-----) [000] d..2 24577.543117: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128014   kworker/u17:2-23076 (23076) [000] d..2 24577.543125: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128015   kworker/u17:2-23076 (23076) [000] d..3 24577.543130: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128016   kworker/u17:2-23076 (23076) [000] d..2 24577.543148: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128017     kworker/0:1-13012 (13012) [000] d..2 24577.543154: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
128018     kworker/0:1-13012 (13012) [000] d..3 24577.543163: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
128019          <idle>-0     (-----) [002] .n.1 24577.543168: cpu_idle: state=4294967295 cpu_id=2
128020          <idle>-0     (-----) [002] d..2 24577.543173: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
128021     kworker/0:1-13012 (13012) [000] d..2 24577.543177: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128022          <idle>-0     (-----) [000] d..1 24577.543185: cpu_idle: state=0 cpu_id=0
128023            adbd-23485 ( 1007) [002] d..2 24577.543190: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128024          <idle>-0     (-----) [002] d..1 24577.543194: cpu_idle: state=0 cpu_id=2
128025              ps-13422 (13422) [001] d..2 24577.543220: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128026              ps-13422 (13422) [001] dn.3 24577.543229: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128027              ps-13422 (13422) [001] d..2 24577.543236: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128028 shell svc 13418-13419 ( 1007) [001] d..2 24577.543262: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128029              ps-13422 (13422) [001] d.h2 24577.543304: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128030              ps-13422 (13422) [001] d.h3 24577.543315: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128031          <idle>-0     (-----) [000] .n.1 24577.543320: cpu_idle: state=4294967295 cpu_id=0
128032          <idle>-0     (-----) [000] d..2 24577.543327: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128033   kworker/u17:2-23076 (23076) [000] d..2 24577.543334: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128034   kworker/u17:2-23076 (23076) [000] d..3 24577.543340: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128035   kworker/u17:2-23076 (23076) [000] d..2 24577.543357: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128036     kworker/0:1-13012 (13012) [000] d..2 24577.543365: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
128037     kworker/0:1-13012 (13012) [000] d..3 24577.543374: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
128038     kworker/0:1-13012 (13012) [000] d..2 24577.543383: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
128039            adbd-23484 ( 1007) [000] d..2 24577.543394: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
128040            adbd-23484 ( 1007) [000] d..3 24577.543401: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
128041              ps-13422 (13422) [001] d..2 24577.543429: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128042              ps-13422 (13422) [001] dn.3 24577.543439: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128043              ps-13422 (13422) [001] d..2 24577.543445: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128044            adbd-23484 ( 1007) [000] d..2 24577.543449: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
128045 shell svc 13418-13419 ( 1007) [001] d..2 24577.543471: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128046            adbd-1007  ( 1007) [000] d..1 24577.543514: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
128047            adbd-1007  ( 1007) [000] d..2 24577.543527: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
128048          <idle>-0     (-----) [002] .n.1 24577.543532: cpu_idle: state=4294967295 cpu_id=2
128049          <idle>-0     (-----) [002] d..2 24577.543537: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
128050            adbd-1007  ( 1007) [000] d..2 24577.543564: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128051          <idle>-0     (-----) [000] d..1 24577.543574: cpu_idle: state=0 cpu_id=0
128052            adbd-23485 ( 1007) [002] d..2 24577.543585: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128053          <idle>-0     (-----) [002] d..1 24577.543590: cpu_idle: state=0 cpu_id=2
128054              ps-13422 (13422) [001] d.h2 24577.543594: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128055              ps-13422 (13422) [001] d.h3 24577.543607: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128056          <idle>-0     (-----) [000] .n.1 24577.543612: cpu_idle: state=4294967295 cpu_id=0
128057          <idle>-0     (-----) [000] d..2 24577.543621: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128058   kworker/u17:2-23076 (23076) [000] d..2 24577.543631: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128059              ps-13422 (13422) [001] d..2 24577.543636: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128060   kworker/u17:2-23076 (23076) [000] d..3 24577.543637: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128061              ps-13422 (13422) [001] dn.3 24577.543645: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128062              ps-13422 (13422) [001] d..2 24577.543650: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128063   kworker/u17:2-23076 (23076) [000] d..2 24577.543656: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128064     kworker/0:1-13012 (13012) [000] d..2 24577.543662: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
128065     kworker/0:1-13012 (13012) [000] d..3 24577.543672: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
128066          <idle>-0     (-----) [002] .n.1 24577.543676: cpu_idle: state=4294967295 cpu_id=2
128067 shell svc 13418-13419 ( 1007) [001] d..2 24577.543677: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128068          <idle>-0     (-----) [002] d..2 24577.543682: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
128069     kworker/0:1-13012 (13012) [000] d..2 24577.543688: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128070          <idle>-0     (-----) [000] d..1 24577.543695: cpu_idle: state=0 cpu_id=0
128071            adbd-23485 ( 1007) [002] d..2 24577.543731: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128072          <idle>-0     (-----) [002] d..1 24577.543736: cpu_idle: state=0 cpu_id=2
128073              ps-13422 (13422) [001] d.h2 24577.543761: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128074              ps-13422 (13422) [001] d.h3 24577.543773: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128075          <idle>-0     (-----) [000] .n.1 24577.543778: cpu_idle: state=4294967295 cpu_id=0
128076          <idle>-0     (-----) [000] d..2 24577.543785: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128077   kworker/u17:2-23076 (23076) [000] d..2 24577.543793: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128078   kworker/u17:2-23076 (23076) [000] d..3 24577.543799: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128079   kworker/u17:2-23076 (23076) [000] d..2 24577.543817: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128080     kworker/0:1-13012 (13012) [000] d..2 24577.543822: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
128081     kworker/0:1-13012 (13012) [000] d..3 24577.543831: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
128082          <idle>-0     (-----) [002] .n.1 24577.543836: cpu_idle: state=4294967295 cpu_id=2
128083          <idle>-0     (-----) [002] d..2 24577.543841: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
128084              ps-13422 (13422) [001] d..2 24577.543842: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128085     kworker/0:1-13012 (13012) [000] d..2 24577.543845: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128086              ps-13422 (13422) [001] dn.3 24577.543852: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128087          <idle>-0     (-----) [000] d..1 24577.543852: cpu_idle: state=0 cpu_id=0
128088              ps-13422 (13422) [001] d..2 24577.543858: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128089            adbd-23485 ( 1007) [002] d..2 24577.543861: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128090          <idle>-0     (-----) [002] d..1 24577.543865: cpu_idle: state=0 cpu_id=2
128091 shell svc 13418-13419 ( 1007) [001] d..2 24577.543884: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128092              ps-13422 (13422) [001] d.h2 24577.544015: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128093              ps-13422 (13422) [001] d.h3 24577.544028: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128094          <idle>-0     (-----) [000] .n.1 24577.544033: cpu_idle: state=4294967295 cpu_id=0
128095          <idle>-0     (-----) [000] d..2 24577.544040: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128096              ps-13422 (13422) [001] d..2 24577.544046: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128097   kworker/u17:2-23076 (23076) [000] d..2 24577.544047: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128098              ps-13422 (13422) [001] dn.3 24577.544054: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128099   kworker/u17:2-23076 (23076) [000] d..3 24577.544054: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128100              ps-13422 (13422) [001] d..2 24577.544060: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128101   kworker/u17:2-23076 (23076) [000] d..2 24577.544071: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128102     kworker/0:1-13012 (13012) [000] d..2 24577.544078: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
128103 shell svc 13418-13419 ( 1007) [001] d..2 24577.544086: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128104     kworker/0:1-13012 (13012) [000] d..3 24577.544088: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
128105     kworker/0:1-13012 (13012) [000] d..2 24577.544096: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
128106            adbd-23484 ( 1007) [000] d..2 24577.544108: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
128107            adbd-23484 ( 1007) [000] d..3 24577.544114: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
128108            adbd-23484 ( 1007) [000] d..2 24577.544161: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
128109          <idle>-0     (-----) [004] d.s3 24577.544231: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
128110          <idle>-0     (-----) [002] d.s3 24577.544236: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
128111              ps-13422 (13422) [001] d.s2 24577.544238: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
128112          <idle>-0     (-----) [004] ...1 24577.544245: cpu_idle: state=4294967295 cpu_id=4
128113            adbd-1007  ( 1007) [000] d.h1 24577.544245: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
128114          <idle>-0     (-----) [004] d..1 24577.544247: cpu_idle: state=0 cpu_id=4
128115          <idle>-0     (-----) [002] dns4 24577.544249: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
128116              ps-13422 (13422) [001] dns3 24577.544251: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
128117            adbd-1007  ( 1007) [000] d..1 24577.544257: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
128118          <idle>-0     (-----) [002] .n.1 24577.544260: cpu_idle: state=4294967295 cpu_id=2
128119              ps-13422 (13422) [001] d..2 24577.544264: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
128120          <idle>-0     (-----) [002] d..2 24577.544267: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
128121            adbd-1007  ( 1007) [000] d..2 24577.544273: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
128122     kworker/2:0-12895 (12895) [002] d..2 24577.544282: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
128123     kworker/1:1-13091 (13091) [001] d..2 24577.544284: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128124              ps-13422 (13422) [001] d..2 24577.544303: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128125            adbd-1007  ( 1007) [000] d..2 24577.544305: 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
128126  kworker/u16:10-23868 (23868) [000] d..2 24577.544309: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
128127              ps-13422 (13422) [001] dn.3 24577.544311: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128128              ps-13422 (13422) [001] d..2 24577.544316: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128129  kworker/u16:10-23868 (23868) [000] d..3 24577.544322: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
128130            adbd-23485 ( 1007) [002] d..2 24577.544338: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128131 shell svc 13418-13419 ( 1007) [001] d.h2 24577.544345: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128132          <idle>-0     (-----) [002] d..1 24577.544347: cpu_idle: state=0 cpu_id=2
128133 shell svc 13418-13419 ( 1007) [001] d.h3 24577.544361: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128134  kworker/u16:10-23868 (23868) [000] d..2 24577.544370: 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
128135 shell svc 13418-13419 ( 1007) [001] d..2 24577.544379: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128136   kworker/u17:2-23076 (23076) [000] d..2 24577.544380: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128137   kworker/u17:2-23076 (23076) [000] d..3 24577.544387: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128138   kworker/u17:2-23076 (23076) [000] d..2 24577.544406: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
128139              ps-13422 (13422) [001] d..2 24577.544541: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128140  kworker/u16:15-18488 (18488) [000] .... 24577.544543: clk_set_rate: l3_cluster0_vote_clk 1209600000
128141  kworker/u16:15-18488 (18488) [000] .... 24577.544549: clk_set_rate: l3_clk 1209600000
128142              ps-13422 (13422) [001] dn.3 24577.544551: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128143              ps-13422 (13422) [001] d..2 24577.544557: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128144  kworker/u16:15-18488 (18488) [000] d..2 24577.544577: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128145 shell svc 13418-13419 ( 1007) [001] d..2 24577.544584: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128146     kworker/0:1-13012 (13012) [000] d..2 24577.544585: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
128147     kworker/0:1-13012 (13012) [000] d..3 24577.544610: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
128148     kworker/0:1-13012 (13012) [000] d..2 24577.544620: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
128149              ps-13422 (13422) [001] d..2 24577.544712: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128150              ps-13422 (13422) [001] dn.3 24577.544720: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128151              ps-13422 (13422) [001] d..2 24577.544726: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128152 shell svc 13418-13419 ( 1007) [001] d..2 24577.544752: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128153  kworker/u16:10-23868 (23868) [000] d..3 24577.544843: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
128154  kworker/u16:10-23868 (23868) [000] d..4 24577.544855: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
128155  kworker/u16:10-23868 (23868) [000] d..3 24577.544869: sched_waking: comm=kworker/0:1H pid=531 prio=100 target_cpu=000
128156              ps-13422 (13422) [001] d..2 24577.544871: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128157              ps-13422 (13422) [001] dn.3 24577.544879: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128158  kworker/u16:10-23868 (23868) [000] dn.4 24577.544881: sched_wakeup: comm=kworker/0:1H pid=531 prio=100 target_cpu=000
128159              ps-13422 (13422) [001] d..2 24577.544885: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128160  kworker/u16:10-23868 (23868) [000] d..2 24577.544887: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:1H next_pid=531 next_prio=100
128161    kworker/0:1H-531   (  531) [000] d..2 24577.544907: sched_switch: prev_comm=kworker/0:1H prev_pid=531 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
128162 shell svc 13418-13419 ( 1007) [001] d..2 24577.544909: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128163              ps-13422 (13422) [001] d..2 24577.545026: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128164              ps-13422 (13422) [001] dn.3 24577.545035: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128165              ps-13422 (13422) [001] d..2 24577.545041: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128166 shell svc 13418-13419 ( 1007) [001] d..2 24577.545064: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128167  kworker/u16:10-23868 (23868) [000] d..2 24577.545122: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
128168  kworker/u16:15-18488 (18488) [000] d..2 24577.545129: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
128169            adbd-23485 ( 1007) [000] d..2 24577.545186: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128170          <idle>-0     (-----) [000] d..1 24577.545193: cpu_idle: state=0 cpu_id=0
128171              ps-13422 (13422) [001] d.h2 24577.545197: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128172              ps-13422 (13422) [001] d.h3 24577.545213: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128173          <idle>-0     (-----) [000] .n.1 24577.545217: cpu_idle: state=4294967295 cpu_id=0
128174              ps-13422 (13422) [001] d..2 24577.545219: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128175          <idle>-0     (-----) [000] d..2 24577.545223: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128176              ps-13422 (13422) [001] dn.3 24577.545225: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128177              ps-13422 (13422) [001] d..2 24577.545230: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128178   kworker/u17:2-23076 (23076) [000] d..2 24577.545231: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128179   kworker/u17:2-23076 (23076) [000] d..3 24577.545238: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128180 shell svc 13418-13419 ( 1007) [001] d..2 24577.545255: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128181   kworker/u17:2-23076 (23076) [000] d..2 24577.545256: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128182     kworker/0:1-13012 (13012) [000] d..2 24577.545262: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
128183     kworker/0:1-13012 (13012) [000] d..3 24577.545271: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
128184     kworker/0:1-13012 (13012) [000] d..2 24577.545279: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
128185            adbd-23485 ( 1007) [000] d..2 24577.545306: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128186          <idle>-0     (-----) [000] d..1 24577.545311: cpu_idle: state=0 cpu_id=0
128187              ps-13422 (13422) [001] d..2 24577.545381: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128188              ps-13422 (13422) [001] dn.3 24577.545390: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128189              ps-13422 (13422) [001] d..2 24577.545395: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128190 shell svc 13418-13419 ( 1007) [001] d..2 24577.545420: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128191              ps-13422 (13422) [001] d.h2 24577.545443: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128192              ps-13422 (13422) [001] d.h3 24577.545453: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128193          <idle>-0     (-----) [003] d.s3 24577.545456: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
128194          <idle>-0     (-----) [000] .n.1 24577.545458: cpu_idle: state=4294967295 cpu_id=0
128195          <idle>-0     (-----) [000] d..2 24577.545464: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128196          <idle>-0     (-----) [003] d.s4 24577.545472: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
128197   kworker/u17:2-23076 (23076) [000] d..2 24577.545472: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128198          <idle>-0     (-----) [003] dns4 24577.545474: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
128199   kworker/u17:2-23076 (23076) [000] d..3 24577.545478: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128200          <idle>-0     (-----) [003] .n.1 24577.545479: cpu_idle: state=4294967295 cpu_id=3
128201          <idle>-0     (-----) [003] d..2 24577.545486: 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
128202   kworker/u17:2-23076 (23076) [000] d..2 24577.545490: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128203     kworker/0:1-13012 (13012) [000] d..2 24577.545496: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
128204     kworker/0:1-13012 (13012) [000] d..3 24577.545505: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
128205     kworker/0:1-13012 (13012) [000] d..2 24577.545514: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
128206            adbd-23484 ( 1007) [000] d..2 24577.545525: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
128207            adbd-23484 ( 1007) [000] d..3 24577.545531: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
128208          <idle>-0     (-----) [002] ...1 24577.545547: cpu_idle: state=4294967295 cpu_id=2
128209          <idle>-0     (-----) [002] d..1 24577.545549: cpu_idle: state=0 cpu_id=2
128210            adbd-23484 ( 1007) [000] d..2 24577.545567: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
128211              ps-13422 (13422) [001] d..2 24577.545567: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128212              ps-13422 (13422) [001] dn.3 24577.545575: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128213              ps-13422 (13422) [001] d..2 24577.545581: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128214  kworker/u16:10-23868 (23868) [003] d..2 24577.545590: 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
128215 shell svc 13418-13419 ( 1007) [001] d..2 24577.545606: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128216          <idle>-0     (-----) [003] d.s4 24577.545612: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
128217          <idle>-0     (-----) [003] d.s5 24577.545620: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
128218          <idle>-0     (-----) [003] dns5 24577.545623: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
128219          <idle>-0     (-----) [003] d..2 24577.545630: 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
128220            adbd-1007  ( 1007) [000] d..1 24577.545633: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
128221  kworker/u16:10-23868 (23868) [003] d..1 24577.545648: clk_enable: gcc_ufs_phy_axi_clk_src
128222            adbd-1007  ( 1007) [000] d..2 24577.545657: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
128223  kworker/u16:10-23868 (23868) [003] d..1 24577.545666: clk_enable: gcc_ufs_phy_axi_clk
128224  kworker/u16:10-23868 (23868) [003] d..1 24577.545673: clk_enable: gcc_ufs_phy_axi_hw_ctl_clk
128225  kworker/u16:10-23868 (23868) [003] d..1 24577.545682: clk_enable: gcc_aggre_ufs_phy_axi_clk
128226  kworker/u16:10-23868 (23868) [003] d..1 24577.545688: clk_enable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
128227            adbd-1007  ( 1007) [000] d..2 24577.545692: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128228  kworker/u16:10-23868 (23868) [003] d..1 24577.545693: clk_enable: gcc_ufs_phy_ahb_clk
128229          <idle>-0     (-----) [000] d..1 24577.545699: cpu_idle: state=0 cpu_id=0
128230  kworker/u16:10-23868 (23868) [003] d..1 24577.545704: clk_enable: gcc_ufs_phy_unipro_core_clk_src
128231  kworker/u16:10-23868 (23868) [003] d..1 24577.545708: clk_enable: gcc_ufs_phy_unipro_core_clk
128232  kworker/u16:10-23868 (23868) [003] d..1 24577.545713: clk_enable: gcc_ufs_phy_unipro_core_hw_ctl_clk
128233  kworker/u16:10-23868 (23868) [003] d..1 24577.545721: clk_enable: gcc_ufs_phy_ice_core_clk_src
128234  kworker/u16:10-23868 (23868) [003] d..1 24577.545726: clk_enable: gcc_ufs_phy_ice_core_clk
128235  kworker/u16:10-23868 (23868) [003] d..1 24577.545730: clk_enable: gcc_ufs_phy_ice_core_hw_ctl_clk
128236              ps-13422 (13422) [001] d..2 24577.545731: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128237              ps-13422 (13422) [001] dn.3 24577.545740: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128238              ps-13422 (13422) [001] d..2 24577.545745: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128239  kworker/u16:10-23868 (23868) [003] d..1 24577.545747: clk_enable: gcc_ufs_mem_clkref_clk
128240  kworker/u16:10-23868 (23868) [003] d..1 24577.545755: clk_enable: gcc_ufs_phy_phy_aux_clk_src
128241  kworker/u16:10-23868 (23868) [003] d..1 24577.545759: clk_enable: gcc_ufs_phy_phy_aux_clk
128242  kworker/u16:10-23868 (23868) [003] d..1 24577.545764: clk_enable: gcc_ufs_phy_phy_aux_hw_ctl_clk
128243 shell svc 13418-13419 ( 1007) [001] d..2 24577.545769: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128244  kworker/u16:10-23868 (23868) [003] d..3 24577.545816: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
128245  kworker/u16:10-23868 (23868) [003] dn.4 24577.545840: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
128246  kworker/u16:10-23868 (23868) [003] d..2 24577.545846: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
128247          <idle>-0     (-----) [000] ...1 24577.545877: cpu_idle: state=4294967295 cpu_id=0
128248          <idle>-0     (-----) [002] ...1 24577.545879: cpu_idle: state=4294967295 cpu_id=2
128249          <idle>-0     (-----) [000] d..1 24577.545879: cpu_idle: state=0 cpu_id=0
128250  kworker/u16:15-18488 (18488) [003] d..2 24577.545880: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
128251          <idle>-0     (-----) [002] d..1 24577.545882: cpu_idle: state=0 cpu_id=2
128252              ps-13422 (13422) [001] d..2 24577.545889: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128253              ps-13422 (13422) [001] dn.3 24577.545898: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128254              ps-13422 (13422) [001] d..2 24577.545904: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128255            adbd-23485 ( 1007) [003] d..2 24577.545918: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
128256 shell svc 13418-13419 ( 1007) [001] d..2 24577.545927: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128257              ps-13422 (13422) [001] d.h2 24577.545943: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128258              ps-13422 (13422) [001] d.h3 24577.545953: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128259          <idle>-0     (-----) [000] .n.1 24577.545957: cpu_idle: state=4294967295 cpu_id=0
128260          <idle>-0     (-----) [000] d..2 24577.545963: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128261   kworker/u17:2-23076 (23076) [000] d..2 24577.545973: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128262   kworker/u17:2-23076 (23076) [000] d..3 24577.545979: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128263   kworker/u17:2-23076 (23076) [000] d..2 24577.545993: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128264     kworker/0:1-13012 (13012) [000] d..2 24577.545998: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
128265     kworker/0:1-13012 (13012) [000] d..3 24577.546020: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
128266     kworker/0:1-13012 (13012) [000] d..2 24577.546029: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
128267  kworker/u16:10-23868 (23868) [003] d..2 24577.546034: 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
128268          <idle>-0     (-----) [003] d..1 24577.546040: cpu_idle: state=0 cpu_id=3
128269            adbd-23485 ( 1007) [000] d..2 24577.546073: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128270              ps-13422 (13422) [001] d.h2 24577.546079: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128271          <idle>-0     (-----) [000] d..1 24577.546079: cpu_idle: state=0 cpu_id=0
128272              ps-13422 (13422) [001] d.h3 24577.546090: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128273          <idle>-0     (-----) [000] .n.1 24577.546094: cpu_idle: state=4294967295 cpu_id=0
128274              ps-13422 (13422) [001] d..2 24577.546100: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128275          <idle>-0     (-----) [000] d..2 24577.546100: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128276              ps-13422 (13422) [001] dn.3 24577.546107: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128277   kworker/u17:2-23076 (23076) [000] d..2 24577.546108: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128278              ps-13422 (13422) [001] d..2 24577.546112: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128279   kworker/u17:2-23076 (23076) [000] d..3 24577.546114: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128280   kworker/u17:2-23076 (23076) [000] d..2 24577.546126: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128281     kworker/0:1-13012 (13012) [000] d..2 24577.546132: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
128282 shell svc 13418-13419 ( 1007) [001] d..2 24577.546137: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128283     kworker/0:1-13012 (13012) [000] d..3 24577.546141: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
128284     kworker/0:1-13012 (13012) [000] d..2 24577.546150: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
128285            adbd-23485 ( 1007) [000] d..2 24577.546167: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128286          <idle>-0     (-----) [000] d..1 24577.546172: cpu_idle: state=0 cpu_id=0
128287              ps-13422 (13422) [001] d..2 24577.546266: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128288              ps-13422 (13422) [001] dn.3 24577.546274: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128289              ps-13422 (13422) [001] d..2 24577.546280: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128290 shell svc 13418-13419 ( 1007) [001] d.h4 24577.546292: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128291 shell svc 13418-13419 ( 1007) [001] d.h5 24577.546301: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128292          <idle>-0     (-----) [000] .n.1 24577.546306: cpu_idle: state=4294967295 cpu_id=0
128293          <idle>-0     (-----) [000] d..2 24577.546311: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128294   kworker/u17:2-23076 (23076) [000] d..2 24577.546319: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128295   kworker/u17:2-23076 (23076) [000] d..3 24577.546325: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128296 shell svc 13418-13419 ( 1007) [001] d..2 24577.546329: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128297   kworker/u17:2-23076 (23076) [000] d..2 24577.546338: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128298     kworker/0:1-13012 (13012) [000] d..2 24577.546344: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
128299     kworker/0:1-13012 (13012) [000] d..3 24577.546352: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
128300     kworker/0:1-13012 (13012) [000] d..2 24577.546361: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
128301            adbd-23484 ( 1007) [000] d..2 24577.546371: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
128302            adbd-23484 ( 1007) [000] d..3 24577.546377: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
128303            adbd-23484 ( 1007) [000] d..2 24577.546414: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
128304              ps-13422 (13422) [001] d..2 24577.546456: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128305              ps-13422 (13422) [001] dn.3 24577.546464: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128306              ps-13422 (13422) [001] d..2 24577.546470: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128307 shell svc 13418-13419 ( 1007) [001] d..2 24577.546494: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128308            adbd-1007  ( 1007) [000] d.h4 24577.546499: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=000
128309            adbd-1007  ( 1007) [000] d.h5 24577.546518: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
128310            adbd-1007  ( 1007) [000] d.h4 24577.546522: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
128311          <idle>-0     (-----) [003] .n.1 24577.546523: cpu_idle: state=4294967295 cpu_id=3
128312          <idle>-0     (-----) [003] d..2 24577.546528: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
128313            adbd-1007  ( 1007) [000] d.h5 24577.546530: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
128314          <idle>-0     (-----) [002] .n.1 24577.546535: cpu_idle: state=4294967295 cpu_id=2
128315          <idle>-0     (-----) [002] d..2 24577.546541: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
128316  crtc_event:111-254   (  254) [003] d..2 24577.546556: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
128317          <idle>-0     (-----) [003] d..1 24577.546560: cpu_idle: state=0 cpu_id=3
128318            adbd-1007  ( 1007) [000] d..1 24577.546581: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
128319            adbd-1007  ( 1007) [000] d..2 24577.546604: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
128320              ps-13422 (13422) [001] d..2 24577.546618: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128321              ps-13422 (13422) [001] dn.3 24577.546626: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128322              ps-13422 (13422) [001] d..2 24577.546632: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128323            adbd-1007  ( 1007) [000] d..2 24577.546642: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128324          <idle>-0     (-----) [000] d..1 24577.546649: cpu_idle: state=0 cpu_id=0
128325 crtc_commit:111-253   (  253) [002] d..2 24577.546652: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=adbd next_pid=23485 next_prio=120
128326 shell svc 13418-13419 ( 1007) [001] d..2 24577.546656: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128327            adbd-23485 ( 1007) [002] d..2 24577.546694: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128328          <idle>-0     (-----) [002] d..1 24577.546700: cpu_idle: state=0 cpu_id=2
128329              ps-13422 (13422) [001] d.h2 24577.546714: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128330              ps-13422 (13422) [001] d.h3 24577.546725: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128331          <idle>-0     (-----) [000] .n.1 24577.546730: cpu_idle: state=4294967295 cpu_id=0
128332          <idle>-0     (-----) [000] d..2 24577.546738: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128333   kworker/u17:2-23076 (23076) [000] d..2 24577.546747: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128334   kworker/u17:2-23076 (23076) [000] d..3 24577.546754: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128335   kworker/u17:2-23076 (23076) [000] d..2 24577.546768: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128336     kworker/0:1-13012 (13012) [000] d..2 24577.546774: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
128337     kworker/0:1-13012 (13012) [000] d..3 24577.546796: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
128338     kworker/0:1-13012 (13012) [000] d..2 24577.546805: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
128339              ps-13422 (13422) [001] d..2 24577.546810: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128340              ps-13422 (13422) [001] dn.3 24577.546818: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128341              ps-13422 (13422) [001] d..2 24577.546824: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128342 shell svc 13418-13419 ( 1007) [001] d..2 24577.546848: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128343            adbd-23485 ( 1007) [000] d..2 24577.546851: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128344          <idle>-0     (-----) [000] d..1 24577.546857: cpu_idle: state=0 cpu_id=0
128345              ps-13422 (13422) [001] d.h2 24577.546880: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128346              ps-13422 (13422) [001] d.h3 24577.546890: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128347          <idle>-0     (-----) [000] .n.1 24577.546895: cpu_idle: state=4294967295 cpu_id=0
128348          <idle>-0     (-----) [000] d..2 24577.546900: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128349   kworker/u17:2-23076 (23076) [000] d..2 24577.546909: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128350   kworker/u17:2-23076 (23076) [000] d..3 24577.546915: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128351   kworker/u17:2-23076 (23076) [000] d..2 24577.546928: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128352     kworker/0:1-13012 (13012) [000] d..2 24577.546934: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
128353     kworker/0:1-13012 (13012) [000] d..3 24577.546943: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
128354     kworker/0:1-13012 (13012) [000] d..2 24577.546952: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
128355            adbd-23485 ( 1007) [000] d..2 24577.546969: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128356          <idle>-0     (-----) [000] d..1 24577.546974: cpu_idle: state=0 cpu_id=0
128357              ps-13422 (13422) [001] d..2 24577.547000: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128358              ps-13422 (13422) [001] dn.3 24577.547009: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128359              ps-13422 (13422) [001] d..2 24577.547015: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128360 shell svc 13418-13419 ( 1007) [001] d.h3 24577.547107: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
128361 shell svc 13418-13419 ( 1007) [001] d.h4 24577.547118: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
128362          <idle>-0     (-----) [003] .n.1 24577.547122: cpu_idle: state=4294967295 cpu_id=3
128363          <idle>-0     (-----) [003] d..2 24577.547128: 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
128364 shell svc 13418-13419 ( 1007) [001] d.H2 24577.547133: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128365 shell svc 13418-13419 ( 1007) [001] d.H3 24577.547142: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128366          <idle>-0     (-----) [000] .n.1 24577.547146: cpu_idle: state=4294967295 cpu_id=0
128367  kworker/u16:10-23868 (23868) [003] d..2 24577.547147: 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
128368          <idle>-0     (-----) [003] d..1 24577.547150: cpu_idle: state=0 cpu_id=3
128369          <idle>-0     (-----) [000] d..2 24577.547152: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128370   kworker/u17:2-23076 (23076) [000] d..2 24577.547160: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128371   kworker/u17:2-23076 (23076) [000] d..3 24577.547165: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128372   kworker/u17:2-23076 (23076) [000] d..2 24577.547178: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128373     kworker/0:1-13012 (13012) [000] d..2 24577.547184: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
128374     kworker/0:1-13012 (13012) [000] d..3 24577.547193: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
128375     kworker/0:1-13012 (13012) [000] d..2 24577.547201: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
128376            adbd-23484 ( 1007) [000] d..2 24577.547212: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
128377            adbd-23484 ( 1007) [000] d..3 24577.547218: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
128378 shell svc 13418-13419 ( 1007) [001] d.s3 24577.547232: sched_waking: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
128379 shell svc 13418-13419 ( 1007) [001] dns4 24577.547246: sched_wakeup: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
128380            adbd-23484 ( 1007) [000] d..2 24577.547255: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
128381 shell svc 13418-13419 ( 1007) [001] d..2 24577.547256: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1H next_pid=533 next_prio=100
128382    kworker/1:1H-533   (  533) [001] d..2 24577.547270: sched_switch: prev_comm=kworker/1:1H prev_pid=533 prev_prio=100 prev_state=S ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128383 shell svc 13418-13419 ( 1007) [001] d..2 24577.547276: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128384            adbd-1007  ( 1007) [000] d..1 24577.547315: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
128385            adbd-1007  ( 1007) [000] d..2 24577.547327: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
128386            adbd-1007  ( 1007) [000] d..2 24577.547354: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
128387            adbd-23485 ( 1007) [000] d..2 24577.547398: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128388          <idle>-0     (-----) [000] d..1 24577.547404: cpu_idle: state=0 cpu_id=0
128389              ps-13422 (13422) [001] d.h2 24577.547419: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128390              ps-13422 (13422) [001] d.h3 24577.547437: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128391          <idle>-0     (-----) [000] .n.1 24577.547440: cpu_idle: state=4294967295 cpu_id=0
128392          <idle>-0     (-----) [000] d..2 24577.547445: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128393              ps-13422 (13422) [001] d..2 24577.547453: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128394   kworker/u17:2-23076 (23076) [000] d..2 24577.547456: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128395              ps-13422 (13422) [001] dn.3 24577.547460: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128396   kworker/u17:2-23076 (23076) [000] d..3 24577.547462: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128397              ps-13422 (13422) [001] d..2 24577.547466: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128398   kworker/u17:2-23076 (23076) [000] d..2 24577.547476: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128399     kworker/0:1-13012 (13012) [000] d..2 24577.547481: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
128400     kworker/0:1-13012 (13012) [000] d..3 24577.547490: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
128401 shell svc 13418-13419 ( 1007) [001] d..2 24577.547491: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128402     kworker/0:1-13012 (13012) [000] d..2 24577.547499: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
128403            adbd-23485 ( 1007) [000] d..2 24577.547538: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128404          <idle>-0     (-----) [000] d..1 24577.547543: cpu_idle: state=0 cpu_id=0
128405              ps-13422 (13422) [001] d.h2 24577.547544: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128406              ps-13422 (13422) [001] d.h3 24577.547557: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128407          <idle>-0     (-----) [002] ...1 24577.547566: cpu_idle: state=4294967295 cpu_id=2
128408          <idle>-0     (-----) [002] d..1 24577.547569: cpu_idle: state=0 cpu_id=2
128409          <idle>-0     (-----) [003] ...1 24577.547569: cpu_idle: state=4294967295 cpu_id=3
128410          <idle>-0     (-----) [003] d..1 24577.547572: cpu_idle: state=0 cpu_id=3
128411          <idle>-0     (-----) [000] .n.1 24577.547576: cpu_idle: state=4294967295 cpu_id=0
128412          <idle>-0     (-----) [000] d..2 24577.547581: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128413   kworker/u17:2-23076 (23076) [000] d..2 24577.547590: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128414   kworker/u17:2-23076 (23076) [000] d..3 24577.547597: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128415   kworker/u17:2-23076 (23076) [000] d..2 24577.547610: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128416     kworker/0:1-13012 (13012) [000] d..2 24577.547616: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
128417     kworker/0:1-13012 (13012) [000] d..3 24577.547625: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
128418     kworker/0:1-13012 (13012) [000] d..2 24577.547633: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
128419            adbd-23485 ( 1007) [000] d..2 24577.547652: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128420          <idle>-0     (-----) [000] d..1 24577.547658: cpu_idle: state=0 cpu_id=0
128421              ps-13422 (13422) [001] d..2 24577.547674: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128422              ps-13422 (13422) [001] dn.3 24577.547682: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128423              ps-13422 (13422) [001] d..2 24577.547689: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128424 shell svc 13418-13419 ( 1007) [001] d..2 24577.547713: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128425              ps-13422 (13422) [001] d.h3 24577.547756: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128426              ps-13422 (13422) [001] d.h4 24577.547767: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128427          <idle>-0     (-----) [000] .n.1 24577.547771: cpu_idle: state=4294967295 cpu_id=0
128428          <idle>-0     (-----) [000] d..2 24577.547777: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128429   kworker/u17:2-23076 (23076) [000] d..2 24577.547784: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128430   kworker/u17:2-23076 (23076) [000] d..3 24577.547790: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128431   kworker/u17:2-23076 (23076) [000] d..2 24577.547805: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128432     kworker/0:1-13012 (13012) [000] d..2 24577.547811: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
128433     kworker/0:1-13012 (13012) [000] d..3 24577.547820: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
128434     kworker/0:1-13012 (13012) [000] d..2 24577.547830: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
128435            adbd-23484 ( 1007) [000] d..2 24577.547841: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
128436            adbd-23484 ( 1007) [000] d..3 24577.547846: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
128437              ps-13422 (13422) [001] d..2 24577.547876: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128438            adbd-23484 ( 1007) [000] d..2 24577.547882: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
128439              ps-13422 (13422) [001] dn.3 24577.547884: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128440              ps-13422 (13422) [001] d..2 24577.547891: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128441 shell svc 13418-13419 ( 1007) [001] d..2 24577.547915: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128442            adbd-1007  ( 1007) [000] d..1 24577.547942: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
128443            adbd-1007  ( 1007) [000] d..2 24577.547954: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
128444            adbd-1007  ( 1007) [000] d..2 24577.547982: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
128445            adbd-23485 ( 1007) [000] d..2 24577.548027: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128446          <idle>-0     (-----) [000] d..1 24577.548034: cpu_idle: state=0 cpu_id=0
128447              ps-13422 (13422) [001] d.h2 24577.548044: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128448              ps-13422 (13422) [001] d.h3 24577.548056: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128449          <idle>-0     (-----) [000] .n.1 24577.548060: cpu_idle: state=4294967295 cpu_id=0
128450          <idle>-0     (-----) [000] d..2 24577.548066: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128451              ps-13422 (13422) [001] d..2 24577.548067: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128452              ps-13422 (13422) [001] dn.3 24577.548073: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128453   kworker/u17:2-23076 (23076) [000] d..2 24577.548075: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128454              ps-13422 (13422) [001] d..2 24577.548079: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128455   kworker/u17:2-23076 (23076) [000] d..3 24577.548082: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128456   kworker/u17:2-23076 (23076) [000] d..2 24577.548097: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128457     kworker/0:1-13012 (13012) [000] d..2 24577.548103: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
128458 shell svc 13418-13419 ( 1007) [001] d..2 24577.548103: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128459     kworker/0:1-13012 (13012) [000] d..3 24577.548111: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
128460     kworker/0:1-13012 (13012) [000] d..2 24577.548120: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
128461            adbd-23485 ( 1007) [000] d..2 24577.548160: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128462          <idle>-0     (-----) [000] d..1 24577.548166: cpu_idle: state=0 cpu_id=0
128463              ps-13422 (13422) [001] d.h2 24577.548169: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128464              ps-13422 (13422) [001] d.h3 24577.548180: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128465          <idle>-0     (-----) [000] .n.1 24577.548185: cpu_idle: state=4294967295 cpu_id=0
128466          <idle>-0     (-----) [000] d..2 24577.548193: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128467   kworker/u17:2-23076 (23076) [000] d..2 24577.548203: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128468   kworker/u17:2-23076 (23076) [000] d..3 24577.548209: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128469   kworker/u17:2-23076 (23076) [000] d..2 24577.548222: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128470     kworker/0:1-13012 (13012) [000] d..2 24577.548227: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
128471     kworker/0:1-13012 (13012) [000] d..3 24577.548237: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
128472     kworker/0:1-13012 (13012) [000] d..2 24577.548246: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
128473              ps-13422 (13422) [001] d..2 24577.548260: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128474            adbd-23485 ( 1007) [000] d..2 24577.548264: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128475          <idle>-0     (-----) [000] d..1 24577.548269: cpu_idle: state=0 cpu_id=0
128476              ps-13422 (13422) [001] dn.3 24577.548269: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128477              ps-13422 (13422) [001] d..2 24577.548275: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128478 shell svc 13418-13419 ( 1007) [001] d..2 24577.548301: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128479              ps-13422 (13422) [001] d.h2 24577.548383: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128480              ps-13422 (13422) [001] d.h3 24577.548395: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128481          <idle>-0     (-----) [000] .n.1 24577.548399: cpu_idle: state=4294967295 cpu_id=0
128482          <idle>-0     (-----) [000] d..2 24577.548404: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128483   kworker/u17:2-23076 (23076) [000] d..2 24577.548413: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128484   kworker/u17:2-23076 (23076) [000] d..3 24577.548419: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128485   kworker/u17:2-23076 (23076) [000] d..2 24577.548433: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128486     kworker/0:1-13012 (13012) [000] d..2 24577.548440: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
128487     kworker/0:1-13012 (13012) [000] d..3 24577.548449: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
128488     kworker/0:1-13012 (13012) [000] d..2 24577.548457: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
128489              ps-13422 (13422) [001] d..2 24577.548467: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128490            adbd-23484 ( 1007) [000] d..2 24577.548469: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
128491            adbd-23484 ( 1007) [000] d..3 24577.548474: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
128492              ps-13422 (13422) [001] dn.3 24577.548475: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128493              ps-13422 (13422) [001] d..2 24577.548481: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128494 shell svc 13418-13419 ( 1007) [001] d..2 24577.548505: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128495            adbd-23484 ( 1007) [000] d..2 24577.548513: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
128496            adbd-1007  ( 1007) [000] d..1 24577.548573: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
128497            adbd-1007  ( 1007) [000] d..2 24577.548585: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
128498            adbd-1007  ( 1007) [000] d..2 24577.548613: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
128499              ps-13422 (13422) [001] d..2 24577.548636: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128500              ps-13422 (13422) [001] dn.3 24577.548644: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128501              ps-13422 (13422) [001] d..2 24577.548650: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128502            adbd-23485 ( 1007) [000] d..2 24577.548660: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128503          <idle>-0     (-----) [000] d..1 24577.548666: cpu_idle: state=0 cpu_id=0
128504 shell svc 13418-13419 ( 1007) [001] d.h2 24577.548671: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128505 shell svc 13418-13419 ( 1007) [001] d.h3 24577.548681: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128506          <idle>-0     (-----) [000] .n.1 24577.548686: cpu_idle: state=4294967295 cpu_id=0
128507          <idle>-0     (-----) [000] d..2 24577.548691: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128508 shell svc 13418-13419 ( 1007) [001] d..2 24577.548700: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128509   kworker/u17:2-23076 (23076) [000] d..2 24577.548701: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128510   kworker/u17:2-23076 (23076) [000] d..3 24577.548708: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128511   kworker/u17:2-23076 (23076) [000] d..2 24577.548721: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128512     kworker/0:1-13012 (13012) [000] d..2 24577.548727: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
128513     kworker/0:1-13012 (13012) [000] d..3 24577.548736: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
128514     kworker/0:1-13012 (13012) [000] d..2 24577.548745: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
128515            adbd-23485 ( 1007) [000] d..2 24577.548781: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128516              ps-13422 (13422) [001] d.h2 24577.548798: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128517              ps-13422 (13422) [001] d.h3 24577.548810: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128518          <idle>-0     (-----) [000] dnh5 24577.548829: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
128519          <idle>-0     (-----) [000] dnh6 24577.548840: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
128520          <idle>-0     (-----) [002] .n.1 24577.548845: cpu_idle: state=4294967295 cpu_id=2
128521          <idle>-0     (-----) [002] d..2 24577.548850: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
128522          <idle>-0     (-----) [000] d..2 24577.548854: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128523              ps-13422 (13422) [001] d..2 24577.548858: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128524   kworker/u17:2-23076 (23076) [000] d..2 24577.548861: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128525              ps-13422 (13422) [001] dn.3 24577.548866: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128526   kworker/u17:2-23076 (23076) [000] d..3 24577.548867: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128527              ps-13422 (13422) [001] d..2 24577.548872: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128528   kworker/u17:2-23076 (23076) [000] d..2 24577.548879: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128529     kworker/0:1-13012 (13012) [000] d..2 24577.548884: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
128530     kworker/0:1-13012 (13012) [000] d..3 24577.548893: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
128531 shell svc 13418-13419 ( 1007) [001] d..2 24577.548896: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128532     kworker/0:1-13012 (13012) [000] d..2 24577.548901: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
128533            adbd-23485 ( 1007) [000] d..2 24577.548913: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128534          <idle>-0     (-----) [000] d..1 24577.548918: cpu_idle: state=0 cpu_id=0
128535 crtc_commit:111-253   (  253) [002] d..2 24577.548931: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128536          <idle>-0     (-----) [002] d..1 24577.548935: cpu_idle: state=0 cpu_id=2
128537              ps-13422 (13422) [001] d.h2 24577.549013: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128538              ps-13422 (13422) [001] d.h3 24577.549024: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128539          <idle>-0     (-----) [000] .n.1 24577.549029: cpu_idle: state=4294967295 cpu_id=0
128540          <idle>-0     (-----) [000] d..2 24577.549034: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128541   kworker/u17:2-23076 (23076) [000] d..2 24577.549042: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128542   kworker/u17:2-23076 (23076) [000] d..3 24577.549048: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128543              ps-13422 (13422) [001] d..2 24577.549053: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128544              ps-13422 (13422) [001] dn.3 24577.549061: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128545   kworker/u17:2-23076 (23076) [000] d..2 24577.549061: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128546              ps-13422 (13422) [001] d..2 24577.549068: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128547     kworker/0:1-13012 (13012) [000] d..2 24577.549068: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
128548     kworker/0:1-13012 (13012) [000] d..3 24577.549077: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
128549     kworker/0:1-13012 (13012) [000] d..2 24577.549086: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
128550 shell svc 13418-13419 ( 1007) [001] d..2 24577.549092: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128551            adbd-23484 ( 1007) [000] d..2 24577.549097: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
128552            adbd-23484 ( 1007) [000] d..3 24577.549103: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
128553            adbd-23484 ( 1007) [000] d.h5 24577.549134: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
128554            adbd-23484 ( 1007) [000] d.h6 24577.549145: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
128555          <idle>-0     (-----) [003] .n.1 24577.549149: cpu_idle: state=4294967295 cpu_id=3
128556          <idle>-0     (-----) [003] d..2 24577.549154: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
128557            adbd-23484 ( 1007) [000] d.h7 24577.549154: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128558            adbd-23484 ( 1007) [000] d.h8 24577.549159: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128559  crtc_event:111-254   (  254) [003] d..2 24577.549169: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
128560          <idle>-0     (-----) [003] d..1 24577.549173: cpu_idle: state=0 cpu_id=3
128561            adbd-23484 ( 1007) [000] d.h9 24577.549173: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
128562            adbd-23484 ( 1007) [000] d.ha 24577.549183: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
128563          <idle>-0     (-----) [002] .n.1 24577.549187: cpu_idle: state=4294967295 cpu_id=2
128564            adbd-23484 ( 1007) [000] d.h7 24577.549189: sched_waking: comm=SDM_EventThread pid=624 prio=111 target_cpu=003
128565          <idle>-0     (-----) [002] d..2 24577.549192: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
128566              ps-13422 (13422) [001] d..2 24577.549213: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128567            adbd-23484 ( 1007) [000] d.h8 24577.549216: sched_wakeup: comm=SDM_EventThread pid=624 prio=111 target_cpu=002
128568              ps-13422 (13422) [001] dn.3 24577.549222: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128569 crtc_commit:111-253   (  253) [002] d..2 24577.549227: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=SDM_EventThread next_pid=624 next_prio=111
128570              ps-13422 (13422) [001] d..2 24577.549228: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128571 shell svc 13418-13419 ( 1007) [001] d..2 24577.549252: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128572            adbd-23484 ( 1007) [000] d..2 24577.549263: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128573 SDM_EventThread-624   (  598) [002] ...1 24577.549274: tracing_mark_write: B|598|HWCCallbacks::Vsync::
128574     kworker/0:1-13012 (13012) [000] d..2 24577.549277: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
128575 SDM_EventThread-624   (  598) [002] ...1 24577.549284: tracing_mark_write: B|598|HIDL::IComposerCallback::onVsync::client
128576 SDM_EventThread-624   (  598) [002] ...1 24577.549286: tracing_mark_write: E|598
128577            adbd-1007  ( 1007) [000] d..1 24577.549338: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
128578            adbd-1007  ( 1007) [000] d..2 24577.549362: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
128579 SDM_EventThread-624   (  598) [002] .... 24577.549368: binder_transaction: transaction=1671657 dest_node=1270370 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
128580              ps-13422 (13422) [001] d..2 24577.549375: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128581 SDM_EventThread-624   (  598) [002] d..4 24577.549377: sched_waking: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=000
128582              ps-13422 (13422) [001] dn.3 24577.549383: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128583              ps-13422 (13422) [001] d..2 24577.549389: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128584            adbd-1007  ( 1007) [000] d..2 24577.549392: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128585          <idle>-0     (-----) [000] d..1 24577.549398: cpu_idle: state=0 cpu_id=0
128586 SDM_EventThread-624   (  598) [002] d..5 24577.549405: sched_wakeup: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=003
128587          <idle>-0     (-----) [003] .n.1 24577.549409: cpu_idle: state=4294967295 cpu_id=3
128588 shell svc 13418-13419 ( 1007) [001] d..2 24577.549414: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128589          <idle>-0     (-----) [003] d..2 24577.549414: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:23896_ next_pid=23923 next_prio=120
128590 HwBinder:23896_-23923 (23896) [003] d.h2 24577.549423: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
128591 SDM_EventThread-624   (  598) [002] ...1 24577.549426: tracing_mark_write: E|598
128592 SDM_EventThread-624   (  598) [002] d..4 24577.549435: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
128593 HwBinder:23896_-23923 (23896) [003] d.h3 24577.549442: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=000
128594          <idle>-0     (-----) [000] .n.1 24577.549447: cpu_idle: state=4294967295 cpu_id=0
128595 HwBinder:23896_-23923 (23896) [003] .n.. 24577.549451: binder_transaction_received: transaction=1671657
128596          <idle>-0     (-----) [000] d..2 24577.549452: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
128597 SDM_EventThread-624   (  598) [002] d..5 24577.549452: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
128598 HwBinder:23896_-23923 (23896) [003] d..2 24577.549459: sched_switch: prev_comm=HwBinder:23896_ prev_pid=23923 prev_prio=120 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
128599        DispSync-23904 (23896) [000] d..1 24577.549473: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
128600 crtc_commit:111-253   (  253) [003] d..2 24577.549475: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=HwBinder:23896_ next_pid=23923 next_prio=120
128601 SDM_EventThread-624   (  598) [002] d..2 24577.549478: sched_switch: prev_comm=SDM_EventThread prev_pid=624 prev_prio=111 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
128602        DispSync-23904 (23896) [000] d..2 24577.549493: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
128603 HwBinder:23896_-23923 (23896) [003] d..2 24577.549501: sched_switch: prev_comm=HwBinder:23896_ prev_pid=23923 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
128604        DispSync-23904 (23896) [000] d..2 24577.549509: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128605          <idle>-0     (-----) [000] d..1 24577.549514: cpu_idle: state=0 cpu_id=0
128606            adbd-23485 ( 1007) [002] d..2 24577.549522: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128607              ps-13422 (13422) [001] d.h2 24577.549527: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128608          <idle>-0     (-----) [002] d..1 24577.549529: cpu_idle: state=0 cpu_id=2
128609              ps-13422 (13422) [001] d.h3 24577.549552: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
128610  appEventThread-23905 (23896) [003] d..3 24577.549559: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
128611              ps-13422 (13422) [001] d..2 24577.549576: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128612  appEventThread-23905 (23896) [003] d..4 24577.549579: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
128613              ps-13422 (13422) [001] dn.3 24577.549583: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128614          <idle>-0     (-----) [000] .n.1 24577.549584: cpu_idle: state=4294967295 cpu_id=0
128615              ps-13422 (13422) [001] d..2 24577.549589: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128616          <idle>-0     (-----) [000] d..2 24577.549590: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
128617  appEventThread-23905 (23896) [003] d..2 24577.549597: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128618   kworker/u17:2-23076 (23076) [003] d..2 24577.549608: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
128619 shell svc 13418-13419 ( 1007) [001] d..2 24577.549613: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128620   kworker/u17:2-23076 (23076) [003] d..3 24577.549616: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
128621   kworker/u17:2-23076 (23076) [003] d..2 24577.549630: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=HwBinder:23896_ next_pid=23923 next_prio=120
128622 HwBinder:23896_-23923 (23896) [003] ...1 24577.549651: tracing_mark_write: B|23896|HIDL::IComposerCallback::onVsync::server
128623 HwBinder:23896_-23923 (23896) [003] d..1 24577.549667: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=000
128624 HwBinder:23896_-23923 (23896) [003] d..2 24577.549683: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
128625          <idle>-0     (-----) [002] .n.1 24577.549688: cpu_idle: state=4294967295 cpu_id=2
128626 HwBinder:23896_-23923 (23896) [003] ...1 24577.549690: tracing_mark_write: E|23896
128627          <idle>-0     (-----) [002] d..2 24577.549693: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
128628        DispSync-23904 (23896) [002] d..2 24577.549717: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128629 HwBinder:23896_-23923 (23896) [003] d..2 24577.549718: sched_switch: prev_comm=HwBinder:23896_ prev_pid=23923 prev_prio=120 prev_state=S ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
128630          <idle>-0     (-----) [002] d..1 24577.549722: cpu_idle: state=0 cpu_id=2
128631     kworker/3:1-12662 (12662) [003] d..2 24577.549726: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
128632              ps-13422 (13422) [001] d..2 24577.549735: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128633              ps-13422 (13422) [001] dn.3 24577.549744: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128634     kworker/3:1-12662 (12662) [003] d..3 24577.549749: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
128635              ps-13422 (13422) [001] d..2 24577.549749: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128636     kworker/3:1-12662 (12662) [003] d..2 24577.549758: 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
128637 shell svc 13418-13419 ( 1007) [001] d..2 24577.549774: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128638            adbd-23485 ( 1007) [003] d..2 24577.549804: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
128639          <idle>-0     (-----) [003] d..1 24577.549810: cpu_idle: state=0 cpu_id=3
128640              ps-13422 (13422) [001] d.h2 24577.549818: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
128641              ps-13422 (13422) [001] d.h3 24577.549828: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
128642          <idle>-0     (-----) [003] .n.1 24577.549833: cpu_idle: state=4294967295 cpu_id=3
128643          <idle>-0     (-----) [003] d..2 24577.549839: 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
128644   kworker/u17:2-23076 (23076) [003] d..2 24577.549847: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
128645   kworker/u17:2-23076 (23076) [003] d..3 24577.549853: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
128646   kworker/u17:2-23076 (23076) [003] d..2 24577.549866: 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
128647     kworker/3:1-12662 (12662) [003] d..2 24577.549871: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
128648     kworker/3:1-12662 (12662) [003] d..3 24577.549880: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
128649     kworker/3:1-12662 (12662) [003] d..2 24577.549890: 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
128650            adbd-23485 ( 1007) [003] d..2 24577.549908: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
128651          <idle>-0     (-----) [003] d..1 24577.549913: cpu_idle: state=0 cpu_id=3
128652 s.nexuslauncher-24827 (24827) [000] .... 24577.549977: binder_transaction: transaction=1671658 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
128653 s.nexuslauncher-24827 (24827) [000] d..4 24577.549984: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=002
128654 s.nexuslauncher-24827 (24827) [000] d..5 24577.549999: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=002
128655          <idle>-0     (-----) [002] .n.1 24577.550003: cpu_idle: state=4294967295 cpu_id=2
128656          <idle>-0     (-----) [002] d..2 24577.550009: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
128657  Binder:23896_4-24423 (23896) [002] .... 24577.550013: binder_transaction_received: transaction=1671658
128658 s.nexuslauncher-24827 (24827) [000] d..3 24577.550029: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
128659  Binder:23896_4-24423 (23896) [002] d..1 24577.550039: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
128660 s.nexuslauncher-24827 (24827) [000] d..4 24577.550048: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=003
128661          <idle>-0     (-----) [003] .n.1 24577.550053: cpu_idle: state=4294967295 cpu_id=3
128662          <idle>-0     (-----) [003] d..2 24577.550058: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
128663              ps-13422 (13422) [001] d.h2 24577.550058: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
128664  Binder:23896_4-24423 (23896) [002] d..2 24577.550058: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
128665 s.nexuslauncher-24827 (24827) [000] d..2 24577.550069: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
128666              ps-13422 (13422) [001] d.h3 24577.550081: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128667  Binder:23896_4-24423 (23896) [002] d..2 24577.550082: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128668          <idle>-0     (-----) [002] d..1 24577.550087: cpu_idle: state=0 cpu_id=2
128669    RenderThread-25194 (24827) [003] d..2 24577.550093: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
128670          <idle>-0     (-----) [003] d..1 24577.550098: cpu_idle: state=0 cpu_id=3
128671  appEventThread-23905 (23896) [000] d..2 24577.550106: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128672   kworker/u17:2-23076 (23076) [000] d..2 24577.550116: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128673   kworker/u17:2-23076 (23076) [000] d..3 24577.550122: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128674   kworker/u17:2-23076 (23076) [000] d..2 24577.550136: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
128675 s.nexuslauncher-24827 (24827) [000] d..3 24577.550531: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=003
128676 s.nexuslauncher-24827 (24827) [000] d..4 24577.550551: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
128677          <idle>-0     (-----) [002] .n.1 24577.550556: cpu_idle: state=4294967295 cpu_id=2
128678          <idle>-0     (-----) [002] d..2 24577.550562: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
128679 s.nexuslauncher-24827 (24827) [000] d..2 24577.550565: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128680     kworker/0:1-13012 (13012) [000] d..2 24577.550575: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
128681     kworker/0:1-13012 (13012) [000] d..3 24577.550585: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
128682     kworker/0:1-13012 (13012) [000] d..2 24577.550594: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
128683            adbd-23484 ( 1007) [000] d..2 24577.550607: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
128684            adbd-23484 ( 1007) [000] d..3 24577.550613: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
128685              ps-13422 (13422) [001] d..2 24577.550648: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128686            adbd-23484 ( 1007) [000] d..2 24577.550653: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
128687              ps-13422 (13422) [001] dn.3 24577.550657: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128688              ps-13422 (13422) [001] d..2 24577.550663: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128689 shell svc 13418-13419 ( 1007) [001] d..2 24577.550689: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128690            adbd-1007  ( 1007) [000] d..1 24577.550719: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
128691            adbd-1007  ( 1007) [000] d..2 24577.550730: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
128692          <idle>-0     (-----) [003] .n.1 24577.550735: cpu_idle: state=4294967295 cpu_id=3
128693          <idle>-0     (-----) [003] d..2 24577.550740: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
128694            adbd-1007  ( 1007) [000] d..2 24577.550759: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128695          <idle>-0     (-----) [000] d..1 24577.550765: cpu_idle: state=0 cpu_id=0
128696            adbd-23485 ( 1007) [003] d..2 24577.550783: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
128697          <idle>-0     (-----) [003] d..1 24577.550788: cpu_idle: state=0 cpu_id=3
128698              ps-13422 (13422) [001] d.h2 24577.550792: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128699              ps-13422 (13422) [001] d.h3 24577.550804: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128700          <idle>-0     (-----) [000] .n.1 24577.550809: cpu_idle: state=4294967295 cpu_id=0
128701          <idle>-0     (-----) [000] d..2 24577.550815: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128702    RenderThread-25194 (24827) [002] d..1 24577.550820: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
128703   kworker/u17:2-23076 (23076) [000] d..2 24577.550825: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128704   kworker/u17:2-23076 (23076) [000] d..3 24577.550832: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128705              ps-13422 (13422) [001] d..2 24577.550838: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128706    RenderThread-25194 (24827) [002] d..2 24577.550844: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=003
128707              ps-13422 (13422) [001] dn.3 24577.550845: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128708          <idle>-0     (-----) [003] .n.1 24577.550849: cpu_idle: state=4294967295 cpu_id=3
128709   kworker/u17:2-23076 (23076) [000] d..2 24577.550850: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128710              ps-13422 (13422) [001] d..2 24577.550851: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128711          <idle>-0     (-----) [003] d..2 24577.550854: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
128712     kworker/0:1-13012 (13012) [000] d..2 24577.550856: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
128713 shell svc 13418-13419 ( 1007) [001] d..2 24577.550876: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128714     kworker/0:1-13012 (13012) [000] d..3 24577.550877: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
128715     kworker/0:1-13012 (13012) [000] d.s3 24577.550896: sched_waking: comm=kworker/0:1H pid=531 prio=100 target_cpu=000
128716    RenderThread-25194 (24827) [002] d.s2 24577.550898: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
128717 s.nexuslauncher-24827 (24827) [003] d.s1 24577.550899: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
128718     kworker/0:1-13012 (13012) [000] dns4 24577.550904: sched_wakeup: comm=kworker/0:1H pid=531 prio=100 target_cpu=000
128719    RenderThread-25194 (24827) [002] d.s3 24577.550910: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
128720     kworker/0:1-13012 (13012) [000] d..2 24577.550913: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:1H next_pid=531 next_prio=100
128721 s.nexuslauncher-24827 (24827) [003] dns2 24577.550914: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
128722    kworker/0:1H-531   (  531) [000] d..2 24577.550923: sched_switch: prev_comm=kworker/0:1H prev_pid=531 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128723 s.nexuslauncher-24827 (24827) [003] d..2 24577.550924: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
128724     kworker/0:1-13012 (13012) [000] d..2 24577.550932: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
128725  crtc_event:111-254   (  254) [003] d..2 24577.550936: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
128726    RenderThread-25194 (24827) [002] .... 24577.550941: binder_transaction: transaction=1671659 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
128727     rcu_preempt-7     (    7) [003] d..2 24577.550945: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
128728    RenderThread-25194 (24827) [002] ...2 24577.550947: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
128729    RenderThread-25194 (24827) [002] d..4 24577.550949: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
128730    RenderThread-25194 (24827) [002] dn.5 24577.550957: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
128731     rcu_preempt-7     (    7) [003] d..3 24577.550957: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
128732    RenderThread-25194 (24827) [002] d..2 24577.550962: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
128733     rcu_preempt-7     (    7) [003] d..2 24577.550967: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
128734  Binder:23896_4-24423 (23896) [002] .... 24577.550967: binder_transaction_received: transaction=1671659
128735            adbd-23485 ( 1007) [000] d..2 24577.550969: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128736          <idle>-0     (-----) [000] d..1 24577.550977: cpu_idle: state=0 cpu_id=0
128737              ps-13422 (13422) [001] d.h2 24577.550983: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128738              ps-13422 (13422) [001] d.h3 24577.550995: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128739          <idle>-0     (-----) [000] .n.1 24577.551000: cpu_idle: state=4294967295 cpu_id=0
128740          <idle>-0     (-----) [000] d..2 24577.551007: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128741   kworker/u17:2-23076 (23076) [000] d..2 24577.551014: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128742   kworker/u17:2-23076 (23076) [000] d..3 24577.551020: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128743  Binder:23896_4-24423 (23896) [002] .... 24577.551024: binder_transaction: transaction=1671660 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
128744 s.nexuslauncher-24827 (24827) [003] d..2 24577.551027: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
128745  Binder:23896_4-24423 (23896) [002] .... 24577.551032: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
128746   kworker/u17:2-23076 (23076) [000] d..2 24577.551033: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128747     kworker/0:1-13012 (13012) [000] d..2 24577.551038: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
128748     kworker/0:1-13012 (13012) [000] d..3 24577.551047: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
128749              ps-13422 (13422) [001] d..2 24577.551050: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128750     kworker/0:1-13012 (13012) [000] d..2 24577.551056: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
128751              ps-13422 (13422) [001] dn.3 24577.551058: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128752  Binder:23896_4-24423 (23896) [002] d..2 24577.551063: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
128753              ps-13422 (13422) [001] d..2 24577.551064: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128754            adbd-23485 ( 1007) [000] d..2 24577.551068: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128755    RenderThread-25194 (24827) [002] .... 24577.551068: binder_transaction_received: transaction=1671660
128756          <idle>-0     (-----) [000] d..1 24577.551075: cpu_idle: state=0 cpu_id=0
128757 shell svc 13418-13419 ( 1007) [001] d..2 24577.551088: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128758              ps-13422 (13422) [001] d.h2 24577.551219: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128759              ps-13422 (13422) [001] d.h3 24577.551231: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128760          <idle>-0     (-----) [000] .n.1 24577.551236: cpu_idle: state=4294967295 cpu_id=0
128761              ps-13422 (13422) [001] d..2 24577.551239: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128762          <idle>-0     (-----) [000] d..2 24577.551242: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128763              ps-13422 (13422) [001] dn.3 24577.551246: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128764   kworker/u17:2-23076 (23076) [000] d..2 24577.551249: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128765              ps-13422 (13422) [001] d..2 24577.551252: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128766   kworker/u17:2-23076 (23076) [000] d..3 24577.551256: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128767   kworker/u17:2-23076 (23076) [000] d..2 24577.551268: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128768     kworker/0:1-13012 (13012) [000] d..2 24577.551274: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
128769 shell svc 13418-13419 ( 1007) [001] d..2 24577.551277: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128770     kworker/0:1-13012 (13012) [000] d..3 24577.551283: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
128771     kworker/0:1-13012 (13012) [000] d..2 24577.551291: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
128772            adbd-23484 ( 1007) [000] d..2 24577.551302: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
128773            adbd-23484 ( 1007) [000] d..3 24577.551308: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
128774            adbd-23484 ( 1007) [000] d..2 24577.551343: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
128775         rcuop/4-45    (   45) [003] d..2 24577.551366: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
128776          <idle>-0     (-----) [003] d..1 24577.551372: cpu_idle: state=0 cpu_id=3
128777              ps-13422 (13422) [001] d..2 24577.551398: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128778            adbd-1007  ( 1007) [000] d..1 24577.551402: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
128779              ps-13422 (13422) [001] dn.3 24577.551407: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128780              ps-13422 (13422) [001] d..2 24577.551413: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128781            adbd-1007  ( 1007) [000] d..2 24577.551414: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
128782 shell svc 13418-13419 ( 1007) [001] d..2 24577.551438: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128783            adbd-1007  ( 1007) [000] d..2 24577.551444: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
128784            adbd-23485 ( 1007) [000] d..2 24577.551481: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128785          <idle>-0     (-----) [000] d..1 24577.551490: cpu_idle: state=0 cpu_id=0
128786              ps-13422 (13422) [001] d.h2 24577.551504: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128787              ps-13422 (13422) [001] d.h3 24577.551516: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128788          <idle>-0     (-----) [000] .n.1 24577.551521: cpu_idle: state=4294967295 cpu_id=0
128789          <idle>-0     (-----) [000] d..2 24577.551528: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128790   kworker/u17:2-23076 (23076) [000] d..2 24577.551536: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128791   kworker/u17:2-23076 (23076) [000] d..3 24577.551543: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
128792   kworker/u17:2-23076 (23076) [000] d..2 24577.551556: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
128793     kworker/0:1-13012 (13012) [000] d..2 24577.551561: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
128794     kworker/0:1-13012 (13012) [000] d..3 24577.551570: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
128795     kworker/0:1-13012 (13012) [000] d..2 24577.551578: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
128796              ps-13422 (13422) [001] d..2 24577.551590: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128797              ps-13422 (13422) [001] dn.3 24577.551598: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128798              ps-13422 (13422) [001] d..2 24577.551604: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128799            adbd-23485 ( 1007) [000] d..2 24577.551613: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128800          <idle>-0     (-----) [000] d..1 24577.551620: cpu_idle: state=0 cpu_id=0
128801 shell svc 13418-13419 ( 1007) [001] d.h2 24577.551628: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
128802 shell svc 13418-13419 ( 1007) [001] d.h3 24577.551656: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
128803    RenderThread-25194 (24827) [002] d..2 24577.551668: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128804 shell svc 13418-13419 ( 1007) [001] d..2 24577.551670: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128805   kworker/u17:2-23076 (23076) [002] d..2 24577.551680: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
128806   kworker/u17:2-23076 (23076) [002] d..3 24577.551689: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
128807   kworker/u17:2-23076 (23076) [002] d..2 24577.551704: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
128808     kworker/2:0-12895 (12895) [002] d..2 24577.551712: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
128809     kworker/2:0-12895 (12895) [002] d..3 24577.551722: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
128810          <idle>-0     (-----) [000] .n.1 24577.551727: cpu_idle: state=4294967295 cpu_id=0
128811          <idle>-0     (-----) [000] d..2 24577.551733: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
128812     kworker/2:0-12895 (12895) [002] d..2 24577.551735: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
128813            adbd-23485 ( 1007) [000] d..2 24577.551747: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128814          <idle>-0     (-----) [000] d..1 24577.551754: cpu_idle: state=0 cpu_id=0
128815              ps-13422 (13422) [001] d..2 24577.551798: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128816              ps-13422 (13422) [001] dn.3 24577.551807: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128817              ps-13422 (13422) [001] d..2 24577.551813: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128818 shell svc 13418-13419 ( 1007) [001] d..2 24577.551838: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128819              ps-13422 (13422) [001] d.h2 24577.551856: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
128820              ps-13422 (13422) [001] d.h3 24577.551870: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
128821    RenderThread-25194 (24827) [002] d..2 24577.551881: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128822   kworker/u17:2-23076 (23076) [002] d..2 24577.551890: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
128823   kworker/u17:2-23076 (23076) [002] d..3 24577.551897: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
128824   kworker/u17:2-23076 (23076) [002] d..2 24577.551911: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
128825     kworker/2:0-12895 (12895) [002] d..2 24577.551920: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
128826     kworker/2:0-12895 (12895) [002] d..3 24577.551944: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
128827     kworker/2:0-12895 (12895) [002] d..2 24577.551954: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
128828              ps-13422 (13422) [001] d..2 24577.551999: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128829              ps-13422 (13422) [001] dn.3 24577.552008: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128830              ps-13422 (13422) [001] d..2 24577.552014: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128831 shell svc 13418-13419 ( 1007) [001] d..2 24577.552038: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128832              ps-13422 (13422) [001] d..2 24577.552159: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128833              ps-13422 (13422) [001] dn.3 24577.552167: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128834              ps-13422 (13422) [001] d..2 24577.552173: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128835 shell svc 13418-13419 ( 1007) [001] d..2 24577.552197: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128836              ps-13422 (13422) [001] d..2 24577.552314: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128837              ps-13422 (13422) [001] dn.3 24577.552323: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128838              ps-13422 (13422) [001] d..2 24577.552328: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128839 shell svc 13418-13419 ( 1007) [001] d..2 24577.552352: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128840              ps-13422 (13422) [001] d..2 24577.552472: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128841              ps-13422 (13422) [001] dn.3 24577.552481: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128842              ps-13422 (13422) [001] d..2 24577.552487: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128843 shell svc 13418-13419 ( 1007) [001] d..2 24577.552511: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128844              ps-13422 (13422) [001] d..2 24577.552635: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128845              ps-13422 (13422) [001] dn.3 24577.552644: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128846              ps-13422 (13422) [001] d..2 24577.552649: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128847 shell svc 13418-13419 ( 1007) [001] d..2 24577.552673: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128848              ps-13422 (13422) [001] d..2 24577.552799: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128849              ps-13422 (13422) [001] dn.3 24577.552808: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128850              ps-13422 (13422) [001] d..2 24577.552814: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128851 shell svc 13418-13419 ( 1007) [001] d..2 24577.552837: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128852          <idle>-0     (-----) [000] ...1 24577.552865: cpu_idle: state=4294967295 cpu_id=0
128853          <idle>-0     (-----) [000] d..1 24577.552867: cpu_idle: state=0 cpu_id=0
128854              ps-13422 (13422) [001] d..2 24577.552963: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128855              ps-13422 (13422) [001] dn.3 24577.552972: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128856              ps-13422 (13422) [001] d..2 24577.552977: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128857 shell svc 13418-13419 ( 1007) [001] d..2 24577.553001: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128858              ps-13422 (13422) [001] d..2 24577.553121: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128859              ps-13422 (13422) [001] dn.3 24577.553130: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128860              ps-13422 (13422) [001] d..2 24577.553135: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128861 shell svc 13418-13419 ( 1007) [001] d..2 24577.553159: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128862              ps-13422 (13422) [001] d..2 24577.553282: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128863              ps-13422 (13422) [001] dn.3 24577.553291: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128864              ps-13422 (13422) [001] d..2 24577.553297: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128865 shell svc 13418-13419 ( 1007) [001] d..2 24577.553320: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128866              ps-13422 (13422) [001] d..2 24577.553443: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128867              ps-13422 (13422) [001] dn.3 24577.553451: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128868              ps-13422 (13422) [001] d..2 24577.553459: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128869 shell svc 13418-13419 ( 1007) [001] d..2 24577.553483: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128870    RenderThread-25194 (24827) [002] d..2 24577.553493: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=adbd next_pid=23484 next_prio=120
128871            adbd-23484 ( 1007) [002] d..2 24577.553511: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
128872            adbd-23484 ( 1007) [002] d..3 24577.553524: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
128873            adbd-23484 ( 1007) [002] d..2 24577.553563: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
128874            adbd-1007  ( 1007) [002] d.h2 24577.553589: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
128875            adbd-1007  ( 1007) [002] d.h3 24577.553603: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
128876              ps-13422 (13422) [001] d..2 24577.553606: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128877            adbd-1007  ( 1007) [002] d.h3 24577.553608: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
128878          <idle>-0     (-----) [000] .n.1 24577.553613: cpu_idle: state=4294967295 cpu_id=0
128879              ps-13422 (13422) [001] dn.3 24577.553614: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128880          <idle>-0     (-----) [000] d..2 24577.553619: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
128881              ps-13422 (13422) [001] d..2 24577.553620: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128882 shell svc 13418-13419 ( 1007) [001] d..2 24577.553645: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128883            adbd-1007  ( 1007) [002] d..1 24577.553672: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
128884            adbd-1007  ( 1007) [002] d..2 24577.553696: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
128885            adbd-1007  ( 1007) [002] d..2 24577.553726: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
128886            adbd-23485 ( 1007) [002] d..2 24577.553771: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128887              ps-13422 (13422) [001] d.h2 24577.553772: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
128888          <idle>-0     (-----) [002] d..1 24577.553780: cpu_idle: state=0 cpu_id=2
128889              ps-13422 (13422) [001] d.h3 24577.553787: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
128890          <idle>-0     (-----) [002] .n.1 24577.553791: cpu_idle: state=4294967295 cpu_id=2
128891              ps-13422 (13422) [001] d..2 24577.553792: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128892              ps-13422 (13422) [001] dn.3 24577.553798: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128893          <idle>-0     (-----) [002] d..2 24577.553798: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128894              ps-13422 (13422) [001] d..2 24577.553804: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128895   kworker/u17:2-23076 (23076) [002] d..2 24577.553807: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
128896    RenderThread-25194 (24827) [000] .... 24577.553808: binder_transaction: transaction=1671661 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
128897   kworker/u17:2-23076 (23076) [002] d..3 24577.553814: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
128898    RenderThread-25194 (24827) [000] ...2 24577.553818: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
128899    RenderThread-25194 (24827) [000] d..4 24577.553820: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
128900 shell svc 13418-13419 ( 1007) [001] d..2 24577.553829: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128901   kworker/u17:2-23076 (23076) [002] d..2 24577.553830: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
128902     kworker/2:0-12895 (12895) [002] d..2 24577.553835: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
128903    RenderThread-25194 (24827) [000] dn.5 24577.553841: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
128904     kworker/2:0-12895 (12895) [002] d..3 24577.553845: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
128905    RenderThread-25194 (24827) [000] d..2 24577.553847: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
128906  Binder:23896_4-24423 (23896) [000] .... 24577.553852: binder_transaction_received: transaction=1671661
128907     kworker/2:0-12895 (12895) [002] d..2 24577.553854: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
128908            adbd-23485 ( 1007) [002] d..2 24577.553895: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128909          <idle>-0     (-----) [002] d..1 24577.553902: cpu_idle: state=0 cpu_id=2
128910              ps-13422 (13422) [001] d.h3 24577.553910: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
128911              ps-13422 (13422) [001] d.h4 24577.553922: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
128912          <idle>-0     (-----) [002] .n.1 24577.553926: cpu_idle: state=4294967295 cpu_id=2
128913          <idle>-0     (-----) [002] d..2 24577.553933: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128914   kworker/u17:2-23076 (23076) [002] d..2 24577.553941: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
128915   kworker/u17:2-23076 (23076) [002] d..3 24577.553947: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
128916   kworker/u17:2-23076 (23076) [002] d..2 24577.553960: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
128917     kworker/2:0-12895 (12895) [002] d..2 24577.553965: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
128918     kworker/2:0-12895 (12895) [002] d..3 24577.553973: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
128919  Binder:23896_4-24423 (23896) [000] .... 24577.553978: binder_transaction: transaction=1671662 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
128920     kworker/2:0-12895 (12895) [002] d..2 24577.553981: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
128921  Binder:23896_4-24423 (23896) [000] .... 24577.553984: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
128922              ps-13422 (13422) [001] d..2 24577.553985: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128923              ps-13422 (13422) [001] dn.3 24577.553994: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128924              ps-13422 (13422) [001] d..2 24577.554001: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128925            adbd-23485 ( 1007) [002] d..2 24577.554003: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128926          <idle>-0     (-----) [002] d..1 24577.554009: cpu_idle: state=0 cpu_id=2
128927  Binder:23896_4-24423 (23896) [000] d..2 24577.554015: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
128928    RenderThread-25194 (24827) [000] .... 24577.554021: binder_transaction_received: transaction=1671662
128929 shell svc 13418-13419 ( 1007) [001] d..2 24577.554025: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128930    RenderThread-25194 (24827) [000] d..2 24577.554086: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128931          <idle>-0     (-----) [000] d..1 24577.554096: cpu_idle: state=0 cpu_id=0
128932              ps-13422 (13422) [001] d..2 24577.554151: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128933              ps-13422 (13422) [001] dn.3 24577.554160: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128934              ps-13422 (13422) [001] dnh3 24577.554171: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
128935              ps-13422 (13422) [001] dnh4 24577.554180: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
128936          <idle>-0     (-----) [002] .n.1 24577.554185: cpu_idle: state=4294967295 cpu_id=2
128937              ps-13422 (13422) [001] d..2 24577.554189: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128938          <idle>-0     (-----) [002] d..2 24577.554192: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
128939   kworker/u17:2-23076 (23076) [002] d..2 24577.554200: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
128940   kworker/u17:2-23076 (23076) [002] d..3 24577.554206: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
128941 shell svc 13418-13419 ( 1007) [001] d..2 24577.554215: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128942              ps-13422 (13422) [001] d.s4 24577.554235: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
128943   kworker/u17:2-23076 (23076) [002] d..2 24577.554237: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
128944          <idle>-0     (-----) [003] ...1 24577.554239: cpu_idle: state=4294967295 cpu_id=3
128945          <idle>-0     (-----) [003] d..1 24577.554242: cpu_idle: state=0 cpu_id=3
128946     kworker/2:0-12895 (12895) [002] d..2 24577.554244: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
128947     kworker/2:0-12895 (12895) [002] d..3 24577.554254: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
128948              ps-13422 (13422) [001] d.s5 24577.554264: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
128949     kworker/2:0-12895 (12895) [002] d..2 24577.554270: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
128950            adbd-23484 ( 1007) [002] d..2 24577.554282: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
128951            adbd-23484 ( 1007) [002] d..3 24577.554291: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
128952            adbd-23484 ( 1007) [002] d..2 24577.554328: 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
128953  kworker/u16:10-23868 (23868) [002] .... 24577.554386: clk_set_rate: l3_cluster0_vote_clk 1305600000
128954  kworker/u16:10-23868 (23868) [002] .... 24577.554391: clk_set_rate: l3_clk 1305600000
128955              ps-13422 (13422) [001] d..2 24577.554420: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128956              ps-13422 (13422) [001] dn.3 24577.554429: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128957              ps-13422 (13422) [001] d..2 24577.554435: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128958 shell svc 13418-13419 ( 1007) [001] d..2 24577.554465: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128959              ps-13422 (13422) [001] d..2 24577.554596: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128960              ps-13422 (13422) [001] dn.3 24577.554605: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128961              ps-13422 (13422) [001] d..2 24577.554610: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128962  kworker/u16:10-23868 (23868) [002] d..2 24577.554621: 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
128963 shell svc 13418-13419 ( 1007) [001] d..2 24577.554635: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128964          <idle>-0     (-----) [003] d.s3 24577.554649: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
128965          <idle>-0     (-----) [003] d.s4 24577.554662: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
128966          <idle>-0     (-----) [003] dns4 24577.554665: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
128967          <idle>-0     (-----) [003] .n.1 24577.554669: cpu_idle: state=4294967295 cpu_id=3
128968          <idle>-0     (-----) [003] d..2 24577.554675: 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
128969            adbd-1007  ( 1007) [002] d..1 24577.554689: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
128970            adbd-1007  ( 1007) [002] d..2 24577.554714: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
128971            adbd-1007  ( 1007) [002] d..2 24577.554752: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128972              ps-13422 (13422) [001] d..2 24577.554753: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128973          <idle>-0     (-----) [002] d..1 24577.554760: cpu_idle: state=0 cpu_id=2
128974              ps-13422 (13422) [001] dn.3 24577.554761: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
128975              ps-13422 (13422) [001] d..2 24577.554767: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
128976          <idle>-0     (-----) [002] d.h2 24577.554771: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
128977          <idle>-0     (-----) [002] dnh3 24577.554778: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
128978          <idle>-0     (-----) [002] .n.1 24577.554784: cpu_idle: state=4294967295 cpu_id=2
128979  kworker/u16:10-23868 (23868) [003] d..2 24577.554785: 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
128980          <idle>-0     (-----) [002] d..2 24577.554790: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
128981 shell svc 13418-13419 ( 1007) [001] d..2 24577.554791: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
128982            adbd-23485 ( 1007) [003] d.s2 24577.554807: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
128983        DispSync-23904 (23896) [002] d..1 24577.554808: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
128984        DispSync-23904 (23896) [002] d..2 24577.554819: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
128985          <idle>-0     (-----) [000] .n.1 24577.554824: cpu_idle: state=4294967295 cpu_id=0
128986          <idle>-0     (-----) [000] d..2 24577.554831: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
128987            adbd-23485 ( 1007) [003] d.s3 24577.554832: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
128988            adbd-23485 ( 1007) [003] d.s3 24577.554835: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
128989        DispSync-23904 (23896) [002] d..2 24577.554844: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
128990  kworker/u16:10-23868 (23868) [002] d..2 24577.554862: 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
128991          <idle>-0     (-----) [002] d..1 24577.554871: cpu_idle: state=0 cpu_id=2
128992   sfEventThread-23906 (23896) [000] d..3 24577.554875: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
128993            adbd-23485 ( 1007) [003] d..2 24577.554879: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
128994          <idle>-0     (-----) [003] d..1 24577.554885: cpu_idle: state=0 cpu_id=3
128995   sfEventThread-23906 (23896) [000] d..4 24577.554893: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
128996              ps-13422 (13422) [001] d.h2 24577.554898: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
128997          <idle>-0     (-----) [003] .n.1 24577.554898: cpu_idle: state=4294967295 cpu_id=3
128998          <idle>-0     (-----) [003] d..2 24577.554903: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
128999              ps-13422 (13422) [001] d.h3 24577.554909: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
129000   sfEventThread-23906 (23896) [000] d..2 24577.554914: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129001          <idle>-0     (-----) [002] .n.1 24577.554915: cpu_idle: state=4294967295 cpu_id=2
129002          <idle>-0     (-----) [002] d..2 24577.554922: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
129003          <idle>-0     (-----) [000] d..1 24577.554922: cpu_idle: state=0 cpu_id=0
129004   kworker/u17:2-23076 (23076) [002] d..2 24577.554931: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
129005              ps-13422 (13422) [001] d..2 24577.554936: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129006   kworker/u17:2-23076 (23076) [002] d..3 24577.554938: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
129007              ps-13422 (13422) [001] dn.3 24577.554944: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129008              ps-13422 (13422) [001] d..2 24577.554950: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129009   kworker/u17:2-23076 (23076) [002] d..2 24577.554951: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
129010     kworker/2:0-12895 (12895) [002] d..2 24577.554958: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
129011 shell svc 13418-13419 ( 1007) [001] d..2 24577.554974: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129012     kworker/2:0-12895 (12895) [002] d..3 24577.554981: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
129013     kworker/2:0-12895 (12895) [002] d..2 24577.554990: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
129014            adbd-23485 ( 1007) [002] d..2 24577.555032: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129015          <idle>-0     (-----) [002] d..1 24577.555042: cpu_idle: state=0 cpu_id=2
129016              ps-13422 (13422) [001] d.h2 24577.555047: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
129017          <idle>-0     (-----) [000] d.h3 24577.555055: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
129018              ps-13422 (13422) [001] d.h3 24577.555058: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
129019          <idle>-0     (-----) [002] .n.1 24577.555064: cpu_idle: state=4294967295 cpu_id=2
129020          <idle>-0     (-----) [000] dnh4 24577.555068: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
129021          <idle>-0     (-----) [002] d..2 24577.555070: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
129022          <idle>-0     (-----) [000] .n.1 24577.555076: cpu_idle: state=4294967295 cpu_id=0
129023   kworker/u17:2-23076 (23076) [002] d..2 24577.555078: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
129024          <idle>-0     (-----) [000] d..2 24577.555082: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
129025   kworker/u17:2-23076 (23076) [002] d..3 24577.555084: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
129026   kworker/u17:2-23076 (23076) [002] d..2 24577.555097: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
129027     kworker/2:0-12895 (12895) [002] d..2 24577.555102: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
129028     kworker/2:0-12895 (12895) [002] d..3 24577.555111: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
129029     kworker/2:0-12895 (12895) [002] d..2 24577.555119: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
129030              ps-13422 (13422) [001] d..2 24577.555120: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129031 kgsl_worker_thr-246   (  246) [000] d..2 24577.555124: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
129032              ps-13422 (13422) [001] dn.3 24577.555128: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129033              ps-13422 (13422) [001] d..2 24577.555134: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129034 kgsl_worker_thr-246   (  246) [000] d..3 24577.555146: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
129035            adbd-23485 ( 1007) [002] d..2 24577.555146: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129036          <idle>-0     (-----) [002] d..1 24577.555154: cpu_idle: state=0 cpu_id=2
129037 shell svc 13418-13419 ( 1007) [001] d..2 24577.555158: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129038 kgsl_worker_thr-246   (  246) [000] d..2 24577.555162: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
129039  surfaceflinger-23896 (23896) [003] d..1 24577.555233: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
129040  surfaceflinger-23896 (23896) [003] d..2 24577.555251: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
129041          <idle>-0     (-----) [002] .n.1 24577.555257: cpu_idle: state=4294967295 cpu_id=2
129042              ps-13422 (13422) [001] d.h2 24577.555260: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
129043          <idle>-0     (-----) [002] d..2 24577.555263: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
129044              ps-13422 (13422) [001] d.h3 24577.555275: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
129045   sfEventThread-23906 (23896) [002] d..2 24577.555290: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
129046   kworker/u17:2-23076 (23076) [002] d..2 24577.555298: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
129047   kworker/u17:2-23076 (23076) [002] d..3 24577.555304: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
129048   kworker/u17:2-23076 (23076) [002] d..2 24577.555317: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
129049              ps-13422 (13422) [001] d..2 24577.555322: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129050     kworker/2:0-12895 (12895) [002] d..2 24577.555324: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
129051              ps-13422 (13422) [001] dn.3 24577.555330: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129052     kworker/2:0-12895 (12895) [002] d..3 24577.555333: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
129053              ps-13422 (13422) [001] d..2 24577.555336: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129054     kworker/2:0-12895 (12895) [002] d..2 24577.555341: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
129055            adbd-23484 ( 1007) [002] d..2 24577.555353: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
129056  kworker/u16:10-23868 (23868) [000] d..2 24577.555354: 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
129057            adbd-23484 ( 1007) [002] d..3 24577.555359: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
129058 shell svc 13418-13419 ( 1007) [001] d..2 24577.555360: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129059          <idle>-0     (-----) [000] d..1 24577.555363: cpu_idle: state=0 cpu_id=0
129060            adbd-23484 ( 1007) [002] d..2 24577.555398: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
129061  surfaceflinger-23896 (23896) [003] ...1 24577.555414: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
129062  surfaceflinger-23896 (23896) [003] ...1 24577.555420: tracing_mark_write: E|23896
129063            adbd-1007  ( 1007) [002] d..1 24577.555458: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
129064  surfaceflinger-23896 (23896) [003] .... 24577.555472: binder_transaction: transaction=1671663 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
129065            adbd-1007  ( 1007) [002] d..2 24577.555483: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
129066              ps-13422 (13422) [001] d..2 24577.555491: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129067  surfaceflinger-23896 (23896) [003] ...2 24577.555499: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
129068              ps-13422 (13422) [001] dn.3 24577.555501: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129069              ps-13422 (13422) [001] d..2 24577.555506: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129070  surfaceflinger-23896 (23896) [003] d..4 24577.555507: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
129071            adbd-1007  ( 1007) [002] d..2 24577.555519: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129072  surfaceflinger-23896 (23896) [003] d..5 24577.555520: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
129073          <idle>-0     (-----) [000] .n.1 24577.555525: cpu_idle: state=4294967295 cpu_id=0
129074          <idle>-0     (-----) [002] d..1 24577.555529: cpu_idle: state=0 cpu_id=2
129075 shell svc 13418-13419 ( 1007) [001] d..2 24577.555530: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129076          <idle>-0     (-----) [000] d..2 24577.555532: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
129077  surfaceflinger-23896 (23896) [003] d..2 24577.555534: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
129078  HwBinder:598_3-633   (  598) [000] .... 24577.555541: binder_transaction_received: transaction=1671663
129079            adbd-23485 ( 1007) [003] d..2 24577.555580: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
129080          <idle>-0     (-----) [003] d..1 24577.555587: cpu_idle: state=0 cpu_id=3
129081              ps-13422 (13422) [001] d.h2 24577.555587: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
129082  HwBinder:598_3-633   (  598) [000] ...1 24577.555591: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
129083              ps-13422 (13422) [001] d.h3 24577.555599: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
129084          <idle>-0     (-----) [002] .n.1 24577.555604: cpu_idle: state=4294967295 cpu_id=2
129085          <idle>-0     (-----) [002] d..2 24577.555611: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
129086   kworker/u17:2-23076 (23076) [002] d..2 24577.555620: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
129087   kworker/u17:2-23076 (23076) [002] d..3 24577.555626: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
129088   kworker/u17:2-23076 (23076) [002] d..2 24577.555639: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
129089     kworker/2:0-12895 (12895) [002] d..2 24577.555645: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
129090     kworker/2:0-12895 (12895) [002] d..3 24577.555667: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
129091     kworker/2:0-12895 (12895) [002] d..2 24577.555677: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
129092              ps-13422 (13422) [001] d..2 24577.555678: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129093              ps-13422 (13422) [001] dn.3 24577.555687: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129094              ps-13422 (13422) [001] d..2 24577.555692: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129095 shell svc 13418-13419 ( 1007) [001] d..2 24577.555716: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129096  HwBinder:598_3-633   (  598) [000] ...1 24577.555717: tracing_mark_write: B|598|HWCSession::PresentDisplay::
129097            adbd-23485 ( 1007) [002] d..2 24577.555721: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129098          <idle>-0     (-----) [002] d..1 24577.555729: cpu_idle: state=0 cpu_id=2
129099              ps-13422 (13422) [001] d.h2 24577.555731: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
129100              ps-13422 (13422) [001] d.h3 24577.555741: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
129101          <idle>-0     (-----) [002] .n.1 24577.555746: cpu_idle: state=4294967295 cpu_id=2
129102          <idle>-0     (-----) [002] d..2 24577.555752: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
129103   kworker/u17:2-23076 (23076) [002] d..2 24577.555760: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
129104   kworker/u17:2-23076 (23076) [002] d..3 24577.555766: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
129105   kworker/u17:2-23076 (23076) [002] d..2 24577.555779: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
129106     kworker/2:0-12895 (12895) [002] d..2 24577.555783: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
129107     kworker/2:0-12895 (12895) [002] d..3 24577.555792: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
129108     kworker/2:0-12895 (12895) [002] d..2 24577.555801: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
129109            adbd-23485 ( 1007) [002] d..2 24577.555818: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129110          <idle>-0     (-----) [002] d..1 24577.555825: cpu_idle: state=0 cpu_id=2
129111              ps-13422 (13422) [001] d..2 24577.555864: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129112              ps-13422 (13422) [001] dn.3 24577.555873: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129113              ps-13422 (13422) [001] d..2 24577.555878: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129114  HwBinder:598_3-633   (  598) [000] ...1 24577.555901: tracing_mark_write: B|598|HWDeviceDRM::Commit::
129115 shell svc 13418-13419 ( 1007) [001] d..2 24577.555902: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129116  HwBinder:598_3-633   (  598) [000] ...1 24577.555913: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
129117              ps-13422 (13422) [001] d.h2 24577.555924: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
129118              ps-13422 (13422) [001] d.h3 24577.555947: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129119              ps-13422 (13422) [001] d..2 24577.556071: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129120              ps-13422 (13422) [001] dn.3 24577.556080: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129121              ps-13422 (13422) [001] d..2 24577.556089: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129122 shell svc 13418-13419 ( 1007) [001] d..2 24577.556113: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129123              ps-13422 (13422) [001] d..2 24577.556237: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129124              ps-13422 (13422) [001] dn.3 24577.556246: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129125              ps-13422 (13422) [001] d..2 24577.556252: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129126 shell svc 13418-13419 ( 1007) [001] d..2 24577.556275: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129127              ps-13422 (13422) [001] d..2 24577.556397: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129128              ps-13422 (13422) [001] dn.3 24577.556406: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129129              ps-13422 (13422) [001] d..2 24577.556412: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129130 shell svc 13418-13419 ( 1007) [001] d..2 24577.556435: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129131  HwBinder:598_3-633   (  598) [000] d..2 24577.556481: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
129132  HwBinder:598_3-633   (  598) [000] d..3 24577.556494: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
129133          <idle>-0     (-----) [003] .n.1 24577.556499: cpu_idle: state=4294967295 cpu_id=3
129134          <idle>-0     (-----) [003] d..2 24577.556503: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
129135              ps-13422 (13422) [001] d..2 24577.556556: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129136              ps-13422 (13422) [001] dn.3 24577.556565: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129137              ps-13422 (13422) [001] d..2 24577.556571: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129138  HwBinder:598_3-633   (  598) [000] ...1 24577.556576: tracing_mark_write: E|598
129139  HwBinder:598_3-633   (  598) [000] ...1 24577.556580: tracing_mark_write: E|598
129140 shell svc 13418-13419 ( 1007) [001] d..2 24577.556595: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129141  HwBinder:598_3-633   (  598) [000] ...1 24577.556641: tracing_mark_write: E|598
129142  HwBinder:598_3-633   (  598) [000] ...1 24577.556698: tracing_mark_write: E|598
129143  HwBinder:598_3-633   (  598) [000] .... 24577.556710: binder_transaction: transaction=1671664 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
129144              ps-13422 (13422) [001] d..2 24577.556717: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129145  HwBinder:598_3-633   (  598) [000] d..2 24577.556724: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
129146              ps-13422 (13422) [001] dn.3 24577.556726: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129147              ps-13422 (13422) [001] d..2 24577.556732: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129148  HwBinder:598_3-633   (  598) [000] d..3 24577.556741: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
129149  HwBinder:598_3-633   (  598) [000] .... 24577.556743: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
129150          <idle>-0     (-----) [002] .n.1 24577.556745: cpu_idle: state=4294967295 cpu_id=2
129151          <idle>-0     (-----) [002] d..2 24577.556751: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
129152 shell svc 13418-13419 ( 1007) [001] d..2 24577.556756: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129153  surfaceflinger-23896 (23896) [002] .... 24577.556757: binder_transaction_received: transaction=1671664
129154  HwBinder:598_3-633   (  598) [000] d..2 24577.556796: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
129155   kworker/u17:2-23076 (23076) [000] d..2 24577.556806: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129156   kworker/u17:2-23076 (23076) [000] d..3 24577.556813: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129157   kworker/u17:2-23076 (23076) [000] d..2 24577.556826: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
129158     kworker/0:1-13012 (13012) [000] d..2 24577.556835: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
129159     kworker/0:1-13012 (13012) [000] d..3 24577.556856: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
129160     kworker/0:1-13012 (13012) [000] d..2 24577.556866: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
129161            adbd-23484 ( 1007) [000] d..2 24577.556878: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
129162 crtc_commit:111-253   (  253) [003] d..2 24577.556881: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
129163              ps-13422 (13422) [001] d..2 24577.556883: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129164          <idle>-0     (-----) [003] d..1 24577.556886: cpu_idle: state=0 cpu_id=3
129165            adbd-23484 ( 1007) [000] d..3 24577.556889: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
129166              ps-13422 (13422) [001] dn.3 24577.556892: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129167              ps-13422 (13422) [001] d..2 24577.556898: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129168 shell svc 13418-13419 ( 1007) [001] d..2 24577.556922: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129169            adbd-23484 ( 1007) [000] d..2 24577.556928: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
129170            adbd-1007  ( 1007) [000] d..1 24577.556998: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
129171            adbd-1007  ( 1007) [000] d..2 24577.557011: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
129172              ps-13422 (13422) [001] d..2 24577.557046: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129173            adbd-1007  ( 1007) [000] d..2 24577.557046: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129174              ps-13422 (13422) [001] dn.3 24577.557054: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129175          <idle>-0     (-----) [000] d..1 24577.557056: cpu_idle: state=0 cpu_id=0
129176              ps-13422 (13422) [001] d..2 24577.557060: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129177 shell svc 13418-13419 ( 1007) [001] d..2 24577.557084: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129178  surfaceflinger-23896 (23896) [002] d..2 24577.557096: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
129179            adbd-23485 ( 1007) [002] d..2 24577.557142: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129180              ps-13422 (13422) [001] d.h2 24577.557150: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129181          <idle>-0     (-----) [002] d..1 24577.557152: cpu_idle: state=0 cpu_id=2
129182              ps-13422 (13422) [001] d.h3 24577.557162: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129183          <idle>-0     (-----) [000] .n.1 24577.557168: cpu_idle: state=4294967295 cpu_id=0
129184          <idle>-0     (-----) [000] d..2 24577.557175: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
129185   kworker/u17:2-23076 (23076) [000] d..2 24577.557186: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129186   kworker/u17:2-23076 (23076) [000] d..3 24577.557193: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129187   kworker/u17:2-23076 (23076) [000] d..2 24577.557206: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
129188     kworker/0:1-13012 (13012) [000] d..2 24577.557213: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
129189     kworker/0:1-13012 (13012) [000] d..3 24577.557222: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
129190          <idle>-0     (-----) [002] .n.1 24577.557228: cpu_idle: state=4294967295 cpu_id=2
129191          <idle>-0     (-----) [002] d..2 24577.557235: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
129192     kworker/0:1-13012 (13012) [000] d..2 24577.557237: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129193              ps-13422 (13422) [001] d..2 24577.557240: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129194          <idle>-0     (-----) [000] d..1 24577.557245: cpu_idle: state=0 cpu_id=0
129195              ps-13422 (13422) [001] dn.3 24577.557248: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129196              ps-13422 (13422) [001] d..2 24577.557254: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129197            adbd-23485 ( 1007) [002] d..2 24577.557277: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129198 shell svc 13418-13419 ( 1007) [001] d..2 24577.557279: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129199          <idle>-0     (-----) [002] d..1 24577.557285: cpu_idle: state=0 cpu_id=2
129200              ps-13422 (13422) [001] d.h2 24577.557299: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129201              ps-13422 (13422) [001] d.h3 24577.557309: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129202          <idle>-0     (-----) [000] .n.1 24577.557315: cpu_idle: state=4294967295 cpu_id=0
129203          <idle>-0     (-----) [000] d..2 24577.557321: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
129204   kworker/u17:2-23076 (23076) [000] d..2 24577.557330: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129205   kworker/u17:2-23076 (23076) [000] d..3 24577.557336: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129206   kworker/u17:2-23076 (23076) [000] d..2 24577.557349: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
129207     kworker/0:1-13012 (13012) [000] d..2 24577.557356: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
129208     kworker/0:1-13012 (13012) [000] d..3 24577.557364: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
129209          <idle>-0     (-----) [002] .n.1 24577.557369: cpu_idle: state=4294967295 cpu_id=2
129210          <idle>-0     (-----) [002] d..2 24577.557376: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
129211     kworker/0:1-13012 (13012) [000] d..2 24577.557379: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129212          <idle>-0     (-----) [000] d..1 24577.557387: cpu_idle: state=0 cpu_id=0
129213            adbd-23485 ( 1007) [002] d..2 24577.557394: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129214          <idle>-0     (-----) [002] d..1 24577.557401: cpu_idle: state=0 cpu_id=2
129215              ps-13422 (13422) [001] d..2 24577.557433: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129216              ps-13422 (13422) [001] dn.3 24577.557443: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129217              ps-13422 (13422) [001] d..2 24577.557449: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129218 shell svc 13418-13419 ( 1007) [001] d..2 24577.557474: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129219              ps-13422 (13422) [001] d.h2 24577.557521: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129220              ps-13422 (13422) [001] d.h3 24577.557532: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129221          <idle>-0     (-----) [000] .n.1 24577.557537: cpu_idle: state=4294967295 cpu_id=0
129222          <idle>-0     (-----) [000] d..2 24577.557544: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
129223   kworker/u17:2-23076 (23076) [000] d..2 24577.557573: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129224   kworker/u17:2-23076 (23076) [000] d..3 24577.557626: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129225   kworker/u17:2-23076 (23076) [000] d..2 24577.557639: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
129226     kworker/0:1-13012 (13012) [000] d..2 24577.557646: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
129227          <idle>-0     (-----) [003] d.H3 24577.557653: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
129228     kworker/0:1-13012 (13012) [000] d..3 24577.557658: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
129229              ps-13422 (13422) [001] d..2 24577.557664: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129230          <idle>-0     (-----) [003] d.H3 24577.557666: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
129231     kworker/0:1-13012 (13012) [000] d..2 24577.557667: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
129232          <idle>-0     (-----) [007] dnh2 24577.557668: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
129233          <idle>-0     (-----) [007] .n.1 24577.557670: cpu_idle: state=4294967295 cpu_id=7
129234          <idle>-0     (-----) [007] d..2 24577.557673: 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
129235              ps-13422 (13422) [001] dn.3 24577.557675: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129236          <idle>-0     (-----) [003] d.H4 24577.557678: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
129237            adbd-23484 ( 1007) [000] d..2 24577.557678: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
129238              ps-13422 (13422) [001] d..2 24577.557680: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129239          <idle>-0     (-----) [002] .n.1 24577.557683: cpu_idle: state=4294967295 cpu_id=2
129240          <idle>-0     (-----) [003] d.s3 24577.557685: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
129241            adbd-23484 ( 1007) [000] d..3 24577.557685: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
129242         sugov:4-560   (  560) [007] .... 24577.557686: clk_set_rate: perfcl_clk 825600000
129243         sugov:4-560   (  560) [007] .... 24577.557687: clk_set_rate: cpu7_perfcl_clk 2169600000
129244          <idle>-0     (-----) [002] d..2 24577.557690: 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
129245          <idle>-0     (-----) [003] dns4 24577.557691: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
129246         sugov:4-560   (  560) [007] .... 24577.557692: clk_set_rate: cpu6_perfcl_clk 2169600000
129247          <idle>-0     (-----) [003] dns2 24577.557694: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
129248         sugov:4-560   (  560) [007] .... 24577.557696: clk_set_rate: cpu5_perfcl_clk 2169600000
129249         sugov:4-560   (  560) [007] .... 24577.557701: clk_set_rate: cpu4_perfcl_clk 825600000
129250         sugov:4-560   (  560) [007] .... 24577.557705: cpu_frequency: state=825600 cpu_id=4
129251 shell svc 13418-13419 ( 1007) [001] d..2 24577.557706: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129252          <idle>-0     (-----) [003] dns3 24577.557713: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
129253          <idle>-0     (-----) [003] .n.1 24577.557720: cpu_idle: state=4294967295 cpu_id=3
129254            adbd-23484 ( 1007) [000] d..2 24577.557721: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
129255         sugov:0-559   (  559) [002] .... 24577.557722: clk_set_rate: pwrcl_clk 1766400000
129256          <idle>-0     (-----) [003] d..2 24577.557726: 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
129257     kworker/3:1-12662 (12662) [003] d..2 24577.557755: 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
129258          <idle>-0     (-----) [003] d..1 24577.557764: cpu_idle: state=0 cpu_id=3
129259            adbd-1007  ( 1007) [000] d..1 24577.557781: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
129260         sugov:0-559   (  559) [002] d..2 24577.557798: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
129261            adbd-1007  ( 1007) [000] d..2 24577.557803: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
129262     rcu_preempt-7     (    7) [002] d..2 24577.557814: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
129263          <idle>-0     (-----) [003] d.s3 24577.557818: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
129264              ps-13422 (13422) [001] d..2 24577.557827: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129265          <idle>-0     (-----) [003] d.s4 24577.557835: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
129266              ps-13422 (13422) [001] dn.3 24577.557835: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129267              ps-13422 (13422) [001] d..2 24577.557841: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129268          <idle>-0     (-----) [003] ...1 24577.557842: cpu_idle: state=4294967295 cpu_id=3
129269          <idle>-0     (-----) [003] d..1 24577.557845: cpu_idle: state=0 cpu_id=3
129270            adbd-23485 ( 1007) [002] d..2 24577.557855: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129271 shell svc 13418-13419 ( 1007) [001] d.h2 24577.557859: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129272            adbd-1007  ( 1007) [000] d..2 24577.557860: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
129273          <idle>-0     (-----) [002] d..1 24577.557863: cpu_idle: state=0 cpu_id=2
129274         sugov:4-560   (  560) [007] d..2 24577.557869: 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
129275         sugov:0-559   (  559) [000] .... 24577.557875: clk_set_rate: cpu3_pwrcl_clk 1612800000
129276          <idle>-0     (-----) [007] d..1 24577.557875: cpu_idle: state=0 cpu_id=7
129277 shell svc 13418-13419 ( 1007) [001] d.h3 24577.557877: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129278         sugov:0-559   (  559) [000] .... 24577.557885: clk_set_rate: cpu2_pwrcl_clk 1612800000
129279         sugov:0-559   (  559) [000] .... 24577.557892: clk_set_rate: cpu1_pwrcl_clk 1612800000
129280         sugov:0-559   (  559) [000] .... 24577.557899: clk_set_rate: cpu0_pwrcl_clk 1766400000
129281 shell svc 13418-13419 ( 1007) [001] d..2 24577.557900: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
129282          <idle>-0     (-----) [003] d.s3 24577.557901: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
129283         sugov:0-559   (  559) [000] .... 24577.557906: cpu_frequency: state=1766400 cpu_id=0
129284   kworker/u17:2-23076 (23076) [001] d..2 24577.557911: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129285          <idle>-0     (-----) [003] ...1 24577.557914: cpu_idle: state=4294967295 cpu_id=3
129286          <idle>-0     (-----) [007] dnh2 24577.557917: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
129287          <idle>-0     (-----) [003] d..1 24577.557918: cpu_idle: state=0 cpu_id=3
129288          <idle>-0     (-----) [007] .n.1 24577.557921: cpu_idle: state=4294967295 cpu_id=7
129289   kworker/u17:2-23076 (23076) [001] d..3 24577.557922: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129290         sugov:0-559   (  559) [000] d..2 24577.557926: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=ps next_pid=13422 next_prio=120
129291          <idle>-0     (-----) [007] d..2 24577.557926: 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
129292         sugov:4-560   (  560) [007] d..1 24577.557931: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
129293   kworker/u17:2-23076 (23076) [001] d..2 24577.557937: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
129294         sugov:4-560   (  560) [007] .... 24577.557944: cpu_frequency: state=825600 cpu_id=5
129295     kworker/1:1-13091 (13091) [001] d..2 24577.557946: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
129296         sugov:4-560   (  560) [007] .... 24577.557947: cpu_frequency: state=825600 cpu_id=6
129297         sugov:4-560   (  560) [007] .... 24577.557950: cpu_frequency: state=825600 cpu_id=7
129298          <idle>-0     (-----) [003] dnh2 24577.557954: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
129299          <idle>-0     (-----) [003] .n.1 24577.557960: cpu_idle: state=4294967295 cpu_id=3
129300         sugov:4-560   (  560) [007] d..2 24577.557962: 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
129301     kworker/1:1-13091 (13091) [001] d..3 24577.557963: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
129302          <idle>-0     (-----) [003] d..2 24577.557966: 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
129303          <idle>-0     (-----) [002] .n.1 24577.557967: cpu_idle: state=4294967295 cpu_id=2
129304          <idle>-0     (-----) [007] d..1 24577.557968: cpu_idle: state=0 cpu_id=7
129305          <idle>-0     (-----) [002] d..2 24577.557973: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
129306     kworker/1:1-13091 (13091) [001] d..2 24577.557982: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129307          <idle>-0     (-----) [001] d..1 24577.558003: cpu_idle: state=0 cpu_id=1
129308            adbd-23485 ( 1007) [002] d..2 24577.558009: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129309          <idle>-0     (-----) [002] d..1 24577.558015: cpu_idle: state=0 cpu_id=2
129310          <idle>-0     (-----) [001] d.h3 24577.558027: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129311          <idle>-0     (-----) [001] dnh4 24577.558035: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129312          <idle>-0     (-----) [001] .n.1 24577.558040: cpu_idle: state=4294967295 cpu_id=1
129313          <idle>-0     (-----) [001] d..2 24577.558047: 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
129314   kworker/u17:2-23076 (23076) [001] d..2 24577.558056: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129315   kworker/u17:2-23076 (23076) [001] d..3 24577.558061: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129316              ps-13422 (13422) [000] d..2 24577.558061: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129317         sugov:0-559   (  559) [003] d..2 24577.558073: 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
129318              ps-13422 (13422) [000] dn.3 24577.558077: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129319   kworker/u17:2-23076 (23076) [001] d..2 24577.558078: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
129320              ps-13422 (13422) [000] d..2 24577.558083: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129321     kworker/1:1-13091 (13091) [001] d..2 24577.558084: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
129322     kworker/1:1-13091 (13091) [001] d..3 24577.558092: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
129323          <idle>-0     (-----) [002] .n.1 24577.558097: cpu_idle: state=4294967295 cpu_id=2
129324          <idle>-0     (-----) [003] d.s4 24577.558099: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
129325          <idle>-0     (-----) [002] d..2 24577.558104: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
129326          <idle>-0     (-----) [003] d.s5 24577.558119: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
129327            adbd-23485 ( 1007) [002] d..2 24577.558120: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129328 shell svc 13418-13419 ( 1007) [000] d..2 24577.558124: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129329          <idle>-0     (-----) [002] d..1 24577.558125: cpu_idle: state=0 cpu_id=2
129330     kworker/1:1-13091 (13091) [001] d..2 24577.558126: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
129331          <idle>-0     (-----) [003] d..1 24577.558131: cpu_idle: state=0 cpu_id=3
129332          <idle>-0     (-----) [000] d..1 24577.558135: cpu_idle: state=0 cpu_id=0
129333         sugov:0-559   (  559) [001] .... 24577.558138: cpu_frequency: state=1766400 cpu_id=1
129334         sugov:0-559   (  559) [001] .... 24577.558142: cpu_frequency: state=1766400 cpu_id=2
129335         sugov:0-559   (  559) [001] .... 24577.558146: cpu_frequency: state=1766400 cpu_id=3
129336         sugov:0-559   (  559) [001] d..2 24577.558155: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129337              ps-13422 (13422) [001] d.h2 24577.558234: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129338              ps-13422 (13422) [001] d.h3 24577.558252: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129339          <idle>-0     (-----) [000] .n.1 24577.558257: cpu_idle: state=4294967295 cpu_id=0
129340          <idle>-0     (-----) [000] d..2 24577.558264: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
129341   kworker/u17:2-23076 (23076) [000] d..2 24577.558274: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129342   kworker/u17:2-23076 (23076) [000] d..3 24577.558281: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129343   kworker/u17:2-23076 (23076) [000] d..2 24577.558294: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
129344     kworker/0:1-13012 (13012) [000] d..2 24577.558301: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
129345     kworker/0:1-13012 (13012) [000] d..3 24577.558317: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
129346          <idle>-0     (-----) [002] .n.1 24577.558321: cpu_idle: state=4294967295 cpu_id=2
129347          <idle>-0     (-----) [002] d..2 24577.558327: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
129348              ps-13422 (13422) [001] d..2 24577.558331: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129349     kworker/0:1-13012 (13012) [000] d..2 24577.558332: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129350            adbd-23484 ( 1007) [002] d..2 24577.558339: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
129351          <idle>-0     (-----) [000] d..1 24577.558339: cpu_idle: state=0 cpu_id=0
129352              ps-13422 (13422) [001] dn.3 24577.558344: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129353              ps-13422 (13422) [001] d..2 24577.558350: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129354            adbd-23484 ( 1007) [002] d..3 24577.558350: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
129355 shell svc 13418-13419 ( 1007) [001] d..2 24577.558374: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129356            adbd-23484 ( 1007) [002] d..2 24577.558385: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
129357            adbd-1007  ( 1007) [002] d..1 24577.558445: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
129358            adbd-1007  ( 1007) [002] d..2 24577.558457: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
129359            adbd-1007  ( 1007) [002] d..2 24577.558484: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
129360              ps-13422 (13422) [001] d..2 24577.558510: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129361              ps-13422 (13422) [001] dn.3 24577.558518: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129362            adbd-23485 ( 1007) [002] d..2 24577.558536: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129363              ps-13422 (13422) [001] d.h2 24577.558549: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129364              ps-13422 (13422) [001] d.h3 24577.558557: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129365          <idle>-0     (-----) [000] .n.1 24577.558563: cpu_idle: state=4294967295 cpu_id=0
129366 shell svc 13418-13419 ( 1007) [002] d..2 24577.558567: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129367          <idle>-0     (-----) [000] d..2 24577.558570: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
129368          <idle>-0     (-----) [002] d..1 24577.558574: cpu_idle: state=0 cpu_id=2
129369   kworker/u17:2-23076 (23076) [000] d..2 24577.558579: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129370   kworker/u17:2-23076 (23076) [000] d..3 24577.558584: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129371   kworker/u17:2-23076 (23076) [000] d..2 24577.558598: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
129372     kworker/0:1-13012 (13012) [000] d..2 24577.558604: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
129373     kworker/0:1-13012 (13012) [000] d..3 24577.558614: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
129374          <idle>-0     (-----) [002] .n.1 24577.558619: cpu_idle: state=4294967295 cpu_id=2
129375          <idle>-0     (-----) [002] d..2 24577.558626: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
129376     kworker/0:1-13012 (13012) [000] d..2 24577.558627: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129377          <idle>-0     (-----) [000] d..1 24577.558634: cpu_idle: state=0 cpu_id=0
129378            adbd-23485 ( 1007) [002] d..2 24577.558669: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129379          <idle>-0     (-----) [002] d..1 24577.558675: cpu_idle: state=0 cpu_id=2
129380              ps-13422 (13422) [001] d..2 24577.558677: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
129381              ps-13422 (13422) [001] dn.3 24577.558690: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129382              ps-13422 (13422) [001] dnh3 24577.558701: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129383              ps-13422 (13422) [001] dnh4 24577.558710: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129384          <idle>-0     (-----) [000] .n.1 24577.558715: cpu_idle: state=4294967295 cpu_id=0
129385              ps-13422 (13422) [001] d..2 24577.558718: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129386          <idle>-0     (-----) [000] d..2 24577.558720: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
129387   kworker/u17:2-23076 (23076) [000] d..2 24577.558730: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129388   kworker/u17:2-23076 (23076) [000] d..3 24577.558736: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129389 shell svc 13418-13419 ( 1007) [001] d..2 24577.558743: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129390   kworker/u17:2-23076 (23076) [000] d..2 24577.558749: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
129391     kworker/0:1-13012 (13012) [000] d..2 24577.558755: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
129392     kworker/0:1-13012 (13012) [000] d..3 24577.558763: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
129393          <idle>-0     (-----) [002] .n.1 24577.558768: cpu_idle: state=4294967295 cpu_id=2
129394          <idle>-0     (-----) [002] d..2 24577.558774: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
129395     kworker/0:1-13012 (13012) [000] d..2 24577.558776: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129396          <idle>-0     (-----) [000] d..1 24577.558782: cpu_idle: state=0 cpu_id=0
129397            adbd-23485 ( 1007) [002] d..2 24577.558789: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129398          <idle>-0     (-----) [002] d..1 24577.558794: cpu_idle: state=0 cpu_id=2
129399              ps-13422 (13422) [001] d..2 24577.558876: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129400              ps-13422 (13422) [001] dn.3 24577.558886: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129401              ps-13422 (13422) [001] d..2 24577.558891: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129402 shell svc 13418-13419 ( 1007) [001] d.h2 24577.558912: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129403 shell svc 13418-13419 ( 1007) [001] d.h3 24577.558922: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129404          <idle>-0     (-----) [000] .n.1 24577.558927: cpu_idle: state=4294967295 cpu_id=0
129405          <idle>-0     (-----) [000] d..2 24577.558932: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
129406   kworker/u17:2-23076 (23076) [000] d..2 24577.558940: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129407 shell svc 13418-13419 ( 1007) [001] d..2 24577.558940: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129408   kworker/u17:2-23076 (23076) [000] d..3 24577.558946: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129409   kworker/u17:2-23076 (23076) [000] d..2 24577.558958: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
129410     kworker/0:1-13012 (13012) [000] d..2 24577.558966: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
129411     kworker/0:1-13012 (13012) [000] d..3 24577.558986: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
129412     kworker/0:1-13012 (13012) [000] d..2 24577.558994: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
129413            adbd-23484 ( 1007) [000] d..2 24577.559006: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
129414            adbd-23484 ( 1007) [000] d..3 24577.559015: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
129415            adbd-23484 ( 1007) [000] d..2 24577.559054: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
129416              ps-13422 (13422) [001] d..2 24577.559075: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129417              ps-13422 (13422) [001] dn.3 24577.559083: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129418              ps-13422 (13422) [001] d..2 24577.559088: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129419 shell svc 13418-13419 ( 1007) [001] d..2 24577.559111: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129420            adbd-1007  ( 1007) [000] d..1 24577.559113: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
129421            adbd-1007  ( 1007) [000] d..2 24577.559123: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
129422          <idle>-0     (-----) [002] .n.1 24577.559128: cpu_idle: state=4294967295 cpu_id=2
129423          <idle>-0     (-----) [002] d..2 24577.559133: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
129424            adbd-1007  ( 1007) [000] d..2 24577.559155: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129425          <idle>-0     (-----) [000] d..1 24577.559164: cpu_idle: state=0 cpu_id=0
129426            adbd-23485 ( 1007) [002] d..2 24577.559171: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129427          <idle>-0     (-----) [002] d..1 24577.559177: cpu_idle: state=0 cpu_id=2
129428              ps-13422 (13422) [001] d.h2 24577.559192: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129429              ps-13422 (13422) [001] d.h3 24577.559202: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129430          <idle>-0     (-----) [000] .n.1 24577.559207: cpu_idle: state=4294967295 cpu_id=0
129431          <idle>-0     (-----) [000] d..2 24577.559214: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
129432   kworker/u17:2-23076 (23076) [000] d..2 24577.559223: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129433   kworker/u17:2-23076 (23076) [000] d..3 24577.559229: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129434   kworker/u17:2-23076 (23076) [000] d..2 24577.559242: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
129435     kworker/0:1-13012 (13012) [000] d..2 24577.559248: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
129436     kworker/0:1-13012 (13012) [000] d..3 24577.559256: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
129437          <idle>-0     (-----) [002] .n.1 24577.559261: cpu_idle: state=4294967295 cpu_id=2
129438              ps-13422 (13422) [001] d..2 24577.559263: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129439          <idle>-0     (-----) [002] d..2 24577.559268: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
129440     kworker/0:1-13012 (13012) [000] d..2 24577.559270: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129441              ps-13422 (13422) [001] dn.3 24577.559271: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129442          <idle>-0     (-----) [000] d..1 24577.559276: cpu_idle: state=0 cpu_id=0
129443              ps-13422 (13422) [001] d..2 24577.559277: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129444 shell svc 13418-13419 ( 1007) [001] d..2 24577.559299: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129445            adbd-23485 ( 1007) [002] d..2 24577.559306: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129446          <idle>-0     (-----) [002] d..1 24577.559311: cpu_idle: state=0 cpu_id=2
129447              ps-13422 (13422) [001] d.h2 24577.559318: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129448              ps-13422 (13422) [001] d.h3 24577.559328: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129449          <idle>-0     (-----) [000] .n.1 24577.559332: cpu_idle: state=4294967295 cpu_id=0
129450          <idle>-0     (-----) [000] d..2 24577.559338: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
129451   kworker/u17:2-23076 (23076) [000] d..2 24577.559347: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129452   kworker/u17:2-23076 (23076) [000] d..3 24577.559352: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129453   kworker/u17:2-23076 (23076) [000] d..2 24577.559364: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
129454     kworker/0:1-13012 (13012) [000] d..2 24577.559369: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
129455     kworker/0:1-13012 (13012) [000] d..3 24577.559377: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
129456          <idle>-0     (-----) [002] .n.1 24577.559382: cpu_idle: state=4294967295 cpu_id=2
129457          <idle>-0     (-----) [002] d..2 24577.559388: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
129458     kworker/0:1-13012 (13012) [000] d..2 24577.559390: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129459          <idle>-0     (-----) [000] d..1 24577.559396: cpu_idle: state=0 cpu_id=0
129460            adbd-23485 ( 1007) [002] d..2 24577.559403: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129461          <idle>-0     (-----) [002] d..1 24577.559407: cpu_idle: state=0 cpu_id=2
129462              ps-13422 (13422) [001] d..2 24577.559443: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129463              ps-13422 (13422) [001] dn.3 24577.559452: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129464              ps-13422 (13422) [001] d..2 24577.559458: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129465          <idle>-0     (-----) [003] ...1 24577.559469: cpu_idle: state=4294967295 cpu_id=3
129466          <idle>-0     (-----) [003] d..1 24577.559472: cpu_idle: state=0 cpu_id=3
129467 shell svc 13418-13419 ( 1007) [001] d..2 24577.559480: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129468              ps-13422 (13422) [001] d.h2 24577.559517: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129469              ps-13422 (13422) [001] d.h3 24577.559527: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129470          <idle>-0     (-----) [000] .n.1 24577.559532: cpu_idle: state=4294967295 cpu_id=0
129471          <idle>-0     (-----) [000] d..2 24577.559538: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
129472   kworker/u17:2-23076 (23076) [000] d..2 24577.559544: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129473   kworker/u17:2-23076 (23076) [000] d..3 24577.559550: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129474   kworker/u17:2-23076 (23076) [000] d..2 24577.559562: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
129475     kworker/0:1-13012 (13012) [000] d..2 24577.559569: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
129476     kworker/0:1-13012 (13012) [000] d..3 24577.559578: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
129477     kworker/0:1-13012 (13012) [000] d..2 24577.559585: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
129478            adbd-23484 ( 1007) [000] d..2 24577.559595: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
129479            adbd-23484 ( 1007) [000] d..3 24577.559601: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
129480              ps-13422 (13422) [001] d..2 24577.559623: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129481              ps-13422 (13422) [001] dn.3 24577.559631: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129482            adbd-23484 ( 1007) [000] d..2 24577.559637: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
129483              ps-13422 (13422) [001] d..2 24577.559637: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129484 shell svc 13418-13419 ( 1007) [001] d..2 24577.559660: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129485            adbd-1007  ( 1007) [000] d..1 24577.559691: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
129486            adbd-1007  ( 1007) [000] d..2 24577.559702: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
129487          <idle>-0     (-----) [002] .n.1 24577.559706: cpu_idle: state=4294967295 cpu_id=2
129488          <idle>-0     (-----) [002] d..2 24577.559712: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
129489            adbd-1007  ( 1007) [000] d..2 24577.559733: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129490          <idle>-0     (-----) [000] d..1 24577.559742: cpu_idle: state=0 cpu_id=0
129491            adbd-23485 ( 1007) [002] d..2 24577.559750: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129492              ps-13422 (13422) [001] d.h2 24577.559754: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129493          <idle>-0     (-----) [002] d..1 24577.559756: cpu_idle: state=0 cpu_id=2
129494              ps-13422 (13422) [001] d.h3 24577.559765: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129495          <idle>-0     (-----) [000] .n.1 24577.559770: cpu_idle: state=4294967295 cpu_id=0
129496          <idle>-0     (-----) [000] d..2 24577.559777: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
129497   kworker/u17:2-23076 (23076) [000] d..2 24577.559786: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129498   kworker/u17:2-23076 (23076) [000] d..3 24577.559792: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129499   kworker/u17:2-23076 (23076) [000] d..2 24577.559805: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
129500              ps-13422 (13422) [001] d..2 24577.559806: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129501     kworker/0:1-13012 (13012) [000] d..2 24577.559810: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
129502              ps-13422 (13422) [001] dn.3 24577.559814: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129503              ps-13422 (13422) [001] d..2 24577.559819: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129504     kworker/0:1-13012 (13012) [000] d..3 24577.559821: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
129505          <idle>-0     (-----) [002] .n.1 24577.559824: cpu_idle: state=4294967295 cpu_id=2
129506          <idle>-0     (-----) [002] d..2 24577.559829: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
129507     kworker/0:1-13012 (13012) [000] d..2 24577.559840: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129508 shell svc 13418-13419 ( 1007) [001] d..2 24577.559849: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129509          <idle>-0     (-----) [001] d..1 24577.559858: cpu_idle: state=0 cpu_id=1
129510            adbd-23485 ( 1007) [002] d..2 24577.559865: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129511          <idle>-0     (-----) [002] d..1 24577.559871: cpu_idle: state=0 cpu_id=2
129512          <idle>-0     (-----) [001] d.h3 24577.559880: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129513          <idle>-0     (-----) [001] dnh4 24577.559893: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129514          <idle>-0     (-----) [001] .n.1 24577.559899: cpu_idle: state=4294967295 cpu_id=1
129515          <idle>-0     (-----) [001] d..2 24577.559905: 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
129516   kworker/u17:2-23076 (23076) [001] d..2 24577.559915: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129517   kworker/u17:2-23076 (23076) [001] d..3 24577.559921: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129518   kworker/u17:2-23076 (23076) [001] d..2 24577.559934: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
129519     kworker/1:1-13091 (13091) [001] d..2 24577.559941: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
129520     kworker/1:1-13091 (13091) [001] d..3 24577.559949: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
129521          <idle>-0     (-----) [002] .n.1 24577.559954: cpu_idle: state=4294967295 cpu_id=2
129522          <idle>-0     (-----) [002] d..2 24577.559960: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
129523     kworker/1:1-13091 (13091) [001] d..2 24577.559962: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129524          <idle>-0     (-----) [001] d..1 24577.559970: cpu_idle: state=0 cpu_id=1
129525            adbd-23485 ( 1007) [002] d..2 24577.559975: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129526          <idle>-0     (-----) [002] d..1 24577.559981: cpu_idle: state=0 cpu_id=2
129527              ps-13422 (13422) [000] d..2 24577.559984: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129528              ps-13422 (13422) [000] dn.3 24577.559997: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129529              ps-13422 (13422) [000] d..2 24577.560003: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129530 shell svc 13418-13419 ( 1007) [000] d..2 24577.560028: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129531          <idle>-0     (-----) [001] d.h3 24577.560118: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129532          <idle>-0     (-----) [001] dnh4 24577.560126: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129533          <idle>-0     (-----) [001] .n.1 24577.560131: cpu_idle: state=4294967295 cpu_id=1
129534          <idle>-0     (-----) [001] d..2 24577.560137: 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
129535   kworker/u17:2-23076 (23076) [001] d..2 24577.560145: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129536   kworker/u17:2-23076 (23076) [001] d..3 24577.560151: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129537              ps-13422 (13422) [000] d..2 24577.560151: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129538              ps-13422 (13422) [000] dn.3 24577.560159: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129539   kworker/u17:2-23076 (23076) [001] d..2 24577.560162: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
129540              ps-13422 (13422) [000] d..2 24577.560165: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129541     kworker/1:1-13091 (13091) [001] d..2 24577.560169: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
129542     kworker/1:1-13091 (13091) [001] d..3 24577.560182: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
129543 shell svc 13418-13419 ( 1007) [000] d..2 24577.560187: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129544     kworker/1:1-13091 (13091) [001] d..2 24577.560191: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
129545            adbd-23484 ( 1007) [001] d..2 24577.560202: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
129546            adbd-23484 ( 1007) [001] d..3 24577.560211: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
129547            adbd-23484 ( 1007) [001] d..2 24577.560249: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
129548            adbd-1007  ( 1007) [001] d..1 24577.560308: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
129549              ps-13422 (13422) [000] d..2 24577.560309: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129550              ps-13422 (13422) [000] dn.3 24577.560318: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129551            adbd-1007  ( 1007) [001] d..2 24577.560323: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
129552              ps-13422 (13422) [000] d..2 24577.560324: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129553          <idle>-0     (-----) [002] .n.1 24577.560327: cpu_idle: state=4294967295 cpu_id=2
129554          <idle>-0     (-----) [002] d..2 24577.560332: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
129555 shell svc 13418-13419 ( 1007) [000] d..2 24577.560346: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129556            adbd-1007  ( 1007) [001] d..2 24577.560355: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129557          <idle>-0     (-----) [001] d..1 24577.560364: cpu_idle: state=0 cpu_id=1
129558            adbd-23485 ( 1007) [002] d..2 24577.560369: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129559          <idle>-0     (-----) [002] d..1 24577.560375: cpu_idle: state=0 cpu_id=2
129560          <idle>-0     (-----) [001] d.h3 24577.560382: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129561          <idle>-0     (-----) [001] dnh4 24577.560388: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129562          <idle>-0     (-----) [001] .n.1 24577.560393: cpu_idle: state=4294967295 cpu_id=1
129563          <idle>-0     (-----) [001] d..2 24577.560399: 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
129564   kworker/u17:2-23076 (23076) [001] d..2 24577.560409: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129565   kworker/u17:2-23076 (23076) [001] d..3 24577.560414: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129566   kworker/u17:2-23076 (23076) [001] d..2 24577.560427: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
129567     kworker/1:1-13091 (13091) [001] d..2 24577.560432: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
129568     kworker/1:1-13091 (13091) [001] d..3 24577.560441: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
129569          <idle>-0     (-----) [002] .n.1 24577.560445: cpu_idle: state=4294967295 cpu_id=2
129570          <idle>-0     (-----) [002] d..2 24577.560452: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
129571     kworker/1:1-13091 (13091) [001] d..2 24577.560453: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129572          <idle>-0     (-----) [001] d..1 24577.560461: cpu_idle: state=0 cpu_id=1
129573              ps-13422 (13422) [000] d..2 24577.560465: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129574              ps-13422 (13422) [000] dn.3 24577.560473: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129575              ps-13422 (13422) [000] d..2 24577.560478: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129576            adbd-23485 ( 1007) [002] d..2 24577.560497: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129577          <idle>-0     (-----) [001] d.h3 24577.560506: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129578 shell svc 13418-13419 ( 1007) [000] d..2 24577.560507: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129579          <idle>-0     (-----) [001] dnh4 24577.560511: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129580          <idle>-0     (-----) [000] d..1 24577.560516: cpu_idle: state=0 cpu_id=0
129581          <idle>-0     (-----) [001] .n.1 24577.560516: cpu_idle: state=4294967295 cpu_id=1
129582          <idle>-0     (-----) [001] d..2 24577.560522: 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
129583   kworker/u17:2-23076 (23076) [001] d..2 24577.560528: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129584   kworker/u17:2-23076 (23076) [001] d..3 24577.560533: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129585   kworker/u17:2-23076 (23076) [001] d..2 24577.560546: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
129586     kworker/1:1-13091 (13091) [001] d..2 24577.560551: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
129587     kworker/1:1-13091 (13091) [001] d..3 24577.560566: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
129588          <idle>-0     (-----) [000] .n.1 24577.560572: cpu_idle: state=4294967295 cpu_id=0
129589          <idle>-0     (-----) [000] d..2 24577.560578: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
129590     kworker/1:1-13091 (13091) [001] d..2 24577.560580: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129591          <idle>-0     (-----) [001] d..1 24577.560587: cpu_idle: state=0 cpu_id=1
129592            adbd-23485 ( 1007) [000] d..2 24577.560597: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129593          <idle>-0     (-----) [000] d..1 24577.560603: cpu_idle: state=0 cpu_id=0
129594              ps-13422 (13422) [002] d..2 24577.560638: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129595              ps-13422 (13422) [002] dn.3 24577.560652: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
129596              ps-13422 (13422) [002] d..2 24577.560658: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129597 shell svc 13418-13419 ( 1007) [002] d..2 24577.560684: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129598          <idle>-0     (-----) [001] d.h3 24577.560684: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129599          <idle>-0     (-----) [001] dnh4 24577.560690: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129600          <idle>-0     (-----) [001] .n.1 24577.560695: cpu_idle: state=4294967295 cpu_id=1
129601          <idle>-0     (-----) [001] d..2 24577.560700: 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
129602   kworker/u17:2-23076 (23076) [001] d..2 24577.560708: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129603   kworker/u17:2-23076 (23076) [001] d..3 24577.560713: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129604   kworker/u17:2-23076 (23076) [001] d..2 24577.560725: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
129605     kworker/1:1-13091 (13091) [001] d..2 24577.560731: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
129606     kworker/1:1-13091 (13091) [001] d..3 24577.560739: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
129607     kworker/1:1-13091 (13091) [001] d..2 24577.560747: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
129608            adbd-23484 ( 1007) [001] d..2 24577.560758: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
129609            adbd-23484 ( 1007) [001] d..3 24577.560763: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
129610            adbd-23484 ( 1007) [001] d..2 24577.560798: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
129611              ps-13422 (13422) [002] d..2 24577.560808: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
129612              ps-13422 (13422) [002] dn.3 24577.560816: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
129613              ps-13422 (13422) [002] d..2 24577.560822: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129614 shell svc 13418-13419 ( 1007) [002] d..2 24577.560844: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129615            adbd-1007  ( 1007) [001] d..1 24577.560854: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
129616            adbd-1007  ( 1007) [001] d..2 24577.560864: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
129617          <idle>-0     (-----) [000] .n.1 24577.560869: cpu_idle: state=4294967295 cpu_id=0
129618          <idle>-0     (-----) [000] d..2 24577.560875: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
129619            adbd-23485 ( 1007) [000] d.s2 24577.560901: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129620            adbd-23485 ( 1007) [000] dns3 24577.560907: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129621            adbd-23485 ( 1007) [000] d..2 24577.560914: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
129622            adbd-1007  ( 1007) [001] d..2 24577.560919: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129623          <idle>-0     (-----) [001] d..1 24577.560928: cpu_idle: state=0 cpu_id=1
129624     kworker/0:1-13012 (13012) [000] d..2 24577.560974: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
129625              ps-13422 (13422) [002] d..2 24577.560992: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
129626              ps-13422 (13422) [002] dn.3 24577.561000: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
129627              ps-13422 (13422) [002] d..2 24577.561006: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129628          <idle>-0     (-----) [001] d.h3 24577.561023: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129629            adbd-23485 ( 1007) [000] d..2 24577.561024: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129630          <idle>-0     (-----) [001] dnh4 24577.561030: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129631          <idle>-0     (-----) [001] .n.1 24577.561035: cpu_idle: state=4294967295 cpu_id=1
129632 shell svc 13418-13419 ( 1007) [002] d..2 24577.561036: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129633          <idle>-0     (-----) [001] d..2 24577.561041: 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
129634          <idle>-0     (-----) [002] d..1 24577.561042: cpu_idle: state=0 cpu_id=2
129635   kworker/u17:2-23076 (23076) [001] d..2 24577.561050: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129636   kworker/u17:2-23076 (23076) [001] d..3 24577.561055: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129637   kworker/u17:2-23076 (23076) [001] d..2 24577.561068: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
129638     kworker/1:1-13091 (13091) [001] d..2 24577.561073: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
129639     kworker/1:1-13091 (13091) [001] d..3 24577.561089: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
129640          <idle>-0     (-----) [002] .n.1 24577.561095: cpu_idle: state=4294967295 cpu_id=2
129641          <idle>-0     (-----) [002] d..2 24577.561100: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
129642     kworker/1:1-13091 (13091) [001] d..2 24577.561103: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129643          <idle>-0     (-----) [001] d..1 24577.561111: cpu_idle: state=0 cpu_id=1
129644            adbd-23485 ( 1007) [002] d..2 24577.561143: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129645          <idle>-0     (-----) [002] d..1 24577.561148: cpu_idle: state=0 cpu_id=2
129646          <idle>-0     (-----) [001] d.h3 24577.561150: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129647          <idle>-0     (-----) [001] dnh4 24577.561155: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129648          <idle>-0     (-----) [001] .n.1 24577.561161: cpu_idle: state=4294967295 cpu_id=1
129649              ps-13422 (13422) [000] d..2 24577.561161: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
129650          <idle>-0     (-----) [001] d..2 24577.561167: 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
129651              ps-13422 (13422) [000] dn.3 24577.561175: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129652   kworker/u17:2-23076 (23076) [001] d..2 24577.561175: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129653   kworker/u17:2-23076 (23076) [001] d..3 24577.561180: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129654              ps-13422 (13422) [000] d..2 24577.561180: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129655   kworker/u17:2-23076 (23076) [001] d..2 24577.561193: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
129656     kworker/1:1-13091 (13091) [001] d..2 24577.561198: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
129657 shell svc 13418-13419 ( 1007) [000] d..2 24577.561205: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129658     kworker/1:1-13091 (13091) [001] d..3 24577.561206: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
129659          <idle>-0     (-----) [002] .n.1 24577.561211: cpu_idle: state=4294967295 cpu_id=2
129660          <idle>-0     (-----) [002] d..2 24577.561217: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
129661     kworker/1:1-13091 (13091) [001] d..2 24577.561220: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129662          <idle>-0     (-----) [001] d..1 24577.561227: cpu_idle: state=0 cpu_id=1
129663            adbd-23485 ( 1007) [002] d..2 24577.561232: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129664          <idle>-0     (-----) [002] d..1 24577.561236: cpu_idle: state=0 cpu_id=2
129665          <idle>-0     (-----) [001] d.h3 24577.561298: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129666          <idle>-0     (-----) [001] dnh4 24577.561303: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129667          <idle>-0     (-----) [001] .n.1 24577.561308: cpu_idle: state=4294967295 cpu_id=1
129668          <idle>-0     (-----) [001] d..2 24577.561314: 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
129669   kworker/u17:2-23076 (23076) [001] d..2 24577.561321: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129670   kworker/u17:2-23076 (23076) [001] d..3 24577.561326: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129671              ps-13422 (13422) [000] d..2 24577.561333: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129672   kworker/u17:2-23076 (23076) [001] d..2 24577.561338: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
129673              ps-13422 (13422) [000] dn.3 24577.561341: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129674     kworker/1:1-13091 (13091) [001] d..2 24577.561344: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
129675              ps-13422 (13422) [000] d..2 24577.561347: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129676     kworker/1:1-13091 (13091) [001] d..3 24577.561353: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
129677     kworker/1:1-13091 (13091) [001] d..2 24577.561361: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
129678 shell svc 13418-13419 ( 1007) [000] d..2 24577.561369: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129679            adbd-23484 ( 1007) [001] d..2 24577.561371: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
129680            adbd-23484 ( 1007) [001] d..3 24577.561377: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
129681            adbd-23484 ( 1007) [001] d..2 24577.561412: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
129682            adbd-1007  ( 1007) [001] d..1 24577.561467: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
129683            adbd-1007  ( 1007) [001] d..2 24577.561478: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
129684          <idle>-0     (-----) [002] .n.1 24577.561482: cpu_idle: state=4294967295 cpu_id=2
129685          <idle>-0     (-----) [002] d..2 24577.561487: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
129686              ps-13422 (13422) [000] d..2 24577.561495: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129687              ps-13422 (13422) [000] dn.3 24577.561503: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129688            adbd-1007  ( 1007) [001] d..2 24577.561518: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129689            adbd-23485 ( 1007) [002] d..2 24577.561524: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129690          <idle>-0     (-----) [002] d..1 24577.561529: cpu_idle: state=0 cpu_id=2
129691 shell svc 13418-13419 ( 1007) [001] d.h2 24577.561545: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129692 shell svc 13418-13419 ( 1007) [001] d.h3 24577.561562: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
129693          <idle>-0     (-----) [002] .n.1 24577.561567: cpu_idle: state=4294967295 cpu_id=2
129694          <idle>-0     (-----) [002] d..2 24577.561572: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
129695 shell svc 13418-13419 ( 1007) [001] d..2 24577.561577: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129696   kworker/u17:2-23076 (23076) [002] d..2 24577.561580: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
129697          <idle>-0     (-----) [001] d..1 24577.561586: cpu_idle: state=0 cpu_id=1
129698   kworker/u17:2-23076 (23076) [002] d..3 24577.561588: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
129699   kworker/u17:2-23076 (23076) [002] d..2 24577.561601: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
129700     kworker/2:0-12895 (12895) [002] d..2 24577.561606: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
129701     kworker/2:0-12895 (12895) [002] d..3 24577.561615: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
129702     kworker/2:0-12895 (12895) [002] d..2 24577.561624: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
129703              ps-13422 (13422) [000] d..2 24577.561628: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129704              ps-13422 (13422) [000] dn.3 24577.561641: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129705              ps-13422 (13422) [000] d..2 24577.561646: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129706            adbd-23485 ( 1007) [002] d..2 24577.561669: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129707          <idle>-0     (-----) [001] d.h3 24577.561675: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
129708 shell svc 13418-13419 ( 1007) [000] d..2 24577.561678: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129709          <idle>-0     (-----) [000] d..1 24577.561687: cpu_idle: state=0 cpu_id=0
129710          <idle>-0     (-----) [000] .n.1 24577.561690: cpu_idle: state=4294967295 cpu_id=0
129711          <idle>-0     (-----) [001] d.h4 24577.561691: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129712          <idle>-0     (-----) [001] ...1 24577.561697: cpu_idle: state=4294967295 cpu_id=1
129713          <idle>-0     (-----) [000] d..2 24577.561700: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
129714          <idle>-0     (-----) [001] d..1 24577.561700: cpu_idle: state=0 cpu_id=1
129715   kworker/u17:2-23076 (23076) [000] d..2 24577.561710: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129716   kworker/u17:2-23076 (23076) [000] d..3 24577.561716: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129717   kworker/u17:2-23076 (23076) [000] d..2 24577.561729: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
129718     kworker/0:1-13012 (13012) [000] d..2 24577.561734: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
129719     kworker/0:1-13012 (13012) [000] d..3 24577.561751: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
129720          <idle>-0     (-----) [001] .n.1 24577.561756: cpu_idle: state=4294967295 cpu_id=1
129721          <idle>-0     (-----) [001] d..2 24577.561762: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
129722     kworker/0:1-13012 (13012) [000] d..2 24577.561765: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129723          <idle>-0     (-----) [000] d..1 24577.561772: cpu_idle: state=0 cpu_id=0
129724            adbd-23485 ( 1007) [001] d..2 24577.561780: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129725          <idle>-0     (-----) [001] d..1 24577.561787: cpu_idle: state=0 cpu_id=1
129726              ps-13422 (13422) [002] d..2 24577.561798: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129727              ps-13422 (13422) [002] dn.3 24577.561812: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
129728              ps-13422 (13422) [002] d..2 24577.561817: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129729 shell svc 13418-13419 ( 1007) [002] d..2 24577.561841: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129730          <idle>-0     (-----) [001] d.h3 24577.561856: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129731          <idle>-0     (-----) [001] d.h4 24577.561864: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129732          <idle>-0     (-----) [000] .n.1 24577.561870: cpu_idle: state=4294967295 cpu_id=0
129733          <idle>-0     (-----) [001] ...1 24577.561871: cpu_idle: state=4294967295 cpu_id=1
129734          <idle>-0     (-----) [001] d..1 24577.561873: cpu_idle: state=0 cpu_id=1
129735          <idle>-0     (-----) [000] d..2 24577.561877: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
129736   kworker/u17:2-23076 (23076) [000] d..2 24577.561884: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129737   kworker/u17:2-23076 (23076) [000] d..3 24577.561889: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129738   kworker/u17:2-23076 (23076) [000] d..2 24577.561901: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
129739     kworker/0:1-13012 (13012) [000] d..2 24577.561907: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
129740     kworker/0:1-13012 (13012) [000] d..3 24577.561927: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
129741     kworker/0:1-13012 (13012) [000] d..2 24577.561935: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
129742            adbd-23484 ( 1007) [000] d..2 24577.561945: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
129743            adbd-23484 ( 1007) [000] d..3 24577.561954: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
129744              ps-13422 (13422) [002] d..2 24577.561965: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
129745              ps-13422 (13422) [002] dn.3 24577.561973: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
129746              ps-13422 (13422) [002] d..2 24577.561978: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129747            adbd-23484 ( 1007) [000] d..2 24577.561990: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
129748 shell svc 13418-13419 ( 1007) [002] d..2 24577.562001: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129749            adbd-1007  ( 1007) [000] d..1 24577.562049: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
129750            adbd-1007  ( 1007) [000] d..2 24577.562060: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
129751          <idle>-0     (-----) [001] .n.1 24577.562064: cpu_idle: state=4294967295 cpu_id=1
129752          <idle>-0     (-----) [001] d..2 24577.562070: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
129753            adbd-1007  ( 1007) [000] d..2 24577.562091: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129754          <idle>-0     (-----) [000] d..1 24577.562100: cpu_idle: state=0 cpu_id=0
129755            adbd-23485 ( 1007) [001] d..2 24577.562111: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129756          <idle>-0     (-----) [001] d..1 24577.562118: cpu_idle: state=0 cpu_id=1
129757              ps-13422 (13422) [002] d..2 24577.562124: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
129758          <idle>-0     (-----) [001] d.h3 24577.562131: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129759              ps-13422 (13422) [002] dn.3 24577.562132: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
129760              ps-13422 (13422) [002] d..2 24577.562137: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129761          <idle>-0     (-----) [001] dnh4 24577.562149: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129762          <idle>-0     (-----) [001] .n.1 24577.562154: cpu_idle: state=4294967295 cpu_id=1
129763 shell svc 13418-13419 ( 1007) [002] d..2 24577.562159: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129764          <idle>-0     (-----) [001] d..2 24577.562162: 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
129765   kworker/u17:2-23076 (23076) [001] d..2 24577.562170: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129766   kworker/u17:2-23076 (23076) [001] d..3 24577.562175: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129767   kworker/u17:2-23076 (23076) [001] d..2 24577.562188: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
129768     kworker/1:1-13091 (13091) [001] d..2 24577.562192: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
129769     kworker/1:1-13091 (13091) [001] d..3 24577.562201: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
129770     kworker/1:1-13091 (13091) [001] d..2 24577.562209: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
129771            adbd-23485 ( 1007) [001] d..2 24577.562248: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129772          <idle>-0     (-----) [001] d.h4 24577.562260: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129773          <idle>-0     (-----) [001] dnh5 24577.562265: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129774          <idle>-0     (-----) [001] d..2 24577.562273: 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
129775              ps-13422 (13422) [002] d..2 24577.562280: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
129776   kworker/u17:2-23076 (23076) [001] d..2 24577.562280: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129777   kworker/u17:2-23076 (23076) [001] d..3 24577.562286: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129778              ps-13422 (13422) [002] dn.3 24577.562289: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
129779              ps-13422 (13422) [002] d..2 24577.562294: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129780   kworker/u17:2-23076 (23076) [001] d..2 24577.562298: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
129781     kworker/1:1-13091 (13091) [001] d..2 24577.562303: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
129782     kworker/1:1-13091 (13091) [001] d..3 24577.562311: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
129783 shell svc 13418-13419 ( 1007) [002] d..2 24577.562316: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129784     kworker/1:1-13091 (13091) [001] d..2 24577.562318: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
129785            adbd-23485 ( 1007) [001] d..2 24577.562336: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129786          <idle>-0     (-----) [001] d..1 24577.562343: cpu_idle: state=0 cpu_id=1
129787          <idle>-0     (-----) [001] d.h3 24577.562405: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129788          <idle>-0     (-----) [001] dnh4 24577.562411: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129789          <idle>-0     (-----) [001] .n.1 24577.562416: cpu_idle: state=4294967295 cpu_id=1
129790          <idle>-0     (-----) [001] d..2 24577.562422: 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
129791   kworker/u17:2-23076 (23076) [001] d..2 24577.562429: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129792   kworker/u17:2-23076 (23076) [001] d..3 24577.562434: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129793              ps-13422 (13422) [002] d..2 24577.562439: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
129794   kworker/u17:2-23076 (23076) [001] d..2 24577.562446: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
129795              ps-13422 (13422) [002] dn.3 24577.562447: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
129796     kworker/1:1-13091 (13091) [001] d..2 24577.562453: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
129797              ps-13422 (13422) [002] d..2 24577.562453: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129798     kworker/1:1-13091 (13091) [001] d..3 24577.562461: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
129799          <idle>-0     (-----) [000] .n.1 24577.562466: cpu_idle: state=4294967295 cpu_id=0
129800          <idle>-0     (-----) [000] d..2 24577.562473: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
129801            adbd-23484 ( 1007) [000] d..2 24577.562483: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
129802     kworker/1:1-13091 (13091) [001] d..2 24577.562485: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129803            adbd-23484 ( 1007) [000] d..3 24577.562490: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
129804 shell svc 13418-13419 ( 1007) [002] d..2 24577.562490: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129805          <idle>-0     (-----) [002] d..1 24577.562496: cpu_idle: state=0 cpu_id=2
129806            adbd-23484 ( 1007) [000] d..2 24577.562526: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
129807            adbd-1007  ( 1007) [000] d..1 24577.562579: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
129808            adbd-1007  ( 1007) [000] d..2 24577.562596: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
129809            adbd-1007  ( 1007) [000] d..2 24577.562622: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
129810              ps-13422 (13422) [001] d..2 24577.562641: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
129811              ps-13422 (13422) [001] dn.3 24577.562654: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129812              ps-13422 (13422) [001] d..2 24577.562659: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129813 shell svc 13418-13419 ( 1007) [001] d.h4 24577.562670: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129814            adbd-23485 ( 1007) [000] d..2 24577.562675: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129815 shell svc 13418-13419 ( 1007) [001] dnh5 24577.562680: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129816 shell svc 13418-13419 ( 1007) [001] d..2 24577.562688: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
129817   kworker/u17:2-23076 (23076) [001] d..2 24577.562698: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129818   kworker/u17:2-23076 (23076) [001] d..3 24577.562703: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129819   kworker/u17:2-23076 (23076) [001] d..2 24577.562715: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129820 shell svc 13418-13419 ( 1007) [001] d..2 24577.562742: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
129821     kworker/1:1-13091 (13091) [001] d..2 24577.562748: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
129822     kworker/1:1-13091 (13091) [001] d..3 24577.562765: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
129823          <idle>-0     (-----) [002] .n.1 24577.562770: cpu_idle: state=4294967295 cpu_id=2
129824          <idle>-0     (-----) [002] d..2 24577.562775: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
129825     kworker/1:1-13091 (13091) [001] d..2 24577.562780: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129826          <idle>-0     (-----) [001] d..1 24577.562791: cpu_idle: state=0 cpu_id=1
129827              ps-13422 (13422) [000] d..2 24577.562811: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129828            adbd-23485 ( 1007) [002] d..2 24577.562822: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129829              ps-13422 (13422) [000] dn.3 24577.562825: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129830          <idle>-0     (-----) [002] d..1 24577.562827: cpu_idle: state=0 cpu_id=2
129831              ps-13422 (13422) [000] d..2 24577.562832: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129832          <idle>-0     (-----) [001] d.h3 24577.562840: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129833          <idle>-0     (-----) [001] dnh4 24577.562846: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129834          <idle>-0     (-----) [001] .n.1 24577.562852: cpu_idle: state=4294967295 cpu_id=1
129835 shell svc 13418-13419 ( 1007) [000] d..2 24577.562856: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129836          <idle>-0     (-----) [001] d..2 24577.562858: 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
129837   kworker/u17:2-23076 (23076) [001] d..2 24577.562868: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129838   kworker/u17:2-23076 (23076) [001] d..3 24577.562873: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129839   kworker/u17:2-23076 (23076) [001] d..2 24577.562886: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
129840     kworker/1:1-13091 (13091) [001] d..2 24577.562891: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
129841     kworker/1:1-13091 (13091) [001] d..3 24577.562912: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
129842     kworker/1:1-13091 (13091) [001] d..2 24577.562922: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
129843            adbd-23485 ( 1007) [001] d..2 24577.562940: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129844          <idle>-0     (-----) [001] d..1 24577.562947: cpu_idle: state=0 cpu_id=1
129845          <idle>-0     (-----) [001] d.h3 24577.562959: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129846          <idle>-0     (-----) [001] dnh4 24577.562965: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129847          <idle>-0     (-----) [001] .n.1 24577.562970: cpu_idle: state=4294967295 cpu_id=1
129848          <idle>-0     (-----) [001] d..2 24577.562976: 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
129849   kworker/u17:2-23076 (23076) [001] d..2 24577.562983: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129850              ps-13422 (13422) [000] d.h4 24577.562986: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
129851   kworker/u17:2-23076 (23076) [001] d..3 24577.562989: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129852              ps-13422 (13422) [000] d.h5 24577.563001: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
129853   kworker/u17:2-23076 (23076) [001] d..2 24577.563001: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
129854          <idle>-0     (-----) [003] .n.1 24577.563005: cpu_idle: state=4294967295 cpu_id=3
129855              ps-13422 (13422) [000] d.h4 24577.563006: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
129856     kworker/1:1-13091 (13091) [001] d..2 24577.563008: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
129857          <idle>-0     (-----) [003] d..2 24577.563014: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
129858              ps-13422 (13422) [000] d.h5 24577.563026: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
129859     kworker/1:1-13091 (13091) [001] d..3 24577.563027: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
129860          <idle>-0     (-----) [002] .n.1 24577.563031: cpu_idle: state=4294967295 cpu_id=2
129861          <idle>-0     (-----) [002] d..2 24577.563036: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
129862     kworker/1:1-13091 (13091) [001] d..2 24577.563041: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129863  crtc_event:111-254   (  254) [003] d..2 24577.563042: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
129864          <idle>-0     (-----) [001] d..1 24577.563048: cpu_idle: state=0 cpu_id=1
129865            adbd-23484 ( 1007) [003] d..2 24577.563055: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
129866            adbd-23484 ( 1007) [003] d..3 24577.563065: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
129867            adbd-23484 ( 1007) [003] d..2 24577.563103: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
129868              ps-13422 (13422) [000] d..2 24577.563113: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129869              ps-13422 (13422) [000] dn.3 24577.563121: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129870              ps-13422 (13422) [000] d..2 24577.563126: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129871 shell svc 13418-13419 ( 1007) [000] d..2 24577.563150: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129872            adbd-1007  ( 1007) [003] d..1 24577.563163: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
129873 crtc_commit:111-253   (  253) [002] d..2 24577.563172: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
129874            adbd-1007  ( 1007) [003] d..2 24577.563174: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
129875          <idle>-0     (-----) [002] d..1 24577.563176: cpu_idle: state=0 cpu_id=2
129876          <idle>-0     (-----) [001] .n.1 24577.563180: cpu_idle: state=4294967295 cpu_id=1
129877          <idle>-0     (-----) [001] d..2 24577.563186: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
129878            adbd-1007  ( 1007) [003] d..2 24577.563208: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
129879          <idle>-0     (-----) [003] d..1 24577.563217: cpu_idle: state=0 cpu_id=3
129880            adbd-23485 ( 1007) [001] d..2 24577.563227: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129881          <idle>-0     (-----) [001] d.h4 24577.563239: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129882          <idle>-0     (-----) [001] dnh5 24577.563244: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129883          <idle>-0     (-----) [001] d..2 24577.563252: 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
129884   kworker/u17:2-23076 (23076) [001] d..2 24577.563262: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129885   kworker/u17:2-23076 (23076) [001] d..3 24577.563267: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129886              ps-13422 (13422) [000] d..2 24577.563273: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129887   kworker/u17:2-23076 (23076) [001] d..2 24577.563280: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
129888              ps-13422 (13422) [000] dn.3 24577.563281: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129889     kworker/1:1-13091 (13091) [001] d..2 24577.563285: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
129890              ps-13422 (13422) [000] d..2 24577.563286: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129891     kworker/1:1-13091 (13091) [001] d..3 24577.563294: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
129892     kworker/1:1-13091 (13091) [001] d..2 24577.563304: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
129893 shell svc 13418-13419 ( 1007) [000] d..2 24577.563309: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129894            adbd-23485 ( 1007) [001] d..2 24577.563343: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129895          <idle>-0     (-----) [001] d.h4 24577.563355: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129896          <idle>-0     (-----) [001] dnh5 24577.563361: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129897          <idle>-0     (-----) [001] d..2 24577.563369: 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
129898   kworker/u17:2-23076 (23076) [001] d..2 24577.563378: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129899   kworker/u17:2-23076 (23076) [001] d..3 24577.563382: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129900   kworker/u17:2-23076 (23076) [001] d..2 24577.563395: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
129901     kworker/1:1-13091 (13091) [001] d..2 24577.563401: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
129902     kworker/1:1-13091 (13091) [001] d..3 24577.563409: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
129903     kworker/1:1-13091 (13091) [001] d..2 24577.563417: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
129904            adbd-23485 ( 1007) [001] d..2 24577.563433: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129905              ps-13422 (13422) [000] d..2 24577.563438: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129906          <idle>-0     (-----) [001] d..1 24577.563442: cpu_idle: state=0 cpu_id=1
129907              ps-13422 (13422) [000] dn.3 24577.563446: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129908              ps-13422 (13422) [000] d..2 24577.563451: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129909 shell svc 13418-13419 ( 1007) [000] d..2 24577.563474: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129910          <idle>-0     (-----) [001] d.h3 24577.563495: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129911          <idle>-0     (-----) [001] dnh4 24577.563501: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129912          <idle>-0     (-----) [001] .n.1 24577.563506: cpu_idle: state=4294967295 cpu_id=1
129913          <idle>-0     (-----) [001] d..2 24577.563512: 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
129914   kworker/u17:2-23076 (23076) [001] d..2 24577.563520: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129915   kworker/u17:2-23076 (23076) [001] d..3 24577.563525: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129916   kworker/u17:2-23076 (23076) [001] d..2 24577.563538: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
129917     kworker/1:1-13091 (13091) [001] d..2 24577.563546: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
129918     kworker/1:1-13091 (13091) [001] d..3 24577.563554: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
129919          <idle>-0     (-----) [003] .n.1 24577.563560: cpu_idle: state=4294967295 cpu_id=3
129920          <idle>-0     (-----) [003] d..2 24577.563566: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
129921     kworker/1:1-13091 (13091) [001] d..2 24577.563568: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129922          <idle>-0     (-----) [001] d..1 24577.563575: cpu_idle: state=0 cpu_id=1
129923            adbd-23484 ( 1007) [003] d..2 24577.563578: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
129924            adbd-23484 ( 1007) [003] d..3 24577.563584: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
129925              ps-13422 (13422) [000] d..2 24577.563609: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129926              ps-13422 (13422) [000] dn.3 24577.563617: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129927            adbd-23484 ( 1007) [003] d..2 24577.563621: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
129928              ps-13422 (13422) [000] d..2 24577.563622: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129929 shell svc 13418-13419 ( 1007) [000] d..2 24577.563645: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129930            adbd-1007  ( 1007) [003] d..1 24577.563674: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
129931            adbd-1007  ( 1007) [003] d..2 24577.563686: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
129932          <idle>-0     (-----) [001] .n.1 24577.563691: cpu_idle: state=4294967295 cpu_id=1
129933          <idle>-0     (-----) [001] d..2 24577.563696: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
129934            adbd-1007  ( 1007) [003] d..2 24577.563717: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
129935          <idle>-0     (-----) [003] d..1 24577.563726: cpu_idle: state=0 cpu_id=3
129936            adbd-23485 ( 1007) [001] d..2 24577.563736: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129937          <idle>-0     (-----) [001] d..1 24577.563743: cpu_idle: state=0 cpu_id=1
129938          <idle>-0     (-----) [001] d.h3 24577.563756: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129939          <idle>-0     (-----) [001] dnh4 24577.563762: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129940          <idle>-0     (-----) [001] .n.1 24577.563767: cpu_idle: state=4294967295 cpu_id=1
129941          <idle>-0     (-----) [001] d..2 24577.563773: 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
129942              ps-13422 (13422) [000] d..2 24577.563777: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129943   kworker/u17:2-23076 (23076) [001] d..2 24577.563781: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129944              ps-13422 (13422) [000] dn.3 24577.563784: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129945   kworker/u17:2-23076 (23076) [001] d..3 24577.563787: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129946              ps-13422 (13422) [000] d..2 24577.563790: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129947   kworker/u17:2-23076 (23076) [001] d..2 24577.563802: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
129948     kworker/1:1-13091 (13091) [001] d..2 24577.563808: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
129949 shell svc 13418-13419 ( 1007) [000] d..2 24577.563812: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129950     kworker/1:1-13091 (13091) [001] d..3 24577.563816: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
129951     kworker/1:1-13091 (13091) [001] d..2 24577.563824: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
129952            adbd-23485 ( 1007) [001] d..2 24577.563862: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129953          <idle>-0     (-----) [001] d..1 24577.563870: cpu_idle: state=0 cpu_id=1
129954          <idle>-0     (-----) [001] d.h3 24577.563882: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129955          <idle>-0     (-----) [001] dnh4 24577.563888: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129956          <idle>-0     (-----) [001] .n.1 24577.563894: cpu_idle: state=4294967295 cpu_id=1
129957          <idle>-0     (-----) [001] d..2 24577.563900: 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
129958   kworker/u17:2-23076 (23076) [001] d..2 24577.563907: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129959   kworker/u17:2-23076 (23076) [001] d..3 24577.563913: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
129960   kworker/u17:2-23076 (23076) [001] d..2 24577.563927: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
129961     kworker/1:1-13091 (13091) [001] d..2 24577.563933: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
129962              ps-13422 (13422) [000] d..2 24577.563940: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129963     kworker/1:1-13091 (13091) [001] d..3 24577.563941: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
129964     kworker/1:1-13091 (13091) [001] d..2 24577.563949: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
129965              ps-13422 (13422) [000] dn.3 24577.563949: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129966              ps-13422 (13422) [000] d..2 24577.563954: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129967            adbd-23485 ( 1007) [001] d..2 24577.563973: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129968 shell svc 13418-13419 ( 1007) [000] d..2 24577.563984: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129969          <idle>-0     (-----) [000] d..1 24577.563993: cpu_idle: state=0 cpu_id=0
129970              ps-13422 (13422) [001] d.h2 24577.564048: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
129971              ps-13422 (13422) [001] d.h3 24577.564066: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
129972          <idle>-0     (-----) [000] .n.1 24577.564072: cpu_idle: state=4294967295 cpu_id=0
129973          <idle>-0     (-----) [000] d..2 24577.564079: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
129974   kworker/u17:2-23076 (23076) [000] d..2 24577.564088: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129975   kworker/u17:2-23076 (23076) [000] d..3 24577.564093: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
129976   kworker/u17:2-23076 (23076) [000] d..2 24577.564108: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
129977     kworker/0:1-13012 (13012) [000] d..2 24577.564115: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
129978     kworker/0:1-13012 (13012) [000] d..3 24577.564135: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
129979     kworker/0:1-13012 (13012) [000] d..2 24577.564145: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
129980            adbd-23484 ( 1007) [000] d..2 24577.564156: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
129981              ps-13422 (13422) [001] d..2 24577.564160: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
129982            adbd-23484 ( 1007) [000] d..3 24577.564169: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
129983              ps-13422 (13422) [001] dn.3 24577.564178: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
129984              ps-13422 (13422) [001] d..2 24577.564185: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
129985 shell svc 13418-13419 ( 1007) [001] d..2 24577.564208: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
129986            adbd-23484 ( 1007) [000] d..2 24577.564211: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
129987              ps-13422 (13422) [001] d.s3 24577.564228: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
129988          <idle>-0     (-----) [002] d.s3 24577.564232: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
129989          <idle>-0     (-----) [002] d.s4 24577.564242: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
129990          <idle>-0     (-----) [002] dns2 24577.564246: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
129991              ps-13422 (13422) [001] d.s4 24577.564247: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
129992          <idle>-0     (-----) [003] .n.1 24577.564248: cpu_idle: state=4294967295 cpu_id=3
129993          <idle>-0     (-----) [003] d..2 24577.564254: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
129994          <idle>-0     (-----) [002] dns3 24577.564269: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
129995  crtc_event:111-254   (  254) [003] d..2 24577.564278: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
129996          <idle>-0     (-----) [002] .n.1 24577.564281: cpu_idle: state=4294967295 cpu_id=2
129997          <idle>-0     (-----) [002] d..2 24577.564286: 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
129998     rcu_preempt-7     (    7) [003] d..2 24577.564288: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
129999            adbd-1007  ( 1007) [000] d..1 24577.564294: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
130000     rcu_preempt-7     (    7) [003] d..3 24577.564303: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
130001     rcu_preempt-7     (    7) [003] d..2 24577.564311: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
130002            adbd-1007  ( 1007) [000] d..2 24577.564312: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
130003     rcu_preempt-7     (    7) [003] d..3 24577.564338: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
130004     rcu_preempt-7     (    7) [003] d..2 24577.564348: 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
130005         rcuop/2-29    (   29) [003] d..2 24577.564357: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
130006            adbd-1007  ( 1007) [000] d..2 24577.564360: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130007          <idle>-0     (-----) [000] d..1 24577.564369: cpu_idle: state=0 cpu_id=0
130008         rcuop/2-29    (   29) [003] d..3 24577.564389: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
130009              ps-13422 (13422) [001] d..2 24577.564390: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130010              ps-13422 (13422) [001] dn.3 24577.564398: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130011         rcuop/2-29    (   29) [003] d..2 24577.564403: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
130012              ps-13422 (13422) [001] d..2 24577.564404: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130013         rcuop/2-29    (   29) [003] d..3 24577.564420: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130014 shell svc 13418-13419 ( 1007) [001] d..2 24577.564427: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130015         rcuop/2-29    (   29) [003] d..2 24577.564433: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
130016            adbd-23485 ( 1007) [003] d..2 24577.564474: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
130017          <idle>-0     (-----) [003] d..1 24577.564483: cpu_idle: state=0 cpu_id=3
130018              ps-13422 (13422) [001] d.h2 24577.564483: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
130019              ps-13422 (13422) [001] d.h3 24577.564509: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
130020  kworker/u16:10-23868 (23868) [002] d..2 24577.564525: 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
130021   kworker/u17:2-23076 (23076) [002] d..2 24577.564537: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
130022   kworker/u17:2-23076 (23076) [002] d..3 24577.564543: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
130023   kworker/u17:2-23076 (23076) [002] d..2 24577.564557: 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
130024  kworker/u16:10-23868 (23868) [002] d..2 24577.564563: 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
130025         rcuop/0-10    (   10) [002] d..2 24577.564574: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
130026              ps-13422 (13422) [001] d..2 24577.564598: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130027         rcuop/0-10    (   10) [002] d..3 24577.564605: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
130028              ps-13422 (13422) [001] dn.3 24577.564605: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130029              ps-13422 (13422) [001] d..2 24577.564611: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130030         rcuop/0-10    (   10) [002] d..2 24577.564612: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
130031 shell svc 13418-13419 ( 1007) [001] d..2 24577.564633: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130032         rcuop/3-37    (   37) [002] d..2 24577.564635: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
130033     kworker/2:0-12895 (12895) [002] d..2 24577.564641: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
130034     kworker/2:0-12895 (12895) [002] d..3 24577.564649: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
130035          <idle>-0     (-----) [003] .n.1 24577.564654: cpu_idle: state=4294967295 cpu_id=3
130036     kworker/2:0-12895 (12895) [002] d..2 24577.564657: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
130037          <idle>-0     (-----) [003] d..2 24577.564660: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
130038            adbd-23485 ( 1007) [003] d..2 24577.564698: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
130039          <idle>-0     (-----) [003] d..1 24577.564705: cpu_idle: state=0 cpu_id=3
130040              ps-13422 (13422) [001] d.h2 24577.564712: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
130041              ps-13422 (13422) [001] d.h3 24577.564728: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
130042         rcuop/1-21    (   21) [002] d..2 24577.564735: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
130043   kworker/u17:2-23076 (23076) [002] d..2 24577.564748: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
130044   kworker/u17:2-23076 (23076) [002] d..3 24577.564753: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
130045   kworker/u17:2-23076 (23076) [002] d..2 24577.564766: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
130046          <idle>-0     (-----) [003] d.s3 24577.564770: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
130047     kworker/2:0-12895 (12895) [002] d..2 24577.564771: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
130048     kworker/2:0-12895 (12895) [002] d..3 24577.564779: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
130049          <idle>-0     (-----) [003] dns4 24577.564787: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
130050              ps-13422 (13422) [001] d..2 24577.564790: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130051          <idle>-0     (-----) [003] dns4 24577.564790: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
130052     kworker/2:0-12895 (12895) [002] d..2 24577.564792: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
130053              ps-13422 (13422) [001] dn.3 24577.564797: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130054          <idle>-0     (-----) [003] .n.1 24577.564798: cpu_idle: state=4294967295 cpu_id=3
130055     rcu_preempt-7     (    7) [002] d..2 24577.564802: 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
130056              ps-13422 (13422) [001] d..2 24577.564803: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130057          <idle>-0     (-----) [003] d..2 24577.564804: 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
130058 shell svc 13418-13419 ( 1007) [001] d..2 24577.564826: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130059              ps-13422 (13422) [001] d.h2 24577.564896: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
130060         rcuop/1-21    (   21) [002] d..2 24577.564904: 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
130061              ps-13422 (13422) [001] d.h3 24577.564912: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
130062          <idle>-0     (-----) [002] d..2 24577.564928: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
130063   kworker/u17:2-23076 (23076) [002] d..2 24577.564935: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
130064  kworker/u16:10-23868 (23868) [003] d..2 24577.564936: 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
130065   kworker/u17:2-23076 (23076) [002] d..3 24577.564941: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
130066   kworker/u17:2-23076 (23076) [002] d..2 24577.564953: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
130067     kworker/2:0-12895 (12895) [002] d..2 24577.564960: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
130068            adbd-23485 ( 1007) [003] d..2 24577.564960: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
130069     kworker/2:0-12895 (12895) [002] d..3 24577.564968: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
130070          <idle>-0     (-----) [003] d..1 24577.564968: cpu_idle: state=0 cpu_id=3
130071          <idle>-0     (-----) [000] .n.1 24577.564973: cpu_idle: state=4294967295 cpu_id=0
130072          <idle>-0     (-----) [000] d..2 24577.564981: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
130073     kworker/2:0-12895 (12895) [002] d..2 24577.564982: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130074              ps-13422 (13422) [001] d..2 24577.564989: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130075          <idle>-0     (-----) [002] d..1 24577.564989: cpu_idle: state=0 cpu_id=2
130076            adbd-23484 ( 1007) [000] d..2 24577.564992: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
130077              ps-13422 (13422) [001] dn.3 24577.564997: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130078            adbd-23484 ( 1007) [000] d..3 24577.564998: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
130079              ps-13422 (13422) [001] d..2 24577.565002: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130080 shell svc 13418-13419 ( 1007) [001] d..2 24577.565025: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130081            adbd-23484 ( 1007) [000] d..2 24577.565036: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
130082            adbd-1007  ( 1007) [000] d..1 24577.565089: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
130083            adbd-1007  ( 1007) [000] d..2 24577.565114: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
130084            adbd-1007  ( 1007) [000] d..2 24577.565140: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
130085              ps-13422 (13422) [001] d..2 24577.565155: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130086              ps-13422 (13422) [001] dn.3 24577.565162: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130087              ps-13422 (13422) [001] d..2 24577.565168: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130088            adbd-23485 ( 1007) [000] d..2 24577.565192: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130089 shell svc 13418-13419 ( 1007) [001] d.h2 24577.565192: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
130090 shell svc 13418-13419 ( 1007) [001] d.h3 24577.565205: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
130091          <idle>-0     (-----) [002] .n.1 24577.565208: cpu_idle: state=4294967295 cpu_id=2
130092          <idle>-0     (-----) [002] d..2 24577.565215: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
130093 shell svc 13418-13419 ( 1007) [001] d..2 24577.565223: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130094   kworker/u17:2-23076 (23076) [002] d..2 24577.565223: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
130095   kworker/u17:2-23076 (23076) [002] d..3 24577.565228: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
130096          <idle>-0     (-----) [001] d..1 24577.565232: cpu_idle: state=0 cpu_id=1
130097   kworker/u17:2-23076 (23076) [002] d..2 24577.565240: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
130098     kworker/2:0-12895 (12895) [002] d..2 24577.565245: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
130099     kworker/2:0-12895 (12895) [002] d..3 24577.565258: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
130100     kworker/2:0-12895 (12895) [002] d..2 24577.565268: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
130101              ps-13422 (13422) [000] d.h4 24577.565311: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
130102            adbd-23485 ( 1007) [002] d..2 24577.565312: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130103          <idle>-0     (-----) [002] d..1 24577.565318: cpu_idle: state=0 cpu_id=2
130104              ps-13422 (13422) [000] d.h5 24577.565324: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
130105          <idle>-0     (-----) [002] .n.1 24577.565329: cpu_idle: state=4294967295 cpu_id=2
130106          <idle>-0     (-----) [002] d..2 24577.565334: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
130107          <idle>-0     (-----) [001] d.h3 24577.565338: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
130108          <idle>-0     (-----) [001] dnh4 24577.565351: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
130109          <idle>-0     (-----) [001] .n.1 24577.565356: cpu_idle: state=4294967295 cpu_id=1
130110          <idle>-0     (-----) [001] d..2 24577.565362: 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
130111   kworker/u17:2-23076 (23076) [001] d..2 24577.565371: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
130112   kworker/u17:2-23076 (23076) [001] d..3 24577.565376: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
130113   kworker/u17:2-23076 (23076) [001] d..2 24577.565389: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
130114     kworker/1:1-13091 (13091) [001] d..2 24577.565393: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
130115              ps-13422 (13422) [000] d..2 24577.565394: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130116 crtc_commit:111-253   (  253) [002] d..2 24577.565401: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130117     kworker/1:1-13091 (13091) [001] d..3 24577.565407: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
130118              ps-13422 (13422) [000] dn.3 24577.565408: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130119          <idle>-0     (-----) [002] d..2 24577.565412: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
130120              ps-13422 (13422) [000] d..2 24577.565413: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130121     kworker/1:1-13091 (13091) [001] d..2 24577.565433: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130122            adbd-23485 ( 1007) [002] d..2 24577.565435: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130123          <idle>-0     (-----) [002] d..1 24577.565439: cpu_idle: state=0 cpu_id=2
130124 shell svc 13418-13419 ( 1007) [000] d..2 24577.565443: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130125          <idle>-0     (-----) [000] d..1 24577.565453: cpu_idle: state=0 cpu_id=0
130126              ps-13422 (13422) [001] d.h2 24577.565518: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
130127              ps-13422 (13422) [001] d.h3 24577.565536: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
130128          <idle>-0     (-----) [000] .n.1 24577.565541: cpu_idle: state=4294967295 cpu_id=0
130129          <idle>-0     (-----) [000] d..2 24577.565548: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
130130   kworker/u17:2-23076 (23076) [000] d..2 24577.565559: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
130131   kworker/u17:2-23076 (23076) [000] d..3 24577.565565: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
130132   kworker/u17:2-23076 (23076) [000] d..2 24577.565579: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
130133              ps-13422 (13422) [001] d..2 24577.565603: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130134     kworker/0:1-13012 (13012) [000] d.h6 24577.565613: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
130135              ps-13422 (13422) [001] dn.3 24577.565615: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130136              ps-13422 (13422) [001] d..2 24577.565621: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130137     kworker/0:1-13012 (13012) [000] d.h7 24577.565623: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
130138          <idle>-0     (-----) [003] .n.1 24577.565628: cpu_idle: state=4294967295 cpu_id=3
130139          <idle>-0     (-----) [003] d..2 24577.565633: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
130140 shell svc 13418-13419 ( 1007) [001] d..2 24577.565644: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130141     kworker/0:1-13012 (13012) [000] d.ha 24577.565648: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
130142  crtc_event:111-254   (  254) [003] d..2 24577.565650: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
130143          <idle>-0     (-----) [003] d..1 24577.565655: cpu_idle: state=0 cpu_id=3
130144     kworker/0:1-13012 (13012) [000] d.hb 24577.565657: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
130145          <idle>-0     (-----) [002] .n.1 24577.565661: cpu_idle: state=4294967295 cpu_id=2
130146     kworker/0:1-13012 (13012) [000] d.h8 24577.565663: sched_waking: comm=SDM_EventThread pid=624 prio=111 target_cpu=002
130147          <idle>-0     (-----) [002] d..2 24577.565666: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
130148     kworker/0:1-13012 (13012) [000] d.h9 24577.565681: sched_wakeup: comm=SDM_EventThread pid=624 prio=111 target_cpu=002
130149 crtc_commit:111-253   (  253) [002] d..2 24577.565694: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=SDM_EventThread next_pid=624 next_prio=111
130150     kworker/0:1-13012 (13012) [000] d..2 24577.565696: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
130151     kworker/0:1-13012 (13012) [000] d..3 24577.565716: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
130152 SDM_EventThread-624   (  598) [002] ...1 24577.565738: tracing_mark_write: B|598|HWCCallbacks::Vsync::
130153     kworker/0:1-13012 (13012) [000] d..2 24577.565738: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130154          <idle>-0     (-----) [000] d..1 24577.565746: cpu_idle: state=0 cpu_id=0
130155 SDM_EventThread-624   (  598) [002] ...1 24577.565749: tracing_mark_write: B|598|HIDL::IComposerCallback::onVsync::client
130156 SDM_EventThread-624   (  598) [002] ...1 24577.565753: tracing_mark_write: E|598
130157              ps-13422 (13422) [001] d..2 24577.565771: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130158              ps-13422 (13422) [001] dn.3 24577.565779: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130159              ps-13422 (13422) [001] d..2 24577.565785: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130160 SDM_EventThread-624   (  598) [002] .... 24577.565787: binder_transaction: transaction=1671665 dest_node=1270370 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
130161 SDM_EventThread-624   (  598) [002] d..4 24577.565796: sched_waking: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=003
130162 shell svc 13418-13419 ( 1007) [001] d..2 24577.565807: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130163 SDM_EventThread-624   (  598) [002] d..5 24577.565816: sched_wakeup: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=000
130164          <idle>-0     (-----) [000] .n.1 24577.565822: cpu_idle: state=4294967295 cpu_id=0
130165          <idle>-0     (-----) [000] d..2 24577.565829: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:23896_ next_pid=23923 next_prio=120
130166 HwBinder:23896_-23923 (23896) [000] .... 24577.565836: binder_transaction_received: transaction=1671665
130167 SDM_EventThread-624   (  598) [002] ...1 24577.565837: tracing_mark_write: E|598
130168 SDM_EventThread-624   (  598) [002] d..4 24577.565851: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
130169 SDM_EventThread-624   (  598) [002] d..5 24577.565865: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
130170          <idle>-0     (-----) [003] .n.1 24577.565870: cpu_idle: state=4294967295 cpu_id=3
130171          <idle>-0     (-----) [003] d..2 24577.565875: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
130172 HwBinder:23896_-23923 (23896) [000] ...1 24577.565876: tracing_mark_write: B|23896|HIDL::IComposerCallback::onVsync::server
130173 SDM_EventThread-624   (  598) [002] d..2 24577.565888: sched_switch: prev_comm=SDM_EventThread prev_pid=624 prev_prio=111 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
130174 crtc_commit:111-253   (  253) [003] d..2 24577.565892: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
130175 HwBinder:23896_-23923 (23896) [000] ...1 24577.565896: tracing_mark_write: E|23896
130176          <idle>-0     (-----) [003] d..1 24577.565897: cpu_idle: state=0 cpu_id=3
130177            adbd-23484 ( 1007) [002] d..2 24577.565899: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
130178            adbd-23484 ( 1007) [002] d..3 24577.565910: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
130179              ps-13422 (13422) [001] d..2 24577.565923: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130180 HwBinder:23896_-23923 (23896) [000] d..2 24577.565930: sched_switch: prev_comm=HwBinder:23896_ prev_pid=23923 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130181              ps-13422 (13422) [001] dn.3 24577.565931: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130182              ps-13422 (13422) [001] d..2 24577.565937: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130183          <idle>-0     (-----) [000] d..1 24577.565938: cpu_idle: state=0 cpu_id=0
130184            adbd-23484 ( 1007) [002] d..2 24577.565946: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
130185 shell svc 13418-13419 ( 1007) [001] d..2 24577.565958: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130186            adbd-1007  ( 1007) [002] d..1 24577.566006: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
130187            adbd-1007  ( 1007) [002] d..2 24577.566018: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
130188            adbd-1007  ( 1007) [002] d..2 24577.566043: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
130189              ps-13422 (13422) [001] d..2 24577.566073: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130190              ps-13422 (13422) [001] dn.3 24577.566081: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130191            adbd-23485 ( 1007) [002] d..2 24577.566085: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130192              ps-13422 (13422) [001] dnh3 24577.566092: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
130193          <idle>-0     (-----) [002] d..1 24577.566092: cpu_idle: state=0 cpu_id=2
130194              ps-13422 (13422) [001] dnh4 24577.566100: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
130195          <idle>-0     (-----) [000] .n.1 24577.566106: cpu_idle: state=4294967295 cpu_id=0
130196              ps-13422 (13422) [001] d..2 24577.566108: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130197          <idle>-0     (-----) [000] d..2 24577.566112: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
130198   kworker/u17:2-23076 (23076) [000] d..2 24577.566122: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
130199   kworker/u17:2-23076 (23076) [000] d..3 24577.566128: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
130200 shell svc 13418-13419 ( 1007) [001] d..2 24577.566132: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130201   kworker/u17:2-23076 (23076) [000] d..2 24577.566141: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
130202     kworker/0:1-13012 (13012) [000] d..2 24577.566147: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
130203     kworker/0:1-13012 (13012) [000] d..3 24577.566156: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
130204          <idle>-0     (-----) [002] .n.1 24577.566162: cpu_idle: state=4294967295 cpu_id=2
130205          <idle>-0     (-----) [002] d..2 24577.566168: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
130206     kworker/0:1-13012 (13012) [000] d..2 24577.566170: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130207          <idle>-0     (-----) [000] d..1 24577.566177: cpu_idle: state=0 cpu_id=0
130208            adbd-23485 ( 1007) [002] d..2 24577.566207: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130209          <idle>-0     (-----) [002] d..1 24577.566212: cpu_idle: state=0 cpu_id=2
130210              ps-13422 (13422) [001] d.h2 24577.566217: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
130211              ps-13422 (13422) [001] d.h3 24577.566228: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
130212          <idle>-0     (-----) [000] .n.1 24577.566232: cpu_idle: state=4294967295 cpu_id=0
130213          <idle>-0     (-----) [000] d..2 24577.566238: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
130214   kworker/u17:2-23076 (23076) [000] d..2 24577.566247: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
130215   kworker/u17:2-23076 (23076) [000] d..3 24577.566251: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
130216   kworker/u17:2-23076 (23076) [000] d..2 24577.566264: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
130217     kworker/0:1-13012 (13012) [000] d..2 24577.566269: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
130218              ps-13422 (13422) [001] d..2 24577.566273: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130219     kworker/0:1-13012 (13012) [000] d..3 24577.566278: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
130220              ps-13422 (13422) [001] dn.3 24577.566280: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130221          <idle>-0     (-----) [002] .n.1 24577.566283: cpu_idle: state=4294967295 cpu_id=2
130222              ps-13422 (13422) [001] d..2 24577.566286: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130223          <idle>-0     (-----) [002] d..2 24577.566288: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
130224     kworker/0:1-13012 (13012) [000] d..2 24577.566300: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130225            adbd-23485 ( 1007) [002] d..2 24577.566304: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130226          <idle>-0     (-----) [002] d..1 24577.566309: cpu_idle: state=0 cpu_id=2
130227 shell svc 13418-13419 ( 1007) [001] d..2 24577.566314: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130228          <idle>-0     (-----) [001] d..1 24577.566323: cpu_idle: state=0 cpu_id=1
130229          <idle>-0     (-----) [001] d.h3 24577.566408: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
130230          <idle>-0     (-----) [001] dnh4 24577.566422: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
130231          <idle>-0     (-----) [001] .n.1 24577.566427: cpu_idle: state=4294967295 cpu_id=1
130232          <idle>-0     (-----) [001] d..2 24577.566433: 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
130233              ps-13422 (13422) [000] d..2 24577.566437: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130234   kworker/u17:2-23076 (23076) [001] d..2 24577.566441: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
130235   kworker/u17:2-23076 (23076) [001] d..3 24577.566452: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
130236              ps-13422 (13422) [000] dn.3 24577.566453: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130237              ps-13422 (13422) [000] d..2 24577.566459: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130238   kworker/u17:2-23076 (23076) [001] d..2 24577.566464: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
130239     kworker/1:1-13091 (13091) [001] d..2 24577.566471: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
130240 shell svc 13418-13419 ( 1007) [000] d..2 24577.566484: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130241     kworker/1:1-13091 (13091) [001] d..3 24577.566490: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
130242     kworker/1:1-13091 (13091) [001] d..2 24577.566499: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
130243            adbd-23484 ( 1007) [001] d..2 24577.566509: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
130244            adbd-23484 ( 1007) [001] d..3 24577.566519: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
130245            adbd-23484 ( 1007) [001] d..2 24577.566556: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
130246              ps-13422 (13422) [000] d..2 24577.566604: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130247              ps-13422 (13422) [000] dn.3 24577.566613: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130248            adbd-1007  ( 1007) [001] d..1 24577.566615: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
130249              ps-13422 (13422) [000] d..2 24577.566618: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130250            adbd-1007  ( 1007) [001] d..2 24577.566626: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
130251          <idle>-0     (-----) [002] .n.1 24577.566630: cpu_idle: state=4294967295 cpu_id=2
130252          <idle>-0     (-----) [002] d..2 24577.566636: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
130253 shell svc 13418-13419 ( 1007) [000] d..2 24577.566641: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130254            adbd-1007  ( 1007) [001] d..2 24577.566658: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130255          <idle>-0     (-----) [001] d..1 24577.566666: cpu_idle: state=0 cpu_id=1
130256            adbd-23485 ( 1007) [002] d..2 24577.566674: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130257          <idle>-0     (-----) [002] d..1 24577.566679: cpu_idle: state=0 cpu_id=2
130258          <idle>-0     (-----) [001] d.h3 24577.566690: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
130259          <idle>-0     (-----) [001] dnh4 24577.566699: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
130260          <idle>-0     (-----) [001] .n.1 24577.566705: cpu_idle: state=4294967295 cpu_id=1
130261          <idle>-0     (-----) [001] d..2 24577.566711: 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
130262   kworker/u17:2-23076 (23076) [001] d..2 24577.566720: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
130263   kworker/u17:2-23076 (23076) [001] d..3 24577.566726: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
130264   kworker/u17:2-23076 (23076) [001] d..2 24577.566739: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
130265     kworker/1:1-13091 (13091) [001] d..2 24577.566745: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
130266     kworker/1:1-13091 (13091) [001] d..3 24577.566753: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
130267          <idle>-0     (-----) [002] .n.1 24577.566758: cpu_idle: state=4294967295 cpu_id=2
130268              ps-13422 (13422) [000] d..2 24577.566760: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130269          <idle>-0     (-----) [002] d..2 24577.566763: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
130270     kworker/1:1-13091 (13091) [001] d..2 24577.566766: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130271              ps-13422 (13422) [000] dn.3 24577.566769: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130272          <idle>-0     (-----) [001] d..1 24577.566773: cpu_idle: state=0 cpu_id=1
130273              ps-13422 (13422) [000] d..2 24577.566774: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130274 shell svc 13418-13419 ( 1007) [000] d..2 24577.566797: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130275            adbd-23485 ( 1007) [002] d..2 24577.566801: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130276          <idle>-0     (-----) [002] d..1 24577.566806: cpu_idle: state=0 cpu_id=2
130277          <idle>-0     (-----) [001] d.h3 24577.566817: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
130278          <idle>-0     (-----) [001] dnh4 24577.566822: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
130279          <idle>-0     (-----) [001] .n.1 24577.566827: cpu_idle: state=4294967295 cpu_id=1
130280          <idle>-0     (-----) [001] d..2 24577.566833: 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
130281   kworker/u17:2-23076 (23076) [001] d..2 24577.566841: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
130282   kworker/u17:2-23076 (23076) [001] d..3 24577.566846: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
130283   kworker/u17:2-23076 (23076) [001] d..2 24577.566858: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
130284     kworker/1:1-13091 (13091) [001] d..2 24577.566864: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
130285     kworker/1:1-13091 (13091) [001] d..3 24577.566872: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
130286          <idle>-0     (-----) [002] .n.1 24577.566876: cpu_idle: state=4294967295 cpu_id=2
130287          <idle>-0     (-----) [002] d..2 24577.566882: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
130288     kworker/1:1-13091 (13091) [001] d..2 24577.566885: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130289          <idle>-0     (-----) [001] d..1 24577.566892: cpu_idle: state=0 cpu_id=1
130290            adbd-23485 ( 1007) [002] d..2 24577.566896: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130291          <idle>-0     (-----) [002] d..1 24577.566901: cpu_idle: state=0 cpu_id=2
130292              ps-13422 (13422) [000] d..2 24577.566916: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130293              ps-13422 (13422) [000] dn.3 24577.566924: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130294              ps-13422 (13422) [000] d..2 24577.566929: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130295 shell svc 13418-13419 ( 1007) [000] d..2 24577.566951: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130296          <idle>-0     (-----) [001] d.h3 24577.567005: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
130297          <idle>-0     (-----) [001] dnh4 24577.567010: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
130298          <idle>-0     (-----) [001] .n.1 24577.567014: cpu_idle: state=4294967295 cpu_id=1
130299          <idle>-0     (-----) [001] d..2 24577.567020: 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
130300   kworker/u17:2-23076 (23076) [001] d..2 24577.567026: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
130301   kworker/u17:2-23076 (23076) [001] d..3 24577.567032: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
130302   kworker/u17:2-23076 (23076) [001] d..2 24577.567044: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
130303     kworker/1:1-13091 (13091) [001] d..2 24577.567050: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
130304     kworker/1:1-13091 (13091) [001] d..3 24577.567058: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
130305     kworker/1:1-13091 (13091) [001] d..2 24577.567067: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
130306              ps-13422 (13422) [000] d..2 24577.567074: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130307            adbd-23484 ( 1007) [001] d..2 24577.567078: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
130308              ps-13422 (13422) [000] dn.3 24577.567082: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130309            adbd-23484 ( 1007) [001] d..3 24577.567084: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
130310              ps-13422 (13422) [000] d..2 24577.567088: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130311 shell svc 13418-13419 ( 1007) [000] d..2 24577.567110: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130312            adbd-23484 ( 1007) [001] d..2 24577.567118: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
130313            adbd-1007  ( 1007) [001] d..1 24577.567173: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
130314            adbd-1007  ( 1007) [001] d..2 24577.567187: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
130315          <idle>-0     (-----) [002] .n.1 24577.567191: cpu_idle: state=4294967295 cpu_id=2
130316          <idle>-0     (-----) [002] d..2 24577.567197: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
130317            adbd-1007  ( 1007) [001] d..2 24577.567218: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130318          <idle>-0     (-----) [003] ...1 24577.567223: cpu_idle: state=4294967295 cpu_id=3
130319          <idle>-0     (-----) [003] d..1 24577.567226: cpu_idle: state=0 cpu_id=3
130320          <idle>-0     (-----) [001] d..1 24577.567227: cpu_idle: state=0 cpu_id=1
130321              ps-13422 (13422) [000] d..2 24577.567229: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130322            adbd-23485 ( 1007) [002] d..2 24577.567232: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130323          <idle>-0     (-----) [002] d..1 24577.567237: cpu_idle: state=0 cpu_id=2
130324              ps-13422 (13422) [000] dn.3 24577.567238: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130325              ps-13422 (13422) [000] d..2 24577.567243: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130326          <idle>-0     (-----) [001] d.h3 24577.567253: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
130327          <idle>-0     (-----) [001] dnh4 24577.567259: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
130328          <idle>-0     (-----) [002] d.h2 24577.567261: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
130329          <idle>-0     (-----) [001] .n.1 24577.567264: cpu_idle: state=4294967295 cpu_id=1
130330 shell svc 13418-13419 ( 1007) [000] d..2 24577.567266: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130331          <idle>-0     (-----) [001] d..2 24577.567270: 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
130332          <idle>-0     (-----) [002] dnh3 24577.567270: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
130333          <idle>-0     (-----) [002] .n.1 24577.567275: cpu_idle: state=4294967295 cpu_id=2
130334   kworker/u17:2-23076 (23076) [001] d..2 24577.567279: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
130335          <idle>-0     (-----) [002] d..2 24577.567281: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
130336   kworker/u17:2-23076 (23076) [001] d..3 24577.567285: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
130337   kworker/u17:2-23076 (23076) [001] d..2 24577.567296: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
130338        DispSync-23904 (23896) [002] d..1 24577.567299: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
130339     kworker/1:1-13091 (13091) [001] d..2 24577.567301: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
130340     kworker/1:1-13091 (13091) [001] d..3 24577.567310: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
130341        DispSync-23904 (23896) [002] d..2 24577.567316: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
130342          <idle>-0     (-----) [003] .n.1 24577.567320: cpu_idle: state=4294967295 cpu_id=3
130343     kworker/1:1-13091 (13091) [001] d..2 24577.567323: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130344          <idle>-0     (-----) [003] d..2 24577.567325: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
130345          <idle>-0     (-----) [001] d..1 24577.567330: cpu_idle: state=0 cpu_id=1
130346        DispSync-23904 (23896) [002] d..2 24577.567330: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
130347            adbd-23485 ( 1007) [002] d..2 24577.567371: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130348          <idle>-0     (-----) [002] d..1 24577.567377: cpu_idle: state=0 cpu_id=2
130349          <idle>-0     (-----) [001] d.h3 24577.567379: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
130350  appEventThread-23905 (23896) [003] d..3 24577.567381: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=003
130351              ps-13422 (13422) [000] d..2 24577.567384: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130352          <idle>-0     (-----) [001] dnh4 24577.567385: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
130353          <idle>-0     (-----) [001] .n.1 24577.567390: cpu_idle: state=4294967295 cpu_id=1
130354              ps-13422 (13422) [000] dn.3 24577.567392: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130355          <idle>-0     (-----) [001] d..2 24577.567396: 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
130356              ps-13422 (13422) [000] d..2 24577.567398: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130357  appEventThread-23905 (23896) [003] d..4 24577.567401: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
130358   kworker/u17:2-23076 (23076) [001] d..2 24577.567403: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
130359          <idle>-0     (-----) [002] .n.1 24577.567405: cpu_idle: state=4294967295 cpu_id=2
130360   kworker/u17:2-23076 (23076) [001] d..3 24577.567408: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
130361          <idle>-0     (-----) [002] d..2 24577.567412: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
130362 shell svc 13418-13419 ( 1007) [000] d..2 24577.567420: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130363   kworker/u17:2-23076 (23076) [001] d..2 24577.567421: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
130364  appEventThread-23905 (23896) [003] d..2 24577.567423: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
130365     kworker/1:1-13091 (13091) [001] d..2 24577.567425: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
130366          <idle>-0     (-----) [003] d..1 24577.567431: cpu_idle: state=0 cpu_id=3
130367     kworker/1:1-13091 (13091) [001] d..3 24577.567441: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
130368          <idle>-0     (-----) [003] .n.1 24577.567446: cpu_idle: state=4294967295 cpu_id=3
130369          <idle>-0     (-----) [003] d..2 24577.567452: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
130370     kworker/1:1-13091 (13091) [001] d..2 24577.567453: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130371          <idle>-0     (-----) [001] d..1 24577.567460: cpu_idle: state=0 cpu_id=1
130372            adbd-23485 ( 1007) [003] d..2 24577.567471: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
130373          <idle>-0     (-----) [003] d..1 24577.567478: cpu_idle: state=0 cpu_id=3
130374              ps-13422 (13422) [000] d..2 24577.567540: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130375              ps-13422 (13422) [000] dn.3 24577.567548: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130376          <idle>-0     (-----) [001] d.h3 24577.567562: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
130377          <idle>-0     (-----) [001] dnh4 24577.567567: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
130378          <idle>-0     (-----) [001] .n.1 24577.567575: cpu_idle: state=4294967295 cpu_id=1
130379              ps-13422 (13422) [000] d..2 24577.567576: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130380          <idle>-0     (-----) [001] d..2 24577.567582: 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
130381   kworker/u17:2-23076 (23076) [001] d..2 24577.567588: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
130382   kworker/u17:2-23076 (23076) [001] d..3 24577.567593: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
130383 shell svc 13418-13419 ( 1007) [000] d..2 24577.567599: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130384   kworker/u17:2-23076 (23076) [001] d..2 24577.567605: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
130385     kworker/1:1-13091 (13091) [001] d..2 24577.567610: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
130386     kworker/1:1-13091 (13091) [001] d..3 24577.567631: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
130387     kworker/1:1-13091 (13091) [001] d..2 24577.567647: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130388          <idle>-0     (-----) [001] d..1 24577.567654: cpu_idle: state=0 cpu_id=1
130389              ps-13422 (13422) [000] d..2 24577.567718: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130390              ps-13422 (13422) [000] dn.3 24577.567727: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130391              ps-13422 (13422) [000] d..2 24577.567732: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130392 shell svc 13418-13419 ( 1007) [000] d..2 24577.567754: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130393              ps-13422 (13422) [000] d..2 24577.567873: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130394              ps-13422 (13422) [000] dn.3 24577.567882: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130395              ps-13422 (13422) [000] d..2 24577.567887: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130396 shell svc 13418-13419 ( 1007) [000] d..2 24577.567908: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130397 s.nexuslauncher-24827 (24827) [002] .... 24577.567939: binder_transaction: transaction=1671666 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
130398 s.nexuslauncher-24827 (24827) [002] d..4 24577.567947: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
130399 s.nexuslauncher-24827 (24827) [002] d..5 24577.567969: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
130400          <idle>-0     (-----) [001] .n.1 24577.567974: cpu_idle: state=4294967295 cpu_id=1
130401          <idle>-0     (-----) [001] d..2 24577.567980: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
130402  Binder:23896_4-24423 (23896) [001] .... 24577.567986: binder_transaction_received: transaction=1671666
130403 s.nexuslauncher-24827 (24827) [002] d..3 24577.568006: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
130404  Binder:23896_4-24423 (23896) [001] d..1 24577.568014: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
130405 s.nexuslauncher-24827 (24827) [002] d..4 24577.568025: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=003
130406          <idle>-0     (-----) [003] .n.1 24577.568030: cpu_idle: state=4294967295 cpu_id=3
130407              ps-13422 (13422) [000] d..2 24577.568031: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130408  Binder:23896_4-24423 (23896) [001] dn.2 24577.568033: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
130409          <idle>-0     (-----) [003] d..2 24577.568037: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
130410  Binder:23896_4-24423 (23896) [001] d..2 24577.568039: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
130411              ps-13422 (13422) [000] dn.3 24577.568040: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130412              ps-13422 (13422) [000] d..2 24577.568045: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130413  appEventThread-23905 (23896) [001] d..2 24577.568054: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
130414  Binder:23896_4-24423 (23896) [001] d..1 24577.568057: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
130415  Binder:23896_4-24423 (23896) [001] dn.2 24577.568062: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
130416  Binder:23896_4-24423 (23896) [001] d..2 24577.568066: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
130417 shell svc 13418-13419 ( 1007) [000] d..2 24577.568068: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130418    RenderThread-25194 (24827) [003] d..2 24577.568073: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
130419          <idle>-0     (-----) [003] d..1 24577.568080: cpu_idle: state=0 cpu_id=3
130420  appEventThread-23905 (23896) [001] d..2 24577.568091: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
130421  Binder:23896_4-24423 (23896) [001] d..2 24577.568116: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130422          <idle>-0     (-----) [001] d..1 24577.568124: cpu_idle: state=0 cpu_id=1
130423              ps-13422 (13422) [000] d..2 24577.568189: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130424              ps-13422 (13422) [000] dn.3 24577.568198: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130425              ps-13422 (13422) [000] d..2 24577.568203: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130426 shell svc 13418-13419 ( 1007) [000] d..2 24577.568225: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130427              ps-13422 (13422) [000] d..2 24577.568353: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130428              ps-13422 (13422) [000] dn.3 24577.568361: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130429              ps-13422 (13422) [000] d..2 24577.568367: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130430 shell svc 13418-13419 ( 1007) [000] d..2 24577.568389: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130431              ps-13422 (13422) [000] d..2 24577.568510: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130432              ps-13422 (13422) [000] dn.3 24577.568518: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130433              ps-13422 (13422) [000] d..2 24577.568523: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130434 s.nexuslauncher-24827 (24827) [002] d..3 24577.568532: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=003
130435 shell svc 13418-13419 ( 1007) [000] d..2 24577.568545: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130436 s.nexuslauncher-24827 (24827) [002] d..4 24577.568550: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
130437          <idle>-0     (-----) [001] .n.1 24577.568556: cpu_idle: state=4294967295 cpu_id=1
130438          <idle>-0     (-----) [001] d..2 24577.568562: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
130439 s.nexuslauncher-24827 (24827) [002] d..2 24577.568564: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
130440            adbd-23484 ( 1007) [002] d..2 24577.568577: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
130441            adbd-23484 ( 1007) [002] d..3 24577.568588: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
130442            adbd-23484 ( 1007) [002] d..2 24577.568624: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
130443              ps-13422 (13422) [000] d..2 24577.568666: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130444              ps-13422 (13422) [000] dn.3 24577.568673: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130445              ps-13422 (13422) [000] d..2 24577.568679: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130446            adbd-1007  ( 1007) [002] d..1 24577.568689: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
130447            adbd-1007  ( 1007) [002] d..2 24577.568700: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
130448 shell svc 13418-13419 ( 1007) [000] d..2 24577.568701: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130449          <idle>-0     (-----) [003] .n.1 24577.568705: cpu_idle: state=4294967295 cpu_id=3
130450          <idle>-0     (-----) [003] d..2 24577.568710: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
130451            adbd-1007  ( 1007) [002] d..2 24577.568732: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130452          <idle>-0     (-----) [002] d..1 24577.568739: cpu_idle: state=0 cpu_id=2
130453            adbd-23485 ( 1007) [003] d..2 24577.568752: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
130454    RenderThread-25194 (24827) [001] d.h2 24577.568755: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
130455          <idle>-0     (-----) [003] d..1 24577.568759: cpu_idle: state=0 cpu_id=3
130456    RenderThread-25194 (24827) [001] d.h3 24577.568768: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
130457              ps-13422 (13422) [000] d..2 24577.568820: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130458              ps-13422 (13422) [000] dn.3 24577.568828: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130459              ps-13422 (13422) [000] d..2 24577.568834: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130460 shell svc 13418-13419 ( 1007) [000] d..2 24577.568856: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130461    RenderThread-25194 (24827) [001] d..1 24577.568874: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
130462    RenderThread-25194 (24827) [001] d..2 24577.568886: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
130463          <idle>-0     (-----) [002] .n.1 24577.568890: cpu_idle: state=4294967295 cpu_id=2
130464          <idle>-0     (-----) [002] d..2 24577.568896: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
130465    RenderThread-25194 (24827) [001] .... 24577.568952: binder_transaction: transaction=1671667 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
130466    RenderThread-25194 (24827) [001] ...2 24577.568959: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
130467    RenderThread-25194 (24827) [001] d..4 24577.568961: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
130468              ps-13422 (13422) [000] d..2 24577.568974: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130469    RenderThread-25194 (24827) [001] d..5 24577.568978: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=003
130470              ps-13422 (13422) [000] dn.3 24577.568982: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130471          <idle>-0     (-----) [003] .n.1 24577.568983: cpu_idle: state=4294967295 cpu_id=3
130472              ps-13422 (13422) [000] d..2 24577.568988: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130473          <idle>-0     (-----) [003] d..2 24577.568990: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
130474 s.nexuslauncher-24827 (24827) [002] d..2 24577.568993: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
130475  Binder:23896_4-24423 (23896) [003] .... 24577.568995: binder_transaction_received: transaction=1671667
130476   kworker/u17:2-23076 (23076) [002] d..2 24577.569003: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
130477    RenderThread-25194 (24827) [001] d..2 24577.569006: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130478   kworker/u17:2-23076 (23076) [002] d..3 24577.569010: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
130479 shell svc 13418-13419 ( 1007) [000] d..2 24577.569018: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130480   kworker/u17:2-23076 (23076) [002] d..2 24577.569022: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
130481          <idle>-0     (-----) [000] d..1 24577.569027: cpu_idle: state=0 cpu_id=0
130482     kworker/2:0-12895 (12895) [002] d..2 24577.569028: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
130483     kworker/2:0-12895 (12895) [002] d..3 24577.569049: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
130484  Binder:23896_4-24423 (23896) [003] .... 24577.569057: binder_transaction: transaction=1671668 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
130485     kworker/2:0-12895 (12895) [002] d..2 24577.569058: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
130486  Binder:23896_4-24423 (23896) [003] d..2 24577.569067: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
130487  Binder:23896_4-24423 (23896) [003] d..3 24577.569079: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=003
130488  Binder:23896_4-24423 (23896) [003] .... 24577.569081: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
130489  Binder:23896_4-24423 (23896) [003] d..2 24577.569090: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
130490    RenderThread-25194 (24827) [003] .... 24577.569096: binder_transaction_received: transaction=1671668
130491            adbd-23485 ( 1007) [002] d..2 24577.569102: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130492          <idle>-0     (-----) [002] d..1 24577.569108: cpu_idle: state=0 cpu_id=2
130493              ps-13422 (13422) [001] d.h2 24577.569114: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
130494              ps-13422 (13422) [001] d.h3 24577.569142: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
130495    RenderThread-25194 (24827) [003] d..2 24577.569151: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
130496   kworker/u17:2-23076 (23076) [003] d..2 24577.569163: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
130497   kworker/u17:2-23076 (23076) [003] d..3 24577.569170: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
130498   kworker/u17:2-23076 (23076) [003] d..2 24577.569183: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
130499              ps-13422 (13422) [001] d..2 24577.569190: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130500              ps-13422 (13422) [001] dn.3 24577.569202: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130501              ps-13422 (13422) [001] d..2 24577.569207: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130502 shell svc 13418-13419 ( 1007) [001] d..2 24577.569236: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130503              ps-13422 (13422) [001] d.h2 24577.569327: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
130504              ps-13422 (13422) [001] d.h3 24577.569342: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
130505    RenderThread-25194 (24827) [003] d..2 24577.569351: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
130506   kworker/u17:2-23076 (23076) [003] d..2 24577.569371: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
130507              ps-13422 (13422) [001] d..2 24577.569395: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130508              ps-13422 (13422) [001] dn.3 24577.569403: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130509              ps-13422 (13422) [001] d..2 24577.569408: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130510 shell svc 13418-13419 ( 1007) [001] d..2 24577.569431: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130511              ps-13422 (13422) [001] d..2 24577.569552: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130512              ps-13422 (13422) [001] dn.3 24577.569560: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130513              ps-13422 (13422) [001] d..2 24577.569566: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130514 shell svc 13418-13419 ( 1007) [001] d..2 24577.569590: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130515              ps-13422 (13422) [001] d..2 24577.569738: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130516              ps-13422 (13422) [001] dn.3 24577.569746: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130517              ps-13422 (13422) [001] d..2 24577.569752: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130518 shell svc 13418-13419 ( 1007) [001] d..2 24577.569773: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130519              ps-13422 (13422) [001] d..2 24577.569895: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130520              ps-13422 (13422) [001] dn.3 24577.569903: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130521              ps-13422 (13422) [001] d..2 24577.569909: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130522 shell svc 13418-13419 ( 1007) [001] d..2 24577.569930: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130523              ps-13422 (13422) [001] d..2 24577.570052: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130524              ps-13422 (13422) [001] dn.3 24577.570060: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130525              ps-13422 (13422) [001] d..2 24577.570066: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130526 shell svc 13418-13419 ( 1007) [001] d..2 24577.570087: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130527              ps-13422 (13422) [001] d..2 24577.570208: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130528              ps-13422 (13422) [001] dn.3 24577.570217: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130529              ps-13422 (13422) [001] d..2 24577.570222: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130530          <idle>-0     (-----) [000] ...1 24577.570230: cpu_idle: state=4294967295 cpu_id=0
130531          <idle>-0     (-----) [000] d..1 24577.570233: cpu_idle: state=0 cpu_id=0
130532 shell svc 13418-13419 ( 1007) [001] d..2 24577.570244: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130533              ps-13422 (13422) [001] d..2 24577.570363: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130534              ps-13422 (13422) [001] dn.3 24577.570371: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130535              ps-13422 (13422) [001] d..2 24577.570377: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130536 shell svc 13418-13419 ( 1007) [001] d..2 24577.570398: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130537              ps-13422 (13422) [001] d..2 24577.570518: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130538              ps-13422 (13422) [001] dn.3 24577.570526: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130539              ps-13422 (13422) [001] d..2 24577.570531: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130540 shell svc 13418-13419 ( 1007) [001] d..2 24577.570553: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130541              ps-13422 (13422) [001] d..2 24577.570671: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130542              ps-13422 (13422) [001] dn.3 24577.570679: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130543              ps-13422 (13422) [001] d..2 24577.570685: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130544 shell svc 13418-13419 ( 1007) [001] d..2 24577.570706: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130545              ps-13422 (13422) [001] d..2 24577.570828: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130546              ps-13422 (13422) [001] dn.3 24577.570836: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130547              ps-13422 (13422) [001] d..2 24577.570842: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130548 shell svc 13418-13419 ( 1007) [001] d..2 24577.570863: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130549          <idle>-0     (-----) [002] d.s2 24577.570899: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130550          <idle>-0     (-----) [002] dns3 24577.570908: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130551          <idle>-0     (-----) [002] .n.1 24577.570913: cpu_idle: state=4294967295 cpu_id=2
130552          <idle>-0     (-----) [002] d..2 24577.570919: 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
130553     rcu_preempt-7     (    7) [002] d..2 24577.570944: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
130554  Binder:23896_4-24423 (23896) [002] d..2 24577.570988: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130555          <idle>-0     (-----) [002] d..1 24577.570995: cpu_idle: state=0 cpu_id=2
130556              ps-13422 (13422) [001] d..2 24577.571007: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130557              ps-13422 (13422) [001] dn.3 24577.571015: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130558              ps-13422 (13422) [001] d..2 24577.571021: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130559 shell svc 13418-13419 ( 1007) [001] d..2 24577.571043: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130560              ps-13422 (13422) [001] d..2 24577.571165: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130561              ps-13422 (13422) [001] dn.3 24577.571173: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130562              ps-13422 (13422) [001] d..2 24577.571179: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130563 shell svc 13418-13419 ( 1007) [001] d..2 24577.571200: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130564          <idle>-0     (-----) [002] d.h2 24577.571272: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
130565          <idle>-0     (-----) [002] dnh3 24577.571281: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
130566          <idle>-0     (-----) [002] .n.1 24577.571286: cpu_idle: state=4294967295 cpu_id=2
130567          <idle>-0     (-----) [002] d..2 24577.571292: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
130568        DispSync-23904 (23896) [002] d..1 24577.571306: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
130569        DispSync-23904 (23896) [002] d..2 24577.571320: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
130570              ps-13422 (13422) [001] d..2 24577.571324: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130571          <idle>-0     (-----) [000] .n.1 24577.571325: cpu_idle: state=4294967295 cpu_id=0
130572          <idle>-0     (-----) [000] d..2 24577.571332: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
130573              ps-13422 (13422) [001] dn.3 24577.571332: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130574        DispSync-23904 (23896) [002] d..2 24577.571347: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130575   sfEventThread-23906 (23896) [000] d..3 24577.571368: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
130576   sfEventThread-23906 (23896) [000] d..4 24577.571381: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
130577 shell svc 13418-13419 ( 1007) [002] d..2 24577.571386: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
130578   sfEventThread-23906 (23896) [000] d..2 24577.571408: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130579          <idle>-0     (-----) [000] d..1 24577.571415: cpu_idle: state=0 cpu_id=0
130580              ps-13422 (13422) [001] d..2 24577.571458: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
130581              ps-13422 (13422) [001] dn.3 24577.571471: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130582              ps-13422 (13422) [001] d..2 24577.571476: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130583 shell svc 13418-13419 ( 1007) [001] d..2 24577.571500: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130584    RenderThread-25194 (24827) [003] d..2 24577.571531: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
130585     kworker/3:1-12662 (12662) [003] d..2 24577.571540: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
130586     kworker/3:1-12662 (12662) [003] d..3 24577.571563: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
130587     kworker/3:1-12662 (12662) [003] d..2 24577.571575: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
130588     kworker/3:1-12662 (12662) [003] d..3 24577.571584: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
130589     kworker/3:1-12662 (12662) [003] d..2 24577.571592: 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
130590            adbd-23485 ( 1007) [003] d..2 24577.571620: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
130591              ps-13422 (13422) [001] d..2 24577.571621: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130592              ps-13422 (13422) [001] dn.3 24577.571629: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130593          <idle>-0     (-----) [003] d.h2 24577.571630: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=003
130594              ps-13422 (13422) [001] d..2 24577.571634: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130595          <idle>-0     (-----) [003] d.h3 24577.571641: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
130596          <idle>-0     (-----) [003] d.h3 24577.571647: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
130597          <idle>-0     (-----) [000] .n.1 24577.571651: cpu_idle: state=4294967295 cpu_id=0
130598          <idle>-0     (-----) [003] d..1 24577.571656: cpu_idle: state=0 cpu_id=3
130599 shell svc 13418-13419 ( 1007) [001] d..2 24577.571656: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130600          <idle>-0     (-----) [000] d..2 24577.571658: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
130601  surfaceflinger-23896 (23896) [002] d..1 24577.571745: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
130602  surfaceflinger-23896 (23896) [002] d..2 24577.571761: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
130603          <idle>-0     (-----) [003] .n.1 24577.571766: cpu_idle: state=4294967295 cpu_id=3
130604          <idle>-0     (-----) [003] d..2 24577.571773: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
130605              ps-13422 (13422) [001] d..2 24577.571779: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130606              ps-13422 (13422) [001] dn.3 24577.571787: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130607              ps-13422 (13422) [001] d..2 24577.571793: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130608   sfEventThread-23906 (23896) [003] d..2 24577.571811: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130609 shell svc 13418-13419 ( 1007) [001] d..2 24577.571822: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130610          <idle>-0     (-----) [001] d..1 24577.571835: cpu_idle: state=0 cpu_id=1
130611  surfaceflinger-23896 (23896) [002] ...1 24577.571854: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
130612  surfaceflinger-23896 (23896) [002] ...1 24577.571858: tracing_mark_write: E|23896
130613    RenderThread-25194 (24827) [000] .... 24577.571880: binder_transaction: transaction=1671669 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
130614    RenderThread-25194 (24827) [000] ...2 24577.571890: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
130615    RenderThread-25194 (24827) [000] d..4 24577.571892: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
130616  surfaceflinger-23896 (23896) [002] .... 24577.571900: binder_transaction: transaction=1671670 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
130617    RenderThread-25194 (24827) [000] d..5 24577.571906: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
130618    RenderThread-25194 (24827) [000] d..2 24577.571915: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
130619  surfaceflinger-23896 (23896) [002] ...2 24577.571919: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
130620  Binder:23896_4-24423 (23896) [000] .... 24577.571920: binder_transaction_received: transaction=1671669
130621  surfaceflinger-23896 (23896) [002] d..4 24577.571928: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
130622  surfaceflinger-23896 (23896) [002] d..5 24577.571945: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
130623              ps-13422 (13422) [003] d..2 24577.571948: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130624          <idle>-0     (-----) [001] .n.1 24577.571951: cpu_idle: state=4294967295 cpu_id=1
130625          <idle>-0     (-----) [001] d..2 24577.571957: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
130626  surfaceflinger-23896 (23896) [002] d..2 24577.571958: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
130627  HwBinder:598_3-633   (  598) [001] .... 24577.571966: binder_transaction_received: transaction=1671670
130628              ps-13422 (13422) [003] dn.3 24577.571968: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=003
130629            adbd-23484 ( 1007) [002] d..2 24577.571974: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
130630              ps-13422 (13422) [003] d..2 24577.571974: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130631            adbd-23484 ( 1007) [002] d..3 24577.571981: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
130632 shell svc 13418-13419 ( 1007) [003] d..2 24577.572000: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130633  HwBinder:598_3-633   (  598) [001] ...1 24577.572009: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
130634            adbd-23484 ( 1007) [002] d..2 24577.572021: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
130635  Binder:23896_4-24423 (23896) [000] .... 24577.572027: binder_transaction: transaction=1671671 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
130636  Binder:23896_4-24423 (23896) [000] d..2 24577.572032: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
130637  Binder:23896_4-24423 (23896) [000] d..3 24577.572040: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
130638  Binder:23896_4-24423 (23896) [000] .... 24577.572041: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
130639  Binder:23896_4-24423 (23896) [000] d..2 24577.572068: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
130640    RenderThread-25194 (24827) [000] .... 24577.572072: binder_transaction_received: transaction=1671671
130641            adbd-1007  ( 1007) [002] d..1 24577.572113: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
130642  HwBinder:598_3-633   (  598) [001] ...1 24577.572117: tracing_mark_write: B|598|HWCSession::PresentDisplay::
130643              ps-13422 (13422) [003] d..2 24577.572120: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=003
130644            adbd-1007  ( 1007) [002] d..2 24577.572131: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
130645              ps-13422 (13422) [003] dn.3 24577.572131: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=003
130646              ps-13422 (13422) [003] d..2 24577.572137: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130647    RenderThread-25194 (24827) [000] d..2 24577.572153: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130648            adbd-1007  ( 1007) [002] d..2 24577.572165: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130649 shell svc 13418-13419 ( 1007) [003] d..2 24577.572167: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
130650          <idle>-0     (-----) [002] d..1 24577.572173: cpu_idle: state=0 cpu_id=2
130651          <idle>-0     (-----) [003] d..1 24577.572177: cpu_idle: state=0 cpu_id=3
130652  HwBinder:598_3-633   (  598) [001] ...1 24577.572280: tracing_mark_write: B|598|HWDeviceDRM::Commit::
130653  HwBinder:598_3-633   (  598) [001] ...1 24577.572290: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
130654              ps-13422 (13422) [000] d..2 24577.572297: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=003
130655              ps-13422 (13422) [000] dn.3 24577.572311: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130656              ps-13422 (13422) [000] d..2 24577.572316: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130657 shell svc 13418-13419 ( 1007) [000] d..2 24577.572345: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130658              ps-13422 (13422) [000] d..2 24577.572467: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130659              ps-13422 (13422) [000] dn.3 24577.572475: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130660              ps-13422 (13422) [000] d..2 24577.572481: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130661 shell svc 13418-13419 ( 1007) [000] d..2 24577.572503: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130662              ps-13422 (13422) [000] d..2 24577.572623: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130663              ps-13422 (13422) [000] dn.3 24577.572631: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130664              ps-13422 (13422) [000] d..2 24577.572636: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130665 shell svc 13418-13419 ( 1007) [000] d..2 24577.572659: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130666              ps-13422 (13422) [000] d..2 24577.572775: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130667              ps-13422 (13422) [000] dn.3 24577.572784: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130668              ps-13422 (13422) [000] d..2 24577.572789: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130669 shell svc 13418-13419 ( 1007) [000] d..2 24577.572811: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130670  HwBinder:598_3-633   (  598) [001] d..2 24577.572817: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
130671  HwBinder:598_3-633   (  598) [001] d..3 24577.572830: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
130672          <idle>-0     (-----) [003] .n.1 24577.572835: cpu_idle: state=4294967295 cpu_id=3
130673          <idle>-0     (-----) [003] d..2 24577.572841: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
130674  HwBinder:598_3-633   (  598) [001] ...1 24577.572907: tracing_mark_write: E|598
130675  HwBinder:598_3-633   (  598) [001] ...1 24577.572911: tracing_mark_write: E|598
130676              ps-13422 (13422) [000] d..2 24577.572941: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130677              ps-13422 (13422) [000] dn.3 24577.572949: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130678              ps-13422 (13422) [000] d..2 24577.572954: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130679  HwBinder:598_3-633   (  598) [001] ...1 24577.572974: tracing_mark_write: E|598
130680 shell svc 13418-13419 ( 1007) [000] d..2 24577.572976: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130681  HwBinder:598_3-633   (  598) [001] ...1 24577.573022: tracing_mark_write: E|598
130682  HwBinder:598_3-633   (  598) [001] .... 24577.573035: binder_transaction: transaction=1671672 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
130683  HwBinder:598_3-633   (  598) [001] d..2 24577.573049: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
130684  HwBinder:598_3-633   (  598) [001] d..3 24577.573060: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
130685  HwBinder:598_3-633   (  598) [001] .... 24577.573062: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
130686          <idle>-0     (-----) [002] .n.1 24577.573065: cpu_idle: state=4294967295 cpu_id=2
130687          <idle>-0     (-----) [002] d..2 24577.573071: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
130688  surfaceflinger-23896 (23896) [002] .... 24577.573077: binder_transaction_received: transaction=1671672
130689              ps-13422 (13422) [000] d..2 24577.573093: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130690              ps-13422 (13422) [000] dn.3 24577.573101: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130691              ps-13422 (13422) [000] d..2 24577.573106: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130692  HwBinder:598_3-633   (  598) [001] d..2 24577.573115: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
130693 shell svc 13418-13419 ( 1007) [000] d.h2 24577.573136: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
130694 shell svc 13418-13419 ( 1007) [000] d.h3 24577.573154: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
130695            adbd-23485 ( 1007) [001] d..2 24577.573161: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
130696 kgsl_worker_thr-246   (  246) [001] d.h4 24577.573177: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
130697 shell svc 13418-13419 ( 1007) [000] d..2 24577.573191: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130698 kgsl_worker_thr-246   (  246) [001] d.h5 24577.573199: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
130699 crtc_commit:111-253   (  253) [003] d..2 24577.573225: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
130700   kworker/u17:2-23076 (23076) [003] d..2 24577.573237: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
130701   kworker/u17:2-23076 (23076) [003] d..3 24577.573243: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
130702   kworker/u17:2-23076 (23076) [003] d..2 24577.573255: 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
130703 kgsl_worker_thr-246   (  246) [001] d..2 24577.573256: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
130704     kworker/3:1-12662 (12662) [003] d..2 24577.573261: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
130705 kgsl_worker_thr-246   (  246) [001] d..3 24577.573268: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
130706     kworker/3:1-12662 (12662) [003] d..3 24577.573270: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
130707     kworker/3:1-12662 (12662) [003] d..2 24577.573279: 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
130708 kgsl_worker_thr-246   (  246) [001] d..2 24577.573287: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
130709              ps-13422 (13422) [000] d..2 24577.573310: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130710              ps-13422 (13422) [000] dn.3 24577.573319: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130711              ps-13422 (13422) [000] d..2 24577.573324: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130712            adbd-23485 ( 1007) [001] d..2 24577.573339: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130713              ps-13422 (13422) [001] d.h4 24577.573352: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
130714 shell svc 13418-13419 ( 1007) [000] d..2 24577.573353: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130715          <idle>-0     (-----) [000] d..1 24577.573363: cpu_idle: state=0 cpu_id=0
130716              ps-13422 (13422) [001] d.h5 24577.573374: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
130717          <idle>-0     (-----) [000] .n.1 24577.573379: cpu_idle: state=4294967295 cpu_id=0
130718          <idle>-0     (-----) [000] d..2 24577.573385: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
130719   kworker/u17:2-23076 (23076) [000] d..2 24577.573396: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
130720   kworker/u17:2-23076 (23076) [000] d..3 24577.573404: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
130721   kworker/u17:2-23076 (23076) [000] d..2 24577.573417: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
130722     kworker/0:1-13012 (13012) [000] d..2 24577.573424: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
130723  surfaceflinger-23896 (23896) [002] d..2 24577.573433: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130724     kworker/0:1-13012 (13012) [000] d..3 24577.573444: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
130725          <idle>-0     (-----) [002] d..2 24577.573451: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
130726     kworker/0:1-13012 (13012) [000] d..2 24577.573466: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130727          <idle>-0     (-----) [000] d..1 24577.573472: cpu_idle: state=0 cpu_id=0
130728            adbd-23485 ( 1007) [002] d..2 24577.573476: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130729          <idle>-0     (-----) [002] d..1 24577.573482: cpu_idle: state=0 cpu_id=2
130730  kworker/u16:10-23868 (23868) [003] d..2 24577.573496: 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
130731          <idle>-0     (-----) [003] d..1 24577.573505: cpu_idle: state=0 cpu_id=3
130732              ps-13422 (13422) [001] d..2 24577.573508: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130733              ps-13422 (13422) [001] dn.3 24577.573522: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130734              ps-13422 (13422) [001] d..2 24577.573527: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130735 shell svc 13418-13419 ( 1007) [001] d..2 24577.573553: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130736              ps-13422 (13422) [001] d.h2 24577.573582: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
130737              ps-13422 (13422) [001] d.h3 24577.573595: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
130738          <idle>-0     (-----) [000] .n.1 24577.573600: cpu_idle: state=4294967295 cpu_id=0
130739          <idle>-0     (-----) [000] d..2 24577.573606: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
130740   kworker/u17:2-23076 (23076) [000] d..2 24577.573613: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
130741   kworker/u17:2-23076 (23076) [000] d..3 24577.573619: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
130742   kworker/u17:2-23076 (23076) [000] d..2 24577.573631: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
130743     kworker/0:1-13012 (13012) [000] d..2 24577.573640: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
130744     kworker/0:1-13012 (13012) [000] d..3 24577.573661: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
130745     kworker/0:1-13012 (13012) [000] d..2 24577.573671: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
130746            adbd-23484 ( 1007) [000] d..2 24577.573683: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
130747            adbd-23484 ( 1007) [000] d..3 24577.573692: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
130748              ps-13422 (13422) [001] d..2 24577.573720: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130749              ps-13422 (13422) [001] dn.3 24577.573728: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130750              ps-13422 (13422) [001] d..2 24577.573733: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130751            adbd-23484 ( 1007) [000] d..2 24577.573735: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
130752 shell svc 13418-13419 ( 1007) [001] d..2 24577.573756: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130753            adbd-1007  ( 1007) [000] d..1 24577.573807: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
130754            adbd-1007  ( 1007) [000] d..2 24577.573821: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
130755          <idle>-0     (-----) [002] .n.1 24577.573826: cpu_idle: state=4294967295 cpu_id=2
130756          <idle>-0     (-----) [002] d..2 24577.573832: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
130757            adbd-1007  ( 1007) [000] d..2 24577.573854: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130758          <idle>-0     (-----) [000] d..1 24577.573863: cpu_idle: state=0 cpu_id=0
130759            adbd-23485 ( 1007) [002] d..2 24577.573873: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130760              ps-13422 (13422) [001] d.h2 24577.573878: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
130761          <idle>-0     (-----) [002] d..1 24577.573879: cpu_idle: state=0 cpu_id=2
130762              ps-13422 (13422) [001] d.h3 24577.573889: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
130763          <idle>-0     (-----) [000] .n.1 24577.573894: cpu_idle: state=4294967295 cpu_id=0
130764          <idle>-0     (-----) [000] d..2 24577.573901: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
130765              ps-13422 (13422) [001] d..2 24577.573907: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130766   kworker/u17:2-23076 (23076) [000] d..2 24577.573912: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
130767              ps-13422 (13422) [001] dn.3 24577.573913: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130768   kworker/u17:2-23076 (23076) [000] d..3 24577.573918: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
130769              ps-13422 (13422) [001] d..2 24577.573919: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130770   kworker/u17:2-23076 (23076) [000] d..2 24577.573933: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
130771     kworker/0:1-13012 (13012) [000] d..2 24577.573939: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
130772 shell svc 13418-13419 ( 1007) [001] d..2 24577.573942: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130773     kworker/0:1-13012 (13012) [000] d..3 24577.573948: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
130774          <idle>-0     (-----) [002] .n.1 24577.573953: cpu_idle: state=4294967295 cpu_id=2
130775          <idle>-0     (-----) [002] d..2 24577.573959: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
130776     kworker/0:1-13012 (13012) [000] d..2 24577.573962: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130777          <idle>-0     (-----) [000] d..1 24577.573968: cpu_idle: state=0 cpu_id=0
130778            adbd-23485 ( 1007) [002] d..2 24577.573998: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130779          <idle>-0     (-----) [002] d..1 24577.574004: cpu_idle: state=0 cpu_id=2
130780              ps-13422 (13422) [001] d.h2 24577.574030: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
130781              ps-13422 (13422) [001] d.h3 24577.574041: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
130782          <idle>-0     (-----) [000] .n.1 24577.574046: cpu_idle: state=4294967295 cpu_id=0
130783          <idle>-0     (-----) [000] d..2 24577.574052: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
130784   kworker/u17:2-23076 (23076) [000] d..2 24577.574060: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
130785   kworker/u17:2-23076 (23076) [000] d..3 24577.574065: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
130786   kworker/u17:2-23076 (23076) [000] d..2 24577.574077: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
130787     kworker/0:1-13012 (13012) [000] d..2 24577.574083: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
130788     kworker/0:1-13012 (13012) [000] d..3 24577.574091: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
130789          <idle>-0     (-----) [002] .n.1 24577.574096: cpu_idle: state=4294967295 cpu_id=2
130790              ps-13422 (13422) [001] d..2 24577.574097: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130791          <idle>-0     (-----) [002] d..2 24577.574102: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
130792              ps-13422 (13422) [001] dn.3 24577.574104: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130793     kworker/0:1-13012 (13012) [000] d..2 24577.574104: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130794              ps-13422 (13422) [001] d..2 24577.574110: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130795          <idle>-0     (-----) [000] d..1 24577.574111: cpu_idle: state=0 cpu_id=0
130796            adbd-23485 ( 1007) [002] d..2 24577.574128: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130797 shell svc 13418-13419 ( 1007) [001] d..2 24577.574139: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130798          <idle>-0     (-----) [001] d..1 24577.574148: cpu_idle: state=0 cpu_id=1
130799              ps-13422 (13422) [002] d.s2 24577.574237: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
130800          <idle>-0     (-----) [001] d.h3 24577.574245: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
130801          <idle>-0     (-----) [001] d.h4 24577.574255: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
130802          <idle>-0     (-----) [000] .n.1 24577.574260: cpu_idle: state=4294967295 cpu_id=0
130803              ps-13422 (13422) [002] d.s3 24577.574265: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
130804          <idle>-0     (-----) [001] ...1 24577.574266: cpu_idle: state=4294967295 cpu_id=1
130805          <idle>-0     (-----) [001] d..1 24577.574268: cpu_idle: state=0 cpu_id=1
130806          <idle>-0     (-----) [000] d..2 24577.574269: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
130807   kworker/u17:2-23076 (23076) [000] d..2 24577.574278: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
130808   kworker/u17:2-23076 (23076) [000] d..3 24577.574283: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
130809   kworker/u17:2-23076 (23076) [000] d..2 24577.574295: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
130810     kworker/0:1-13012 (13012) [000] d..2 24577.574303: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
130811     kworker/0:1-13012 (13012) [000] d..3 24577.574318: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
130812          <idle>-0     (-----) [001] .n.1 24577.574323: cpu_idle: state=4294967295 cpu_id=1
130813     kworker/0:1-13012 (13012) [000] d..2 24577.574327: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
130814          <idle>-0     (-----) [001] d..2 24577.574331: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
130815            adbd-23484 ( 1007) [001] d..2 24577.574342: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
130816              ps-13422 (13422) [002] d..2 24577.574342: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130817            adbd-23484 ( 1007) [001] d..3 24577.574357: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
130818              ps-13422 (13422) [002] dn.3 24577.574358: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
130819              ps-13422 (13422) [002] d..2 24577.574364: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130820 shell svc 13418-13419 ( 1007) [002] d..2 24577.574388: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130821            adbd-23484 ( 1007) [001] d..2 24577.574410: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
130822  kworker/u16:10-23868 (23868) [000] .... 24577.574428: clk_set_rate: l3_cluster0_vote_clk 1209600000
130823  kworker/u16:10-23868 (23868) [000] .... 24577.574436: clk_set_rate: l3_clk 1209600000
130824            adbd-1007  ( 1007) [001] d..1 24577.574471: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
130825            adbd-1007  ( 1007) [001] d..2 24577.574490: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
130826              ps-13422 (13422) [002] d..2 24577.574527: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
130827            adbd-1007  ( 1007) [001] d..2 24577.574529: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130828              ps-13422 (13422) [002] dn.3 24577.574537: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
130829              ps-13422 (13422) [002] d..2 24577.574542: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130830          <idle>-0     (-----) [001] d..1 24577.574553: cpu_idle: state=0 cpu_id=1
130831          <idle>-0     (-----) [001] ...1 24577.574563: cpu_idle: state=4294967295 cpu_id=1
130832 shell svc 13418-13419 ( 1007) [002] d..2 24577.574565: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130833          <idle>-0     (-----) [001] d..1 24577.574566: cpu_idle: state=0 cpu_id=1
130834              ps-13422 (13422) [002] d..2 24577.574707: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
130835  kworker/u16:10-23868 (23868) [000] d..2 24577.574715: 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
130836              ps-13422 (13422) [002] dn.3 24577.574716: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
130837              ps-13422 (13422) [002] d..2 24577.574721: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130838 shell svc 13418-13419 ( 1007) [002] d..2 24577.574744: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130839            adbd-23485 ( 1007) [000] d..2 24577.574759: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130840          <idle>-0     (-----) [000] d..1 24577.574768: cpu_idle: state=0 cpu_id=0
130841          <idle>-0     (-----) [001] d.h3 24577.574775: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
130842          <idle>-0     (-----) [001] d.h4 24577.574784: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
130843          <idle>-0     (-----) [000] .n.1 24577.574789: cpu_idle: state=4294967295 cpu_id=0
130844          <idle>-0     (-----) [000] d..2 24577.574796: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
130845          <idle>-0     (-----) [001] ...1 24577.574800: cpu_idle: state=4294967295 cpu_id=1
130846          <idle>-0     (-----) [001] d..1 24577.574803: cpu_idle: state=0 cpu_id=1
130847   kworker/u17:2-23076 (23076) [000] d..2 24577.574805: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
130848   kworker/u17:2-23076 (23076) [000] d..3 24577.574811: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
130849   kworker/u17:2-23076 (23076) [000] d..2 24577.574826: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
130850     kworker/0:1-13012 (13012) [000] d..2 24577.574831: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
130851     kworker/0:1-13012 (13012) [000] d..3 24577.574846: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
130852          <idle>-0     (-----) [001] .n.1 24577.574851: cpu_idle: state=4294967295 cpu_id=1
130853          <idle>-0     (-----) [001] d..2 24577.574858: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
130854     kworker/0:1-13012 (13012) [000] d..2 24577.574860: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130855          <idle>-0     (-----) [000] d..1 24577.574867: cpu_idle: state=0 cpu_id=0
130856              ps-13422 (13422) [002] d..2 24577.574877: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
130857              ps-13422 (13422) [002] dn.3 24577.574885: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
130858              ps-13422 (13422) [002] d..2 24577.574890: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130859            adbd-23485 ( 1007) [001] d..2 24577.574913: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130860 shell svc 13418-13419 ( 1007) [002] d..2 24577.574922: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130861              ps-13422 (13422) [001] d.h4 24577.574925: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
130862          <idle>-0     (-----) [002] d..1 24577.574928: cpu_idle: state=0 cpu_id=2
130863              ps-13422 (13422) [001] d.h5 24577.574935: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
130864          <idle>-0     (-----) [000] .n.1 24577.574939: cpu_idle: state=4294967295 cpu_id=0
130865          <idle>-0     (-----) [003] ...1 24577.574944: cpu_idle: state=4294967295 cpu_id=3
130866          <idle>-0     (-----) [000] d..2 24577.574945: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
130867          <idle>-0     (-----) [003] d..1 24577.574947: cpu_idle: state=0 cpu_id=3
130868   kworker/u17:2-23076 (23076) [000] d..2 24577.574954: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
130869   kworker/u17:2-23076 (23076) [000] d..3 24577.574960: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
130870   kworker/u17:2-23076 (23076) [000] d..2 24577.574972: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
130871     kworker/0:1-13012 (13012) [000] d..2 24577.574978: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
130872     kworker/0:1-13012 (13012) [000] d..3 24577.574994: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
130873          <idle>-0     (-----) [002] .n.1 24577.575000: cpu_idle: state=4294967295 cpu_id=2
130874          <idle>-0     (-----) [002] d..2 24577.575005: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
130875     kworker/0:1-13012 (13012) [000] d..2 24577.575008: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130876          <idle>-0     (-----) [000] d..1 24577.575015: cpu_idle: state=0 cpu_id=0
130877            adbd-23485 ( 1007) [002] d..2 24577.575027: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130878          <idle>-0     (-----) [002] d..1 24577.575032: cpu_idle: state=0 cpu_id=2
130879              ps-13422 (13422) [001] d..2 24577.575078: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
130880              ps-13422 (13422) [001] dn.3 24577.575092: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130881              ps-13422 (13422) [001] d..2 24577.575098: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130882 shell svc 13418-13419 ( 1007) [001] d..2 24577.575125: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130883              ps-13422 (13422) [001] d.h4 24577.575137: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
130884              ps-13422 (13422) [001] d.h5 24577.575147: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
130885          <idle>-0     (-----) [000] .n.1 24577.575151: cpu_idle: state=4294967295 cpu_id=0
130886          <idle>-0     (-----) [000] d..2 24577.575158: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
130887   kworker/u17:2-23076 (23076) [000] d..2 24577.575166: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
130888   kworker/u17:2-23076 (23076) [000] d..3 24577.575171: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
130889   kworker/u17:2-23076 (23076) [000] d..2 24577.575184: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
130890     kworker/0:1-13012 (13012) [000] d..2 24577.575191: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
130891     kworker/0:1-13012 (13012) [000] d..3 24577.575206: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
130892          <idle>-0     (-----) [002] .n.1 24577.575210: cpu_idle: state=4294967295 cpu_id=2
130893          <idle>-0     (-----) [002] d..2 24577.575215: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
130894     kworker/0:1-13012 (13012) [000] d..2 24577.575219: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130895            adbd-23484 ( 1007) [002] d..2 24577.575225: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
130896          <idle>-0     (-----) [000] d..1 24577.575226: cpu_idle: state=0 cpu_id=0
130897            adbd-23484 ( 1007) [002] d..3 24577.575237: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
130898            adbd-23484 ( 1007) [002] d..2 24577.575274: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
130899              ps-13422 (13422) [001] d..2 24577.575280: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130900              ps-13422 (13422) [001] dn.3 24577.575288: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130901              ps-13422 (13422) [001] d..2 24577.575294: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130902 shell svc 13418-13419 ( 1007) [001] d..2 24577.575317: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130903            adbd-1007  ( 1007) [002] d..1 24577.575333: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
130904            adbd-1007  ( 1007) [002] d..2 24577.575346: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
130905            adbd-1007  ( 1007) [002] d..2 24577.575372: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
130906            adbd-23485 ( 1007) [002] d..2 24577.575415: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130907          <idle>-0     (-----) [003] d.s3 24577.575419: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
130908          <idle>-0     (-----) [002] d..1 24577.575421: cpu_idle: state=0 cpu_id=2
130909              ps-13422 (13422) [001] d.h2 24577.575422: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
130910          <idle>-0     (-----) [003] d.s4 24577.575427: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
130911          <idle>-0     (-----) [003] d.s4 24577.575434: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
130912              ps-13422 (13422) [001] d.h3 24577.575438: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
130913          <idle>-0     (-----) [000] .n.1 24577.575438: cpu_idle: state=4294967295 cpu_id=0
130914          <idle>-0     (-----) [003] ...1 24577.575444: cpu_idle: state=4294967295 cpu_id=3
130915          <idle>-0     (-----) [000] d..2 24577.575444: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
130916          <idle>-0     (-----) [003] d..1 24577.575448: cpu_idle: state=0 cpu_id=3
130917   kworker/u17:2-23076 (23076) [000] d..2 24577.575452: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
130918   kworker/u17:2-23076 (23076) [000] d..3 24577.575457: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
130919   kworker/u17:2-23076 (23076) [000] d..2 24577.575470: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
130920     kworker/0:1-13012 (13012) [000] d..2 24577.575475: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
130921              ps-13422 (13422) [001] d..2 24577.575476: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130922     kworker/0:1-13012 (13012) [000] d..3 24577.575484: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
130923              ps-13422 (13422) [001] dn.3 24577.575485: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130924          <idle>-0     (-----) [002] .n.1 24577.575489: cpu_idle: state=4294967295 cpu_id=2
130925              ps-13422 (13422) [001] d..2 24577.575490: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130926     kworker/0:1-13012 (13012) [000] d..2 24577.575492: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
130927          <idle>-0     (-----) [002] d..2 24577.575494: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
130928  kworker/u16:10-23868 (23868) [000] d..2 24577.575522: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130929 shell svc 13418-13419 ( 1007) [001] d..2 24577.575528: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130930            adbd-23485 ( 1007) [002] d..2 24577.575534: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130931          <idle>-0     (-----) [001] d..1 24577.575538: cpu_idle: state=0 cpu_id=1
130932          <idle>-0     (-----) [002] d..1 24577.575538: cpu_idle: state=0 cpu_id=2
130933          <idle>-0     (-----) [001] d.h3 24577.575551: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
130934          <idle>-0     (-----) [001] dnh4 24577.575565: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
130935          <idle>-0     (-----) [001] .n.1 24577.575570: cpu_idle: state=4294967295 cpu_id=1
130936          <idle>-0     (-----) [001] d..2 24577.575577: 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
130937   kworker/u17:2-23076 (23076) [001] d..2 24577.575587: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
130938   kworker/u17:2-23076 (23076) [001] d..3 24577.575595: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
130939   kworker/u17:2-23076 (23076) [001] d..2 24577.575609: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
130940     kworker/1:1-13091 (13091) [001] d..2 24577.575616: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
130941     kworker/1:1-13091 (13091) [001] d..3 24577.575625: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
130942          <idle>-0     (-----) [002] .n.1 24577.575629: cpu_idle: state=4294967295 cpu_id=2
130943          <idle>-0     (-----) [002] d..2 24577.575634: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
130944     kworker/1:1-13091 (13091) [001] d..2 24577.575639: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130945          <idle>-0     (-----) [001] d..1 24577.575647: cpu_idle: state=0 cpu_id=1
130946            adbd-23485 ( 1007) [002] d..2 24577.575650: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130947          <idle>-0     (-----) [002] d..1 24577.575654: cpu_idle: state=0 cpu_id=2
130948              ps-13422 (13422) [000] d..2 24577.575655: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
130949              ps-13422 (13422) [000] dn.3 24577.575668: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130950              ps-13422 (13422) [000] d..2 24577.575674: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130951 shell svc 13418-13419 ( 1007) [000] d..2 24577.575698: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130952          <idle>-0     (-----) [001] d.h3 24577.575770: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
130953          <idle>-0     (-----) [001] dnh4 24577.575778: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
130954          <idle>-0     (-----) [001] .n.1 24577.575783: cpu_idle: state=4294967295 cpu_id=1
130955          <idle>-0     (-----) [001] d..2 24577.575789: 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
130956   kworker/u17:2-23076 (23076) [001] d..2 24577.575796: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
130957   kworker/u17:2-23076 (23076) [001] d..3 24577.575800: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
130958   kworker/u17:2-23076 (23076) [001] d..2 24577.575813: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
130959              ps-13422 (13422) [000] d..2 24577.575818: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130960     kworker/1:1-13091 (13091) [001] d..2 24577.575819: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
130961              ps-13422 (13422) [000] dn.3 24577.575826: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130962              ps-13422 (13422) [000] d..2 24577.575831: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130963     kworker/1:1-13091 (13091) [001] d..3 24577.575840: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
130964     kworker/1:1-13091 (13091) [001] d..2 24577.575849: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
130965 shell svc 13418-13419 ( 1007) [000] d..2 24577.575854: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130966            adbd-23484 ( 1007) [001] d..2 24577.575859: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
130967            adbd-23484 ( 1007) [001] d..3 24577.575869: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
130968            adbd-23484 ( 1007) [001] d..2 24577.575904: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
130969            adbd-1007  ( 1007) [001] d..1 24577.575964: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
130970              ps-13422 (13422) [000] d..2 24577.575972: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130971            adbd-1007  ( 1007) [001] d..2 24577.575978: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
130972              ps-13422 (13422) [000] dn.3 24577.575980: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130973          <idle>-0     (-----) [002] .n.1 24577.575982: cpu_idle: state=4294967295 cpu_id=2
130974              ps-13422 (13422) [000] d..2 24577.575985: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130975          <idle>-0     (-----) [002] d..2 24577.575987: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
130976 shell svc 13418-13419 ( 1007) [000] d..2 24577.576008: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130977            adbd-1007  ( 1007) [001] d..2 24577.576011: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130978          <idle>-0     (-----) [001] d..1 24577.576019: cpu_idle: state=0 cpu_id=1
130979            adbd-23485 ( 1007) [002] d..2 24577.576023: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130980          <idle>-0     (-----) [002] d..1 24577.576028: cpu_idle: state=0 cpu_id=2
130981          <idle>-0     (-----) [001] d.h3 24577.576047: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
130982          <idle>-0     (-----) [001] dnh4 24577.576053: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
130983          <idle>-0     (-----) [001] .n.1 24577.576059: cpu_idle: state=4294967295 cpu_id=1
130984          <idle>-0     (-----) [001] d..2 24577.576065: 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
130985   kworker/u17:2-23076 (23076) [001] d..2 24577.576074: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
130986   kworker/u17:2-23076 (23076) [001] d..3 24577.576079: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
130987   kworker/u17:2-23076 (23076) [001] d..2 24577.576091: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
130988     kworker/1:1-13091 (13091) [001] d..2 24577.576097: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
130989     kworker/1:1-13091 (13091) [001] d..3 24577.576105: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
130990          <idle>-0     (-----) [002] .n.1 24577.576110: cpu_idle: state=4294967295 cpu_id=2
130991          <idle>-0     (-----) [002] d..2 24577.576115: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
130992     kworker/1:1-13091 (13091) [001] d..2 24577.576118: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130993              ps-13422 (13422) [000] d..2 24577.576124: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130994          <idle>-0     (-----) [001] d..1 24577.576126: cpu_idle: state=0 cpu_id=1
130995              ps-13422 (13422) [000] dn.3 24577.576132: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
130996              ps-13422 (13422) [000] d..2 24577.576138: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
130997            adbd-23485 ( 1007) [002] d..2 24577.576160: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
130998 shell svc 13418-13419 ( 1007) [000] d..2 24577.576167: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130999          <idle>-0     (-----) [000] d..1 24577.576176: cpu_idle: state=0 cpu_id=0
131000          <idle>-0     (-----) [001] d.h3 24577.576177: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131001          <idle>-0     (-----) [001] dnh4 24577.576182: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131002          <idle>-0     (-----) [001] .n.1 24577.576187: cpu_idle: state=4294967295 cpu_id=1
131003          <idle>-0     (-----) [001] d..2 24577.576193: 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
131004   kworker/u17:2-23076 (23076) [001] d..2 24577.576200: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131005   kworker/u17:2-23076 (23076) [001] d..3 24577.576205: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131006   kworker/u17:2-23076 (23076) [001] d..2 24577.576216: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131007     kworker/1:1-13091 (13091) [001] d..2 24577.576222: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
131008     kworker/1:1-13091 (13091) [001] d..3 24577.576237: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
131009          <idle>-0     (-----) [000] .n.1 24577.576243: cpu_idle: state=4294967295 cpu_id=0
131010          <idle>-0     (-----) [000] d..2 24577.576249: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131011     kworker/1:1-13091 (13091) [001] d..2 24577.576250: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131012          <idle>-0     (-----) [001] d..1 24577.576257: cpu_idle: state=0 cpu_id=1
131013            adbd-23485 ( 1007) [000] d..2 24577.576268: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131014          <idle>-0     (-----) [000] d..1 24577.576274: cpu_idle: state=0 cpu_id=0
131015              ps-13422 (13422) [002] d..2 24577.576287: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
131016              ps-13422 (13422) [002] dn.3 24577.576301: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
131017              ps-13422 (13422) [002] d..2 24577.576306: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131018 shell svc 13418-13419 ( 1007) [002] d..2 24577.576332: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131019          <idle>-0     (-----) [001] d.h3 24577.576414: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131020          <idle>-0     (-----) [001] dnh4 24577.576419: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131021          <idle>-0     (-----) [001] .n.1 24577.576424: cpu_idle: state=4294967295 cpu_id=1
131022          <idle>-0     (-----) [001] d..2 24577.576430: 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
131023   kworker/u17:2-23076 (23076) [001] d..2 24577.576436: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131024   kworker/u17:2-23076 (23076) [001] d..3 24577.576441: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131025              ps-13422 (13422) [002] d..2 24577.576450: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
131026   kworker/u17:2-23076 (23076) [001] d..2 24577.576453: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131027     kworker/1:1-13091 (13091) [001] d..2 24577.576459: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
131028              ps-13422 (13422) [002] dn.3 24577.576459: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
131029              ps-13422 (13422) [002] d..2 24577.576464: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131030     kworker/1:1-13091 (13091) [001] d..3 24577.576474: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
131031          <idle>-0     (-----) [000] .n.1 24577.576479: cpu_idle: state=4294967295 cpu_id=0
131032          <idle>-0     (-----) [000] d..2 24577.576485: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
131033 shell svc 13418-13419 ( 1007) [002] d..2 24577.576487: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131034     kworker/1:1-13091 (13091) [001] d..2 24577.576494: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131035            adbd-23484 ( 1007) [000] d..2 24577.576495: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
131036          <idle>-0     (-----) [001] d..1 24577.576501: cpu_idle: state=0 cpu_id=1
131037            adbd-23484 ( 1007) [000] d..3 24577.576506: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
131038            adbd-23484 ( 1007) [000] d..2 24577.576544: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
131039            adbd-1007  ( 1007) [000] d..1 24577.576601: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
131040              ps-13422 (13422) [002] d..2 24577.576612: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
131041            adbd-1007  ( 1007) [000] d..2 24577.576620: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
131042              ps-13422 (13422) [002] dn.3 24577.576621: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
131043          <idle>-0     (-----) [001] .n.1 24577.576624: cpu_idle: state=4294967295 cpu_id=1
131044              ps-13422 (13422) [002] d..2 24577.576626: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131045          <idle>-0     (-----) [001] d..2 24577.576631: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131046 shell svc 13418-13419 ( 1007) [002] d..2 24577.576649: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131047            adbd-1007  ( 1007) [000] d..2 24577.576654: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131048          <idle>-0     (-----) [000] d..1 24577.576663: cpu_idle: state=0 cpu_id=0
131049            adbd-23485 ( 1007) [001] d..2 24577.576672: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131050          <idle>-0     (-----) [001] d..1 24577.576679: cpu_idle: state=0 cpu_id=1
131051          <idle>-0     (-----) [001] d.h3 24577.576693: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131052          <idle>-0     (-----) [001] dnh4 24577.576699: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131053          <idle>-0     (-----) [001] .n.1 24577.576703: cpu_idle: state=4294967295 cpu_id=1
131054          <idle>-0     (-----) [001] d..2 24577.576709: 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
131055   kworker/u17:2-23076 (23076) [001] d..2 24577.576716: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131056   kworker/u17:2-23076 (23076) [001] d..3 24577.576721: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131057   kworker/u17:2-23076 (23076) [001] d..2 24577.576733: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131058     kworker/1:1-13091 (13091) [001] d..2 24577.576738: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
131059     kworker/1:1-13091 (13091) [001] d..3 24577.576747: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
131060     kworker/1:1-13091 (13091) [001] d..2 24577.576755: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
131061              ps-13422 (13422) [002] d..2 24577.576766: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
131062              ps-13422 (13422) [002] dn.3 24577.576774: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
131063              ps-13422 (13422) [002] d..2 24577.576779: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131064            adbd-23485 ( 1007) [001] d..2 24577.576801: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131065 shell svc 13418-13419 ( 1007) [002] d..2 24577.576809: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131066              ps-13422 (13422) [001] d.h4 24577.576811: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131067          <idle>-0     (-----) [002] d..1 24577.576815: cpu_idle: state=0 cpu_id=2
131068              ps-13422 (13422) [001] d.h5 24577.576827: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
131069          <idle>-0     (-----) [000] .n.1 24577.576832: cpu_idle: state=4294967295 cpu_id=0
131070          <idle>-0     (-----) [000] d..2 24577.576839: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
131071   kworker/u17:2-23076 (23076) [000] d..2 24577.576847: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
131072   kworker/u17:2-23076 (23076) [000] d..3 24577.576853: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
131073          <idle>-0     (-----) [003] ...1 24577.576855: cpu_idle: state=4294967295 cpu_id=3
131074          <idle>-0     (-----) [003] d..1 24577.576857: cpu_idle: state=0 cpu_id=3
131075   kworker/u17:2-23076 (23076) [000] d..2 24577.576866: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
131076     kworker/0:1-13012 (13012) [000] d..2 24577.576871: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
131077     kworker/0:1-13012 (13012) [000] d..3 24577.576887: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
131078          <idle>-0     (-----) [002] .n.1 24577.576893: cpu_idle: state=4294967295 cpu_id=2
131079          <idle>-0     (-----) [002] d..2 24577.576898: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131080     kworker/0:1-13012 (13012) [000] d..2 24577.576901: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131081          <idle>-0     (-----) [000] d..1 24577.576908: cpu_idle: state=0 cpu_id=0
131082            adbd-23485 ( 1007) [002] d..2 24577.576918: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131083          <idle>-0     (-----) [002] d..1 24577.576922: cpu_idle: state=0 cpu_id=2
131084              ps-13422 (13422) [001] d..2 24577.576957: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
131085              ps-13422 (13422) [001] dn.3 24577.576971: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
131086              ps-13422 (13422) [001] d..2 24577.576977: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131087 shell svc 13418-13419 ( 1007) [001] d.h2 24577.577005: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
131088 shell svc 13418-13419 ( 1007) [001] d.h3 24577.577015: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
131089          <idle>-0     (-----) [000] .n.1 24577.577020: cpu_idle: state=4294967295 cpu_id=0
131090 shell svc 13418-13419 ( 1007) [001] d..2 24577.577026: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131091          <idle>-0     (-----) [000] d..2 24577.577027: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
131092   kworker/u17:2-23076 (23076) [000] d..2 24577.577034: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
131093   kworker/u17:2-23076 (23076) [000] d..3 24577.577040: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
131094   kworker/u17:2-23076 (23076) [000] d..2 24577.577052: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
131095     kworker/0:1-13012 (13012) [000] d..2 24577.577057: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
131096     kworker/0:1-13012 (13012) [000] d..3 24577.577072: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
131097          <idle>-0     (-----) [002] .n.1 24577.577076: cpu_idle: state=4294967295 cpu_id=2
131098          <idle>-0     (-----) [002] d..2 24577.577081: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
131099     kworker/0:1-13012 (13012) [000] d..2 24577.577085: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131100            adbd-23484 ( 1007) [002] d..2 24577.577091: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
131101          <idle>-0     (-----) [000] d..1 24577.577092: cpu_idle: state=0 cpu_id=0
131102            adbd-23484 ( 1007) [002] d..3 24577.577102: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
131103            adbd-23484 ( 1007) [002] d..2 24577.577139: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
131104              ps-13422 (13422) [001] d..2 24577.577147: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
131105              ps-13422 (13422) [001] dn.3 24577.577155: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
131106              ps-13422 (13422) [001] d..2 24577.577160: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131107 shell svc 13418-13419 ( 1007) [001] d..2 24577.577183: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131108            adbd-1007  ( 1007) [002] d..1 24577.577198: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
131109            adbd-1007  ( 1007) [002] d..2 24577.577210: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
131110            adbd-1007  ( 1007) [002] d..2 24577.577236: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
131111            adbd-23485 ( 1007) [002] d..2 24577.577278: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131112          <idle>-0     (-----) [002] d..1 24577.577284: cpu_idle: state=0 cpu_id=2
131113              ps-13422 (13422) [001] d.h2 24577.577297: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
131114              ps-13422 (13422) [001] d.h3 24577.577308: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
131115          <idle>-0     (-----) [000] .n.1 24577.577313: cpu_idle: state=4294967295 cpu_id=0
131116          <idle>-0     (-----) [000] d..2 24577.577319: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
131117   kworker/u17:2-23076 (23076) [000] d..2 24577.577327: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
131118              ps-13422 (13422) [001] d..2 24577.577328: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
131119   kworker/u17:2-23076 (23076) [000] d..3 24577.577332: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
131120              ps-13422 (13422) [001] dn.3 24577.577334: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
131121              ps-13422 (13422) [001] d..2 24577.577340: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131122   kworker/u17:2-23076 (23076) [000] d..2 24577.577344: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
131123     kworker/0:1-13012 (13012) [000] d..2 24577.577349: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
131124     kworker/0:1-13012 (13012) [000] d..3 24577.577358: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
131125 shell svc 13418-13419 ( 1007) [001] d..2 24577.577362: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131126          <idle>-0     (-----) [002] .n.1 24577.577363: cpu_idle: state=4294967295 cpu_id=2
131127          <idle>-0     (-----) [002] d..2 24577.577368: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131128     kworker/0:1-13012 (13012) [000] d..2 24577.577371: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131129          <idle>-0     (-----) [000] d..1 24577.577377: cpu_idle: state=0 cpu_id=0
131130            adbd-23485 ( 1007) [002] d..2 24577.577406: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131131          <idle>-0     (-----) [002] d..1 24577.577410: cpu_idle: state=0 cpu_id=2
131132              ps-13422 (13422) [001] d.h2 24577.577420: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
131133              ps-13422 (13422) [001] d.h3 24577.577431: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
131134          <idle>-0     (-----) [000] .n.1 24577.577436: cpu_idle: state=4294967295 cpu_id=0
131135          <idle>-0     (-----) [000] d..2 24577.577441: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
131136   kworker/u17:2-23076 (23076) [000] d..2 24577.577449: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
131137   kworker/u17:2-23076 (23076) [000] d..3 24577.577454: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
131138   kworker/u17:2-23076 (23076) [000] d..2 24577.577466: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
131139     kworker/0:1-13012 (13012) [000] d..2 24577.577471: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
131140     kworker/0:1-13012 (13012) [000] d..3 24577.577479: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
131141          <idle>-0     (-----) [002] .n.1 24577.577484: cpu_idle: state=4294967295 cpu_id=2
131142          <idle>-0     (-----) [002] d..2 24577.577489: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131143     kworker/0:1-13012 (13012) [000] d..2 24577.577492: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131144          <idle>-0     (-----) [000] d..1 24577.577498: cpu_idle: state=0 cpu_id=0
131145            adbd-23485 ( 1007) [002] d..2 24577.577506: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131146              ps-13422 (13422) [001] d..2 24577.577506: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
131147          <idle>-0     (-----) [002] d..1 24577.577510: cpu_idle: state=0 cpu_id=2
131148              ps-13422 (13422) [001] dn.3 24577.577515: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
131149              ps-13422 (13422) [001] d..2 24577.577520: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131150 shell svc 13418-13419 ( 1007) [001] d..2 24577.577543: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131151          <idle>-0     (-----) [002] d.s2 24577.577566: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
131152              ps-13422 (13422) [001] d.h4 24577.577574: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
131153          <idle>-0     (-----) [002] dns3 24577.577575: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
131154              ps-13422 (13422) [001] dnh5 24577.577583: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
131155          <idle>-0     (-----) [002] .n.1 24577.577584: cpu_idle: state=4294967295 cpu_id=2
131156          <idle>-0     (-----) [002] d..2 24577.577589: 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
131157     rcu_preempt-7     (    7) [002] d..2 24577.577646: 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
131158          <idle>-0     (-----) [000] ...1 24577.577647: cpu_idle: state=4294967295 cpu_id=0
131159          <idle>-0     (-----) [000] d..1 24577.577650: cpu_idle: state=0 cpu_id=0
131160          <idle>-0     (-----) [002] d..1 24577.577652: cpu_idle: state=0 cpu_id=2
131161              ps-13422 (13422) [001] dnH4 24577.577662: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
131162              ps-13422 (13422) [001] dnH5 24577.577672: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
131163          <idle>-0     (-----) [000] .n.1 24577.577677: cpu_idle: state=4294967295 cpu_id=0
131164              ps-13422 (13422) [001] dnH4 24577.577677: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
131165          <idle>-0     (-----) [000] d..2 24577.577683: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
131166              ps-13422 (13422) [001] dnH4 24577.577688: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
131167   kworker/u17:2-23076 (23076) [000] d..2 24577.577691: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
131168          <idle>-0     (-----) [007] dnh2 24577.577694: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
131169   kworker/u17:2-23076 (23076) [000] d..3 24577.577697: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
131170          <idle>-0     (-----) [007] .n.1 24577.577698: cpu_idle: state=4294967295 cpu_id=7
131171          <idle>-0     (-----) [007] d..2 24577.577702: 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
131172              ps-13422 (13422) [001] dnH5 24577.577704: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
131173          <idle>-0     (-----) [003] .n.1 24577.577709: cpu_idle: state=4294967295 cpu_id=3
131174   kworker/u17:2-23076 (23076) [000] d..2 24577.577709: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
131175     kworker/0:1-13012 (13012) [000] d..2 24577.577714: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
131176          <idle>-0     (-----) [003] d..2 24577.577716: 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
131177              ps-13422 (13422) [001] d..2 24577.577717: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=migration/1 next_pid=17 next_prio=0
131178         sugov:4-560   (  560) [007] d..2 24577.577723: 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
131179     kworker/0:1-13012 (13012) [000] d..3 24577.577723: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
131180          <idle>-0     (-----) [002] .n.1 24577.577728: cpu_idle: state=4294967295 cpu_id=2
131181          <idle>-0     (-----) [007] d..1 24577.577728: cpu_idle: state=0 cpu_id=7
131182          <idle>-0     (-----) [002] d..2 24577.577735: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
131183         sugov:0-559   (  559) [003] d..2 24577.577736: 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
131184     kworker/0:1-13012 (13012) [000] d..2 24577.577737: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131185          <idle>-0     (-----) [003] d..1 24577.577741: cpu_idle: state=0 cpu_id=3
131186          <idle>-0     (-----) [000] d..1 24577.577743: cpu_idle: state=0 cpu_id=0
131187            adbd-23484 ( 1007) [002] d..2 24577.577745: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
131188          <idle>-0     (-----) [004] .n.1 24577.577749: cpu_idle: state=4294967295 cpu_id=4
131189            adbd-23484 ( 1007) [002] d..3 24577.577768: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
131190          <idle>-0     (-----) [004] d..2 24577.577771: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ps next_pid=13422 next_prio=120
131191              ps-13422 (13422) [004] d..2 24577.577778: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
131192     migration/1-17    (   17) [001] d..2 24577.577788: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
131193            adbd-23484 ( 1007) [002] dnh2 24577.577801: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
131194            adbd-23484 ( 1007) [002] d..2 24577.577808: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
131195     rcu_preempt-7     (    7) [002] d..2 24577.577813: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
131196     rcu_preempt-7     (    7) [002] d..3 24577.577840: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
131197     rcu_preempt-7     (    7) [002] d..2 24577.577842: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
131198          <idle>-0     (-----) [000] .n.1 24577.577845: cpu_idle: state=4294967295 cpu_id=0
131199            adbd-1007  ( 1007) [001] d..1 24577.577846: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
131200          <idle>-0     (-----) [000] d..2 24577.577851: 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
131201              ps-13422 (13422) [004] d..2 24577.577853: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
131202     rcu_preempt-7     (    7) [002] d..3 24577.577871: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
131203            adbd-1007  ( 1007) [001] d..2 24577.577876: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
131204         rcuop/0-10    (   10) [000] d..2 24577.577880: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
131205     rcu_preempt-7     (    7) [002] d..2 24577.577884: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
131206         rcuop/0-10    (   10) [000] d..3 24577.577901: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
131207         rcuop/0-10    (   10) [000] d.h2 24577.577911: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
131208            adbd-23484 ( 1007) [002] d..2 24577.577911: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
131209            adbd-1007  ( 1007) [001] d..2 24577.577914: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131210          <idle>-0     (-----) [001] d..1 24577.577923: cpu_idle: state=0 cpu_id=1
131211         rcuop/0-10    (   10) [000] d..2 24577.577937: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
131212         rcuop/0-10    (   10) [000] d..3 24577.577946: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
131213         rcuop/0-10    (   10) [000] d..2 24577.577953: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
131214         rcuop/4-45    (   45) [000] d..2 24577.577963: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
131215              ps-13422 (13422) [004] d..2 24577.577972: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
131216              ps-13422 (13422) [004] dn.3 24577.577989: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131217              ps-13422 (13422) [004] d..2 24577.578018: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131218            adbd-23485 ( 1007) [000] d..2 24577.578022: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131219          <idle>-0     (-----) [001] d.h3 24577.578026: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
131220          <idle>-0     (-----) [000] d..1 24577.578029: cpu_idle: state=0 cpu_id=0
131221          <idle>-0     (-----) [001] dnh4 24577.578043: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131222 shell svc 13418-13419 ( 1007) [004] d..2 24577.578047: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131223          <idle>-0     (-----) [001] .n.1 24577.578049: cpu_idle: state=4294967295 cpu_id=1
131224          <idle>-0     (-----) [001] d..2 24577.578055: 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
131225   kworker/u17:2-23076 (23076) [001] d..2 24577.578064: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131226         rcuop/1-21    (   21) [002] d..2 24577.578069: 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
131227   kworker/u17:2-23076 (23076) [001] d..3 24577.578070: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131228         rcuop/2-29    (   29) [002] d..2 24577.578074: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
131229   kworker/u17:2-23076 (23076) [001] d..2 24577.578082: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131230         rcuop/2-29    (   29) [002] d..3 24577.578086: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
131231     kworker/1:1-13091 (13091) [001] d..2 24577.578088: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
131232         rcuop/2-29    (   29) [002] d..2 24577.578103: 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
131233     kworker/1:1-13091 (13091) [001] d..3 24577.578114: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
131234         rcuop/3-37    (   37) [002] d..2 24577.578124: 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
131235     kworker/1:1-13091 (13091) [001] d..2 24577.578132: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131236     rcu_preempt-7     (    7) [002] d..2 24577.578134: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
131237          <idle>-0     (-----) [001] d..1 24577.578139: cpu_idle: state=0 cpu_id=1
131238              ps-13422 (13422) [004] d..2 24577.578167: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131239              ps-13422 (13422) [004] dn.3 24577.578174: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131240            adbd-23485 ( 1007) [002] d..2 24577.578176: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131241              ps-13422 (13422) [004] d..2 24577.578179: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131242          <idle>-0     (-----) [002] d..1 24577.578183: cpu_idle: state=0 cpu_id=2
131243          <idle>-0     (-----) [001] d.h3 24577.578192: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131244          <idle>-0     (-----) [001] dnh4 24577.578197: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131245 shell svc 13418-13419 ( 1007) [004] d..2 24577.578202: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131246          <idle>-0     (-----) [001] .n.1 24577.578202: cpu_idle: state=4294967295 cpu_id=1
131247          <idle>-0     (-----) [001] d..2 24577.578208: 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
131248   kworker/u17:2-23076 (23076) [001] d..2 24577.578215: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131249   kworker/u17:2-23076 (23076) [001] d..3 24577.578220: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131250   kworker/u17:2-23076 (23076) [001] d..2 24577.578232: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131251     kworker/1:1-13091 (13091) [001] d..2 24577.578237: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
131252     kworker/1:1-13091 (13091) [001] d..3 24577.578245: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
131253          <idle>-0     (-----) [002] .n.1 24577.578250: cpu_idle: state=4294967295 cpu_id=2
131254          <idle>-0     (-----) [002] d..2 24577.578257: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131255     kworker/1:1-13091 (13091) [001] d..2 24577.578258: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131256          <idle>-0     (-----) [001] d..1 24577.578265: cpu_idle: state=0 cpu_id=1
131257            adbd-23485 ( 1007) [002] d..2 24577.578273: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131258          <idle>-0     (-----) [002] d..1 24577.578278: cpu_idle: state=0 cpu_id=2
131259              ps-13422 (13422) [004] d..2 24577.578321: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131260              ps-13422 (13422) [004] dn.3 24577.578329: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131261              ps-13422 (13422) [004] d..2 24577.578334: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131262 shell svc 13418-13419 ( 1007) [004] d..2 24577.578355: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131263          <idle>-0     (-----) [001] d.h3 24577.578381: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131264          <idle>-0     (-----) [001] dnh4 24577.578386: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131265          <idle>-0     (-----) [001] .n.1 24577.578391: cpu_idle: state=4294967295 cpu_id=1
131266          <idle>-0     (-----) [001] d..2 24577.578397: 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
131267   kworker/u17:2-23076 (23076) [001] d..2 24577.578403: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131268   kworker/u17:2-23076 (23076) [001] d..3 24577.578408: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131269   kworker/u17:2-23076 (23076) [001] d..2 24577.578420: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131270     kworker/1:1-13091 (13091) [001] d..2 24577.578425: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
131271     kworker/1:1-13091 (13091) [001] d..3 24577.578448: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
131272          <idle>-0     (-----) [000] .n.1 24577.578453: cpu_idle: state=4294967295 cpu_id=0
131273          <idle>-0     (-----) [000] d..2 24577.578459: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
131274     kworker/1:1-13091 (13091) [001] d..2 24577.578461: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131275              ps-13422 (13422) [004] d..2 24577.578465: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131276          <idle>-0     (-----) [001] d..1 24577.578467: cpu_idle: state=0 cpu_id=1
131277            adbd-23484 ( 1007) [000] d..2 24577.578471: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
131278              ps-13422 (13422) [004] dn.3 24577.578471: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131279              ps-13422 (13422) [004] d..2 24577.578476: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131280            adbd-23484 ( 1007) [000] d..3 24577.578482: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
131281 shell svc 13418-13419 ( 1007) [004] d..2 24577.578497: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131282            adbd-23484 ( 1007) [000] d..2 24577.578517: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
131283            adbd-1007  ( 1007) [000] d..1 24577.578577: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
131284            adbd-1007  ( 1007) [000] d..2 24577.578589: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
131285          <idle>-0     (-----) [002] .n.1 24577.578593: cpu_idle: state=4294967295 cpu_id=2
131286          <idle>-0     (-----) [002] d..2 24577.578599: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131287              ps-13422 (13422) [004] d..2 24577.578608: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131288              ps-13422 (13422) [004] dn.3 24577.578614: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131289              ps-13422 (13422) [004] d..2 24577.578619: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131290            adbd-1007  ( 1007) [000] d..2 24577.578622: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131291          <idle>-0     (-----) [000] d..1 24577.578630: cpu_idle: state=0 cpu_id=0
131292            adbd-23485 ( 1007) [002] d..2 24577.578636: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131293 shell svc 13418-13419 ( 1007) [004] d..2 24577.578641: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131294          <idle>-0     (-----) [002] d..1 24577.578642: cpu_idle: state=0 cpu_id=2
131295          <idle>-0     (-----) [001] d.h3 24577.578652: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131296          <idle>-0     (-----) [001] dnh4 24577.578657: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131297          <idle>-0     (-----) [001] .n.1 24577.578662: cpu_idle: state=4294967295 cpu_id=1
131298          <idle>-0     (-----) [001] d..2 24577.578668: 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
131299   kworker/u17:2-23076 (23076) [001] d..2 24577.578674: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131300   kworker/u17:2-23076 (23076) [001] d..3 24577.578679: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131301   kworker/u17:2-23076 (23076) [001] d..2 24577.578691: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131302     kworker/1:1-13091 (13091) [001] d..2 24577.578696: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
131303     kworker/1:1-13091 (13091) [001] d..3 24577.578705: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
131304          <idle>-0     (-----) [002] .n.1 24577.578710: cpu_idle: state=4294967295 cpu_id=2
131305          <idle>-0     (-----) [002] d..2 24577.578716: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131306     kworker/1:1-13091 (13091) [001] d..2 24577.578717: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131307          <idle>-0     (-----) [001] d..1 24577.578724: cpu_idle: state=0 cpu_id=1
131308              ps-13422 (13422) [004] d..2 24577.578747: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131309            adbd-23485 ( 1007) [002] d..2 24577.578752: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131310              ps-13422 (13422) [004] dn.3 24577.578753: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131311          <idle>-0     (-----) [002] d..1 24577.578757: cpu_idle: state=0 cpu_id=2
131312              ps-13422 (13422) [004] d..2 24577.578758: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131313          <idle>-0     (-----) [001] d.h3 24577.578775: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131314 shell svc 13418-13419 ( 1007) [004] d..2 24577.578779: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131315          <idle>-0     (-----) [001] dnh4 24577.578780: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131316          <idle>-0     (-----) [001] .n.1 24577.578785: cpu_idle: state=4294967295 cpu_id=1
131317          <idle>-0     (-----) [001] d..2 24577.578790: 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
131318   kworker/u17:2-23076 (23076) [001] d..2 24577.578798: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131319   kworker/u17:2-23076 (23076) [001] d..3 24577.578803: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131320   kworker/u17:2-23076 (23076) [001] d..2 24577.578814: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131321     kworker/1:1-13091 (13091) [001] d..2 24577.578819: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
131322     kworker/1:1-13091 (13091) [001] d..3 24577.578827: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
131323          <idle>-0     (-----) [002] .n.1 24577.578832: cpu_idle: state=4294967295 cpu_id=2
131324          <idle>-0     (-----) [002] d..2 24577.578838: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131325     kworker/1:1-13091 (13091) [001] d..2 24577.578840: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131326          <idle>-0     (-----) [001] d..1 24577.578846: cpu_idle: state=0 cpu_id=1
131327            adbd-23485 ( 1007) [002] d..2 24577.578852: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131328          <idle>-0     (-----) [002] d..1 24577.578857: cpu_idle: state=0 cpu_id=2
131329              ps-13422 (13422) [004] d..2 24577.578885: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131330              ps-13422 (13422) [004] dn.3 24577.578891: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131331              ps-13422 (13422) [004] d..2 24577.578896: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131332 shell svc 13418-13419 ( 1007) [004] d..2 24577.578917: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131333          <idle>-0     (-----) [001] d.h3 24577.578973: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131334          <idle>-0     (-----) [001] dnh4 24577.578978: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131335          <idle>-0     (-----) [001] .n.1 24577.578983: cpu_idle: state=4294967295 cpu_id=1
131336          <idle>-0     (-----) [001] d..2 24577.578988: 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
131337   kworker/u17:2-23076 (23076) [001] d..2 24577.578995: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131338   kworker/u17:2-23076 (23076) [001] d..3 24577.579000: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131339   kworker/u17:2-23076 (23076) [001] d..2 24577.579011: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131340     kworker/1:1-13091 (13091) [001] d..2 24577.579017: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
131341              ps-13422 (13422) [004] d..2 24577.579025: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131342     kworker/1:1-13091 (13091) [001] d..3 24577.579025: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
131343          <idle>-0     (-----) [000] .n.1 24577.579030: cpu_idle: state=4294967295 cpu_id=0
131344              ps-13422 (13422) [004] dn.3 24577.579031: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131345              ps-13422 (13422) [004] d..2 24577.579036: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131346          <idle>-0     (-----) [000] d..2 24577.579037: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
131347     kworker/1:1-13091 (13091) [001] d..2 24577.579038: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131348          <idle>-0     (-----) [001] d..1 24577.579044: cpu_idle: state=0 cpu_id=1
131349            adbd-23484 ( 1007) [000] d..2 24577.579047: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
131350            adbd-23484 ( 1007) [000] d..3 24577.579054: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
131351 shell svc 13418-13419 ( 1007) [004] d..2 24577.579057: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131352            adbd-23484 ( 1007) [000] d..2 24577.579092: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
131353            adbd-1007  ( 1007) [000] d..1 24577.579147: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
131354            adbd-1007  ( 1007) [000] d..2 24577.579159: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
131355          <idle>-0     (-----) [002] .n.1 24577.579164: cpu_idle: state=4294967295 cpu_id=2
131356              ps-13422 (13422) [004] d..2 24577.579165: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131357          <idle>-0     (-----) [002] d..2 24577.579169: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131358              ps-13422 (13422) [004] dn.3 24577.579172: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131359              ps-13422 (13422) [004] d..2 24577.579177: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131360            adbd-1007  ( 1007) [000] d..2 24577.579190: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131361 shell svc 13418-13419 ( 1007) [004] d..2 24577.579197: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131362          <idle>-0     (-----) [000] d..1 24577.579199: cpu_idle: state=0 cpu_id=0
131363            adbd-23485 ( 1007) [002] d..2 24577.579208: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131364          <idle>-0     (-----) [002] d..1 24577.579213: cpu_idle: state=0 cpu_id=2
131365          <idle>-0     (-----) [001] d.h3 24577.579213: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131366          <idle>-0     (-----) [001] dnh4 24577.579218: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131367          <idle>-0     (-----) [001] .n.1 24577.579223: cpu_idle: state=4294967295 cpu_id=1
131368          <idle>-0     (-----) [001] d..2 24577.579229: 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
131369   kworker/u17:2-23076 (23076) [001] d..2 24577.579236: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131370   kworker/u17:2-23076 (23076) [001] d..3 24577.579240: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131371   kworker/u17:2-23076 (23076) [001] d..2 24577.579254: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131372     kworker/1:1-13091 (13091) [001] d..2 24577.579259: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
131373     kworker/1:1-13091 (13091) [001] d..3 24577.579270: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
131374          <idle>-0     (-----) [002] .n.1 24577.579272: cpu_idle: state=4294967295 cpu_id=2
131375          <idle>-0     (-----) [002] d..2 24577.579279: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131376     kworker/1:1-13091 (13091) [001] d..2 24577.579283: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131377          <idle>-0     (-----) [001] d..1 24577.579289: cpu_idle: state=0 cpu_id=1
131378              ps-13422 (13422) [004] d..2 24577.579307: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131379              ps-13422 (13422) [004] dn.3 24577.579313: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131380            adbd-23485 ( 1007) [002] d..2 24577.579316: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131381              ps-13422 (13422) [004] d..2 24577.579319: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131382          <idle>-0     (-----) [002] d..1 24577.579322: cpu_idle: state=0 cpu_id=2
131383          <idle>-0     (-----) [001] d.h3 24577.579332: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131384          <idle>-0     (-----) [001] dnh4 24577.579337: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131385 shell svc 13418-13419 ( 1007) [004] d..2 24577.579338: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131386          <idle>-0     (-----) [001] .n.1 24577.579343: cpu_idle: state=4294967295 cpu_id=1
131387          <idle>-0     (-----) [001] d..2 24577.579348: 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
131388   kworker/u17:2-23076 (23076) [001] d..2 24577.579358: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131389   kworker/u17:2-23076 (23076) [001] d..3 24577.579362: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131390   kworker/u17:2-23076 (23076) [001] d..2 24577.579375: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131391     kworker/1:1-13091 (13091) [001] d..2 24577.579380: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
131392     kworker/1:1-13091 (13091) [001] d..3 24577.579389: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
131393          <idle>-0     (-----) [002] .n.1 24577.579393: cpu_idle: state=4294967295 cpu_id=2
131394          <idle>-0     (-----) [002] d..2 24577.579399: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131395     kworker/1:1-13091 (13091) [001] d..2 24577.579401: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131396          <idle>-0     (-----) [001] d..1 24577.579407: cpu_idle: state=0 cpu_id=1
131397            adbd-23485 ( 1007) [002] d..2 24577.579413: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131398          <idle>-0     (-----) [002] d..1 24577.579418: cpu_idle: state=0 cpu_id=2
131399          <idle>-0     (-----) [000] d.h5 24577.579455: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
131400              ps-13422 (13422) [004] d..2 24577.579455: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131401              ps-13422 (13422) [004] dn.3 24577.579461: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131402              ps-13422 (13422) [004] d..2 24577.579466: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131403          <idle>-0     (-----) [000] d.h6 24577.579469: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
131404          <idle>-0     (-----) [000] d.h5 24577.579473: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
131405          <idle>-0     (-----) [003] .n.1 24577.579473: cpu_idle: state=4294967295 cpu_id=3
131406          <idle>-0     (-----) [001] d.h3 24577.579478: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131407          <idle>-0     (-----) [003] d..2 24577.579480: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
131408          <idle>-0     (-----) [001] dnh4 24577.579483: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131409 shell svc 13418-13419 ( 1007) [004] d..2 24577.579487: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131410          <idle>-0     (-----) [000] dnh6 24577.579488: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
131411          <idle>-0     (-----) [001] .n.1 24577.579489: cpu_idle: state=4294967295 cpu_id=1
131412          <idle>-0     (-----) [001] d..2 24577.579494: 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
131413          <idle>-0     (-----) [000] .n.1 24577.579497: cpu_idle: state=4294967295 cpu_id=0
131414   kworker/u17:2-23076 (23076) [001] d..2 24577.579500: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131415          <idle>-0     (-----) [000] d..2 24577.579502: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
131416   kworker/u17:2-23076 (23076) [001] d..3 24577.579506: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131417  crtc_event:111-254   (  254) [003] d..2 24577.579506: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
131418          <idle>-0     (-----) [003] d..1 24577.579511: cpu_idle: state=0 cpu_id=3
131419   kworker/u17:2-23076 (23076) [001] d..2 24577.579517: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131420     kworker/1:1-13091 (13091) [001] d..2 24577.579523: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
131421     kworker/1:1-13091 (13091) [001] d..3 24577.579532: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
131422     kworker/1:1-13091 (13091) [001] d..2 24577.579545: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131423          <idle>-0     (-----) [001] d..1 24577.579552: cpu_idle: state=0 cpu_id=1
131424              ps-13422 (13422) [004] d..2 24577.579592: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131425              ps-13422 (13422) [004] dn.3 24577.579598: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131426              ps-13422 (13422) [004] d..2 24577.579603: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131427 crtc_commit:111-253   (  253) [000] d..2 24577.579618: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=adbd next_pid=23484 next_prio=120
131428 shell svc 13418-13419 ( 1007) [004] d..2 24577.579623: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131429            adbd-23484 ( 1007) [000] d..2 24577.579629: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
131430            adbd-23484 ( 1007) [000] d..3 24577.579636: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
131431            adbd-23484 ( 1007) [000] d..2 24577.579672: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
131432            adbd-1007  ( 1007) [000] d..1 24577.579732: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
131433              ps-13422 (13422) [004] d..2 24577.579734: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131434              ps-13422 (13422) [004] dn.3 24577.579740: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131435            adbd-1007  ( 1007) [000] d..2 24577.579744: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
131436              ps-13422 (13422) [004] d..2 24577.579745: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131437          <idle>-0     (-----) [002] .n.1 24577.579748: cpu_idle: state=4294967295 cpu_id=2
131438          <idle>-0     (-----) [002] d..2 24577.579754: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131439 shell svc 13418-13419 ( 1007) [004] d..2 24577.579765: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131440            adbd-1007  ( 1007) [000] d..2 24577.579776: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131441          <idle>-0     (-----) [000] d..1 24577.579782: cpu_idle: state=0 cpu_id=0
131442            adbd-23485 ( 1007) [002] d..2 24577.579791: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131443          <idle>-0     (-----) [002] d..1 24577.579796: cpu_idle: state=0 cpu_id=2
131444          <idle>-0     (-----) [001] d.h3 24577.579796: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131445          <idle>-0     (-----) [001] dnh4 24577.579801: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131446          <idle>-0     (-----) [001] .n.1 24577.579807: cpu_idle: state=4294967295 cpu_id=1
131447          <idle>-0     (-----) [001] d..2 24577.579812: 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
131448   kworker/u17:2-23076 (23076) [001] d..2 24577.579821: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131449   kworker/u17:2-23076 (23076) [001] d..3 24577.579826: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131450   kworker/u17:2-23076 (23076) [001] d..2 24577.579838: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131451     kworker/1:1-13091 (13091) [001] d..2 24577.579844: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
131452     kworker/1:1-13091 (13091) [001] d..3 24577.579853: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
131453          <idle>-0     (-----) [002] .n.1 24577.579858: cpu_idle: state=4294967295 cpu_id=2
131454          <idle>-0     (-----) [002] d..2 24577.579863: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131455     kworker/1:1-13091 (13091) [001] d..2 24577.579865: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131456          <idle>-0     (-----) [001] d..1 24577.579872: cpu_idle: state=0 cpu_id=1
131457              ps-13422 (13422) [004] d..2 24577.579874: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131458              ps-13422 (13422) [004] dn.3 24577.579880: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131459              ps-13422 (13422) [004] d..2 24577.579884: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131460            adbd-23485 ( 1007) [002] d..2 24577.579901: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131461 shell svc 13418-13419 ( 1007) [004] d..2 24577.579904: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131462          <idle>-0     (-----) [002] d..1 24577.579907: cpu_idle: state=0 cpu_id=2
131463          <idle>-0     (-----) [001] d.h3 24577.579921: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131464          <idle>-0     (-----) [001] dnh4 24577.579926: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131465          <idle>-0     (-----) [001] .n.1 24577.579931: cpu_idle: state=4294967295 cpu_id=1
131466          <idle>-0     (-----) [001] d..2 24577.579936: 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
131467   kworker/u17:2-23076 (23076) [001] d..2 24577.579944: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131468   kworker/u17:2-23076 (23076) [001] d..3 24577.579949: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131469   kworker/u17:2-23076 (23076) [001] d..2 24577.579962: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131470     kworker/1:1-13091 (13091) [001] d..2 24577.579967: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
131471     kworker/1:1-13091 (13091) [001] d..3 24577.579975: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
131472          <idle>-0     (-----) [002] .n.1 24577.579980: cpu_idle: state=4294967295 cpu_id=2
131473          <idle>-0     (-----) [002] d..2 24577.579986: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131474     kworker/1:1-13091 (13091) [001] d..2 24577.579987: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131475          <idle>-0     (-----) [001] d..1 24577.579994: cpu_idle: state=0 cpu_id=1
131476            adbd-23485 ( 1007) [002] d..2 24577.580002: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131477          <idle>-0     (-----) [002] d..1 24577.580006: cpu_idle: state=0 cpu_id=2
131478              ps-13422 (13422) [004] d..2 24577.580014: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131479              ps-13422 (13422) [004] dn.3 24577.580020: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131480              ps-13422 (13422) [004] d..2 24577.580025: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131481 shell svc 13418-13419 ( 1007) [004] d..2 24577.580045: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131482          <idle>-0     (-----) [001] d.h3 24577.580082: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131483          <idle>-0     (-----) [001] dnh4 24577.580090: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131484          <idle>-0     (-----) [001] .n.1 24577.580096: cpu_idle: state=4294967295 cpu_id=1
131485          <idle>-0     (-----) [001] d..2 24577.580101: 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
131486   kworker/u17:2-23076 (23076) [001] d..2 24577.580110: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131487   kworker/u17:2-23076 (23076) [001] d..3 24577.580114: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131488   kworker/u17:2-23076 (23076) [001] d..2 24577.580127: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131489     kworker/1:1-13091 (13091) [001] d..2 24577.580132: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
131490     kworker/1:1-13091 (13091) [001] d..3 24577.580140: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
131491          <idle>-0     (-----) [000] .n.1 24577.580145: cpu_idle: state=4294967295 cpu_id=0
131492              ps-13422 (13422) [004] d..2 24577.580150: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131493          <idle>-0     (-----) [000] d..2 24577.580151: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
131494     kworker/1:1-13091 (13091) [001] d..2 24577.580154: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131495              ps-13422 (13422) [004] dn.3 24577.580156: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131496              ps-13422 (13422) [004] d..2 24577.580160: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131497          <idle>-0     (-----) [001] d..1 24577.580161: cpu_idle: state=0 cpu_id=1
131498            adbd-23484 ( 1007) [000] d..2 24577.580161: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
131499            adbd-23484 ( 1007) [000] d..3 24577.580168: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
131500 shell svc 13418-13419 ( 1007) [004] d..2 24577.580181: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131501            adbd-23484 ( 1007) [000] d..2 24577.580204: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
131502            adbd-1007  ( 1007) [000] d..1 24577.580259: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
131503            adbd-1007  ( 1007) [000] d..2 24577.580285: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
131504              ps-13422 (13422) [004] d..2 24577.580286: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131505          <idle>-0     (-----) [001] .n.1 24577.580290: cpu_idle: state=4294967295 cpu_id=1
131506              ps-13422 (13422) [004] dn.3 24577.580292: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131507          <idle>-0     (-----) [001] d..2 24577.580296: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131508              ps-13422 (13422) [004] d..2 24577.580296: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131509 shell svc 13418-13419 ( 1007) [004] d..2 24577.580316: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131510            adbd-1007  ( 1007) [000] d..2 24577.580317: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131511          <idle>-0     (-----) [000] d..1 24577.580323: cpu_idle: state=0 cpu_id=0
131512            adbd-23485 ( 1007) [001] d..2 24577.580337: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131513          <idle>-0     (-----) [001] d..1 24577.580344: cpu_idle: state=0 cpu_id=1
131514          <idle>-0     (-----) [001] d.h3 24577.580357: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131515          <idle>-0     (-----) [001] dnh4 24577.580364: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131516          <idle>-0     (-----) [001] .n.1 24577.580370: cpu_idle: state=4294967295 cpu_id=1
131517          <idle>-0     (-----) [001] d..2 24577.580375: 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
131518   kworker/u17:2-23076 (23076) [001] d..2 24577.580382: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131519   kworker/u17:2-23076 (23076) [001] d..3 24577.580387: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131520   kworker/u17:2-23076 (23076) [001] d..2 24577.580399: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131521     kworker/1:1-13091 (13091) [001] d..2 24577.580404: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
131522     kworker/1:1-13091 (13091) [001] d..3 24577.580412: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
131523     kworker/1:1-13091 (13091) [001] d..2 24577.580420: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
131524              ps-13422 (13422) [004] d..2 24577.580421: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131525              ps-13422 (13422) [004] dn.3 24577.580426: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131526              ps-13422 (13422) [004] d..2 24577.580431: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131527 shell svc 13418-13419 ( 1007) [004] d..2 24577.580451: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131528            adbd-23485 ( 1007) [001] d..2 24577.580457: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131529          <idle>-0     (-----) [001] d..1 24577.580465: cpu_idle: state=0 cpu_id=1
131530          <idle>-0     (-----) [001] d.h3 24577.580484: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131531          <idle>-0     (-----) [001] dnh4 24577.580490: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131532          <idle>-0     (-----) [001] .n.1 24577.580495: cpu_idle: state=4294967295 cpu_id=1
131533          <idle>-0     (-----) [001] d..2 24577.580500: 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
131534   kworker/u17:2-23076 (23076) [001] d..2 24577.580507: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131535   kworker/u17:2-23076 (23076) [001] d..3 24577.580512: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131536   kworker/u17:2-23076 (23076) [001] d..2 24577.580524: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131537     kworker/1:1-13091 (13091) [001] d..2 24577.580528: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
131538     kworker/1:1-13091 (13091) [001] d..3 24577.580536: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
131539     kworker/1:1-13091 (13091) [001] d..2 24577.580544: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
131540              ps-13422 (13422) [004] d..2 24577.580561: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131541            adbd-23485 ( 1007) [001] d..2 24577.580562: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131542              ps-13422 (13422) [004] dn.3 24577.580567: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131543          <idle>-0     (-----) [001] d..1 24577.580569: cpu_idle: state=0 cpu_id=1
131544              ps-13422 (13422) [004] d..2 24577.580572: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131545 shell svc 13418-13419 ( 1007) [004] d..2 24577.580592: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131546          <idle>-0     (-----) [001] d.h3 24577.580667: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131547          <idle>-0     (-----) [001] dnh4 24577.580675: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131548          <idle>-0     (-----) [001] .n.1 24577.580680: cpu_idle: state=4294967295 cpu_id=1
131549          <idle>-0     (-----) [001] d..2 24577.580686: 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
131550   kworker/u17:2-23076 (23076) [001] d..2 24577.580694: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131551   kworker/u17:2-23076 (23076) [001] d..3 24577.580699: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131552              ps-13422 (13422) [004] d..2 24577.580702: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131553              ps-13422 (13422) [004] dn.3 24577.580708: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131554   kworker/u17:2-23076 (23076) [001] d..2 24577.580712: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131555              ps-13422 (13422) [004] d..2 24577.580713: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131556     kworker/1:1-13091 (13091) [001] d..2 24577.580719: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
131557 shell svc 13418-13419 ( 1007) [004] d..2 24577.580733: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131558     kworker/1:1-13091 (13091) [001] d..3 24577.580738: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
131559     kworker/1:1-13091 (13091) [001] d..2 24577.580747: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
131560            adbd-23484 ( 1007) [001] d..2 24577.580758: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
131561            adbd-23484 ( 1007) [001] d..3 24577.580767: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
131562            adbd-23484 ( 1007) [001] d..2 24577.580804: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
131563              ps-13422 (13422) [004] d..2 24577.580844: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131564              ps-13422 (13422) [004] dn.3 24577.580850: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131565              ps-13422 (13422) [004] d..2 24577.580854: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131566            adbd-1007  ( 1007) [001] d..1 24577.580868: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
131567 shell svc 13418-13419 ( 1007) [004] d..2 24577.580875: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131568            adbd-1007  ( 1007) [001] d..2 24577.580885: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
131569              ps-13422 (13422) [004] d.s2 24577.580901: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
131570          <idle>-0     (-----) [000] dns3 24577.580907: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
131571              ps-13422 (13422) [004] dns3 24577.580910: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
131572          <idle>-0     (-----) [000] dns4 24577.580917: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
131573              ps-13422 (13422) [004] d..2 24577.580918: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=kworker/4:0 next_pid=24269 next_prio=120
131574          <idle>-0     (-----) [003] .n.1 24577.580922: cpu_idle: state=4294967295 cpu_id=3
131575          <idle>-0     (-----) [000] .n.1 24577.580924: cpu_idle: state=4294967295 cpu_id=0
131576          <idle>-0     (-----) [003] d..2 24577.580928: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
131577          <idle>-0     (-----) [000] d..2 24577.580929: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131578            adbd-1007  ( 1007) [001] d..2 24577.580940: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131579     kworker/4:0-24269 (24269) [004] d..2 24577.580943: sched_switch: prev_comm=kworker/4:0 prev_pid=24269 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131580  crtc_event:111-254   (  254) [003] d..2 24577.580944: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
131581          <idle>-0     (-----) [001] d..1 24577.580949: cpu_idle: state=0 cpu_id=1
131582          <idle>-0     (-----) [003] d..1 24577.580950: cpu_idle: state=0 cpu_id=3
131583            adbd-23485 ( 1007) [000] d..2 24577.580971: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131584          <idle>-0     (-----) [000] d..1 24577.580979: cpu_idle: state=0 cpu_id=0
131585          <idle>-0     (-----) [001] d.h3 24577.580985: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131586          <idle>-0     (-----) [001] dnh4 24577.580992: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131587          <idle>-0     (-----) [001] .n.1 24577.580997: cpu_idle: state=4294967295 cpu_id=1
131588          <idle>-0     (-----) [001] d..2 24577.581004: 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
131589   kworker/u17:2-23076 (23076) [001] d..2 24577.581014: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131590   kworker/u17:2-23076 (23076) [001] d..3 24577.581019: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131591   kworker/u17:2-23076 (23076) [001] d..2 24577.581032: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131592     kworker/1:1-13091 (13091) [001] d..2 24577.581039: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
131593     kworker/1:1-13091 (13091) [001] d..3 24577.581047: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
131594          <idle>-0     (-----) [000] .n.1 24577.581053: cpu_idle: state=4294967295 cpu_id=0
131595              ps-13422 (13422) [004] d..2 24577.581056: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131596          <idle>-0     (-----) [000] d..2 24577.581059: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131597     kworker/1:1-13091 (13091) [001] d..2 24577.581061: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131598              ps-13422 (13422) [004] dn.3 24577.581063: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131599              ps-13422 (13422) [004] d..2 24577.581067: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131600          <idle>-0     (-----) [001] d..1 24577.581068: cpu_idle: state=0 cpu_id=1
131601 shell svc 13418-13419 ( 1007) [004] d..2 24577.581089: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131602            adbd-23485 ( 1007) [000] d..2 24577.581097: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131603          <idle>-0     (-----) [000] d..1 24577.581104: cpu_idle: state=0 cpu_id=0
131604          <idle>-0     (-----) [001] d.h3 24577.581112: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131605          <idle>-0     (-----) [001] dnh4 24577.581117: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131606          <idle>-0     (-----) [001] .n.1 24577.581122: cpu_idle: state=4294967295 cpu_id=1
131607          <idle>-0     (-----) [001] d..2 24577.581127: 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
131608   kworker/u17:2-23076 (23076) [001] d..2 24577.581135: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131609   kworker/u17:2-23076 (23076) [001] d..3 24577.581140: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131610   kworker/u17:2-23076 (23076) [001] d..2 24577.581151: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131611     kworker/1:1-13091 (13091) [001] d..2 24577.581156: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
131612     kworker/1:1-13091 (13091) [001] d..3 24577.581165: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
131613          <idle>-0     (-----) [000] .n.1 24577.581170: cpu_idle: state=4294967295 cpu_id=0
131614          <idle>-0     (-----) [000] d..2 24577.581176: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131615     kworker/1:1-13091 (13091) [001] d..2 24577.581177: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131616          <idle>-0     (-----) [001] d..1 24577.581184: cpu_idle: state=0 cpu_id=1
131617            adbd-23485 ( 1007) [000] d..2 24577.581197: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131618          <idle>-0     (-----) [000] d..1 24577.581203: cpu_idle: state=0 cpu_id=0
131619          <idle>-0     (-----) [001] d.h3 24577.581296: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131620          <idle>-0     (-----) [001] dnh4 24577.581301: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131621          <idle>-0     (-----) [001] .n.1 24577.581306: cpu_idle: state=4294967295 cpu_id=1
131622          <idle>-0     (-----) [001] d..2 24577.581311: 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
131623   kworker/u17:2-23076 (23076) [001] d..2 24577.581317: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131624   kworker/u17:2-23076 (23076) [001] d..3 24577.581322: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131625   kworker/u17:2-23076 (23076) [001] d..2 24577.581334: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131626     kworker/1:1-13091 (13091) [001] d..2 24577.581340: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
131627     kworker/1:1-13091 (13091) [001] d..3 24577.581348: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
131628     kworker/1:1-13091 (13091) [001] d..2 24577.581355: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
131629            adbd-23484 ( 1007) [001] d..2 24577.581366: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
131630            adbd-23484 ( 1007) [001] d..3 24577.581372: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
131631            adbd-23484 ( 1007) [001] d..2 24577.581406: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
131632            adbd-1007  ( 1007) [001] d..1 24577.581460: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
131633            adbd-1007  ( 1007) [001] d..2 24577.581471: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
131634          <idle>-0     (-----) [000] .n.1 24577.581476: cpu_idle: state=4294967295 cpu_id=0
131635          <idle>-0     (-----) [000] d..2 24577.581482: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131636            adbd-1007  ( 1007) [001] d..2 24577.581502: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131637          <idle>-0     (-----) [001] d..1 24577.581511: cpu_idle: state=0 cpu_id=1
131638            adbd-23485 ( 1007) [000] d..2 24577.581518: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131639          <idle>-0     (-----) [001] d.h3 24577.581524: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131640          <idle>-0     (-----) [000] d..1 24577.581524: cpu_idle: state=0 cpu_id=0
131641          <idle>-0     (-----) [001] dnh4 24577.581530: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131642          <idle>-0     (-----) [001] .n.1 24577.581535: cpu_idle: state=4294967295 cpu_id=1
131643          <idle>-0     (-----) [001] d..2 24577.581541: 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
131644   kworker/u17:2-23076 (23076) [001] d..2 24577.581550: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131645   kworker/u17:2-23076 (23076) [001] d..3 24577.581555: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131646   kworker/u17:2-23076 (23076) [001] d..2 24577.581567: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131647     kworker/1:1-13091 (13091) [001] d..2 24577.581572: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
131648     kworker/1:1-13091 (13091) [001] d..3 24577.581581: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
131649          <idle>-0     (-----) [000] .n.1 24577.581586: cpu_idle: state=4294967295 cpu_id=0
131650          <idle>-0     (-----) [000] d..2 24577.581592: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131651     kworker/1:1-13091 (13091) [001] d..2 24577.581594: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131652          <idle>-0     (-----) [001] d..1 24577.581601: cpu_idle: state=0 cpu_id=1
131653            adbd-23485 ( 1007) [000] d..2 24577.581628: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131654          <idle>-0     (-----) [000] d..1 24577.581634: cpu_idle: state=0 cpu_id=0
131655          <idle>-0     (-----) [001] d.h3 24577.581650: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131656          <idle>-0     (-----) [001] dnh4 24577.581655: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131657          <idle>-0     (-----) [001] .n.1 24577.581660: cpu_idle: state=4294967295 cpu_id=1
131658          <idle>-0     (-----) [001] d..2 24577.581665: 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
131659   kworker/u17:2-23076 (23076) [001] d..2 24577.581672: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131660   kworker/u17:2-23076 (23076) [001] d..3 24577.581677: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131661   kworker/u17:2-23076 (23076) [001] d..2 24577.581690: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131662     kworker/1:1-13091 (13091) [001] d..2 24577.581695: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
131663     kworker/1:1-13091 (13091) [001] d..3 24577.581703: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
131664          <idle>-0     (-----) [000] .n.1 24577.581708: cpu_idle: state=4294967295 cpu_id=0
131665          <idle>-0     (-----) [000] d..2 24577.581714: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131666     kworker/1:1-13091 (13091) [001] d..2 24577.581717: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131667          <idle>-0     (-----) [001] d..1 24577.581723: cpu_idle: state=0 cpu_id=1
131668            adbd-23485 ( 1007) [000] d..2 24577.581730: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131669          <idle>-0     (-----) [000] d..1 24577.581736: cpu_idle: state=0 cpu_id=0
131670              ps-13422 (13422) [004] d..2 24577.581783: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131671              ps-13422 (13422) [004] dn.3 24577.581790: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131672          <idle>-0     (-----) [000] d.h5 24577.581790: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
131673              ps-13422 (13422) [004] d..2 24577.581795: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131674          <idle>-0     (-----) [000] dnh6 24577.581798: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
131675          <idle>-0     (-----) [000] .n.1 24577.581805: cpu_idle: state=4294967295 cpu_id=0
131676          <idle>-0     (-----) [000] d..2 24577.581810: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
131677 shell svc 13418-13419 ( 1007) [004] d..2 24577.581817: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131678          <idle>-0     (-----) [001] d.h3 24577.581844: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131679          <idle>-0     (-----) [001] dnh4 24577.581849: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131680          <idle>-0     (-----) [001] .n.1 24577.581854: cpu_idle: state=4294967295 cpu_id=1
131681          <idle>-0     (-----) [001] d..2 24577.581859: 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
131682   kworker/u17:2-23076 (23076) [001] d..2 24577.581866: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131683 crtc_commit:111-253   (  253) [000] d..2 24577.581868: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131684   kworker/u17:2-23076 (23076) [001] d..3 24577.581871: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131685          <idle>-0     (-----) [000] d..1 24577.581875: cpu_idle: state=0 cpu_id=0
131686   kworker/u17:2-23076 (23076) [001] d..2 24577.581882: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131687     kworker/1:1-13091 (13091) [001] d..2 24577.581888: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
131688     kworker/1:1-13091 (13091) [001] d..3 24577.581896: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
131689     kworker/1:1-13091 (13091) [001] d..2 24577.581905: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
131690            adbd-23484 ( 1007) [001] d..2 24577.581915: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
131691            adbd-23484 ( 1007) [001] d..3 24577.581921: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
131692              ps-13422 (13422) [004] d..2 24577.581923: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131693              ps-13422 (13422) [004] dn.3 24577.581929: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131694              ps-13422 (13422) [004] d..2 24577.581935: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131695            adbd-23484 ( 1007) [001] d..2 24577.581955: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
131696 shell svc 13418-13419 ( 1007) [004] d..2 24577.581955: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131697            adbd-1007  ( 1007) [001] d..1 24577.582009: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
131698            adbd-1007  ( 1007) [001] d..2 24577.582020: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
131699          <idle>-0     (-----) [000] .n.1 24577.582025: cpu_idle: state=4294967295 cpu_id=0
131700          <idle>-0     (-----) [000] d..2 24577.582031: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131701            adbd-1007  ( 1007) [001] d..2 24577.582053: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131702              ps-13422 (13422) [004] d..2 24577.582060: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131703          <idle>-0     (-----) [001] d..1 24577.582061: cpu_idle: state=0 cpu_id=1
131704              ps-13422 (13422) [004] dn.3 24577.582066: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131705              ps-13422 (13422) [004] d..2 24577.582070: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131706          <idle>-0     (-----) [001] d.h3 24577.582086: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131707            adbd-23485 ( 1007) [000] d.h5 24577.582086: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
131708 shell svc 13418-13419 ( 1007) [004] d..2 24577.582092: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131709          <idle>-0     (-----) [001] dnh4 24577.582095: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131710            adbd-23485 ( 1007) [000] d.h6 24577.582098: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
131711          <idle>-0     (-----) [001] .n.1 24577.582100: cpu_idle: state=4294967295 cpu_id=1
131712          <idle>-0     (-----) [003] .n.1 24577.582102: cpu_idle: state=4294967295 cpu_id=3
131713            adbd-23485 ( 1007) [000] d.h7 24577.582106: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
131714          <idle>-0     (-----) [001] d..2 24577.582106: 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
131715          <idle>-0     (-----) [003] d..2 24577.582107: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
131716            adbd-23485 ( 1007) [000] dnh8 24577.582112: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
131717   kworker/u17:2-23076 (23076) [001] d..2 24577.582114: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131718   kworker/u17:2-23076 (23076) [001] d..3 24577.582120: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131719  crtc_event:111-254   (  254) [003] d..2 24577.582121: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
131720          <idle>-0     (-----) [003] d..1 24577.582126: cpu_idle: state=0 cpu_id=3
131721            adbd-23485 ( 1007) [000] dnh9 24577.582126: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
131722   kworker/u17:2-23076 (23076) [001] d..2 24577.582132: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131723            adbd-23485 ( 1007) [000] dnha 24577.582140: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
131724          <idle>-0     (-----) [003] .n.1 24577.582144: cpu_idle: state=4294967295 cpu_id=3
131725            adbd-23485 ( 1007) [000] dnh7 24577.582146: sched_waking: comm=SDM_EventThread pid=624 prio=111 target_cpu=002
131726     kworker/1:1-13091 (13091) [001] d..2 24577.582148: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131727          <idle>-0     (-----) [003] d..2 24577.582149: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
131728          <idle>-0     (-----) [001] d..1 24577.582155: cpu_idle: state=0 cpu_id=1
131729            adbd-23485 ( 1007) [000] dnh8 24577.582171: sched_wakeup: comm=SDM_EventThread pid=624 prio=111 target_cpu=003
131730 crtc_commit:111-253   (  253) [003] d..2 24577.582184: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=SDM_EventThread next_pid=624 next_prio=111
131731            adbd-23485 ( 1007) [000] d..2 24577.582186: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
131732              ps-13422 (13422) [004] d..2 24577.582192: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131733              ps-13422 (13422) [004] dn.3 24577.582199: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131734     kworker/0:1-13012 (13012) [000] d..2 24577.582200: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
131735              ps-13422 (13422) [004] d..2 24577.582204: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131736 shell svc 13418-13419 ( 1007) [004] d..2 24577.582224: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131737 SDM_EventThread-624   (  598) [003] ...1 24577.582226: tracing_mark_write: B|598|HWCCallbacks::Vsync::
131738 SDM_EventThread-624   (  598) [003] ...1 24577.582237: tracing_mark_write: B|598|HIDL::IComposerCallback::onVsync::client
131739 SDM_EventThread-624   (  598) [003] ...1 24577.582240: tracing_mark_write: E|598
131740            adbd-23485 ( 1007) [000] d..2 24577.582241: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131741          <idle>-0     (-----) [000] d..1 24577.582249: cpu_idle: state=0 cpu_id=0
131742          <idle>-0     (-----) [001] d.h3 24577.582255: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131743          <idle>-0     (-----) [001] dnh4 24577.582260: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131744          <idle>-0     (-----) [001] .n.1 24577.582265: cpu_idle: state=4294967295 cpu_id=1
131745 SDM_EventThread-624   (  598) [003] .... 24577.582268: binder_transaction: transaction=1671673 dest_node=1270370 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
131746          <idle>-0     (-----) [001] d..2 24577.582271: 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
131747 SDM_EventThread-624   (  598) [003] d..4 24577.582277: sched_waking: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=000
131748   kworker/u17:2-23076 (23076) [001] d..2 24577.582278: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131749   kworker/u17:2-23076 (23076) [001] d..3 24577.582282: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131750 SDM_EventThread-624   (  598) [003] d..5 24577.582293: sched_wakeup: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=000
131751   kworker/u17:2-23076 (23076) [001] d..2 24577.582294: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131752          <idle>-0     (-----) [000] .n.1 24577.582298: cpu_idle: state=4294967295 cpu_id=0
131753     kworker/1:1-13091 (13091) [001] d..2 24577.582299: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
131754          <idle>-0     (-----) [000] d..2 24577.582305: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:23896_ next_pid=23923 next_prio=120
131755 SDM_EventThread-624   (  598) [003] ...1 24577.582312: tracing_mark_write: E|598
131756     kworker/1:1-13091 (13091) [001] d..3 24577.582313: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
131757 HwBinder:23896_-23923 (23896) [000] .... 24577.582314: binder_transaction_received: transaction=1671673
131758 SDM_EventThread-624   (  598) [003] d..4 24577.582323: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
131759     kworker/1:1-13091 (13091) [001] d..2 24577.582325: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131760              ps-13422 (13422) [004] d..2 24577.582331: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131761          <idle>-0     (-----) [001] d..1 24577.582332: cpu_idle: state=0 cpu_id=1
131762              ps-13422 (13422) [004] dn.3 24577.582337: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131763 SDM_EventThread-624   (  598) [003] d..5 24577.582340: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
131764              ps-13422 (13422) [004] d..2 24577.582342: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131765          <idle>-0     (-----) [001] .n.1 24577.582344: cpu_idle: state=4294967295 cpu_id=1
131766          <idle>-0     (-----) [001] d..2 24577.582350: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
131767 HwBinder:23896_-23923 (23896) [000] ...1 24577.582355: tracing_mark_write: B|23896|HIDL::IComposerCallback::onVsync::server
131768 shell svc 13418-13419 ( 1007) [004] d..2 24577.582363: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131769 SDM_EventThread-624   (  598) [003] d..2 24577.582365: sched_switch: prev_comm=SDM_EventThread prev_pid=624 prev_prio=111 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
131770 crtc_commit:111-253   (  253) [001] d..2 24577.582367: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131771          <idle>-0     (-----) [001] d..1 24577.582373: cpu_idle: state=0 cpu_id=1
131772          <idle>-0     (-----) [003] d..1 24577.582373: cpu_idle: state=0 cpu_id=3
131773 HwBinder:23896_-23923 (23896) [000] ...1 24577.582375: tracing_mark_write: E|23896
131774 HwBinder:23896_-23923 (23896) [000] d..2 24577.582403: sched_switch: prev_comm=HwBinder:23896_ prev_pid=23923 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
131775            adbd-23485 ( 1007) [000] d..2 24577.582424: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131776          <idle>-0     (-----) [000] d..1 24577.582431: cpu_idle: state=0 cpu_id=0
131777          <idle>-0     (-----) [001] d.h3 24577.582434: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131778          <idle>-0     (-----) [001] dnh4 24577.582440: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131779          <idle>-0     (-----) [001] .n.1 24577.582445: cpu_idle: state=4294967295 cpu_id=1
131780          <idle>-0     (-----) [001] d..2 24577.582451: 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
131781   kworker/u17:2-23076 (23076) [001] d..2 24577.582457: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131782   kworker/u17:2-23076 (23076) [001] d..3 24577.582462: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131783              ps-13422 (13422) [004] d..2 24577.582465: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131784              ps-13422 (13422) [004] dn.3 24577.582471: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131785   kworker/u17:2-23076 (23076) [001] d..2 24577.582474: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131786              ps-13422 (13422) [004] d..2 24577.582476: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131787     kworker/1:1-13091 (13091) [001] d..2 24577.582480: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
131788     kworker/1:1-13091 (13091) [001] d..3 24577.582489: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
131789 shell svc 13418-13419 ( 1007) [004] d..2 24577.582497: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131790     kworker/1:1-13091 (13091) [001] d..2 24577.582497: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
131791            adbd-23484 ( 1007) [001] d..2 24577.582508: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
131792            adbd-23484 ( 1007) [001] d..3 24577.582514: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
131793            adbd-23484 ( 1007) [001] d..2 24577.582548: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
131794              ps-13422 (13422) [004] d..2 24577.582599: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131795            adbd-1007  ( 1007) [001] d..1 24577.582604: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
131796              ps-13422 (13422) [004] dn.3 24577.582605: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131797              ps-13422 (13422) [004] d..2 24577.582610: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131798            adbd-1007  ( 1007) [001] d..2 24577.582618: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
131799          <idle>-0     (-----) [000] .n.1 24577.582623: cpu_idle: state=4294967295 cpu_id=0
131800          <idle>-0     (-----) [000] d..2 24577.582630: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131801 shell svc 13418-13419 ( 1007) [004] d..2 24577.582630: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131802            adbd-1007  ( 1007) [001] d..2 24577.582650: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131803          <idle>-0     (-----) [001] d..1 24577.582659: cpu_idle: state=0 cpu_id=1
131804            adbd-23485 ( 1007) [000] d..2 24577.582669: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131805          <idle>-0     (-----) [000] d..1 24577.582676: cpu_idle: state=0 cpu_id=0
131806          <idle>-0     (-----) [001] d.h3 24577.582693: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131807          <idle>-0     (-----) [001] dnh4 24577.582699: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131808          <idle>-0     (-----) [001] .n.1 24577.582704: cpu_idle: state=4294967295 cpu_id=1
131809          <idle>-0     (-----) [001] d..2 24577.582710: 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
131810   kworker/u17:2-23076 (23076) [001] d..2 24577.582718: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131811   kworker/u17:2-23076 (23076) [001] d..3 24577.582724: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131812              ps-13422 (13422) [004] d..2 24577.582731: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131813   kworker/u17:2-23076 (23076) [001] d..2 24577.582736: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131814              ps-13422 (13422) [004] dn.3 24577.582737: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131815     kworker/1:1-13091 (13091) [001] d..2 24577.582741: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
131816              ps-13422 (13422) [004] d..2 24577.582742: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131817     kworker/1:1-13091 (13091) [001] d..3 24577.582750: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
131818          <idle>-0     (-----) [000] .n.1 24577.582755: cpu_idle: state=4294967295 cpu_id=0
131819          <idle>-0     (-----) [000] d..2 24577.582761: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131820 shell svc 13418-13419 ( 1007) [004] d..2 24577.582762: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131821     kworker/1:1-13091 (13091) [001] d..2 24577.582764: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131822          <idle>-0     (-----) [001] d..1 24577.582771: cpu_idle: state=0 cpu_id=1
131823            adbd-23485 ( 1007) [000] d..2 24577.582797: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131824          <idle>-0     (-----) [000] d..1 24577.582804: cpu_idle: state=0 cpu_id=0
131825          <idle>-0     (-----) [001] d.h3 24577.582820: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131826          <idle>-0     (-----) [001] dnh4 24577.582826: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131827          <idle>-0     (-----) [001] .n.1 24577.582831: cpu_idle: state=4294967295 cpu_id=1
131828          <idle>-0     (-----) [001] d..2 24577.582836: 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
131829   kworker/u17:2-23076 (23076) [001] d..2 24577.582844: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131830   kworker/u17:2-23076 (23076) [001] d..3 24577.582848: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131831              ps-13422 (13422) [004] d..2 24577.582860: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131832   kworker/u17:2-23076 (23076) [001] d..2 24577.582860: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131833     kworker/1:1-13091 (13091) [001] d..2 24577.582865: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
131834              ps-13422 (13422) [004] dn.3 24577.582866: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131835              ps-13422 (13422) [004] d..2 24577.582870: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131836     kworker/1:1-13091 (13091) [001] d..3 24577.582874: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
131837          <idle>-0     (-----) [000] .n.1 24577.582878: cpu_idle: state=4294967295 cpu_id=0
131838          <idle>-0     (-----) [000] d..2 24577.582884: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131839     kworker/1:1-13091 (13091) [001] d..2 24577.582887: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131840 shell svc 13418-13419 ( 1007) [004] d..2 24577.582890: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131841          <idle>-0     (-----) [001] d..1 24577.582894: cpu_idle: state=0 cpu_id=1
131842            adbd-23485 ( 1007) [000] d..2 24577.582900: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131843          <idle>-0     (-----) [000] d..1 24577.582905: cpu_idle: state=0 cpu_id=0
131844              ps-13422 (13422) [004] d..2 24577.582989: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131845              ps-13422 (13422) [004] dn.3 24577.582995: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131846              ps-13422 (13422) [004] d..2 24577.583000: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131847 shell svc 13418-13419 ( 1007) [004] d..2 24577.583020: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131848          <idle>-0     (-----) [001] d.h3 24577.583030: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131849          <idle>-0     (-----) [001] dnh4 24577.583036: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131850          <idle>-0     (-----) [001] .n.1 24577.583040: cpu_idle: state=4294967295 cpu_id=1
131851          <idle>-0     (-----) [001] d..2 24577.583046: 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
131852   kworker/u17:2-23076 (23076) [001] d..2 24577.583052: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131853   kworker/u17:2-23076 (23076) [001] d..3 24577.583057: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131854   kworker/u17:2-23076 (23076) [001] d..2 24577.583068: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131855     kworker/1:1-13091 (13091) [001] d..2 24577.583074: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
131856     kworker/1:1-13091 (13091) [001] d..3 24577.583083: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
131857     kworker/1:1-13091 (13091) [001] d..2 24577.583090: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
131858            adbd-23484 ( 1007) [001] d..2 24577.583101: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
131859            adbd-23484 ( 1007) [001] d..3 24577.583106: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
131860              ps-13422 (13422) [004] d..2 24577.583121: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131861              ps-13422 (13422) [004] dn.3 24577.583127: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131862              ps-13422 (13422) [004] d..2 24577.583131: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131863            adbd-23484 ( 1007) [001] d..2 24577.583140: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
131864 shell svc 13418-13419 ( 1007) [004] d..2 24577.583151: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131865            adbd-1007  ( 1007) [001] d..1 24577.583198: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
131866            adbd-1007  ( 1007) [001] d..2 24577.583209: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
131867          <idle>-0     (-----) [000] .n.1 24577.583213: cpu_idle: state=4294967295 cpu_id=0
131868          <idle>-0     (-----) [000] d..2 24577.583219: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131869            adbd-1007  ( 1007) [001] d..2 24577.583242: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131870              ps-13422 (13422) [004] d..2 24577.583250: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131871          <idle>-0     (-----) [001] d..1 24577.583250: cpu_idle: state=0 cpu_id=1
131872              ps-13422 (13422) [004] dn.3 24577.583256: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131873            adbd-23485 ( 1007) [000] d..2 24577.583256: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131874              ps-13422 (13422) [004] d..2 24577.583261: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131875          <idle>-0     (-----) [000] d..1 24577.583262: cpu_idle: state=0 cpu_id=0
131876          <idle>-0     (-----) [001] d.h3 24577.583276: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131877 shell svc 13418-13419 ( 1007) [004] d..2 24577.583281: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131878          <idle>-0     (-----) [001] dnh4 24577.583282: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131879          <idle>-0     (-----) [001] .n.1 24577.583287: cpu_idle: state=4294967295 cpu_id=1
131880          <idle>-0     (-----) [001] d..2 24577.583294: 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
131881   kworker/u17:2-23076 (23076) [001] d..2 24577.583302: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131882   kworker/u17:2-23076 (23076) [001] d..3 24577.583307: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131883   kworker/u17:2-23076 (23076) [001] d..2 24577.583320: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131884     kworker/1:1-13091 (13091) [001] d..2 24577.583326: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
131885     kworker/1:1-13091 (13091) [001] d..3 24577.583334: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
131886          <idle>-0     (-----) [000] .n.1 24577.583339: cpu_idle: state=4294967295 cpu_id=0
131887          <idle>-0     (-----) [000] d..2 24577.583345: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131888     kworker/1:1-13091 (13091) [001] d..2 24577.583348: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131889          <idle>-0     (-----) [001] d..1 24577.583355: cpu_idle: state=0 cpu_id=1
131890            adbd-23485 ( 1007) [000] d..2 24577.583382: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131891          <idle>-0     (-----) [000] d..1 24577.583388: cpu_idle: state=0 cpu_id=0
131892              ps-13422 (13422) [004] d..2 24577.583389: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131893              ps-13422 (13422) [004] dn.3 24577.583396: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131894              ps-13422 (13422) [004] d..2 24577.583400: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131895          <idle>-0     (-----) [001] d.h3 24577.583401: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131896          <idle>-0     (-----) [001] dnh4 24577.583406: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131897          <idle>-0     (-----) [001] .n.1 24577.583410: cpu_idle: state=4294967295 cpu_id=1
131898          <idle>-0     (-----) [001] d..2 24577.583416: 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
131899 shell svc 13418-13419 ( 1007) [004] d..2 24577.583421: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131900   kworker/u17:2-23076 (23076) [001] d..2 24577.583423: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131901   kworker/u17:2-23076 (23076) [001] d..3 24577.583428: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131902   kworker/u17:2-23076 (23076) [001] d..2 24577.583439: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131903     kworker/1:1-13091 (13091) [001] d..2 24577.583444: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
131904     kworker/1:1-13091 (13091) [001] d..3 24577.583453: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
131905          <idle>-0     (-----) [000] .n.1 24577.583458: cpu_idle: state=4294967295 cpu_id=0
131906          <idle>-0     (-----) [000] d..2 24577.583464: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131907     kworker/1:1-13091 (13091) [001] d..2 24577.583466: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131908          <idle>-0     (-----) [001] d..1 24577.583472: cpu_idle: state=0 cpu_id=1
131909            adbd-23485 ( 1007) [000] d..2 24577.583479: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131910          <idle>-0     (-----) [000] d..1 24577.583485: cpu_idle: state=0 cpu_id=0
131911              ps-13422 (13422) [004] d..2 24577.583522: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131912              ps-13422 (13422) [004] dn.3 24577.583528: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131913              ps-13422 (13422) [004] d..2 24577.583534: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131914 shell svc 13418-13419 ( 1007) [004] d..2 24577.583554: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131915          <idle>-0     (-----) [001] d.h3 24577.583603: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131916          <idle>-0     (-----) [001] dnh4 24577.583608: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131917          <idle>-0     (-----) [001] .n.1 24577.583613: cpu_idle: state=4294967295 cpu_id=1
131918          <idle>-0     (-----) [001] d..2 24577.583619: 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
131919   kworker/u17:2-23076 (23076) [001] d..2 24577.583625: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131920   kworker/u17:2-23076 (23076) [001] d..3 24577.583630: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131921   kworker/u17:2-23076 (23076) [001] d..2 24577.583642: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131922     kworker/1:1-13091 (13091) [001] d..2 24577.583647: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
131923     kworker/1:1-13091 (13091) [001] d..3 24577.583656: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
131924              ps-13422 (13422) [004] d..2 24577.583657: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131925              ps-13422 (13422) [004] dn.3 24577.583663: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131926     kworker/1:1-13091 (13091) [001] d..2 24577.583664: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
131927              ps-13422 (13422) [004] d..2 24577.583668: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131928            adbd-23484 ( 1007) [001] d..2 24577.583674: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
131929            adbd-23484 ( 1007) [001] d..3 24577.583680: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
131930 shell svc 13418-13419 ( 1007) [004] d..2 24577.583687: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131931            adbd-23484 ( 1007) [001] d..2 24577.583715: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
131932          <idle>-0     (-----) [002] d.h2 24577.583731: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
131933          <idle>-0     (-----) [002] dnh3 24577.583741: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=002
131934          <idle>-0     (-----) [002] .n.1 24577.583746: cpu_idle: state=4294967295 cpu_id=2
131935          <idle>-0     (-----) [002] d..2 24577.583752: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
131936            adbd-1007  ( 1007) [001] d..1 24577.583772: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
131937        DispSync-23904 (23896) [002] d..1 24577.583774: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
131938            adbd-1007  ( 1007) [001] d..2 24577.583783: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
131939              ps-13422 (13422) [004] d..2 24577.583788: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131940          <idle>-0     (-----) [000] .n.1 24577.583788: cpu_idle: state=4294967295 cpu_id=0
131941        DispSync-23904 (23896) [002] d..2 24577.583791: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
131942          <idle>-0     (-----) [000] d..2 24577.583793: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131943              ps-13422 (13422) [004] dn.3 24577.583793: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131944          <idle>-0     (-----) [003] .n.1 24577.583797: cpu_idle: state=4294967295 cpu_id=3
131945              ps-13422 (13422) [004] d..2 24577.583799: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131946          <idle>-0     (-----) [003] d..2 24577.583803: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
131947        DispSync-23904 (23896) [002] d..2 24577.583811: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131948            adbd-1007  ( 1007) [001] d..2 24577.583815: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131949          <idle>-0     (-----) [002] d..1 24577.583816: cpu_idle: state=0 cpu_id=2
131950 shell svc 13418-13419 ( 1007) [004] d..2 24577.583818: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131951          <idle>-0     (-----) [001] d..1 24577.583823: cpu_idle: state=0 cpu_id=1
131952            adbd-23485 ( 1007) [000] d..2 24577.583829: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131953          <idle>-0     (-----) [000] d..1 24577.583836: cpu_idle: state=0 cpu_id=0
131954          <idle>-0     (-----) [001] d.h3 24577.583839: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131955          <idle>-0     (-----) [001] dnh4 24577.583845: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131956          <idle>-0     (-----) [001] .n.1 24577.583850: cpu_idle: state=4294967295 cpu_id=1
131957          <idle>-0     (-----) [001] d..2 24577.583856: 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
131958  appEventThread-23905 (23896) [003] d..3 24577.583857: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
131959   kworker/u17:2-23076 (23076) [001] d..2 24577.583865: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131960   kworker/u17:2-23076 (23076) [001] d..3 24577.583870: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131961  appEventThread-23905 (23896) [003] d..4 24577.583877: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
131962          <idle>-0     (-----) [000] .n.1 24577.583882: cpu_idle: state=4294967295 cpu_id=0
131963   kworker/u17:2-23076 (23076) [001] d..2 24577.583882: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131964     kworker/1:1-13091 (13091) [001] d..2 24577.583887: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
131965          <idle>-0     (-----) [000] d..2 24577.583888: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
131966  appEventThread-23905 (23896) [003] d..2 24577.583899: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
131967          <idle>-0     (-----) [003] d..1 24577.583906: cpu_idle: state=0 cpu_id=3
131968     kworker/1:1-13091 (13091) [001] d..3 24577.583913: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
131969              ps-13422 (13422) [004] d..2 24577.583917: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131970          <idle>-0     (-----) [003] .n.1 24577.583918: cpu_idle: state=4294967295 cpu_id=3
131971              ps-13422 (13422) [004] dn.3 24577.583923: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131972          <idle>-0     (-----) [003] d..2 24577.583924: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131973     kworker/1:1-13091 (13091) [001] d..2 24577.583926: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131974              ps-13422 (13422) [004] d..2 24577.583927: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131975          <idle>-0     (-----) [001] d..1 24577.583933: cpu_idle: state=0 cpu_id=1
131976 shell svc 13418-13419 ( 1007) [004] d..2 24577.583947: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131977            adbd-23485 ( 1007) [003] d..2 24577.583969: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
131978          <idle>-0     (-----) [001] d.h3 24577.583975: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131979          <idle>-0     (-----) [003] d..1 24577.583976: cpu_idle: state=0 cpu_id=3
131980          <idle>-0     (-----) [001] dnh4 24577.583980: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131981          <idle>-0     (-----) [001] .n.1 24577.583985: cpu_idle: state=4294967295 cpu_id=1
131982          <idle>-0     (-----) [001] d..2 24577.583991: 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
131983   kworker/u17:2-23076 (23076) [001] d..2 24577.583998: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131984   kworker/u17:2-23076 (23076) [001] d..3 24577.584003: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
131985   kworker/u17:2-23076 (23076) [001] d..2 24577.584014: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
131986     kworker/1:1-13091 (13091) [001] d..2 24577.584019: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
131987     kworker/1:1-13091 (13091) [001] d..3 24577.584028: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
131988          <idle>-0     (-----) [003] .n.1 24577.584033: cpu_idle: state=4294967295 cpu_id=3
131989          <idle>-0     (-----) [003] d..2 24577.584039: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
131990     kworker/1:1-13091 (13091) [001] d..2 24577.584040: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131991              ps-13422 (13422) [004] d..2 24577.584046: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131992          <idle>-0     (-----) [001] d..1 24577.584047: cpu_idle: state=0 cpu_id=1
131993              ps-13422 (13422) [004] dn.3 24577.584052: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
131994            adbd-23485 ( 1007) [003] d..2 24577.584056: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
131995              ps-13422 (13422) [004] d..2 24577.584057: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
131996          <idle>-0     (-----) [003] d..1 24577.584063: cpu_idle: state=0 cpu_id=3
131997 shell svc 13418-13419 ( 1007) [004] d..2 24577.584076: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
131998          <idle>-0     (-----) [001] d.h3 24577.584155: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
131999          <idle>-0     (-----) [001] dnh4 24577.584163: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132000          <idle>-0     (-----) [001] .n.1 24577.584168: cpu_idle: state=4294967295 cpu_id=1
132001          <idle>-0     (-----) [001] d..2 24577.584174: 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
132002              ps-13422 (13422) [004] d..2 24577.584175: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132003   kworker/u17:2-23076 (23076) [001] d..2 24577.584180: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132004              ps-13422 (13422) [004] dn.3 24577.584181: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132005              ps-13422 (13422) [004] d..2 24577.584185: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132006   kworker/u17:2-23076 (23076) [001] d..3 24577.584185: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132007   kworker/u17:2-23076 (23076) [001] d..2 24577.584197: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132008     kworker/1:1-13091 (13091) [001] d..2 24577.584203: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
132009 shell svc 13418-13419 ( 1007) [004] d..2 24577.584204: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132010     kworker/1:1-13091 (13091) [001] d..3 24577.584223: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
132011          <idle>-0     (-----) [002] d.s2 24577.584229: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
132012              ps-13422 (13422) [004] d.s2 24577.584230: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
132013          <idle>-0     (-----) [002] dns3 24577.584238: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
132014          <idle>-0     (-----) [002] .n.1 24577.584246: cpu_idle: state=4294967295 cpu_id=2
132015          <idle>-0     (-----) [002] d..2 24577.584250: 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
132016     kworker/1:1-13091 (13091) [001] d..2 24577.584262: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132017              ps-13422 (13422) [004] d.s2 24577.584263: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
132018     rcu_preempt-7     (    7) [002] d..2 24577.584269: 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
132019          <idle>-0     (-----) [001] d..1 24577.584270: cpu_idle: state=0 cpu_id=1
132020          <idle>-0     (-----) [002] dnh3 24577.584277: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
132021          <idle>-0     (-----) [002] d..2 24577.584283: 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
132022  kworker/u16:10-23868 (23868) [002] d.h3 24577.584288: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
132023 s.nexuslauncher-24827 (24827) [000] .... 24577.584355: binder_transaction: transaction=1671674 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
132024 s.nexuslauncher-24827 (24827) [000] d..4 24577.584362: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
132025 s.nexuslauncher-24827 (24827) [000] d..5 24577.584383: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
132026              ps-13422 (13422) [004] d..2 24577.584386: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132027          <idle>-0     (-----) [001] .n.1 24577.584388: cpu_idle: state=4294967295 cpu_id=1
132028              ps-13422 (13422) [004] dn.3 24577.584393: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132029          <idle>-0     (-----) [001] d..2 24577.584395: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
132030              ps-13422 (13422) [004] d..2 24577.584398: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132031  Binder:23896_4-24423 (23896) [001] .... 24577.584400: binder_transaction_received: transaction=1671674
132032 s.nexuslauncher-24827 (24827) [000] d..3 24577.584415: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
132033 shell svc 13418-13419 ( 1007) [004] d..2 24577.584421: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132034  kworker/u16:10-23868 (23868) [002] d..2 24577.584425: 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
132035  Binder:23896_4-24423 (23896) [001] d..1 24577.584427: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
132036     rcu_preempt-7     (    7) [002] d..2 24577.584428: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
132037 s.nexuslauncher-24827 (24827) [000] d..4 24577.584432: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=003
132038     rcu_preempt-7     (    7) [002] d..3 24577.584439: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
132039     rcu_preempt-7     (    7) [002] d..2 24577.584445: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
132040  Binder:23896_4-24423 (23896) [001] d..2 24577.584450: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
132041     rcu_preempt-7     (    7) [002] dn.3 24577.584463: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=002
132042          <idle>-0     (-----) [003] dns3 24577.584467: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
132043     rcu_preempt-7     (    7) [002] d..2 24577.584470: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=23905 next_prio=97
132044  Binder:23896_4-24423 (23896) [001] d..2 24577.584476: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132045          <idle>-0     (-----) [001] d..1 24577.584484: cpu_idle: state=0 cpu_id=1
132046          <idle>-0     (-----) [003] dns4 24577.584485: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
132047          <idle>-0     (-----) [003] dns4 24577.584491: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
132048          <idle>-0     (-----) [003] .n.1 24577.584496: cpu_idle: state=4294967295 cpu_id=3
132049          <idle>-0     (-----) [001] .n.1 24577.584496: cpu_idle: state=4294967295 cpu_id=1
132050  appEventThread-23905 (23896) [002] d..2 24577.584498: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
132051         rcuop/2-29    (   29) [002] d..2 24577.584501: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
132052          <idle>-0     (-----) [001] d..2 24577.584503: 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
132053          <idle>-0     (-----) [003] d..2 24577.584504: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
132054         rcuop/2-29    (   29) [002] d..3 24577.584510: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
132055         rcuop/2-29    (   29) [002] d..2 24577.584524: 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
132056         rcuop/3-37    (   37) [002] d..2 24577.584532: 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
132057     rcu_preempt-7     (    7) [002] d..2 24577.584533: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
132058    RenderThread-25194 (24827) [003] d..2 24577.584538: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
132059          <idle>-0     (-----) [003] d..1 24577.584546: cpu_idle: state=0 cpu_id=3
132060              ps-13422 (13422) [004] d..2 24577.584547: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132061     rcu_preempt-7     (    7) [002] d..3 24577.584552: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
132062              ps-13422 (13422) [004] dn.3 24577.584553: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132063  kworker/u16:10-23868 (23868) [001] .... 24577.584556: clk_set_rate: l3_cluster1_vote_clk 576000000
132064          <idle>-0     (-----) [003] .n.1 24577.584557: cpu_idle: state=4294967295 cpu_id=3
132065     rcu_preempt-7     (    7) [002] d..2 24577.584559: 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
132066              ps-13422 (13422) [004] d..2 24577.584561: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132067         rcuop/4-45    (   45) [002] d..2 24577.584563: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
132068          <idle>-0     (-----) [003] d..2 24577.584564: 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
132069         rcuop/0-10    (   10) [003] d..2 24577.584568: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
132070         rcuop/4-45    (   45) [002] d..3 24577.584579: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132071         rcuop/0-10    (   10) [003] d..3 24577.584590: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
132072 shell svc 13418-13419 ( 1007) [004] d..2 24577.584594: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132073         rcuop/4-45    (   45) [002] d..2 24577.584596: 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
132074          <idle>-0     (-----) [002] d..1 24577.584603: cpu_idle: state=0 cpu_id=2
132075         rcuop/0-10    (   10) [003] d..2 24577.584638: 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
132076  kworker/u16:10-23868 (23868) [001] .... 24577.584647: clk_set_rate: l3_cluster0_vote_clk 1036800000
132077  kworker/u16:10-23868 (23868) [001] .... 24577.584651: clk_set_rate: l3_clk 1036800000
132078  kworker/u16:10-23868 (23868) [001] d..2 24577.584683: 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
132079         rcuop/1-21    (   21) [003] d..2 24577.584685: 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
132080          <idle>-0     (-----) [001] d..1 24577.584692: cpu_idle: state=0 cpu_id=1
132081     rcu_preempt-7     (    7) [003] d..2 24577.584700: 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
132082              ps-13422 (13422) [004] d..2 24577.584702: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132083          <idle>-0     (-----) [003] d..1 24577.584708: cpu_idle: state=0 cpu_id=3
132084              ps-13422 (13422) [004] dn.3 24577.584709: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132085              ps-13422 (13422) [004] d..2 24577.584714: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132086 shell svc 13418-13419 ( 1007) [004] d..2 24577.584735: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132087              ps-13422 (13422) [004] d..2 24577.584848: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132088              ps-13422 (13422) [004] dn.3 24577.584854: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132089              ps-13422 (13422) [004] d..2 24577.584858: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132090 shell svc 13418-13419 ( 1007) [004] d..2 24577.584879: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132091 s.nexuslauncher-24827 (24827) [000] d..3 24577.584896: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=003
132092 s.nexuslauncher-24827 (24827) [000] d..4 24577.584914: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
132093          <idle>-0     (-----) [001] .n.1 24577.584919: cpu_idle: state=4294967295 cpu_id=1
132094          <idle>-0     (-----) [001] d..2 24577.584927: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
132095 s.nexuslauncher-24827 (24827) [000] d..2 24577.584930: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
132096            adbd-23484 ( 1007) [000] d..2 24577.584945: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
132097            adbd-23484 ( 1007) [000] d..3 24577.584957: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
132098              ps-13422 (13422) [004] d..2 24577.584985: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132099              ps-13422 (13422) [004] dn.3 24577.584991: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132100              ps-13422 (13422) [004] d..2 24577.584996: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132101            adbd-23484 ( 1007) [000] d..2 24577.584996: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
132102 shell svc 13418-13419 ( 1007) [004] d..2 24577.585015: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132103            adbd-1007  ( 1007) [000] d..1 24577.585066: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
132104            adbd-1007  ( 1007) [000] d..2 24577.585092: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
132105          <idle>-0     (-----) [002] .n.1 24577.585097: cpu_idle: state=4294967295 cpu_id=2
132106          <idle>-0     (-----) [002] d..2 24577.585104: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
132107              ps-13422 (13422) [004] d..2 24577.585120: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132108              ps-13422 (13422) [004] dn.3 24577.585126: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132109            adbd-1007  ( 1007) [000] d..2 24577.585126: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132110              ps-13422 (13422) [004] d..2 24577.585130: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132111          <idle>-0     (-----) [000] d..1 24577.585136: cpu_idle: state=0 cpu_id=0
132112            adbd-23485 ( 1007) [002] d..2 24577.585150: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
132113 shell svc 13418-13419 ( 1007) [004] d..2 24577.585151: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132114          <idle>-0     (-----) [002] d..1 24577.585157: cpu_idle: state=0 cpu_id=2
132115    RenderThread-25194 (24827) [001] d.h2 24577.585172: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132116    RenderThread-25194 (24827) [001] dnh3 24577.585186: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132117    RenderThread-25194 (24827) [001] d..2 24577.585194: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
132118   kworker/u17:2-23076 (23076) [001] d..2 24577.585205: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132119   kworker/u17:2-23076 (23076) [001] d..3 24577.585210: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132120   kworker/u17:2-23076 (23076) [001] d..2 24577.585224: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
132121              ps-13422 (13422) [004] d..2 24577.585258: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132122              ps-13422 (13422) [004] dn.3 24577.585264: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132123              ps-13422 (13422) [004] d..2 24577.585269: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132124 shell svc 13418-13419 ( 1007) [004] d..2 24577.585288: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132125    RenderThread-25194 (24827) [001] d..1 24577.585298: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
132126    RenderThread-25194 (24827) [001] d..2 24577.585307: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
132127          <idle>-0     (-----) [000] .n.1 24577.585312: cpu_idle: state=4294967295 cpu_id=0
132128          <idle>-0     (-----) [000] d..2 24577.585319: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
132129    RenderThread-25194 (24827) [001] .... 24577.585376: binder_transaction: transaction=1671675 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
132130    RenderThread-25194 (24827) [001] ...2 24577.585385: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
132131    RenderThread-25194 (24827) [001] d..4 24577.585388: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
132132              ps-13422 (13422) [004] d..2 24577.585391: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132133              ps-13422 (13422) [004] dn.3 24577.585397: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132134              ps-13422 (13422) [004] d..2 24577.585402: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132135    RenderThread-25194 (24827) [001] d..5 24577.585405: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
132136          <idle>-0     (-----) [002] .n.1 24577.585409: cpu_idle: state=4294967295 cpu_id=2
132137    RenderThread-25194 (24827) [001] d..2 24577.585415: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132138          <idle>-0     (-----) [002] d..2 24577.585416: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
132139 shell svc 13418-13419 ( 1007) [004] d..2 24577.585422: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132140  Binder:23896_4-24423 (23896) [002] .... 24577.585423: binder_transaction_received: transaction=1671675
132141     kworker/1:1-13091 (13091) [001] d..2 24577.585423: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
132142 s.nexuslauncher-24827 (24827) [000] d..2 24577.585424: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132143          <idle>-0     (-----) [000] d..1 24577.585433: cpu_idle: state=0 cpu_id=0
132144     kworker/1:1-13091 (13091) [001] d..3 24577.585439: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
132145          <idle>-0     (-----) [000] .n.1 24577.585444: cpu_idle: state=4294967295 cpu_id=0
132146          <idle>-0     (-----) [000] d..2 24577.585450: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
132147     kworker/1:1-13091 (13091) [001] d..2 24577.585454: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132148          <idle>-0     (-----) [001] d..1 24577.585463: cpu_idle: state=0 cpu_id=1
132149  Binder:23896_4-24423 (23896) [002] .... 24577.585497: binder_transaction: transaction=1671676 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
132150            adbd-23485 ( 1007) [000] d..2 24577.585498: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132151          <idle>-0     (-----) [000] d..1 24577.585505: cpu_idle: state=0 cpu_id=0
132152  Binder:23896_4-24423 (23896) [002] d..2 24577.585508: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
132153          <idle>-0     (-----) [001] d.h3 24577.585509: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132154          <idle>-0     (-----) [001] dnh4 24577.585520: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132155  Binder:23896_4-24423 (23896) [002] d..3 24577.585522: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
132156  Binder:23896_4-24423 (23896) [002] .... 24577.585524: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
132157          <idle>-0     (-----) [001] .n.1 24577.585526: cpu_idle: state=4294967295 cpu_id=1
132158              ps-13422 (13422) [004] d..2 24577.585528: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132159          <idle>-0     (-----) [001] d..2 24577.585532: 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
132160  Binder:23896_4-24423 (23896) [002] d..2 24577.585534: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
132161              ps-13422 (13422) [004] dn.3 24577.585534: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132162              ps-13422 (13422) [004] d..2 24577.585539: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132163    RenderThread-25194 (24827) [002] .... 24577.585539: binder_transaction_received: transaction=1671676
132164   kworker/u17:2-23076 (23076) [001] d..2 24577.585541: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132165   kworker/u17:2-23076 (23076) [001] d..3 24577.585546: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132166 shell svc 13418-13419 ( 1007) [004] d..2 24577.585558: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132167   kworker/u17:2-23076 (23076) [001] d..2 24577.585559: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132168     kworker/1:1-13091 (13091) [001] d..2 24577.585565: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
132169     kworker/1:1-13091 (13091) [001] d..3 24577.585573: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
132170          <idle>-0     (-----) [000] .n.1 24577.585579: cpu_idle: state=4294967295 cpu_id=0
132171          <idle>-0     (-----) [000] d..2 24577.585585: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
132172     kworker/1:1-13091 (13091) [001] d..2 24577.585587: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132173          <idle>-0     (-----) [001] d..1 24577.585594: cpu_idle: state=0 cpu_id=1
132174            adbd-23485 ( 1007) [000] d..2 24577.585603: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132175          <idle>-0     (-----) [000] d..1 24577.585609: cpu_idle: state=0 cpu_id=0
132176              ps-13422 (13422) [004] d..2 24577.585667: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132177              ps-13422 (13422) [004] dn.3 24577.585674: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132178              ps-13422 (13422) [004] d..2 24577.585679: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132179 shell svc 13418-13419 ( 1007) [004] d..2 24577.585700: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132180          <idle>-0     (-----) [001] d.h3 24577.585715: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132181          <idle>-0     (-----) [001] dnh4 24577.585720: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132182          <idle>-0     (-----) [001] .n.1 24577.585725: cpu_idle: state=4294967295 cpu_id=1
132183          <idle>-0     (-----) [001] d..2 24577.585731: 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
132184   kworker/u17:2-23076 (23076) [001] d..2 24577.585738: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132185   kworker/u17:2-23076 (23076) [001] d..3 24577.585743: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132186   kworker/u17:2-23076 (23076) [001] d..2 24577.585755: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132187     kworker/1:1-13091 (13091) [001] d..2 24577.585763: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
132188     kworker/1:1-13091 (13091) [001] d..3 24577.585784: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
132189     kworker/1:1-13091 (13091) [001] d..2 24577.585793: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
132190            adbd-23484 ( 1007) [001] d..2 24577.585805: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
132191              ps-13422 (13422) [004] d..2 24577.585807: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132192              ps-13422 (13422) [004] dn.3 24577.585813: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132193            adbd-23484 ( 1007) [001] d..3 24577.585815: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
132194              ps-13422 (13422) [004] d..2 24577.585817: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132195 shell svc 13418-13419 ( 1007) [004] d..2 24577.585837: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132196            adbd-23484 ( 1007) [001] d..2 24577.585855: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
132197            adbd-1007  ( 1007) [001] d..1 24577.585922: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
132198            adbd-1007  ( 1007) [001] d..2 24577.585933: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
132199          <idle>-0     (-----) [000] .n.1 24577.585938: cpu_idle: state=4294967295 cpu_id=0
132200              ps-13422 (13422) [004] d..2 24577.585942: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132201          <idle>-0     (-----) [000] d..2 24577.585944: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
132202              ps-13422 (13422) [004] dn.3 24577.585947: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132203              ps-13422 (13422) [004] d..2 24577.585952: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132204            adbd-1007  ( 1007) [001] d..2 24577.585966: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132205 shell svc 13418-13419 ( 1007) [004] d..2 24577.585972: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132206          <idle>-0     (-----) [001] d..1 24577.585976: cpu_idle: state=0 cpu_id=1
132207            adbd-23485 ( 1007) [000] d..2 24577.585983: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132208          <idle>-0     (-----) [000] d..1 24577.585990: cpu_idle: state=0 cpu_id=0
132209          <idle>-0     (-----) [001] d.h3 24577.586006: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132210          <idle>-0     (-----) [001] dnh4 24577.586013: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132211          <idle>-0     (-----) [001] .n.1 24577.586018: cpu_idle: state=4294967295 cpu_id=1
132212          <idle>-0     (-----) [001] d..2 24577.586025: 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
132213   kworker/u17:2-23076 (23076) [001] d..2 24577.586036: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132214   kworker/u17:2-23076 (23076) [001] d..3 24577.586042: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132215   kworker/u17:2-23076 (23076) [001] d..2 24577.586054: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132216     kworker/1:1-13091 (13091) [001] d..2 24577.586060: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
132217     kworker/1:1-13091 (13091) [001] d..3 24577.586069: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
132218          <idle>-0     (-----) [000] .n.1 24577.586074: cpu_idle: state=4294967295 cpu_id=0
132219              ps-13422 (13422) [004] d..2 24577.586077: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132220          <idle>-0     (-----) [000] d..2 24577.586080: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
132221     kworker/1:1-13091 (13091) [001] d..2 24577.586083: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132222              ps-13422 (13422) [004] dn.3 24577.586083: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132223              ps-13422 (13422) [004] d..2 24577.586088: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132224          <idle>-0     (-----) [001] d..1 24577.586090: cpu_idle: state=0 cpu_id=1
132225 shell svc 13418-13419 ( 1007) [004] d..2 24577.586107: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132226            adbd-23485 ( 1007) [000] d..2 24577.586119: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132227          <idle>-0     (-----) [000] d..1 24577.586126: cpu_idle: state=0 cpu_id=0
132228          <idle>-0     (-----) [001] d.h3 24577.586131: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132229          <idle>-0     (-----) [001] dnh4 24577.586136: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132230          <idle>-0     (-----) [001] .n.1 24577.586141: cpu_idle: state=4294967295 cpu_id=1
132231          <idle>-0     (-----) [001] d..2 24577.586147: 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
132232   kworker/u17:2-23076 (23076) [001] d..2 24577.586155: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132233   kworker/u17:2-23076 (23076) [001] d..3 24577.586159: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132234   kworker/u17:2-23076 (23076) [001] d..2 24577.586172: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132235     kworker/1:1-13091 (13091) [001] d..2 24577.586178: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
132236     kworker/1:1-13091 (13091) [001] d..3 24577.586187: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
132237          <idle>-0     (-----) [000] .n.1 24577.586191: cpu_idle: state=4294967295 cpu_id=0
132238          <idle>-0     (-----) [000] d..2 24577.586197: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
132239     kworker/1:1-13091 (13091) [001] d..2 24577.586200: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132240          <idle>-0     (-----) [001] d..1 24577.586207: cpu_idle: state=0 cpu_id=1
132241            adbd-23485 ( 1007) [000] d..2 24577.586212: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132242              ps-13422 (13422) [004] d..2 24577.586215: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132243          <idle>-0     (-----) [000] d..1 24577.586218: cpu_idle: state=0 cpu_id=0
132244              ps-13422 (13422) [004] dn.3 24577.586221: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132245              ps-13422 (13422) [004] d..2 24577.586226: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132246 shell svc 13418-13419 ( 1007) [004] d..2 24577.586246: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132247          <idle>-0     (-----) [001] d.h3 24577.586332: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132248          <idle>-0     (-----) [001] dnh4 24577.586340: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132249          <idle>-0     (-----) [001] .n.1 24577.586345: cpu_idle: state=4294967295 cpu_id=1
132250              ps-13422 (13422) [004] d..2 24577.586352: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132251          <idle>-0     (-----) [001] d..2 24577.586352: 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
132252              ps-13422 (13422) [004] dn.3 24577.586357: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132253   kworker/u17:2-23076 (23076) [001] d..2 24577.586359: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132254              ps-13422 (13422) [004] d..2 24577.586363: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132255   kworker/u17:2-23076 (23076) [001] d..3 24577.586364: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132256   kworker/u17:2-23076 (23076) [001] d..2 24577.586376: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132257 shell svc 13418-13419 ( 1007) [004] d..2 24577.586382: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132258     kworker/1:1-13091 (13091) [001] d..2 24577.586383: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
132259     kworker/1:1-13091 (13091) [001] d..3 24577.586391: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
132260     kworker/1:1-13091 (13091) [001] d..2 24577.586399: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
132261            adbd-23484 ( 1007) [001] d..2 24577.586410: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
132262            adbd-23484 ( 1007) [001] d..3 24577.586416: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
132263            adbd-23484 ( 1007) [001] d..2 24577.586453: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
132264              ps-13422 (13422) [004] d..2 24577.586487: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132265              ps-13422 (13422) [004] dn.3 24577.586494: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132266              ps-13422 (13422) [004] d..2 24577.586498: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132267            adbd-1007  ( 1007) [001] d..1 24577.586513: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
132268 shell svc 13418-13419 ( 1007) [004] d..2 24577.586518: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132269            adbd-1007  ( 1007) [001] d..2 24577.586524: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
132270          <idle>-0     (-----) [000] .n.1 24577.586529: cpu_idle: state=4294967295 cpu_id=0
132271          <idle>-0     (-----) [000] d..2 24577.586534: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
132272            adbd-1007  ( 1007) [001] d..2 24577.586556: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132273          <idle>-0     (-----) [001] d..1 24577.586565: cpu_idle: state=0 cpu_id=1
132274            adbd-23485 ( 1007) [000] d..2 24577.586573: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132275          <idle>-0     (-----) [000] d..1 24577.586579: cpu_idle: state=0 cpu_id=0
132276          <idle>-0     (-----) [001] d.h3 24577.586589: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132277          <idle>-0     (-----) [001] dnh4 24577.586596: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132278          <idle>-0     (-----) [001] .n.1 24577.586601: cpu_idle: state=4294967295 cpu_id=1
132279          <idle>-0     (-----) [001] d..2 24577.586607: 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
132280   kworker/u17:2-23076 (23076) [001] d..2 24577.586617: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132281   kworker/u17:2-23076 (23076) [001] d..3 24577.586622: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132282              ps-13422 (13422) [004] d..2 24577.586624: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132283              ps-13422 (13422) [004] dn.3 24577.586629: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132284              ps-13422 (13422) [004] d..2 24577.586634: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132285   kworker/u17:2-23076 (23076) [001] d..2 24577.586635: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132286     kworker/1:1-13091 (13091) [001] d..2 24577.586641: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
132287     kworker/1:1-13091 (13091) [001] d..3 24577.586650: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
132288 shell svc 13418-13419 ( 1007) [004] d..2 24577.586654: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132289          <idle>-0     (-----) [000] .n.1 24577.586655: cpu_idle: state=4294967295 cpu_id=0
132290          <idle>-0     (-----) [000] d..2 24577.586662: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
132291     kworker/1:1-13091 (13091) [001] d..2 24577.586664: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132292          <idle>-0     (-----) [001] d..1 24577.586671: cpu_idle: state=0 cpu_id=1
132293            adbd-23485 ( 1007) [000] d..2 24577.586698: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132294          <idle>-0     (-----) [000] d..1 24577.586704: cpu_idle: state=0 cpu_id=0
132295          <idle>-0     (-----) [001] d.h3 24577.586711: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132296          <idle>-0     (-----) [001] dnh4 24577.586717: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132297          <idle>-0     (-----) [001] .n.1 24577.586722: cpu_idle: state=4294967295 cpu_id=1
132298          <idle>-0     (-----) [001] d..2 24577.586728: 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
132299   kworker/u17:2-23076 (23076) [001] d..2 24577.586736: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132300   kworker/u17:2-23076 (23076) [001] d..3 24577.586741: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132301   kworker/u17:2-23076 (23076) [001] d..2 24577.586753: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132302     kworker/1:1-13091 (13091) [001] d..2 24577.586759: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
132303              ps-13422 (13422) [004] d..2 24577.586762: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132304     kworker/1:1-13091 (13091) [001] d..3 24577.586767: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
132305              ps-13422 (13422) [004] dn.3 24577.586768: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132306          <idle>-0     (-----) [000] .n.1 24577.586772: cpu_idle: state=4294967295 cpu_id=0
132307              ps-13422 (13422) [004] d..2 24577.586773: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132308          <idle>-0     (-----) [000] d..2 24577.586778: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
132309     kworker/1:1-13091 (13091) [001] d..2 24577.586780: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132310          <idle>-0     (-----) [001] d..1 24577.586787: cpu_idle: state=0 cpu_id=1
132311            adbd-23485 ( 1007) [000] d..2 24577.586793: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132312 shell svc 13418-13419 ( 1007) [004] d..2 24577.586794: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132313          <idle>-0     (-----) [000] d..1 24577.586799: cpu_idle: state=0 cpu_id=0
132314              ps-13422 (13422) [004] d..2 24577.586900: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132315          <idle>-0     (-----) [001] d.h3 24577.586902: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132316              ps-13422 (13422) [004] dn.3 24577.586906: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132317          <idle>-0     (-----) [001] dnh4 24577.586908: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132318              ps-13422 (13422) [004] d..2 24577.586911: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132319          <idle>-0     (-----) [001] .n.1 24577.586913: cpu_idle: state=4294967295 cpu_id=1
132320          <idle>-0     (-----) [001] d..2 24577.586919: 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
132321   kworker/u17:2-23076 (23076) [001] d..2 24577.586926: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132322   kworker/u17:2-23076 (23076) [001] d..3 24577.586931: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132323 shell svc 13418-13419 ( 1007) [004] d..2 24577.586931: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132324   kworker/u17:2-23076 (23076) [001] d..2 24577.586943: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132325     kworker/1:1-13091 (13091) [001] d..2 24577.586949: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
132326     kworker/1:1-13091 (13091) [001] d..3 24577.586958: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
132327     kworker/1:1-13091 (13091) [001] d..2 24577.586966: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
132328            adbd-23484 ( 1007) [001] d..2 24577.586978: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
132329            adbd-23484 ( 1007) [001] d..3 24577.586984: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
132330            adbd-23484 ( 1007) [001] d..2 24577.587022: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
132331              ps-13422 (13422) [004] d..2 24577.587035: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132332              ps-13422 (13422) [004] dn.3 24577.587041: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132333              ps-13422 (13422) [004] d..2 24577.587047: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132334 shell svc 13418-13419 ( 1007) [004] d..2 24577.587068: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132335            adbd-1007  ( 1007) [001] d..1 24577.587083: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
132336            adbd-1007  ( 1007) [001] d..2 24577.587104: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
132337          <idle>-0     (-----) [000] .n.1 24577.587109: cpu_idle: state=4294967295 cpu_id=0
132338          <idle>-0     (-----) [000] d..2 24577.587115: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
132339            adbd-1007  ( 1007) [001] d..2 24577.587137: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132340          <idle>-0     (-----) [001] d..1 24577.587146: cpu_idle: state=0 cpu_id=1
132341            adbd-23485 ( 1007) [000] d..2 24577.587152: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132342          <idle>-0     (-----) [000] d..1 24577.587158: cpu_idle: state=0 cpu_id=0
132343              ps-13422 (13422) [004] d..2 24577.587171: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132344          <idle>-0     (-----) [001] d.h3 24577.587172: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132345              ps-13422 (13422) [004] dn.3 24577.587177: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132346          <idle>-0     (-----) [001] dnh4 24577.587178: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132347              ps-13422 (13422) [004] d..2 24577.587182: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132348          <idle>-0     (-----) [001] .n.1 24577.587184: cpu_idle: state=4294967295 cpu_id=1
132349          <idle>-0     (-----) [001] d..2 24577.587191: 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
132350   kworker/u17:2-23076 (23076) [001] d..2 24577.587200: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132351 shell svc 13418-13419 ( 1007) [004] d..2 24577.587202: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132352   kworker/u17:2-23076 (23076) [001] d..3 24577.587206: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132353   kworker/u17:2-23076 (23076) [001] d..2 24577.587219: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132354     kworker/1:1-13091 (13091) [001] d..2 24577.587224: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
132355     kworker/1:1-13091 (13091) [001] d..3 24577.587233: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
132356          <idle>-0     (-----) [000] .n.1 24577.587238: cpu_idle: state=4294967295 cpu_id=0
132357          <idle>-0     (-----) [000] d..2 24577.587244: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
132358     kworker/1:1-13091 (13091) [001] d..2 24577.587246: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132359          <idle>-0     (-----) [001] d..1 24577.587253: cpu_idle: state=0 cpu_id=1
132360            adbd-23485 ( 1007) [000] d..2 24577.587285: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132361          <idle>-0     (-----) [000] d..1 24577.587291: cpu_idle: state=0 cpu_id=0
132362          <idle>-0     (-----) [001] d.h3 24577.587299: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132363          <idle>-0     (-----) [001] dnh4 24577.587304: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132364              ps-13422 (13422) [004] d..2 24577.587305: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132365          <idle>-0     (-----) [001] .n.1 24577.587310: cpu_idle: state=4294967295 cpu_id=1
132366              ps-13422 (13422) [004] dn.3 24577.587311: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132367          <idle>-0     (-----) [001] d..2 24577.587315: 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
132368              ps-13422 (13422) [004] d..2 24577.587316: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132369   kworker/u17:2-23076 (23076) [001] d..2 24577.587323: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132370   kworker/u17:2-23076 (23076) [001] d..3 24577.587328: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132371 shell svc 13418-13419 ( 1007) [004] d..2 24577.587335: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132372   kworker/u17:2-23076 (23076) [001] d..2 24577.587342: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132373     kworker/1:1-13091 (13091) [001] d..2 24577.587347: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
132374     kworker/1:1-13091 (13091) [001] d..3 24577.587356: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
132375          <idle>-0     (-----) [000] .n.1 24577.587361: cpu_idle: state=4294967295 cpu_id=0
132376          <idle>-0     (-----) [000] d..2 24577.587367: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
132377     kworker/1:1-13091 (13091) [001] d..2 24577.587368: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132378          <idle>-0     (-----) [001] d..1 24577.587375: cpu_idle: state=0 cpu_id=1
132379            adbd-23485 ( 1007) [000] d..2 24577.587384: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132380          <idle>-0     (-----) [000] d..1 24577.587390: cpu_idle: state=0 cpu_id=0
132381              ps-13422 (13422) [004] d..2 24577.587444: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132382              ps-13422 (13422) [004] dn.3 24577.587450: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132383              ps-13422 (13422) [004] d..2 24577.587455: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132384 shell svc 13418-13419 ( 1007) [004] d..2 24577.587475: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132385          <idle>-0     (-----) [001] d.h3 24577.587504: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132386          <idle>-0     (-----) [001] dnh4 24577.587509: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132387          <idle>-0     (-----) [001] .n.1 24577.587514: cpu_idle: state=4294967295 cpu_id=1
132388          <idle>-0     (-----) [001] d..2 24577.587520: 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
132389   kworker/u17:2-23076 (23076) [001] d..2 24577.587527: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132390   kworker/u17:2-23076 (23076) [001] d..3 24577.587532: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132391   kworker/u17:2-23076 (23076) [001] d..2 24577.587544: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132392     kworker/1:1-13091 (13091) [001] d..2 24577.587567: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
132393     kworker/1:1-13091 (13091) [001] d..3 24577.587577: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
132394     kworker/1:1-13091 (13091) [001] d..2 24577.587586: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
132395            adbd-23484 ( 1007) [001] d..2 24577.587597: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
132396            adbd-23484 ( 1007) [001] d..3 24577.587602: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
132397              ps-13422 (13422) [004] d..2 24577.587606: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132398              ps-13422 (13422) [004] dn.3 24577.587613: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132399              ps-13422 (13422) [004] d..2 24577.587618: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132400            adbd-23484 ( 1007) [001] d..2 24577.587639: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
132401 shell svc 13418-13419 ( 1007) [004] d..2 24577.587639: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132402            adbd-1007  ( 1007) [001] d..1 24577.587700: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
132403            adbd-1007  ( 1007) [001] d..2 24577.587711: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
132404          <idle>-0     (-----) [000] .n.1 24577.587717: cpu_idle: state=4294967295 cpu_id=0
132405          <idle>-0     (-----) [000] d..2 24577.587723: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
132406    RenderThread-25194 (24827) [002] d.h3 24577.587743: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=002
132407            adbd-1007  ( 1007) [001] d..2 24577.587747: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132408              ps-13422 (13422) [004] d..2 24577.587748: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132409              ps-13422 (13422) [004] dn.3 24577.587754: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132410          <idle>-0     (-----) [001] d..1 24577.587756: cpu_idle: state=0 cpu_id=1
132411              ps-13422 (13422) [004] d..2 24577.587759: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132412            adbd-23485 ( 1007) [000] d..2 24577.587762: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132413    RenderThread-25194 (24827) [002] d.h4 24577.587764: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
132414          <idle>-0     (-----) [000] d..1 24577.587769: cpu_idle: state=0 cpu_id=0
132415          <idle>-0     (-----) [001] dnh3 24577.587774: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132416 shell svc 13418-13419 ( 1007) [004] d..2 24577.587780: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132417          <idle>-0     (-----) [001] dnh4 24577.587783: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132418          <idle>-0     (-----) [001] .n.1 24577.587792: cpu_idle: state=4294967295 cpu_id=1
132419          <idle>-0     (-----) [001] d..2 24577.587798: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
132420        DispSync-23904 (23896) [001] d..1 24577.587817: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
132421        DispSync-23904 (23896) [001] d..2 24577.587830: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
132422          <idle>-0     (-----) [003] .n.1 24577.587834: cpu_idle: state=4294967295 cpu_id=3
132423          <idle>-0     (-----) [003] d..2 24577.587842: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
132424        DispSync-23904 (23896) [001] d..2 24577.587844: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
132425   kworker/u17:2-23076 (23076) [001] d..2 24577.587854: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132426   kworker/u17:2-23076 (23076) [001] d..3 24577.587860: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132427   kworker/u17:2-23076 (23076) [001] d..2 24577.587874: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132428     kworker/1:1-13091 (13091) [001] d..2 24577.587880: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
132429   sfEventThread-23906 (23896) [003] d..3 24577.587881: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
132430     kworker/1:1-13091 (13091) [001] d..3 24577.587889: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
132431              ps-13422 (13422) [004] d..2 24577.587892: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132432          <idle>-0     (-----) [000] .n.1 24577.587894: cpu_idle: state=4294967295 cpu_id=0
132433              ps-13422 (13422) [004] dn.3 24577.587898: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132434          <idle>-0     (-----) [000] d..2 24577.587900: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
132435   sfEventThread-23906 (23896) [003] d..4 24577.587901: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
132436              ps-13422 (13422) [004] d..2 24577.587903: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132437     kworker/1:1-13091 (13091) [001] d..2 24577.587906: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
132438 shell svc 13418-13419 ( 1007) [004] d..2 24577.587924: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132439   sfEventThread-23906 (23896) [003] d..2 24577.587930: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
132440            adbd-23485 ( 1007) [000] d..2 24577.587937: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132441          <idle>-0     (-----) [000] d..1 24577.587943: cpu_idle: state=0 cpu_id=0
132442  surfaceflinger-23896 (23896) [001] d.h2 24577.587945: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132443  surfaceflinger-23896 (23896) [001] d.h3 24577.587955: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132444  Binder:23896_4-24423 (23896) [003] d..2 24577.587971: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
132445          <idle>-0     (-----) [003] d..1 24577.587977: cpu_idle: state=0 cpu_id=3
132446              ps-13422 (13422) [004] d..2 24577.588031: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132447              ps-13422 (13422) [004] dn.3 24577.588037: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132448              ps-13422 (13422) [004] d..2 24577.588042: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132449 shell svc 13418-13419 ( 1007) [004] d..2 24577.588062: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132450    RenderThread-25194 (24827) [002] d..2 24577.588140: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
132451          <idle>-0     (-----) [002] d..1 24577.588149: cpu_idle: state=0 cpu_id=2
132452              ps-13422 (13422) [004] d..2 24577.588166: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132453              ps-13422 (13422) [004] dn.3 24577.588172: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132454              ps-13422 (13422) [004] d..2 24577.588177: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132455 shell svc 13418-13419 ( 1007) [004] d..2 24577.588196: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132456          <idle>-0     (-----) [002] d.h2 24577.588228: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
132457          <idle>-0     (-----) [002] d.h3 24577.588241: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
132458          <idle>-0     (-----) [002] d.h3 24577.588246: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
132459          <idle>-0     (-----) [000] .n.1 24577.588251: cpu_idle: state=4294967295 cpu_id=0
132460          <idle>-0     (-----) [002] ...1 24577.588253: cpu_idle: state=4294967295 cpu_id=2
132461          <idle>-0     (-----) [002] d..1 24577.588257: cpu_idle: state=0 cpu_id=2
132462          <idle>-0     (-----) [000] d..2 24577.588257: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
132463              ps-13422 (13422) [004] d..2 24577.588304: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132464  surfaceflinger-23896 (23896) [001] d..2 24577.588310: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
132465              ps-13422 (13422) [004] dn.3 24577.588311: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132466              ps-13422 (13422) [004] d..2 24577.588315: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132467 shell svc 13418-13419 ( 1007) [004] d..2 24577.588335: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132468  surfaceflinger-23896 (23896) [001] d..3 24577.588338: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
132469          <idle>-0     (-----) [002] .n.1 24577.588343: cpu_idle: state=4294967295 cpu_id=2
132470          <idle>-0     (-----) [002] d..2 24577.588350: 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
132471         rcuop/0-10    (   10) [002] d..2 24577.588364: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
132472          <idle>-0     (-----) [002] d..1 24577.588369: cpu_idle: state=0 cpu_id=2
132473  surfaceflinger-23896 (23896) [001] d..1 24577.588434: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
132474              ps-13422 (13422) [004] d..2 24577.588437: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132475              ps-13422 (13422) [004] dn.3 24577.588443: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132476  surfaceflinger-23896 (23896) [001] d..2 24577.588445: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
132477              ps-13422 (13422) [004] d..2 24577.588448: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132478          <idle>-0     (-----) [003] .n.1 24577.588450: cpu_idle: state=4294967295 cpu_id=3
132479          <idle>-0     (-----) [003] d..2 24577.588455: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
132480 shell svc 13418-13419 ( 1007) [004] d..2 24577.588467: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132481   sfEventThread-23906 (23896) [003] d..2 24577.588481: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
132482          <idle>-0     (-----) [003] d..1 24577.588485: cpu_idle: state=0 cpu_id=3
132483    RenderThread-25194 (24827) [000] .... 24577.588513: binder_transaction: transaction=1671677 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
132484    RenderThread-25194 (24827) [000] ...2 24577.588524: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
132485    RenderThread-25194 (24827) [000] d..4 24577.588526: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=003
132486    RenderThread-25194 (24827) [000] dn.5 24577.588541: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
132487    RenderThread-25194 (24827) [000] d..2 24577.588547: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
132488  Binder:23896_4-24423 (23896) [000] .... 24577.588553: binder_transaction_received: transaction=1671677
132489  surfaceflinger-23896 (23896) [001] ...1 24577.588559: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
132490  surfaceflinger-23896 (23896) [001] ...1 24577.588564: tracing_mark_write: E|23896
132491              ps-13422 (13422) [004] d..2 24577.588572: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132492              ps-13422 (13422) [004] dn.3 24577.588578: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132493              ps-13422 (13422) [004] d..2 24577.588583: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132494 shell svc 13418-13419 ( 1007) [004] d..2 24577.588603: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132495  surfaceflinger-23896 (23896) [001] .... 24577.588617: binder_transaction: transaction=1671678 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
132496  surfaceflinger-23896 (23896) [001] ...2 24577.588641: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
132497  surfaceflinger-23896 (23896) [001] d..4 24577.588652: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
132498  Binder:23896_4-24423 (23896) [000] .... 24577.588666: binder_transaction: transaction=1671679 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
132499  surfaceflinger-23896 (23896) [001] d..5 24577.588671: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
132500  Binder:23896_4-24423 (23896) [000] .... 24577.588671: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
132501          <idle>-0     (-----) [002] .n.1 24577.588675: cpu_idle: state=4294967295 cpu_id=2
132502          <idle>-0     (-----) [002] d..2 24577.588681: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
132503  surfaceflinger-23896 (23896) [001] d..2 24577.588684: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
132504  HwBinder:598_3-633   (  598) [002] .... 24577.588689: binder_transaction_received: transaction=1671678
132505   kworker/u17:2-23076 (23076) [001] d..2 24577.588695: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132506   kworker/u17:2-23076 (23076) [001] d..3 24577.588700: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132507  Binder:23896_4-24423 (23896) [000] d..2 24577.588702: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
132508              ps-13422 (13422) [004] d..2 24577.588704: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132509    RenderThread-25194 (24827) [000] .... 24577.588708: binder_transaction_received: transaction=1671679
132510              ps-13422 (13422) [004] dn.3 24577.588710: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132511   kworker/u17:2-23076 (23076) [001] d..2 24577.588713: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132512              ps-13422 (13422) [004] d..2 24577.588715: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132513     kworker/1:1-13091 (13091) [001] d.h4 24577.588723: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132514 shell svc 13418-13419 ( 1007) [004] d..2 24577.588734: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132515  HwBinder:598_3-633   (  598) [002] ...1 24577.588735: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
132516     kworker/1:1-13091 (13091) [001] d.h5 24577.588746: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
132517          <idle>-0     (-----) [003] .n.1 24577.588751: cpu_idle: state=4294967295 cpu_id=3
132518     kworker/1:1-13091 (13091) [001] d..2 24577.588755: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
132519          <idle>-0     (-----) [003] d..2 24577.588757: 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
132520   kworker/u17:2-23076 (23076) [003] d..2 24577.588769: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
132521     kworker/1:1-13091 (13091) [001] d..3 24577.588773: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
132522   kworker/u17:2-23076 (23076) [003] d..3 24577.588777: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
132523     kworker/1:1-13091 (13091) [001] d..2 24577.588783: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132524    RenderThread-25194 (24827) [000] d..2 24577.588785: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132525   kworker/u17:2-23076 (23076) [003] d..2 24577.588791: 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
132526          <idle>-0     (-----) [001] d..1 24577.588792: cpu_idle: state=0 cpu_id=1
132527          <idle>-0     (-----) [000] d..1 24577.588795: cpu_idle: state=0 cpu_id=0
132528     kworker/3:1-12662 (12662) [003] d..2 24577.588801: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
132529     kworker/3:1-12662 (12662) [003] d..3 24577.588825: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
132530     kworker/3:1-12662 (12662) [003] d..2 24577.588834: 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
132531              ps-13422 (13422) [004] d..2 24577.588840: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132532              ps-13422 (13422) [004] dn.3 24577.588846: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132533            adbd-23484 ( 1007) [003] d..2 24577.588848: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
132534              ps-13422 (13422) [004] d..2 24577.588851: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132535  HwBinder:598_3-633   (  598) [002] ...1 24577.588854: tracing_mark_write: B|598|HWCSession::PresentDisplay::
132536            adbd-23484 ( 1007) [003] d..3 24577.588858: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
132537 shell svc 13418-13419 ( 1007) [004] d..2 24577.588871: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132538            adbd-23484 ( 1007) [003] d..2 24577.588895: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
132539              ps-13422 (13422) [004] d..2 24577.588986: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132540              ps-13422 (13422) [004] dn.3 24577.588992: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132541              ps-13422 (13422) [004] d..2 24577.588997: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132542 shell svc 13418-13419 ( 1007) [004] d..2 24577.589018: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132543  HwBinder:598_3-633   (  598) [002] ...1 24577.589034: tracing_mark_write: B|598|HWDeviceDRM::Commit::
132544  HwBinder:598_3-633   (  598) [002] ...1 24577.589045: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
132545            adbd-1007  ( 1007) [003] d..2 24577.589078: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
132546          <idle>-0     (-----) [003] d..1 24577.589085: cpu_idle: state=0 cpu_id=3
132547              ps-13422 (13422) [004] d..2 24577.589122: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132548              ps-13422 (13422) [004] dn.3 24577.589128: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132549              ps-13422 (13422) [004] d..2 24577.589133: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132550 shell svc 13418-13419 ( 1007) [004] d..2 24577.589154: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132551              ps-13422 (13422) [004] d..2 24577.589258: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132552              ps-13422 (13422) [004] dn.3 24577.589264: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132553              ps-13422 (13422) [004] d..2 24577.589268: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132554 shell svc 13418-13419 ( 1007) [004] d..2 24577.589288: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132555              ps-13422 (13422) [004] d..2 24577.589394: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132556              ps-13422 (13422) [004] dn.3 24577.589400: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132557              ps-13422 (13422) [004] d..2 24577.589404: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132558 shell svc 13418-13419 ( 1007) [004] d..2 24577.589424: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132559              ps-13422 (13422) [004] d..2 24577.589529: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132560              ps-13422 (13422) [004] dn.3 24577.589535: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132561              ps-13422 (13422) [004] d..2 24577.589541: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132562 shell svc 13418-13419 ( 1007) [004] d..2 24577.589561: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132563  HwBinder:598_3-633   (  598) [002] d..2 24577.589608: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
132564  HwBinder:598_3-633   (  598) [002] d..3 24577.589623: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
132565          <idle>-0     (-----) [001] .n.1 24577.589628: cpu_idle: state=4294967295 cpu_id=1
132566          <idle>-0     (-----) [001] d..2 24577.589635: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
132567              ps-13422 (13422) [004] d..2 24577.589663: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132568              ps-13422 (13422) [004] dn.3 24577.589669: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132569              ps-13422 (13422) [004] d..2 24577.589674: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132570 shell svc 13418-13419 ( 1007) [004] d..2 24577.589693: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132571  HwBinder:598_3-633   (  598) [002] ...1 24577.589703: tracing_mark_write: E|598
132572  HwBinder:598_3-633   (  598) [002] ...1 24577.589707: tracing_mark_write: E|598
132573          <idle>-0     (-----) [000] d.h3 24577.589750: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
132574          <idle>-0     (-----) [000] dnh4 24577.589767: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
132575  HwBinder:598_3-633   (  598) [002] ...1 24577.589774: tracing_mark_write: E|598
132576          <idle>-0     (-----) [000] .n.1 24577.589776: cpu_idle: state=4294967295 cpu_id=0
132577          <idle>-0     (-----) [000] d..2 24577.589782: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
132578              ps-13422 (13422) [004] d..2 24577.589797: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132579              ps-13422 (13422) [004] dn.3 24577.589803: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132580              ps-13422 (13422) [004] d..2 24577.589808: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132581 shell svc 13418-13419 ( 1007) [004] d..2 24577.589827: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132582  HwBinder:598_3-633   (  598) [002] ...1 24577.589835: tracing_mark_write: E|598
132583 kgsl_worker_thr-246   (  246) [000] d..2 24577.589838: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
132584  HwBinder:598_3-633   (  598) [002] .... 24577.589848: binder_transaction: transaction=1671680 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
132585 kgsl_worker_thr-246   (  246) [000] d..3 24577.589859: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
132586  HwBinder:598_3-633   (  598) [002] d..2 24577.589863: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
132587 kgsl_worker_thr-246   (  246) [000] d..2 24577.589878: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
132588  HwBinder:598_3-633   (  598) [002] d..3 24577.589879: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
132589  HwBinder:598_3-633   (  598) [002] .... 24577.589882: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
132590          <idle>-0     (-----) [003] .n.1 24577.589884: cpu_idle: state=4294967295 cpu_id=3
132591          <idle>-0     (-----) [003] d..2 24577.589889: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
132592  surfaceflinger-23896 (23896) [003] .... 24577.589895: binder_transaction_received: transaction=1671680
132593              ps-13422 (13422) [004] d..2 24577.589928: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132594              ps-13422 (13422) [004] dn.3 24577.589934: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132595  HwBinder:598_3-633   (  598) [002] d..2 24577.589938: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
132596              ps-13422 (13422) [004] d..2 24577.589938: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132597 shell svc 13418-13419 ( 1007) [004] d..2 24577.589958: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132598            adbd-23485 ( 1007) [002] d..2 24577.589999: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
132599 crtc_commit:111-253   (  253) [001] d.h2 24577.590004: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
132600          <idle>-0     (-----) [002] d..1 24577.590009: cpu_idle: state=0 cpu_id=2
132601 crtc_commit:111-253   (  253) [001] d.h3 24577.590015: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
132602              ps-13422 (13422) [004] d..2 24577.590068: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132603              ps-13422 (13422) [004] dn.3 24577.590074: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132604 crtc_commit:111-253   (  253) [001] d..2 24577.590077: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
132605              ps-13422 (13422) [004] d..2 24577.590079: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132606          <idle>-0     (-----) [001] d..1 24577.590085: cpu_idle: state=0 cpu_id=1
132607  kworker/u16:10-23868 (23868) [000] d..2 24577.590089: 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
132608  surfaceflinger-23896 (23896) [003] d..2 24577.590093: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
132609          <idle>-0     (-----) [000] d..1 24577.590098: cpu_idle: state=0 cpu_id=0
132610 shell svc 13418-13419 ( 1007) [004] d..2 24577.590100: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132611  surfaceflinger-23896 (23896) [003] d..3 24577.590122: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
132612          <idle>-0     (-----) [000] .n.1 24577.590127: cpu_idle: state=4294967295 cpu_id=0
132613          <idle>-0     (-----) [000] d..2 24577.590134: 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
132614         rcuop/2-29    (   29) [000] d..2 24577.590154: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132615          <idle>-0     (-----) [000] d..1 24577.590160: cpu_idle: state=0 cpu_id=0
132616              ps-13422 (13422) [004] d..2 24577.590208: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132617              ps-13422 (13422) [004] dn.3 24577.590214: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132618              ps-13422 (13422) [004] d..2 24577.590219: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132619 shell svc 13418-13419 ( 1007) [004] d..2 24577.590238: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132620  surfaceflinger-23896 (23896) [003] d..2 24577.590338: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
132621              ps-13422 (13422) [004] d..2 24577.590345: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132622   kworker/u17:2-23076 (23076) [003] d..2 24577.590350: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
132623              ps-13422 (13422) [004] dn.3 24577.590351: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132624              ps-13422 (13422) [004] d..2 24577.590356: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132625   kworker/u17:2-23076 (23076) [003] d..3 24577.590356: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
132626   kworker/u17:2-23076 (23076) [003] d..2 24577.590370: 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
132627 shell svc 13418-13419 ( 1007) [004] d..2 24577.590375: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132628     kworker/3:1-12662 (12662) [003] d..2 24577.590378: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
132629     kworker/3:1-12662 (12662) [003] d..3 24577.590401: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
132630          <idle>-0     (-----) [000] .n.1 24577.590405: cpu_idle: state=4294967295 cpu_id=0
132631          <idle>-0     (-----) [000] d..2 24577.590411: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
132632     kworker/3:1-12662 (12662) [003] d..2 24577.590416: 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
132633          <idle>-0     (-----) [003] d..1 24577.590422: cpu_idle: state=0 cpu_id=3
132634            adbd-23485 ( 1007) [000] d..2 24577.590464: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132635          <idle>-0     (-----) [000] d..1 24577.590472: cpu_idle: state=0 cpu_id=0
132636              ps-13422 (13422) [004] d..2 24577.590485: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132637          <idle>-0     (-----) [001] d.h3 24577.590490: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
132638              ps-13422 (13422) [004] dn.3 24577.590491: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132639              ps-13422 (13422) [004] d..2 24577.590496: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132640          <idle>-0     (-----) [001] dnh4 24577.590509: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132641 shell svc 13418-13419 ( 1007) [004] d..2 24577.590516: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132642          <idle>-0     (-----) [001] .n.1 24577.590523: cpu_idle: state=4294967295 cpu_id=1
132643          <idle>-0     (-----) [001] d..2 24577.590529: 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
132644   kworker/u17:2-23076 (23076) [001] d..2 24577.590541: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132645   kworker/u17:2-23076 (23076) [001] d..3 24577.590546: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132646   kworker/u17:2-23076 (23076) [001] d..2 24577.590559: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132647     kworker/1:1-13091 (13091) [001] d..2 24577.590567: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
132648     kworker/1:1-13091 (13091) [001] d..3 24577.590575: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
132649          <idle>-0     (-----) [000] .n.1 24577.590580: cpu_idle: state=4294967295 cpu_id=0
132650          <idle>-0     (-----) [000] d..2 24577.590586: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
132651     kworker/1:1-13091 (13091) [001] d..2 24577.590590: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132652          <idle>-0     (-----) [001] d..1 24577.590597: cpu_idle: state=0 cpu_id=1
132653            adbd-23485 ( 1007) [000] d..2 24577.590605: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132654          <idle>-0     (-----) [000] d..1 24577.590611: cpu_idle: state=0 cpu_id=0
132655              ps-13422 (13422) [004] d..2 24577.590624: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132656              ps-13422 (13422) [004] dn.3 24577.590630: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132657              ps-13422 (13422) [004] d..2 24577.590635: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132658 shell svc 13418-13419 ( 1007) [004] d..2 24577.590655: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132659          <idle>-0     (-----) [001] d.h3 24577.590738: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132660          <idle>-0     (-----) [001] dnh4 24577.590743: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132661          <idle>-0     (-----) [001] .n.1 24577.590748: cpu_idle: state=4294967295 cpu_id=1
132662          <idle>-0     (-----) [001] d..2 24577.590754: 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
132663   kworker/u17:2-23076 (23076) [001] d..2 24577.590763: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132664              ps-13422 (13422) [004] d..2 24577.590767: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132665   kworker/u17:2-23076 (23076) [001] d..3 24577.590767: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132666              ps-13422 (13422) [004] dn.3 24577.590773: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132667              ps-13422 (13422) [004] d..2 24577.590778: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132668   kworker/u17:2-23076 (23076) [001] d..2 24577.590780: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132669     kworker/1:1-13091 (13091) [001] d..2 24577.590787: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
132670     kworker/1:1-13091 (13091) [001] d..3 24577.590797: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
132671 shell svc 13418-13419 ( 1007) [004] d..2 24577.590798: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132672          <idle>-0     (-----) [003] .n.1 24577.590802: cpu_idle: state=4294967295 cpu_id=3
132673          <idle>-0     (-----) [003] d..2 24577.590807: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
132674     kworker/1:1-13091 (13091) [001] d..2 24577.590813: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132675          <idle>-0     (-----) [001] d..1 24577.590819: cpu_idle: state=0 cpu_id=1
132676            adbd-23484 ( 1007) [003] d..2 24577.590822: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
132677            adbd-23484 ( 1007) [003] d..3 24577.590828: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
132678            adbd-23484 ( 1007) [003] d..2 24577.590869: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
132679            adbd-1007  ( 1007) [003] d.s1 24577.590895: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132680            adbd-1007  ( 1007) [003] dns2 24577.590907: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132681            adbd-1007  ( 1007) [003] d..2 24577.590918: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
132682     rcu_preempt-7     (    7) [003] d..2 24577.590931: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=002
132683              ps-13422 (13422) [004] d..2 24577.590932: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132684              ps-13422 (13422) [004] dn.3 24577.590938: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132685              ps-13422 (13422) [004] d..2 24577.590944: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132686     rcu_preempt-7     (    7) [003] d..3 24577.590954: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
132687          <idle>-0     (-----) [000] .n.1 24577.590958: cpu_idle: state=4294967295 cpu_id=0
132688 shell svc 13418-13419 ( 1007) [004] d..2 24577.590965: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132689     rcu_preempt-7     (    7) [003] d..2 24577.590966: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
132690          <idle>-0     (-----) [000] d..2 24577.590968: 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
132691         rcuop/4-45    (   45) [000] d..2 24577.591037: 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
132692            adbd-1007  ( 1007) [003] d..1 24577.591039: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
132693          <idle>-0     (-----) [000] d..1 24577.591044: cpu_idle: state=0 cpu_id=0
132694            adbd-1007  ( 1007) [003] d..2 24577.591050: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
132695          <idle>-0     (-----) [000] .n.1 24577.591055: cpu_idle: state=4294967295 cpu_id=0
132696          <idle>-0     (-----) [000] d..2 24577.591061: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
132697              ps-13422 (13422) [004] d..2 24577.591079: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132698            adbd-1007  ( 1007) [003] d..2 24577.591085: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
132699              ps-13422 (13422) [004] dn.3 24577.591085: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132700              ps-13422 (13422) [004] d..2 24577.591090: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132701          <idle>-0     (-----) [003] d..1 24577.591095: cpu_idle: state=0 cpu_id=3
132702            adbd-23485 ( 1007) [000] d..2 24577.591104: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132703          <idle>-0     (-----) [001] d.h3 24577.591110: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132704 shell svc 13418-13419 ( 1007) [004] d..2 24577.591111: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132705          <idle>-0     (-----) [000] d..1 24577.591111: cpu_idle: state=0 cpu_id=0
132706          <idle>-0     (-----) [001] dnh4 24577.591116: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132707          <idle>-0     (-----) [001] .n.1 24577.591121: cpu_idle: state=4294967295 cpu_id=1
132708          <idle>-0     (-----) [001] d..2 24577.591127: 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
132709   kworker/u17:2-23076 (23076) [001] d..2 24577.591136: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132710   kworker/u17:2-23076 (23076) [001] d..3 24577.591141: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132711   kworker/u17:2-23076 (23076) [001] d..2 24577.591153: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132712     kworker/1:1-13091 (13091) [001] d..2 24577.591160: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
132713     kworker/1:1-13091 (13091) [001] d..3 24577.591170: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
132714          <idle>-0     (-----) [000] .n.1 24577.591174: cpu_idle: state=4294967295 cpu_id=0
132715          <idle>-0     (-----) [000] d..2 24577.591180: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
132716     kworker/1:1-13091 (13091) [001] d..2 24577.591184: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132717          <idle>-0     (-----) [001] d..1 24577.591190: cpu_idle: state=0 cpu_id=1
132718            adbd-23485 ( 1007) [000] d..2 24577.591223: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132719              ps-13422 (13422) [004] d..2 24577.591228: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132720          <idle>-0     (-----) [000] d..1 24577.591231: cpu_idle: state=0 cpu_id=0
132721              ps-13422 (13422) [004] dn.3 24577.591234: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132722              ps-13422 (13422) [004] d..2 24577.591239: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132723          <idle>-0     (-----) [001] d.h3 24577.591254: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132724          <idle>-0     (-----) [002] ...1 24577.591258: cpu_idle: state=4294967295 cpu_id=2
132725 shell svc 13418-13419 ( 1007) [004] d..2 24577.591259: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132726          <idle>-0     (-----) [001] dnh4 24577.591260: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132727          <idle>-0     (-----) [002] d..1 24577.591261: cpu_idle: state=0 cpu_id=2
132728          <idle>-0     (-----) [001] .n.1 24577.591265: cpu_idle: state=4294967295 cpu_id=1
132729          <idle>-0     (-----) [001] d..2 24577.591270: 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
132730   kworker/u17:2-23076 (23076) [001] d..2 24577.591280: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132731   kworker/u17:2-23076 (23076) [001] d..3 24577.591285: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132732   kworker/u17:2-23076 (23076) [001] d..2 24577.591297: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132733     kworker/1:1-13091 (13091) [001] d..2 24577.591303: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
132734     kworker/1:1-13091 (13091) [001] d..3 24577.591312: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
132735          <idle>-0     (-----) [000] .n.1 24577.591317: cpu_idle: state=4294967295 cpu_id=0
132736          <idle>-0     (-----) [000] d..2 24577.591323: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
132737     kworker/1:1-13091 (13091) [001] d..2 24577.591327: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132738          <idle>-0     (-----) [001] d..1 24577.591333: cpu_idle: state=0 cpu_id=1
132739            adbd-23485 ( 1007) [000] d..2 24577.591344: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132740          <idle>-0     (-----) [000] d..1 24577.591350: cpu_idle: state=0 cpu_id=0
132741              ps-13422 (13422) [004] d..2 24577.591378: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132742              ps-13422 (13422) [004] dn.3 24577.591385: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132743              ps-13422 (13422) [004] d..2 24577.591389: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132744 shell svc 13418-13419 ( 1007) [004] d..2 24577.591409: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132745          <idle>-0     (-----) [001] d.h3 24577.591462: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132746          <idle>-0     (-----) [001] dnh4 24577.591467: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132747          <idle>-0     (-----) [001] .n.1 24577.591472: cpu_idle: state=4294967295 cpu_id=1
132748          <idle>-0     (-----) [001] d..2 24577.591479: 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
132749   kworker/u17:2-23076 (23076) [001] d..2 24577.591487: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132750   kworker/u17:2-23076 (23076) [001] d..3 24577.591493: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132751   kworker/u17:2-23076 (23076) [001] d..2 24577.591506: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132752     kworker/1:1-13091 (13091) [001] d..2 24577.591514: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
132753              ps-13422 (13422) [004] d..2 24577.591524: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132754              ps-13422 (13422) [004] dn.3 24577.591530: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132755              ps-13422 (13422) [004] d..2 24577.591535: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132756     kworker/1:1-13091 (13091) [001] d..3 24577.591537: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
132757          <idle>-0     (-----) [000] .n.1 24577.591542: cpu_idle: state=4294967295 cpu_id=0
132758          <idle>-0     (-----) [000] d..2 24577.591549: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
132759     kworker/1:1-13091 (13091) [001] d..2 24577.591552: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132760 shell svc 13418-13419 ( 1007) [004] d..2 24577.591555: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132761          <idle>-0     (-----) [001] d..1 24577.591558: cpu_idle: state=0 cpu_id=1
132762            adbd-23484 ( 1007) [000] d..2 24577.591563: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
132763            adbd-23484 ( 1007) [000] d..3 24577.591574: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
132764            adbd-23484 ( 1007) [000] d..2 24577.591614: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
132765              ps-13422 (13422) [004] d..2 24577.591665: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132766              ps-13422 (13422) [004] dn.3 24577.591671: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132767              ps-13422 (13422) [004] d..2 24577.591676: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132768            adbd-1007  ( 1007) [000] d..1 24577.591684: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
132769 shell svc 13418-13419 ( 1007) [004] d..2 24577.591696: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132770            adbd-1007  ( 1007) [000] d..2 24577.591704: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
132771          <idle>-0     (-----) [001] .n.1 24577.591709: cpu_idle: state=4294967295 cpu_id=1
132772          <idle>-0     (-----) [001] d..2 24577.591717: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
132773            adbd-1007  ( 1007) [000] d..2 24577.591738: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132774          <idle>-0     (-----) [000] d..1 24577.591747: cpu_idle: state=0 cpu_id=0
132775            adbd-23485 ( 1007) [001] d..2 24577.591764: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132776          <idle>-0     (-----) [001] d.h4 24577.591776: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132777          <idle>-0     (-----) [001] dnh5 24577.591782: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132778          <idle>-0     (-----) [001] d..2 24577.591789: 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
132779   kworker/u17:2-23076 (23076) [001] d..2 24577.591797: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132780   kworker/u17:2-23076 (23076) [001] d..3 24577.591802: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132781              ps-13422 (13422) [004] d..2 24577.591807: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132782              ps-13422 (13422) [004] dn.3 24577.591813: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132783   kworker/u17:2-23076 (23076) [001] d..2 24577.591815: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132784              ps-13422 (13422) [004] d..2 24577.591819: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132785     kworker/1:1-13091 (13091) [001] d..2 24577.591822: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
132786     kworker/1:1-13091 (13091) [001] d..3 24577.591830: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
132787 shell svc 13418-13419 ( 1007) [004] d..2 24577.591839: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132788     kworker/1:1-13091 (13091) [001] d..2 24577.591840: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
132789            adbd-23485 ( 1007) [001] d..2 24577.591880: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132790          <idle>-0     (-----) [001] d..1 24577.591887: cpu_idle: state=0 cpu_id=1
132791          <idle>-0     (-----) [001] d.h3 24577.591901: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132792          <idle>-0     (-----) [001] dnh4 24577.591907: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132793          <idle>-0     (-----) [001] .n.1 24577.591913: cpu_idle: state=4294967295 cpu_id=1
132794          <idle>-0     (-----) [001] d..2 24577.591918: 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
132795   kworker/u17:2-23076 (23076) [001] d..2 24577.591927: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132796   kworker/u17:2-23076 (23076) [001] d..3 24577.591932: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132797   kworker/u17:2-23076 (23076) [001] d..2 24577.591946: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132798     kworker/1:1-13091 (13091) [001] d..2 24577.591952: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
132799              ps-13422 (13422) [004] d..2 24577.591957: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132800     kworker/1:1-13091 (13091) [001] d..3 24577.591960: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
132801              ps-13422 (13422) [004] dn.3 24577.591963: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132802              ps-13422 (13422) [004] d..2 24577.591968: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132803     kworker/1:1-13091 (13091) [001] d..2 24577.591969: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
132804            adbd-23485 ( 1007) [001] d..2 24577.591988: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132805 shell svc 13418-13419 ( 1007) [004] d..2 24577.591988: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132806          <idle>-0     (-----) [001] d..1 24577.591994: cpu_idle: state=0 cpu_id=1
132807              ps-13422 (13422) [004] d..2 24577.592106: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132808              ps-13422 (13422) [004] dn.3 24577.592112: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132809              ps-13422 (13422) [004] d..2 24577.592118: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132810          <idle>-0     (-----) [001] d.h3 24577.592128: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132811          <idle>-0     (-----) [001] dnh4 24577.592133: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132812          <idle>-0     (-----) [001] .n.1 24577.592138: cpu_idle: state=4294967295 cpu_id=1
132813 shell svc 13418-13419 ( 1007) [004] d..2 24577.592138: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132814          <idle>-0     (-----) [001] d..2 24577.592144: 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
132815   kworker/u17:2-23076 (23076) [001] d..2 24577.592151: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132816   kworker/u17:2-23076 (23076) [001] d..3 24577.592156: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132817   kworker/u17:2-23076 (23076) [001] d..2 24577.592169: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132818     kworker/1:1-13091 (13091) [001] d..2 24577.592175: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
132819     kworker/1:1-13091 (13091) [001] d..3 24577.592183: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
132820          <idle>-0     (-----) [000] .n.1 24577.592189: cpu_idle: state=4294967295 cpu_id=0
132821          <idle>-0     (-----) [000] d..2 24577.592196: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
132822     kworker/1:1-13091 (13091) [001] d..2 24577.592198: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132823          <idle>-0     (-----) [001] d..1 24577.592204: cpu_idle: state=0 cpu_id=1
132824            adbd-23484 ( 1007) [000] d..2 24577.592207: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
132825            adbd-23484 ( 1007) [000] d..3 24577.592214: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
132826              ps-13422 (13422) [004] d..2 24577.592244: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132827              ps-13422 (13422) [004] dn.3 24577.592250: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132828            adbd-23484 ( 1007) [000] d..2 24577.592251: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
132829              ps-13422 (13422) [004] d..2 24577.592255: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132830 shell svc 13418-13419 ( 1007) [004] d..2 24577.592274: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132831            adbd-1007  ( 1007) [000] d..1 24577.592311: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
132832            adbd-1007  ( 1007) [000] d..2 24577.592322: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
132833          <idle>-0     (-----) [001] .n.1 24577.592327: cpu_idle: state=4294967295 cpu_id=1
132834          <idle>-0     (-----) [001] d..2 24577.592334: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
132835            adbd-1007  ( 1007) [000] d..2 24577.592356: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132836          <idle>-0     (-----) [000] d..1 24577.592365: cpu_idle: state=0 cpu_id=0
132837            adbd-23485 ( 1007) [001] d..2 24577.592374: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132838          <idle>-0     (-----) [001] d.h4 24577.592386: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132839              ps-13422 (13422) [004] d..2 24577.592391: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132840          <idle>-0     (-----) [001] dnh5 24577.592392: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132841              ps-13422 (13422) [004] dn.3 24577.592397: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132842          <idle>-0     (-----) [001] d..2 24577.592399: 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
132843              ps-13422 (13422) [004] d..2 24577.592402: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132844   kworker/u17:2-23076 (23076) [001] d..2 24577.592407: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132845   kworker/u17:2-23076 (23076) [001] d..3 24577.592413: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132846 shell svc 13418-13419 ( 1007) [004] d..2 24577.592422: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132847   kworker/u17:2-23076 (23076) [001] d..2 24577.592425: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132848     kworker/1:1-13091 (13091) [001] d..2 24577.592430: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
132849     kworker/1:1-13091 (13091) [001] d..3 24577.592438: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
132850     kworker/1:1-13091 (13091) [001] d..2 24577.592446: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
132851            adbd-23485 ( 1007) [001] d..2 24577.592484: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132852          <idle>-0     (-----) [001] d..1 24577.592491: cpu_idle: state=0 cpu_id=1
132853          <idle>-0     (-----) [001] d.h3 24577.592510: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132854          <idle>-0     (-----) [001] dnh4 24577.592519: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132855          <idle>-0     (-----) [001] .n.1 24577.592523: cpu_idle: state=4294967295 cpu_id=1
132856          <idle>-0     (-----) [001] d..2 24577.592529: 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
132857              ps-13422 (13422) [004] d..2 24577.592531: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132858              ps-13422 (13422) [004] dn.3 24577.592537: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132859   kworker/u17:2-23076 (23076) [001] d..2 24577.592537: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132860              ps-13422 (13422) [004] d..2 24577.592542: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132861   kworker/u17:2-23076 (23076) [001] d..3 24577.592542: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132862   kworker/u17:2-23076 (23076) [001] d..2 24577.592555: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132863     kworker/1:1-13091 (13091) [001] d..2 24577.592560: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
132864 shell svc 13418-13419 ( 1007) [004] d..2 24577.592561: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132865     kworker/1:1-13091 (13091) [001] d..3 24577.592567: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
132866     kworker/1:1-13091 (13091) [001] d..2 24577.592576: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
132867            adbd-23485 ( 1007) [001] d..2 24577.592593: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132868          <idle>-0     (-----) [001] d..1 24577.592601: cpu_idle: state=0 cpu_id=1
132869              ps-13422 (13422) [004] d..2 24577.592668: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132870              ps-13422 (13422) [004] dn.3 24577.592675: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132871              ps-13422 (13422) [004] d..2 24577.592679: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132872 shell svc 13418-13419 ( 1007) [004] d..2 24577.592699: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132873          <idle>-0     (-----) [001] d.h3 24577.592727: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132874          <idle>-0     (-----) [001] dnh4 24577.592732: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132875          <idle>-0     (-----) [001] .n.1 24577.592737: cpu_idle: state=4294967295 cpu_id=1
132876          <idle>-0     (-----) [001] d..2 24577.592743: 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
132877   kworker/u17:2-23076 (23076) [001] d..2 24577.592751: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132878   kworker/u17:2-23076 (23076) [001] d..3 24577.592756: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132879   kworker/u17:2-23076 (23076) [001] d..2 24577.592768: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132880     kworker/1:1-13091 (13091) [001] d..2 24577.592775: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
132881     kworker/1:1-13091 (13091) [001] d..3 24577.592783: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
132882          <idle>-0     (-----) [000] .n.1 24577.592788: cpu_idle: state=4294967295 cpu_id=0
132883          <idle>-0     (-----) [000] d..2 24577.592795: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
132884     kworker/1:1-13091 (13091) [001] d..2 24577.592797: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132885          <idle>-0     (-----) [001] d..1 24577.592803: cpu_idle: state=0 cpu_id=1
132886              ps-13422 (13422) [004] d..2 24577.592806: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132887            adbd-23484 ( 1007) [000] d..2 24577.592806: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
132888              ps-13422 (13422) [004] dn.3 24577.592812: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132889            adbd-23484 ( 1007) [000] d..3 24577.592814: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
132890              ps-13422 (13422) [004] d..2 24577.592817: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132891 shell svc 13418-13419 ( 1007) [004] d..2 24577.592836: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132892            adbd-23484 ( 1007) [000] d..2 24577.592850: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
132893            adbd-1007  ( 1007) [000] d..1 24577.592909: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
132894            adbd-1007  ( 1007) [000] d..2 24577.592924: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
132895          <idle>-0     (-----) [001] .n.1 24577.592929: cpu_idle: state=4294967295 cpu_id=1
132896          <idle>-0     (-----) [001] d..2 24577.592935: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
132897              ps-13422 (13422) [004] d..2 24577.592940: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132898              ps-13422 (13422) [004] dn.3 24577.592946: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132899              ps-13422 (13422) [004] d..2 24577.592950: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132900            adbd-1007  ( 1007) [000] d..2 24577.592956: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132901          <idle>-0     (-----) [000] d..1 24577.592966: cpu_idle: state=0 cpu_id=0
132902 shell svc 13418-13419 ( 1007) [004] d..2 24577.592970: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132903            adbd-23485 ( 1007) [001] d..2 24577.592975: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132904          <idle>-0     (-----) [001] d.h4 24577.592987: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132905          <idle>-0     (-----) [001] dnh5 24577.592992: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132906          <idle>-0     (-----) [001] d..2 24577.593000: 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
132907   kworker/u17:2-23076 (23076) [001] d..2 24577.593008: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132908   kworker/u17:2-23076 (23076) [001] d..3 24577.593013: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132909   kworker/u17:2-23076 (23076) [001] d..2 24577.593026: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132910     kworker/1:1-13091 (13091) [001] d..2 24577.593032: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
132911     kworker/1:1-13091 (13091) [001] d..3 24577.593040: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
132912     kworker/1:1-13091 (13091) [001] d..2 24577.593048: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
132913              ps-13422 (13422) [004] d..2 24577.593076: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132914              ps-13422 (13422) [004] dn.3 24577.593082: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132915              ps-13422 (13422) [004] d..2 24577.593087: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132916            adbd-23485 ( 1007) [001] d..2 24577.593087: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132917          <idle>-0     (-----) [001] d..1 24577.593094: cpu_idle: state=0 cpu_id=1
132918 shell svc 13418-13419 ( 1007) [004] d..2 24577.593106: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132919          <idle>-0     (-----) [001] d.h3 24577.593107: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132920          <idle>-0     (-----) [001] dnh4 24577.593113: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132921          <idle>-0     (-----) [001] .n.1 24577.593118: cpu_idle: state=4294967295 cpu_id=1
132922          <idle>-0     (-----) [001] d..2 24577.593124: 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
132923   kworker/u17:2-23076 (23076) [001] d..2 24577.593132: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132924   kworker/u17:2-23076 (23076) [001] d..3 24577.593137: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132925   kworker/u17:2-23076 (23076) [001] d..2 24577.593150: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132926     kworker/1:1-13091 (13091) [001] d..2 24577.593154: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
132927     kworker/1:1-13091 (13091) [001] d..3 24577.593162: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
132928     kworker/1:1-13091 (13091) [001] d..2 24577.593170: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
132929            adbd-23485 ( 1007) [001] d..2 24577.593187: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132930          <idle>-0     (-----) [001] d..1 24577.593193: cpu_idle: state=0 cpu_id=1
132931              ps-13422 (13422) [004] d..2 24577.593214: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132932              ps-13422 (13422) [004] dn.3 24577.593221: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132933              ps-13422 (13422) [004] d..2 24577.593225: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132934 shell svc 13418-13419 ( 1007) [004] d..2 24577.593245: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132935          <idle>-0     (-----) [001] d.h3 24577.593314: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132936          <idle>-0     (-----) [001] dnh4 24577.593319: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132937          <idle>-0     (-----) [001] .n.1 24577.593324: cpu_idle: state=4294967295 cpu_id=1
132938          <idle>-0     (-----) [001] d..2 24577.593330: 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
132939   kworker/u17:2-23076 (23076) [001] d..2 24577.593337: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132940   kworker/u17:2-23076 (23076) [001] d..3 24577.593342: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132941              ps-13422 (13422) [004] d..2 24577.593350: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132942   kworker/u17:2-23076 (23076) [001] d..2 24577.593355: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132943              ps-13422 (13422) [004] dn.3 24577.593356: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132944              ps-13422 (13422) [004] d..2 24577.593361: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132945     kworker/1:1-13091 (13091) [001] d..2 24577.593361: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
132946     kworker/1:1-13091 (13091) [001] d..3 24577.593369: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
132947          <idle>-0     (-----) [000] .n.1 24577.593374: cpu_idle: state=4294967295 cpu_id=0
132948 shell svc 13418-13419 ( 1007) [004] d..2 24577.593380: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132949          <idle>-0     (-----) [000] d..2 24577.593381: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
132950     kworker/1:1-13091 (13091) [001] d..2 24577.593383: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132951          <idle>-0     (-----) [001] d..1 24577.593389: cpu_idle: state=0 cpu_id=1
132952            adbd-23484 ( 1007) [000] d..2 24577.593391: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
132953            adbd-23484 ( 1007) [000] d..3 24577.593400: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
132954            adbd-23484 ( 1007) [000] d..2 24577.593438: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
132955            adbd-1007  ( 1007) [000] d..1 24577.593494: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
132956              ps-13422 (13422) [004] d..2 24577.593498: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132957              ps-13422 (13422) [004] dn.3 24577.593505: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132958            adbd-1007  ( 1007) [000] d..2 24577.593505: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
132959              ps-13422 (13422) [004] d..2 24577.593510: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132960          <idle>-0     (-----) [001] .n.1 24577.593510: cpu_idle: state=4294967295 cpu_id=1
132961          <idle>-0     (-----) [001] d..2 24577.593516: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
132962 shell svc 13418-13419 ( 1007) [004] d..2 24577.593531: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132963            adbd-1007  ( 1007) [000] d..2 24577.593539: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132964          <idle>-0     (-----) [000] d..1 24577.593548: cpu_idle: state=0 cpu_id=0
132965            adbd-23485 ( 1007) [001] d..2 24577.593557: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132966          <idle>-0     (-----) [001] d.h3 24577.593571: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132967          <idle>-0     (-----) [001] dnh4 24577.593578: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132968          <idle>-0     (-----) [001] d..2 24577.593586: 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
132969   kworker/u17:2-23076 (23076) [001] d..2 24577.593594: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132970   kworker/u17:2-23076 (23076) [001] d..3 24577.593599: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132971   kworker/u17:2-23076 (23076) [001] d..2 24577.593612: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132972     kworker/1:1-13091 (13091) [001] d..2 24577.593617: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
132973     kworker/1:1-13091 (13091) [001] d..3 24577.593625: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
132974     kworker/1:1-13091 (13091) [001] d..2 24577.593633: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
132975              ps-13422 (13422) [004] d..2 24577.593639: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132976              ps-13422 (13422) [004] dn.3 24577.593645: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132977              ps-13422 (13422) [004] d..2 24577.593650: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132978 shell svc 13418-13419 ( 1007) [004] d..2 24577.593669: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132979            adbd-23485 ( 1007) [001] d..2 24577.593671: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132980          <idle>-0     (-----) [001] d..1 24577.593678: cpu_idle: state=0 cpu_id=1
132981          <idle>-0     (-----) [001] d.h3 24577.593693: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132982          <idle>-0     (-----) [001] dnh4 24577.593699: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132983          <idle>-0     (-----) [001] .n.1 24577.593703: cpu_idle: state=4294967295 cpu_id=1
132984          <idle>-0     (-----) [001] d..2 24577.593709: 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
132985   kworker/u17:2-23076 (23076) [001] d..2 24577.593717: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132986   kworker/u17:2-23076 (23076) [001] d..3 24577.593722: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
132987   kworker/u17:2-23076 (23076) [001] d..2 24577.593734: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
132988     kworker/1:1-13091 (13091) [001] d..2 24577.593739: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
132989     kworker/1:1-13091 (13091) [001] d..3 24577.593747: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
132990     kworker/1:1-13091 (13091) [001] d..2 24577.593755: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
132991            adbd-23485 ( 1007) [001] d..2 24577.593771: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132992              ps-13422 (13422) [004] d..2 24577.593772: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132993          <idle>-0     (-----) [001] d..1 24577.593778: cpu_idle: state=0 cpu_id=1
132994              ps-13422 (13422) [004] dn.3 24577.593778: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
132995              ps-13422 (13422) [004] d..2 24577.593783: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
132996 shell svc 13418-13419 ( 1007) [004] d..2 24577.593802: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
132997          <idle>-0     (-----) [001] d.h3 24577.593894: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132998          <idle>-0     (-----) [001] dnh4 24577.593900: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
132999          <idle>-0     (-----) [001] .n.1 24577.593905: cpu_idle: state=4294967295 cpu_id=1
133000              ps-13422 (13422) [004] d..2 24577.593908: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133001          <idle>-0     (-----) [001] d..2 24577.593911: 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
133002              ps-13422 (13422) [004] dn.3 24577.593914: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133003   kworker/u17:2-23076 (23076) [001] d..2 24577.593919: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133004              ps-13422 (13422) [004] d..2 24577.593919: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133005   kworker/u17:2-23076 (23076) [001] d..3 24577.593924: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133006   kworker/u17:2-23076 (23076) [001] d..2 24577.593937: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133007 shell svc 13418-13419 ( 1007) [004] d..2 24577.593938: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133008     kworker/1:1-13091 (13091) [001] d..2 24577.593943: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
133009     kworker/1:1-13091 (13091) [001] d..3 24577.593963: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
133010     kworker/1:1-13091 (13091) [001] d..2 24577.593972: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
133011            adbd-23484 ( 1007) [001] d..2 24577.593983: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
133012            adbd-23484 ( 1007) [001] d..3 24577.593993: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
133013            adbd-23484 ( 1007) [001] d..2 24577.594029: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
133014              ps-13422 (13422) [004] d..2 24577.594047: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133015              ps-13422 (13422) [004] dn.3 24577.594053: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133016              ps-13422 (13422) [004] d..2 24577.594057: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133017 shell svc 13418-13419 ( 1007) [004] d..2 24577.594078: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133018            adbd-1007  ( 1007) [001] d..1 24577.594100: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
133019            adbd-1007  ( 1007) [001] d..2 24577.594119: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
133020          <idle>-0     (-----) [000] .n.1 24577.594124: cpu_idle: state=4294967295 cpu_id=0
133021          <idle>-0     (-----) [000] d..2 24577.594132: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
133022            adbd-1007  ( 1007) [001] d..2 24577.594153: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133023          <idle>-0     (-----) [001] d..1 24577.594161: cpu_idle: state=0 cpu_id=1
133024            adbd-23485 ( 1007) [000] d..2 24577.594174: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133025              ps-13422 (13422) [004] d..2 24577.594182: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133026          <idle>-0     (-----) [000] d..1 24577.594182: cpu_idle: state=0 cpu_id=0
133027              ps-13422 (13422) [004] dn.3 24577.594188: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133028              ps-13422 (13422) [004] d..2 24577.594192: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133029          <idle>-0     (-----) [001] d.h3 24577.594196: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133030          <idle>-0     (-----) [001] dnh4 24577.594202: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133031          <idle>-0     (-----) [001] .n.1 24577.594207: cpu_idle: state=4294967295 cpu_id=1
133032 shell svc 13418-13419 ( 1007) [004] d..2 24577.594213: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133033          <idle>-0     (-----) [001] d..2 24577.594214: 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
133034              ps-13422 (13422) [004] d.s4 24577.594232: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
133035   kworker/u17:2-23076 (23076) [001] d..2 24577.594242: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133036   kworker/u17:2-23076 (23076) [001] d..3 24577.594248: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133037   kworker/u17:2-23076 (23076) [001] d.h2 24577.594265: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
133038   kworker/u17:2-23076 (23076) [001] d..2 24577.594273: 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
133039  kworker/u16:10-23868 (23868) [001] .... 24577.594311: clk_set_rate: l3_cluster0_vote_clk 844800000
133040  kworker/u16:10-23868 (23868) [001] .... 24577.594319: clk_set_rate: l3_clk 844800000
133041              ps-13422 (13422) [004] d..2 24577.594395: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133042              ps-13422 (13422) [004] dn.3 24577.594403: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133043              ps-13422 (13422) [004] d..2 24577.594408: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133044 shell svc 13418-13419 ( 1007) [004] d..2 24577.594443: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133045  kworker/u16:10-23868 (23868) [001] d..2 24577.594465: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133046     kworker/1:1-13091 (13091) [001] d..2 24577.594472: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
133047     kworker/1:1-13091 (13091) [001] d..3 24577.594482: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
133048          <idle>-0     (-----) [000] .n.1 24577.594487: cpu_idle: state=4294967295 cpu_id=0
133049          <idle>-0     (-----) [000] d..2 24577.594494: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
133050     kworker/1:1-13091 (13091) [001] d..2 24577.594503: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133051          <idle>-0     (-----) [001] d..1 24577.594510: cpu_idle: state=0 cpu_id=1
133052            adbd-23485 ( 1007) [000] d..2 24577.594536: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133053          <idle>-0     (-----) [000] d..1 24577.594544: cpu_idle: state=0 cpu_id=0
133054          <idle>-0     (-----) [001] d.h3 24577.594553: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133055              ps-13422 (13422) [004] d..2 24577.594561: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133056          <idle>-0     (-----) [001] dnh4 24577.594562: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133057          <idle>-0     (-----) [001] .n.1 24577.594567: cpu_idle: state=4294967295 cpu_id=1
133058              ps-13422 (13422) [004] dn.3 24577.594568: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133059              ps-13422 (13422) [004] d..2 24577.594573: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133060          <idle>-0     (-----) [001] d..2 24577.594574: 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
133061   kworker/u17:2-23076 (23076) [001] d..2 24577.594584: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133062   kworker/u17:2-23076 (23076) [001] d..3 24577.594589: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133063 shell svc 13418-13419 ( 1007) [004] d..2 24577.594594: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133064   kworker/u17:2-23076 (23076) [001] d..2 24577.594602: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133065     kworker/1:1-13091 (13091) [001] d..2 24577.594607: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
133066     kworker/1:1-13091 (13091) [001] d..3 24577.594616: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
133067          <idle>-0     (-----) [000] .n.1 24577.594621: cpu_idle: state=4294967295 cpu_id=0
133068          <idle>-0     (-----) [000] d..2 24577.594628: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
133069     kworker/1:1-13091 (13091) [001] d..2 24577.594631: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133070          <idle>-0     (-----) [001] d..1 24577.594636: cpu_idle: state=0 cpu_id=1
133071            adbd-23485 ( 1007) [000] d..2 24577.594649: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133072          <idle>-0     (-----) [000] d..1 24577.594655: cpu_idle: state=0 cpu_id=0
133073              ps-13422 (13422) [004] d..2 24577.594713: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133074              ps-13422 (13422) [004] dn.3 24577.594720: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133075              ps-13422 (13422) [004] d..2 24577.594727: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133076 shell svc 13418-13419 ( 1007) [004] d..2 24577.594748: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133077          <idle>-0     (-----) [001] d.h3 24577.594795: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133078          <idle>-0     (-----) [001] dnh4 24577.594800: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133079          <idle>-0     (-----) [001] .n.1 24577.594805: cpu_idle: state=4294967295 cpu_id=1
133080          <idle>-0     (-----) [001] d..2 24577.594810: 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
133081   kworker/u17:2-23076 (23076) [001] d..2 24577.594818: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133082   kworker/u17:2-23076 (23076) [001] d..3 24577.594823: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133083   kworker/u17:2-23076 (23076) [001] d..2 24577.594835: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133084     kworker/1:1-13091 (13091) [001] d..2 24577.594842: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
133085     kworker/1:1-13091 (13091) [001] d..3 24577.594851: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
133086              ps-13422 (13422) [004] d..2 24577.594859: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133087     kworker/1:1-13091 (13091) [001] d..2 24577.594859: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
133088              ps-13422 (13422) [004] dn.3 24577.594865: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133089              ps-13422 (13422) [004] d..2 24577.594870: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133090            adbd-23484 ( 1007) [001] d..2 24577.594872: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
133091            adbd-23484 ( 1007) [001] d..3 24577.594877: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
133092 shell svc 13418-13419 ( 1007) [004] d..2 24577.594890: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133093            adbd-23484 ( 1007) [001] d..2 24577.594916: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
133094            adbd-1007  ( 1007) [001] d..1 24577.594981: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
133095            adbd-1007  ( 1007) [001] d..2 24577.594997: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
133096              ps-13422 (13422) [004] d..2 24577.594998: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133097          <idle>-0     (-----) [000] .n.1 24577.595002: cpu_idle: state=4294967295 cpu_id=0
133098              ps-13422 (13422) [004] dn.3 24577.595004: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133099          <idle>-0     (-----) [000] d..2 24577.595008: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
133100              ps-13422 (13422) [004] d..2 24577.595009: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133101 shell svc 13418-13419 ( 1007) [004] d..2 24577.595029: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133102            adbd-1007  ( 1007) [001] d..2 24577.595033: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133103          <idle>-0     (-----) [001] d..1 24577.595041: cpu_idle: state=0 cpu_id=1
133104            adbd-23485 ( 1007) [000] d..2 24577.595049: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133105          <idle>-0     (-----) [000] d..1 24577.595056: cpu_idle: state=0 cpu_id=0
133106          <idle>-0     (-----) [001] d.h3 24577.595071: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133107          <idle>-0     (-----) [001] dnh4 24577.595078: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133108          <idle>-0     (-----) [001] .n.1 24577.595083: cpu_idle: state=4294967295 cpu_id=1
133109          <idle>-0     (-----) [001] d..2 24577.595089: 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
133110   kworker/u17:2-23076 (23076) [001] d..2 24577.595099: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133111   kworker/u17:2-23076 (23076) [001] d..3 24577.595104: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133112   kworker/u17:2-23076 (23076) [001] d..2 24577.595118: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133113     kworker/1:1-13091 (13091) [001] d..2 24577.595124: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
133114     kworker/1:1-13091 (13091) [001] d..3 24577.595133: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
133115              ps-13422 (13422) [004] d..2 24577.595137: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133116          <idle>-0     (-----) [000] .n.1 24577.595138: cpu_idle: state=4294967295 cpu_id=0
133117              ps-13422 (13422) [004] dn.3 24577.595143: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133118          <idle>-0     (-----) [000] d..2 24577.595144: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
133119     kworker/1:1-13091 (13091) [001] d..2 24577.595148: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133120              ps-13422 (13422) [004] d..2 24577.595148: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133121          <idle>-0     (-----) [001] d..1 24577.595154: cpu_idle: state=0 cpu_id=1
133122 shell svc 13418-13419 ( 1007) [004] d..2 24577.595168: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133123            adbd-23485 ( 1007) [000] d..2 24577.595185: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133124          <idle>-0     (-----) [000] d..1 24577.595192: cpu_idle: state=0 cpu_id=0
133125          <idle>-0     (-----) [001] d.h3 24577.595197: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133126          <idle>-0     (-----) [001] dnh4 24577.595202: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133127          <idle>-0     (-----) [001] .n.1 24577.595207: cpu_idle: state=4294967295 cpu_id=1
133128          <idle>-0     (-----) [001] d..2 24577.595212: 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
133129   kworker/u17:2-23076 (23076) [001] d..2 24577.595222: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133130   kworker/u17:2-23076 (23076) [001] d..3 24577.595226: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133131   kworker/u17:2-23076 (23076) [001] d..2 24577.595239: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133132     kworker/1:1-13091 (13091) [001] d..2 24577.595245: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
133133     kworker/1:1-13091 (13091) [001] d..3 24577.595254: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
133134          <idle>-0     (-----) [000] .n.1 24577.595259: cpu_idle: state=4294967295 cpu_id=0
133135          <idle>-0     (-----) [000] d..2 24577.595265: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
133136     kworker/1:1-13091 (13091) [001] d..2 24577.595268: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133137          <idle>-0     (-----) [001] d..1 24577.595273: cpu_idle: state=0 cpu_id=1
133138              ps-13422 (13422) [004] d..2 24577.595275: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133139              ps-13422 (13422) [004] dn.3 24577.595282: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133140            adbd-23485 ( 1007) [000] d..2 24577.595284: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133141              ps-13422 (13422) [004] d..2 24577.595286: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133142          <idle>-0     (-----) [000] d..1 24577.595291: cpu_idle: state=0 cpu_id=0
133143 shell svc 13418-13419 ( 1007) [004] d..2 24577.595306: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133144          <idle>-0     (-----) [001] d.h3 24577.595387: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133145          <idle>-0     (-----) [001] dnh4 24577.595392: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133146          <idle>-0     (-----) [001] .n.1 24577.595397: cpu_idle: state=4294967295 cpu_id=1
133147          <idle>-0     (-----) [001] d..2 24577.595402: 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
133148   kworker/u17:2-23076 (23076) [001] d..2 24577.595410: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133149              ps-13422 (13422) [004] d..2 24577.595412: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133150   kworker/u17:2-23076 (23076) [001] d..3 24577.595415: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133151              ps-13422 (13422) [004] dn.3 24577.595419: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133152              ps-13422 (13422) [004] d..2 24577.595423: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133153   kworker/u17:2-23076 (23076) [001] d..2 24577.595428: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133154     kworker/1:1-13091 (13091) [001] d..2 24577.595435: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
133155 shell svc 13418-13419 ( 1007) [004] d..2 24577.595444: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133156     kworker/1:1-13091 (13091) [001] d..3 24577.595444: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
133157     kworker/1:1-13091 (13091) [001] d..2 24577.595452: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
133158            adbd-23484 ( 1007) [001] d..2 24577.595465: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
133159            adbd-23484 ( 1007) [001] d..3 24577.595471: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
133160            adbd-23484 ( 1007) [001] d..2 24577.595508: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
133161              ps-13422 (13422) [004] d..2 24577.595548: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133162              ps-13422 (13422) [004] dn.3 24577.595555: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133163              ps-13422 (13422) [004] d..2 24577.595559: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133164            adbd-1007  ( 1007) [001] d..1 24577.595573: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
133165 shell svc 13418-13419 ( 1007) [004] d..2 24577.595580: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133166            adbd-1007  ( 1007) [001] d..2 24577.595585: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
133167          <idle>-0     (-----) [000] .n.1 24577.595590: cpu_idle: state=4294967295 cpu_id=0
133168          <idle>-0     (-----) [000] d..2 24577.595596: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
133169            adbd-1007  ( 1007) [001] d..2 24577.595622: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133170          <idle>-0     (-----) [001] d..1 24577.595629: cpu_idle: state=0 cpu_id=1
133171            adbd-23485 ( 1007) [000] d..2 24577.595637: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133172          <idle>-0     (-----) [000] d..1 24577.595644: cpu_idle: state=0 cpu_id=0
133173          <idle>-0     (-----) [001] d.h3 24577.595652: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133174          <idle>-0     (-----) [001] dnh4 24577.595658: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133175          <idle>-0     (-----) [001] .n.1 24577.595664: cpu_idle: state=4294967295 cpu_id=1
133176          <idle>-0     (-----) [001] d..2 24577.595670: 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
133177   kworker/u17:2-23076 (23076) [001] d..2 24577.595681: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133178   kworker/u17:2-23076 (23076) [001] d..3 24577.595686: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133179              ps-13422 (13422) [004] d..2 24577.595691: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133180              ps-13422 (13422) [004] dn.3 24577.595698: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133181   kworker/u17:2-23076 (23076) [001] d..2 24577.595701: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133182              ps-13422 (13422) [004] d..2 24577.595702: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133183     kworker/1:1-13091 (13091) [001] d..2 24577.595707: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
133184     kworker/1:1-13091 (13091) [001] d..3 24577.595716: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
133185          <idle>-0     (-----) [000] .n.1 24577.595721: cpu_idle: state=4294967295 cpu_id=0
133186 shell svc 13418-13419 ( 1007) [004] d..2 24577.595722: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133187          <idle>-0     (-----) [000] d..2 24577.595728: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
133188     kworker/1:1-13091 (13091) [001] d..2 24577.595732: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133189          <idle>-0     (-----) [001] d..1 24577.595738: cpu_idle: state=0 cpu_id=1
133190            adbd-23485 ( 1007) [000] d..2 24577.595769: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133191          <idle>-0     (-----) [000] d..1 24577.595776: cpu_idle: state=0 cpu_id=0
133192          <idle>-0     (-----) [001] d.h3 24577.595778: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133193          <idle>-0     (-----) [001] dnh4 24577.595784: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133194          <idle>-0     (-----) [001] .n.1 24577.595790: cpu_idle: state=4294967295 cpu_id=1
133195          <idle>-0     (-----) [001] d..2 24577.595795: 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
133196   kworker/u17:2-23076 (23076) [001] d..2 24577.595805: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133197   kworker/u17:2-23076 (23076) [001] d..3 24577.595810: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133198   kworker/u17:2-23076 (23076) [001] d..2 24577.595824: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133199     kworker/1:1-13091 (13091) [001] d..2 24577.595831: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
133200     kworker/1:1-13091 (13091) [001] d..3 24577.595840: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
133201              ps-13422 (13422) [004] d..2 24577.595842: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133202          <idle>-0     (-----) [000] .n.1 24577.595845: cpu_idle: state=4294967295 cpu_id=0
133203              ps-13422 (13422) [004] dn.3 24577.595848: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133204          <idle>-0     (-----) [000] d..2 24577.595852: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
133205              ps-13422 (13422) [004] d..2 24577.595853: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133206     kworker/1:1-13091 (13091) [001] d..2 24577.595856: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133207          <idle>-0     (-----) [001] d..1 24577.595862: cpu_idle: state=0 cpu_id=1
133208            adbd-23485 ( 1007) [000] d..2 24577.595869: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133209 shell svc 13418-13419 ( 1007) [004] d..2 24577.595874: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133210          <idle>-0     (-----) [000] d.h6 24577.595945: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
133211          <idle>-0     (-----) [000] d.h7 24577.595957: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
133212          <idle>-0     (-----) [003] .n.1 24577.595963: cpu_idle: state=4294967295 cpu_id=3
133213          <idle>-0     (-----) [000] d.h6 24577.595963: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
133214          <idle>-0     (-----) [003] d..2 24577.595971: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
133215          <idle>-0     (-----) [000] d.h7 24577.595971: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
133216          <idle>-0     (-----) [001] .n.1 24577.595977: cpu_idle: state=4294967295 cpu_id=1
133217          <idle>-0     (-----) [001] d..2 24577.595982: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
133218              ps-13422 (13422) [004] d..2 24577.595983: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133219          <idle>-0     (-----) [000] d..1 24577.595987: cpu_idle: state=0 cpu_id=0
133220              ps-13422 (13422) [004] dn.3 24577.595989: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133221              ps-13422 (13422) [004] d..2 24577.595994: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133222  crtc_event:111-254   (  254) [003] d..2 24577.596005: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
133223          <idle>-0     (-----) [003] d..1 24577.596010: cpu_idle: state=0 cpu_id=3
133224 crtc_commit:111-253   (  253) [001] d.h2 24577.596010: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133225 shell svc 13418-13419 ( 1007) [004] d..2 24577.596014: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133226 crtc_commit:111-253   (  253) [001] d.h3 24577.596020: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133227              ps-13422 (13422) [004] d..2 24577.596127: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133228              ps-13422 (13422) [004] dn.3 24577.596133: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133229              ps-13422 (13422) [004] d..2 24577.596138: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133230 crtc_commit:111-253   (  253) [001] d..2 24577.596147: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
133231   kworker/u17:2-23076 (23076) [001] d..2 24577.596158: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133232 shell svc 13418-13419 ( 1007) [004] d..2 24577.596159: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133233   kworker/u17:2-23076 (23076) [001] d..3 24577.596163: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133234   kworker/u17:2-23076 (23076) [001] d..2 24577.596177: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133235     kworker/1:1-13091 (13091) [001] d..2 24577.596183: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
133236     kworker/1:1-13091 (13091) [001] d..3 24577.596192: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
133237     kworker/1:1-13091 (13091) [001] d..2 24577.596201: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
133238            adbd-23484 ( 1007) [001] d..2 24577.596213: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
133239            adbd-23484 ( 1007) [001] d..3 24577.596219: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
133240            adbd-23484 ( 1007) [001] d..2 24577.596258: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
133241              ps-13422 (13422) [004] d..2 24577.596273: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133242              ps-13422 (13422) [004] dn.3 24577.596279: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133243              ps-13422 (13422) [004] d..2 24577.596284: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133244 shell svc 13418-13419 ( 1007) [004] d..2 24577.596304: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133245            adbd-1007  ( 1007) [001] d..1 24577.596326: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
133246            adbd-1007  ( 1007) [001] d..2 24577.596338: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
133247          <idle>-0     (-----) [000] .n.1 24577.596343: cpu_idle: state=4294967295 cpu_id=0
133248          <idle>-0     (-----) [000] d..2 24577.596350: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
133249            adbd-1007  ( 1007) [001] d..2 24577.596373: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133250          <idle>-0     (-----) [001] d..1 24577.596381: cpu_idle: state=0 cpu_id=1
133251            adbd-23485 ( 1007) [000] d..2 24577.596394: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133252          <idle>-0     (-----) [001] d.h3 24577.596401: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133253          <idle>-0     (-----) [000] d..1 24577.596402: cpu_idle: state=0 cpu_id=0
133254          <idle>-0     (-----) [001] dnh4 24577.596408: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133255          <idle>-0     (-----) [001] .n.1 24577.596413: cpu_idle: state=4294967295 cpu_id=1
133256              ps-13422 (13422) [004] d..2 24577.596418: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133257          <idle>-0     (-----) [001] d..2 24577.596418: 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
133258              ps-13422 (13422) [004] dn.3 24577.596425: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133259   kworker/u17:2-23076 (23076) [001] d..2 24577.596429: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133260              ps-13422 (13422) [004] d..2 24577.596430: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133261   kworker/u17:2-23076 (23076) [001] d..3 24577.596435: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133262   kworker/u17:2-23076 (23076) [001] d..2 24577.596449: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133263 shell svc 13418-13419 ( 1007) [004] d..2 24577.596449: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133264     kworker/1:1-13091 (13091) [001] d..2 24577.596456: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
133265     kworker/1:1-13091 (13091) [001] d..3 24577.596466: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
133266          <idle>-0     (-----) [000] .n.1 24577.596470: cpu_idle: state=4294967295 cpu_id=0
133267          <idle>-0     (-----) [000] d..2 24577.596477: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
133268     kworker/1:1-13091 (13091) [001] d..2 24577.596482: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133269          <idle>-0     (-----) [001] d..1 24577.596487: cpu_idle: state=0 cpu_id=1
133270            adbd-23485 ( 1007) [000] d..2 24577.596519: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133271          <idle>-0     (-----) [000] d..1 24577.596526: cpu_idle: state=0 cpu_id=0
133272          <idle>-0     (-----) [001] d.h3 24577.596528: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133273          <idle>-0     (-----) [001] dnh4 24577.596533: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133274          <idle>-0     (-----) [001] .n.1 24577.596538: cpu_idle: state=4294967295 cpu_id=1
133275          <idle>-0     (-----) [001] d..2 24577.596543: 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
133276   kworker/u17:2-23076 (23076) [001] d..2 24577.596552: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133277   kworker/u17:2-23076 (23076) [001] d..3 24577.596557: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133278              ps-13422 (13422) [004] d..2 24577.596562: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133279              ps-13422 (13422) [004] dn.3 24577.596568: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133280   kworker/u17:2-23076 (23076) [001] d..2 24577.596569: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133281              ps-13422 (13422) [004] d..2 24577.596572: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133282     kworker/1:1-13091 (13091) [001] d..2 24577.596576: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
133283     kworker/1:1-13091 (13091) [001] d..3 24577.596585: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
133284          <idle>-0     (-----) [000] .n.1 24577.596590: cpu_idle: state=4294967295 cpu_id=0
133285 shell svc 13418-13419 ( 1007) [004] d..2 24577.596591: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133286          <idle>-0     (-----) [000] d..2 24577.596596: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
133287     kworker/1:1-13091 (13091) [001] d..2 24577.596601: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133288          <idle>-0     (-----) [001] d..1 24577.596605: cpu_idle: state=0 cpu_id=1
133289            adbd-23485 ( 1007) [000] d..2 24577.596614: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133290          <idle>-0     (-----) [000] d..1 24577.596621: cpu_idle: state=0 cpu_id=0
133291              ps-13422 (13422) [004] d..2 24577.596711: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133292          <idle>-0     (-----) [001] d.h3 24577.596716: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133293              ps-13422 (13422) [004] dn.3 24577.596717: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133294              ps-13422 (13422) [004] d..2 24577.596723: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133295          <idle>-0     (-----) [001] dnh4 24577.596724: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133296          <idle>-0     (-----) [001] .n.1 24577.596730: cpu_idle: state=4294967295 cpu_id=1
133297          <idle>-0     (-----) [001] d..2 24577.596734: 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
133298 shell svc 13418-13419 ( 1007) [004] d..2 24577.596742: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133299   kworker/u17:2-23076 (23076) [001] d..2 24577.596743: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133300   kworker/u17:2-23076 (23076) [001] d..3 24577.596748: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133301   kworker/u17:2-23076 (23076) [001] d..2 24577.596760: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133302     kworker/1:1-13091 (13091) [001] d..2 24577.596766: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
133303     kworker/1:1-13091 (13091) [001] d..3 24577.596775: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
133304     kworker/1:1-13091 (13091) [001] d..2 24577.596783: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
133305            adbd-23484 ( 1007) [001] d..2 24577.596796: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
133306            adbd-23484 ( 1007) [001] d..3 24577.596802: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
133307            adbd-23484 ( 1007) [001] d..2 24577.596842: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
133308              ps-13422 (13422) [004] d..2 24577.596856: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133309              ps-13422 (13422) [004] dn.3 24577.596862: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133310              ps-13422 (13422) [004] d..2 24577.596866: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133311 shell svc 13418-13419 ( 1007) [004] d..2 24577.596886: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133312            adbd-1007  ( 1007) [001] d..1 24577.596906: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
133313            adbd-1007  ( 1007) [001] d..2 24577.596918: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
133314          <idle>-0     (-----) [000] .n.1 24577.596923: cpu_idle: state=4294967295 cpu_id=0
133315          <idle>-0     (-----) [000] d..2 24577.596928: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
133316            adbd-1007  ( 1007) [001] d..2 24577.596953: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133317          <idle>-0     (-----) [001] d..1 24577.596960: cpu_idle: state=0 cpu_id=1
133318            adbd-23485 ( 1007) [000] d..2 24577.596969: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133319          <idle>-0     (-----) [000] d..1 24577.596976: cpu_idle: state=0 cpu_id=0
133320          <idle>-0     (-----) [001] d.h3 24577.596986: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133321          <idle>-0     (-----) [001] dnh4 24577.596993: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133322          <idle>-0     (-----) [001] .n.1 24577.596998: cpu_idle: state=4294967295 cpu_id=1
133323              ps-13422 (13422) [004] d..2 24577.597003: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133324          <idle>-0     (-----) [001] d..2 24577.597004: 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
133325              ps-13422 (13422) [004] dn.3 24577.597010: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133326              ps-13422 (13422) [004] d..2 24577.597014: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133327   kworker/u17:2-23076 (23076) [001] d..2 24577.597014: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133328   kworker/u17:2-23076 (23076) [001] d..3 24577.597021: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133329   kworker/u17:2-23076 (23076) [001] d..2 24577.597035: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133330 shell svc 13418-13419 ( 1007) [004] d..2 24577.597035: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133331     kworker/1:1-13091 (13091) [001] d..2 24577.597041: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
133332     kworker/1:1-13091 (13091) [001] d..3 24577.597053: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
133333          <idle>-0     (-----) [000] .n.1 24577.597058: cpu_idle: state=4294967295 cpu_id=0
133334          <idle>-0     (-----) [000] d..2 24577.597064: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
133335     kworker/1:1-13091 (13091) [001] d..2 24577.597068: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133336          <idle>-0     (-----) [001] d..1 24577.597073: cpu_idle: state=0 cpu_id=1
133337            adbd-23485 ( 1007) [000] d..2 24577.597105: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133338          <idle>-0     (-----) [001] d.h3 24577.597113: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133339          <idle>-0     (-----) [000] d..1 24577.597113: cpu_idle: state=0 cpu_id=0
133340          <idle>-0     (-----) [001] dnh4 24577.597118: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133341          <idle>-0     (-----) [001] dnh3 24577.597131: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
133342          <idle>-0     (-----) [001] dnh4 24577.597139: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
133343          <idle>-0     (-----) [001] .n.1 24577.597144: cpu_idle: state=4294967295 cpu_id=1
133344          <idle>-0     (-----) [001] d..2 24577.597149: 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
133345              ps-13422 (13422) [004] d..2 24577.597150: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133346              ps-13422 (13422) [004] dn.3 24577.597156: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133347              ps-13422 (13422) [004] d..2 24577.597161: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133348 shell svc 13418-13419 ( 1007) [004] d..2 24577.597181: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133349  kworker/u16:10-23868 (23868) [001] d..1 24577.597198: clk_disable: gcc_ufs_phy_phy_aux_hw_ctl_clk
133350  kworker/u16:10-23868 (23868) [001] d..1 24577.597226: clk_disable: gcc_ufs_phy_phy_aux_clk
133351  kworker/u16:10-23868 (23868) [001] d..1 24577.597240: clk_disable: gcc_ufs_phy_phy_aux_clk_src
133352  kworker/u16:10-23868 (23868) [001] d..1 24577.597259: clk_disable: gcc_ufs_mem_clkref_clk
133353  kworker/u16:10-23868 (23868) [001] d..1 24577.597278: clk_disable: gcc_ufs_phy_axi_hw_ctl_clk
133354  kworker/u16:10-23868 (23868) [001] d..1 24577.597283: clk_disable: gcc_ufs_phy_axi_clk
133355              ps-13422 (13422) [004] d..2 24577.597287: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133356              ps-13422 (13422) [004] dn.3 24577.597293: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133357  kworker/u16:10-23868 (23868) [001] d..1 24577.597295: clk_disable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
133358              ps-13422 (13422) [004] d..2 24577.597299: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133359  kworker/u16:10-23868 (23868) [001] d..1 24577.597303: clk_disable: gcc_aggre_ufs_phy_axi_clk
133360  kworker/u16:10-23868 (23868) [001] d..1 24577.597309: clk_disable: gcc_ufs_phy_axi_clk_src
133361 shell svc 13418-13419 ( 1007) [004] d..2 24577.597318: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133362  kworker/u16:10-23868 (23868) [001] d..1 24577.597319: clk_disable: gcc_ufs_phy_ahb_clk
133363  kworker/u16:10-23868 (23868) [001] d..1 24577.597328: clk_disable: gcc_ufs_phy_unipro_core_hw_ctl_clk
133364  kworker/u16:10-23868 (23868) [001] d..1 24577.597334: clk_disable: gcc_ufs_phy_unipro_core_clk
133365  kworker/u16:10-23868 (23868) [001] d..1 24577.597340: clk_disable: gcc_ufs_phy_unipro_core_clk_src
133366  kworker/u16:10-23868 (23868) [001] d..1 24577.597349: clk_disable: gcc_ufs_phy_ice_core_hw_ctl_clk
133367  kworker/u16:10-23868 (23868) [001] d..1 24577.597354: clk_disable: gcc_ufs_phy_ice_core_clk
133368  kworker/u16:10-23868 (23868) [001] d..1 24577.597362: clk_disable: gcc_ufs_phy_ice_core_clk_src
133369              ps-13422 (13422) [004] d..2 24577.597432: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133370              ps-13422 (13422) [004] dn.3 24577.597438: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133371              ps-13422 (13422) [004] d..2 24577.597443: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133372 shell svc 13418-13419 ( 1007) [004] d..2 24577.597463: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133373          <idle>-0     (-----) [003] ...1 24577.597510: cpu_idle: state=4294967295 cpu_id=3
133374          <idle>-0     (-----) [003] d..1 24577.597512: cpu_idle: state=0 cpu_id=3
133375              ps-13422 (13422) [004] d..2 24577.597599: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133376  kworker/u16:10-23868 (23868) [001] d..2 24577.597626: 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
133377              ps-13422 (13422) [004] dn.3 24577.597627: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133378              ps-13422 (13422) [004] d..2 24577.597632: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133379   kworker/u17:2-23076 (23076) [001] d..2 24577.597636: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133380   kworker/u17:2-23076 (23076) [001] d..3 24577.597643: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133381 shell svc 13418-13419 ( 1007) [004] d..2 24577.597654: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133382   kworker/u17:2-23076 (23076) [001] d..2 24577.597657: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133383          <idle>-0     (-----) [003] d.H3 24577.597662: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
133384     kworker/1:1-13091 (13091) [001] d.h4 24577.597666: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133385     kworker/1:1-13091 (13091) [001] dnh5 24577.597676: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133386          <idle>-0     (-----) [003] d.s2 24577.597678: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
133387          <idle>-0     (-----) [007] dnh2 24577.597680: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
133388     kworker/1:1-13091 (13091) [001] d..2 24577.597683: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
133389          <idle>-0     (-----) [007] .n.1 24577.597684: cpu_idle: state=4294967295 cpu_id=7
133390          <idle>-0     (-----) [003] dns3 24577.597690: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
133391          <idle>-0     (-----) [007] d..2 24577.597691: 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
133392          <idle>-0     (-----) [003] .n.1 24577.597701: cpu_idle: state=4294967295 cpu_id=3
133393   kworker/u17:2-23076 (23076) [001] d..2 24577.597701: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133394          <idle>-0     (-----) [003] d..2 24577.597706: 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
133395     kworker/1:1-13091 (13091) [001] d..2 24577.597707: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
133396         sugov:4-560   (  560) [007] .... 24577.597708: clk_set_rate: perfcl_clk 2803200000
133397         sugov:4-560   (  560) [007] .... 24577.597711: clk_set_rate: cpu7_perfcl_clk 825600000
133398         sugov:4-560   (  560) [007] .... 24577.597716: clk_set_rate: cpu6_perfcl_clk 825600000
133399     kworker/1:1-13091 (13091) [001] d..3 24577.597717: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
133400          <idle>-0     (-----) [000] .n.1 24577.597722: cpu_idle: state=4294967295 cpu_id=0
133401         sugov:4-560   (  560) [007] .... 24577.597722: clk_set_rate: cpu5_perfcl_clk 825600000
133402     kworker/1:1-13091 (13091) [001] d..2 24577.597725: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
133403         sugov:4-560   (  560) [007] .... 24577.597727: clk_set_rate: cpu4_perfcl_clk 2803200000
133404          <idle>-0     (-----) [000] d..2 24577.597730: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
133405         sugov:4-560   (  560) [007] .... 24577.597734: cpu_frequency: state=2803200 cpu_id=4
133406     rcu_preempt-7     (    7) [003] d..2 24577.597735: 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
133407            adbd-23485 ( 1007) [000] d..2 24577.597749: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133408         sugov:4-560   (  560) [007] d..3 24577.597751: sched_pi_setprio: comm=kworker/u16:10 pid=23868 oldprio=120 newprio=49
133409     kworker/1:1-13091 (13091) [001] d..3 24577.597755: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
133410          <idle>-0     (-----) [000] d..1 24577.597755: cpu_idle: state=0 cpu_id=0
133411          <idle>-0     (-----) [002] .n.1 24577.597760: cpu_idle: state=4294967295 cpu_id=2
133412              ps-13422 (13422) [004] d..2 24577.597767: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133413          <idle>-0     (-----) [002] d..2 24577.597768: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
133414     kworker/1:1-13091 (13091) [001] d..2 24577.597771: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133415         sugov:4-560   (  560) [007] d..2 24577.597773: 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
133416              ps-13422 (13422) [004] dn.3 24577.597775: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133417          <idle>-0     (-----) [001] d..1 24577.597777: cpu_idle: state=0 cpu_id=1
133418          <idle>-0     (-----) [007] d..1 24577.597779: cpu_idle: state=0 cpu_id=7
133419              ps-13422 (13422) [004] d..2 24577.597780: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133420            adbd-23484 ( 1007) [002] d..2 24577.597783: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
133421            adbd-23484 ( 1007) [002] d..3 24577.597797: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
133422 shell svc 13418-13419 ( 1007) [004] d..2 24577.597800: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133423            adbd-23484 ( 1007) [002] d..2 24577.597843: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
133424              ps-13422 (13422) [004] d..2 24577.597903: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133425              ps-13422 (13422) [004] dn.3 24577.597907: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133426              ps-13422 (13422) [004] d..2 24577.597910: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133427            adbd-1007  ( 1007) [002] d..1 24577.597916: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
133428 shell svc 13418-13419 ( 1007) [004] d..2 24577.597918: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133429            adbd-1007  ( 1007) [002] d..2 24577.597929: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
133430          <idle>-0     (-----) [000] .n.1 24577.597933: cpu_idle: state=4294967295 cpu_id=0
133431  kworker/u16:10-23868 (23868) [003] d..2 24577.597937: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
133432          <idle>-0     (-----) [000] d..2 24577.597939: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
133433          <idle>-0     (-----) [003] d..1 24577.597946: cpu_idle: state=0 cpu_id=3
133434            adbd-1007  ( 1007) [002] d..2 24577.597964: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
133435              ps-13422 (13422) [004] d..2 24577.597970: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133436              ps-13422 (13422) [004] dn.3 24577.597973: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133437          <idle>-0     (-----) [002] d..1 24577.597974: cpu_idle: state=0 cpu_id=2
133438              ps-13422 (13422) [004] d..2 24577.597976: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133439 shell svc 13418-13419 ( 1007) [004] d..2 24577.597984: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133440          <idle>-0     (-----) [003] d.s3 24577.597985: sched_waking: comm=kworker/u16:10 pid=23868 prio=49 target_cpu=003
133441            adbd-23485 ( 1007) [000] d..2 24577.597987: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133442          <idle>-0     (-----) [000] d..1 24577.597994: cpu_idle: state=0 cpu_id=0
133443          <idle>-0     (-----) [003] d.s4 24577.598001: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=49 target_cpu=000
133444          <idle>-0     (-----) [000] .n.1 24577.598006: cpu_idle: state=4294967295 cpu_id=0
133445          <idle>-0     (-----) [003] ...1 24577.598007: cpu_idle: state=4294967295 cpu_id=3
133446          <idle>-0     (-----) [001] d.h3 24577.598009: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133447          <idle>-0     (-----) [003] d..1 24577.598010: cpu_idle: state=0 cpu_id=3
133448          <idle>-0     (-----) [000] d..2 24577.598012: 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=49
133449          <idle>-0     (-----) [001] dnh4 24577.598016: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133450          <idle>-0     (-----) [001] .n.1 24577.598021: cpu_idle: state=4294967295 cpu_id=1
133451          <idle>-0     (-----) [001] d..2 24577.598026: 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
133452  kworker/u16:10-23868 (23868) [000] d..1 24577.598026: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
133453   kworker/u17:2-23076 (23076) [001] d..2 24577.598034: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133454              ps-13422 (13422) [004] d..2 24577.598035: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133455  kworker/u16:10-23868 (23868) [000] d..2 24577.598037: sched_pi_setprio: comm=kworker/u16:10 pid=23868 oldprio=49 newprio=120
133456              ps-13422 (13422) [004] dn.3 24577.598038: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133457   kworker/u17:2-23076 (23076) [001] d..3 24577.598038: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133458          <idle>-0     (-----) [007] dnh2 24577.598041: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
133459              ps-13422 (13422) [004] d..2 24577.598041: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133460          <idle>-0     (-----) [007] .n.1 24577.598043: cpu_idle: state=4294967295 cpu_id=7
133461          <idle>-0     (-----) [007] d..2 24577.598046: 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
133462 shell svc 13418-13419 ( 1007) [004] d..2 24577.598050: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133463   kworker/u17:2-23076 (23076) [001] d..2 24577.598055: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133464     kworker/1:1-13091 (13091) [001] d..2 24577.598060: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
133465  kworker/u16:10-23868 (23868) [000] d..2 24577.598063: 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
133466          <idle>-0     (-----) [000] d..1 24577.598070: cpu_idle: state=0 cpu_id=0
133467          <idle>-0     (-----) [000] .n.1 24577.598072: cpu_idle: state=4294967295 cpu_id=0
133468     kworker/1:1-13091 (13091) [001] d..3 24577.598074: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
133469          <idle>-0     (-----) [000] d..2 24577.598082: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
133470     kworker/1:1-13091 (13091) [001] d..2 24577.598087: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133471          <idle>-0     (-----) [001] d..1 24577.598092: cpu_idle: state=0 cpu_id=1
133472              ps-13422 (13422) [004] d..2 24577.598095: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133473              ps-13422 (13422) [004] dn.3 24577.598098: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133474              ps-13422 (13422) [004] d..2 24577.598101: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133475 shell svc 13418-13419 ( 1007) [004] d..2 24577.598109: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133476            adbd-23485 ( 1007) [000] d..2 24577.598132: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133477         sugov:4-560   (  560) [007] d..2 24577.598135: 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
133478          <idle>-0     (-----) [007] d..1 24577.598138: cpu_idle: state=0 cpu_id=7
133479          <idle>-0     (-----) [000] d..1 24577.598139: cpu_idle: state=0 cpu_id=0
133480              ps-13422 (13422) [004] d..2 24577.598155: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133481              ps-13422 (13422) [004] dn.3 24577.598159: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133482              ps-13422 (13422) [004] d..2 24577.598162: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133483          <idle>-0     (-----) [001] d.h3 24577.598162: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133484          <idle>-0     (-----) [001] dnh4 24577.598167: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133485 shell svc 13418-13419 ( 1007) [004] d..2 24577.598169: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133486          <idle>-0     (-----) [001] .n.1 24577.598172: cpu_idle: state=4294967295 cpu_id=1
133487          <idle>-0     (-----) [001] d..2 24577.598177: 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
133488   kworker/u17:2-23076 (23076) [001] d..2 24577.598185: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133489   kworker/u17:2-23076 (23076) [001] d..3 24577.598190: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133490   kworker/u17:2-23076 (23076) [001] d..2 24577.598206: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133491     kworker/1:1-13091 (13091) [001] d..2 24577.598211: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
133492     kworker/1:1-13091 (13091) [001] d..3 24577.598220: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
133493              ps-13422 (13422) [004] d..2 24577.598220: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133494              ps-13422 (13422) [004] dn.3 24577.598224: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133495              ps-13422 (13422) [004] d..2 24577.598226: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133496     kworker/1:1-13091 (13091) [001] d..2 24577.598233: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133497 shell svc 13418-13419 ( 1007) [004] d..2 24577.598235: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133498          <idle>-0     (-----) [001] d..1 24577.598237: cpu_idle: state=0 cpu_id=1
133499              ps-13422 (13422) [004] d..2 24577.598286: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133500              ps-13422 (13422) [004] dn.3 24577.598290: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133501              ps-13422 (13422) [004] d..2 24577.598292: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133502 shell svc 13418-13419 ( 1007) [004] d..2 24577.598300: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133503          <idle>-0     (-----) [000] dnh5 24577.598306: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
133504          <idle>-0     (-----) [000] dnh6 24577.598318: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
133505          <idle>-0     (-----) [000] .n.1 24577.598332: cpu_idle: state=4294967295 cpu_id=0
133506          <idle>-0     (-----) [001] dnh3 24577.598338: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133507          <idle>-0     (-----) [000] d..2 24577.598339: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
133508          <idle>-0     (-----) [001] dnh4 24577.598346: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133509              ps-13422 (13422) [004] d..2 24577.598346: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133510              ps-13422 (13422) [004] dn.3 24577.598350: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133511          <idle>-0     (-----) [001] .n.1 24577.598350: cpu_idle: state=4294967295 cpu_id=1
133512              ps-13422 (13422) [004] d..2 24577.598352: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133513          <idle>-0     (-----) [001] d..2 24577.598355: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
133514 shell svc 13418-13419 ( 1007) [004] d..2 24577.598360: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133515            adbd-23485 ( 1007) [000] d..2 24577.598364: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133516          <idle>-0     (-----) [000] d..1 24577.598371: cpu_idle: state=0 cpu_id=0
133517              ps-13422 (13422) [004] d..2 24577.598407: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133518              ps-13422 (13422) [004] dn.3 24577.598411: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133519              ps-13422 (13422) [004] d..2 24577.598413: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133520 crtc_commit:111-253   (  253) [001] d..2 24577.598419: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
133521 shell svc 13418-13419 ( 1007) [004] d..2 24577.598422: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133522   kworker/u17:2-23076 (23076) [001] d..2 24577.598428: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133523   kworker/u17:2-23076 (23076) [001] d..3 24577.598434: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133524   kworker/u17:2-23076 (23076) [001] d..2 24577.598451: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133525     kworker/1:1-13091 (13091) [001] d..2 24577.598458: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
133526              ps-13422 (13422) [004] d..2 24577.598467: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133527              ps-13422 (13422) [004] dn.3 24577.598471: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133528              ps-13422 (13422) [004] d..2 24577.598473: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133529 shell svc 13418-13419 ( 1007) [004] d..2 24577.598481: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133530     kworker/1:1-13091 (13091) [001] d..3 24577.598482: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
133531          <idle>-0     (-----) [000] .n.1 24577.598487: cpu_idle: state=4294967295 cpu_id=0
133532          <idle>-0     (-----) [000] d..2 24577.598493: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
133533     kworker/1:1-13091 (13091) [001] d..2 24577.598497: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133534          <idle>-0     (-----) [001] d..1 24577.598502: cpu_idle: state=0 cpu_id=1
133535            adbd-23484 ( 1007) [000] d..2 24577.598508: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
133536            adbd-23484 ( 1007) [000] d..3 24577.598520: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
133537              ps-13422 (13422) [004] d..2 24577.598530: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133538              ps-13422 (13422) [004] dn.3 24577.598534: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133539              ps-13422 (13422) [004] d..2 24577.598536: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133540 shell svc 13418-13419 ( 1007) [004] d..2 24577.598544: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133541              ps-13422 (13422) [004] d..2 24577.598589: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133542              ps-13422 (13422) [004] dn.3 24577.598592: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133543              ps-13422 (13422) [004] d..2 24577.598594: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133544            adbd-23484 ( 1007) [000] d.h4 24577.598596: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
133545 shell svc 13418-13419 ( 1007) [004] d..2 24577.598602: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133546            adbd-23484 ( 1007) [000] d.h5 24577.598609: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
133547          <idle>-0     (-----) [003] .n.1 24577.598614: cpu_idle: state=4294967295 cpu_id=3
133548            adbd-23484 ( 1007) [000] d.h6 24577.598618: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
133549          <idle>-0     (-----) [003] d..2 24577.598621: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
133550            adbd-23484 ( 1007) [000] d.h7 24577.598628: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
133551            adbd-23484 ( 1007) [000] d.h8 24577.598644: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
133552              ps-13422 (13422) [004] d..2 24577.598647: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133553  crtc_event:111-254   (  254) [003] d..2 24577.598648: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
133554              ps-13422 (13422) [004] dn.3 24577.598651: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133555              ps-13422 (13422) [004] d..2 24577.598653: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133556            adbd-23484 ( 1007) [000] d.h9 24577.598655: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
133557          <idle>-0     (-----) [001] .n.1 24577.598661: cpu_idle: state=4294967295 cpu_id=1
133558            adbd-23484 ( 1007) [000] d.h6 24577.598661: sched_waking: comm=SDM_EventThread pid=624 prio=111 target_cpu=003
133559 shell svc 13418-13419 ( 1007) [004] d..2 24577.598662: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133560          <idle>-0     (-----) [001] d..2 24577.598666: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
133561            adbd-23484 ( 1007) [000] d.h7 24577.598687: sched_wakeup: comm=SDM_EventThread pid=624 prio=111 target_cpu=001
133562 crtc_commit:111-253   (  253) [001] d..2 24577.598701: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=SDM_EventThread next_pid=624 next_prio=111
133563              ps-13422 (13422) [004] d..2 24577.598707: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133564              ps-13422 (13422) [004] dn.3 24577.598710: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133565              ps-13422 (13422) [004] d..2 24577.598713: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133566 shell svc 13418-13419 ( 1007) [004] d..2 24577.598721: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133567            adbd-1007  ( 1007) [003] d..1 24577.598736: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
133568            adbd-23484 ( 1007) [000] d..2 24577.598736: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
133569 SDM_EventThread-624   (  598) [001] ...1 24577.598745: tracing_mark_write: B|598|HWCCallbacks::Vsync::
133570 SDM_EventThread-624   (  598) [001] ...1 24577.598757: tracing_mark_write: B|598|HIDL::IComposerCallback::onVsync::client
133571 SDM_EventThread-624   (  598) [001] ...1 24577.598759: tracing_mark_write: E|598
133572     kworker/0:1-13012 (13012) [000] d..2 24577.598762: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133573            adbd-1007  ( 1007) [003] d..2 24577.598764: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
133574              ps-13422 (13422) [004] d..2 24577.598765: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133575              ps-13422 (13422) [004] dn.3 24577.598769: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133576          <idle>-0     (-----) [000] d..1 24577.598771: cpu_idle: state=0 cpu_id=0
133577              ps-13422 (13422) [004] d..2 24577.598772: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133578 shell svc 13418-13419 ( 1007) [004] d..2 24577.598781: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133579 SDM_EventThread-624   (  598) [001] .... 24577.598789: binder_transaction: transaction=1671681 dest_node=1270370 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
133580 SDM_EventThread-624   (  598) [001] d..4 24577.598799: sched_waking: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=000
133581            adbd-1007  ( 1007) [003] d..2 24577.598802: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
133582          <idle>-0     (-----) [003] d..1 24577.598810: cpu_idle: state=0 cpu_id=3
133583 SDM_EventThread-624   (  598) [001] d..5 24577.598816: sched_wakeup: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=000
133584          <idle>-0     (-----) [000] .n.1 24577.598820: cpu_idle: state=4294967295 cpu_id=0
133585              ps-13422 (13422) [004] d..2 24577.598825: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133586              ps-13422 (13422) [004] dn.3 24577.598828: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133587          <idle>-0     (-----) [000] d..2 24577.598829: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:23896_ next_pid=23923 next_prio=120
133588              ps-13422 (13422) [004] d..2 24577.598831: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133589 SDM_EventThread-624   (  598) [001] ...1 24577.598837: tracing_mark_write: E|598
133590 HwBinder:23896_-23923 (23896) [000] .... 24577.598838: binder_transaction_received: transaction=1671681
133591 shell svc 13418-13419 ( 1007) [004] d..2 24577.598839: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133592 SDM_EventThread-624   (  598) [001] d..4 24577.598851: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=001
133593 SDM_EventThread-624   (  598) [001] d..5 24577.598868: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
133594          <idle>-0     (-----) [002] .n.1 24577.598874: cpu_idle: state=4294967295 cpu_id=2
133595 HwBinder:23896_-23923 (23896) [000] ...1 24577.598881: tracing_mark_write: B|23896|HIDL::IComposerCallback::onVsync::server
133596          <idle>-0     (-----) [002] d..2 24577.598882: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
133597              ps-13422 (13422) [004] d..2 24577.598882: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133598              ps-13422 (13422) [004] dn.3 24577.598886: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133599              ps-13422 (13422) [004] d..2 24577.598888: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133600 SDM_EventThread-624   (  598) [001] d..2 24577.598889: sched_switch: prev_comm=SDM_EventThread prev_pid=624 prev_prio=111 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
133601 shell svc 13418-13419 ( 1007) [004] d..2 24577.598896: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133602 crtc_commit:111-253   (  253) [002] d..2 24577.598901: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
133603 HwBinder:23896_-23923 (23896) [000] ...1 24577.598903: tracing_mark_write: E|23896
133604          <idle>-0     (-----) [002] d..1 24577.598907: cpu_idle: state=0 cpu_id=2
133605 HwBinder:23896_-23923 (23896) [000] d..2 24577.598938: sched_switch: prev_comm=HwBinder:23896_ prev_pid=23923 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133606              ps-13422 (13422) [004] d..2 24577.598940: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133607            adbd-23485 ( 1007) [001] d..2 24577.598942: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133608              ps-13422 (13422) [004] dn.3 24577.598944: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133609              ps-13422 (13422) [004] d..2 24577.598946: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133610          <idle>-0     (-----) [000] d..1 24577.598947: cpu_idle: state=0 cpu_id=0
133611 shell svc 13418-13419 ( 1007) [004] d..2 24577.598954: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133612          <idle>-0     (-----) [001] d.h4 24577.598960: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133613          <idle>-0     (-----) [001] dnh5 24577.598969: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133614          <idle>-0     (-----) [001] d..2 24577.598978: 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
133615   kworker/u17:2-23076 (23076) [001] d..2 24577.598986: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133616   kworker/u17:2-23076 (23076) [001] d..3 24577.598991: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133617              ps-13422 (13422) [004] d..2 24577.599004: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133618   kworker/u17:2-23076 (23076) [001] d..2 24577.599008: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133619              ps-13422 (13422) [004] dn.3 24577.599008: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133620              ps-13422 (13422) [004] d..2 24577.599010: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133621     kworker/1:1-13091 (13091) [001] d..2 24577.599013: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
133622 shell svc 13418-13419 ( 1007) [004] d..2 24577.599018: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133623     kworker/1:1-13091 (13091) [001] d..3 24577.599021: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
133624     kworker/1:1-13091 (13091) [001] d..2 24577.599029: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
133625              ps-13422 (13422) [004] d..2 24577.599059: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133626              ps-13422 (13422) [004] dn.3 24577.599062: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133627              ps-13422 (13422) [004] d..2 24577.599065: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133628 shell svc 13418-13419 ( 1007) [004] d..2 24577.599073: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133629            adbd-23485 ( 1007) [001] d..2 24577.599076: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133630          <idle>-0     (-----) [001] d..1 24577.599083: cpu_idle: state=0 cpu_id=1
133631          <idle>-0     (-----) [001] d.h3 24577.599106: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133632              ps-13422 (13422) [004] d..2 24577.599111: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133633          <idle>-0     (-----) [001] dnh4 24577.599112: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133634              ps-13422 (13422) [004] dn.3 24577.599114: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133635              ps-13422 (13422) [004] d..2 24577.599116: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133636          <idle>-0     (-----) [001] .n.1 24577.599117: cpu_idle: state=4294967295 cpu_id=1
133637          <idle>-0     (-----) [001] d..2 24577.599122: 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
133638 shell svc 13418-13419 ( 1007) [004] d..2 24577.599124: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133639   kworker/u17:2-23076 (23076) [001] d..2 24577.599129: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133640   kworker/u17:2-23076 (23076) [001] d..3 24577.599134: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133641   kworker/u17:2-23076 (23076) [001] d..2 24577.599150: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133642     kworker/1:1-13091 (13091) [001] d..2 24577.599155: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
133643     kworker/1:1-13091 (13091) [001] d..3 24577.599163: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
133644              ps-13422 (13422) [004] d..2 24577.599163: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133645              ps-13422 (13422) [004] dn.3 24577.599166: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133646              ps-13422 (13422) [004] d..2 24577.599169: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133647     kworker/1:1-13091 (13091) [001] d..2 24577.599171: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
133648 shell svc 13418-13419 ( 1007) [004] d..2 24577.599177: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133649            adbd-23485 ( 1007) [001] d..2 24577.599189: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133650          <idle>-0     (-----) [001] d..1 24577.599194: cpu_idle: state=0 cpu_id=1
133651              ps-13422 (13422) [004] d..2 24577.599216: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133652              ps-13422 (13422) [004] dn.3 24577.599220: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133653              ps-13422 (13422) [004] d..2 24577.599222: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133654 shell svc 13418-13419 ( 1007) [004] d..2 24577.599230: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133655              ps-13422 (13422) [004] d..2 24577.599270: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133656              ps-13422 (13422) [004] dn.3 24577.599273: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133657              ps-13422 (13422) [004] d..2 24577.599275: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133658 shell svc 13418-13419 ( 1007) [004] d..2 24577.599283: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133659              ps-13422 (13422) [004] d..2 24577.599323: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133660              ps-13422 (13422) [004] dn.3 24577.599326: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133661              ps-13422 (13422) [004] d..2 24577.599328: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133662 shell svc 13418-13419 ( 1007) [004] d..2 24577.599336: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133663          <idle>-0     (-----) [001] d.h3 24577.599372: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133664              ps-13422 (13422) [004] d..2 24577.599376: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133665          <idle>-0     (-----) [001] dnh4 24577.599378: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133666              ps-13422 (13422) [004] dn.3 24577.599379: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133667              ps-13422 (13422) [004] d..2 24577.599381: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133668          <idle>-0     (-----) [001] .n.1 24577.599383: cpu_idle: state=4294967295 cpu_id=1
133669          <idle>-0     (-----) [001] d..2 24577.599387: 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
133670 shell svc 13418-13419 ( 1007) [004] d..2 24577.599388: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133671   kworker/u17:2-23076 (23076) [001] d..2 24577.599394: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133672   kworker/u17:2-23076 (23076) [001] d..3 24577.599399: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133673   kworker/u17:2-23076 (23076) [001] d..2 24577.599415: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133674     kworker/1:1-13091 (13091) [001] d..2 24577.599421: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
133675              ps-13422 (13422) [004] d..2 24577.599429: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133676     kworker/1:1-13091 (13091) [001] d..3 24577.599430: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
133677              ps-13422 (13422) [004] dn.3 24577.599432: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133678              ps-13422 (13422) [004] d..2 24577.599434: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133679          <idle>-0     (-----) [000] .n.1 24577.599435: cpu_idle: state=4294967295 cpu_id=0
133680     kworker/1:1-13091 (13091) [001] d..2 24577.599442: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133681 shell svc 13418-13419 ( 1007) [004] d..2 24577.599442: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133682          <idle>-0     (-----) [000] d..2 24577.599444: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
133683          <idle>-0     (-----) [001] d..1 24577.599447: cpu_idle: state=0 cpu_id=1
133684            adbd-23484 ( 1007) [000] d..2 24577.599457: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
133685            adbd-23484 ( 1007) [000] d..3 24577.599469: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
133686              ps-13422 (13422) [004] d..2 24577.599480: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133687              ps-13422 (13422) [004] dn.3 24577.599483: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133688              ps-13422 (13422) [004] d..2 24577.599486: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133689 shell svc 13418-13419 ( 1007) [004] d..2 24577.599494: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133690            adbd-23484 ( 1007) [000] d..2 24577.599514: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
133691              ps-13422 (13422) [004] d..2 24577.599532: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133692              ps-13422 (13422) [004] dn.3 24577.599534: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133693              ps-13422 (13422) [004] d..2 24577.599537: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133694 shell svc 13418-13419 ( 1007) [004] d..2 24577.599545: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133695              ps-13422 (13422) [004] d..2 24577.599582: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133696              ps-13422 (13422) [004] dn.3 24577.599585: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133697              ps-13422 (13422) [004] d..2 24577.599587: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133698 shell svc 13418-13419 ( 1007) [004] d..2 24577.599595: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133699            adbd-1007  ( 1007) [000] d..1 24577.599599: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
133700            adbd-1007  ( 1007) [000] d..2 24577.599623: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
133701          <idle>-0     (-----) [001] .n.1 24577.599627: cpu_idle: state=4294967295 cpu_id=1
133702              ps-13422 (13422) [004] d..2 24577.599632: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133703          <idle>-0     (-----) [001] d..2 24577.599633: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
133704              ps-13422 (13422) [004] dn.3 24577.599635: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133705              ps-13422 (13422) [004] d..2 24577.599638: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133706 shell svc 13418-13419 ( 1007) [004] d..2 24577.599646: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133707            adbd-1007  ( 1007) [000] d..2 24577.599658: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133708          <idle>-0     (-----) [000] d..1 24577.599668: cpu_idle: state=0 cpu_id=0
133709            adbd-23485 ( 1007) [001] d..2 24577.599680: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133710              ps-13422 (13422) [004] d..2 24577.599693: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133711              ps-13422 (13422) [004] dn.3 24577.599696: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133712          <idle>-0     (-----) [001] d.h3 24577.599698: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133713              ps-13422 (13422) [004] d..2 24577.599699: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133714          <idle>-0     (-----) [001] dnh4 24577.599704: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133715 shell svc 13418-13419 ( 1007) [004] d..2 24577.599707: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133716          <idle>-0     (-----) [001] d..2 24577.599712: 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
133717   kworker/u17:2-23076 (23076) [001] d..2 24577.599718: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133718   kworker/u17:2-23076 (23076) [001] d..3 24577.599723: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133719   kworker/u17:2-23076 (23076) [001] d..2 24577.599739: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133720     kworker/1:1-13091 (13091) [001] d..2 24577.599743: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
133721              ps-13422 (13422) [004] d..2 24577.599748: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133722              ps-13422 (13422) [004] dn.3 24577.599751: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133723     kworker/1:1-13091 (13091) [001] d..3 24577.599752: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
133724              ps-13422 (13422) [004] d..2 24577.599754: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133725     kworker/1:1-13091 (13091) [001] d..2 24577.599759: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
133726 shell svc 13418-13419 ( 1007) [004] d..2 24577.599762: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133727            adbd-23485 ( 1007) [001] d..2 24577.599805: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133728              ps-13422 (13422) [004] d..2 24577.599806: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133729              ps-13422 (13422) [004] dn.3 24577.599809: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133730          <idle>-0     (-----) [001] d..1 24577.599811: cpu_idle: state=0 cpu_id=1
133731              ps-13422 (13422) [004] d..2 24577.599811: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133732 shell svc 13418-13419 ( 1007) [004] d..2 24577.599819: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133733          <idle>-0     (-----) [001] d.h3 24577.599834: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133734          <idle>-0     (-----) [001] dnh4 24577.599840: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133735          <idle>-0     (-----) [001] .n.1 24577.599845: cpu_idle: state=4294967295 cpu_id=1
133736          <idle>-0     (-----) [001] d..2 24577.599850: 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
133737   kworker/u17:2-23076 (23076) [001] d..2 24577.599856: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133738              ps-13422 (13422) [004] d..2 24577.599861: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133739   kworker/u17:2-23076 (23076) [001] d..3 24577.599862: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133740              ps-13422 (13422) [004] dn.3 24577.599864: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133741              ps-13422 (13422) [004] d..2 24577.599866: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133742 shell svc 13418-13419 ( 1007) [004] d..2 24577.599874: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133743   kworker/u17:2-23076 (23076) [001] d..2 24577.599877: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133744     kworker/1:1-13091 (13091) [001] d..2 24577.599881: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
133745     kworker/1:1-13091 (13091) [001] d..3 24577.599889: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
133746     kworker/1:1-13091 (13091) [001] d..2 24577.599897: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
133747              ps-13422 (13422) [004] d..2 24577.599914: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133748            adbd-23485 ( 1007) [001] d..2 24577.599914: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133749              ps-13422 (13422) [004] dn.3 24577.599917: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133750          <idle>-0     (-----) [001] d..1 24577.599919: cpu_idle: state=0 cpu_id=1
133751              ps-13422 (13422) [004] d..2 24577.599919: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133752 shell svc 13418-13419 ( 1007) [004] d..2 24577.599927: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133753          <idle>-0     (-----) [003] d.s3 24577.599977: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
133754          <idle>-0     (-----) [003] ...1 24577.599990: cpu_idle: state=4294967295 cpu_id=3
133755          <idle>-0     (-----) [007] dnh2 24577.599991: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
133756          <idle>-0     (-----) [007] .n.1 24577.599993: cpu_idle: state=4294967295 cpu_id=7
133757          <idle>-0     (-----) [003] d..1 24577.599993: cpu_idle: state=0 cpu_id=3
133758          <idle>-0     (-----) [007] d..2 24577.599995: 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
133759         sugov:4-560   (  560) [007] .... 24577.599998: cpu_frequency: state=2803200 cpu_id=5
133760         sugov:4-560   (  560) [007] .... 24577.600000: cpu_frequency: state=2803200 cpu_id=6
133761         sugov:4-560   (  560) [007] .... 24577.600001: cpu_frequency: state=2803200 cpu_id=7
133762         sugov:4-560   (  560) [007] d..2 24577.600006: 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
133763          <idle>-0     (-----) [007] d..1 24577.600008: cpu_idle: state=0 cpu_id=7
133764          <idle>-0     (-----) [001] d.h3 24577.600102: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133765          <idle>-0     (-----) [001] dnh4 24577.600108: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133766          <idle>-0     (-----) [001] .n.1 24577.600113: cpu_idle: state=4294967295 cpu_id=1
133767          <idle>-0     (-----) [001] d..2 24577.600117: 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
133768   kworker/u17:2-23076 (23076) [001] d..2 24577.600124: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133769   kworker/u17:2-23076 (23076) [001] d..3 24577.600129: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133770   kworker/u17:2-23076 (23076) [001] d..2 24577.600144: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133771     kworker/1:1-13091 (13091) [001] d..2 24577.600150: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
133772              ps-13422 (13422) [004] d..2 24577.600156: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133773     kworker/1:1-13091 (13091) [001] d..3 24577.600159: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
133774              ps-13422 (13422) [004] dn.3 24577.600160: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133775              ps-13422 (13422) [004] d..2 24577.600163: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133776          <idle>-0     (-----) [000] .n.1 24577.600164: cpu_idle: state=4294967295 cpu_id=0
133777          <idle>-0     (-----) [000] d..2 24577.600172: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
133778 shell svc 13418-13419 ( 1007) [004] d..2 24577.600173: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133779     kworker/1:1-13091 (13091) [001] d..2 24577.600173: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133780          <idle>-0     (-----) [001] d..1 24577.600178: cpu_idle: state=0 cpu_id=1
133781              ps-13422 (13422) [004] d..2 24577.600178: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133782              ps-13422 (13422) [004] dn.3 24577.600181: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133783              ps-13422 (13422) [004] d..2 24577.600182: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133784            adbd-23484 ( 1007) [000] d..2 24577.600183: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
133785 shell svc 13418-13419 ( 1007) [004] d..2 24577.600189: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133786            adbd-23484 ( 1007) [000] d..3 24577.600190: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
133787              ps-13422 (13422) [004] d..2 24577.600193: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133788              ps-13422 (13422) [004] dn.3 24577.600196: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133789              ps-13422 (13422) [004] d..2 24577.600198: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133790          <idle>-0     (-----) [001] d.h2 24577.600203: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
133791 shell svc 13418-13419 ( 1007) [004] d..2 24577.600204: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133792              ps-13422 (13422) [004] d..2 24577.600208: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133793              ps-13422 (13422) [004] dn.3 24577.600210: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133794          <idle>-0     (-----) [001] dnh3 24577.600212: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=001
133795              ps-13422 (13422) [004] d..2 24577.600212: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133796          <idle>-0     (-----) [001] .n.1 24577.600217: cpu_idle: state=4294967295 cpu_id=1
133797 shell svc 13418-13419 ( 1007) [004] d..2 24577.600218: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133798          <idle>-0     (-----) [001] d..2 24577.600221: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
133799              ps-13422 (13422) [004] d..2 24577.600222: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133800              ps-13422 (13422) [004] dn.3 24577.600224: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133801              ps-13422 (13422) [004] d..2 24577.600226: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133802 shell svc 13418-13419 ( 1007) [004] d..2 24577.600232: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133803            adbd-23484 ( 1007) [000] d..2 24577.600235: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
133804              ps-13422 (13422) [004] d..2 24577.600236: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133805        DispSync-23904 (23896) [001] d..1 24577.600238: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
133806              ps-13422 (13422) [004] dn.3 24577.600238: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133807              ps-13422 (13422) [004] d..2 24577.600240: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133808 shell svc 13418-13419 ( 1007) [004] d..2 24577.600246: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133809        DispSync-23904 (23896) [001] d..2 24577.600249: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
133810              ps-13422 (13422) [004] d..2 24577.600249: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133811              ps-13422 (13422) [004] dn.3 24577.600251: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133812              ps-13422 (13422) [004] d..2 24577.600253: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133813 shell svc 13418-13419 ( 1007) [004] d..2 24577.600259: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133814          <idle>-0     (-----) [002] .n.1 24577.600260: cpu_idle: state=4294967295 cpu_id=2
133815          <idle>-0     (-----) [002] d..2 24577.600265: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
133816        DispSync-23904 (23896) [001] d..2 24577.600270: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133817          <idle>-0     (-----) [001] d..1 24577.600275: cpu_idle: state=0 cpu_id=1
133818  appEventThread-23905 (23896) [002] d..3 24577.600303: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
133819            adbd-1007  ( 1007) [000] d..1 24577.600307: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
133820            adbd-1007  ( 1007) [000] d..2 24577.600319: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
133821              ps-13422 (13422) [004] d..2 24577.600323: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133822          <idle>-0     (-----) [001] .n.1 24577.600324: cpu_idle: state=4294967295 cpu_id=1
133823              ps-13422 (13422) [004] dn.3 24577.600326: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133824  appEventThread-23905 (23896) [002] d..4 24577.600328: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
133825              ps-13422 (13422) [004] d..2 24577.600329: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133826          <idle>-0     (-----) [001] d..2 24577.600334: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
133827 shell svc 13418-13419 ( 1007) [004] d..2 24577.600337: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133828            adbd-1007  ( 1007) [000] d..2 24577.600358: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133829  appEventThread-23905 (23896) [002] d..2 24577.600366: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
133830          <idle>-0     (-----) [000] d..1 24577.600368: cpu_idle: state=0 cpu_id=0
133831            adbd-23485 ( 1007) [002] d..2 24577.600417: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
133832              ps-13422 (13422) [004] d..2 24577.600420: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133833              ps-13422 (13422) [004] dn.3 24577.600424: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133834          <idle>-0     (-----) [002] d..1 24577.600425: cpu_idle: state=0 cpu_id=2
133835              ps-13422 (13422) [004] d..2 24577.600426: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133836 s.nexuslauncher-24827 (24827) [001] d.h2 24577.600426: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133837 shell svc 13418-13419 ( 1007) [004] d..2 24577.600435: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133838              ps-13422 (13422) [004] d..2 24577.600439: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133839 s.nexuslauncher-24827 (24827) [001] d.h3 24577.600441: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133840              ps-13422 (13422) [004] dn.3 24577.600442: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133841              ps-13422 (13422) [004] d..2 24577.600444: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133842 shell svc 13418-13419 ( 1007) [004] d..2 24577.600450: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133843              ps-13422 (13422) [004] d..2 24577.600490: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133844              ps-13422 (13422) [004] dn.3 24577.600494: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133845              ps-13422 (13422) [004] d..2 24577.600496: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133846 shell svc 13418-13419 ( 1007) [004] d..2 24577.600504: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133847              ps-13422 (13422) [004] d..2 24577.600542: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133848              ps-13422 (13422) [004] dn.3 24577.600546: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133849              ps-13422 (13422) [004] d..2 24577.600548: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133850 shell svc 13418-13419 ( 1007) [004] d..2 24577.600556: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133851              ps-13422 (13422) [004] d..2 24577.600598: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133852              ps-13422 (13422) [004] dn.3 24577.600602: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133853              ps-13422 (13422) [004] d..2 24577.600604: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133854 shell svc 13418-13419 ( 1007) [004] d..2 24577.600612: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133855 s.nexuslauncher-24827 (24827) [001] .... 24577.600657: binder_transaction: transaction=1671682 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
133856 s.nexuslauncher-24827 (24827) [001] d..4 24577.600664: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
133857 s.nexuslauncher-24827 (24827) [001] d..5 24577.600680: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
133858          <idle>-0     (-----) [000] .n.1 24577.600685: cpu_idle: state=4294967295 cpu_id=0
133859          <idle>-0     (-----) [000] d..2 24577.600693: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
133860  Binder:23896_4-24423 (23896) [000] .... 24577.600698: binder_transaction_received: transaction=1671682
133861 s.nexuslauncher-24827 (24827) [001] d..3 24577.600707: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
133862  Binder:23896_4-24423 (23896) [000] d..1 24577.600721: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
133863 s.nexuslauncher-24827 (24827) [001] d..4 24577.600724: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
133864          <idle>-0     (-----) [002] .n.1 24577.600729: cpu_idle: state=4294967295 cpu_id=2
133865          <idle>-0     (-----) [002] d..2 24577.600740: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
133866  Binder:23896_4-24423 (23896) [000] d..2 24577.600742: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
133867          <idle>-0     (-----) [003] .n.1 24577.600746: cpu_idle: state=4294967295 cpu_id=3
133868          <idle>-0     (-----) [003] d..2 24577.600752: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
133869  Binder:23896_4-24423 (23896) [000] d..2 24577.600767: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133870    RenderThread-25194 (24827) [002] d..2 24577.600773: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
133871          <idle>-0     (-----) [000] d..1 24577.600776: cpu_idle: state=0 cpu_id=0
133872          <idle>-0     (-----) [002] d..1 24577.600780: cpu_idle: state=0 cpu_id=2
133873  appEventThread-23905 (23896) [003] d..2 24577.600789: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
133874          <idle>-0     (-----) [003] d..1 24577.600795: cpu_idle: state=0 cpu_id=3
133875              ps-13422 (13422) [004] d..2 24577.600809: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133876              ps-13422 (13422) [004] dn.3 24577.600813: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133877              ps-13422 (13422) [004] d..2 24577.600816: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133878 shell svc 13418-13419 ( 1007) [004] d..2 24577.600825: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133879              ps-13422 (13422) [004] d..2 24577.600829: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133880              ps-13422 (13422) [004] dn.3 24577.600832: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133881              ps-13422 (13422) [004] d..2 24577.600835: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133882 shell svc 13418-13419 ( 1007) [004] d..2 24577.600841: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133883              ps-13422 (13422) [004] d..2 24577.600845: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133884              ps-13422 (13422) [004] dn.3 24577.600847: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133885              ps-13422 (13422) [004] d..2 24577.600849: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133886 shell svc 13418-13419 ( 1007) [004] d..2 24577.600855: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133887              ps-13422 (13422) [004] d..2 24577.600859: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133888              ps-13422 (13422) [004] dn.3 24577.600861: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133889              ps-13422 (13422) [004] d..2 24577.600863: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133890 shell svc 13418-13419 ( 1007) [004] d..2 24577.600869: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133891              ps-13422 (13422) [004] d..2 24577.600872: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133892              ps-13422 (13422) [004] dn.3 24577.600875: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133893              ps-13422 (13422) [004] d..2 24577.600877: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133894 shell svc 13418-13419 ( 1007) [004] d..2 24577.600895: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133895              ps-13422 (13422) [004] d..2 24577.600900: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133896              ps-13422 (13422) [004] dn.3 24577.600903: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133897 s.nexuslauncher-24827 (24827) [001] d.s2 24577.600903: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
133898              ps-13422 (13422) [004] d..2 24577.600905: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133899 shell svc 13418-13419 ( 1007) [004] d..2 24577.600911: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133900              ps-13422 (13422) [004] d..2 24577.600915: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133901 s.nexuslauncher-24827 (24827) [001] d.s3 24577.600916: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
133902              ps-13422 (13422) [004] dn.3 24577.600917: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133903              ps-13422 (13422) [004] d..2 24577.600919: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133904          <idle>-0     (-----) [003] .n.1 24577.600920: cpu_idle: state=4294967295 cpu_id=3
133905 shell svc 13418-13419 ( 1007) [004] d..2 24577.600925: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133906          <idle>-0     (-----) [003] d..2 24577.600927: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
133907  crtc_event:111-254   (  254) [003] d..2 24577.600947: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
133908          <idle>-0     (-----) [003] d..1 24577.600951: cpu_idle: state=0 cpu_id=3
133909              ps-13422 (13422) [004] d..2 24577.601002: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133910              ps-13422 (13422) [004] dn.3 24577.601006: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133911              ps-13422 (13422) [004] d..2 24577.601009: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133912 shell svc 13418-13419 ( 1007) [004] d..2 24577.601018: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133913              ps-13422 (13422) [004] d..2 24577.601058: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133914 s.nexuslauncher-24827 (24827) [001] d..3 24577.601061: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
133915              ps-13422 (13422) [004] dn.3 24577.601062: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133916              ps-13422 (13422) [004] d..2 24577.601064: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133917 shell svc 13418-13419 ( 1007) [004] d..2 24577.601072: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133918 s.nexuslauncher-24827 (24827) [001] d..4 24577.601081: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
133919          <idle>-0     (-----) [000] .n.1 24577.601086: cpu_idle: state=4294967295 cpu_id=0
133920          <idle>-0     (-----) [000] d..2 24577.601094: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
133921 s.nexuslauncher-24827 (24827) [001] d..2 24577.601095: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
133922   kworker/u17:2-23076 (23076) [001] d..2 24577.601105: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133923   kworker/u17:2-23076 (23076) [001] d..3 24577.601111: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133924   kworker/u17:2-23076 (23076) [001] d..2 24577.601127: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133925     kworker/1:1-13091 (13091) [001] d..2 24577.601133: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
133926     kworker/1:1-13091 (13091) [001] d..3 24577.601141: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
133927          <idle>-0     (-----) [002] .n.1 24577.601147: cpu_idle: state=4294967295 cpu_id=2
133928          <idle>-0     (-----) [002] d..2 24577.601154: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
133929     kworker/1:1-13091 (13091) [001] d..2 24577.601157: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133930          <idle>-0     (-----) [001] d..1 24577.601167: cpu_idle: state=0 cpu_id=1
133931            adbd-23485 ( 1007) [002] d..2 24577.601205: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
133932          <idle>-0     (-----) [002] d..1 24577.601212: cpu_idle: state=0 cpu_id=2
133933          <idle>-0     (-----) [001] d.h3 24577.601229: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133934          <idle>-0     (-----) [001] dnh4 24577.601238: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133935          <idle>-0     (-----) [001] .n.1 24577.601243: cpu_idle: state=4294967295 cpu_id=1
133936          <idle>-0     (-----) [001] d..2 24577.601249: 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
133937   kworker/u17:2-23076 (23076) [001] d..2 24577.601256: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133938   kworker/u17:2-23076 (23076) [001] d..3 24577.601260: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
133939    RenderThread-25194 (24827) [000] d..1 24577.601261: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
133940   kworker/u17:2-23076 (23076) [001] d..2 24577.601279: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
133941    RenderThread-25194 (24827) [000] d..2 24577.601281: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
133942     kworker/1:1-13091 (13091) [001] d..2 24577.601284: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
133943          <idle>-0     (-----) [002] .n.1 24577.601285: cpu_idle: state=4294967295 cpu_id=2
133944          <idle>-0     (-----) [002] d..2 24577.601292: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
133945     kworker/1:1-13091 (13091) [001] d..3 24577.601296: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
133946     kworker/1:1-13091 (13091) [001] d..2 24577.601309: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133947              ps-13422 (13422) [004] d..2 24577.601311: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133948              ps-13422 (13422) [004] dn.3 24577.601315: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133949          <idle>-0     (-----) [001] d..1 24577.601315: cpu_idle: state=0 cpu_id=1
133950              ps-13422 (13422) [004] d..2 24577.601317: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133951    RenderThread-25194 (24827) [000] .... 24577.601325: binder_transaction: transaction=1671683 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
133952 shell svc 13418-13419 ( 1007) [004] d..2 24577.601327: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133953    RenderThread-25194 (24827) [000] ...2 24577.601330: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
133954              ps-13422 (13422) [004] d..2 24577.601331: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133955    RenderThread-25194 (24827) [000] d..4 24577.601332: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
133956              ps-13422 (13422) [004] dn.3 24577.601334: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133957              ps-13422 (13422) [004] d..2 24577.601336: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133958    RenderThread-25194 (24827) [000] d..5 24577.601340: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
133959 shell svc 13418-13419 ( 1007) [004] d..2 24577.601342: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133960              ps-13422 (13422) [004] d..2 24577.601346: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133961    RenderThread-25194 (24827) [000] d..2 24577.601349: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
133962              ps-13422 (13422) [004] dn.3 24577.601349: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133963              ps-13422 (13422) [004] d..2 24577.601351: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133964  Binder:23896_4-24423 (23896) [000] .... 24577.601354: binder_transaction_received: transaction=1671683
133965 shell svc 13418-13419 ( 1007) [004] d..2 24577.601357: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133966              ps-13422 (13422) [004] d..2 24577.601361: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133967 s.nexuslauncher-24827 (24827) [002] d..2 24577.601361: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
133968              ps-13422 (13422) [004] dn.3 24577.601363: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133969              ps-13422 (13422) [004] d..2 24577.601365: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133970 shell svc 13418-13419 ( 1007) [004] d..2 24577.601371: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133971              ps-13422 (13422) [004] d..2 24577.601374: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133972              ps-13422 (13422) [004] dn.3 24577.601376: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133973              ps-13422 (13422) [004] d..2 24577.601378: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133974            adbd-23485 ( 1007) [002] d..2 24577.601384: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
133975 shell svc 13418-13419 ( 1007) [004] d..2 24577.601384: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133976              ps-13422 (13422) [004] d..2 24577.601388: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133977              ps-13422 (13422) [004] dn.3 24577.601390: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133978          <idle>-0     (-----) [002] d..1 24577.601392: cpu_idle: state=0 cpu_id=2
133979              ps-13422 (13422) [004] d..2 24577.601392: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133980 shell svc 13418-13419 ( 1007) [004] d..2 24577.601397: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133981              ps-13422 (13422) [004] d..2 24577.601401: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133982              ps-13422 (13422) [004] dn.3 24577.601403: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133983  Binder:23896_4-24423 (23896) [000] .... 24577.601404: binder_transaction: transaction=1671684 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
133984              ps-13422 (13422) [004] d..2 24577.601405: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133985 shell svc 13418-13419 ( 1007) [004] d..2 24577.601411: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133986  Binder:23896_4-24423 (23896) [000] d..2 24577.601414: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
133987              ps-13422 (13422) [004] d..2 24577.601415: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133988              ps-13422 (13422) [004] dn.3 24577.601417: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133989              ps-13422 (13422) [004] d..2 24577.601418: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133990  Binder:23896_4-24423 (23896) [000] d..3 24577.601422: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
133991 shell svc 13418-13419 ( 1007) [004] d..2 24577.601424: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
133992  Binder:23896_4-24423 (23896) [000] .... 24577.601424: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
133993          <idle>-0     (-----) [001] d.h3 24577.601425: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133994              ps-13422 (13422) [004] d..2 24577.601428: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133995              ps-13422 (13422) [004] dn.3 24577.601430: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
133996          <idle>-0     (-----) [001] dnh4 24577.601431: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
133997              ps-13422 (13422) [004] d..2 24577.601433: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
133998  Binder:23896_4-24423 (23896) [000] d..2 24577.601433: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
133999          <idle>-0     (-----) [001] .n.1 24577.601435: cpu_idle: state=4294967295 cpu_id=1
134000    RenderThread-25194 (24827) [000] .... 24577.601437: binder_transaction_received: transaction=1671684
134001 shell svc 13418-13419 ( 1007) [004] d..2 24577.601439: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134002          <idle>-0     (-----) [001] d..2 24577.601441: 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
134003              ps-13422 (13422) [004] d..2 24577.601442: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134004              ps-13422 (13422) [004] dn.3 24577.601445: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134005              ps-13422 (13422) [004] d..2 24577.601446: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134006   kworker/u17:2-23076 (23076) [001] d..2 24577.601447: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134007 shell svc 13418-13419 ( 1007) [004] d..2 24577.601452: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134008   kworker/u17:2-23076 (23076) [001] d..3 24577.601452: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134009   kworker/u17:2-23076 (23076) [001] d..2 24577.601468: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
134010     kworker/1:1-13091 (13091) [001] d..2 24577.601475: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
134011              ps-13422 (13422) [004] d..2 24577.601494: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134012              ps-13422 (13422) [004] dn.3 24577.601497: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134013     kworker/1:1-13091 (13091) [001] d..3 24577.601498: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
134014              ps-13422 (13422) [004] d..2 24577.601500: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134015     kworker/1:1-13091 (13091) [001] d..2 24577.601507: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
134016 shell svc 13418-13419 ( 1007) [004] d..2 24577.601508: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134017            adbd-23484 ( 1007) [001] d..2 24577.601521: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
134018            adbd-23484 ( 1007) [001] d..3 24577.601530: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
134019              ps-13422 (13422) [004] d..2 24577.601555: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134020              ps-13422 (13422) [004] dn.3 24577.601557: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134021              ps-13422 (13422) [004] d..2 24577.601560: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134022 shell svc 13418-13419 ( 1007) [004] d..2 24577.601568: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134023            adbd-23484 ( 1007) [001] d..2 24577.601575: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
134024              ps-13422 (13422) [004] d..2 24577.601613: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134025              ps-13422 (13422) [004] dn.3 24577.601616: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134026              ps-13422 (13422) [004] d..2 24577.601619: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134027 shell svc 13418-13419 ( 1007) [004] d..2 24577.601627: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134028            adbd-1007  ( 1007) [001] d..1 24577.601666: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
134029            adbd-1007  ( 1007) [001] d..2 24577.601689: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
134030          <idle>-0     (-----) [002] .n.1 24577.601694: cpu_idle: state=4294967295 cpu_id=2
134031              ps-13422 (13422) [004] d..2 24577.601695: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134032              ps-13422 (13422) [004] dn.3 24577.601698: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134033          <idle>-0     (-----) [002] d..2 24577.601701: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
134034              ps-13422 (13422) [004] d..2 24577.601701: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134035 shell svc 13418-13419 ( 1007) [004] d..2 24577.601710: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134036            adbd-1007  ( 1007) [001] d..2 24577.601726: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134037          <idle>-0     (-----) [001] d..1 24577.601734: cpu_idle: state=0 cpu_id=1
134038            adbd-23485 ( 1007) [002] d..2 24577.601752: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134039          <idle>-0     (-----) [001] d.h3 24577.601758: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134040          <idle>-0     (-----) [002] d..1 24577.601759: cpu_idle: state=0 cpu_id=2
134041          <idle>-0     (-----) [001] dnh4 24577.601764: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134042              ps-13422 (13422) [004] d..2 24577.601767: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134043          <idle>-0     (-----) [001] .n.1 24577.601770: cpu_idle: state=4294967295 cpu_id=1
134044              ps-13422 (13422) [004] dn.3 24577.601770: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134045              ps-13422 (13422) [004] d..2 24577.601773: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134046          <idle>-0     (-----) [001] d..2 24577.601776: 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
134047 shell svc 13418-13419 ( 1007) [004] d..2 24577.601781: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134048   kworker/u17:2-23076 (23076) [001] d..2 24577.601785: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134049   kworker/u17:2-23076 (23076) [001] d..3 24577.601790: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134050   kworker/u17:2-23076 (23076) [001] d..2 24577.601806: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
134051     kworker/1:1-13091 (13091) [001] d..2 24577.601811: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
134052     kworker/1:1-13091 (13091) [001] d..3 24577.601820: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
134053          <idle>-0     (-----) [002] .n.1 24577.601826: cpu_idle: state=4294967295 cpu_id=2
134054          <idle>-0     (-----) [002] d..2 24577.601832: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
134055     kworker/1:1-13091 (13091) [001] d..2 24577.601834: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134056          <idle>-0     (-----) [001] d..1 24577.601840: cpu_idle: state=0 cpu_id=1
134057              ps-13422 (13422) [004] d..2 24577.601846: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134058              ps-13422 (13422) [004] dn.3 24577.601849: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134059              ps-13422 (13422) [004] d..2 24577.601852: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134060 shell svc 13418-13419 ( 1007) [004] d..2 24577.601861: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134061            adbd-23485 ( 1007) [002] d..2 24577.601880: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134062          <idle>-0     (-----) [002] d..1 24577.601887: cpu_idle: state=0 cpu_id=2
134063          <idle>-0     (-----) [001] d.h3 24577.601927: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134064          <idle>-0     (-----) [001] dnh4 24577.601932: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134065          <idle>-0     (-----) [001] .n.1 24577.601936: cpu_idle: state=4294967295 cpu_id=1
134066          <idle>-0     (-----) [001] d..2 24577.601942: 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
134067   kworker/u17:2-23076 (23076) [001] d..2 24577.601948: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134068              ps-13422 (13422) [004] d..2 24577.601951: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134069   kworker/u17:2-23076 (23076) [001] d..3 24577.601953: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134070              ps-13422 (13422) [004] dn.3 24577.601954: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134071              ps-13422 (13422) [004] d..2 24577.601957: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134072 shell svc 13418-13419 ( 1007) [004] d..2 24577.601966: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134073   kworker/u17:2-23076 (23076) [001] d..2 24577.601969: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
134074              ps-13422 (13422) [004] d..2 24577.601970: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134075              ps-13422 (13422) [004] dn.3 24577.601972: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134076     kworker/1:1-13091 (13091) [001] d..2 24577.601974: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
134077              ps-13422 (13422) [004] d..2 24577.601975: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134078 shell svc 13418-13419 ( 1007) [004] d..2 24577.601981: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134079     kworker/1:1-13091 (13091) [001] d..3 24577.601983: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
134080              ps-13422 (13422) [004] d..2 24577.601986: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134081          <idle>-0     (-----) [002] .n.1 24577.601987: cpu_idle: state=4294967295 cpu_id=2
134082              ps-13422 (13422) [004] dn.3 24577.601988: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134083              ps-13422 (13422) [004] d..2 24577.601990: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134084          <idle>-0     (-----) [002] d..2 24577.601993: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
134085     kworker/1:1-13091 (13091) [001] d..2 24577.601996: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134086 shell svc 13418-13419 ( 1007) [004] d..2 24577.601996: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134087          <idle>-0     (-----) [001] d..1 24577.602001: cpu_idle: state=0 cpu_id=1
134088            adbd-23485 ( 1007) [002] d..2 24577.602013: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134089          <idle>-0     (-----) [002] d..1 24577.602019: cpu_idle: state=0 cpu_id=2
134090              ps-13422 (13422) [004] d..2 24577.602091: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134091              ps-13422 (13422) [004] dn.3 24577.602095: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134092              ps-13422 (13422) [004] d..2 24577.602097: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134093          <idle>-0     (-----) [001] d.h3 24577.602099: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134094          <idle>-0     (-----) [001] dnh4 24577.602104: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134095 shell svc 13418-13419 ( 1007) [004] d..2 24577.602106: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134096          <idle>-0     (-----) [001] .n.1 24577.602108: cpu_idle: state=4294967295 cpu_id=1
134097              ps-13422 (13422) [004] d..2 24577.602110: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134098              ps-13422 (13422) [004] dn.3 24577.602112: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134099          <idle>-0     (-----) [001] d..2 24577.602113: 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
134100              ps-13422 (13422) [004] d..2 24577.602114: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134101   kworker/u17:2-23076 (23076) [001] d..2 24577.602119: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134102 shell svc 13418-13419 ( 1007) [004] d..2 24577.602121: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134103   kworker/u17:2-23076 (23076) [001] d..3 24577.602124: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134104              ps-13422 (13422) [004] d..2 24577.602125: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134105              ps-13422 (13422) [004] dn.3 24577.602127: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134106              ps-13422 (13422) [004] d..2 24577.602129: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134107 shell svc 13418-13419 ( 1007) [004] d..2 24577.602135: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134108   kworker/u17:2-23076 (23076) [001] d..2 24577.602140: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
134109     kworker/1:1-13091 (13091) [001] d..2 24577.602146: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
134110     kworker/1:1-13091 (13091) [001] d..3 24577.602154: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
134111     kworker/1:1-13091 (13091) [001] d..2 24577.602162: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
134112            adbd-23484 ( 1007) [001] d..2 24577.602173: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
134113            adbd-23484 ( 1007) [001] d..3 24577.602179: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
134114            adbd-23484 ( 1007) [001] d..2 24577.602222: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
134115            adbd-1007  ( 1007) [001] d..1 24577.602292: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
134116            adbd-1007  ( 1007) [001] d..2 24577.602304: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
134117          <idle>-0     (-----) [002] .n.1 24577.602309: cpu_idle: state=4294967295 cpu_id=2
134118          <idle>-0     (-----) [002] d..2 24577.602315: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
134119            adbd-1007  ( 1007) [001] d..2 24577.602338: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134120          <idle>-0     (-----) [001] d..1 24577.602346: cpu_idle: state=0 cpu_id=1
134121              ps-13422 (13422) [004] d..2 24577.602358: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134122              ps-13422 (13422) [004] dn.3 24577.602362: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134123            adbd-23485 ( 1007) [002] d..2 24577.602362: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134124              ps-13422 (13422) [004] d..2 24577.602364: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134125          <idle>-0     (-----) [002] d..1 24577.602369: cpu_idle: state=0 cpu_id=2
134126 shell svc 13418-13419 ( 1007) [004] d..2 24577.602374: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134127              ps-13422 (13422) [004] d..2 24577.602379: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134128              ps-13422 (13422) [004] dn.3 24577.602381: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134129              ps-13422 (13422) [004] d..2 24577.602383: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134130          <idle>-0     (-----) [001] d.h3 24577.602385: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134131 shell svc 13418-13419 ( 1007) [004] d..2 24577.602389: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134132          <idle>-0     (-----) [001] dnh4 24577.602391: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134133              ps-13422 (13422) [004] d..2 24577.602393: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134134              ps-13422 (13422) [004] dn.3 24577.602395: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134135          <idle>-0     (-----) [001] .n.1 24577.602397: cpu_idle: state=4294967295 cpu_id=1
134136              ps-13422 (13422) [004] d..2 24577.602397: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134137          <idle>-0     (-----) [001] d..2 24577.602403: 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
134138 shell svc 13418-13419 ( 1007) [004] d..2 24577.602404: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134139              ps-13422 (13422) [004] d..2 24577.602407: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134140              ps-13422 (13422) [004] dn.3 24577.602410: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134141   kworker/u17:2-23076 (23076) [001] d..2 24577.602411: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134142              ps-13422 (13422) [004] d..2 24577.602412: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134143   kworker/u17:2-23076 (23076) [001] d..3 24577.602416: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134144 shell svc 13418-13419 ( 1007) [004] d..2 24577.602417: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134145              ps-13422 (13422) [004] d..2 24577.602421: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134146              ps-13422 (13422) [004] dn.3 24577.602423: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134147              ps-13422 (13422) [004] d..2 24577.602425: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134148 shell svc 13418-13419 ( 1007) [004] d..2 24577.602431: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134149   kworker/u17:2-23076 (23076) [001] d..2 24577.602432: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
134150              ps-13422 (13422) [004] d..2 24577.602434: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134151              ps-13422 (13422) [004] dn.3 24577.602437: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134152     kworker/1:1-13091 (13091) [001] d..2 24577.602438: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
134153              ps-13422 (13422) [004] d..2 24577.602439: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134154 shell svc 13418-13419 ( 1007) [004] d..2 24577.602444: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134155     kworker/1:1-13091 (13091) [001] d..3 24577.602447: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
134156              ps-13422 (13422) [004] d..2 24577.602448: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134157              ps-13422 (13422) [004] dn.3 24577.602450: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134158          <idle>-0     (-----) [002] .n.1 24577.602452: cpu_idle: state=4294967295 cpu_id=2
134159              ps-13422 (13422) [004] d..2 24577.602453: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134160          <idle>-0     (-----) [002] d..2 24577.602458: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
134161 shell svc 13418-13419 ( 1007) [004] d..2 24577.602459: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134162     kworker/1:1-13091 (13091) [001] d..2 24577.602461: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134163              ps-13422 (13422) [004] d..2 24577.602463: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134164              ps-13422 (13422) [004] dn.3 24577.602465: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134165              ps-13422 (13422) [004] d..2 24577.602467: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134166          <idle>-0     (-----) [001] d..1 24577.602467: cpu_idle: state=0 cpu_id=1
134167 shell svc 13418-13419 ( 1007) [004] d..2 24577.602473: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134168              ps-13422 (13422) [004] d..2 24577.602477: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134169              ps-13422 (13422) [004] dn.3 24577.602479: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134170              ps-13422 (13422) [004] d..2 24577.602481: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134171 shell svc 13418-13419 ( 1007) [004] d..2 24577.602487: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134172            adbd-23485 ( 1007) [002] d..2 24577.602504: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134173          <idle>-0     (-----) [002] d..1 24577.602511: cpu_idle: state=0 cpu_id=2
134174          <idle>-0     (-----) [001] d.h3 24577.602534: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134175          <idle>-0     (-----) [001] dnh4 24577.602539: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134176          <idle>-0     (-----) [001] .n.1 24577.602544: cpu_idle: state=4294967295 cpu_id=1
134177          <idle>-0     (-----) [001] d..2 24577.602549: 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
134178   kworker/u17:2-23076 (23076) [001] d..2 24577.602556: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134179   kworker/u17:2-23076 (23076) [001] d..3 24577.602561: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134180   kworker/u17:2-23076 (23076) [001] d..2 24577.602577: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
134181              ps-13422 (13422) [004] d..2 24577.602579: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134182     kworker/1:1-13091 (13091) [001] d..2 24577.602582: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
134183              ps-13422 (13422) [004] dn.3 24577.602583: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134184              ps-13422 (13422) [004] d..2 24577.602585: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134185     kworker/1:1-13091 (13091) [001] d..3 24577.602591: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
134186 shell svc 13418-13419 ( 1007) [004] d..2 24577.602593: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134187          <idle>-0     (-----) [002] .n.1 24577.602596: cpu_idle: state=4294967295 cpu_id=2
134188              ps-13422 (13422) [004] d..2 24577.602598: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134189              ps-13422 (13422) [004] dn.3 24577.602600: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134190          <idle>-0     (-----) [002] d..2 24577.602602: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
134191              ps-13422 (13422) [004] d..2 24577.602602: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134192     kworker/1:1-13091 (13091) [001] d..2 24577.602605: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134193 shell svc 13418-13419 ( 1007) [004] d..2 24577.602609: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134194          <idle>-0     (-----) [001] d..1 24577.602610: cpu_idle: state=0 cpu_id=1
134195              ps-13422 (13422) [004] d..2 24577.602613: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134196              ps-13422 (13422) [004] dn.3 24577.602615: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134197              ps-13422 (13422) [004] d..2 24577.602617: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134198            adbd-23485 ( 1007) [002] d..2 24577.602619: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134199 shell svc 13418-13419 ( 1007) [004] d..2 24577.602623: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134200          <idle>-0     (-----) [002] d..1 24577.602625: cpu_idle: state=0 cpu_id=2
134201              ps-13422 (13422) [004] d..2 24577.602664: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134202              ps-13422 (13422) [004] dn.3 24577.602668: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134203              ps-13422 (13422) [004] d..2 24577.602670: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134204 shell svc 13418-13419 ( 1007) [004] d..2 24577.602678: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134205          <idle>-0     (-----) [001] d.h3 24577.602701: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134206          <idle>-0     (-----) [001] dnh4 24577.602706: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134207          <idle>-0     (-----) [001] .n.1 24577.602710: cpu_idle: state=4294967295 cpu_id=1
134208          <idle>-0     (-----) [001] d..2 24577.602716: 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
134209              ps-13422 (13422) [004] d..2 24577.602716: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134210              ps-13422 (13422) [004] dn.3 24577.602719: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134211   kworker/u17:2-23076 (23076) [001] d..2 24577.602722: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134212              ps-13422 (13422) [004] d..2 24577.602722: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134213   kworker/u17:2-23076 (23076) [001] d..3 24577.602727: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134214 shell svc 13418-13419 ( 1007) [004] d..2 24577.602730: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134215   kworker/u17:2-23076 (23076) [001] d..2 24577.602742: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
134216     kworker/1:1-13091 (13091) [001] d..2 24577.602748: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
134217     kworker/1:1-13091 (13091) [001] d..3 24577.602757: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
134218     kworker/1:1-13091 (13091) [001] d..2 24577.602764: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
134219              ps-13422 (13422) [004] d..2 24577.602768: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134220              ps-13422 (13422) [004] dn.3 24577.602771: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134221              ps-13422 (13422) [004] d..2 24577.602773: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134222            adbd-23484 ( 1007) [001] d..2 24577.602775: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
134223            adbd-23484 ( 1007) [001] d..3 24577.602781: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
134224 shell svc 13418-13419 ( 1007) [004] d..2 24577.602781: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134225              ps-13422 (13422) [004] d..2 24577.602823: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134226            adbd-23484 ( 1007) [001] d..2 24577.602824: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
134227              ps-13422 (13422) [004] dn.3 24577.602826: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134228              ps-13422 (13422) [004] d..2 24577.602828: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134229 shell svc 13418-13419 ( 1007) [004] d..2 24577.602836: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134230              ps-13422 (13422) [004] d..2 24577.602876: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134231              ps-13422 (13422) [004] dn.3 24577.602880: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134232              ps-13422 (13422) [004] d..2 24577.602882: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134233 shell svc 13418-13419 ( 1007) [004] d..2 24577.602890: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134234            adbd-1007  ( 1007) [001] d..1 24577.602900: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
134235            adbd-1007  ( 1007) [001] d..2 24577.602912: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
134236          <idle>-0     (-----) [002] .n.1 24577.602916: cpu_idle: state=4294967295 cpu_id=2
134237          <idle>-0     (-----) [002] d..2 24577.602922: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
134238            adbd-1007  ( 1007) [001] d..2 24577.602946: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134239          <idle>-0     (-----) [001] d..1 24577.602954: cpu_idle: state=0 cpu_id=1
134240            adbd-23485 ( 1007) [002] d..2 24577.602969: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134241          <idle>-0     (-----) [002] d..1 24577.602976: cpu_idle: state=0 cpu_id=2
134242          <idle>-0     (-----) [001] d.h3 24577.602992: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134243          <idle>-0     (-----) [001] dnh4 24577.602998: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134244          <idle>-0     (-----) [001] .n.1 24577.603003: cpu_idle: state=4294967295 cpu_id=1
134245          <idle>-0     (-----) [001] d..2 24577.603009: 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
134246   kworker/u17:2-23076 (23076) [001] d..2 24577.603017: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134247   kworker/u17:2-23076 (23076) [001] d..3 24577.603022: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134248   kworker/u17:2-23076 (23076) [001] d..2 24577.603038: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
134249     kworker/1:1-13091 (13091) [001] d..2 24577.603043: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
134250     kworker/1:1-13091 (13091) [001] d..3 24577.603052: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
134251          <idle>-0     (-----) [002] .n.1 24577.603057: cpu_idle: state=4294967295 cpu_id=2
134252          <idle>-0     (-----) [002] d..2 24577.603063: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
134253     kworker/1:1-13091 (13091) [001] d..2 24577.603066: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134254          <idle>-0     (-----) [001] d..1 24577.603071: cpu_idle: state=0 cpu_id=1
134255    RenderThread-25194 (24827) [000] d..2 24577.603077: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
134256            adbd-23485 ( 1007) [002] d..2 24577.603108: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134257          <idle>-0     (-----) [002] d..1 24577.603115: cpu_idle: state=0 cpu_id=2
134258  Binder:23896_4-24423 (23896) [000] d..2 24577.603121: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
134259          <idle>-0     (-----) [000] d..1 24577.603129: cpu_idle: state=0 cpu_id=0
134260          <idle>-0     (-----) [001] d.h3 24577.603147: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134261          <idle>-0     (-----) [001] dnh4 24577.603152: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134262          <idle>-0     (-----) [001] .n.1 24577.603157: cpu_idle: state=4294967295 cpu_id=1
134263          <idle>-0     (-----) [001] d..2 24577.603162: 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
134264   kworker/u17:2-23076 (23076) [001] d..2 24577.603169: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134265          <idle>-0     (-----) [000] d.h2 24577.603173: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
134266   kworker/u17:2-23076 (23076) [001] d..3 24577.603175: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134267          <idle>-0     (-----) [000] d.h3 24577.603181: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
134268          <idle>-0     (-----) [000] dnh3 24577.603184: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
134269          <idle>-0     (-----) [000] .n.1 24577.603189: cpu_idle: state=4294967295 cpu_id=0
134270   kworker/u17:2-23076 (23076) [001] d..2 24577.603190: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
134271     kworker/1:1-13091 (13091) [001] d..2 24577.603195: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
134272          <idle>-0     (-----) [000] d..2 24577.603196: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
134273     kworker/1:1-13091 (13091) [001] d..3 24577.603204: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
134274          <idle>-0     (-----) [002] .n.1 24577.603208: cpu_idle: state=4294967295 cpu_id=2
134275          <idle>-0     (-----) [002] d..2 24577.603215: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
134276     kworker/1:1-13091 (13091) [001] d..2 24577.603217: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134277          <idle>-0     (-----) [001] d..1 24577.603223: cpu_idle: state=0 cpu_id=1
134278            adbd-23485 ( 1007) [002] d..2 24577.603230: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134279          <idle>-0     (-----) [002] d..1 24577.603236: cpu_idle: state=0 cpu_id=2
134280          <idle>-0     (-----) [001] d.h3 24577.603313: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134281          <idle>-0     (-----) [001] dnh4 24577.603322: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134282          <idle>-0     (-----) [001] .n.1 24577.603326: cpu_idle: state=4294967295 cpu_id=1
134283          <idle>-0     (-----) [001] d..2 24577.603332: 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
134284   kworker/u17:2-23076 (23076) [001] d..2 24577.603338: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134285   kworker/u17:2-23076 (23076) [001] d..3 24577.603343: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134286   kworker/u17:2-23076 (23076) [001] d..2 24577.603358: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
134287    RenderThread-25194 (24827) [000] .... 24577.603363: binder_transaction: transaction=1671685 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
134288     kworker/1:1-13091 (13091) [001] d..2 24577.603364: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
134289     kworker/1:1-13091 (13091) [001] d..3 24577.603372: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
134290    RenderThread-25194 (24827) [000] ...2 24577.603373: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
134291    RenderThread-25194 (24827) [000] d..4 24577.603375: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
134292     kworker/1:1-13091 (13091) [001] d..2 24577.603380: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
134293    RenderThread-25194 (24827) [000] d..5 24577.603384: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
134294            adbd-23484 ( 1007) [001] d..2 24577.603391: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
134295              ps-13422 (13422) [004] d..2 24577.603392: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134296    RenderThread-25194 (24827) [000] d..2 24577.603393: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
134297              ps-13422 (13422) [004] dn.3 24577.603396: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134298            adbd-23484 ( 1007) [001] d..3 24577.603398: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
134299  Binder:23896_4-24423 (23896) [000] .... 24577.603398: binder_transaction_received: transaction=1671685
134300              ps-13422 (13422) [004] d..2 24577.603399: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134301 shell svc 13418-13419 ( 1007) [004] d..2 24577.603409: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134302            adbd-23484 ( 1007) [001] d..2 24577.603442: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
134303              ps-13422 (13422) [004] d..2 24577.603449: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134304              ps-13422 (13422) [004] dn.3 24577.603452: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134305              ps-13422 (13422) [004] d..2 24577.603455: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134306 shell svc 13418-13419 ( 1007) [004] d..2 24577.603462: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134307              ps-13422 (13422) [004] d..2 24577.603500: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134308            adbd-1007  ( 1007) [001] d..1 24577.603502: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
134309              ps-13422 (13422) [004] dn.3 24577.603503: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134310  Binder:23896_4-24423 (23896) [000] .... 24577.603505: binder_transaction: transaction=1671686 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
134311              ps-13422 (13422) [004] d..2 24577.603506: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134312  Binder:23896_4-24423 (23896) [000] d..2 24577.603510: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
134313 shell svc 13418-13419 ( 1007) [004] d..2 24577.603514: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134314            adbd-1007  ( 1007) [001] d..2 24577.603514: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
134315  Binder:23896_4-24423 (23896) [000] d..3 24577.603518: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
134316          <idle>-0     (-----) [002] .n.1 24577.603519: cpu_idle: state=4294967295 cpu_id=2
134317  Binder:23896_4-24423 (23896) [000] .... 24577.603520: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
134318          <idle>-0     (-----) [002] d..2 24577.603524: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
134319  Binder:23896_4-24423 (23896) [000] d..2 24577.603547: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
134320            adbd-1007  ( 1007) [001] d..2 24577.603549: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134321    RenderThread-25194 (24827) [000] .... 24577.603551: binder_transaction_received: transaction=1671686
134322              ps-13422 (13422) [004] d..2 24577.603552: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134323              ps-13422 (13422) [004] dn.3 24577.603555: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134324          <idle>-0     (-----) [001] d..1 24577.603557: cpu_idle: state=0 cpu_id=1
134325              ps-13422 (13422) [004] d..2 24577.603557: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134326 shell svc 13418-13419 ( 1007) [004] d..2 24577.603565: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134327            adbd-23485 ( 1007) [002] d..2 24577.603569: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134328          <idle>-0     (-----) [002] d..1 24577.603575: cpu_idle: state=0 cpu_id=2
134329          <idle>-0     (-----) [001] d.h3 24577.603594: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134330          <idle>-0     (-----) [001] dnh4 24577.603600: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134331              ps-13422 (13422) [004] d..2 24577.603602: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134332              ps-13422 (13422) [004] dn.3 24577.603605: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134333          <idle>-0     (-----) [001] .n.1 24577.603605: cpu_idle: state=4294967295 cpu_id=1
134334              ps-13422 (13422) [004] d..2 24577.603607: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134335          <idle>-0     (-----) [001] d..2 24577.603612: 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
134336 shell svc 13418-13419 ( 1007) [004] d..2 24577.603615: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134337    RenderThread-25194 (24827) [000] d..2 24577.603616: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
134338   kworker/u17:2-23076 (23076) [001] d..2 24577.603620: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134339   kworker/u17:2-23076 (23076) [001] d..3 24577.603625: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134340          <idle>-0     (-----) [000] d..1 24577.603626: cpu_idle: state=0 cpu_id=0
134341   kworker/u17:2-23076 (23076) [001] d..2 24577.603641: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
134342     kworker/1:1-13091 (13091) [001] d..2 24577.603647: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
134343              ps-13422 (13422) [004] d..2 24577.603654: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134344     kworker/1:1-13091 (13091) [001] d..3 24577.603656: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
134345              ps-13422 (13422) [004] dn.3 24577.603657: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134346              ps-13422 (13422) [004] d..2 24577.603659: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134347          <idle>-0     (-----) [002] .n.1 24577.603661: cpu_idle: state=4294967295 cpu_id=2
134348          <idle>-0     (-----) [002] d..2 24577.603667: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
134349 shell svc 13418-13419 ( 1007) [004] d..2 24577.603667: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134350     kworker/1:1-13091 (13091) [001] d..2 24577.603669: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134351          <idle>-0     (-----) [001] d..1 24577.603675: cpu_idle: state=0 cpu_id=1
134352              ps-13422 (13422) [004] d..2 24577.603710: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134353            adbd-23485 ( 1007) [002] d..2 24577.603712: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134354              ps-13422 (13422) [004] dn.3 24577.603713: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134355              ps-13422 (13422) [004] d..2 24577.603715: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134356          <idle>-0     (-----) [002] d..1 24577.603719: cpu_idle: state=0 cpu_id=2
134357          <idle>-0     (-----) [001] d.h3 24577.603720: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134358 shell svc 13418-13419 ( 1007) [004] d..2 24577.603723: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134359          <idle>-0     (-----) [001] dnh4 24577.603726: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134360          <idle>-0     (-----) [001] .n.1 24577.603730: cpu_idle: state=4294967295 cpu_id=1
134361          <idle>-0     (-----) [001] d..2 24577.603736: 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
134362   kworker/u17:2-23076 (23076) [001] d..2 24577.603742: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134363   kworker/u17:2-23076 (23076) [001] d..3 24577.603748: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134364              ps-13422 (13422) [004] d..2 24577.603763: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134365   kworker/u17:2-23076 (23076) [001] d..2 24577.603763: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
134366              ps-13422 (13422) [004] dn.3 24577.603766: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134367     kworker/1:1-13091 (13091) [001] d..2 24577.603768: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
134368              ps-13422 (13422) [004] d..2 24577.603769: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134369 shell svc 13418-13419 ( 1007) [004] d..2 24577.603777: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134370     kworker/1:1-13091 (13091) [001] d..3 24577.603791: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
134371          <idle>-0     (-----) [000] .n.1 24577.603797: cpu_idle: state=4294967295 cpu_id=0
134372          <idle>-0     (-----) [000] d..2 24577.603804: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
134373     kworker/1:1-13091 (13091) [001] d..2 24577.603806: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134374          <idle>-0     (-----) [001] d..1 24577.603811: cpu_idle: state=0 cpu_id=1
134375              ps-13422 (13422) [004] d..2 24577.603817: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134376              ps-13422 (13422) [004] dn.3 24577.603821: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134377              ps-13422 (13422) [004] d..2 24577.603823: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134378            adbd-23485 ( 1007) [000] d..2 24577.603830: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
134379 shell svc 13418-13419 ( 1007) [004] d..2 24577.603831: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134380          <idle>-0     (-----) [000] d..1 24577.603837: cpu_idle: state=0 cpu_id=0
134381          <idle>-0     (-----) [001] d.h3 24577.603882: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134382          <idle>-0     (-----) [001] dnh4 24577.603887: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134383          <idle>-0     (-----) [001] .n.1 24577.603892: cpu_idle: state=4294967295 cpu_id=1
134384          <idle>-0     (-----) [001] d..2 24577.603897: 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
134385   kworker/u17:2-23076 (23076) [001] d..2 24577.603904: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134386   kworker/u17:2-23076 (23076) [001] d..3 24577.603909: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134387   kworker/u17:2-23076 (23076) [001] d..2 24577.603926: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
134388     kworker/1:1-13091 (13091) [001] d..2 24577.603932: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
134389     kworker/1:1-13091 (13091) [001] d..3 24577.603941: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
134390     kworker/1:1-13091 (13091) [001] d..2 24577.603949: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
134391            adbd-23484 ( 1007) [001] d..2 24577.603960: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
134392            adbd-23484 ( 1007) [001] d..3 24577.603965: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
134393              ps-13422 (13422) [004] d..2 24577.603996: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134394              ps-13422 (13422) [004] dn.3 24577.604000: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134395              ps-13422 (13422) [004] d..2 24577.604002: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134396            adbd-23484 ( 1007) [001] d..2 24577.604009: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
134397 shell svc 13418-13419 ( 1007) [004] d..2 24577.604011: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134398              ps-13422 (13422) [004] d..2 24577.604016: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134399              ps-13422 (13422) [004] dn.3 24577.604018: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134400              ps-13422 (13422) [004] d..2 24577.604020: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134401 shell svc 13418-13419 ( 1007) [004] d..2 24577.604027: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134402              ps-13422 (13422) [004] d..2 24577.604031: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134403              ps-13422 (13422) [004] dn.3 24577.604033: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134404              ps-13422 (13422) [004] d..2 24577.604035: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134405 shell svc 13418-13419 ( 1007) [004] d..2 24577.604041: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134406              ps-13422 (13422) [004] d..2 24577.604044: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134407              ps-13422 (13422) [004] dn.3 24577.604046: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134408              ps-13422 (13422) [004] d..2 24577.604049: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134409 shell svc 13418-13419 ( 1007) [004] d..2 24577.604055: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134410              ps-13422 (13422) [004] d..2 24577.604059: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134411              ps-13422 (13422) [004] dn.3 24577.604061: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134412              ps-13422 (13422) [004] d..2 24577.604063: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134413 shell svc 13418-13419 ( 1007) [004] d..2 24577.604070: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134414              ps-13422 (13422) [004] d..2 24577.604073: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134415              ps-13422 (13422) [004] dn.3 24577.604076: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134416              ps-13422 (13422) [004] d..2 24577.604077: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134417            adbd-1007  ( 1007) [001] d..1 24577.604080: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
134418 shell svc 13418-13419 ( 1007) [004] d..2 24577.604084: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134419            adbd-1007  ( 1007) [001] d..2 24577.604092: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
134420          <idle>-0     (-----) [000] .n.1 24577.604097: cpu_idle: state=4294967295 cpu_id=0
134421          <idle>-0     (-----) [000] d..2 24577.604103: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
134422              ps-13422 (13422) [004] d..2 24577.604125: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134423            adbd-1007  ( 1007) [001] d..2 24577.604126: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134424              ps-13422 (13422) [004] dn.3 24577.604128: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134425              ps-13422 (13422) [004] d..2 24577.604130: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134426          <idle>-0     (-----) [001] d..1 24577.604133: cpu_idle: state=0 cpu_id=1
134427 shell svc 13418-13419 ( 1007) [004] d..2 24577.604138: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134428            adbd-23485 ( 1007) [000] d..2 24577.604153: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
134429          <idle>-0     (-----) [000] d..1 24577.604160: cpu_idle: state=0 cpu_id=0
134430              ps-13422 (13422) [004] d..2 24577.604176: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134431          <idle>-0     (-----) [001] d.h3 24577.604179: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134432              ps-13422 (13422) [004] dn.3 24577.604179: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134433              ps-13422 (13422) [004] d..2 24577.604182: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134434          <idle>-0     (-----) [001] dnh4 24577.604185: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134435 shell svc 13418-13419 ( 1007) [004] d..2 24577.604190: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134436          <idle>-0     (-----) [001] .n.1 24577.604190: cpu_idle: state=4294967295 cpu_id=1
134437          <idle>-0     (-----) [001] d..2 24577.604197: 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
134438   kworker/u17:2-23076 (23076) [001] d.h1 24577.604202: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=001
134439   kworker/u17:2-23076 (23076) [001] d.h2 24577.604220: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
134440              ps-13422 (13422) [004] d.s2 24577.604225: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
134441          <idle>-0     (-----) [003] dns2 24577.604236: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
134442   kworker/u17:2-23076 (23076) [001] d..2 24577.604244: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134443          <idle>-0     (-----) [003] dns3 24577.604247: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
134444   kworker/u17:2-23076 (23076) [001] d..3 24577.604250: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134445          <idle>-0     (-----) [003] dnH3 24577.604253: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
134446          <idle>-0     (-----) [003] .n.1 24577.604261: cpu_idle: state=4294967295 cpu_id=3
134447              ps-13422 (13422) [004] d..2 24577.604263: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134448          <idle>-0     (-----) [003] d..2 24577.604266: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
134449              ps-13422 (13422) [004] dn.3 24577.604266: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134450   kworker/u17:2-23076 (23076) [001] d..2 24577.604267: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
134451              ps-13422 (13422) [004] d..2 24577.604269: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134452     kworker/1:1-13091 (13091) [001] d..2 24577.604273: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
134453 shell svc 13418-13419 ( 1007) [004] d..2 24577.604278: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134454     kworker/1:1-13091 (13091) [001] d..3 24577.604282: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
134455        DispSync-23904 (23896) [003] d..1 24577.604282: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
134456          <idle>-0     (-----) [000] .n.1 24577.604287: cpu_idle: state=4294967295 cpu_id=0
134457          <idle>-0     (-----) [000] d..2 24577.604295: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
134458        DispSync-23904 (23896) [003] d..2 24577.604300: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
134459     kworker/1:1-13091 (13091) [001] d..2 24577.604305: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=sfEventThread next_pid=23906 next_prio=97
134460              ps-13422 (13422) [004] d..2 24577.604321: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134461        DispSync-23904 (23896) [003] d..2 24577.604321: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
134462              ps-13422 (13422) [004] dn.3 24577.604324: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134463              ps-13422 (13422) [004] d..2 24577.604326: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134464     rcu_preempt-7     (    7) [003] d..2 24577.604330: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
134465 shell svc 13418-13419 ( 1007) [004] d..2 24577.604335: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134466   sfEventThread-23906 (23896) [001] d..3 24577.604343: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
134467     rcu_preempt-7     (    7) [003] d..3 24577.604348: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
134468            adbd-23485 ( 1007) [000] d..2 24577.604355: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
134469     rcu_preempt-7     (    7) [003] d..2 24577.604359: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
134470   sfEventThread-23906 (23896) [001] d..4 24577.604362: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
134471          <idle>-0     (-----) [002] .n.1 24577.604367: cpu_idle: state=4294967295 cpu_id=2
134472          <idle>-0     (-----) [002] d..2 24577.604373: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
134473              ps-13422 (13422) [004] d..2 24577.604375: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134474              ps-13422 (13422) [004] dn.3 24577.604378: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134475              ps-13422 (13422) [004] d..2 24577.604380: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134476   sfEventThread-23906 (23896) [001] d.h3 24577.604382: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134477     rcu_preempt-7     (    7) [003] d..3 24577.604383: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
134478 shell svc 13418-13419 ( 1007) [004] d..2 24577.604388: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134479         rcuop/2-29    (   29) [000] d..2 24577.604389: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
134480     rcu_preempt-7     (    7) [003] d..2 24577.604397: 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
134481   sfEventThread-23906 (23896) [001] d.h4 24577.604408: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
134482         rcuop/2-29    (   29) [000] dn.3 24577.604418: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
134483              ps-13422 (13422) [004] d..2 24577.604427: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134484              ps-13422 (13422) [004] dn.3 24577.604430: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134485   sfEventThread-23906 (23896) [001] d..2 24577.604431: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
134486              ps-13422 (13422) [004] d..2 24577.604433: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134487         rcuop/2-29    (   29) [000] d..2 24577.604433: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
134488         rcuop/0-10    (   10) [001] d..2 24577.604436: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
134489 shell svc 13418-13419 ( 1007) [004] d..2 24577.604440: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134490   kworker/u17:2-23076 (23076) [000] d..2 24577.604446: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
134491   kworker/u17:2-23076 (23076) [000] d..3 24577.604453: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
134492         rcuop/0-10    (   10) [001] d..3 24577.604457: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
134493         rcuop/0-10    (   10) [001] d..2 24577.604463: 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
134494         rcuop/1-21    (   21) [001] d..2 24577.604473: 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
134495   kworker/u17:2-23076 (23076) [000] d..2 24577.604474: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
134496              ps-13422 (13422) [004] d..2 24577.604477: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134497              ps-13422 (13422) [004] dn.3 24577.604480: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134498              ps-13422 (13422) [004] d..2 24577.604483: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134499         rcuop/3-37    (   37) [000] d..2 24577.604484: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
134500     kworker/0:1-13012 (13012) [000] d..2 24577.604490: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
134501 shell svc 13418-13419 ( 1007) [004] d..2 24577.604491: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134502          <idle>-0     (-----) [001] d..1 24577.604498: cpu_idle: state=0 cpu_id=1
134503     kworker/0:1-13012 (13012) [000] d..3 24577.604515: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
134504     kworker/0:1-13012 (13012) [000] d..2 24577.604526: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
134505          <idle>-0     (-----) [001] dnh3 24577.604529: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
134506              ps-13422 (13422) [004] d..2 24577.604533: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134507              ps-13422 (13422) [004] dn.3 24577.604536: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134508              ps-13422 (13422) [004] d..2 24577.604538: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134509          <idle>-0     (-----) [001] dnh4 24577.604543: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
134510 shell svc 13418-13419 ( 1007) [004] d..2 24577.604547: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134511         rcuop/2-29    (   29) [000] d..2 24577.604547: 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
134512          <idle>-0     (-----) [001] .n.1 24577.604556: cpu_idle: state=4294967295 cpu_id=1
134513   kworker/u17:2-23076 (23076) [000] d..2 24577.604557: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
134514          <idle>-0     (-----) [001] d..2 24577.604562: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
134515   kworker/u17:2-23076 (23076) [000] d..3 24577.604562: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
134516              ps-13422 (13422) [004] d..2 24577.604584: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134517            adbd-23485 ( 1007) [001] d..2 24577.604585: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134518              ps-13422 (13422) [004] dn.3 24577.604588: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134519              ps-13422 (13422) [004] d..2 24577.604591: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134520          <idle>-0     (-----) [001] d..1 24577.604592: cpu_idle: state=0 cpu_id=1
134521   kworker/u17:2-23076 (23076) [000] d.h3 24577.604595: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
134522 shell svc 13418-13419 ( 1007) [004] d..2 24577.604599: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134523   kworker/u17:2-23076 (23076) [000] d.h4 24577.604612: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
134524          <idle>-0     (-----) [001] .n.1 24577.604617: cpu_idle: state=4294967295 cpu_id=1
134525          <idle>-0     (-----) [001] d..2 24577.604623: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
134526   kworker/u17:2-23076 (23076) [000] d..2 24577.604626: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
134527     kworker/0:1-13012 (13012) [000] d..2 24577.604633: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
134528              ps-13422 (13422) [004] d..2 24577.604636: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134529              ps-13422 (13422) [004] dn.3 24577.604639: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134530  kworker/u16:10-23868 (23868) [003] d..2 24577.604641: 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
134531              ps-13422 (13422) [004] d..2 24577.604641: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134532  surfaceflinger-23896 (23896) [002] d..1 24577.604644: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
134533 shell svc 13418-13419 ( 1007) [004] d..2 24577.604649: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134534     kworker/0:1-13012 (13012) [000] d..3 24577.604655: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
134535 kgsl_worker_thr-246   (  246) [001] d..2 24577.604664: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
134536  surfaceflinger-23896 (23896) [002] d..2 24577.604668: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
134537     kworker/0:1-13012 (13012) [000] d..2 24577.604676: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=sfEventThread next_pid=23906 next_prio=97
134538          <idle>-0     (-----) [003] dns3 24577.604679: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
134539              ps-13422 (13422) [004] d..2 24577.604686: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134540              ps-13422 (13422) [004] dn.3 24577.604689: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134541 kgsl_worker_thr-246   (  246) [001] d..3 24577.604690: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
134542              ps-13422 (13422) [004] d..2 24577.604692: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134543          <idle>-0     (-----) [003] dns4 24577.604698: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
134544 shell svc 13418-13419 ( 1007) [004] d..2 24577.604700: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134545          <idle>-0     (-----) [003] dns4 24577.604701: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
134546   sfEventThread-23906 (23896) [000] d..2 24577.604710: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
134547 kgsl_worker_thr-246   (  246) [001] d..2 24577.604711: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134548          <idle>-0     (-----) [001] d..1 24577.604718: cpu_idle: state=0 cpu_id=1
134549          <idle>-0     (-----) [003] d..2 24577.604720: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
134550            adbd-23484 ( 1007) [003] d..2 24577.604735: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
134551              ps-13422 (13422) [004] d..2 24577.604735: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134552              ps-13422 (13422) [004] dn.3 24577.604738: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134553              ps-13422 (13422) [004] d..2 24577.604740: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134554            adbd-23484 ( 1007) [003] d..3 24577.604747: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
134555 shell svc 13418-13419 ( 1007) [004] d..2 24577.604748: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134556              ps-13422 (13422) [004] d..2 24577.604785: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134557              ps-13422 (13422) [004] dn.3 24577.604788: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134558              ps-13422 (13422) [004] d..2 24577.604791: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134559            adbd-23484 ( 1007) [003] d..2 24577.604791: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
134560 shell svc 13418-13419 ( 1007) [004] d..2 24577.604799: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134561  surfaceflinger-23896 (23896) [002] ...1 24577.604807: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
134562  surfaceflinger-23896 (23896) [002] ...1 24577.604811: tracing_mark_write: E|23896
134563              ps-13422 (13422) [004] d..2 24577.604837: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134564              ps-13422 (13422) [004] dn.3 24577.604840: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134565              ps-13422 (13422) [004] d..2 24577.604842: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134566 shell svc 13418-13419 ( 1007) [004] d..2 24577.604850: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134567  surfaceflinger-23896 (23896) [002] .... 24577.604852: binder_transaction: transaction=1671687 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
134568  kworker/u16:15-18488 (18488) [000] d..2 24577.604862: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
134569            adbd-1007  ( 1007) [003] d..1 24577.604869: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
134570  surfaceflinger-23896 (23896) [002] ...2 24577.604871: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
134571  surfaceflinger-23896 (23896) [002] d..4 24577.604878: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
134572            adbd-1007  ( 1007) [003] d..2 24577.604880: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
134573          <idle>-0     (-----) [001] .n.1 24577.604885: cpu_idle: state=4294967295 cpu_id=1
134574          <idle>-0     (-----) [001] d..2 24577.604893: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
134575  surfaceflinger-23896 (23896) [002] d..5 24577.604898: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
134576              ps-13422 (13422) [004] d..2 24577.604899: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134577              ps-13422 (13422) [004] dn.3 24577.604902: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134578  kworker/u16:10-23868 (23868) [000] d..2 24577.604904: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
134579              ps-13422 (13422) [004] d..2 24577.604904: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134580 shell svc 13418-13419 ( 1007) [004] d..2 24577.604912: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134581  HwBinder:598_3-633   (  598) [000] .... 24577.604915: binder_transaction_received: transaction=1671687
134582            adbd-1007  ( 1007) [003] d..2 24577.604916: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
134583  surfaceflinger-23896 (23896) [002] d..2 24577.604925: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134584          <idle>-0     (-----) [003] d..1 24577.604925: cpu_idle: state=0 cpu_id=3
134585          <idle>-0     (-----) [002] d..1 24577.604935: cpu_idle: state=0 cpu_id=2
134586            adbd-23485 ( 1007) [001] d.h2 24577.604946: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
134587  HwBinder:598_3-633   (  598) [000] ...1 24577.604952: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
134588              ps-13422 (13422) [004] d..2 24577.604953: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134589              ps-13422 (13422) [004] dn.3 24577.604957: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134590            adbd-23485 ( 1007) [001] d.h3 24577.604958: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
134591              ps-13422 (13422) [004] d..2 24577.604959: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134592 shell svc 13418-13419 ( 1007) [004] d..2 24577.604967: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134593            adbd-23485 ( 1007) [001] d..2 24577.604967: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134594          <idle>-0     (-----) [001] d..1 24577.604975: cpu_idle: state=0 cpu_id=1
134595              ps-13422 (13422) [004] d..2 24577.605005: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134596              ps-13422 (13422) [004] dn.3 24577.605009: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134597              ps-13422 (13422) [004] d..2 24577.605011: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134598 shell svc 13418-13419 ( 1007) [004] d..2 24577.605019: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134599  HwBinder:598_3-633   (  598) [000] ...1 24577.605042: tracing_mark_write: B|598|HWCSession::PresentDisplay::
134600              ps-13422 (13422) [004] d..2 24577.605056: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134601              ps-13422 (13422) [004] dn.3 24577.605059: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134602              ps-13422 (13422) [004] d..2 24577.605062: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134603 shell svc 13418-13419 ( 1007) [004] d..2 24577.605069: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134604              ps-13422 (13422) [004] d..2 24577.605107: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134605              ps-13422 (13422) [004] dn.3 24577.605110: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134606              ps-13422 (13422) [004] d..2 24577.605112: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134607 shell svc 13418-13419 ( 1007) [004] d..2 24577.605120: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134608              ps-13422 (13422) [004] d..2 24577.605158: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134609              ps-13422 (13422) [004] dn.3 24577.605161: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134610              ps-13422 (13422) [004] d..2 24577.605164: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134611 shell svc 13418-13419 ( 1007) [004] d..2 24577.605171: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134612  HwBinder:598_3-633   (  598) [000] ...1 24577.605172: tracing_mark_write: B|598|HWDeviceDRM::Commit::
134613  HwBinder:598_3-633   (  598) [000] ...1 24577.605181: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
134614              ps-13422 (13422) [004] d..2 24577.605232: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134615              ps-13422 (13422) [004] dn.3 24577.605235: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134616              ps-13422 (13422) [004] d..2 24577.605237: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134617 shell svc 13418-13419 ( 1007) [004] d..2 24577.605246: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134618              ps-13422 (13422) [004] d..2 24577.605330: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134619              ps-13422 (13422) [004] dn.3 24577.605334: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134620              ps-13422 (13422) [004] d..2 24577.605336: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134621 shell svc 13418-13419 ( 1007) [004] d..2 24577.605345: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134622              ps-13422 (13422) [004] d..2 24577.605481: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134623              ps-13422 (13422) [004] dn.3 24577.605486: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134624              ps-13422 (13422) [004] d..2 24577.605488: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134625 shell svc 13418-13419 ( 1007) [004] d..2 24577.605497: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134626              ps-13422 (13422) [004] d..2 24577.605502: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134627              ps-13422 (13422) [004] dn.3 24577.605504: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134628              ps-13422 (13422) [004] d..2 24577.605506: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134629 shell svc 13418-13419 ( 1007) [004] d..2 24577.605513: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134630              ps-13422 (13422) [004] d..2 24577.605516: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134631              ps-13422 (13422) [004] dn.3 24577.605519: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134632              ps-13422 (13422) [004] d..2 24577.605521: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134633 shell svc 13418-13419 ( 1007) [004] d..2 24577.605527: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134634              ps-13422 (13422) [004] d..2 24577.605531: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134635              ps-13422 (13422) [004] dn.3 24577.605533: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134636              ps-13422 (13422) [004] d..2 24577.605535: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134637 shell svc 13418-13419 ( 1007) [004] d..2 24577.605541: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134638  HwBinder:598_3-633   (  598) [000] d..2 24577.605595: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
134639  HwBinder:598_3-633   (  598) [000] d..3 24577.605611: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
134640          <idle>-0     (-----) [002] .n.1 24577.605617: cpu_idle: state=4294967295 cpu_id=2
134641          <idle>-0     (-----) [002] d..2 24577.605623: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
134642              ps-13422 (13422) [004] d..2 24577.605651: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134643              ps-13422 (13422) [004] dn.3 24577.605654: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134644              ps-13422 (13422) [004] d..2 24577.605657: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134645 shell svc 13418-13419 ( 1007) [004] d..2 24577.605666: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134646              ps-13422 (13422) [004] d..2 24577.605670: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134647              ps-13422 (13422) [004] dn.3 24577.605672: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134648              ps-13422 (13422) [004] d..2 24577.605674: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134649  HwBinder:598_3-633   (  598) [000] ...1 24577.605680: tracing_mark_write: E|598
134650 shell svc 13418-13419 ( 1007) [004] d..2 24577.605681: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134651  HwBinder:598_3-633   (  598) [000] ...1 24577.605684: tracing_mark_write: E|598
134652              ps-13422 (13422) [004] d..2 24577.605685: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134653              ps-13422 (13422) [004] dn.3 24577.605687: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134654              ps-13422 (13422) [004] d..2 24577.605690: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134655 shell svc 13418-13419 ( 1007) [004] d..2 24577.605696: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134656              ps-13422 (13422) [004] d..2 24577.605699: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134657              ps-13422 (13422) [004] dn.3 24577.605702: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134658              ps-13422 (13422) [004] d..2 24577.605703: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134659 shell svc 13418-13419 ( 1007) [004] d..2 24577.605709: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134660  HwBinder:598_3-633   (  598) [000] d.h1 24577.605741: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
134661  HwBinder:598_3-633   (  598) [000] dnh2 24577.605751: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
134662  HwBinder:598_3-633   (  598) [000] d..2 24577.605761: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=98 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
134663          <idle>-0     (-----) [003] .n.1 24577.605784: cpu_idle: state=4294967295 cpu_id=3
134664          <idle>-0     (-----) [003] d..2 24577.605790: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
134665  HwBinder:598_3-633   (  598) [003] ...1 24577.605825: tracing_mark_write: E|598
134666  HwBinder:598_3-633   (  598) [003] ...1 24577.605867: tracing_mark_write: E|598
134667  HwBinder:598_3-633   (  598) [003] .... 24577.605878: binder_transaction: transaction=1671688 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
134668 irq/79-1436400.-24613 (24613) [000] d..2 24577.605886: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
134669   kworker/u17:2-23076 (23076) [000] d..2 24577.605896: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
134670  HwBinder:598_3-633   (  598) [003] d.s1 24577.605901: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
134671   kworker/u17:2-23076 (23076) [000] d..3 24577.605903: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
134672  HwBinder:598_3-633   (  598) [003] d.s2 24577.605913: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
134673   kworker/u17:2-23076 (23076) [000] d..2 24577.605919: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
134674     kworker/0:1-13012 (13012) [000] d..2 24577.605926: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
134675  HwBinder:598_3-633   (  598) [003] d..2 24577.605926: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
134676  HwBinder:598_3-633   (  598) [003] d..3 24577.605943: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
134677          <idle>-0     (-----) [001] .n.1 24577.605948: cpu_idle: state=4294967295 cpu_id=1
134678  HwBinder:598_3-633   (  598) [003] .... 24577.605950: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
134679     kworker/0:1-13012 (13012) [000] d..3 24577.605951: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
134680          <idle>-0     (-----) [001] d..2 24577.605954: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
134681  surfaceflinger-23896 (23896) [001] .... 24577.605959: binder_transaction_received: transaction=1671688
134682     kworker/0:1-13012 (13012) [000] d..2 24577.605961: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
134683  kworker/u16:10-23868 (23868) [000] .... 24577.605985: clk_set_rate: l3_cluster1_vote_clk 1305600000
134684  kworker/u16:10-23868 (23868) [000] .... 24577.605990: clk_set_rate: l3_clk 1305600000
134685  HwBinder:598_3-633   (  598) [003] d..2 24577.605998: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
134686     ksoftirqd/3-34    (   34) [003] d.s2 24577.606008: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
134687     ksoftirqd/3-34    (   34) [003] d.s3 24577.606018: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
134688  kworker/u16:10-23868 (23868) [000] d..2 24577.606027: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
134689     ksoftirqd/3-34    (   34) [003] d..2 24577.606042: 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
134690 irq/79-1436400.-24613 (24613) [000] d..2 24577.606055: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
134691          <idle>-0     (-----) [000] d..1 24577.606065: cpu_idle: state=0 cpu_id=0
134692              ps-13422 (13422) [004] d..2 24577.606090: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134693              ps-13422 (13422) [004] dn.3 24577.606094: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134694              ps-13422 (13422) [004] d..2 24577.606097: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134695  surfaceflinger-23896 (23896) [001] d..2 24577.606105: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
134696 shell svc 13418-13419 ( 1007) [004] d..2 24577.606105: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134697              ps-13422 (13422) [004] d..2 24577.606110: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134698              ps-13422 (13422) [004] dn.3 24577.606112: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134699              ps-13422 (13422) [004] d..2 24577.606114: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134700  surfaceflinger-23896 (23896) [001] d..3 24577.606117: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
134701 shell svc 13418-13419 ( 1007) [004] d..2 24577.606121: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134702              ps-13422 (13422) [004] d..2 24577.606125: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134703              ps-13422 (13422) [004] dn.3 24577.606127: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134704              ps-13422 (13422) [004] d..2 24577.606129: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134705  kworker/u16:10-23868 (23868) [003] .... 24577.606129: clk_set_rate: l3_cluster0_vote_clk 1036800000
134706 shell svc 13418-13419 ( 1007) [004] d..2 24577.606135: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134707              ps-13422 (13422) [004] d..2 24577.606139: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134708              ps-13422 (13422) [004] dn.3 24577.606141: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134709              ps-13422 (13422) [004] d..2 24577.606143: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134710 shell svc 13418-13419 ( 1007) [004] d..2 24577.606149: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134711              ps-13422 (13422) [004] d..2 24577.606152: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134712              ps-13422 (13422) [004] dn.3 24577.606155: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134713              ps-13422 (13422) [004] d..2 24577.606157: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134714 shell svc 13418-13419 ( 1007) [004] d..2 24577.606162: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134715              ps-13422 (13422) [004] d..2 24577.606166: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134716              ps-13422 (13422) [004] dn.3 24577.606168: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134717              ps-13422 (13422) [004] d..2 24577.606170: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134718 shell svc 13418-13419 ( 1007) [004] d..2 24577.606176: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134719              ps-13422 (13422) [004] d..2 24577.606180: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134720              ps-13422 (13422) [004] dn.3 24577.606182: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134721              ps-13422 (13422) [004] d..2 24577.606184: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134722 shell svc 13418-13419 ( 1007) [004] d..2 24577.606190: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134723              ps-13422 (13422) [004] d..2 24577.606193: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134724              ps-13422 (13422) [004] dn.3 24577.606195: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134725              ps-13422 (13422) [004] d..2 24577.606197: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134726 shell svc 13418-13419 ( 1007) [004] d..2 24577.606204: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134727              ps-13422 (13422) [004] d..2 24577.606208: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134728              ps-13422 (13422) [004] dn.3 24577.606210: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134729              ps-13422 (13422) [004] d..2 24577.606212: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134730 shell svc 13418-13419 ( 1007) [004] d..2 24577.606218: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134731              ps-13422 (13422) [004] d..2 24577.606222: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134732              ps-13422 (13422) [004] dn.3 24577.606224: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134733              ps-13422 (13422) [004] d..2 24577.606226: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134734 shell svc 13418-13419 ( 1007) [004] d..2 24577.606232: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134735              ps-13422 (13422) [004] d..2 24577.606236: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134736              ps-13422 (13422) [004] dn.3 24577.606238: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134737              ps-13422 (13422) [004] d..2 24577.606240: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134738  kworker/u16:10-23868 (23868) [003] d..2 24577.606243: 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
134739 shell svc 13418-13419 ( 1007) [004] d..2 24577.606245: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134740              ps-13422 (13422) [004] d..2 24577.606249: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134741              ps-13422 (13422) [004] dn.3 24577.606251: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134742              ps-13422 (13422) [004] d..2 24577.606253: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134743 shell svc 13418-13419 ( 1007) [004] d..2 24577.606259: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134744 crtc_commit:111-253   (  253) [002] d..2 24577.606261: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=adbd next_pid=23485 next_prio=120
134745              ps-13422 (13422) [004] d..2 24577.606262: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134746              ps-13422 (13422) [004] dn.3 24577.606264: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134747  surfaceflinger-23896 (23896) [001] d..2 24577.606266: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
134748              ps-13422 (13422) [004] d..2 24577.606266: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134749          <idle>-0     (-----) [003] d.s4 24577.606269: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
134750 shell svc 13418-13419 ( 1007) [004] d..2 24577.606272: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134751              ps-13422 (13422) [004] d..2 24577.606276: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134752          <idle>-0     (-----) [003] d.s5 24577.606277: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
134753              ps-13422 (13422) [004] dn.3 24577.606278: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134754          <idle>-0     (-----) [003] dns5 24577.606279: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
134755              ps-13422 (13422) [004] d..2 24577.606281: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134756         rcuop/0-10    (   10) [001] d..2 24577.606281: 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
134757          <idle>-0     (-----) [003] d..2 24577.606286: 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
134758 shell svc 13418-13419 ( 1007) [004] d..2 24577.606286: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134759          <idle>-0     (-----) [001] d..1 24577.606290: cpu_idle: state=0 cpu_id=1
134760              ps-13422 (13422) [004] d..2 24577.606290: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134761              ps-13422 (13422) [004] dn.3 24577.606292: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134762              ps-13422 (13422) [004] d..2 24577.606294: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134763  kworker/u16:10-23868 (23868) [003] d..2 24577.606299: 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
134764 shell svc 13418-13419 ( 1007) [004] d..2 24577.606300: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134765              ps-13422 (13422) [004] d..2 24577.606303: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134766              ps-13422 (13422) [004] dn.3 24577.606306: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134767          <idle>-0     (-----) [003] d..1 24577.606306: cpu_idle: state=0 cpu_id=3
134768              ps-13422 (13422) [004] d..2 24577.606308: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134769            adbd-23485 ( 1007) [002] d..2 24577.606313: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134770 shell svc 13418-13419 ( 1007) [004] d..2 24577.606313: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134771          <idle>-0     (-----) [002] d..1 24577.606322: cpu_idle: state=0 cpu_id=2
134772          <idle>-0     (-----) [001] d.h3 24577.606337: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
134773          <idle>-0     (-----) [001] dnh4 24577.606356: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134774              ps-13422 (13422) [004] d..2 24577.606360: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134775          <idle>-0     (-----) [001] .n.1 24577.606362: cpu_idle: state=4294967295 cpu_id=1
134776              ps-13422 (13422) [004] dn.3 24577.606363: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134777              ps-13422 (13422) [004] d..2 24577.606366: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134778          <idle>-0     (-----) [001] d..2 24577.606368: 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
134779 shell svc 13418-13419 ( 1007) [004] d..2 24577.606374: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134780   kworker/u17:2-23076 (23076) [001] d..2 24577.606376: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134781   kworker/u17:2-23076 (23076) [001] d..3 24577.606381: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134782   kworker/u17:2-23076 (23076) [001] d..2 24577.606397: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
134783     kworker/1:1-13091 (13091) [001] d..2 24577.606402: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
134784     kworker/1:1-13091 (13091) [001] d..3 24577.606411: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
134785          <idle>-0     (-----) [002] .n.1 24577.606416: cpu_idle: state=4294967295 cpu_id=2
134786          <idle>-0     (-----) [002] d..2 24577.606422: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
134787     kworker/1:1-13091 (13091) [001] d..2 24577.606424: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134788          <idle>-0     (-----) [001] d..1 24577.606431: cpu_idle: state=0 cpu_id=1
134789            adbd-23485 ( 1007) [002] d..2 24577.606439: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134790          <idle>-0     (-----) [002] d..1 24577.606446: cpu_idle: state=0 cpu_id=2
134791          <idle>-0     (-----) [001] d.h3 24577.606511: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134792          <idle>-0     (-----) [001] dnh4 24577.606516: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134793          <idle>-0     (-----) [001] .n.1 24577.606521: cpu_idle: state=4294967295 cpu_id=1
134794          <idle>-0     (-----) [001] d..2 24577.606527: 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
134795   kworker/u17:2-23076 (23076) [001] d..2 24577.606533: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134796   kworker/u17:2-23076 (23076) [001] d..3 24577.606538: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134797   kworker/u17:2-23076 (23076) [001] d..2 24577.606554: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
134798     kworker/1:1-13091 (13091) [001] d..2 24577.606560: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
134799     kworker/1:1-13091 (13091) [001] d..3 24577.606582: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
134800          <idle>-0     (-----) [000] .n.1 24577.606588: cpu_idle: state=4294967295 cpu_id=0
134801          <idle>-0     (-----) [000] d..2 24577.606594: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
134802              ps-13422 (13422) [004] d..2 24577.606595: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134803     kworker/1:1-13091 (13091) [001] d..2 24577.606596: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134804              ps-13422 (13422) [004] dn.3 24577.606598: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134805              ps-13422 (13422) [004] d..2 24577.606601: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134806          <idle>-0     (-----) [001] d..1 24577.606603: cpu_idle: state=0 cpu_id=1
134807            adbd-23484 ( 1007) [000] d..2 24577.606608: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
134808 shell svc 13418-13419 ( 1007) [004] d..2 24577.606609: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134809              ps-13422 (13422) [004] d..2 24577.606613: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134810              ps-13422 (13422) [004] dn.3 24577.606616: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134811              ps-13422 (13422) [004] d..2 24577.606618: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134812            adbd-23484 ( 1007) [000] d..3 24577.606620: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
134813 shell svc 13418-13419 ( 1007) [004] d..2 24577.606624: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134814              ps-13422 (13422) [004] d..2 24577.606628: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134815              ps-13422 (13422) [004] dn.3 24577.606631: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134816              ps-13422 (13422) [004] d..2 24577.606632: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134817 shell svc 13418-13419 ( 1007) [004] d..2 24577.606638: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134818              ps-13422 (13422) [004] d..2 24577.606642: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134819              ps-13422 (13422) [004] dn.3 24577.606644: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134820              ps-13422 (13422) [004] d..2 24577.606646: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134821 shell svc 13418-13419 ( 1007) [004] d..2 24577.606652: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134822              ps-13422 (13422) [004] d..2 24577.606656: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134823              ps-13422 (13422) [004] dn.3 24577.606658: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134824              ps-13422 (13422) [004] d..2 24577.606660: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134825            adbd-23484 ( 1007) [000] d..2 24577.606663: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
134826 shell svc 13418-13419 ( 1007) [004] d..2 24577.606666: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134827              ps-13422 (13422) [004] d..2 24577.606670: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134828              ps-13422 (13422) [004] dn.3 24577.606672: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134829              ps-13422 (13422) [004] d..2 24577.606674: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134830 shell svc 13418-13419 ( 1007) [004] d..2 24577.606680: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134831              ps-13422 (13422) [004] d..2 24577.606683: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134832              ps-13422 (13422) [004] dn.3 24577.606685: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134833              ps-13422 (13422) [004] d..2 24577.606687: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134834 shell svc 13418-13419 ( 1007) [004] d..2 24577.606693: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134835              ps-13422 (13422) [004] d..2 24577.606697: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134836              ps-13422 (13422) [004] dn.3 24577.606699: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134837              ps-13422 (13422) [004] d..2 24577.606701: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134838 shell svc 13418-13419 ( 1007) [004] d..2 24577.606707: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134839              ps-13422 (13422) [004] d..2 24577.606711: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134840              ps-13422 (13422) [004] dn.3 24577.606713: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134841              ps-13422 (13422) [004] d..2 24577.606715: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134842 shell svc 13418-13419 ( 1007) [004] d..2 24577.606721: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134843            adbd-1007  ( 1007) [000] d..1 24577.606763: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
134844            adbd-1007  ( 1007) [000] d..2 24577.606773: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
134845          <idle>-0     (-----) [002] .n.1 24577.606778: cpu_idle: state=4294967295 cpu_id=2
134846          <idle>-0     (-----) [002] d..2 24577.606783: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
134847            adbd-1007  ( 1007) [000] d..2 24577.606806: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
134848          <idle>-0     (-----) [000] d..1 24577.606814: cpu_idle: state=0 cpu_id=0
134849            adbd-23485 ( 1007) [002] d..2 24577.606828: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134850          <idle>-0     (-----) [002] d..1 24577.606834: cpu_idle: state=0 cpu_id=2
134851          <idle>-0     (-----) [001] d.h3 24577.606841: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134852          <idle>-0     (-----) [001] dnh4 24577.606847: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134853          <idle>-0     (-----) [001] .n.1 24577.606852: cpu_idle: state=4294967295 cpu_id=1
134854          <idle>-0     (-----) [001] d..2 24577.606858: 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
134855   kworker/u17:2-23076 (23076) [001] d..2 24577.606864: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134856   kworker/u17:2-23076 (23076) [001] d..3 24577.606869: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134857   kworker/u17:2-23076 (23076) [001] d..2 24577.606886: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
134858     kworker/1:1-13091 (13091) [001] d..2 24577.606891: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
134859     kworker/1:1-13091 (13091) [001] d..3 24577.606899: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
134860          <idle>-0     (-----) [002] .n.1 24577.606904: cpu_idle: state=4294967295 cpu_id=2
134861          <idle>-0     (-----) [002] d..2 24577.606910: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
134862     kworker/1:1-13091 (13091) [001] d..2 24577.606912: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134863          <idle>-0     (-----) [001] d..1 24577.606918: cpu_idle: state=0 cpu_id=1
134864            adbd-23485 ( 1007) [002] d..2 24577.606954: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134865              ps-13422 (13422) [004] d..2 24577.606959: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134866          <idle>-0     (-----) [002] d..1 24577.606961: cpu_idle: state=0 cpu_id=2
134867              ps-13422 (13422) [004] dn.3 24577.606963: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134868              ps-13422 (13422) [004] d..2 24577.606966: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134869 shell svc 13418-13419 ( 1007) [004] d..2 24577.606974: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134870              ps-13422 (13422) [004] d..2 24577.606979: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134871              ps-13422 (13422) [004] dn.3 24577.606981: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134872              ps-13422 (13422) [004] d..2 24577.606983: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134873 shell svc 13418-13419 ( 1007) [004] d..2 24577.606990: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134874              ps-13422 (13422) [004] d..2 24577.606995: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134875              ps-13422 (13422) [004] dn.3 24577.606997: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134876              ps-13422 (13422) [004] d..2 24577.606999: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134877 shell svc 13418-13419 ( 1007) [004] d..2 24577.607005: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134878              ps-13422 (13422) [004] d..2 24577.607010: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134879              ps-13422 (13422) [004] dn.3 24577.607012: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134880              ps-13422 (13422) [004] d..2 24577.607014: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134881 shell svc 13418-13419 ( 1007) [004] d..2 24577.607020: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134882          <idle>-0     (-----) [001] d.h3 24577.607021: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134883              ps-13422 (13422) [004] d..2 24577.607024: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134884              ps-13422 (13422) [004] dn.3 24577.607026: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134885          <idle>-0     (-----) [001] dnh4 24577.607026: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134886              ps-13422 (13422) [004] d..2 24577.607028: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134887          <idle>-0     (-----) [001] .n.1 24577.607031: cpu_idle: state=4294967295 cpu_id=1
134888 shell svc 13418-13419 ( 1007) [004] d..2 24577.607034: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134889          <idle>-0     (-----) [001] d..2 24577.607036: 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
134890              ps-13422 (13422) [004] d..2 24577.607038: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134891              ps-13422 (13422) [004] dn.3 24577.607041: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134892              ps-13422 (13422) [004] d..2 24577.607042: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134893   kworker/u17:2-23076 (23076) [001] d..2 24577.607043: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134894   kworker/u17:2-23076 (23076) [001] d..3 24577.607048: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134895 shell svc 13418-13419 ( 1007) [004] d..2 24577.607048: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134896              ps-13422 (13422) [004] d..2 24577.607052: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134897              ps-13422 (13422) [004] dn.3 24577.607054: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134898              ps-13422 (13422) [004] d..2 24577.607056: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134899 shell svc 13418-13419 ( 1007) [004] d..2 24577.607062: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134900   kworker/u17:2-23076 (23076) [001] d..2 24577.607064: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
134901              ps-13422 (13422) [004] d..2 24577.607066: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134902              ps-13422 (13422) [004] dn.3 24577.607068: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134903     kworker/1:1-13091 (13091) [001] d..2 24577.607069: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
134904              ps-13422 (13422) [004] d..2 24577.607070: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134905 shell svc 13418-13419 ( 1007) [004] d..2 24577.607075: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134906     kworker/1:1-13091 (13091) [001] d..3 24577.607077: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
134907              ps-13422 (13422) [004] d..2 24577.607079: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134908          <idle>-0     (-----) [002] .n.1 24577.607082: cpu_idle: state=4294967295 cpu_id=2
134909              ps-13422 (13422) [004] dn.3 24577.607082: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134910              ps-13422 (13422) [004] d..2 24577.607085: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134911          <idle>-0     (-----) [002] d..2 24577.607088: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
134912     kworker/1:1-13091 (13091) [001] d..2 24577.607090: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134913 shell svc 13418-13419 ( 1007) [004] d..2 24577.607091: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134914              ps-13422 (13422) [004] d..2 24577.607095: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134915          <idle>-0     (-----) [001] d..1 24577.607097: cpu_idle: state=0 cpu_id=1
134916              ps-13422 (13422) [004] dn.3 24577.607097: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134917              ps-13422 (13422) [004] d..2 24577.607099: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134918            adbd-23485 ( 1007) [002] d..2 24577.607102: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134919 shell svc 13418-13419 ( 1007) [004] d..2 24577.607104: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134920          <idle>-0     (-----) [002] d..1 24577.607108: cpu_idle: state=0 cpu_id=2
134921              ps-13422 (13422) [004] d..2 24577.607183: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134922              ps-13422 (13422) [004] dn.3 24577.607187: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134923              ps-13422 (13422) [004] d..2 24577.607189: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134924 shell svc 13418-13419 ( 1007) [004] d..2 24577.607197: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134925              ps-13422 (13422) [004] d..2 24577.607202: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134926              ps-13422 (13422) [004] dn.3 24577.607205: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134927              ps-13422 (13422) [004] d..2 24577.607207: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134928 shell svc 13418-13419 ( 1007) [004] d..2 24577.607213: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134929          <idle>-0     (-----) [001] d.h3 24577.607243: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134930          <idle>-0     (-----) [001] dnh4 24577.607248: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134931          <idle>-0     (-----) [001] .n.1 24577.607257: cpu_idle: state=4294967295 cpu_id=1
134932              ps-13422 (13422) [004] d..2 24577.607258: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134933              ps-13422 (13422) [004] dn.3 24577.607261: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134934          <idle>-0     (-----) [001] d..2 24577.607263: 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
134935              ps-13422 (13422) [004] d..2 24577.607263: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134936   kworker/u17:2-23076 (23076) [001] d..2 24577.607269: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134937 shell svc 13418-13419 ( 1007) [004] d..2 24577.607271: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134938   kworker/u17:2-23076 (23076) [001] d..3 24577.607274: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134939   kworker/u17:2-23076 (23076) [001] d..2 24577.607289: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
134940     kworker/1:1-13091 (13091) [001] d..2 24577.607296: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
134941     kworker/1:1-13091 (13091) [001] d..3 24577.607304: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
134942          <idle>-0     (-----) [000] .n.1 24577.607310: cpu_idle: state=4294967295 cpu_id=0
134943     kworker/1:1-13091 (13091) [001] d..2 24577.607317: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134944          <idle>-0     (-----) [000] d..2 24577.607318: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
134945          <idle>-0     (-----) [001] d..1 24577.607324: cpu_idle: state=0 cpu_id=1
134946            adbd-23484 ( 1007) [000] d..2 24577.607328: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
134947            adbd-23484 ( 1007) [000] d..3 24577.607335: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
134948              ps-13422 (13422) [004] d..2 24577.607335: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134949              ps-13422 (13422) [004] dn.3 24577.607339: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134950              ps-13422 (13422) [004] d..2 24577.607341: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134951 shell svc 13418-13419 ( 1007) [004] d..2 24577.607348: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134952              ps-13422 (13422) [004] d..2 24577.607353: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134953              ps-13422 (13422) [004] dn.3 24577.607355: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134954              ps-13422 (13422) [004] d..2 24577.607357: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134955 shell svc 13418-13419 ( 1007) [004] d..2 24577.607363: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134956            adbd-23484 ( 1007) [000] d..2 24577.607378: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
134957            adbd-1007  ( 1007) [000] d..1 24577.607442: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
134958              ps-13422 (13422) [004] d..2 24577.607451: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134959            adbd-1007  ( 1007) [000] d..2 24577.607452: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
134960              ps-13422 (13422) [004] dn.3 24577.607454: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134961              ps-13422 (13422) [004] d..2 24577.607457: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134962          <idle>-0     (-----) [002] .n.1 24577.607457: cpu_idle: state=4294967295 cpu_id=2
134963          <idle>-0     (-----) [002] d..2 24577.607463: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
134964 shell svc 13418-13419 ( 1007) [004] d..2 24577.607465: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134965              ps-13422 (13422) [004] d..2 24577.607469: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134966              ps-13422 (13422) [004] dn.3 24577.607471: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134967              ps-13422 (13422) [004] d..2 24577.607473: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134968 shell svc 13418-13419 ( 1007) [004] d..2 24577.607480: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134969            adbd-1007  ( 1007) [000] d..2 24577.607483: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
134970              ps-13422 (13422) [004] d..2 24577.607484: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134971              ps-13422 (13422) [004] dn.3 24577.607486: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134972              ps-13422 (13422) [004] d..2 24577.607488: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134973          <idle>-0     (-----) [000] d..1 24577.607491: cpu_idle: state=0 cpu_id=0
134974 shell svc 13418-13419 ( 1007) [004] d..2 24577.607494: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134975            adbd-23485 ( 1007) [002] d..2 24577.607505: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134976          <idle>-0     (-----) [002] d..1 24577.607511: cpu_idle: state=0 cpu_id=2
134977          <idle>-0     (-----) [001] d.h3 24577.607530: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134978          <idle>-0     (-----) [001] dnh4 24577.607535: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
134979          <idle>-0     (-----) [001] .n.1 24577.607540: cpu_idle: state=4294967295 cpu_id=1
134980          <idle>-0     (-----) [001] d..2 24577.607546: 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
134981   kworker/u17:2-23076 (23076) [001] d..2 24577.607569: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134982   kworker/u17:2-23076 (23076) [001] d..3 24577.607574: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
134983   kworker/u17:2-23076 (23076) [001] d..2 24577.607589: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
134984     kworker/1:1-13091 (13091) [001] d..2 24577.607594: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
134985              ps-13422 (13422) [004] d..2 24577.607594: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134986              ps-13422 (13422) [004] dn.3 24577.607597: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134987              ps-13422 (13422) [004] d..2 24577.607600: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134988     kworker/1:1-13091 (13091) [001] d..3 24577.607603: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
134989          <idle>-0     (-----) [002] .n.1 24577.607607: cpu_idle: state=4294967295 cpu_id=2
134990 shell svc 13418-13419 ( 1007) [004] d..2 24577.607608: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134991              ps-13422 (13422) [004] d..2 24577.607613: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134992          <idle>-0     (-----) [002] d..2 24577.607615: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
134993              ps-13422 (13422) [004] dn.3 24577.607615: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
134994              ps-13422 (13422) [004] d..2 24577.607617: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
134995     kworker/1:1-13091 (13091) [001] d..2 24577.607619: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134996 shell svc 13418-13419 ( 1007) [004] d..2 24577.607623: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
134997          <idle>-0     (-----) [001] d..1 24577.607626: cpu_idle: state=0 cpu_id=1
134998            adbd-23485 ( 1007) [002] d..2 24577.607659: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134999          <idle>-0     (-----) [002] d..1 24577.607666: cpu_idle: state=0 cpu_id=2
135000          <idle>-0     (-----) [001] d.h3 24577.607686: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135001          <idle>-0     (-----) [001] dnh4 24577.607691: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135002          <idle>-0     (-----) [001] .n.1 24577.607696: cpu_idle: state=4294967295 cpu_id=1
135003          <idle>-0     (-----) [001] d..2 24577.607702: 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
135004   kworker/u17:2-23076 (23076) [001] d..2 24577.607708: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135005   kworker/u17:2-23076 (23076) [001] d..3 24577.607713: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135006              ps-13422 (13422) [004] d..2 24577.607727: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135007   kworker/u17:2-23076 (23076) [001] d..2 24577.607728: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135008              ps-13422 (13422) [004] dn.3 24577.607730: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135009              ps-13422 (13422) [004] d..2 24577.607732: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135010     kworker/1:1-13091 (13091) [001] d..2 24577.607733: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
135011 shell svc 13418-13419 ( 1007) [004] d..2 24577.607740: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135012     kworker/1:1-13091 (13091) [001] d..3 24577.607741: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
135013              ps-13422 (13422) [004] d..2 24577.607745: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135014          <idle>-0     (-----) [002] .n.1 24577.607746: cpu_idle: state=4294967295 cpu_id=2
135015              ps-13422 (13422) [004] dn.3 24577.607747: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135016              ps-13422 (13422) [004] d..2 24577.607749: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135017          <idle>-0     (-----) [002] d..2 24577.607752: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135018     kworker/1:1-13091 (13091) [001] d..2 24577.607754: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135019 shell svc 13418-13419 ( 1007) [004] d..2 24577.607755: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135020              ps-13422 (13422) [004] d..2 24577.607760: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135021          <idle>-0     (-----) [001] d..1 24577.607761: cpu_idle: state=0 cpu_id=1
135022              ps-13422 (13422) [004] dn.3 24577.607762: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135023              ps-13422 (13422) [004] d..2 24577.607764: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135024            adbd-23485 ( 1007) [002] d..2 24577.607768: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
135025 shell svc 13418-13419 ( 1007) [004] d..2 24577.607770: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135026          <idle>-0     (-----) [002] d..1 24577.607774: cpu_idle: state=0 cpu_id=2
135027          <idle>-0     (-----) [001] d.h3 24577.607894: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135028          <idle>-0     (-----) [001] dnh4 24577.607899: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135029          <idle>-0     (-----) [001] .n.1 24577.607903: cpu_idle: state=4294967295 cpu_id=1
135030          <idle>-0     (-----) [001] d..2 24577.607909: 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
135031   kworker/u17:2-23076 (23076) [001] d..2 24577.607916: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135032   kworker/u17:2-23076 (23076) [001] d..3 24577.607921: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135033   kworker/u17:2-23076 (23076) [001] d..2 24577.607936: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135034     kworker/1:1-13091 (13091) [001] d..2 24577.607941: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
135035     kworker/1:1-13091 (13091) [001] d..3 24577.607950: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
135036          <idle>-0     (-----) [000] .n.1 24577.607955: cpu_idle: state=4294967295 cpu_id=0
135037          <idle>-0     (-----) [000] d..2 24577.607962: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
135038     kworker/1:1-13091 (13091) [001] d..2 24577.607964: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135039          <idle>-0     (-----) [001] d..1 24577.607970: cpu_idle: state=0 cpu_id=1
135040            adbd-23484 ( 1007) [000] d..2 24577.607972: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
135041            adbd-23484 ( 1007) [000] d..3 24577.607978: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
135042            adbd-23484 ( 1007) [000] d..2 24577.608020: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
135043            adbd-1007  ( 1007) [000] d..1 24577.608077: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
135044            adbd-1007  ( 1007) [000] d..2 24577.608101: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
135045          <idle>-0     (-----) [001] .n.1 24577.608106: cpu_idle: state=4294967295 cpu_id=1
135046          <idle>-0     (-----) [001] d..2 24577.608112: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135047            adbd-1007  ( 1007) [000] d..2 24577.608133: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135048              ps-13422 (13422) [004] d..2 24577.608141: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135049          <idle>-0     (-----) [000] d..1 24577.608141: cpu_idle: state=0 cpu_id=0
135050              ps-13422 (13422) [004] dn.3 24577.608145: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135051              ps-13422 (13422) [004] d..2 24577.608147: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135052 shell svc 13418-13419 ( 1007) [004] d..2 24577.608156: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135053              ps-13422 (13422) [004] d..2 24577.608161: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135054            adbd-23485 ( 1007) [001] d..2 24577.608162: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135055              ps-13422 (13422) [004] dn.3 24577.608163: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135056              ps-13422 (13422) [004] d..2 24577.608165: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135057 shell svc 13418-13419 ( 1007) [004] d..2 24577.608172: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135058              ps-13422 (13422) [004] d..2 24577.608176: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135059              ps-13422 (13422) [004] dn.3 24577.608178: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135060          <idle>-0     (-----) [001] d.h4 24577.608178: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135061              ps-13422 (13422) [004] d..2 24577.608180: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135062          <idle>-0     (-----) [001] dnh5 24577.608184: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135063 shell svc 13418-13419 ( 1007) [004] d..2 24577.608186: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135064              ps-13422 (13422) [004] d..2 24577.608190: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135065          <idle>-0     (-----) [001] d..2 24577.608192: 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
135066              ps-13422 (13422) [004] dn.3 24577.608193: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135067              ps-13422 (13422) [004] d..2 24577.608195: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135068   kworker/u17:2-23076 (23076) [001] d..2 24577.608198: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135069 shell svc 13418-13419 ( 1007) [004] d..2 24577.608201: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135070   kworker/u17:2-23076 (23076) [001] d..3 24577.608203: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135071              ps-13422 (13422) [004] d..2 24577.608205: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135072              ps-13422 (13422) [004] dn.3 24577.608207: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135073              ps-13422 (13422) [004] d..2 24577.608209: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135074 shell svc 13418-13419 ( 1007) [004] d..2 24577.608215: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135075   kworker/u17:2-23076 (23076) [001] d..2 24577.608218: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135076              ps-13422 (13422) [004] d..2 24577.608218: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135077              ps-13422 (13422) [004] dn.3 24577.608220: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135078     kworker/1:1-13091 (13091) [001] d..2 24577.608222: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
135079              ps-13422 (13422) [004] d..2 24577.608222: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135080 shell svc 13418-13419 ( 1007) [004] d..2 24577.608228: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135081              ps-13422 (13422) [004] d..2 24577.608232: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135082              ps-13422 (13422) [004] dn.3 24577.608234: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135083              ps-13422 (13422) [004] d..2 24577.608236: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135084     kworker/1:1-13091 (13091) [001] d..3 24577.608237: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
135085 shell svc 13418-13419 ( 1007) [004] d..2 24577.608242: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135086          <idle>-0     (-----) [000] .n.1 24577.608242: cpu_idle: state=4294967295 cpu_id=0
135087              ps-13422 (13422) [004] d..2 24577.608246: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135088              ps-13422 (13422) [004] dn.3 24577.608248: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135089          <idle>-0     (-----) [000] d..2 24577.608249: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135090              ps-13422 (13422) [004] d..2 24577.608250: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135091     kworker/1:1-13091 (13091) [001] d..2 24577.608251: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135092 shell svc 13418-13419 ( 1007) [004] d..2 24577.608256: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135093          <idle>-0     (-----) [001] d..1 24577.608258: cpu_idle: state=0 cpu_id=1
135094              ps-13422 (13422) [004] d..2 24577.608260: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135095              ps-13422 (13422) [004] dn.3 24577.608262: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135096              ps-13422 (13422) [004] d..2 24577.608264: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135097 shell svc 13418-13419 ( 1007) [004] d..2 24577.608270: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135098              ps-13422 (13422) [004] d..2 24577.608273: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135099              ps-13422 (13422) [004] dn.3 24577.608276: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135100              ps-13422 (13422) [004] d..2 24577.608278: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135101 shell svc 13418-13419 ( 1007) [004] d..2 24577.608283: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135102              ps-13422 (13422) [004] d..2 24577.608287: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135103              ps-13422 (13422) [004] dn.3 24577.608289: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135104              ps-13422 (13422) [004] d..2 24577.608291: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135105 shell svc 13418-13419 ( 1007) [004] d..2 24577.608297: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135106            adbd-23485 ( 1007) [000] d..2 24577.608297: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135107              ps-13422 (13422) [004] d..2 24577.608301: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135108              ps-13422 (13422) [004] dn.3 24577.608303: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135109          <idle>-0     (-----) [000] d..1 24577.608304: cpu_idle: state=0 cpu_id=0
135110              ps-13422 (13422) [004] d..2 24577.608305: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135111 shell svc 13418-13419 ( 1007) [004] d..2 24577.608311: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135112              ps-13422 (13422) [004] d..2 24577.608314: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135113              ps-13422 (13422) [004] dn.3 24577.608317: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135114              ps-13422 (13422) [004] d..2 24577.608319: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135115 shell svc 13418-13419 ( 1007) [004] d..2 24577.608324: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135116          <idle>-0     (-----) [001] d.h3 24577.608326: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135117              ps-13422 (13422) [004] d..2 24577.608328: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135118              ps-13422 (13422) [004] dn.3 24577.608330: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135119          <idle>-0     (-----) [001] dnh4 24577.608331: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135120              ps-13422 (13422) [004] d..2 24577.608332: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135121          <idle>-0     (-----) [001] .n.1 24577.608336: cpu_idle: state=4294967295 cpu_id=1
135122 shell svc 13418-13419 ( 1007) [004] d..2 24577.608338: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135123              ps-13422 (13422) [004] d..2 24577.608341: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135124          <idle>-0     (-----) [001] d..2 24577.608341: 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
135125              ps-13422 (13422) [004] dn.3 24577.608343: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135126              ps-13422 (13422) [004] d..2 24577.608345: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135127   kworker/u17:2-23076 (23076) [001] d..2 24577.608347: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135128 shell svc 13418-13419 ( 1007) [004] d..2 24577.608351: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135129   kworker/u17:2-23076 (23076) [001] d..3 24577.608352: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135130   kworker/u17:2-23076 (23076) [001] d..2 24577.608367: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135131     kworker/1:1-13091 (13091) [001] d..2 24577.608372: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
135132     kworker/1:1-13091 (13091) [001] d..3 24577.608380: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
135133          <idle>-0     (-----) [000] .n.1 24577.608385: cpu_idle: state=4294967295 cpu_id=0
135134          <idle>-0     (-----) [000] d..2 24577.608391: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135135     kworker/1:1-13091 (13091) [001] d..2 24577.608392: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135136          <idle>-0     (-----) [001] d..1 24577.608399: cpu_idle: state=0 cpu_id=1
135137            adbd-23485 ( 1007) [000] d..2 24577.608409: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135138          <idle>-0     (-----) [000] d..1 24577.608416: cpu_idle: state=0 cpu_id=0
135139              ps-13422 (13422) [004] d..2 24577.608422: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135140              ps-13422 (13422) [004] dn.3 24577.608426: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135141              ps-13422 (13422) [004] d..2 24577.608428: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135142 shell svc 13418-13419 ( 1007) [004] d..2 24577.608436: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135143              ps-13422 (13422) [004] d..2 24577.608484: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135144              ps-13422 (13422) [004] dn.3 24577.608487: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135145              ps-13422 (13422) [004] d..2 24577.608489: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135146 shell svc 13418-13419 ( 1007) [004] d..2 24577.608497: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135147          <idle>-0     (-----) [001] d.h3 24577.608514: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135148          <idle>-0     (-----) [001] dnh4 24577.608522: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135149          <idle>-0     (-----) [001] .n.1 24577.608527: cpu_idle: state=4294967295 cpu_id=1
135150          <idle>-0     (-----) [001] d..2 24577.608534: 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
135151   kworker/u17:2-23076 (23076) [001] d..2 24577.608540: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135152   kworker/u17:2-23076 (23076) [001] d..3 24577.608545: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135153   kworker/u17:2-23076 (23076) [001] d..2 24577.608560: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135154              ps-13422 (13422) [004] d..2 24577.608564: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135155     kworker/1:1-13091 (13091) [001] d..2 24577.608566: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
135156              ps-13422 (13422) [004] dn.3 24577.608567: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135157              ps-13422 (13422) [004] d..2 24577.608570: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135158 shell svc 13418-13419 ( 1007) [004] d..2 24577.608578: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135159     kworker/1:1-13091 (13091) [001] d..3 24577.608584: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
135160     kworker/1:1-13091 (13091) [001] d..2 24577.608592: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
135161            adbd-23484 ( 1007) [001] d..2 24577.608603: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
135162            adbd-23484 ( 1007) [001] d..3 24577.608612: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
135163            adbd-23484 ( 1007) [001] d..2 24577.608652: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
135164            adbd-1007  ( 1007) [001] d..1 24577.608727: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
135165            adbd-1007  ( 1007) [001] d..2 24577.608737: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
135166          <idle>-0     (-----) [000] .n.1 24577.608742: cpu_idle: state=4294967295 cpu_id=0
135167          <idle>-0     (-----) [000] d..2 24577.608748: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135168            adbd-1007  ( 1007) [001] d..2 24577.608769: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135169          <idle>-0     (-----) [001] d..1 24577.608777: cpu_idle: state=0 cpu_id=1
135170            adbd-23485 ( 1007) [000] d..2 24577.608791: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135171          <idle>-0     (-----) [000] d..1 24577.608797: cpu_idle: state=0 cpu_id=0
135172          <idle>-0     (-----) [001] d.h3 24577.608803: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135173          <idle>-0     (-----) [001] dnh4 24577.608809: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135174          <idle>-0     (-----) [001] .n.1 24577.608814: cpu_idle: state=4294967295 cpu_id=1
135175          <idle>-0     (-----) [001] d..2 24577.608820: 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
135176   kworker/u17:2-23076 (23076) [001] d..2 24577.608828: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135177   kworker/u17:2-23076 (23076) [001] d..3 24577.608833: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135178   kworker/u17:2-23076 (23076) [001] d..2 24577.608848: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135179     kworker/1:1-13091 (13091) [001] d..2 24577.608853: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
135180              ps-13422 (13422) [004] d..2 24577.608856: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135181              ps-13422 (13422) [004] dn.3 24577.608860: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135182     kworker/1:1-13091 (13091) [001] d..3 24577.608862: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
135183              ps-13422 (13422) [004] d..2 24577.608862: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135184          <idle>-0     (-----) [000] .n.1 24577.608867: cpu_idle: state=4294967295 cpu_id=0
135185 shell svc 13418-13419 ( 1007) [004] d..2 24577.608871: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135186          <idle>-0     (-----) [000] d..2 24577.608873: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135187              ps-13422 (13422) [004] d..2 24577.608875: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135188     kworker/1:1-13091 (13091) [001] d..2 24577.608875: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135189              ps-13422 (13422) [004] dn.3 24577.608877: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135190              ps-13422 (13422) [004] d..2 24577.608880: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135191          <idle>-0     (-----) [001] d..1 24577.608882: cpu_idle: state=0 cpu_id=1
135192 shell svc 13418-13419 ( 1007) [004] d..2 24577.608886: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135193              ps-13422 (13422) [004] d..2 24577.608890: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135194              ps-13422 (13422) [004] dn.3 24577.608892: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135195              ps-13422 (13422) [004] d..2 24577.608894: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135196 shell svc 13418-13419 ( 1007) [004] d..2 24577.608900: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135197              ps-13422 (13422) [004] d..2 24577.608904: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135198              ps-13422 (13422) [004] dn.3 24577.608906: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135199              ps-13422 (13422) [004] d..2 24577.608909: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135200 shell svc 13418-13419 ( 1007) [004] d..2 24577.608916: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135201            adbd-23485 ( 1007) [000] d..2 24577.608916: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135202              ps-13422 (13422) [004] d..2 24577.608919: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135203              ps-13422 (13422) [004] dn.3 24577.608922: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135204          <idle>-0     (-----) [000] d..1 24577.608922: cpu_idle: state=0 cpu_id=0
135205          <idle>-0     (-----) [002] ...1 24577.608923: cpu_idle: state=4294967295 cpu_id=2
135206              ps-13422 (13422) [004] d..2 24577.608924: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135207          <idle>-0     (-----) [002] d..1 24577.608925: cpu_idle: state=0 cpu_id=2
135208 shell svc 13418-13419 ( 1007) [004] d..2 24577.608929: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135209              ps-13422 (13422) [004] d..2 24577.608933: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135210              ps-13422 (13422) [004] dn.3 24577.608935: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135211              ps-13422 (13422) [004] d..2 24577.608937: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135212          <idle>-0     (-----) [001] d.h3 24577.608938: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135213 shell svc 13418-13419 ( 1007) [004] d..2 24577.608943: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135214          <idle>-0     (-----) [001] dnh4 24577.608943: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135215              ps-13422 (13422) [004] d..2 24577.608946: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135216          <idle>-0     (-----) [001] .n.1 24577.608948: cpu_idle: state=4294967295 cpu_id=1
135217              ps-13422 (13422) [004] dn.3 24577.608948: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135218              ps-13422 (13422) [004] d..2 24577.608951: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135219          <idle>-0     (-----) [001] d..2 24577.608953: 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
135220 shell svc 13418-13419 ( 1007) [004] d..2 24577.608956: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135221              ps-13422 (13422) [004] d..2 24577.608960: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135222   kworker/u17:2-23076 (23076) [001] d..2 24577.608960: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135223              ps-13422 (13422) [004] dn.3 24577.608962: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135224              ps-13422 (13422) [004] d..2 24577.608964: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135225   kworker/u17:2-23076 (23076) [001] d..3 24577.608965: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135226 shell svc 13418-13419 ( 1007) [004] d..2 24577.608970: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135227              ps-13422 (13422) [004] d..2 24577.608974: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135228              ps-13422 (13422) [004] dn.3 24577.608976: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135229              ps-13422 (13422) [004] d..2 24577.608978: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135230   kworker/u17:2-23076 (23076) [001] d..2 24577.608980: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135231 shell svc 13418-13419 ( 1007) [004] d..2 24577.608984: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135232     kworker/1:1-13091 (13091) [001] d..2 24577.608985: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
135233              ps-13422 (13422) [004] d..2 24577.608987: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135234              ps-13422 (13422) [004] dn.3 24577.608990: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135235              ps-13422 (13422) [004] d..2 24577.608992: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135236     kworker/1:1-13091 (13091) [001] d..3 24577.608994: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
135237 shell svc 13418-13419 ( 1007) [004] d..2 24577.608998: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135238          <idle>-0     (-----) [000] .n.1 24577.608998: cpu_idle: state=4294967295 cpu_id=0
135239              ps-13422 (13422) [004] d..2 24577.609001: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135240              ps-13422 (13422) [004] dn.3 24577.609004: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135241          <idle>-0     (-----) [000] d..2 24577.609005: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135242              ps-13422 (13422) [004] d..2 24577.609006: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135243     kworker/1:1-13091 (13091) [001] d..2 24577.609006: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135244 shell svc 13418-13419 ( 1007) [004] d..2 24577.609012: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135245          <idle>-0     (-----) [001] d..1 24577.609013: cpu_idle: state=0 cpu_id=1
135246              ps-13422 (13422) [004] d..2 24577.609015: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135247              ps-13422 (13422) [004] dn.3 24577.609018: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135248              ps-13422 (13422) [004] d..2 24577.609019: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135249            adbd-23485 ( 1007) [000] d..2 24577.609020: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135250          <idle>-0     (-----) [000] d..1 24577.609025: cpu_idle: state=0 cpu_id=0
135251 shell svc 13418-13419 ( 1007) [004] d..2 24577.609025: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135252          <idle>-0     (-----) [001] d.h3 24577.609125: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135253          <idle>-0     (-----) [001] dnh4 24577.609130: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135254          <idle>-0     (-----) [001] .n.1 24577.609135: cpu_idle: state=4294967295 cpu_id=1
135255          <idle>-0     (-----) [001] d..2 24577.609140: 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
135256   kworker/u17:2-23076 (23076) [001] d..2 24577.609146: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135257   kworker/u17:2-23076 (23076) [001] d..3 24577.609151: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135258   kworker/u17:2-23076 (23076) [001] d..2 24577.609166: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135259     kworker/1:1-13091 (13091) [001] d..2 24577.609171: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
135260     kworker/1:1-13091 (13091) [001] d..3 24577.609186: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
135261          <idle>-0     (-----) [000] .n.1 24577.609192: cpu_idle: state=4294967295 cpu_id=0
135262          <idle>-0     (-----) [000] d..2 24577.609197: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
135263     kworker/1:1-13091 (13091) [001] d..2 24577.609199: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135264              ps-13422 (13422) [004] d..2 24577.609200: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135265              ps-13422 (13422) [004] dn.3 24577.609203: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135266              ps-13422 (13422) [004] d..2 24577.609206: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135267          <idle>-0     (-----) [001] d..1 24577.609206: cpu_idle: state=0 cpu_id=1
135268            adbd-23484 ( 1007) [000] d..2 24577.609207: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
135269 shell svc 13418-13419 ( 1007) [004] d..2 24577.609214: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135270            adbd-23484 ( 1007) [000] d..3 24577.609218: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
135271              ps-13422 (13422) [004] d..2 24577.609219: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135272              ps-13422 (13422) [004] dn.3 24577.609221: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135273              ps-13422 (13422) [004] d..2 24577.609223: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135274 shell svc 13418-13419 ( 1007) [004] d..2 24577.609229: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135275              ps-13422 (13422) [004] d..2 24577.609233: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135276              ps-13422 (13422) [004] dn.3 24577.609235: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135277              ps-13422 (13422) [004] d..2 24577.609237: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135278 shell svc 13418-13419 ( 1007) [004] d..2 24577.609243: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135279              ps-13422 (13422) [004] d..2 24577.609247: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135280              ps-13422 (13422) [004] dn.3 24577.609249: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135281              ps-13422 (13422) [004] d..2 24577.609251: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135282 shell svc 13418-13419 ( 1007) [004] d..2 24577.609257: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135283            adbd-23484 ( 1007) [000] d..2 24577.609258: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
135284              ps-13422 (13422) [004] d..2 24577.609261: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135285              ps-13422 (13422) [004] dn.3 24577.609263: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135286              ps-13422 (13422) [004] d..2 24577.609265: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135287 shell svc 13418-13419 ( 1007) [004] d..2 24577.609271: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135288              ps-13422 (13422) [004] d..2 24577.609274: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135289              ps-13422 (13422) [004] dn.3 24577.609277: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135290              ps-13422 (13422) [004] d..2 24577.609279: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135291 shell svc 13418-13419 ( 1007) [004] d..2 24577.609284: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135292            adbd-1007  ( 1007) [000] d..1 24577.609329: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
135293            adbd-1007  ( 1007) [000] d..2 24577.609347: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
135294              ps-13422 (13422) [004] d..2 24577.609347: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135295              ps-13422 (13422) [004] dn.3 24577.609350: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135296          <idle>-0     (-----) [001] .n.1 24577.609351: cpu_idle: state=4294967295 cpu_id=1
135297              ps-13422 (13422) [004] d..2 24577.609353: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135298          <idle>-0     (-----) [001] d..2 24577.609357: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135299 shell svc 13418-13419 ( 1007) [004] d..2 24577.609361: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135300            adbd-1007  ( 1007) [000] d..2 24577.609378: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135301          <idle>-0     (-----) [000] d..1 24577.609386: cpu_idle: state=0 cpu_id=0
135302            adbd-23485 ( 1007) [001] d..2 24577.609403: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135303          <idle>-0     (-----) [001] d..1 24577.609409: cpu_idle: state=0 cpu_id=1
135304          <idle>-0     (-----) [001] d.h3 24577.609426: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135305          <idle>-0     (-----) [001] dnh4 24577.609432: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135306          <idle>-0     (-----) [001] .n.1 24577.609437: cpu_idle: state=4294967295 cpu_id=1
135307          <idle>-0     (-----) [001] d..2 24577.609442: 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
135308   kworker/u17:2-23076 (23076) [001] d..2 24577.609448: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135309   kworker/u17:2-23076 (23076) [001] d..3 24577.609453: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135310              ps-13422 (13422) [004] d..2 24577.609463: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135311              ps-13422 (13422) [004] dn.3 24577.609466: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135312   kworker/u17:2-23076 (23076) [001] d..2 24577.609469: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135313              ps-13422 (13422) [004] d..2 24577.609469: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135314     kworker/1:1-13091 (13091) [001] d..2 24577.609473: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
135315 shell svc 13418-13419 ( 1007) [004] d..2 24577.609477: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135316              ps-13422 (13422) [004] d..2 24577.609481: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135317              ps-13422 (13422) [004] dn.3 24577.609484: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135318              ps-13422 (13422) [004] d..2 24577.609486: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135319     kworker/1:1-13091 (13091) [001] d..3 24577.609488: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
135320 shell svc 13418-13419 ( 1007) [004] d..2 24577.609492: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135321          <idle>-0     (-----) [000] .n.1 24577.609493: cpu_idle: state=4294967295 cpu_id=0
135322              ps-13422 (13422) [004] d..2 24577.609496: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135323              ps-13422 (13422) [004] dn.3 24577.609498: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135324          <idle>-0     (-----) [000] d..2 24577.609500: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135325     kworker/1:1-13091 (13091) [001] d..2 24577.609501: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135326              ps-13422 (13422) [004] d..2 24577.609501: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135327 shell svc 13418-13419 ( 1007) [004] d..2 24577.609507: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135328          <idle>-0     (-----) [001] d..1 24577.609507: cpu_idle: state=0 cpu_id=1
135329            adbd-23485 ( 1007) [000] d..2 24577.609547: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135330          <idle>-0     (-----) [000] d..1 24577.609554: cpu_idle: state=0 cpu_id=0
135331              ps-13422 (13422) [004] d..2 24577.609572: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135332              ps-13422 (13422) [004] dn.3 24577.609576: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135333              ps-13422 (13422) [004] d..2 24577.609579: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135334          <idle>-0     (-----) [001] d.h3 24577.609585: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135335 shell svc 13418-13419 ( 1007) [004] d..2 24577.609587: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135336          <idle>-0     (-----) [001] dnh4 24577.609591: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135337          <idle>-0     (-----) [001] .n.1 24577.609595: cpu_idle: state=4294967295 cpu_id=1
135338          <idle>-0     (-----) [001] d..2 24577.609601: 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
135339   kworker/u17:2-23076 (23076) [001] d..2 24577.609607: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135340   kworker/u17:2-23076 (23076) [001] d..3 24577.609612: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135341   kworker/u17:2-23076 (23076) [001] d..2 24577.609626: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135342     kworker/1:1-13091 (13091) [001] d..2 24577.609631: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
135343     kworker/1:1-13091 (13091) [001] d..3 24577.609639: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
135344          <idle>-0     (-----) [000] .n.1 24577.609644: cpu_idle: state=4294967295 cpu_id=0
135345          <idle>-0     (-----) [000] d..2 24577.609650: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135346     kworker/1:1-13091 (13091) [001] d..2 24577.609652: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135347          <idle>-0     (-----) [001] d..1 24577.609658: cpu_idle: state=0 cpu_id=1
135348              ps-13422 (13422) [004] d..2 24577.609663: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135349            adbd-23485 ( 1007) [000] d..2 24577.609665: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135350              ps-13422 (13422) [004] dn.3 24577.609666: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135351              ps-13422 (13422) [004] d..2 24577.609669: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135352          <idle>-0     (-----) [000] d..1 24577.609671: cpu_idle: state=0 cpu_id=0
135353 shell svc 13418-13419 ( 1007) [004] d..2 24577.609677: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135354              ps-13422 (13422) [004] d..2 24577.609681: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135355              ps-13422 (13422) [004] dn.3 24577.609683: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135356              ps-13422 (13422) [004] d..2 24577.609686: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135357 shell svc 13418-13419 ( 1007) [004] d..2 24577.609692: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135358          <idle>-0     (-----) [001] d.h3 24577.609766: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135359          <idle>-0     (-----) [001] dnh4 24577.609771: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135360          <idle>-0     (-----) [001] .n.1 24577.609775: cpu_idle: state=4294967295 cpu_id=1
135361          <idle>-0     (-----) [001] d..2 24577.609781: 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
135362   kworker/u17:2-23076 (23076) [001] d..2 24577.609786: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135363   kworker/u17:2-23076 (23076) [001] d..3 24577.609791: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135364   kworker/u17:2-23076 (23076) [001] d..2 24577.609806: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135365     kworker/1:1-13091 (13091) [001] d..2 24577.609812: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
135366     kworker/1:1-13091 (13091) [001] d..3 24577.609820: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
135367              ps-13422 (13422) [004] d..2 24577.609821: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135368              ps-13422 (13422) [004] dn.3 24577.609825: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135369          <idle>-0     (-----) [000] .n.1 24577.609825: cpu_idle: state=4294967295 cpu_id=0
135370              ps-13422 (13422) [004] d..2 24577.609827: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135371          <idle>-0     (-----) [000] d..2 24577.609831: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
135372     kworker/1:1-13091 (13091) [001] d..2 24577.609833: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135373 shell svc 13418-13419 ( 1007) [004] d..2 24577.609835: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135374          <idle>-0     (-----) [001] d..1 24577.609839: cpu_idle: state=0 cpu_id=1
135375              ps-13422 (13422) [004] d..2 24577.609840: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135376            adbd-23484 ( 1007) [000] d..2 24577.609840: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
135377              ps-13422 (13422) [004] dn.3 24577.609842: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135378              ps-13422 (13422) [004] d..2 24577.609844: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135379            adbd-23484 ( 1007) [000] d..3 24577.609847: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
135380 shell svc 13418-13419 ( 1007) [004] d..2 24577.609850: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135381              ps-13422 (13422) [004] d..2 24577.609854: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135382              ps-13422 (13422) [004] dn.3 24577.609857: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135383              ps-13422 (13422) [004] d..2 24577.609859: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135384 shell svc 13418-13419 ( 1007) [004] d..2 24577.609865: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135385              ps-13422 (13422) [004] d..2 24577.609868: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135386              ps-13422 (13422) [004] dn.3 24577.609871: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135387              ps-13422 (13422) [004] d..2 24577.609873: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135388 shell svc 13418-13419 ( 1007) [004] d..2 24577.609879: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135389            adbd-23484 ( 1007) [000] d..2 24577.609888: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
135390              ps-13422 (13422) [004] d..2 24577.609927: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135391              ps-13422 (13422) [004] dn.3 24577.609930: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135392              ps-13422 (13422) [004] d..2 24577.609933: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135393 shell svc 13418-13419 ( 1007) [004] d..2 24577.609941: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135394            adbd-1007  ( 1007) [000] d..1 24577.609950: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
135395            adbd-1007  ( 1007) [000] d..2 24577.609968: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
135396          <idle>-0     (-----) [001] .n.1 24577.609973: cpu_idle: state=4294967295 cpu_id=1
135397          <idle>-0     (-----) [001] d..2 24577.609979: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135398              ps-13422 (13422) [004] d..2 24577.609986: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135399              ps-13422 (13422) [004] dn.3 24577.609989: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135400              ps-13422 (13422) [004] d..2 24577.609991: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135401 shell svc 13418-13419 ( 1007) [004] d..2 24577.610000: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135402            adbd-1007  ( 1007) [000] d..2 24577.610000: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135403          <idle>-0     (-----) [000] d..1 24577.610008: cpu_idle: state=0 cpu_id=0
135404            adbd-23485 ( 1007) [001] d..2 24577.610026: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135405              ps-13422 (13422) [004] d..2 24577.610041: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135406          <idle>-0     (-----) [001] d.h4 24577.610042: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135407              ps-13422 (13422) [004] dn.3 24577.610044: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135408              ps-13422 (13422) [004] d..2 24577.610046: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135409          <idle>-0     (-----) [001] dnh5 24577.610047: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135410 shell svc 13418-13419 ( 1007) [004] d..2 24577.610054: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135411          <idle>-0     (-----) [001] d..2 24577.610055: 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
135412   kworker/u17:2-23076 (23076) [001] d..2 24577.610061: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135413   kworker/u17:2-23076 (23076) [001] d..3 24577.610065: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135414   kworker/u17:2-23076 (23076) [001] d..2 24577.610081: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135415     kworker/1:1-13091 (13091) [001] d..2 24577.610085: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
135416     kworker/1:1-13091 (13091) [001] d..3 24577.610099: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
135417          <idle>-0     (-----) [000] .n.1 24577.610105: cpu_idle: state=4294967295 cpu_id=0
135418          <idle>-0     (-----) [000] d..2 24577.610111: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135419     kworker/1:1-13091 (13091) [001] d..2 24577.610112: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135420          <idle>-0     (-----) [001] d..1 24577.610120: cpu_idle: state=0 cpu_id=1
135421              ps-13422 (13422) [004] d..2 24577.610121: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135422              ps-13422 (13422) [004] dn.3 24577.610124: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135423              ps-13422 (13422) [004] d..2 24577.610126: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135424 shell svc 13418-13419 ( 1007) [004] d..2 24577.610133: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135425              ps-13422 (13422) [004] d..2 24577.610138: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135426              ps-13422 (13422) [004] dn.3 24577.610140: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135427              ps-13422 (13422) [004] d..2 24577.610142: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135428 shell svc 13418-13419 ( 1007) [004] d..2 24577.610148: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135429            adbd-23485 ( 1007) [000] d..2 24577.610159: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135430          <idle>-0     (-----) [000] d..1 24577.610166: cpu_idle: state=0 cpu_id=0
135431          <idle>-0     (-----) [001] d.h3 24577.610185: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135432          <idle>-0     (-----) [001] dnh4 24577.610190: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135433          <idle>-0     (-----) [001] .n.1 24577.610195: cpu_idle: state=4294967295 cpu_id=1
135434          <idle>-0     (-----) [001] d..2 24577.610200: 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
135435   kworker/u17:2-23076 (23076) [001] d..2 24577.610206: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135436   kworker/u17:2-23076 (23076) [001] d..3 24577.610211: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135437   kworker/u17:2-23076 (23076) [001] d..2 24577.610226: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135438     kworker/1:1-13091 (13091) [001] d..2 24577.610231: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
135439              ps-13422 (13422) [004] d..2 24577.610239: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135440     kworker/1:1-13091 (13091) [001] d..3 24577.610242: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
135441              ps-13422 (13422) [004] dn.3 24577.610242: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135442              ps-13422 (13422) [004] d..2 24577.610245: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135443          <idle>-0     (-----) [000] .n.1 24577.610247: cpu_idle: state=4294967295 cpu_id=0
135444          <idle>-0     (-----) [000] d..2 24577.610253: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135445 shell svc 13418-13419 ( 1007) [004] d..2 24577.610253: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135446     kworker/1:1-13091 (13091) [001] d..2 24577.610255: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135447              ps-13422 (13422) [004] d..2 24577.610257: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135448              ps-13422 (13422) [004] dn.3 24577.610260: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135449          <idle>-0     (-----) [001] d..1 24577.610261: cpu_idle: state=0 cpu_id=1
135450              ps-13422 (13422) [004] d..2 24577.610262: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135451            adbd-23485 ( 1007) [000] d..2 24577.610268: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135452 shell svc 13418-13419 ( 1007) [004] d..2 24577.610268: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135453              ps-13422 (13422) [004] d..2 24577.610272: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135454          <idle>-0     (-----) [000] d..1 24577.610274: cpu_idle: state=0 cpu_id=0
135455              ps-13422 (13422) [004] dn.3 24577.610274: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135456              ps-13422 (13422) [004] d..2 24577.610276: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135457 shell svc 13418-13419 ( 1007) [004] d..2 24577.610282: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135458              ps-13422 (13422) [004] d..2 24577.610326: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135459              ps-13422 (13422) [004] dn.3 24577.610329: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135460              ps-13422 (13422) [004] d..2 24577.610332: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135461 shell svc 13418-13419 ( 1007) [004] d..2 24577.610339: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135462          <idle>-0     (-----) [001] d.h3 24577.610363: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135463          <idle>-0     (-----) [001] dnh4 24577.610368: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135464          <idle>-0     (-----) [001] .n.1 24577.610373: cpu_idle: state=4294967295 cpu_id=1
135465          <idle>-0     (-----) [001] d..2 24577.610379: 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
135466   kworker/u17:2-23076 (23076) [001] d..2 24577.610384: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135467   kworker/u17:2-23076 (23076) [001] d..3 24577.610389: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135468   kworker/u17:2-23076 (23076) [001] d..2 24577.610404: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135469     kworker/1:1-13091 (13091) [001] d..2 24577.610410: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
135470     kworker/1:1-13091 (13091) [001] d..3 24577.610418: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
135471          <idle>-0     (-----) [000] .n.1 24577.610423: cpu_idle: state=4294967295 cpu_id=0
135472          <idle>-0     (-----) [000] d..2 24577.610428: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
135473     kworker/1:1-13091 (13091) [001] d..2 24577.610430: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135474          <idle>-0     (-----) [001] d..1 24577.610437: cpu_idle: state=0 cpu_id=1
135475            adbd-23484 ( 1007) [000] d..2 24577.610438: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
135476            adbd-23484 ( 1007) [000] d..3 24577.610444: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
135477              ps-13422 (13422) [004] d..2 24577.610458: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135478              ps-13422 (13422) [004] dn.3 24577.610461: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135479              ps-13422 (13422) [004] d..2 24577.610464: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135480 shell svc 13418-13419 ( 1007) [004] d..2 24577.610472: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135481              ps-13422 (13422) [004] d..2 24577.610476: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135482              ps-13422 (13422) [004] dn.3 24577.610478: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135483              ps-13422 (13422) [004] d..2 24577.610481: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135484            adbd-23484 ( 1007) [000] d..2 24577.610485: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
135485 shell svc 13418-13419 ( 1007) [004] d..2 24577.610487: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135486              ps-13422 (13422) [004] d..2 24577.610491: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135487              ps-13422 (13422) [004] dn.3 24577.610493: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135488              ps-13422 (13422) [004] d..2 24577.610495: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135489 shell svc 13418-13419 ( 1007) [004] d..2 24577.610501: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135490              ps-13422 (13422) [004] d..2 24577.610505: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135491              ps-13422 (13422) [004] dn.3 24577.610507: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135492              ps-13422 (13422) [004] d..2 24577.610509: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135493 shell svc 13418-13419 ( 1007) [004] d..2 24577.610515: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135494            adbd-1007  ( 1007) [000] d..1 24577.610547: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
135495            adbd-1007  ( 1007) [000] d..2 24577.610565: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
135496          <idle>-0     (-----) [001] .n.1 24577.610570: cpu_idle: state=4294967295 cpu_id=1
135497              ps-13422 (13422) [004] d..2 24577.610576: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135498          <idle>-0     (-----) [001] d..2 24577.610576: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135499              ps-13422 (13422) [004] dn.3 24577.610579: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135500              ps-13422 (13422) [004] d..2 24577.610582: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135501 shell svc 13418-13419 ( 1007) [004] d..2 24577.610589: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135502            adbd-1007  ( 1007) [000] d..2 24577.610597: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135503          <idle>-0     (-----) [000] d..1 24577.610605: cpu_idle: state=0 cpu_id=0
135504            adbd-23485 ( 1007) [001] d..2 24577.610621: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135505          <idle>-0     (-----) [001] d.h4 24577.610637: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135506          <idle>-0     (-----) [001] dnh5 24577.610645: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135507          <idle>-0     (-----) [001] d..2 24577.610653: 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
135508   kworker/u17:2-23076 (23076) [001] d..2 24577.610658: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135509   kworker/u17:2-23076 (23076) [001] d..3 24577.610663: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135510   kworker/u17:2-23076 (23076) [001] d..2 24577.610678: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135511     kworker/1:1-13091 (13091) [001] d..2 24577.610683: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
135512     kworker/1:1-13091 (13091) [001] d..3 24577.610697: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
135513          <idle>-0     (-----) [000] .n.1 24577.610702: cpu_idle: state=4294967295 cpu_id=0
135514          <idle>-0     (-----) [000] d..2 24577.610709: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135515     kworker/1:1-13091 (13091) [001] d..2 24577.610710: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135516          <idle>-0     (-----) [001] d..1 24577.610717: cpu_idle: state=0 cpu_id=1
135517            adbd-23485 ( 1007) [000] d..2 24577.610756: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135518          <idle>-0     (-----) [000] d..1 24577.610763: cpu_idle: state=0 cpu_id=0
135519              ps-13422 (13422) [004] d..2 24577.610763: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135520              ps-13422 (13422) [004] dn.3 24577.610767: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135521              ps-13422 (13422) [004] d..2 24577.610769: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135522 shell svc 13418-13419 ( 1007) [004] d..2 24577.610778: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135523              ps-13422 (13422) [004] d..2 24577.610782: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135524              ps-13422 (13422) [004] dn.3 24577.610785: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135525              ps-13422 (13422) [004] d..2 24577.610787: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135526          <idle>-0     (-----) [001] d.h3 24577.610789: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135527 shell svc 13418-13419 ( 1007) [004] d..2 24577.610793: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135528          <idle>-0     (-----) [001] dnh4 24577.610795: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135529              ps-13422 (13422) [004] d..2 24577.610797: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135530          <idle>-0     (-----) [001] .n.1 24577.610799: cpu_idle: state=4294967295 cpu_id=1
135531              ps-13422 (13422) [004] dn.3 24577.610800: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135532              ps-13422 (13422) [004] d..2 24577.610802: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135533          <idle>-0     (-----) [001] d..2 24577.610805: 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
135534 shell svc 13418-13419 ( 1007) [004] d..2 24577.610808: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135535   kworker/u17:2-23076 (23076) [001] d..2 24577.610812: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135536              ps-13422 (13422) [004] d..2 24577.610812: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135537              ps-13422 (13422) [004] dn.3 24577.610814: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135538              ps-13422 (13422) [004] d..2 24577.610816: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135539   kworker/u17:2-23076 (23076) [001] d..3 24577.610817: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135540 shell svc 13418-13419 ( 1007) [004] d..2 24577.610822: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135541              ps-13422 (13422) [004] d..2 24577.610826: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135542              ps-13422 (13422) [004] dn.3 24577.610828: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135543              ps-13422 (13422) [004] d..2 24577.610830: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135544   kworker/u17:2-23076 (23076) [001] d..2 24577.610832: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135545 shell svc 13418-13419 ( 1007) [004] d..2 24577.610836: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135546     kworker/1:1-13091 (13091) [001] d..2 24577.610837: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
135547              ps-13422 (13422) [004] d..2 24577.610839: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135548              ps-13422 (13422) [004] dn.3 24577.610842: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135549              ps-13422 (13422) [004] d..2 24577.610843: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135550     kworker/1:1-13091 (13091) [001] d..3 24577.610846: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
135551 shell svc 13418-13419 ( 1007) [004] d..2 24577.610849: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135552          <idle>-0     (-----) [000] .n.1 24577.610851: cpu_idle: state=4294967295 cpu_id=0
135553          <idle>-0     (-----) [000] d..2 24577.610856: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135554     kworker/1:1-13091 (13091) [001] d..2 24577.610859: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135555          <idle>-0     (-----) [001] d..1 24577.610865: cpu_idle: state=0 cpu_id=1
135556            adbd-23485 ( 1007) [000] d..2 24577.610873: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135557          <idle>-0     (-----) [000] d..1 24577.610879: cpu_idle: state=0 cpu_id=0
135558          <idle>-0     (-----) [003] d.s2 24577.610896: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
135559          <idle>-0     (-----) [003] dns3 24577.610905: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
135560          <idle>-0     (-----) [003] .n.1 24577.610914: cpu_idle: state=4294967295 cpu_id=3
135561          <idle>-0     (-----) [003] d..2 24577.610921: 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
135562     rcu_preempt-7     (    7) [003] d..2 24577.610929: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
135563     rcu_preempt-7     (    7) [003] d..3 24577.610950: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
135564     rcu_preempt-7     (    7) [003] d..2 24577.610958: 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
135565          <idle>-0     (-----) [001] d.h3 24577.610964: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135566          <idle>-0     (-----) [001] dnh4 24577.610970: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135567          <idle>-0     (-----) [001] .n.1 24577.610974: cpu_idle: state=4294967295 cpu_id=1
135568          <idle>-0     (-----) [001] d..2 24577.610981: 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
135569   kworker/u17:2-23076 (23076) [001] d..2 24577.610986: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135570   kworker/u17:2-23076 (23076) [001] d..3 24577.610991: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135571   kworker/u17:2-23076 (23076) [001] d..2 24577.611006: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135572     kworker/1:1-13091 (13091) [001] d..2 24577.611011: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
135573         rcuop/4-45    (   45) [003] d..2 24577.611024: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
135574          <idle>-0     (-----) [003] d..1 24577.611030: cpu_idle: state=0 cpu_id=3
135575          <idle>-0     (-----) [003] .n.1 24577.611032: cpu_idle: state=4294967295 cpu_id=3
135576     kworker/1:1-13091 (13091) [001] d..3 24577.611034: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
135577          <idle>-0     (-----) [003] d..2 24577.611039: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
135578     kworker/1:1-13091 (13091) [001] d..2 24577.611054: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135579            adbd-23484 ( 1007) [003] d..2 24577.611055: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
135580          <idle>-0     (-----) [001] d..1 24577.611061: cpu_idle: state=0 cpu_id=1
135581            adbd-23484 ( 1007) [003] d..3 24577.611066: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
135582              ps-13422 (13422) [004] d..2 24577.611093: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135583              ps-13422 (13422) [004] dn.3 24577.611096: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135584              ps-13422 (13422) [004] d..2 24577.611099: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135585 shell svc 13418-13419 ( 1007) [004] d..2 24577.611108: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135586            adbd-23484 ( 1007) [003] d..2 24577.611110: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
135587              ps-13422 (13422) [004] d..2 24577.611112: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135588              ps-13422 (13422) [004] dn.3 24577.611115: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135589              ps-13422 (13422) [004] d..2 24577.611117: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135590 shell svc 13418-13419 ( 1007) [004] d..2 24577.611123: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135591              ps-13422 (13422) [004] d..2 24577.611127: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135592              ps-13422 (13422) [004] dn.3 24577.611129: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135593              ps-13422 (13422) [004] d..2 24577.611131: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135594 shell svc 13418-13419 ( 1007) [004] d..2 24577.611137: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135595              ps-13422 (13422) [004] d..2 24577.611141: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135596              ps-13422 (13422) [004] dn.3 24577.611143: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135597              ps-13422 (13422) [004] d..2 24577.611145: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135598 shell svc 13418-13419 ( 1007) [004] d..2 24577.611151: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135599              ps-13422 (13422) [004] d..2 24577.611155: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135600              ps-13422 (13422) [004] dn.3 24577.611157: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135601              ps-13422 (13422) [004] d..2 24577.611159: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135602 shell svc 13418-13419 ( 1007) [004] d..2 24577.611165: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135603              ps-13422 (13422) [004] d..2 24577.611169: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135604              ps-13422 (13422) [004] dn.3 24577.611171: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135605              ps-13422 (13422) [004] d..2 24577.611173: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135606 shell svc 13418-13419 ( 1007) [004] d..2 24577.611179: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135607            adbd-1007  ( 1007) [003] d..1 24577.611180: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
135608              ps-13422 (13422) [004] d..2 24577.611183: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135609              ps-13422 (13422) [004] dn.3 24577.611185: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135610              ps-13422 (13422) [004] d..2 24577.611187: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135611            adbd-1007  ( 1007) [003] d..2 24577.611191: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
135612 shell svc 13418-13419 ( 1007) [004] d..2 24577.611193: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135613          <idle>-0     (-----) [000] .n.1 24577.611196: cpu_idle: state=4294967295 cpu_id=0
135614              ps-13422 (13422) [004] d..2 24577.611197: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135615              ps-13422 (13422) [004] dn.3 24577.611199: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135616              ps-13422 (13422) [004] d..2 24577.611201: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135617          <idle>-0     (-----) [000] d..2 24577.611202: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135618 shell svc 13418-13419 ( 1007) [004] d..2 24577.611207: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135619              ps-13422 (13422) [004] d..2 24577.611210: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135620              ps-13422 (13422) [004] dn.3 24577.611213: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135621              ps-13422 (13422) [004] d..2 24577.611215: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135622 shell svc 13418-13419 ( 1007) [004] d..2 24577.611221: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135623            adbd-1007  ( 1007) [003] d..2 24577.611223: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
135624          <idle>-0     (-----) [003] d..1 24577.611231: cpu_idle: state=0 cpu_id=3
135625            adbd-23485 ( 1007) [000] d..2 24577.611246: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135626          <idle>-0     (-----) [000] d..1 24577.611252: cpu_idle: state=0 cpu_id=0
135627          <idle>-0     (-----) [001] d.h3 24577.611260: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135628          <idle>-0     (-----) [001] dnh4 24577.611265: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135629          <idle>-0     (-----) [001] .n.1 24577.611270: cpu_idle: state=4294967295 cpu_id=1
135630          <idle>-0     (-----) [001] d..2 24577.611276: 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
135631   kworker/u17:2-23076 (23076) [001] d..2 24577.611282: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135632   kworker/u17:2-23076 (23076) [001] d..3 24577.611287: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135633   kworker/u17:2-23076 (23076) [001] d..2 24577.611302: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135634     kworker/1:1-13091 (13091) [001] d..2 24577.611307: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
135635              ps-13422 (13422) [004] d..2 24577.611311: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135636              ps-13422 (13422) [004] dn.3 24577.611314: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135637     kworker/1:1-13091 (13091) [001] d..3 24577.611315: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
135638              ps-13422 (13422) [004] d..2 24577.611316: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135639          <idle>-0     (-----) [000] .n.1 24577.611320: cpu_idle: state=4294967295 cpu_id=0
135640 shell svc 13418-13419 ( 1007) [004] d..2 24577.611324: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135641          <idle>-0     (-----) [000] d..2 24577.611326: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135642     kworker/1:1-13091 (13091) [001] d..2 24577.611328: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135643              ps-13422 (13422) [004] d..2 24577.611328: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135644              ps-13422 (13422) [004] dn.3 24577.611331: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135645              ps-13422 (13422) [004] d..2 24577.611333: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135646          <idle>-0     (-----) [001] d..1 24577.611335: cpu_idle: state=0 cpu_id=1
135647 shell svc 13418-13419 ( 1007) [004] d..2 24577.611339: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135648              ps-13422 (13422) [004] d..2 24577.611343: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135649              ps-13422 (13422) [004] dn.3 24577.611345: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135650              ps-13422 (13422) [004] d..2 24577.611347: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135651 shell svc 13418-13419 ( 1007) [004] d..2 24577.611353: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135652            adbd-23485 ( 1007) [000] d..2 24577.611370: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135653          <idle>-0     (-----) [000] d..1 24577.611376: cpu_idle: state=0 cpu_id=0
135654              ps-13422 (13422) [004] d..2 24577.611391: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135655          <idle>-0     (-----) [001] d.h3 24577.611392: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135656              ps-13422 (13422) [004] dn.3 24577.611394: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135657              ps-13422 (13422) [004] d..2 24577.611396: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135658          <idle>-0     (-----) [001] dnh4 24577.611397: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135659          <idle>-0     (-----) [001] .n.1 24577.611402: cpu_idle: state=4294967295 cpu_id=1
135660 shell svc 13418-13419 ( 1007) [004] d..2 24577.611404: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135661          <idle>-0     (-----) [001] d..2 24577.611407: 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
135662   kworker/u17:2-23076 (23076) [001] d..2 24577.611413: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135663   kworker/u17:2-23076 (23076) [001] d..3 24577.611418: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135664   kworker/u17:2-23076 (23076) [001] d..2 24577.611433: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135665     kworker/1:1-13091 (13091) [001] d..2 24577.611439: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
135666     kworker/1:1-13091 (13091) [001] d..3 24577.611447: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
135667          <idle>-0     (-----) [000] .n.1 24577.611452: cpu_idle: state=4294967295 cpu_id=0
135668          <idle>-0     (-----) [000] d..2 24577.611458: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135669     kworker/1:1-13091 (13091) [001] d..2 24577.611460: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135670          <idle>-0     (-----) [001] d..1 24577.611466: cpu_idle: state=0 cpu_id=1
135671            adbd-23485 ( 1007) [000] d..2 24577.611477: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135672          <idle>-0     (-----) [000] d..1 24577.611483: cpu_idle: state=0 cpu_id=0
135673          <idle>-0     (-----) [001] d.h3 24577.611517: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135674          <idle>-0     (-----) [001] dnh4 24577.611522: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135675          <idle>-0     (-----) [001] .n.1 24577.611527: cpu_idle: state=4294967295 cpu_id=1
135676          <idle>-0     (-----) [001] d..2 24577.611533: 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
135677              ps-13422 (13422) [004] d..2 24577.611538: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135678   kworker/u17:2-23076 (23076) [001] d..2 24577.611538: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135679              ps-13422 (13422) [004] dn.3 24577.611541: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135680   kworker/u17:2-23076 (23076) [001] d..3 24577.611543: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135681              ps-13422 (13422) [004] d..2 24577.611543: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135682 shell svc 13418-13419 ( 1007) [004] d..2 24577.611552: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135683              ps-13422 (13422) [004] d..2 24577.611556: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135684   kworker/u17:2-23076 (23076) [001] d..2 24577.611558: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135685              ps-13422 (13422) [004] dn.3 24577.611559: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135686              ps-13422 (13422) [004] d..2 24577.611561: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135687     kworker/1:1-13091 (13091) [001] d..2 24577.611564: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
135688 shell svc 13418-13419 ( 1007) [004] d..2 24577.611567: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135689              ps-13422 (13422) [004] d..2 24577.611571: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135690     kworker/1:1-13091 (13091) [001] d..3 24577.611572: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
135691              ps-13422 (13422) [004] dn.3 24577.611573: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135692              ps-13422 (13422) [004] d..2 24577.611575: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135693          <idle>-0     (-----) [003] .n.1 24577.611577: cpu_idle: state=4294967295 cpu_id=3
135694 shell svc 13418-13419 ( 1007) [004] d..2 24577.611581: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135695          <idle>-0     (-----) [003] d..2 24577.611584: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
135696     kworker/1:1-13091 (13091) [001] d..2 24577.611585: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135697              ps-13422 (13422) [004] d..2 24577.611585: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135698              ps-13422 (13422) [004] dn.3 24577.611588: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135699              ps-13422 (13422) [004] d..2 24577.611589: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135700          <idle>-0     (-----) [001] d..1 24577.611592: cpu_idle: state=0 cpu_id=1
135701            adbd-23484 ( 1007) [003] d..2 24577.611594: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
135702 shell svc 13418-13419 ( 1007) [004] d..2 24577.611595: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135703              ps-13422 (13422) [004] d..2 24577.611599: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135704            adbd-23484 ( 1007) [003] d..3 24577.611600: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
135705              ps-13422 (13422) [004] dn.3 24577.611601: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135706              ps-13422 (13422) [004] d..2 24577.611603: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135707 shell svc 13418-13419 ( 1007) [004] d..2 24577.611609: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135708            adbd-23484 ( 1007) [003] d..2 24577.611642: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
135709              ps-13422 (13422) [004] d..2 24577.611657: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135710              ps-13422 (13422) [004] dn.3 24577.611660: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135711              ps-13422 (13422) [004] d..2 24577.611662: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135712 shell svc 13418-13419 ( 1007) [004] d..2 24577.611670: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135713            adbd-1007  ( 1007) [003] d..1 24577.611704: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
135714            adbd-1007  ( 1007) [003] d..2 24577.611715: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
135715          <idle>-0     (-----) [000] .n.1 24577.611720: cpu_idle: state=4294967295 cpu_id=0
135716          <idle>-0     (-----) [000] d..2 24577.611725: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135717              ps-13422 (13422) [004] d..2 24577.611734: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135718              ps-13422 (13422) [004] dn.3 24577.611737: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135719              ps-13422 (13422) [004] d..2 24577.611739: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135720            adbd-1007  ( 1007) [003] d..2 24577.611747: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
135721 shell svc 13418-13419 ( 1007) [004] d..2 24577.611747: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135722              ps-13422 (13422) [004] d..2 24577.611752: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135723          <idle>-0     (-----) [003] d..1 24577.611754: cpu_idle: state=0 cpu_id=3
135724              ps-13422 (13422) [004] dn.3 24577.611754: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135725              ps-13422 (13422) [004] d..2 24577.611756: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135726 shell svc 13418-13419 ( 1007) [004] d..2 24577.611762: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135727            adbd-23485 ( 1007) [000] d..2 24577.611769: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135728          <idle>-0     (-----) [000] d..1 24577.611775: cpu_idle: state=0 cpu_id=0
135729          <idle>-0     (-----) [001] d.h3 24577.611777: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135730          <idle>-0     (-----) [001] dnh4 24577.611782: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135731          <idle>-0     (-----) [001] .n.1 24577.611787: cpu_idle: state=4294967295 cpu_id=1
135732          <idle>-0     (-----) [001] d..2 24577.611792: 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
135733   kworker/u17:2-23076 (23076) [001] d..2 24577.611798: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135734   kworker/u17:2-23076 (23076) [001] d..3 24577.611803: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135735              ps-13422 (13422) [004] d..2 24577.611807: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135736              ps-13422 (13422) [004] dn.3 24577.611810: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135737              ps-13422 (13422) [004] d..2 24577.611812: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135738   kworker/u17:2-23076 (23076) [001] d..2 24577.611818: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135739 shell svc 13418-13419 ( 1007) [004] d..2 24577.611819: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135740     kworker/1:1-13091 (13091) [001] d..2 24577.611823: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
135741     kworker/1:1-13091 (13091) [001] d..3 24577.611831: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
135742          <idle>-0     (-----) [000] .n.1 24577.611836: cpu_idle: state=4294967295 cpu_id=0
135743          <idle>-0     (-----) [000] d..2 24577.611841: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135744     kworker/1:1-13091 (13091) [001] d..2 24577.611844: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135745          <idle>-0     (-----) [001] d..1 24577.611850: cpu_idle: state=0 cpu_id=1
135746            adbd-23485 ( 1007) [000] d..2 24577.611884: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135747          <idle>-0     (-----) [000] d..1 24577.611890: cpu_idle: state=0 cpu_id=0
135748          <idle>-0     (-----) [001] d.h3 24577.611914: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135749          <idle>-0     (-----) [001] dnh4 24577.611919: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135750          <idle>-0     (-----) [001] .n.1 24577.611924: cpu_idle: state=4294967295 cpu_id=1
135751          <idle>-0     (-----) [001] d..2 24577.611930: 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
135752   kworker/u17:2-23076 (23076) [001] d..2 24577.611936: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135753   kworker/u17:2-23076 (23076) [001] d..3 24577.611941: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135754   kworker/u17:2-23076 (23076) [001] d..2 24577.611955: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135755     kworker/1:1-13091 (13091) [001] d..2 24577.611960: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
135756     kworker/1:1-13091 (13091) [001] d..3 24577.611969: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
135757          <idle>-0     (-----) [000] .n.1 24577.611974: cpu_idle: state=4294967295 cpu_id=0
135758          <idle>-0     (-----) [000] d..2 24577.611979: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135759     kworker/1:1-13091 (13091) [001] d..2 24577.611981: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135760          <idle>-0     (-----) [001] d..1 24577.611987: cpu_idle: state=0 cpu_id=1
135761            adbd-23485 ( 1007) [000] d..2 24577.611994: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135762          <idle>-0     (-----) [000] d..1 24577.612000: cpu_idle: state=0 cpu_id=0
135763          <idle>-0     (-----) [001] d.h3 24577.612065: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135764          <idle>-0     (-----) [001] dnh4 24577.612070: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135765          <idle>-0     (-----) [001] .n.1 24577.612075: cpu_idle: state=4294967295 cpu_id=1
135766          <idle>-0     (-----) [001] d..2 24577.612081: 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
135767   kworker/u17:2-23076 (23076) [001] d..2 24577.612087: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135768   kworker/u17:2-23076 (23076) [001] d..3 24577.612092: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135769   kworker/u17:2-23076 (23076) [001] d..2 24577.612107: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135770     kworker/1:1-13091 (13091) [001] d..2 24577.612112: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
135771     kworker/1:1-13091 (13091) [001] d..3 24577.612120: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
135772          <idle>-0     (-----) [003] .n.1 24577.612125: cpu_idle: state=4294967295 cpu_id=3
135773          <idle>-0     (-----) [003] d..2 24577.612132: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
135774     kworker/1:1-13091 (13091) [001] d..2 24577.612134: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135775          <idle>-0     (-----) [001] d..1 24577.612141: cpu_idle: state=0 cpu_id=1
135776            adbd-23484 ( 1007) [003] d..2 24577.612142: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
135777            adbd-23484 ( 1007) [003] d..3 24577.612148: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
135778            adbd-23484 ( 1007) [003] d..2 24577.612190: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
135779            adbd-1007  ( 1007) [003] d..1 24577.612242: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
135780            adbd-1007  ( 1007) [003] d..2 24577.612256: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
135781          <idle>-0     (-----) [000] .n.1 24577.612261: cpu_idle: state=4294967295 cpu_id=0
135782          <idle>-0     (-----) [000] d..2 24577.612266: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135783            adbd-1007  ( 1007) [003] d..2 24577.612287: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
135784          <idle>-0     (-----) [003] d..1 24577.612294: cpu_idle: state=0 cpu_id=3
135785            adbd-23485 ( 1007) [000] d..2 24577.612309: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135786          <idle>-0     (-----) [000] d..1 24577.612315: cpu_idle: state=0 cpu_id=0
135787          <idle>-0     (-----) [001] d.h3 24577.612324: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135788          <idle>-0     (-----) [001] dnh4 24577.612329: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135789          <idle>-0     (-----) [001] .n.1 24577.612334: cpu_idle: state=4294967295 cpu_id=1
135790          <idle>-0     (-----) [001] d..2 24577.612340: 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
135791   kworker/u17:2-23076 (23076) [001] d..2 24577.612346: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135792   kworker/u17:2-23076 (23076) [001] d..3 24577.612350: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135793   kworker/u17:2-23076 (23076) [001] d..2 24577.612366: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135794     kworker/1:1-13091 (13091) [001] d..2 24577.612370: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
135795     kworker/1:1-13091 (13091) [001] d..3 24577.612379: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
135796     kworker/1:1-13091 (13091) [001] d..2 24577.612391: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135797          <idle>-0     (-----) [001] d..1 24577.612397: cpu_idle: state=0 cpu_id=1
135798          <idle>-0     (-----) [000] dnh5 24577.612427: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
135799          <idle>-0     (-----) [000] dnh6 24577.612439: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
135800              ps-13422 (13422) [004] d..2 24577.612440: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135801          <idle>-0     (-----) [000] dnh5 24577.612442: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
135802          <idle>-0     (-----) [003] .n.1 24577.612444: cpu_idle: state=4294967295 cpu_id=3
135803              ps-13422 (13422) [004] dn.3 24577.612444: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135804              ps-13422 (13422) [004] d..2 24577.612447: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135805          <idle>-0     (-----) [003] d..2 24577.612450: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
135806          <idle>-0     (-----) [000] dnh6 24577.612450: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
135807          <idle>-0     (-----) [002] .n.1 24577.612455: cpu_idle: state=4294967295 cpu_id=2
135808 shell svc 13418-13419 ( 1007) [004] d..2 24577.612456: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135809              ps-13422 (13422) [004] d..2 24577.612461: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135810          <idle>-0     (-----) [002] d..2 24577.612461: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
135811          <idle>-0     (-----) [000] .n.1 24577.612462: cpu_idle: state=4294967295 cpu_id=0
135812              ps-13422 (13422) [004] dn.3 24577.612463: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135813              ps-13422 (13422) [004] d..2 24577.612465: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135814          <idle>-0     (-----) [000] d..2 24577.612469: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135815  crtc_event:111-254   (  254) [003] d..2 24577.612470: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
135816 shell svc 13418-13419 ( 1007) [004] d..2 24577.612472: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135817          <idle>-0     (-----) [003] d..1 24577.612475: cpu_idle: state=0 cpu_id=3
135818              ps-13422 (13422) [004] d..2 24577.612476: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135819              ps-13422 (13422) [004] dn.3 24577.612478: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135820              ps-13422 (13422) [004] d..2 24577.612480: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135821 shell svc 13418-13419 ( 1007) [004] d..2 24577.612486: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135822              ps-13422 (13422) [004] d..2 24577.612490: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135823              ps-13422 (13422) [004] dn.3 24577.612492: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135824              ps-13422 (13422) [004] d..2 24577.612494: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135825 shell svc 13418-13419 ( 1007) [004] d..2 24577.612500: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135826              ps-13422 (13422) [004] d..2 24577.612503: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135827              ps-13422 (13422) [004] dn.3 24577.612506: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135828              ps-13422 (13422) [004] d..2 24577.612508: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135829            adbd-23485 ( 1007) [000] d..2 24577.612513: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135830 shell svc 13418-13419 ( 1007) [004] d..2 24577.612514: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135831              ps-13422 (13422) [004] d..2 24577.612518: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135832          <idle>-0     (-----) [000] d..1 24577.612520: cpu_idle: state=0 cpu_id=0
135833              ps-13422 (13422) [004] dn.3 24577.612521: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135834              ps-13422 (13422) [004] d..2 24577.612522: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135835 shell svc 13418-13419 ( 1007) [004] d..2 24577.612529: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135836          <idle>-0     (-----) [001] d.h3 24577.612529: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135837              ps-13422 (13422) [004] d..2 24577.612532: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135838          <idle>-0     (-----) [001] dnh4 24577.612534: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135839              ps-13422 (13422) [004] dn.3 24577.612534: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135840              ps-13422 (13422) [004] d..2 24577.612536: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135841          <idle>-0     (-----) [001] .n.1 24577.612539: cpu_idle: state=4294967295 cpu_id=1
135842 shell svc 13418-13419 ( 1007) [004] d..2 24577.612542: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135843          <idle>-0     (-----) [001] d..2 24577.612544: 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
135844              ps-13422 (13422) [004] d..2 24577.612546: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135845              ps-13422 (13422) [004] dn.3 24577.612548: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135846              ps-13422 (13422) [004] d..2 24577.612550: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135847   kworker/u17:2-23076 (23076) [001] d..2 24577.612551: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135848   kworker/u17:2-23076 (23076) [001] d..3 24577.612555: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135849 shell svc 13418-13419 ( 1007) [004] d..2 24577.612556: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135850              ps-13422 (13422) [004] d..2 24577.612560: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135851              ps-13422 (13422) [004] dn.3 24577.612562: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135852              ps-13422 (13422) [004] d..2 24577.612564: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135853   kworker/u17:2-23076 (23076) [001] d..2 24577.612570: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135854 shell svc 13418-13419 ( 1007) [004] d..2 24577.612570: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135855              ps-13422 (13422) [004] d..2 24577.612573: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135856     kworker/1:1-13091 (13091) [001] d..2 24577.612575: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
135857              ps-13422 (13422) [004] dn.3 24577.612576: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135858              ps-13422 (13422) [004] d..2 24577.612578: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135859     kworker/1:1-13091 (13091) [001] d..3 24577.612583: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
135860 shell svc 13418-13419 ( 1007) [004] d..2 24577.612584: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135861 crtc_commit:111-253   (  253) [002] d..2 24577.612584: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
135862              ps-13422 (13422) [004] d..2 24577.612587: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135863          <idle>-0     (-----) [002] d..1 24577.612588: cpu_idle: state=0 cpu_id=2
135864          <idle>-0     (-----) [000] .n.1 24577.612588: cpu_idle: state=4294967295 cpu_id=0
135865              ps-13422 (13422) [004] dn.3 24577.612589: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135866              ps-13422 (13422) [004] d..2 24577.612591: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135867          <idle>-0     (-----) [000] d..2 24577.612594: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135868     kworker/1:1-13091 (13091) [001] d..2 24577.612595: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135869 shell svc 13418-13419 ( 1007) [004] d..2 24577.612597: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135870              ps-13422 (13422) [004] d..2 24577.612601: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135871          <idle>-0     (-----) [001] d..1 24577.612602: cpu_idle: state=0 cpu_id=1
135872              ps-13422 (13422) [004] dn.3 24577.612603: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135873              ps-13422 (13422) [004] d..2 24577.612605: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135874            adbd-23485 ( 1007) [000] d..2 24577.612609: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135875 shell svc 13418-13419 ( 1007) [004] d..2 24577.612611: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135876          <idle>-0     (-----) [000] d..1 24577.612615: cpu_idle: state=0 cpu_id=0
135877              ps-13422 (13422) [004] d..2 24577.612616: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135878              ps-13422 (13422) [004] dn.3 24577.612618: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135879              ps-13422 (13422) [004] d..2 24577.612620: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135880 shell svc 13418-13419 ( 1007) [004] d..2 24577.612626: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135881              ps-13422 (13422) [004] d..2 24577.612631: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135882              ps-13422 (13422) [004] dn.3 24577.612634: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135883              ps-13422 (13422) [004] d..2 24577.612636: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135884 shell svc 13418-13419 ( 1007) [004] d..2 24577.612642: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135885              ps-13422 (13422) [004] d..2 24577.612647: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135886              ps-13422 (13422) [004] dn.3 24577.612649: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135887              ps-13422 (13422) [004] d..2 24577.612651: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135888 shell svc 13418-13419 ( 1007) [004] d..2 24577.612657: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135889              ps-13422 (13422) [004] d..2 24577.612660: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135890              ps-13422 (13422) [004] dn.3 24577.612662: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135891          <idle>-0     (-----) [001] d.h3 24577.612663: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135892              ps-13422 (13422) [004] d..2 24577.612664: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135893 shell svc 13418-13419 ( 1007) [004] d..2 24577.612670: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135894          <idle>-0     (-----) [001] dnh4 24577.612671: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135895              ps-13422 (13422) [004] d..2 24577.612675: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135896          <idle>-0     (-----) [001] .n.1 24577.612676: cpu_idle: state=4294967295 cpu_id=1
135897              ps-13422 (13422) [004] dn.3 24577.612677: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135898              ps-13422 (13422) [004] d..2 24577.612679: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135899          <idle>-0     (-----) [001] d..2 24577.612682: 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
135900 shell svc 13418-13419 ( 1007) [004] d..2 24577.612685: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135901   kworker/u17:2-23076 (23076) [001] d..2 24577.612689: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135902              ps-13422 (13422) [004] d..2 24577.612690: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135903              ps-13422 (13422) [004] dn.3 24577.612692: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135904              ps-13422 (13422) [004] d..2 24577.612694: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135905   kworker/u17:2-23076 (23076) [001] d..3 24577.612695: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135906 shell svc 13418-13419 ( 1007) [004] d..2 24577.612700: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135907              ps-13422 (13422) [004] d..2 24577.612703: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135908              ps-13422 (13422) [004] dn.3 24577.612706: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135909              ps-13422 (13422) [004] d..2 24577.612708: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135910   kworker/u17:2-23076 (23076) [001] d..2 24577.612710: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135911 shell svc 13418-13419 ( 1007) [004] d..2 24577.612714: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135912     kworker/1:1-13091 (13091) [001] d..2 24577.612715: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
135913              ps-13422 (13422) [004] d..2 24577.612718: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135914              ps-13422 (13422) [004] dn.3 24577.612720: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135915              ps-13422 (13422) [004] d..2 24577.612722: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135916     kworker/1:1-13091 (13091) [001] d..3 24577.612723: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
135917          <idle>-0     (-----) [003] .n.1 24577.612728: cpu_idle: state=4294967295 cpu_id=3
135918 shell svc 13418-13419 ( 1007) [004] d..2 24577.612728: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135919              ps-13422 (13422) [004] d..2 24577.612732: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135920          <idle>-0     (-----) [003] d..2 24577.612734: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
135921              ps-13422 (13422) [004] dn.3 24577.612734: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135922     kworker/1:1-13091 (13091) [001] d..2 24577.612736: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135923              ps-13422 (13422) [004] d..2 24577.612736: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135924 shell svc 13418-13419 ( 1007) [004] d..2 24577.612742: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135925          <idle>-0     (-----) [001] d..1 24577.612742: cpu_idle: state=0 cpu_id=1
135926            adbd-23484 ( 1007) [003] d..2 24577.612745: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
135927              ps-13422 (13422) [004] d..2 24577.612746: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135928              ps-13422 (13422) [004] dn.3 24577.612748: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135929              ps-13422 (13422) [004] d..2 24577.612750: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135930            adbd-23484 ( 1007) [003] d..3 24577.612751: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
135931 shell svc 13418-13419 ( 1007) [004] d..2 24577.612756: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135932              ps-13422 (13422) [004] d..2 24577.612760: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135933              ps-13422 (13422) [004] dn.3 24577.612762: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135934              ps-13422 (13422) [004] d..2 24577.612765: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135935 shell svc 13418-13419 ( 1007) [004] d..2 24577.612771: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135936              ps-13422 (13422) [004] d..2 24577.612775: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135937              ps-13422 (13422) [004] dn.3 24577.612777: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135938              ps-13422 (13422) [004] d..2 24577.612779: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135939 shell svc 13418-13419 ( 1007) [004] d..2 24577.612784: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135940              ps-13422 (13422) [004] d..2 24577.612788: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135941              ps-13422 (13422) [004] dn.3 24577.612790: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135942              ps-13422 (13422) [004] d..2 24577.612792: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135943            adbd-23484 ( 1007) [003] d..2 24577.612794: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
135944 shell svc 13418-13419 ( 1007) [004] d..2 24577.612798: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135945              ps-13422 (13422) [004] d..2 24577.612802: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135946              ps-13422 (13422) [004] dn.3 24577.612805: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135947              ps-13422 (13422) [004] d..2 24577.612806: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135948 shell svc 13418-13419 ( 1007) [004] d..2 24577.612812: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135949              ps-13422 (13422) [004] d..2 24577.612817: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135950              ps-13422 (13422) [004] dn.3 24577.612819: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135951              ps-13422 (13422) [004] d..2 24577.612821: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135952 shell svc 13418-13419 ( 1007) [004] d..2 24577.612827: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135953              ps-13422 (13422) [004] d..2 24577.612830: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135954              ps-13422 (13422) [004] dn.3 24577.612833: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135955              ps-13422 (13422) [004] d..2 24577.612835: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135956 shell svc 13418-13419 ( 1007) [004] d..2 24577.612840: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135957            adbd-1007  ( 1007) [003] d..1 24577.612873: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
135958            adbd-1007  ( 1007) [003] d..2 24577.612884: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
135959              ps-13422 (13422) [004] d..2 24577.612888: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135960          <idle>-0     (-----) [000] .n.1 24577.612888: cpu_idle: state=4294967295 cpu_id=0
135961              ps-13422 (13422) [004] dn.3 24577.612891: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135962          <idle>-0     (-----) [000] d..2 24577.612894: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135963              ps-13422 (13422) [004] d..2 24577.612894: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135964 shell svc 13418-13419 ( 1007) [004] d..2 24577.612902: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135965            adbd-1007  ( 1007) [003] d..2 24577.612915: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
135966          <idle>-0     (-----) [003] d..1 24577.612922: cpu_idle: state=0 cpu_id=3
135967            adbd-23485 ( 1007) [000] d..2 24577.612938: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135968          <idle>-0     (-----) [000] d..1 24577.612944: cpu_idle: state=0 cpu_id=0
135969          <idle>-0     (-----) [001] d.h3 24577.612946: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135970              ps-13422 (13422) [004] d..2 24577.612948: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135971          <idle>-0     (-----) [001] dnh4 24577.612951: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135972              ps-13422 (13422) [004] dn.3 24577.612951: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135973              ps-13422 (13422) [004] d..2 24577.612953: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135974          <idle>-0     (-----) [001] .n.1 24577.612955: cpu_idle: state=4294967295 cpu_id=1
135975          <idle>-0     (-----) [001] d..2 24577.612961: 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
135976 shell svc 13418-13419 ( 1007) [004] d..2 24577.612961: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135977   kworker/u17:2-23076 (23076) [001] d..2 24577.612967: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135978   kworker/u17:2-23076 (23076) [001] d..3 24577.612972: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135979   kworker/u17:2-23076 (23076) [001] d..2 24577.612987: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
135980     kworker/1:1-13091 (13091) [001] d..2 24577.612993: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
135981     kworker/1:1-13091 (13091) [001] d..3 24577.613002: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
135982          <idle>-0     (-----) [000] .n.1 24577.613006: cpu_idle: state=4294967295 cpu_id=0
135983              ps-13422 (13422) [004] d..2 24577.613007: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135984              ps-13422 (13422) [004] dn.3 24577.613010: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135985          <idle>-0     (-----) [000] d..2 24577.613012: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
135986              ps-13422 (13422) [004] d..2 24577.613012: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
135987     kworker/1:1-13091 (13091) [001] d..2 24577.613014: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135988          <idle>-0     (-----) [001] d..1 24577.613020: cpu_idle: state=0 cpu_id=1
135989 shell svc 13418-13419 ( 1007) [004] d..2 24577.613020: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
135990            adbd-23485 ( 1007) [000] d..2 24577.613055: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135991          <idle>-0     (-----) [000] d..1 24577.613061: cpu_idle: state=0 cpu_id=0
135992          <idle>-0     (-----) [001] d.h3 24577.613092: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135993          <idle>-0     (-----) [001] dnh4 24577.613098: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
135994          <idle>-0     (-----) [001] .n.1 24577.613103: cpu_idle: state=4294967295 cpu_id=1
135995          <idle>-0     (-----) [001] d..2 24577.613108: 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
135996              ps-13422 (13422) [004] d..2 24577.613112: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135997   kworker/u17:2-23076 (23076) [001] d..2 24577.613114: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
135998              ps-13422 (13422) [004] dn.3 24577.613116: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
135999              ps-13422 (13422) [004] d..2 24577.613118: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136000   kworker/u17:2-23076 (23076) [001] d..3 24577.613119: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136001 shell svc 13418-13419 ( 1007) [004] d..2 24577.613126: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136002              ps-13422 (13422) [004] d..2 24577.613131: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136003              ps-13422 (13422) [004] dn.3 24577.613133: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136004   kworker/u17:2-23076 (23076) [001] d..2 24577.613134: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
136005              ps-13422 (13422) [004] d..2 24577.613135: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136006     kworker/1:1-13091 (13091) [001] d..2 24577.613139: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
136007 shell svc 13418-13419 ( 1007) [004] d..2 24577.613142: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136008              ps-13422 (13422) [004] d..2 24577.613147: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136009     kworker/1:1-13091 (13091) [001] d..3 24577.613147: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
136010              ps-13422 (13422) [004] dn.3 24577.613149: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136011              ps-13422 (13422) [004] d..2 24577.613151: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136012          <idle>-0     (-----) [000] .n.1 24577.613152: cpu_idle: state=4294967295 cpu_id=0
136013 shell svc 13418-13419 ( 1007) [004] d..2 24577.613157: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136014          <idle>-0     (-----) [000] d..2 24577.613159: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
136015     kworker/1:1-13091 (13091) [001] d..2 24577.613160: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136016          <idle>-0     (-----) [001] d..1 24577.613166: cpu_idle: state=0 cpu_id=1
136017            adbd-23485 ( 1007) [000] d..2 24577.613174: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136018          <idle>-0     (-----) [000] d..1 24577.613180: cpu_idle: state=0 cpu_id=0
136019          <idle>-0     (-----) [001] d.h3 24577.613217: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136020          <idle>-0     (-----) [001] dnh4 24577.613222: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136021              ps-13422 (13422) [004] d..2 24577.613226: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136022          <idle>-0     (-----) [001] .n.1 24577.613227: cpu_idle: state=4294967295 cpu_id=1
136023              ps-13422 (13422) [004] dn.3 24577.613229: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136024              ps-13422 (13422) [004] d..2 24577.613232: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136025          <idle>-0     (-----) [001] d..2 24577.613233: 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
136026   kworker/u17:2-23076 (23076) [001] d..2 24577.613239: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136027 shell svc 13418-13419 ( 1007) [004] d..2 24577.613240: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136028              ps-13422 (13422) [004] d..2 24577.613244: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136029   kworker/u17:2-23076 (23076) [001] d..3 24577.613244: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136030              ps-13422 (13422) [004] dn.3 24577.613246: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136031              ps-13422 (13422) [004] d..2 24577.613248: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136032 shell svc 13418-13419 ( 1007) [004] d..2 24577.613255: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136033   kworker/u17:2-23076 (23076) [001] d..2 24577.613259: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
136034     kworker/1:1-13091 (13091) [001] d..2 24577.613265: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
136035     kworker/1:1-13091 (13091) [001] d..3 24577.613286: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
136036          <idle>-0     (-----) [000] .n.1 24577.613291: cpu_idle: state=4294967295 cpu_id=0
136037          <idle>-0     (-----) [000] d..2 24577.613296: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
136038     kworker/1:1-13091 (13091) [001] d..2 24577.613298: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136039          <idle>-0     (-----) [001] d..1 24577.613305: cpu_idle: state=0 cpu_id=1
136040            adbd-23484 ( 1007) [000] d..2 24577.613307: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
136041            adbd-23484 ( 1007) [000] d..3 24577.613319: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
136042            adbd-23484 ( 1007) [000] d..2 24577.613359: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
136043            adbd-1007  ( 1007) [000] d..1 24577.613425: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
136044            adbd-1007  ( 1007) [000] d..2 24577.613444: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
136045          <idle>-0     (-----) [001] .n.1 24577.613449: cpu_idle: state=4294967295 cpu_id=1
136046          <idle>-0     (-----) [001] d..2 24577.613455: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
136047            adbd-1007  ( 1007) [000] d..2 24577.613474: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136048          <idle>-0     (-----) [000] d..1 24577.613482: cpu_idle: state=0 cpu_id=0
136049            adbd-23485 ( 1007) [001] d..2 24577.613500: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136050          <idle>-0     (-----) [001] d.h4 24577.613517: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136051          <idle>-0     (-----) [001] dnh5 24577.613522: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136052          <idle>-0     (-----) [001] d..2 24577.613530: 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
136053   kworker/u17:2-23076 (23076) [001] d..2 24577.613535: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136054   kworker/u17:2-23076 (23076) [001] d..3 24577.613540: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136055   kworker/u17:2-23076 (23076) [001] d..2 24577.613556: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
136056     kworker/1:1-13091 (13091) [001] d..2 24577.613560: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
136057     kworker/1:1-13091 (13091) [001] d..3 24577.613575: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
136058          <idle>-0     (-----) [000] .n.1 24577.613581: cpu_idle: state=4294967295 cpu_id=0
136059     kworker/1:1-13091 (13091) [001] d..2 24577.613587: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136060          <idle>-0     (-----) [000] d..2 24577.613588: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
136061          <idle>-0     (-----) [001] d..1 24577.613595: cpu_idle: state=0 cpu_id=1
136062              ps-13422 (13422) [004] d..2 24577.613616: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136063              ps-13422 (13422) [004] dn.3 24577.613620: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136064              ps-13422 (13422) [004] d..2 24577.613622: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136065 shell svc 13418-13419 ( 1007) [004] d..2 24577.613631: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136066            adbd-23485 ( 1007) [000] d..2 24577.613635: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136067              ps-13422 (13422) [004] d..2 24577.613636: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136068              ps-13422 (13422) [004] dn.3 24577.613638: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136069              ps-13422 (13422) [004] d..2 24577.613640: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136070          <idle>-0     (-----) [000] d..1 24577.613642: cpu_idle: state=0 cpu_id=0
136071 shell svc 13418-13419 ( 1007) [004] d..2 24577.613647: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136072              ps-13422 (13422) [004] d..2 24577.613651: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136073              ps-13422 (13422) [004] dn.3 24577.613654: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136074              ps-13422 (13422) [004] d..2 24577.613656: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136075          <idle>-0     (-----) [001] d.h3 24577.613658: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136076 shell svc 13418-13419 ( 1007) [004] d..2 24577.613662: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136077          <idle>-0     (-----) [001] dnh4 24577.613663: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136078              ps-13422 (13422) [004] d..2 24577.613666: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136079          <idle>-0     (-----) [001] .n.1 24577.613668: cpu_idle: state=4294967295 cpu_id=1
136080              ps-13422 (13422) [004] dn.3 24577.613668: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136081              ps-13422 (13422) [004] d..2 24577.613670: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136082          <idle>-0     (-----) [001] d..2 24577.613674: 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
136083 shell svc 13418-13419 ( 1007) [004] d..2 24577.613676: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136084              ps-13422 (13422) [004] d..2 24577.613679: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136085   kworker/u17:2-23076 (23076) [001] d..2 24577.613680: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136086              ps-13422 (13422) [004] dn.3 24577.613682: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136087              ps-13422 (13422) [004] d..2 24577.613684: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136088   kworker/u17:2-23076 (23076) [001] d..3 24577.613685: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136089 shell svc 13418-13419 ( 1007) [004] d..2 24577.613690: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136090              ps-13422 (13422) [004] d..2 24577.613694: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136091              ps-13422 (13422) [004] dn.3 24577.613696: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136092              ps-13422 (13422) [004] d..2 24577.613698: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136093   kworker/u17:2-23076 (23076) [001] d..2 24577.613702: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
136094 shell svc 13418-13419 ( 1007) [004] d..2 24577.613704: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136095     kworker/1:1-13091 (13091) [001] d..2 24577.613707: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
136096              ps-13422 (13422) [004] d..2 24577.613708: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136097              ps-13422 (13422) [004] dn.3 24577.613710: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136098              ps-13422 (13422) [004] d..2 24577.613712: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136099     kworker/1:1-13091 (13091) [001] d..3 24577.613715: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
136100 shell svc 13418-13419 ( 1007) [004] d..2 24577.613718: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136101          <idle>-0     (-----) [000] .n.1 24577.613720: cpu_idle: state=4294967295 cpu_id=0
136102              ps-13422 (13422) [004] d..2 24577.613722: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136103              ps-13422 (13422) [004] dn.3 24577.613724: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136104          <idle>-0     (-----) [000] d..2 24577.613725: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
136105              ps-13422 (13422) [004] d..2 24577.613726: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136106     kworker/1:1-13091 (13091) [001] d..2 24577.613727: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136107 shell svc 13418-13419 ( 1007) [004] d..2 24577.613732: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136108          <idle>-0     (-----) [001] d..1 24577.613735: cpu_idle: state=0 cpu_id=1
136109              ps-13422 (13422) [004] d..2 24577.613736: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136110              ps-13422 (13422) [004] dn.3 24577.613738: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136111              ps-13422 (13422) [004] d..2 24577.613740: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136112            adbd-23485 ( 1007) [000] d..2 24577.613740: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136113          <idle>-0     (-----) [000] d..1 24577.613746: cpu_idle: state=0 cpu_id=0
136114 shell svc 13418-13419 ( 1007) [004] d..2 24577.613746: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136115              ps-13422 (13422) [004] d..2 24577.613750: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136116              ps-13422 (13422) [004] dn.3 24577.613752: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136117              ps-13422 (13422) [004] d..2 24577.613754: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136118 shell svc 13418-13419 ( 1007) [004] d..2 24577.613760: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136119              ps-13422 (13422) [004] d..2 24577.613765: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136120              ps-13422 (13422) [004] dn.3 24577.613767: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136121              ps-13422 (13422) [004] d..2 24577.613769: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136122 shell svc 13418-13419 ( 1007) [004] d..2 24577.613775: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136123              ps-13422 (13422) [004] d..2 24577.613779: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136124          <idle>-0     (-----) [001] d.h3 24577.613779: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136125              ps-13422 (13422) [004] dn.3 24577.613782: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136126              ps-13422 (13422) [004] d..2 24577.613784: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136127          <idle>-0     (-----) [001] dnh4 24577.613785: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136128          <idle>-0     (-----) [001] .n.1 24577.613789: cpu_idle: state=4294967295 cpu_id=1
136129 shell svc 13418-13419 ( 1007) [004] d..2 24577.613789: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136130              ps-13422 (13422) [004] d..2 24577.613794: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136131          <idle>-0     (-----) [001] d..2 24577.613795: 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
136132              ps-13422 (13422) [004] dn.3 24577.613796: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136133              ps-13422 (13422) [004] d..2 24577.613798: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136134   kworker/u17:2-23076 (23076) [001] d..2 24577.613801: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136135 shell svc 13418-13419 ( 1007) [004] d..2 24577.613804: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136136   kworker/u17:2-23076 (23076) [001] d..3 24577.613806: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136137              ps-13422 (13422) [004] d..2 24577.613809: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136138              ps-13422 (13422) [004] dn.3 24577.613811: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136139              ps-13422 (13422) [004] d..2 24577.613813: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136140 shell svc 13418-13419 ( 1007) [004] d..2 24577.613819: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136141   kworker/u17:2-23076 (23076) [001] d..2 24577.613820: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
136142     kworker/1:1-13091 (13091) [001] d..2 24577.613827: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
136143     kworker/1:1-13091 (13091) [001] d..3 24577.613835: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
136144          <idle>-0     (-----) [000] .n.1 24577.613839: cpu_idle: state=4294967295 cpu_id=0
136145          <idle>-0     (-----) [000] d..2 24577.613845: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
136146     kworker/1:1-13091 (13091) [001] d..2 24577.613847: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136147          <idle>-0     (-----) [001] d..1 24577.613853: cpu_idle: state=0 cpu_id=1
136148            adbd-23484 ( 1007) [000] d..2 24577.613854: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
136149            adbd-23484 ( 1007) [000] d..3 24577.613861: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
136150              ps-13422 (13422) [004] d..2 24577.613861: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136151              ps-13422 (13422) [004] dn.3 24577.613864: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136152              ps-13422 (13422) [004] d..2 24577.613867: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136153 shell svc 13418-13419 ( 1007) [004] d..2 24577.613875: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136154            adbd-23484 ( 1007) [000] d..2 24577.613902: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
136155              ps-13422 (13422) [004] d..2 24577.613912: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136156              ps-13422 (13422) [004] dn.3 24577.613915: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136157              ps-13422 (13422) [004] d..2 24577.613917: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136158 shell svc 13418-13419 ( 1007) [004] d..2 24577.613925: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136159              ps-13422 (13422) [004] d..2 24577.613962: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136160              ps-13422 (13422) [004] dn.3 24577.613965: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136161              ps-13422 (13422) [004] d..2 24577.613968: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136162            adbd-1007  ( 1007) [000] d..1 24577.613968: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
136163 shell svc 13418-13419 ( 1007) [004] d..2 24577.613975: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136164            adbd-1007  ( 1007) [000] d..2 24577.613986: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
136165          <idle>-0     (-----) [001] .n.1 24577.613991: cpu_idle: state=4294967295 cpu_id=1
136166          <idle>-0     (-----) [001] d..2 24577.613997: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
136167              ps-13422 (13422) [004] d..2 24577.614013: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136168              ps-13422 (13422) [004] dn.3 24577.614016: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136169            adbd-1007  ( 1007) [000] d..2 24577.614018: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136170              ps-13422 (13422) [004] d..2 24577.614018: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136171          <idle>-0     (-----) [000] d..1 24577.614026: cpu_idle: state=0 cpu_id=0
136172 shell svc 13418-13419 ( 1007) [004] d..2 24577.614026: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136173            adbd-23485 ( 1007) [001] d..2 24577.614042: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136174          <idle>-0     (-----) [001] d.h4 24577.614058: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136175          <idle>-0     (-----) [001] dnh5 24577.614063: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136176              ps-13422 (13422) [004] d..2 24577.614063: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136177              ps-13422 (13422) [004] dn.3 24577.614066: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136178              ps-13422 (13422) [004] d..2 24577.614068: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136179          <idle>-0     (-----) [001] d..2 24577.614070: 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
136180 shell svc 13418-13419 ( 1007) [004] d..2 24577.614076: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136181   kworker/u17:2-23076 (23076) [001] d..2 24577.614076: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136182   kworker/u17:2-23076 (23076) [001] d..3 24577.614081: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136183   kworker/u17:2-23076 (23076) [001] d..2 24577.614096: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
136184     kworker/1:1-13091 (13091) [001] d..2 24577.614101: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
136185     kworker/1:1-13091 (13091) [001] d..3 24577.614115: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
136186          <idle>-0     (-----) [000] .n.1 24577.614121: cpu_idle: state=4294967295 cpu_id=0
136187          <idle>-0     (-----) [000] d..2 24577.614127: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
136188     kworker/1:1-13091 (13091) [001] d..2 24577.614128: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136189          <idle>-0     (-----) [001] d..1 24577.614136: cpu_idle: state=0 cpu_id=1
136190            adbd-23485 ( 1007) [000] d..2 24577.614175: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136191          <idle>-0     (-----) [000] d..1 24577.614182: cpu_idle: state=0 cpu_id=0
136192              ps-13422 (13422) [004] d..2 24577.614189: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136193              ps-13422 (13422) [004] dn.3 24577.614192: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136194              ps-13422 (13422) [004] d..2 24577.614195: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136195 shell svc 13418-13419 ( 1007) [004] d..2 24577.614202: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136196              ps-13422 (13422) [004] d..2 24577.614207: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136197          <idle>-0     (-----) [001] d.h3 24577.614209: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136198              ps-13422 (13422) [004] dn.3 24577.614210: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136199          <idle>-0     (-----) [001] dnh4 24577.614214: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136200          <idle>-0     (-----) [001] .n.1 24577.614219: cpu_idle: state=4294967295 cpu_id=1
136201              ps-13422 (13422) [004] dns3 24577.614220: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
136202          <idle>-0     (-----) [001] d..2 24577.614227: 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
136203          <idle>-0     (-----) [002] d.s3 24577.614229: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
136204   kworker/u17:2-23076 (23076) [001] d..2 24577.614233: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136205              ps-13422 (13422) [004] d..2 24577.614237: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136206   kworker/u17:2-23076 (23076) [001] d..3 24577.614238: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136207          <idle>-0     (-----) [002] d.s4 24577.614240: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
136208          <idle>-0     (-----) [000] dnh2 24577.614242: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
136209 shell svc 13418-13419 ( 1007) [004] d..2 24577.614245: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136210          <idle>-0     (-----) [003] .n.1 24577.614245: cpu_idle: state=4294967295 cpu_id=3
136211          <idle>-0     (-----) [000] .n.1 24577.614246: cpu_idle: state=4294967295 cpu_id=0
136212              ps-13422 (13422) [004] d..2 24577.614250: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136213          <idle>-0     (-----) [003] d..2 24577.614251: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
136214              ps-13422 (13422) [004] dn.3 24577.614252: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136215          <idle>-0     (-----) [000] d..2 24577.614254: 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
136216   kworker/u17:2-23076 (23076) [001] d..2 24577.614255: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
136217              ps-13422 (13422) [004] d..2 24577.614255: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136218          <idle>-0     (-----) [002] ...1 24577.614255: cpu_idle: state=4294967295 cpu_id=2
136219          <idle>-0     (-----) [002] d..1 24577.614258: cpu_idle: state=0 cpu_id=2
136220     kworker/1:1-13091 (13091) [001] d..2 24577.614260: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
136221 shell svc 13418-13419 ( 1007) [004] d..2 24577.614262: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136222              ps-13422 (13422) [004] d..2 24577.614265: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136223              ps-13422 (13422) [004] dn.3 24577.614268: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136224  crtc_event:111-254   (  254) [003] d..2 24577.614269: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
136225              ps-13422 (13422) [004] d..2 24577.614270: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136226          <idle>-0     (-----) [003] d..1 24577.614273: cpu_idle: state=0 cpu_id=3
136227 shell svc 13418-13419 ( 1007) [004] d..2 24577.614277: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136228     kworker/1:1-13091 (13091) [001] d..3 24577.614283: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
136229          <idle>-0     (-----) [003] .n.1 24577.614288: cpu_idle: state=4294967295 cpu_id=3
136230          <idle>-0     (-----) [003] d..2 24577.614293: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
136231     kworker/1:1-13091 (13091) [001] d..2 24577.614301: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136232            adbd-23485 ( 1007) [003] d..2 24577.614310: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
136233          <idle>-0     (-----) [003] d..1 24577.614314: cpu_idle: state=0 cpu_id=3
136234          <idle>-0     (-----) [001] d..1 24577.614320: cpu_idle: state=0 cpu_id=1
136235  kworker/u16:10-23868 (23868) [000] .... 24577.614325: clk_set_rate: l3_cluster0_vote_clk 844800000
136236          <idle>-0     (-----) [001] d.h3 24577.614343: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136237          <idle>-0     (-----) [001] dnh4 24577.614349: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136238          <idle>-0     (-----) [001] .n.1 24577.614354: cpu_idle: state=4294967295 cpu_id=1
136239          <idle>-0     (-----) [001] d..2 24577.614359: 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
136240   kworker/u17:2-23076 (23076) [001] d..2 24577.614365: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136241   kworker/u17:2-23076 (23076) [001] d..3 24577.614370: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136242   kworker/u17:2-23076 (23076) [001] d..2 24577.614386: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
136243  kworker/u16:10-23868 (23868) [000] .... 24577.614386: clk_set_rate: l3_cluster1_vote_clk 1478400000
136244  kworker/u16:10-23868 (23868) [000] .... 24577.614389: clk_set_rate: l3_clk 1478400000
136245              ps-13422 (13422) [004] d..2 24577.614390: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136246     kworker/1:1-13091 (13091) [001] d..2 24577.614391: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
136247              ps-13422 (13422) [004] dn.3 24577.614393: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136248              ps-13422 (13422) [004] d..2 24577.614396: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136249     kworker/1:1-13091 (13091) [001] d..3 24577.614400: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
136250 shell svc 13418-13419 ( 1007) [004] d..2 24577.614404: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136251              ps-13422 (13422) [004] d..2 24577.614409: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136252              ps-13422 (13422) [004] dn.3 24577.614411: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136253              ps-13422 (13422) [004] d..2 24577.614414: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136254     kworker/1:1-13091 (13091) [001] d..2 24577.614420: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
136255 shell svc 13418-13419 ( 1007) [004] d..2 24577.614420: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136256              ps-13422 (13422) [004] d..2 24577.614425: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136257              ps-13422 (13422) [004] dn.3 24577.614428: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136258              ps-13422 (13422) [004] d..2 24577.614430: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136259 shell svc 13418-13419 ( 1007) [004] d..2 24577.614436: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136260            adbd-23484 ( 1007) [001] d..2 24577.614441: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
136261            adbd-23484 ( 1007) [001] d..3 24577.614451: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
136262            adbd-23484 ( 1007) [001] d..2 24577.614494: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
136263  kworker/u16:10-23868 (23868) [000] d..2 24577.614539: 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
136264          <idle>-0     (-----) [000] d..1 24577.614546: cpu_idle: state=0 cpu_id=0
136265            adbd-1007  ( 1007) [001] d..1 24577.614554: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
136266          <idle>-0     (-----) [003] d.s3 24577.614569: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
136267              ps-13422 (13422) [004] d..2 24577.614572: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136268              ps-13422 (13422) [004] dn.3 24577.614575: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136269              ps-13422 (13422) [004] d..2 24577.614577: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136270            adbd-1007  ( 1007) [001] d..2 24577.614579: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
136271          <idle>-0     (-----) [003] d.s4 24577.614581: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
136272          <idle>-0     (-----) [000] .n.1 24577.614584: cpu_idle: state=4294967295 cpu_id=0
136273          <idle>-0     (-----) [003] d.s4 24577.614585: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
136274 shell svc 13418-13419 ( 1007) [004] d..2 24577.614586: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136275          <idle>-0     (-----) [003] ...1 24577.614590: cpu_idle: state=4294967295 cpu_id=3
136276              ps-13422 (13422) [004] d..2 24577.614590: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136277          <idle>-0     (-----) [000] d..2 24577.614591: 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
136278          <idle>-0     (-----) [003] d..1 24577.614592: cpu_idle: state=0 cpu_id=3
136279              ps-13422 (13422) [004] dn.3 24577.614593: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136280              ps-13422 (13422) [004] d..2 24577.614595: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136281 shell svc 13418-13419 ( 1007) [004] d..2 24577.614601: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136282  kworker/u16:10-23868 (23868) [000] d..2 24577.614602: 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
136283              ps-13422 (13422) [004] d..2 24577.614605: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136284              ps-13422 (13422) [004] dn.3 24577.614608: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136285              ps-13422 (13422) [004] d..2 24577.614610: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136286            adbd-1007  ( 1007) [001] d..2 24577.614615: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136287 shell svc 13418-13419 ( 1007) [004] d..2 24577.614616: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136288              ps-13422 (13422) [004] d..2 24577.614619: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136289              ps-13422 (13422) [004] dn.3 24577.614622: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136290              ps-13422 (13422) [004] d..2 24577.614623: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136291          <idle>-0     (-----) [001] d..1 24577.614624: cpu_idle: state=0 cpu_id=1
136292 shell svc 13418-13419 ( 1007) [004] d..2 24577.614629: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136293              ps-13422 (13422) [004] d..2 24577.614633: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136294              ps-13422 (13422) [004] dn.3 24577.614635: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136295              ps-13422 (13422) [004] d..2 24577.614637: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136296 shell svc 13418-13419 ( 1007) [004] d..2 24577.614643: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136297            adbd-23485 ( 1007) [000] d..2 24577.614647: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136298          <idle>-0     (-----) [000] d..1 24577.614654: cpu_idle: state=0 cpu_id=0
136299          <idle>-0     (-----) [001] d.h3 24577.614655: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136300          <idle>-0     (-----) [001] dnh4 24577.614661: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136301          <idle>-0     (-----) [001] .n.1 24577.614666: cpu_idle: state=4294967295 cpu_id=1
136302          <idle>-0     (-----) [001] d..2 24577.614672: 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
136303   kworker/u17:2-23076 (23076) [001] d..2 24577.614680: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136304   kworker/u17:2-23076 (23076) [001] d..3 24577.614685: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136305   kworker/u17:2-23076 (23076) [001] d..2 24577.614705: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
136306     kworker/1:1-13091 (13091) [001] d..2 24577.614713: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
136307     kworker/1:1-13091 (13091) [001] d..3 24577.614725: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
136308     kworker/1:1-13091 (13091) [001] d..2 24577.614737: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136309          <idle>-0     (-----) [001] d..1 24577.614744: cpu_idle: state=0 cpu_id=1
136310          <idle>-0     (-----) [000] dnh5 24577.614778: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
136311          <idle>-0     (-----) [000] dnh6 24577.614789: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
136312          <idle>-0     (-----) [002] .n.1 24577.614793: cpu_idle: state=4294967295 cpu_id=2
136313          <idle>-0     (-----) [002] d..2 24577.614799: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
136314          <idle>-0     (-----) [000] .n.1 24577.614800: cpu_idle: state=4294967295 cpu_id=0
136315          <idle>-0     (-----) [000] d..2 24577.614806: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
136316            adbd-23485 ( 1007) [000] d..2 24577.614850: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136317 crtc_commit:111-253   (  253) [002] d..2 24577.614852: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
136318          <idle>-0     (-----) [000] d..1 24577.614857: cpu_idle: state=0 cpu_id=0
136319          <idle>-0     (-----) [002] d..1 24577.614857: cpu_idle: state=0 cpu_id=2
136320          <idle>-0     (-----) [001] d.h3 24577.614871: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136321          <idle>-0     (-----) [001] dnh4 24577.614879: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136322          <idle>-0     (-----) [001] .n.1 24577.614884: cpu_idle: state=4294967295 cpu_id=1
136323          <idle>-0     (-----) [001] d..2 24577.614889: 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
136324   kworker/u17:2-23076 (23076) [001] d..2 24577.614896: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136325   kworker/u17:2-23076 (23076) [001] d..3 24577.614900: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136326   kworker/u17:2-23076 (23076) [001] d..2 24577.614916: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
136327     kworker/1:1-13091 (13091) [001] d..2 24577.614920: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
136328     kworker/1:1-13091 (13091) [001] d..3 24577.614928: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
136329          <idle>-0     (-----) [000] .n.1 24577.614933: cpu_idle: state=4294967295 cpu_id=0
136330          <idle>-0     (-----) [000] d..2 24577.614939: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
136331     kworker/1:1-13091 (13091) [001] d..2 24577.614940: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136332          <idle>-0     (-----) [001] d..1 24577.614947: cpu_idle: state=0 cpu_id=1
136333            adbd-23485 ( 1007) [000] d..2 24577.614955: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136334          <idle>-0     (-----) [000] d..1 24577.614960: cpu_idle: state=0 cpu_id=0
136335          <idle>-0     (-----) [001] d.h3 24577.615020: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136336          <idle>-0     (-----) [001] dnh4 24577.615025: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136337          <idle>-0     (-----) [001] .n.1 24577.615030: cpu_idle: state=4294967295 cpu_id=1
136338          <idle>-0     (-----) [001] d..2 24577.615036: 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
136339   kworker/u17:2-23076 (23076) [001] d..2 24577.615041: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136340   kworker/u17:2-23076 (23076) [001] d..3 24577.615046: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136341   kworker/u17:2-23076 (23076) [001] d..2 24577.615060: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
136342     kworker/1:1-13091 (13091) [001] d..2 24577.615065: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
136343          <idle>-0     (-----) [000] d.h5 24577.615068: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
136344          <idle>-0     (-----) [000] dnh6 24577.615078: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
136345     kworker/1:1-13091 (13091) [001] d..3 24577.615080: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
136346          <idle>-0     (-----) [003] .n.1 24577.615082: cpu_idle: state=4294967295 cpu_id=3
136347          <idle>-0     (-----) [000] dnh7 24577.615083: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
136348          <idle>-0     (-----) [003] d..2 24577.615086: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
136349          <idle>-0     (-----) [000] dnh8 24577.615090: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
136350     kworker/1:1-13091 (13091) [001] d..2 24577.615092: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136351          <idle>-0     (-----) [001] d..1 24577.615098: cpu_idle: state=0 cpu_id=1
136352          <idle>-0     (-----) [000] dnh9 24577.615101: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
136353  crtc_event:111-254   (  254) [003] d..2 24577.615108: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
136354          <idle>-0     (-----) [000] dnha 24577.615110: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
136355          <idle>-0     (-----) [000] dnh7 24577.615114: sched_waking: comm=SDM_EventThread pid=624 prio=111 target_cpu=001
136356          <idle>-0     (-----) [002] .n.1 24577.615115: cpu_idle: state=4294967295 cpu_id=2
136357            adbd-23484 ( 1007) [003] d..2 24577.615118: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
136358          <idle>-0     (-----) [002] d..2 24577.615120: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
136359            adbd-23484 ( 1007) [003] d..3 24577.615128: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
136360          <idle>-0     (-----) [000] dnh8 24577.615135: sched_wakeup: comm=SDM_EventThread pid=624 prio=111 target_cpu=000
136361          <idle>-0     (-----) [000] .n.1 24577.615149: cpu_idle: state=4294967295 cpu_id=0
136362          <idle>-0     (-----) [000] d..2 24577.615156: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
136363 crtc_commit:111-253   (  253) [002] d..2 24577.615158: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=SDM_EventThread next_pid=624 next_prio=111
136364            adbd-23484 ( 1007) [003] d..2 24577.615168: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
136365     kworker/0:1-13012 (13012) [000] d..2 24577.615173: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136366          <idle>-0     (-----) [000] d..1 24577.615178: cpu_idle: state=0 cpu_id=0
136367 SDM_EventThread-624   (  598) [002] ...1 24577.615191: tracing_mark_write: B|598|HWCCallbacks::Vsync::
136368 SDM_EventThread-624   (  598) [002] ...1 24577.615199: tracing_mark_write: B|598|HIDL::IComposerCallback::onVsync::client
136369 SDM_EventThread-624   (  598) [002] ...1 24577.615201: tracing_mark_write: E|598
136370            adbd-1007  ( 1007) [003] d..1 24577.615223: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
136371 SDM_EventThread-624   (  598) [002] .... 24577.615224: binder_transaction: transaction=1671689 dest_node=1270370 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
136372 SDM_EventThread-624   (  598) [002] d..4 24577.615231: sched_waking: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=000
136373            adbd-1007  ( 1007) [003] d..2 24577.615233: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
136374          <idle>-0     (-----) [000] .n.1 24577.615238: cpu_idle: state=4294967295 cpu_id=0
136375          <idle>-0     (-----) [000] d..2 24577.615244: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
136376 SDM_EventThread-624   (  598) [002] d..5 24577.615256: sched_wakeup: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=001
136377          <idle>-0     (-----) [001] .n.1 24577.615261: cpu_idle: state=4294967295 cpu_id=1
136378            adbd-1007  ( 1007) [003] d..2 24577.615266: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
136379          <idle>-0     (-----) [001] d..2 24577.615267: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:23896_ next_pid=23923 next_prio=120
136380          <idle>-0     (-----) [003] d..1 24577.615271: cpu_idle: state=0 cpu_id=3
136381 HwBinder:23896_-23923 (23896) [001] .... 24577.615273: binder_transaction_received: transaction=1671689
136382 SDM_EventThread-624   (  598) [002] ...1 24577.615274: tracing_mark_write: E|598
136383 SDM_EventThread-624   (  598) [002] d..4 24577.615283: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
136384            adbd-23485 ( 1007) [000] d..2 24577.615288: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136385          <idle>-0     (-----) [000] d..1 24577.615294: cpu_idle: state=0 cpu_id=0
136386 SDM_EventThread-624   (  598) [002] d..5 24577.615299: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
136387 HwBinder:23896_-23923 (23896) [001] d.h2 24577.615299: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136388          <idle>-0     (-----) [000] .n.1 24577.615304: cpu_idle: state=4294967295 cpu_id=0
136389          <idle>-0     (-----) [000] d..2 24577.615309: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
136390 HwBinder:23896_-23923 (23896) [001] dnh3 24577.615310: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136391 HwBinder:23896_-23923 (23896) [001] d..2 24577.615317: sched_switch: prev_comm=HwBinder:23896_ prev_pid=23923 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
136392   kworker/u17:2-23076 (23076) [001] d..2 24577.615324: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136393 crtc_commit:111-253   (  253) [000] d..2 24577.615325: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136394          <idle>-0     (-----) [000] d..1 24577.615330: cpu_idle: state=0 cpu_id=0
136395   kworker/u17:2-23076 (23076) [001] d..3 24577.615331: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136396 SDM_EventThread-624   (  598) [002] d..2 24577.615332: sched_switch: prev_comm=SDM_EventThread prev_pid=624 prev_prio=111 prev_state=S ==> next_comm=HwBinder:23896_ next_pid=23923 next_prio=120
136397   kworker/u17:2-23076 (23076) [001] d..2 24577.615346: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
136398     kworker/1:1-13091 (13091) [001] d..2 24577.615351: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
136399 HwBinder:23896_-23923 (23896) [002] ...1 24577.615353: tracing_mark_write: B|23896|HIDL::IComposerCallback::onVsync::server
136400     kworker/1:1-13091 (13091) [001] d..3 24577.615359: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
136401          <idle>-0     (-----) [000] .n.1 24577.615364: cpu_idle: state=4294967295 cpu_id=0
136402 HwBinder:23896_-23923 (23896) [002] ...1 24577.615366: tracing_mark_write: E|23896
136403          <idle>-0     (-----) [000] d..2 24577.615370: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
136404     kworker/1:1-13091 (13091) [001] d..2 24577.615371: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136405          <idle>-0     (-----) [001] d..1 24577.615379: cpu_idle: state=0 cpu_id=1
136406 HwBinder:23896_-23923 (23896) [002] d..2 24577.615397: sched_switch: prev_comm=HwBinder:23896_ prev_pid=23923 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
136407          <idle>-0     (-----) [002] d..1 24577.615405: cpu_idle: state=0 cpu_id=2
136408            adbd-23485 ( 1007) [000] d..2 24577.615408: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136409          <idle>-0     (-----) [000] d..1 24577.615414: cpu_idle: state=0 cpu_id=0
136410          <idle>-0     (-----) [001] d.h3 24577.615426: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136411          <idle>-0     (-----) [001] dnh4 24577.615431: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136412          <idle>-0     (-----) [001] .n.1 24577.615436: cpu_idle: state=4294967295 cpu_id=1
136413          <idle>-0     (-----) [001] d..2 24577.615442: 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
136414   kworker/u17:2-23076 (23076) [001] d..2 24577.615448: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136415   kworker/u17:2-23076 (23076) [001] d..3 24577.615453: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136416   kworker/u17:2-23076 (23076) [001] d..2 24577.615467: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
136417     kworker/1:1-13091 (13091) [001] d..2 24577.615472: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
136418     kworker/1:1-13091 (13091) [001] d..3 24577.615480: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
136419          <idle>-0     (-----) [000] .n.1 24577.615485: cpu_idle: state=4294967295 cpu_id=0
136420          <idle>-0     (-----) [000] d..2 24577.615491: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
136421     kworker/1:1-13091 (13091) [001] d..2 24577.615493: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136422          <idle>-0     (-----) [001] d..1 24577.615499: cpu_idle: state=0 cpu_id=1
136423            adbd-23485 ( 1007) [000] d..2 24577.615502: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136424          <idle>-0     (-----) [000] d..1 24577.615508: cpu_idle: state=0 cpu_id=0
136425          <idle>-0     (-----) [001] d.h3 24577.615589: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136426          <idle>-0     (-----) [001] dnh4 24577.615594: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136427          <idle>-0     (-----) [001] .n.1 24577.615599: cpu_idle: state=4294967295 cpu_id=1
136428          <idle>-0     (-----) [001] d..2 24577.615605: 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
136429   kworker/u17:2-23076 (23076) [001] d..2 24577.615610: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136430   kworker/u17:2-23076 (23076) [001] d..3 24577.615615: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136431   kworker/u17:2-23076 (23076) [001] d..2 24577.615630: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
136432     kworker/1:1-13091 (13091) [001] d..2 24577.615637: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
136433     kworker/1:1-13091 (13091) [001] d..3 24577.615658: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
136434          <idle>-0     (-----) [000] .n.1 24577.615663: cpu_idle: state=4294967295 cpu_id=0
136435          <idle>-0     (-----) [000] d..2 24577.615669: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
136436     kworker/1:1-13091 (13091) [001] d..2 24577.615670: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136437          <idle>-0     (-----) [001] d..1 24577.615677: cpu_idle: state=0 cpu_id=1
136438            adbd-23484 ( 1007) [000] d..2 24577.615679: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
136439            adbd-23484 ( 1007) [000] d..3 24577.615690: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
136440            adbd-23484 ( 1007) [000] d..2 24577.615729: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
136441              ps-13422 (13422) [004] d..2 24577.615773: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136442              ps-13422 (13422) [004] dn.3 24577.615778: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136443              ps-13422 (13422) [004] d..2 24577.615781: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136444 shell svc 13418-13419 ( 1007) [004] d..2 24577.615786: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
136445            adbd-1007  ( 1007) [000] d..2 24577.615792: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136446          <idle>-0     (-----) [000] d..1 24577.615800: cpu_idle: state=0 cpu_id=0
136447 shell svc 13418-13419 ( 1007) [004] d..2 24577.615804: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136448          <idle>-0     (-----) [000] dnh2 24577.615808: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
136449              ps-13422 (13422) [004] d..2 24577.615809: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136450              ps-13422 (13422) [004] dn.3 24577.615812: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136451          <idle>-0     (-----) [000] .n.1 24577.615812: cpu_idle: state=4294967295 cpu_id=0
136452              ps-13422 (13422) [004] d..2 24577.615814: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136453          <idle>-0     (-----) [000] d..2 24577.615818: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
136454 shell svc 13418-13419 ( 1007) [004] d..2 24577.615821: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136455              ps-13422 (13422) [004] d..2 24577.615825: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136456              ps-13422 (13422) [004] dn.3 24577.615827: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136457              ps-13422 (13422) [004] d..2 24577.615829: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136458 shell svc 13418-13419 ( 1007) [004] d..2 24577.615836: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136459              ps-13422 (13422) [004] d..2 24577.615839: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136460              ps-13422 (13422) [004] dn.3 24577.615842: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136461              ps-13422 (13422) [004] d..2 24577.615844: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136462            adbd-1007  ( 1007) [000] d..1 24577.615848: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
136463 shell svc 13418-13419 ( 1007) [004] d..2 24577.615850: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136464              ps-13422 (13422) [004] d..2 24577.615854: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136465              ps-13422 (13422) [004] dn.3 24577.615856: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136466              ps-13422 (13422) [004] d..2 24577.615858: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136467 shell svc 13418-13419 ( 1007) [004] d..2 24577.615864: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136468            adbd-1007  ( 1007) [000] d..2 24577.615865: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
136469              ps-13422 (13422) [004] d..2 24577.615867: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136470              ps-13422 (13422) [004] dn.3 24577.615870: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136471          <idle>-0     (-----) [001] .n.1 24577.615870: cpu_idle: state=4294967295 cpu_id=1
136472              ps-13422 (13422) [004] d..2 24577.615871: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136473          <idle>-0     (-----) [001] d..2 24577.615876: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
136474 shell svc 13418-13419 ( 1007) [004] d..2 24577.615877: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136475              ps-13422 (13422) [004] d..2 24577.615881: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136476              ps-13422 (13422) [004] dn.3 24577.615883: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136477              ps-13422 (13422) [004] d..2 24577.615885: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136478 shell svc 13418-13419 ( 1007) [004] d..2 24577.615891: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136479            adbd-1007  ( 1007) [000] d..2 24577.615892: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136480              ps-13422 (13422) [004] d..2 24577.615895: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136481              ps-13422 (13422) [004] dn.3 24577.615897: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136482          <idle>-0     (-----) [000] d..1 24577.615899: cpu_idle: state=0 cpu_id=0
136483              ps-13422 (13422) [004] d..2 24577.615899: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136484 shell svc 13418-13419 ( 1007) [004] d..2 24577.615905: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136485              ps-13422 (13422) [004] d..2 24577.615909: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136486              ps-13422 (13422) [004] dn.3 24577.615911: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136487              ps-13422 (13422) [004] d..2 24577.615913: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136488 shell svc 13418-13419 ( 1007) [004] d..2 24577.615919: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136489            adbd-23485 ( 1007) [001] d..2 24577.615921: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136490              ps-13422 (13422) [004] d..2 24577.615923: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136491              ps-13422 (13422) [004] dn.3 24577.615925: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136492              ps-13422 (13422) [004] d..2 24577.615928: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136493 shell svc 13418-13419 ( 1007) [004] d..2 24577.615934: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136494              ps-13422 (13422) [004] d..2 24577.615937: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136495          <idle>-0     (-----) [001] d.h4 24577.615937: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136496              ps-13422 (13422) [004] dn.3 24577.615939: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136497              ps-13422 (13422) [004] d..2 24577.615941: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136498          <idle>-0     (-----) [001] dnh5 24577.615943: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136499 shell svc 13418-13419 ( 1007) [004] d..2 24577.615947: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136500          <idle>-0     (-----) [001] d..2 24577.615950: 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
136501              ps-13422 (13422) [004] d..2 24577.615951: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136502              ps-13422 (13422) [004] dn.3 24577.615953: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136503              ps-13422 (13422) [004] d..2 24577.615955: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136504   kworker/u17:2-23076 (23076) [001] d..2 24577.615956: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136505   kworker/u17:2-23076 (23076) [001] d..3 24577.615961: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136506 shell svc 13418-13419 ( 1007) [004] d..2 24577.615961: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136507              ps-13422 (13422) [004] d..2 24577.615965: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136508              ps-13422 (13422) [004] dn.3 24577.615967: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136509              ps-13422 (13422) [004] d..2 24577.615969: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136510 shell svc 13418-13419 ( 1007) [004] d..2 24577.615974: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136511   kworker/u17:2-23076 (23076) [001] d..2 24577.615976: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
136512              ps-13422 (13422) [004] d..2 24577.615978: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136513              ps-13422 (13422) [004] dn.3 24577.615981: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136514     kworker/1:1-13091 (13091) [001] d..2 24577.615981: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
136515              ps-13422 (13422) [004] d..2 24577.615983: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136516     kworker/1:1-13091 (13091) [001] d..3 24577.615988: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
136517 shell svc 13418-13419 ( 1007) [004] d..2 24577.615989: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136518              ps-13422 (13422) [004] d..2 24577.615993: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136519              ps-13422 (13422) [004] dn.3 24577.615995: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136520     kworker/1:1-13091 (13091) [001] d..2 24577.615996: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
136521              ps-13422 (13422) [004] d..2 24577.615997: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136522 shell svc 13418-13419 ( 1007) [004] d..2 24577.616002: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136523              ps-13422 (13422) [004] d..2 24577.616006: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136524              ps-13422 (13422) [004] dn.3 24577.616008: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136525              ps-13422 (13422) [004] d..2 24577.616010: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136526 shell svc 13418-13419 ( 1007) [004] d..2 24577.616016: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136527              ps-13422 (13422) [004] d..2 24577.616019: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136528              ps-13422 (13422) [004] dn.3 24577.616022: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136529              ps-13422 (13422) [004] d..2 24577.616023: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136530 shell svc 13418-13419 ( 1007) [004] d..2 24577.616029: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136531              ps-13422 (13422) [004] d..2 24577.616033: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136532              ps-13422 (13422) [004] dn.3 24577.616035: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136533            adbd-23485 ( 1007) [001] d..2 24577.616037: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136534              ps-13422 (13422) [004] d..2 24577.616037: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136535 shell svc 13418-13419 ( 1007) [004] d..2 24577.616043: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136536              ps-13422 (13422) [004] d..2 24577.616047: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136537              ps-13422 (13422) [004] dn.3 24577.616049: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136538              ps-13422 (13422) [004] d..2 24577.616051: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136539          <idle>-0     (-----) [001] d.h4 24577.616053: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136540 shell svc 13418-13419 ( 1007) [004] d..2 24577.616056: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136541          <idle>-0     (-----) [001] dnh5 24577.616058: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136542              ps-13422 (13422) [004] d..2 24577.616061: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136543              ps-13422 (13422) [004] dn.3 24577.616063: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136544          <idle>-0     (-----) [001] d..2 24577.616065: 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
136545              ps-13422 (13422) [004] d..2 24577.616065: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136546   kworker/u17:2-23076 (23076) [001] d..2 24577.616071: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136547 shell svc 13418-13419 ( 1007) [004] d..2 24577.616071: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136548              ps-13422 (13422) [004] d..2 24577.616075: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136549   kworker/u17:2-23076 (23076) [001] d..3 24577.616075: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136550              ps-13422 (13422) [004] dn.3 24577.616077: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136551              ps-13422 (13422) [004] d..2 24577.616079: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136552 shell svc 13418-13419 ( 1007) [004] d..2 24577.616085: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136553              ps-13422 (13422) [004] d..2 24577.616089: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136554   kworker/u17:2-23076 (23076) [001] d..2 24577.616090: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
136555              ps-13422 (13422) [004] dn.3 24577.616091: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136556              ps-13422 (13422) [004] d..2 24577.616093: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136557     kworker/1:1-13091 (13091) [001] d..2 24577.616095: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
136558 shell svc 13418-13419 ( 1007) [004] d..2 24577.616099: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136559     kworker/1:1-13091 (13091) [001] d..3 24577.616102: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
136560              ps-13422 (13422) [004] d..2 24577.616103: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136561              ps-13422 (13422) [004] dn.3 24577.616105: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136562              ps-13422 (13422) [004] d..2 24577.616107: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136563     kworker/1:1-13091 (13091) [001] d..2 24577.616109: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
136564 shell svc 13418-13419 ( 1007) [004] d..2 24577.616112: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136565              ps-13422 (13422) [004] d..2 24577.616116: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136566              ps-13422 (13422) [004] dn.3 24577.616118: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136567              ps-13422 (13422) [004] d..2 24577.616121: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136568            adbd-23485 ( 1007) [001] d..2 24577.616125: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136569 shell svc 13418-13419 ( 1007) [004] d..2 24577.616126: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136570              ps-13422 (13422) [004] d..2 24577.616130: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136571          <idle>-0     (-----) [001] d..1 24577.616132: cpu_idle: state=0 cpu_id=1
136572              ps-13422 (13422) [004] dn.3 24577.616132: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136573              ps-13422 (13422) [004] d..2 24577.616134: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136574 shell svc 13418-13419 ( 1007) [004] d..2 24577.616140: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136575              ps-13422 (13422) [004] d..2 24577.616144: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136576              ps-13422 (13422) [004] dn.3 24577.616146: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136577              ps-13422 (13422) [004] d..2 24577.616149: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136578 shell svc 13418-13419 ( 1007) [004] d..2 24577.616154: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136579              ps-13422 (13422) [004] d..2 24577.616158: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136580              ps-13422 (13422) [004] dn.3 24577.616161: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136581              ps-13422 (13422) [004] d..2 24577.616163: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136582 shell svc 13418-13419 ( 1007) [004] d..2 24577.616169: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136583              ps-13422 (13422) [004] d..2 24577.616172: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136584              ps-13422 (13422) [004] dn.3 24577.616174: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136585              ps-13422 (13422) [004] d..2 24577.616177: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136586 shell svc 13418-13419 ( 1007) [004] d..2 24577.616183: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136587              ps-13422 (13422) [004] d..2 24577.616187: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136588              ps-13422 (13422) [004] dn.3 24577.616189: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136589              ps-13422 (13422) [004] d..2 24577.616191: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136590 shell svc 13418-13419 ( 1007) [004] d..2 24577.616197: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136591              ps-13422 (13422) [004] d..2 24577.616201: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136592              ps-13422 (13422) [004] dn.3 24577.616203: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136593              ps-13422 (13422) [004] d..2 24577.616205: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136594 shell svc 13418-13419 ( 1007) [004] d..2 24577.616210: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136595          <idle>-0     (-----) [001] d.h3 24577.616214: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136596              ps-13422 (13422) [004] d..2 24577.616215: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136597              ps-13422 (13422) [004] dn.3 24577.616217: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136598              ps-13422 (13422) [004] d..2 24577.616219: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136599          <idle>-0     (-----) [001] dnh4 24577.616219: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136600          <idle>-0     (-----) [001] .n.1 24577.616224: cpu_idle: state=4294967295 cpu_id=1
136601 shell svc 13418-13419 ( 1007) [004] d..2 24577.616225: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136602              ps-13422 (13422) [004] d..2 24577.616228: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136603          <idle>-0     (-----) [001] d..2 24577.616230: 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
136604              ps-13422 (13422) [004] dn.3 24577.616231: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136605              ps-13422 (13422) [004] d..2 24577.616233: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136606   kworker/u17:2-23076 (23076) [001] d..2 24577.616236: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136607 shell svc 13418-13419 ( 1007) [004] d..2 24577.616239: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136608   kworker/u17:2-23076 (23076) [001] d..3 24577.616241: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136609              ps-13422 (13422) [004] d..2 24577.616243: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136610              ps-13422 (13422) [004] dn.3 24577.616245: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136611              ps-13422 (13422) [004] d..2 24577.616247: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136612 shell svc 13418-13419 ( 1007) [004] d..2 24577.616252: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136613   kworker/u17:2-23076 (23076) [001] d..2 24577.616256: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
136614              ps-13422 (13422) [004] d..2 24577.616256: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136615              ps-13422 (13422) [004] dn.3 24577.616259: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136616              ps-13422 (13422) [004] d..2 24577.616261: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136617     kworker/1:1-13091 (13091) [001] d..2 24577.616261: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
136618 shell svc 13418-13419 ( 1007) [004] d..2 24577.616267: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136619     kworker/1:1-13091 (13091) [001] d..3 24577.616270: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
136620              ps-13422 (13422) [004] d..2 24577.616270: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136621              ps-13422 (13422) [004] dn.3 24577.616273: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136622              ps-13422 (13422) [004] d..2 24577.616274: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136623          <idle>-0     (-----) [000] .n.1 24577.616275: cpu_idle: state=4294967295 cpu_id=0
136624 shell svc 13418-13419 ( 1007) [004] d..2 24577.616281: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136625          <idle>-0     (-----) [000] d..2 24577.616281: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
136626     kworker/1:1-13091 (13091) [001] d..2 24577.616282: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136627              ps-13422 (13422) [004] d..2 24577.616285: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136628              ps-13422 (13422) [004] dn.3 24577.616287: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136629          <idle>-0     (-----) [001] d..1 24577.616289: cpu_idle: state=0 cpu_id=1
136630              ps-13422 (13422) [004] d..2 24577.616289: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136631            adbd-23484 ( 1007) [000] d..2 24577.616291: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
136632 shell svc 13418-13419 ( 1007) [004] d..2 24577.616295: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136633            adbd-23484 ( 1007) [000] d..3 24577.616296: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
136634              ps-13422 (13422) [004] d..2 24577.616298: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136635              ps-13422 (13422) [004] dn.3 24577.616301: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136636              ps-13422 (13422) [004] d..2 24577.616303: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136637 shell svc 13418-13419 ( 1007) [004] d..2 24577.616308: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136638              ps-13422 (13422) [004] d..2 24577.616312: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136639              ps-13422 (13422) [004] dn.3 24577.616314: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136640              ps-13422 (13422) [004] d..2 24577.616316: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136641 shell svc 13418-13419 ( 1007) [004] d..2 24577.616322: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136642              ps-13422 (13422) [004] d..2 24577.616326: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136643              ps-13422 (13422) [004] dn.3 24577.616328: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136644              ps-13422 (13422) [004] d..2 24577.616330: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136645 shell svc 13418-13419 ( 1007) [004] d..2 24577.616336: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136646            adbd-23484 ( 1007) [000] d..2 24577.616336: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
136647              ps-13422 (13422) [004] d..2 24577.616340: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136648              ps-13422 (13422) [004] dn.3 24577.616342: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136649              ps-13422 (13422) [004] d..2 24577.616344: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136650 shell svc 13418-13419 ( 1007) [004] d..2 24577.616349: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136651              ps-13422 (13422) [004] d..2 24577.616353: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136652              ps-13422 (13422) [004] dn.3 24577.616355: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136653              ps-13422 (13422) [004] d..2 24577.616357: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136654 shell svc 13418-13419 ( 1007) [004] d..2 24577.616363: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136655              ps-13422 (13422) [004] d..2 24577.616367: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136656              ps-13422 (13422) [004] dn.3 24577.616369: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136657              ps-13422 (13422) [004] d..2 24577.616371: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136658 shell svc 13418-13419 ( 1007) [004] d..2 24577.616377: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136659              ps-13422 (13422) [004] d..2 24577.616380: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136660              ps-13422 (13422) [004] dn.3 24577.616382: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136661              ps-13422 (13422) [004] d..2 24577.616384: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136662 shell svc 13418-13419 ( 1007) [004] d..2 24577.616390: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136663              ps-13422 (13422) [004] d..2 24577.616394: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136664              ps-13422 (13422) [004] dn.3 24577.616396: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136665              ps-13422 (13422) [004] d..2 24577.616399: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136666 shell svc 13418-13419 ( 1007) [004] d..2 24577.616405: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136667              ps-13422 (13422) [004] d..2 24577.616408: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136668              ps-13422 (13422) [004] dn.3 24577.616410: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136669              ps-13422 (13422) [004] d..2 24577.616412: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136670 shell svc 13418-13419 ( 1007) [004] d..2 24577.616418: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136671              ps-13422 (13422) [004] d..2 24577.616422: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136672              ps-13422 (13422) [004] dn.3 24577.616424: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136673            adbd-1007  ( 1007) [000] d..1 24577.616426: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
136674              ps-13422 (13422) [004] d..2 24577.616427: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136675 shell svc 13418-13419 ( 1007) [004] d..2 24577.616433: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136676            adbd-1007  ( 1007) [000] d..2 24577.616436: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
136677              ps-13422 (13422) [004] d..2 24577.616437: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136678              ps-13422 (13422) [004] dn.3 24577.616439: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136679          <idle>-0     (-----) [001] .n.1 24577.616441: cpu_idle: state=4294967295 cpu_id=1
136680              ps-13422 (13422) [004] d..2 24577.616441: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136681          <idle>-0     (-----) [001] d..2 24577.616447: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
136682 shell svc 13418-13419 ( 1007) [004] d..2 24577.616447: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136683              ps-13422 (13422) [004] d..2 24577.616450: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136684              ps-13422 (13422) [004] dn.3 24577.616453: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136685              ps-13422 (13422) [004] d..2 24577.616455: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136686 shell svc 13418-13419 ( 1007) [004] d..2 24577.616460: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136687              ps-13422 (13422) [004] d..2 24577.616464: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136688            adbd-1007  ( 1007) [000] d..2 24577.616467: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136689              ps-13422 (13422) [004] dn.3 24577.616467: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136690              ps-13422 (13422) [004] d..2 24577.616469: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136691 shell svc 13418-13419 ( 1007) [004] d..2 24577.616475: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136692          <idle>-0     (-----) [000] d..1 24577.616475: cpu_idle: state=0 cpu_id=0
136693              ps-13422 (13422) [004] d..2 24577.616478: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136694              ps-13422 (13422) [004] dn.3 24577.616481: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136695              ps-13422 (13422) [004] d..2 24577.616483: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136696 shell svc 13418-13419 ( 1007) [004] d..2 24577.616489: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136697            adbd-23485 ( 1007) [001] d..2 24577.616490: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136698              ps-13422 (13422) [004] d..2 24577.616493: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136699              ps-13422 (13422) [004] dn.3 24577.616496: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136700              ps-13422 (13422) [004] d..2 24577.616498: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136701 shell svc 13418-13419 ( 1007) [004] d..2 24577.616504: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136702          <idle>-0     (-----) [001] d.h4 24577.616506: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136703              ps-13422 (13422) [004] d..2 24577.616507: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136704              ps-13422 (13422) [004] dn.3 24577.616510: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136705          <idle>-0     (-----) [001] dnh5 24577.616511: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136706              ps-13422 (13422) [004] d..2 24577.616512: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136707 shell svc 13418-13419 ( 1007) [004] d..2 24577.616518: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136708          <idle>-0     (-----) [001] d..2 24577.616519: 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
136709              ps-13422 (13422) [004] d..2 24577.616521: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136710              ps-13422 (13422) [004] dn.3 24577.616524: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136711   kworker/u17:2-23076 (23076) [001] d..2 24577.616525: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136712              ps-13422 (13422) [004] d..2 24577.616525: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136713   kworker/u17:2-23076 (23076) [001] d..3 24577.616529: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136714 shell svc 13418-13419 ( 1007) [004] d..2 24577.616531: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136715   kworker/u17:2-23076 (23076) [001] d..2 24577.616544: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
136716     kworker/1:1-13091 (13091) [001] d..2 24577.616548: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
136717     kworker/1:1-13091 (13091) [001] d..3 24577.616556: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
136718     kworker/1:1-13091 (13091) [001] d..2 24577.616563: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
136719            adbd-23485 ( 1007) [001] d..2 24577.616605: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136720          <idle>-0     (-----) [001] d..1 24577.616613: cpu_idle: state=0 cpu_id=1
136721              ps-13422 (13422) [004] d..2 24577.616632: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136722              ps-13422 (13422) [004] dn.3 24577.616636: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136723              ps-13422 (13422) [004] d..2 24577.616638: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136724 shell svc 13418-13419 ( 1007) [004] d..2 24577.616646: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136725              ps-13422 (13422) [004] d..2 24577.616651: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136726              ps-13422 (13422) [004] dn.3 24577.616653: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136727              ps-13422 (13422) [004] d..2 24577.616655: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136728 shell svc 13418-13419 ( 1007) [004] d..2 24577.616661: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136729              ps-13422 (13422) [004] d..2 24577.616665: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136730              ps-13422 (13422) [004] dn.3 24577.616667: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136731          <idle>-0     (-----) [001] d.h3 24577.616667: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136732              ps-13422 (13422) [004] d..2 24577.616669: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136733          <idle>-0     (-----) [001] dnh4 24577.616673: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136734 shell svc 13418-13419 ( 1007) [004] d..2 24577.616675: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136735          <idle>-0     (-----) [001] .n.1 24577.616678: cpu_idle: state=4294967295 cpu_id=1
136736          <idle>-0     (-----) [003] d.h2 24577.616682: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
136737          <idle>-0     (-----) [001] d..2 24577.616684: 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
136738   kworker/u17:2-23076 (23076) [001] d..2 24577.616690: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136739          <idle>-0     (-----) [003] dnh3 24577.616690: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
136740   kworker/u17:2-23076 (23076) [001] d..3 24577.616695: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136741          <idle>-0     (-----) [003] .n.1 24577.616695: cpu_idle: state=4294967295 cpu_id=3
136742          <idle>-0     (-----) [003] d..2 24577.616699: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
136743   kworker/u17:2-23076 (23076) [001] d..2 24577.616710: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
136744     kworker/1:1-13091 (13091) [001] d..2 24577.616714: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
136745        DispSync-23904 (23896) [003] d..1 24577.616715: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
136746        DispSync-23904 (23896) [003] d..2 24577.616730: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
136747     kworker/1:1-13091 (13091) [001] d..3 24577.616734: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
136748          <idle>-0     (-----) [002] .n.1 24577.616735: cpu_idle: state=4294967295 cpu_id=2
136749          <idle>-0     (-----) [002] d..2 24577.616741: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
136750        DispSync-23904 (23896) [003] d..2 24577.616745: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
136751     kworker/1:1-13091 (13091) [001] d..2 24577.616747: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136752          <idle>-0     (-----) [001] d..1 24577.616753: cpu_idle: state=0 cpu_id=1
136753            adbd-23485 ( 1007) [003] d..2 24577.616762: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
136754          <idle>-0     (-----) [003] d..1 24577.616767: cpu_idle: state=0 cpu_id=3
136755              ps-13422 (13422) [004] d..2 24577.616770: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136756              ps-13422 (13422) [004] dn.3 24577.616773: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136757              ps-13422 (13422) [004] d..2 24577.616775: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136758  appEventThread-23905 (23896) [002] d..3 24577.616776: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
136759 shell svc 13418-13419 ( 1007) [004] d..2 24577.616783: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136760              ps-13422 (13422) [004] d..2 24577.616788: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136761              ps-13422 (13422) [004] dn.3 24577.616790: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136762              ps-13422 (13422) [004] d..2 24577.616792: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136763  appEventThread-23905 (23896) [002] d..4 24577.616795: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
136764 shell svc 13418-13419 ( 1007) [004] d..2 24577.616798: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136765          <idle>-0     (-----) [000] .n.1 24577.616800: cpu_idle: state=4294967295 cpu_id=0
136766              ps-13422 (13422) [004] d..2 24577.616803: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136767              ps-13422 (13422) [004] dn.3 24577.616805: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136768          <idle>-0     (-----) [000] d..2 24577.616807: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
136769              ps-13422 (13422) [004] d..2 24577.616807: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136770 shell svc 13418-13419 ( 1007) [004] d..2 24577.616813: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136771  appEventThread-23905 (23896) [002] d..2 24577.616815: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
136772          <idle>-0     (-----) [002] d..1 24577.616821: cpu_idle: state=0 cpu_id=2
136773          <idle>-0     (-----) [001] d.h3 24577.616834: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136774          <idle>-0     (-----) [001] dnh4 24577.616839: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136775          <idle>-0     (-----) [001] .n.1 24577.616844: cpu_idle: state=4294967295 cpu_id=1
136776          <idle>-0     (-----) [001] d..2 24577.616850: 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
136777              ps-13422 (13422) [004] d..2 24577.616853: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136778   kworker/u17:2-23076 (23076) [001] d..2 24577.616855: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136779              ps-13422 (13422) [004] dn.3 24577.616856: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136780              ps-13422 (13422) [004] d..2 24577.616859: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136781   kworker/u17:2-23076 (23076) [001] d..3 24577.616860: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136782 shell svc 13418-13419 ( 1007) [004] d..2 24577.616866: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136783   kworker/u17:2-23076 (23076) [001] d..2 24577.616875: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
136784     kworker/1:1-13091 (13091) [001] d..2 24577.616880: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
136785     kworker/1:1-13091 (13091) [001] d..3 24577.616889: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
136786     kworker/1:1-13091 (13091) [001] d..2 24577.616908: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
136787            adbd-23484 ( 1007) [001] d..2 24577.616917: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
136788            adbd-23484 ( 1007) [001] d..3 24577.616927: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
136789              ps-13422 (13422) [004] d..2 24577.616931: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136790              ps-13422 (13422) [004] dn.3 24577.616934: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136791              ps-13422 (13422) [004] d..2 24577.616937: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136792 shell svc 13418-13419 ( 1007) [004] d..2 24577.616944: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136793              ps-13422 (13422) [004] d..2 24577.616949: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136794              ps-13422 (13422) [004] dn.3 24577.616951: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136795              ps-13422 (13422) [004] d..2 24577.616953: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136796 shell svc 13418-13419 ( 1007) [004] d..2 24577.616959: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136797            adbd-23484 ( 1007) [001] d..2 24577.616967: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
136798              ps-13422 (13422) [004] d..2 24577.616996: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136799              ps-13422 (13422) [004] dn.3 24577.616999: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136800              ps-13422 (13422) [004] d..2 24577.617001: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136801 shell svc 13418-13419 ( 1007) [004] d..2 24577.617009: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136802            adbd-1007  ( 1007) [001] d..1 24577.617036: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
136803            adbd-1007  ( 1007) [001] d..2 24577.617060: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
136804          <idle>-0     (-----) [002] .n.1 24577.617065: cpu_idle: state=4294967295 cpu_id=2
136805          <idle>-0     (-----) [002] d..2 24577.617071: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
136806            adbd-1007  ( 1007) [001] d..2 24577.617091: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136807          <idle>-0     (-----) [001] d..1 24577.617100: cpu_idle: state=0 cpu_id=1
136808            adbd-23485 ( 1007) [002] d..2 24577.617120: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
136809 s.nexuslauncher-24827 (24827) [000] .... 24577.617125: binder_transaction: transaction=1671690 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
136810          <idle>-0     (-----) [002] d..1 24577.617128: cpu_idle: state=0 cpu_id=2
136811 s.nexuslauncher-24827 (24827) [000] d..4 24577.617133: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
136812          <idle>-0     (-----) [001] d.h3 24577.617136: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136813          <idle>-0     (-----) [001] dnh4 24577.617146: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136814 s.nexuslauncher-24827 (24827) [000] d..5 24577.617151: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
136815          <idle>-0     (-----) [001] .n.1 24577.617156: cpu_idle: state=4294967295 cpu_id=1
136816          <idle>-0     (-----) [001] d..2 24577.617162: 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
136817   kworker/u17:2-23076 (23076) [001] d..2 24577.617170: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136818   kworker/u17:2-23076 (23076) [001] d..3 24577.617175: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136819 s.nexuslauncher-24827 (24827) [000] d..3 24577.617178: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
136820   kworker/u17:2-23076 (23076) [001] d..2 24577.617190: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
136821 s.nexuslauncher-24827 (24827) [000] d..4 24577.617195: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
136822  Binder:23896_4-24423 (23896) [001] .... 24577.617195: binder_transaction_received: transaction=1671690
136823          <idle>-0     (-----) [002] .n.1 24577.617200: cpu_idle: state=4294967295 cpu_id=2
136824          <idle>-0     (-----) [002] d..2 24577.617207: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
136825  Binder:23896_4-24423 (23896) [001] d..1 24577.617219: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
136826  Binder:23896_4-24423 (23896) [001] d..2 24577.617234: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
136827          <idle>-0     (-----) [003] .n.1 24577.617238: cpu_idle: state=4294967295 cpu_id=3
136828    RenderThread-25194 (24827) [002] d..2 24577.617240: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
136829          <idle>-0     (-----) [003] d..2 24577.617243: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
136830          <idle>-0     (-----) [002] d..1 24577.617247: cpu_idle: state=0 cpu_id=2
136831  Binder:23896_4-24423 (23896) [001] d..2 24577.617253: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
136832     kworker/1:1-13091 (13091) [001] d..2 24577.617259: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
136833     kworker/1:1-13091 (13091) [001] d..3 24577.617268: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
136834  appEventThread-23905 (23896) [003] d..2 24577.617270: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
136835          <idle>-0     (-----) [002] .n.1 24577.617273: cpu_idle: state=4294967295 cpu_id=2
136836          <idle>-0     (-----) [003] d..1 24577.617275: cpu_idle: state=0 cpu_id=3
136837          <idle>-0     (-----) [002] d..2 24577.617278: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
136838     kworker/1:1-13091 (13091) [001] d..2 24577.617282: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136839              ps-13422 (13422) [004] d..2 24577.617288: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136840          <idle>-0     (-----) [001] d..1 24577.617289: cpu_idle: state=0 cpu_id=1
136841              ps-13422 (13422) [004] dn.3 24577.617291: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136842              ps-13422 (13422) [004] d..2 24577.617294: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136843 shell svc 13418-13419 ( 1007) [004] d..2 24577.617303: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136844              ps-13422 (13422) [004] d..2 24577.617308: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136845              ps-13422 (13422) [004] dn.3 24577.617310: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136846              ps-13422 (13422) [004] d..2 24577.617312: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136847 shell svc 13418-13419 ( 1007) [004] d..2 24577.617318: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136848              ps-13422 (13422) [004] d..2 24577.617323: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136849            adbd-23485 ( 1007) [002] d..2 24577.617324: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
136850              ps-13422 (13422) [004] dn.3 24577.617325: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136851              ps-13422 (13422) [004] d..2 24577.617327: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136852          <idle>-0     (-----) [002] d..1 24577.617331: cpu_idle: state=0 cpu_id=2
136853 shell svc 13418-13419 ( 1007) [004] d..2 24577.617333: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136854              ps-13422 (13422) [004] d..2 24577.617337: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136855              ps-13422 (13422) [004] dn.3 24577.617339: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136856              ps-13422 (13422) [004] d..2 24577.617341: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136857 shell svc 13418-13419 ( 1007) [004] d..2 24577.617347: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136858              ps-13422 (13422) [004] d..2 24577.617351: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136859              ps-13422 (13422) [004] dn.3 24577.617353: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136860              ps-13422 (13422) [004] d..2 24577.617355: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136861          <idle>-0     (-----) [001] d.h3 24577.617356: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136862          <idle>-0     (-----) [001] dnh4 24577.617361: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136863 shell svc 13418-13419 ( 1007) [004] d..2 24577.617361: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136864              ps-13422 (13422) [004] d..2 24577.617365: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136865          <idle>-0     (-----) [001] .n.1 24577.617366: cpu_idle: state=4294967295 cpu_id=1
136866              ps-13422 (13422) [004] dn.3 24577.617367: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136867              ps-13422 (13422) [004] d..2 24577.617369: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136868          <idle>-0     (-----) [001] d..2 24577.617372: 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
136869 shell svc 13418-13419 ( 1007) [004] d..2 24577.617375: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136870              ps-13422 (13422) [004] d..2 24577.617379: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136871   kworker/u17:2-23076 (23076) [001] d..2 24577.617379: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136872              ps-13422 (13422) [004] dn.3 24577.617381: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136873              ps-13422 (13422) [004] d..2 24577.617383: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136874   kworker/u17:2-23076 (23076) [001] d..3 24577.617384: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
136875 shell svc 13418-13419 ( 1007) [004] d..2 24577.617389: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136876              ps-13422 (13422) [004] d..2 24577.617392: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136877              ps-13422 (13422) [004] dn.3 24577.617394: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136878              ps-13422 (13422) [004] d..2 24577.617396: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136879   kworker/u17:2-23076 (23076) [001] d..2 24577.617399: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
136880 shell svc 13418-13419 ( 1007) [004] d..2 24577.617402: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136881     kworker/1:1-13091 (13091) [001] d..2 24577.617404: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
136882              ps-13422 (13422) [004] d..2 24577.617406: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136883              ps-13422 (13422) [004] dn.3 24577.617408: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136884              ps-13422 (13422) [004] d..2 24577.617410: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136885     kworker/1:1-13091 (13091) [001] d..3 24577.617412: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
136886 shell svc 13418-13419 ( 1007) [004] d..2 24577.617416: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136887          <idle>-0     (-----) [002] .n.1 24577.617416: cpu_idle: state=4294967295 cpu_id=2
136888              ps-13422 (13422) [004] d..2 24577.617419: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136889              ps-13422 (13422) [004] dn.3 24577.617422: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136890          <idle>-0     (-----) [002] d..2 24577.617422: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
136891              ps-13422 (13422) [004] d..2 24577.617424: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136892     kworker/1:1-13091 (13091) [001] d..2 24577.617424: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136893 shell svc 13418-13419 ( 1007) [004] d..2 24577.617430: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136894          <idle>-0     (-----) [001] d..1 24577.617431: cpu_idle: state=0 cpu_id=1
136895              ps-13422 (13422) [004] d..2 24577.617433: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136896              ps-13422 (13422) [004] dn.3 24577.617435: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136897              ps-13422 (13422) [004] d..2 24577.617437: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136898            adbd-23485 ( 1007) [002] d..2 24577.617439: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
136899 shell svc 13418-13419 ( 1007) [004] d..2 24577.617443: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136900          <idle>-0     (-----) [002] d..1 24577.617444: cpu_idle: state=0 cpu_id=2
136901              ps-13422 (13422) [004] d..2 24577.617447: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136902              ps-13422 (13422) [004] dn.3 24577.617449: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
136903              ps-13422 (13422) [004] d..2 24577.617451: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
136904 shell svc 13418-13419 ( 1007) [004] d..2 24577.617456: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
136905 s.nexuslauncher-24827 (24827) [000] d..3 24577.617468: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
136906 s.nexuslauncher-24827 (24827) [000] d..4 24577.617485: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
136907          <idle>-0     (-----) [001] .n.1 24577.617490: cpu_idle: state=4294967295 cpu_id=1
136908          <idle>-0     (-----) [001] d..2 24577.617496: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
136909 s.nexuslauncher-24827 (24827) [000] d..2 24577.617503: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136910          <idle>-0     (-----) [000] d..1 24577.617512: cpu_idle: state=0 cpu_id=0
136911    RenderThread-25194 (24827) [001] d.h4 24577.617515: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
136912    RenderThread-25194 (24827) [001] d.h5 24577.617532: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
136913          <idle>-0     (-----) [000] .n.1 24577.617537: cpu_idle: state=4294967295 cpu_id=0
136914          <idle>-0     (-----) [000] d..2 24577.617544: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
136915          <idle>-0     (-----) [003] d.s2 24577.617561: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
136916          <idle>-0     (-----) [003] dns3 24577.617593: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
136917              ps-13422 (13422) [004] d.H2 24577.617594: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
136918   kworker/u17:2-23076 (23076) [000] d..2 24577.617595: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
136919              ps-13422 (13422) [004] d.H3 24577.617600: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
136920          <idle>-0     (-----) [003] .n.1 24577.617600: cpu_idle: state=4294967295 cpu_id=3
136921              ps-13422 (13422) [004] d.H2 24577.617601: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
136922   kworker/u17:2-23076 (23076) [000] d..3 24577.617602: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
136923          <idle>-0     (-----) [007] .n.1 24577.617604: cpu_idle: state=4294967295 cpu_id=7
136924          <idle>-0     (-----) [003] d..2 24577.617607: 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
136925          <idle>-0     (-----) [007] d..2 24577.617607: 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
136926         sugov:4-560   (  560) [007] d..2 24577.617613: 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
136927          <idle>-0     (-----) [007] d..1 24577.617615: cpu_idle: state=0 cpu_id=7
136928   kworker/u17:2-23076 (23076) [000] d..2 24577.617619: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
136929          <idle>-0     (-----) [002] dnh2 24577.617622: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
136930     rcu_preempt-7     (    7) [003] d..2 24577.617624: 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
136931     kworker/0:1-13012 (13012) [000] d..2 24577.617626: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
136932          <idle>-0     (-----) [002] .n.1 24577.617626: cpu_idle: state=4294967295 cpu_id=2
136933          <idle>-0     (-----) [003] d..1 24577.617628: cpu_idle: state=0 cpu_id=3
136934          <idle>-0     (-----) [002] d..2 24577.617632: 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
136935     kworker/0:1-13012 (13012) [000] d..3 24577.617648: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
136936         sugov:0-559   (  559) [002] .... 24577.617651: clk_set_rate: pwrcl_clk 1612800000
136937         sugov:0-559   (  559) [002] .... 24577.617660: clk_set_rate: cpu3_pwrcl_clk 1766400000
136938     kworker/0:1-13012 (13012) [000] d..2 24577.617661: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136939         sugov:0-559   (  559) [002] .... 24577.617667: clk_set_rate: cpu2_pwrcl_clk 1766400000
136940          <idle>-0     (-----) [000] d..1 24577.617669: cpu_idle: state=0 cpu_id=0
136941         sugov:0-559   (  559) [002] .... 24577.617673: clk_set_rate: cpu1_pwrcl_clk 1766400000
136942         sugov:0-559   (  559) [002] .... 24577.617679: clk_set_rate: cpu0_pwrcl_clk 1612800000
136943    RenderThread-25194 (24827) [001] d..1 24577.617766: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
136944    RenderThread-25194 (24827) [001] d..2 24577.617780: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
136945          <idle>-0     (-----) [000] .n.1 24577.617784: cpu_idle: state=4294967295 cpu_id=0
136946         sugov:0-559   (  559) [002] .... 24577.617789: cpu_frequency: state=1612800 cpu_id=0
136947          <idle>-0     (-----) [000] d..2 24577.617791: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
136948         sugov:0-559   (  559) [002] .... 24577.617799: cpu_frequency: state=1612800 cpu_id=1
136949         sugov:0-559   (  559) [002] .... 24577.617802: cpu_frequency: state=1612800 cpu_id=2
136950         sugov:0-559   (  559) [002] .... 24577.617804: cpu_frequency: state=1612800 cpu_id=3
136951         sugov:0-559   (  559) [002] d..2 24577.617814: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
136952            adbd-23484 ( 1007) [002] d..2 24577.617826: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
136953    RenderThread-25194 (24827) [001] .... 24577.617833: binder_transaction: transaction=1671691 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
136954            adbd-23484 ( 1007) [002] d..3 24577.617838: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
136955    RenderThread-25194 (24827) [001] ...2 24577.617840: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
136956    RenderThread-25194 (24827) [001] d..4 24577.617842: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
136957    RenderThread-25194 (24827) [001] d..5 24577.617850: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
136958    RenderThread-25194 (24827) [001] d..2 24577.617859: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
136959  Binder:23896_4-24423 (23896) [001] .... 24577.617865: binder_transaction_received: transaction=1671691
136960 s.nexuslauncher-24827 (24827) [000] d..2 24577.617866: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136961          <idle>-0     (-----) [000] d..1 24577.617874: cpu_idle: state=0 cpu_id=0
136962            adbd-23484 ( 1007) [002] d..2 24577.617880: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
136963  Binder:23896_4-24423 (23896) [001] .... 24577.617917: binder_transaction: transaction=1671692 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
136964  Binder:23896_4-24423 (23896) [001] d..2 24577.617926: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
136965  Binder:23896_4-24423 (23896) [001] d..3 24577.617934: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
136966  Binder:23896_4-24423 (23896) [001] .... 24577.617936: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
136967  Binder:23896_4-24423 (23896) [001] d..2 24577.617945: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
136968    RenderThread-25194 (24827) [001] .... 24577.617949: binder_transaction_received: transaction=1671692
136969            adbd-1007  ( 1007) [002] d..1 24577.617954: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
136970            adbd-1007  ( 1007) [002] d..2 24577.617967: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
136971            adbd-1007  ( 1007) [002] d..2 24577.617996: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
136972            adbd-23485 ( 1007) [002] d..2 24577.618044: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
136973    RenderThread-25194 (24827) [001] d.h2 24577.618051: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
136974          <idle>-0     (-----) [002] d..1 24577.618053: cpu_idle: state=0 cpu_id=2
136975    RenderThread-25194 (24827) [001] d.h3 24577.618062: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
136976          <idle>-0     (-----) [000] .n.1 24577.618067: cpu_idle: state=4294967295 cpu_id=0
136977          <idle>-0     (-----) [000] d..2 24577.618074: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
136978   kworker/u17:2-23076 (23076) [000] d..2 24577.618082: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
136979   kworker/u17:2-23076 (23076) [000] d..3 24577.618088: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
136980   kworker/u17:2-23076 (23076) [000] d..2 24577.618104: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
136981     kworker/0:1-13012 (13012) [000] d..2 24577.618110: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
136982     kworker/0:1-13012 (13012) [000] d..3 24577.618120: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
136983          <idle>-0     (-----) [002] .n.1 24577.618125: cpu_idle: state=4294967295 cpu_id=2
136984          <idle>-0     (-----) [002] d..2 24577.618132: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
136985     kworker/0:1-13012 (13012) [000] d..2 24577.618133: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136986          <idle>-0     (-----) [000] d..1 24577.618140: cpu_idle: state=0 cpu_id=0
136987            adbd-23485 ( 1007) [002] d..2 24577.618176: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
136988          <idle>-0     (-----) [002] d..1 24577.618183: cpu_idle: state=0 cpu_id=2
136989    RenderThread-25194 (24827) [001] d.h2 24577.618201: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
136990    RenderThread-25194 (24827) [001] d.h3 24577.618212: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
136991          <idle>-0     (-----) [000] .n.1 24577.618216: cpu_idle: state=4294967295 cpu_id=0
136992          <idle>-0     (-----) [000] d..2 24577.618222: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
136993   kworker/u17:2-23076 (23076) [000] d..2 24577.618229: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
136994   kworker/u17:2-23076 (23076) [000] d..3 24577.618234: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
136995   kworker/u17:2-23076 (23076) [000] d..2 24577.618250: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
136996     kworker/0:1-13012 (13012) [000] d..2 24577.618255: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
136997     kworker/0:1-13012 (13012) [000] d..3 24577.618264: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
136998          <idle>-0     (-----) [002] .n.1 24577.618269: cpu_idle: state=4294967295 cpu_id=2
136999          <idle>-0     (-----) [002] d..2 24577.618275: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
137000     kworker/0:1-13012 (13012) [000] d..2 24577.618277: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137001          <idle>-0     (-----) [000] d..1 24577.618283: cpu_idle: state=0 cpu_id=0
137002            adbd-23485 ( 1007) [002] d..2 24577.618295: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
137003          <idle>-0     (-----) [002] d..1 24577.618301: cpu_idle: state=0 cpu_id=2
137004    RenderThread-25194 (24827) [001] d.h2 24577.618358: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
137005    RenderThread-25194 (24827) [001] d.h3 24577.618369: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
137006          <idle>-0     (-----) [000] .n.1 24577.618374: cpu_idle: state=4294967295 cpu_id=0
137007          <idle>-0     (-----) [000] d..2 24577.618380: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
137008   kworker/u17:2-23076 (23076) [000] d..2 24577.618386: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
137009   kworker/u17:2-23076 (23076) [000] d..3 24577.618391: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
137010   kworker/u17:2-23076 (23076) [000] d..2 24577.618407: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
137011     kworker/0:1-13012 (13012) [000] d..2 24577.618414: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
137012     kworker/0:1-13012 (13012) [000] d..3 24577.618435: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
137013     kworker/0:1-13012 (13012) [000] d..2 24577.618444: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
137014            adbd-23484 ( 1007) [000] d..2 24577.618456: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
137015            adbd-23484 ( 1007) [000] d..3 24577.618466: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
137016            adbd-23484 ( 1007) [000] d..2 24577.618509: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
137017            adbd-1007  ( 1007) [000] d..2 24577.618573: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137018          <idle>-0     (-----) [000] d..1 24577.618582: cpu_idle: state=0 cpu_id=0
137019          <idle>-0     (-----) [002] ...1 24577.619413: cpu_idle: state=4294967295 cpu_id=2
137020          <idle>-0     (-----) [002] d..1 24577.619415: cpu_idle: state=0 cpu_id=2
137021              ps-13422 (13422) [004] d..2 24577.619514: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137022              ps-13422 (13422) [004] dn.3 24577.619519: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137023              ps-13422 (13422) [004] d..2 24577.619522: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137024 shell svc 13418-13419 ( 1007) [004] d..2 24577.619529: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
137025 shell svc 13418-13419 ( 1007) [004] d..2 24577.619544: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137026          <idle>-0     (-----) [000] dnh2 24577.619548: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
137027              ps-13422 (13422) [004] d..2 24577.619550: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137028          <idle>-0     (-----) [000] .n.1 24577.619552: cpu_idle: state=4294967295 cpu_id=0
137029              ps-13422 (13422) [004] dn.3 24577.619552: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137030              ps-13422 (13422) [004] d..2 24577.619554: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137031          <idle>-0     (-----) [000] d..2 24577.619558: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
137032 shell svc 13418-13419 ( 1007) [004] d..2 24577.619561: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137033              ps-13422 (13422) [004] d..2 24577.619565: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137034              ps-13422 (13422) [004] dn.3 24577.619568: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137035              ps-13422 (13422) [004] d..2 24577.619570: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137036 shell svc 13418-13419 ( 1007) [004] d..2 24577.619576: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137037              ps-13422 (13422) [004] d..2 24577.619580: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137038              ps-13422 (13422) [004] dn.3 24577.619582: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137039              ps-13422 (13422) [004] d..2 24577.619584: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137040 shell svc 13418-13419 ( 1007) [004] d..2 24577.619590: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137041              ps-13422 (13422) [004] d..2 24577.619594: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137042            adbd-1007  ( 1007) [000] d..1 24577.619596: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
137043              ps-13422 (13422) [004] dn.3 24577.619596: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137044              ps-13422 (13422) [004] d..2 24577.619598: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137045 shell svc 13418-13419 ( 1007) [004] d..2 24577.619604: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137046              ps-13422 (13422) [004] d..2 24577.619608: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137047              ps-13422 (13422) [004] dn.3 24577.619610: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137048              ps-13422 (13422) [004] d..2 24577.619612: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137049            adbd-1007  ( 1007) [000] d..2 24577.619617: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
137050 shell svc 13418-13419 ( 1007) [004] d..2 24577.619618: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137051          <idle>-0     (-----) [002] .n.1 24577.619621: cpu_idle: state=4294967295 cpu_id=2
137052              ps-13422 (13422) [004] d..2 24577.619622: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137053              ps-13422 (13422) [004] dn.3 24577.619624: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137054              ps-13422 (13422) [004] d..2 24577.619626: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137055          <idle>-0     (-----) [002] d..2 24577.619627: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
137056 shell svc 13418-13419 ( 1007) [004] d..2 24577.619632: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137057              ps-13422 (13422) [004] d..2 24577.619635: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137058              ps-13422 (13422) [004] dn.3 24577.619637: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137059              ps-13422 (13422) [004] d..2 24577.619639: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137060 shell svc 13418-13419 ( 1007) [004] d..2 24577.619645: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137061              ps-13422 (13422) [004] d..2 24577.619649: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137062              ps-13422 (13422) [004] dn.3 24577.619651: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137063              ps-13422 (13422) [004] d..2 24577.619654: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137064            adbd-1007  ( 1007) [000] d..2 24577.619659: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
137065 shell svc 13418-13419 ( 1007) [004] d..2 24577.619659: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137066              ps-13422 (13422) [004] d..2 24577.619663: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137067              ps-13422 (13422) [004] dn.3 24577.619665: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137068              ps-13422 (13422) [004] d..2 24577.619667: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137069            adbd-23485 ( 1007) [002] d..2 24577.619672: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
137070 shell svc 13418-13419 ( 1007) [004] d..2 24577.619673: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137071              ps-13422 (13422) [004] d..2 24577.619676: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137072              ps-13422 (13422) [004] dn.3 24577.619678: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137073          <idle>-0     (-----) [002] d..1 24577.619679: cpu_idle: state=0 cpu_id=2
137074              ps-13422 (13422) [004] d..2 24577.619680: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137075 shell svc 13418-13419 ( 1007) [004] d..2 24577.619686: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137076              ps-13422 (13422) [004] d..2 24577.619689: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137077              ps-13422 (13422) [004] dn.3 24577.619692: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137078              ps-13422 (13422) [004] d..2 24577.619694: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137079 shell svc 13418-13419 ( 1007) [004] d..2 24577.619699: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137080  Binder:23896_4-24423 (23896) [000] d..2 24577.619701: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137081              ps-13422 (13422) [004] d..2 24577.619703: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137082              ps-13422 (13422) [004] dn.3 24577.619705: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137083              ps-13422 (13422) [004] d..2 24577.619707: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137084          <idle>-0     (-----) [000] d..1 24577.619711: cpu_idle: state=0 cpu_id=0
137085 shell svc 13418-13419 ( 1007) [004] d..2 24577.619713: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137086              ps-13422 (13422) [004] d..2 24577.619717: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137087              ps-13422 (13422) [004] dn.3 24577.619719: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137088              ps-13422 (13422) [004] d..2 24577.619721: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137089 shell svc 13418-13419 ( 1007) [004] d..2 24577.619727: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137090              ps-13422 (13422) [004] d..2 24577.619731: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137091              ps-13422 (13422) [004] dn.3 24577.619733: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137092              ps-13422 (13422) [004] d..2 24577.619735: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137093 shell svc 13418-13419 ( 1007) [004] d..2 24577.619741: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137094              ps-13422 (13422) [004] d..2 24577.619745: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137095              ps-13422 (13422) [004] dn.3 24577.619747: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137096              ps-13422 (13422) [004] d..2 24577.619749: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137097 shell svc 13418-13419 ( 1007) [004] d..2 24577.619755: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137098    RenderThread-25194 (24827) [001] d.h3 24577.619758: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
137099              ps-13422 (13422) [004] d..2 24577.619759: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137100              ps-13422 (13422) [004] dn.3 24577.619761: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137101              ps-13422 (13422) [004] d..2 24577.619763: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137102 shell svc 13418-13419 ( 1007) [004] d..2 24577.619768: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137103              ps-13422 (13422) [004] d..2 24577.619772: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137104              ps-13422 (13422) [004] dn.3 24577.619774: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137105              ps-13422 (13422) [004] d..2 24577.619776: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137106 shell svc 13418-13419 ( 1007) [004] d..2 24577.619782: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137107    RenderThread-25194 (24827) [001] dnh4 24577.619784: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
137108              ps-13422 (13422) [004] d..2 24577.619785: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137109              ps-13422 (13422) [004] dn.3 24577.619787: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137110              ps-13422 (13422) [004] d..2 24577.619789: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137111    RenderThread-25194 (24827) [001] d..2 24577.619793: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
137112 shell svc 13418-13419 ( 1007) [004] d..2 24577.619795: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137113              ps-13422 (13422) [004] d..2 24577.619798: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137114              ps-13422 (13422) [004] dn.3 24577.619801: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137115   kworker/u17:2-23076 (23076) [001] d..2 24577.619801: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
137116              ps-13422 (13422) [004] d..2 24577.619803: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137117   kworker/u17:2-23076 (23076) [001] d..3 24577.619808: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
137118 shell svc 13418-13419 ( 1007) [004] d..2 24577.619808: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137119              ps-13422 (13422) [004] d..2 24577.619812: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137120              ps-13422 (13422) [004] dn.3 24577.619814: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137121              ps-13422 (13422) [004] d..2 24577.619816: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137122 shell svc 13418-13419 ( 1007) [004] d..2 24577.619822: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137123   kworker/u17:2-23076 (23076) [001] d..2 24577.619824: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
137124              ps-13422 (13422) [004] d..2 24577.619825: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137125              ps-13422 (13422) [004] dn.3 24577.619827: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137126              ps-13422 (13422) [004] d..2 24577.619829: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137127 shell svc 13418-13419 ( 1007) [004] d..2 24577.619835: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137128              ps-13422 (13422) [004] d..2 24577.619838: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137129              ps-13422 (13422) [004] dn.3 24577.619840: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137130              ps-13422 (13422) [004] d..2 24577.619842: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137131    RenderThread-25194 (24827) [001] d..2 24577.619844: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
137132 shell svc 13418-13419 ( 1007) [004] d..2 24577.619848: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137133     kworker/1:1-13091 (13091) [001] d..2 24577.619850: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
137134              ps-13422 (13422) [004] d..2 24577.619851: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137135              ps-13422 (13422) [004] dn.3 24577.619854: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137136              ps-13422 (13422) [004] d..2 24577.619856: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137137     kworker/1:1-13091 (13091) [001] d..3 24577.619859: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
137138 shell svc 13418-13419 ( 1007) [004] d..2 24577.619863: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137139          <idle>-0     (-----) [002] .n.1 24577.619865: cpu_idle: state=4294967295 cpu_id=2
137140              ps-13422 (13422) [004] d..2 24577.619868: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137141              ps-13422 (13422) [004] dn.3 24577.619870: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137142          <idle>-0     (-----) [002] d..2 24577.619871: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
137143              ps-13422 (13422) [004] d..2 24577.619872: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137144     kworker/1:1-13091 (13091) [001] d..2 24577.619874: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137145 shell svc 13418-13419 ( 1007) [004] d..2 24577.619878: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137146              ps-13422 (13422) [004] d..2 24577.619882: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137147          <idle>-0     (-----) [001] d..1 24577.619882: cpu_idle: state=0 cpu_id=1
137148              ps-13422 (13422) [004] dn.3 24577.619884: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137149              ps-13422 (13422) [004] d..2 24577.619886: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137150 shell svc 13418-13419 ( 1007) [004] d..2 24577.619892: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137151              ps-13422 (13422) [004] d..2 24577.619895: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137152              ps-13422 (13422) [004] dn.3 24577.619897: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137153              ps-13422 (13422) [004] d..2 24577.619899: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137154 shell svc 13418-13419 ( 1007) [004] d..2 24577.619905: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137155              ps-13422 (13422) [004] d..2 24577.619908: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137156              ps-13422 (13422) [004] dn.3 24577.619910: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137157              ps-13422 (13422) [004] d..2 24577.619912: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137158            adbd-23485 ( 1007) [002] d..2 24577.619914: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
137159 shell svc 13418-13419 ( 1007) [004] d..2 24577.619918: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137160          <idle>-0     (-----) [002] d..1 24577.619921: cpu_idle: state=0 cpu_id=2
137161              ps-13422 (13422) [004] d..2 24577.619922: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137162              ps-13422 (13422) [004] dn.3 24577.619924: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137163              ps-13422 (13422) [004] d..2 24577.619926: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137164          <idle>-0     (-----) [001] d.h3 24577.619927: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
137165 shell svc 13418-13419 ( 1007) [004] d..2 24577.619931: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137166          <idle>-0     (-----) [001] dnh4 24577.619932: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
137167              ps-13422 (13422) [004] d..2 24577.619936: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137168          <idle>-0     (-----) [001] .n.1 24577.619937: cpu_idle: state=4294967295 cpu_id=1
137169              ps-13422 (13422) [004] dn.3 24577.619938: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137170              ps-13422 (13422) [004] d..2 24577.619940: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137171          <idle>-0     (-----) [001] dnh2 24577.619944: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
137172 shell svc 13418-13419 ( 1007) [004] d..2 24577.619945: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137173              ps-13422 (13422) [004] d..2 24577.619949: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137174              ps-13422 (13422) [004] dn.3 24577.619951: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137175              ps-13422 (13422) [004] d..2 24577.619953: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137176          <idle>-0     (-----) [001] dnh3 24577.619954: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
137177 shell svc 13418-13419 ( 1007) [004] d..2 24577.619959: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137178          <idle>-0     (-----) [001] dnh3 24577.619959: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
137179              ps-13422 (13422) [004] d..2 24577.619963: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137180              ps-13422 (13422) [004] dn.3 24577.619965: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137181          <idle>-0     (-----) [000] .n.1 24577.619965: cpu_idle: state=4294967295 cpu_id=0
137182          <idle>-0     (-----) [001] d..2 24577.619967: 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
137183              ps-13422 (13422) [004] d..2 24577.619967: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137184          <idle>-0     (-----) [000] d..2 24577.619972: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
137185 shell svc 13418-13419 ( 1007) [004] d..2 24577.619973: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137186   kworker/u17:2-23076 (23076) [001] d..2 24577.619974: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
137187              ps-13422 (13422) [004] d..2 24577.619977: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137188              ps-13422 (13422) [004] dn.3 24577.619979: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137189   kworker/u17:2-23076 (23076) [001] d..3 24577.619979: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
137190              ps-13422 (13422) [004] d..2 24577.619981: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137191 shell svc 13418-13419 ( 1007) [004] d..2 24577.619986: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137192              ps-13422 (13422) [004] d..2 24577.619990: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137193              ps-13422 (13422) [004] dn.3 24577.619992: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137194              ps-13422 (13422) [004] d..2 24577.619994: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137195   kworker/u17:2-23076 (23076) [001] d..2 24577.619995: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
137196     kworker/1:1-13091 (13091) [001] d..2 24577.620000: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
137197 shell svc 13418-13419 ( 1007) [004] d..2 24577.620000: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137198              ps-13422 (13422) [004] d..2 24577.620004: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137199              ps-13422 (13422) [004] dn.3 24577.620006: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137200              ps-13422 (13422) [004] d..2 24577.620008: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137201     kworker/1:1-13091 (13091) [001] d..3 24577.620008: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
137202          <idle>-0     (-----) [002] .n.1 24577.620014: cpu_idle: state=4294967295 cpu_id=2
137203 shell svc 13418-13419 ( 1007) [004] d..2 24577.620014: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137204              ps-13422 (13422) [004] d..2 24577.620017: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137205              ps-13422 (13422) [004] dn.3 24577.620019: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137206          <idle>-0     (-----) [002] d..2 24577.620020: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
137207              ps-13422 (13422) [004] d..2 24577.620022: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137208     kworker/1:1-13091 (13091) [001] d..2 24577.620022: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137209 shell svc 13418-13419 ( 1007) [004] d..2 24577.620027: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137210          <idle>-0     (-----) [001] d..1 24577.620029: cpu_idle: state=0 cpu_id=1
137211              ps-13422 (13422) [004] d..2 24577.620031: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137212              ps-13422 (13422) [004] dn.3 24577.620033: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137213              ps-13422 (13422) [004] d..2 24577.620035: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137214            adbd-23485 ( 1007) [002] d..2 24577.620036: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
137215 shell svc 13418-13419 ( 1007) [004] d..2 24577.620041: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137216          <idle>-0     (-----) [002] d..1 24577.620041: cpu_idle: state=0 cpu_id=2
137217              ps-13422 (13422) [004] d..2 24577.620045: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137218              ps-13422 (13422) [004] dn.3 24577.620047: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137219              ps-13422 (13422) [004] d..2 24577.620049: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137220 shell svc 13418-13419 ( 1007) [004] d..2 24577.620055: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137221              ps-13422 (13422) [004] d..2 24577.620058: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137222              ps-13422 (13422) [004] dn.3 24577.620060: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137223              ps-13422 (13422) [004] d..2 24577.620062: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137224 shell svc 13418-13419 ( 1007) [004] d..2 24577.620068: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137225              ps-13422 (13422) [004] d..2 24577.620071: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137226              ps-13422 (13422) [004] dn.3 24577.620074: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137227              ps-13422 (13422) [004] d..2 24577.620075: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137228          <idle>-0     (-----) [001] d.h3 24577.620080: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
137229 shell svc 13418-13419 ( 1007) [004] d..2 24577.620081: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137230              ps-13422 (13422) [004] d..2 24577.620085: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137231          <idle>-0     (-----) [001] dnh4 24577.620085: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
137232              ps-13422 (13422) [004] dn.3 24577.620087: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137233              ps-13422 (13422) [004] d..2 24577.620089: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137234          <idle>-0     (-----) [001] .n.1 24577.620091: cpu_idle: state=4294967295 cpu_id=1
137235 shell svc 13418-13419 ( 1007) [004] d..2 24577.620094: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137236          <idle>-0     (-----) [001] d..2 24577.620097: 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
137237              ps-13422 (13422) [004] d..2 24577.620098: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137238              ps-13422 (13422) [004] dn.3 24577.620100: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137239              ps-13422 (13422) [004] d..2 24577.620102: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137240   kworker/u17:2-23076 (23076) [001] d..2 24577.620103: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
137241   kworker/u17:2-23076 (23076) [001] d..3 24577.620108: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
137242 shell svc 13418-13419 ( 1007) [004] d..2 24577.620108: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137243              ps-13422 (13422) [004] d..2 24577.620112: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137244              ps-13422 (13422) [004] dn.3 24577.620114: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137245              ps-13422 (13422) [004] d..2 24577.620116: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137246 shell svc 13418-13419 ( 1007) [004] d..2 24577.620122: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137247   kworker/u17:2-23076 (23076) [001] d..2 24577.620123: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
137248              ps-13422 (13422) [004] d..2 24577.620125: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137249              ps-13422 (13422) [004] dn.3 24577.620127: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137250              ps-13422 (13422) [004] d..2 24577.620129: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137251     kworker/1:1-13091 (13091) [001] d..2 24577.620131: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
137252 shell svc 13418-13419 ( 1007) [004] d..2 24577.620135: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137253              ps-13422 (13422) [004] d..2 24577.620138: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137254              ps-13422 (13422) [004] dn.3 24577.620140: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137255     kworker/1:1-13091 (13091) [001] d..3 24577.620141: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
137256              ps-13422 (13422) [004] d..2 24577.620142: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137257    RenderThread-25194 (24827) [000] .... 24577.620143: binder_transaction: transaction=1671693 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
137258 shell svc 13418-13419 ( 1007) [004] d..2 24577.620148: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137259              ps-13422 (13422) [004] d..2 24577.620152: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137260    RenderThread-25194 (24827) [000] ...2 24577.620153: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
137261              ps-13422 (13422) [004] dn.3 24577.620154: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137262              ps-13422 (13422) [004] d..2 24577.620156: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137263    RenderThread-25194 (24827) [000] d..4 24577.620158: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
137264 shell svc 13418-13419 ( 1007) [004] d..2 24577.620162: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137265     kworker/1:1-13091 (13091) [001] d..2 24577.620162: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
137266              ps-13422 (13422) [004] d..2 24577.620166: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137267    RenderThread-25194 (24827) [000] d..5 24577.620167: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
137268              ps-13422 (13422) [004] dn.3 24577.620168: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137269              ps-13422 (13422) [004] d..2 24577.620170: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137270            adbd-23484 ( 1007) [001] d..2 24577.620175: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
137271 shell svc 13418-13419 ( 1007) [004] d..2 24577.620175: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137272    RenderThread-25194 (24827) [000] d..2 24577.620176: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
137273              ps-13422 (13422) [004] d..2 24577.620179: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137274  Binder:23896_4-24423 (23896) [000] .... 24577.620180: binder_transaction_received: transaction=1671693
137275              ps-13422 (13422) [004] dn.3 24577.620181: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137276              ps-13422 (13422) [004] d..2 24577.620183: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137277            adbd-23484 ( 1007) [001] d..3 24577.620188: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
137278 shell svc 13418-13419 ( 1007) [004] d..2 24577.620189: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137279              ps-13422 (13422) [004] d..2 24577.620193: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137280              ps-13422 (13422) [004] dn.3 24577.620195: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137281              ps-13422 (13422) [004] d..2 24577.620197: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137282 shell svc 13418-13419 ( 1007) [004] d..2 24577.620202: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137283              ps-13422 (13422) [004] d..2 24577.620206: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137284              ps-13422 (13422) [004] dn.3 24577.620208: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137285              ps-13422 (13422) [004] d..2 24577.620210: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137286 shell svc 13418-13419 ( 1007) [004] d..2 24577.620216: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137287              ps-13422 (13422) [004] d..2 24577.620219: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137288              ps-13422 (13422) [004] dn.3 24577.620221: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137289              ps-13422 (13422) [004] d..2 24577.620223: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137290 shell svc 13418-13419 ( 1007) [004] d..2 24577.620229: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137291            adbd-23484 ( 1007) [001] d..2 24577.620232: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
137292              ps-13422 (13422) [004] d..2 24577.620232: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137293              ps-13422 (13422) [004] dn.3 24577.620234: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137294              ps-13422 (13422) [004] d..2 24577.620236: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137295 shell svc 13418-13419 ( 1007) [004] d..2 24577.620242: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137296              ps-13422 (13422) [004] d..2 24577.620246: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137297              ps-13422 (13422) [004] dn.3 24577.620248: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137298              ps-13422 (13422) [004] d..2 24577.620250: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137299 shell svc 13418-13419 ( 1007) [004] d..2 24577.620255: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137300              ps-13422 (13422) [004] d..2 24577.620259: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137301              ps-13422 (13422) [004] dn.3 24577.620261: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137302              ps-13422 (13422) [004] d..2 24577.620263: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137303 shell svc 13418-13419 ( 1007) [004] d..2 24577.620268: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137304              ps-13422 (13422) [004] d..2 24577.620272: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137305              ps-13422 (13422) [004] dn.3 24577.620274: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137306              ps-13422 (13422) [004] d..2 24577.620276: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137307 shell svc 13418-13419 ( 1007) [004] d..2 24577.620282: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137308              ps-13422 (13422) [004] d..2 24577.620285: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137309              ps-13422 (13422) [004] dn.3 24577.620288: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137310              ps-13422 (13422) [004] d..2 24577.620289: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137311  Binder:23896_4-24423 (23896) [000] .... 24577.620292: binder_transaction: transaction=1671694 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
137312 shell svc 13418-13419 ( 1007) [004] d..2 24577.620295: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137313  Binder:23896_4-24423 (23896) [000] d..2 24577.620296: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
137314              ps-13422 (13422) [004] d..2 24577.620299: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137315              ps-13422 (13422) [004] dn.3 24577.620301: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137316              ps-13422 (13422) [004] d..2 24577.620303: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137317  Binder:23896_4-24423 (23896) [000] d..3 24577.620304: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
137318  Binder:23896_4-24423 (23896) [000] .... 24577.620306: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
137319 shell svc 13418-13419 ( 1007) [004] d..2 24577.620309: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137320              ps-13422 (13422) [004] d..2 24577.620313: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137321              ps-13422 (13422) [004] dn.3 24577.620315: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137322              ps-13422 (13422) [004] d..2 24577.620317: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137323 shell svc 13418-13419 ( 1007) [004] d..2 24577.620323: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137324              ps-13422 (13422) [004] d..2 24577.620326: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137325              ps-13422 (13422) [004] dn.3 24577.620328: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137326              ps-13422 (13422) [004] d..2 24577.620331: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137327  Binder:23896_4-24423 (23896) [000] d..2 24577.620332: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
137328    RenderThread-25194 (24827) [000] .... 24577.620336: binder_transaction_received: transaction=1671694
137329 shell svc 13418-13419 ( 1007) [004] d..2 24577.620336: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137330              ps-13422 (13422) [004] d..2 24577.620340: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137331              ps-13422 (13422) [004] dn.3 24577.620342: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137332              ps-13422 (13422) [004] d..2 24577.620344: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137333 shell svc 13418-13419 ( 1007) [004] d..2 24577.620351: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137334              ps-13422 (13422) [004] d..2 24577.620354: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137335            adbd-1007  ( 1007) [001] d..1 24577.620355: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
137336              ps-13422 (13422) [004] dn.3 24577.620356: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137337              ps-13422 (13422) [004] d..2 24577.620358: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137338 shell svc 13418-13419 ( 1007) [004] d..2 24577.620364: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137339            adbd-1007  ( 1007) [001] d..2 24577.620366: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
137340              ps-13422 (13422) [004] d..2 24577.620368: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137341              ps-13422 (13422) [004] dn.3 24577.620370: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137342          <idle>-0     (-----) [002] .n.1 24577.620371: cpu_idle: state=4294967295 cpu_id=2
137343              ps-13422 (13422) [004] d..2 24577.620372: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137344          <idle>-0     (-----) [002] d..2 24577.620377: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
137345 shell svc 13418-13419 ( 1007) [004] d..2 24577.620378: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137346              ps-13422 (13422) [004] d..2 24577.620381: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137347              ps-13422 (13422) [004] dn.3 24577.620383: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137348              ps-13422 (13422) [004] d..2 24577.620385: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137349 shell svc 13418-13419 ( 1007) [004] d..2 24577.620391: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137350    RenderThread-25194 (24827) [000] d..2 24577.620393: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137351              ps-13422 (13422) [004] d..2 24577.620394: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137352              ps-13422 (13422) [004] dn.3 24577.620396: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137353              ps-13422 (13422) [004] d..2 24577.620398: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137354            adbd-1007  ( 1007) [001] d..2 24577.620400: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137355          <idle>-0     (-----) [000] d..1 24577.620403: cpu_idle: state=0 cpu_id=0
137356 shell svc 13418-13419 ( 1007) [004] d..2 24577.620404: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137357              ps-13422 (13422) [004] d..2 24577.620408: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137358              ps-13422 (13422) [004] dn.3 24577.620410: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137359          <idle>-0     (-----) [001] d..1 24577.620410: cpu_idle: state=0 cpu_id=1
137360              ps-13422 (13422) [004] d..2 24577.620412: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137361 shell svc 13418-13419 ( 1007) [004] d..2 24577.620418: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137362            adbd-23485 ( 1007) [002] d..2 24577.620420: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
137363              ps-13422 (13422) [004] d..2 24577.620421: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137364              ps-13422 (13422) [004] dn.3 24577.620423: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137365              ps-13422 (13422) [004] d..2 24577.620425: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137366          <idle>-0     (-----) [002] d..1 24577.620426: cpu_idle: state=0 cpu_id=2
137367          <idle>-0     (-----) [001] d.h3 24577.620427: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
137368 shell svc 13418-13419 ( 1007) [004] d..2 24577.620431: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137369          <idle>-0     (-----) [001] dnh4 24577.620433: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
137370              ps-13422 (13422) [004] d..2 24577.620434: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137371              ps-13422 (13422) [004] dn.3 24577.620436: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137372              ps-13422 (13422) [004] d..2 24577.620438: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137373          <idle>-0     (-----) [001] .n.1 24577.620439: cpu_idle: state=4294967295 cpu_id=1
137374 shell svc 13418-13419 ( 1007) [004] d..2 24577.620444: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137375          <idle>-0     (-----) [001] d..2 24577.620446: 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
137376              ps-13422 (13422) [004] d..2 24577.620448: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137377              ps-13422 (13422) [004] dn.3 24577.620450: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137378              ps-13422 (13422) [004] d..2 24577.620452: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137379   kworker/u17:2-23076 (23076) [001] d..2 24577.620453: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
137380 shell svc 13418-13419 ( 1007) [004] d..2 24577.620458: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137381   kworker/u17:2-23076 (23076) [001] d..3 24577.620459: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
137382              ps-13422 (13422) [004] d..2 24577.620462: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137383              ps-13422 (13422) [004] dn.3 24577.620464: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137384              ps-13422 (13422) [004] d..2 24577.620466: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137385 shell svc 13418-13419 ( 1007) [004] d..2 24577.620471: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137386              ps-13422 (13422) [004] d..2 24577.620475: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137387              ps-13422 (13422) [004] dn.3 24577.620477: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137388   kworker/u17:2-23076 (23076) [001] d..2 24577.620477: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
137389              ps-13422 (13422) [004] d..2 24577.620479: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137390     kworker/1:1-13091 (13091) [001] d..2 24577.620482: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
137391 shell svc 13418-13419 ( 1007) [004] d..2 24577.620485: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137392              ps-13422 (13422) [004] d..2 24577.620488: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137393              ps-13422 (13422) [004] dn.3 24577.620490: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137394     kworker/1:1-13091 (13091) [001] d..3 24577.620492: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
137395              ps-13422 (13422) [004] d..2 24577.620492: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137396          <idle>-0     (-----) [002] .n.1 24577.620497: cpu_idle: state=4294967295 cpu_id=2
137397 shell svc 13418-13419 ( 1007) [004] d..2 24577.620498: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137398     kworker/1:1-13091 (13091) [001] d..2 24577.620500: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137399              ps-13422 (13422) [004] d..2 24577.620502: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137400          <idle>-0     (-----) [002] d..2 24577.620503: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
137401              ps-13422 (13422) [004] dn.3 24577.620504: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137402              ps-13422 (13422) [004] d..2 24577.620506: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137403          <idle>-0     (-----) [001] d..1 24577.620507: cpu_idle: state=0 cpu_id=1
137404 shell svc 13418-13419 ( 1007) [004] d..2 24577.620511: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137405              ps-13422 (13422) [004] d..2 24577.620515: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137406              ps-13422 (13422) [004] dn.3 24577.620517: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137407              ps-13422 (13422) [004] d..2 24577.620519: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137408 shell svc 13418-13419 ( 1007) [004] d..2 24577.620525: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137409              ps-13422 (13422) [004] d..2 24577.620529: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137410              ps-13422 (13422) [004] dn.3 24577.620531: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137411              ps-13422 (13422) [004] d..2 24577.620533: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137412 shell svc 13418-13419 ( 1007) [004] d..2 24577.620539: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137413              ps-13422 (13422) [004] d..2 24577.620543: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137414              ps-13422 (13422) [004] dn.3 24577.620545: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137415              ps-13422 (13422) [004] d..2 24577.620547: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137416            adbd-23485 ( 1007) [002] d..2 24577.620549: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
137417 shell svc 13418-13419 ( 1007) [004] d..2 24577.620553: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137418          <idle>-0     (-----) [002] d..1 24577.620555: cpu_idle: state=0 cpu_id=2
137419              ps-13422 (13422) [004] d..2 24577.620557: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137420              ps-13422 (13422) [004] dn.3 24577.620559: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137421              ps-13422 (13422) [004] d..2 24577.620561: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137422 shell svc 13418-13419 ( 1007) [004] d..2 24577.620567: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137423              ps-13422 (13422) [004] d..2 24577.620571: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137424              ps-13422 (13422) [004] dn.3 24577.620573: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137425              ps-13422 (13422) [004] d..2 24577.620575: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137426 shell svc 13418-13419 ( 1007) [004] d..2 24577.620581: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137427              ps-13422 (13422) [004] d..2 24577.620584: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137428              ps-13422 (13422) [004] dn.3 24577.620586: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137429              ps-13422 (13422) [004] d..2 24577.620589: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137430 shell svc 13418-13419 ( 1007) [004] d..2 24577.620595: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137431              ps-13422 (13422) [004] d..2 24577.620599: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137432              ps-13422 (13422) [004] dn.3 24577.620601: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137433              ps-13422 (13422) [004] d..2 24577.620603: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137434 shell svc 13418-13419 ( 1007) [004] d..2 24577.620609: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137435              ps-13422 (13422) [004] d..2 24577.620612: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137436              ps-13422 (13422) [004] dn.3 24577.620615: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137437          <idle>-0     (-----) [001] d.h3 24577.620615: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
137438              ps-13422 (13422) [004] d..2 24577.620617: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137439          <idle>-0     (-----) [001] dnh4 24577.620620: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
137440 shell svc 13418-13419 ( 1007) [004] d..2 24577.620622: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137441          <idle>-0     (-----) [001] .n.1 24577.620626: cpu_idle: state=4294967295 cpu_id=1
137442              ps-13422 (13422) [004] d..2 24577.620626: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137443              ps-13422 (13422) [004] dn.3 24577.620628: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137444              ps-13422 (13422) [004] d..2 24577.620630: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137445          <idle>-0     (-----) [001] d..2 24577.620632: 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
137446 shell svc 13418-13419 ( 1007) [004] d..2 24577.620636: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137447   kworker/u17:2-23076 (23076) [001] d..2 24577.620638: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
137448              ps-13422 (13422) [004] d..2 24577.620640: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137449              ps-13422 (13422) [004] dn.3 24577.620642: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137450   kworker/u17:2-23076 (23076) [001] d..3 24577.620643: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
137451              ps-13422 (13422) [004] d..2 24577.620644: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137452 shell svc 13418-13419 ( 1007) [004] d..2 24577.620650: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137453              ps-13422 (13422) [004] d..2 24577.620653: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137454              ps-13422 (13422) [004] dn.3 24577.620655: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137455              ps-13422 (13422) [004] d..2 24577.620657: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137456   kworker/u17:2-23076 (23076) [001] d..2 24577.620659: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
137457 shell svc 13418-13419 ( 1007) [004] d..2 24577.620663: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137458     kworker/1:1-13091 (13091) [001] d..2 24577.620664: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
137459              ps-13422 (13422) [004] d..2 24577.620667: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137460              ps-13422 (13422) [004] dn.3 24577.620669: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137461              ps-13422 (13422) [004] d..2 24577.620671: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137462     kworker/1:1-13091 (13091) [001] d..3 24577.620672: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
137463          <idle>-0     (-----) [003] d.h2 24577.620677: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
137464 shell svc 13418-13419 ( 1007) [004] d..2 24577.620677: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137465          <idle>-0     (-----) [002] .n.1 24577.620677: cpu_idle: state=4294967295 cpu_id=2
137466              ps-13422 (13422) [004] d..2 24577.620680: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137467              ps-13422 (13422) [004] dn.3 24577.620682: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137468          <idle>-0     (-----) [002] d..2 24577.620683: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
137469              ps-13422 (13422) [004] d..2 24577.620685: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137470          <idle>-0     (-----) [003] dnh3 24577.620685: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
137471     kworker/1:1-13091 (13091) [001] d..2 24577.620686: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137472          <idle>-0     (-----) [003] .n.1 24577.620690: cpu_idle: state=4294967295 cpu_id=3
137473 shell svc 13418-13419 ( 1007) [004] d..2 24577.620690: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137474          <idle>-0     (-----) [001] d..1 24577.620693: cpu_idle: state=0 cpu_id=1
137475              ps-13422 (13422) [004] d..2 24577.620694: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137476          <idle>-0     (-----) [003] d..2 24577.620696: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
137477              ps-13422 (13422) [004] dn.3 24577.620696: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137478            adbd-23485 ( 1007) [002] d..2 24577.620698: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
137479              ps-13422 (13422) [004] d..2 24577.620699: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137480          <idle>-0     (-----) [002] d..1 24577.620704: cpu_idle: state=0 cpu_id=2
137481 shell svc 13418-13419 ( 1007) [004] d..2 24577.620704: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137482        DispSync-23904 (23896) [003] d..1 24577.620708: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
137483              ps-13422 (13422) [004] d..2 24577.620708: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137484              ps-13422 (13422) [004] dn.3 24577.620710: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137485              ps-13422 (13422) [004] d..2 24577.620712: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137486 shell svc 13418-13419 ( 1007) [004] d..2 24577.620718: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137487        DispSync-23904 (23896) [003] d..2 24577.620718: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
137488              ps-13422 (13422) [004] d..2 24577.620722: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137489          <idle>-0     (-----) [000] .n.1 24577.620724: cpu_idle: state=4294967295 cpu_id=0
137490              ps-13422 (13422) [004] dn.3 24577.620724: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137491              ps-13422 (13422) [004] d..2 24577.620726: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137492          <idle>-0     (-----) [000] d..2 24577.620730: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
137493 shell svc 13418-13419 ( 1007) [004] d..2 24577.620731: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137494        DispSync-23904 (23896) [003] d..2 24577.620735: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
137495              ps-13422 (13422) [004] d..2 24577.620735: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137496              ps-13422 (13422) [004] dn.3 24577.620737: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137497              ps-13422 (13422) [004] d..2 24577.620739: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137498          <idle>-0     (-----) [003] d..1 24577.620740: cpu_idle: state=0 cpu_id=3
137499 shell svc 13418-13419 ( 1007) [004] d..2 24577.620745: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137500              ps-13422 (13422) [004] d..2 24577.620748: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137501              ps-13422 (13422) [004] dn.3 24577.620750: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137502              ps-13422 (13422) [004] d..2 24577.620752: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137503 shell svc 13418-13419 ( 1007) [004] d..2 24577.620758: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137504              ps-13422 (13422) [004] d..2 24577.620762: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137505   sfEventThread-23906 (23896) [000] d..3 24577.620762: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
137506              ps-13422 (13422) [004] dn.3 24577.620764: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137507              ps-13422 (13422) [004] d..2 24577.620766: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137508 shell svc 13418-13419 ( 1007) [004] d..2 24577.620772: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137509              ps-13422 (13422) [004] d..2 24577.620775: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137510   sfEventThread-23906 (23896) [000] d..4 24577.620775: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
137511              ps-13422 (13422) [004] dn.3 24577.620777: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137512              ps-13422 (13422) [004] d..2 24577.620779: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137513          <idle>-0     (-----) [001] .n.1 24577.620780: cpu_idle: state=4294967295 cpu_id=1
137514 shell svc 13418-13419 ( 1007) [004] d..2 24577.620785: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137515          <idle>-0     (-----) [001] d..2 24577.620787: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
137516   sfEventThread-23906 (23896) [000] d..2 24577.620794: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137517          <idle>-0     (-----) [000] d..1 24577.620801: cpu_idle: state=0 cpu_id=0
137518  surfaceflinger-23896 (23896) [001] d.h2 24577.620846: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
137519  surfaceflinger-23896 (23896) [001] d.h3 24577.620865: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
137520          <idle>-0     (-----) [000] .n.1 24577.620871: cpu_idle: state=4294967295 cpu_id=0
137521          <idle>-0     (-----) [000] d..2 24577.620877: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
137522              ps-13422 (13422) [004] d..2 24577.620893: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137523              ps-13422 (13422) [004] dn.3 24577.620896: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137524              ps-13422 (13422) [004] d..2 24577.620898: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137525   kworker/u17:2-23076 (23076) [000] d..2 24577.620904: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
137526 shell svc 13418-13419 ( 1007) [004] d..2 24577.620906: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137527              ps-13422 (13422) [004] d..2 24577.620911: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137528   kworker/u17:2-23076 (23076) [000] d..3 24577.620911: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
137529              ps-13422 (13422) [004] dn.3 24577.620913: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137530              ps-13422 (13422) [004] d..2 24577.620915: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137531 shell svc 13418-13419 ( 1007) [004] d..2 24577.620921: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137532              ps-13422 (13422) [004] d..2 24577.620925: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137533              ps-13422 (13422) [004] dn.3 24577.620927: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137534   kworker/u17:2-23076 (23076) [000] d..2 24577.620928: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
137535              ps-13422 (13422) [004] d..2 24577.620929: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137536 shell svc 13418-13419 ( 1007) [004] d..2 24577.620935: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137537     kworker/0:1-13012 (13012) [000] d..2 24577.620937: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
137538     kworker/0:1-13012 (13012) [000] d..3 24577.620958: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
137539     kworker/0:1-13012 (13012) [000] d..2 24577.620968: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
137540            adbd-23484 ( 1007) [000] d..2 24577.620980: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
137541            adbd-23484 ( 1007) [000] d..3 24577.620990: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
137542            adbd-23484 ( 1007) [000] d..2 24577.621033: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
137543              ps-13422 (13422) [004] d..2 24577.621071: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137544              ps-13422 (13422) [004] dn.3 24577.621074: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137545              ps-13422 (13422) [004] d..2 24577.621077: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137546 shell svc 13418-13419 ( 1007) [004] d..2 24577.621086: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137547              ps-13422 (13422) [004] d..2 24577.621090: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137548              ps-13422 (13422) [004] dn.3 24577.621092: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137549              ps-13422 (13422) [004] d..2 24577.621094: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137550 shell svc 13418-13419 ( 1007) [004] d..2 24577.621101: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137551              ps-13422 (13422) [004] d..2 24577.621107: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137552  surfaceflinger-23896 (23896) [001] d..1 24577.621107: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
137553              ps-13422 (13422) [004] dn.3 24577.621109: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137554              ps-13422 (13422) [004] d..2 24577.621111: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137555 shell svc 13418-13419 ( 1007) [004] d..2 24577.621118: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137556              ps-13422 (13422) [004] d..2 24577.621122: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137557  surfaceflinger-23896 (23896) [001] d..2 24577.621124: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=003
137558              ps-13422 (13422) [004] dn.3 24577.621124: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137559              ps-13422 (13422) [004] d..2 24577.621126: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137560          <idle>-0     (-----) [003] .n.1 24577.621128: cpu_idle: state=4294967295 cpu_id=3
137561            adbd-1007  ( 1007) [000] d..1 24577.621131: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
137562 shell svc 13418-13419 ( 1007) [004] d..2 24577.621132: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137563          <idle>-0     (-----) [003] d..2 24577.621135: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
137564              ps-13422 (13422) [004] d..2 24577.621136: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137565              ps-13422 (13422) [004] dn.3 24577.621138: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137566              ps-13422 (13422) [004] d..2 24577.621140: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137567            adbd-1007  ( 1007) [000] d..2 24577.621143: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
137568 shell svc 13418-13419 ( 1007) [004] d..2 24577.621146: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137569          <idle>-0     (-----) [002] .n.1 24577.621147: cpu_idle: state=4294967295 cpu_id=2
137570          <idle>-0     (-----) [002] d..2 24577.621154: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
137571   sfEventThread-23906 (23896) [003] d..2 24577.621159: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
137572          <idle>-0     (-----) [003] d..1 24577.621163: cpu_idle: state=0 cpu_id=3
137573            adbd-1007  ( 1007) [000] d..2 24577.621178: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137574          <idle>-0     (-----) [000] d..1 24577.621187: cpu_idle: state=0 cpu_id=0
137575            adbd-23485 ( 1007) [002] d..2 24577.621198: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
137576          <idle>-0     (-----) [002] d..1 24577.621204: cpu_idle: state=0 cpu_id=2
137577  surfaceflinger-23896 (23896) [001] d.h2 24577.621218: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
137578  surfaceflinger-23896 (23896) [001] d.h3 24577.621229: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
137579          <idle>-0     (-----) [000] .n.1 24577.621235: cpu_idle: state=4294967295 cpu_id=0
137580          <idle>-0     (-----) [000] d..2 24577.621242: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
137581   kworker/u17:2-23076 (23076) [000] d..2 24577.621250: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
137582   kworker/u17:2-23076 (23076) [000] d..3 24577.621256: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
137583   kworker/u17:2-23076 (23076) [000] d..2 24577.621273: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
137584              ps-13422 (13422) [004] d..2 24577.621273: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137585              ps-13422 (13422) [004] dn.3 24577.621276: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137586              ps-13422 (13422) [004] d..2 24577.621279: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137587 shell svc 13418-13419 ( 1007) [004] d..2 24577.621287: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137588  surfaceflinger-23896 (23896) [001] ...1 24577.621288: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
137589              ps-13422 (13422) [004] d..2 24577.621291: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137590  surfaceflinger-23896 (23896) [001] ...1 24577.621292: tracing_mark_write: E|23896
137591              ps-13422 (13422) [004] dn.3 24577.621294: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137592     kworker/0:1-13012 (13012) [000] d.h4 24577.621295: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
137593              ps-13422 (13422) [004] d..2 24577.621296: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137594 shell svc 13418-13419 ( 1007) [004] d..2 24577.621302: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137595              ps-13422 (13422) [004] d..2 24577.621306: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137596              ps-13422 (13422) [004] dn.3 24577.621308: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137597              ps-13422 (13422) [004] d..2 24577.621310: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137598     kworker/0:1-13012 (13012) [000] d.h5 24577.621313: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
137599 shell svc 13418-13419 ( 1007) [004] d..2 24577.621316: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137600          <idle>-0     (-----) [003] .n.1 24577.621317: cpu_idle: state=4294967295 cpu_id=3
137601              ps-13422 (13422) [004] d..2 24577.621319: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137602          <idle>-0     (-----) [003] d..2 24577.621322: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
137603              ps-13422 (13422) [004] dn.3 24577.621322: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137604              ps-13422 (13422) [004] d..2 24577.621324: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137605     kworker/0:1-13012 (13012) [000] d..2 24577.621325: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
137606 shell svc 13418-13419 ( 1007) [004] d..2 24577.621330: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137607  surfaceflinger-23896 (23896) [001] .... 24577.621333: binder_transaction: transaction=1671695 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
137608              ps-13422 (13422) [004] d..2 24577.621334: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137609     kworker/0:1-13012 (13012) [000] d..3 24577.621334: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
137610              ps-13422 (13422) [004] dn.3 24577.621336: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137611              ps-13422 (13422) [004] d..2 24577.621338: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137612          <idle>-0     (-----) [002] .n.1 24577.621340: cpu_idle: state=4294967295 cpu_id=2
137613 shell svc 13418-13419 ( 1007) [004] d..2 24577.621343: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137614          <idle>-0     (-----) [002] d..2 24577.621346: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
137615     kworker/0:1-13012 (13012) [000] d..2 24577.621349: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137616          <idle>-0     (-----) [000] d..1 24577.621356: cpu_idle: state=0 cpu_id=0
137617 kgsl_worker_thr-246   (  246) [003] d..2 24577.621358: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
137618  surfaceflinger-23896 (23896) [001] ...2 24577.621374: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
137619  surfaceflinger-23896 (23896) [001] d..4 24577.621383: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=003
137620 kgsl_worker_thr-246   (  246) [003] d..3 24577.621384: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
137621            adbd-23485 ( 1007) [002] d..2 24577.621390: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
137622          <idle>-0     (-----) [002] d..1 24577.621396: cpu_idle: state=0 cpu_id=2
137623  surfaceflinger-23896 (23896) [001] d..5 24577.621403: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
137624 kgsl_worker_thr-246   (  246) [003] d..2 24577.621403: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
137625          <idle>-0     (-----) [002] .n.1 24577.621407: cpu_idle: state=4294967295 cpu_id=2
137626          <idle>-0     (-----) [002] d..2 24577.621412: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
137627  HwBinder:598_3-633   (  598) [002] .... 24577.621420: binder_transaction_received: transaction=1671695
137628  surfaceflinger-23896 (23896) [001] d..2 24577.621420: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137629          <idle>-0     (-----) [001] d.h4 24577.621437: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
137630          <idle>-0     (-----) [001] d.h5 24577.621446: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
137631          <idle>-0     (-----) [000] .n.1 24577.621452: cpu_idle: state=4294967295 cpu_id=0
137632  HwBinder:598_3-633   (  598) [002] ...1 24577.621456: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
137633          <idle>-0     (-----) [000] d..2 24577.621458: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
137634          <idle>-0     (-----) [001] d..1 24577.621458: cpu_idle: state=0 cpu_id=1
137635   kworker/u17:2-23076 (23076) [000] d..2 24577.621465: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
137636   kworker/u17:2-23076 (23076) [000] d..3 24577.621470: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
137637   kworker/u17:2-23076 (23076) [000] d..2 24577.621485: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
137638     kworker/0:1-13012 (13012) [000] d..2 24577.621490: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
137639     kworker/0:1-13012 (13012) [000] d..3 24577.621511: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
137640     kworker/0:1-13012 (13012) [000] d..2 24577.621520: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
137641  HwBinder:598_3-633   (  598) [002] ...1 24577.621538: tracing_mark_write: B|598|HWCSession::PresentDisplay::
137642            adbd-23485 ( 1007) [000] d..2 24577.621541: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137643          <idle>-0     (-----) [000] d..1 24577.621548: cpu_idle: state=0 cpu_id=0
137644  kworker/u16:10-23868 (23868) [003] d..2 24577.621554: 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
137645              ps-13422 (13422) [004] d..2 24577.621558: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137646          <idle>-0     (-----) [003] d..1 24577.621560: cpu_idle: state=0 cpu_id=3
137647              ps-13422 (13422) [004] dn.3 24577.621562: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137648              ps-13422 (13422) [004] d..2 24577.621564: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137649 shell svc 13418-13419 ( 1007) [004] d..2 24577.621572: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137650              ps-13422 (13422) [004] d..2 24577.621577: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137651              ps-13422 (13422) [004] dn.3 24577.621579: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137652              ps-13422 (13422) [004] d..2 24577.621581: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137653 shell svc 13418-13419 ( 1007) [004] d..2 24577.621587: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137654          <idle>-0     (-----) [001] d.h3 24577.621589: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
137655              ps-13422 (13422) [004] d..2 24577.621591: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137656              ps-13422 (13422) [004] dn.3 24577.621593: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137657              ps-13422 (13422) [004] d..2 24577.621595: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137658          <idle>-0     (-----) [001] d.h4 24577.621598: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
137659 shell svc 13418-13419 ( 1007) [004] d..2 24577.621602: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137660          <idle>-0     (-----) [000] .n.1 24577.621603: cpu_idle: state=4294967295 cpu_id=0
137661          <idle>-0     (-----) [001] ...1 24577.621604: cpu_idle: state=4294967295 cpu_id=1
137662              ps-13422 (13422) [004] d..2 24577.621606: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137663          <idle>-0     (-----) [001] d..1 24577.621607: cpu_idle: state=0 cpu_id=1
137664              ps-13422 (13422) [004] dn.3 24577.621608: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137665          <idle>-0     (-----) [000] d..2 24577.621609: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
137666              ps-13422 (13422) [004] d..2 24577.621610: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137667 shell svc 13418-13419 ( 1007) [004] d..2 24577.621616: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137668   kworker/u17:2-23076 (23076) [000] d..2 24577.621617: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
137669              ps-13422 (13422) [004] d..2 24577.621620: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137670              ps-13422 (13422) [004] dn.3 24577.621622: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137671   kworker/u17:2-23076 (23076) [000] d..3 24577.621622: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
137672              ps-13422 (13422) [004] d..2 24577.621624: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137673 shell svc 13418-13419 ( 1007) [004] d..2 24577.621630: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137674              ps-13422 (13422) [004] d..2 24577.621634: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137675              ps-13422 (13422) [004] dn.3 24577.621636: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137676              ps-13422 (13422) [004] d..2 24577.621638: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137677   kworker/u17:2-23076 (23076) [000] d..2 24577.621638: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
137678 shell svc 13418-13419 ( 1007) [004] d..2 24577.621644: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137679     kworker/0:1-13012 (13012) [000] d..2 24577.621644: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
137680              ps-13422 (13422) [004] d..2 24577.621647: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137681              ps-13422 (13422) [004] dn.3 24577.621649: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137682              ps-13422 (13422) [004] d..2 24577.621651: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137683     kworker/0:1-13012 (13012) [000] d..3 24577.621653: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
137684 shell svc 13418-13419 ( 1007) [004] d..2 24577.621657: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137685              ps-13422 (13422) [004] d..2 24577.621661: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137686     kworker/0:1-13012 (13012) [000] d..2 24577.621661: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
137687              ps-13422 (13422) [004] dn.3 24577.621663: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137688              ps-13422 (13422) [004] d..2 24577.621665: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137689  HwBinder:598_3-633   (  598) [002] ...1 24577.621668: tracing_mark_write: B|598|HWDeviceDRM::Commit::
137690 shell svc 13418-13419 ( 1007) [004] d..2 24577.621670: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137691            adbd-23484 ( 1007) [000] d..2 24577.621671: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
137692              ps-13422 (13422) [004] d..2 24577.621674: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137693              ps-13422 (13422) [004] dn.3 24577.621676: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137694  HwBinder:598_3-633   (  598) [002] ...1 24577.621676: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
137695            adbd-23484 ( 1007) [000] d..3 24577.621677: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
137696              ps-13422 (13422) [004] d..2 24577.621678: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137697 shell svc 13418-13419 ( 1007) [004] d..2 24577.621684: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137698            adbd-23484 ( 1007) [000] d..2 24577.621717: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
137699              ps-13422 (13422) [004] d..2 24577.621775: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137700              ps-13422 (13422) [004] dn.3 24577.621779: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137701              ps-13422 (13422) [004] d..2 24577.621781: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137702            adbd-1007  ( 1007) [000] d..1 24577.621788: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
137703 shell svc 13418-13419 ( 1007) [004] d..2 24577.621789: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137704              ps-13422 (13422) [004] d..2 24577.621794: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137705              ps-13422 (13422) [004] dn.3 24577.621796: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137706              ps-13422 (13422) [004] d..2 24577.621798: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137707 shell svc 13418-13419 ( 1007) [004] d..2 24577.621804: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137708              ps-13422 (13422) [004] d..2 24577.621808: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137709              ps-13422 (13422) [004] dn.3 24577.621810: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137710              ps-13422 (13422) [004] d..2 24577.621812: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137711            adbd-1007  ( 1007) [000] d..2 24577.621814: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
137712          <idle>-0     (-----) [001] .n.1 24577.621817: cpu_idle: state=4294967295 cpu_id=1
137713 shell svc 13418-13419 ( 1007) [004] d..2 24577.621818: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137714          <idle>-0     (-----) [001] d..2 24577.621824: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
137715            adbd-1007  ( 1007) [000] d..2 24577.621847: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137716          <idle>-0     (-----) [000] d..1 24577.621855: cpu_idle: state=0 cpu_id=0
137717            adbd-23485 ( 1007) [001] d..2 24577.621876: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137718          <idle>-0     (-----) [001] d.h4 24577.621893: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
137719              ps-13422 (13422) [004] d..2 24577.621907: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137720              ps-13422 (13422) [004] dn.3 24577.621910: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137721          <idle>-0     (-----) [001] dnh5 24577.621911: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
137722              ps-13422 (13422) [004] d..2 24577.621913: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137723 shell svc 13418-13419 ( 1007) [004] d..2 24577.621921: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137724          <idle>-0     (-----) [001] d..2 24577.621925: 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
137725              ps-13422 (13422) [004] d..2 24577.621925: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137726              ps-13422 (13422) [004] dn.3 24577.621927: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137727              ps-13422 (13422) [004] d..2 24577.621930: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137728   kworker/u17:2-23076 (23076) [001] d..2 24577.621931: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
137729 shell svc 13418-13419 ( 1007) [004] d..2 24577.621936: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137730   kworker/u17:2-23076 (23076) [001] d..3 24577.621937: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
137731              ps-13422 (13422) [004] d..2 24577.621940: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137732              ps-13422 (13422) [004] dn.3 24577.621942: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137733              ps-13422 (13422) [004] d..2 24577.621944: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137734 shell svc 13418-13419 ( 1007) [004] d..2 24577.621950: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137735   kworker/u17:2-23076 (23076) [001] d..2 24577.621953: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
137736     kworker/1:1-13091 (13091) [001] d..2 24577.621958: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
137737     kworker/1:1-13091 (13091) [001] d..3 24577.621979: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
137738          <idle>-0     (-----) [000] .n.1 24577.621985: cpu_idle: state=4294967295 cpu_id=0
137739          <idle>-0     (-----) [000] d..2 24577.621992: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
137740     kworker/1:1-13091 (13091) [001] d..2 24577.621993: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137741          <idle>-0     (-----) [001] d..1 24577.622001: cpu_idle: state=0 cpu_id=1
137742            adbd-23485 ( 1007) [000] d..2 24577.622040: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137743          <idle>-0     (-----) [000] d..1 24577.622047: cpu_idle: state=0 cpu_id=0
137744          <idle>-0     (-----) [001] d.h3 24577.622061: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
137745          <idle>-0     (-----) [001] dnh4 24577.622067: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
137746          <idle>-0     (-----) [001] .n.1 24577.622072: cpu_idle: state=4294967295 cpu_id=1
137747          <idle>-0     (-----) [001] d..2 24577.622078: 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
137748   kworker/u17:2-23076 (23076) [001] d..2 24577.622084: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
137749   kworker/u17:2-23076 (23076) [001] d..3 24577.622089: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
137750  HwBinder:598_3-633   (  598) [002] d..2 24577.622098: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
137751   kworker/u17:2-23076 (23076) [001] d..2 24577.622105: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
137752     kworker/1:1-13091 (13091) [001] d..2 24577.622111: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
137753  HwBinder:598_3-633   (  598) [002] d..3 24577.622112: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
137754          <idle>-0     (-----) [000] .n.1 24577.622117: cpu_idle: state=4294967295 cpu_id=0
137755     kworker/1:1-13091 (13091) [001] d..3 24577.622121: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
137756          <idle>-0     (-----) [000] d..2 24577.622125: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
137757     kworker/1:1-13091 (13091) [001] d..2 24577.622141: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137758          <idle>-0     (-----) [001] d..1 24577.622148: cpu_idle: state=0 cpu_id=1
137759  HwBinder:598_3-633   (  598) [002] ...1 24577.622179: tracing_mark_write: E|598
137760  HwBinder:598_3-633   (  598) [002] ...1 24577.622182: tracing_mark_write: E|598
137761              ps-13422 (13422) [004] d..2 24577.622207: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137762              ps-13422 (13422) [004] dn.3 24577.622210: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137763              ps-13422 (13422) [004] d..2 24577.622212: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137764          <idle>-0     (-----) [001] d.h3 24577.622218: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
137765 shell svc 13418-13419 ( 1007) [004] d..2 24577.622221: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137766          <idle>-0     (-----) [001] dnh4 24577.622223: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
137767              ps-13422 (13422) [004] d..2 24577.622225: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137768  HwBinder:598_3-633   (  598) [002] ...1 24577.622228: tracing_mark_write: E|598
137769              ps-13422 (13422) [004] dn.3 24577.622228: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137770          <idle>-0     (-----) [001] .n.1 24577.622228: cpu_idle: state=4294967295 cpu_id=1
137771              ps-13422 (13422) [004] d..2 24577.622230: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137772          <idle>-0     (-----) [001] d..2 24577.622234: 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
137773 shell svc 13418-13419 ( 1007) [004] d..2 24577.622236: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137774   kworker/u17:2-23076 (23076) [001] d..2 24577.622240: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
137775              ps-13422 (13422) [004] d..2 24577.622240: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137776              ps-13422 (13422) [004] dn.3 24577.622243: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137777   kworker/u17:2-23076 (23076) [001] d..3 24577.622245: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
137778              ps-13422 (13422) [004] d..2 24577.622245: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137779 shell svc 13418-13419 ( 1007) [004] d..2 24577.622251: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137780              ps-13422 (13422) [004] d..2 24577.622255: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137781              ps-13422 (13422) [004] dn.3 24577.622257: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137782              ps-13422 (13422) [004] d..2 24577.622260: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137783   kworker/u17:2-23076 (23076) [001] d..2 24577.622260: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
137784     kworker/1:1-13091 (13091) [001] d..2 24577.622265: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
137785 shell svc 13418-13419 ( 1007) [004] d..2 24577.622266: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137786  HwBinder:598_3-633   (  598) [002] ...1 24577.622267: tracing_mark_write: E|598
137787              ps-13422 (13422) [004] d..2 24577.622269: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137788              ps-13422 (13422) [004] dn.3 24577.622271: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137789              ps-13422 (13422) [004] d..2 24577.622273: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137790  HwBinder:598_3-633   (  598) [002] .... 24577.622278: binder_transaction: transaction=1671696 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
137791 shell svc 13418-13419 ( 1007) [004] d..2 24577.622279: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137792              ps-13422 (13422) [004] d..2 24577.622282: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137793              ps-13422 (13422) [004] dn.3 24577.622285: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137794     kworker/1:1-13091 (13091) [001] d..3 24577.622286: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
137795              ps-13422 (13422) [004] d..2 24577.622287: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137796  HwBinder:598_3-633   (  598) [002] d..2 24577.622291: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
137797 shell svc 13418-13419 ( 1007) [004] d..2 24577.622292: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137798              ps-13422 (13422) [004] d..2 24577.622296: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137799              ps-13422 (13422) [004] dn.3 24577.622298: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137800              ps-13422 (13422) [004] d..2 24577.622300: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137801  HwBinder:598_3-633   (  598) [002] d..3 24577.622302: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
137802 shell svc 13418-13419 ( 1007) [004] d..2 24577.622306: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137803     kworker/1:1-13091 (13091) [001] d..2 24577.622306: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
137804  HwBinder:598_3-633   (  598) [002] .... 24577.622310: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
137805              ps-13422 (13422) [004] d..2 24577.622310: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137806              ps-13422 (13422) [004] dn.3 24577.622312: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137807              ps-13422 (13422) [004] d..2 24577.622314: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137808  surfaceflinger-23896 (23896) [001] .... 24577.622314: binder_transaction_received: transaction=1671696
137809 shell svc 13418-13419 ( 1007) [004] d..2 24577.622320: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137810              ps-13422 (13422) [004] d..2 24577.622323: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137811              ps-13422 (13422) [004] dn.3 24577.622325: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137812              ps-13422 (13422) [004] d..2 24577.622327: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137813 shell svc 13418-13419 ( 1007) [004] d..2 24577.622333: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137814              ps-13422 (13422) [004] d..2 24577.622337: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137815              ps-13422 (13422) [004] dn.3 24577.622339: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137816              ps-13422 (13422) [004] d..2 24577.622341: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137817 shell svc 13418-13419 ( 1007) [004] d..2 24577.622346: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137818              ps-13422 (13422) [004] d..2 24577.622350: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137819              ps-13422 (13422) [004] dn.3 24577.622352: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137820              ps-13422 (13422) [004] d..2 24577.622354: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137821  HwBinder:598_3-633   (  598) [002] d..2 24577.622355: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
137822 shell svc 13418-13419 ( 1007) [004] d..2 24577.622360: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137823            adbd-23484 ( 1007) [002] d..2 24577.622367: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
137824            adbd-23484 ( 1007) [002] d..3 24577.622380: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
137825            adbd-23484 ( 1007) [002] d..2 24577.622423: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
137826              ps-13422 (13422) [004] d..2 24577.622443: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137827              ps-13422 (13422) [004] dn.3 24577.622446: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137828              ps-13422 (13422) [004] d..2 24577.622448: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137829 shell svc 13418-13419 ( 1007) [004] d..2 24577.622457: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137830              ps-13422 (13422) [004] d..2 24577.622461: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137831              ps-13422 (13422) [004] dn.3 24577.622464: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137832              ps-13422 (13422) [004] d..2 24577.622466: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137833 shell svc 13418-13419 ( 1007) [004] d..2 24577.622472: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137834            adbd-1007  ( 1007) [002] d..2 24577.622539: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
137835              ps-13422 (13422) [004] d..2 24577.622540: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137836              ps-13422 (13422) [004] dn.3 24577.622543: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137837              ps-13422 (13422) [004] d..2 24577.622546: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137838 shell svc 13418-13419 ( 1007) [004] d..2 24577.622554: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137839              ps-13422 (13422) [004] d..2 24577.622558: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137840              ps-13422 (13422) [004] dn.3 24577.622560: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137841              ps-13422 (13422) [004] d..2 24577.622562: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137842 shell svc 13418-13419 ( 1007) [004] d..2 24577.622568: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137843  surfaceflinger-23896 (23896) [001] d..2 24577.622577: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137844          <idle>-0     (-----) [001] d..1 24577.622587: cpu_idle: state=0 cpu_id=1
137845            adbd-23485 ( 1007) [002] d..2 24577.622591: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
137846          <idle>-0     (-----) [002] d..1 24577.622600: cpu_idle: state=0 cpu_id=2
137847          <idle>-0     (-----) [001] d.h3 24577.622615: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
137848          <idle>-0     (-----) [001] dnh4 24577.622622: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
137849          <idle>-0     (-----) [001] .n.1 24577.622627: cpu_idle: state=4294967295 cpu_id=1
137850          <idle>-0     (-----) [001] d..2 24577.622634: 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
137851   kworker/u17:2-23076 (23076) [001] d..2 24577.622641: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
137852   kworker/u17:2-23076 (23076) [001] d..3 24577.622646: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
137853   kworker/u17:2-23076 (23076) [001] d..2 24577.622662: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
137854     kworker/1:1-13091 (13091) [001] d..2 24577.622668: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
137855     kworker/1:1-13091 (13091) [001] d..3 24577.622689: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
137856              ps-13422 (13422) [004] d..2 24577.622699: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137857              ps-13422 (13422) [004] dn.3 24577.622702: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137858              ps-13422 (13422) [004] d..2 24577.622704: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137859     kworker/1:1-13091 (13091) [001] d..2 24577.622706: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137860 shell svc 13418-13419 ( 1007) [004] d..2 24577.622712: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137861          <idle>-0     (-----) [001] d..1 24577.622713: cpu_idle: state=0 cpu_id=1
137862              ps-13422 (13422) [004] d..2 24577.622716: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137863              ps-13422 (13422) [004] dn.3 24577.622719: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137864              ps-13422 (13422) [004] d..2 24577.622721: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137865 shell svc 13418-13419 ( 1007) [004] d..2 24577.622727: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137866              ps-13422 (13422) [004] d..2 24577.622731: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137867              ps-13422 (13422) [004] dn.3 24577.622733: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137868              ps-13422 (13422) [004] d..2 24577.622735: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137869 shell svc 13418-13419 ( 1007) [004] d..2 24577.622741: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137870              ps-13422 (13422) [004] d..2 24577.622745: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137871              ps-13422 (13422) [004] dn.3 24577.622747: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137872              ps-13422 (13422) [004] d..2 24577.622749: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137873 crtc_commit:111-253   (  253) [000] d..2 24577.622750: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=adbd next_pid=23485 next_prio=120
137874 shell svc 13418-13419 ( 1007) [004] d..2 24577.622755: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137875              ps-13422 (13422) [004] d..2 24577.622758: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137876              ps-13422 (13422) [004] dn.3 24577.622761: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137877              ps-13422 (13422) [004] d..2 24577.622763: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137878 shell svc 13418-13419 ( 1007) [004] d..2 24577.622768: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137879            adbd-23485 ( 1007) [000] d..2 24577.622802: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137880          <idle>-0     (-----) [000] d..1 24577.622810: cpu_idle: state=0 cpu_id=0
137881          <idle>-0     (-----) [001] d.h3 24577.622836: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
137882          <idle>-0     (-----) [001] dnh4 24577.622842: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
137883          <idle>-0     (-----) [001] .n.1 24577.622847: cpu_idle: state=4294967295 cpu_id=1
137884          <idle>-0     (-----) [001] d..2 24577.622854: 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
137885   kworker/u17:2-23076 (23076) [001] d..2 24577.622861: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
137886   kworker/u17:2-23076 (23076) [001] d..3 24577.622866: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
137887              ps-13422 (13422) [004] d..2 24577.622882: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137888   kworker/u17:2-23076 (23076) [001] d..2 24577.622882: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
137889              ps-13422 (13422) [004] dn.3 24577.622885: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137890     kworker/1:1-13091 (13091) [001] d..2 24577.622887: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
137891              ps-13422 (13422) [004] d..2 24577.622888: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137892 shell svc 13418-13419 ( 1007) [004] d..2 24577.622896: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137893     kworker/1:1-13091 (13091) [001] d..3 24577.622896: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
137894              ps-13422 (13422) [004] d..2 24577.622900: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137895          <idle>-0     (-----) [000] .n.1 24577.622901: cpu_idle: state=4294967295 cpu_id=0
137896              ps-13422 (13422) [004] dn.3 24577.622902: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137897              ps-13422 (13422) [004] d..2 24577.622904: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137898          <idle>-0     (-----) [000] d..2 24577.622908: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
137899     kworker/1:1-13091 (13091) [001] d..2 24577.622910: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137900 shell svc 13418-13419 ( 1007) [004] d..2 24577.622910: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137901              ps-13422 (13422) [004] d..2 24577.622915: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137902          <idle>-0     (-----) [001] d..1 24577.622916: cpu_idle: state=0 cpu_id=1
137903              ps-13422 (13422) [004] dn.3 24577.622917: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137904              ps-13422 (13422) [004] d..2 24577.622919: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137905 shell svc 13418-13419 ( 1007) [004] d..2 24577.622925: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137906            adbd-23485 ( 1007) [000] d..2 24577.622925: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137907              ps-13422 (13422) [004] d..2 24577.622929: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137908              ps-13422 (13422) [004] dn.3 24577.622931: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137909          <idle>-0     (-----) [000] d..1 24577.622931: cpu_idle: state=0 cpu_id=0
137910              ps-13422 (13422) [004] d..2 24577.622933: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137911 shell svc 13418-13419 ( 1007) [004] d..2 24577.622939: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137912          <idle>-0     (-----) [001] d.h3 24577.622990: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
137913          <idle>-0     (-----) [001] dnh4 24577.622995: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
137914          <idle>-0     (-----) [001] .n.1 24577.623000: cpu_idle: state=4294967295 cpu_id=1
137915          <idle>-0     (-----) [001] d..2 24577.623006: 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
137916   kworker/u17:2-23076 (23076) [001] d..2 24577.623012: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
137917   kworker/u17:2-23076 (23076) [001] d..3 24577.623017: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
137918   kworker/u17:2-23076 (23076) [001] d..2 24577.623032: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
137919     kworker/1:1-13091 (13091) [001] d..2 24577.623040: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
137920     kworker/1:1-13091 (13091) [001] d..3 24577.623063: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
137921          <idle>-0     (-----) [000] .n.1 24577.623068: cpu_idle: state=4294967295 cpu_id=0
137922          <idle>-0     (-----) [000] d..2 24577.623074: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
137923     kworker/1:1-13091 (13091) [001] d..2 24577.623078: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137924            adbd-23484 ( 1007) [000] d..2 24577.623084: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
137925          <idle>-0     (-----) [001] d..1 24577.623085: cpu_idle: state=0 cpu_id=1
137926            adbd-23484 ( 1007) [000] d..3 24577.623095: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
137927              ps-13422 (13422) [004] d..2 24577.623120: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137928              ps-13422 (13422) [004] dn.3 24577.623123: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137929              ps-13422 (13422) [004] d..2 24577.623126: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137930 shell svc 13418-13419 ( 1007) [004] d..2 24577.623134: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137931            adbd-23484 ( 1007) [000] d..2 24577.623138: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
137932              ps-13422 (13422) [004] d..2 24577.623138: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137933              ps-13422 (13422) [004] dn.3 24577.623141: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137934              ps-13422 (13422) [004] d..2 24577.623143: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137935 shell svc 13418-13419 ( 1007) [004] d..2 24577.623149: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137936              ps-13422 (13422) [004] d..2 24577.623153: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137937              ps-13422 (13422) [004] dn.3 24577.623155: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137938              ps-13422 (13422) [004] d..2 24577.623157: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137939 shell svc 13418-13419 ( 1007) [004] d..2 24577.623163: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137940              ps-13422 (13422) [004] d..2 24577.623167: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137941              ps-13422 (13422) [004] dn.3 24577.623169: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137942              ps-13422 (13422) [004] d..2 24577.623171: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137943 shell svc 13418-13419 ( 1007) [004] d..2 24577.623177: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137944              ps-13422 (13422) [004] d..2 24577.623181: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137945              ps-13422 (13422) [004] dn.3 24577.623183: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137946              ps-13422 (13422) [004] d..2 24577.623185: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137947 shell svc 13418-13419 ( 1007) [004] d..2 24577.623191: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137948              ps-13422 (13422) [004] d..2 24577.623195: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137949              ps-13422 (13422) [004] dn.3 24577.623197: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137950              ps-13422 (13422) [004] d..2 24577.623199: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137951 shell svc 13418-13419 ( 1007) [004] d..2 24577.623207: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137952              ps-13422 (13422) [004] d..2 24577.623210: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137953              ps-13422 (13422) [004] dn.3 24577.623212: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137954            adbd-1007  ( 1007) [000] d..1 24577.623213: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
137955              ps-13422 (13422) [004] d..2 24577.623214: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137956 shell svc 13418-13419 ( 1007) [004] d..2 24577.623220: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137957            adbd-1007  ( 1007) [000] d..2 24577.623232: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
137958          <idle>-0     (-----) [001] .n.1 24577.623237: cpu_idle: state=4294967295 cpu_id=1
137959          <idle>-0     (-----) [001] d..2 24577.623243: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
137960            adbd-1007  ( 1007) [000] d..2 24577.623265: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137961          <idle>-0     (-----) [000] d..1 24577.623274: cpu_idle: state=0 cpu_id=0
137962            adbd-23485 ( 1007) [001] d..2 24577.623292: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137963          <idle>-0     (-----) [001] d.h4 24577.623309: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
137964          <idle>-0     (-----) [001] dnh5 24577.623315: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
137965          <idle>-0     (-----) [001] d..2 24577.623322: 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
137966   kworker/u17:2-23076 (23076) [001] d..2 24577.623329: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
137967   kworker/u17:2-23076 (23076) [001] d..3 24577.623333: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
137968              ps-13422 (13422) [004] d..2 24577.623348: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137969              ps-13422 (13422) [004] dn.3 24577.623351: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137970   kworker/u17:2-23076 (23076) [001] d..2 24577.623351: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
137971              ps-13422 (13422) [004] d..2 24577.623353: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137972     kworker/1:1-13091 (13091) [001] d..2 24577.623356: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
137973 shell svc 13418-13419 ( 1007) [004] d..2 24577.623361: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137974              ps-13422 (13422) [004] d..2 24577.623365: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137975              ps-13422 (13422) [004] dn.3 24577.623368: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137976              ps-13422 (13422) [004] d..2 24577.623370: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137977     kworker/1:1-13091 (13091) [001] d..3 24577.623371: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
137978 shell svc 13418-13419 ( 1007) [004] d..2 24577.623376: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137979          <idle>-0     (-----) [000] .n.1 24577.623376: cpu_idle: state=4294967295 cpu_id=0
137980              ps-13422 (13422) [004] d..2 24577.623380: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137981              ps-13422 (13422) [004] dn.3 24577.623382: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137982          <idle>-0     (-----) [000] d..2 24577.623383: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
137983              ps-13422 (13422) [004] d..2 24577.623384: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137984     kworker/1:1-13091 (13091) [001] d..2 24577.623384: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137985 shell svc 13418-13419 ( 1007) [004] d..2 24577.623390: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137986          <idle>-0     (-----) [001] d..1 24577.623392: cpu_idle: state=0 cpu_id=1
137987              ps-13422 (13422) [004] d..2 24577.623394: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137988              ps-13422 (13422) [004] dn.3 24577.623396: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
137989              ps-13422 (13422) [004] d..2 24577.623398: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
137990 shell svc 13418-13419 ( 1007) [004] d..2 24577.623404: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
137991            adbd-23485 ( 1007) [000] d..2 24577.623432: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137992          <idle>-0     (-----) [000] d..1 24577.623440: cpu_idle: state=0 cpu_id=0
137993          <idle>-0     (-----) [001] d.h3 24577.623461: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
137994          <idle>-0     (-----) [001] dnh4 24577.623467: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
137995          <idle>-0     (-----) [001] .n.1 24577.623472: cpu_idle: state=4294967295 cpu_id=1
137996          <idle>-0     (-----) [001] d..2 24577.623478: 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
137997   kworker/u17:2-23076 (23076) [001] d..2 24577.623484: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
137998   kworker/u17:2-23076 (23076) [001] d..3 24577.623489: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
137999   kworker/u17:2-23076 (23076) [001] d..2 24577.623506: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
138000     kworker/1:1-13091 (13091) [001] d..2 24577.623512: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
138001     kworker/1:1-13091 (13091) [001] d..3 24577.623520: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
138002          <idle>-0     (-----) [000] .n.1 24577.623526: cpu_idle: state=4294967295 cpu_id=0
138003          <idle>-0     (-----) [000] d..2 24577.623532: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
138004     kworker/1:1-13091 (13091) [001] d..2 24577.623533: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138005          <idle>-0     (-----) [001] d..1 24577.623540: cpu_idle: state=0 cpu_id=1
138006            adbd-23485 ( 1007) [000] d..2 24577.623549: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138007          <idle>-0     (-----) [000] d..1 24577.623555: cpu_idle: state=0 cpu_id=0
138008          <idle>-0     (-----) [001] d.h3 24577.623618: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138009          <idle>-0     (-----) [001] dnh4 24577.623623: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138010          <idle>-0     (-----) [001] .n.1 24577.623628: cpu_idle: state=4294967295 cpu_id=1
138011          <idle>-0     (-----) [001] d..2 24577.623634: 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
138012   kworker/u17:2-23076 (23076) [001] d..2 24577.623641: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138013   kworker/u17:2-23076 (23076) [001] d..3 24577.623646: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138014   kworker/u17:2-23076 (23076) [001] d..2 24577.623662: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
138015     kworker/1:1-13091 (13091) [001] d..2 24577.623668: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
138016     kworker/1:1-13091 (13091) [001] d..3 24577.623677: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
138017          <idle>-0     (-----) [000] .n.1 24577.623682: cpu_idle: state=4294967295 cpu_id=0
138018          <idle>-0     (-----) [000] d..2 24577.623687: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
138019     kworker/1:1-13091 (13091) [001] d..2 24577.623689: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138020          <idle>-0     (-----) [001] d..1 24577.623696: cpu_idle: state=0 cpu_id=1
138021            adbd-23484 ( 1007) [000] d..2 24577.623697: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
138022            adbd-23484 ( 1007) [000] d..3 24577.623704: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
138023            adbd-23484 ( 1007) [000] d..2 24577.623746: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
138024          <idle>-0     (-----) [002] ...1 24577.623763: cpu_idle: state=4294967295 cpu_id=2
138025          <idle>-0     (-----) [002] d..1 24577.623766: cpu_idle: state=0 cpu_id=2
138026              ps-13422 (13422) [004] d..2 24577.623805: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138027            adbd-1007  ( 1007) [000] d..1 24577.623806: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
138028              ps-13422 (13422) [004] dn.3 24577.623809: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138029              ps-13422 (13422) [004] d..2 24577.623811: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138030 shell svc 13418-13419 ( 1007) [004] d..2 24577.623820: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138031            adbd-1007  ( 1007) [000] d..2 24577.623824: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
138032              ps-13422 (13422) [004] d..2 24577.623824: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138033              ps-13422 (13422) [004] dn.3 24577.623827: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138034              ps-13422 (13422) [004] d..2 24577.623829: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138035          <idle>-0     (-----) [001] .n.1 24577.623829: cpu_idle: state=4294967295 cpu_id=1
138036          <idle>-0     (-----) [001] d..2 24577.623835: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
138037 shell svc 13418-13419 ( 1007) [004] d..2 24577.623835: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138038              ps-13422 (13422) [004] d..2 24577.623839: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138039              ps-13422 (13422) [004] dn.3 24577.623842: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138040              ps-13422 (13422) [004] d..2 24577.623843: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138041 shell svc 13418-13419 ( 1007) [004] d..2 24577.623850: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138042              ps-13422 (13422) [004] d..2 24577.623853: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138043              ps-13422 (13422) [004] dn.3 24577.623855: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138044            adbd-1007  ( 1007) [000] d..2 24577.623857: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138045              ps-13422 (13422) [004] d..2 24577.623857: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138046 shell svc 13418-13419 ( 1007) [004] d..2 24577.623863: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138047          <idle>-0     (-----) [000] d..1 24577.623865: cpu_idle: state=0 cpu_id=0
138048              ps-13422 (13422) [004] d..2 24577.623867: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138049              ps-13422 (13422) [004] dn.3 24577.623869: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138050              ps-13422 (13422) [004] d..2 24577.623871: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138051 shell svc 13418-13419 ( 1007) [004] d..2 24577.623877: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138052              ps-13422 (13422) [004] d..2 24577.623880: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138053            adbd-23485 ( 1007) [001] d..2 24577.623881: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138054              ps-13422 (13422) [004] dn.3 24577.623882: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138055              ps-13422 (13422) [004] d..2 24577.623884: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138056          <idle>-0     (-----) [001] d..1 24577.623888: cpu_idle: state=0 cpu_id=1
138057 shell svc 13418-13419 ( 1007) [004] d..2 24577.623890: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138058              ps-13422 (13422) [004] d..2 24577.623894: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138059              ps-13422 (13422) [004] dn.3 24577.623896: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138060              ps-13422 (13422) [004] d..2 24577.623898: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138061 shell svc 13418-13419 ( 1007) [004] d..2 24577.623903: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138062          <idle>-0     (-----) [001] d.h3 24577.623906: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138063              ps-13422 (13422) [004] d..2 24577.623907: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138064              ps-13422 (13422) [004] dn.3 24577.623909: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138065              ps-13422 (13422) [004] d..2 24577.623911: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138066          <idle>-0     (-----) [001] dnh4 24577.623915: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138067 shell svc 13418-13419 ( 1007) [004] d..2 24577.623917: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138068          <idle>-0     (-----) [001] .n.1 24577.623920: cpu_idle: state=4294967295 cpu_id=1
138069              ps-13422 (13422) [004] d..2 24577.623921: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138070              ps-13422 (13422) [004] dn.3 24577.623923: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138071          <idle>-0     (-----) [001] d..2 24577.623926: 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
138072              ps-13422 (13422) [004] d..2 24577.623926: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138073 shell svc 13418-13419 ( 1007) [004] d..2 24577.623931: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138074   kworker/u17:2-23076 (23076) [001] d..2 24577.623932: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138075              ps-13422 (13422) [004] d..2 24577.623936: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138076   kworker/u17:2-23076 (23076) [001] d..3 24577.623937: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138077              ps-13422 (13422) [004] dn.3 24577.623938: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138078              ps-13422 (13422) [004] d..2 24577.623941: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138079 shell svc 13418-13419 ( 1007) [004] d..2 24577.623946: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138080              ps-13422 (13422) [004] d..2 24577.623951: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138081   kworker/u17:2-23076 (23076) [001] d..2 24577.623953: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
138082              ps-13422 (13422) [004] dn.3 24577.623954: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138083              ps-13422 (13422) [004] d..2 24577.623956: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138084     kworker/1:1-13091 (13091) [001] d..2 24577.623959: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
138085 shell svc 13418-13419 ( 1007) [004] d..2 24577.623962: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138086              ps-13422 (13422) [004] d..2 24577.623966: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138087              ps-13422 (13422) [004] dn.3 24577.623968: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138088              ps-13422 (13422) [004] d..2 24577.623970: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138089     kworker/1:1-13091 (13091) [001] d..3 24577.623974: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
138090 shell svc 13418-13419 ( 1007) [004] d..2 24577.623975: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138091          <idle>-0     (-----) [000] .n.1 24577.623979: cpu_idle: state=4294967295 cpu_id=0
138092              ps-13422 (13422) [004] d..2 24577.623980: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138093              ps-13422 (13422) [004] dn.3 24577.623982: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138094              ps-13422 (13422) [004] d..2 24577.623984: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138095          <idle>-0     (-----) [000] d..2 24577.623986: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
138096     kworker/1:1-13091 (13091) [001] d..2 24577.623988: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138097 shell svc 13418-13419 ( 1007) [004] d..2 24577.623990: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138098              ps-13422 (13422) [004] d..2 24577.623994: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138099          <idle>-0     (-----) [001] d..1 24577.623995: cpu_idle: state=0 cpu_id=1
138100              ps-13422 (13422) [004] dn.3 24577.623996: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138101              ps-13422 (13422) [004] d..2 24577.623998: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138102 shell svc 13418-13419 ( 1007) [004] d..2 24577.624005: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138103              ps-13422 (13422) [004] d..2 24577.624008: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138104              ps-13422 (13422) [004] dn.3 24577.624010: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138105              ps-13422 (13422) [004] d..2 24577.624012: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138106 shell svc 13418-13419 ( 1007) [004] d..2 24577.624018: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138107              ps-13422 (13422) [004] d..2 24577.624021: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138108              ps-13422 (13422) [004] dn.3 24577.624023: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138109              ps-13422 (13422) [004] d..2 24577.624025: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138110 shell svc 13418-13419 ( 1007) [004] d..2 24577.624031: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138111              ps-13422 (13422) [004] d..2 24577.624035: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138112            adbd-23485 ( 1007) [000] d..2 24577.624036: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138113              ps-13422 (13422) [004] dn.3 24577.624038: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138114              ps-13422 (13422) [004] d..2 24577.624040: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138115          <idle>-0     (-----) [000] d..1 24577.624043: cpu_idle: state=0 cpu_id=0
138116 shell svc 13418-13419 ( 1007) [004] d..2 24577.624045: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138117          <idle>-0     (-----) [001] d.h3 24577.624052: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138118          <idle>-0     (-----) [001] dnh4 24577.624057: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138119          <idle>-0     (-----) [001] .n.1 24577.624062: cpu_idle: state=4294967295 cpu_id=1
138120          <idle>-0     (-----) [001] d..2 24577.624068: 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
138121   kworker/u17:2-23076 (23076) [001] d..2 24577.624074: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138122   kworker/u17:2-23076 (23076) [001] d..3 24577.624079: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138123   kworker/u17:2-23076 (23076) [001] d..2 24577.624094: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
138124     kworker/1:1-13091 (13091) [001] d..2 24577.624099: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
138125     kworker/1:1-13091 (13091) [001] d..3 24577.624107: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
138126          <idle>-0     (-----) [000] .n.1 24577.624112: cpu_idle: state=4294967295 cpu_id=0
138127          <idle>-0     (-----) [000] d..2 24577.624119: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
138128     kworker/1:1-13091 (13091) [001] d..2 24577.624121: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138129          <idle>-0     (-----) [001] d..1 24577.624127: cpu_idle: state=0 cpu_id=1
138130            adbd-23485 ( 1007) [000] d..2 24577.624135: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138131          <idle>-0     (-----) [000] d..1 24577.624141: cpu_idle: state=0 cpu_id=0
138132              ps-13422 (13422) [004] d..2 24577.624202: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138133              ps-13422 (13422) [004] dn.3 24577.624205: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138134              ps-13422 (13422) [004] d..2 24577.624208: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138135          <idle>-0     (-----) [001] d.h3 24577.624208: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138136          <idle>-0     (-----) [001] dnh4 24577.624213: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138137          <idle>-0     (-----) [001] .n.1 24577.624218: cpu_idle: state=4294967295 cpu_id=1
138138          <idle>-0     (-----) [001] d..2 24577.624225: 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
138139 shell svc 13418-13419 ( 1007) [004] d.s2 24577.624226: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
138140          <idle>-0     (-----) [003] d.s2 24577.624229: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
138141   kworker/u17:2-23076 (23076) [001] d..2 24577.624231: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138142   kworker/u17:2-23076 (23076) [001] d..3 24577.624236: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138143          <idle>-0     (-----) [003] dns3 24577.624240: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
138144          <idle>-0     (-----) [003] .n.1 24577.624246: cpu_idle: state=4294967295 cpu_id=3
138145          <idle>-0     (-----) [000] dnh2 24577.624249: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
138146          <idle>-0     (-----) [006] .n.1 24577.624251: cpu_idle: state=4294967295 cpu_id=6
138147          <idle>-0     (-----) [003] d..2 24577.624251: 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
138148          <idle>-0     (-----) [005] ...1 24577.624253: cpu_idle: state=4294967295 cpu_id=5
138149   kworker/u17:2-23076 (23076) [001] d..2 24577.624253: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
138150          <idle>-0     (-----) [006] d..2 24577.624254: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ps next_pid=13422 next_prio=120
138151          <idle>-0     (-----) [005] d..1 24577.624254: cpu_idle: state=0 cpu_id=5
138152          <idle>-0     (-----) [000] .n.1 24577.624254: cpu_idle: state=4294967295 cpu_id=0
138153 shell svc 13418-13419 ( 1007) [004] d..2 24577.624257: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
138154     rcu_preempt-7     (    7) [003] d..2 24577.624258: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
138155     kworker/1:1-13091 (13091) [001] d..2 24577.624259: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
138156          <idle>-0     (-----) [000] d..2 24577.624261: 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
138157          <idle>-0     (-----) [004] d..1 24577.624264: cpu_idle: state=0 cpu_id=4
138158              ps-13422 (13422) [006] d..2 24577.624270: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=004
138159              ps-13422 (13422) [006] dn.3 24577.624277: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138160              ps-13422 (13422) [006] d..2 24577.624279: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138161     rcu_preempt-7     (    7) [003] d..3 24577.624287: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
138162     kworker/1:1-13091 (13091) [001] d..3 24577.624291: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
138163 shell svc 13418-13419 ( 1007) [006] d..2 24577.624292: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138164     rcu_preempt-7     (    7) [003] d..2 24577.624293: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
138165              ps-13422 (13422) [006] d..2 24577.624298: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138166              ps-13422 (13422) [006] dn.3 24577.624300: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138167              ps-13422 (13422) [006] d..2 24577.624302: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138168     rcu_preempt-7     (    7) [003] d..3 24577.624305: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
138169 shell svc 13418-13419 ( 1007) [006] d..2 24577.624309: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138170              ps-13422 (13422) [006] d..2 24577.624314: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138171     rcu_preempt-7     (    7) [003] d..2 24577.624316: 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
138172              ps-13422 (13422) [006] dn.3 24577.624316: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138173              ps-13422 (13422) [006] d..2 24577.624318: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138174         rcuop/0-10    (   10) [003] d..2 24577.624321: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
138175     kworker/1:1-13091 (13091) [001] d..2 24577.624322: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
138176 shell svc 13418-13419 ( 1007) [006] d..2 24577.624325: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138177              ps-13422 (13422) [006] d..2 24577.624329: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138178              ps-13422 (13422) [006] dn.3 24577.624331: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138179         rcuop/2-29    (   29) [001] d..2 24577.624332: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
138180              ps-13422 (13422) [006] d..2 24577.624333: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138181         rcuop/0-10    (   10) [003] d..3 24577.624335: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
138182 shell svc 13418-13419 ( 1007) [006] d..2 24577.624339: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138183         rcuop/0-10    (   10) [003] d..2 24577.624348: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
138184         rcuop/2-29    (   29) [001] d..3 24577.624355: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
138185         rcuop/2-29    (   29) [001] d..2 24577.624362: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
138186            adbd-23484 ( 1007) [003] d..2 24577.624368: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
138187         rcuop/1-21    (   21) [001] d..2 24577.624373: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
138188            adbd-23484 ( 1007) [003] d..3 24577.624379: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
138189         rcuop/3-37    (   37) [001] d..2 24577.624395: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
138190              ps-13422 (13422) [006] d..2 24577.624411: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138191              ps-13422 (13422) [006] dn.3 24577.624415: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138192              ps-13422 (13422) [006] d..2 24577.624417: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138193 shell svc 13418-13419 ( 1007) [006] d..2 24577.624426: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138194            adbd-23484 ( 1007) [003] d..2 24577.624430: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
138195          <idle>-0     (-----) [003] d..1 24577.624438: cpu_idle: state=0 cpu_id=3
138196  kworker/u16:10-23868 (23868) [000] d..2 24577.624474: 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
138197            adbd-1007  ( 1007) [001] d..1 24577.624480: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
138198          <idle>-0     (-----) [000] d..1 24577.624481: cpu_idle: state=0 cpu_id=0
138199            adbd-1007  ( 1007) [001] d..2 24577.624491: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
138200          <idle>-0     (-----) [000] .n.1 24577.624496: cpu_idle: state=4294967295 cpu_id=0
138201          <idle>-0     (-----) [000] d..2 24577.624503: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
138202          <idle>-0     (-----) [003] d.s3 24577.624510: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
138203            adbd-1007  ( 1007) [001] d..2 24577.624525: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138204          <idle>-0     (-----) [003] d.s4 24577.624529: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
138205          <idle>-0     (-----) [003] dns4 24577.624532: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
138206          <idle>-0     (-----) [001] d..1 24577.624534: cpu_idle: state=0 cpu_id=1
138207          <idle>-0     (-----) [003] .n.1 24577.624537: cpu_idle: state=4294967295 cpu_id=3
138208          <idle>-0     (-----) [003] d..2 24577.624544: 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
138209            adbd-23485 ( 1007) [000] d..2 24577.624550: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138210          <idle>-0     (-----) [000] d..1 24577.624557: cpu_idle: state=0 cpu_id=0
138211          <idle>-0     (-----) [001] d.h3 24577.624575: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138212          <idle>-0     (-----) [001] dnh4 24577.624581: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138213          <idle>-0     (-----) [001] .n.1 24577.624586: cpu_idle: state=4294967295 cpu_id=1
138214          <idle>-0     (-----) [001] d..2 24577.624592: 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
138215   kworker/u17:2-23076 (23076) [001] d..2 24577.624600: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138216   kworker/u17:2-23076 (23076) [001] d..3 24577.624606: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138217   kworker/u17:2-23076 (23076) [001] d..2 24577.624622: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
138218     kworker/1:1-13091 (13091) [001] d..2 24577.624627: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
138219     kworker/1:1-13091 (13091) [001] d..3 24577.624636: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
138220          <idle>-0     (-----) [000] .n.1 24577.624641: cpu_idle: state=4294967295 cpu_id=0
138221          <idle>-0     (-----) [000] d..2 24577.624647: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
138222     kworker/1:1-13091 (13091) [001] d..2 24577.624655: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138223          <idle>-0     (-----) [001] d..1 24577.624675: cpu_idle: state=0 cpu_id=1
138224  kworker/u16:10-23868 (23868) [003] .... 24577.624679: clk_set_rate: l3_cluster0_vote_clk 1036800000
138225            adbd-23485 ( 1007) [000] d..2 24577.624693: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138226  kworker/u16:10-23868 (23868) [003] d..2 24577.624697: 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
138227          <idle>-0     (-----) [000] d..1 24577.624700: cpu_idle: state=0 cpu_id=0
138228          <idle>-0     (-----) [003] d..1 24577.624704: cpu_idle: state=0 cpu_id=3
138229          <idle>-0     (-----) [001] d.h3 24577.624735: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138230          <idle>-0     (-----) [001] dnh4 24577.624740: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138231          <idle>-0     (-----) [001] .n.1 24577.624745: cpu_idle: state=4294967295 cpu_id=1
138232          <idle>-0     (-----) [001] d..2 24577.624751: 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
138233   kworker/u17:2-23076 (23076) [001] d..2 24577.624758: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138234              ps-13422 (13422) [006] d..2 24577.624762: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138235   kworker/u17:2-23076 (23076) [001] d..3 24577.624763: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138236              ps-13422 (13422) [006] dn.3 24577.624766: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138237              ps-13422 (13422) [006] d..2 24577.624769: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138238 shell svc 13418-13419 ( 1007) [006] d..2 24577.624778: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138239   kworker/u17:2-23076 (23076) [001] d..2 24577.624779: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
138240              ps-13422 (13422) [006] d..2 24577.624783: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138241     kworker/1:1-13091 (13091) [001] d..2 24577.624785: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
138242              ps-13422 (13422) [006] dn.3 24577.624785: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138243              ps-13422 (13422) [006] d..2 24577.624787: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138244 shell svc 13418-13419 ( 1007) [006] d..2 24577.624794: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138245     kworker/1:1-13091 (13091) [001] d..3 24577.624796: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
138246              ps-13422 (13422) [006] d..2 24577.624800: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138247          <idle>-0     (-----) [000] .n.1 24577.624801: cpu_idle: state=4294967295 cpu_id=0
138248              ps-13422 (13422) [006] dn.3 24577.624802: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138249              ps-13422 (13422) [006] d..2 24577.624804: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138250          <idle>-0     (-----) [000] d..2 24577.624807: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
138251     kworker/1:1-13091 (13091) [001] d..2 24577.624810: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138252 shell svc 13418-13419 ( 1007) [006] d..2 24577.624811: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138253              ps-13422 (13422) [006] d..2 24577.624815: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138254              ps-13422 (13422) [006] dn.3 24577.624817: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138255          <idle>-0     (-----) [001] d..1 24577.624817: cpu_idle: state=0 cpu_id=1
138256              ps-13422 (13422) [006] d..2 24577.624819: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138257 shell svc 13418-13419 ( 1007) [006] d..2 24577.624825: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138258            adbd-23485 ( 1007) [000] d..2 24577.624827: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138259              ps-13422 (13422) [006] d..2 24577.624830: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138260              ps-13422 (13422) [006] dn.3 24577.624832: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138261          <idle>-0     (-----) [000] d..1 24577.624834: cpu_idle: state=0 cpu_id=0
138262              ps-13422 (13422) [006] d..2 24577.624834: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138263 shell svc 13418-13419 ( 1007) [006] d..2 24577.624840: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138264              ps-13422 (13422) [006] d..2 24577.624845: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138265              ps-13422 (13422) [006] dn.3 24577.624847: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138266              ps-13422 (13422) [006] d..2 24577.624850: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138267 shell svc 13418-13419 ( 1007) [006] d..2 24577.624855: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138268              ps-13422 (13422) [006] d..2 24577.624860: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138269              ps-13422 (13422) [006] dn.3 24577.624862: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138270              ps-13422 (13422) [006] d..2 24577.624864: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138271 shell svc 13418-13419 ( 1007) [006] d..2 24577.624871: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138272              ps-13422 (13422) [006] d..2 24577.624875: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138273              ps-13422 (13422) [006] dn.3 24577.624877: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138274              ps-13422 (13422) [006] d..2 24577.624879: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138275 shell svc 13418-13419 ( 1007) [006] d..2 24577.624885: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138276          <idle>-0     (-----) [001] d.h3 24577.624888: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138277              ps-13422 (13422) [006] d..2 24577.624889: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138278              ps-13422 (13422) [006] dn.3 24577.624892: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138279          <idle>-0     (-----) [001] dnh4 24577.624894: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138280              ps-13422 (13422) [006] d..2 24577.624894: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138281          <idle>-0     (-----) [001] .n.1 24577.624899: cpu_idle: state=4294967295 cpu_id=1
138282 shell svc 13418-13419 ( 1007) [006] d..2 24577.624899: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138283              ps-13422 (13422) [006] d..2 24577.624904: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138284          <idle>-0     (-----) [001] d..2 24577.624904: 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
138285              ps-13422 (13422) [006] dn.3 24577.624906: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138286              ps-13422 (13422) [006] d..2 24577.624908: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138287   kworker/u17:2-23076 (23076) [001] d..2 24577.624911: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138288 shell svc 13418-13419 ( 1007) [006] d..2 24577.624914: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138289   kworker/u17:2-23076 (23076) [001] d..3 24577.624916: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138290              ps-13422 (13422) [006] d..2 24577.624919: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138291              ps-13422 (13422) [006] dn.3 24577.624921: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138292              ps-13422 (13422) [006] d..2 24577.624923: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138293 shell svc 13418-13419 ( 1007) [006] d..2 24577.624928: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138294              ps-13422 (13422) [006] d..2 24577.624932: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138295   kworker/u17:2-23076 (23076) [001] d..2 24577.624933: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
138296              ps-13422 (13422) [006] dn.3 24577.624935: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138297              ps-13422 (13422) [006] d..2 24577.624937: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138298     kworker/1:1-13091 (13091) [001] d..2 24577.624939: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
138299 shell svc 13418-13419 ( 1007) [006] d..2 24577.624943: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138300              ps-13422 (13422) [006] d..2 24577.624947: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138301     kworker/1:1-13091 (13091) [001] d..3 24577.624947: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
138302              ps-13422 (13422) [006] dn.3 24577.624949: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138303              ps-13422 (13422) [006] d..2 24577.624951: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138304          <idle>-0     (-----) [003] .n.1 24577.624952: cpu_idle: state=4294967295 cpu_id=3
138305 shell svc 13418-13419 ( 1007) [006] d..2 24577.624957: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138306          <idle>-0     (-----) [003] d..2 24577.624959: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
138307     kworker/1:1-13091 (13091) [001] d..2 24577.624961: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138308          <idle>-0     (-----) [001] d..1 24577.624968: cpu_idle: state=0 cpu_id=1
138309            adbd-23484 ( 1007) [003] d..2 24577.624969: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
138310            adbd-23484 ( 1007) [003] d..3 24577.624981: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
138311              ps-13422 (13422) [006] d..2 24577.625000: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138312              ps-13422 (13422) [006] dn.3 24577.625003: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138313              ps-13422 (13422) [006] d..2 24577.625005: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138314 shell svc 13418-13419 ( 1007) [006] d..2 24577.625013: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138315            adbd-23484 ( 1007) [003] d..2 24577.625024: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
138316            adbd-1007  ( 1007) [003] d..1 24577.625101: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
138317            adbd-1007  ( 1007) [003] d..2 24577.625112: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
138318              ps-13422 (13422) [006] d..2 24577.625116: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138319          <idle>-0     (-----) [000] .n.1 24577.625117: cpu_idle: state=4294967295 cpu_id=0
138320              ps-13422 (13422) [006] dn.3 24577.625119: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138321              ps-13422 (13422) [006] d..2 24577.625121: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138322          <idle>-0     (-----) [000] d..2 24577.625123: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
138323 shell svc 13418-13419 ( 1007) [006] d..2 24577.625130: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138324              ps-13422 (13422) [006] d..2 24577.625134: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138325              ps-13422 (13422) [006] dn.3 24577.625137: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138326              ps-13422 (13422) [006] d..2 24577.625139: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138327 shell svc 13418-13419 ( 1007) [006] d..2 24577.625145: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138328            adbd-1007  ( 1007) [003] d..2 24577.625147: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
138329              ps-13422 (13422) [006] d..2 24577.625149: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138330              ps-13422 (13422) [006] dn.3 24577.625151: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138331              ps-13422 (13422) [006] d..2 24577.625153: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138332          <idle>-0     (-----) [003] d..1 24577.625155: cpu_idle: state=0 cpu_id=3
138333 shell svc 13418-13419 ( 1007) [006] d..2 24577.625159: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138334            adbd-23485 ( 1007) [000] d..2 24577.625169: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138335          <idle>-0     (-----) [001] d.h3 24577.625175: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138336          <idle>-0     (-----) [000] d..1 24577.625176: cpu_idle: state=0 cpu_id=0
138337          <idle>-0     (-----) [001] dnh4 24577.625181: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138338          <idle>-0     (-----) [001] .n.1 24577.625186: cpu_idle: state=4294967295 cpu_id=1
138339          <idle>-0     (-----) [001] d..2 24577.625191: 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
138340   kworker/u17:2-23076 (23076) [001] d..2 24577.625198: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138341              ps-13422 (13422) [006] d..2 24577.625198: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138342              ps-13422 (13422) [006] dn.3 24577.625201: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138343              ps-13422 (13422) [006] d..2 24577.625203: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138344   kworker/u17:2-23076 (23076) [001] d..3 24577.625204: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138345 shell svc 13418-13419 ( 1007) [006] d..2 24577.625211: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138346   kworker/u17:2-23076 (23076) [001] d..2 24577.625219: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
138347     kworker/1:1-13091 (13091) [001] d..2 24577.625224: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
138348     kworker/1:1-13091 (13091) [001] d..3 24577.625233: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
138349          <idle>-0     (-----) [000] .n.1 24577.625238: cpu_idle: state=4294967295 cpu_id=0
138350          <idle>-0     (-----) [000] d..2 24577.625244: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
138351     kworker/1:1-13091 (13091) [001] d..2 24577.625246: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138352              ps-13422 (13422) [006] d..2 24577.625249: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138353              ps-13422 (13422) [006] dn.3 24577.625252: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138354          <idle>-0     (-----) [001] d..1 24577.625253: cpu_idle: state=0 cpu_id=1
138355              ps-13422 (13422) [006] d..2 24577.625254: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138356 shell svc 13418-13419 ( 1007) [006] d..2 24577.625262: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138357            adbd-23485 ( 1007) [000] d..2 24577.625288: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138358          <idle>-0     (-----) [000] d..1 24577.625295: cpu_idle: state=0 cpu_id=0
138359          <idle>-0     (-----) [001] d.h3 24577.625312: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138360          <idle>-0     (-----) [001] dnh4 24577.625317: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138361          <idle>-0     (-----) [001] .n.1 24577.625322: cpu_idle: state=4294967295 cpu_id=1
138362          <idle>-0     (-----) [001] d..2 24577.625328: 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
138363   kworker/u17:2-23076 (23076) [001] d..2 24577.625334: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138364   kworker/u17:2-23076 (23076) [001] d..3 24577.625339: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138365   kworker/u17:2-23076 (23076) [001] d..2 24577.625354: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
138366     kworker/1:1-13091 (13091) [001] d..2 24577.625359: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
138367     kworker/1:1-13091 (13091) [001] d..3 24577.625368: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
138368          <idle>-0     (-----) [000] .n.1 24577.625373: cpu_idle: state=4294967295 cpu_id=0
138369          <idle>-0     (-----) [000] d..2 24577.625379: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
138370     kworker/1:1-13091 (13091) [001] d..2 24577.625381: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138371          <idle>-0     (-----) [001] d..1 24577.625387: cpu_idle: state=0 cpu_id=1
138372            adbd-23485 ( 1007) [000] d..2 24577.625395: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138373          <idle>-0     (-----) [000] d..1 24577.625401: cpu_idle: state=0 cpu_id=0
138374          <idle>-0     (-----) [001] d.h3 24577.625472: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138375          <idle>-0     (-----) [001] dnh4 24577.625477: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138376          <idle>-0     (-----) [001] .n.1 24577.625482: cpu_idle: state=4294967295 cpu_id=1
138377          <idle>-0     (-----) [001] d..2 24577.625488: 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
138378   kworker/u17:2-23076 (23076) [001] d..2 24577.625494: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138379   kworker/u17:2-23076 (23076) [001] d..3 24577.625499: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138380   kworker/u17:2-23076 (23076) [001] d..2 24577.625515: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
138381     kworker/1:1-13091 (13091) [001] d..2 24577.625520: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
138382     kworker/1:1-13091 (13091) [001] d..3 24577.625543: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
138383          <idle>-0     (-----) [000] .n.1 24577.625548: cpu_idle: state=4294967295 cpu_id=0
138384          <idle>-0     (-----) [000] d..2 24577.625554: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
138385     kworker/1:1-13091 (13091) [001] d..2 24577.625557: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138386          <idle>-0     (-----) [001] d..1 24577.625564: cpu_idle: state=0 cpu_id=1
138387            adbd-23484 ( 1007) [000] d..2 24577.625565: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
138388            adbd-23484 ( 1007) [000] d..3 24577.625576: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
138389            adbd-23484 ( 1007) [000] d..2 24577.625619: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
138390            adbd-1007  ( 1007) [000] d..1 24577.625689: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
138391            adbd-1007  ( 1007) [000] d..2 24577.625708: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
138392          <idle>-0     (-----) [001] .n.1 24577.625713: cpu_idle: state=4294967295 cpu_id=1
138393          <idle>-0     (-----) [001] d..2 24577.625719: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
138394            adbd-1007  ( 1007) [000] d..2 24577.625741: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138395          <idle>-0     (-----) [000] d..1 24577.625750: cpu_idle: state=0 cpu_id=0
138396            adbd-23485 ( 1007) [001] d..2 24577.625767: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138397          <idle>-0     (-----) [001] d.h4 24577.625784: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138398          <idle>-0     (-----) [001] dnh5 24577.625790: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138399          <idle>-0     (-----) [001] d..2 24577.625797: 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
138400   kworker/u17:2-23076 (23076) [001] d..2 24577.625805: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138401   kworker/u17:2-23076 (23076) [001] d..3 24577.625809: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138402   kworker/u17:2-23076 (23076) [001] d..2 24577.625825: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
138403     kworker/1:1-13091 (13091) [001] d..2 24577.625829: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
138404     kworker/1:1-13091 (13091) [001] d..3 24577.625845: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
138405          <idle>-0     (-----) [000] .n.1 24577.625850: cpu_idle: state=4294967295 cpu_id=0
138406          <idle>-0     (-----) [000] d..2 24577.625857: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
138407     kworker/1:1-13091 (13091) [001] d..2 24577.625858: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138408          <idle>-0     (-----) [001] d..1 24577.625866: cpu_idle: state=0 cpu_id=1
138409            adbd-23485 ( 1007) [000] d..2 24577.625907: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138410          <idle>-0     (-----) [000] d..1 24577.625914: cpu_idle: state=0 cpu_id=0
138411          <idle>-0     (-----) [001] d.h3 24577.625927: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138412          <idle>-0     (-----) [001] dnh4 24577.625935: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138413          <idle>-0     (-----) [001] .n.1 24577.625940: cpu_idle: state=4294967295 cpu_id=1
138414          <idle>-0     (-----) [001] d..2 24577.625946: 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
138415   kworker/u17:2-23076 (23076) [001] d..2 24577.625953: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138416   kworker/u17:2-23076 (23076) [001] d..3 24577.625958: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138417   kworker/u17:2-23076 (23076) [001] d..2 24577.625973: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
138418     kworker/1:1-13091 (13091) [001] d..2 24577.625979: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
138419     kworker/1:1-13091 (13091) [001] d..3 24577.625987: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
138420          <idle>-0     (-----) [000] .n.1 24577.625992: cpu_idle: state=4294967295 cpu_id=0
138421          <idle>-0     (-----) [000] d..2 24577.625999: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
138422     kworker/1:1-13091 (13091) [001] d..2 24577.626000: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138423          <idle>-0     (-----) [001] d..1 24577.626007: cpu_idle: state=0 cpu_id=1
138424            adbd-23485 ( 1007) [000] d..2 24577.626016: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138425          <idle>-0     (-----) [000] d..1 24577.626022: cpu_idle: state=0 cpu_id=0
138426          <idle>-0     (-----) [001] d.h3 24577.626083: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138427          <idle>-0     (-----) [001] dnh4 24577.626089: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138428          <idle>-0     (-----) [001] .n.1 24577.626093: cpu_idle: state=4294967295 cpu_id=1
138429          <idle>-0     (-----) [001] d..2 24577.626099: 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
138430   kworker/u17:2-23076 (23076) [001] d..2 24577.626106: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138431   kworker/u17:2-23076 (23076) [001] d..3 24577.626110: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138432   kworker/u17:2-23076 (23076) [001] d..2 24577.626126: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
138433     kworker/1:1-13091 (13091) [001] d..2 24577.626132: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
138434     kworker/1:1-13091 (13091) [001] d..3 24577.626140: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
138435          <idle>-0     (-----) [000] .n.1 24577.626145: cpu_idle: state=4294967295 cpu_id=0
138436          <idle>-0     (-----) [000] d..2 24577.626151: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
138437     kworker/1:1-13091 (13091) [001] d..2 24577.626153: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138438          <idle>-0     (-----) [001] d..1 24577.626160: cpu_idle: state=0 cpu_id=1
138439            adbd-23484 ( 1007) [000] d..2 24577.626161: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
138440            adbd-23484 ( 1007) [000] d..3 24577.626167: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
138441            adbd-23484 ( 1007) [000] d..2 24577.626210: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
138442            adbd-1007  ( 1007) [000] d..2 24577.626268: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138443          <idle>-0     (-----) [000] d..1 24577.626277: cpu_idle: state=0 cpu_id=0
138444              ps-13422 (13422) [006] d..2 24577.626472: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138445              ps-13422 (13422) [006] dn.3 24577.626476: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138446              ps-13422 (13422) [006] d..2 24577.626479: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138447 shell svc 13418-13419 ( 1007) [006] d..2 24577.626485: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
138448 shell svc 13418-13419 ( 1007) [006] d..2 24577.626495: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138449              ps-13422 (13422) [006] d..2 24577.626500: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138450          <idle>-0     (-----) [000] dnh2 24577.626501: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
138451              ps-13422 (13422) [006] dn.3 24577.626502: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138452              ps-13422 (13422) [006] d..2 24577.626504: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138453          <idle>-0     (-----) [000] .n.1 24577.626505: cpu_idle: state=4294967295 cpu_id=0
138454          <idle>-0     (-----) [000] d..2 24577.626511: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
138455 shell svc 13418-13419 ( 1007) [006] d..2 24577.626511: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138456              ps-13422 (13422) [006] d..2 24577.626515: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138457              ps-13422 (13422) [006] dn.3 24577.626518: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138458              ps-13422 (13422) [006] d..2 24577.626519: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138459 shell svc 13418-13419 ( 1007) [006] d..2 24577.626525: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138460              ps-13422 (13422) [006] d..2 24577.626529: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138461              ps-13422 (13422) [006] dn.3 24577.626532: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138462              ps-13422 (13422) [006] d..2 24577.626534: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138463 shell svc 13418-13419 ( 1007) [006] d..2 24577.626540: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138464              ps-13422 (13422) [006] d..2 24577.626544: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138465            adbd-1007  ( 1007) [000] d..1 24577.626544: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
138466              ps-13422 (13422) [006] dn.3 24577.626546: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138467              ps-13422 (13422) [006] d..2 24577.626548: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138468 shell svc 13418-13419 ( 1007) [006] d..2 24577.626554: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138469              ps-13422 (13422) [006] d..2 24577.626558: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138470              ps-13422 (13422) [006] dn.3 24577.626560: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138471            adbd-1007  ( 1007) [000] d..2 24577.626562: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
138472              ps-13422 (13422) [006] d..2 24577.626562: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138473          <idle>-0     (-----) [001] .n.1 24577.626567: cpu_idle: state=4294967295 cpu_id=1
138474 shell svc 13418-13419 ( 1007) [006] d..2 24577.626569: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138475              ps-13422 (13422) [006] d..2 24577.626572: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138476          <idle>-0     (-----) [001] d..2 24577.626573: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
138477              ps-13422 (13422) [006] dn.3 24577.626574: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138478              ps-13422 (13422) [006] d..2 24577.626576: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138479 shell svc 13418-13419 ( 1007) [006] d..2 24577.626582: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138480              ps-13422 (13422) [006] d..2 24577.626586: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138481              ps-13422 (13422) [006] dn.3 24577.626588: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138482              ps-13422 (13422) [006] d..2 24577.626590: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138483            adbd-1007  ( 1007) [000] d..2 24577.626595: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138484 shell svc 13418-13419 ( 1007) [006] d..2 24577.626595: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138485              ps-13422 (13422) [006] d..2 24577.626599: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138486              ps-13422 (13422) [006] dn.3 24577.626601: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138487          <idle>-0     (-----) [000] d..1 24577.626603: cpu_idle: state=0 cpu_id=0
138488              ps-13422 (13422) [006] d..2 24577.626603: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138489 shell svc 13418-13419 ( 1007) [006] d..2 24577.626609: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138490              ps-13422 (13422) [006] d..2 24577.626613: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138491              ps-13422 (13422) [006] dn.3 24577.626615: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138492              ps-13422 (13422) [006] d..2 24577.626617: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138493            adbd-23485 ( 1007) [001] d..2 24577.626620: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138494 shell svc 13418-13419 ( 1007) [006] d..2 24577.626623: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138495              ps-13422 (13422) [006] d..2 24577.626626: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138496              ps-13422 (13422) [006] dn.3 24577.626628: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138497              ps-13422 (13422) [006] d..2 24577.626630: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138498 shell svc 13418-13419 ( 1007) [006] d..2 24577.626636: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138499          <idle>-0     (-----) [001] d.h4 24577.626636: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138500              ps-13422 (13422) [006] d..2 24577.626640: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138501              ps-13422 (13422) [006] dn.3 24577.626642: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138502          <idle>-0     (-----) [001] dnh5 24577.626642: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138503              ps-13422 (13422) [006] d..2 24577.626644: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138504          <idle>-0     (-----) [001] d..2 24577.626650: 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
138505 shell svc 13418-13419 ( 1007) [006] d..2 24577.626650: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138506              ps-13422 (13422) [006] d..2 24577.626654: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138507              ps-13422 (13422) [006] dn.3 24577.626656: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138508   kworker/u17:2-23076 (23076) [001] d..2 24577.626656: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138509              ps-13422 (13422) [006] d..2 24577.626657: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138510   kworker/u17:2-23076 (23076) [001] d..3 24577.626661: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138511 shell svc 13418-13419 ( 1007) [006] d..2 24577.626663: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138512              ps-13422 (13422) [006] d..2 24577.626667: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138513              ps-13422 (13422) [006] dn.3 24577.626669: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138514              ps-13422 (13422) [006] d..2 24577.626671: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138515   kworker/u17:2-23076 (23076) [001] d..2 24577.626677: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
138516 shell svc 13418-13419 ( 1007) [006] d..2 24577.626677: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138517              ps-13422 (13422) [006] d..2 24577.626681: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138518     kworker/1:1-13091 (13091) [001] d..2 24577.626681: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
138519              ps-13422 (13422) [006] dn.3 24577.626683: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138520              ps-13422 (13422) [006] d..2 24577.626685: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138521 shell svc 13418-13419 ( 1007) [006] d..2 24577.626691: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138522              ps-13422 (13422) [006] d..2 24577.626695: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138523     kworker/1:1-13091 (13091) [001] d..3 24577.626697: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
138524              ps-13422 (13422) [006] dn.3 24577.626697: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138525              ps-13422 (13422) [006] d..2 24577.626699: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138526          <idle>-0     (-----) [000] .n.1 24577.626702: cpu_idle: state=4294967295 cpu_id=0
138527 shell svc 13418-13419 ( 1007) [006] d..2 24577.626705: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138528          <idle>-0     (-----) [000] d..2 24577.626708: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
138529              ps-13422 (13422) [006] d..2 24577.626709: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138530     kworker/1:1-13091 (13091) [001] d..2 24577.626711: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138531              ps-13422 (13422) [006] dn.3 24577.626711: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138532              ps-13422 (13422) [006] d..2 24577.626713: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138533          <idle>-0     (-----) [001] d..1 24577.626718: cpu_idle: state=0 cpu_id=1
138534 shell svc 13418-13419 ( 1007) [006] d..2 24577.626719: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138535              ps-13422 (13422) [006] d..2 24577.626722: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138536              ps-13422 (13422) [006] dn.3 24577.626725: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138537              ps-13422 (13422) [006] d..2 24577.626727: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138538 shell svc 13418-13419 ( 1007) [006] d..2 24577.626732: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138539              ps-13422 (13422) [006] d..2 24577.626736: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138540              ps-13422 (13422) [006] dn.3 24577.626738: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138541              ps-13422 (13422) [006] d..2 24577.626739: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138542 shell svc 13418-13419 ( 1007) [006] d..2 24577.626745: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138543              ps-13422 (13422) [006] d..2 24577.626749: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138544              ps-13422 (13422) [006] dn.3 24577.626751: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138545              ps-13422 (13422) [006] d..2 24577.626753: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138546            adbd-23485 ( 1007) [000] d..2 24577.626758: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138547 shell svc 13418-13419 ( 1007) [006] d..2 24577.626759: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138548              ps-13422 (13422) [006] d..2 24577.626762: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138549              ps-13422 (13422) [006] dn.3 24577.626764: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138550          <idle>-0     (-----) [000] d..1 24577.626765: cpu_idle: state=0 cpu_id=0
138551              ps-13422 (13422) [006] d..2 24577.626767: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138552 shell svc 13418-13419 ( 1007) [006] d..2 24577.626772: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138553              ps-13422 (13422) [006] d..2 24577.626776: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138554              ps-13422 (13422) [006] dn.3 24577.626778: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138555              ps-13422 (13422) [006] d..2 24577.626780: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138556          <idle>-0     (-----) [001] d.h3 24577.626780: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138557 shell svc 13418-13419 ( 1007) [006] d..2 24577.626785: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138558          <idle>-0     (-----) [001] dnh4 24577.626786: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138559              ps-13422 (13422) [006] d..2 24577.626789: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138560          <idle>-0     (-----) [001] .n.1 24577.626790: cpu_idle: state=4294967295 cpu_id=1
138561              ps-13422 (13422) [006] dn.3 24577.626791: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138562              ps-13422 (13422) [006] d..2 24577.626793: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138563          <idle>-0     (-----) [001] d..2 24577.626796: 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
138564 shell svc 13418-13419 ( 1007) [006] d..2 24577.626799: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138565              ps-13422 (13422) [006] d..2 24577.626802: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138566   kworker/u17:2-23076 (23076) [001] d..2 24577.626803: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138567              ps-13422 (13422) [006] dn.3 24577.626804: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138568              ps-13422 (13422) [006] d..2 24577.626806: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138569   kworker/u17:2-23076 (23076) [001] d..3 24577.626808: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138570 shell svc 13418-13419 ( 1007) [006] d..2 24577.626813: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138571              ps-13422 (13422) [006] d..2 24577.626817: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138572              ps-13422 (13422) [006] dn.3 24577.626819: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138573              ps-13422 (13422) [006] d..2 24577.626821: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138574   kworker/u17:2-23076 (23076) [001] d..2 24577.626823: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
138575 shell svc 13418-13419 ( 1007) [006] d..2 24577.626827: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138576     kworker/1:1-13091 (13091) [001] d..2 24577.626828: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
138577              ps-13422 (13422) [006] d..2 24577.626830: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138578              ps-13422 (13422) [006] dn.3 24577.626832: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138579              ps-13422 (13422) [006] d..2 24577.626834: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138580     kworker/1:1-13091 (13091) [001] d..3 24577.626840: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
138581 shell svc 13418-13419 ( 1007) [006] d..2 24577.626840: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138582              ps-13422 (13422) [006] d..2 24577.626844: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138583          <idle>-0     (-----) [000] .n.1 24577.626845: cpu_idle: state=4294967295 cpu_id=0
138584              ps-13422 (13422) [006] dn.3 24577.626846: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138585              ps-13422 (13422) [006] d..2 24577.626848: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138586          <idle>-0     (-----) [000] d..2 24577.626851: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
138587     kworker/1:1-13091 (13091) [001] d..2 24577.626853: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138588 shell svc 13418-13419 ( 1007) [006] d..2 24577.626854: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138589              ps-13422 (13422) [006] d..2 24577.626857: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138590              ps-13422 (13422) [006] dn.3 24577.626859: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138591          <idle>-0     (-----) [001] d..1 24577.626860: cpu_idle: state=0 cpu_id=1
138592              ps-13422 (13422) [006] d..2 24577.626861: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138593 shell svc 13418-13419 ( 1007) [006] d..2 24577.626867: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138594            adbd-23485 ( 1007) [000] d..2 24577.626867: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138595              ps-13422 (13422) [006] d..2 24577.626871: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138596              ps-13422 (13422) [006] dn.3 24577.626873: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138597          <idle>-0     (-----) [000] d..1 24577.626874: cpu_idle: state=0 cpu_id=0
138598              ps-13422 (13422) [006] d..2 24577.626875: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138599 shell svc 13418-13419 ( 1007) [006] d..2 24577.626881: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138600              ps-13422 (13422) [006] d..2 24577.626885: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138601              ps-13422 (13422) [006] dn.3 24577.626887: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138602              ps-13422 (13422) [006] d..2 24577.626889: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138603 shell svc 13418-13419 ( 1007) [006] d..2 24577.626895: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138604              ps-13422 (13422) [006] d..2 24577.626898: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138605              ps-13422 (13422) [006] dn.3 24577.626900: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138606              ps-13422 (13422) [006] d..2 24577.626902: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138607 shell svc 13418-13419 ( 1007) [006] d..2 24577.626908: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138608              ps-13422 (13422) [006] d..2 24577.626912: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138609              ps-13422 (13422) [006] dn.3 24577.626914: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138610              ps-13422 (13422) [006] d..2 24577.626916: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138611 shell svc 13418-13419 ( 1007) [006] d..2 24577.626922: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138612              ps-13422 (13422) [006] d..2 24577.626926: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138613              ps-13422 (13422) [006] dn.3 24577.626928: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138614              ps-13422 (13422) [006] d..2 24577.626930: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138615 shell svc 13418-13419 ( 1007) [006] d..2 24577.626935: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138616          <idle>-0     (-----) [001] d.h3 24577.626936: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138617              ps-13422 (13422) [006] d..2 24577.626939: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138618              ps-13422 (13422) [006] dn.3 24577.626941: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138619          <idle>-0     (-----) [001] dnh4 24577.626941: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138620              ps-13422 (13422) [006] d..2 24577.626943: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138621          <idle>-0     (-----) [001] .n.1 24577.626946: cpu_idle: state=4294967295 cpu_id=1
138622 shell svc 13418-13419 ( 1007) [006] d..2 24577.626949: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138623          <idle>-0     (-----) [001] d..2 24577.626952: 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
138624              ps-13422 (13422) [006] d..2 24577.626953: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138625              ps-13422 (13422) [006] dn.3 24577.626955: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138626              ps-13422 (13422) [006] d..2 24577.626957: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138627   kworker/u17:2-23076 (23076) [001] d..2 24577.626958: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138628 shell svc 13418-13419 ( 1007) [006] d..2 24577.626962: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138629   kworker/u17:2-23076 (23076) [001] d..3 24577.626963: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138630              ps-13422 (13422) [006] d..2 24577.626966: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138631              ps-13422 (13422) [006] dn.3 24577.626968: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138632              ps-13422 (13422) [006] d..2 24577.626970: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138633 shell svc 13418-13419 ( 1007) [006] d..2 24577.626976: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138634   kworker/u17:2-23076 (23076) [001] d..2 24577.626979: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
138635              ps-13422 (13422) [006] d..2 24577.626979: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138636              ps-13422 (13422) [006] dn.3 24577.626981: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138637              ps-13422 (13422) [006] d..2 24577.626984: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138638     kworker/1:1-13091 (13091) [001] d..2 24577.626984: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
138639 shell svc 13418-13419 ( 1007) [006] d..2 24577.626989: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138640              ps-13422 (13422) [006] d..2 24577.626993: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138641     kworker/1:1-13091 (13091) [001] d..3 24577.626993: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
138642              ps-13422 (13422) [006] dn.3 24577.626995: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138643              ps-13422 (13422) [006] d..2 24577.626997: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138644          <idle>-0     (-----) [000] .n.1 24577.626998: cpu_idle: state=4294967295 cpu_id=0
138645 shell svc 13418-13419 ( 1007) [006] d..2 24577.627003: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138646          <idle>-0     (-----) [000] d..2 24577.627004: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
138647              ps-13422 (13422) [006] d..2 24577.627006: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138648     kworker/1:1-13091 (13091) [001] d..2 24577.627006: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138649              ps-13422 (13422) [006] dn.3 24577.627008: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138650              ps-13422 (13422) [006] d..2 24577.627010: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138651          <idle>-0     (-----) [001] d..1 24577.627013: cpu_idle: state=0 cpu_id=1
138652            adbd-23484 ( 1007) [000] d..2 24577.627014: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
138653 shell svc 13418-13419 ( 1007) [006] d..2 24577.627016: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138654              ps-13422 (13422) [006] d..2 24577.627019: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138655            adbd-23484 ( 1007) [000] d..3 24577.627021: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
138656              ps-13422 (13422) [006] dn.3 24577.627022: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138657              ps-13422 (13422) [006] d..2 24577.627024: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138658 shell svc 13418-13419 ( 1007) [006] d..2 24577.627029: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138659              ps-13422 (13422) [006] d..2 24577.627033: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138660              ps-13422 (13422) [006] dn.3 24577.627035: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138661              ps-13422 (13422) [006] d..2 24577.627038: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138662 shell svc 13418-13419 ( 1007) [006] d..2 24577.627043: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138663              ps-13422 (13422) [006] d..2 24577.627047: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138664              ps-13422 (13422) [006] dn.3 24577.627049: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138665              ps-13422 (13422) [006] d..2 24577.627051: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138666 shell svc 13418-13419 ( 1007) [006] d..2 24577.627057: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138667              ps-13422 (13422) [006] d..2 24577.627061: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138668            adbd-23484 ( 1007) [000] d..2 24577.627063: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
138669              ps-13422 (13422) [006] dn.3 24577.627063: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138670              ps-13422 (13422) [006] d..2 24577.627065: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138671 shell svc 13418-13419 ( 1007) [006] d..2 24577.627070: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138672              ps-13422 (13422) [006] d..2 24577.627074: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138673              ps-13422 (13422) [006] dn.3 24577.627076: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138674              ps-13422 (13422) [006] d..2 24577.627078: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138675 shell svc 13418-13419 ( 1007) [006] d..2 24577.627084: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138676              ps-13422 (13422) [006] d..2 24577.627088: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138677              ps-13422 (13422) [006] dn.3 24577.627090: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138678              ps-13422 (13422) [006] d..2 24577.627092: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138679 shell svc 13418-13419 ( 1007) [006] d..2 24577.627098: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138680              ps-13422 (13422) [006] d..2 24577.627101: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138681              ps-13422 (13422) [006] dn.3 24577.627103: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138682              ps-13422 (13422) [006] d..2 24577.627105: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138683 shell svc 13418-13419 ( 1007) [006] d..2 24577.627111: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138684              ps-13422 (13422) [006] d..2 24577.627114: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138685              ps-13422 (13422) [006] dn.3 24577.627116: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138686              ps-13422 (13422) [006] d..2 24577.627118: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138687 shell svc 13418-13419 ( 1007) [006] d..2 24577.627124: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138688              ps-13422 (13422) [006] d..2 24577.627128: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138689              ps-13422 (13422) [006] dn.3 24577.627130: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138690              ps-13422 (13422) [006] d..2 24577.627132: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138691 shell svc 13418-13419 ( 1007) [006] d..2 24577.627138: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138692              ps-13422 (13422) [006] d..2 24577.627142: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138693              ps-13422 (13422) [006] dn.3 24577.627144: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138694              ps-13422 (13422) [006] d..2 24577.627146: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138695 shell svc 13418-13419 ( 1007) [006] d..2 24577.627152: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138696              ps-13422 (13422) [006] d..2 24577.627156: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138697              ps-13422 (13422) [006] dn.3 24577.627158: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138698              ps-13422 (13422) [006] d..2 24577.627160: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138699 shell svc 13418-13419 ( 1007) [006] d..2 24577.627166: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138700            adbd-1007  ( 1007) [000] d..1 24577.627169: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
138701              ps-13422 (13422) [006] d..2 24577.627169: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138702              ps-13422 (13422) [006] dn.3 24577.627171: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138703              ps-13422 (13422) [006] d..2 24577.627173: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138704 shell svc 13418-13419 ( 1007) [006] d..2 24577.627179: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138705              ps-13422 (13422) [006] d..2 24577.627182: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138706              ps-13422 (13422) [006] dn.3 24577.627184: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138707              ps-13422 (13422) [006] d..2 24577.627186: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138708            adbd-1007  ( 1007) [000] d..2 24577.627188: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
138709 shell svc 13418-13419 ( 1007) [006] d..2 24577.627192: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138710          <idle>-0     (-----) [001] .n.1 24577.627193: cpu_idle: state=4294967295 cpu_id=1
138711              ps-13422 (13422) [006] d..2 24577.627196: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138712              ps-13422 (13422) [006] dn.3 24577.627198: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138713          <idle>-0     (-----) [001] d..2 24577.627199: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
138714              ps-13422 (13422) [006] d..2 24577.627200: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138715 shell svc 13418-13419 ( 1007) [006] d..2 24577.627206: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138716              ps-13422 (13422) [006] d..2 24577.627209: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138717              ps-13422 (13422) [006] dn.3 24577.627211: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138718              ps-13422 (13422) [006] d..2 24577.627213: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138719 shell svc 13418-13419 ( 1007) [006] d..2 24577.627219: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138720            adbd-1007  ( 1007) [000] d..2 24577.627222: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138721              ps-13422 (13422) [006] d..2 24577.627222: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138722              ps-13422 (13422) [006] dn.3 24577.627225: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138723              ps-13422 (13422) [006] d..2 24577.627227: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138724          <idle>-0     (-----) [000] d..1 24577.627231: cpu_idle: state=0 cpu_id=0
138725 shell svc 13418-13419 ( 1007) [006] d..2 24577.627232: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138726              ps-13422 (13422) [006] d..2 24577.627236: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138727              ps-13422 (13422) [006] dn.3 24577.627238: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138728              ps-13422 (13422) [006] d..2 24577.627240: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138729            adbd-23485 ( 1007) [001] d..2 24577.627245: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138730 shell svc 13418-13419 ( 1007) [006] d..2 24577.627246: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138731          <idle>-0     (-----) [001] d.h4 24577.627262: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138732          <idle>-0     (-----) [001] dnh5 24577.627267: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138733          <idle>-0     (-----) [001] d..2 24577.627275: 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
138734   kworker/u17:2-23076 (23076) [001] d..2 24577.627281: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138735   kworker/u17:2-23076 (23076) [001] d..3 24577.627286: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138736              ps-13422 (13422) [006] d..2 24577.627287: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138737              ps-13422 (13422) [006] dn.3 24577.627290: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138738              ps-13422 (13422) [006] d..2 24577.627293: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138739 shell svc 13418-13419 ( 1007) [006] d..2 24577.627300: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138740   kworker/u17:2-23076 (23076) [001] d..2 24577.627302: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
138741     kworker/1:1-13091 (13091) [001] d..2 24577.627306: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
138742     kworker/1:1-13091 (13091) [001] d..3 24577.627321: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
138743          <idle>-0     (-----) [000] .n.1 24577.627327: cpu_idle: state=4294967295 cpu_id=0
138744          <idle>-0     (-----) [000] d..2 24577.627334: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
138745     kworker/1:1-13091 (13091) [001] d..2 24577.627335: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138746              ps-13422 (13422) [006] d..2 24577.627338: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138747              ps-13422 (13422) [006] dn.3 24577.627341: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138748          <idle>-0     (-----) [001] d..1 24577.627342: cpu_idle: state=0 cpu_id=1
138749              ps-13422 (13422) [006] d..2 24577.627343: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138750 shell svc 13418-13419 ( 1007) [006] d..2 24577.627350: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138751            adbd-23485 ( 1007) [000] d..2 24577.627385: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138752          <idle>-0     (-----) [000] d..1 24577.627392: cpu_idle: state=0 cpu_id=0
138753          <idle>-0     (-----) [001] d.h3 24577.627443: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138754          <idle>-0     (-----) [001] dnh4 24577.627448: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138755          <idle>-0     (-----) [001] .n.1 24577.627454: cpu_idle: state=4294967295 cpu_id=1
138756          <idle>-0     (-----) [001] d..2 24577.627459: 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
138757   kworker/u17:2-23076 (23076) [001] d..2 24577.627466: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138758   kworker/u17:2-23076 (23076) [001] d..3 24577.627471: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138759   kworker/u17:2-23076 (23076) [001] d..2 24577.627487: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
138760     kworker/1:1-13091 (13091) [001] d..2 24577.627492: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
138761     kworker/1:1-13091 (13091) [001] d..3 24577.627500: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
138762          <idle>-0     (-----) [000] .n.1 24577.627505: cpu_idle: state=4294967295 cpu_id=0
138763          <idle>-0     (-----) [000] d..2 24577.627512: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
138764     kworker/1:1-13091 (13091) [001] d..2 24577.627515: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138765          <idle>-0     (-----) [001] d..1 24577.627522: cpu_idle: state=0 cpu_id=1
138766            adbd-23485 ( 1007) [000] d..2 24577.627529: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138767          <idle>-0     (-----) [000] d..1 24577.627536: cpu_idle: state=0 cpu_id=0
138768              ps-13422 (13422) [006] d.s2 24577.627557: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=000
138769          <idle>-0     (-----) [000] dnh2 24577.627574: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=000
138770          <idle>-0     (-----) [000] .n.1 24577.627578: cpu_idle: state=4294967295 cpu_id=0
138771          <idle>-0     (-----) [000] d..2 24577.627585: 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
138772              ps-13422 (13422) [006] d..2 24577.627593: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138773          <idle>-0     (-----) [001] d.h3 24577.627596: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138774              ps-13422 (13422) [006] dn.3 24577.627597: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138775              ps-13422 (13422) [006] d..2 24577.627599: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138776         rcuop/6-61    (   61) [000] d..2 24577.627601: 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
138777          <idle>-0     (-----) [001] dnh4 24577.627602: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138778          <idle>-0     (-----) [001] .n.1 24577.627607: cpu_idle: state=4294967295 cpu_id=1
138779          <idle>-0     (-----) [000] d..1 24577.627607: cpu_idle: state=0 cpu_id=0
138780 shell svc 13418-13419 ( 1007) [006] d..2 24577.627608: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138781              ps-13422 (13422) [006] d..2 24577.627613: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138782          <idle>-0     (-----) [001] d..2 24577.627613: 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
138783              ps-13422 (13422) [006] dn.3 24577.627615: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138784              ps-13422 (13422) [006] d..2 24577.627617: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138785   kworker/u17:2-23076 (23076) [001] d..2 24577.627619: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138786   kworker/u17:2-23076 (23076) [001] d..3 24577.627624: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138787 shell svc 13418-13419 ( 1007) [006] d..2 24577.627624: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138788              ps-13422 (13422) [006] d..2 24577.627628: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138789              ps-13422 (13422) [006] dn.3 24577.627631: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138790              ps-13422 (13422) [006] d..2 24577.627633: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138791 shell svc 13418-13419 ( 1007) [006] d..2 24577.627639: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138792   kworker/u17:2-23076 (23076) [001] d..2 24577.627640: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
138793              ps-13422 (13422) [006] d..2 24577.627643: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138794              ps-13422 (13422) [006] dn.3 24577.627645: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138795     kworker/1:1-13091 (13091) [001] d..2 24577.627646: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
138796              ps-13422 (13422) [006] d..2 24577.627647: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138797 shell svc 13418-13419 ( 1007) [006] d..2 24577.627653: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138798              ps-13422 (13422) [006] d..2 24577.627657: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138799              ps-13422 (13422) [006] dn.3 24577.627659: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138800              ps-13422 (13422) [006] d..2 24577.627661: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138801     kworker/1:1-13091 (13091) [001] d..3 24577.627666: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
138802 shell svc 13418-13419 ( 1007) [006] d..2 24577.627667: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138803              ps-13422 (13422) [006] d..2 24577.627670: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138804              ps-13422 (13422) [006] dn.3 24577.627673: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138805              ps-13422 (13422) [006] d..2 24577.627675: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138806     kworker/1:1-13091 (13091) [001] d..2 24577.627675: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
138807 shell svc 13418-13419 ( 1007) [006] d..2 24577.627681: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138808              ps-13422 (13422) [006] d..2 24577.627684: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138809            adbd-23484 ( 1007) [001] d..2 24577.627686: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
138810              ps-13422 (13422) [006] dn.3 24577.627687: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138811              ps-13422 (13422) [006] d..2 24577.627689: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138812 shell svc 13418-13419 ( 1007) [006] d..2 24577.627694: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138813            adbd-23484 ( 1007) [001] d..3 24577.627695: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
138814              ps-13422 (13422) [006] d..2 24577.627698: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138815              ps-13422 (13422) [006] dn.3 24577.627700: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138816              ps-13422 (13422) [006] d..2 24577.627702: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138817 shell svc 13418-13419 ( 1007) [006] d..2 24577.627708: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138818            adbd-23484 ( 1007) [001] d..2 24577.627737: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
138819              ps-13422 (13422) [006] d..2 24577.627750: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138820              ps-13422 (13422) [006] dn.3 24577.627753: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138821              ps-13422 (13422) [006] d..2 24577.627756: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138822 shell svc 13418-13419 ( 1007) [006] d..2 24577.627763: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138823            adbd-1007  ( 1007) [001] d..1 24577.627812: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
138824            adbd-1007  ( 1007) [001] d..2 24577.627822: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
138825          <idle>-0     (-----) [000] .n.1 24577.627827: cpu_idle: state=4294967295 cpu_id=0
138826          <idle>-0     (-----) [000] d..2 24577.627832: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
138827            adbd-1007  ( 1007) [001] d..2 24577.627857: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138828              ps-13422 (13422) [006] d..2 24577.627857: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138829              ps-13422 (13422) [006] dn.3 24577.627860: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138830              ps-13422 (13422) [006] d..2 24577.627863: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138831          <idle>-0     (-----) [001] d..1 24577.627865: cpu_idle: state=0 cpu_id=1
138832 shell svc 13418-13419 ( 1007) [006] d..2 24577.627871: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138833              ps-13422 (13422) [006] d..2 24577.627876: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138834              ps-13422 (13422) [006] dn.3 24577.627878: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138835            adbd-23485 ( 1007) [000] d..2 24577.627879: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138836              ps-13422 (13422) [006] d..2 24577.627880: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138837          <idle>-0     (-----) [001] d.h3 24577.627884: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138838          <idle>-0     (-----) [000] d..1 24577.627886: cpu_idle: state=0 cpu_id=0
138839 shell svc 13418-13419 ( 1007) [006] d..2 24577.627887: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138840              ps-13422 (13422) [006] d..2 24577.627890: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138841          <idle>-0     (-----) [001] dnh4 24577.627891: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138842              ps-13422 (13422) [006] dn.3 24577.627893: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138843              ps-13422 (13422) [006] d..2 24577.627895: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138844          <idle>-0     (-----) [001] .n.1 24577.627896: cpu_idle: state=4294967295 cpu_id=1
138845 shell svc 13418-13419 ( 1007) [006] d..2 24577.627901: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138846          <idle>-0     (-----) [001] d..2 24577.627903: 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
138847   kworker/u17:2-23076 (23076) [001] d..2 24577.627910: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138848   kworker/u17:2-23076 (23076) [001] d..3 24577.627916: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138849   kworker/u17:2-23076 (23076) [001] d..2 24577.627932: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
138850     kworker/1:1-13091 (13091) [001] d..2 24577.627937: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
138851              ps-13422 (13422) [006] d..2 24577.627941: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138852              ps-13422 (13422) [006] dn.3 24577.627944: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138853     kworker/1:1-13091 (13091) [001] d..3 24577.627946: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
138854              ps-13422 (13422) [006] d..2 24577.627946: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138855          <idle>-0     (-----) [000] .n.1 24577.627951: cpu_idle: state=4294967295 cpu_id=0
138856 shell svc 13418-13419 ( 1007) [006] d..2 24577.627954: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138857          <idle>-0     (-----) [000] d..2 24577.627957: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
138858     kworker/1:1-13091 (13091) [001] d..2 24577.627961: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138859          <idle>-0     (-----) [001] d..1 24577.627968: cpu_idle: state=0 cpu_id=1
138860            adbd-23485 ( 1007) [000] d..2 24577.628002: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138861          <idle>-0     (-----) [000] d..1 24577.628009: cpu_idle: state=0 cpu_id=0
138862          <idle>-0     (-----) [001] d.h3 24577.628042: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138863          <idle>-0     (-----) [001] dnh4 24577.628051: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138864          <idle>-0     (-----) [001] .n.1 24577.628056: cpu_idle: state=4294967295 cpu_id=1
138865          <idle>-0     (-----) [001] d..2 24577.628062: 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
138866   kworker/u17:2-23076 (23076) [001] d..2 24577.628069: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138867   kworker/u17:2-23076 (23076) [001] d..3 24577.628074: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138868   kworker/u17:2-23076 (23076) [001] d..2 24577.628090: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
138869     kworker/1:1-13091 (13091) [001] d..2 24577.628095: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
138870     kworker/1:1-13091 (13091) [001] d..3 24577.628103: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
138871          <idle>-0     (-----) [000] .n.1 24577.628108: cpu_idle: state=4294967295 cpu_id=0
138872          <idle>-0     (-----) [000] d..2 24577.628114: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
138873     kworker/1:1-13091 (13091) [001] d..2 24577.628117: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138874          <idle>-0     (-----) [001] d..1 24577.628124: cpu_idle: state=0 cpu_id=1
138875              ps-13422 (13422) [006] d..2 24577.628128: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138876            adbd-23485 ( 1007) [000] d..2 24577.628130: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138877              ps-13422 (13422) [006] dn.3 24577.628132: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138878              ps-13422 (13422) [006] d..2 24577.628134: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138879          <idle>-0     (-----) [000] d..1 24577.628137: cpu_idle: state=0 cpu_id=0
138880 shell svc 13418-13419 ( 1007) [006] d..2 24577.628142: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138881              ps-13422 (13422) [006] d..2 24577.628147: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138882              ps-13422 (13422) [006] dn.3 24577.628149: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138883              ps-13422 (13422) [006] d..2 24577.628151: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138884 shell svc 13418-13419 ( 1007) [006] d..2 24577.628158: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138885              ps-13422 (13422) [006] d..2 24577.628162: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138886              ps-13422 (13422) [006] dn.3 24577.628164: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138887              ps-13422 (13422) [006] d..2 24577.628166: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138888 shell svc 13418-13419 ( 1007) [006] d..2 24577.628172: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138889              ps-13422 (13422) [006] d..2 24577.628176: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138890              ps-13422 (13422) [006] dn.3 24577.628178: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138891              ps-13422 (13422) [006] d..2 24577.628180: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138892 shell svc 13418-13419 ( 1007) [006] d..2 24577.628186: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138893              ps-13422 (13422) [006] d..2 24577.628190: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138894              ps-13422 (13422) [006] dn.3 24577.628192: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138895              ps-13422 (13422) [006] d..2 24577.628194: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138896 shell svc 13418-13419 ( 1007) [006] d..2 24577.628200: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138897              ps-13422 (13422) [006] d..2 24577.628204: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138898              ps-13422 (13422) [006] dn.3 24577.628206: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138899              ps-13422 (13422) [006] d..2 24577.628208: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138900          <idle>-0     (-----) [001] d.h3 24577.628214: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138901 shell svc 13418-13419 ( 1007) [006] d..2 24577.628214: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138902              ps-13422 (13422) [006] d..2 24577.628217: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138903          <idle>-0     (-----) [001] dnh4 24577.628219: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138904              ps-13422 (13422) [006] dn.3 24577.628220: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138905              ps-13422 (13422) [006] d..2 24577.628222: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138906          <idle>-0     (-----) [001] .n.1 24577.628224: cpu_idle: state=4294967295 cpu_id=1
138907 shell svc 13418-13419 ( 1007) [006] d..2 24577.628228: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138908          <idle>-0     (-----) [001] d..2 24577.628230: 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
138909   kworker/u17:2-23076 (23076) [001] d..2 24577.628236: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138910   kworker/u17:2-23076 (23076) [001] d..3 24577.628241: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138911   kworker/u17:2-23076 (23076) [001] d..2 24577.628257: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
138912     kworker/1:1-13091 (13091) [001] d..2 24577.628262: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
138913              ps-13422 (13422) [006] d..2 24577.628271: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138914              ps-13422 (13422) [006] dn.3 24577.628274: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138915              ps-13422 (13422) [006] d..2 24577.628277: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138916     kworker/1:1-13091 (13091) [001] d..3 24577.628278: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
138917          <idle>-0     (-----) [000] .n.1 24577.628282: cpu_idle: state=4294967295 cpu_id=0
138918 shell svc 13418-13419 ( 1007) [006] d..2 24577.628284: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138919          <idle>-0     (-----) [000] d..2 24577.628288: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
138920     kworker/1:1-13091 (13091) [001] d..2 24577.628292: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138921            adbd-23484 ( 1007) [000] d..2 24577.628299: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
138922          <idle>-0     (-----) [001] d..1 24577.628299: cpu_idle: state=0 cpu_id=1
138923            adbd-23484 ( 1007) [000] d..3 24577.628310: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
138924              ps-13422 (13422) [006] d..2 24577.628322: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138925              ps-13422 (13422) [006] dn.3 24577.628325: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138926              ps-13422 (13422) [006] d..2 24577.628328: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138927 shell svc 13418-13419 ( 1007) [006] d..2 24577.628335: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138928            adbd-23484 ( 1007) [000] d..2 24577.628351: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
138929              ps-13422 (13422) [006] d..2 24577.628374: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138930              ps-13422 (13422) [006] dn.3 24577.628377: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138931              ps-13422 (13422) [006] d..2 24577.628380: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138932 shell svc 13418-13419 ( 1007) [006] d..2 24577.628387: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138933            adbd-1007  ( 1007) [000] d..1 24577.628422: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
138934              ps-13422 (13422) [006] d..2 24577.628424: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138935              ps-13422 (13422) [006] dn.3 24577.628427: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138936              ps-13422 (13422) [006] d..2 24577.628429: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138937 shell svc 13418-13419 ( 1007) [006] d..2 24577.628437: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138938            adbd-1007  ( 1007) [000] d..2 24577.628440: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
138939          <idle>-0     (-----) [001] .n.1 24577.628445: cpu_idle: state=4294967295 cpu_id=1
138940          <idle>-0     (-----) [001] d..2 24577.628451: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
138941            adbd-1007  ( 1007) [000] d..2 24577.628474: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138942              ps-13422 (13422) [006] d..2 24577.628474: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138943              ps-13422 (13422) [006] dn.3 24577.628477: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138944              ps-13422 (13422) [006] d..2 24577.628479: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138945          <idle>-0     (-----) [000] d..1 24577.628482: cpu_idle: state=0 cpu_id=0
138946 shell svc 13418-13419 ( 1007) [006] d..2 24577.628487: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138947            adbd-23485 ( 1007) [001] d..2 24577.628499: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138948          <idle>-0     (-----) [001] d.h4 24577.628516: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138949          <idle>-0     (-----) [001] dnh5 24577.628521: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138950          <idle>-0     (-----) [001] d..2 24577.628529: 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
138951   kworker/u17:2-23076 (23076) [001] d..2 24577.628535: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138952   kworker/u17:2-23076 (23076) [001] d..3 24577.628540: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138953              ps-13422 (13422) [006] d..2 24577.628552: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138954              ps-13422 (13422) [006] dn.3 24577.628555: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138955   kworker/u17:2-23076 (23076) [001] d..2 24577.628556: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
138956              ps-13422 (13422) [006] d..2 24577.628557: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138957     kworker/1:1-13091 (13091) [001] d..2 24577.628561: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
138958 shell svc 13418-13419 ( 1007) [006] d..2 24577.628565: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138959              ps-13422 (13422) [006] d..2 24577.628569: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138960              ps-13422 (13422) [006] dn.3 24577.628571: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138961              ps-13422 (13422) [006] d..2 24577.628573: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138962     kworker/1:1-13091 (13091) [001] d..3 24577.628576: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
138963 shell svc 13418-13419 ( 1007) [006] d..2 24577.628580: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138964          <idle>-0     (-----) [000] .n.1 24577.628581: cpu_idle: state=4294967295 cpu_id=0
138965          <idle>-0     (-----) [000] d..2 24577.628588: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
138966     kworker/1:1-13091 (13091) [001] d..2 24577.628591: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138967          <idle>-0     (-----) [001] d..1 24577.628598: cpu_idle: state=0 cpu_id=1
138968              ps-13422 (13422) [006] d..2 24577.628629: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138969              ps-13422 (13422) [006] dn.3 24577.628632: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138970              ps-13422 (13422) [006] d..2 24577.628635: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138971            adbd-23485 ( 1007) [000] d..2 24577.628638: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138972 shell svc 13418-13419 ( 1007) [006] d..2 24577.628642: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138973          <idle>-0     (-----) [000] d..1 24577.628646: cpu_idle: state=0 cpu_id=0
138974          <idle>-0     (-----) [001] d.h3 24577.628664: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138975          <idle>-0     (-----) [001] dnh4 24577.628669: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
138976          <idle>-0     (-----) [001] .n.1 24577.628675: cpu_idle: state=4294967295 cpu_id=1
138977          <idle>-0     (-----) [001] d..2 24577.628681: 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
138978              ps-13422 (13422) [006] d..2 24577.628687: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138979   kworker/u17:2-23076 (23076) [001] d..2 24577.628689: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138980              ps-13422 (13422) [006] dn.3 24577.628690: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138981              ps-13422 (13422) [006] d..2 24577.628692: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138982   kworker/u17:2-23076 (23076) [001] d..3 24577.628693: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
138983 shell svc 13418-13419 ( 1007) [006] d..2 24577.628700: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138984   kworker/u17:2-23076 (23076) [001] d..2 24577.628709: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
138985     kworker/1:1-13091 (13091) [001] d..2 24577.628714: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
138986     kworker/1:1-13091 (13091) [001] d..3 24577.628723: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
138987          <idle>-0     (-----) [000] .n.1 24577.628728: cpu_idle: state=4294967295 cpu_id=0
138988          <idle>-0     (-----) [000] d..2 24577.628735: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
138989     kworker/1:1-13091 (13091) [001] d..2 24577.628737: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138990          <idle>-0     (-----) [001] d..1 24577.628744: cpu_idle: state=0 cpu_id=1
138991            adbd-23485 ( 1007) [000] d..2 24577.628752: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138992          <idle>-0     (-----) [000] d..1 24577.628758: cpu_idle: state=0 cpu_id=0
138993              ps-13422 (13422) [006] d..2 24577.628786: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138994              ps-13422 (13422) [006] dn.3 24577.628789: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138995              ps-13422 (13422) [006] d..2 24577.628792: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
138996 shell svc 13418-13419 ( 1007) [006] d..2 24577.628799: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
138997              ps-13422 (13422) [006] d..2 24577.628804: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138998              ps-13422 (13422) [006] dn.3 24577.628806: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
138999              ps-13422 (13422) [006] d..2 24577.628808: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139000 shell svc 13418-13419 ( 1007) [006] d..2 24577.628814: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139001          <idle>-0     (-----) [001] d.h3 24577.628815: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139002              ps-13422 (13422) [006] d..2 24577.628818: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139003          <idle>-0     (-----) [001] dnh4 24577.628821: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139004              ps-13422 (13422) [006] dn.3 24577.628821: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139005              ps-13422 (13422) [006] d..2 24577.628823: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139006          <idle>-0     (-----) [001] .n.1 24577.628826: cpu_idle: state=4294967295 cpu_id=1
139007 shell svc 13418-13419 ( 1007) [006] d..2 24577.628829: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139008          <idle>-0     (-----) [001] d..2 24577.628832: 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
139009   kworker/u17:2-23076 (23076) [001] d..2 24577.628838: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139010   kworker/u17:2-23076 (23076) [001] d..3 24577.628843: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139011   kworker/u17:2-23076 (23076) [001] d..2 24577.628858: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
139012     kworker/1:1-13091 (13091) [001] d..2 24577.628864: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
139013              ps-13422 (13422) [006] d..2 24577.628867: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139014              ps-13422 (13422) [006] dn.3 24577.628870: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139015     kworker/1:1-13091 (13091) [001] d..3 24577.628872: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
139016              ps-13422 (13422) [006] d..2 24577.628872: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139017 shell svc 13418-13419 ( 1007) [006] d..2 24577.628879: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139018     kworker/1:1-13091 (13091) [001] d..2 24577.628886: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139019          <idle>-0     (-----) [001] d..1 24577.628894: cpu_idle: state=0 cpu_id=1
139020          <idle>-0     (-----) [000] dnh5 24577.628903: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
139021          <idle>-0     (-----) [000] dnh6 24577.628916: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
139022          <idle>-0     (-----) [000] dnh5 24577.628920: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
139023          <idle>-0     (-----) [003] .n.1 24577.628921: cpu_idle: state=4294967295 cpu_id=3
139024          <idle>-0     (-----) [003] d..2 24577.628929: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
139025          <idle>-0     (-----) [000] dnh6 24577.628932: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
139026          <idle>-0     (-----) [002] .n.1 24577.628937: cpu_idle: state=4294967295 cpu_id=2
139027          <idle>-0     (-----) [002] d..2 24577.628944: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
139028          <idle>-0     (-----) [000] .n.1 24577.628945: cpu_idle: state=4294967295 cpu_id=0
139029  crtc_event:111-254   (  254) [003] d..2 24577.628952: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139030          <idle>-0     (-----) [000] d..2 24577.628952: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
139031          <idle>-0     (-----) [003] d..1 24577.628955: cpu_idle: state=0 cpu_id=3
139032            adbd-23484 ( 1007) [000] d..2 24577.628963: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
139033            adbd-23484 ( 1007) [000] d..3 24577.628969: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
139034            adbd-23484 ( 1007) [000] d..2 24577.629012: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
139035 crtc_commit:111-253   (  253) [002] d..2 24577.629068: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
139036          <idle>-0     (-----) [002] d..1 24577.629073: cpu_idle: state=0 cpu_id=2
139037            adbd-1007  ( 1007) [000] d..1 24577.629076: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
139038            adbd-1007  ( 1007) [000] d..2 24577.629094: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
139039              ps-13422 (13422) [006] d..2 24577.629095: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139040              ps-13422 (13422) [006] dn.3 24577.629099: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139041          <idle>-0     (-----) [001] .n.1 24577.629099: cpu_idle: state=4294967295 cpu_id=1
139042              ps-13422 (13422) [006] d..2 24577.629101: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139043          <idle>-0     (-----) [001] d..2 24577.629105: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
139044 shell svc 13418-13419 ( 1007) [006] d..2 24577.629110: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139045              ps-13422 (13422) [006] d..2 24577.629114: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139046              ps-13422 (13422) [006] dn.3 24577.629116: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139047              ps-13422 (13422) [006] d..2 24577.629118: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139048 shell svc 13418-13419 ( 1007) [006] d..2 24577.629125: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139049            adbd-1007  ( 1007) [000] d..2 24577.629127: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139050              ps-13422 (13422) [006] d..2 24577.629129: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139051              ps-13422 (13422) [006] dn.3 24577.629131: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139052              ps-13422 (13422) [006] d..2 24577.629133: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139053          <idle>-0     (-----) [000] d..1 24577.629136: cpu_idle: state=0 cpu_id=0
139054 shell svc 13418-13419 ( 1007) [006] d..2 24577.629139: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139055              ps-13422 (13422) [006] d..2 24577.629144: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139056              ps-13422 (13422) [006] dn.3 24577.629146: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139057              ps-13422 (13422) [006] d..2 24577.629148: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139058            adbd-23485 ( 1007) [001] d..2 24577.629151: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139059 shell svc 13418-13419 ( 1007) [006] d..2 24577.629154: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139060              ps-13422 (13422) [006] d..2 24577.629158: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139061          <idle>-0     (-----) [001] d..1 24577.629158: cpu_idle: state=0 cpu_id=1
139062              ps-13422 (13422) [006] dn.3 24577.629160: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139063              ps-13422 (13422) [006] d..2 24577.629162: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139064 shell svc 13418-13419 ( 1007) [006] d..2 24577.629169: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139065              ps-13422 (13422) [006] d..2 24577.629173: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139066              ps-13422 (13422) [006] dn.3 24577.629175: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139067          <idle>-0     (-----) [001] d.h3 24577.629176: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139068              ps-13422 (13422) [006] d..2 24577.629177: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139069          <idle>-0     (-----) [001] dnh4 24577.629182: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139070 shell svc 13418-13419 ( 1007) [006] d..2 24577.629183: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139071              ps-13422 (13422) [006] d..2 24577.629186: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139072          <idle>-0     (-----) [001] .n.1 24577.629187: cpu_idle: state=4294967295 cpu_id=1
139073              ps-13422 (13422) [006] dn.3 24577.629188: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139074              ps-13422 (13422) [006] d..2 24577.629191: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139075          <idle>-0     (-----) [001] d..2 24577.629193: 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
139076 shell svc 13418-13419 ( 1007) [006] d..2 24577.629196: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139077              ps-13422 (13422) [006] d..2 24577.629200: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139078   kworker/u17:2-23076 (23076) [001] d..2 24577.629201: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139079              ps-13422 (13422) [006] dn.3 24577.629202: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139080              ps-13422 (13422) [006] d..2 24577.629204: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139081   kworker/u17:2-23076 (23076) [001] d..3 24577.629206: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139082 shell svc 13418-13419 ( 1007) [006] d..2 24577.629210: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139083              ps-13422 (13422) [006] d..2 24577.629214: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139084              ps-13422 (13422) [006] dn.3 24577.629216: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139085              ps-13422 (13422) [006] d..2 24577.629218: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139086   kworker/u17:2-23076 (23076) [001] d..2 24577.629223: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
139087 shell svc 13418-13419 ( 1007) [006] d..2 24577.629223: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139088     kworker/1:1-13091 (13091) [001] d..2 24577.629228: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
139089     kworker/1:1-13091 (13091) [001] d..3 24577.629244: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
139090          <idle>-0     (-----) [000] .n.1 24577.629249: cpu_idle: state=4294967295 cpu_id=0
139091          <idle>-0     (-----) [000] d..2 24577.629256: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
139092     kworker/1:1-13091 (13091) [001] d..2 24577.629257: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139093          <idle>-0     (-----) [001] d..1 24577.629264: cpu_idle: state=0 cpu_id=1
139094            adbd-23485 ( 1007) [000] d..2 24577.629306: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139095          <idle>-0     (-----) [000] d..1 24577.629313: cpu_idle: state=0 cpu_id=0
139096          <idle>-0     (-----) [001] d.h3 24577.629327: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139097          <idle>-0     (-----) [001] dnh4 24577.629332: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139098          <idle>-0     (-----) [001] .n.1 24577.629338: cpu_idle: state=4294967295 cpu_id=1
139099          <idle>-0     (-----) [001] d..2 24577.629343: 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
139100   kworker/u17:2-23076 (23076) [001] d..2 24577.629351: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139101   kworker/u17:2-23076 (23076) [001] d..3 24577.629356: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139102   kworker/u17:2-23076 (23076) [001] d..2 24577.629372: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
139103     kworker/1:1-13091 (13091) [001] d..2 24577.629378: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
139104              ps-13422 (13422) [006] d..2 24577.629380: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139105              ps-13422 (13422) [006] dn.3 24577.629383: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139106              ps-13422 (13422) [006] d..2 24577.629386: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139107     kworker/1:1-13091 (13091) [001] d..3 24577.629390: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
139108 shell svc 13418-13419 ( 1007) [006] d..2 24577.629394: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139109          <idle>-0     (-----) [000] .n.1 24577.629395: cpu_idle: state=4294967295 cpu_id=0
139110              ps-13422 (13422) [006] d..2 24577.629399: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139111          <idle>-0     (-----) [000] d..2 24577.629401: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
139112              ps-13422 (13422) [006] dn.3 24577.629402: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139113     kworker/1:1-13091 (13091) [001] d..2 24577.629403: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139114              ps-13422 (13422) [006] d..2 24577.629404: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139115          <idle>-0     (-----) [001] d..1 24577.629409: cpu_idle: state=0 cpu_id=1
139116 shell svc 13418-13419 ( 1007) [006] d..2 24577.629410: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139117              ps-13422 (13422) [006] d..2 24577.629414: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139118              ps-13422 (13422) [006] dn.3 24577.629416: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139119            adbd-23485 ( 1007) [000] d..2 24577.629417: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139120              ps-13422 (13422) [006] d..2 24577.629418: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139121          <idle>-0     (-----) [000] d..1 24577.629424: cpu_idle: state=0 cpu_id=0
139122 shell svc 13418-13419 ( 1007) [006] d..2 24577.629425: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139123              ps-13422 (13422) [006] d..2 24577.629429: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139124              ps-13422 (13422) [006] dn.3 24577.629431: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139125              ps-13422 (13422) [006] d..2 24577.629433: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139126 shell svc 13418-13419 ( 1007) [006] d..2 24577.629439: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139127              ps-13422 (13422) [006] d..2 24577.629444: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139128              ps-13422 (13422) [006] dn.3 24577.629446: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139129              ps-13422 (13422) [006] d..2 24577.629449: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139130 shell svc 13418-13419 ( 1007) [006] d..2 24577.629454: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139131              ps-13422 (13422) [006] d..2 24577.629459: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139132              ps-13422 (13422) [006] dn.3 24577.629461: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139133              ps-13422 (13422) [006] d..2 24577.629463: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139134 shell svc 13418-13419 ( 1007) [006] d..2 24577.629469: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139135          <idle>-0     (-----) [001] d.h3 24577.629480: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139136          <idle>-0     (-----) [001] dnh4 24577.629486: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139137          <idle>-0     (-----) [001] .n.1 24577.629491: cpu_idle: state=4294967295 cpu_id=1
139138          <idle>-0     (-----) [001] d..2 24577.629496: 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
139139   kworker/u17:2-23076 (23076) [001] d..2 24577.629502: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139140   kworker/u17:2-23076 (23076) [001] d..3 24577.629507: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139141   kworker/u17:2-23076 (23076) [001] d..2 24577.629523: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
139142     kworker/1:1-13091 (13091) [001] d..2 24577.629528: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
139143     kworker/1:1-13091 (13091) [001] d..3 24577.629537: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
139144          <idle>-0     (-----) [000] .n.1 24577.629542: cpu_idle: state=4294967295 cpu_id=0
139145          <idle>-0     (-----) [000] d..2 24577.629548: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
139146     kworker/1:1-13091 (13091) [001] d..2 24577.629550: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139147          <idle>-0     (-----) [001] d..1 24577.629556: cpu_idle: state=0 cpu_id=1
139148            adbd-23484 ( 1007) [000] d..2 24577.629558: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
139149            adbd-23484 ( 1007) [000] d..3 24577.629565: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
139150            adbd-23484 ( 1007) [000] d..2 24577.629608: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
139151              ps-13422 (13422) [006] d..2 24577.629615: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139152              ps-13422 (13422) [006] dn.3 24577.629618: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139153              ps-13422 (13422) [006] d..2 24577.629621: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139154 shell svc 13418-13419 ( 1007) [006] d..2 24577.629629: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139155              ps-13422 (13422) [006] d..2 24577.629633: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139156              ps-13422 (13422) [006] dn.3 24577.629636: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139157              ps-13422 (13422) [006] d..2 24577.629638: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139158 shell svc 13418-13419 ( 1007) [006] d..2 24577.629644: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139159              ps-13422 (13422) [006] d..2 24577.629649: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139160              ps-13422 (13422) [006] dn.3 24577.629651: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139161              ps-13422 (13422) [006] d..2 24577.629653: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139162 shell svc 13418-13419 ( 1007) [006] d..2 24577.629660: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139163              ps-13422 (13422) [006] d..2 24577.629664: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139164              ps-13422 (13422) [006] dn.3 24577.629666: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139165              ps-13422 (13422) [006] d..2 24577.629668: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139166 shell svc 13418-13419 ( 1007) [006] d..2 24577.629674: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139167              ps-13422 (13422) [006] d..2 24577.629678: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139168              ps-13422 (13422) [006] dn.3 24577.629680: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139169            adbd-1007  ( 1007) [000] d..1 24577.629681: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
139170              ps-13422 (13422) [006] d..2 24577.629682: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139171 shell svc 13418-13419 ( 1007) [006] d..2 24577.629688: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139172            adbd-1007  ( 1007) [000] d..2 24577.629699: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
139173          <idle>-0     (-----) [001] .n.1 24577.629704: cpu_idle: state=4294967295 cpu_id=1
139174          <idle>-0     (-----) [001] d..2 24577.629710: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
139175            adbd-1007  ( 1007) [000] d..2 24577.629732: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139176          <idle>-0     (-----) [000] d..1 24577.629740: cpu_idle: state=0 cpu_id=0
139177            adbd-23485 ( 1007) [001] d..2 24577.629756: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139178          <idle>-0     (-----) [001] d..1 24577.629763: cpu_idle: state=0 cpu_id=1
139179          <idle>-0     (-----) [001] d.h3 24577.629782: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139180          <idle>-0     (-----) [001] dnh4 24577.629788: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139181          <idle>-0     (-----) [001] .n.1 24577.629793: cpu_idle: state=4294967295 cpu_id=1
139182          <idle>-0     (-----) [001] d..2 24577.629798: 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
139183   kworker/u17:2-23076 (23076) [001] d..2 24577.629806: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139184   kworker/u17:2-23076 (23076) [001] d..3 24577.629811: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139185   kworker/u17:2-23076 (23076) [001] d..2 24577.629827: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
139186     kworker/1:1-13091 (13091) [001] d..2 24577.629832: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
139187     kworker/1:1-13091 (13091) [001] d..3 24577.629847: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
139188          <idle>-0     (-----) [000] .n.1 24577.629852: cpu_idle: state=4294967295 cpu_id=0
139189          <idle>-0     (-----) [000] d..2 24577.629859: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
139190     kworker/1:1-13091 (13091) [001] d..2 24577.629860: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139191          <idle>-0     (-----) [001] d..1 24577.629867: cpu_idle: state=0 cpu_id=1
139192            adbd-23485 ( 1007) [000] d..2 24577.629907: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139193          <idle>-0     (-----) [000] d..1 24577.629915: cpu_idle: state=0 cpu_id=0
139194          <idle>-0     (-----) [001] d.h3 24577.629940: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139195          <idle>-0     (-----) [001] dnh4 24577.629945: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139196          <idle>-0     (-----) [001] .n.1 24577.629950: cpu_idle: state=4294967295 cpu_id=1
139197              ps-13422 (13422) [006] d..2 24577.629955: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139198          <idle>-0     (-----) [001] d..2 24577.629956: 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
139199              ps-13422 (13422) [006] dn.3 24577.629959: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139200              ps-13422 (13422) [006] d..2 24577.629961: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139201   kworker/u17:2-23076 (23076) [001] d..2 24577.629962: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139202   kworker/u17:2-23076 (23076) [001] d..3 24577.629967: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139203 shell svc 13418-13419 ( 1007) [006] d..2 24577.629969: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139204              ps-13422 (13422) [006] d..2 24577.629974: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139205              ps-13422 (13422) [006] dn.3 24577.629977: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139206              ps-13422 (13422) [006] d..2 24577.629979: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139207   kworker/u17:2-23076 (23076) [001] d..2 24577.629983: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
139208 shell svc 13418-13419 ( 1007) [006] d..2 24577.629985: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139209     kworker/1:1-13091 (13091) [001] d..2 24577.629987: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
139210              ps-13422 (13422) [006] d..2 24577.629990: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139211              ps-13422 (13422) [006] dn.3 24577.629992: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139212              ps-13422 (13422) [006] d..2 24577.629994: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139213     kworker/1:1-13091 (13091) [001] d..3 24577.629996: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
139214 shell svc 13418-13419 ( 1007) [006] d..2 24577.630001: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139215          <idle>-0     (-----) [000] .n.1 24577.630001: cpu_idle: state=4294967295 cpu_id=0
139216              ps-13422 (13422) [006] d..2 24577.630005: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139217          <idle>-0     (-----) [000] d..2 24577.630007: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
139218              ps-13422 (13422) [006] dn.3 24577.630008: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139219     kworker/1:1-13091 (13091) [001] d..2 24577.630009: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139220              ps-13422 (13422) [006] d..2 24577.630011: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139221          <idle>-0     (-----) [001] d..1 24577.630016: cpu_idle: state=0 cpu_id=1
139222 shell svc 13418-13419 ( 1007) [006] d..2 24577.630016: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139223              ps-13422 (13422) [006] d..2 24577.630021: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139224              ps-13422 (13422) [006] dn.3 24577.630023: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139225            adbd-23485 ( 1007) [000] d..2 24577.630025: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139226              ps-13422 (13422) [006] d..2 24577.630026: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139227          <idle>-0     (-----) [000] d..1 24577.630031: cpu_idle: state=0 cpu_id=0
139228 shell svc 13418-13419 ( 1007) [006] d..2 24577.630031: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139229              ps-13422 (13422) [006] d..2 24577.630036: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139230              ps-13422 (13422) [006] dn.3 24577.630038: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139231              ps-13422 (13422) [006] d..2 24577.630041: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139232 shell svc 13418-13419 ( 1007) [006] d..2 24577.630046: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139233              ps-13422 (13422) [006] d..2 24577.630051: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139234              ps-13422 (13422) [006] dn.3 24577.630053: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139235              ps-13422 (13422) [006] d..2 24577.630055: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139236 shell svc 13418-13419 ( 1007) [006] d..2 24577.630061: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139237              ps-13422 (13422) [006] d..2 24577.630065: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139238              ps-13422 (13422) [006] dn.3 24577.630067: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139239              ps-13422 (13422) [006] d..2 24577.630070: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139240 shell svc 13418-13419 ( 1007) [006] d..2 24577.630075: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139241              ps-13422 (13422) [006] d..2 24577.630080: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139242              ps-13422 (13422) [006] dn.3 24577.630082: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139243              ps-13422 (13422) [006] d..2 24577.630084: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139244 shell svc 13418-13419 ( 1007) [006] d..2 24577.630090: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139245              ps-13422 (13422) [006] d..2 24577.630094: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139246          <idle>-0     (-----) [001] d.h3 24577.630096: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139247              ps-13422 (13422) [006] dn.3 24577.630096: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139248              ps-13422 (13422) [006] d..2 24577.630098: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139249          <idle>-0     (-----) [001] dnh4 24577.630104: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139250 shell svc 13418-13419 ( 1007) [006] d..2 24577.630104: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139251              ps-13422 (13422) [006] d..2 24577.630108: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139252          <idle>-0     (-----) [001] .n.1 24577.630109: cpu_idle: state=4294967295 cpu_id=1
139253              ps-13422 (13422) [006] dn.3 24577.630110: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139254              ps-13422 (13422) [006] d..2 24577.630112: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139255          <idle>-0     (-----) [001] d..2 24577.630115: 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
139256 shell svc 13418-13419 ( 1007) [006] d..2 24577.630118: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139257   kworker/u17:2-23076 (23076) [001] d..2 24577.630122: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139258   kworker/u17:2-23076 (23076) [001] d..3 24577.630127: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139259   kworker/u17:2-23076 (23076) [001] d..2 24577.630142: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
139260     kworker/1:1-13091 (13091) [001] d..2 24577.630149: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
139261              ps-13422 (13422) [006] d..2 24577.630160: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139262              ps-13422 (13422) [006] dn.3 24577.630162: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139263              ps-13422 (13422) [006] d..2 24577.630165: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139264     kworker/1:1-13091 (13091) [001] d..3 24577.630168: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
139265 shell svc 13418-13419 ( 1007) [006] d..2 24577.630173: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139266     kworker/1:1-13091 (13091) [001] d..2 24577.630177: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
139267            adbd-23484 ( 1007) [001] d..2 24577.630187: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
139268            adbd-23484 ( 1007) [001] d..3 24577.630197: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
139269              ps-13422 (13422) [006] d..2 24577.630212: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139270              ps-13422 (13422) [006] dn.3 24577.630215: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139271              ps-13422 (13422) [006] d..2 24577.630217: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139272 shell svc 13418-13419 ( 1007) [006] d..2 24577.630224: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139273            adbd-23484 ( 1007) [001] d..2 24577.630239: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
139274              ps-13422 (13422) [006] d..2 24577.630264: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139275              ps-13422 (13422) [006] dn.3 24577.630267: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139276              ps-13422 (13422) [006] d..2 24577.630269: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139277 shell svc 13418-13419 ( 1007) [006] d..2 24577.630277: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139278            adbd-1007  ( 1007) [001] d..1 24577.630312: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
139279              ps-13422 (13422) [006] d..2 24577.630315: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139280              ps-13422 (13422) [006] dn.3 24577.630318: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139281              ps-13422 (13422) [006] d..2 24577.630320: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139282            adbd-1007  ( 1007) [001] d..2 24577.630323: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
139283          <idle>-0     (-----) [000] .n.1 24577.630328: cpu_idle: state=4294967295 cpu_id=0
139284 shell svc 13418-13419 ( 1007) [006] d..2 24577.630328: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139285          <idle>-0     (-----) [000] d..2 24577.630334: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
139286            adbd-1007  ( 1007) [001] d..2 24577.630357: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139287          <idle>-0     (-----) [001] d..1 24577.630365: cpu_idle: state=0 cpu_id=1
139288              ps-13422 (13422) [006] d..2 24577.630366: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139289              ps-13422 (13422) [006] dn.3 24577.630369: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139290              ps-13422 (13422) [006] d..2 24577.630371: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139291            adbd-23485 ( 1007) [000] d..2 24577.630378: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139292 shell svc 13418-13419 ( 1007) [006] d..2 24577.630379: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139293          <idle>-0     (-----) [000] d..1 24577.630384: cpu_idle: state=0 cpu_id=0
139294          <idle>-0     (-----) [001] d.h3 24577.630385: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139295          <idle>-0     (-----) [001] dnh4 24577.630391: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139296          <idle>-0     (-----) [001] .n.1 24577.630396: cpu_idle: state=4294967295 cpu_id=1
139297          <idle>-0     (-----) [001] d..2 24577.630403: 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
139298   kworker/u17:2-23076 (23076) [001] d..2 24577.630410: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139299   kworker/u17:2-23076 (23076) [001] d..3 24577.630416: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139300              ps-13422 (13422) [006] d..2 24577.630416: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139301              ps-13422 (13422) [006] dn.3 24577.630419: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139302              ps-13422 (13422) [006] d..2 24577.630421: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139303 shell svc 13418-13419 ( 1007) [006] d..2 24577.630429: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139304   kworker/u17:2-23076 (23076) [001] d..2 24577.630432: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
139305     kworker/1:1-13091 (13091) [001] d..2 24577.630438: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
139306     kworker/1:1-13091 (13091) [001] d..3 24577.630447: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
139307          <idle>-0     (-----) [000] .n.1 24577.630451: cpu_idle: state=4294967295 cpu_id=0
139308          <idle>-0     (-----) [000] d..2 24577.630457: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
139309     kworker/1:1-13091 (13091) [001] d..2 24577.630461: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139310              ps-13422 (13422) [006] d..2 24577.630467: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139311          <idle>-0     (-----) [001] d..1 24577.630468: cpu_idle: state=0 cpu_id=1
139312              ps-13422 (13422) [006] dn.3 24577.630470: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139313              ps-13422 (13422) [006] d..2 24577.630472: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139314 shell svc 13418-13419 ( 1007) [006] d..2 24577.630479: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139315            adbd-23485 ( 1007) [000] d..2 24577.630502: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139316          <idle>-0     (-----) [000] d..1 24577.630509: cpu_idle: state=0 cpu_id=0
139317              ps-13422 (13422) [006] d..2 24577.630519: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139318              ps-13422 (13422) [006] dn.3 24577.630522: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139319              ps-13422 (13422) [006] d..2 24577.630524: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139320 shell svc 13418-13419 ( 1007) [006] d..2 24577.630532: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139321          <idle>-0     (-----) [001] d.h3 24577.630541: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139322          <idle>-0     (-----) [001] dnh4 24577.630546: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139323          <idle>-0     (-----) [001] .n.1 24577.630551: cpu_idle: state=4294967295 cpu_id=1
139324          <idle>-0     (-----) [001] d..2 24577.630557: 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
139325   kworker/u17:2-23076 (23076) [001] d..2 24577.630564: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139326   kworker/u17:2-23076 (23076) [001] d..3 24577.630569: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139327              ps-13422 (13422) [006] d..2 24577.630570: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139328              ps-13422 (13422) [006] dn.3 24577.630573: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139329              ps-13422 (13422) [006] d..2 24577.630576: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139330 shell svc 13418-13419 ( 1007) [006] d..2 24577.630583: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139331   kworker/u17:2-23076 (23076) [001] d..2 24577.630585: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
139332     kworker/1:1-13091 (13091) [001] d..2 24577.630591: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
139333     kworker/1:1-13091 (13091) [001] d..3 24577.630599: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
139334          <idle>-0     (-----) [000] .n.1 24577.630604: cpu_idle: state=4294967295 cpu_id=0
139335          <idle>-0     (-----) [000] d..2 24577.630611: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
139336     kworker/1:1-13091 (13091) [001] d..2 24577.630613: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139337          <idle>-0     (-----) [001] d..1 24577.630620: cpu_idle: state=0 cpu_id=1
139338              ps-13422 (13422) [006] d..2 24577.630621: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139339              ps-13422 (13422) [006] dn.3 24577.630625: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139340            adbd-23485 ( 1007) [000] d..2 24577.630626: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139341              ps-13422 (13422) [006] d..2 24577.630627: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139342          <idle>-0     (-----) [000] d..1 24577.630632: cpu_idle: state=0 cpu_id=0
139343 shell svc 13418-13419 ( 1007) [006] d..2 24577.630635: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139344              ps-13422 (13422) [006] d..2 24577.630678: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139345              ps-13422 (13422) [006] dn.3 24577.630681: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139346              ps-13422 (13422) [006] d..2 24577.630684: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139347 shell svc 13418-13419 ( 1007) [006] d..2 24577.630691: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139348          <idle>-0     (-----) [001] d.h3 24577.630704: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139349          <idle>-0     (-----) [001] dnh4 24577.630709: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139350          <idle>-0     (-----) [001] .n.1 24577.630715: cpu_idle: state=4294967295 cpu_id=1
139351          <idle>-0     (-----) [001] d..2 24577.630720: 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
139352   kworker/u17:2-23076 (23076) [001] d..2 24577.630726: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139353   kworker/u17:2-23076 (23076) [001] d..3 24577.630731: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139354              ps-13422 (13422) [006] d..2 24577.630733: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139355              ps-13422 (13422) [006] dn.3 24577.630736: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139356              ps-13422 (13422) [006] d..2 24577.630738: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139357 shell svc 13418-13419 ( 1007) [006] d..2 24577.630745: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139358   kworker/u17:2-23076 (23076) [001] d..2 24577.630747: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
139359     kworker/1:1-13091 (13091) [001] d..2 24577.630754: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
139360     kworker/1:1-13091 (13091) [001] d..3 24577.630769: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
139361          <idle>-0     (-----) [000] .n.1 24577.630774: cpu_idle: state=4294967295 cpu_id=0
139362          <idle>-0     (-----) [000] d..2 24577.630779: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
139363     kworker/1:1-13091 (13091) [001] d..2 24577.630783: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139364              ps-13422 (13422) [006] d..2 24577.630786: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139365              ps-13422 (13422) [006] dn.3 24577.630788: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139366          <idle>-0     (-----) [001] d..1 24577.630789: cpu_idle: state=0 cpu_id=1
139367            adbd-23484 ( 1007) [000] d..2 24577.630790: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
139368              ps-13422 (13422) [006] d..2 24577.630791: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139369 shell svc 13418-13419 ( 1007) [006] d..2 24577.630798: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139370            adbd-23484 ( 1007) [000] d..3 24577.630801: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
139371              ps-13422 (13422) [006] d..2 24577.630836: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139372              ps-13422 (13422) [006] dn.3 24577.630839: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139373              ps-13422 (13422) [006] d..2 24577.630841: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139374            adbd-23484 ( 1007) [000] d..2 24577.630844: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
139375 shell svc 13418-13419 ( 1007) [006] d..2 24577.630848: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139376          <idle>-0     (-----) [002] d.s3 24577.630896: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
139377          <idle>-0     (-----) [003] d.s2 24577.630896: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
139378              ps-13422 (13422) [006] d..2 24577.630897: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139379              ps-13422 (13422) [006] dn.3 24577.630900: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139380              ps-13422 (13422) [006] d..2 24577.630902: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139381          <idle>-0     (-----) [002] d.s4 24577.630907: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
139382          <idle>-0     (-----) [003] dns3 24577.630910: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
139383 shell svc 13418-13419 ( 1007) [006] d..2 24577.630911: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139384          <idle>-0     (-----) [003] .n.1 24577.630920: cpu_idle: state=4294967295 cpu_id=3
139385          <idle>-0     (-----) [002] ...1 24577.630921: cpu_idle: state=4294967295 cpu_id=2
139386          <idle>-0     (-----) [003] d..2 24577.630924: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
139387          <idle>-0     (-----) [002] d..1 24577.630925: cpu_idle: state=0 cpu_id=2
139388            adbd-1007  ( 1007) [000] d..1 24577.630933: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
139389  crtc_event:111-254   (  254) [003] d..2 24577.630937: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
139390              ps-13422 (13422) [006] d..2 24577.630950: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139391              ps-13422 (13422) [006] dn.3 24577.630953: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139392              ps-13422 (13422) [006] d..2 24577.630956: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139393     rcu_preempt-7     (    7) [003] d..2 24577.630958: 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
139394 shell svc 13418-13419 ( 1007) [006] d..2 24577.630963: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139395            adbd-1007  ( 1007) [000] d..2 24577.630965: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
139396          <idle>-0     (-----) [003] d..2 24577.630969: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
139397              ps-13422 (13422) [006] d..2 24577.631002: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139398            adbd-1007  ( 1007) [000] d..2 24577.631004: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139399              ps-13422 (13422) [006] dn.3 24577.631005: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139400              ps-13422 (13422) [006] d..2 24577.631007: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139401          <idle>-0     (-----) [000] d..1 24577.631012: cpu_idle: state=0 cpu_id=0
139402 shell svc 13418-13419 ( 1007) [006] d..2 24577.631014: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139403            adbd-23485 ( 1007) [003] d..2 24577.631022: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139404          <idle>-0     (-----) [001] d.h3 24577.631028: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139405          <idle>-0     (-----) [003] d..1 24577.631028: cpu_idle: state=0 cpu_id=3
139406          <idle>-0     (-----) [001] dnh4 24577.631034: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139407          <idle>-0     (-----) [001] .n.1 24577.631039: cpu_idle: state=4294967295 cpu_id=1
139408          <idle>-0     (-----) [001] d..2 24577.631045: 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
139409   kworker/u17:2-23076 (23076) [001] d..2 24577.631052: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139410              ps-13422 (13422) [006] d..2 24577.631052: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139411              ps-13422 (13422) [006] dn.3 24577.631056: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139412   kworker/u17:2-23076 (23076) [001] d..3 24577.631057: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139413              ps-13422 (13422) [006] d..2 24577.631058: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139414 shell svc 13418-13419 ( 1007) [006] d..2 24577.631065: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139415   kworker/u17:2-23076 (23076) [001] d..2 24577.631073: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
139416     kworker/1:1-13091 (13091) [001] d..2 24577.631078: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
139417     kworker/1:1-13091 (13091) [001] d..3 24577.631087: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
139418          <idle>-0     (-----) [003] .n.1 24577.631091: cpu_idle: state=4294967295 cpu_id=3
139419          <idle>-0     (-----) [003] d..2 24577.631097: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
139420     kworker/1:1-13091 (13091) [001] d..2 24577.631101: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139421          <idle>-0     (-----) [001] d..1 24577.631108: cpu_idle: state=0 cpu_id=1
139422            adbd-23485 ( 1007) [003] d..2 24577.631143: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139423          <idle>-0     (-----) [003] d..1 24577.631148: cpu_idle: state=0 cpu_id=3
139424          <idle>-0     (-----) [001] d.h3 24577.631163: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139425          <idle>-0     (-----) [001] dnh4 24577.631169: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139426          <idle>-0     (-----) [001] .n.1 24577.631174: cpu_idle: state=4294967295 cpu_id=1
139427          <idle>-0     (-----) [001] d..2 24577.631179: 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
139428   kworker/u17:2-23076 (23076) [001] d..2 24577.631196: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139429   kworker/u17:2-23076 (23076) [001] d..3 24577.631200: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139430   kworker/u17:2-23076 (23076) [001] d..2 24577.631215: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
139431     kworker/1:1-13091 (13091) [001] d..2 24577.631220: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
139432     kworker/1:1-13091 (13091) [001] d..3 24577.631229: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
139433          <idle>-0     (-----) [003] .n.1 24577.631233: cpu_idle: state=4294967295 cpu_id=3
139434          <idle>-0     (-----) [003] d..2 24577.631239: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
139435     kworker/1:1-13091 (13091) [001] d..2 24577.631242: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139436          <idle>-0     (-----) [001] d..1 24577.631249: cpu_idle: state=0 cpu_id=1
139437              ps-13422 (13422) [006] d..2 24577.631252: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139438          <idle>-0     (-----) [000] d.h5 24577.631252: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
139439              ps-13422 (13422) [006] dn.3 24577.631255: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139440              ps-13422 (13422) [006] d..2 24577.631258: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139441            adbd-23485 ( 1007) [003] d..2 24577.631259: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139442          <idle>-0     (-----) [000] d.h6 24577.631263: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
139443          <idle>-0     (-----) [003] d..1 24577.631264: cpu_idle: state=0 cpu_id=3
139444 shell svc 13418-13419 ( 1007) [006] d..2 24577.631266: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139445          <idle>-0     (-----) [002] .n.1 24577.631268: cpu_idle: state=4294967295 cpu_id=2
139446              ps-13422 (13422) [006] d..2 24577.631270: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139447              ps-13422 (13422) [006] dn.3 24577.631273: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139448          <idle>-0     (-----) [002] d..2 24577.631274: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
139449          <idle>-0     (-----) [000] ...1 24577.631275: cpu_idle: state=4294967295 cpu_id=0
139450              ps-13422 (13422) [006] d..2 24577.631275: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139451          <idle>-0     (-----) [000] d..1 24577.631278: cpu_idle: state=0 cpu_id=0
139452 shell svc 13418-13419 ( 1007) [006] d..2 24577.631281: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139453              ps-13422 (13422) [006] d..2 24577.631286: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139454              ps-13422 (13422) [006] dn.3 24577.631288: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139455              ps-13422 (13422) [006] d..2 24577.631290: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139456 shell svc 13418-13419 ( 1007) [006] d..2 24577.631296: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139457              ps-13422 (13422) [006] d..2 24577.631300: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139458              ps-13422 (13422) [006] dn.3 24577.631302: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139459              ps-13422 (13422) [006] d..2 24577.631304: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139460 shell svc 13418-13419 ( 1007) [006] d..2 24577.631310: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139461          <idle>-0     (-----) [001] d.h3 24577.631311: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139462              ps-13422 (13422) [006] d..2 24577.631313: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139463              ps-13422 (13422) [006] dn.3 24577.631315: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139464          <idle>-0     (-----) [001] dnh4 24577.631317: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139465              ps-13422 (13422) [006] d..2 24577.631317: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139466          <idle>-0     (-----) [001] .n.1 24577.631322: cpu_idle: state=4294967295 cpu_id=1
139467 shell svc 13418-13419 ( 1007) [006] d..2 24577.631323: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139468              ps-13422 (13422) [006] d..2 24577.631327: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139469 crtc_commit:111-253   (  253) [002] d..2 24577.631328: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139470          <idle>-0     (-----) [001] d..2 24577.631328: 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
139471              ps-13422 (13422) [006] dn.3 24577.631329: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139472              ps-13422 (13422) [006] d..2 24577.631331: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139473          <idle>-0     (-----) [002] d..1 24577.631334: cpu_idle: state=0 cpu_id=2
139474   kworker/u17:2-23076 (23076) [001] d..2 24577.631334: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139475 shell svc 13418-13419 ( 1007) [006] d..2 24577.631337: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139476   kworker/u17:2-23076 (23076) [001] d..3 24577.631339: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139477   kworker/u17:2-23076 (23076) [001] d..2 24577.631354: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
139478     kworker/1:1-13091 (13091) [001] d..2 24577.631360: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
139479     kworker/1:1-13091 (13091) [001] d..3 24577.631368: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
139480          <idle>-0     (-----) [000] .n.1 24577.631372: cpu_idle: state=4294967295 cpu_id=0
139481          <idle>-0     (-----) [000] d..2 24577.631379: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
139482     kworker/1:1-13091 (13091) [001] d..2 24577.631382: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139483          <idle>-0     (-----) [001] d..1 24577.631389: cpu_idle: state=0 cpu_id=1
139484            adbd-23484 ( 1007) [000] d..2 24577.631390: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
139485            adbd-23484 ( 1007) [000] d..3 24577.631397: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
139486            adbd-23484 ( 1007) [000] d..2 24577.631442: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
139487              ps-13422 (13422) [006] d..2 24577.631507: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139488              ps-13422 (13422) [006] dn.3 24577.631510: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139489              ps-13422 (13422) [006] d..2 24577.631513: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139490 shell svc 13418-13419 ( 1007) [006] d..2 24577.631521: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139491              ps-13422 (13422) [006] d..2 24577.631525: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139492              ps-13422 (13422) [006] dn.3 24577.631527: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139493              ps-13422 (13422) [006] d..2 24577.631529: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139494 shell svc 13418-13419 ( 1007) [006] d..2 24577.631536: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139495              ps-13422 (13422) [006] d..2 24577.631540: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139496              ps-13422 (13422) [006] dn.3 24577.631542: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139497            adbd-1007  ( 1007) [000] d.h4 24577.631542: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
139498              ps-13422 (13422) [006] d..2 24577.631544: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139499 shell svc 13418-13419 ( 1007) [006] d..2 24577.631550: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139500            adbd-1007  ( 1007) [000] d.h5 24577.631554: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
139501              ps-13422 (13422) [006] d..2 24577.631554: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139502              ps-13422 (13422) [006] dn.3 24577.631556: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139503              ps-13422 (13422) [006] d..2 24577.631558: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139504          <idle>-0     (-----) [003] .n.1 24577.631558: cpu_idle: state=4294967295 cpu_id=3
139505            adbd-1007  ( 1007) [000] d.h6 24577.631560: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
139506          <idle>-0     (-----) [003] d..2 24577.631563: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
139507 shell svc 13418-13419 ( 1007) [006] d..2 24577.631564: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139508              ps-13422 (13422) [006] d..2 24577.631568: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139509            adbd-1007  ( 1007) [000] dnh7 24577.631569: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
139510              ps-13422 (13422) [006] dn.3 24577.631570: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139511              ps-13422 (13422) [006] d..2 24577.631572: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139512 shell svc 13418-13419 ( 1007) [006] d..2 24577.631578: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139513  crtc_event:111-254   (  254) [003] d..2 24577.631580: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139514            adbd-1007  ( 1007) [000] dnh8 24577.631580: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
139515              ps-13422 (13422) [006] d..2 24577.631582: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139516              ps-13422 (13422) [006] dn.3 24577.631584: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139517          <idle>-0     (-----) [003] d..1 24577.631584: cpu_idle: state=0 cpu_id=3
139518              ps-13422 (13422) [006] d..2 24577.631586: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139519            adbd-1007  ( 1007) [000] dnh9 24577.631589: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
139520 shell svc 13418-13419 ( 1007) [006] d..2 24577.631591: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139521          <idle>-0     (-----) [002] .n.1 24577.631593: cpu_idle: state=4294967295 cpu_id=2
139522            adbd-1007  ( 1007) [000] dnh6 24577.631593: sched_waking: comm=SDM_EventThread pid=624 prio=111 target_cpu=002
139523          <idle>-0     (-----) [002] d..2 24577.631600: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
139524            adbd-1007  ( 1007) [000] dnh7 24577.631605: sched_wakeup: comm=SDM_EventThread pid=624 prio=111 target_cpu=002
139525 crtc_commit:111-253   (  253) [002] d..2 24577.631616: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=SDM_EventThread next_pid=624 next_prio=111
139526            adbd-1007  ( 1007) [000] d..2 24577.631619: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
139527     kworker/0:1-13012 (13012) [000] d..2 24577.631630: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
139528 SDM_EventThread-624   (  598) [002] ...1 24577.631649: tracing_mark_write: B|598|HWCCallbacks::Vsync::
139529 SDM_EventThread-624   (  598) [002] ...1 24577.631657: tracing_mark_write: B|598|HIDL::IComposerCallback::onVsync::client
139530 SDM_EventThread-624   (  598) [002] ...1 24577.631660: tracing_mark_write: E|598
139531            adbd-1007  ( 1007) [000] d..1 24577.631664: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
139532              ps-13422 (13422) [006] d..2 24577.631678: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139533              ps-13422 (13422) [006] dn.3 24577.631681: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139534 SDM_EventThread-624   (  598) [002] .... 24577.631682: binder_transaction: transaction=1671697 dest_node=1270370 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
139535              ps-13422 (13422) [006] d..2 24577.631683: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139536            adbd-1007  ( 1007) [000] d..2 24577.631687: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
139537 SDM_EventThread-624   (  598) [002] d..4 24577.631689: sched_waking: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=002
139538 shell svc 13418-13419 ( 1007) [006] d..2 24577.631691: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139539              ps-13422 (13422) [006] d..2 24577.631695: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139540              ps-13422 (13422) [006] dn.3 24577.631698: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139541              ps-13422 (13422) [006] d..2 24577.631700: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139542 shell svc 13418-13419 ( 1007) [006] d..2 24577.631706: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139543 SDM_EventThread-624   (  598) [002] d..5 24577.631709: sched_wakeup: comm=HwBinder:23896_ pid=23923 prio=120 target_cpu=001
139544              ps-13422 (13422) [006] d..2 24577.631710: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139545              ps-13422 (13422) [006] dn.3 24577.631712: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139546          <idle>-0     (-----) [001] .n.1 24577.631714: cpu_idle: state=4294967295 cpu_id=1
139547              ps-13422 (13422) [006] d..2 24577.631714: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139548 shell svc 13418-13419 ( 1007) [006] d..2 24577.631720: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139549          <idle>-0     (-----) [001] d..2 24577.631720: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:23896_ next_pid=23923 next_prio=120
139550            adbd-1007  ( 1007) [000] d..2 24577.631723: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139551 HwBinder:23896_-23923 (23896) [001] .... 24577.631727: binder_transaction_received: transaction=1671697
139552 SDM_EventThread-624   (  598) [002] ...1 24577.631728: tracing_mark_write: E|598
139553          <idle>-0     (-----) [000] d..1 24577.631732: cpu_idle: state=0 cpu_id=0
139554 SDM_EventThread-624   (  598) [002] d..4 24577.631738: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
139555 SDM_EventThread-624   (  598) [002] d..5 24577.631752: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
139556 HwBinder:23896_-23923 (23896) [001] ...1 24577.631755: tracing_mark_write: B|23896|HIDL::IComposerCallback::onVsync::server
139557          <idle>-0     (-----) [003] .n.1 24577.631757: cpu_idle: state=4294967295 cpu_id=3
139558              ps-13422 (13422) [006] d..2 24577.631758: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139559              ps-13422 (13422) [006] dn.3 24577.631761: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139560          <idle>-0     (-----) [003] d..2 24577.631761: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
139561              ps-13422 (13422) [006] d..2 24577.631763: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139562 SDM_EventThread-624   (  598) [002] d..2 24577.631770: sched_switch: prev_comm=SDM_EventThread prev_pid=624 prev_prio=111 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
139563 shell svc 13418-13419 ( 1007) [006] d..2 24577.631770: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139564 crtc_commit:111-253   (  253) [003] d..2 24577.631778: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139565 HwBinder:23896_-23923 (23896) [001] d..1 24577.631778: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
139566          <idle>-0     (-----) [003] d..1 24577.631782: cpu_idle: state=0 cpu_id=3
139567 HwBinder:23896_-23923 (23896) [001] d..2 24577.631790: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
139568          <idle>-0     (-----) [003] .n.1 24577.631794: cpu_idle: state=4294967295 cpu_id=3
139569 HwBinder:23896_-23923 (23896) [001] ...1 24577.631796: tracing_mark_write: E|23896
139570          <idle>-0     (-----) [003] d..2 24577.631799: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
139571              ps-13422 (13422) [006] d..2 24577.631811: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139572              ps-13422 (13422) [006] dn.3 24577.631814: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139573              ps-13422 (13422) [006] d..2 24577.631816: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139574            adbd-23485 ( 1007) [002] d..2 24577.631821: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139575 HwBinder:23896_-23923 (23896) [001] d.h2 24577.631823: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139576        DispSync-23904 (23896) [003] d..2 24577.631823: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139577 shell svc 13418-13419 ( 1007) [006] d..2 24577.631824: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139578          <idle>-0     (-----) [003] d..1 24577.631827: cpu_idle: state=0 cpu_id=3
139579          <idle>-0     (-----) [002] d..1 24577.631829: cpu_idle: state=0 cpu_id=2
139580 HwBinder:23896_-23923 (23896) [001] d.h3 24577.631840: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
139581          <idle>-0     (-----) [002] .n.1 24577.631845: cpu_idle: state=4294967295 cpu_id=2
139582          <idle>-0     (-----) [002] d..2 24577.631851: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
139583   kworker/u17:2-23076 (23076) [002] d..2 24577.631860: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
139584 HwBinder:23896_-23923 (23896) [001] d..2 24577.631861: sched_switch: prev_comm=HwBinder:23896_ prev_pid=23923 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139585              ps-13422 (13422) [006] d..2 24577.631861: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139586              ps-13422 (13422) [006] dn.3 24577.631864: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139587              ps-13422 (13422) [006] d..2 24577.631866: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139588          <idle>-0     (-----) [001] d..1 24577.631869: cpu_idle: state=0 cpu_id=1
139589   kworker/u17:2-23076 (23076) [002] d..3 24577.631871: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
139590 shell svc 13418-13419 ( 1007) [006] d..2 24577.631874: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139591   kworker/u17:2-23076 (23076) [002] d..2 24577.631888: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
139592     kworker/2:0-12895 (12895) [002] d..2 24577.631895: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
139593     kworker/2:0-12895 (12895) [002] d..3 24577.631905: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
139594     kworker/2:0-12895 (12895) [002] d..2 24577.631914: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
139595              ps-13422 (13422) [006] d..2 24577.631917: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139596              ps-13422 (13422) [006] dn.3 24577.631920: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139597              ps-13422 (13422) [006] d..2 24577.631922: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139598 shell svc 13418-13419 ( 1007) [006] d..2 24577.631930: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139599            adbd-23485 ( 1007) [002] d..2 24577.631959: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139600          <idle>-0     (-----) [002] d..1 24577.631966: cpu_idle: state=0 cpu_id=2
139601              ps-13422 (13422) [006] d..2 24577.631970: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139602              ps-13422 (13422) [006] dn.3 24577.631973: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139603              ps-13422 (13422) [006] d..2 24577.631976: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139604          <idle>-0     (-----) [001] d.h3 24577.631978: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
139605 shell svc 13418-13419 ( 1007) [006] d..2 24577.631983: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139606          <idle>-0     (-----) [001] d.h4 24577.631987: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
139607          <idle>-0     (-----) [002] .n.1 24577.631992: cpu_idle: state=4294967295 cpu_id=2
139608          <idle>-0     (-----) [001] ...1 24577.631993: cpu_idle: state=4294967295 cpu_id=1
139609          <idle>-0     (-----) [001] d..1 24577.631996: cpu_idle: state=0 cpu_id=1
139610          <idle>-0     (-----) [002] d..2 24577.631998: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
139611   kworker/u17:2-23076 (23076) [002] d..2 24577.632005: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
139612   kworker/u17:2-23076 (23076) [002] d..3 24577.632011: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
139613   kworker/u17:2-23076 (23076) [002] d..2 24577.632027: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
139614     kworker/2:0-12895 (12895) [002] d..2 24577.632032: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
139615     kworker/2:0-12895 (12895) [002] d..3 24577.632040: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
139616     kworker/2:0-12895 (12895) [002] d..2 24577.632048: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
139617            adbd-23485 ( 1007) [002] d..2 24577.632066: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139618          <idle>-0     (-----) [002] d..1 24577.632073: cpu_idle: state=0 cpu_id=2
139619          <idle>-0     (-----) [001] d.h3 24577.632152: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
139620          <idle>-0     (-----) [001] dnh4 24577.632169: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139621          <idle>-0     (-----) [001] .n.1 24577.632173: cpu_idle: state=4294967295 cpu_id=1
139622          <idle>-0     (-----) [001] d..2 24577.632180: 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
139623   kworker/u17:2-23076 (23076) [001] d..2 24577.632189: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139624   kworker/u17:2-23076 (23076) [001] d..3 24577.632194: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139625   kworker/u17:2-23076 (23076) [001] d..2 24577.632211: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
139626     kworker/1:1-13091 (13091) [001] d..2 24577.632218: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
139627     kworker/1:1-13091 (13091) [001] d..3 24577.632237: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
139628     kworker/1:1-13091 (13091) [001] d..2 24577.632246: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
139629            adbd-23484 ( 1007) [001] d..2 24577.632258: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
139630            adbd-23484 ( 1007) [001] d..3 24577.632268: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
139631            adbd-23484 ( 1007) [001] d..2 24577.632311: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
139632              ps-13422 (13422) [006] d..2 24577.632333: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139633              ps-13422 (13422) [006] dn.3 24577.632336: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139634              ps-13422 (13422) [006] d..2 24577.632339: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139635 shell svc 13418-13419 ( 1007) [006] d..2 24577.632347: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139636              ps-13422 (13422) [006] d..2 24577.632352: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139637              ps-13422 (13422) [006] dn.3 24577.632355: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139638              ps-13422 (13422) [006] d..2 24577.632357: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139639 shell svc 13418-13419 ( 1007) [006] d..2 24577.632363: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139640              ps-13422 (13422) [006] d..2 24577.632367: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139641              ps-13422 (13422) [006] dn.3 24577.632369: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139642              ps-13422 (13422) [006] d..2 24577.632371: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139643 shell svc 13418-13419 ( 1007) [006] d..2 24577.632377: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139644              ps-13422 (13422) [006] d..2 24577.632381: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139645              ps-13422 (13422) [006] dn.3 24577.632383: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139646              ps-13422 (13422) [006] d..2 24577.632385: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139647            adbd-1007  ( 1007) [001] d..1 24577.632391: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
139648 shell svc 13418-13419 ( 1007) [006] d..2 24577.632392: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139649              ps-13422 (13422) [006] d..2 24577.632395: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139650              ps-13422 (13422) [006] dn.3 24577.632397: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139651              ps-13422 (13422) [006] d..2 24577.632399: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139652            adbd-1007  ( 1007) [001] d..2 24577.632401: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
139653 shell svc 13418-13419 ( 1007) [006] d..2 24577.632405: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139654          <idle>-0     (-----) [002] .n.1 24577.632406: cpu_idle: state=4294967295 cpu_id=2
139655              ps-13422 (13422) [006] d..2 24577.632408: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139656              ps-13422 (13422) [006] dn.3 24577.632410: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139657          <idle>-0     (-----) [002] d..2 24577.632412: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
139658              ps-13422 (13422) [006] d..2 24577.632412: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139659 shell svc 13418-13419 ( 1007) [006] d..2 24577.632418: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139660              ps-13422 (13422) [006] d..2 24577.632422: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139661              ps-13422 (13422) [006] dn.3 24577.632424: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139662              ps-13422 (13422) [006] d..2 24577.632426: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139663 shell svc 13418-13419 ( 1007) [006] d..2 24577.632432: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139664              ps-13422 (13422) [006] d..2 24577.632435: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139665            adbd-1007  ( 1007) [001] d..2 24577.632436: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139666              ps-13422 (13422) [006] dn.3 24577.632437: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139667              ps-13422 (13422) [006] d..2 24577.632439: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139668          <idle>-0     (-----) [001] d..1 24577.632445: cpu_idle: state=0 cpu_id=1
139669 shell svc 13418-13419 ( 1007) [006] d..2 24577.632445: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139670              ps-13422 (13422) [006] d..2 24577.632449: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139671              ps-13422 (13422) [006] dn.3 24577.632451: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139672              ps-13422 (13422) [006] d..2 24577.632453: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139673            adbd-23485 ( 1007) [002] d..2 24577.632457: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139674 shell svc 13418-13419 ( 1007) [006] d..2 24577.632459: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139675              ps-13422 (13422) [006] d..2 24577.632462: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139676          <idle>-0     (-----) [002] d..1 24577.632464: cpu_idle: state=0 cpu_id=2
139677              ps-13422 (13422) [006] dn.3 24577.632464: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139678              ps-13422 (13422) [006] d..2 24577.632466: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139679          <idle>-0     (-----) [001] d.h3 24577.632471: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139680 shell svc 13418-13419 ( 1007) [006] d..2 24577.632472: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139681              ps-13422 (13422) [006] d..2 24577.632476: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139682          <idle>-0     (-----) [001] dnh4 24577.632477: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139683              ps-13422 (13422) [006] dn.3 24577.632478: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139684              ps-13422 (13422) [006] d..2 24577.632480: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139685          <idle>-0     (-----) [001] .n.1 24577.632482: cpu_idle: state=4294967295 cpu_id=1
139686 shell svc 13418-13419 ( 1007) [006] d..2 24577.632486: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139687          <idle>-0     (-----) [001] d..2 24577.632489: 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
139688              ps-13422 (13422) [006] d..2 24577.632489: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139689              ps-13422 (13422) [006] dn.3 24577.632491: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139690              ps-13422 (13422) [006] d..2 24577.632493: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139691   kworker/u17:2-23076 (23076) [001] d..2 24577.632497: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139692 shell svc 13418-13419 ( 1007) [006] d..2 24577.632500: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139693   kworker/u17:2-23076 (23076) [001] d..3 24577.632502: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139694              ps-13422 (13422) [006] d..2 24577.632503: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139695              ps-13422 (13422) [006] dn.3 24577.632505: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139696              ps-13422 (13422) [006] d..2 24577.632507: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139697 shell svc 13418-13419 ( 1007) [006] d..2 24577.632513: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139698              ps-13422 (13422) [006] d..2 24577.632517: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139699   kworker/u17:2-23076 (23076) [001] d..2 24577.632519: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
139700              ps-13422 (13422) [006] dn.3 24577.632519: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139701              ps-13422 (13422) [006] d..2 24577.632521: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139702     kworker/1:1-13091 (13091) [001] d..2 24577.632525: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
139703 shell svc 13418-13419 ( 1007) [006] d..2 24577.632527: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139704              ps-13422 (13422) [006] d..2 24577.632530: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139705              ps-13422 (13422) [006] dn.3 24577.632532: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139706     kworker/1:1-13091 (13091) [001] d..3 24577.632534: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
139707              ps-13422 (13422) [006] d..2 24577.632535: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139708          <idle>-0     (-----) [002] .n.1 24577.632539: cpu_idle: state=4294967295 cpu_id=2
139709 shell svc 13418-13419 ( 1007) [006] d..2 24577.632540: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139710          <idle>-0     (-----) [002] d..2 24577.632545: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
139711     kworker/1:1-13091 (13091) [001] d..2 24577.632548: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139712          <idle>-0     (-----) [001] d..1 24577.632555: cpu_idle: state=0 cpu_id=1
139713            adbd-23485 ( 1007) [002] d..2 24577.632589: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139714          <idle>-0     (-----) [002] d..1 24577.632596: cpu_idle: state=0 cpu_id=2
139715          <idle>-0     (-----) [001] d.h3 24577.632619: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139716          <idle>-0     (-----) [001] dnh4 24577.632625: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139717          <idle>-0     (-----) [001] .n.1 24577.632630: cpu_idle: state=4294967295 cpu_id=1
139718          <idle>-0     (-----) [001] d..2 24577.632636: 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
139719   kworker/u17:2-23076 (23076) [001] d..2 24577.632642: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139720   kworker/u17:2-23076 (23076) [001] d..3 24577.632647: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139721   kworker/u17:2-23076 (23076) [001] d..2 24577.632664: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
139722     kworker/1:1-13091 (13091) [001] d..2 24577.632669: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
139723     kworker/1:1-13091 (13091) [001] d..3 24577.632677: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
139724          <idle>-0     (-----) [002] .n.1 24577.632683: cpu_idle: state=4294967295 cpu_id=2
139725          <idle>-0     (-----) [002] d..2 24577.632689: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
139726     kworker/1:1-13091 (13091) [001] d..2 24577.632691: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139727          <idle>-0     (-----) [001] d..1 24577.632697: cpu_idle: state=0 cpu_id=1
139728            adbd-23485 ( 1007) [002] d..2 24577.632705: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139729          <idle>-0     (-----) [002] d..1 24577.632712: cpu_idle: state=0 cpu_id=2
139730          <idle>-0     (-----) [001] d.h3 24577.632785: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139731          <idle>-0     (-----) [001] dnh4 24577.632791: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139732          <idle>-0     (-----) [001] .n.1 24577.632795: cpu_idle: state=4294967295 cpu_id=1
139733          <idle>-0     (-----) [001] d..2 24577.632801: 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
139734   kworker/u17:2-23076 (23076) [001] d..2 24577.632807: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139735   kworker/u17:2-23076 (23076) [001] d..3 24577.632812: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139736   kworker/u17:2-23076 (23076) [001] d..2 24577.632828: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
139737     kworker/1:1-13091 (13091) [001] d..2 24577.632834: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
139738     kworker/1:1-13091 (13091) [001] d..3 24577.632851: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
139739          <idle>-0     (-----) [000] .n.1 24577.632857: cpu_idle: state=4294967295 cpu_id=0
139740              ps-13422 (13422) [006] d..2 24577.632859: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139741              ps-13422 (13422) [006] dn.3 24577.632863: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139742          <idle>-0     (-----) [000] d..2 24577.632864: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
139743              ps-13422 (13422) [006] d..2 24577.632865: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139744     kworker/1:1-13091 (13091) [001] d..2 24577.632867: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139745          <idle>-0     (-----) [001] d..1 24577.632874: cpu_idle: state=0 cpu_id=1
139746 shell svc 13418-13419 ( 1007) [006] d..2 24577.632874: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139747            adbd-23484 ( 1007) [000] d..2 24577.632875: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
139748              ps-13422 (13422) [006] d..2 24577.632878: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139749              ps-13422 (13422) [006] dn.3 24577.632881: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139750              ps-13422 (13422) [006] d..2 24577.632883: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139751            adbd-23484 ( 1007) [000] d..3 24577.632886: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
139752 shell svc 13418-13419 ( 1007) [006] d..2 24577.632889: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139753              ps-13422 (13422) [006] d..2 24577.632893: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139754              ps-13422 (13422) [006] dn.3 24577.632896: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139755              ps-13422 (13422) [006] d..2 24577.632897: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139756 shell svc 13418-13419 ( 1007) [006] d..2 24577.632903: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139757              ps-13422 (13422) [006] d..2 24577.632907: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139758              ps-13422 (13422) [006] dn.3 24577.632909: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139759              ps-13422 (13422) [006] d..2 24577.632911: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139760 shell svc 13418-13419 ( 1007) [006] d..2 24577.632917: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139761              ps-13422 (13422) [006] d..2 24577.632921: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139762              ps-13422 (13422) [006] dn.3 24577.632923: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139763              ps-13422 (13422) [006] d..2 24577.632925: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139764            adbd-23484 ( 1007) [000] d..2 24577.632930: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
139765 shell svc 13418-13419 ( 1007) [006] d..2 24577.632931: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139766              ps-13422 (13422) [006] d..2 24577.632934: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139767              ps-13422 (13422) [006] dn.3 24577.632936: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139768              ps-13422 (13422) [006] d..2 24577.632938: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139769 shell svc 13418-13419 ( 1007) [006] d..2 24577.632944: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139770              ps-13422 (13422) [006] d..2 24577.632947: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139771              ps-13422 (13422) [006] dn.3 24577.632949: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139772              ps-13422 (13422) [006] d..2 24577.632951: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139773 shell svc 13418-13419 ( 1007) [006] d..2 24577.632957: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139774              ps-13422 (13422) [006] d..2 24577.632960: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139775              ps-13422 (13422) [006] dn.3 24577.632962: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139776              ps-13422 (13422) [006] d..2 24577.632965: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139777 shell svc 13418-13419 ( 1007) [006] d..2 24577.632971: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139778              ps-13422 (13422) [006] d..2 24577.632974: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139779              ps-13422 (13422) [006] dn.3 24577.632976: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139780              ps-13422 (13422) [006] d..2 24577.632978: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139781 shell svc 13418-13419 ( 1007) [006] d..2 24577.632984: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139782              ps-13422 (13422) [006] d..2 24577.632988: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139783              ps-13422 (13422) [006] dn.3 24577.632990: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139784              ps-13422 (13422) [006] d..2 24577.632992: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139785 shell svc 13418-13419 ( 1007) [006] d..2 24577.632999: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139786              ps-13422 (13422) [006] d..2 24577.633002: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139787              ps-13422 (13422) [006] dn.3 24577.633004: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139788              ps-13422 (13422) [006] d..2 24577.633006: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139789            adbd-1007  ( 1007) [000] d..1 24577.633008: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
139790 shell svc 13418-13419 ( 1007) [006] d..2 24577.633013: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139791              ps-13422 (13422) [006] d..2 24577.633016: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139792            adbd-1007  ( 1007) [000] d..2 24577.633018: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
139793              ps-13422 (13422) [006] dn.3 24577.633019: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139794              ps-13422 (13422) [006] d..2 24577.633021: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139795          <idle>-0     (-----) [002] .n.1 24577.633023: cpu_idle: state=4294967295 cpu_id=2
139796 shell svc 13418-13419 ( 1007) [006] d..2 24577.633026: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139797          <idle>-0     (-----) [002] d..2 24577.633029: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
139798              ps-13422 (13422) [006] d..2 24577.633030: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139799              ps-13422 (13422) [006] dn.3 24577.633032: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139800              ps-13422 (13422) [006] d..2 24577.633034: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139801 shell svc 13418-13419 ( 1007) [006] d..2 24577.633039: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139802              ps-13422 (13422) [006] d..2 24577.633043: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139803              ps-13422 (13422) [006] dn.3 24577.633045: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139804              ps-13422 (13422) [006] d..2 24577.633047: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139805            adbd-1007  ( 1007) [000] d..2 24577.633051: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139806 shell svc 13418-13419 ( 1007) [006] d..2 24577.633053: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139807          <idle>-0     (-----) [000] d..1 24577.633059: cpu_idle: state=0 cpu_id=0
139808            adbd-23485 ( 1007) [002] d..2 24577.633074: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139809          <idle>-0     (-----) [002] d..1 24577.633080: cpu_idle: state=0 cpu_id=2
139810              ps-13422 (13422) [006] d..2 24577.633092: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139811          <idle>-0     (-----) [001] d.h3 24577.633093: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139812              ps-13422 (13422) [006] dn.3 24577.633095: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139813              ps-13422 (13422) [006] d..2 24577.633097: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139814          <idle>-0     (-----) [001] dnh4 24577.633098: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139815          <idle>-0     (-----) [001] .n.1 24577.633103: cpu_idle: state=4294967295 cpu_id=1
139816 shell svc 13418-13419 ( 1007) [006] d..2 24577.633105: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139817          <idle>-0     (-----) [001] d..2 24577.633109: 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
139818   kworker/u17:2-23076 (23076) [001] d..2 24577.633115: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139819   kworker/u17:2-23076 (23076) [001] d..3 24577.633120: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139820   kworker/u17:2-23076 (23076) [001] d..2 24577.633136: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
139821     kworker/1:1-13091 (13091) [001] d..2 24577.633141: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
139822              ps-13422 (13422) [006] d..2 24577.633143: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139823              ps-13422 (13422) [006] dn.3 24577.633146: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139824              ps-13422 (13422) [006] d..2 24577.633148: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139825     kworker/1:1-13091 (13091) [001] d..3 24577.633150: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
139826          <idle>-0     (-----) [002] .n.1 24577.633155: cpu_idle: state=4294967295 cpu_id=2
139827 shell svc 13418-13419 ( 1007) [006] d..2 24577.633156: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139828          <idle>-0     (-----) [002] d..2 24577.633160: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
139829     kworker/1:1-13091 (13091) [001] d..2 24577.633163: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139830          <idle>-0     (-----) [001] d..1 24577.633170: cpu_idle: state=0 cpu_id=1
139831              ps-13422 (13422) [006] d..2 24577.633194: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139832              ps-13422 (13422) [006] dn.3 24577.633197: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139833              ps-13422 (13422) [006] d..2 24577.633199: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139834            adbd-23485 ( 1007) [002] d..2 24577.633205: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139835 shell svc 13418-13419 ( 1007) [006] d..2 24577.633206: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139836          <idle>-0     (-----) [002] d..1 24577.633211: cpu_idle: state=0 cpu_id=2
139837          <idle>-0     (-----) [003] d.h2 24577.633217: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
139838          <idle>-0     (-----) [003] dnh3 24577.633224: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
139839          <idle>-0     (-----) [003] .n.1 24577.633229: cpu_idle: state=4294967295 cpu_id=3
139840          <idle>-0     (-----) [001] d.h3 24577.633234: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139841          <idle>-0     (-----) [003] d..2 24577.633234: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
139842          <idle>-0     (-----) [001] dnh4 24577.633240: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139843              ps-13422 (13422) [006] d..2 24577.633244: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139844        DispSync-23904 (23896) [003] d..1 24577.633244: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
139845          <idle>-0     (-----) [001] .n.1 24577.633245: cpu_idle: state=4294967295 cpu_id=1
139846              ps-13422 (13422) [006] dn.3 24577.633246: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139847              ps-13422 (13422) [006] d..2 24577.633249: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139848          <idle>-0     (-----) [001] d..2 24577.633251: 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
139849 shell svc 13418-13419 ( 1007) [006] d..2 24577.633256: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139850   kworker/u17:2-23076 (23076) [001] d..2 24577.633257: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139851        DispSync-23904 (23896) [003] d..2 24577.633259: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
139852   kworker/u17:2-23076 (23076) [001] d..3 24577.633262: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139853          <idle>-0     (-----) [002] .n.1 24577.633264: cpu_idle: state=4294967295 cpu_id=2
139854          <idle>-0     (-----) [002] d..2 24577.633270: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
139855        DispSync-23904 (23896) [003] d..2 24577.633276: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139856   kworker/u17:2-23076 (23076) [001] d..2 24577.633278: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
139857          <idle>-0     (-----) [003] d..1 24577.633282: cpu_idle: state=0 cpu_id=3
139858     kworker/1:1-13091 (13091) [001] d..2 24577.633283: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
139859     kworker/1:1-13091 (13091) [001] d..3 24577.633291: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
139860              ps-13422 (13422) [006] d..2 24577.633293: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139861              ps-13422 (13422) [006] dn.3 24577.633296: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139862              ps-13422 (13422) [006] d..2 24577.633298: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139863 shell svc 13418-13419 ( 1007) [006] d..2 24577.633306: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139864     kworker/1:1-13091 (13091) [001] d..2 24577.633311: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
139865  appEventThread-23905 (23896) [002] d..3 24577.633313: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
139866  appEventThread-23905 (23896) [002] d..4 24577.633327: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
139867            adbd-23485 ( 1007) [001] d..2 24577.633329: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139868          <idle>-0     (-----) [000] .n.1 24577.633332: cpu_idle: state=4294967295 cpu_id=0
139869          <idle>-0     (-----) [001] d..1 24577.633337: cpu_idle: state=0 cpu_id=1
139870          <idle>-0     (-----) [000] d..2 24577.633339: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
139871  appEventThread-23905 (23896) [002] d..2 24577.633350: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139872          <idle>-0     (-----) [002] d..1 24577.633358: cpu_idle: state=0 cpu_id=2
139873          <idle>-0     (-----) [001] d.h3 24577.633390: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139874          <idle>-0     (-----) [001] dnh4 24577.633395: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139875          <idle>-0     (-----) [001] .n.1 24577.633400: cpu_idle: state=4294967295 cpu_id=1
139876          <idle>-0     (-----) [001] d..2 24577.633406: 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
139877   kworker/u17:2-23076 (23076) [001] d..2 24577.633413: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139878   kworker/u17:2-23076 (23076) [001] d..3 24577.633418: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
139879   kworker/u17:2-23076 (23076) [001] d..2 24577.633433: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
139880     kworker/1:1-13091 (13091) [001] d..2 24577.633439: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
139881     kworker/1:1-13091 (13091) [001] d..3 24577.633448: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
139882     kworker/1:1-13091 (13091) [001] d..2 24577.633461: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139883          <idle>-0     (-----) [001] d..1 24577.633468: cpu_idle: state=0 cpu_id=1
139884              ps-13422 (13422) [006] d..2 24577.633604: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139885              ps-13422 (13422) [006] dn.3 24577.633608: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139886              ps-13422 (13422) [006] d..2 24577.633610: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139887 shell svc 13418-13419 ( 1007) [006] d..2 24577.633619: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139888              ps-13422 (13422) [006] d..2 24577.633623: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139889              ps-13422 (13422) [006] dn.3 24577.633625: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139890              ps-13422 (13422) [006] d..2 24577.633627: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139891 shell svc 13418-13419 ( 1007) [006] d..2 24577.633633: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139892              ps-13422 (13422) [006] d..2 24577.633637: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139893              ps-13422 (13422) [006] dn.3 24577.633639: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139894              ps-13422 (13422) [006] d..2 24577.633641: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139895 shell svc 13418-13419 ( 1007) [006] d..2 24577.633647: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139896              ps-13422 (13422) [006] d..2 24577.633651: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139897 s.nexuslauncher-24827 (24827) [000] .... 24577.633651: binder_transaction: transaction=1671698 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
139898              ps-13422 (13422) [006] dn.3 24577.633653: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139899              ps-13422 (13422) [006] d..2 24577.633655: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139900 s.nexuslauncher-24827 (24827) [000] d..4 24577.633659: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
139901 shell svc 13418-13419 ( 1007) [006] d..2 24577.633660: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139902              ps-13422 (13422) [006] d..2 24577.633664: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139903              ps-13422 (13422) [006] dn.3 24577.633666: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139904              ps-13422 (13422) [006] d..2 24577.633668: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139905 shell svc 13418-13419 ( 1007) [006] d..2 24577.633674: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139906              ps-13422 (13422) [006] d..2 24577.633677: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139907 s.nexuslauncher-24827 (24827) [000] d..5 24577.633679: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
139908              ps-13422 (13422) [006] dn.3 24577.633680: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139909              ps-13422 (13422) [006] d..2 24577.633681: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139910          <idle>-0     (-----) [001] .n.1 24577.633683: cpu_idle: state=4294967295 cpu_id=1
139911 shell svc 13418-13419 ( 1007) [006] d..2 24577.633687: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139912          <idle>-0     (-----) [001] d..2 24577.633690: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
139913              ps-13422 (13422) [006] d..2 24577.633690: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139914              ps-13422 (13422) [006] dn.3 24577.633693: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139915              ps-13422 (13422) [006] d..2 24577.633694: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139916  Binder:23896_4-24423 (23896) [001] .... 24577.633695: binder_transaction_received: transaction=1671698
139917 shell svc 13418-13419 ( 1007) [006] d..2 24577.633700: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139918              ps-13422 (13422) [006] d..2 24577.633704: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139919              ps-13422 (13422) [006] dn.3 24577.633706: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139920              ps-13422 (13422) [006] d..2 24577.633708: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139921 s.nexuslauncher-24827 (24827) [000] d..3 24577.633709: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
139922 shell svc 13418-13419 ( 1007) [006] d..2 24577.633713: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139923              ps-13422 (13422) [006] d..2 24577.633717: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139924              ps-13422 (13422) [006] dn.3 24577.633719: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139925  Binder:23896_4-24423 (23896) [001] d..1 24577.633720: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
139926              ps-13422 (13422) [006] d..2 24577.633721: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139927 s.nexuslauncher-24827 (24827) [000] d..4 24577.633726: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
139928 shell svc 13418-13419 ( 1007) [006] d..2 24577.633727: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139929          <idle>-0     (-----) [002] .n.1 24577.633731: cpu_idle: state=4294967295 cpu_id=2
139930              ps-13422 (13422) [006] d..2 24577.633731: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139931              ps-13422 (13422) [006] dn.3 24577.633733: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139932              ps-13422 (13422) [006] d..2 24577.633735: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139933          <idle>-0     (-----) [002] d..2 24577.633739: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
139934  Binder:23896_4-24423 (23896) [001] d..2 24577.633741: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
139935 shell svc 13418-13419 ( 1007) [006] d..2 24577.633741: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139936              ps-13422 (13422) [006] d..2 24577.633745: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139937          <idle>-0     (-----) [003] .n.1 24577.633745: cpu_idle: state=4294967295 cpu_id=3
139938              ps-13422 (13422) [006] dn.3 24577.633747: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139939              ps-13422 (13422) [006] d..2 24577.633749: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139940          <idle>-0     (-----) [003] d..2 24577.633751: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
139941 shell svc 13418-13419 ( 1007) [006] d..2 24577.633755: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139942              ps-13422 (13422) [006] d..2 24577.633758: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139943              ps-13422 (13422) [006] dn.3 24577.633760: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139944              ps-13422 (13422) [006] d..2 24577.633762: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139945  Binder:23896_4-24423 (23896) [001] d..2 24577.633766: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139946 shell svc 13418-13419 ( 1007) [006] d..2 24577.633768: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139947              ps-13422 (13422) [006] d..2 24577.633772: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139948          <idle>-0     (-----) [001] d..1 24577.633773: cpu_idle: state=0 cpu_id=1
139949              ps-13422 (13422) [006] dn.3 24577.633774: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139950              ps-13422 (13422) [006] d..2 24577.633776: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139951  appEventThread-23905 (23896) [003] d..2 24577.633779: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139952 shell svc 13418-13419 ( 1007) [006] d..2 24577.633782: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139953    RenderThread-25194 (24827) [002] d..2 24577.633783: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
139954          <idle>-0     (-----) [003] d..1 24577.633784: cpu_idle: state=0 cpu_id=3
139955            adbd-23484 ( 1007) [002] d..2 24577.633795: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
139956            adbd-23484 ( 1007) [002] d..3 24577.633805: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
139957            adbd-23484 ( 1007) [002] d..2 24577.633849: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
139958            adbd-1007  ( 1007) [002] d..1 24577.633927: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
139959            adbd-1007  ( 1007) [002] d..2 24577.633952: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
139960            adbd-1007  ( 1007) [002] d..2 24577.633993: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
139961 s.nexuslauncher-24827 (24827) [000] d..3 24577.634000: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
139962 s.nexuslauncher-24827 (24827) [000] d..4 24577.634018: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
139963          <idle>-0     (-----) [001] .n.1 24577.634022: cpu_idle: state=4294967295 cpu_id=1
139964          <idle>-0     (-----) [001] d..2 24577.634029: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
139965 s.nexuslauncher-24827 (24827) [000] d..2 24577.634039: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139966            adbd-23485 ( 1007) [002] d..2 24577.634041: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139967          <idle>-0     (-----) [000] d..1 24577.634048: cpu_idle: state=0 cpu_id=0
139968          <idle>-0     (-----) [002] d..1 24577.634050: cpu_idle: state=0 cpu_id=2
139969    RenderThread-25194 (24827) [001] d.h2 24577.634052: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
139970    RenderThread-25194 (24827) [001] d.h3 24577.634070: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
139971          <idle>-0     (-----) [000] .n.1 24577.634075: cpu_idle: state=4294967295 cpu_id=0
139972          <idle>-0     (-----) [000] d..2 24577.634082: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
139973   kworker/u17:2-23076 (23076) [000] d..2 24577.634091: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
139974   kworker/u17:2-23076 (23076) [000] d..3 24577.634098: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
139975   kworker/u17:2-23076 (23076) [000] d..2 24577.634115: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
139976     kworker/0:1-13012 (13012) [000] d..2 24577.634121: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
139977     kworker/0:1-13012 (13012) [000] d..3 24577.634130: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
139978          <idle>-0     (-----) [002] .n.1 24577.634135: cpu_idle: state=4294967295 cpu_id=2
139979          <idle>-0     (-----) [002] d..2 24577.634142: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
139980     kworker/0:1-13012 (13012) [000] d..2 24577.634144: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139981          <idle>-0     (-----) [000] d..1 24577.634151: cpu_idle: state=0 cpu_id=0
139982              ps-13422 (13422) [006] d..2 24577.634162: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139983              ps-13422 (13422) [006] dn.3 24577.634166: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139984              ps-13422 (13422) [006] d..2 24577.634169: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139985 shell svc 13418-13419 ( 1007) [006] d..2 24577.634178: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
139986            adbd-23485 ( 1007) [002] d..2 24577.634188: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139987          <idle>-0     (-----) [002] d..1 24577.634194: cpu_idle: state=0 cpu_id=2
139988    RenderThread-25194 (24827) [001] d.h2 24577.634212: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
139989              ps-13422 (13422) [006] d.s2 24577.634220: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
139990    RenderThread-25194 (24827) [001] d.h3 24577.634225: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
139991          <idle>-0     (-----) [000] .n.1 24577.634230: cpu_idle: state=4294967295 cpu_id=0
139992          <idle>-0     (-----) [000] d..2 24577.634237: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
139993              ps-13422 (13422) [006] d..2 24577.634240: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139994          <idle>-0     (-----) [002] dnh2 24577.634242: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
139995              ps-13422 (13422) [006] dn.3 24577.634244: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
139996   kworker/u17:2-23076 (23076) [000] d..2 24577.634244: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
139997              ps-13422 (13422) [006] d..2 24577.634246: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
139998          <idle>-0     (-----) [002] .n.1 24577.634246: cpu_idle: state=4294967295 cpu_id=2
139999   kworker/u17:2-23076 (23076) [000] d..3 24577.634250: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
140000          <idle>-0     (-----) [002] d..2 24577.634253: 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
140001 shell svc 13418-13419 ( 1007) [006] d..2 24577.634254: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140002   kworker/u17:2-23076 (23076) [000] d..2 24577.634265: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
140003     kworker/0:1-13012 (13012) [000] d..2 24577.634275: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
140004     kworker/0:1-13012 (13012) [000] d..3 24577.634296: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
140005              ps-13422 (13422) [006] d..2 24577.634299: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140006              ps-13422 (13422) [006] dn.3 24577.634302: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140007              ps-13422 (13422) [006] d..2 24577.634304: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140008     kworker/0:1-13012 (13012) [000] d..2 24577.634308: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
140009    RenderThread-25194 (24827) [001] d..1 24577.634309: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
140010 shell svc 13418-13419 ( 1007) [006] d..2 24577.634312: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140011    RenderThread-25194 (24827) [001] d..2 24577.634327: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=003
140012          <idle>-0     (-----) [003] .n.1 24577.634332: cpu_idle: state=4294967295 cpu_id=3
140013            adbd-23485 ( 1007) [000] d..2 24577.634338: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140014          <idle>-0     (-----) [003] d..2 24577.634339: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
140015          <idle>-0     (-----) [000] d..1 24577.634347: cpu_idle: state=0 cpu_id=0
140016              ps-13422 (13422) [006] d..2 24577.634351: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140017              ps-13422 (13422) [006] dn.3 24577.634354: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140018              ps-13422 (13422) [006] d..2 24577.634356: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140019 shell svc 13418-13419 ( 1007) [006] d..2 24577.634364: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140020  kworker/u16:10-23868 (23868) [002] .... 24577.634377: clk_set_rate: l3_cluster0_vote_clk 748800000
140021    RenderThread-25194 (24827) [001] d.h2 24577.634382: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
140022    RenderThread-25194 (24827) [001] d.h3 24577.634392: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
140023          <idle>-0     (-----) [000] .n.1 24577.634397: cpu_idle: state=4294967295 cpu_id=0
140024          <idle>-0     (-----) [000] d..2 24577.634403: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
140025   kworker/u17:2-23076 (23076) [000] d..2 24577.634410: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
140026              ps-13422 (13422) [006] d..2 24577.634410: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140027              ps-13422 (13422) [006] dn.3 24577.634413: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140028              ps-13422 (13422) [006] d..2 24577.634415: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140029   kworker/u17:2-23076 (23076) [000] d..3 24577.634416: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
140030    RenderThread-25194 (24827) [001] .... 24577.634419: binder_transaction: transaction=1671699 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
140031 shell svc 13418-13419 ( 1007) [006] d..2 24577.634425: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140032    RenderThread-25194 (24827) [001] ...2 24577.634425: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
140033    RenderThread-25194 (24827) [001] d..4 24577.634427: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
140034   kworker/u17:2-23076 (23076) [000] d..2 24577.634432: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
140035 s.nexuslauncher-24827 (24827) [003] d..2 24577.634435: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140036    RenderThread-25194 (24827) [001] d..5 24577.634436: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
140037     kworker/0:1-13012 (13012) [000] d..2 24577.634439: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
140038          <idle>-0     (-----) [003] d..1 24577.634440: cpu_idle: state=0 cpu_id=3
140039    RenderThread-25194 (24827) [001] d..2 24577.634445: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
140040  Binder:23896_4-24423 (23896) [001] .... 24577.634450: binder_transaction_received: transaction=1671699
140041     kworker/0:1-13012 (13012) [000] d..3 24577.634459: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
140042              ps-13422 (13422) [006] d..2 24577.634469: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140043     kworker/0:1-13012 (13012) [000] d..2 24577.634472: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
140044              ps-13422 (13422) [006] dn.3 24577.634473: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140045              ps-13422 (13422) [006] d..2 24577.634475: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140046 shell svc 13418-13419 ( 1007) [006] d..2 24577.634482: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140047            adbd-23484 ( 1007) [000] d..2 24577.634490: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
140048            adbd-23484 ( 1007) [000] d..3 24577.634499: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
140049  Binder:23896_4-24423 (23896) [001] .... 24577.634513: binder_transaction: transaction=1671700 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
140050              ps-13422 (13422) [006] d..2 24577.634518: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140051              ps-13422 (13422) [006] dn.3 24577.634521: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140052  Binder:23896_4-24423 (23896) [001] d..2 24577.634522: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
140053              ps-13422 (13422) [006] d..2 24577.634523: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140054  Binder:23896_4-24423 (23896) [001] d..3 24577.634530: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
140055 shell svc 13418-13419 ( 1007) [006] d..2 24577.634531: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140056  Binder:23896_4-24423 (23896) [001] .... 24577.634532: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
140057  Binder:23896_4-24423 (23896) [001] d..2 24577.634541: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
140058            adbd-23484 ( 1007) [000] d..2 24577.634544: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
140059    RenderThread-25194 (24827) [001] .... 24577.634545: binder_transaction_received: transaction=1671700
140060              ps-13422 (13422) [006] d..2 24577.634566: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140061              ps-13422 (13422) [006] dn.3 24577.634569: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140062              ps-13422 (13422) [006] d..2 24577.634572: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140063 shell svc 13418-13419 ( 1007) [006] d..2 24577.634579: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140064            adbd-1007  ( 1007) [000] d..1 24577.634610: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
140065              ps-13422 (13422) [006] d..2 24577.634614: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140066              ps-13422 (13422) [006] dn.3 24577.634617: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140067              ps-13422 (13422) [006] d..2 24577.634619: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140068  kworker/u16:10-23868 (23868) [002] d..2 24577.634622: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
140069 shell svc 13418-13419 ( 1007) [006] d..2 24577.634627: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140070            adbd-1007  ( 1007) [000] d..2 24577.634636: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
140071          <idle>-0     (-----) [003] dns3 24577.634650: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
140072  Binder:23896_4-24423 (23896) [002] d..2 24577.634660: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
140073              ps-13422 (13422) [006] d..2 24577.634662: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140074          <idle>-0     (-----) [003] dns4 24577.634664: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
140075              ps-13422 (13422) [006] dn.3 24577.634665: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140076              ps-13422 (13422) [006] d..2 24577.634667: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140077          <idle>-0     (-----) [003] dns4 24577.634669: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
140078            adbd-1007  ( 1007) [000] d..2 24577.634671: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140079          <idle>-0     (-----) [002] d..2 24577.634674: 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
140080 shell svc 13418-13419 ( 1007) [006] d..2 24577.634675: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140081          <idle>-0     (-----) [000] d..1 24577.634679: cpu_idle: state=0 cpu_id=0
140082          <idle>-0     (-----) [003] .n.1 24577.634679: cpu_idle: state=4294967295 cpu_id=3
140083          <idle>-0     (-----) [003] d..2 24577.634685: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
140084  kworker/u16:10-23868 (23868) [002] d..2 24577.634695: 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
140085          <idle>-0     (-----) [002] d..1 24577.634700: cpu_idle: state=0 cpu_id=2
140086              ps-13422 (13422) [006] d..2 24577.634724: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140087              ps-13422 (13422) [006] dn.3 24577.634727: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140088              ps-13422 (13422) [006] d..2 24577.634729: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140089            adbd-23485 ( 1007) [003] d..2 24577.634736: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140090 shell svc 13418-13419 ( 1007) [006] d..2 24577.634737: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140091          <idle>-0     (-----) [003] d..1 24577.634741: cpu_idle: state=0 cpu_id=3
140092    RenderThread-25194 (24827) [001] d.h2 24577.634757: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
140093    RenderThread-25194 (24827) [001] d.h3 24577.634768: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
140094          <idle>-0     (-----) [000] .n.1 24577.634774: cpu_idle: state=4294967295 cpu_id=0
140095          <idle>-0     (-----) [000] d..2 24577.634781: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
140096              ps-13422 (13422) [006] d..2 24577.634781: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140097              ps-13422 (13422) [006] dn.3 24577.634784: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140098              ps-13422 (13422) [006] d..2 24577.634786: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140099   kworker/u17:2-23076 (23076) [000] d..2 24577.634789: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
140100 shell svc 13418-13419 ( 1007) [006] d..2 24577.634794: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140101   kworker/u17:2-23076 (23076) [000] d..3 24577.634795: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
140102   kworker/u17:2-23076 (23076) [000] d..2 24577.634812: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
140103     kworker/0:1-13012 (13012) [000] d..2 24577.634817: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
140104     kworker/0:1-13012 (13012) [000] d..3 24577.634826: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
140105          <idle>-0     (-----) [003] .n.1 24577.634831: cpu_idle: state=4294967295 cpu_id=3
140106          <idle>-0     (-----) [003] d..2 24577.634837: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
140107              ps-13422 (13422) [006] d..2 24577.634840: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140108     kworker/0:1-13012 (13012) [000] d..2 24577.634841: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140109              ps-13422 (13422) [006] dn.3 24577.634843: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140110              ps-13422 (13422) [006] d..2 24577.634845: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140111          <idle>-0     (-----) [000] d..1 24577.634848: cpu_idle: state=0 cpu_id=0
140112 shell svc 13418-13419 ( 1007) [006] d..2 24577.634852: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140113            adbd-23485 ( 1007) [003] d..2 24577.634881: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140114          <idle>-0     (-----) [003] d..1 24577.634886: cpu_idle: state=0 cpu_id=3
140115              ps-13422 (13422) [006] d..2 24577.634890: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140116              ps-13422 (13422) [006] dn.3 24577.634893: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140117              ps-13422 (13422) [006] d..2 24577.634895: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140118 shell svc 13418-13419 ( 1007) [006] d..2 24577.634902: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140119    RenderThread-25194 (24827) [001] d.h2 24577.634907: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
140120    RenderThread-25194 (24827) [001] d.h3 24577.634918: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
140121          <idle>-0     (-----) [000] .n.1 24577.634923: cpu_idle: state=4294967295 cpu_id=0
140122          <idle>-0     (-----) [000] d..2 24577.634929: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
140123   kworker/u17:2-23076 (23076) [000] d..2 24577.634935: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
140124              ps-13422 (13422) [006] d..2 24577.634939: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140125   kworker/u17:2-23076 (23076) [000] d..3 24577.634941: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
140126              ps-13422 (13422) [006] dn.3 24577.634942: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140127              ps-13422 (13422) [006] d..2 24577.634944: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140128 shell svc 13418-13419 ( 1007) [006] d..2 24577.634952: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140129   kworker/u17:2-23076 (23076) [000] d..2 24577.634957: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
140130     kworker/0:1-13012 (13012) [000] d..2 24577.634961: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
140131     kworker/0:1-13012 (13012) [000] d..3 24577.634970: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
140132          <idle>-0     (-----) [003] .n.1 24577.634975: cpu_idle: state=4294967295 cpu_id=3
140133          <idle>-0     (-----) [003] d..2 24577.634980: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
140134     kworker/0:1-13012 (13012) [000] d..2 24577.634983: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140135              ps-13422 (13422) [006] d..2 24577.634988: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140136          <idle>-0     (-----) [000] d..1 24577.634990: cpu_idle: state=0 cpu_id=0
140137              ps-13422 (13422) [006] dn.3 24577.634991: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140138              ps-13422 (13422) [006] d..2 24577.634994: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140139            adbd-23485 ( 1007) [003] d..2 24577.634997: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140140 shell svc 13418-13419 ( 1007) [006] d..2 24577.635001: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140141          <idle>-0     (-----) [003] d..1 24577.635001: cpu_idle: state=0 cpu_id=3
140142              ps-13422 (13422) [006] d..2 24577.635038: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140143              ps-13422 (13422) [006] dn.3 24577.635042: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140144              ps-13422 (13422) [006] d..2 24577.635044: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140145 shell svc 13418-13419 ( 1007) [006] d..2 24577.635051: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140146    RenderThread-25194 (24827) [001] d.h2 24577.635073: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
140147    RenderThread-25194 (24827) [001] d.h3 24577.635084: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
140148              ps-13422 (13422) [006] d..2 24577.635087: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140149          <idle>-0     (-----) [000] .n.1 24577.635089: cpu_idle: state=4294967295 cpu_id=0
140150              ps-13422 (13422) [006] dn.3 24577.635090: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140151              ps-13422 (13422) [006] d..2 24577.635092: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140152          <idle>-0     (-----) [000] d..2 24577.635095: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
140153 shell svc 13418-13419 ( 1007) [006] d..2 24577.635100: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140154   kworker/u17:2-23076 (23076) [000] d..2 24577.635101: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
140155   kworker/u17:2-23076 (23076) [000] d..3 24577.635106: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
140156   kworker/u17:2-23076 (23076) [000] d..2 24577.635122: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
140157     kworker/0:1-13012 (13012) [000] d..2 24577.635127: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
140158     kworker/0:1-13012 (13012) [000] d..3 24577.635136: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
140159              ps-13422 (13422) [006] d..2 24577.635137: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140160              ps-13422 (13422) [006] dn.3 24577.635140: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140161              ps-13422 (13422) [006] d..2 24577.635142: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140162     kworker/0:1-13012 (13012) [000] d..2 24577.635144: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
140163 shell svc 13418-13419 ( 1007) [006] d..2 24577.635149: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140164            adbd-23484 ( 1007) [000] d..2 24577.635155: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
140165            adbd-23484 ( 1007) [000] d..3 24577.635161: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
140166              ps-13422 (13422) [006] d..2 24577.635185: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140167              ps-13422 (13422) [006] dn.3 24577.635188: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140168              ps-13422 (13422) [006] d..2 24577.635191: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140169 shell svc 13418-13419 ( 1007) [006] d..2 24577.635198: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140170            adbd-23484 ( 1007) [000] d..2 24577.635204: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
140171            adbd-1007  ( 1007) [000] d..1 24577.635271: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
140172            adbd-1007  ( 1007) [000] d..2 24577.635282: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
140173          <idle>-0     (-----) [003] .n.1 24577.635287: cpu_idle: state=4294967295 cpu_id=3
140174          <idle>-0     (-----) [003] d..2 24577.635291: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
140175            adbd-1007  ( 1007) [000] d..2 24577.635316: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140176          <idle>-0     (-----) [000] d..1 24577.635325: cpu_idle: state=0 cpu_id=0
140177            adbd-23485 ( 1007) [003] d..2 24577.635335: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140178          <idle>-0     (-----) [003] d..1 24577.635340: cpu_idle: state=0 cpu_id=3
140179    RenderThread-25194 (24827) [001] d.h2 24577.635342: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
140180    RenderThread-25194 (24827) [001] d.h3 24577.635353: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
140181          <idle>-0     (-----) [000] .n.1 24577.635359: cpu_idle: state=4294967295 cpu_id=0
140182          <idle>-0     (-----) [000] d..2 24577.635365: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
140183   kworker/u17:2-23076 (23076) [000] d..2 24577.635373: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
140184   kworker/u17:2-23076 (23076) [000] d..3 24577.635379: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
140185   kworker/u17:2-23076 (23076) [000] d..2 24577.635395: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
140186     kworker/0:1-13012 (13012) [000] d..2 24577.635400: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
140187     kworker/0:1-13012 (13012) [000] d..3 24577.635409: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
140188          <idle>-0     (-----) [003] .n.1 24577.635414: cpu_idle: state=4294967295 cpu_id=3
140189          <idle>-0     (-----) [003] d..2 24577.635419: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
140190     kworker/0:1-13012 (13012) [000] d..2 24577.635423: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140191          <idle>-0     (-----) [000] d..1 24577.635430: cpu_idle: state=0 cpu_id=0
140192            adbd-23485 ( 1007) [003] d..2 24577.635462: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140193          <idle>-0     (-----) [003] d..1 24577.635467: cpu_idle: state=0 cpu_id=3
140194    RenderThread-25194 (24827) [001] d.h2 24577.635477: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
140195    RenderThread-25194 (24827) [001] d.h3 24577.635488: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
140196          <idle>-0     (-----) [000] .n.1 24577.635493: cpu_idle: state=4294967295 cpu_id=0
140197          <idle>-0     (-----) [000] d..2 24577.635499: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
140198   kworker/u17:2-23076 (23076) [000] d..2 24577.635505: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
140199   kworker/u17:2-23076 (23076) [000] d..3 24577.635511: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
140200   kworker/u17:2-23076 (23076) [000] d..2 24577.635526: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
140201     kworker/0:1-13012 (13012) [000] d..2 24577.635531: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
140202     kworker/0:1-13012 (13012) [000] d..3 24577.635540: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
140203          <idle>-0     (-----) [003] .n.1 24577.635545: cpu_idle: state=4294967295 cpu_id=3
140204          <idle>-0     (-----) [003] d..2 24577.635550: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
140205     kworker/0:1-13012 (13012) [000] d..2 24577.635553: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140206              ps-13422 (13422) [006] d..2 24577.635559: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140207          <idle>-0     (-----) [000] d..1 24577.635559: cpu_idle: state=0 cpu_id=0
140208              ps-13422 (13422) [006] dn.3 24577.635562: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140209              ps-13422 (13422) [006] d..2 24577.635565: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140210            adbd-23485 ( 1007) [003] d..2 24577.635567: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140211          <idle>-0     (-----) [003] d..1 24577.635571: cpu_idle: state=0 cpu_id=3
140212 shell svc 13418-13419 ( 1007) [006] d..2 24577.635574: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140213              ps-13422 (13422) [006] d..2 24577.635578: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140214              ps-13422 (13422) [006] dn.3 24577.635581: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140215              ps-13422 (13422) [006] d..2 24577.635583: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140216 shell svc 13418-13419 ( 1007) [006] d..2 24577.635589: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140217              ps-13422 (13422) [006] d..2 24577.635593: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140218              ps-13422 (13422) [006] dn.3 24577.635595: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140219              ps-13422 (13422) [006] d..2 24577.635597: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140220 shell svc 13418-13419 ( 1007) [006] d..2 24577.635603: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140221              ps-13422 (13422) [006] d..2 24577.635607: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140222              ps-13422 (13422) [006] dn.3 24577.635609: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140223              ps-13422 (13422) [006] d..2 24577.635611: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140224 shell svc 13418-13419 ( 1007) [006] d..2 24577.635617: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140225              ps-13422 (13422) [006] d..2 24577.635621: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140226              ps-13422 (13422) [006] dn.3 24577.635623: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140227              ps-13422 (13422) [006] d..2 24577.635625: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140228 shell svc 13418-13419 ( 1007) [006] d..2 24577.635630: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140229              ps-13422 (13422) [006] d..2 24577.635634: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140230              ps-13422 (13422) [006] dn.3 24577.635636: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140231              ps-13422 (13422) [006] d..2 24577.635638: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140232 shell svc 13418-13419 ( 1007) [006] d..2 24577.635643: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140233    RenderThread-25194 (24827) [001] d.h2 24577.635644: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
140234              ps-13422 (13422) [006] d..2 24577.635647: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140235              ps-13422 (13422) [006] dn.3 24577.635649: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140236              ps-13422 (13422) [006] d..2 24577.635651: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140237    RenderThread-25194 (24827) [001] d.h3 24577.635655: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
140238 shell svc 13418-13419 ( 1007) [006] d..2 24577.635657: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140239          <idle>-0     (-----) [000] .n.1 24577.635659: cpu_idle: state=4294967295 cpu_id=0
140240              ps-13422 (13422) [006] d..2 24577.635661: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140241              ps-13422 (13422) [006] dn.3 24577.635663: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140242              ps-13422 (13422) [006] d..2 24577.635665: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140243          <idle>-0     (-----) [000] d..2 24577.635665: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
140244 shell svc 13418-13419 ( 1007) [006] d..2 24577.635671: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140245   kworker/u17:2-23076 (23076) [000] d..2 24577.635671: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
140246              ps-13422 (13422) [006] d..2 24577.635675: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140247              ps-13422 (13422) [006] dn.3 24577.635677: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140248   kworker/u17:2-23076 (23076) [000] d..3 24577.635677: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
140249              ps-13422 (13422) [006] d..2 24577.635679: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140250 shell svc 13418-13419 ( 1007) [006] d..2 24577.635684: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140251              ps-13422 (13422) [006] d..2 24577.635688: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140252              ps-13422 (13422) [006] dn.3 24577.635690: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140253              ps-13422 (13422) [006] d..2 24577.635693: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140254   kworker/u17:2-23076 (23076) [000] d..2 24577.635693: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
140255     kworker/0:1-13012 (13012) [000] d..2 24577.635698: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
140256 shell svc 13418-13419 ( 1007) [006] d..2 24577.635698: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140257              ps-13422 (13422) [006] d..2 24577.635702: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140258              ps-13422 (13422) [006] dn.3 24577.635705: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140259              ps-13422 (13422) [006] d..2 24577.635707: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140260     kworker/0:1-13012 (13012) [000] d..3 24577.635707: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
140261 shell svc 13418-13419 ( 1007) [006] d..2 24577.635712: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140262              ps-13422 (13422) [006] d..2 24577.635716: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140263     kworker/0:1-13012 (13012) [000] d..2 24577.635716: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
140264              ps-13422 (13422) [006] dn.3 24577.635718: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140265              ps-13422 (13422) [006] d..2 24577.635720: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140266 shell svc 13418-13419 ( 1007) [006] d..2 24577.635726: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140267            adbd-23484 ( 1007) [000] d..2 24577.635726: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
140268              ps-13422 (13422) [006] d..2 24577.635729: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140269              ps-13422 (13422) [006] dn.3 24577.635732: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140270            adbd-23484 ( 1007) [000] d..3 24577.635732: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
140271              ps-13422 (13422) [006] d..2 24577.635733: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140272 shell svc 13418-13419 ( 1007) [006] d..2 24577.635740: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140273              ps-13422 (13422) [006] d..2 24577.635743: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140274              ps-13422 (13422) [006] dn.3 24577.635745: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140275              ps-13422 (13422) [006] d..2 24577.635747: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140276 shell svc 13418-13419 ( 1007) [006] d..2 24577.635753: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140277              ps-13422 (13422) [006] d..2 24577.635757: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140278              ps-13422 (13422) [006] dn.3 24577.635759: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140279              ps-13422 (13422) [006] d..2 24577.635761: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140280 shell svc 13418-13419 ( 1007) [006] d..2 24577.635767: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140281            adbd-23484 ( 1007) [000] d..2 24577.635774: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
140282          <idle>-0     (-----) [002] ...1 24577.635800: cpu_idle: state=4294967295 cpu_id=2
140283          <idle>-0     (-----) [002] d..1 24577.635803: cpu_idle: state=0 cpu_id=2
140284            adbd-1007  ( 1007) [000] d..1 24577.635844: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
140285            adbd-1007  ( 1007) [000] d..2 24577.635855: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
140286          <idle>-0     (-----) [003] .n.1 24577.635859: cpu_idle: state=4294967295 cpu_id=3
140287          <idle>-0     (-----) [003] d..2 24577.635864: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
140288            adbd-1007  ( 1007) [000] d..2 24577.635888: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140289          <idle>-0     (-----) [000] d..1 24577.635896: cpu_idle: state=0 cpu_id=0
140290            adbd-23485 ( 1007) [003] d..2 24577.635908: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140291          <idle>-0     (-----) [003] d..1 24577.635913: cpu_idle: state=0 cpu_id=3
140292    RenderThread-25194 (24827) [001] d.h2 24577.635925: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
140293    RenderThread-25194 (24827) [001] d.h3 24577.635936: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
140294          <idle>-0     (-----) [000] .n.1 24577.635942: cpu_idle: state=4294967295 cpu_id=0
140295          <idle>-0     (-----) [000] d..2 24577.635948: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
140296   kworker/u17:2-23076 (23076) [000] d..2 24577.635956: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
140297   kworker/u17:2-23076 (23076) [000] d..3 24577.635962: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
140298   kworker/u17:2-23076 (23076) [000] d..2 24577.635979: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
140299     kworker/0:1-13012 (13012) [000] d..2 24577.635984: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
140300     kworker/0:1-13012 (13012) [000] d..3 24577.636006: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
140301     kworker/0:1-13012 (13012) [000] d..2 24577.636015: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
140302            adbd-23485 ( 1007) [000] d..2 24577.636064: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140303          <idle>-0     (-----) [000] d..1 24577.636072: cpu_idle: state=0 cpu_id=0
140304              ps-13422 (13422) [006] d..2 24577.636082: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140305              ps-13422 (13422) [006] dn.3 24577.636086: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140306    RenderThread-25194 (24827) [001] d.h2 24577.636087: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
140307              ps-13422 (13422) [006] d..2 24577.636088: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140308 shell svc 13418-13419 ( 1007) [006] d..2 24577.636097: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140309    RenderThread-25194 (24827) [001] d.h3 24577.636098: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
140310              ps-13422 (13422) [006] d..2 24577.636101: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140311          <idle>-0     (-----) [000] .n.1 24577.636103: cpu_idle: state=4294967295 cpu_id=0
140312              ps-13422 (13422) [006] dn.3 24577.636103: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140313              ps-13422 (13422) [006] d..2 24577.636105: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140314          <idle>-0     (-----) [000] d..2 24577.636109: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
140315 shell svc 13418-13419 ( 1007) [006] d..2 24577.636112: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140316   kworker/u17:2-23076 (23076) [000] d..2 24577.636115: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
140317              ps-13422 (13422) [006] d..2 24577.636116: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140318              ps-13422 (13422) [006] dn.3 24577.636118: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140319              ps-13422 (13422) [006] d..2 24577.636120: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140320   kworker/u17:2-23076 (23076) [000] d..3 24577.636122: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
140321 shell svc 13418-13419 ( 1007) [006] d..2 24577.636126: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140322              ps-13422 (13422) [006] d..2 24577.636130: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140323              ps-13422 (13422) [006] dn.3 24577.636132: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140324              ps-13422 (13422) [006] d..2 24577.636134: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140325   kworker/u17:2-23076 (23076) [000] d..2 24577.636137: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
140326 shell svc 13418-13419 ( 1007) [006] d..2 24577.636140: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140327     kworker/0:1-13012 (13012) [000] d..2 24577.636142: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
140328              ps-13422 (13422) [006] d..2 24577.636143: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140329              ps-13422 (13422) [006] dn.3 24577.636145: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140330              ps-13422 (13422) [006] d..2 24577.636147: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140331     kworker/0:1-13012 (13012) [000] d..3 24577.636151: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
140332 shell svc 13418-13419 ( 1007) [006] d..2 24577.636153: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140333              ps-13422 (13422) [006] d..2 24577.636157: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140334     kworker/0:1-13012 (13012) [000] d..2 24577.636159: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
140335              ps-13422 (13422) [006] dn.3 24577.636159: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140336              ps-13422 (13422) [006] d..2 24577.636161: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140337 shell svc 13418-13419 ( 1007) [006] d..2 24577.636167: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140338              ps-13422 (13422) [006] d..2 24577.636170: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140339              ps-13422 (13422) [006] dn.3 24577.636172: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140340              ps-13422 (13422) [006] d..2 24577.636175: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140341            adbd-23485 ( 1007) [000] d..2 24577.636177: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140342 shell svc 13418-13419 ( 1007) [006] d..2 24577.636180: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140343          <idle>-0     (-----) [000] d..1 24577.636184: cpu_idle: state=0 cpu_id=0
140344              ps-13422 (13422) [006] d..2 24577.636184: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140345              ps-13422 (13422) [006] dn.3 24577.636186: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140346              ps-13422 (13422) [006] d..2 24577.636188: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140347 shell svc 13418-13419 ( 1007) [006] d..2 24577.636193: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140348              ps-13422 (13422) [006] d..2 24577.636197: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140349              ps-13422 (13422) [006] dn.3 24577.636199: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140350              ps-13422 (13422) [006] d..2 24577.636201: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140351 shell svc 13418-13419 ( 1007) [006] d..2 24577.636207: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140352              ps-13422 (13422) [006] d..2 24577.636211: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140353              ps-13422 (13422) [006] dn.3 24577.636213: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140354              ps-13422 (13422) [006] d..2 24577.636215: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140355 shell svc 13418-13419 ( 1007) [006] d..2 24577.636220: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140356              ps-13422 (13422) [006] d..2 24577.636224: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140357              ps-13422 (13422) [006] dn.3 24577.636226: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140358              ps-13422 (13422) [006] d..2 24577.636228: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140359 shell svc 13418-13419 ( 1007) [006] d..2 24577.636234: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140360              ps-13422 (13422) [006] d..2 24577.636237: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140361              ps-13422 (13422) [006] dn.3 24577.636239: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140362              ps-13422 (13422) [006] d..2 24577.636242: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140363    RenderThread-25194 (24827) [001] d.h2 24577.636243: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
140364 shell svc 13418-13419 ( 1007) [006] d..2 24577.636247: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140365              ps-13422 (13422) [006] d..2 24577.636251: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140366              ps-13422 (13422) [006] dn.3 24577.636253: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140367              ps-13422 (13422) [006] d..2 24577.636256: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140368 shell svc 13418-13419 ( 1007) [006] d..2 24577.636261: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140369              ps-13422 (13422) [006] d..2 24577.636265: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140370              ps-13422 (13422) [006] dn.3 24577.636268: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140371    RenderThread-25194 (24827) [001] dnh3 24577.636268: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
140372              ps-13422 (13422) [006] d..2 24577.636270: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140373 shell svc 13418-13419 ( 1007) [006] d..2 24577.636275: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140374    RenderThread-25194 (24827) [001] d..2 24577.636277: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
140375   kworker/u17:2-23076 (23076) [001] d..2 24577.636286: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
140376   kworker/u17:2-23076 (23076) [001] d..3 24577.636291: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
140377   kworker/u17:2-23076 (23076) [001] d..2 24577.636308: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
140378              ps-13422 (13422) [006] d..2 24577.636423: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140379              ps-13422 (13422) [006] dn.3 24577.636426: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140380              ps-13422 (13422) [006] d..2 24577.636429: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140381 shell svc 13418-13419 ( 1007) [006] d..2 24577.636437: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140382              ps-13422 (13422) [006] d..2 24577.636441: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140383              ps-13422 (13422) [006] dn.3 24577.636444: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140384              ps-13422 (13422) [006] d..2 24577.636446: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140385 shell svc 13418-13419 ( 1007) [006] d..2 24577.636452: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140386              ps-13422 (13422) [006] d..2 24577.636457: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140387              ps-13422 (13422) [006] dn.3 24577.636459: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140388              ps-13422 (13422) [006] d..2 24577.636461: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140389 shell svc 13418-13419 ( 1007) [006] d..2 24577.636468: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140390              ps-13422 (13422) [006] d..2 24577.636473: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140391              ps-13422 (13422) [006] dn.3 24577.636475: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140392              ps-13422 (13422) [006] d..2 24577.636477: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140393 shell svc 13418-13419 ( 1007) [006] d..2 24577.636484: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140394              ps-13422 (13422) [006] d..2 24577.636487: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140395              ps-13422 (13422) [006] dn.3 24577.636489: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140396              ps-13422 (13422) [006] d..2 24577.636492: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140397 shell svc 13418-13419 ( 1007) [006] d..2 24577.636497: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140398    RenderThread-25194 (24827) [001] d..2 24577.636535: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
140399     kworker/1:1-13091 (13091) [001] d..2 24577.636544: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
140400     kworker/1:1-13091 (13091) [001] d..3 24577.636558: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
140401          <idle>-0     (-----) [000] .n.1 24577.636563: cpu_idle: state=4294967295 cpu_id=0
140402          <idle>-0     (-----) [000] d..2 24577.636569: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
140403     kworker/1:1-13091 (13091) [001] d..2 24577.636574: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140404            adbd-23484 ( 1007) [000] d..2 24577.636579: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
140405          <idle>-0     (-----) [001] d..1 24577.636582: cpu_idle: state=0 cpu_id=1
140406            adbd-23484 ( 1007) [000] d..3 24577.636586: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
140407            adbd-23484 ( 1007) [000] d..2 24577.636627: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
140408              ps-13422 (13422) [006] d..2 24577.636628: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140409              ps-13422 (13422) [006] dn.3 24577.636631: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140410              ps-13422 (13422) [006] d..2 24577.636633: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140411          <idle>-0     (-----) [001] d.h2 24577.636636: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
140412 shell svc 13418-13419 ( 1007) [006] d..2 24577.636641: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140413          <idle>-0     (-----) [001] d.h3 24577.636642: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
140414          <idle>-0     (-----) [001] dnh3 24577.636644: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
140415              ps-13422 (13422) [006] d..2 24577.636646: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140416              ps-13422 (13422) [006] dn.3 24577.636648: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140417          <idle>-0     (-----) [001] .n.1 24577.636650: cpu_idle: state=4294967295 cpu_id=1
140418              ps-13422 (13422) [006] d..2 24577.636650: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140419          <idle>-0     (-----) [001] d..2 24577.636656: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
140420 shell svc 13418-13419 ( 1007) [006] d..2 24577.636656: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140421              ps-13422 (13422) [006] d..2 24577.636660: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140422              ps-13422 (13422) [006] dn.3 24577.636662: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140423              ps-13422 (13422) [006] d..2 24577.636664: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140424 shell svc 13418-13419 ( 1007) [006] d..2 24577.636670: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140425              ps-13422 (13422) [006] d..2 24577.636674: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140426              ps-13422 (13422) [006] dn.3 24577.636676: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140427              ps-13422 (13422) [006] d..2 24577.636678: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140428 shell svc 13418-13419 ( 1007) [006] d..2 24577.636684: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140429              ps-13422 (13422) [006] d..2 24577.636688: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140430              ps-13422 (13422) [006] dn.3 24577.636690: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140431              ps-13422 (13422) [006] d..2 24577.636692: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140432 shell svc 13418-13419 ( 1007) [006] d..2 24577.636698: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140433            adbd-1007  ( 1007) [000] d..1 24577.636706: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
140434            adbd-1007  ( 1007) [000] d..2 24577.636732: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
140435          <idle>-0     (-----) [002] .n.1 24577.636736: cpu_idle: state=4294967295 cpu_id=2
140436              ps-13422 (13422) [006] d..2 24577.636740: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140437          <idle>-0     (-----) [002] d..2 24577.636742: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
140438              ps-13422 (13422) [006] dn.3 24577.636743: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140439              ps-13422 (13422) [006] d..2 24577.636745: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140440 shell svc 13418-13419 ( 1007) [006] d..2 24577.636753: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140441            adbd-1007  ( 1007) [000] d..2 24577.636766: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140442          <idle>-0     (-----) [000] d..1 24577.636774: cpu_idle: state=0 cpu_id=0
140443            adbd-23485 ( 1007) [002] d..2 24577.636792: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
140444              ps-13422 (13422) [006] d..2 24577.636794: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140445              ps-13422 (13422) [006] dn.3 24577.636797: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140446              ps-13422 (13422) [006] d..2 24577.636799: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140447          <idle>-0     (-----) [002] d..1 24577.636800: cpu_idle: state=0 cpu_id=2
140448    RenderThread-25194 (24827) [001] d.h2 24577.636802: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
140449 shell svc 13418-13419 ( 1007) [006] d..2 24577.636807: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140450    RenderThread-25194 (24827) [001] dnh3 24577.636815: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
140451    RenderThread-25194 (24827) [001] d..2 24577.636823: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
140452   kworker/u17:2-23076 (23076) [001] d..2 24577.636831: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
140453   kworker/u17:2-23076 (23076) [001] d..3 24577.636836: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
140454   kworker/u17:2-23076 (23076) [001] d..2 24577.636852: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
140455    RenderThread-25194 (24827) [001] .... 24577.636887: binder_transaction: transaction=1671701 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
140456    RenderThread-25194 (24827) [001] ...2 24577.636932: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
140457    RenderThread-25194 (24827) [001] d..4 24577.636934: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
140458    RenderThread-25194 (24827) [001] d..5 24577.636950: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
140459          <idle>-0     (-----) [000] .n.1 24577.636955: cpu_idle: state=4294967295 cpu_id=0
140460    RenderThread-25194 (24827) [001] d..2 24577.636959: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
140461          <idle>-0     (-----) [000] d..2 24577.636962: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
140462     kworker/1:1-13091 (13091) [001] d..2 24577.636966: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
140463  Binder:23896_4-24423 (23896) [000] .... 24577.636968: binder_transaction_received: transaction=1671701
140464     kworker/1:1-13091 (13091) [001] d..3 24577.636974: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
140465          <idle>-0     (-----) [002] .n.1 24577.636979: cpu_idle: state=4294967295 cpu_id=2
140466          <idle>-0     (-----) [002] d..2 24577.636985: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
140467     kworker/1:1-13091 (13091) [001] d..2 24577.636990: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140468          <idle>-0     (-----) [001] d..1 24577.636999: cpu_idle: state=0 cpu_id=1
140469            adbd-23485 ( 1007) [002] d..2 24577.637030: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
140470          <idle>-0     (-----) [002] d..1 24577.637036: cpu_idle: state=0 cpu_id=2
140471          <idle>-0     (-----) [001] d.h3 24577.637071: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
140472          <idle>-0     (-----) [001] dnh4 24577.637077: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
140473  Binder:23896_4-24423 (23896) [000] .... 24577.637077: binder_transaction: transaction=1671702 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
140474  Binder:23896_4-24423 (23896) [000] d..2 24577.637082: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
140475          <idle>-0     (-----) [001] .n.1 24577.637082: cpu_idle: state=4294967295 cpu_id=1
140476          <idle>-0     (-----) [001] d..2 24577.637089: 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
140477   kworker/u17:2-23076 (23076) [001] d..2 24577.637096: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
140478  Binder:23896_4-24423 (23896) [000] d..3 24577.637099: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
140479   kworker/u17:2-23076 (23076) [001] d..3 24577.637102: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
140480  Binder:23896_4-24423 (23896) [000] .... 24577.637102: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
140481   kworker/u17:2-23076 (23076) [001] d..2 24577.637117: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
140482     kworker/1:1-13091 (13091) [001] d..2 24577.637123: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
140483  Binder:23896_4-24423 (23896) [000] d..2 24577.637129: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
140484     kworker/1:1-13091 (13091) [001] d..3 24577.637131: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
140485    RenderThread-25194 (24827) [000] .... 24577.637133: binder_transaction_received: transaction=1671702
140486          <idle>-0     (-----) [002] .n.1 24577.637136: cpu_idle: state=4294967295 cpu_id=2
140487          <idle>-0     (-----) [002] d..2 24577.637142: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
140488     kworker/1:1-13091 (13091) [001] d..2 24577.637145: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140489          <idle>-0     (-----) [001] d..1 24577.637152: cpu_idle: state=0 cpu_id=1
140490            adbd-23485 ( 1007) [002] d..2 24577.637159: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
140491          <idle>-0     (-----) [002] d..1 24577.637165: cpu_idle: state=0 cpu_id=2
140492    RenderThread-25194 (24827) [000] d..2 24577.637197: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140493          <idle>-0     (-----) [000] d..1 24577.637207: cpu_idle: state=0 cpu_id=0
140494          <idle>-0     (-----) [001] d.h3 24577.637222: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
140495          <idle>-0     (-----) [001] dnh4 24577.637227: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
140496          <idle>-0     (-----) [001] .n.1 24577.637232: cpu_idle: state=4294967295 cpu_id=1
140497          <idle>-0     (-----) [001] d..2 24577.637238: 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
140498   kworker/u17:2-23076 (23076) [001] d..2 24577.637245: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
140499          <idle>-0     (-----) [003] d.h2 24577.637246: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
140500   kworker/u17:2-23076 (23076) [001] d..3 24577.637250: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
140501          <idle>-0     (-----) [003] dnh3 24577.637255: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
140502          <idle>-0     (-----) [003] .n.1 24577.637260: cpu_idle: state=4294967295 cpu_id=3
140503          <idle>-0     (-----) [003] d..2 24577.637264: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
140504   kworker/u17:2-23076 (23076) [001] d..2 24577.637265: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
140505     kworker/1:1-13091 (13091) [001] d..2 24577.637272: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
140506        DispSync-23904 (23896) [003] d..1 24577.637277: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=003
140507     kworker/1:1-13091 (13091) [001] d..3 24577.637280: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
140508          <idle>-0     (-----) [000] .n.1 24577.637286: cpu_idle: state=4294967295 cpu_id=0
140509        DispSync-23904 (23896) [003] d..2 24577.637291: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
140510          <idle>-0     (-----) [000] d..2 24577.637293: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
140511     kworker/1:1-13091 (13091) [001] d..2 24577.637295: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140512          <idle>-0     (-----) [002] .n.1 24577.637296: cpu_idle: state=4294967295 cpu_id=2
140513          <idle>-0     (-----) [001] d..1 24577.637302: cpu_idle: state=0 cpu_id=1
140514          <idle>-0     (-----) [002] d..2 24577.637302: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
140515            adbd-23484 ( 1007) [000] d..2 24577.637305: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
140516        DispSync-23904 (23896) [003] d..2 24577.637310: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140517            adbd-23484 ( 1007) [000] d..3 24577.637312: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
140518          <idle>-0     (-----) [003] d..1 24577.637315: cpu_idle: state=0 cpu_id=3
140519   sfEventThread-23906 (23896) [002] d..3 24577.637333: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
140520   sfEventThread-23906 (23896) [002] d..4 24577.637345: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
140521          <idle>-0     (-----) [001] .n.1 24577.637351: cpu_idle: state=4294967295 cpu_id=1
140522          <idle>-0     (-----) [001] d..2 24577.637356: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
140523            adbd-23484 ( 1007) [000] d..2 24577.637358: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
140524   sfEventThread-23906 (23896) [002] d..2 24577.637364: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
140525          <idle>-0     (-----) [002] d..1 24577.637371: cpu_idle: state=0 cpu_id=2
140526            adbd-1007  ( 1007) [000] d..1 24577.637419: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
140527            adbd-1007  ( 1007) [000] d..2 24577.637430: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
140528          <idle>-0     (-----) [002] .n.1 24577.637435: cpu_idle: state=4294967295 cpu_id=2
140529          <idle>-0     (-----) [002] d..2 24577.637442: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
140530            adbd-1007  ( 1007) [000] d..2 24577.637465: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140531          <idle>-0     (-----) [000] d..1 24577.637473: cpu_idle: state=0 cpu_id=0
140532            adbd-23485 ( 1007) [002] d..2 24577.637489: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
140533          <idle>-0     (-----) [002] d..1 24577.637496: cpu_idle: state=0 cpu_id=2
140534  surfaceflinger-23896 (23896) [001] d.h2 24577.637511: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
140535  surfaceflinger-23896 (23896) [001] d.h3 24577.637525: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
140536          <idle>-0     (-----) [003] d.s2 24577.637561: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
140537          <idle>-0     (-----) [003] dns3 24577.637594: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
140538              ps-13422 (13422) [006] d.H3 24577.637594: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
140539              ps-13422 (13422) [006] d.H4 24577.637601: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
140540              ps-13422 (13422) [006] d.H3 24577.637602: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
140541          <idle>-0     (-----) [003] .n.1 24577.637603: cpu_idle: state=4294967295 cpu_id=3
140542          <idle>-0     (-----) [007] .n.1 24577.637606: cpu_idle: state=4294967295 cpu_id=7
140543          <idle>-0     (-----) [003] d..2 24577.637608: 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
140544          <idle>-0     (-----) [007] d..2 24577.637609: 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
140545     rcu_preempt-7     (    7) [003] d..2 24577.637616: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
140546         sugov:4-560   (  560) [007] .... 24577.637616: clk_set_rate: perfcl_clk 1209600000
140547         sugov:4-560   (  560) [007] .... 24577.637617: clk_set_rate: cpu7_perfcl_clk 2803200000
140548          <idle>-0     (-----) [002] dnh2 24577.637617: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
140549          <idle>-0     (-----) [002] .n.1 24577.637622: cpu_idle: state=4294967295 cpu_id=2
140550         sugov:4-560   (  560) [007] .... 24577.637622: clk_set_rate: cpu6_perfcl_clk 2803200000
140551         sugov:4-560   (  560) [007] .... 24577.637626: clk_set_rate: cpu5_perfcl_clk 2803200000
140552          <idle>-0     (-----) [002] d..2 24577.637628: 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
140553         sugov:4-560   (  560) [007] .... 24577.637630: clk_set_rate: cpu4_perfcl_clk 1209600000
140554         sugov:4-560   (  560) [007] .... 24577.637634: cpu_frequency: state=1209600 cpu_id=4
140555     rcu_preempt-7     (    7) [003] d..3 24577.637642: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=002
140556         sugov:0-559   (  559) [002] d..2 24577.637649: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
140557     rcu_preempt-7     (    7) [003] d..2 24577.637662: 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
140558          <idle>-0     (-----) [003] d..1 24577.637668: cpu_idle: state=0 cpu_id=3
140559  surfaceflinger-23896 (23896) [001] d..1 24577.637680: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
140560  surfaceflinger-23896 (23896) [001] d..2 24577.637704: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
140561          <idle>-0     (-----) [000] .n.1 24577.637710: cpu_idle: state=4294967295 cpu_id=0
140562          <idle>-0     (-----) [000] d..2 24577.637717: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
140563         sugov:4-560   (  560) [007] d..2 24577.637747: 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
140564   sfEventThread-23906 (23896) [000] d..2 24577.637749: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140565          <idle>-0     (-----) [000] d..1 24577.637755: cpu_idle: state=0 cpu_id=0
140566          <idle>-0     (-----) [007] d..1 24577.637758: cpu_idle: state=0 cpu_id=7
140567          <idle>-0     (-----) [003] d.s3 24577.637777: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
140568          <idle>-0     (-----) [003] ...1 24577.637792: cpu_idle: state=4294967295 cpu_id=3
140569          <idle>-0     (-----) [007] dnh2 24577.637795: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
140570          <idle>-0     (-----) [003] d..1 24577.637795: cpu_idle: state=0 cpu_id=3
140571          <idle>-0     (-----) [007] .n.1 24577.637799: cpu_idle: state=4294967295 cpu_id=7
140572          <idle>-0     (-----) [007] d..2 24577.637804: 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
140573         sugov:4-560   (  560) [007] .... 24577.637807: cpu_frequency: state=1209600 cpu_id=5
140574         sugov:4-560   (  560) [007] .... 24577.637810: cpu_frequency: state=1209600 cpu_id=6
140575         sugov:4-560   (  560) [007] .... 24577.637812: cpu_frequency: state=1209600 cpu_id=7
140576         sugov:4-560   (  560) [007] d..2 24577.637821: 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
140577          <idle>-0     (-----) [007] d..1 24577.637825: cpu_idle: state=0 cpu_id=7
140578  surfaceflinger-23896 (23896) [001] ...1 24577.637834: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
140579  surfaceflinger-23896 (23896) [001] ...1 24577.637839: tracing_mark_write: E|23896
140580  surfaceflinger-23896 (23896) [001] .... 24577.637878: binder_transaction: transaction=1671703 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
140581  surfaceflinger-23896 (23896) [001] ...2 24577.637902: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
140582  surfaceflinger-23896 (23896) [001] d..4 24577.637913: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
140583  surfaceflinger-23896 (23896) [001] d..5 24577.637933: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
140584          <idle>-0     (-----) [000] .n.1 24577.637937: cpu_idle: state=4294967295 cpu_id=0
140585          <idle>-0     (-----) [000] d..2 24577.637942: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
140586  surfaceflinger-23896 (23896) [001] d..2 24577.637946: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
140587  HwBinder:598_3-633   (  598) [000] .... 24577.637952: binder_transaction_received: transaction=1671703
140588   kworker/u17:2-23076 (23076) [001] d..2 24577.637954: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
140589   kworker/u17:2-23076 (23076) [001] d..3 24577.637961: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
140590   kworker/u17:2-23076 (23076) [001] d..2 24577.637978: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
140591     kworker/1:1-13091 (13091) [001] d..2 24577.637983: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
140592     kworker/1:1-13091 (13091) [001] d..3 24577.637994: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
140593     kworker/1:1-13091 (13091) [001] d..2 24577.638009: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140594  HwBinder:598_3-633   (  598) [000] ...1 24577.638016: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
140595          <idle>-0     (-----) [001] d..1 24577.638019: cpu_idle: state=0 cpu_id=1
140596  HwBinder:598_3-633   (  598) [000] d.h2 24577.638076: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
140597  HwBinder:598_3-633   (  598) [000] d.h3 24577.638091: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
140598          <idle>-0     (-----) [003] .n.1 24577.638096: cpu_idle: state=4294967295 cpu_id=3
140599          <idle>-0     (-----) [003] d..2 24577.638102: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
140600         rcuop/4-45    (   45) [002] d..2 24577.638111: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
140601 kgsl_worker_thr-246   (  246) [003] d..2 24577.638152: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
140602            adbd-23485 ( 1007) [002] d..2 24577.638161: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
140603 kgsl_worker_thr-246   (  246) [003] d..3 24577.638168: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
140604          <idle>-0     (-----) [002] d..2 24577.638173: 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
140605          <idle>-0     (-----) [001] d.h3 24577.638180: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
140606          <idle>-0     (-----) [001] dnh4 24577.638186: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
140607          <idle>-0     (-----) [001] .n.1 24577.638192: cpu_idle: state=4294967295 cpu_id=1
140608 kgsl_worker_thr-246   (  246) [003] d..2 24577.638196: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140609  HwBinder:598_3-633   (  598) [000] ...1 24577.638196: tracing_mark_write: B|598|HWCSession::PresentDisplay::
140610          <idle>-0     (-----) [001] d..2 24577.638198: 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
140611          <idle>-0     (-----) [003] d..1 24577.638202: cpu_idle: state=0 cpu_id=3
140612   kworker/u17:2-23076 (23076) [001] d..2 24577.638205: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
140613   kworker/u17:2-23076 (23076) [001] d..3 24577.638210: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
140614   kworker/u17:2-23076 (23076) [001] d..2 24577.638226: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
140615     kworker/1:1-13091 (13091) [001] d..2 24577.638231: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
140616     kworker/1:1-13091 (13091) [001] d..3 24577.638255: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
140617          <idle>-0     (-----) [003] .n.1 24577.638259: cpu_idle: state=4294967295 cpu_id=3
140618          <idle>-0     (-----) [003] d..2 24577.638266: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
140619     kworker/1:1-13091 (13091) [001] d..2 24577.638269: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140620          <idle>-0     (-----) [001] d..1 24577.638276: cpu_idle: state=0 cpu_id=1
140621            adbd-23485 ( 1007) [003] d..2 24577.638294: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140622          <idle>-0     (-----) [003] d..1 24577.638300: cpu_idle: state=0 cpu_id=3
140623          <idle>-0     (-----) [001] d.h3 24577.638369: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
140624          <idle>-0     (-----) [001] dnh4 24577.638377: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
140625          <idle>-0     (-----) [001] .n.1 24577.638383: cpu_idle: state=4294967295 cpu_id=1
140626  kworker/u16:10-23868 (23868) [002] d..2 24577.638388: 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
140627          <idle>-0     (-----) [001] d..2 24577.638389: 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
140628  HwBinder:598_3-633   (  598) [000] ...1 24577.638389: tracing_mark_write: B|598|HWDeviceDRM::Commit::
140629          <idle>-0     (-----) [002] d..1 24577.638396: cpu_idle: state=0 cpu_id=2
140630   kworker/u17:2-23076 (23076) [001] d..2 24577.638396: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
140631   kworker/u17:2-23076 (23076) [001] d..3 24577.638401: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
140632  HwBinder:598_3-633   (  598) [000] ...1 24577.638402: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
140633   kworker/u17:2-23076 (23076) [001] d..2 24577.638418: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
140634     kworker/1:1-13091 (13091) [001] d..2 24577.638425: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
140635     kworker/1:1-13091 (13091) [001] d..3 24577.638436: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
140636     kworker/1:1-13091 (13091) [001] d..2 24577.638450: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140637          <idle>-0     (-----) [001] d..1 24577.638457: cpu_idle: state=0 cpu_id=1
140638  HwBinder:598_3-633   (  598) [000] d..2 24577.639040: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
140639  HwBinder:598_3-633   (  598) [000] d..3 24577.639054: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
140640          <idle>-0     (-----) [003] .n.1 24577.639058: cpu_idle: state=4294967295 cpu_id=3
140641          <idle>-0     (-----) [003] d..2 24577.639064: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
140642  HwBinder:598_3-633   (  598) [000] ...1 24577.639142: tracing_mark_write: E|598
140643  HwBinder:598_3-633   (  598) [000] ...1 24577.639146: tracing_mark_write: E|598
140644  HwBinder:598_3-633   (  598) [000] ...1 24577.639215: tracing_mark_write: E|598
140645  HwBinder:598_3-633   (  598) [000] ...1 24577.639277: tracing_mark_write: E|598
140646  HwBinder:598_3-633   (  598) [000] .... 24577.639292: binder_transaction: transaction=1671704 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
140647  HwBinder:598_3-633   (  598) [000] d..2 24577.639306: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
140648  HwBinder:598_3-633   (  598) [000] d..3 24577.639317: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
140649  HwBinder:598_3-633   (  598) [000] .... 24577.639319: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
140650          <idle>-0     (-----) [001] .n.1 24577.639322: cpu_idle: state=4294967295 cpu_id=1
140651          <idle>-0     (-----) [001] d..2 24577.639327: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
140652  surfaceflinger-23896 (23896) [001] .... 24577.639332: binder_transaction_received: transaction=1671704
140653  HwBinder:598_3-633   (  598) [000] d..2 24577.639375: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
140654            adbd-23484 ( 1007) [000] d..2 24577.639389: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
140655            adbd-23484 ( 1007) [000] d..3 24577.639397: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
140656            adbd-23484 ( 1007) [000] d..2 24577.639443: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
140657            adbd-1007  ( 1007) [000] d..2 24577.639509: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140658          <idle>-0     (-----) [000] d..1 24577.639518: cpu_idle: state=0 cpu_id=0
140659          <idle>-0     (-----) [002] ...1 24577.639520: cpu_idle: state=4294967295 cpu_id=2
140660          <idle>-0     (-----) [002] d..1 24577.639522: cpu_idle: state=0 cpu_id=2
140661  surfaceflinger-23896 (23896) [001] d..1 24577.639670: sched_waking: comm=surfaceflinger pid=23930 prio=112 target_cpu=000
140662  surfaceflinger-23896 (23896) [001] d..2 24577.639688: sched_wakeup: comm=surfaceflinger pid=23930 prio=112 target_cpu=000
140663          <idle>-0     (-----) [000] .n.1 24577.639693: cpu_idle: state=4294967295 cpu_id=0
140664          <idle>-0     (-----) [000] d..2 24577.639701: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23930 next_prio=112
140665  surfaceflinger-23896 (23896) [001] d..2 24577.639729: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140666  surfaceflinger-23930 (23896) [000] ...1 24577.639731: tracing_mark_write: B|23896|HIDL::IComposerClient::setVsyncEnabled::client
140667  surfaceflinger-23930 (23896) [000] ...1 24577.639736: tracing_mark_write: E|23896
140668          <idle>-0     (-----) [001] d..1 24577.639738: cpu_idle: state=0 cpu_id=1
140669  surfaceflinger-23930 (23896) [000] .... 24577.639759: binder_transaction: transaction=1671705 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x14
140670  surfaceflinger-23930 (23896) [000] ...2 24577.639764: binder_set_priority: proc=598 thread=633 old=97 => new=112 desired=112
140671  surfaceflinger-23930 (23896) [000] d..4 24577.639769: sched_waking: comm=HwBinder:598_3 pid=633 prio=112 target_cpu=000
140672  surfaceflinger-23930 (23896) [000] d..5 24577.639778: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=112 target_cpu=000
140673  surfaceflinger-23930 (23896) [000] d..2 24577.639787: sched_switch: prev_comm=surfaceflinger prev_pid=23930 prev_prio=112 prev_state=S ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=112
140674  HwBinder:598_3-633   (  598) [000] .... 24577.639792: binder_transaction_received: transaction=1671705
140675 crtc_commit:111-253   (  253) [003] d..2 24577.639799: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
140676          <idle>-0     (-----) [003] d..1 24577.639805: cpu_idle: state=0 cpu_id=3
140677  HwBinder:598_3-633   (  598) [000] ...1 24577.639818: tracing_mark_write: B|598|HIDL::IComposerClient::setVsyncEnabled::server
140678  HwBinder:598_3-633   (  598) [000] ...1 24577.639831: tracing_mark_write: C|598|SetVsyncState |0
140679  HwBinder:598_3-633   (  598) [000] ...1 24577.639849: tracing_mark_write: E|598
140680  HwBinder:598_3-633   (  598) [000] .... 24577.639858: binder_transaction: transaction=1671706 dest_node=0 dest_proc=23896 dest_thread=23930 reply=1 flags=0x0 code=0x0
140681  HwBinder:598_3-633   (  598) [000] d..2 24577.639862: sched_waking: comm=surfaceflinger pid=23930 prio=112 target_cpu=000
140682  HwBinder:598_3-633   (  598) [000] dn.3 24577.639870: sched_wakeup: comm=surfaceflinger pid=23930 prio=112 target_cpu=000
140683  HwBinder:598_3-633   (  598) [000] d..2 24577.639875: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=112 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23930 next_prio=112
140684  surfaceflinger-23930 (23896) [000] .... 24577.639881: binder_transaction_received: transaction=1671706
140685  surfaceflinger-23930 (23896) [000] d..2 24577.639905: sched_switch: prev_comm=surfaceflinger prev_pid=23930 prev_prio=112 prev_state=S ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=112
140686  HwBinder:598_3-633   (  598) [000] .... 24577.639907: binder_set_priority: proc=598 thread=633 old=112 => new=97 desired=97
140687  HwBinder:598_3-633   (  598) [000] d..2 24577.639941: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140688          <idle>-0     (-----) [000] d..1 24577.639950: cpu_idle: state=0 cpu_id=0
140689          <idle>-0     (-----) [001] ...1 24577.640984: cpu_idle: state=4294967295 cpu_id=1
140690          <idle>-0     (-----) [001] d..1 24577.640987: cpu_idle: state=0 cpu_id=1
140691          <idle>-0     (-----) [000] ...1 24577.641128: cpu_idle: state=4294967295 cpu_id=0
140692          <idle>-0     (-----) [000] d..1 24577.641131: cpu_idle: state=0 cpu_id=0
140693              ps-13422 (13422) [006] d..2 24577.641496: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140694              ps-13422 (13422) [006] dn.3 24577.641503: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140695              ps-13422 (13422) [006] d..2 24577.641508: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140696 shell svc 13418-13419 ( 1007) [006] d..2 24577.641522: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
140697 shell svc 13418-13419 ( 1007) [006] d..2 24577.641540: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140698          <idle>-0     (-----) [000] dnh2 24577.641540: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
140699          <idle>-0     (-----) [000] .n.1 24577.641544: cpu_idle: state=4294967295 cpu_id=0
140700          <idle>-0     (-----) [000] d..2 24577.641550: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
140701              ps-13422 (13422) [006] d..2 24577.641551: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140702              ps-13422 (13422) [006] dn.3 24577.641555: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140703              ps-13422 (13422) [006] d..2 24577.641559: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140704 shell svc 13418-13419 ( 1007) [006] d..2 24577.641572: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140705              ps-13422 (13422) [006] d..2 24577.641581: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140706              ps-13422 (13422) [006] dn.3 24577.641584: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140707              ps-13422 (13422) [006] d..2 24577.641587: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140708            adbd-1007  ( 1007) [000] d..1 24577.641593: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
140709 shell svc 13418-13419 ( 1007) [006] d..2 24577.641600: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140710              ps-13422 (13422) [006] d..2 24577.641608: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140711              ps-13422 (13422) [006] dn.3 24577.641612: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140712              ps-13422 (13422) [006] d..2 24577.641615: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140713            adbd-1007  ( 1007) [000] d..2 24577.641620: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
140714          <idle>-0     (-----) [001] .n.1 24577.641624: cpu_idle: state=4294967295 cpu_id=1
140715 shell svc 13418-13419 ( 1007) [006] d..2 24577.641626: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140716          <idle>-0     (-----) [001] d..2 24577.641632: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
140717              ps-13422 (13422) [006] d..2 24577.641635: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140718              ps-13422 (13422) [006] dn.3 24577.641638: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140719              ps-13422 (13422) [006] d..2 24577.641641: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140720 shell svc 13418-13419 ( 1007) [006] d..2 24577.641652: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140721            adbd-1007  ( 1007) [000] d..2 24577.641659: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140722              ps-13422 (13422) [006] d..2 24577.641661: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140723              ps-13422 (13422) [006] dn.3 24577.641664: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140724              ps-13422 (13422) [006] d..2 24577.641667: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140725          <idle>-0     (-----) [000] d..1 24577.641668: cpu_idle: state=0 cpu_id=0
140726 shell svc 13418-13419 ( 1007) [006] d..2 24577.641679: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140727              ps-13422 (13422) [006] d..2 24577.641687: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140728            adbd-23485 ( 1007) [001] d..2 24577.641688: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140729              ps-13422 (13422) [006] dn.3 24577.641691: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140730              ps-13422 (13422) [006] d..2 24577.641694: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140731 shell svc 13418-13419 ( 1007) [006] d..2 24577.641705: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140732          <idle>-0     (-----) [001] d.h4 24577.641706: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
140733              ps-13422 (13422) [006] d..2 24577.641715: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140734          <idle>-0     (-----) [001] dnh5 24577.641716: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
140735              ps-13422 (13422) [006] dn.3 24577.641718: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140736              ps-13422 (13422) [006] d..2 24577.641721: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140737          <idle>-0     (-----) [001] d..2 24577.641724: 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
140738   kworker/u17:2-23076 (23076) [001] d..2 24577.641732: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
140739 shell svc 13418-13419 ( 1007) [006] d..2 24577.641733: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140740   kworker/u17:2-23076 (23076) [001] d..3 24577.641737: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
140741              ps-13422 (13422) [006] d..2 24577.641743: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140742              ps-13422 (13422) [006] dn.3 24577.641746: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140743              ps-13422 (13422) [006] d..2 24577.641749: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140744   kworker/u17:2-23076 (23076) [001] d..2 24577.641755: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
140745     kworker/1:1-13091 (13091) [001] d..2 24577.641760: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
140746 shell svc 13418-13419 ( 1007) [006] d..2 24577.641761: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140747              ps-13422 (13422) [006] d..2 24577.641769: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140748     kworker/1:1-13091 (13091) [001] d..3 24577.641769: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
140749              ps-13422 (13422) [006] dn.3 24577.641772: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140750              ps-13422 (13422) [006] d..2 24577.641776: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140751     kworker/1:1-13091 (13091) [001] d..2 24577.641777: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
140752 shell svc 13418-13419 ( 1007) [006] d..2 24577.641787: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140753              ps-13422 (13422) [006] d..2 24577.641795: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140754              ps-13422 (13422) [006] dn.3 24577.641798: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140755              ps-13422 (13422) [006] d..2 24577.641801: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140756 shell svc 13418-13419 ( 1007) [006] d..2 24577.641813: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140757              ps-13422 (13422) [006] d..2 24577.641820: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140758              ps-13422 (13422) [006] dn.3 24577.641824: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140759            adbd-23485 ( 1007) [001] d..2 24577.641825: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140760              ps-13422 (13422) [006] d..2 24577.641827: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140761 shell svc 13418-13419 ( 1007) [006] d..2 24577.641838: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140762          <idle>-0     (-----) [001] d.h4 24577.641842: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
140763              ps-13422 (13422) [006] d..2 24577.641846: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140764          <idle>-0     (-----) [001] dnh5 24577.641848: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
140765              ps-13422 (13422) [006] dn.3 24577.641850: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140766              ps-13422 (13422) [006] d..2 24577.641853: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140767          <idle>-0     (-----) [001] d..2 24577.641856: 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
140768   kworker/u17:2-23076 (23076) [001] d..2 24577.641863: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
140769 shell svc 13418-13419 ( 1007) [006] d..2 24577.641864: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140770   kworker/u17:2-23076 (23076) [001] d..3 24577.641868: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
140771              ps-13422 (13422) [006] d..2 24577.641872: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140772              ps-13422 (13422) [006] dn.3 24577.641876: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140773              ps-13422 (13422) [006] d..2 24577.641878: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140774   kworker/u17:2-23076 (23076) [001] d..2 24577.641885: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
140775 shell svc 13418-13419 ( 1007) [006] d..2 24577.641890: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140776     kworker/1:1-13091 (13091) [001] d..2 24577.641890: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
140777              ps-13422 (13422) [006] d..2 24577.641898: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140778     kworker/1:1-13091 (13091) [001] d..3 24577.641899: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
140779              ps-13422 (13422) [006] dn.3 24577.641901: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140780              ps-13422 (13422) [006] d..2 24577.641905: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140781     kworker/1:1-13091 (13091) [001] d..2 24577.641907: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
140782 shell svc 13418-13419 ( 1007) [006] d..2 24577.641916: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140783              ps-13422 (13422) [006] d..2 24577.641924: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140784              ps-13422 (13422) [006] dn.3 24577.641927: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140785              ps-13422 (13422) [006] d..2 24577.641931: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140786            adbd-23485 ( 1007) [001] d..2 24577.641931: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140787          <idle>-0     (-----) [001] d..1 24577.641939: cpu_idle: state=0 cpu_id=1
140788 shell svc 13418-13419 ( 1007) [006] d..2 24577.641942: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140789              ps-13422 (13422) [006] d..2 24577.641950: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140790              ps-13422 (13422) [006] dn.3 24577.641954: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140791              ps-13422 (13422) [006] d..2 24577.641957: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140792 shell svc 13418-13419 ( 1007) [006] d..2 24577.641969: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140793              ps-13422 (13422) [006] d..2 24577.641977: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140794              ps-13422 (13422) [006] dn.3 24577.641980: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140795              ps-13422 (13422) [006] d..2 24577.641983: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140796 shell svc 13418-13419 ( 1007) [006] d..2 24577.641995: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140797              ps-13422 (13422) [006] d..2 24577.642002: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140798              ps-13422 (13422) [006] dn.3 24577.642006: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140799              ps-13422 (13422) [006] d..2 24577.642009: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140800          <idle>-0     (-----) [001] d.h3 24577.642020: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
140801 shell svc 13418-13419 ( 1007) [006] d..2 24577.642020: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140802          <idle>-0     (-----) [001] dnh4 24577.642026: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
140803              ps-13422 (13422) [006] d..2 24577.642028: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140804          <idle>-0     (-----) [001] .n.1 24577.642031: cpu_idle: state=4294967295 cpu_id=1
140805              ps-13422 (13422) [006] dn.3 24577.642031: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140806              ps-13422 (13422) [006] d..2 24577.642035: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140807          <idle>-0     (-----) [001] d..2 24577.642037: 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
140808   kworker/u17:2-23076 (23076) [001] d..2 24577.642044: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
140809 shell svc 13418-13419 ( 1007) [006] d..2 24577.642046: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140810   kworker/u17:2-23076 (23076) [001] d..3 24577.642049: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
140811              ps-13422 (13422) [006] d..2 24577.642054: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140812              ps-13422 (13422) [006] dn.3 24577.642058: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140813              ps-13422 (13422) [006] d..2 24577.642061: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140814   kworker/u17:2-23076 (23076) [001] d..2 24577.642067: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
140815 shell svc 13418-13419 ( 1007) [006] d..2 24577.642072: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140816     kworker/1:1-13091 (13091) [001] d..2 24577.642073: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
140817              ps-13422 (13422) [006] d..2 24577.642080: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140818              ps-13422 (13422) [006] dn.3 24577.642083: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140819     kworker/1:1-13091 (13091) [001] d..3 24577.642085: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
140820              ps-13422 (13422) [006] d..2 24577.642086: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140821          <idle>-0     (-----) [000] .n.1 24577.642091: cpu_idle: state=4294967295 cpu_id=0
140822 shell svc 13418-13419 ( 1007) [006] d..2 24577.642098: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140823          <idle>-0     (-----) [000] d..2 24577.642098: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
140824     kworker/1:1-13091 (13091) [001] d..2 24577.642100: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140825              ps-13422 (13422) [006] d..2 24577.642106: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140826          <idle>-0     (-----) [001] d..1 24577.642107: cpu_idle: state=0 cpu_id=1
140827            adbd-23484 ( 1007) [000] d..2 24577.642109: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
140828              ps-13422 (13422) [006] dn.3 24577.642110: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140829              ps-13422 (13422) [006] d..2 24577.642113: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140830            adbd-23484 ( 1007) [000] d..3 24577.642116: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
140831 shell svc 13418-13419 ( 1007) [006] d..2 24577.642124: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140832              ps-13422 (13422) [006] d..2 24577.642133: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140833              ps-13422 (13422) [006] dn.3 24577.642136: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140834              ps-13422 (13422) [006] d..2 24577.642139: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140835 shell svc 13418-13419 ( 1007) [006] d..2 24577.642150: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140836              ps-13422 (13422) [006] d..2 24577.642158: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140837              ps-13422 (13422) [006] dn.3 24577.642162: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140838            adbd-23484 ( 1007) [000] d..2 24577.642164: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
140839              ps-13422 (13422) [006] d..2 24577.642165: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140840 shell svc 13418-13419 ( 1007) [006] d..2 24577.642177: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140841              ps-13422 (13422) [006] d..2 24577.642185: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140842              ps-13422 (13422) [006] dn.3 24577.642190: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140843              ps-13422 (13422) [006] d..2 24577.642193: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140844 shell svc 13418-13419 ( 1007) [006] d..2 24577.642205: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140845              ps-13422 (13422) [006] d..2 24577.642213: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140846              ps-13422 (13422) [006] dn.3 24577.642217: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140847              ps-13422 (13422) [006] d..2 24577.642220: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140848 shell svc 13418-13419 ( 1007) [006] d..2 24577.642232: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140849              ps-13422 (13422) [006] d..2 24577.642240: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140850              ps-13422 (13422) [006] dn.3 24577.642244: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140851              ps-13422 (13422) [006] d..2 24577.642247: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140852            adbd-1007  ( 1007) [000] d..1 24577.642247: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
140853            adbd-1007  ( 1007) [000] d..2 24577.642258: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
140854 shell svc 13418-13419 ( 1007) [006] d..2 24577.642258: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140855          <idle>-0     (-----) [001] .n.1 24577.642264: cpu_idle: state=4294967295 cpu_id=1
140856              ps-13422 (13422) [006] d..2 24577.642267: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140857              ps-13422 (13422) [006] dn.3 24577.642270: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140858          <idle>-0     (-----) [001] d..2 24577.642270: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
140859              ps-13422 (13422) [006] d..2 24577.642273: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140860 shell svc 13418-13419 ( 1007) [006] d..2 24577.642285: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140861            adbd-1007  ( 1007) [000] d..2 24577.642292: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140862              ps-13422 (13422) [006] d..2 24577.642293: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140863              ps-13422 (13422) [006] dn.3 24577.642296: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140864              ps-13422 (13422) [006] d..2 24577.642299: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140865          <idle>-0     (-----) [000] d..1 24577.642301: cpu_idle: state=0 cpu_id=0
140866 shell svc 13418-13419 ( 1007) [006] d..2 24577.642310: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140867              ps-13422 (13422) [006] d..2 24577.642318: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140868            adbd-23485 ( 1007) [001] d..2 24577.642319: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140869              ps-13422 (13422) [006] dn.3 24577.642322: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140870              ps-13422 (13422) [006] d..2 24577.642325: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140871          <idle>-0     (-----) [001] d..1 24577.642326: cpu_idle: state=0 cpu_id=1
140872 shell svc 13418-13419 ( 1007) [006] d..2 24577.642336: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140873              ps-13422 (13422) [006] d..2 24577.642344: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140874          <idle>-0     (-----) [001] d.h3 24577.642345: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
140875              ps-13422 (13422) [006] dn.3 24577.642348: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140876              ps-13422 (13422) [006] d..2 24577.642351: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140877          <idle>-0     (-----) [001] dnh4 24577.642352: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
140878          <idle>-0     (-----) [001] .n.1 24577.642357: cpu_idle: state=4294967295 cpu_id=1
140879 shell svc 13418-13419 ( 1007) [006] d..2 24577.642362: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140880          <idle>-0     (-----) [001] d..2 24577.642363: 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
140881   kworker/u17:2-23076 (23076) [001] d..2 24577.642370: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
140882              ps-13422 (13422) [006] d..2 24577.642371: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140883              ps-13422 (13422) [006] dn.3 24577.642374: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140884   kworker/u17:2-23076 (23076) [001] d..3 24577.642376: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
140885              ps-13422 (13422) [006] d..2 24577.642377: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140886 shell svc 13418-13419 ( 1007) [006] d..2 24577.642388: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140887   kworker/u17:2-23076 (23076) [001] d..2 24577.642394: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
140888              ps-13422 (13422) [006] d..2 24577.642397: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140889     kworker/1:1-13091 (13091) [001] d..2 24577.642400: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
140890              ps-13422 (13422) [006] dn.3 24577.642401: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140891              ps-13422 (13422) [006] d..2 24577.642404: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140892     kworker/1:1-13091 (13091) [001] d..3 24577.642408: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
140893 shell svc 13418-13419 ( 1007) [006] d..2 24577.642415: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140894     kworker/1:1-13091 (13091) [001] d..2 24577.642417: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
140895              ps-13422 (13422) [006] d..2 24577.642424: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140896              ps-13422 (13422) [006] dn.3 24577.642427: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140897              ps-13422 (13422) [006] d..2 24577.642430: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140898 shell svc 13418-13419 ( 1007) [006] d..2 24577.642442: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140899              ps-13422 (13422) [006] d..2 24577.642450: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140900              ps-13422 (13422) [006] dn.3 24577.642454: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140901              ps-13422 (13422) [006] d..2 24577.642457: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140902            adbd-23485 ( 1007) [001] d..2 24577.642466: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140903 shell svc 13418-13419 ( 1007) [006] d..2 24577.642468: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140904          <idle>-0     (-----) [001] d..1 24577.642474: cpu_idle: state=0 cpu_id=1
140905              ps-13422 (13422) [006] d..2 24577.642477: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140906              ps-13422 (13422) [006] dn.3 24577.642481: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140907              ps-13422 (13422) [006] d..2 24577.642484: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140908 shell svc 13418-13419 ( 1007) [006] d..2 24577.642495: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140909              ps-13422 (13422) [006] d..2 24577.642503: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140910              ps-13422 (13422) [006] dn.3 24577.642507: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140911              ps-13422 (13422) [006] d..2 24577.642510: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140912          <idle>-0     (-----) [001] d.h3 24577.642519: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
140913 shell svc 13418-13419 ( 1007) [006] d..2 24577.642521: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140914          <idle>-0     (-----) [001] dnh4 24577.642526: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
140915              ps-13422 (13422) [006] d..2 24577.642529: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140916          <idle>-0     (-----) [001] .n.1 24577.642531: cpu_idle: state=4294967295 cpu_id=1
140917              ps-13422 (13422) [006] dn.3 24577.642533: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140918              ps-13422 (13422) [006] d..2 24577.642536: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140919          <idle>-0     (-----) [001] d..2 24577.642537: 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
140920   kworker/u17:2-23076 (23076) [001] d..2 24577.642545: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
140921 shell svc 13418-13419 ( 1007) [006] d..2 24577.642548: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140922   kworker/u17:2-23076 (23076) [001] d..3 24577.642550: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
140923              ps-13422 (13422) [006] d..2 24577.642556: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140924              ps-13422 (13422) [006] dn.3 24577.642559: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140925              ps-13422 (13422) [006] d..2 24577.642562: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140926   kworker/u17:2-23076 (23076) [001] d..2 24577.642567: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
140927     kworker/1:1-13091 (13091) [001] d..2 24577.642572: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
140928 shell svc 13418-13419 ( 1007) [006] d..2 24577.642574: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140929     kworker/1:1-13091 (13091) [001] d..3 24577.642580: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
140930              ps-13422 (13422) [006] d..2 24577.642583: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140931              ps-13422 (13422) [006] dn.3 24577.642586: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140932     kworker/1:1-13091 (13091) [001] d..2 24577.642589: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
140933              ps-13422 (13422) [006] d..2 24577.642590: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140934 shell svc 13418-13419 ( 1007) [006] d..2 24577.642601: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140935            adbd-23485 ( 1007) [001] d..2 24577.642606: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140936              ps-13422 (13422) [006] d..2 24577.642609: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140937              ps-13422 (13422) [006] dn.3 24577.642613: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140938          <idle>-0     (-----) [001] d..1 24577.642613: cpu_idle: state=0 cpu_id=1
140939              ps-13422 (13422) [006] d..2 24577.642616: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140940 shell svc 13418-13419 ( 1007) [006] d..2 24577.642627: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140941              ps-13422 (13422) [006] d..2 24577.642636: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140942              ps-13422 (13422) [006] dn.3 24577.642639: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140943              ps-13422 (13422) [006] d..2 24577.642643: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140944 shell svc 13418-13419 ( 1007) [006] d..2 24577.642654: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140945              ps-13422 (13422) [006] d..2 24577.642662: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140946              ps-13422 (13422) [006] dn.3 24577.642666: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140947              ps-13422 (13422) [006] d..2 24577.642670: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140948 shell svc 13418-13419 ( 1007) [006] d..2 24577.642682: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140949              ps-13422 (13422) [006] d..2 24577.642690: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140950              ps-13422 (13422) [006] dn.3 24577.642694: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140951              ps-13422 (13422) [006] d..2 24577.642697: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140952 shell svc 13418-13419 ( 1007) [006] d..2 24577.642708: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140953              ps-13422 (13422) [006] d..2 24577.642716: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140954              ps-13422 (13422) [006] dn.3 24577.642720: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140955              ps-13422 (13422) [006] d..2 24577.642723: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140956          <idle>-0     (-----) [001] d.h3 24577.642734: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
140957 shell svc 13418-13419 ( 1007) [006] d..2 24577.642734: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140958          <idle>-0     (-----) [001] dnh4 24577.642739: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
140959              ps-13422 (13422) [006] d..2 24577.642742: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140960          <idle>-0     (-----) [001] .n.1 24577.642745: cpu_idle: state=4294967295 cpu_id=1
140961              ps-13422 (13422) [006] dn.3 24577.642746: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140962              ps-13422 (13422) [006] d..2 24577.642749: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140963          <idle>-0     (-----) [001] d..2 24577.642750: 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
140964   kworker/u17:2-23076 (23076) [001] d..2 24577.642758: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
140965 shell svc 13418-13419 ( 1007) [006] d..2 24577.642760: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140966   kworker/u17:2-23076 (23076) [001] d..3 24577.642764: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
140967              ps-13422 (13422) [006] d..2 24577.642768: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140968              ps-13422 (13422) [006] dn.3 24577.642772: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140969              ps-13422 (13422) [006] d..2 24577.642775: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140970   kworker/u17:2-23076 (23076) [001] d..2 24577.642780: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
140971 shell svc 13418-13419 ( 1007) [006] d..2 24577.642786: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140972     kworker/1:1-13091 (13091) [001] d..2 24577.642786: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
140973              ps-13422 (13422) [006] d..2 24577.642794: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140974     kworker/1:1-13091 (13091) [001] d..3 24577.642795: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
140975              ps-13422 (13422) [006] dn.3 24577.642798: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140976          <idle>-0     (-----) [000] .n.1 24577.642800: cpu_idle: state=4294967295 cpu_id=0
140977              ps-13422 (13422) [006] d..2 24577.642801: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140978          <idle>-0     (-----) [000] d..2 24577.642807: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
140979     kworker/1:1-13091 (13091) [001] d..2 24577.642809: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140980 shell svc 13418-13419 ( 1007) [006] d..2 24577.642813: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140981          <idle>-0     (-----) [001] d..1 24577.642816: cpu_idle: state=0 cpu_id=1
140982            adbd-23484 ( 1007) [000] d..2 24577.642817: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
140983              ps-13422 (13422) [006] d..2 24577.642821: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140984            adbd-23484 ( 1007) [000] d..3 24577.642824: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
140985              ps-13422 (13422) [006] dn.3 24577.642824: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140986              ps-13422 (13422) [006] d..2 24577.642827: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140987 shell svc 13418-13419 ( 1007) [006] d..2 24577.642839: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140988              ps-13422 (13422) [006] d..2 24577.642846: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140989              ps-13422 (13422) [006] dn.3 24577.642850: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140990              ps-13422 (13422) [006] d..2 24577.642853: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140991 shell svc 13418-13419 ( 1007) [006] d..2 24577.642865: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140992            adbd-23484 ( 1007) [000] d..2 24577.642869: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
140993              ps-13422 (13422) [006] d..2 24577.642872: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140994              ps-13422 (13422) [006] dn.3 24577.642876: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140995              ps-13422 (13422) [006] d..2 24577.642879: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
140996 shell svc 13418-13419 ( 1007) [006] d..2 24577.642890: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
140997              ps-13422 (13422) [006] d..2 24577.642899: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140998              ps-13422 (13422) [006] dn.3 24577.642903: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
140999              ps-13422 (13422) [006] d..2 24577.642906: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141000 shell svc 13418-13419 ( 1007) [006] d..2 24577.642918: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141001              ps-13422 (13422) [006] d..2 24577.642926: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141002              ps-13422 (13422) [006] dn.3 24577.642929: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141003              ps-13422 (13422) [006] d..2 24577.642932: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141004 shell svc 13418-13419 ( 1007) [006] d..2 24577.642945: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141005            adbd-1007  ( 1007) [000] d..1 24577.642952: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
141006              ps-13422 (13422) [006] d..2 24577.642953: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141007              ps-13422 (13422) [006] dn.3 24577.642956: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141008              ps-13422 (13422) [006] d..2 24577.642959: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141009            adbd-1007  ( 1007) [000] d..2 24577.642963: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
141010          <idle>-0     (-----) [001] .n.1 24577.642968: cpu_idle: state=4294967295 cpu_id=1
141011 shell svc 13418-13419 ( 1007) [006] d..2 24577.642970: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141012          <idle>-0     (-----) [001] d..2 24577.642975: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
141013              ps-13422 (13422) [006] d..2 24577.642978: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141014              ps-13422 (13422) [006] dn.3 24577.642982: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141015              ps-13422 (13422) [006] d..2 24577.642985: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141016 shell svc 13418-13419 ( 1007) [006] d..2 24577.642997: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141017            adbd-1007  ( 1007) [000] d..2 24577.642997: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141018              ps-13422 (13422) [006] d..2 24577.643005: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141019          <idle>-0     (-----) [000] d..1 24577.643006: cpu_idle: state=0 cpu_id=0
141020              ps-13422 (13422) [006] dn.3 24577.643009: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141021              ps-13422 (13422) [006] d..2 24577.643012: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141022 shell svc 13418-13419 ( 1007) [006] d..2 24577.643023: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141023            adbd-23485 ( 1007) [001] d..2 24577.643025: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141024              ps-13422 (13422) [006] d..2 24577.643031: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141025              ps-13422 (13422) [006] dn.3 24577.643035: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141026              ps-13422 (13422) [006] d..2 24577.643038: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141027          <idle>-0     (-----) [001] d.h4 24577.643042: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141028          <idle>-0     (-----) [001] dnh5 24577.643048: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141029 shell svc 13418-13419 ( 1007) [006] d..2 24577.643049: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141030          <idle>-0     (-----) [001] d..2 24577.643056: 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
141031              ps-13422 (13422) [006] d..2 24577.643057: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141032              ps-13422 (13422) [006] dn.3 24577.643061: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141033   kworker/u17:2-23076 (23076) [001] d..2 24577.643063: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
141034              ps-13422 (13422) [006] d..2 24577.643064: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141035   kworker/u17:2-23076 (23076) [001] d..3 24577.643068: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
141036 shell svc 13418-13419 ( 1007) [006] d..2 24577.643075: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141037              ps-13422 (13422) [006] d..2 24577.643083: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141038   kworker/u17:2-23076 (23076) [001] d..2 24577.643085: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
141039              ps-13422 (13422) [006] dn.3 24577.643087: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141040              ps-13422 (13422) [006] d..2 24577.643090: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141041     kworker/1:1-13091 (13091) [001] d..2 24577.643090: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
141042     kworker/1:1-13091 (13091) [001] d..3 24577.643099: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
141043 shell svc 13418-13419 ( 1007) [006] d..2 24577.643101: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141044     kworker/1:1-13091 (13091) [001] d..2 24577.643107: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
141045              ps-13422 (13422) [006] d..2 24577.643110: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141046              ps-13422 (13422) [006] dn.3 24577.643113: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141047              ps-13422 (13422) [006] d..2 24577.643116: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141048 shell svc 13418-13419 ( 1007) [006] d..2 24577.643127: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141049              ps-13422 (13422) [006] d..2 24577.643135: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141050              ps-13422 (13422) [006] dn.3 24577.643139: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141051              ps-13422 (13422) [006] d..2 24577.643143: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141052 shell svc 13418-13419 ( 1007) [006] d..2 24577.643155: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141053            adbd-23485 ( 1007) [001] d..2 24577.643155: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141054              ps-13422 (13422) [006] d..2 24577.643163: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141055          <idle>-0     (-----) [001] d..1 24577.643163: cpu_idle: state=0 cpu_id=1
141056              ps-13422 (13422) [006] dn.3 24577.643167: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141057              ps-13422 (13422) [006] d..2 24577.643170: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141058 shell svc 13418-13419 ( 1007) [006] d..2 24577.643181: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141059              ps-13422 (13422) [006] d..2 24577.643189: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141060              ps-13422 (13422) [006] dn.3 24577.643192: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141061              ps-13422 (13422) [006] d..2 24577.643195: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141062          <idle>-0     (-----) [001] d.h3 24577.643200: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141063          <idle>-0     (-----) [001] dnh4 24577.643206: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141064 shell svc 13418-13419 ( 1007) [006] d..2 24577.643207: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141065          <idle>-0     (-----) [001] .n.1 24577.643211: cpu_idle: state=4294967295 cpu_id=1
141066              ps-13422 (13422) [006] d..2 24577.643215: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141067          <idle>-0     (-----) [001] d..2 24577.643217: 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
141068              ps-13422 (13422) [006] dn.3 24577.643219: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141069              ps-13422 (13422) [006] d..2 24577.643222: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141070   kworker/u17:2-23076 (23076) [001] d..2 24577.643224: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
141071   kworker/u17:2-23076 (23076) [001] d..3 24577.643230: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
141072 shell svc 13418-13419 ( 1007) [006] d..2 24577.643233: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141073              ps-13422 (13422) [006] d..2 24577.643241: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141074              ps-13422 (13422) [006] dn.3 24577.643245: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141075   kworker/u17:2-23076 (23076) [001] d..2 24577.643247: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
141076              ps-13422 (13422) [006] d..2 24577.643248: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141077     kworker/1:1-13091 (13091) [001] d..2 24577.643252: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
141078 shell svc 13418-13419 ( 1007) [006] d..2 24577.643259: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141079     kworker/1:1-13091 (13091) [001] d..3 24577.643260: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
141080              ps-13422 (13422) [006] d..2 24577.643267: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141081     kworker/1:1-13091 (13091) [001] d..2 24577.643268: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
141082              ps-13422 (13422) [006] dn.3 24577.643271: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141083              ps-13422 (13422) [006] d..2 24577.643274: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141084 shell svc 13418-13419 ( 1007) [006] d..2 24577.643286: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141085            adbd-23485 ( 1007) [001] d..2 24577.643286: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141086          <idle>-0     (-----) [001] d..1 24577.643293: cpu_idle: state=0 cpu_id=1
141087              ps-13422 (13422) [006] d..2 24577.643293: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141088              ps-13422 (13422) [006] dn.3 24577.643297: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141089              ps-13422 (13422) [006] d..2 24577.643300: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141090 shell svc 13418-13419 ( 1007) [006] d..2 24577.643311: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141091              ps-13422 (13422) [006] d..2 24577.643319: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141092              ps-13422 (13422) [006] dn.3 24577.643323: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141093              ps-13422 (13422) [006] d..2 24577.643326: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141094 shell svc 13418-13419 ( 1007) [006] d..2 24577.643337: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141095              ps-13422 (13422) [006] d..2 24577.643345: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141096              ps-13422 (13422) [006] dn.3 24577.643349: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141097              ps-13422 (13422) [006] d..2 24577.643352: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141098 shell svc 13418-13419 ( 1007) [006] d..2 24577.643363: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141099              ps-13422 (13422) [006] d..2 24577.643371: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141100              ps-13422 (13422) [006] dn.3 24577.643375: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141101              ps-13422 (13422) [006] d..2 24577.643378: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141102          <idle>-0     (-----) [001] d.h3 24577.643383: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141103          <idle>-0     (-----) [001] dnh4 24577.643389: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141104 shell svc 13418-13419 ( 1007) [006] d..2 24577.643389: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141105          <idle>-0     (-----) [001] .n.1 24577.643394: cpu_idle: state=4294967295 cpu_id=1
141106              ps-13422 (13422) [006] d..2 24577.643397: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141107          <idle>-0     (-----) [001] d..2 24577.643401: 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
141108              ps-13422 (13422) [006] dn.3 24577.643401: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141109              ps-13422 (13422) [006] d..2 24577.643404: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141110   kworker/u17:2-23076 (23076) [001] d..2 24577.643408: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
141111   kworker/u17:2-23076 (23076) [001] d..3 24577.643414: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
141112 shell svc 13418-13419 ( 1007) [006] d..2 24577.643416: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141113              ps-13422 (13422) [006] d..2 24577.643424: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141114              ps-13422 (13422) [006] dn.3 24577.643427: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141115   kworker/u17:2-23076 (23076) [001] d..2 24577.643430: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
141116              ps-13422 (13422) [006] d..2 24577.643431: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141117     kworker/1:1-13091 (13091) [001] d..2 24577.643437: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
141118 shell svc 13418-13419 ( 1007) [006] d..2 24577.643442: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141119     kworker/1:1-13091 (13091) [001] d..3 24577.643445: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
141120              ps-13422 (13422) [006] d..2 24577.643450: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141121          <idle>-0     (-----) [000] .n.1 24577.643451: cpu_idle: state=4294967295 cpu_id=0
141122              ps-13422 (13422) [006] dn.3 24577.643454: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141123          <idle>-0     (-----) [000] d..2 24577.643458: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
141124              ps-13422 (13422) [006] d..2 24577.643458: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141125     kworker/1:1-13091 (13091) [001] d..2 24577.643460: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141126          <idle>-0     (-----) [001] d..1 24577.643466: cpu_idle: state=0 cpu_id=1
141127            adbd-23484 ( 1007) [000] d..2 24577.643467: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
141128 shell svc 13418-13419 ( 1007) [006] d..2 24577.643469: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141129            adbd-23484 ( 1007) [000] d..3 24577.643474: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
141130              ps-13422 (13422) [006] d..2 24577.643478: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141131              ps-13422 (13422) [006] dn.3 24577.643481: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141132              ps-13422 (13422) [006] d..2 24577.643485: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141133 shell svc 13418-13419 ( 1007) [006] d..2 24577.643496: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141134              ps-13422 (13422) [006] d..2 24577.643504: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141135              ps-13422 (13422) [006] dn.3 24577.643507: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141136              ps-13422 (13422) [006] d..2 24577.643510: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141137            adbd-23484 ( 1007) [000] d..2 24577.643521: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
141138 shell svc 13418-13419 ( 1007) [006] d..2 24577.643521: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141139              ps-13422 (13422) [006] d..2 24577.643530: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141140              ps-13422 (13422) [006] dn.3 24577.643534: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141141              ps-13422 (13422) [006] d..2 24577.643537: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141142 shell svc 13418-13419 ( 1007) [006] d..2 24577.643548: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141143              ps-13422 (13422) [006] d..2 24577.643556: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141144              ps-13422 (13422) [006] dn.3 24577.643560: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141145              ps-13422 (13422) [006] d..2 24577.643563: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141146 shell svc 13418-13419 ( 1007) [006] d..2 24577.643574: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141147              ps-13422 (13422) [006] d..2 24577.643582: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141148              ps-13422 (13422) [006] dn.3 24577.643586: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141149              ps-13422 (13422) [006] d..2 24577.643589: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141150 shell svc 13418-13419 ( 1007) [006] d..2 24577.643601: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141151            adbd-1007  ( 1007) [000] d..1 24577.643603: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
141152              ps-13422 (13422) [006] d..2 24577.643609: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141153              ps-13422 (13422) [006] dn.3 24577.643612: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141154              ps-13422 (13422) [006] d..2 24577.643617: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141155            adbd-1007  ( 1007) [000] d..2 24577.643624: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
141156 shell svc 13418-13419 ( 1007) [006] d..2 24577.643628: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141157          <idle>-0     (-----) [001] .n.1 24577.643629: cpu_idle: state=4294967295 cpu_id=1
141158          <idle>-0     (-----) [001] d..2 24577.643635: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
141159              ps-13422 (13422) [006] d..2 24577.643637: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141160              ps-13422 (13422) [006] dn.3 24577.643640: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141161              ps-13422 (13422) [006] d..2 24577.643643: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141162 shell svc 13418-13419 ( 1007) [006] d..2 24577.643655: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141163            adbd-1007  ( 1007) [000] d..2 24577.643659: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141164              ps-13422 (13422) [006] d..2 24577.643662: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141165              ps-13422 (13422) [006] dn.3 24577.643666: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141166          <idle>-0     (-----) [000] d..1 24577.643667: cpu_idle: state=0 cpu_id=0
141167              ps-13422 (13422) [006] d..2 24577.643669: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141168 shell svc 13418-13419 ( 1007) [006] d..2 24577.643680: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141169            adbd-23485 ( 1007) [001] d..2 24577.643684: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141170              ps-13422 (13422) [006] d..2 24577.643688: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141171              ps-13422 (13422) [006] dn.3 24577.643692: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141172              ps-13422 (13422) [006] d..2 24577.643695: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141173          <idle>-0     (-----) [001] d.h4 24577.643701: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141174 shell svc 13418-13419 ( 1007) [006] d..2 24577.643706: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141175          <idle>-0     (-----) [001] dnh5 24577.643708: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141176              ps-13422 (13422) [006] d..2 24577.643714: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141177          <idle>-0     (-----) [001] d..2 24577.643715: 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
141178              ps-13422 (13422) [006] dn.3 24577.643717: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141179              ps-13422 (13422) [006] d..2 24577.643720: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141180   kworker/u17:2-23076 (23076) [001] d..2 24577.643723: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
141181   kworker/u17:2-23076 (23076) [001] d..3 24577.643728: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
141182 shell svc 13418-13419 ( 1007) [006] d..2 24577.643732: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141183              ps-13422 (13422) [006] d..2 24577.643740: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141184              ps-13422 (13422) [006] dn.3 24577.643743: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141185   kworker/u17:2-23076 (23076) [001] d..2 24577.643745: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
141186              ps-13422 (13422) [006] d..2 24577.643746: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141187     kworker/1:1-13091 (13091) [001] d..2 24577.643750: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
141188 shell svc 13418-13419 ( 1007) [006] d..2 24577.643758: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141189     kworker/1:1-13091 (13091) [001] d..3 24577.643758: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
141190              ps-13422 (13422) [006] d..2 24577.643765: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141191     kworker/1:1-13091 (13091) [001] d..2 24577.643767: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
141192              ps-13422 (13422) [006] dn.3 24577.643769: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141193              ps-13422 (13422) [006] d..2 24577.643772: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141194 shell svc 13418-13419 ( 1007) [006] d..2 24577.643783: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141195              ps-13422 (13422) [006] d..2 24577.643791: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141196              ps-13422 (13422) [006] dn.3 24577.643794: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141197              ps-13422 (13422) [006] d..2 24577.643797: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141198 shell svc 13418-13419 ( 1007) [006] d..2 24577.643808: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141199            adbd-23485 ( 1007) [001] d..2 24577.643814: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141200              ps-13422 (13422) [006] d..2 24577.643816: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141201              ps-13422 (13422) [006] dn.3 24577.643820: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141202          <idle>-0     (-----) [001] d..1 24577.643822: cpu_idle: state=0 cpu_id=1
141203              ps-13422 (13422) [006] d..2 24577.643823: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141204 shell svc 13418-13419 ( 1007) [006] d..2 24577.643835: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141205              ps-13422 (13422) [006] d..2 24577.643843: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141206              ps-13422 (13422) [006] dn.3 24577.643847: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141207              ps-13422 (13422) [006] d..2 24577.643850: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141208 shell svc 13418-13419 ( 1007) [006] d..2 24577.643861: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141209          <idle>-0     (-----) [001] d.h3 24577.643864: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141210              ps-13422 (13422) [006] d..2 24577.643869: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141211              ps-13422 (13422) [006] dn.3 24577.643872: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141212          <idle>-0     (-----) [001] dnh4 24577.643873: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141213              ps-13422 (13422) [006] d..2 24577.643875: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141214          <idle>-0     (-----) [001] .n.1 24577.643878: cpu_idle: state=4294967295 cpu_id=1
141215          <idle>-0     (-----) [001] d..2 24577.643884: 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
141216 shell svc 13418-13419 ( 1007) [006] d..2 24577.643887: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141217   kworker/u17:2-23076 (23076) [001] d..2 24577.643892: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
141218              ps-13422 (13422) [006] d..2 24577.643895: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141219              ps-13422 (13422) [006] dn.3 24577.643898: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141220   kworker/u17:2-23076 (23076) [001] d..3 24577.643899: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
141221              ps-13422 (13422) [006] d..2 24577.643901: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141222 shell svc 13418-13419 ( 1007) [006] d..2 24577.643913: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141223   kworker/u17:2-23076 (23076) [001] d..2 24577.643916: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
141224              ps-13422 (13422) [006] d..2 24577.643920: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141225     kworker/1:1-13091 (13091) [001] d..2 24577.643921: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
141226              ps-13422 (13422) [006] dn.3 24577.643924: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141227              ps-13422 (13422) [006] d..2 24577.643927: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141228     kworker/1:1-13091 (13091) [001] d..3 24577.643930: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
141229     kworker/1:1-13091 (13091) [001] d..2 24577.643938: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
141230 shell svc 13418-13419 ( 1007) [006] d..2 24577.643938: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141231              ps-13422 (13422) [006] d..2 24577.643946: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141232              ps-13422 (13422) [006] dn.3 24577.643950: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141233              ps-13422 (13422) [006] d..2 24577.643953: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141234            adbd-23485 ( 1007) [001] d..2 24577.643955: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141235          <idle>-0     (-----) [001] d..1 24577.643963: cpu_idle: state=0 cpu_id=1
141236 shell svc 13418-13419 ( 1007) [006] d..2 24577.643964: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141237              ps-13422 (13422) [006] d..2 24577.643973: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141238              ps-13422 (13422) [006] dn.3 24577.643976: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141239              ps-13422 (13422) [006] d..2 24577.643980: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141240 shell svc 13418-13419 ( 1007) [006] d..2 24577.643991: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141241              ps-13422 (13422) [006] d..2 24577.643998: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141242              ps-13422 (13422) [006] dn.3 24577.644002: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141243              ps-13422 (13422) [006] d..2 24577.644005: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141244 shell svc 13418-13419 ( 1007) [006] d..2 24577.644017: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141245              ps-13422 (13422) [006] d..2 24577.644025: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141246              ps-13422 (13422) [006] dn.3 24577.644028: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141247              ps-13422 (13422) [006] d..2 24577.644031: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141248 shell svc 13418-13419 ( 1007) [006] d..2 24577.644043: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141249              ps-13422 (13422) [006] d..2 24577.644051: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141250              ps-13422 (13422) [006] dn.3 24577.644055: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141251              ps-13422 (13422) [006] d..2 24577.644058: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141252 shell svc 13418-13419 ( 1007) [006] d..2 24577.644070: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141253          <idle>-0     (-----) [001] d.h3 24577.644072: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141254              ps-13422 (13422) [006] d..2 24577.644077: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141255          <idle>-0     (-----) [001] dnh4 24577.644078: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141256              ps-13422 (13422) [006] dn.3 24577.644081: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141257          <idle>-0     (-----) [001] .n.1 24577.644083: cpu_idle: state=4294967295 cpu_id=1
141258              ps-13422 (13422) [006] d..2 24577.644085: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141259          <idle>-0     (-----) [001] d..2 24577.644089: 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
141260   kworker/u17:2-23076 (23076) [001] d..2 24577.644096: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
141261 shell svc 13418-13419 ( 1007) [006] d..2 24577.644097: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141262   kworker/u17:2-23076 (23076) [001] d..3 24577.644101: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
141263              ps-13422 (13422) [006] d..2 24577.644104: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141264              ps-13422 (13422) [006] dn.3 24577.644108: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141265              ps-13422 (13422) [006] d..2 24577.644111: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141266   kworker/u17:2-23076 (23076) [001] d..2 24577.644118: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
141267 shell svc 13418-13419 ( 1007) [006] d..2 24577.644123: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141268     kworker/1:1-13091 (13091) [001] d..2 24577.644124: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
141269              ps-13422 (13422) [006] d..2 24577.644130: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141270              ps-13422 (13422) [006] dn.3 24577.644134: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141271     kworker/1:1-13091 (13091) [001] d..3 24577.644136: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
141272              ps-13422 (13422) [006] d..2 24577.644137: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141273          <idle>-0     (-----) [000] .n.1 24577.644142: cpu_idle: state=4294967295 cpu_id=0
141274 shell svc 13418-13419 ( 1007) [006] d..2 24577.644149: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141275          <idle>-0     (-----) [000] d..2 24577.644149: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
141276     kworker/1:1-13091 (13091) [001] d..2 24577.644151: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141277              ps-13422 (13422) [006] d..2 24577.644157: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141278          <idle>-0     (-----) [001] d..1 24577.644158: cpu_idle: state=0 cpu_id=1
141279            adbd-23484 ( 1007) [000] d..2 24577.644159: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
141280              ps-13422 (13422) [006] dn.3 24577.644161: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141281              ps-13422 (13422) [006] d..2 24577.644164: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141282            adbd-23484 ( 1007) [000] d..3 24577.644165: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
141283 shell svc 13418-13419 ( 1007) [006] d..2 24577.644175: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141284              ps-13422 (13422) [006] d..2 24577.644183: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141285              ps-13422 (13422) [006] dn.3 24577.644187: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141286              ps-13422 (13422) [006] d..2 24577.644190: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141287 shell svc 13418-13419 ( 1007) [006] d..2 24577.644201: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141288              ps-13422 (13422) [006] d..2 24577.644209: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141289            adbd-23484 ( 1007) [000] d..2 24577.644210: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
141290              ps-13422 (13422) [006] dn.3 24577.644212: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141291              ps-13422 (13422) [006] dns3 24577.644229: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
141292          <idle>-0     (-----) [003] d.s2 24577.644230: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
141293          <idle>-0     (-----) [003] dns3 24577.644242: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
141294          <idle>-0     (-----) [003] .n.1 24577.644249: cpu_idle: state=4294967295 cpu_id=3
141295          <idle>-0     (-----) [001] dnh2 24577.644257: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
141296          <idle>-0     (-----) [003] d..2 24577.644257: 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
141297          <idle>-0     (-----) [001] .n.1 24577.644261: cpu_idle: state=4294967295 cpu_id=1
141298          <idle>-0     (-----) [005] .n.1 24577.644266: cpu_idle: state=4294967295 cpu_id=5
141299          <idle>-0     (-----) [001] d..2 24577.644268: 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
141300          <idle>-0     (-----) [004] ...1 24577.644271: cpu_idle: state=4294967295 cpu_id=4
141301          <idle>-0     (-----) [004] d..1 24577.644275: cpu_idle: state=0 cpu_id=4
141302     rcu_preempt-7     (    7) [003] d..2 24577.644276: 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
141303          <idle>-0     (-----) [005] d..2 24577.644276: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141304          <idle>-0     (-----) [003] d..1 24577.644281: cpu_idle: state=0 cpu_id=3
141305            adbd-1007  ( 1007) [000] d..1 24577.644331: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
141306            adbd-1007  ( 1007) [000] d..2 24577.644345: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
141307 shell svc 13418-13419 ( 1007) [005] d..2 24577.644364: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
141308          <idle>-0     (-----) [005] d..1 24577.644371: cpu_idle: state=0 cpu_id=5
141309            adbd-1007  ( 1007) [000] d..2 24577.644380: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141310          <idle>-0     (-----) [000] d..1 24577.644389: cpu_idle: state=0 cpu_id=0
141311  kworker/u16:10-23868 (23868) [001] .... 24577.644400: clk_set_rate: l3_cluster1_vote_clk 1209600000
141312  kworker/u16:10-23868 (23868) [001] .... 24577.644407: clk_set_rate: l3_clk 1209600000
141313          <idle>-0     (-----) [003] ...1 24577.644635: cpu_idle: state=4294967295 cpu_id=3
141314          <idle>-0     (-----) [003] d..1 24577.644638: cpu_idle: state=0 cpu_id=3
141315  kworker/u16:10-23868 (23868) [001] d..2 24577.644677: 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
141316            adbd-23485 ( 1007) [001] d..2 24577.644729: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141317          <idle>-0     (-----) [001] d.h4 24577.644747: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141318          <idle>-0     (-----) [001] dnh5 24577.644754: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141319          <idle>-0     (-----) [001] d..2 24577.644763: 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
141320   kworker/u17:2-23076 (23076) [001] d..2 24577.644770: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
141321   kworker/u17:2-23076 (23076) [001] d..3 24577.644776: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
141322   kworker/u17:2-23076 (23076) [001] d..2 24577.644793: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
141323     kworker/1:1-13091 (13091) [001] d..2 24577.644798: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
141324     kworker/1:1-13091 (13091) [001] d..3 24577.644815: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
141325          <idle>-0     (-----) [000] .n.1 24577.644820: cpu_idle: state=4294967295 cpu_id=0
141326          <idle>-0     (-----) [000] d..2 24577.644827: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
141327     kworker/1:1-13091 (13091) [001] d..2 24577.644829: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141328          <idle>-0     (-----) [001] d..1 24577.644837: cpu_idle: state=0 cpu_id=1
141329            adbd-23485 ( 1007) [000] d..2 24577.644883: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141330              ps-13422 (13422) [006] d..2 24577.644890: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=005
141331          <idle>-0     (-----) [000] d..1 24577.644891: cpu_idle: state=0 cpu_id=0
141332              ps-13422 (13422) [006] dn.3 24577.644901: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141333              ps-13422 (13422) [006] d..2 24577.644906: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141334 shell svc 13418-13419 ( 1007) [006] d..2 24577.644927: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141335          <idle>-0     (-----) [001] d.h3 24577.644933: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141336              ps-13422 (13422) [006] d..2 24577.644937: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141337          <idle>-0     (-----) [001] dnh4 24577.644939: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141338              ps-13422 (13422) [006] dn.3 24577.644941: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141339              ps-13422 (13422) [006] d..2 24577.644944: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141340          <idle>-0     (-----) [001] .n.1 24577.644945: cpu_idle: state=4294967295 cpu_id=1
141341          <idle>-0     (-----) [001] d..2 24577.644951: 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
141342 shell svc 13418-13419 ( 1007) [006] d..2 24577.644958: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141343   kworker/u17:2-23076 (23076) [001] d..2 24577.644959: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
141344   kworker/u17:2-23076 (23076) [001] d..3 24577.644964: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
141345              ps-13422 (13422) [006] d..2 24577.644967: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141346              ps-13422 (13422) [006] dn.3 24577.644971: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141347              ps-13422 (13422) [006] d..2 24577.644974: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141348   kworker/u17:2-23076 (23076) [001] d..2 24577.644981: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
141349 shell svc 13418-13419 ( 1007) [006] d..2 24577.644987: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141350     kworker/1:1-13091 (13091) [001] d..2 24577.644987: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
141351              ps-13422 (13422) [006] d..2 24577.644995: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141352     kworker/1:1-13091 (13091) [001] d..3 24577.644996: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
141353              ps-13422 (13422) [006] dn.3 24577.644998: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141354          <idle>-0     (-----) [000] .n.1 24577.645001: cpu_idle: state=4294967295 cpu_id=0
141355              ps-13422 (13422) [006] d..2 24577.645002: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141356          <idle>-0     (-----) [000] d..2 24577.645007: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
141357     kworker/1:1-13091 (13091) [001] d..2 24577.645011: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141358 shell svc 13418-13419 ( 1007) [006] d..2 24577.645013: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141359          <idle>-0     (-----) [001] d..1 24577.645018: cpu_idle: state=0 cpu_id=1
141360              ps-13422 (13422) [006] d..2 24577.645021: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141361              ps-13422 (13422) [006] dn.3 24577.645025: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141362              ps-13422 (13422) [006] d..2 24577.645028: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141363            adbd-23485 ( 1007) [000] d..2 24577.645030: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141364          <idle>-0     (-----) [000] d..1 24577.645037: cpu_idle: state=0 cpu_id=0
141365 shell svc 13418-13419 ( 1007) [006] d..2 24577.645040: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141366              ps-13422 (13422) [006] d..2 24577.645049: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141367              ps-13422 (13422) [006] dn.3 24577.645052: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141368              ps-13422 (13422) [006] d..2 24577.645056: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141369 shell svc 13418-13419 ( 1007) [006] d..2 24577.645068: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141370              ps-13422 (13422) [006] d..2 24577.645077: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141371              ps-13422 (13422) [006] dn.3 24577.645082: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141372              ps-13422 (13422) [006] d..2 24577.645085: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141373 shell svc 13418-13419 ( 1007) [006] d..2 24577.645097: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141374              ps-13422 (13422) [006] d..2 24577.645105: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141375              ps-13422 (13422) [006] dn.3 24577.645109: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141376              ps-13422 (13422) [006] d..2 24577.645113: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141377 shell svc 13418-13419 ( 1007) [006] d..2 24577.645124: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141378              ps-13422 (13422) [006] d..2 24577.645133: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141379              ps-13422 (13422) [006] dn.3 24577.645137: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141380              ps-13422 (13422) [006] d..2 24577.645140: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141381          <idle>-0     (-----) [001] d.h3 24577.645145: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141382          <idle>-0     (-----) [001] dnh4 24577.645151: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141383 shell svc 13418-13419 ( 1007) [006] d..2 24577.645152: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141384          <idle>-0     (-----) [001] .n.1 24577.645157: cpu_idle: state=4294967295 cpu_id=1
141385              ps-13422 (13422) [006] d..2 24577.645161: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141386          <idle>-0     (-----) [001] d..2 24577.645163: 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
141387              ps-13422 (13422) [006] dn.3 24577.645165: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141388              ps-13422 (13422) [006] d..2 24577.645168: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141389   kworker/u17:2-23076 (23076) [001] d..2 24577.645172: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
141390   kworker/u17:2-23076 (23076) [001] d..3 24577.645177: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
141391 shell svc 13418-13419 ( 1007) [006] d..2 24577.645179: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141392   kworker/u17:2-23076 (23076) [001] d..2 24577.645195: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
141393     kworker/1:1-13091 (13091) [001] d..2 24577.645203: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
141394     kworker/1:1-13091 (13091) [001] d..3 24577.645211: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
141395          <idle>-0     (-----) [000] .n.1 24577.645216: cpu_idle: state=4294967295 cpu_id=0
141396          <idle>-0     (-----) [000] d..2 24577.645222: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
141397     kworker/1:1-13091 (13091) [001] d..2 24577.645226: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141398            adbd-23484 ( 1007) [000] d..2 24577.645233: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
141399          <idle>-0     (-----) [001] d..1 24577.645234: cpu_idle: state=0 cpu_id=1
141400            adbd-23484 ( 1007) [000] d..3 24577.645240: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
141401            adbd-23484 ( 1007) [000] d..2 24577.645287: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
141402            adbd-1007  ( 1007) [000] d.h4 24577.645393: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
141403            adbd-1007  ( 1007) [000] d.h5 24577.645408: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
141404          <idle>-0     (-----) [003] .n.1 24577.645412: cpu_idle: state=4294967295 cpu_id=3
141405            adbd-1007  ( 1007) [000] d.h4 24577.645413: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
141406          <idle>-0     (-----) [003] d..2 24577.645418: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
141407            adbd-1007  ( 1007) [000] d.h5 24577.645435: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
141408          <idle>-0     (-----) [002] .n.1 24577.645439: cpu_idle: state=4294967295 cpu_id=2
141409          <idle>-0     (-----) [002] d..2 24577.645446: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
141410  crtc_event:111-254   (  254) [003] d..2 24577.645450: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141411          <idle>-0     (-----) [003] d..1 24577.645455: cpu_idle: state=0 cpu_id=3
141412            adbd-1007  ( 1007) [000] d..1 24577.645509: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
141413            adbd-1007  ( 1007) [000] d..2 24577.645533: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
141414            adbd-1007  ( 1007) [000] d..2 24577.645568: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141415          <idle>-0     (-----) [000] d..1 24577.645577: cpu_idle: state=0 cpu_id=0
141416 crtc_commit:111-253   (  253) [002] d..2 24577.645605: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=adbd next_pid=23485 next_prio=120
141417            adbd-23485 ( 1007) [002] d..2 24577.645658: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
141418          <idle>-0     (-----) [002] d..1 24577.645664: cpu_idle: state=0 cpu_id=2
141419          <idle>-0     (-----) [001] d.h3 24577.645681: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141420          <idle>-0     (-----) [001] dnh4 24577.645686: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141421          <idle>-0     (-----) [001] .n.1 24577.645692: cpu_idle: state=4294967295 cpu_id=1
141422          <idle>-0     (-----) [001] d..2 24577.645698: 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
141423   kworker/u17:2-23076 (23076) [001] d..2 24577.645707: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
141424   kworker/u17:2-23076 (23076) [001] d..3 24577.645712: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
141425   kworker/u17:2-23076 (23076) [001] d..2 24577.645729: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
141426     kworker/1:1-13091 (13091) [001] d..2 24577.645736: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
141427     kworker/1:1-13091 (13091) [001] d..3 24577.645759: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
141428          <idle>-0     (-----) [000] .n.1 24577.645764: cpu_idle: state=4294967295 cpu_id=0
141429          <idle>-0     (-----) [000] d..2 24577.645773: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
141430     kworker/1:1-13091 (13091) [001] d..2 24577.645774: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141431          <idle>-0     (-----) [001] d..1 24577.645782: cpu_idle: state=0 cpu_id=1
141432            adbd-23485 ( 1007) [000] d..2 24577.645833: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141433          <idle>-0     (-----) [000] d..1 24577.645840: cpu_idle: state=0 cpu_id=0
141434          <idle>-0     (-----) [001] d.h3 24577.645859: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141435          <idle>-0     (-----) [001] dnh4 24577.645865: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141436          <idle>-0     (-----) [001] .n.1 24577.645871: cpu_idle: state=4294967295 cpu_id=1
141437          <idle>-0     (-----) [001] d..2 24577.645877: 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
141438   kworker/u17:2-23076 (23076) [001] d..2 24577.645884: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
141439   kworker/u17:2-23076 (23076) [001] d..3 24577.645890: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
141440   kworker/u17:2-23076 (23076) [001] d..2 24577.645908: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
141441     kworker/1:1-13091 (13091) [001] d..2 24577.645914: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
141442     kworker/1:1-13091 (13091) [001] d..3 24577.645923: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
141443          <idle>-0     (-----) [000] .n.1 24577.645928: cpu_idle: state=4294967295 cpu_id=0
141444          <idle>-0     (-----) [000] d..2 24577.645935: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
141445     kworker/1:1-13091 (13091) [001] d..2 24577.645937: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141446          <idle>-0     (-----) [001] d..1 24577.645944: cpu_idle: state=0 cpu_id=1
141447            adbd-23485 ( 1007) [000] d..2 24577.645953: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141448          <idle>-0     (-----) [000] d..1 24577.645960: cpu_idle: state=0 cpu_id=0
141449          <idle>-0     (-----) [001] d.h3 24577.646065: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141450          <idle>-0     (-----) [001] dnh4 24577.646074: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141451          <idle>-0     (-----) [001] .n.1 24577.646080: cpu_idle: state=4294967295 cpu_id=1
141452          <idle>-0     (-----) [001] d..2 24577.646086: 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
141453   kworker/u17:2-23076 (23076) [001] d..2 24577.646095: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
141454   kworker/u17:2-23076 (23076) [001] d..3 24577.646100: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
141455   kworker/u17:2-23076 (23076) [001] d..2 24577.646117: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
141456     kworker/1:1-13091 (13091) [001] d..2 24577.646127: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
141457     kworker/1:1-13091 (13091) [001] d..3 24577.646145: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
141458          <idle>-0     (-----) [000] .n.1 24577.646150: cpu_idle: state=4294967295 cpu_id=0
141459          <idle>-0     (-----) [000] d..2 24577.646156: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
141460     kworker/1:1-13091 (13091) [001] d..2 24577.646159: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141461          <idle>-0     (-----) [001] d..1 24577.646166: cpu_idle: state=0 cpu_id=1
141462            adbd-23484 ( 1007) [000] d..2 24577.646167: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
141463            adbd-23484 ( 1007) [000] d..3 24577.646174: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
141464            adbd-23484 ( 1007) [000] d..2 24577.646221: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
141465            adbd-1007  ( 1007) [000] d..2 24577.646283: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141466          <idle>-0     (-----) [000] d..1 24577.646293: cpu_idle: state=0 cpu_id=0
141467          <idle>-0     (-----) [001] ...1 24577.647334: cpu_idle: state=4294967295 cpu_id=1
141468          <idle>-0     (-----) [001] d..1 24577.647337: cpu_idle: state=0 cpu_id=1
141469          <idle>-0     (-----) [000] ...1 24577.647451: cpu_idle: state=4294967295 cpu_id=0
141470          <idle>-0     (-----) [000] d..1 24577.647453: cpu_idle: state=0 cpu_id=0
141471          <idle>-0     (-----) [002] d.s3 24577.647566: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
141472          <idle>-0     (-----) [002] d.s4 24577.647577: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
141473          <idle>-0     (-----) [003] .n.1 24577.647582: cpu_idle: state=4294967295 cpu_id=3
141474          <idle>-0     (-----) [003] d..2 24577.647588: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
141475          <idle>-0     (-----) [002] ...1 24577.647590: cpu_idle: state=4294967295 cpu_id=2
141476          <idle>-0     (-----) [002] d..1 24577.647593: cpu_idle: state=0 cpu_id=2
141477  crtc_event:111-254   (  254) [003] d..2 24577.647610: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141478          <idle>-0     (-----) [003] d..1 24577.647614: cpu_idle: state=0 cpu_id=3
141479              ps-13422 (13422) [006] d..2 24577.647629: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141480              ps-13422 (13422) [006] dn.3 24577.647635: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141481              ps-13422 (13422) [006] d..2 24577.647640: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141482 shell svc 13418-13419 ( 1007) [006] d..2 24577.647671: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
141483 shell svc 13418-13419 ( 1007) [006] d..2 24577.647688: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141484              ps-13422 (13422) [006] d..2 24577.647698: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141485              ps-13422 (13422) [006] dn.3 24577.647703: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141486              ps-13422 (13422) [006] d..2 24577.647706: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141487 shell svc 13418-13419 ( 1007) [006] d..2 24577.647720: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141488              ps-13422 (13422) [006] d..2 24577.647728: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141489              ps-13422 (13422) [006] dn.3 24577.647732: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141490          <idle>-0     (-----) [000] d.h5 24577.647735: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
141491              ps-13422 (13422) [006] d..2 24577.647735: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141492          <idle>-0     (-----) [000] d.h6 24577.647746: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
141493 shell svc 13418-13419 ( 1007) [006] d..2 24577.647749: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141494          <idle>-0     (-----) [002] .n.1 24577.647751: cpu_idle: state=4294967295 cpu_id=2
141495          <idle>-0     (-----) [002] d..2 24577.647757: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
141496              ps-13422 (13422) [006] d..2 24577.647757: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141497              ps-13422 (13422) [006] dn.3 24577.647761: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141498          <idle>-0     (-----) [000] dnh2 24577.647761: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
141499              ps-13422 (13422) [006] d..2 24577.647764: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141500          <idle>-0     (-----) [000] .n.1 24577.647766: cpu_idle: state=4294967295 cpu_id=0
141501          <idle>-0     (-----) [000] d..2 24577.647773: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
141502 shell svc 13418-13419 ( 1007) [006] d..2 24577.647776: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141503              ps-13422 (13422) [006] d..2 24577.647784: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141504              ps-13422 (13422) [006] dn.3 24577.647788: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141505              ps-13422 (13422) [006] d..2 24577.647791: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141506 shell svc 13418-13419 ( 1007) [006] d..2 24577.647803: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141507              ps-13422 (13422) [006] d..2 24577.647811: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141508            adbd-1007  ( 1007) [000] d..1 24577.647811: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
141509              ps-13422 (13422) [006] dn.3 24577.647814: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141510              ps-13422 (13422) [006] d..2 24577.647817: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141511 crtc_commit:111-253   (  253) [002] d..2 24577.647824: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
141512 shell svc 13418-13419 ( 1007) [006] d..2 24577.647829: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141513          <idle>-0     (-----) [002] d..1 24577.647831: cpu_idle: state=0 cpu_id=2
141514              ps-13422 (13422) [006] d..2 24577.647837: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141515            adbd-1007  ( 1007) [000] d..2 24577.647838: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
141516              ps-13422 (13422) [006] dn.3 24577.647840: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141517          <idle>-0     (-----) [002] .n.1 24577.647842: cpu_idle: state=4294967295 cpu_id=2
141518              ps-13422 (13422) [006] d..2 24577.647844: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141519          <idle>-0     (-----) [002] d..2 24577.647849: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
141520 shell svc 13418-13419 ( 1007) [006] d..2 24577.647855: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141521              ps-13422 (13422) [006] d..2 24577.647863: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141522              ps-13422 (13422) [006] dn.3 24577.647866: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141523              ps-13422 (13422) [006] d..2 24577.647869: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141524            adbd-1007  ( 1007) [000] d..2 24577.647874: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141525 shell svc 13418-13419 ( 1007) [006] d..2 24577.647881: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141526          <idle>-0     (-----) [000] d..1 24577.647882: cpu_idle: state=0 cpu_id=0
141527              ps-13422 (13422) [006] d..2 24577.647889: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141528              ps-13422 (13422) [006] dn.3 24577.647892: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141529              ps-13422 (13422) [006] d..2 24577.647896: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141530            adbd-23485 ( 1007) [002] d..2 24577.647901: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
141531 shell svc 13418-13419 ( 1007) [006] d..2 24577.647907: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141532          <idle>-0     (-----) [001] d.h3 24577.647907: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141533          <idle>-0     (-----) [002] d..1 24577.647908: cpu_idle: state=0 cpu_id=2
141534          <idle>-0     (-----) [001] dnh4 24577.647914: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141535              ps-13422 (13422) [006] d..2 24577.647916: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141536          <idle>-0     (-----) [001] .n.1 24577.647918: cpu_idle: state=4294967295 cpu_id=1
141537              ps-13422 (13422) [006] dn.3 24577.647919: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141538              ps-13422 (13422) [006] d..2 24577.647923: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141539          <idle>-0     (-----) [001] d..2 24577.647926: 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
141540 shell svc 13418-13419 ( 1007) [006] d..2 24577.647935: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141541   kworker/u17:2-23076 (23076) [001] d..2 24577.647936: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
141542   kworker/u17:2-23076 (23076) [001] d..3 24577.647942: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
141543              ps-13422 (13422) [006] d..2 24577.647944: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141544              ps-13422 (13422) [006] dn.3 24577.647947: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141545              ps-13422 (13422) [006] d..2 24577.647950: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141546   kworker/u17:2-23076 (23076) [001] d..2 24577.647959: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
141547 shell svc 13418-13419 ( 1007) [006] d..2 24577.647962: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141548     kworker/1:1-13091 (13091) [001] d..2 24577.647964: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
141549              ps-13422 (13422) [006] d..2 24577.647970: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141550              ps-13422 (13422) [006] dn.3 24577.647973: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141551              ps-13422 (13422) [006] d..2 24577.647976: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141552     kworker/1:1-13091 (13091) [001] d..3 24577.647986: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
141553 shell svc 13418-13419 ( 1007) [006] d..2 24577.647988: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141554              ps-13422 (13422) [006] d..2 24577.647996: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141555              ps-13422 (13422) [006] dn.3 24577.647999: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141556     kworker/1:1-13091 (13091) [001] d..2 24577.648001: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141557              ps-13422 (13422) [006] d..2 24577.648002: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141558          <idle>-0     (-----) [001] d..1 24577.648008: cpu_idle: state=0 cpu_id=1
141559 shell svc 13418-13419 ( 1007) [006] d..2 24577.648014: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141560          <idle>-0     (-----) [000] dnh5 24577.648025: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
141561          <idle>-0     (-----) [000] dnh6 24577.648036: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
141562          <idle>-0     (-----) [003] .n.1 24577.648041: cpu_idle: state=4294967295 cpu_id=3
141563          <idle>-0     (-----) [000] dnh7 24577.648045: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
141564          <idle>-0     (-----) [003] d..2 24577.648045: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
141565              ps-13422 (13422) [006] d..2 24577.648051: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141566          <idle>-0     (-----) [000] dnh8 24577.648053: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
141567              ps-13422 (13422) [006] dn.3 24577.648055: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141568              ps-13422 (13422) [006] d..2 24577.648058: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141569  crtc_event:111-254   (  254) [003] d..2 24577.648068: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
141570          <idle>-0     (-----) [000] dnh9 24577.648070: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
141571 shell svc 13418-13419 ( 1007) [006] d..2 24577.648070: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141572              ps-13422 (13422) [006] d..2 24577.648078: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141573          <idle>-0     (-----) [000] dnha 24577.648079: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
141574              ps-13422 (13422) [006] dn.3 24577.648082: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141575          <idle>-0     (-----) [002] .n.1 24577.648084: cpu_idle: state=4294967295 cpu_id=2
141576              ps-13422 (13422) [006] d..2 24577.648085: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141577          <idle>-0     (-----) [000] dnh7 24577.648085: sched_waking: comm=SDM_EventThread pid=624 prio=111 target_cpu=002
141578          <idle>-0     (-----) [002] d..2 24577.648093: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
141579 shell svc 13418-13419 ( 1007) [006] d..2 24577.648097: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141580          <idle>-0     (-----) [000] dnh8 24577.648098: sched_wakeup: comm=SDM_EventThread pid=624 prio=111 target_cpu=002
141581              ps-13422 (13422) [006] d..2 24577.648104: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141582              ps-13422 (13422) [006] dn.3 24577.648108: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141583              ps-13422 (13422) [006] d..2 24577.648111: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141584 crtc_commit:111-253   (  253) [002] d..2 24577.648112: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=SDM_EventThread next_pid=624 next_prio=111
141585          <idle>-0     (-----) [000] .n.1 24577.648113: cpu_idle: state=4294967295 cpu_id=0
141586          <idle>-0     (-----) [000] d..2 24577.648121: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
141587 shell svc 13418-13419 ( 1007) [006] d..2 24577.648123: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141588            adbd-23485 ( 1007) [003] d..2 24577.648125: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141589          <idle>-0     (-----) [003] d..1 24577.648130: cpu_idle: state=0 cpu_id=3
141590              ps-13422 (13422) [006] d..2 24577.648130: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141591              ps-13422 (13422) [006] dn.3 24577.648134: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141592              ps-13422 (13422) [006] d..2 24577.648137: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141593          <idle>-0     (-----) [001] d.h3 24577.648142: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
141594     kworker/0:1-13012 (13012) [000] d..2 24577.648143: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141595 shell svc 13418-13419 ( 1007) [006] d..2 24577.648149: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141596          <idle>-0     (-----) [000] d..1 24577.648149: cpu_idle: state=0 cpu_id=0
141597              ps-13422 (13422) [006] d..2 24577.648158: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141598 SDM_EventThread-624   (  598) [002] d..2 24577.648159: sched_switch: prev_comm=SDM_EventThread prev_pid=624 prev_prio=111 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
141599              ps-13422 (13422) [006] dn.3 24577.648161: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141600          <idle>-0     (-----) [001] d.h4 24577.648162: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
141601              ps-13422 (13422) [006] d..2 24577.648164: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141602          <idle>-0     (-----) [002] d..1 24577.648166: cpu_idle: state=0 cpu_id=2
141603          <idle>-0     (-----) [000] .n.1 24577.648167: cpu_idle: state=4294967295 cpu_id=0
141604          <idle>-0     (-----) [001] ...1 24577.648169: cpu_idle: state=4294967295 cpu_id=1
141605          <idle>-0     (-----) [001] d..1 24577.648172: cpu_idle: state=0 cpu_id=1
141606          <idle>-0     (-----) [000] d..2 24577.648173: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
141607 shell svc 13418-13419 ( 1007) [006] d..2 24577.648175: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141608              ps-13422 (13422) [006] d..2 24577.648184: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141609   kworker/u17:2-23076 (23076) [000] d..2 24577.648184: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
141610              ps-13422 (13422) [006] dn.3 24577.648187: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141611   kworker/u17:2-23076 (23076) [000] d..3 24577.648190: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
141612              ps-13422 (13422) [006] d..2 24577.648190: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141613 shell svc 13418-13419 ( 1007) [006] d..2 24577.648201: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141614   kworker/u17:2-23076 (23076) [000] d..2 24577.648208: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
141615              ps-13422 (13422) [006] d..2 24577.648209: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141616              ps-13422 (13422) [006] dn.3 24577.648212: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141617     kworker/0:1-13012 (13012) [000] d..2 24577.648214: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
141618              ps-13422 (13422) [006] d..2 24577.648216: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141619     kworker/0:1-13012 (13012) [000] d..3 24577.648224: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
141620 shell svc 13418-13419 ( 1007) [006] d..2 24577.648227: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141621          <idle>-0     (-----) [003] .n.1 24577.648229: cpu_idle: state=4294967295 cpu_id=3
141622          <idle>-0     (-----) [003] d..2 24577.648234: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
141623              ps-13422 (13422) [006] d..2 24577.648235: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141624              ps-13422 (13422) [006] dn.3 24577.648239: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141625     kworker/0:1-13012 (13012) [000] d..2 24577.648239: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141626              ps-13422 (13422) [006] d..2 24577.648242: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141627          <idle>-0     (-----) [000] d..1 24577.648246: cpu_idle: state=0 cpu_id=0
141628            adbd-23485 ( 1007) [003] d..2 24577.648252: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141629 shell svc 13418-13419 ( 1007) [006] d..2 24577.648255: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141630          <idle>-0     (-----) [003] d..1 24577.648256: cpu_idle: state=0 cpu_id=3
141631              ps-13422 (13422) [006] d..2 24577.648263: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141632              ps-13422 (13422) [006] dn.3 24577.648266: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141633              ps-13422 (13422) [006] d..2 24577.648270: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141634 shell svc 13418-13419 ( 1007) [006] d..2 24577.648281: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141635              ps-13422 (13422) [006] d..2 24577.648289: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141636              ps-13422 (13422) [006] dn.3 24577.648293: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141637              ps-13422 (13422) [006] d..2 24577.648296: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141638 shell svc 13418-13419 ( 1007) [006] d..2 24577.648307: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141639              ps-13422 (13422) [006] d..2 24577.648316: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141640              ps-13422 (13422) [006] dn.3 24577.648320: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141641              ps-13422 (13422) [006] d..2 24577.648323: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141642 shell svc 13418-13419 ( 1007) [006] d..2 24577.648335: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141643              ps-13422 (13422) [006] d..2 24577.648343: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141644              ps-13422 (13422) [006] dn.3 24577.648347: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141645              ps-13422 (13422) [006] d..2 24577.648350: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141646 shell svc 13418-13419 ( 1007) [006] d..2 24577.648362: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141647              ps-13422 (13422) [006] d..2 24577.648370: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141648              ps-13422 (13422) [006] dn.3 24577.648373: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141649              ps-13422 (13422) [006] d..2 24577.648377: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141650 shell svc 13418-13419 ( 1007) [006] d..2 24577.648388: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141651              ps-13422 (13422) [006] d..2 24577.648396: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141652          <idle>-0     (-----) [001] d.h3 24577.648399: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
141653              ps-13422 (13422) [006] dn.3 24577.648400: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141654              ps-13422 (13422) [006] d..2 24577.648403: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141655          <idle>-0     (-----) [001] d.h4 24577.648407: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
141656          <idle>-0     (-----) [000] .n.1 24577.648413: cpu_idle: state=4294967295 cpu_id=0
141657          <idle>-0     (-----) [001] ...1 24577.648413: cpu_idle: state=4294967295 cpu_id=1
141658 shell svc 13418-13419 ( 1007) [006] d..2 24577.648414: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141659          <idle>-0     (-----) [001] d..1 24577.648416: cpu_idle: state=0 cpu_id=1
141660          <idle>-0     (-----) [000] d..2 24577.648419: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
141661              ps-13422 (13422) [006] d..2 24577.648422: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141662              ps-13422 (13422) [006] dn.3 24577.648425: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141663   kworker/u17:2-23076 (23076) [000] d..2 24577.648426: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
141664              ps-13422 (13422) [006] d..2 24577.648429: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141665   kworker/u17:2-23076 (23076) [000] d..3 24577.648433: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
141666 shell svc 13418-13419 ( 1007) [006] d..2 24577.648440: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141667              ps-13422 (13422) [006] d..2 24577.648448: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141668   kworker/u17:2-23076 (23076) [000] d..2 24577.648450: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
141669              ps-13422 (13422) [006] dn.3 24577.648451: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141670              ps-13422 (13422) [006] d..2 24577.648454: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141671     kworker/0:1-13012 (13012) [000] d..2 24577.648457: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
141672 shell svc 13418-13419 ( 1007) [006] d..2 24577.648466: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141673     kworker/0:1-13012 (13012) [000] d..3 24577.648466: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
141674              ps-13422 (13422) [006] d..2 24577.648474: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141675     kworker/0:1-13012 (13012) [000] d..2 24577.648474: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
141676              ps-13422 (13422) [006] dn.3 24577.648477: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141677              ps-13422 (13422) [006] d..2 24577.648480: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141678            adbd-23484 ( 1007) [000] d..2 24577.648485: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
141679            adbd-23484 ( 1007) [000] d..3 24577.648492: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
141680 shell svc 13418-13419 ( 1007) [006] d..2 24577.648492: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141681              ps-13422 (13422) [006] d..2 24577.648500: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141682              ps-13422 (13422) [006] dn.3 24577.648503: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141683              ps-13422 (13422) [006] d..2 24577.648506: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141684 shell svc 13418-13419 ( 1007) [006] d..2 24577.648518: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141685              ps-13422 (13422) [006] d..2 24577.648525: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141686              ps-13422 (13422) [006] dn.3 24577.648529: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141687              ps-13422 (13422) [006] d..2 24577.648532: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141688            adbd-23484 ( 1007) [000] d..2 24577.648537: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
141689 shell svc 13418-13419 ( 1007) [006] d..2 24577.648543: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141690              ps-13422 (13422) [006] d..2 24577.648551: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141691              ps-13422 (13422) [006] dn.3 24577.648555: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141692              ps-13422 (13422) [006] d..2 24577.648558: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141693 shell svc 13418-13419 ( 1007) [006] d..2 24577.648569: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141694              ps-13422 (13422) [006] d..2 24577.648577: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141695              ps-13422 (13422) [006] dn.3 24577.648581: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141696              ps-13422 (13422) [006] d..2 24577.648584: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141697 shell svc 13418-13419 ( 1007) [006] d..2 24577.648596: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141698              ps-13422 (13422) [006] d..2 24577.648604: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141699              ps-13422 (13422) [006] dn.3 24577.648608: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141700              ps-13422 (13422) [006] d..2 24577.648611: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141701 shell svc 13418-13419 ( 1007) [006] d..2 24577.648622: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141702              ps-13422 (13422) [006] d..2 24577.648630: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141703            adbd-1007  ( 1007) [000] d..1 24577.648630: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
141704              ps-13422 (13422) [006] dn.3 24577.648634: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141705              ps-13422 (13422) [006] d..2 24577.648637: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141706            adbd-1007  ( 1007) [000] d..2 24577.648642: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
141707          <idle>-0     (-----) [003] .n.1 24577.648647: cpu_idle: state=4294967295 cpu_id=3
141708 shell svc 13418-13419 ( 1007) [006] d..2 24577.648648: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141709          <idle>-0     (-----) [003] d..2 24577.648652: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
141710              ps-13422 (13422) [006] d..2 24577.648656: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141711              ps-13422 (13422) [006] dn.3 24577.648660: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141712              ps-13422 (13422) [006] d..2 24577.648663: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141713 shell svc 13418-13419 ( 1007) [006] d..2 24577.648674: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141714            adbd-1007  ( 1007) [000] d..2 24577.648678: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141715              ps-13422 (13422) [006] d..2 24577.648683: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141716              ps-13422 (13422) [006] dn.3 24577.648686: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141717          <idle>-0     (-----) [000] d..1 24577.648687: cpu_idle: state=0 cpu_id=0
141718              ps-13422 (13422) [006] d..2 24577.648689: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141719            adbd-23485 ( 1007) [003] d..2 24577.648699: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141720 shell svc 13418-13419 ( 1007) [006] d..2 24577.648701: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141721          <idle>-0     (-----) [003] d..1 24577.648704: cpu_idle: state=0 cpu_id=3
141722              ps-13422 (13422) [006] d..2 24577.648708: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141723              ps-13422 (13422) [006] dn.3 24577.648712: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141724              ps-13422 (13422) [006] d..2 24577.648715: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141725          <idle>-0     (-----) [001] d.h3 24577.648719: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
141726          <idle>-0     (-----) [001] d.h4 24577.648727: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
141727 shell svc 13418-13419 ( 1007) [006] d..2 24577.648728: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141728          <idle>-0     (-----) [000] .n.1 24577.648733: cpu_idle: state=4294967295 cpu_id=0
141729          <idle>-0     (-----) [001] ...1 24577.648733: cpu_idle: state=4294967295 cpu_id=1
141730          <idle>-0     (-----) [001] d..1 24577.648735: cpu_idle: state=0 cpu_id=1
141731              ps-13422 (13422) [006] d..2 24577.648735: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141732              ps-13422 (13422) [006] dn.3 24577.648738: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141733          <idle>-0     (-----) [000] d..2 24577.648740: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
141734              ps-13422 (13422) [006] d..2 24577.648742: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141735   kworker/u17:2-23076 (23076) [000] d..2 24577.648750: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
141736 shell svc 13418-13419 ( 1007) [006] d..2 24577.648753: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141737   kworker/u17:2-23076 (23076) [000] d..3 24577.648756: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
141738              ps-13422 (13422) [006] d..2 24577.648761: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141739              ps-13422 (13422) [006] dn.3 24577.648764: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141740              ps-13422 (13422) [006] d..2 24577.648767: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141741   kworker/u17:2-23076 (23076) [000] d..2 24577.648775: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
141742 shell svc 13418-13419 ( 1007) [006] d..2 24577.648779: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141743     kworker/0:1-13012 (13012) [000] d..2 24577.648780: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
141744              ps-13422 (13422) [006] d..2 24577.648787: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141745     kworker/0:1-13012 (13012) [000] d..3 24577.648790: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
141746              ps-13422 (13422) [006] dn.3 24577.648790: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141747              ps-13422 (13422) [006] d..2 24577.648793: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141748          <idle>-0     (-----) [003] .n.1 24577.648795: cpu_idle: state=4294967295 cpu_id=3
141749          <idle>-0     (-----) [003] d..2 24577.648800: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
141750     kworker/0:1-13012 (13012) [000] d..2 24577.648805: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141751 shell svc 13418-13419 ( 1007) [006] d..2 24577.648805: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141752          <idle>-0     (-----) [000] d..1 24577.648812: cpu_idle: state=0 cpu_id=0
141753              ps-13422 (13422) [006] d..2 24577.648813: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141754              ps-13422 (13422) [006] dn.3 24577.648816: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141755              ps-13422 (13422) [006] d..2 24577.648819: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141756 shell svc 13418-13419 ( 1007) [006] d..2 24577.648831: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141757              ps-13422 (13422) [006] d..2 24577.648838: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141758              ps-13422 (13422) [006] dn.3 24577.648842: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141759              ps-13422 (13422) [006] d..2 24577.648845: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141760            adbd-23485 ( 1007) [003] d..2 24577.648848: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141761          <idle>-0     (-----) [003] d..1 24577.648853: cpu_idle: state=0 cpu_id=3
141762 shell svc 13418-13419 ( 1007) [006] d..2 24577.648857: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141763              ps-13422 (13422) [006] d..2 24577.648864: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141764              ps-13422 (13422) [006] dn.3 24577.648868: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141765              ps-13422 (13422) [006] d..2 24577.648871: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141766 shell svc 13418-13419 ( 1007) [006] d..2 24577.648883: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141767              ps-13422 (13422) [006] d..2 24577.648890: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141768              ps-13422 (13422) [006] dn.3 24577.648894: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141769              ps-13422 (13422) [006] d..2 24577.648897: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141770 shell svc 13418-13419 ( 1007) [006] d..2 24577.648908: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141771          <idle>-0     (-----) [001] d.h3 24577.648909: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
141772              ps-13422 (13422) [006] d..2 24577.648916: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141773          <idle>-0     (-----) [001] d.h4 24577.648917: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
141774              ps-13422 (13422) [006] dn.3 24577.648919: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141775              ps-13422 (13422) [006] d..2 24577.648922: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141776          <idle>-0     (-----) [000] .n.1 24577.648922: cpu_idle: state=4294967295 cpu_id=0
141777          <idle>-0     (-----) [001] ...1 24577.648923: cpu_idle: state=4294967295 cpu_id=1
141778          <idle>-0     (-----) [001] d..1 24577.648926: cpu_idle: state=0 cpu_id=1
141779          <idle>-0     (-----) [000] d..2 24577.648929: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
141780 shell svc 13418-13419 ( 1007) [006] d..2 24577.648933: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141781   kworker/u17:2-23076 (23076) [000] d..2 24577.648937: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
141782              ps-13422 (13422) [006] d..2 24577.648941: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141783   kworker/u17:2-23076 (23076) [000] d..3 24577.648943: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
141784              ps-13422 (13422) [006] dn.3 24577.648944: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141785              ps-13422 (13422) [006] d..2 24577.648947: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141786 shell svc 13418-13419 ( 1007) [006] d..2 24577.648958: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141787   kworker/u17:2-23076 (23076) [000] d..2 24577.648960: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
141788     kworker/0:1-13012 (13012) [000] d..2 24577.648966: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
141789              ps-13422 (13422) [006] d..2 24577.648966: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141790              ps-13422 (13422) [006] dn.3 24577.648969: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141791              ps-13422 (13422) [006] d..2 24577.648973: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141792     kworker/0:1-13012 (13012) [000] d..3 24577.648975: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
141793          <idle>-0     (-----) [003] .n.1 24577.648980: cpu_idle: state=4294967295 cpu_id=3
141794 shell svc 13418-13419 ( 1007) [006] d..2 24577.648984: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141795          <idle>-0     (-----) [003] d..2 24577.648985: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
141796     kworker/0:1-13012 (13012) [000] d..2 24577.648990: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141797              ps-13422 (13422) [006] d..2 24577.648992: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141798              ps-13422 (13422) [006] dn.3 24577.648996: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141799          <idle>-0     (-----) [000] d..1 24577.648996: cpu_idle: state=0 cpu_id=0
141800              ps-13422 (13422) [006] d..2 24577.648999: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141801            adbd-23485 ( 1007) [003] d..2 24577.649001: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141802          <idle>-0     (-----) [003] d..1 24577.649005: cpu_idle: state=0 cpu_id=3
141803 shell svc 13418-13419 ( 1007) [006] d..2 24577.649010: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141804          <idle>-0     (-----) [001] d.h3 24577.649139: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
141805          <idle>-0     (-----) [001] d.h4 24577.649147: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
141806          <idle>-0     (-----) [000] .n.1 24577.649153: cpu_idle: state=4294967295 cpu_id=0
141807          <idle>-0     (-----) [001] ...1 24577.649153: cpu_idle: state=4294967295 cpu_id=1
141808          <idle>-0     (-----) [001] d..1 24577.649155: cpu_idle: state=0 cpu_id=1
141809          <idle>-0     (-----) [000] d..2 24577.649159: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
141810   kworker/u17:2-23076 (23076) [000] d..2 24577.649167: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
141811   kworker/u17:2-23076 (23076) [000] d..3 24577.649172: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
141812   kworker/u17:2-23076 (23076) [000] d..2 24577.649189: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
141813     kworker/0:1-13012 (13012) [000] d..2 24577.649195: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
141814     kworker/0:1-13012 (13012) [000] d..3 24577.649204: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
141815     kworker/0:1-13012 (13012) [000] d..2 24577.649212: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
141816            adbd-23484 ( 1007) [000] d..2 24577.649223: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
141817            adbd-23484 ( 1007) [000] d..3 24577.649230: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
141818            adbd-23484 ( 1007) [000] d..2 24577.649276: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
141819            adbd-1007  ( 1007) [000] d..1 24577.649349: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
141820            adbd-1007  ( 1007) [000] d..2 24577.649361: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
141821          <idle>-0     (-----) [003] .n.1 24577.649365: cpu_idle: state=4294967295 cpu_id=3
141822          <idle>-0     (-----) [003] d..2 24577.649370: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
141823            adbd-1007  ( 1007) [000] d..2 24577.649396: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141824          <idle>-0     (-----) [000] d..1 24577.649404: cpu_idle: state=0 cpu_id=0
141825            adbd-23485 ( 1007) [003] d..2 24577.649417: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141826          <idle>-0     (-----) [003] d..1 24577.649422: cpu_idle: state=0 cpu_id=3
141827          <idle>-0     (-----) [001] d.h3 24577.649429: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
141828          <idle>-0     (-----) [001] d.h4 24577.649437: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
141829          <idle>-0     (-----) [001] ...1 24577.649442: cpu_idle: state=4294967295 cpu_id=1
141830          <idle>-0     (-----) [000] .n.1 24577.649443: cpu_idle: state=4294967295 cpu_id=0
141831          <idle>-0     (-----) [001] d..1 24577.649445: cpu_idle: state=0 cpu_id=1
141832          <idle>-0     (-----) [000] d..2 24577.649450: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
141833   kworker/u17:2-23076 (23076) [000] d..2 24577.649460: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
141834   kworker/u17:2-23076 (23076) [000] d..3 24577.649466: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
141835   kworker/u17:2-23076 (23076) [000] d..2 24577.649483: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
141836     kworker/0:1-13012 (13012) [000] d..2 24577.649490: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
141837     kworker/0:1-13012 (13012) [000] d..3 24577.649499: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
141838          <idle>-0     (-----) [003] .n.1 24577.649504: cpu_idle: state=4294967295 cpu_id=3
141839          <idle>-0     (-----) [003] d..2 24577.649509: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
141840     kworker/0:1-13012 (13012) [000] d..2 24577.649514: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141841          <idle>-0     (-----) [000] d..1 24577.649520: cpu_idle: state=0 cpu_id=0
141842            adbd-23485 ( 1007) [003] d..2 24577.649558: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141843          <idle>-0     (-----) [003] d..1 24577.649563: cpu_idle: state=0 cpu_id=3
141844          <idle>-0     (-----) [001] d.h3 24577.649583: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
141845          <idle>-0     (-----) [001] d.h4 24577.649592: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
141846          <idle>-0     (-----) [001] ...1 24577.649597: cpu_idle: state=4294967295 cpu_id=1
141847          <idle>-0     (-----) [000] .n.1 24577.649597: cpu_idle: state=4294967295 cpu_id=0
141848          <idle>-0     (-----) [001] d..1 24577.649600: cpu_idle: state=0 cpu_id=1
141849          <idle>-0     (-----) [000] d..2 24577.649604: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
141850   kworker/u17:2-23076 (23076) [000] d..2 24577.649612: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
141851   kworker/u17:2-23076 (23076) [000] d..3 24577.649618: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
141852   kworker/u17:2-23076 (23076) [000] d..2 24577.649636: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
141853     kworker/0:1-13012 (13012) [000] d..2 24577.649641: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
141854     kworker/0:1-13012 (13012) [000] d..3 24577.649650: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
141855          <idle>-0     (-----) [003] .n.1 24577.649655: cpu_idle: state=4294967295 cpu_id=3
141856          <idle>-0     (-----) [003] d..2 24577.649660: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
141857     kworker/0:1-13012 (13012) [000] d..2 24577.649664: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141858          <idle>-0     (-----) [000] d..1 24577.649671: cpu_idle: state=0 cpu_id=0
141859            adbd-23485 ( 1007) [003] d..2 24577.649678: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141860          <idle>-0     (-----) [003] d..1 24577.649682: cpu_idle: state=0 cpu_id=3
141861          <idle>-0     (-----) [003] d.h2 24577.649730: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
141862          <idle>-0     (-----) [003] dnh3 24577.649739: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
141863          <idle>-0     (-----) [003] .n.1 24577.649745: cpu_idle: state=4294967295 cpu_id=3
141864          <idle>-0     (-----) [003] d..2 24577.649749: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
141865        DispSync-23904 (23896) [003] d..1 24577.649765: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
141866        DispSync-23904 (23896) [003] d..2 24577.649782: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
141867          <idle>-0     (-----) [002] .n.1 24577.649786: cpu_idle: state=4294967295 cpu_id=2
141868          <idle>-0     (-----) [002] d..2 24577.649792: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
141869          <idle>-0     (-----) [001] d.h3 24577.649796: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
141870        DispSync-23904 (23896) [003] d..2 24577.649801: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141871          <idle>-0     (-----) [001] d.h4 24577.649804: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
141872          <idle>-0     (-----) [003] d..1 24577.649806: cpu_idle: state=0 cpu_id=3
141873          <idle>-0     (-----) [000] .n.1 24577.649809: cpu_idle: state=4294967295 cpu_id=0
141874          <idle>-0     (-----) [001] ...1 24577.649809: cpu_idle: state=4294967295 cpu_id=1
141875          <idle>-0     (-----) [001] d..1 24577.649813: cpu_idle: state=0 cpu_id=1
141876          <idle>-0     (-----) [000] d..2 24577.649816: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
141877   kworker/u17:2-23076 (23076) [000] d..2 24577.649823: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
141878   kworker/u17:2-23076 (23076) [000] d..3 24577.649828: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
141879   kworker/u17:2-23076 (23076) [000] d..2 24577.649844: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
141880  appEventThread-23905 (23896) [002] d..3 24577.649849: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=003
141881     kworker/0:1-13012 (13012) [000] d..2 24577.649851: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
141882  appEventThread-23905 (23896) [002] d..4 24577.649872: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
141883     kworker/0:1-13012 (13012) [000] d..3 24577.649873: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
141884          <idle>-0     (-----) [001] .n.1 24577.649877: cpu_idle: state=4294967295 cpu_id=1
141885          <idle>-0     (-----) [001] d..2 24577.649884: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
141886     kworker/0:1-13012 (13012) [000] d..2 24577.649887: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141887  appEventThread-23905 (23896) [002] d..2 24577.649891: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
141888          <idle>-0     (-----) [000] d..1 24577.649894: cpu_idle: state=0 cpu_id=0
141889            adbd-23484 ( 1007) [002] d..2 24577.649904: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
141890            adbd-23484 ( 1007) [002] d..3 24577.649915: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
141891            adbd-23484 ( 1007) [002] d..2 24577.649962: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
141892            adbd-1007  ( 1007) [002] d..2 24577.650031: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
141893          <idle>-0     (-----) [002] d..1 24577.650040: cpu_idle: state=0 cpu_id=2
141894 s.nexuslauncher-24827 (24827) [001] .... 24577.650367: binder_transaction: transaction=1671707 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
141895 s.nexuslauncher-24827 (24827) [001] d..4 24577.650375: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
141896 s.nexuslauncher-24827 (24827) [001] d..5 24577.650392: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
141897          <idle>-0     (-----) [000] .n.1 24577.650397: cpu_idle: state=4294967295 cpu_id=0
141898          <idle>-0     (-----) [000] d..2 24577.650403: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
141899  Binder:23896_4-24423 (23896) [000] .... 24577.650409: binder_transaction_received: transaction=1671707
141900 s.nexuslauncher-24827 (24827) [001] d..3 24577.650426: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
141901  Binder:23896_4-24423 (23896) [000] d..1 24577.650436: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
141902 s.nexuslauncher-24827 (24827) [001] d..4 24577.650448: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
141903          <idle>-0     (-----) [002] .n.1 24577.650453: cpu_idle: state=4294967295 cpu_id=2
141904  Binder:23896_4-24423 (23896) [000] d..2 24577.650459: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
141905          <idle>-0     (-----) [002] d..2 24577.650461: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
141906          <idle>-0     (-----) [003] .n.1 24577.650464: cpu_idle: state=4294967295 cpu_id=3
141907          <idle>-0     (-----) [003] d..2 24577.650469: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
141908  Binder:23896_4-24423 (23896) [000] d..2 24577.650486: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141909          <idle>-0     (-----) [000] d..1 24577.650494: cpu_idle: state=0 cpu_id=0
141910    RenderThread-25194 (24827) [002] d..2 24577.650498: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
141911  appEventThread-23905 (23896) [003] d..2 24577.650503: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141912          <idle>-0     (-----) [002] d..1 24577.650506: cpu_idle: state=0 cpu_id=2
141913          <idle>-0     (-----) [003] d..1 24577.650508: cpu_idle: state=0 cpu_id=3
141914              ps-13422 (13422) [006] d..2 24577.650518: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141915              ps-13422 (13422) [006] dn.3 24577.650524: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141916              ps-13422 (13422) [006] d..2 24577.650528: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141917 shell svc 13418-13419 ( 1007) [006] d..2 24577.650539: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
141918 shell svc 13418-13419 ( 1007) [006] d..2 24577.650566: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141919 s.nexuslauncher-24827 (24827) [001] d.h1 24577.650568: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
141920              ps-13422 (13422) [006] d..2 24577.650576: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141921              ps-13422 (13422) [006] dn.3 24577.650581: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141922              ps-13422 (13422) [006] d..2 24577.650584: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141923 shell svc 13418-13419 ( 1007) [006] d..2 24577.650597: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141924              ps-13422 (13422) [006] d..2 24577.650606: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141925              ps-13422 (13422) [006] dn.3 24577.650609: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141926              ps-13422 (13422) [006] d..2 24577.650613: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141927 shell svc 13418-13419 ( 1007) [006] d..2 24577.650625: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141928              ps-13422 (13422) [006] d..2 24577.650633: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141929              ps-13422 (13422) [006] dn.3 24577.650636: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141930              ps-13422 (13422) [006] d..2 24577.650639: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141931 shell svc 13418-13419 ( 1007) [006] d..2 24577.650651: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141932              ps-13422 (13422) [006] d..2 24577.650658: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141933              ps-13422 (13422) [006] dn.3 24577.650662: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141934              ps-13422 (13422) [006] d..2 24577.650665: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141935 shell svc 13418-13419 ( 1007) [006] d..2 24577.650676: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141936              ps-13422 (13422) [006] d..2 24577.650684: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141937              ps-13422 (13422) [006] dn.3 24577.650688: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141938              ps-13422 (13422) [006] d..2 24577.650691: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141939 shell svc 13418-13419 ( 1007) [006] d..2 24577.650702: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141940              ps-13422 (13422) [006] d..2 24577.650710: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141941              ps-13422 (13422) [006] dn.3 24577.650713: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141942              ps-13422 (13422) [006] d..2 24577.650716: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141943 shell svc 13418-13419 ( 1007) [006] d..2 24577.650729: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141944              ps-13422 (13422) [006] d..2 24577.650738: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141945              ps-13422 (13422) [006] dn.3 24577.650741: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141946              ps-13422 (13422) [006] d..2 24577.650745: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141947 shell svc 13418-13419 ( 1007) [006] d..2 24577.650756: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141948              ps-13422 (13422) [006] d..2 24577.650764: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141949              ps-13422 (13422) [006] dn.3 24577.650767: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141950              ps-13422 (13422) [006] d..2 24577.650770: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141951 shell svc 13418-13419 ( 1007) [006] d..2 24577.650782: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141952              ps-13422 (13422) [006] d..2 24577.650790: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141953              ps-13422 (13422) [006] dn.3 24577.650793: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141954              ps-13422 (13422) [006] d..2 24577.650796: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141955 shell svc 13418-13419 ( 1007) [006] d..2 24577.650808: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141956              ps-13422 (13422) [006] d..2 24577.650815: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141957              ps-13422 (13422) [006] dn.3 24577.650819: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141958              ps-13422 (13422) [006] d..2 24577.650822: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141959 shell svc 13418-13419 ( 1007) [006] d..2 24577.650833: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141960              ps-13422 (13422) [006] d..2 24577.650841: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141961              ps-13422 (13422) [006] dn.3 24577.650844: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141962              ps-13422 (13422) [006] d..2 24577.650848: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141963 shell svc 13418-13419 ( 1007) [006] d..2 24577.650859: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141964              ps-13422 (13422) [006] d..2 24577.650866: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141965              ps-13422 (13422) [006] dn.3 24577.650870: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141966              ps-13422 (13422) [006] d..2 24577.650873: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141967          <idle>-0     (-----) [003] d.s2 24577.650895: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
141968 shell svc 13418-13419 ( 1007) [006] d..2 24577.650905: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141969          <idle>-0     (-----) [003] dns3 24577.650905: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
141970          <idle>-0     (-----) [003] .n.1 24577.650914: cpu_idle: state=4294967295 cpu_id=3
141971              ps-13422 (13422) [006] d..2 24577.650914: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141972          <idle>-0     (-----) [004] ...1 24577.650918: cpu_idle: state=4294967295 cpu_id=4
141973          <idle>-0     (-----) [000] .n.1 24577.650918: cpu_idle: state=4294967295 cpu_id=0
141974              ps-13422 (13422) [006] dn.3 24577.650919: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141975          <idle>-0     (-----) [003] d..2 24577.650920: 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
141976          <idle>-0     (-----) [004] d..1 24577.650921: cpu_idle: state=0 cpu_id=4
141977              ps-13422 (13422) [006] d..2 24577.650923: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141978          <idle>-0     (-----) [000] d..2 24577.650926: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
141979     rcu_preempt-7     (    7) [003] d..2 24577.650927: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=000
141980 shell svc 13418-13419 ( 1007) [006] d..2 24577.650935: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141981              ps-13422 (13422) [006] d..2 24577.650943: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141982              ps-13422 (13422) [006] dn.3 24577.650947: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141983              ps-13422 (13422) [006] d..2 24577.650950: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141984     rcu_preempt-7     (    7) [003] d..3 24577.650954: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=003
141985 s.nexuslauncher-24827 (24827) [001] d..3 24577.650954: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
141986     rcu_preempt-7     (    7) [003] d..2 24577.650957: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
141987 shell svc 13418-13419 ( 1007) [006] d..2 24577.650961: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141988 s.nexuslauncher-24827 (24827) [001] d..4 24577.650968: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
141989              ps-13422 (13422) [006] d..2 24577.650970: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141990          <idle>-0     (-----) [002] .n.1 24577.650973: cpu_idle: state=4294967295 cpu_id=2
141991              ps-13422 (13422) [006] dn.3 24577.650974: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
141992              ps-13422 (13422) [006] d..2 24577.650977: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
141993     rcu_preempt-7     (    7) [003] d..3 24577.650979: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
141994          <idle>-0     (-----) [002] d..2 24577.650980: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
141995     rcu_preempt-7     (    7) [003] d..2 24577.650981: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
141996            adbd-1007  ( 1007) [000] d..1 24577.650987: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
141997 shell svc 13418-13419 ( 1007) [006] d..2 24577.650989: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
141998 s.nexuslauncher-24827 (24827) [001] d..2 24577.650991: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141999              ps-13422 (13422) [006] d..2 24577.650997: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142000              ps-13422 (13422) [006] dn.3 24577.651000: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142001          <idle>-0     (-----) [001] d..1 24577.651001: cpu_idle: state=0 cpu_id=1
142002              ps-13422 (13422) [006] d..2 24577.651003: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142003     rcu_preempt-7     (    7) [003] d..3 24577.651012: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
142004 shell svc 13418-13419 ( 1007) [006] d..2 24577.651015: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142005            adbd-1007  ( 1007) [000] d..2 24577.651016: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
142006          <idle>-0     (-----) [001] .n.1 24577.651017: cpu_idle: state=4294967295 cpu_id=1
142007              ps-13422 (13422) [006] d..2 24577.651022: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142008          <idle>-0     (-----) [001] d..2 24577.651025: 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
142009              ps-13422 (13422) [006] dn.3 24577.651026: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142010     rcu_preempt-7     (    7) [003] d..2 24577.651027: 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
142011              ps-13422 (13422) [006] d..2 24577.651029: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142012         rcuop/0-10    (   10) [001] d..2 24577.651033: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
142013 shell svc 13418-13419 ( 1007) [006] d..2 24577.651041: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142014              ps-13422 (13422) [006] d..2 24577.651049: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142015              ps-13422 (13422) [006] dn.3 24577.651052: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142016            adbd-1007  ( 1007) [000] d..2 24577.651055: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142017              ps-13422 (13422) [006] d..2 24577.651056: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142018         rcuop/0-10    (   10) [001] d..3 24577.651061: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
142019          <idle>-0     (-----) [000] d..1 24577.651064: cpu_idle: state=0 cpu_id=0
142020 shell svc 13418-13419 ( 1007) [006] d..2 24577.651067: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142021         rcuop/0-10    (   10) [001] d..2 24577.651071: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
142022              ps-13422 (13422) [006] d..2 24577.651075: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142023              ps-13422 (13422) [006] dn.3 24577.651078: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142024              ps-13422 (13422) [006] d..2 24577.651081: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142025 shell svc 13418-13419 ( 1007) [006] d..2 24577.651093: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142026              ps-13422 (13422) [006] d..2 24577.651100: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142027              ps-13422 (13422) [006] dn.3 24577.651104: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142028              ps-13422 (13422) [006] d..2 24577.651107: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142029 shell svc 13418-13419 ( 1007) [006] d..2 24577.651118: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142030              ps-13422 (13422) [006] d..2 24577.651125: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142031            adbd-23485 ( 1007) [001] d..2 24577.651128: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142032              ps-13422 (13422) [006] dn.3 24577.651129: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142033              ps-13422 (13422) [006] d..2 24577.651132: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142034         rcuop/6-61    (   61) [003] d..2 24577.651135: 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
142035          <idle>-0     (-----) [001] d..1 24577.651137: cpu_idle: state=0 cpu_id=1
142036 shell svc 13418-13419 ( 1007) [006] d..2 24577.651144: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142037         rcuop/2-29    (   29) [003] d..2 24577.651150: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
142038              ps-13422 (13422) [006] d..2 24577.651152: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142039              ps-13422 (13422) [006] dn.3 24577.651155: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142040          <idle>-0     (-----) [001] d.h3 24577.651156: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
142041              ps-13422 (13422) [006] d..2 24577.651158: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142042 shell svc 13418-13419 ( 1007) [006] d..2 24577.651170: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142043         rcuop/1-21    (   21) [003] d..2 24577.651171: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
142044          <idle>-0     (-----) [001] dnh4 24577.651176: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142045          <idle>-0     (-----) [003] d..1 24577.651177: cpu_idle: state=0 cpu_id=3
142046              ps-13422 (13422) [006] d..2 24577.651177: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142047              ps-13422 (13422) [006] dn.3 24577.651181: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142048          <idle>-0     (-----) [001] .n.1 24577.651182: cpu_idle: state=4294967295 cpu_id=1
142049              ps-13422 (13422) [006] d..2 24577.651184: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142050          <idle>-0     (-----) [001] d..2 24577.651188: 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
142051 shell svc 13418-13419 ( 1007) [006] d..2 24577.651196: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142052   kworker/u17:2-23076 (23076) [001] d..2 24577.651196: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142053   kworker/u17:2-23076 (23076) [001] d..3 24577.651202: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142054              ps-13422 (13422) [006] d..2 24577.651203: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142055              ps-13422 (13422) [006] dn.3 24577.651206: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142056              ps-13422 (13422) [006] d..2 24577.651210: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142057   kworker/u17:2-23076 (23076) [001] d..2 24577.651219: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
142058 shell svc 13418-13419 ( 1007) [006] d..2 24577.651222: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142059     kworker/1:1-13091 (13091) [001] d..2 24577.651225: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
142060              ps-13422 (13422) [006] d..2 24577.651229: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142061              ps-13422 (13422) [006] dn.3 24577.651233: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142062     kworker/1:1-13091 (13091) [001] d..3 24577.651234: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
142063    RenderThread-25194 (24827) [002] d..1 24577.651235: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
142064              ps-13422 (13422) [006] d..2 24577.651236: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142065     kworker/1:1-13091 (13091) [001] d..2 24577.651245: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
142066 shell svc 13418-13419 ( 1007) [006] d..2 24577.651247: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142067              ps-13422 (13422) [006] d..2 24577.651254: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142068    RenderThread-25194 (24827) [002] d..2 24577.651257: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
142069              ps-13422 (13422) [006] dn.3 24577.651258: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142070              ps-13422 (13422) [006] d..2 24577.651261: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142071          <idle>-0     (-----) [000] .n.1 24577.651263: cpu_idle: state=4294967295 cpu_id=0
142072          <idle>-0     (-----) [000] d..2 24577.651270: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
142073 shell svc 13418-13419 ( 1007) [006] d..2 24577.651272: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142074              ps-13422 (13422) [006] d..2 24577.651280: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142075              ps-13422 (13422) [006] dn.3 24577.651283: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142076              ps-13422 (13422) [006] d..2 24577.651287: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142077            adbd-23485 ( 1007) [001] d..2 24577.651297: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142078 shell svc 13418-13419 ( 1007) [006] d..2 24577.651298: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142079          <idle>-0     (-----) [001] d..1 24577.651305: cpu_idle: state=0 cpu_id=1
142080              ps-13422 (13422) [006] d..2 24577.651305: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142081              ps-13422 (13422) [006] dn.3 24577.651309: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142082              ps-13422 (13422) [006] d..2 24577.651312: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142083    RenderThread-25194 (24827) [002] .... 24577.651319: binder_transaction: transaction=1671708 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
142084 shell svc 13418-13419 ( 1007) [006] d..2 24577.651323: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142085    RenderThread-25194 (24827) [002] ...2 24577.651325: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
142086    RenderThread-25194 (24827) [002] d..4 24577.651328: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
142087              ps-13422 (13422) [006] d..2 24577.651330: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142088              ps-13422 (13422) [006] dn.3 24577.651333: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142089          <idle>-0     (-----) [001] d.h3 24577.651335: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142090              ps-13422 (13422) [006] d..2 24577.651336: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142091    RenderThread-25194 (24827) [002] d..5 24577.651341: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
142092          <idle>-0     (-----) [001] dnh4 24577.651342: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142093          <idle>-0     (-----) [001] .n.1 24577.651347: cpu_idle: state=4294967295 cpu_id=1
142094 shell svc 13418-13419 ( 1007) [006] d..2 24577.651348: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142095    RenderThread-25194 (24827) [002] d..2 24577.651350: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
142096          <idle>-0     (-----) [001] d..2 24577.651353: 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
142097              ps-13422 (13422) [006] d..2 24577.651355: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142098  Binder:23896_4-24423 (23896) [002] .... 24577.651356: binder_transaction_received: transaction=1671708
142099              ps-13422 (13422) [006] dn.3 24577.651359: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142100   kworker/u17:2-23076 (23076) [001] d..2 24577.651361: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142101 s.nexuslauncher-24827 (24827) [000] d..2 24577.651361: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142102              ps-13422 (13422) [006] d..2 24577.651362: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142103   kworker/u17:2-23076 (23076) [001] d..3 24577.651366: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142104          <idle>-0     (-----) [000] d..1 24577.651369: cpu_idle: state=0 cpu_id=0
142105 shell svc 13418-13419 ( 1007) [006] d..2 24577.651373: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142106              ps-13422 (13422) [006] d..2 24577.651381: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142107              ps-13422 (13422) [006] dn.3 24577.651384: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142108   kworker/u17:2-23076 (23076) [001] d..2 24577.651384: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
142109              ps-13422 (13422) [006] d..2 24577.651387: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142110     kworker/1:1-13091 (13091) [001] d..2 24577.651389: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
142111 shell svc 13418-13419 ( 1007) [006] d..2 24577.651398: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142112     kworker/1:1-13091 (13091) [001] d..3 24577.651413: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
142113          <idle>-0     (-----) [000] .n.1 24577.651418: cpu_idle: state=4294967295 cpu_id=0
142114  Binder:23896_4-24423 (23896) [002] .... 24577.651422: binder_transaction: transaction=1671709 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
142115          <idle>-0     (-----) [000] d..2 24577.651425: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
142116     kworker/1:1-13091 (13091) [001] d..2 24577.651428: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142117  Binder:23896_4-24423 (23896) [002] d..2 24577.651430: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
142118          <idle>-0     (-----) [001] d..1 24577.651435: cpu_idle: state=0 cpu_id=1
142119  Binder:23896_4-24423 (23896) [002] d..3 24577.651438: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
142120  Binder:23896_4-24423 (23896) [002] .... 24577.651440: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
142121            adbd-23485 ( 1007) [000] d..2 24577.651447: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142122          <idle>-0     (-----) [000] d..1 24577.651454: cpu_idle: state=0 cpu_id=0
142123  Binder:23896_4-24423 (23896) [002] d..2 24577.651470: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
142124    RenderThread-25194 (24827) [002] .... 24577.651474: binder_transaction_received: transaction=1671709
142125          <idle>-0     (-----) [001] d.h3 24577.651523: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142126          <idle>-0     (-----) [001] dnh4 24577.651528: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142127          <idle>-0     (-----) [001] .n.1 24577.651534: cpu_idle: state=4294967295 cpu_id=1
142128          <idle>-0     (-----) [001] d..2 24577.651540: 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
142129   kworker/u17:2-23076 (23076) [001] d..2 24577.651547: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142130   kworker/u17:2-23076 (23076) [001] d..3 24577.651552: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142131   kworker/u17:2-23076 (23076) [001] d..2 24577.651569: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
142132     kworker/1:1-13091 (13091) [001] d..2 24577.651576: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
142133     kworker/1:1-13091 (13091) [001] d..3 24577.651598: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
142134     kworker/1:1-13091 (13091) [001] d..2 24577.651607: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
142135            adbd-23484 ( 1007) [001] d..2 24577.651619: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
142136            adbd-23484 ( 1007) [001] d..3 24577.651630: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
142137            adbd-23484 ( 1007) [001] d..2 24577.651675: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
142138            adbd-1007  ( 1007) [001] d..1 24577.651758: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
142139            adbd-1007  ( 1007) [001] d..2 24577.651780: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
142140          <idle>-0     (-----) [000] .n.1 24577.651785: cpu_idle: state=4294967295 cpu_id=0
142141          <idle>-0     (-----) [000] d..2 24577.651792: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
142142            adbd-1007  ( 1007) [001] d..2 24577.651816: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142143          <idle>-0     (-----) [001] d..1 24577.651826: cpu_idle: state=0 cpu_id=1
142144            adbd-23485 ( 1007) [000] d..2 24577.651842: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142145          <idle>-0     (-----) [000] d..1 24577.651850: cpu_idle: state=0 cpu_id=0
142146          <idle>-0     (-----) [001] d.h3 24577.651867: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142147          <idle>-0     (-----) [001] dnh4 24577.651874: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142148          <idle>-0     (-----) [001] .n.1 24577.651879: cpu_idle: state=4294967295 cpu_id=1
142149          <idle>-0     (-----) [001] d..2 24577.651886: 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
142150   kworker/u17:2-23076 (23076) [001] d..2 24577.651895: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142151   kworker/u17:2-23076 (23076) [001] d..3 24577.651901: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142152   kworker/u17:2-23076 (23076) [001] d..2 24577.651918: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
142153     kworker/1:1-13091 (13091) [001] d..2 24577.651924: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
142154     kworker/1:1-13091 (13091) [001] d..3 24577.651934: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
142155          <idle>-0     (-----) [000] .n.1 24577.651939: cpu_idle: state=4294967295 cpu_id=0
142156          <idle>-0     (-----) [000] d..2 24577.651945: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
142157     kworker/1:1-13091 (13091) [001] d..2 24577.651948: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142158          <idle>-0     (-----) [001] d..1 24577.651956: cpu_idle: state=0 cpu_id=1
142159            adbd-23485 ( 1007) [000] d..2 24577.651993: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142160          <idle>-0     (-----) [000] d..1 24577.652000: cpu_idle: state=0 cpu_id=0
142161          <idle>-0     (-----) [001] d.h3 24577.652024: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142162          <idle>-0     (-----) [001] dnh4 24577.652029: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142163          <idle>-0     (-----) [001] .n.1 24577.652035: cpu_idle: state=4294967295 cpu_id=1
142164          <idle>-0     (-----) [001] d..2 24577.652040: 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
142165   kworker/u17:2-23076 (23076) [001] d..2 24577.652049: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142166   kworker/u17:2-23076 (23076) [001] d..3 24577.652054: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142167   kworker/u17:2-23076 (23076) [001] d..2 24577.652071: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
142168     kworker/1:1-13091 (13091) [001] d..2 24577.652077: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
142169     kworker/1:1-13091 (13091) [001] d..3 24577.652086: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
142170          <idle>-0     (-----) [000] .n.1 24577.652090: cpu_idle: state=4294967295 cpu_id=0
142171          <idle>-0     (-----) [000] d..2 24577.652097: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
142172     kworker/1:1-13091 (13091) [001] d..2 24577.652099: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142173          <idle>-0     (-----) [001] d..1 24577.652106: cpu_idle: state=0 cpu_id=1
142174            adbd-23485 ( 1007) [000] d..2 24577.652113: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142175          <idle>-0     (-----) [000] d..1 24577.652119: cpu_idle: state=0 cpu_id=0
142176          <idle>-0     (-----) [001] d.h3 24577.652220: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142177          <idle>-0     (-----) [001] dnh4 24577.652226: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142178          <idle>-0     (-----) [001] .n.1 24577.652231: cpu_idle: state=4294967295 cpu_id=1
142179          <idle>-0     (-----) [001] d..2 24577.652237: 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
142180   kworker/u17:2-23076 (23076) [001] d..2 24577.652244: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142181   kworker/u17:2-23076 (23076) [001] d..3 24577.652249: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142182   kworker/u17:2-23076 (23076) [001] d..2 24577.652266: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
142183     kworker/1:1-13091 (13091) [001] d..2 24577.652273: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
142184     kworker/1:1-13091 (13091) [001] d..3 24577.652281: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
142185     kworker/1:1-13091 (13091) [001] d..2 24577.652290: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
142186            adbd-23484 ( 1007) [001] d..2 24577.652300: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
142187            adbd-23484 ( 1007) [001] d..3 24577.652306: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
142188            adbd-23484 ( 1007) [001] d..2 24577.652354: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
142189            adbd-1007  ( 1007) [001] d..2 24577.652416: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142190          <idle>-0     (-----) [001] d..1 24577.652425: cpu_idle: state=0 cpu_id=1
142191              ps-13422 (13422) [006] d..2 24577.653248: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142192              ps-13422 (13422) [006] dn.3 24577.653254: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142193              ps-13422 (13422) [006] d..2 24577.653259: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142194 shell svc 13418-13419 ( 1007) [006] d..2 24577.653270: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
142195          <idle>-0     (-----) [000] ...1 24577.653276: cpu_idle: state=4294967295 cpu_id=0
142196          <idle>-0     (-----) [000] d..1 24577.653279: cpu_idle: state=0 cpu_id=0
142197 shell svc 13418-13419 ( 1007) [006] d..2 24577.653296: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142198          <idle>-0     (-----) [000] dnh2 24577.653297: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
142199          <idle>-0     (-----) [000] .n.1 24577.653301: cpu_idle: state=4294967295 cpu_id=0
142200          <idle>-0     (-----) [000] d..2 24577.653307: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
142201              ps-13422 (13422) [006] d..2 24577.653307: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142202              ps-13422 (13422) [006] dn.3 24577.653312: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142203              ps-13422 (13422) [006] d..2 24577.653315: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142204 shell svc 13418-13419 ( 1007) [006] d..2 24577.653329: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142205              ps-13422 (13422) [006] d..2 24577.653338: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142206              ps-13422 (13422) [006] dn.3 24577.653342: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142207              ps-13422 (13422) [006] d..2 24577.653345: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142208 shell svc 13418-13419 ( 1007) [006] d..2 24577.653357: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142209            adbd-1007  ( 1007) [000] d..1 24577.653364: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
142210              ps-13422 (13422) [006] d..2 24577.653365: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142211              ps-13422 (13422) [006] dn.3 24577.653369: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142212              ps-13422 (13422) [006] d..2 24577.653372: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142213            adbd-1007  ( 1007) [000] d..2 24577.653376: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
142214 shell svc 13418-13419 ( 1007) [006] d..2 24577.653384: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142215              ps-13422 (13422) [006] d..2 24577.653391: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142216              ps-13422 (13422) [006] dn.3 24577.653395: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142217              ps-13422 (13422) [006] d..2 24577.653398: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142218            adbd-1007  ( 1007) [000] d..2 24577.653407: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
142219 shell svc 13418-13419 ( 1007) [006] d..2 24577.653409: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142220              ps-13422 (13422) [006] d..2 24577.653417: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142221              ps-13422 (13422) [006] dn.3 24577.653420: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142222              ps-13422 (13422) [006] d..2 24577.653423: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142223 shell svc 13418-13419 ( 1007) [006] d..2 24577.653435: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142224              ps-13422 (13422) [006] d..2 24577.653442: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142225              ps-13422 (13422) [006] dn.3 24577.653445: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142226              ps-13422 (13422) [006] d..2 24577.653448: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142227 shell svc 13418-13419 ( 1007) [006] d..2 24577.653460: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142228            adbd-23485 ( 1007) [000] d..2 24577.653461: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142229              ps-13422 (13422) [006] d..2 24577.653468: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142230          <idle>-0     (-----) [000] d..1 24577.653469: cpu_idle: state=0 cpu_id=0
142231              ps-13422 (13422) [006] dn.3 24577.653472: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142232          <idle>-0     (-----) [001] d.h3 24577.653473: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142233              ps-13422 (13422) [006] d..2 24577.653475: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142234          <idle>-0     (-----) [001] dnh4 24577.653483: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142235 shell svc 13418-13419 ( 1007) [006] d..2 24577.653486: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142236          <idle>-0     (-----) [001] .n.1 24577.653489: cpu_idle: state=4294967295 cpu_id=1
142237              ps-13422 (13422) [006] d..2 24577.653494: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142238          <idle>-0     (-----) [001] d..2 24577.653495: 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
142239              ps-13422 (13422) [006] dn.3 24577.653497: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142240              ps-13422 (13422) [006] d..2 24577.653501: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142241   kworker/u17:2-23076 (23076) [001] d..2 24577.653504: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142242   kworker/u17:2-23076 (23076) [001] d..3 24577.653509: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142243 shell svc 13418-13419 ( 1007) [006] d..2 24577.653512: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142244              ps-13422 (13422) [006] d..2 24577.653519: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142245              ps-13422 (13422) [006] dn.3 24577.653523: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142246              ps-13422 (13422) [006] d..2 24577.653526: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142247   kworker/u17:2-23076 (23076) [001] d..2 24577.653527: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
142248     kworker/1:1-13091 (13091) [001] d..2 24577.653533: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
142249 shell svc 13418-13419 ( 1007) [006] d..2 24577.653537: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142250     kworker/1:1-13091 (13091) [001] d..3 24577.653543: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
142251              ps-13422 (13422) [006] d..2 24577.653545: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142252              ps-13422 (13422) [006] dn.3 24577.653548: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142253          <idle>-0     (-----) [000] .n.1 24577.653548: cpu_idle: state=4294967295 cpu_id=0
142254              ps-13422 (13422) [006] d..2 24577.653551: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142255          <idle>-0     (-----) [000] d..2 24577.653555: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
142256     kworker/1:1-13091 (13091) [001] d..2 24577.653558: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142257 shell svc 13418-13419 ( 1007) [006] d..2 24577.653564: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142258          <idle>-0     (-----) [001] d..1 24577.653565: cpu_idle: state=0 cpu_id=1
142259              ps-13422 (13422) [006] d..2 24577.653572: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142260              ps-13422 (13422) [006] dn.3 24577.653575: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142261              ps-13422 (13422) [006] d..2 24577.653578: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142262 shell svc 13418-13419 ( 1007) [006] d..2 24577.653590: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142263              ps-13422 (13422) [006] d..2 24577.653597: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142264              ps-13422 (13422) [006] dn.3 24577.653601: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142265            adbd-23485 ( 1007) [000] d..2 24577.653603: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142266              ps-13422 (13422) [006] d..2 24577.653604: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142267          <idle>-0     (-----) [000] d..1 24577.653610: cpu_idle: state=0 cpu_id=0
142268 shell svc 13418-13419 ( 1007) [006] d..2 24577.653615: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142269          <idle>-0     (-----) [001] d.h3 24577.653616: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142270          <idle>-0     (-----) [001] dnh4 24577.653621: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142271              ps-13422 (13422) [006] d..2 24577.653623: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142272          <idle>-0     (-----) [001] .n.1 24577.653626: cpu_idle: state=4294967295 cpu_id=1
142273              ps-13422 (13422) [006] dn.3 24577.653627: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142274              ps-13422 (13422) [006] d..2 24577.653630: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142275          <idle>-0     (-----) [001] d..2 24577.653633: 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
142276 shell svc 13418-13419 ( 1007) [006] d..2 24577.653641: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142277   kworker/u17:2-23076 (23076) [001] d..2 24577.653642: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142278   kworker/u17:2-23076 (23076) [001] d..3 24577.653647: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142279              ps-13422 (13422) [006] d..2 24577.653649: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142280              ps-13422 (13422) [006] dn.3 24577.653652: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142281              ps-13422 (13422) [006] d..2 24577.653655: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142282   kworker/u17:2-23076 (23076) [001] d..2 24577.653665: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
142283 shell svc 13418-13419 ( 1007) [006] d..2 24577.653667: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142284     kworker/1:1-13091 (13091) [001] d..2 24577.653671: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
142285              ps-13422 (13422) [006] d..2 24577.653675: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142286              ps-13422 (13422) [006] dn.3 24577.653679: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142287     kworker/1:1-13091 (13091) [001] d..3 24577.653680: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
142288              ps-13422 (13422) [006] d..2 24577.653683: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142289          <idle>-0     (-----) [000] .n.1 24577.653685: cpu_idle: state=4294967295 cpu_id=0
142290          <idle>-0     (-----) [000] d..2 24577.653692: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
142291 shell svc 13418-13419 ( 1007) [006] d..2 24577.653695: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142292     kworker/1:1-13091 (13091) [001] d..2 24577.653695: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142293              ps-13422 (13422) [006] d..2 24577.653702: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142294          <idle>-0     (-----) [001] d..1 24577.653702: cpu_idle: state=0 cpu_id=1
142295              ps-13422 (13422) [006] dn.3 24577.653705: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142296              ps-13422 (13422) [006] d..2 24577.653709: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142297            adbd-23485 ( 1007) [000] d..2 24577.653709: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142298          <idle>-0     (-----) [000] d..1 24577.653716: cpu_idle: state=0 cpu_id=0
142299    RenderThread-25194 (24827) [002] d..2 24577.653718: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
142300 shell svc 13418-13419 ( 1007) [006] d..2 24577.653720: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142301          <idle>-0     (-----) [002] d..1 24577.653727: cpu_idle: state=0 cpu_id=2
142302              ps-13422 (13422) [006] d..2 24577.653728: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142303              ps-13422 (13422) [006] dn.3 24577.653731: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142304              ps-13422 (13422) [006] d..2 24577.653734: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142305          <idle>-0     (-----) [003] d.h2 24577.653737: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
142306 shell svc 13418-13419 ( 1007) [006] d..2 24577.653746: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142307          <idle>-0     (-----) [003] dnh3 24577.653746: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
142308          <idle>-0     (-----) [003] .n.1 24577.653751: cpu_idle: state=4294967295 cpu_id=3
142309              ps-13422 (13422) [006] d..2 24577.653753: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142310              ps-13422 (13422) [006] dn.3 24577.653757: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142311          <idle>-0     (-----) [003] d..2 24577.653757: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
142312              ps-13422 (13422) [006] d..2 24577.653760: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142313        DispSync-23904 (23896) [003] d..1 24577.653770: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
142314 shell svc 13418-13419 ( 1007) [006] d..2 24577.653771: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142315        DispSync-23904 (23896) [003] d..2 24577.653779: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
142316              ps-13422 (13422) [006] d..2 24577.653779: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142317              ps-13422 (13422) [006] dn.3 24577.653783: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142318          <idle>-0     (-----) [000] .n.1 24577.653783: cpu_idle: state=4294967295 cpu_id=0
142319              ps-13422 (13422) [006] d..2 24577.653786: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142320          <idle>-0     (-----) [000] d..2 24577.653789: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
142321        DispSync-23904 (23896) [003] d..2 24577.653796: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
142322 shell svc 13418-13419 ( 1007) [006] d..2 24577.653798: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142323          <idle>-0     (-----) [001] d.h3 24577.653802: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142324          <idle>-0     (-----) [003] d..1 24577.653802: cpu_idle: state=0 cpu_id=3
142325              ps-13422 (13422) [006] d..2 24577.653805: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142326          <idle>-0     (-----) [001] dnh4 24577.653808: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142327          <idle>-0     (-----) [002] d.h2 24577.653808: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
142328              ps-13422 (13422) [006] dn.3 24577.653809: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142329              ps-13422 (13422) [006] d..2 24577.653812: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142330          <idle>-0     (-----) [001] .n.1 24577.653814: cpu_idle: state=4294967295 cpu_id=1
142331          <idle>-0     (-----) [002] d.h3 24577.653818: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
142332          <idle>-0     (-----) [001] d..2 24577.653820: 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
142333          <idle>-0     (-----) [002] dnh3 24577.653820: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
142334 shell svc 13418-13419 ( 1007) [006] d..2 24577.653823: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142335   sfEventThread-23906 (23896) [000] d..3 24577.653826: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
142336          <idle>-0     (-----) [002] .n.1 24577.653826: cpu_idle: state=4294967295 cpu_id=2
142337   kworker/u17:2-23076 (23076) [001] d..2 24577.653827: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142338              ps-13422 (13422) [006] d..2 24577.653831: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142339              ps-13422 (13422) [006] dn.3 24577.653834: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142340          <idle>-0     (-----) [002] d..2 24577.653834: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
142341   kworker/u17:2-23076 (23076) [001] d..3 24577.653835: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142342              ps-13422 (13422) [006] d..2 24577.653837: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142343   sfEventThread-23906 (23896) [000] d..4 24577.653848: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
142344 shell svc 13418-13419 ( 1007) [006] d..2 24577.653848: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142345          <idle>-0     (-----) [003] .n.1 24577.653852: cpu_idle: state=4294967295 cpu_id=3
142346              ps-13422 (13422) [006] d..2 24577.653856: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142347   kworker/u17:2-23076 (23076) [001] d..2 24577.653856: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
142348          <idle>-0     (-----) [003] d..2 24577.653858: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
142349              ps-13422 (13422) [006] dn.3 24577.653859: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142350     kworker/1:1-13091 (13091) [001] d..2 24577.653862: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
142351              ps-13422 (13422) [006] d..2 24577.653863: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142352   sfEventThread-23906 (23896) [000] d..2 24577.653868: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142353 shell svc 13418-13419 ( 1007) [006] d..2 24577.653874: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142354          <idle>-0     (-----) [000] d..1 24577.653876: cpu_idle: state=0 cpu_id=0
142355              ps-13422 (13422) [006] d..2 24577.653882: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142356     kworker/1:1-13091 (13091) [001] d..3 24577.653883: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
142357              ps-13422 (13422) [006] dn.3 24577.653886: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142358              ps-13422 (13422) [006] d..2 24577.653889: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142359          <idle>-0     (-----) [000] .n.1 24577.653889: cpu_idle: state=4294967295 cpu_id=0
142360          <idle>-0     (-----) [000] d..2 24577.653897: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
142361     kworker/1:1-13091 (13091) [001] d..2 24577.653898: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142362 shell svc 13418-13419 ( 1007) [006] d..2 24577.653900: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142363          <idle>-0     (-----) [001] d..1 24577.653905: cpu_idle: state=0 cpu_id=1
142364              ps-13422 (13422) [006] d..2 24577.653908: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142365            adbd-23484 ( 1007) [000] d..2 24577.653909: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
142366              ps-13422 (13422) [006] dn.3 24577.653912: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142367              ps-13422 (13422) [006] d..2 24577.653915: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142368            adbd-23484 ( 1007) [000] d..3 24577.653916: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
142369 shell svc 13418-13419 ( 1007) [006] d..2 24577.653926: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142370              ps-13422 (13422) [006] d..2 24577.653934: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142371              ps-13422 (13422) [006] dn.3 24577.653937: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142372              ps-13422 (13422) [006] d..2 24577.653940: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142373 shell svc 13418-13419 ( 1007) [006] d..2 24577.653952: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142374              ps-13422 (13422) [006] d..2 24577.653959: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142375              ps-13422 (13422) [006] dn.3 24577.653963: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142376            adbd-23484 ( 1007) [000] d..2 24577.653964: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
142377              ps-13422 (13422) [006] d..2 24577.653966: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142378 shell svc 13418-13419 ( 1007) [006] d..2 24577.653977: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142379              ps-13422 (13422) [006] d..2 24577.653985: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142380              ps-13422 (13422) [006] dn.3 24577.653988: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142381              ps-13422 (13422) [006] d..2 24577.653991: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142382 shell svc 13418-13419 ( 1007) [006] d..2 24577.654003: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142383              ps-13422 (13422) [006] d..2 24577.654010: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142384              ps-13422 (13422) [006] dn.3 24577.654013: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142385              ps-13422 (13422) [006] d..2 24577.654016: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142386 shell svc 13418-13419 ( 1007) [006] d..2 24577.654029: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142387              ps-13422 (13422) [006] d..2 24577.654037: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142388              ps-13422 (13422) [006] dn.3 24577.654040: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142389              ps-13422 (13422) [006] d..2 24577.654044: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142390    RenderThread-25194 (24827) [002] .... 24577.654045: binder_transaction: transaction=1671710 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
142391            adbd-1007  ( 1007) [000] d..1 24577.654052: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
142392    RenderThread-25194 (24827) [002] ...2 24577.654054: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
142393 shell svc 13418-13419 ( 1007) [006] d..2 24577.654056: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142394    RenderThread-25194 (24827) [002] d..4 24577.654056: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
142395              ps-13422 (13422) [006] d..2 24577.654063: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142396    RenderThread-25194 (24827) [002] dn.5 24577.654065: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
142397              ps-13422 (13422) [006] dn.3 24577.654067: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142398              ps-13422 (13422) [006] d..2 24577.654070: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142399    RenderThread-25194 (24827) [002] d..2 24577.654071: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
142400  Binder:23896_4-24423 (23896) [002] .... 24577.654076: binder_transaction_received: transaction=1671710
142401            adbd-1007  ( 1007) [000] d..2 24577.654078: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
142402 shell svc 13418-13419 ( 1007) [006] d..2 24577.654081: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142403              ps-13422 (13422) [006] d..2 24577.654089: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142404              ps-13422 (13422) [006] dn.3 24577.654093: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142405              ps-13422 (13422) [006] d..2 24577.654096: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142406 shell svc 13418-13419 ( 1007) [006] d..2 24577.654107: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142407              ps-13422 (13422) [006] d..2 24577.654114: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142408  surfaceflinger-23896 (23896) [003] d..2 24577.654115: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
142409              ps-13422 (13422) [006] dn.3 24577.654118: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142410              ps-13422 (13422) [006] d..2 24577.654121: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142411            adbd-1007  ( 1007) [000] d..2 24577.654123: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
142412 shell svc 13418-13419 ( 1007) [006] d..2 24577.654132: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142413              ps-13422 (13422) [006] d..2 24577.654139: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142414  surfaceflinger-23896 (23896) [003] d..3 24577.654142: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
142415              ps-13422 (13422) [006] dn.3 24577.654143: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142416  Binder:23896_4-24423 (23896) [002] d..1 24577.654146: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
142417              ps-13422 (13422) [006] d..2 24577.654146: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142418    RenderThread-25194 (24827) [000] d..2 24577.654148: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
142419 shell svc 13418-13419 ( 1007) [006] d..2 24577.654157: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142420              ps-13422 (13422) [006] d..2 24577.654164: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142421  Binder:23896_4-24423 (23896) [002] d..2 24577.654166: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
142422              ps-13422 (13422) [006] dn.3 24577.654168: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142423  Binder:23896_4-24423 (23896) [002] d..1 24577.654169: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
142424          <idle>-0     (-----) [001] .n.1 24577.654171: cpu_idle: state=4294967295 cpu_id=1
142425              ps-13422 (13422) [006] d..2 24577.654171: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142426          <idle>-0     (-----) [001] d..2 24577.654177: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
142427  surfaceflinger-23896 (23896) [003] d..2 24577.654181: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
142428 shell svc 13418-13419 ( 1007) [006] d..2 24577.654183: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142429              ps-13422 (13422) [006] d..2 24577.654190: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142430  Binder:23896_4-24423 (23896) [002] d..2 24577.654191: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
142431              ps-13422 (13422) [006] dn.3 24577.654193: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142432          <idle>-0     (-----) [003] d..2 24577.654195: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
142433              ps-13422 (13422) [006] d..2 24577.654197: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142434            adbd-23485 ( 1007) [000] d..2 24577.654206: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
142435 shell svc 13418-13419 ( 1007) [006] d..2 24577.654208: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142436   sfEventThread-23906 (23896) [001] d..2 24577.654210: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142437         rcuop/2-29    (   29) [000] d..2 24577.654223: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142438              ps-13422 (13422) [006] d.s2 24577.654228: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
142439          <idle>-0     (-----) [001] d.h4 24577.654228: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142440          <idle>-0     (-----) [001] dnh5 24577.654236: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142441          <idle>-0     (-----) [000] dnH3 24577.654256: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
142442              ps-13422 (13422) [006] d..2 24577.654258: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142443              ps-13422 (13422) [006] dn.3 24577.654262: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142444  Binder:23896_4-24423 (23896) [002] .... 24577.654265: binder_transaction: transaction=1671711 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
142445              ps-13422 (13422) [006] d..2 24577.654266: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142446  Binder:23896_4-24423 (23896) [002] d..2 24577.654271: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
142447          <idle>-0     (-----) [000] d..2 24577.654271: 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
142448          <idle>-0     (-----) [001] d..2 24577.654272: 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
142449 shell svc 13418-13419 ( 1007) [006] d..2 24577.654279: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142450   kworker/u17:2-23076 (23076) [001] d..2 24577.654281: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142451  Binder:23896_4-24423 (23896) [002] d..3 24577.654286: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
142452              ps-13422 (13422) [006] d..2 24577.654288: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142453  Binder:23896_4-24423 (23896) [002] .... 24577.654288: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
142454   kworker/u17:2-23076 (23076) [001] d..3 24577.654289: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142455              ps-13422 (13422) [006] dn.3 24577.654292: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142456              ps-13422 (13422) [006] d..2 24577.654295: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142457 shell svc 13418-13419 ( 1007) [006] d..2 24577.654307: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142458   kworker/u17:2-23076 (23076) [001] d..2 24577.654311: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
142459              ps-13422 (13422) [006] d..2 24577.654314: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142460  Binder:23896_4-24423 (23896) [002] d..2 24577.654317: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
142461              ps-13422 (13422) [006] dn.3 24577.654318: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142462              ps-13422 (13422) [006] d..2 24577.654321: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142463    RenderThread-25194 (24827) [002] .... 24577.654321: binder_transaction_received: transaction=1671711
142464     kworker/1:1-13091 (13091) [001] d..2 24577.654323: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
142465 shell svc 13418-13419 ( 1007) [006] d..2 24577.654332: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142466              ps-13422 (13422) [006] d..2 24577.654340: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142467              ps-13422 (13422) [006] dn.3 24577.654344: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142468     kworker/1:1-13091 (13091) [001] d..3 24577.654345: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
142469              ps-13422 (13422) [006] d..2 24577.654347: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142470 shell svc 13418-13419 ( 1007) [006] d..2 24577.654358: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142471     kworker/1:1-13091 (13091) [001] d..2 24577.654360: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142472          <idle>-0     (-----) [001] d..1 24577.654369: cpu_idle: state=0 cpu_id=1
142473  kworker/u16:10-23868 (23868) [000] .... 24577.654377: clk_set_rate: l3_cluster0_vote_clk 576000000
142474  surfaceflinger-23896 (23896) [003] ...1 24577.654387: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
142475  surfaceflinger-23896 (23896) [003] ...1 24577.654392: tracing_mark_write: E|23896
142476    RenderThread-25194 (24827) [002] d..2 24577.654408: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
142477          <idle>-0     (-----) [002] d..1 24577.654418: cpu_idle: state=0 cpu_id=2
142478  surfaceflinger-23896 (23896) [003] .... 24577.654435: binder_transaction: transaction=1671712 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
142479  surfaceflinger-23896 (23896) [003] ...2 24577.654453: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
142480  kworker/u16:10-23868 (23868) [000] .... 24577.654456: clk_set_rate: l3_cluster1_vote_clk 940800000
142481  surfaceflinger-23896 (23896) [003] d..4 24577.654459: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=000
142482  kworker/u16:10-23868 (23868) [000] .... 24577.654460: clk_set_rate: l3_clk 940800000
142483  surfaceflinger-23896 (23896) [003] d..5 24577.654480: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
142484          <idle>-0     (-----) [001] .n.1 24577.654484: cpu_idle: state=4294967295 cpu_id=1
142485          <idle>-0     (-----) [001] d..2 24577.654491: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
142486  surfaceflinger-23896 (23896) [003] d..2 24577.654495: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
142487  HwBinder:598_3-633   (  598) [001] .... 24577.654508: binder_transaction_received: transaction=1671712
142488  HwBinder:598_3-633   (  598) [001] ...1 24577.654562: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
142489            adbd-23485 ( 1007) [003] d..2 24577.654576: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
142490          <idle>-0     (-----) [003] d..1 24577.654583: cpu_idle: state=0 cpu_id=3
142491  HwBinder:598_3-633   (  598) [001] d.h2 24577.654616: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142492  HwBinder:598_3-633   (  598) [001] d.h3 24577.654629: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142493  kworker/u16:10-23868 (23868) [000] d..2 24577.654690: 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
142494          <idle>-0     (-----) [000] d..1 24577.654700: cpu_idle: state=0 cpu_id=0
142495              ps-13422 (13422) [006] d..2 24577.654717: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142496  HwBinder:598_3-633   (  598) [001] ...1 24577.654721: tracing_mark_write: B|598|HWCSession::PresentDisplay::
142497              ps-13422 (13422) [006] dn.3 24577.654724: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142498          <idle>-0     (-----) [003] d.s3 24577.654726: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
142499              ps-13422 (13422) [006] d..2 24577.654728: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142500          <idle>-0     (-----) [003] d.s4 24577.654733: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
142501          <idle>-0     (-----) [003] d.s4 24577.654740: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
142502 shell svc 13418-13419 ( 1007) [006] d..2 24577.654745: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142503          <idle>-0     (-----) [000] .n.1 24577.654745: cpu_idle: state=4294967295 cpu_id=0
142504          <idle>-0     (-----) [003] ...1 24577.654746: cpu_idle: state=4294967295 cpu_id=3
142505          <idle>-0     (-----) [003] d..1 24577.654749: cpu_idle: state=0 cpu_id=3
142506          <idle>-0     (-----) [000] d..2 24577.654753: 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
142507              ps-13422 (13422) [006] d..2 24577.654754: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142508              ps-13422 (13422) [006] dn.3 24577.654758: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142509              ps-13422 (13422) [006] d..2 24577.654762: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142510 shell svc 13418-13419 ( 1007) [006] d..2 24577.654774: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142511              ps-13422 (13422) [006] d..2 24577.654783: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142512              ps-13422 (13422) [006] dn.3 24577.654786: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142513              ps-13422 (13422) [006] d..2 24577.654790: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142514 shell svc 13418-13419 ( 1007) [006] d..2 24577.654801: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142515              ps-13422 (13422) [006] d..2 24577.654809: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142516              ps-13422 (13422) [006] dn.3 24577.654813: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142517              ps-13422 (13422) [006] d..2 24577.654816: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142518 shell svc 13418-13419 ( 1007) [006] d..2 24577.654828: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142519              ps-13422 (13422) [006] d..2 24577.654836: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142520              ps-13422 (13422) [006] dn.3 24577.654840: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142521              ps-13422 (13422) [006] d..2 24577.654843: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142522 shell svc 13418-13419 ( 1007) [006] d..2 24577.654855: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142523  HwBinder:598_3-633   (  598) [001] ...1 24577.654896: tracing_mark_write: B|598|HWDeviceDRM::Commit::
142524  HwBinder:598_3-633   (  598) [001] ...1 24577.654909: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
142525  kworker/u16:10-23868 (23868) [000] d..2 24577.654956: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
142526          <idle>-0     (-----) [003] d.s3 24577.654966: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
142527   kworker/u17:2-23076 (23076) [000] d..2 24577.654966: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
142528   kworker/u17:2-23076 (23076) [000] d..3 24577.654976: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
142529          <idle>-0     (-----) [003] d.s4 24577.654987: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
142530          <idle>-0     (-----) [003] dns4 24577.654989: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
142531          <idle>-0     (-----) [003] .n.1 24577.654994: cpu_idle: state=4294967295 cpu_id=3
142532   kworker/u17:2-23076 (23076) [000] d..2 24577.654995: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
142533          <idle>-0     (-----) [003] d..2 24577.655000: 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
142534     kworker/0:1-13012 (13012) [000] d..2 24577.655001: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
142535  HwBinder:598_3-633   (  598) [001] d.h2 24577.655004: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
142536  kworker/u16:10-23868 (23868) [003] d..2 24577.655020: 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
142537          <idle>-0     (-----) [003] d..1 24577.655024: cpu_idle: state=0 cpu_id=3
142538     kworker/0:1-13012 (13012) [000] d..3 24577.655034: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
142539  HwBinder:598_3-633   (  598) [001] d.h3 24577.655038: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
142540          <idle>-0     (-----) [003] .n.1 24577.655043: cpu_idle: state=4294967295 cpu_id=3
142541     kworker/0:1-13012 (13012) [000] d..2 24577.655044: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
142542          <idle>-0     (-----) [003] d..2 24577.655048: 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
142543   kworker/u17:2-23076 (23076) [003] d..2 24577.655063: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
142544            adbd-23485 ( 1007) [000] d..2 24577.655073: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142545   kworker/u17:2-23076 (23076) [003] d..3 24577.655079: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
142546          <idle>-0     (-----) [000] d..1 24577.655083: cpu_idle: state=0 cpu_id=0
142547   kworker/u17:2-23076 (23076) [003] d..2 24577.655099: 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
142548     kworker/3:1-12662 (12662) [003] d..2 24577.655113: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
142549     kworker/3:1-12662 (12662) [003] d..3 24577.655136: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
142550     kworker/3:1-12662 (12662) [003] d..2 24577.655148: 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
142551            adbd-23484 ( 1007) [003] d..2 24577.655163: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
142552            adbd-23484 ( 1007) [003] d..3 24577.655173: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
142553            adbd-23484 ( 1007) [003] d..2 24577.655228: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
142554            adbd-1007  ( 1007) [003] d..1 24577.655325: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
142555            adbd-1007  ( 1007) [003] d..2 24577.655352: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
142556          <idle>-0     (-----) [000] d.h3 24577.655375: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
142557          <idle>-0     (-----) [000] d.h4 24577.655389: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
142558            adbd-1007  ( 1007) [003] d..2 24577.655395: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
142559          <idle>-0     (-----) [000] ...1 24577.655411: cpu_idle: state=4294967295 cpu_id=0
142560          <idle>-0     (-----) [000] d..1 24577.655414: cpu_idle: state=0 cpu_id=0
142561 kgsl_worker_thr-246   (  246) [003] d..2 24577.655467: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
142562 kgsl_worker_thr-246   (  246) [003] d..3 24577.655479: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
142563 kgsl_worker_thr-246   (  246) [003] d..2 24577.655498: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
142564  HwBinder:598_3-633   (  598) [001] d..2 24577.655602: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
142565  HwBinder:598_3-633   (  598) [001] d..3 24577.655616: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
142566          <idle>-0     (-----) [002] .n.1 24577.655622: cpu_idle: state=4294967295 cpu_id=2
142567          <idle>-0     (-----) [002] d..2 24577.655628: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
142568  HwBinder:598_3-633   (  598) [001] ...1 24577.655710: tracing_mark_write: E|598
142569  HwBinder:598_3-633   (  598) [001] ...1 24577.655714: tracing_mark_write: E|598
142570  HwBinder:598_3-633   (  598) [001] ...1 24577.655789: tracing_mark_write: E|598
142571              ps-13422 (13422) [006] d..2 24577.655854: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142572  HwBinder:598_3-633   (  598) [001] ...1 24577.655857: tracing_mark_write: E|598
142573              ps-13422 (13422) [006] dn.3 24577.655860: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142574              ps-13422 (13422) [006] d..2 24577.655865: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142575  HwBinder:598_3-633   (  598) [001] .... 24577.655873: binder_transaction: transaction=1671713 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
142576 shell svc 13418-13419 ( 1007) [006] d..2 24577.655882: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142577  HwBinder:598_3-633   (  598) [001] d..2 24577.655889: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
142578              ps-13422 (13422) [006] d..2 24577.655892: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142579              ps-13422 (13422) [006] dn.3 24577.655896: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142580              ps-13422 (13422) [006] d..2 24577.655899: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142581  HwBinder:598_3-633   (  598) [001] d..3 24577.655907: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
142582  HwBinder:598_3-633   (  598) [001] .... 24577.655910: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
142583          <idle>-0     (-----) [000] .n.1 24577.655911: cpu_idle: state=4294967295 cpu_id=0
142584 shell svc 13418-13419 ( 1007) [006] d..2 24577.655913: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142585          <idle>-0     (-----) [000] d..2 24577.655917: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
142586              ps-13422 (13422) [006] d..2 24577.655922: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142587  surfaceflinger-23896 (23896) [000] .... 24577.655924: binder_transaction_received: transaction=1671713
142588              ps-13422 (13422) [006] dn.3 24577.655926: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142589              ps-13422 (13422) [006] d..2 24577.655929: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142590 shell svc 13418-13419 ( 1007) [006] d..2 24577.655942: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142591              ps-13422 (13422) [006] d..2 24577.655950: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142592              ps-13422 (13422) [006] dn.3 24577.655954: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142593              ps-13422 (13422) [006] d..2 24577.655957: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142594 shell svc 13418-13419 ( 1007) [006] d..2 24577.655969: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142595  HwBinder:598_3-633   (  598) [001] d..2 24577.655972: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
142596              ps-13422 (13422) [006] d..2 24577.655977: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142597              ps-13422 (13422) [006] dn.3 24577.655980: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142598              ps-13422 (13422) [006] d..2 24577.655984: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142599  kworker/u16:10-23868 (23868) [003] d..2 24577.655990: 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
142600 shell svc 13418-13419 ( 1007) [006] d..2 24577.655996: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142601          <idle>-0     (-----) [003] d..1 24577.655997: cpu_idle: state=0 cpu_id=3
142602              ps-13422 (13422) [006] d..2 24577.656004: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142603              ps-13422 (13422) [006] dn.3 24577.656008: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142604              ps-13422 (13422) [006] d..2 24577.656011: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142605 shell svc 13418-13419 ( 1007) [006] d..2 24577.656023: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142606              ps-13422 (13422) [006] d..2 24577.656030: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142607              ps-13422 (13422) [006] dn.3 24577.656034: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142608            adbd-23485 ( 1007) [001] d..2 24577.656037: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142609              ps-13422 (13422) [006] d..2 24577.656037: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142610 shell svc 13418-13419 ( 1007) [006] d..2 24577.656049: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142611              ps-13422 (13422) [006] d..2 24577.656057: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142612          <idle>-0     (-----) [001] d.h4 24577.656057: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
142613              ps-13422 (13422) [006] dn.3 24577.656060: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142614              ps-13422 (13422) [006] d..2 24577.656064: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142615 shell svc 13418-13419 ( 1007) [006] d..2 24577.656075: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142616          <idle>-0     (-----) [001] dnh5 24577.656078: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142617              ps-13422 (13422) [006] d..2 24577.656083: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142618              ps-13422 (13422) [006] dn.3 24577.656087: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142619          <idle>-0     (-----) [001] d..2 24577.656088: 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
142620              ps-13422 (13422) [006] d..2 24577.656091: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142621   kworker/u17:2-23076 (23076) [001] d..2 24577.656097: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142622 shell svc 13418-13419 ( 1007) [006] d..2 24577.656102: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142623   kworker/u17:2-23076 (23076) [001] d..3 24577.656103: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142624              ps-13422 (13422) [006] d..2 24577.656110: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142625              ps-13422 (13422) [006] dn.3 24577.656113: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142626              ps-13422 (13422) [006] d..2 24577.656117: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142627   kworker/u17:2-23076 (23076) [001] d..2 24577.656121: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
142628     kworker/1:1-13091 (13091) [001] d..2 24577.656127: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
142629 shell svc 13418-13419 ( 1007) [006] d..2 24577.656128: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142630              ps-13422 (13422) [006] d..2 24577.656138: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142631              ps-13422 (13422) [006] dn.3 24577.656141: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142632              ps-13422 (13422) [006] d..2 24577.656145: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142633     kworker/1:1-13091 (13091) [001] d..3 24577.656150: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
142634 shell svc 13418-13419 ( 1007) [006] d..2 24577.656156: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142635              ps-13422 (13422) [006] d..2 24577.656165: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142636     kworker/1:1-13091 (13091) [001] d..2 24577.656165: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142637              ps-13422 (13422) [006] dn.3 24577.656168: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142638              ps-13422 (13422) [006] d..2 24577.656172: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142639          <idle>-0     (-----) [001] d..1 24577.656175: cpu_idle: state=0 cpu_id=1
142640 shell svc 13418-13419 ( 1007) [006] d..2 24577.656183: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142641              ps-13422 (13422) [006] d..2 24577.656191: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142642              ps-13422 (13422) [006] dn.3 24577.656194: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142643              ps-13422 (13422) [006] d..2 24577.656198: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142644 shell svc 13418-13419 ( 1007) [006] d..2 24577.656209: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142645              ps-13422 (13422) [006] d..2 24577.656217: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142646              ps-13422 (13422) [006] dn.3 24577.656221: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142647              ps-13422 (13422) [006] d..2 24577.656224: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142648 shell svc 13418-13419 ( 1007) [006] d..2 24577.656236: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142649              ps-13422 (13422) [006] d..2 24577.656245: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142650              ps-13422 (13422) [006] dn.3 24577.656248: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142651              ps-13422 (13422) [006] d..2 24577.656252: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142652 shell svc 13418-13419 ( 1007) [006] d..2 24577.656263: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142653              ps-13422 (13422) [006] d..2 24577.656272: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142654              ps-13422 (13422) [006] dn.3 24577.656276: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142655              ps-13422 (13422) [006] d..2 24577.656279: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142656 shell svc 13418-13419 ( 1007) [006] d..2 24577.656291: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142657              ps-13422 (13422) [006] d..2 24577.656299: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142658              ps-13422 (13422) [006] dn.3 24577.656303: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142659              ps-13422 (13422) [006] d..2 24577.656306: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142660 shell svc 13418-13419 ( 1007) [006] d..2 24577.656317: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142661              ps-13422 (13422) [006] d..2 24577.656325: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142662              ps-13422 (13422) [006] dn.3 24577.656329: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142663              ps-13422 (13422) [006] d..2 24577.656333: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142664 shell svc 13418-13419 ( 1007) [006] d..2 24577.656344: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142665              ps-13422 (13422) [006] d..2 24577.656352: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142666              ps-13422 (13422) [006] dn.3 24577.656356: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142667              ps-13422 (13422) [006] d..2 24577.656360: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142668  surfaceflinger-23896 (23896) [000] d..2 24577.656370: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
142669 shell svc 13418-13419 ( 1007) [006] d..2 24577.656371: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142670 crtc_commit:111-253   (  253) [002] d..2 24577.656431: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
142671            adbd-23485 ( 1007) [000] d..2 24577.656435: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142672          <idle>-0     (-----) [002] d..1 24577.656441: cpu_idle: state=0 cpu_id=2
142673          <idle>-0     (-----) [000] d..1 24577.656445: cpu_idle: state=0 cpu_id=0
142674          <idle>-0     (-----) [001] d.h3 24577.656466: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142675              ps-13422 (13422) [006] d..2 24577.656467: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142676              ps-13422 (13422) [006] dn.3 24577.656472: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142677          <idle>-0     (-----) [001] dnh4 24577.656473: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142678              ps-13422 (13422) [006] d..2 24577.656476: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142679          <idle>-0     (-----) [001] .n.1 24577.656479: cpu_idle: state=4294967295 cpu_id=1
142680          <idle>-0     (-----) [001] d..2 24577.656486: 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
142681 shell svc 13418-13419 ( 1007) [006] d..2 24577.656493: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142682   kworker/u17:2-23076 (23076) [001] d..2 24577.656497: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142683   kworker/u17:2-23076 (23076) [001] d..3 24577.656503: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142684   kworker/u17:2-23076 (23076) [001] d..2 24577.656522: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
142685     kworker/1:1-13091 (13091) [001] d..2 24577.656528: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
142686     kworker/1:1-13091 (13091) [001] d..3 24577.656537: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
142687          <idle>-0     (-----) [000] .n.1 24577.656543: cpu_idle: state=4294967295 cpu_id=0
142688          <idle>-0     (-----) [000] d..2 24577.656550: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
142689     kworker/1:1-13091 (13091) [001] d..2 24577.656552: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142690          <idle>-0     (-----) [001] d..1 24577.656560: cpu_idle: state=0 cpu_id=1
142691            adbd-23485 ( 1007) [000] d..2 24577.656571: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142692          <idle>-0     (-----) [000] d..1 24577.656578: cpu_idle: state=0 cpu_id=0
142693          <idle>-0     (-----) [001] d.h3 24577.656714: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142694          <idle>-0     (-----) [001] dnh4 24577.656719: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142695          <idle>-0     (-----) [001] .n.1 24577.656725: cpu_idle: state=4294967295 cpu_id=1
142696          <idle>-0     (-----) [001] d..2 24577.656732: 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
142697   kworker/u17:2-23076 (23076) [001] d..2 24577.656739: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142698   kworker/u17:2-23076 (23076) [001] d..3 24577.656745: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142699   kworker/u17:2-23076 (23076) [001] d..2 24577.656763: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
142700     kworker/1:1-13091 (13091) [001] d..2 24577.656771: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
142701     kworker/1:1-13091 (13091) [001] d..3 24577.656780: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
142702          <idle>-0     (-----) [003] .n.1 24577.656786: cpu_idle: state=4294967295 cpu_id=3
142703          <idle>-0     (-----) [003] d..2 24577.656792: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
142704     kworker/1:1-13091 (13091) [001] d..2 24577.656795: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142705          <idle>-0     (-----) [001] d..1 24577.656802: cpu_idle: state=0 cpu_id=1
142706            adbd-23484 ( 1007) [003] d..2 24577.656806: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
142707            adbd-23484 ( 1007) [003] d..3 24577.656814: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
142708            adbd-23484 ( 1007) [003] d..2 24577.656869: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
142709            adbd-1007  ( 1007) [003] d..1 24577.656960: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
142710            adbd-1007  ( 1007) [003] d..2 24577.656972: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
142711          <idle>-0     (-----) [000] .n.1 24577.656977: cpu_idle: state=4294967295 cpu_id=0
142712          <idle>-0     (-----) [000] d..2 24577.656983: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
142713            adbd-1007  ( 1007) [003] d..2 24577.657010: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
142714          <idle>-0     (-----) [003] d..1 24577.657017: cpu_idle: state=0 cpu_id=3
142715            adbd-23485 ( 1007) [000] d..2 24577.657037: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142716          <idle>-0     (-----) [000] d..1 24577.657044: cpu_idle: state=0 cpu_id=0
142717          <idle>-0     (-----) [001] d.h3 24577.657056: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142718          <idle>-0     (-----) [001] dnh4 24577.657061: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142719          <idle>-0     (-----) [001] .n.1 24577.657067: cpu_idle: state=4294967295 cpu_id=1
142720          <idle>-0     (-----) [001] d..2 24577.657074: 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
142721   kworker/u17:2-23076 (23076) [001] d..2 24577.657084: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142722   kworker/u17:2-23076 (23076) [001] d..3 24577.657090: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142723   kworker/u17:2-23076 (23076) [001] d..2 24577.657109: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
142724     kworker/1:1-13091 (13091) [001] d..2 24577.657116: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
142725     kworker/1:1-13091 (13091) [001] d..3 24577.657126: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
142726          <idle>-0     (-----) [000] .n.1 24577.657132: cpu_idle: state=4294967295 cpu_id=0
142727          <idle>-0     (-----) [000] d..2 24577.657138: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
142728     kworker/1:1-13091 (13091) [001] d..2 24577.657141: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142729          <idle>-0     (-----) [001] d..1 24577.657148: cpu_idle: state=0 cpu_id=1
142730            adbd-23485 ( 1007) [000] d..2 24577.657193: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142731          <idle>-0     (-----) [000] d..1 24577.657200: cpu_idle: state=0 cpu_id=0
142732          <idle>-0     (-----) [001] d.h3 24577.657223: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142733          <idle>-0     (-----) [001] dnh4 24577.657229: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142734          <idle>-0     (-----) [001] .n.1 24577.657235: cpu_idle: state=4294967295 cpu_id=1
142735          <idle>-0     (-----) [001] d..2 24577.657241: 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
142736   kworker/u17:2-23076 (23076) [001] d..2 24577.657250: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142737   kworker/u17:2-23076 (23076) [001] d..3 24577.657256: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142738   kworker/u17:2-23076 (23076) [001] d..2 24577.657276: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
142739     kworker/1:1-13091 (13091) [001] d..2 24577.657282: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
142740     kworker/1:1-13091 (13091) [001] d..3 24577.657292: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
142741          <idle>-0     (-----) [000] .n.1 24577.657297: cpu_idle: state=4294967295 cpu_id=0
142742          <idle>-0     (-----) [000] d..2 24577.657303: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
142743     kworker/1:1-13091 (13091) [001] d..2 24577.657307: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142744          <idle>-0     (-----) [001] d..1 24577.657315: cpu_idle: state=0 cpu_id=1
142745            adbd-23485 ( 1007) [000] d..2 24577.657323: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142746          <idle>-0     (-----) [000] d..1 24577.657329: cpu_idle: state=0 cpu_id=0
142747          <idle>-0     (-----) [001] d.h3 24577.657387: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142748          <idle>-0     (-----) [001] dnh4 24577.657393: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142749          <idle>-0     (-----) [001] .n.1 24577.657399: cpu_idle: state=4294967295 cpu_id=1
142750          <idle>-0     (-----) [001] d..2 24577.657405: 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
142751   kworker/u17:2-23076 (23076) [001] d..2 24577.657413: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142752   kworker/u17:2-23076 (23076) [001] d..3 24577.657420: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142753              ps-13422 (13422) [006] d..2 24577.657421: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142754              ps-13422 (13422) [006] dn.3 24577.657428: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142755              ps-13422 (13422) [006] d..2 24577.657433: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142756   kworker/u17:2-23076 (23076) [001] d..2 24577.657439: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
142757     kworker/1:1-13091 (13091) [001] d..2 24577.657446: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
142758 shell svc 13418-13419 ( 1007) [006] d..2 24577.657451: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142759              ps-13422 (13422) [006] d..2 24577.657461: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142760              ps-13422 (13422) [006] dn.3 24577.657466: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142761              ps-13422 (13422) [006] d..2 24577.657470: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142762     kworker/1:1-13091 (13091) [001] d..3 24577.657472: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
142763          <idle>-0     (-----) [000] .n.1 24577.657477: cpu_idle: state=4294967295 cpu_id=0
142764          <idle>-0     (-----) [000] d..2 24577.657484: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
142765 shell svc 13418-13419 ( 1007) [006] d..2 24577.657484: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142766     kworker/1:1-13091 (13091) [001] d..2 24577.657487: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142767              ps-13422 (13422) [006] d..2 24577.657493: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142768          <idle>-0     (-----) [001] d..1 24577.657496: cpu_idle: state=0 cpu_id=1
142769              ps-13422 (13422) [006] dn.3 24577.657496: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142770            adbd-23484 ( 1007) [000] d..2 24577.657496: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
142771              ps-13422 (13422) [006] d..2 24577.657500: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142772            adbd-23484 ( 1007) [000] d..3 24577.657510: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
142773 shell svc 13418-13419 ( 1007) [006] d..2 24577.657513: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142774              ps-13422 (13422) [006] d..2 24577.657521: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142775              ps-13422 (13422) [006] dn.3 24577.657525: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142776              ps-13422 (13422) [006] d..2 24577.657528: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142777 shell svc 13418-13419 ( 1007) [006] d..2 24577.657540: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142778          <idle>-0     (-----) [003] d.s2 24577.657568: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
142779          <idle>-0     (-----) [003] dns3 24577.657614: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
142780          <idle>-0     (-----) [003] .n.1 24577.657622: cpu_idle: state=4294967295 cpu_id=3
142781            adbd-23484 ( 1007) [000] d..2 24577.657628: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
142782          <idle>-0     (-----) [003] d..2 24577.657629: 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
142783              ps-13422 (13422) [006] d.H2 24577.657633: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
142784              ps-13422 (13422) [006] d.H3 24577.657643: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
142785              ps-13422 (13422) [006] d.H2 24577.657645: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
142786          <idle>-0     (-----) [007] .n.1 24577.657647: cpu_idle: state=4294967295 cpu_id=7
142787          <idle>-0     (-----) [007] d..2 24577.657653: 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
142788     rcu_preempt-7     (    7) [003] d..2 24577.657653: 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
142789          <idle>-0     (-----) [003] d..1 24577.657660: cpu_idle: state=0 cpu_id=3
142790          <idle>-0     (-----) [002] dnh2 24577.657665: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
142791              ps-13422 (13422) [006] d..2 24577.657665: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142792         sugov:4-560   (  560) [007] .... 24577.657668: clk_set_rate: perfcl_clk 2803200000
142793         sugov:4-560   (  560) [007] .... 24577.657669: clk_set_rate: cpu7_perfcl_clk 1209600000
142794          <idle>-0     (-----) [002] .n.1 24577.657670: cpu_idle: state=4294967295 cpu_id=2
142795              ps-13422 (13422) [006] dn.3 24577.657670: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142796              ps-13422 (13422) [006] d..2 24577.657674: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142797         sugov:4-560   (  560) [007] .... 24577.657675: clk_set_rate: cpu6_perfcl_clk 1209600000
142798          <idle>-0     (-----) [002] d..2 24577.657678: 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
142799         sugov:4-560   (  560) [007] .... 24577.657680: clk_set_rate: cpu5_perfcl_clk 1209600000
142800         sugov:4-560   (  560) [007] .... 24577.657686: clk_set_rate: cpu4_perfcl_clk 2803200000
142801 shell svc 13418-13419 ( 1007) [006] d..2 24577.657690: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142802         sugov:4-560   (  560) [007] .... 24577.657693: cpu_frequency: state=2803200 cpu_id=4
142803              ps-13422 (13422) [006] d..2 24577.657700: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142804            adbd-1007  ( 1007) [000] d..1 24577.657704: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
142805              ps-13422 (13422) [006] dn.3 24577.657705: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142806              ps-13422 (13422) [006] d..2 24577.657709: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142807         sugov:0-559   (  559) [002] .... 24577.657714: clk_set_rate: pwrcl_clk 1324800000
142808 shell svc 13418-13419 ( 1007) [006] d..2 24577.657721: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142809              ps-13422 (13422) [006] d..2 24577.657730: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142810            adbd-1007  ( 1007) [000] d..2 24577.657732: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
142811         sugov:0-559   (  559) [002] .... 24577.657734: clk_set_rate: cpu3_pwrcl_clk 1612800000
142812              ps-13422 (13422) [006] dn.3 24577.657734: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142813              ps-13422 (13422) [006] d..2 24577.657738: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142814         sugov:0-559   (  559) [002] .... 24577.657745: clk_set_rate: cpu2_pwrcl_clk 1612800000
142815 shell svc 13418-13419 ( 1007) [006] d..2 24577.657750: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142816         sugov:0-559   (  559) [002] .... 24577.657753: clk_set_rate: cpu1_pwrcl_clk 1612800000
142817              ps-13422 (13422) [006] d..2 24577.657758: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142818         sugov:0-559   (  559) [002] .... 24577.657761: clk_set_rate: cpu0_pwrcl_clk 1324800000
142819              ps-13422 (13422) [006] dn.3 24577.657762: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142820              ps-13422 (13422) [006] d..2 24577.657765: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142821            adbd-1007  ( 1007) [000] d..2 24577.657773: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142822 shell svc 13418-13419 ( 1007) [006] d..2 24577.657777: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142823          <idle>-0     (-----) [000] d..1 24577.657787: cpu_idle: state=0 cpu_id=0
142824              ps-13422 (13422) [006] d..2 24577.657793: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142825              ps-13422 (13422) [006] dn.3 24577.657797: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142826              ps-13422 (13422) [006] d..2 24577.657800: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142827 shell svc 13418-13419 ( 1007) [006] d..2 24577.657812: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142828              ps-13422 (13422) [006] d..2 24577.657819: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142829         sugov:4-560   (  560) [007] d..2 24577.657823: 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
142830              ps-13422 (13422) [006] dn.3 24577.657826: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142831          <idle>-0     (-----) [007] d..1 24577.657828: cpu_idle: state=0 cpu_id=7
142832              ps-13422 (13422) [006] d..2 24577.657829: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142833 shell svc 13418-13419 ( 1007) [006] d..2 24577.657841: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142834              ps-13422 (13422) [006] d..2 24577.657850: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142835              ps-13422 (13422) [006] dn.3 24577.657854: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142836              ps-13422 (13422) [006] d..2 24577.657857: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142837 shell svc 13418-13419 ( 1007) [006] d..2 24577.657864: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142838              ps-13422 (13422) [006] d..2 24577.657870: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142839              ps-13422 (13422) [006] dn.3 24577.657874: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142840         sugov:0-559   (  559) [002] .... 24577.657875: cpu_frequency: state=1324800 cpu_id=0
142841              ps-13422 (13422) [006] d..2 24577.657876: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142842 shell svc 13418-13419 ( 1007) [006] d..2 24577.657883: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142843              ps-13422 (13422) [006] d..2 24577.657887: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142844              ps-13422 (13422) [006] dn.3 24577.657889: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142845              ps-13422 (13422) [006] d..2 24577.657892: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142846         sugov:0-559   (  559) [002] d..2 24577.657897: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=adbd next_pid=23485 next_prio=120
142847 shell svc 13418-13419 ( 1007) [006] d..2 24577.657898: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142848              ps-13422 (13422) [006] d..2 24577.657902: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142849              ps-13422 (13422) [006] dn.3 24577.657905: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142850              ps-13422 (13422) [006] d..2 24577.657907: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142851 shell svc 13418-13419 ( 1007) [006] d..2 24577.657913: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142852              ps-13422 (13422) [006] d..2 24577.657918: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142853              ps-13422 (13422) [006] dn.3 24577.657921: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142854              ps-13422 (13422) [006] d..2 24577.657923: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142855 shell svc 13418-13419 ( 1007) [006] d..2 24577.657929: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142856            adbd-23485 ( 1007) [002] d..2 24577.657972: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
142857          <idle>-0     (-----) [002] d..1 24577.657983: cpu_idle: state=0 cpu_id=2
142858              ps-13422 (13422) [006] d..2 24577.657990: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142859              ps-13422 (13422) [006] dn.3 24577.657994: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142860          <idle>-0     (-----) [001] d.h3 24577.657996: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142861              ps-13422 (13422) [006] d..2 24577.657997: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142862          <idle>-0     (-----) [001] dnh4 24577.658005: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142863 shell svc 13418-13419 ( 1007) [006] d..2 24577.658006: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142864          <idle>-0     (-----) [001] .n.1 24577.658011: cpu_idle: state=4294967295 cpu_id=1
142865          <idle>-0     (-----) [001] d..2 24577.658020: 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
142866   kworker/u17:2-23076 (23076) [001] d..2 24577.658029: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142867   kworker/u17:2-23076 (23076) [001] d..3 24577.658036: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142868   kworker/u17:2-23076 (23076) [001] d..2 24577.658056: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
142869     kworker/1:1-13091 (13091) [001] d..2 24577.658063: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
142870     kworker/1:1-13091 (13091) [001] d..3 24577.658092: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
142871          <idle>-0     (-----) [000] .n.1 24577.658098: cpu_idle: state=4294967295 cpu_id=0
142872          <idle>-0     (-----) [000] d..2 24577.658107: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
142873     kworker/1:1-13091 (13091) [001] d..2 24577.658109: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142874          <idle>-0     (-----) [001] d..1 24577.658118: cpu_idle: state=0 cpu_id=1
142875            adbd-23485 ( 1007) [000] d..2 24577.658175: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142876          <idle>-0     (-----) [000] d..1 24577.658185: cpu_idle: state=0 cpu_id=0
142877          <idle>-0     (-----) [001] d.h3 24577.658203: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142878          <idle>-0     (-----) [001] dnh4 24577.658213: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142879          <idle>-0     (-----) [001] .n.1 24577.658220: cpu_idle: state=4294967295 cpu_id=1
142880          <idle>-0     (-----) [001] d..2 24577.658228: 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
142881   kworker/u17:2-23076 (23076) [001] d..2 24577.658238: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142882   kworker/u17:2-23076 (23076) [001] d..3 24577.658244: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142883   kworker/u17:2-23076 (23076) [001] d..2 24577.658264: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
142884     kworker/1:1-13091 (13091) [001] d..2 24577.658270: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
142885     kworker/1:1-13091 (13091) [001] d..3 24577.658281: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
142886          <idle>-0     (-----) [000] .n.1 24577.658287: cpu_idle: state=4294967295 cpu_id=0
142887          <idle>-0     (-----) [000] d..2 24577.658295: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
142888     kworker/1:1-13091 (13091) [001] d..2 24577.658297: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142889          <idle>-0     (-----) [001] d..1 24577.658306: cpu_idle: state=0 cpu_id=1
142890            adbd-23485 ( 1007) [000] d..2 24577.658316: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142891          <idle>-0     (-----) [000] d..1 24577.658324: cpu_idle: state=0 cpu_id=0
142892          <idle>-0     (-----) [001] d.h3 24577.658387: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142893              ps-13422 (13422) [006] d..2 24577.658389: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142894              ps-13422 (13422) [006] dn.3 24577.658393: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142895          <idle>-0     (-----) [001] dnh4 24577.658394: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142896              ps-13422 (13422) [006] d..2 24577.658396: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142897          <idle>-0     (-----) [001] .n.1 24577.658400: cpu_idle: state=4294967295 cpu_id=1
142898 shell svc 13418-13419 ( 1007) [006] d..2 24577.658405: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142899          <idle>-0     (-----) [001] d..2 24577.658408: 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
142900              ps-13422 (13422) [006] d..2 24577.658410: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142901              ps-13422 (13422) [006] dn.3 24577.658414: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142902   kworker/u17:2-23076 (23076) [001] d..2 24577.658416: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142903              ps-13422 (13422) [006] d..2 24577.658416: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142904   kworker/u17:2-23076 (23076) [001] d..3 24577.658423: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142905 shell svc 13418-13419 ( 1007) [006] d..2 24577.658424: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142906              ps-13422 (13422) [006] d..2 24577.658429: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142907              ps-13422 (13422) [006] dn.3 24577.658432: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142908              ps-13422 (13422) [006] d..2 24577.658434: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142909 shell svc 13418-13419 ( 1007) [006] d..2 24577.658442: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142910   kworker/u17:2-23076 (23076) [001] d..2 24577.658442: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
142911              ps-13422 (13422) [006] d..2 24577.658446: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142912              ps-13422 (13422) [006] dn.3 24577.658449: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142913     kworker/1:1-13091 (13091) [001] d..2 24577.658450: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
142914              ps-13422 (13422) [006] d..2 24577.658451: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142915 shell svc 13418-13419 ( 1007) [006] d..2 24577.658458: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142916     kworker/1:1-13091 (13091) [001] d..3 24577.658460: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
142917              ps-13422 (13422) [006] d..2 24577.658463: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142918          <idle>-0     (-----) [000] .n.1 24577.658465: cpu_idle: state=4294967295 cpu_id=0
142919              ps-13422 (13422) [006] dn.3 24577.658465: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142920              ps-13422 (13422) [006] d..2 24577.658467: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142921          <idle>-0     (-----) [000] d..2 24577.658472: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
142922 shell svc 13418-13419 ( 1007) [006] d..2 24577.658474: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142923     kworker/1:1-13091 (13091) [001] d..2 24577.658476: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142924              ps-13422 (13422) [006] d..2 24577.658478: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142925              ps-13422 (13422) [006] dn.3 24577.658480: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142926              ps-13422 (13422) [006] d..2 24577.658482: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142927          <idle>-0     (-----) [001] d..1 24577.658485: cpu_idle: state=0 cpu_id=1
142928            adbd-23484 ( 1007) [000] d..2 24577.658485: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
142929 shell svc 13418-13419 ( 1007) [006] d..2 24577.658488: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142930              ps-13422 (13422) [006] d..2 24577.658493: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142931              ps-13422 (13422) [006] dn.3 24577.658495: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142932            adbd-23484 ( 1007) [000] d..3 24577.658495: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
142933              ps-13422 (13422) [006] d..2 24577.658498: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142934 shell svc 13418-13419 ( 1007) [006] d..2 24577.658503: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142935              ps-13422 (13422) [006] d..2 24577.658508: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142936              ps-13422 (13422) [006] dn.3 24577.658510: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142937              ps-13422 (13422) [006] d..2 24577.658512: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142938 shell svc 13418-13419 ( 1007) [006] d..2 24577.658518: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142939              ps-13422 (13422) [006] d..2 24577.658523: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142940              ps-13422 (13422) [006] dn.3 24577.658525: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142941              ps-13422 (13422) [006] d..2 24577.658527: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142942 shell svc 13418-13419 ( 1007) [006] d..2 24577.658532: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142943              ps-13422 (13422) [006] d..2 24577.658536: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142944              ps-13422 (13422) [006] dn.3 24577.658539: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142945              ps-13422 (13422) [006] d..2 24577.658541: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142946            adbd-23484 ( 1007) [000] d..2 24577.658547: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
142947 shell svc 13418-13419 ( 1007) [006] d..2 24577.658547: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142948              ps-13422 (13422) [006] d..2 24577.658551: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142949              ps-13422 (13422) [006] dn.3 24577.658553: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142950              ps-13422 (13422) [006] d..2 24577.658555: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142951 shell svc 13418-13419 ( 1007) [006] d..2 24577.658561: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142952              ps-13422 (13422) [006] d..2 24577.658565: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142953              ps-13422 (13422) [006] dn.3 24577.658568: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142954              ps-13422 (13422) [006] d..2 24577.658569: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142955 shell svc 13418-13419 ( 1007) [006] d..2 24577.658575: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142956              ps-13422 (13422) [006] d..2 24577.658580: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142957              ps-13422 (13422) [006] dn.3 24577.658582: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
142958              ps-13422 (13422) [006] d..2 24577.658584: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
142959 shell svc 13418-13419 ( 1007) [006] d..2 24577.658590: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
142960            adbd-1007  ( 1007) [000] d..1 24577.658646: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
142961            adbd-1007  ( 1007) [000] d..2 24577.658661: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
142962            adbd-1007  ( 1007) [000] d..2 24577.658696: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
142963            adbd-23485 ( 1007) [000] d..2 24577.658752: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142964          <idle>-0     (-----) [000] d..1 24577.658764: cpu_idle: state=0 cpu_id=0
142965          <idle>-0     (-----) [001] d.h3 24577.658764: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142966          <idle>-0     (-----) [001] dnh4 24577.658770: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142967          <idle>-0     (-----) [001] .n.1 24577.658776: cpu_idle: state=4294967295 cpu_id=1
142968          <idle>-0     (-----) [001] d..2 24577.658783: 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
142969   kworker/u17:2-23076 (23076) [001] d..2 24577.658791: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142970   kworker/u17:2-23076 (23076) [001] d..3 24577.658797: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142971   kworker/u17:2-23076 (23076) [001] d..2 24577.658815: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
142972     kworker/1:1-13091 (13091) [001] d..2 24577.658820: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
142973     kworker/1:1-13091 (13091) [001] d..3 24577.658830: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
142974          <idle>-0     (-----) [000] .n.1 24577.658837: cpu_idle: state=4294967295 cpu_id=0
142975          <idle>-0     (-----) [000] d..2 24577.658844: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
142976     kworker/1:1-13091 (13091) [001] d..2 24577.658847: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142977          <idle>-0     (-----) [001] d..1 24577.658855: cpu_idle: state=0 cpu_id=1
142978            adbd-23485 ( 1007) [000] d..2 24577.658899: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142979          <idle>-0     (-----) [000] d..1 24577.658908: cpu_idle: state=0 cpu_id=0
142980          <idle>-0     (-----) [001] d.h3 24577.658925: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142981          <idle>-0     (-----) [001] dnh4 24577.658932: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142982          <idle>-0     (-----) [001] .n.1 24577.658938: cpu_idle: state=4294967295 cpu_id=1
142983          <idle>-0     (-----) [001] d..2 24577.658945: 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
142984   kworker/u17:2-23076 (23076) [001] d..2 24577.658953: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142985   kworker/u17:2-23076 (23076) [001] d..3 24577.658958: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
142986   kworker/u17:2-23076 (23076) [001] d..2 24577.658976: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
142987     kworker/1:1-13091 (13091) [001] d..2 24577.658981: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
142988     kworker/1:1-13091 (13091) [001] d..3 24577.658991: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
142989          <idle>-0     (-----) [000] .n.1 24577.658997: cpu_idle: state=4294967295 cpu_id=0
142990          <idle>-0     (-----) [000] d..2 24577.659006: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
142991     kworker/1:1-13091 (13091) [001] d..2 24577.659007: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142992          <idle>-0     (-----) [001] d..1 24577.659015: cpu_idle: state=0 cpu_id=1
142993            adbd-23485 ( 1007) [000] d..2 24577.659028: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142994          <idle>-0     (-----) [000] d..1 24577.659036: cpu_idle: state=0 cpu_id=0
142995          <idle>-0     (-----) [001] d.h3 24577.659106: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142996          <idle>-0     (-----) [001] dnh4 24577.659112: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
142997          <idle>-0     (-----) [001] .n.1 24577.659118: cpu_idle: state=4294967295 cpu_id=1
142998          <idle>-0     (-----) [001] d..2 24577.659125: 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
142999   kworker/u17:2-23076 (23076) [001] d..2 24577.659132: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143000   kworker/u17:2-23076 (23076) [001] d..3 24577.659138: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143001   kworker/u17:2-23076 (23076) [001] d..2 24577.659155: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
143002     kworker/1:1-13091 (13091) [001] d..2 24577.659162: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
143003     kworker/1:1-13091 (13091) [001] d..3 24577.659172: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
143004          <idle>-0     (-----) [000] .n.1 24577.659177: cpu_idle: state=4294967295 cpu_id=0
143005          <idle>-0     (-----) [000] d..2 24577.659185: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
143006     kworker/1:1-13091 (13091) [001] d..2 24577.659187: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143007          <idle>-0     (-----) [001] d..1 24577.659196: cpu_idle: state=0 cpu_id=1
143008            adbd-23484 ( 1007) [000] d..2 24577.659197: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
143009            adbd-23484 ( 1007) [000] d..3 24577.659206: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
143010            adbd-23484 ( 1007) [000] d..2 24577.659255: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
143011            adbd-1007  ( 1007) [000] d..2 24577.659329: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143012          <idle>-0     (-----) [000] d..1 24577.659340: cpu_idle: state=0 cpu_id=0
143013              ps-13422 (13422) [006] d..2 24577.659419: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143014              ps-13422 (13422) [006] dn.3 24577.659423: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143015              ps-13422 (13422) [006] d..2 24577.659426: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143016 shell svc 13418-13419 ( 1007) [006] d..2 24577.659432: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
143017 shell svc 13418-13419 ( 1007) [006] d..2 24577.659444: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143018              ps-13422 (13422) [006] d..2 24577.659449: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143019          <idle>-0     (-----) [000] dnh2 24577.659450: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
143020              ps-13422 (13422) [006] dn.3 24577.659451: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143021              ps-13422 (13422) [006] d..2 24577.659453: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143022          <idle>-0     (-----) [000] .n.1 24577.659455: cpu_idle: state=4294967295 cpu_id=0
143023 shell svc 13418-13419 ( 1007) [006] d..2 24577.659460: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143024          <idle>-0     (-----) [000] d..2 24577.659462: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
143025              ps-13422 (13422) [006] d..2 24577.659464: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143026              ps-13422 (13422) [006] dn.3 24577.659466: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143027              ps-13422 (13422) [006] d..2 24577.659468: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143028 shell svc 13418-13419 ( 1007) [006] d..2 24577.659474: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143029              ps-13422 (13422) [006] d..2 24577.659478: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143030              ps-13422 (13422) [006] dn.3 24577.659480: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143031              ps-13422 (13422) [006] d..2 24577.659482: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143032 shell svc 13418-13419 ( 1007) [006] d..2 24577.659488: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143033              ps-13422 (13422) [006] d..2 24577.659492: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143034              ps-13422 (13422) [006] dn.3 24577.659494: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143035              ps-13422 (13422) [006] d..2 24577.659496: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143036 shell svc 13418-13419 ( 1007) [006] d..2 24577.659503: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143037              ps-13422 (13422) [006] d..2 24577.659507: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143038            adbd-1007  ( 1007) [000] d..1 24577.659508: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
143039              ps-13422 (13422) [006] dn.3 24577.659509: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143040              ps-13422 (13422) [006] d..2 24577.659511: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143041 shell svc 13418-13419 ( 1007) [006] d..2 24577.659518: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143042              ps-13422 (13422) [006] d..2 24577.659521: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143043            adbd-1007  ( 1007) [000] d..2 24577.659522: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
143044              ps-13422 (13422) [006] dn.3 24577.659525: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143045              ps-13422 (13422) [006] d..2 24577.659526: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143046 shell svc 13418-13419 ( 1007) [006] d..2 24577.659532: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143047          <idle>-0     (-----) [003] d.s3 24577.659535: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
143048              ps-13422 (13422) [006] d..2 24577.659536: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143049              ps-13422 (13422) [006] dn.3 24577.659539: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143050              ps-13422 (13422) [006] d..2 24577.659541: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143051 shell svc 13418-13419 ( 1007) [006] d..2 24577.659547: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143052          <idle>-0     (-----) [007] dnh2 24577.659549: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
143053          <idle>-0     (-----) [003] ...1 24577.659550: cpu_idle: state=4294967295 cpu_id=3
143054              ps-13422 (13422) [006] d..2 24577.659551: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143055          <idle>-0     (-----) [007] .n.1 24577.659551: cpu_idle: state=4294967295 cpu_id=7
143056          <idle>-0     (-----) [003] d..1 24577.659553: cpu_idle: state=0 cpu_id=3
143057              ps-13422 (13422) [006] dn.3 24577.659553: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143058          <idle>-0     (-----) [007] d..2 24577.659554: 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
143059         sugov:4-560   (  560) [007] d..1 24577.659556: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
143060              ps-13422 (13422) [006] d..2 24577.659556: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143061            adbd-1007  ( 1007) [000] d..2 24577.659556: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
143062 shell svc 13418-13419 ( 1007) [006] d..2 24577.659561: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143063         sugov:4-560   (  560) [007] .... 24577.659561: cpu_frequency: state=2803200 cpu_id=5
143064         sugov:4-560   (  560) [007] .... 24577.659563: cpu_frequency: state=2803200 cpu_id=6
143065         sugov:4-560   (  560) [007] .... 24577.659564: cpu_frequency: state=2803200 cpu_id=7
143066              ps-13422 (13422) [006] d..2 24577.659565: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143067              ps-13422 (13422) [006] dn.3 24577.659567: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143068         sugov:4-560   (  560) [007] d..2 24577.659569: 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
143069              ps-13422 (13422) [006] d..2 24577.659570: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143070          <idle>-0     (-----) [007] d..1 24577.659571: cpu_idle: state=0 cpu_id=7
143071          <idle>-0     (-----) [002] dnh2 24577.659571: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
143072 shell svc 13418-13419 ( 1007) [006] d..2 24577.659575: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143073          <idle>-0     (-----) [002] .n.1 24577.659576: cpu_idle: state=4294967295 cpu_id=2
143074              ps-13422 (13422) [006] d..2 24577.659579: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143075              ps-13422 (13422) [006] dn.3 24577.659581: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143076          <idle>-0     (-----) [002] d..2 24577.659582: 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
143077              ps-13422 (13422) [006] d..2 24577.659583: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143078 shell svc 13418-13419 ( 1007) [006] d..2 24577.659589: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143079         sugov:0-559   (  559) [002] .... 24577.659590: cpu_frequency: state=1324800 cpu_id=1
143080              ps-13422 (13422) [006] d..2 24577.659593: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143081              ps-13422 (13422) [006] dn.3 24577.659595: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143082         sugov:0-559   (  559) [002] .... 24577.659595: cpu_frequency: state=1324800 cpu_id=2
143083              ps-13422 (13422) [006] d..2 24577.659597: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143084         sugov:0-559   (  559) [002] .... 24577.659598: cpu_frequency: state=1324800 cpu_id=3
143085 shell svc 13418-13419 ( 1007) [006] d..2 24577.659602: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143086              ps-13422 (13422) [006] d..2 24577.659606: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143087              ps-13422 (13422) [006] dn.3 24577.659608: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143088              ps-13422 (13422) [006] d..2 24577.659610: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143089            adbd-23485 ( 1007) [000] d..2 24577.659614: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143090         sugov:0-559   (  559) [002] d..2 24577.659615: 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
143091 shell svc 13418-13419 ( 1007) [006] d..2 24577.659616: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143092              ps-13422 (13422) [006] d..2 24577.659620: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143093          <idle>-0     (-----) [002] d..1 24577.659622: cpu_idle: state=0 cpu_id=2
143094              ps-13422 (13422) [006] dn.3 24577.659622: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143095          <idle>-0     (-----) [000] d..1 24577.659624: cpu_idle: state=0 cpu_id=0
143096              ps-13422 (13422) [006] d..2 24577.659624: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143097 shell svc 13418-13419 ( 1007) [006] d..2 24577.659630: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143098          <idle>-0     (-----) [001] d.h3 24577.659633: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143099              ps-13422 (13422) [006] d..2 24577.659634: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143100              ps-13422 (13422) [006] dn.3 24577.659636: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143101              ps-13422 (13422) [006] d..2 24577.659638: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143102          <idle>-0     (-----) [001] dnh4 24577.659640: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143103 shell svc 13418-13419 ( 1007) [006] d..2 24577.659643: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143104          <idle>-0     (-----) [001] .n.1 24577.659646: cpu_idle: state=4294967295 cpu_id=1
143105              ps-13422 (13422) [006] d..2 24577.659647: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143106              ps-13422 (13422) [006] dn.3 24577.659649: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143107              ps-13422 (13422) [006] d..2 24577.659651: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143108          <idle>-0     (-----) [001] d..2 24577.659653: 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
143109 shell svc 13418-13419 ( 1007) [006] d..2 24577.659657: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143110              ps-13422 (13422) [006] d..2 24577.659661: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143111   kworker/u17:2-23076 (23076) [001] d..2 24577.659661: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143112              ps-13422 (13422) [006] dn.3 24577.659663: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143113              ps-13422 (13422) [006] d..2 24577.659665: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143114   kworker/u17:2-23076 (23076) [001] d..3 24577.659667: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143115 shell svc 13418-13419 ( 1007) [006] d..2 24577.659671: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143116              ps-13422 (13422) [006] d..2 24577.659675: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143117              ps-13422 (13422) [006] dn.3 24577.659677: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143118              ps-13422 (13422) [006] d..2 24577.659679: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143119 shell svc 13418-13419 ( 1007) [006] d..2 24577.659685: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143120   kworker/u17:2-23076 (23076) [001] d..2 24577.659685: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
143121              ps-13422 (13422) [006] d..2 24577.659688: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143122              ps-13422 (13422) [006] dn.3 24577.659691: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143123     kworker/1:1-13091 (13091) [001] d..2 24577.659691: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
143124              ps-13422 (13422) [006] d..2 24577.659693: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143125 shell svc 13418-13419 ( 1007) [006] d..2 24577.659698: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143126     kworker/1:1-13091 (13091) [001] d..3 24577.659701: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
143127              ps-13422 (13422) [006] d..2 24577.659702: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143128              ps-13422 (13422) [006] dn.3 24577.659704: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143129              ps-13422 (13422) [006] d..2 24577.659706: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143130          <idle>-0     (-----) [000] .n.1 24577.659707: cpu_idle: state=4294967295 cpu_id=0
143131 shell svc 13418-13419 ( 1007) [006] d..2 24577.659712: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143132          <idle>-0     (-----) [000] d..2 24577.659715: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
143133              ps-13422 (13422) [006] d..2 24577.659716: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143134     kworker/1:1-13091 (13091) [001] d..2 24577.659717: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143135              ps-13422 (13422) [006] dn.3 24577.659718: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143136              ps-13422 (13422) [006] d..2 24577.659720: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143137          <idle>-0     (-----) [001] d..1 24577.659725: cpu_idle: state=0 cpu_id=1
143138 shell svc 13418-13419 ( 1007) [006] d..2 24577.659725: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143139              ps-13422 (13422) [006] d..2 24577.659730: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143140              ps-13422 (13422) [006] dn.3 24577.659732: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143141              ps-13422 (13422) [006] d..2 24577.659734: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143142 shell svc 13418-13419 ( 1007) [006] d..2 24577.659740: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143143              ps-13422 (13422) [006] d..2 24577.659743: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143144              ps-13422 (13422) [006] dn.3 24577.659746: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143145              ps-13422 (13422) [006] d..2 24577.659748: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143146 shell svc 13418-13419 ( 1007) [006] d..2 24577.659753: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143147              ps-13422 (13422) [006] d..2 24577.659757: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143148              ps-13422 (13422) [006] dn.3 24577.659759: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143149              ps-13422 (13422) [006] d..2 24577.659761: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143150 shell svc 13418-13419 ( 1007) [006] d..2 24577.659767: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143151            adbd-23485 ( 1007) [000] d..2 24577.659768: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143152              ps-13422 (13422) [006] d..2 24577.659772: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143153              ps-13422 (13422) [006] dn.3 24577.659774: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143154          <idle>-0     (-----) [000] d..1 24577.659776: cpu_idle: state=0 cpu_id=0
143155              ps-13422 (13422) [006] d..2 24577.659777: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143156          <idle>-0     (-----) [001] d.h3 24577.659782: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143157 shell svc 13418-13419 ( 1007) [006] d..2 24577.659783: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143158              ps-13422 (13422) [006] d..2 24577.659786: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143159          <idle>-0     (-----) [001] dnh4 24577.659788: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143160              ps-13422 (13422) [006] dn.3 24577.659788: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143161              ps-13422 (13422) [006] d..2 24577.659790: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143162          <idle>-0     (-----) [001] .n.1 24577.659794: cpu_idle: state=4294967295 cpu_id=1
143163 shell svc 13418-13419 ( 1007) [006] d..2 24577.659796: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143164              ps-13422 (13422) [006] d..2 24577.659800: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143165          <idle>-0     (-----) [001] d..2 24577.659801: 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
143166              ps-13422 (13422) [006] dn.3 24577.659802: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143167              ps-13422 (13422) [006] d..2 24577.659804: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143168   kworker/u17:2-23076 (23076) [001] d..2 24577.659809: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143169 shell svc 13418-13419 ( 1007) [006] d..2 24577.659810: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143170              ps-13422 (13422) [006] d..2 24577.659813: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143171              ps-13422 (13422) [006] dn.3 24577.659816: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143172   kworker/u17:2-23076 (23076) [001] d..3 24577.659816: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143173              ps-13422 (13422) [006] d..2 24577.659818: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143174 shell svc 13418-13419 ( 1007) [006] d..2 24577.659823: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143175              ps-13422 (13422) [006] d..2 24577.659827: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143176              ps-13422 (13422) [006] dn.3 24577.659829: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143177              ps-13422 (13422) [006] d..2 24577.659831: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143178   kworker/u17:2-23076 (23076) [001] d..2 24577.659834: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
143179 shell svc 13418-13419 ( 1007) [006] d..2 24577.659837: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143180     kworker/1:1-13091 (13091) [001] d..2 24577.659840: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
143181              ps-13422 (13422) [006] d..2 24577.659840: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143182              ps-13422 (13422) [006] dn.3 24577.659843: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143183              ps-13422 (13422) [006] d..2 24577.659844: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143184     kworker/1:1-13091 (13091) [001] d..3 24577.659850: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
143185 shell svc 13418-13419 ( 1007) [006] d..2 24577.659850: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143186              ps-13422 (13422) [006] d..2 24577.659854: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143187          <idle>-0     (-----) [000] .n.1 24577.659856: cpu_idle: state=4294967295 cpu_id=0
143188              ps-13422 (13422) [006] dn.3 24577.659856: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143189              ps-13422 (13422) [006] d..2 24577.659858: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143190          <idle>-0     (-----) [000] d..2 24577.659863: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
143191 shell svc 13418-13419 ( 1007) [006] d..2 24577.659864: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143192     kworker/1:1-13091 (13091) [001] d..2 24577.659866: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143193              ps-13422 (13422) [006] d..2 24577.659868: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143194              ps-13422 (13422) [006] dn.3 24577.659870: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143195              ps-13422 (13422) [006] d..2 24577.659872: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143196          <idle>-0     (-----) [001] d..1 24577.659874: cpu_idle: state=0 cpu_id=1
143197 shell svc 13418-13419 ( 1007) [006] d..2 24577.659878: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143198              ps-13422 (13422) [006] d..2 24577.659881: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143199            adbd-23485 ( 1007) [000] d..2 24577.659883: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143200              ps-13422 (13422) [006] dn.3 24577.659884: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143201              ps-13422 (13422) [006] d..2 24577.659886: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143202          <idle>-0     (-----) [000] d..1 24577.659891: cpu_idle: state=0 cpu_id=0
143203 shell svc 13418-13419 ( 1007) [006] d..2 24577.659892: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143204              ps-13422 (13422) [006] d..2 24577.659895: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143205              ps-13422 (13422) [006] dn.3 24577.659897: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143206              ps-13422 (13422) [006] d..2 24577.659899: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143207 shell svc 13418-13419 ( 1007) [006] d..2 24577.659905: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143208              ps-13422 (13422) [006] d..2 24577.659909: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143209              ps-13422 (13422) [006] dn.3 24577.659911: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143210              ps-13422 (13422) [006] d..2 24577.659913: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143211 shell svc 13418-13419 ( 1007) [006] d..2 24577.659918: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143212              ps-13422 (13422) [006] d..2 24577.659922: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143213          <idle>-0     (-----) [001] d.h3 24577.659922: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143214              ps-13422 (13422) [006] dn.3 24577.659924: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143215              ps-13422 (13422) [006] d..2 24577.659926: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143216          <idle>-0     (-----) [001] dnh4 24577.659928: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143217 shell svc 13418-13419 ( 1007) [006] d..2 24577.659931: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143218          <idle>-0     (-----) [001] .n.1 24577.659934: cpu_idle: state=4294967295 cpu_id=1
143219              ps-13422 (13422) [006] d..2 24577.659935: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143220              ps-13422 (13422) [006] dn.3 24577.659938: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143221              ps-13422 (13422) [006] d..2 24577.659940: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143222          <idle>-0     (-----) [001] d..2 24577.659941: 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
143223 shell svc 13418-13419 ( 1007) [006] d..2 24577.659945: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143224   kworker/u17:2-23076 (23076) [001] d..2 24577.659948: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143225   kworker/u17:2-23076 (23076) [001] d..3 24577.659954: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143226   kworker/u17:2-23076 (23076) [001] d..2 24577.659972: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
143227     kworker/1:1-13091 (13091) [001] d..2 24577.659978: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
143228     kworker/1:1-13091 (13091) [001] d..3 24577.660003: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
143229     kworker/1:1-13091 (13091) [001] d..2 24577.660013: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
143230            adbd-23484 ( 1007) [001] d..2 24577.660028: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
143231            adbd-23484 ( 1007) [001] d..3 24577.660039: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
143232            adbd-23484 ( 1007) [001] d..2 24577.660090: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
143233            adbd-1007  ( 1007) [001] d..1 24577.660215: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
143234            adbd-1007  ( 1007) [001] d..2 24577.660232: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
143235          <idle>-0     (-----) [000] .n.1 24577.660238: cpu_idle: state=4294967295 cpu_id=0
143236          <idle>-0     (-----) [000] d..2 24577.660244: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
143237            adbd-1007  ( 1007) [001] d..2 24577.660276: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143238              ps-13422 (13422) [006] d..2 24577.660277: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143239              ps-13422 (13422) [006] dn.3 24577.660281: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143240              ps-13422 (13422) [006] d..2 24577.660284: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143241          <idle>-0     (-----) [001] d..1 24577.660288: cpu_idle: state=0 cpu_id=1
143242 shell svc 13418-13419 ( 1007) [006] d..2 24577.660293: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143243            adbd-23485 ( 1007) [000] d..2 24577.660297: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143244              ps-13422 (13422) [006] d..2 24577.660298: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143245              ps-13422 (13422) [006] dn.3 24577.660300: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143246              ps-13422 (13422) [006] d..2 24577.660302: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143247          <idle>-0     (-----) [000] d..1 24577.660305: cpu_idle: state=0 cpu_id=0
143248 shell svc 13418-13419 ( 1007) [006] d..2 24577.660308: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143249          <idle>-0     (-----) [001] d.h3 24577.660309: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143250              ps-13422 (13422) [006] d..2 24577.660312: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143251              ps-13422 (13422) [006] dn.3 24577.660314: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143252              ps-13422 (13422) [006] d..2 24577.660316: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143253          <idle>-0     (-----) [001] dnh4 24577.660320: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143254 shell svc 13418-13419 ( 1007) [006] d..2 24577.660322: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143255              ps-13422 (13422) [006] d..2 24577.660326: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143256          <idle>-0     (-----) [001] .n.1 24577.660326: cpu_idle: state=4294967295 cpu_id=1
143257              ps-13422 (13422) [006] dn.3 24577.660328: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143258              ps-13422 (13422) [006] d..2 24577.660330: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143259          <idle>-0     (-----) [001] d..2 24577.660334: 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
143260 shell svc 13418-13419 ( 1007) [006] d..2 24577.660335: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143261              ps-13422 (13422) [006] d..2 24577.660339: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143262              ps-13422 (13422) [006] dn.3 24577.660341: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143263              ps-13422 (13422) [006] d..2 24577.660343: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143264   kworker/u17:2-23076 (23076) [001] d..2 24577.660344: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143265 shell svc 13418-13419 ( 1007) [006] d..2 24577.660349: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143266   kworker/u17:2-23076 (23076) [001] d..3 24577.660350: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143267              ps-13422 (13422) [006] d..2 24577.660352: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143268              ps-13422 (13422) [006] dn.3 24577.660355: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143269              ps-13422 (13422) [006] d..2 24577.660357: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143270 shell svc 13418-13419 ( 1007) [006] d..2 24577.660363: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143271              ps-13422 (13422) [006] d..2 24577.660366: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143272   kworker/u17:2-23076 (23076) [001] d..2 24577.660368: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
143273              ps-13422 (13422) [006] dn.3 24577.660369: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143274              ps-13422 (13422) [006] d..2 24577.660370: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143275     kworker/1:1-13091 (13091) [001] d..2 24577.660375: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
143276 shell svc 13418-13419 ( 1007) [006] d..2 24577.660376: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143277              ps-13422 (13422) [006] d..2 24577.660380: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143278              ps-13422 (13422) [006] dn.3 24577.660382: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143279              ps-13422 (13422) [006] d..2 24577.660384: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143280     kworker/1:1-13091 (13091) [001] d..3 24577.660385: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
143281 shell svc 13418-13419 ( 1007) [006] d..2 24577.660390: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143282          <idle>-0     (-----) [000] .n.1 24577.660390: cpu_idle: state=4294967295 cpu_id=0
143283              ps-13422 (13422) [006] d..2 24577.660393: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143284              ps-13422 (13422) [006] dn.3 24577.660395: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143285              ps-13422 (13422) [006] d..2 24577.660397: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143286          <idle>-0     (-----) [000] d..2 24577.660398: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
143287     kworker/1:1-13091 (13091) [001] d..2 24577.660402: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143288 shell svc 13418-13419 ( 1007) [006] d..2 24577.660403: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143289              ps-13422 (13422) [006] d..2 24577.660407: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143290              ps-13422 (13422) [006] dn.3 24577.660409: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143291              ps-13422 (13422) [006] d..2 24577.660411: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143292          <idle>-0     (-----) [001] d..1 24577.660411: cpu_idle: state=0 cpu_id=1
143293 shell svc 13418-13419 ( 1007) [006] d..2 24577.660417: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143294              ps-13422 (13422) [006] d..2 24577.660420: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143295              ps-13422 (13422) [006] dn.3 24577.660422: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143296              ps-13422 (13422) [006] d..2 24577.660424: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143297 shell svc 13418-13419 ( 1007) [006] d..2 24577.660430: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143298              ps-13422 (13422) [006] d..2 24577.660433: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143299              ps-13422 (13422) [006] dn.3 24577.660435: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143300              ps-13422 (13422) [006] d..2 24577.660437: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143301 shell svc 13418-13419 ( 1007) [006] d..2 24577.660443: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143302              ps-13422 (13422) [006] d..2 24577.660447: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143303              ps-13422 (13422) [006] dn.3 24577.660450: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143304            adbd-23485 ( 1007) [000] d..2 24577.660450: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143305              ps-13422 (13422) [006] d..2 24577.660451: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143306 shell svc 13418-13419 ( 1007) [006] d..2 24577.660457: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143307          <idle>-0     (-----) [000] d..1 24577.660458: cpu_idle: state=0 cpu_id=0
143308              ps-13422 (13422) [006] d..2 24577.660461: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143309              ps-13422 (13422) [006] dn.3 24577.660463: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143310              ps-13422 (13422) [006] d..2 24577.660465: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143311 shell svc 13418-13419 ( 1007) [006] d..2 24577.660471: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143312          <idle>-0     (-----) [001] d.h3 24577.660495: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143313          <idle>-0     (-----) [001] dnh4 24577.660502: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143314          <idle>-0     (-----) [001] .n.1 24577.660508: cpu_idle: state=4294967295 cpu_id=1
143315          <idle>-0     (-----) [001] d..2 24577.660515: 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
143316              ps-13422 (13422) [006] d..2 24577.660515: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143317              ps-13422 (13422) [006] dn.3 24577.660518: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143318              ps-13422 (13422) [006] d..2 24577.660521: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143319   kworker/u17:2-23076 (23076) [001] d..2 24577.660523: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143320 shell svc 13418-13419 ( 1007) [006] d..2 24577.660529: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143321   kworker/u17:2-23076 (23076) [001] d..3 24577.660529: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143322   kworker/u17:2-23076 (23076) [001] d..2 24577.660547: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
143323     kworker/1:1-13091 (13091) [001] d..2 24577.660553: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
143324     kworker/1:1-13091 (13091) [001] d..3 24577.660563: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
143325          <idle>-0     (-----) [000] .n.1 24577.660568: cpu_idle: state=4294967295 cpu_id=0
143326              ps-13422 (13422) [006] d..2 24577.660569: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143327              ps-13422 (13422) [006] dn.3 24577.660572: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143328              ps-13422 (13422) [006] d..2 24577.660574: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143329          <idle>-0     (-----) [000] d..2 24577.660575: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
143330     kworker/1:1-13091 (13091) [001] d..2 24577.660579: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143331 shell svc 13418-13419 ( 1007) [006] d..2 24577.660582: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143332          <idle>-0     (-----) [001] d..1 24577.660588: cpu_idle: state=0 cpu_id=1
143333            adbd-23485 ( 1007) [000] d..2 24577.660608: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143334          <idle>-0     (-----) [000] d..1 24577.660615: cpu_idle: state=0 cpu_id=0
143335          <idle>-0     (-----) [001] d.h3 24577.660674: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143336          <idle>-0     (-----) [001] dnh4 24577.660680: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143337          <idle>-0     (-----) [001] .n.1 24577.660692: cpu_idle: state=4294967295 cpu_id=1
143338          <idle>-0     (-----) [001] d..2 24577.660699: 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
143339   kworker/u17:2-23076 (23076) [001] d..2 24577.660706: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143340   kworker/u17:2-23076 (23076) [001] d..3 24577.660712: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143341   kworker/u17:2-23076 (23076) [001] d..2 24577.660729: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
143342     kworker/1:1-13091 (13091) [001] d..2 24577.660737: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
143343     kworker/1:1-13091 (13091) [001] d..3 24577.660756: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
143344          <idle>-0     (-----) [000] .n.1 24577.660761: cpu_idle: state=4294967295 cpu_id=0
143345          <idle>-0     (-----) [000] d..2 24577.660768: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
143346     kworker/1:1-13091 (13091) [001] d..2 24577.660772: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143347            adbd-23484 ( 1007) [000] d..2 24577.660781: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
143348          <idle>-0     (-----) [001] d..1 24577.660781: cpu_idle: state=0 cpu_id=1
143349            adbd-23484 ( 1007) [000] d..3 24577.660794: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
143350            adbd-23484 ( 1007) [000] d..2 24577.660846: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
143351              ps-13422 (13422) [006] d.s2 24577.660890: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
143352              ps-13422 (13422) [006] dns3 24577.660896: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
143353              ps-13422 (13422) [006] d..2 24577.660899: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
143354            adbd-1007  ( 1007) [000] d.s3 24577.660899: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
143355            adbd-1007  ( 1007) [000] d.s4 24577.660927: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
143356     kworker/6:0-21469 (21469) [006] d..2 24577.660927: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143357          <idle>-0     (-----) [001] .n.1 24577.660932: cpu_idle: state=4294967295 cpu_id=1
143358          <idle>-0     (-----) [001] d..2 24577.660941: 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
143359     rcu_preempt-7     (    7) [001] d..2 24577.660946: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=002
143360     rcu_preempt-7     (    7) [001] d..3 24577.660972: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
143361     rcu_preempt-7     (    7) [001] d..2 24577.660984: 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
143362            adbd-1007  ( 1007) [000] d..1 24577.660995: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
143363            adbd-1007  ( 1007) [000] d..2 24577.661023: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
143364            adbd-1007  ( 1007) [000] d..2 24577.661071: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143365          <idle>-0     (-----) [000] d..1 24577.661082: cpu_idle: state=0 cpu_id=0
143366              ps-13422 (13422) [006] d..2 24577.661175: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143367              ps-13422 (13422) [006] dn.3 24577.661179: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143368              ps-13422 (13422) [006] d..2 24577.661181: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143369 shell svc 13418-13419 ( 1007) [006] d..2 24577.661192: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143370              ps-13422 (13422) [006] d..2 24577.661198: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143371              ps-13422 (13422) [006] dn.3 24577.661200: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143372              ps-13422 (13422) [006] d..2 24577.661202: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143373 shell svc 13418-13419 ( 1007) [006] d..2 24577.661208: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143374              ps-13422 (13422) [006] d..2 24577.661212: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143375              ps-13422 (13422) [006] dn.3 24577.661214: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143376              ps-13422 (13422) [006] d..2 24577.661216: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143377 shell svc 13418-13419 ( 1007) [006] d..2 24577.661223: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143378              ps-13422 (13422) [006] d..2 24577.661226: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143379              ps-13422 (13422) [006] dn.3 24577.661228: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143380              ps-13422 (13422) [006] d..2 24577.661230: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143381 shell svc 13418-13419 ( 1007) [006] d..2 24577.661236: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143382              ps-13422 (13422) [006] d..2 24577.661240: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143383              ps-13422 (13422) [006] dn.3 24577.661242: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143384              ps-13422 (13422) [006] d..2 24577.661244: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143385 shell svc 13418-13419 ( 1007) [006] d..2 24577.661249: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143386              ps-13422 (13422) [006] d..2 24577.661253: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143387              ps-13422 (13422) [006] dn.3 24577.661255: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143388              ps-13422 (13422) [006] d..2 24577.661257: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143389 shell svc 13418-13419 ( 1007) [006] d..2 24577.661263: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143390              ps-13422 (13422) [006] d..2 24577.661267: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143391              ps-13422 (13422) [006] dn.3 24577.661269: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143392              ps-13422 (13422) [006] d..2 24577.661272: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143393 shell svc 13418-13419 ( 1007) [006] d..2 24577.661277: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143394              ps-13422 (13422) [006] d..2 24577.661281: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143395              ps-13422 (13422) [006] dn.3 24577.661283: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143396              ps-13422 (13422) [006] d..2 24577.661285: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143397 shell svc 13418-13419 ( 1007) [006] d..2 24577.661291: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143398              ps-13422 (13422) [006] d..2 24577.661295: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143399              ps-13422 (13422) [006] dn.3 24577.661297: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143400              ps-13422 (13422) [006] d..2 24577.661299: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143401         rcuop/4-45    (   45) [001] d..2 24577.661302: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
143402 shell svc 13418-13419 ( 1007) [006] d..2 24577.661304: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143403              ps-13422 (13422) [006] d..2 24577.661308: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143404              ps-13422 (13422) [006] dn.3 24577.661310: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143405              ps-13422 (13422) [006] d..2 24577.661312: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143406 shell svc 13418-13419 ( 1007) [006] d..2 24577.661318: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143407              ps-13422 (13422) [006] d..2 24577.661322: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143408              ps-13422 (13422) [006] dn.3 24577.661324: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143409              ps-13422 (13422) [006] d..2 24577.661326: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143410 shell svc 13418-13419 ( 1007) [006] d..2 24577.661332: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143411              ps-13422 (13422) [006] d..2 24577.661336: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143412              ps-13422 (13422) [006] dn.3 24577.661338: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143413              ps-13422 (13422) [006] d..2 24577.661340: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143414 shell svc 13418-13419 ( 1007) [006] d..2 24577.661346: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143415              ps-13422 (13422) [006] d..2 24577.661350: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143416              ps-13422 (13422) [006] dn.3 24577.661352: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143417              ps-13422 (13422) [006] d..2 24577.661354: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143418 shell svc 13418-13419 ( 1007) [006] d..2 24577.661359: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143419            adbd-23485 ( 1007) [001] d.h2 24577.661360: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143420              ps-13422 (13422) [006] d..2 24577.661363: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143421              ps-13422 (13422) [006] dn.3 24577.661366: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143422              ps-13422 (13422) [006] d..2 24577.661367: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143423          <idle>-0     (-----) [002] ...1 24577.661372: cpu_idle: state=4294967295 cpu_id=2
143424 shell svc 13418-13419 ( 1007) [006] d..2 24577.661373: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143425          <idle>-0     (-----) [002] d..1 24577.661375: cpu_idle: state=0 cpu_id=2
143426              ps-13422 (13422) [006] d..2 24577.661377: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143427              ps-13422 (13422) [006] dn.3 24577.661379: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143428              ps-13422 (13422) [006] d..2 24577.661381: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143429            adbd-23485 ( 1007) [001] d.h3 24577.661382: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
143430 shell svc 13418-13419 ( 1007) [006] d..2 24577.661387: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143431          <idle>-0     (-----) [000] .n.1 24577.661388: cpu_idle: state=4294967295 cpu_id=0
143432              ps-13422 (13422) [006] d..2 24577.661390: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143433              ps-13422 (13422) [006] dn.3 24577.661393: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143434              ps-13422 (13422) [006] d..2 24577.661394: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143435          <idle>-0     (-----) [000] d..2 24577.661396: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
143436 shell svc 13418-13419 ( 1007) [006] d..2 24577.661400: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143437            adbd-23485 ( 1007) [001] d..2 24577.661402: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143438              ps-13422 (13422) [006] d..2 24577.661404: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143439              ps-13422 (13422) [006] dn.3 24577.661406: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143440   kworker/u17:2-23076 (23076) [000] d..2 24577.661407: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
143441              ps-13422 (13422) [006] d..2 24577.661408: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143442          <idle>-0     (-----) [001] d..1 24577.661412: cpu_idle: state=0 cpu_id=1
143443 shell svc 13418-13419 ( 1007) [006] d..2 24577.661413: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143444   kworker/u17:2-23076 (23076) [000] d..3 24577.661416: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
143445              ps-13422 (13422) [006] d..2 24577.661417: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143446              ps-13422 (13422) [006] dn.3 24577.661419: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143447              ps-13422 (13422) [006] d..2 24577.661421: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143448 shell svc 13418-13419 ( 1007) [006] d..2 24577.661427: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143449              ps-13422 (13422) [006] d..2 24577.661431: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143450              ps-13422 (13422) [006] dn.3 24577.661433: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143451   kworker/u17:2-23076 (23076) [000] d..2 24577.661435: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
143452              ps-13422 (13422) [006] d..2 24577.661435: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143453 shell svc 13418-13419 ( 1007) [006] d..2 24577.661441: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143454     kworker/0:1-13012 (13012) [000] d..2 24577.661442: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
143455              ps-13422 (13422) [006] d..2 24577.661444: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143456              ps-13422 (13422) [006] dn.3 24577.661446: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143457              ps-13422 (13422) [006] d..2 24577.661448: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143458     kworker/0:1-13012 (13012) [000] d..3 24577.661452: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
143459 shell svc 13418-13419 ( 1007) [006] d..2 24577.661454: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143460              ps-13422 (13422) [006] d..2 24577.661458: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143461          <idle>-0     (-----) [001] .n.1 24577.661458: cpu_idle: state=4294967295 cpu_id=1
143462              ps-13422 (13422) [006] dn.3 24577.661460: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143463              ps-13422 (13422) [006] d..2 24577.661462: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143464          <idle>-0     (-----) [001] d..2 24577.661466: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
143465 shell svc 13418-13419 ( 1007) [006] d..2 24577.661467: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143466     kworker/0:1-13012 (13012) [000] d..2 24577.661469: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143467              ps-13422 (13422) [006] d..2 24577.661471: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143468              ps-13422 (13422) [006] dn.3 24577.661473: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143469              ps-13422 (13422) [006] d..2 24577.661475: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143470          <idle>-0     (-----) [000] d..1 24577.661478: cpu_idle: state=0 cpu_id=0
143471 shell svc 13418-13419 ( 1007) [006] d..2 24577.661481: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143472              ps-13422 (13422) [006] d..2 24577.661485: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143473              ps-13422 (13422) [006] dn.3 24577.661488: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143474              ps-13422 (13422) [006] d..2 24577.661489: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143475 shell svc 13418-13419 ( 1007) [006] d..2 24577.661495: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143476            adbd-23485 ( 1007) [001] d..2 24577.661522: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143477          <idle>-0     (-----) [001] d.h3 24577.661544: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
143478          <idle>-0     (-----) [001] d.h4 24577.661555: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
143479          <idle>-0     (-----) [000] .n.1 24577.661560: cpu_idle: state=4294967295 cpu_id=0
143480          <idle>-0     (-----) [001] d..1 24577.661564: cpu_idle: state=0 cpu_id=1
143481          <idle>-0     (-----) [000] d..2 24577.661568: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
143482   kworker/u17:2-23076 (23076) [000] d..2 24577.661576: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
143483   kworker/u17:2-23076 (23076) [000] d..3 24577.661583: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
143484   kworker/u17:2-23076 (23076) [000] d..2 24577.661601: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
143485     kworker/0:1-13012 (13012) [000] d..2 24577.661608: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
143486     kworker/0:1-13012 (13012) [000] d..3 24577.661618: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
143487          <idle>-0     (-----) [001] .n.1 24577.661623: cpu_idle: state=4294967295 cpu_id=1
143488          <idle>-0     (-----) [001] d..2 24577.661631: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
143489     kworker/0:1-13012 (13012) [000] d..2 24577.661633: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143490          <idle>-0     (-----) [000] d..1 24577.661641: cpu_idle: state=0 cpu_id=0
143491            adbd-23485 ( 1007) [001] d..2 24577.661657: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143492          <idle>-0     (-----) [001] d..1 24577.661664: cpu_idle: state=0 cpu_id=1
143493          <idle>-0     (-----) [001] d.h3 24577.661735: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
143494          <idle>-0     (-----) [001] d.h4 24577.661745: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
143495          <idle>-0     (-----) [000] .n.1 24577.661750: cpu_idle: state=4294967295 cpu_id=0
143496          <idle>-0     (-----) [001] ...1 24577.661752: cpu_idle: state=4294967295 cpu_id=1
143497          <idle>-0     (-----) [001] d..1 24577.661754: cpu_idle: state=0 cpu_id=1
143498          <idle>-0     (-----) [000] d..2 24577.661758: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
143499   kworker/u17:2-23076 (23076) [000] d..2 24577.661765: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
143500   kworker/u17:2-23076 (23076) [000] d..3 24577.661772: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
143501              ps-13422 (13422) [006] d..2 24577.661843: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143502              ps-13422 (13422) [006] dn.3 24577.661847: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143503              ps-13422 (13422) [006] d..2 24577.661850: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143504 shell svc 13418-13419 ( 1007) [006] d..2 24577.661859: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143505   kworker/u17:2-23076 (23076) [000] d.h5 24577.661861: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
143506              ps-13422 (13422) [006] d..2 24577.661864: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143507              ps-13422 (13422) [006] dn.3 24577.661866: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143508              ps-13422 (13422) [006] d..2 24577.661869: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143509 shell svc 13418-13419 ( 1007) [006] d..2 24577.661875: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143510   kworker/u17:2-23076 (23076) [000] d.h6 24577.661876: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
143511              ps-13422 (13422) [006] d..2 24577.661879: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143512   kworker/u17:2-23076 (23076) [000] d.h5 24577.661880: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
143513          <idle>-0     (-----) [003] .n.1 24577.661880: cpu_idle: state=4294967295 cpu_id=3
143514              ps-13422 (13422) [006] dn.3 24577.661882: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143515              ps-13422 (13422) [006] d..2 24577.661883: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143516   kworker/u17:2-23076 (23076) [000] d.h6 24577.661889: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
143517 shell svc 13418-13419 ( 1007) [006] d..2 24577.661889: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143518          <idle>-0     (-----) [003] d..2 24577.661890: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
143519              ps-13422 (13422) [006] d..2 24577.661894: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143520          <idle>-0     (-----) [002] .n.1 24577.661894: cpu_idle: state=4294967295 cpu_id=2
143521              ps-13422 (13422) [006] dn.3 24577.661896: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143522              ps-13422 (13422) [006] d..2 24577.661898: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143523          <idle>-0     (-----) [002] d..2 24577.661901: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
143524 shell svc 13418-13419 ( 1007) [006] d..2 24577.661904: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143525   kworker/u17:2-23076 (23076) [000] d..2 24577.661906: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
143526              ps-13422 (13422) [006] d..2 24577.661908: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143527              ps-13422 (13422) [006] dn.3 24577.661910: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143528              ps-13422 (13422) [006] d..2 24577.661912: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143529     kworker/0:1-13012 (13012) [000] d..2 24577.661915: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
143530  crtc_event:111-254   (  254) [003] d..2 24577.661918: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
143531 shell svc 13418-13419 ( 1007) [006] d..2 24577.661918: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143532              ps-13422 (13422) [006] d..2 24577.661921: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143533              ps-13422 (13422) [006] dn.3 24577.661923: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143534          <idle>-0     (-----) [003] d..1 24577.661924: cpu_idle: state=0 cpu_id=3
143535              ps-13422 (13422) [006] d..2 24577.661925: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143536 shell svc 13418-13419 ( 1007) [006] d..2 24577.661931: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143537     kworker/0:1-13012 (13012) [000] d..3 24577.661933: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
143538              ps-13422 (13422) [006] d..2 24577.661936: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143539              ps-13422 (13422) [006] dn.3 24577.661938: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143540          <idle>-0     (-----) [003] .n.1 24577.661938: cpu_idle: state=4294967295 cpu_id=3
143541              ps-13422 (13422) [006] d..2 24577.661940: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143542          <idle>-0     (-----) [003] d..2 24577.661946: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
143543 shell svc 13418-13419 ( 1007) [006] d..2 24577.661946: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143544              ps-13422 (13422) [006] d..2 24577.661949: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143545     kworker/0:1-13012 (13012) [000] d..2 24577.661950: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143546              ps-13422 (13422) [006] dn.3 24577.661952: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143547              ps-13422 (13422) [006] d..2 24577.661953: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143548 shell svc 13418-13419 ( 1007) [006] d..2 24577.661959: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143549          <idle>-0     (-----) [000] d..1 24577.661960: cpu_idle: state=0 cpu_id=0
143550            adbd-23484 ( 1007) [003] d..2 24577.661960: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
143551              ps-13422 (13422) [006] d..2 24577.661963: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143552              ps-13422 (13422) [006] dn.3 24577.661965: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143553              ps-13422 (13422) [006] d..2 24577.661967: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143554 shell svc 13418-13419 ( 1007) [006] d..2 24577.661973: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143555            adbd-23484 ( 1007) [003] d..3 24577.661974: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
143556              ps-13422 (13422) [006] d..2 24577.661977: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143557              ps-13422 (13422) [006] dn.3 24577.661979: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143558              ps-13422 (13422) [006] d..2 24577.661981: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143559 shell svc 13418-13419 ( 1007) [006] d..2 24577.661987: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143560              ps-13422 (13422) [006] d..2 24577.661991: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143561              ps-13422 (13422) [006] dn.3 24577.661993: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143562              ps-13422 (13422) [006] d..2 24577.661995: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143563 shell svc 13418-13419 ( 1007) [006] d..2 24577.662001: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143564              ps-13422 (13422) [006] d..2 24577.662004: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143565              ps-13422 (13422) [006] dn.3 24577.662007: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143566              ps-13422 (13422) [006] d..2 24577.662009: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143567 shell svc 13418-13419 ( 1007) [006] d..2 24577.662014: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143568              ps-13422 (13422) [006] d..2 24577.662018: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143569              ps-13422 (13422) [006] dn.3 24577.662020: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143570              ps-13422 (13422) [006] d..2 24577.662022: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143571            adbd-23484 ( 1007) [003] d..2 24577.662025: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
143572 shell svc 13418-13419 ( 1007) [006] d..2 24577.662028: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143573 crtc_commit:111-253   (  253) [002] d..2 24577.662033: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
143574              ps-13422 (13422) [006] d..2 24577.662033: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143575              ps-13422 (13422) [006] dn.3 24577.662035: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143576              ps-13422 (13422) [006] d..2 24577.662037: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143577          <idle>-0     (-----) [002] d..1 24577.662038: cpu_idle: state=0 cpu_id=2
143578 shell svc 13418-13419 ( 1007) [006] d..2 24577.662043: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143579            adbd-1007  ( 1007) [003] d..1 24577.662146: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
143580            adbd-1007  ( 1007) [003] d..2 24577.662159: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
143581          <idle>-0     (-----) [001] .n.1 24577.662164: cpu_idle: state=4294967295 cpu_id=1
143582          <idle>-0     (-----) [001] d..2 24577.662172: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
143583            adbd-1007  ( 1007) [003] d..2 24577.662202: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
143584          <idle>-0     (-----) [003] d..1 24577.662212: cpu_idle: state=0 cpu_id=3
143585            adbd-23485 ( 1007) [001] d..2 24577.662228: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143586          <idle>-0     (-----) [001] d.h4 24577.662247: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
143587          <idle>-0     (-----) [001] d.h5 24577.662257: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
143588          <idle>-0     (-----) [000] .n.1 24577.662263: cpu_idle: state=4294967295 cpu_id=0
143589          <idle>-0     (-----) [001] d..1 24577.662269: cpu_idle: state=0 cpu_id=1
143590          <idle>-0     (-----) [000] d..2 24577.662270: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
143591   kworker/u17:2-23076 (23076) [000] d..2 24577.662281: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
143592   kworker/u17:2-23076 (23076) [000] d..3 24577.662287: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
143593   kworker/u17:2-23076 (23076) [000] d..2 24577.662305: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
143594     kworker/0:1-13012 (13012) [000] d..2 24577.662311: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
143595     kworker/0:1-13012 (13012) [000] d..3 24577.662336: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
143596     kworker/0:1-13012 (13012) [000] d..2 24577.662348: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
143597            adbd-23485 ( 1007) [000] d..2 24577.662408: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143598          <idle>-0     (-----) [000] d..1 24577.662418: cpu_idle: state=0 cpu_id=0
143599              ps-13422 (13422) [006] d..2 24577.662425: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143600              ps-13422 (13422) [006] dn.3 24577.662428: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143601              ps-13422 (13422) [006] d..2 24577.662431: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143602 shell svc 13418-13419 ( 1007) [006] d..2 24577.662441: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143603              ps-13422 (13422) [006] d..2 24577.662446: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143604              ps-13422 (13422) [006] dn.3 24577.662449: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143605              ps-13422 (13422) [006] d..2 24577.662451: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143606 shell svc 13418-13419 ( 1007) [006] d..2 24577.662457: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143607          <idle>-0     (-----) [001] d.h3 24577.662458: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
143608              ps-13422 (13422) [006] d..2 24577.662461: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143609              ps-13422 (13422) [006] dn.3 24577.662463: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143610              ps-13422 (13422) [006] d..2 24577.662465: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143611 shell svc 13418-13419 ( 1007) [006] d..2 24577.662471: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143612              ps-13422 (13422) [006] d..2 24577.662476: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143613              ps-13422 (13422) [006] dn.3 24577.662478: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143614          <idle>-0     (-----) [001] dnh4 24577.662479: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143615              ps-13422 (13422) [006] d..2 24577.662480: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143616          <idle>-0     (-----) [001] .n.1 24577.662485: cpu_idle: state=4294967295 cpu_id=1
143617 shell svc 13418-13419 ( 1007) [006] d..2 24577.662487: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143618              ps-13422 (13422) [006] d..2 24577.662492: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143619          <idle>-0     (-----) [001] d..2 24577.662493: 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
143620              ps-13422 (13422) [006] dn.3 24577.662494: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143621              ps-13422 (13422) [006] d..2 24577.662496: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143622 shell svc 13418-13419 ( 1007) [006] d..2 24577.662501: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143623   kworker/u17:2-23076 (23076) [001] d..2 24577.662504: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143624              ps-13422 (13422) [006] d..2 24577.662505: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143625              ps-13422 (13422) [006] dn.3 24577.662508: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143626   kworker/u17:2-23076 (23076) [001] d..3 24577.662510: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143627              ps-13422 (13422) [006] d..2 24577.662511: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143628 shell svc 13418-13419 ( 1007) [006] d..2 24577.662517: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143629              ps-13422 (13422) [006] d..2 24577.662521: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143630              ps-13422 (13422) [006] dn.3 24577.662523: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143631              ps-13422 (13422) [006] d..2 24577.662525: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143632   kworker/u17:2-23076 (23076) [001] d..2 24577.662529: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
143633 shell svc 13418-13419 ( 1007) [006] d..2 24577.662531: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143634              ps-13422 (13422) [006] d..2 24577.662535: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143635     kworker/1:1-13091 (13091) [001] d..2 24577.662536: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
143636              ps-13422 (13422) [006] dn.3 24577.662537: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143637              ps-13422 (13422) [006] d..2 24577.662540: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143638 shell svc 13418-13419 ( 1007) [006] d..2 24577.662545: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143639     kworker/1:1-13091 (13091) [001] d..3 24577.662546: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
143640              ps-13422 (13422) [006] d..2 24577.662550: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143641          <idle>-0     (-----) [000] .n.1 24577.662552: cpu_idle: state=4294967295 cpu_id=0
143642              ps-13422 (13422) [006] dn.3 24577.662552: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143643              ps-13422 (13422) [006] d..2 24577.662554: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143644          <idle>-0     (-----) [000] d..2 24577.662559: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
143645 shell svc 13418-13419 ( 1007) [006] d..2 24577.662560: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143646              ps-13422 (13422) [006] d..2 24577.662563: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143647     kworker/1:1-13091 (13091) [001] d..2 24577.662564: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143648              ps-13422 (13422) [006] dn.3 24577.662566: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143649              ps-13422 (13422) [006] d..2 24577.662568: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143650          <idle>-0     (-----) [001] d..1 24577.662571: cpu_idle: state=0 cpu_id=1
143651 shell svc 13418-13419 ( 1007) [006] d..2 24577.662573: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143652              ps-13422 (13422) [006] d..2 24577.662577: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143653              ps-13422 (13422) [006] dn.3 24577.662579: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143654              ps-13422 (13422) [006] d..2 24577.662581: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143655            adbd-23485 ( 1007) [000] d..2 24577.662583: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143656 shell svc 13418-13419 ( 1007) [006] d..2 24577.662587: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143657              ps-13422 (13422) [006] d..2 24577.662591: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143658          <idle>-0     (-----) [000] d..1 24577.662592: cpu_idle: state=0 cpu_id=0
143659              ps-13422 (13422) [006] dn.3 24577.662593: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143660              ps-13422 (13422) [006] d..2 24577.662595: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143661 shell svc 13418-13419 ( 1007) [006] d..2 24577.662601: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143662              ps-13422 (13422) [006] d..2 24577.662606: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143663              ps-13422 (13422) [006] dn.3 24577.662608: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143664              ps-13422 (13422) [006] d..2 24577.662610: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143665 shell svc 13418-13419 ( 1007) [006] d..2 24577.662616: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143666              ps-13422 (13422) [006] d..2 24577.662621: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143667              ps-13422 (13422) [006] dn.3 24577.662623: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143668              ps-13422 (13422) [006] d..2 24577.662625: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143669 shell svc 13418-13419 ( 1007) [006] d..2 24577.662631: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143670              ps-13422 (13422) [006] d..2 24577.662635: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143671              ps-13422 (13422) [006] dn.3 24577.662637: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143672          <idle>-0     (-----) [001] d.h3 24577.662638: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143673              ps-13422 (13422) [006] d..2 24577.662639: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143674 shell svc 13418-13419 ( 1007) [006] d..2 24577.662645: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143675          <idle>-0     (-----) [001] dnh4 24577.662645: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143676              ps-13422 (13422) [006] d..2 24577.662649: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143677          <idle>-0     (-----) [001] .n.1 24577.662650: cpu_idle: state=4294967295 cpu_id=1
143678              ps-13422 (13422) [006] dn.3 24577.662651: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143679              ps-13422 (13422) [006] d..2 24577.662653: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143680          <idle>-0     (-----) [001] d..2 24577.662658: 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
143681 shell svc 13418-13419 ( 1007) [006] d..2 24577.662659: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143682   kworker/u17:2-23076 (23076) [001] d..2 24577.662666: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143683   kworker/u17:2-23076 (23076) [001] d..3 24577.662671: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143684   kworker/u17:2-23076 (23076) [001] d..2 24577.662689: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
143685     kworker/1:1-13091 (13091) [001] d..2 24577.662697: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
143686     kworker/1:1-13091 (13091) [001] d..3 24577.662724: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
143687          <idle>-0     (-----) [000] .n.1 24577.662730: cpu_idle: state=4294967295 cpu_id=0
143688          <idle>-0     (-----) [000] d..2 24577.662737: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
143689     kworker/1:1-13091 (13091) [001] d..2 24577.662741: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143690          <idle>-0     (-----) [001] d..1 24577.662749: cpu_idle: state=0 cpu_id=1
143691            adbd-23484 ( 1007) [000] d..2 24577.662750: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
143692            adbd-23484 ( 1007) [000] d..3 24577.662764: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
143693            adbd-23484 ( 1007) [000] d..2 24577.662816: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
143694            adbd-1007  ( 1007) [000] d..1 24577.662923: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
143695            adbd-1007  ( 1007) [000] d..2 24577.662945: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
143696          <idle>-0     (-----) [001] .n.1 24577.662950: cpu_idle: state=4294967295 cpu_id=1
143697          <idle>-0     (-----) [001] d..2 24577.662957: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
143698            adbd-1007  ( 1007) [000] d..2 24577.662988: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143699              ps-13422 (13422) [006] d..2 24577.662996: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143700          <idle>-0     (-----) [000] d..1 24577.662999: cpu_idle: state=0 cpu_id=0
143701              ps-13422 (13422) [006] dn.3 24577.663000: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143702              ps-13422 (13422) [006] d..2 24577.663002: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143703 shell svc 13418-13419 ( 1007) [006] d..2 24577.663012: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143704            adbd-23485 ( 1007) [001] d..2 24577.663014: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143705              ps-13422 (13422) [006] d..2 24577.663017: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143706              ps-13422 (13422) [006] dn.3 24577.663019: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143707              ps-13422 (13422) [006] d..2 24577.663021: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143708 shell svc 13418-13419 ( 1007) [006] d..2 24577.663028: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143709          <idle>-0     (-----) [001] d.h3 24577.663032: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143710              ps-13422 (13422) [006] d..2 24577.663033: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143711              ps-13422 (13422) [006] dn.3 24577.663035: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143712              ps-13422 (13422) [006] d..2 24577.663037: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143713          <idle>-0     (-----) [001] dnh4 24577.663039: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143714 shell svc 13418-13419 ( 1007) [006] d..2 24577.663043: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143715              ps-13422 (13422) [006] d..2 24577.663047: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143716          <idle>-0     (-----) [001] d..2 24577.663048: 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
143717              ps-13422 (13422) [006] dn.3 24577.663050: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143718              ps-13422 (13422) [006] d..2 24577.663052: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143719   kworker/u17:2-23076 (23076) [001] d..2 24577.663056: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143720 shell svc 13418-13419 ( 1007) [006] d..2 24577.663058: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143721              ps-13422 (13422) [006] d..2 24577.663061: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143722   kworker/u17:2-23076 (23076) [001] d..3 24577.663062: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143723              ps-13422 (13422) [006] dn.3 24577.663064: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143724              ps-13422 (13422) [006] d..2 24577.663065: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143725 shell svc 13418-13419 ( 1007) [006] d..2 24577.663071: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143726              ps-13422 (13422) [006] d..2 24577.663075: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143727              ps-13422 (13422) [006] dn.3 24577.663077: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143728              ps-13422 (13422) [006] d..2 24577.663079: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143729   kworker/u17:2-23076 (23076) [001] d..2 24577.663080: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
143730 shell svc 13418-13419 ( 1007) [006] d..2 24577.663085: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143731     kworker/1:1-13091 (13091) [001] d..2 24577.663085: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
143732              ps-13422 (13422) [006] d..2 24577.663089: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143733              ps-13422 (13422) [006] dn.3 24577.663091: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143734              ps-13422 (13422) [006] d..2 24577.663093: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143735 shell svc 13418-13419 ( 1007) [006] d..2 24577.663099: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143736              ps-13422 (13422) [006] d..2 24577.663103: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143737     kworker/1:1-13091 (13091) [001] d..3 24577.663103: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
143738              ps-13422 (13422) [006] dn.3 24577.663105: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143739              ps-13422 (13422) [006] d..2 24577.663108: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143740          <idle>-0     (-----) [000] .n.1 24577.663109: cpu_idle: state=4294967295 cpu_id=0
143741 shell svc 13418-13419 ( 1007) [006] d..2 24577.663113: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143742              ps-13422 (13422) [006] d..2 24577.663117: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143743          <idle>-0     (-----) [000] d..2 24577.663118: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
143744     kworker/1:1-13091 (13091) [001] d..2 24577.663120: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143745              ps-13422 (13422) [006] dn.3 24577.663120: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143746              ps-13422 (13422) [006] d..2 24577.663122: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143747 shell svc 13418-13419 ( 1007) [006] d..2 24577.663127: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143748          <idle>-0     (-----) [001] d..1 24577.663128: cpu_idle: state=0 cpu_id=1
143749              ps-13422 (13422) [006] d..2 24577.663132: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143750              ps-13422 (13422) [006] dn.3 24577.663134: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143751              ps-13422 (13422) [006] d..2 24577.663136: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143752 shell svc 13418-13419 ( 1007) [006] d..2 24577.663142: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143753              ps-13422 (13422) [006] d..2 24577.663146: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143754              ps-13422 (13422) [006] dn.3 24577.663148: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143755              ps-13422 (13422) [006] d..2 24577.663150: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143756 shell svc 13418-13419 ( 1007) [006] d..2 24577.663156: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143757              ps-13422 (13422) [006] d..2 24577.663159: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143758              ps-13422 (13422) [006] dn.3 24577.663162: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143759              ps-13422 (13422) [006] d..2 24577.663163: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143760 shell svc 13418-13419 ( 1007) [006] d..2 24577.663169: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143761              ps-13422 (13422) [006] d..2 24577.663174: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143762              ps-13422 (13422) [006] dn.3 24577.663176: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143763              ps-13422 (13422) [006] d..2 24577.663178: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143764            adbd-23485 ( 1007) [000] d..2 24577.663179: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143765 shell svc 13418-13419 ( 1007) [006] d..2 24577.663184: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143766              ps-13422 (13422) [006] d..2 24577.663188: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143767          <idle>-0     (-----) [000] d..1 24577.663189: cpu_idle: state=0 cpu_id=0
143768              ps-13422 (13422) [006] dn.3 24577.663190: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143769              ps-13422 (13422) [006] d..2 24577.663192: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143770 shell svc 13418-13419 ( 1007) [006] d..2 24577.663198: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143771          <idle>-0     (-----) [001] d.h3 24577.663211: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143772          <idle>-0     (-----) [001] dnh4 24577.663217: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143773          <idle>-0     (-----) [001] .n.1 24577.663222: cpu_idle: state=4294967295 cpu_id=1
143774          <idle>-0     (-----) [001] d..2 24577.663230: 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
143775   kworker/u17:2-23076 (23076) [001] d..2 24577.663238: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143776   kworker/u17:2-23076 (23076) [001] d..3 24577.663244: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143777   kworker/u17:2-23076 (23076) [001] d..2 24577.663262: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
143778     kworker/1:1-13091 (13091) [001] d..2 24577.663268: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
143779     kworker/1:1-13091 (13091) [001] d..3 24577.663278: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
143780          <idle>-0     (-----) [000] .n.1 24577.663284: cpu_idle: state=4294967295 cpu_id=0
143781          <idle>-0     (-----) [000] d..2 24577.663292: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
143782     kworker/1:1-13091 (13091) [001] d..2 24577.663294: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143783          <idle>-0     (-----) [001] d..1 24577.663302: cpu_idle: state=0 cpu_id=1
143784            adbd-23485 ( 1007) [000] d..2 24577.663312: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143785          <idle>-0     (-----) [000] d..1 24577.663320: cpu_idle: state=0 cpu_id=0
143786          <idle>-0     (-----) [001] d.h3 24577.663390: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143787          <idle>-0     (-----) [001] dnh4 24577.663397: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143788          <idle>-0     (-----) [001] .n.1 24577.663402: cpu_idle: state=4294967295 cpu_id=1
143789          <idle>-0     (-----) [001] d..2 24577.663409: 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
143790   kworker/u17:2-23076 (23076) [001] d..2 24577.663419: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143791   kworker/u17:2-23076 (23076) [001] d..3 24577.663424: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143792   kworker/u17:2-23076 (23076) [001] d..2 24577.663442: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
143793     kworker/1:1-13091 (13091) [001] d..2 24577.663449: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
143794     kworker/1:1-13091 (13091) [001] d..3 24577.663459: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
143795          <idle>-0     (-----) [000] .n.1 24577.663464: cpu_idle: state=4294967295 cpu_id=0
143796          <idle>-0     (-----) [000] d..2 24577.663471: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
143797     kworker/1:1-13091 (13091) [001] d..2 24577.663475: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143798          <idle>-0     (-----) [001] d..1 24577.663484: cpu_idle: state=0 cpu_id=1
143799            adbd-23484 ( 1007) [000] d..2 24577.663485: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
143800            adbd-23484 ( 1007) [000] d..3 24577.663493: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
143801            adbd-23484 ( 1007) [000] d..2 24577.663544: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
143802              ps-13422 (13422) [006] d..2 24577.663588: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143803              ps-13422 (13422) [006] dn.3 24577.663592: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143804              ps-13422 (13422) [006] d..2 24577.663595: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143805 shell svc 13418-13419 ( 1007) [006] d..2 24577.663604: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143806              ps-13422 (13422) [006] d..2 24577.663610: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143807              ps-13422 (13422) [006] dn.3 24577.663612: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143808              ps-13422 (13422) [006] d..2 24577.663614: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143809 shell svc 13418-13419 ( 1007) [006] d..2 24577.663621: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143810              ps-13422 (13422) [006] d..2 24577.663625: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143811              ps-13422 (13422) [006] dn.3 24577.663628: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143812              ps-13422 (13422) [006] d..2 24577.663630: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143813            adbd-1007  ( 1007) [000] d..1 24577.663632: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
143814 shell svc 13418-13419 ( 1007) [006] d..2 24577.663636: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143815              ps-13422 (13422) [006] d..2 24577.663640: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143816              ps-13422 (13422) [006] dn.3 24577.663643: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143817              ps-13422 (13422) [006] d..2 24577.663645: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143818 shell svc 13418-13419 ( 1007) [006] d..2 24577.663651: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143819            adbd-1007  ( 1007) [000] d..2 24577.663654: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
143820              ps-13422 (13422) [006] d..2 24577.663654: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143821              ps-13422 (13422) [006] dn.3 24577.663657: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143822              ps-13422 (13422) [006] d..2 24577.663658: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143823          <idle>-0     (-----) [001] .n.1 24577.663659: cpu_idle: state=4294967295 cpu_id=1
143824 shell svc 13418-13419 ( 1007) [006] d..2 24577.663664: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143825          <idle>-0     (-----) [001] d..2 24577.663667: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
143826              ps-13422 (13422) [006] d..2 24577.663669: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143827              ps-13422 (13422) [006] dn.3 24577.663671: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143828              ps-13422 (13422) [006] d..2 24577.663673: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143829 shell svc 13418-13419 ( 1007) [006] d..2 24577.663679: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143830              ps-13422 (13422) [006] d..2 24577.663682: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143831              ps-13422 (13422) [006] dn.3 24577.663685: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143832              ps-13422 (13422) [006] d..2 24577.663686: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143833 shell svc 13418-13419 ( 1007) [006] d..2 24577.663692: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143834              ps-13422 (13422) [006] d..2 24577.663696: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143835            adbd-1007  ( 1007) [000] d..2 24577.663697: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143836              ps-13422 (13422) [006] dn.3 24577.663698: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143837              ps-13422 (13422) [006] d..2 24577.663700: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143838 shell svc 13418-13419 ( 1007) [006] d..2 24577.663706: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143839          <idle>-0     (-----) [000] d..1 24577.663708: cpu_idle: state=0 cpu_id=0
143840              ps-13422 (13422) [006] d..2 24577.663710: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143841              ps-13422 (13422) [006] dn.3 24577.663712: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143842              ps-13422 (13422) [006] d..2 24577.663714: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143843 shell svc 13418-13419 ( 1007) [006] d..2 24577.663720: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143844            adbd-23485 ( 1007) [001] d..2 24577.663723: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143845              ps-13422 (13422) [006] d..2 24577.663724: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143846              ps-13422 (13422) [006] dn.3 24577.663726: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143847              ps-13422 (13422) [006] d..2 24577.663729: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143848 shell svc 13418-13419 ( 1007) [006] d..2 24577.663734: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143849              ps-13422 (13422) [006] d..2 24577.663738: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143850              ps-13422 (13422) [006] dn.3 24577.663740: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143851          <idle>-0     (-----) [001] d.h4 24577.663741: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143852              ps-13422 (13422) [006] d..2 24577.663742: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143853 shell svc 13418-13419 ( 1007) [006] d..2 24577.663748: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143854          <idle>-0     (-----) [001] dnh5 24577.663748: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143855              ps-13422 (13422) [006] d..2 24577.663751: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143856              ps-13422 (13422) [006] dn.3 24577.663754: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143857              ps-13422 (13422) [006] d..2 24577.663757: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143858          <idle>-0     (-----) [001] d..2 24577.663758: 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
143859 shell svc 13418-13419 ( 1007) [006] d..2 24577.663763: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143860   kworker/u17:2-23076 (23076) [001] d..2 24577.663766: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143861              ps-13422 (13422) [006] d..2 24577.663767: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143862              ps-13422 (13422) [006] dn.3 24577.663769: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143863              ps-13422 (13422) [006] d..2 24577.663771: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143864   kworker/u17:2-23076 (23076) [001] d..3 24577.663771: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143865 shell svc 13418-13419 ( 1007) [006] d..2 24577.663777: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143866              ps-13422 (13422) [006] d..2 24577.663781: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143867              ps-13422 (13422) [006] dn.3 24577.663783: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143868              ps-13422 (13422) [006] d..2 24577.663785: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143869   kworker/u17:2-23076 (23076) [001] d..2 24577.663789: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
143870 shell svc 13418-13419 ( 1007) [006] d..2 24577.663791: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143871              ps-13422 (13422) [006] d..2 24577.663794: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143872     kworker/1:1-13091 (13091) [001] d..2 24577.663795: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
143873              ps-13422 (13422) [006] dn.3 24577.663797: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143874              ps-13422 (13422) [006] d..2 24577.663799: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143875 shell svc 13418-13419 ( 1007) [006] d..2 24577.663805: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143876              ps-13422 (13422) [006] d..2 24577.663809: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143877              ps-13422 (13422) [006] dn.3 24577.663811: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143878              ps-13422 (13422) [006] d..2 24577.663813: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143879     kworker/1:1-13091 (13091) [001] d..3 24577.663814: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
143880 shell svc 13418-13419 ( 1007) [006] d..2 24577.663819: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143881          <idle>-0     (-----) [000] .n.1 24577.663820: cpu_idle: state=4294967295 cpu_id=0
143882          <idle>-0     (-----) [000] d..2 24577.663828: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
143883     kworker/1:1-13091 (13091) [001] d..2 24577.663830: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143884          <idle>-0     (-----) [001] d..1 24577.663839: cpu_idle: state=0 cpu_id=1
143885            adbd-23485 ( 1007) [000] d..2 24577.663888: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143886          <idle>-0     (-----) [000] d..1 24577.663897: cpu_idle: state=0 cpu_id=0
143887          <idle>-0     (-----) [001] d.h3 24577.663919: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143888          <idle>-0     (-----) [001] dnh4 24577.663925: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143889          <idle>-0     (-----) [001] .n.1 24577.663930: cpu_idle: state=4294967295 cpu_id=1
143890          <idle>-0     (-----) [001] d..2 24577.663938: 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
143891   kworker/u17:2-23076 (23076) [001] d..2 24577.663946: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143892   kworker/u17:2-23076 (23076) [001] d..3 24577.663952: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143893   kworker/u17:2-23076 (23076) [001] d..2 24577.663969: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
143894     kworker/1:1-13091 (13091) [001] d..2 24577.663975: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
143895     kworker/1:1-13091 (13091) [001] d..3 24577.663985: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
143896          <idle>-0     (-----) [000] .n.1 24577.663991: cpu_idle: state=4294967295 cpu_id=0
143897          <idle>-0     (-----) [000] d..2 24577.663999: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
143898     kworker/1:1-13091 (13091) [001] d..2 24577.664001: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143899          <idle>-0     (-----) [001] d..1 24577.664008: cpu_idle: state=0 cpu_id=1
143900            adbd-23485 ( 1007) [000] d..2 24577.664019: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143901          <idle>-0     (-----) [000] d..1 24577.664026: cpu_idle: state=0 cpu_id=0
143902          <idle>-0     (-----) [001] d.h3 24577.664067: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143903          <idle>-0     (-----) [001] dnh4 24577.664074: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143904          <idle>-0     (-----) [001] .n.1 24577.664079: cpu_idle: state=4294967295 cpu_id=1
143905          <idle>-0     (-----) [001] d..2 24577.664087: 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
143906   kworker/u17:2-23076 (23076) [001] d..2 24577.664095: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143907   kworker/u17:2-23076 (23076) [001] d..3 24577.664101: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143908   kworker/u17:2-23076 (23076) [001] d..2 24577.664118: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
143909     kworker/1:1-13091 (13091) [001] d..2 24577.664140: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
143910     kworker/1:1-13091 (13091) [001] d..3 24577.664149: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
143911     kworker/1:1-13091 (13091) [001] d..2 24577.664165: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143912          <idle>-0     (-----) [001] d..1 24577.664173: cpu_idle: state=0 cpu_id=1
143913          <idle>-0     (-----) [000] dnh5 24577.664203: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
143914          <idle>-0     (-----) [000] dnh6 24577.664216: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
143915              ps-13422 (13422) [006] d.s2 24577.664221: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
143916          <idle>-0     (-----) [000] .n.1 24577.664233: cpu_idle: state=4294967295 cpu_id=0
143917          <idle>-0     (-----) [000] d..2 24577.664242: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
143918          <idle>-0     (-----) [002] dnH2 24577.664244: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
143919          <idle>-0     (-----) [002] dns3 24577.664249: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
143920            adbd-23484 ( 1007) [000] d..2 24577.664255: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
143921          <idle>-0     (-----) [002] dns4 24577.664261: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
143922            adbd-23484 ( 1007) [000] d..3 24577.664263: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
143923          <idle>-0     (-----) [003] .n.1 24577.664266: cpu_idle: state=4294967295 cpu_id=3
143924          <idle>-0     (-----) [002] .n.1 24577.664270: cpu_idle: state=4294967295 cpu_id=2
143925          <idle>-0     (-----) [003] d..2 24577.664274: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
143926          <idle>-0     (-----) [002] d..2 24577.664275: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
143927  crtc_event:111-254   (  254) [003] d..2 24577.664306: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
143928            adbd-23484 ( 1007) [000] d..2 24577.664323: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143929 crtc_commit:111-253   (  253) [002] d..2 24577.664325: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
143930          <idle>-0     (-----) [000] d..1 24577.664333: cpu_idle: state=0 cpu_id=0
143931            adbd-1007  ( 1007) [003] d..1 24577.664403: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
143932            adbd-1007  ( 1007) [003] d..2 24577.664432: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
143933  kworker/u16:10-23868 (23868) [002] d..2 24577.664472: 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
143934            adbd-1007  ( 1007) [003] d..2 24577.664476: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
143935          <idle>-0     (-----) [000] d.h5 24577.664499: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
143936          <idle>-0     (-----) [003] dns4 24577.664511: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
143937          <idle>-0     (-----) [000] d.h6 24577.664512: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
143938          <idle>-0     (-----) [000] ...1 24577.664527: cpu_idle: state=4294967295 cpu_id=0
143939          <idle>-0     (-----) [000] d..1 24577.664530: cpu_idle: state=0 cpu_id=0
143940            adbd-23485 ( 1007) [002] d..2 24577.664532: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
143941          <idle>-0     (-----) [003] dns5 24577.664540: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
143942          <idle>-0     (-----) [002] d..1 24577.664543: cpu_idle: state=0 cpu_id=2
143943          <idle>-0     (-----) [003] dns5 24577.664544: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
143944          <idle>-0     (-----) [001] d.h3 24577.664553: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143945          <idle>-0     (-----) [003] d..2 24577.664556: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
143946          <idle>-0     (-----) [001] dnh4 24577.664564: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143947  crtc_event:111-254   (  254) [003] d..2 24577.664569: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
143948          <idle>-0     (-----) [001] .n.1 24577.664570: cpu_idle: state=4294967295 cpu_id=1
143949          <idle>-0     (-----) [001] d..2 24577.664578: 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
143950   kworker/u17:2-23076 (23076) [001] d..2 24577.664586: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143951   kworker/u17:2-23076 (23076) [001] d..3 24577.664592: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143952   kworker/u17:2-23076 (23076) [001] d..2 24577.664610: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
143953     kworker/1:1-13091 (13091) [001] d..2 24577.664616: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
143954  kworker/u16:10-23868 (23868) [003] .... 24577.664620: clk_set_rate: l3_cluster1_vote_clk 1401600000
143955  kworker/u16:10-23868 (23868) [003] .... 24577.664625: clk_set_rate: l3_clk 1401600000
143956     kworker/1:1-13091 (13091) [001] d..3 24577.664626: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
143957          <idle>-0     (-----) [002] .n.1 24577.664631: cpu_idle: state=4294967295 cpu_id=2
143958          <idle>-0     (-----) [002] d..2 24577.664640: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
143959     kworker/1:1-13091 (13091) [001] d..2 24577.664642: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143960          <idle>-0     (-----) [001] d..1 24577.664648: cpu_idle: state=0 cpu_id=1
143961            adbd-23485 ( 1007) [002] d..2 24577.664700: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
143962  kworker/u16:10-23868 (23868) [003] .... 24577.664723: clk_set_rate: l3_cluster0_vote_clk 652800000
143963          <idle>-0     (-----) [002] d..1 24577.664724: cpu_idle: state=0 cpu_id=2
143964          <idle>-0     (-----) [001] d.h3 24577.664729: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143965          <idle>-0     (-----) [001] dnh4 24577.664735: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143966  kworker/u16:10-23868 (23868) [003] d..2 24577.664741: 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
143967          <idle>-0     (-----) [001] .n.1 24577.664741: cpu_idle: state=4294967295 cpu_id=1
143968          <idle>-0     (-----) [001] d..2 24577.664747: 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
143969          <idle>-0     (-----) [003] d..1 24577.664749: cpu_idle: state=0 cpu_id=3
143970   kworker/u17:2-23076 (23076) [001] d..2 24577.664754: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143971   kworker/u17:2-23076 (23076) [001] d..3 24577.664760: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143972   kworker/u17:2-23076 (23076) [001] d..2 24577.664777: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
143973     kworker/1:1-13091 (13091) [001] d..2 24577.664783: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
143974     kworker/1:1-13091 (13091) [001] d..3 24577.664792: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
143975          <idle>-0     (-----) [002] .n.1 24577.664797: cpu_idle: state=4294967295 cpu_id=2
143976          <idle>-0     (-----) [002] d..2 24577.664805: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
143977     kworker/1:1-13091 (13091) [001] d..2 24577.664808: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143978          <idle>-0     (-----) [001] d..1 24577.664814: cpu_idle: state=0 cpu_id=1
143979            adbd-23485 ( 1007) [002] d..2 24577.664828: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
143980          <idle>-0     (-----) [002] d..1 24577.664835: cpu_idle: state=0 cpu_id=2
143981          <idle>-0     (-----) [001] d.h3 24577.664910: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143982          <idle>-0     (-----) [001] dnh4 24577.664916: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
143983          <idle>-0     (-----) [001] .n.1 24577.664921: cpu_idle: state=4294967295 cpu_id=1
143984          <idle>-0     (-----) [001] d..2 24577.664926: 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
143985   kworker/u17:2-23076 (23076) [001] d..2 24577.664933: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143986   kworker/u17:2-23076 (23076) [001] d..3 24577.664938: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
143987   kworker/u17:2-23076 (23076) [001] d..2 24577.664956: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
143988     kworker/1:1-13091 (13091) [001] d..2 24577.664963: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
143989     kworker/1:1-13091 (13091) [001] d..3 24577.664986: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
143990     kworker/1:1-13091 (13091) [001] d..2 24577.664996: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
143991            adbd-23484 ( 1007) [001] d..2 24577.665009: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
143992            adbd-23484 ( 1007) [001] d..3 24577.665020: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
143993              ps-13422 (13422) [006] d..2 24577.665033: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143994              ps-13422 (13422) [006] dn.3 24577.665037: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143995              ps-13422 (13422) [006] d..2 24577.665040: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
143996 shell svc 13418-13419 ( 1007) [006] d..2 24577.665050: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
143997              ps-13422 (13422) [006] d..2 24577.665055: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143998              ps-13422 (13422) [006] dn.3 24577.665057: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
143999              ps-13422 (13422) [006] d..2 24577.665059: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144000 shell svc 13418-13419 ( 1007) [006] d..2 24577.665066: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144001            adbd-23484 ( 1007) [001] d..2 24577.665068: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
144002              ps-13422 (13422) [006] d..2 24577.665070: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144003              ps-13422 (13422) [006] dn.3 24577.665072: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144004              ps-13422 (13422) [006] d..2 24577.665074: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144005 shell svc 13418-13419 ( 1007) [006] d..2 24577.665080: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144006              ps-13422 (13422) [006] d..2 24577.665083: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144007              ps-13422 (13422) [006] dn.3 24577.665086: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144008              ps-13422 (13422) [006] d..2 24577.665088: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144009 shell svc 13418-13419 ( 1007) [006] d..2 24577.665093: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144010              ps-13422 (13422) [006] d..2 24577.665097: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144011              ps-13422 (13422) [006] dn.3 24577.665099: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144012              ps-13422 (13422) [006] d..2 24577.665101: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144013 shell svc 13418-13419 ( 1007) [006] d..2 24577.665107: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144014              ps-13422 (13422) [006] d..2 24577.665111: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144015              ps-13422 (13422) [006] dn.3 24577.665113: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144016              ps-13422 (13422) [006] d..2 24577.665115: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144017 shell svc 13418-13419 ( 1007) [006] d..2 24577.665121: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144018              ps-13422 (13422) [006] d..2 24577.665124: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144019              ps-13422 (13422) [006] dn.3 24577.665126: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144020              ps-13422 (13422) [006] d..2 24577.665128: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144021 shell svc 13418-13419 ( 1007) [006] d..2 24577.665134: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144022              ps-13422 (13422) [006] d..2 24577.665138: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144023              ps-13422 (13422) [006] dn.3 24577.665140: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144024              ps-13422 (13422) [006] d..2 24577.665142: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144025            adbd-1007  ( 1007) [001] d..1 24577.665145: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
144026 shell svc 13418-13419 ( 1007) [006] d..2 24577.665148: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144027              ps-13422 (13422) [006] d..2 24577.665152: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144028              ps-13422 (13422) [006] dn.3 24577.665153: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144029              ps-13422 (13422) [006] d..2 24577.665155: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144030            adbd-1007  ( 1007) [001] d..2 24577.665157: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
144031 shell svc 13418-13419 ( 1007) [006] d..2 24577.665161: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144032          <idle>-0     (-----) [002] .n.1 24577.665161: cpu_idle: state=4294967295 cpu_id=2
144033              ps-13422 (13422) [006] d..2 24577.665165: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144034              ps-13422 (13422) [006] dn.3 24577.665167: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144035          <idle>-0     (-----) [002] d..2 24577.665168: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
144036              ps-13422 (13422) [006] d..2 24577.665168: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144037 shell svc 13418-13419 ( 1007) [006] d..2 24577.665174: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144038              ps-13422 (13422) [006] d..2 24577.665178: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144039              ps-13422 (13422) [006] dn.3 24577.665180: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144040              ps-13422 (13422) [006] d..2 24577.665182: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144041 shell svc 13418-13419 ( 1007) [006] d..2 24577.665188: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144042              ps-13422 (13422) [006] d..2 24577.665192: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144043              ps-13422 (13422) [006] dn.3 24577.665194: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144044              ps-13422 (13422) [006] d..2 24577.665196: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144045            adbd-1007  ( 1007) [001] d..2 24577.665196: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144046 shell svc 13418-13419 ( 1007) [006] d..2 24577.665201: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144047          <idle>-0     (-----) [001] d..1 24577.665203: cpu_idle: state=0 cpu_id=1
144048              ps-13422 (13422) [006] d..2 24577.665205: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144049              ps-13422 (13422) [006] dn.3 24577.665207: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144050              ps-13422 (13422) [006] d..2 24577.665209: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144051 shell svc 13418-13419 ( 1007) [006] d..2 24577.665215: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144052              ps-13422 (13422) [006] d..2 24577.665218: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144053            adbd-23485 ( 1007) [002] d..2 24577.665219: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
144054              ps-13422 (13422) [006] dn.3 24577.665220: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144055              ps-13422 (13422) [006] d..2 24577.665223: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144056          <idle>-0     (-----) [002] d..1 24577.665226: cpu_idle: state=0 cpu_id=2
144057 shell svc 13418-13419 ( 1007) [006] d..2 24577.665229: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144058              ps-13422 (13422) [006] d..2 24577.665232: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144059              ps-13422 (13422) [006] dn.3 24577.665235: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144060              ps-13422 (13422) [006] d..2 24577.665236: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144061          <idle>-0     (-----) [001] d.h3 24577.665241: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144062 shell svc 13418-13419 ( 1007) [006] d..2 24577.665242: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144063              ps-13422 (13422) [006] d..2 24577.665245: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144064          <idle>-0     (-----) [001] dnh4 24577.665247: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144065              ps-13422 (13422) [006] dn.3 24577.665248: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144066              ps-13422 (13422) [006] d..2 24577.665250: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144067          <idle>-0     (-----) [001] .n.1 24577.665253: cpu_idle: state=4294967295 cpu_id=1
144068 shell svc 13418-13419 ( 1007) [006] d..2 24577.665255: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144069          <idle>-0     (-----) [001] d..2 24577.665259: 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
144070              ps-13422 (13422) [006] d..2 24577.665259: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144071              ps-13422 (13422) [006] dn.3 24577.665261: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144072              ps-13422 (13422) [006] d..2 24577.665263: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144073   kworker/u17:2-23076 (23076) [001] d..2 24577.665267: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144074 shell svc 13418-13419 ( 1007) [006] d..2 24577.665269: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144075              ps-13422 (13422) [006] d..2 24577.665273: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144076   kworker/u17:2-23076 (23076) [001] d..3 24577.665274: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144077              ps-13422 (13422) [006] dn.3 24577.665275: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144078              ps-13422 (13422) [006] d..2 24577.665277: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144079 shell svc 13418-13419 ( 1007) [006] d..2 24577.665283: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144080              ps-13422 (13422) [006] d..2 24577.665287: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144081              ps-13422 (13422) [006] dn.3 24577.665289: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144082              ps-13422 (13422) [006] d..2 24577.665291: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144083   kworker/u17:2-23076 (23076) [001] d..2 24577.665291: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
144084 shell svc 13418-13419 ( 1007) [006] d..2 24577.665297: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144085     kworker/1:1-13091 (13091) [001] d..2 24577.665298: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
144086              ps-13422 (13422) [006] d..2 24577.665301: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144087              ps-13422 (13422) [006] dn.3 24577.665303: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144088              ps-13422 (13422) [006] d..2 24577.665305: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144089     kworker/1:1-13091 (13091) [001] d..3 24577.665308: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
144090 shell svc 13418-13419 ( 1007) [006] d..2 24577.665311: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144091          <idle>-0     (-----) [002] .n.1 24577.665313: cpu_idle: state=4294967295 cpu_id=2
144092              ps-13422 (13422) [006] d..2 24577.665314: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144093              ps-13422 (13422) [006] dn.3 24577.665317: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144094              ps-13422 (13422) [006] d..2 24577.665318: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144095          <idle>-0     (-----) [002] d..2 24577.665320: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
144096     kworker/1:1-13091 (13091) [001] d..2 24577.665323: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144097 shell svc 13418-13419 ( 1007) [006] d..2 24577.665324: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144098              ps-13422 (13422) [006] d..2 24577.665328: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144099          <idle>-0     (-----) [001] d..1 24577.665329: cpu_idle: state=0 cpu_id=1
144100              ps-13422 (13422) [006] dn.3 24577.665330: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144101              ps-13422 (13422) [006] d..2 24577.665332: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144102 shell svc 13418-13419 ( 1007) [006] d..2 24577.665337: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144103              ps-13422 (13422) [006] d..2 24577.665341: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144104              ps-13422 (13422) [006] dn.3 24577.665343: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144105              ps-13422 (13422) [006] d..2 24577.665345: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144106 shell svc 13418-13419 ( 1007) [006] d..2 24577.665351: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144107              ps-13422 (13422) [006] d..2 24577.665355: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144108              ps-13422 (13422) [006] dn.3 24577.665357: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144109              ps-13422 (13422) [006] d..2 24577.665359: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144110 shell svc 13418-13419 ( 1007) [006] d..2 24577.665365: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144111              ps-13422 (13422) [006] d..2 24577.665368: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144112              ps-13422 (13422) [006] dn.3 24577.665371: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144113            adbd-23485 ( 1007) [002] d..2 24577.665371: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
144114              ps-13422 (13422) [006] d..2 24577.665372: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144115 shell svc 13418-13419 ( 1007) [006] d..2 24577.665378: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144116          <idle>-0     (-----) [002] d..1 24577.665379: cpu_idle: state=0 cpu_id=2
144117              ps-13422 (13422) [006] d..2 24577.665382: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144118              ps-13422 (13422) [006] dn.3 24577.665384: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144119              ps-13422 (13422) [006] d..2 24577.665386: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144120          <idle>-0     (-----) [001] d.h3 24577.665387: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144121 shell svc 13418-13419 ( 1007) [006] d..2 24577.665391: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144122          <idle>-0     (-----) [001] dnh4 24577.665394: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144123              ps-13422 (13422) [006] d..2 24577.665395: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144124              ps-13422 (13422) [006] dn.3 24577.665397: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144125          <idle>-0     (-----) [001] .n.1 24577.665399: cpu_idle: state=4294967295 cpu_id=1
144126              ps-13422 (13422) [006] d..2 24577.665399: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144127          <idle>-0     (-----) [001] d..2 24577.665404: 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
144128 shell svc 13418-13419 ( 1007) [006] d..2 24577.665405: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144129              ps-13422 (13422) [006] d..2 24577.665409: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144130              ps-13422 (13422) [006] dn.3 24577.665411: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144131   kworker/u17:2-23076 (23076) [001] d..2 24577.665412: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144132              ps-13422 (13422) [006] d..2 24577.665413: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144133   kworker/u17:2-23076 (23076) [001] d..3 24577.665417: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144134 shell svc 13418-13419 ( 1007) [006] d..2 24577.665418: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144135              ps-13422 (13422) [006] d..2 24577.665422: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144136              ps-13422 (13422) [006] dn.3 24577.665424: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144137              ps-13422 (13422) [006] d..2 24577.665426: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144138 shell svc 13418-13419 ( 1007) [006] d..2 24577.665431: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144139   kworker/u17:2-23076 (23076) [001] d..2 24577.665434: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
144140              ps-13422 (13422) [006] d..2 24577.665435: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144141              ps-13422 (13422) [006] dn.3 24577.665437: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144142              ps-13422 (13422) [006] d..2 24577.665439: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144143     kworker/1:1-13091 (13091) [001] d..2 24577.665440: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
144144 shell svc 13418-13419 ( 1007) [006] d..2 24577.665445: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144145              ps-13422 (13422) [006] d..2 24577.665449: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144146     kworker/1:1-13091 (13091) [001] d..3 24577.665450: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
144147              ps-13422 (13422) [006] dn.3 24577.665451: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144148              ps-13422 (13422) [006] d..2 24577.665453: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144149          <idle>-0     (-----) [002] .n.1 24577.665455: cpu_idle: state=4294967295 cpu_id=2
144150 shell svc 13418-13419 ( 1007) [006] d..2 24577.665459: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144151              ps-13422 (13422) [006] d..2 24577.665462: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144152          <idle>-0     (-----) [002] d..2 24577.665462: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
144153              ps-13422 (13422) [006] dn.3 24577.665465: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144154     kworker/1:1-13091 (13091) [001] d..2 24577.665466: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144155              ps-13422 (13422) [006] d..2 24577.665467: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144156          <idle>-0     (-----) [001] d..1 24577.665471: cpu_idle: state=0 cpu_id=1
144157 shell svc 13418-13419 ( 1007) [006] d..2 24577.665473: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144158              ps-13422 (13422) [006] d..2 24577.665477: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144159              ps-13422 (13422) [006] dn.3 24577.665479: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144160              ps-13422 (13422) [006] d..2 24577.665481: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144161            adbd-23485 ( 1007) [002] d..2 24577.665482: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
144162 shell svc 13418-13419 ( 1007) [006] d..2 24577.665486: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144163          <idle>-0     (-----) [002] d..1 24577.665490: cpu_idle: state=0 cpu_id=2
144164              ps-13422 (13422) [006] d..2 24577.665490: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144165              ps-13422 (13422) [006] dn.3 24577.665492: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144166              ps-13422 (13422) [006] d..2 24577.665494: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144167 shell svc 13418-13419 ( 1007) [006] d..2 24577.665500: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144168              ps-13422 (13422) [006] d..2 24577.665504: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144169              ps-13422 (13422) [006] dn.3 24577.665507: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144170              ps-13422 (13422) [006] d..2 24577.665508: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144171 shell svc 13418-13419 ( 1007) [006] d..2 24577.665514: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144172              ps-13422 (13422) [006] d..2 24577.665518: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144173              ps-13422 (13422) [006] dn.3 24577.665520: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144174              ps-13422 (13422) [006] d..2 24577.665522: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144175 shell svc 13418-13419 ( 1007) [006] d..2 24577.665528: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144176              ps-13422 (13422) [006] d..2 24577.665531: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144177              ps-13422 (13422) [006] dn.3 24577.665534: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144178              ps-13422 (13422) [006] d..2 24577.665535: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144179 shell svc 13418-13419 ( 1007) [006] d..2 24577.665541: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144180              ps-13422 (13422) [006] d..2 24577.665545: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144181              ps-13422 (13422) [006] dn.3 24577.665547: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144182              ps-13422 (13422) [006] d..2 24577.665549: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144183 shell svc 13418-13419 ( 1007) [006] d..2 24577.665555: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144184              ps-13422 (13422) [006] d..2 24577.665558: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144185              ps-13422 (13422) [006] dn.3 24577.665560: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144186              ps-13422 (13422) [006] d..2 24577.665562: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144187          <idle>-0     (-----) [001] d.h3 24577.665567: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144188 shell svc 13418-13419 ( 1007) [006] d..2 24577.665568: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144189              ps-13422 (13422) [006] d..2 24577.665572: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144190          <idle>-0     (-----) [001] dnh4 24577.665573: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144191              ps-13422 (13422) [006] dn.3 24577.665574: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144192              ps-13422 (13422) [006] d..2 24577.665576: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144193          <idle>-0     (-----) [001] .n.1 24577.665578: cpu_idle: state=4294967295 cpu_id=1
144194 shell svc 13418-13419 ( 1007) [006] d..2 24577.665582: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144195          <idle>-0     (-----) [001] d..2 24577.665583: 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
144196              ps-13422 (13422) [006] d..2 24577.665585: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144197              ps-13422 (13422) [006] dn.3 24577.665587: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144198              ps-13422 (13422) [006] d..2 24577.665589: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144199   kworker/u17:2-23076 (23076) [001] d..2 24577.665590: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144200 shell svc 13418-13419 ( 1007) [006] d..2 24577.665595: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144201   kworker/u17:2-23076 (23076) [001] d..3 24577.665596: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144202              ps-13422 (13422) [006] d..2 24577.665599: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144203              ps-13422 (13422) [006] dn.3 24577.665601: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144204              ps-13422 (13422) [006] d..2 24577.665603: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144205 shell svc 13418-13419 ( 1007) [006] d..2 24577.665609: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144206              ps-13422 (13422) [006] d..2 24577.665612: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144207   kworker/u17:2-23076 (23076) [001] d..2 24577.665613: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
144208              ps-13422 (13422) [006] dn.3 24577.665615: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144209              ps-13422 (13422) [006] d..2 24577.665616: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144210     kworker/1:1-13091 (13091) [001] d..2 24577.665619: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
144211 shell svc 13418-13419 ( 1007) [006] d..2 24577.665622: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144212              ps-13422 (13422) [006] d..2 24577.665626: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144213              ps-13422 (13422) [006] dn.3 24577.665628: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144214              ps-13422 (13422) [006] d..2 24577.665630: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144215 shell svc 13418-13419 ( 1007) [006] d..2 24577.665636: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144216     kworker/1:1-13091 (13091) [001] d..3 24577.665638: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
144217              ps-13422 (13422) [006] d..2 24577.665640: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144218              ps-13422 (13422) [006] dn.3 24577.665642: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144219          <idle>-0     (-----) [000] .n.1 24577.665642: cpu_idle: state=4294967295 cpu_id=0
144220              ps-13422 (13422) [006] d..2 24577.665644: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144221 shell svc 13418-13419 ( 1007) [006] d..2 24577.665649: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144222          <idle>-0     (-----) [000] d..2 24577.665650: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
144223              ps-13422 (13422) [006] d..2 24577.665653: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144224     kworker/1:1-13091 (13091) [001] d..2 24577.665653: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144225              ps-13422 (13422) [006] dn.3 24577.665655: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144226              ps-13422 (13422) [006] d..2 24577.665657: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144227          <idle>-0     (-----) [001] d..1 24577.665659: cpu_idle: state=0 cpu_id=1
144228            adbd-23484 ( 1007) [000] d..2 24577.665661: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
144229 shell svc 13418-13419 ( 1007) [006] d..2 24577.665663: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144230              ps-13422 (13422) [006] d..2 24577.665667: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144231              ps-13422 (13422) [006] dn.3 24577.665669: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144232              ps-13422 (13422) [006] d..2 24577.665671: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144233            adbd-23484 ( 1007) [000] d..3 24577.665674: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
144234 shell svc 13418-13419 ( 1007) [006] d..2 24577.665677: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144235              ps-13422 (13422) [006] d..2 24577.665680: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144236              ps-13422 (13422) [006] dn.3 24577.665682: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144237              ps-13422 (13422) [006] d..2 24577.665684: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144238 shell svc 13418-13419 ( 1007) [006] d..2 24577.665690: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144239              ps-13422 (13422) [006] d..2 24577.665693: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144240              ps-13422 (13422) [006] dn.3 24577.665695: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144241              ps-13422 (13422) [006] d..2 24577.665697: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144242 shell svc 13418-13419 ( 1007) [006] d..2 24577.665703: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144243              ps-13422 (13422) [006] d..2 24577.665707: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144244              ps-13422 (13422) [006] dn.3 24577.665709: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144245              ps-13422 (13422) [006] d..2 24577.665711: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144246 shell svc 13418-13419 ( 1007) [006] d..2 24577.665717: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144247              ps-13422 (13422) [006] d..2 24577.665721: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144248            adbd-23484 ( 1007) [000] d..2 24577.665723: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
144249              ps-13422 (13422) [006] dn.3 24577.665723: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144250              ps-13422 (13422) [006] d..2 24577.665725: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144251 shell svc 13418-13419 ( 1007) [006] d..2 24577.665731: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144252            adbd-1007  ( 1007) [000] d..1 24577.665846: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
144253            adbd-1007  ( 1007) [000] d..2 24577.665858: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
144254          <idle>-0     (-----) [002] .n.1 24577.665863: cpu_idle: state=4294967295 cpu_id=2
144255          <idle>-0     (-----) [002] d..2 24577.665870: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
144256            adbd-1007  ( 1007) [000] d..2 24577.665899: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144257          <idle>-0     (-----) [000] d..1 24577.665909: cpu_idle: state=0 cpu_id=0
144258            adbd-23485 ( 1007) [002] d..2 24577.665920: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
144259          <idle>-0     (-----) [002] d..1 24577.665928: cpu_idle: state=0 cpu_id=2
144260          <idle>-0     (-----) [001] d.h3 24577.665928: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144261          <idle>-0     (-----) [001] dnh4 24577.665935: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144262          <idle>-0     (-----) [001] .n.1 24577.665940: cpu_idle: state=4294967295 cpu_id=1
144263          <idle>-0     (-----) [001] d..2 24577.665945: 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
144264   kworker/u17:2-23076 (23076) [001] d..2 24577.665953: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144265   kworker/u17:2-23076 (23076) [001] d..3 24577.665959: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144266   kworker/u17:2-23076 (23076) [001] d..2 24577.665976: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
144267     kworker/1:1-13091 (13091) [001] d..2 24577.665982: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
144268     kworker/1:1-13091 (13091) [001] d..3 24577.665992: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
144269          <idle>-0     (-----) [002] .n.1 24577.665997: cpu_idle: state=4294967295 cpu_id=2
144270          <idle>-0     (-----) [002] d..2 24577.666004: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
144271     kworker/1:1-13091 (13091) [001] d..2 24577.666007: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144272          <idle>-0     (-----) [001] d..1 24577.666012: cpu_idle: state=0 cpu_id=1
144273            adbd-23485 ( 1007) [002] d..2 24577.666055: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
144274          <idle>-0     (-----) [002] d..1 24577.666062: cpu_idle: state=0 cpu_id=2
144275          <idle>-0     (-----) [001] d.h3 24577.666108: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144276          <idle>-0     (-----) [001] dnh4 24577.666114: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144277          <idle>-0     (-----) [001] .n.1 24577.666119: cpu_idle: state=4294967295 cpu_id=1
144278          <idle>-0     (-----) [001] d..2 24577.666124: 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
144279   kworker/u17:2-23076 (23076) [001] d..2 24577.666131: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144280   kworker/u17:2-23076 (23076) [001] d..3 24577.666137: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144281   kworker/u17:2-23076 (23076) [001] d..2 24577.666154: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
144282     kworker/1:1-13091 (13091) [001] d..2 24577.666160: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
144283     kworker/1:1-13091 (13091) [001] d..3 24577.666170: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
144284          <idle>-0     (-----) [002] .n.1 24577.666175: cpu_idle: state=4294967295 cpu_id=2
144285          <idle>-0     (-----) [002] d..2 24577.666182: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
144286     kworker/1:1-13091 (13091) [001] d..2 24577.666185: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144287              ps-13422 (13422) [006] d..2 24577.666188: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144288          <idle>-0     (-----) [001] d..1 24577.666191: cpu_idle: state=0 cpu_id=1
144289              ps-13422 (13422) [006] dn.3 24577.666191: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144290              ps-13422 (13422) [006] d..2 24577.666194: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144291            adbd-23485 ( 1007) [002] d..2 24577.666201: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
144292 shell svc 13418-13419 ( 1007) [006] d..2 24577.666203: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144293              ps-13422 (13422) [006] d..2 24577.666208: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144294          <idle>-0     (-----) [002] d..1 24577.666208: cpu_idle: state=0 cpu_id=2
144295              ps-13422 (13422) [006] dn.3 24577.666210: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144296          <idle>-0     (-----) [003] d.h2 24577.666210: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
144297              ps-13422 (13422) [006] d..2 24577.666212: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144298 shell svc 13418-13419 ( 1007) [006] d..2 24577.666218: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144299          <idle>-0     (-----) [003] dnh3 24577.666221: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
144300              ps-13422 (13422) [006] d..2 24577.666222: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144301              ps-13422 (13422) [006] dn.3 24577.666224: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144302              ps-13422 (13422) [006] d..2 24577.666226: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144303          <idle>-0     (-----) [003] .n.1 24577.666226: cpu_idle: state=4294967295 cpu_id=3
144304 shell svc 13418-13419 ( 1007) [006] d..2 24577.666232: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144305          <idle>-0     (-----) [003] d..2 24577.666233: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
144306              ps-13422 (13422) [006] d..2 24577.666236: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144307              ps-13422 (13422) [006] dn.3 24577.666238: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144308              ps-13422 (13422) [006] d..2 24577.666240: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144309 shell svc 13418-13419 ( 1007) [006] d..2 24577.666246: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144310              ps-13422 (13422) [006] d..2 24577.666250: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144311        DispSync-23904 (23896) [003] d..1 24577.666251: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
144312              ps-13422 (13422) [006] dn.3 24577.666252: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144313              ps-13422 (13422) [006] d..2 24577.666254: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144314 shell svc 13418-13419 ( 1007) [006] d..2 24577.666260: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144315              ps-13422 (13422) [006] d..2 24577.666264: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144316              ps-13422 (13422) [006] dn.3 24577.666266: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144317        DispSync-23904 (23896) [003] d..2 24577.666268: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
144318              ps-13422 (13422) [006] d..2 24577.666268: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144319          <idle>-0     (-----) [002] .n.1 24577.666273: cpu_idle: state=4294967295 cpu_id=2
144320 shell svc 13418-13419 ( 1007) [006] d..2 24577.666274: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144321              ps-13422 (13422) [006] d..2 24577.666277: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144322          <idle>-0     (-----) [002] d..2 24577.666279: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
144323              ps-13422 (13422) [006] dn.3 24577.666280: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144324              ps-13422 (13422) [006] d..2 24577.666282: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144325 shell svc 13418-13419 ( 1007) [006] d..2 24577.666287: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144326        DispSync-23904 (23896) [003] d..2 24577.666290: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
144327              ps-13422 (13422) [006] d..2 24577.666291: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144328              ps-13422 (13422) [006] dn.3 24577.666294: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144329              ps-13422 (13422) [006] d..2 24577.666295: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144330          <idle>-0     (-----) [003] d..1 24577.666297: cpu_idle: state=0 cpu_id=3
144331 shell svc 13418-13419 ( 1007) [006] d..2 24577.666301: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144332              ps-13422 (13422) [006] d..2 24577.666305: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144333              ps-13422 (13422) [006] dn.3 24577.666307: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144334              ps-13422 (13422) [006] d..2 24577.666309: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144335 shell svc 13418-13419 ( 1007) [006] d..2 24577.666314: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144336              ps-13422 (13422) [006] d..2 24577.666318: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144337          <idle>-0     (-----) [001] d.h3 24577.666319: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144338              ps-13422 (13422) [006] dn.3 24577.666320: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144339              ps-13422 (13422) [006] d..2 24577.666322: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144340  appEventThread-23905 (23896) [002] d..3 24577.666322: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
144341          <idle>-0     (-----) [001] dnh4 24577.666325: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144342 shell svc 13418-13419 ( 1007) [006] d..2 24577.666327: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144343          <idle>-0     (-----) [001] .n.1 24577.666330: cpu_idle: state=4294967295 cpu_id=1
144344              ps-13422 (13422) [006] d..2 24577.666331: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144345              ps-13422 (13422) [006] dn.3 24577.666333: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144346          <idle>-0     (-----) [001] d..2 24577.666335: 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
144347              ps-13422 (13422) [006] d..2 24577.666335: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144348  appEventThread-23905 (23896) [002] d..4 24577.666338: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
144349 shell svc 13418-13419 ( 1007) [006] d..2 24577.666341: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144350   kworker/u17:2-23076 (23076) [001] d..2 24577.666342: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144351          <idle>-0     (-----) [000] .n.1 24577.666344: cpu_idle: state=4294967295 cpu_id=0
144352              ps-13422 (13422) [006] d..2 24577.666345: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144353              ps-13422 (13422) [006] dn.3 24577.666347: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144354   kworker/u17:2-23076 (23076) [001] d..3 24577.666347: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144355              ps-13422 (13422) [006] d..2 24577.666349: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144356          <idle>-0     (-----) [000] d..2 24577.666352: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
144357 shell svc 13418-13419 ( 1007) [006] d..2 24577.666355: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144358              ps-13422 (13422) [006] d..2 24577.666359: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144359              ps-13422 (13422) [006] dn.3 24577.666361: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144360              ps-13422 (13422) [006] d..2 24577.666363: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144361   kworker/u17:2-23076 (23076) [001] d..2 24577.666365: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
144362  appEventThread-23905 (23896) [002] d..2 24577.666367: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
144363 shell svc 13418-13419 ( 1007) [006] d..2 24577.666369: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144364     kworker/1:1-13091 (13091) [001] d..2 24577.666371: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
144365              ps-13422 (13422) [006] d..2 24577.666373: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144366              ps-13422 (13422) [006] dn.3 24577.666375: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144367          <idle>-0     (-----) [002] d..1 24577.666376: cpu_idle: state=0 cpu_id=2
144368              ps-13422 (13422) [006] d..2 24577.666377: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144369     kworker/1:1-13091 (13091) [001] d..3 24577.666383: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
144370 shell svc 13418-13419 ( 1007) [006] d..2 24577.666383: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144371              ps-13422 (13422) [006] d..2 24577.666386: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144372              ps-13422 (13422) [006] dn.3 24577.666388: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144373              ps-13422 (13422) [006] d..2 24577.666390: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144374 shell svc 13418-13419 ( 1007) [006] d..2 24577.666396: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144375              ps-13422 (13422) [006] d..2 24577.666400: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144376     kworker/1:1-13091 (13091) [001] d..2 24577.666400: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144377              ps-13422 (13422) [006] dn.3 24577.666402: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144378              ps-13422 (13422) [006] d..2 24577.666404: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144379          <idle>-0     (-----) [001] d..1 24577.666406: cpu_idle: state=0 cpu_id=1
144380 shell svc 13418-13419 ( 1007) [006] d..2 24577.666409: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144381              ps-13422 (13422) [006] d..2 24577.666413: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144382              ps-13422 (13422) [006] dn.3 24577.666415: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144383              ps-13422 (13422) [006] d..2 24577.666418: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144384 shell svc 13418-13419 ( 1007) [006] d..2 24577.666423: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144385              ps-13422 (13422) [006] d..2 24577.666427: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144386              ps-13422 (13422) [006] dn.3 24577.666429: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144387              ps-13422 (13422) [006] d..2 24577.666431: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144388 shell svc 13418-13419 ( 1007) [006] d..2 24577.666436: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144389              ps-13422 (13422) [006] d..2 24577.666440: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144390              ps-13422 (13422) [006] dn.3 24577.666442: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144391              ps-13422 (13422) [006] d..2 24577.666444: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144392 shell svc 13418-13419 ( 1007) [006] d..2 24577.666450: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144393              ps-13422 (13422) [006] d..2 24577.666454: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144394              ps-13422 (13422) [006] dn.3 24577.666456: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144395              ps-13422 (13422) [006] d..2 24577.666458: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144396 shell svc 13418-13419 ( 1007) [006] d..2 24577.666463: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144397 s.nexuslauncher-24827 (24827) [000] .... 24577.666634: binder_transaction: transaction=1671714 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
144398 s.nexuslauncher-24827 (24827) [000] d..4 24577.666643: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=002
144399 s.nexuslauncher-24827 (24827) [000] d..5 24577.666664: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
144400          <idle>-0     (-----) [001] .n.1 24577.666669: cpu_idle: state=4294967295 cpu_id=1
144401          <idle>-0     (-----) [001] d..2 24577.666675: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
144402  Binder:23896_4-24423 (23896) [001] .... 24577.666681: binder_transaction_received: transaction=1671714
144403 s.nexuslauncher-24827 (24827) [000] d..3 24577.666691: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
144404 s.nexuslauncher-24827 (24827) [000] d..4 24577.666705: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
144405  Binder:23896_4-24423 (23896) [001] d..1 24577.666709: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
144406          <idle>-0     (-----) [002] .n.1 24577.666711: cpu_idle: state=4294967295 cpu_id=2
144407          <idle>-0     (-----) [002] d..2 24577.666718: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
144408  Binder:23896_4-24423 (23896) [001] d..2 24577.666731: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
144409          <idle>-0     (-----) [003] .n.1 24577.666736: cpu_idle: state=4294967295 cpu_id=3
144410          <idle>-0     (-----) [003] d..2 24577.666743: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
144411              ps-13422 (13422) [006] d..2 24577.666743: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144412              ps-13422 (13422) [006] dn.3 24577.666746: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144413              ps-13422 (13422) [006] d..2 24577.666749: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144414    RenderThread-25194 (24827) [002] d..2 24577.666754: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
144415 shell svc 13418-13419 ( 1007) [006] d..2 24577.666757: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144416  Binder:23896_4-24423 (23896) [001] d..2 24577.666760: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144417              ps-13422 (13422) [006] d..2 24577.666762: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144418          <idle>-0     (-----) [002] d..1 24577.666762: cpu_idle: state=0 cpu_id=2
144419              ps-13422 (13422) [006] dn.3 24577.666764: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144420              ps-13422 (13422) [006] d..2 24577.666766: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144421          <idle>-0     (-----) [001] d..1 24577.666767: cpu_idle: state=0 cpu_id=1
144422 shell svc 13418-13419 ( 1007) [006] d..2 24577.666772: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144423              ps-13422 (13422) [006] d..2 24577.666776: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144424              ps-13422 (13422) [006] dn.3 24577.666778: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144425              ps-13422 (13422) [006] d..2 24577.666780: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144426  appEventThread-23905 (23896) [003] d..2 24577.666785: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
144427 shell svc 13418-13419 ( 1007) [006] d..2 24577.666786: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144428              ps-13422 (13422) [006] d..2 24577.666790: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144429              ps-13422 (13422) [006] dn.3 24577.666792: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144430              ps-13422 (13422) [006] d..2 24577.666794: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144431            adbd-23484 ( 1007) [003] d..2 24577.666799: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
144432 shell svc 13418-13419 ( 1007) [006] d..2 24577.666800: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144433              ps-13422 (13422) [006] d..2 24577.666804: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144434              ps-13422 (13422) [006] dn.3 24577.666806: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144435              ps-13422 (13422) [006] d..2 24577.666808: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144436            adbd-23484 ( 1007) [003] d..3 24577.666811: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
144437 shell svc 13418-13419 ( 1007) [006] d..2 24577.666813: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144438              ps-13422 (13422) [006] d..2 24577.666817: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144439              ps-13422 (13422) [006] dn.3 24577.666819: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144440              ps-13422 (13422) [006] d..2 24577.666821: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144441 shell svc 13418-13419 ( 1007) [006] d..2 24577.666826: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144442              ps-13422 (13422) [006] d..2 24577.666830: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144443              ps-13422 (13422) [006] dn.3 24577.666832: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144444              ps-13422 (13422) [006] d..2 24577.666834: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144445 shell svc 13418-13419 ( 1007) [006] d..2 24577.666840: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144446              ps-13422 (13422) [006] d..2 24577.666843: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144447              ps-13422 (13422) [006] dn.3 24577.666846: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144448              ps-13422 (13422) [006] d..2 24577.666848: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144449 shell svc 13418-13419 ( 1007) [006] d..2 24577.666853: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144450              ps-13422 (13422) [006] d..2 24577.666857: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144451              ps-13422 (13422) [006] dn.3 24577.666859: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144452            adbd-23484 ( 1007) [003] d..2 24577.666860: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
144453              ps-13422 (13422) [006] d..2 24577.666861: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144454 shell svc 13418-13419 ( 1007) [006] d..2 24577.666867: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144455              ps-13422 (13422) [006] d..2 24577.666871: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144456              ps-13422 (13422) [006] dn.3 24577.666873: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144457              ps-13422 (13422) [006] d..2 24577.666875: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144458 shell svc 13418-13419 ( 1007) [006] d..2 24577.666881: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144459              ps-13422 (13422) [006] d..2 24577.666885: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144460              ps-13422 (13422) [006] dn.3 24577.666887: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144461              ps-13422 (13422) [006] d..2 24577.666889: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144462 shell svc 13418-13419 ( 1007) [006] d..2 24577.666894: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144463              ps-13422 (13422) [006] d..2 24577.666898: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144464              ps-13422 (13422) [006] dn.3 24577.666900: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144465              ps-13422 (13422) [006] d..2 24577.666902: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144466 shell svc 13418-13419 ( 1007) [006] d..2 24577.666908: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144467            adbd-1007  ( 1007) [003] d..1 24577.666966: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
144468 s.nexuslauncher-24827 (24827) [000] d..3 24577.666985: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
144469            adbd-1007  ( 1007) [003] d..2 24577.666995: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
144470 s.nexuslauncher-24827 (24827) [000] d..4 24577.667001: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
144471          <idle>-0     (-----) [002] .n.1 24577.667007: cpu_idle: state=4294967295 cpu_id=2
144472          <idle>-0     (-----) [002] d..2 24577.667014: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
144473 s.nexuslauncher-24827 (24827) [000] d..2 24577.667016: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
144474            adbd-1007  ( 1007) [003] d..2 24577.667035: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
144475          <idle>-0     (-----) [003] d..1 24577.667045: cpu_idle: state=0 cpu_id=3
144476            adbd-23485 ( 1007) [000] d..2 24577.667076: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144477          <idle>-0     (-----) [000] d..1 24577.667087: cpu_idle: state=0 cpu_id=0
144478          <idle>-0     (-----) [001] d.h3 24577.667093: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144479          <idle>-0     (-----) [001] dnh4 24577.667104: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144480          <idle>-0     (-----) [001] .n.1 24577.667110: cpu_idle: state=4294967295 cpu_id=1
144481          <idle>-0     (-----) [001] d..2 24577.667116: 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
144482   kworker/u17:2-23076 (23076) [001] d..2 24577.667124: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144483   kworker/u17:2-23076 (23076) [001] d..3 24577.667130: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144484   kworker/u17:2-23076 (23076) [001] d..2 24577.667147: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
144485     kworker/1:1-13091 (13091) [001] d..2 24577.667154: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
144486     kworker/1:1-13091 (13091) [001] d..3 24577.667163: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
144487          <idle>-0     (-----) [000] .n.1 24577.667169: cpu_idle: state=4294967295 cpu_id=0
144488          <idle>-0     (-----) [000] d..2 24577.667177: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
144489     kworker/1:1-13091 (13091) [001] d..2 24577.667179: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144490          <idle>-0     (-----) [001] d..1 24577.667184: cpu_idle: state=0 cpu_id=1
144491    RenderThread-25194 (24827) [002] d..1 24577.667197: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
144492    RenderThread-25194 (24827) [002] d..2 24577.667217: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
144493          <idle>-0     (-----) [001] .n.1 24577.667222: cpu_idle: state=4294967295 cpu_id=1
144494          <idle>-0     (-----) [001] d..2 24577.667228: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
144495            adbd-23485 ( 1007) [000] d..2 24577.667230: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144496          <idle>-0     (-----) [000] d..1 24577.667238: cpu_idle: state=0 cpu_id=0
144497    RenderThread-25194 (24827) [002] .... 24577.667266: binder_transaction: transaction=1671715 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
144498    RenderThread-25194 (24827) [002] ...2 24577.667273: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
144499    RenderThread-25194 (24827) [002] d..4 24577.667276: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
144500 s.nexuslauncher-24827 (24827) [001] d.h2 24577.667284: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144501    RenderThread-25194 (24827) [002] d..5 24577.667289: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
144502 s.nexuslauncher-24827 (24827) [001] dnh3 24577.667298: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144503    RenderThread-25194 (24827) [002] d..2 24577.667300: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
144504  Binder:23896_4-24423 (23896) [002] .... 24577.667306: binder_transaction_received: transaction=1671715
144505 s.nexuslauncher-24827 (24827) [001] d..2 24577.667307: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
144506   kworker/u17:2-23076 (23076) [001] d..2 24577.667315: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144507   kworker/u17:2-23076 (23076) [001] d..3 24577.667321: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144508              ps-13422 (13422) [006] d..2 24577.667330: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144509              ps-13422 (13422) [006] dn.3 24577.667333: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144510              ps-13422 (13422) [006] d..2 24577.667336: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144511   kworker/u17:2-23076 (23076) [001] d..2 24577.667339: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
144512 shell svc 13418-13419 ( 1007) [006] d..2 24577.667344: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144513              ps-13422 (13422) [006] d..2 24577.667349: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144514              ps-13422 (13422) [006] dn.3 24577.667351: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144515              ps-13422 (13422) [006] d..2 24577.667353: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144516  Binder:23896_4-24423 (23896) [002] .... 24577.667357: binder_transaction: transaction=1671716 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
144517 shell svc 13418-13419 ( 1007) [006] d..2 24577.667359: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144518              ps-13422 (13422) [006] d..2 24577.667363: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144519              ps-13422 (13422) [006] dn.3 24577.667365: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144520  Binder:23896_4-24423 (23896) [002] d..2 24577.667365: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
144521              ps-13422 (13422) [006] d..2 24577.667368: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144522 shell svc 13418-13419 ( 1007) [006] d..2 24577.667374: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144523  Binder:23896_4-24423 (23896) [002] d..3 24577.667374: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
144524  Binder:23896_4-24423 (23896) [002] .... 24577.667376: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
144525              ps-13422 (13422) [006] d..2 24577.667377: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144526              ps-13422 (13422) [006] dn.3 24577.667379: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144527              ps-13422 (13422) [006] d..2 24577.667381: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144528 s.nexuslauncher-24827 (24827) [001] d..2 24577.667384: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
144529  Binder:23896_4-24423 (23896) [002] d..2 24577.667386: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
144530 shell svc 13418-13419 ( 1007) [006] d..2 24577.667387: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144531              ps-13422 (13422) [006] d..2 24577.667390: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144532    RenderThread-25194 (24827) [002] .... 24577.667391: binder_transaction_received: transaction=1671716
144533     kworker/1:1-13091 (13091) [001] d..2 24577.667392: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
144534              ps-13422 (13422) [006] dn.3 24577.667393: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144535              ps-13422 (13422) [006] d..2 24577.667395: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144536 shell svc 13418-13419 ( 1007) [006] d..2 24577.667401: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144537     kworker/1:1-13091 (13091) [001] d..3 24577.667402: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
144538              ps-13422 (13422) [006] d..2 24577.667404: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144539              ps-13422 (13422) [006] dn.3 24577.667407: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144540          <idle>-0     (-----) [000] .n.1 24577.667408: cpu_idle: state=4294967295 cpu_id=0
144541              ps-13422 (13422) [006] d..2 24577.667408: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144542 shell svc 13418-13419 ( 1007) [006] d..2 24577.667415: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144543          <idle>-0     (-----) [000] d..2 24577.667415: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
144544              ps-13422 (13422) [006] d..2 24577.667418: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144545     kworker/1:1-13091 (13091) [001] d..2 24577.667420: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144546              ps-13422 (13422) [006] dn.3 24577.667420: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144547              ps-13422 (13422) [006] d..2 24577.667422: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144548          <idle>-0     (-----) [001] d..1 24577.667427: cpu_idle: state=0 cpu_id=1
144549 shell svc 13418-13419 ( 1007) [006] d..2 24577.667428: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144550              ps-13422 (13422) [006] d..2 24577.667431: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144551              ps-13422 (13422) [006] dn.3 24577.667433: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144552              ps-13422 (13422) [006] d..2 24577.667435: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144553            adbd-23485 ( 1007) [000] d..2 24577.667438: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144554 shell svc 13418-13419 ( 1007) [006] d..2 24577.667441: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144555              ps-13422 (13422) [006] d..2 24577.667444: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144556          <idle>-0     (-----) [000] d..1 24577.667446: cpu_idle: state=0 cpu_id=0
144557              ps-13422 (13422) [006] dn.3 24577.667446: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144558              ps-13422 (13422) [006] d..2 24577.667448: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144559 shell svc 13418-13419 ( 1007) [006] d..2 24577.667454: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144560              ps-13422 (13422) [006] d..2 24577.667458: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144561              ps-13422 (13422) [006] dn.3 24577.667460: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144562              ps-13422 (13422) [006] d..2 24577.667462: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144563          <idle>-0     (-----) [001] d.h3 24577.667465: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144564 shell svc 13418-13419 ( 1007) [006] d..2 24577.667468: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144565          <idle>-0     (-----) [001] dnh4 24577.667472: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144566              ps-13422 (13422) [006] d..2 24577.667472: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144567              ps-13422 (13422) [006] dn.3 24577.667474: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144568              ps-13422 (13422) [006] d..2 24577.667476: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144569          <idle>-0     (-----) [001] .n.1 24577.667477: cpu_idle: state=4294967295 cpu_id=1
144570 shell svc 13418-13419 ( 1007) [006] d..2 24577.667482: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144571          <idle>-0     (-----) [001] d..2 24577.667483: 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
144572              ps-13422 (13422) [006] d..2 24577.667486: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144573              ps-13422 (13422) [006] dn.3 24577.667488: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144574   kworker/u17:2-23076 (23076) [001] d..2 24577.667490: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144575              ps-13422 (13422) [006] d..2 24577.667490: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144576 shell svc 13418-13419 ( 1007) [006] d..2 24577.667496: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144577   kworker/u17:2-23076 (23076) [001] d..3 24577.667496: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144578              ps-13422 (13422) [006] d..2 24577.667499: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144579              ps-13422 (13422) [006] dn.3 24577.667501: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144580              ps-13422 (13422) [006] d..2 24577.667503: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144581 shell svc 13418-13419 ( 1007) [006] d..2 24577.667509: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144582              ps-13422 (13422) [006] d..2 24577.667512: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144583   kworker/u17:2-23076 (23076) [001] d..2 24577.667513: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
144584              ps-13422 (13422) [006] dn.3 24577.667514: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144585              ps-13422 (13422) [006] d..2 24577.667516: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144586 shell svc 13418-13419 ( 1007) [006] d..2 24577.667522: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144587     kworker/1:1-13091 (13091) [001] d..2 24577.667522: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
144588              ps-13422 (13422) [006] d..2 24577.667526: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144589              ps-13422 (13422) [006] dn.3 24577.667528: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144590              ps-13422 (13422) [006] d..2 24577.667530: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144591 shell svc 13418-13419 ( 1007) [006] d..2 24577.667535: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144592              ps-13422 (13422) [006] d..2 24577.667539: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144593              ps-13422 (13422) [006] dn.3 24577.667541: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144594              ps-13422 (13422) [006] d..2 24577.667543: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144595     kworker/1:1-13091 (13091) [001] dn.3 24577.667547: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
144596 shell svc 13418-13419 ( 1007) [006] d..2 24577.667560: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144597              ps-13422 (13422) [006] d..2 24577.667564: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144598     kworker/1:1-13091 (13091) [001] dns2 24577.667565: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
144599              ps-13422 (13422) [006] dn.3 24577.667567: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144600              ps-13422 (13422) [006] d..2 24577.667569: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144601 shell svc 13418-13419 ( 1007) [006] d..2 24577.667575: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144602              ps-13422 (13422) [006] d..2 24577.667578: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144603              ps-13422 (13422) [006] dn.3 24577.667581: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144604              ps-13422 (13422) [006] d..2 24577.667582: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144605 shell svc 13418-13419 ( 1007) [006] d..2 24577.667588: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144606     kworker/1:1-13091 (13091) [001] dns3 24577.667590: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
144607              ps-13422 (13422) [006] d..2 24577.667592: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144608              ps-13422 (13422) [006] dn.3 24577.667594: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144609          <idle>-0     (-----) [000] .n.1 24577.667595: cpu_idle: state=4294967295 cpu_id=0
144610              ps-13422 (13422) [006] d..2 24577.667596: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144611     kworker/1:1-13091 (13091) [001] d..2 24577.667601: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=23484 next_prio=120
144612 shell svc 13418-13419 ( 1007) [006] d..2 24577.667602: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144613          <idle>-0     (-----) [000] d..2 24577.667603: 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
144614            adbd-23484 ( 1007) [001] d..2 24577.667616: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
144615     rcu_preempt-7     (    7) [000] d..2 24577.667627: 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
144616          <idle>-0     (-----) [000] d..1 24577.667634: cpu_idle: state=0 cpu_id=0
144617            adbd-23484 ( 1007) [001] d..3 24577.667641: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
144618          <idle>-0     (-----) [000] .n.1 24577.667646: cpu_idle: state=4294967295 cpu_id=0
144619          <idle>-0     (-----) [000] d..2 24577.667653: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
144620            adbd-23484 ( 1007) [001] d..2 24577.667691: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
144621     kworker/1:1-13091 (13091) [001] d..2 24577.667709: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144622          <idle>-0     (-----) [001] d..1 24577.667719: cpu_idle: state=0 cpu_id=1
144623            adbd-1007  ( 1007) [000] d..1 24577.667761: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
144624            adbd-1007  ( 1007) [000] d..2 24577.667775: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
144625            adbd-1007  ( 1007) [000] d..2 24577.667810: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
144626            adbd-23485 ( 1007) [000] d..2 24577.667867: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144627          <idle>-0     (-----) [000] d..1 24577.667877: cpu_idle: state=0 cpu_id=0
144628          <idle>-0     (-----) [001] d.h3 24577.667884: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144629          <idle>-0     (-----) [001] dnh4 24577.667891: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144630          <idle>-0     (-----) [001] .n.1 24577.667897: cpu_idle: state=4294967295 cpu_id=1
144631          <idle>-0     (-----) [001] d..2 24577.667904: 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
144632   kworker/u17:2-23076 (23076) [001] d..2 24577.667912: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144633   kworker/u17:2-23076 (23076) [001] d..3 24577.667918: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144634   kworker/u17:2-23076 (23076) [001] d..2 24577.667935: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
144635     kworker/1:1-13091 (13091) [001] d..2 24577.667942: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
144636     kworker/1:1-13091 (13091) [001] d..3 24577.667951: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
144637          <idle>-0     (-----) [000] .n.1 24577.667957: cpu_idle: state=4294967295 cpu_id=0
144638              ps-13422 (13422) [006] d..2 24577.667961: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144639              ps-13422 (13422) [006] dn.3 24577.667964: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144640          <idle>-0     (-----) [000] d..2 24577.667965: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
144641     kworker/1:1-13091 (13091) [001] d..2 24577.667967: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144642              ps-13422 (13422) [006] d..2 24577.667967: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144643          <idle>-0     (-----) [001] d..1 24577.667975: cpu_idle: state=0 cpu_id=1
144644 shell svc 13418-13419 ( 1007) [006] d..2 24577.667975: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144645              ps-13422 (13422) [006] d..2 24577.667980: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144646              ps-13422 (13422) [006] dn.3 24577.667983: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144647              ps-13422 (13422) [006] d..2 24577.667985: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144648 shell svc 13418-13419 ( 1007) [006] d..2 24577.667991: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144649              ps-13422 (13422) [006] d..2 24577.667995: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144650              ps-13422 (13422) [006] dn.3 24577.667998: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144651              ps-13422 (13422) [006] d..2 24577.668000: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144652 shell svc 13418-13419 ( 1007) [006] d..2 24577.668006: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144653              ps-13422 (13422) [006] d..2 24577.668009: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144654              ps-13422 (13422) [006] dn.3 24577.668012: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144655              ps-13422 (13422) [006] d..2 24577.668013: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144656            adbd-23485 ( 1007) [000] d..2 24577.668016: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144657 shell svc 13418-13419 ( 1007) [006] d..2 24577.668019: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144658              ps-13422 (13422) [006] d..2 24577.668023: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144659          <idle>-0     (-----) [000] d..1 24577.668024: cpu_idle: state=0 cpu_id=0
144660              ps-13422 (13422) [006] dn.3 24577.668025: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144661              ps-13422 (13422) [006] d..2 24577.668027: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144662 shell svc 13418-13419 ( 1007) [006] d..2 24577.668033: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144663              ps-13422 (13422) [006] d..2 24577.668036: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144664              ps-13422 (13422) [006] dn.3 24577.668038: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144665              ps-13422 (13422) [006] d..2 24577.668040: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144666          <idle>-0     (-----) [001] d.h3 24577.668045: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144667 shell svc 13418-13419 ( 1007) [006] d..2 24577.668046: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144668              ps-13422 (13422) [006] d..2 24577.668049: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144669          <idle>-0     (-----) [001] dnh4 24577.668051: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144670              ps-13422 (13422) [006] dn.3 24577.668051: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144671              ps-13422 (13422) [006] d..2 24577.668053: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144672          <idle>-0     (-----) [001] .n.1 24577.668057: cpu_idle: state=4294967295 cpu_id=1
144673 shell svc 13418-13419 ( 1007) [006] d..2 24577.668059: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144674              ps-13422 (13422) [006] d..2 24577.668063: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144675          <idle>-0     (-----) [001] d..2 24577.668064: 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
144676              ps-13422 (13422) [006] dn.3 24577.668065: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144677              ps-13422 (13422) [006] d..2 24577.668067: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144678   kworker/u17:2-23076 (23076) [001] d..2 24577.668071: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144679 shell svc 13418-13419 ( 1007) [006] d..2 24577.668073: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144680              ps-13422 (13422) [006] d..2 24577.668076: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144681   kworker/u17:2-23076 (23076) [001] d..3 24577.668077: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144682              ps-13422 (13422) [006] dn.3 24577.668078: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144683              ps-13422 (13422) [006] d..2 24577.668080: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144684 shell svc 13418-13419 ( 1007) [006] d..2 24577.668086: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144685              ps-13422 (13422) [006] d..2 24577.668089: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144686              ps-13422 (13422) [006] dn.3 24577.668092: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144687              ps-13422 (13422) [006] d..2 24577.668094: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144688   kworker/u17:2-23076 (23076) [001] d..2 24577.668095: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
144689 shell svc 13418-13419 ( 1007) [006] d..2 24577.668099: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144690     kworker/1:1-13091 (13091) [001] d..2 24577.668101: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
144691              ps-13422 (13422) [006] d..2 24577.668103: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144692              ps-13422 (13422) [006] dn.3 24577.668105: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144693              ps-13422 (13422) [006] d..2 24577.668107: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144694     kworker/1:1-13091 (13091) [001] d..3 24577.668110: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
144695 shell svc 13418-13419 ( 1007) [006] d..2 24577.668112: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144696          <idle>-0     (-----) [000] .n.1 24577.668115: cpu_idle: state=4294967295 cpu_id=0
144697              ps-13422 (13422) [006] d..2 24577.668116: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144698              ps-13422 (13422) [006] dn.3 24577.668118: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144699              ps-13422 (13422) [006] d..2 24577.668120: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144700          <idle>-0     (-----) [000] d..2 24577.668122: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
144701 shell svc 13418-13419 ( 1007) [006] d..2 24577.668126: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144702     kworker/1:1-13091 (13091) [001] d..2 24577.668126: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144703              ps-13422 (13422) [006] d..2 24577.668129: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144704              ps-13422 (13422) [006] dn.3 24577.668132: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144705              ps-13422 (13422) [006] d..2 24577.668133: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144706          <idle>-0     (-----) [001] d..1 24577.668134: cpu_idle: state=0 cpu_id=1
144707 shell svc 13418-13419 ( 1007) [006] d..2 24577.668139: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144708            adbd-23485 ( 1007) [000] d..2 24577.668142: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144709              ps-13422 (13422) [006] d..2 24577.668143: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144710              ps-13422 (13422) [006] dn.3 24577.668145: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144711              ps-13422 (13422) [006] d..2 24577.668147: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144712          <idle>-0     (-----) [000] d..1 24577.668148: cpu_idle: state=0 cpu_id=0
144713 shell svc 13418-13419 ( 1007) [006] d..2 24577.668152: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144714              ps-13422 (13422) [006] d..2 24577.668156: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144715              ps-13422 (13422) [006] dn.3 24577.668158: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144716              ps-13422 (13422) [006] d..2 24577.668160: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144717 shell svc 13418-13419 ( 1007) [006] d..2 24577.668165: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144718              ps-13422 (13422) [006] d..2 24577.668169: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144719              ps-13422 (13422) [006] dn.3 24577.668171: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144720              ps-13422 (13422) [006] d..2 24577.668173: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144721 shell svc 13418-13419 ( 1007) [006] d..2 24577.668179: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144722          <idle>-0     (-----) [001] d.h3 24577.668236: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144723          <idle>-0     (-----) [001] dnh4 24577.668242: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144724          <idle>-0     (-----) [001] .n.1 24577.668248: cpu_idle: state=4294967295 cpu_id=1
144725          <idle>-0     (-----) [001] d..2 24577.668254: 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
144726   kworker/u17:2-23076 (23076) [001] d..2 24577.668261: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144727   kworker/u17:2-23076 (23076) [001] d..3 24577.668266: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144728   kworker/u17:2-23076 (23076) [001] d..2 24577.668283: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
144729     kworker/1:1-13091 (13091) [001] d..2 24577.668289: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
144730     kworker/1:1-13091 (13091) [001] dn.3 24577.668299: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
144731     kworker/1:1-13091 (13091) [001] d..2 24577.668304: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=23484 next_prio=120
144732            adbd-23484 ( 1007) [001] d..2 24577.668316: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
144733            adbd-23484 ( 1007) [001] d..3 24577.668325: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
144734          <idle>-0     (-----) [000] .n.1 24577.668330: cpu_idle: state=4294967295 cpu_id=0
144735          <idle>-0     (-----) [000] d..2 24577.668337: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
144736            adbd-23484 ( 1007) [001] d..2 24577.668372: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
144737     kworker/1:1-13091 (13091) [001] d..2 24577.668389: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144738          <idle>-0     (-----) [001] d..1 24577.668398: cpu_idle: state=0 cpu_id=1
144739            adbd-1007  ( 1007) [000] d..1 24577.668420: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
144740            adbd-1007  ( 1007) [000] d..2 24577.668434: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
144741            adbd-1007  ( 1007) [000] d..2 24577.668466: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
144742            adbd-23485 ( 1007) [000] d..2 24577.668521: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144743          <idle>-0     (-----) [000] d..1 24577.668530: cpu_idle: state=0 cpu_id=0
144744          <idle>-0     (-----) [001] d.h3 24577.668533: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144745          <idle>-0     (-----) [001] dnh4 24577.668539: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144746          <idle>-0     (-----) [001] .n.1 24577.668545: cpu_idle: state=4294967295 cpu_id=1
144747          <idle>-0     (-----) [001] d..2 24577.668552: 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
144748   kworker/u17:2-23076 (23076) [001] d..2 24577.668560: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144749   kworker/u17:2-23076 (23076) [001] d..3 24577.668566: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144750   kworker/u17:2-23076 (23076) [001] d..2 24577.668583: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
144751     kworker/1:1-13091 (13091) [001] d..2 24577.668589: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
144752     kworker/1:1-13091 (13091) [001] d..3 24577.668599: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
144753          <idle>-0     (-----) [000] .n.1 24577.668604: cpu_idle: state=4294967295 cpu_id=0
144754          <idle>-0     (-----) [000] d..2 24577.668612: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
144755     kworker/1:1-13091 (13091) [001] d..2 24577.668614: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144756          <idle>-0     (-----) [001] d..1 24577.668622: cpu_idle: state=0 cpu_id=1
144757            adbd-23485 ( 1007) [000] d..2 24577.668662: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144758          <idle>-0     (-----) [000] d..1 24577.668669: cpu_idle: state=0 cpu_id=0
144759          <idle>-0     (-----) [001] d.h3 24577.668690: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144760          <idle>-0     (-----) [001] dnh4 24577.668696: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144761          <idle>-0     (-----) [001] .n.1 24577.668702: cpu_idle: state=4294967295 cpu_id=1
144762          <idle>-0     (-----) [001] d..2 24577.668708: 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
144763   kworker/u17:2-23076 (23076) [001] d..2 24577.668716: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144764   kworker/u17:2-23076 (23076) [001] d..3 24577.668722: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144765   kworker/u17:2-23076 (23076) [001] d..2 24577.668738: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
144766     kworker/1:1-13091 (13091) [001] d..2 24577.668744: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
144767     kworker/1:1-13091 (13091) [001] d..3 24577.668754: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
144768          <idle>-0     (-----) [000] .n.1 24577.668759: cpu_idle: state=4294967295 cpu_id=0
144769          <idle>-0     (-----) [000] d..2 24577.668766: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
144770     kworker/1:1-13091 (13091) [001] d..2 24577.668769: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144771          <idle>-0     (-----) [001] d..1 24577.668777: cpu_idle: state=0 cpu_id=1
144772            adbd-23485 ( 1007) [000] d..2 24577.668787: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144773          <idle>-0     (-----) [000] d..1 24577.668793: cpu_idle: state=0 cpu_id=0
144774          <idle>-0     (-----) [001] d.h3 24577.668900: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144775          <idle>-0     (-----) [001] dnh4 24577.668906: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144776          <idle>-0     (-----) [001] .n.1 24577.668911: cpu_idle: state=4294967295 cpu_id=1
144777          <idle>-0     (-----) [001] d..2 24577.668918: 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
144778   kworker/u17:2-23076 (23076) [001] d..2 24577.668924: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144779   kworker/u17:2-23076 (23076) [001] d..3 24577.668930: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144780   kworker/u17:2-23076 (23076) [001] d..2 24577.668947: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
144781     kworker/1:1-13091 (13091) [001] d..2 24577.668953: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
144782              ps-13422 (13422) [006] d..2 24577.668962: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144783     kworker/1:1-13091 (13091) [001] dn.3 24577.668963: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
144784              ps-13422 (13422) [006] dn.3 24577.668965: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144785     kworker/1:1-13091 (13091) [001] d..2 24577.668968: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=23484 next_prio=120
144786              ps-13422 (13422) [006] d..2 24577.668968: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144787 shell svc 13418-13419 ( 1007) [006] d..2 24577.668977: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144788            adbd-23484 ( 1007) [001] d..2 24577.668979: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
144789              ps-13422 (13422) [006] d..2 24577.668981: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144790              ps-13422 (13422) [006] dn.3 24577.668984: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144791              ps-13422 (13422) [006] d..2 24577.668986: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144792            adbd-23484 ( 1007) [001] d..3 24577.668989: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
144793 shell svc 13418-13419 ( 1007) [006] d..2 24577.668992: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144794          <idle>-0     (-----) [000] .n.1 24577.668994: cpu_idle: state=4294967295 cpu_id=0
144795              ps-13422 (13422) [006] d..2 24577.668996: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144796              ps-13422 (13422) [006] dn.3 24577.668998: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144797              ps-13422 (13422) [006] d..2 24577.669000: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144798          <idle>-0     (-----) [000] d..2 24577.669001: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
144799 shell svc 13418-13419 ( 1007) [006] d..2 24577.669006: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144800              ps-13422 (13422) [006] d..2 24577.669010: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144801              ps-13422 (13422) [006] dn.3 24577.669012: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144802              ps-13422 (13422) [006] d..2 24577.669014: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144803 shell svc 13418-13419 ( 1007) [006] d..2 24577.669020: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144804              ps-13422 (13422) [006] d..2 24577.669024: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144805              ps-13422 (13422) [006] dn.3 24577.669026: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144806              ps-13422 (13422) [006] d..2 24577.669028: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144807 shell svc 13418-13419 ( 1007) [006] d..2 24577.669033: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144808            adbd-23484 ( 1007) [001] d..2 24577.669036: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
144809              ps-13422 (13422) [006] d..2 24577.669037: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144810              ps-13422 (13422) [006] dn.3 24577.669039: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144811              ps-13422 (13422) [006] d..2 24577.669041: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144812 shell svc 13418-13419 ( 1007) [006] d..2 24577.669047: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144813              ps-13422 (13422) [006] d..2 24577.669051: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144814     kworker/1:1-13091 (13091) [001] d..2 24577.669052: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144815              ps-13422 (13422) [006] dn.3 24577.669053: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144816              ps-13422 (13422) [006] d..2 24577.669055: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144817 shell svc 13418-13419 ( 1007) [006] d..2 24577.669060: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144818          <idle>-0     (-----) [001] d..1 24577.669061: cpu_idle: state=0 cpu_id=1
144819              ps-13422 (13422) [006] d..2 24577.669064: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144820              ps-13422 (13422) [006] dn.3 24577.669067: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144821              ps-13422 (13422) [006] d..2 24577.669068: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144822            adbd-1007  ( 1007) [000] d..1 24577.669072: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
144823 shell svc 13418-13419 ( 1007) [006] d..2 24577.669075: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144824              ps-13422 (13422) [006] d..2 24577.669078: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144825              ps-13422 (13422) [006] dn.3 24577.669080: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144826              ps-13422 (13422) [006] d..2 24577.669082: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144827            adbd-1007  ( 1007) [000] d..2 24577.669086: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
144828 shell svc 13418-13419 ( 1007) [006] d..2 24577.669088: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144829              ps-13422 (13422) [006] d..2 24577.669091: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144830              ps-13422 (13422) [006] dn.3 24577.669093: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144831              ps-13422 (13422) [006] d..2 24577.669095: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144832 shell svc 13418-13419 ( 1007) [006] d..2 24577.669101: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144833              ps-13422 (13422) [006] d..2 24577.669105: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144834              ps-13422 (13422) [006] dn.3 24577.669107: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144835              ps-13422 (13422) [006] d..2 24577.669109: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144836 shell svc 13418-13419 ( 1007) [006] d..2 24577.669114: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144837              ps-13422 (13422) [006] d..2 24577.669118: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144838            adbd-1007  ( 1007) [000] d..2 24577.669118: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
144839              ps-13422 (13422) [006] dn.3 24577.669120: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144840              ps-13422 (13422) [006] d..2 24577.669122: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144841 shell svc 13418-13419 ( 1007) [006] d..2 24577.669128: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144842              ps-13422 (13422) [006] d..2 24577.669132: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144843              ps-13422 (13422) [006] dn.3 24577.669134: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144844              ps-13422 (13422) [006] d..2 24577.669136: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144845 shell svc 13418-13419 ( 1007) [006] d..2 24577.669141: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144846              ps-13422 (13422) [006] d..2 24577.669145: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144847              ps-13422 (13422) [006] dn.3 24577.669147: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144848              ps-13422 (13422) [006] d..2 24577.669149: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144849 shell svc 13418-13419 ( 1007) [006] d..2 24577.669154: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144850              ps-13422 (13422) [006] d..2 24577.669158: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144851              ps-13422 (13422) [006] dn.3 24577.669160: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144852              ps-13422 (13422) [006] d..2 24577.669162: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144853 shell svc 13418-13419 ( 1007) [006] d..2 24577.669168: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144854              ps-13422 (13422) [006] d..2 24577.669171: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144855            adbd-23485 ( 1007) [000] d..2 24577.669173: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144856              ps-13422 (13422) [006] dn.3 24577.669174: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144857              ps-13422 (13422) [006] d..2 24577.669176: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144858          <idle>-0     (-----) [001] d.h3 24577.669179: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144859    RenderThread-25194 (24827) [002] d..2 24577.669181: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
144860          <idle>-0     (-----) [000] d..1 24577.669181: cpu_idle: state=0 cpu_id=0
144861 shell svc 13418-13419 ( 1007) [006] d..2 24577.669181: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144862              ps-13422 (13422) [006] d..2 24577.669185: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144863              ps-13422 (13422) [006] dn.3 24577.669187: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144864              ps-13422 (13422) [006] d..2 24577.669189: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144865          <idle>-0     (-----) [001] dnh4 24577.669190: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144866 shell svc 13418-13419 ( 1007) [006] d..2 24577.669195: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144867          <idle>-0     (-----) [001] .n.1 24577.669196: cpu_idle: state=4294967295 cpu_id=1
144868              ps-13422 (13422) [006] d..2 24577.669198: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144869              ps-13422 (13422) [006] dn.3 24577.669200: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144870              ps-13422 (13422) [006] d..2 24577.669202: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144871          <idle>-0     (-----) [001] d..2 24577.669203: 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
144872 shell svc 13418-13419 ( 1007) [006] d..2 24577.669208: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144873   kworker/u17:2-23076 (23076) [001] d..2 24577.669210: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144874              ps-13422 (13422) [006] d..2 24577.669211: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144875              ps-13422 (13422) [006] dn.3 24577.669214: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144876              ps-13422 (13422) [006] d..2 24577.669216: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144877   kworker/u17:2-23076 (23076) [001] d..3 24577.669216: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
144878 shell svc 13418-13419 ( 1007) [006] d..2 24577.669221: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144879              ps-13422 (13422) [006] d..2 24577.669225: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144880              ps-13422 (13422) [006] dn.3 24577.669227: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144881              ps-13422 (13422) [006] d..2 24577.669229: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144882  Binder:23896_4-24423 (23896) [002] d..2 24577.669230: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
144883   kworker/u17:2-23076 (23076) [001] d..2 24577.669234: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
144884 shell svc 13418-13419 ( 1007) [006] d..2 24577.669235: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144885              ps-13422 (13422) [006] d..2 24577.669238: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144886          <idle>-0     (-----) [002] d..1 24577.669239: cpu_idle: state=0 cpu_id=2
144887     kworker/1:1-13091 (13091) [001] d..2 24577.669239: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
144888              ps-13422 (13422) [006] dn.3 24577.669240: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144889              ps-13422 (13422) [006] d..2 24577.669242: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144890 shell svc 13418-13419 ( 1007) [006] d..2 24577.669248: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144891              ps-13422 (13422) [006] d..2 24577.669251: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144892     kworker/1:1-13091 (13091) [001] d..3 24577.669253: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
144893              ps-13422 (13422) [006] dn.3 24577.669253: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144894              ps-13422 (13422) [006] d..2 24577.669256: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144895          <idle>-0     (-----) [000] .n.1 24577.669258: cpu_idle: state=4294967295 cpu_id=0
144896 shell svc 13418-13419 ( 1007) [006] d..2 24577.669262: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144897              ps-13422 (13422) [006] d..2 24577.669265: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144898          <idle>-0     (-----) [000] d..2 24577.669266: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
144899              ps-13422 (13422) [006] dn.3 24577.669267: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144900     kworker/1:1-13091 (13091) [001] d..2 24577.669269: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144901              ps-13422 (13422) [006] d..2 24577.669269: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144902 shell svc 13418-13419 ( 1007) [006] d..2 24577.669275: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144903          <idle>-0     (-----) [002] d.h2 24577.669277: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
144904          <idle>-0     (-----) [001] d..1 24577.669277: cpu_idle: state=0 cpu_id=1
144905              ps-13422 (13422) [006] d..2 24577.669279: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144906              ps-13422 (13422) [006] dn.3 24577.669282: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144907              ps-13422 (13422) [006] d..2 24577.669283: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144908 shell svc 13418-13419 ( 1007) [006] d..2 24577.669289: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144909          <idle>-0     (-----) [002] d.h3 24577.669291: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
144910              ps-13422 (13422) [006] d..2 24577.669293: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144911              ps-13422 (13422) [006] dn.3 24577.669295: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144912          <idle>-0     (-----) [002] d.h3 24577.669297: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
144913              ps-13422 (13422) [006] d..2 24577.669297: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144914          <idle>-0     (-----) [001] .n.1 24577.669302: cpu_idle: state=4294967295 cpu_id=1
144915 shell svc 13418-13419 ( 1007) [006] d..2 24577.669302: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144916          <idle>-0     (-----) [002] ...1 24577.669304: cpu_idle: state=4294967295 cpu_id=2
144917              ps-13422 (13422) [006] d..2 24577.669306: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144918              ps-13422 (13422) [006] dn.3 24577.669308: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144919          <idle>-0     (-----) [002] d..1 24577.669309: cpu_idle: state=0 cpu_id=2
144920          <idle>-0     (-----) [001] d..2 24577.669309: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
144921              ps-13422 (13422) [006] d..2 24577.669310: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144922 shell svc 13418-13419 ( 1007) [006] d..2 24577.669316: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144923            adbd-23485 ( 1007) [000] d..2 24577.669317: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144924              ps-13422 (13422) [006] d..2 24577.669319: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144925              ps-13422 (13422) [006] dn.3 24577.669321: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144926              ps-13422 (13422) [006] d..2 24577.669323: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144927          <idle>-0     (-----) [000] d..1 24577.669323: cpu_idle: state=0 cpu_id=0
144928 shell svc 13418-13419 ( 1007) [006] d..2 24577.669329: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144929              ps-13422 (13422) [006] d..2 24577.669333: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144930              ps-13422 (13422) [006] dn.3 24577.669335: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144931              ps-13422 (13422) [006] d..2 24577.669337: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144932 shell svc 13418-13419 ( 1007) [006] d..2 24577.669342: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144933    RenderThread-25194 (24827) [001] d.h2 24577.669345: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
144934              ps-13422 (13422) [006] d..2 24577.669346: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144935              ps-13422 (13422) [006] dn.3 24577.669348: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144936              ps-13422 (13422) [006] d..2 24577.669350: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144937 shell svc 13418-13419 ( 1007) [006] d..2 24577.669356: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144938              ps-13422 (13422) [006] d..2 24577.669359: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144939              ps-13422 (13422) [006] dn.3 24577.669361: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144940              ps-13422 (13422) [006] d..2 24577.669363: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144941    RenderThread-25194 (24827) [001] d.h3 24577.669364: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
144942          <idle>-0     (-----) [000] .n.1 24577.669368: cpu_idle: state=4294967295 cpu_id=0
144943 shell svc 13418-13419 ( 1007) [006] d..2 24577.669369: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144944              ps-13422 (13422) [006] d..2 24577.669373: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144945              ps-13422 (13422) [006] dn.3 24577.669375: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144946          <idle>-0     (-----) [000] d..2 24577.669376: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
144947              ps-13422 (13422) [006] d..2 24577.669377: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144948 shell svc 13418-13419 ( 1007) [006] d..2 24577.669382: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144949   kworker/u17:2-23076 (23076) [000] d..2 24577.669385: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
144950              ps-13422 (13422) [006] d..2 24577.669386: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144951              ps-13422 (13422) [006] dn.3 24577.669388: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144952              ps-13422 (13422) [006] d..2 24577.669390: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144953   kworker/u17:2-23076 (23076) [000] d..3 24577.669393: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
144954 shell svc 13418-13419 ( 1007) [006] d..2 24577.669395: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144955              ps-13422 (13422) [006] d..2 24577.669399: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144956              ps-13422 (13422) [006] dn.3 24577.669401: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144957              ps-13422 (13422) [006] d..2 24577.669403: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144958 shell svc 13418-13419 ( 1007) [006] d..2 24577.669409: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144959   kworker/u17:2-23076 (23076) [000] d..2 24577.669412: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
144960              ps-13422 (13422) [006] d..2 24577.669412: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144961              ps-13422 (13422) [006] dn.3 24577.669414: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144962              ps-13422 (13422) [006] d..2 24577.669416: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144963     kworker/0:1-13012 (13012) [000] d..2 24577.669417: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
144964 shell svc 13418-13419 ( 1007) [006] d..2 24577.669422: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144965              ps-13422 (13422) [006] d..2 24577.669426: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144966     kworker/0:1-13012 (13012) [000] d..3 24577.669428: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
144967              ps-13422 (13422) [006] dn.3 24577.669428: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144968              ps-13422 (13422) [006] d..2 24577.669430: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144969 shell svc 13418-13419 ( 1007) [006] d..2 24577.669435: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144970     kworker/0:1-13012 (13012) [000] d..2 24577.669437: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
144971              ps-13422 (13422) [006] d..2 24577.669439: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144972              ps-13422 (13422) [006] dn.3 24577.669441: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
144973              ps-13422 (13422) [006] d..2 24577.669443: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
144974 shell svc 13418-13419 ( 1007) [006] d..2 24577.669449: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
144975            adbd-23485 ( 1007) [000] d..2 24577.669456: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144976          <idle>-0     (-----) [000] d..1 24577.669463: cpu_idle: state=0 cpu_id=0
144977    RenderThread-25194 (24827) [001] d.h2 24577.669525: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
144978    RenderThread-25194 (24827) [001] d.h3 24577.669537: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
144979          <idle>-0     (-----) [000] .n.1 24577.669542: cpu_idle: state=4294967295 cpu_id=0
144980          <idle>-0     (-----) [000] d..2 24577.669549: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
144981   kworker/u17:2-23076 (23076) [000] d..2 24577.669557: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
144982   kworker/u17:2-23076 (23076) [000] d..3 24577.669563: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
144983    RenderThread-25194 (24827) [001] .... 24577.669567: binder_transaction: transaction=1671717 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
144984    RenderThread-25194 (24827) [001] ...2 24577.669576: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
144985    RenderThread-25194 (24827) [001] d..4 24577.669579: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
144986   kworker/u17:2-23076 (23076) [000] d..2 24577.669580: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
144987     kworker/0:1-13012 (13012) [000] d..2 24577.669587: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
144988    RenderThread-25194 (24827) [001] d..5 24577.669595: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
144989    RenderThread-25194 (24827) [001] d..2 24577.669605: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
144990  Binder:23896_4-24423 (23896) [001] .... 24577.669611: binder_transaction_received: transaction=1671717
144991     kworker/0:1-13012 (13012) [000] d..3 24577.669616: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
144992     kworker/0:1-13012 (13012) [000] d..2 24577.669626: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
144993            adbd-23484 ( 1007) [000] d..2 24577.669638: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
144994            adbd-23484 ( 1007) [000] d..3 24577.669645: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
144995            adbd-23484 ( 1007) [000] d..2 24577.669690: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
144996  Binder:23896_4-24423 (23896) [001] .... 24577.669723: binder_transaction: transaction=1671718 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
144997  Binder:23896_4-24423 (23896) [001] d..2 24577.669728: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
144998  Binder:23896_4-24423 (23896) [001] d..3 24577.669738: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
144999  Binder:23896_4-24423 (23896) [001] .... 24577.669740: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
145000  Binder:23896_4-24423 (23896) [001] d..2 24577.669771: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
145001    RenderThread-25194 (24827) [001] .... 24577.669775: binder_transaction_received: transaction=1671718
145002            adbd-1007  ( 1007) [000] d..1 24577.669793: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
145003            adbd-1007  ( 1007) [000] d..2 24577.669822: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
145004          <idle>-0     (-----) [002] .n.1 24577.669827: cpu_idle: state=4294967295 cpu_id=2
145005          <idle>-0     (-----) [002] d..2 24577.669835: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
145006    RenderThread-25194 (24827) [001] d..2 24577.669843: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145007          <idle>-0     (-----) [001] d..1 24577.669854: cpu_idle: state=0 cpu_id=1
145008            adbd-1007  ( 1007) [000] d..2 24577.669863: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145009          <idle>-0     (-----) [000] d..1 24577.669872: cpu_idle: state=0 cpu_id=0
145010            adbd-23485 ( 1007) [002] d..2 24577.669896: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145011          <idle>-0     (-----) [002] d..1 24577.669905: cpu_idle: state=0 cpu_id=2
145012          <idle>-0     (-----) [001] d.h3 24577.669906: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145013          <idle>-0     (-----) [001] d.h4 24577.669917: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145014          <idle>-0     (-----) [000] .n.1 24577.669923: cpu_idle: state=4294967295 cpu_id=0
145015          <idle>-0     (-----) [001] ...1 24577.669925: cpu_idle: state=4294967295 cpu_id=1
145016          <idle>-0     (-----) [001] d..1 24577.669928: cpu_idle: state=0 cpu_id=1
145017          <idle>-0     (-----) [000] d..2 24577.669931: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
145018   kworker/u17:2-23076 (23076) [000] d..2 24577.669941: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
145019   kworker/u17:2-23076 (23076) [000] d..3 24577.669948: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
145020   kworker/u17:2-23076 (23076) [000] d..2 24577.669966: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
145021     kworker/0:1-13012 (13012) [000] d..2 24577.669973: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
145022     kworker/0:1-13012 (13012) [000] d..3 24577.669983: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
145023          <idle>-0     (-----) [002] .n.1 24577.669988: cpu_idle: state=4294967295 cpu_id=2
145024          <idle>-0     (-----) [002] d..2 24577.669996: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
145025              ps-13422 (13422) [006] d..2 24577.669998: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145026     kworker/0:1-13012 (13012) [000] d..2 24577.670000: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145027              ps-13422 (13422) [006] dn.3 24577.670002: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145028              ps-13422 (13422) [006] d..2 24577.670004: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145029          <idle>-0     (-----) [000] d..1 24577.670007: cpu_idle: state=0 cpu_id=0
145030 shell svc 13418-13419 ( 1007) [006] d..2 24577.670013: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145031              ps-13422 (13422) [006] d..2 24577.670017: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145032              ps-13422 (13422) [006] dn.3 24577.670020: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145033              ps-13422 (13422) [006] d..2 24577.670022: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145034 shell svc 13418-13419 ( 1007) [006] d..2 24577.670028: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145035              ps-13422 (13422) [006] d..2 24577.670032: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145036              ps-13422 (13422) [006] dn.3 24577.670034: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145037              ps-13422 (13422) [006] d..2 24577.670036: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145038 shell svc 13418-13419 ( 1007) [006] d..2 24577.670041: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145039              ps-13422 (13422) [006] d..2 24577.670045: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145040            adbd-23485 ( 1007) [002] d..2 24577.670047: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145041              ps-13422 (13422) [006] dn.3 24577.670048: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145042              ps-13422 (13422) [006] d..2 24577.670051: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145043          <idle>-0     (-----) [002] d..1 24577.670055: cpu_idle: state=0 cpu_id=2
145044 shell svc 13418-13419 ( 1007) [006] d..2 24577.670056: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145045              ps-13422 (13422) [006] d..2 24577.670061: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145046              ps-13422 (13422) [006] dn.3 24577.670063: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145047              ps-13422 (13422) [006] d..2 24577.670065: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145048 shell svc 13418-13419 ( 1007) [006] d..2 24577.670070: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145049              ps-13422 (13422) [006] d..2 24577.670075: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145050              ps-13422 (13422) [006] dn.3 24577.670077: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145051              ps-13422 (13422) [006] d..2 24577.670079: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145052 shell svc 13418-13419 ( 1007) [006] d..2 24577.670085: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145053              ps-13422 (13422) [006] d..2 24577.670088: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145054              ps-13422 (13422) [006] dn.3 24577.670090: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145055              ps-13422 (13422) [006] d..2 24577.670092: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145056          <idle>-0     (-----) [001] d.h3 24577.670095: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145057 shell svc 13418-13419 ( 1007) [006] d..2 24577.670098: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145058              ps-13422 (13422) [006] d..2 24577.670102: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145059              ps-13422 (13422) [006] dn.3 24577.670104: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145060          <idle>-0     (-----) [001] d.h4 24577.670104: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145061              ps-13422 (13422) [006] d..2 24577.670106: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145062          <idle>-0     (-----) [000] .n.1 24577.670110: cpu_idle: state=4294967295 cpu_id=0
145063          <idle>-0     (-----) [001] ...1 24577.670111: cpu_idle: state=4294967295 cpu_id=1
145064 shell svc 13418-13419 ( 1007) [006] d..2 24577.670112: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145065          <idle>-0     (-----) [001] d..1 24577.670115: cpu_idle: state=0 cpu_id=1
145066              ps-13422 (13422) [006] d..2 24577.670115: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145067          <idle>-0     (-----) [000] d..2 24577.670117: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
145068              ps-13422 (13422) [006] dn.3 24577.670117: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145069              ps-13422 (13422) [006] d..2 24577.670119: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145070   kworker/u17:2-23076 (23076) [000] d..2 24577.670125: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
145071 shell svc 13418-13419 ( 1007) [006] d..2 24577.670125: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145072              ps-13422 (13422) [006] d..2 24577.670128: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145073              ps-13422 (13422) [006] dn.3 24577.670131: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145074   kworker/u17:2-23076 (23076) [000] d..3 24577.670131: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
145075              ps-13422 (13422) [006] d..2 24577.670133: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145076 shell svc 13418-13419 ( 1007) [006] d..2 24577.670138: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145077              ps-13422 (13422) [006] d..2 24577.670143: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145078              ps-13422 (13422) [006] dn.3 24577.670145: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145079              ps-13422 (13422) [006] d..2 24577.670147: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145080   kworker/u17:2-23076 (23076) [000] d..2 24577.670149: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
145081 shell svc 13418-13419 ( 1007) [006] d..2 24577.670153: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145082     kworker/0:1-13012 (13012) [000] d..2 24577.670154: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
145083              ps-13422 (13422) [006] d..2 24577.670157: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145084              ps-13422 (13422) [006] dn.3 24577.670159: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145085              ps-13422 (13422) [006] d..2 24577.670161: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145086     kworker/0:1-13012 (13012) [000] d..3 24577.670164: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
145087 shell svc 13418-13419 ( 1007) [006] d..2 24577.670166: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145088          <idle>-0     (-----) [002] .n.1 24577.670170: cpu_idle: state=4294967295 cpu_id=2
145089              ps-13422 (13422) [006] d..2 24577.670170: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145090              ps-13422 (13422) [006] dn.3 24577.670173: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145091              ps-13422 (13422) [006] d..2 24577.670174: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145092          <idle>-0     (-----) [002] d..2 24577.670177: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
145093 shell svc 13418-13419 ( 1007) [006] d..2 24577.670180: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145094     kworker/0:1-13012 (13012) [000] d..2 24577.670180: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145095              ps-13422 (13422) [006] d..2 24577.670184: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145096              ps-13422 (13422) [006] dn.3 24577.670186: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145097          <idle>-0     (-----) [000] d..1 24577.670187: cpu_idle: state=0 cpu_id=0
145098              ps-13422 (13422) [006] d..2 24577.670188: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145099 shell svc 13418-13419 ( 1007) [006] d..2 24577.670193: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145100            adbd-23485 ( 1007) [002] d..2 24577.670197: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145101              ps-13422 (13422) [006] d..2 24577.670198: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145102              ps-13422 (13422) [006] dn.3 24577.670200: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145103              ps-13422 (13422) [006] d..2 24577.670202: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145104          <idle>-0     (-----) [002] d..1 24577.670205: cpu_idle: state=0 cpu_id=2
145105 shell svc 13418-13419 ( 1007) [006] d..2 24577.670207: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145106              ps-13422 (13422) [006] d..2 24577.670212: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145107              ps-13422 (13422) [006] dn.3 24577.670214: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145108              ps-13422 (13422) [006] d..2 24577.670216: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145109 shell svc 13418-13419 ( 1007) [006] d..2 24577.670222: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145110              ps-13422 (13422) [006] d..2 24577.670226: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145111          <idle>-0     (-----) [003] d.h2 24577.670226: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
145112              ps-13422 (13422) [006] dn.3 24577.670228: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145113              ps-13422 (13422) [006] d..2 24577.670230: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145114          <idle>-0     (-----) [003] dnh3 24577.670235: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
145115 shell svc 13418-13419 ( 1007) [006] d..2 24577.670236: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145116              ps-13422 (13422) [006] d..2 24577.670239: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145117          <idle>-0     (-----) [003] .n.1 24577.670240: cpu_idle: state=4294967295 cpu_id=3
145118              ps-13422 (13422) [006] dn.3 24577.670241: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145119              ps-13422 (13422) [006] d..2 24577.670244: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145120          <idle>-0     (-----) [003] d..2 24577.670247: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
145121 shell svc 13418-13419 ( 1007) [006] d..2 24577.670249: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145122              ps-13422 (13422) [006] d..2 24577.670253: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145123              ps-13422 (13422) [006] dn.3 24577.670255: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145124              ps-13422 (13422) [006] d..2 24577.670257: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145125        DispSync-23904 (23896) [003] d..1 24577.670262: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
145126 shell svc 13418-13419 ( 1007) [006] d..2 24577.670262: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145127              ps-13422 (13422) [006] d..2 24577.670266: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145128              ps-13422 (13422) [006] dn.3 24577.670268: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145129              ps-13422 (13422) [006] d..2 24577.670270: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145130        DispSync-23904 (23896) [003] d..2 24577.670274: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
145131          <idle>-0     (-----) [001] dnh3 24577.670274: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145132 shell svc 13418-13419 ( 1007) [006] d..2 24577.670276: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145133              ps-13422 (13422) [006] d..2 24577.670280: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145134              ps-13422 (13422) [006] dn.3 24577.670282: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145135          <idle>-0     (-----) [001] dnh4 24577.670283: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145136              ps-13422 (13422) [006] d..2 24577.670284: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145137          <idle>-0     (-----) [000] .n.1 24577.670289: cpu_idle: state=4294967295 cpu_id=0
145138 shell svc 13418-13419 ( 1007) [006] d..2 24577.670290: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145139          <idle>-0     (-----) [001] .n.1 24577.670292: cpu_idle: state=4294967295 cpu_id=1
145140              ps-13422 (13422) [006] d..2 24577.670294: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145141        DispSync-23904 (23896) [003] d..2 24577.670295: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
145142          <idle>-0     (-----) [000] d..2 24577.670296: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
145143              ps-13422 (13422) [006] dn.3 24577.670296: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145144          <idle>-0     (-----) [001] d..2 24577.670298: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
145145              ps-13422 (13422) [006] d..2 24577.670299: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145146          <idle>-0     (-----) [003] d..1 24577.670303: cpu_idle: state=0 cpu_id=3
145147   kworker/u17:2-23076 (23076) [000] d..2 24577.670303: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
145148 shell svc 13418-13419 ( 1007) [006] d..2 24577.670305: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145149              ps-13422 (13422) [006] d..2 24577.670308: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145150   kworker/u17:2-23076 (23076) [000] d..3 24577.670309: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
145151              ps-13422 (13422) [006] dn.3 24577.670310: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145152              ps-13422 (13422) [006] d..2 24577.670312: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145153 shell svc 13418-13419 ( 1007) [006] d..2 24577.670318: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145154              ps-13422 (13422) [006] d..2 24577.670321: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145155              ps-13422 (13422) [006] dn.3 24577.670323: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145156              ps-13422 (13422) [006] d..2 24577.670325: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145157   kworker/u17:2-23076 (23076) [000] d..2 24577.670326: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
145158   sfEventThread-23906 (23896) [001] d..3 24577.670330: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
145159 shell svc 13418-13419 ( 1007) [006] d..2 24577.670330: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145160     kworker/0:1-13012 (13012) [000] d..2 24577.670333: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
145161              ps-13422 (13422) [006] d..2 24577.670334: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145162              ps-13422 (13422) [006] dn.3 24577.670336: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145163              ps-13422 (13422) [006] d..2 24577.670338: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145164 shell svc 13418-13419 ( 1007) [006] d..2 24577.670344: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145165   sfEventThread-23906 (23896) [001] d..4 24577.670352: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
145166          <idle>-0     (-----) [003] .n.1 24577.670356: cpu_idle: state=4294967295 cpu_id=3
145167     kworker/0:1-13012 (13012) [000] d..3 24577.670361: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
145168          <idle>-0     (-----) [003] d..2 24577.670363: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
145169   sfEventThread-23906 (23896) [001] d..2 24577.670371: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
145170            adbd-23484 ( 1007) [001] d..2 24577.670387: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
145171     kworker/0:1-13012 (13012) [000] d..2 24577.670388: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145172          <idle>-0     (-----) [000] d..1 24577.670395: cpu_idle: state=0 cpu_id=0
145173            adbd-23484 ( 1007) [001] d..3 24577.670401: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
145174            adbd-23484 ( 1007) [001] d..2 24577.670455: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
145175            adbd-1007  ( 1007) [001] d..1 24577.670556: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
145176            adbd-1007  ( 1007) [001] d..2 24577.670569: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
145177          <idle>-0     (-----) [002] .n.1 24577.670573: cpu_idle: state=4294967295 cpu_id=2
145178          <idle>-0     (-----) [002] d..2 24577.670580: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
145179  surfaceflinger-23896 (23896) [003] d..1 24577.670605: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
145180            adbd-1007  ( 1007) [001] d..2 24577.670609: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145181  surfaceflinger-23896 (23896) [003] d..2 24577.670622: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
145182          <idle>-0     (-----) [001] d..2 24577.670627: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
145183            adbd-23485 ( 1007) [002] d..2 24577.670630: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145184          <idle>-0     (-----) [002] d..1 24577.670639: cpu_idle: state=0 cpu_id=2
145185   sfEventThread-23906 (23896) [001] d.h2 24577.670653: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145186   sfEventThread-23906 (23896) [001] d.h3 24577.670663: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145187          <idle>-0     (-----) [000] .n.1 24577.670668: cpu_idle: state=4294967295 cpu_id=0
145188          <idle>-0     (-----) [000] d..2 24577.670675: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
145189   kworker/u17:2-23076 (23076) [000] d..2 24577.670683: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
145190   kworker/u17:2-23076 (23076) [000] d..3 24577.670689: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
145191   sfEventThread-23906 (23896) [001] d..2 24577.670692: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145192          <idle>-0     (-----) [001] d..1 24577.670699: cpu_idle: state=0 cpu_id=1
145193   kworker/u17:2-23076 (23076) [000] d.h3 24577.670721: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
145194   kworker/u17:2-23076 (23076) [000] d.h4 24577.670740: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
145195          <idle>-0     (-----) [002] .n.1 24577.670746: cpu_idle: state=4294967295 cpu_id=2
145196          <idle>-0     (-----) [002] d..2 24577.670752: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
145197   kworker/u17:2-23076 (23076) [000] d..2 24577.670755: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
145198     kworker/0:1-13012 (13012) [000] d..2 24577.670761: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
145199  surfaceflinger-23896 (23896) [003] ...1 24577.670769: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
145200     kworker/0:1-13012 (13012) [000] d..3 24577.670771: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
145201  surfaceflinger-23896 (23896) [003] ...1 24577.670774: tracing_mark_write: E|23896
145202 kgsl_worker_thr-246   (  246) [002] d..2 24577.670788: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
145203     kworker/0:1-13012 (13012) [000] d..2 24577.670789: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145204          <idle>-0     (-----) [000] d..1 24577.670796: cpu_idle: state=0 cpu_id=0
145205 kgsl_worker_thr-246   (  246) [002] d..3 24577.670808: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
145206          <idle>-0     (-----) [000] .n.1 24577.670813: cpu_idle: state=4294967295 cpu_id=0
145207  surfaceflinger-23896 (23896) [003] .... 24577.670818: binder_transaction: transaction=1671719 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
145208          <idle>-0     (-----) [000] d..2 24577.670821: 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
145209 kgsl_worker_thr-246   (  246) [002] d..2 24577.670825: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
145210  surfaceflinger-23896 (23896) [003] ...2 24577.670838: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
145211  surfaceflinger-23896 (23896) [003] d..4 24577.670845: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
145212  surfaceflinger-23896 (23896) [003] d..5 24577.670858: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
145213          <idle>-0     (-----) [001] .n.1 24577.670864: cpu_idle: state=4294967295 cpu_id=1
145214          <idle>-0     (-----) [001] d..2 24577.670870: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
145215  surfaceflinger-23896 (23896) [003] d..2 24577.670878: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
145216            adbd-23485 ( 1007) [002] d..2 24577.670879: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145217  HwBinder:598_3-633   (  598) [001] d.H2 24577.670910: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145218          <idle>-0     (-----) [003] d..1 24577.670917: cpu_idle: state=0 cpu_id=3
145219          <idle>-0     (-----) [002] d..1 24577.670918: cpu_idle: state=0 cpu_id=2
145220  HwBinder:598_3-633   (  598) [001] d.H3 24577.670931: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
145221          <idle>-0     (-----) [002] .n.1 24577.670936: cpu_idle: state=4294967295 cpu_id=2
145222  HwBinder:598_3-633   (  598) [001] .... 24577.670939: binder_transaction_received: transaction=1671719
145223          <idle>-0     (-----) [002] d..2 24577.670943: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
145224   kworker/u17:2-23076 (23076) [002] d..2 24577.670953: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
145225   kworker/u17:2-23076 (23076) [002] d..3 24577.670964: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
145226  HwBinder:598_3-633   (  598) [001] ...1 24577.670980: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
145227   kworker/u17:2-23076 (23076) [002] d..2 24577.670983: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
145228     kworker/2:0-12895 (12895) [002] d..2 24577.670991: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
145229  kworker/u16:10-23868 (23868) [000] d..2 24577.671004: 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
145230          <idle>-0     (-----) [000] d..1 24577.671010: cpu_idle: state=0 cpu_id=0
145231     kworker/2:0-12895 (12895) [002] d..3 24577.671018: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
145232          <idle>-0     (-----) [000] .n.1 24577.671022: cpu_idle: state=4294967295 cpu_id=0
145233          <idle>-0     (-----) [000] d..2 24577.671029: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
145234     kworker/2:0-12895 (12895) [002] d..2 24577.671035: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145235          <idle>-0     (-----) [002] d..1 24577.671044: cpu_idle: state=0 cpu_id=2
145236            adbd-23485 ( 1007) [000] d..2 24577.671054: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145237          <idle>-0     (-----) [000] d..1 24577.671059: cpu_idle: state=0 cpu_id=0
145238  HwBinder:598_3-633   (  598) [001] d.h2 24577.671080: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
145239  HwBinder:598_3-633   (  598) [001] d.h3 24577.671092: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
145240          <idle>-0     (-----) [002] .n.1 24577.671097: cpu_idle: state=4294967295 cpu_id=2
145241  HwBinder:598_3-633   (  598) [001] ...1 24577.671101: tracing_mark_write: B|598|HWCSession::PresentDisplay::
145242          <idle>-0     (-----) [002] d..2 24577.671104: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
145243   kworker/u17:2-23076 (23076) [002] d..2 24577.671112: sched_waking: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
145244   kworker/u17:2-23076 (23076) [002] d..3 24577.671118: sched_wakeup: comm=kworker/2:0 pid=12895 prio=120 target_cpu=002
145245   kworker/u17:2-23076 (23076) [002] d..2 24577.671135: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/2:0 next_pid=12895 next_prio=120
145246     kworker/2:0-12895 (12895) [002] d..2 24577.671142: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
145247     kworker/2:0-12895 (12895) [002] d..3 24577.671165: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
145248     kworker/2:0-12895 (12895) [002] d..2 24577.671175: sched_switch: prev_comm=kworker/2:0 prev_pid=12895 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
145249            adbd-23484 ( 1007) [002] d..2 24577.671189: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
145250            adbd-23484 ( 1007) [002] d..3 24577.671200: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
145251  HwBinder:598_3-633   (  598) [001] ...1 24577.671239: tracing_mark_write: B|598|HWDeviceDRM::Commit::
145252            adbd-23484 ( 1007) [002] d..2 24577.671246: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
145253  HwBinder:598_3-633   (  598) [001] ...1 24577.671249: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
145254            adbd-1007  ( 1007) [002] d..2 24577.671320: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145255          <idle>-0     (-----) [002] d..1 24577.671330: cpu_idle: state=0 cpu_id=2
145256              ps-13422 (13422) [006] d..2 24577.671400: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145257              ps-13422 (13422) [006] dn.3 24577.671404: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145258              ps-13422 (13422) [006] d..2 24577.671407: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145259 shell svc 13418-13419 ( 1007) [006] d..2 24577.671413: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
145260 shell svc 13418-13419 ( 1007) [006] d..2 24577.671429: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145261          <idle>-0     (-----) [000] dnh2 24577.671434: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
145262              ps-13422 (13422) [006] d..2 24577.671434: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145263              ps-13422 (13422) [006] dn.3 24577.671437: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145264          <idle>-0     (-----) [000] .n.1 24577.671438: cpu_idle: state=4294967295 cpu_id=0
145265              ps-13422 (13422) [006] d..2 24577.671439: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145266          <idle>-0     (-----) [000] d..2 24577.671443: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
145267 shell svc 13418-13419 ( 1007) [006] d..2 24577.671446: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145268              ps-13422 (13422) [006] d..2 24577.671450: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145269              ps-13422 (13422) [006] dn.3 24577.671452: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145270              ps-13422 (13422) [006] d..2 24577.671454: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145271 shell svc 13418-13419 ( 1007) [006] d..2 24577.671460: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145272              ps-13422 (13422) [006] d..2 24577.671464: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145273              ps-13422 (13422) [006] dn.3 24577.671466: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145274              ps-13422 (13422) [006] d..2 24577.671468: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145275 shell svc 13418-13419 ( 1007) [006] d..2 24577.671474: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145276              ps-13422 (13422) [006] d..2 24577.671478: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145277              ps-13422 (13422) [006] dn.3 24577.671480: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145278              ps-13422 (13422) [006] d..2 24577.671482: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145279 shell svc 13418-13419 ( 1007) [006] d..2 24577.671487: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145280              ps-13422 (13422) [006] d..2 24577.671491: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145281              ps-13422 (13422) [006] dn.3 24577.671493: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145282              ps-13422 (13422) [006] d..2 24577.671495: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145283 shell svc 13418-13419 ( 1007) [006] d..2 24577.671501: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145284              ps-13422 (13422) [006] d..2 24577.671505: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145285            adbd-1007  ( 1007) [000] d..1 24577.671505: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
145286              ps-13422 (13422) [006] dn.3 24577.671507: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145287              ps-13422 (13422) [006] d..2 24577.671509: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145288 shell svc 13418-13419 ( 1007) [006] d..2 24577.671515: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145289              ps-13422 (13422) [006] d..2 24577.671519: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145290              ps-13422 (13422) [006] dn.3 24577.671521: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145291              ps-13422 (13422) [006] d..2 24577.671523: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145292 shell svc 13418-13419 ( 1007) [006] d..2 24577.671529: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145293              ps-13422 (13422) [006] d..2 24577.671533: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145294            adbd-1007  ( 1007) [000] d..2 24577.671534: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
145295              ps-13422 (13422) [006] dn.3 24577.671535: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145296              ps-13422 (13422) [006] d..2 24577.671537: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145297          <idle>-0     (-----) [002] .n.1 24577.671540: cpu_idle: state=4294967295 cpu_id=2
145298 shell svc 13418-13419 ( 1007) [006] d..2 24577.671542: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145299              ps-13422 (13422) [006] d..2 24577.671546: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145300          <idle>-0     (-----) [002] d..2 24577.671548: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
145301              ps-13422 (13422) [006] dn.3 24577.671548: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145302              ps-13422 (13422) [006] d..2 24577.671550: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145303 shell svc 13418-13419 ( 1007) [006] d..2 24577.671556: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145304              ps-13422 (13422) [006] d..2 24577.671559: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145305              ps-13422 (13422) [006] dn.3 24577.671562: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145306              ps-13422 (13422) [006] d..2 24577.671563: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145307 shell svc 13418-13419 ( 1007) [006] d..2 24577.671569: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145308              ps-13422 (13422) [006] d..2 24577.671573: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145309              ps-13422 (13422) [006] dn.3 24577.671575: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145310            adbd-1007  ( 1007) [000] d..2 24577.671576: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145311              ps-13422 (13422) [006] d..2 24577.671577: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145312          <idle>-0     (-----) [000] d..1 24577.671582: cpu_idle: state=0 cpu_id=0
145313 shell svc 13418-13419 ( 1007) [006] d..2 24577.671583: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145314              ps-13422 (13422) [006] d..2 24577.671587: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145315              ps-13422 (13422) [006] dn.3 24577.671589: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145316              ps-13422 (13422) [006] d..2 24577.671591: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145317 shell svc 13418-13419 ( 1007) [006] d..2 24577.671596: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145318              ps-13422 (13422) [006] d..2 24577.671600: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145319            adbd-23485 ( 1007) [002] d..2 24577.671601: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145320              ps-13422 (13422) [006] dn.3 24577.671602: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145321              ps-13422 (13422) [006] d..2 24577.671604: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145322          <idle>-0     (-----) [002] d..1 24577.671609: cpu_idle: state=0 cpu_id=2
145323 shell svc 13418-13419 ( 1007) [006] d..2 24577.671610: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145324              ps-13422 (13422) [006] d..2 24577.671613: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145325              ps-13422 (13422) [006] dn.3 24577.671615: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145326              ps-13422 (13422) [006] d..2 24577.671618: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145327 shell svc 13418-13419 ( 1007) [006] d..2 24577.671624: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145328              ps-13422 (13422) [006] d..2 24577.671627: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145329              ps-13422 (13422) [006] dn.3 24577.671629: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145330              ps-13422 (13422) [006] d..2 24577.671631: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145331  HwBinder:598_3-633   (  598) [001] d.h2 24577.671632: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=002
145332 shell svc 13418-13419 ( 1007) [006] d..2 24577.671637: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145333              ps-13422 (13422) [006] d..2 24577.671641: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145334              ps-13422 (13422) [006] dn.3 24577.671643: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145335              ps-13422 (13422) [006] d..2 24577.671645: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145336 shell svc 13418-13419 ( 1007) [006] d..2 24577.671651: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145337              ps-13422 (13422) [006] d..2 24577.671654: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145338              ps-13422 (13422) [006] dn.3 24577.671656: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145339              ps-13422 (13422) [006] d..2 24577.671658: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145340  HwBinder:598_3-633   (  598) [001] d.h3 24577.671659: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145341          <idle>-0     (-----) [000] .n.1 24577.671664: cpu_idle: state=4294967295 cpu_id=0
145342 shell svc 13418-13419 ( 1007) [006] d..2 24577.671664: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145343              ps-13422 (13422) [006] d..2 24577.671668: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145344          <idle>-0     (-----) [000] d..2 24577.671670: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
145345              ps-13422 (13422) [006] dn.3 24577.671670: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145346              ps-13422 (13422) [006] d..2 24577.671672: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145347 shell svc 13418-13419 ( 1007) [006] d..2 24577.671678: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145348   kworker/u17:2-23076 (23076) [000] d..2 24577.671679: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
145349              ps-13422 (13422) [006] d..2 24577.671682: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145350              ps-13422 (13422) [006] dn.3 24577.671684: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145351              ps-13422 (13422) [006] d..2 24577.671686: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145352   kworker/u17:2-23076 (23076) [000] d..3 24577.671687: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
145353 shell svc 13418-13419 ( 1007) [006] d..2 24577.671691: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145354              ps-13422 (13422) [006] d..2 24577.671695: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145355              ps-13422 (13422) [006] dn.3 24577.671697: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145356              ps-13422 (13422) [006] d..2 24577.671699: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145357   kworker/u17:2-23076 (23076) [000] d..2 24577.671705: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
145358 shell svc 13418-13419 ( 1007) [006] d..2 24577.671705: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145359              ps-13422 (13422) [006] d..2 24577.671708: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145360              ps-13422 (13422) [006] dn.3 24577.671710: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145361     kworker/0:1-13012 (13012) [000] d..2 24577.671711: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
145362              ps-13422 (13422) [006] d..2 24577.671712: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145363 shell svc 13418-13419 ( 1007) [006] d..2 24577.671718: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145364              ps-13422 (13422) [006] d..2 24577.671721: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145365              ps-13422 (13422) [006] dn.3 24577.671723: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145366              ps-13422 (13422) [006] d..2 24577.671725: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145367 shell svc 13418-13419 ( 1007) [006] d..2 24577.671731: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145368     kworker/0:1-13012 (13012) [000] d..3 24577.671734: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
145369              ps-13422 (13422) [006] d..2 24577.671735: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145370              ps-13422 (13422) [006] dn.3 24577.671737: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145371              ps-13422 (13422) [006] d..2 24577.671739: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145372 shell svc 13418-13419 ( 1007) [006] d..2 24577.671745: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145373     kworker/0:1-13012 (13012) [000] d..2 24577.671745: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
145374  HwBinder:598_3-633   (  598) [001] d..2 24577.671746: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
145375              ps-13422 (13422) [006] d..2 24577.671748: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145376              ps-13422 (13422) [006] dn.3 24577.671750: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145377              ps-13422 (13422) [006] d..2 24577.671752: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145378 shell svc 13418-13419 ( 1007) [006] d..2 24577.671758: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145379  HwBinder:598_3-633   (  598) [001] d..3 24577.671759: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
145380              ps-13422 (13422) [006] d..2 24577.671761: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145381              ps-13422 (13422) [006] dn.3 24577.671763: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145382          <idle>-0     (-----) [002] .n.1 24577.671764: cpu_idle: state=4294967295 cpu_id=2
145383              ps-13422 (13422) [006] d..2 24577.671765: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145384          <idle>-0     (-----) [002] d..2 24577.671771: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
145385 shell svc 13418-13419 ( 1007) [006] d..2 24577.671771: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145386              ps-13422 (13422) [006] d..2 24577.671774: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145387              ps-13422 (13422) [006] dn.3 24577.671776: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145388              ps-13422 (13422) [006] d..2 24577.671778: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145389 shell svc 13418-13419 ( 1007) [006] d..2 24577.671784: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145390              ps-13422 (13422) [006] d..2 24577.671787: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145391              ps-13422 (13422) [006] dn.3 24577.671789: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145392              ps-13422 (13422) [006] d..2 24577.671791: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145393 shell svc 13418-13419 ( 1007) [006] d..2 24577.671797: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145394              ps-13422 (13422) [006] d..2 24577.671801: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145395            adbd-23485 ( 1007) [000] d..2 24577.671802: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145396              ps-13422 (13422) [006] dn.3 24577.671803: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145397              ps-13422 (13422) [006] d..2 24577.671805: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145398          <idle>-0     (-----) [000] d..1 24577.671808: cpu_idle: state=0 cpu_id=0
145399 shell svc 13418-13419 ( 1007) [006] d..2 24577.671811: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145400              ps-13422 (13422) [006] d..2 24577.671814: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145401              ps-13422 (13422) [006] dn.3 24577.671816: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145402              ps-13422 (13422) [006] d..2 24577.671818: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145403  HwBinder:598_3-633   (  598) [001] d.h2 24577.671823: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145404 shell svc 13418-13419 ( 1007) [006] d..2 24577.671824: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145405              ps-13422 (13422) [006] d..2 24577.671827: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145406              ps-13422 (13422) [006] dn.3 24577.671829: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145407              ps-13422 (13422) [006] d..2 24577.671831: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145408  HwBinder:598_3-633   (  598) [001] d.h3 24577.671834: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145409 shell svc 13418-13419 ( 1007) [006] d..2 24577.671837: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145410          <idle>-0     (-----) [000] .n.1 24577.671839: cpu_idle: state=4294967295 cpu_id=0
145411              ps-13422 (13422) [006] d..2 24577.671841: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145412              ps-13422 (13422) [006] dn.3 24577.671843: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145413              ps-13422 (13422) [006] d..2 24577.671845: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145414          <idle>-0     (-----) [000] d..2 24577.671845: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
145415 shell svc 13418-13419 ( 1007) [006] d..2 24577.671850: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145416   kworker/u17:2-23076 (23076) [000] d..2 24577.671852: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
145417              ps-13422 (13422) [006] d..2 24577.671854: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145418              ps-13422 (13422) [006] dn.3 24577.671856: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145419   kworker/u17:2-23076 (23076) [000] d..3 24577.671859: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
145420              ps-13422 (13422) [006] d..2 24577.671859: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145421  HwBinder:598_3-633   (  598) [001] ...1 24577.671860: tracing_mark_write: E|598
145422  HwBinder:598_3-633   (  598) [001] ...1 24577.671864: tracing_mark_write: E|598
145423 shell svc 13418-13419 ( 1007) [006] d..2 24577.671864: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145424              ps-13422 (13422) [006] d..2 24577.671868: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145425              ps-13422 (13422) [006] dn.3 24577.671870: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145426              ps-13422 (13422) [006] d..2 24577.671872: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145427   kworker/u17:2-23076 (23076) [000] d..2 24577.671875: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
145428 shell svc 13418-13419 ( 1007) [006] d..2 24577.671878: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145429     kworker/0:1-13012 (13012) [000] d..2 24577.671881: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
145430              ps-13422 (13422) [006] d..2 24577.671881: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145431              ps-13422 (13422) [006] dn.3 24577.671884: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145432              ps-13422 (13422) [006] d..2 24577.671886: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145433     kworker/0:1-13012 (13012) [000] d..3 24577.671890: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
145434 shell svc 13418-13419 ( 1007) [006] d..2 24577.671892: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145435              ps-13422 (13422) [006] d..2 24577.671896: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145436              ps-13422 (13422) [006] dn.3 24577.671898: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145437     kworker/0:1-13012 (13012) [000] d..2 24577.671899: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
145438              ps-13422 (13422) [006] d..2 24577.671899: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145439 shell svc 13418-13419 ( 1007) [006] d..2 24577.671905: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145440              ps-13422 (13422) [006] d..2 24577.671909: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145441              ps-13422 (13422) [006] dn.3 24577.671911: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145442              ps-13422 (13422) [006] d..2 24577.671913: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145443  HwBinder:598_3-633   (  598) [001] ...1 24577.671913: tracing_mark_write: E|598
145444 shell svc 13418-13419 ( 1007) [006] d..2 24577.671919: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145445            adbd-23485 ( 1007) [000] d..2 24577.671920: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145446              ps-13422 (13422) [006] d..2 24577.671923: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145447              ps-13422 (13422) [006] dn.3 24577.671925: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145448          <idle>-0     (-----) [000] d..1 24577.671926: cpu_idle: state=0 cpu_id=0
145449              ps-13422 (13422) [006] d..2 24577.671927: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145450 shell svc 13418-13419 ( 1007) [006] d..2 24577.671933: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145451              ps-13422 (13422) [006] d..2 24577.671936: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145452              ps-13422 (13422) [006] dn.3 24577.671938: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145453              ps-13422 (13422) [006] d..2 24577.671940: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145454 shell svc 13418-13419 ( 1007) [006] d..2 24577.671946: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145455              ps-13422 (13422) [006] d..2 24577.671949: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145456              ps-13422 (13422) [006] dn.3 24577.671951: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145457  HwBinder:598_3-633   (  598) [001] ...1 24577.671953: tracing_mark_write: E|598
145458              ps-13422 (13422) [006] d..2 24577.671953: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145459 shell svc 13418-13419 ( 1007) [006] d..2 24577.671959: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145460              ps-13422 (13422) [006] d..2 24577.671962: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145461              ps-13422 (13422) [006] dn.3 24577.671964: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145462  HwBinder:598_3-633   (  598) [001] .... 24577.671965: binder_transaction: transaction=1671720 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
145463              ps-13422 (13422) [006] d..2 24577.671966: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145464 shell svc 13418-13419 ( 1007) [006] d..2 24577.671972: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145465              ps-13422 (13422) [006] d..2 24577.671976: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145466              ps-13422 (13422) [006] dn.3 24577.671978: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145467              ps-13422 (13422) [006] d..2 24577.671980: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145468  HwBinder:598_3-633   (  598) [001] d..2 24577.671981: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
145469 shell svc 13418-13419 ( 1007) [006] d..2 24577.671986: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145470              ps-13422 (13422) [006] d..2 24577.671990: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145471              ps-13422 (13422) [006] dn.3 24577.671992: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145472  HwBinder:598_3-633   (  598) [001] d..3 24577.671993: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
145473              ps-13422 (13422) [006] d..2 24577.671994: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145474          <idle>-0     (-----) [003] .n.1 24577.671998: cpu_idle: state=4294967295 cpu_id=3
145475 shell svc 13418-13419 ( 1007) [006] d..2 24577.671999: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145476              ps-13422 (13422) [006] d..2 24577.672003: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145477          <idle>-0     (-----) [003] d..2 24577.672005: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
145478              ps-13422 (13422) [006] dn.3 24577.672005: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145479              ps-13422 (13422) [006] d..2 24577.672007: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145480  HwBinder:598_3-633   (  598) [001] d.h3 24577.672009: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145481  surfaceflinger-23896 (23896) [003] .... 24577.672010: binder_transaction_received: transaction=1671720
145482 shell svc 13418-13419 ( 1007) [006] d..2 24577.672013: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145483              ps-13422 (13422) [006] d..2 24577.672016: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145484              ps-13422 (13422) [006] dn.3 24577.672018: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145485  HwBinder:598_3-633   (  598) [001] d.h4 24577.672020: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145486              ps-13422 (13422) [006] d..2 24577.672020: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145487          <idle>-0     (-----) [000] .n.1 24577.672025: cpu_idle: state=4294967295 cpu_id=0
145488  HwBinder:598_3-633   (  598) [001] .... 24577.672025: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
145489 shell svc 13418-13419 ( 1007) [006] d..2 24577.672026: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145490              ps-13422 (13422) [006] d..2 24577.672030: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145491          <idle>-0     (-----) [000] d..2 24577.672031: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
145492              ps-13422 (13422) [006] dn.3 24577.672032: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145493              ps-13422 (13422) [006] d..2 24577.672034: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145494   kworker/u17:2-23076 (23076) [000] d..2 24577.672038: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
145495 shell svc 13418-13419 ( 1007) [006] d..2 24577.672039: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145496              ps-13422 (13422) [006] d..2 24577.672043: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145497   kworker/u17:2-23076 (23076) [000] d..3 24577.672044: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
145498              ps-13422 (13422) [006] dn.3 24577.672045: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145499              ps-13422 (13422) [006] d..2 24577.672047: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145500 shell svc 13418-13419 ( 1007) [006] d..2 24577.672053: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145501              ps-13422 (13422) [006] d..2 24577.672057: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145502              ps-13422 (13422) [006] dn.3 24577.672059: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145503              ps-13422 (13422) [006] d..2 24577.672061: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145504   kworker/u17:2-23076 (23076) [000] d..2 24577.672061: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
145505 shell svc 13418-13419 ( 1007) [006] d..2 24577.672066: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145506     kworker/0:1-13012 (13012) [000] d..2 24577.672068: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
145507  HwBinder:598_3-633   (  598) [001] d..2 24577.672083: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145508     kworker/0:1-13012 (13012) [000] d..3 24577.672095: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
145509          <idle>-0     (-----) [001] d..2 24577.672104: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
145510     kworker/0:1-13012 (13012) [000] d..2 24577.672111: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145511          <idle>-0     (-----) [000] d..1 24577.672117: cpu_idle: state=0 cpu_id=0
145512            adbd-23484 ( 1007) [001] d..2 24577.672120: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
145513            adbd-23484 ( 1007) [001] d..3 24577.672133: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
145514            adbd-23484 ( 1007) [001] d..2 24577.672183: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
145515            adbd-1007  ( 1007) [001] d..1 24577.672303: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
145516  surfaceflinger-23896 (23896) [003] d..2 24577.672303: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
145517          <idle>-0     (-----) [003] d..1 24577.672313: cpu_idle: state=0 cpu_id=3
145518            adbd-1007  ( 1007) [001] d..2 24577.672315: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
145519          <idle>-0     (-----) [000] .n.1 24577.672320: cpu_idle: state=4294967295 cpu_id=0
145520          <idle>-0     (-----) [000] d..2 24577.672326: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
145521            adbd-1007  ( 1007) [001] d..2 24577.672356: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145522          <idle>-0     (-----) [001] d..1 24577.672365: cpu_idle: state=0 cpu_id=1
145523            adbd-23485 ( 1007) [000] d..2 24577.672376: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145524          <idle>-0     (-----) [000] d..1 24577.672381: cpu_idle: state=0 cpu_id=0
145525          <idle>-0     (-----) [001] d.h3 24577.672385: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145526          <idle>-0     (-----) [001] d.h4 24577.672396: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145527          <idle>-0     (-----) [000] .n.1 24577.672401: cpu_idle: state=4294967295 cpu_id=0
145528          <idle>-0     (-----) [001] ...1 24577.672404: cpu_idle: state=4294967295 cpu_id=1
145529          <idle>-0     (-----) [000] d..2 24577.672407: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
145530          <idle>-0     (-----) [001] d..1 24577.672407: cpu_idle: state=0 cpu_id=1
145531   kworker/u17:2-23076 (23076) [000] d..2 24577.672414: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
145532 crtc_commit:111-253   (  253) [002] d..2 24577.672414: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
145533   kworker/u17:2-23076 (23076) [000] d..3 24577.672421: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
145534          <idle>-0     (-----) [002] d..1 24577.672423: cpu_idle: state=0 cpu_id=2
145535              ps-13422 (13422) [006] d..2 24577.672435: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145536   kworker/u17:2-23076 (23076) [000] d..2 24577.672438: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
145537              ps-13422 (13422) [006] dn.3 24577.672439: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145538              ps-13422 (13422) [006] d..2 24577.672442: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145539     kworker/0:1-13012 (13012) [000] d..2 24577.672443: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
145540 shell svc 13418-13419 ( 1007) [006] d..2 24577.672451: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145541     kworker/0:1-13012 (13012) [000] d..3 24577.672453: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
145542              ps-13422 (13422) [006] d..2 24577.672455: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145543              ps-13422 (13422) [006] dn.3 24577.672458: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145544              ps-13422 (13422) [006] d..2 24577.672459: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145545     kworker/0:1-13012 (13012) [000] d..2 24577.672463: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
145546 shell svc 13418-13419 ( 1007) [006] d..2 24577.672466: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145547              ps-13422 (13422) [006] d..2 24577.672470: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145548              ps-13422 (13422) [006] dn.3 24577.672472: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145549              ps-13422 (13422) [006] d..2 24577.672476: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145550 shell svc 13418-13419 ( 1007) [006] d..2 24577.672482: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145551              ps-13422 (13422) [006] d..2 24577.672485: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145552              ps-13422 (13422) [006] dn.3 24577.672487: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145553              ps-13422 (13422) [006] d..2 24577.672489: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145554 shell svc 13418-13419 ( 1007) [006] d..2 24577.672495: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145555              ps-13422 (13422) [006] d..2 24577.672498: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145556              ps-13422 (13422) [006] dn.3 24577.672501: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145557              ps-13422 (13422) [006] d..2 24577.672503: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145558 shell svc 13418-13419 ( 1007) [006] d..2 24577.672508: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145559              ps-13422 (13422) [006] d..2 24577.672513: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145560            adbd-23485 ( 1007) [000] d..2 24577.672515: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145561              ps-13422 (13422) [006] dn.3 24577.672515: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145562              ps-13422 (13422) [006] d..2 24577.672517: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145563          <idle>-0     (-----) [000] d..1 24577.672521: cpu_idle: state=0 cpu_id=0
145564 shell svc 13418-13419 ( 1007) [006] d..2 24577.672523: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145565              ps-13422 (13422) [006] d..2 24577.672526: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145566              ps-13422 (13422) [006] dn.3 24577.672528: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145567              ps-13422 (13422) [006] d..2 24577.672531: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145568 shell svc 13418-13419 ( 1007) [006] d..2 24577.672536: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145569              ps-13422 (13422) [006] d..2 24577.672541: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145570              ps-13422 (13422) [006] dn.3 24577.672544: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145571              ps-13422 (13422) [006] d..2 24577.672546: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145572 shell svc 13418-13419 ( 1007) [006] d..2 24577.672551: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145573              ps-13422 (13422) [006] d..2 24577.672555: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145574              ps-13422 (13422) [006] dn.3 24577.672557: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145575              ps-13422 (13422) [006] d..2 24577.672559: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145576          <idle>-0     (-----) [001] d.h3 24577.672564: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145577 shell svc 13418-13419 ( 1007) [006] d..2 24577.672565: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145578              ps-13422 (13422) [006] d..2 24577.672568: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145579              ps-13422 (13422) [006] dn.3 24577.672571: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145580              ps-13422 (13422) [006] d..2 24577.672573: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145581          <idle>-0     (-----) [001] d.h4 24577.672574: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145582          <idle>-0     (-----) [000] .n.1 24577.672578: cpu_idle: state=4294967295 cpu_id=0
145583 shell svc 13418-13419 ( 1007) [006] d..2 24577.672579: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145584          <idle>-0     (-----) [001] ...1 24577.672580: cpu_idle: state=4294967295 cpu_id=1
145585              ps-13422 (13422) [006] d..2 24577.672582: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145586          <idle>-0     (-----) [001] d..1 24577.672584: cpu_idle: state=0 cpu_id=1
145587              ps-13422 (13422) [006] dn.3 24577.672584: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145588          <idle>-0     (-----) [000] d..2 24577.672585: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
145589              ps-13422 (13422) [006] d..2 24577.672586: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145590 shell svc 13418-13419 ( 1007) [006] d..2 24577.672592: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145591   kworker/u17:2-23076 (23076) [000] d..2 24577.672594: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
145592              ps-13422 (13422) [006] d..2 24577.672596: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145593              ps-13422 (13422) [006] dn.3 24577.672598: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145594   kworker/u17:2-23076 (23076) [000] d..3 24577.672600: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
145595              ps-13422 (13422) [006] d..2 24577.672600: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145596 shell svc 13418-13419 ( 1007) [006] d..2 24577.672607: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145597              ps-13422 (13422) [006] d..2 24577.672610: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145598              ps-13422 (13422) [006] dn.3 24577.672612: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145599              ps-13422 (13422) [006] d..2 24577.672614: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145600   kworker/u17:2-23076 (23076) [000] d..2 24577.672618: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
145601 shell svc 13418-13419 ( 1007) [006] d..2 24577.672620: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145602     kworker/0:1-13012 (13012) [000] d..2 24577.672623: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
145603              ps-13422 (13422) [006] d..2 24577.672624: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145604              ps-13422 (13422) [006] dn.3 24577.672627: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145605              ps-13422 (13422) [006] d..2 24577.672628: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145606     kworker/0:1-13012 (13012) [000] d..3 24577.672633: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
145607 shell svc 13418-13419 ( 1007) [006] d..2 24577.672634: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145608              ps-13422 (13422) [006] d..2 24577.672638: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145609              ps-13422 (13422) [006] dn.3 24577.672641: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145610     kworker/0:1-13012 (13012) [000] d..2 24577.672642: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
145611              ps-13422 (13422) [006] d..2 24577.672643: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145612 shell svc 13418-13419 ( 1007) [006] d..2 24577.672648: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145613              ps-13422 (13422) [006] d..2 24577.672653: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145614              ps-13422 (13422) [006] dn.3 24577.672655: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145615              ps-13422 (13422) [006] d..2 24577.672657: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145616            adbd-23485 ( 1007) [000] d..2 24577.672661: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145617 shell svc 13418-13419 ( 1007) [006] d..2 24577.672663: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145618          <idle>-0     (-----) [000] d..1 24577.672667: cpu_idle: state=0 cpu_id=0
145619          <idle>-0     (-----) [001] d.h3 24577.672714: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145620          <idle>-0     (-----) [001] d.h4 24577.672723: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145621          <idle>-0     (-----) [000] .n.1 24577.672728: cpu_idle: state=4294967295 cpu_id=0
145622          <idle>-0     (-----) [001] ...1 24577.672730: cpu_idle: state=4294967295 cpu_id=1
145623          <idle>-0     (-----) [001] d..1 24577.672733: cpu_idle: state=0 cpu_id=1
145624          <idle>-0     (-----) [000] d..2 24577.672734: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
145625   kworker/u17:2-23076 (23076) [000] d..2 24577.672741: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
145626   kworker/u17:2-23076 (23076) [000] d..3 24577.672747: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
145627   kworker/u17:2-23076 (23076) [000] d..2 24577.672765: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
145628     kworker/0:1-13012 (13012) [000] d..2 24577.672772: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
145629     kworker/0:1-13012 (13012) [000] d..3 24577.672785: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
145630          <idle>-0     (-----) [001] .n.1 24577.672789: cpu_idle: state=4294967295 cpu_id=1
145631          <idle>-0     (-----) [001] d..2 24577.672797: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
145632     kworker/0:1-13012 (13012) [000] d..2 24577.672800: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145633          <idle>-0     (-----) [000] d..1 24577.672805: cpu_idle: state=0 cpu_id=0
145634            adbd-23484 ( 1007) [001] d..2 24577.672809: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
145635            adbd-23484 ( 1007) [001] d..3 24577.672816: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
145636            adbd-23484 ( 1007) [001] d..2 24577.672865: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
145637            adbd-1007  ( 1007) [001] d..1 24577.672949: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
145638            adbd-1007  ( 1007) [001] d..2 24577.672961: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
145639          <idle>-0     (-----) [000] .n.1 24577.672966: cpu_idle: state=4294967295 cpu_id=0
145640          <idle>-0     (-----) [000] d..2 24577.672972: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
145641            adbd-1007  ( 1007) [001] d..2 24577.673000: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145642          <idle>-0     (-----) [001] d..1 24577.673011: cpu_idle: state=0 cpu_id=1
145643            adbd-23485 ( 1007) [000] d..2 24577.673023: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145644          <idle>-0     (-----) [000] d..1 24577.673028: cpu_idle: state=0 cpu_id=0
145645          <idle>-0     (-----) [001] d.h3 24577.673034: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145646          <idle>-0     (-----) [001] d.h4 24577.673045: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145647          <idle>-0     (-----) [000] .n.1 24577.673050: cpu_idle: state=4294967295 cpu_id=0
145648          <idle>-0     (-----) [001] ...1 24577.673053: cpu_idle: state=4294967295 cpu_id=1
145649          <idle>-0     (-----) [000] d..2 24577.673056: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
145650          <idle>-0     (-----) [001] d..1 24577.673056: cpu_idle: state=0 cpu_id=1
145651   kworker/u17:2-23076 (23076) [000] d..2 24577.673064: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
145652   kworker/u17:2-23076 (23076) [000] d..3 24577.673071: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
145653   kworker/u17:2-23076 (23076) [000] d..2 24577.673089: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
145654     kworker/0:1-13012 (13012) [000] d..2 24577.673094: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
145655     kworker/0:1-13012 (13012) [000] d..3 24577.673104: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
145656     kworker/0:1-13012 (13012) [000] d..2 24577.673113: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
145657            adbd-23485 ( 1007) [000] d..2 24577.673164: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145658          <idle>-0     (-----) [000] d..1 24577.673170: cpu_idle: state=0 cpu_id=0
145659          <idle>-0     (-----) [001] d.h3 24577.673189: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145660          <idle>-0     (-----) [001] d.h4 24577.673198: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145661          <idle>-0     (-----) [000] .n.1 24577.673204: cpu_idle: state=4294967295 cpu_id=0
145662          <idle>-0     (-----) [001] ...1 24577.673205: cpu_idle: state=4294967295 cpu_id=1
145663          <idle>-0     (-----) [001] d..1 24577.673209: cpu_idle: state=0 cpu_id=1
145664          <idle>-0     (-----) [000] d..2 24577.673210: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
145665   kworker/u17:2-23076 (23076) [000] d..2 24577.673219: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
145666   kworker/u17:2-23076 (23076) [000] d..3 24577.673225: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
145667   kworker/u17:2-23076 (23076) [000] d..2 24577.673244: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
145668     kworker/0:1-13012 (13012) [000] d..2 24577.673249: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
145669     kworker/0:1-13012 (13012) [000] d..3 24577.673259: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
145670     kworker/0:1-13012 (13012) [000] d..2 24577.673268: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
145671            adbd-23485 ( 1007) [000] d..2 24577.673287: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145672          <idle>-0     (-----) [000] d..1 24577.673293: cpu_idle: state=0 cpu_id=0
145673          <idle>-0     (-----) [001] d.h3 24577.673332: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145674          <idle>-0     (-----) [001] d.h4 24577.673341: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145675          <idle>-0     (-----) [000] .n.1 24577.673346: cpu_idle: state=4294967295 cpu_id=0
145676          <idle>-0     (-----) [001] ...1 24577.673348: cpu_idle: state=4294967295 cpu_id=1
145677          <idle>-0     (-----) [001] d..1 24577.673351: cpu_idle: state=0 cpu_id=1
145678          <idle>-0     (-----) [000] d..2 24577.673352: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
145679   kworker/u17:2-23076 (23076) [000] d..2 24577.673360: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
145680   kworker/u17:2-23076 (23076) [000] d..3 24577.673366: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
145681   kworker/u17:2-23076 (23076) [000] d..2 24577.673385: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
145682     kworker/0:1-13012 (13012) [000] d..2 24577.673392: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
145683     kworker/0:1-13012 (13012) [000] d..3 24577.673401: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
145684          <idle>-0     (-----) [001] .n.1 24577.673406: cpu_idle: state=4294967295 cpu_id=1
145685          <idle>-0     (-----) [001] d..2 24577.673414: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
145686     kworker/0:1-13012 (13012) [000] d..2 24577.673417: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145687          <idle>-0     (-----) [000] d..1 24577.673422: cpu_idle: state=0 cpu_id=0
145688            adbd-23484 ( 1007) [001] d..2 24577.673426: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
145689            adbd-23484 ( 1007) [001] d..3 24577.673434: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
145690            adbd-23484 ( 1007) [001] d..2 24577.673484: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
145691          <idle>-0     (-----) [002] ...1 24577.673537: cpu_idle: state=4294967295 cpu_id=2
145692          <idle>-0     (-----) [002] d..1 24577.673540: cpu_idle: state=0 cpu_id=2
145693            adbd-1007  ( 1007) [001] d..2 24577.673553: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145694          <idle>-0     (-----) [001] d..1 24577.673563: cpu_idle: state=0 cpu_id=1
145695              ps-13422 (13422) [006] d..2 24577.673810: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145696              ps-13422 (13422) [006] dn.3 24577.673814: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145697              ps-13422 (13422) [006] d..2 24577.673817: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145698 shell svc 13418-13419 ( 1007) [006] d..2 24577.673822: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
145699 shell svc 13418-13419 ( 1007) [006] d..2 24577.673838: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145700          <idle>-0     (-----) [000] dnh2 24577.673843: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
145701              ps-13422 (13422) [006] d..2 24577.673843: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145702              ps-13422 (13422) [006] dn.3 24577.673846: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145703          <idle>-0     (-----) [000] .n.1 24577.673847: cpu_idle: state=4294967295 cpu_id=0
145704              ps-13422 (13422) [006] d..2 24577.673848: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145705          <idle>-0     (-----) [000] d..2 24577.673852: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
145706 shell svc 13418-13419 ( 1007) [006] d..2 24577.673855: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145707              ps-13422 (13422) [006] d..2 24577.673859: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145708              ps-13422 (13422) [006] dn.3 24577.673861: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145709              ps-13422 (13422) [006] d..2 24577.673863: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145710 shell svc 13418-13419 ( 1007) [006] d..2 24577.673869: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145711              ps-13422 (13422) [006] d..2 24577.673873: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145712              ps-13422 (13422) [006] dn.3 24577.673875: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145713              ps-13422 (13422) [006] d..2 24577.673877: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145714 shell svc 13418-13419 ( 1007) [006] d..2 24577.673883: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145715              ps-13422 (13422) [006] d..2 24577.673887: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145716              ps-13422 (13422) [006] dn.3 24577.673889: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145717              ps-13422 (13422) [006] d..2 24577.673891: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145718 shell svc 13418-13419 ( 1007) [006] d..2 24577.673897: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145719              ps-13422 (13422) [006] d..2 24577.673901: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145720              ps-13422 (13422) [006] dn.3 24577.673903: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145721              ps-13422 (13422) [006] d..2 24577.673905: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145722            adbd-1007  ( 1007) [000] d..1 24577.673910: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
145723 shell svc 13418-13419 ( 1007) [006] d..2 24577.673911: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145724              ps-13422 (13422) [006] d..2 24577.673915: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145725              ps-13422 (13422) [006] dn.3 24577.673917: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145726              ps-13422 (13422) [006] d..2 24577.673919: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145727 shell svc 13418-13419 ( 1007) [006] d..2 24577.673925: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145728              ps-13422 (13422) [006] d..2 24577.673928: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145729            adbd-1007  ( 1007) [000] d..2 24577.673930: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
145730              ps-13422 (13422) [006] dn.3 24577.673931: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145731              ps-13422 (13422) [006] d..2 24577.673932: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145732          <idle>-0     (-----) [001] .n.1 24577.673935: cpu_idle: state=4294967295 cpu_id=1
145733 shell svc 13418-13419 ( 1007) [006] d..2 24577.673938: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145734              ps-13422 (13422) [006] d..2 24577.673942: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145735          <idle>-0     (-----) [001] d..2 24577.673943: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
145736              ps-13422 (13422) [006] dn.3 24577.673944: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145737              ps-13422 (13422) [006] d..2 24577.673946: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145738 shell svc 13418-13419 ( 1007) [006] d..2 24577.673952: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145739              ps-13422 (13422) [006] d..2 24577.673955: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145740              ps-13422 (13422) [006] dn.3 24577.673957: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145741              ps-13422 (13422) [006] d..2 24577.673959: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145742 shell svc 13418-13419 ( 1007) [006] d..2 24577.673965: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145743              ps-13422 (13422) [006] d..2 24577.673968: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145744              ps-13422 (13422) [006] dn.3 24577.673971: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145745            adbd-1007  ( 1007) [000] d..2 24577.673971: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145746              ps-13422 (13422) [006] d..2 24577.673973: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145747          <idle>-0     (-----) [000] d..1 24577.673978: cpu_idle: state=0 cpu_id=0
145748 shell svc 13418-13419 ( 1007) [006] d..2 24577.673979: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145749              ps-13422 (13422) [006] d..2 24577.673982: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145750              ps-13422 (13422) [006] dn.3 24577.673985: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145751              ps-13422 (13422) [006] d..2 24577.673986: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145752 shell svc 13418-13419 ( 1007) [006] d..2 24577.673992: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145753              ps-13422 (13422) [006] d..2 24577.673996: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145754            adbd-23485 ( 1007) [001] d..2 24577.673998: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145755              ps-13422 (13422) [006] dn.3 24577.673998: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145756              ps-13422 (13422) [006] d..2 24577.674000: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145757 shell svc 13418-13419 ( 1007) [006] d..2 24577.674006: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145758              ps-13422 (13422) [006] d..2 24577.674010: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145759              ps-13422 (13422) [006] dn.3 24577.674012: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145760              ps-13422 (13422) [006] d..2 24577.674014: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145761          <idle>-0     (-----) [001] d.h4 24577.674016: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
145762 shell svc 13418-13419 ( 1007) [006] d..2 24577.674020: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145763              ps-13422 (13422) [006] d..2 24577.674023: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145764              ps-13422 (13422) [006] dn.3 24577.674026: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145765              ps-13422 (13422) [006] d..2 24577.674028: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145766 shell svc 13418-13419 ( 1007) [006] d..2 24577.674033: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145767              ps-13422 (13422) [006] d..2 24577.674038: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145768          <idle>-0     (-----) [001] dnh5 24577.674038: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
145769              ps-13422 (13422) [006] dn.3 24577.674040: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145770              ps-13422 (13422) [006] d..2 24577.674042: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145771          <idle>-0     (-----) [001] d..2 24577.674047: 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
145772 shell svc 13418-13419 ( 1007) [006] d..2 24577.674048: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145773              ps-13422 (13422) [006] d..2 24577.674052: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145774              ps-13422 (13422) [006] dn.3 24577.674054: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145775   kworker/u17:2-23076 (23076) [001] d..2 24577.674055: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
145776              ps-13422 (13422) [006] d..2 24577.674056: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145777 shell svc 13418-13419 ( 1007) [006] d..2 24577.674061: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145778   kworker/u17:2-23076 (23076) [001] d..3 24577.674062: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
145779              ps-13422 (13422) [006] d..2 24577.674065: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145780              ps-13422 (13422) [006] dn.3 24577.674067: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145781              ps-13422 (13422) [006] d..2 24577.674069: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145782 shell svc 13418-13419 ( 1007) [006] d..2 24577.674074: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145783              ps-13422 (13422) [006] d..2 24577.674078: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145784   kworker/u17:2-23076 (23076) [001] d..2 24577.674080: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
145785              ps-13422 (13422) [006] dn.3 24577.674080: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145786              ps-13422 (13422) [006] d..2 24577.674082: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145787     kworker/1:1-13091 (13091) [001] d..2 24577.674086: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
145788 shell svc 13418-13419 ( 1007) [006] d..2 24577.674088: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145789              ps-13422 (13422) [006] d..2 24577.674092: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145790              ps-13422 (13422) [006] dn.3 24577.674094: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145791              ps-13422 (13422) [006] d..2 24577.674097: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145792     kworker/1:1-13091 (13091) [001] d..3 24577.674103: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
145793 shell svc 13418-13419 ( 1007) [006] d..2 24577.674103: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145794              ps-13422 (13422) [006] d..2 24577.674106: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145795          <idle>-0     (-----) [000] .n.1 24577.674108: cpu_idle: state=4294967295 cpu_id=0
145796              ps-13422 (13422) [006] dn.3 24577.674109: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145797              ps-13422 (13422) [006] d..2 24577.674111: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145798          <idle>-0     (-----) [000] d..2 24577.674114: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
145799 shell svc 13418-13419 ( 1007) [006] d..2 24577.674116: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145800     kworker/1:1-13091 (13091) [001] d..2 24577.674119: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145801              ps-13422 (13422) [006] d..2 24577.674120: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145802              ps-13422 (13422) [006] dn.3 24577.674123: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145803              ps-13422 (13422) [006] d..2 24577.674124: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145804          <idle>-0     (-----) [001] d..1 24577.674129: cpu_idle: state=0 cpu_id=1
145805 shell svc 13418-13419 ( 1007) [006] d..2 24577.674130: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145806              ps-13422 (13422) [006] d..2 24577.674134: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145807              ps-13422 (13422) [006] dn.3 24577.674136: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145808              ps-13422 (13422) [006] d..2 24577.674139: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145809 shell svc 13418-13419 ( 1007) [006] d..2 24577.674144: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145810              ps-13422 (13422) [006] d..2 24577.674149: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145811              ps-13422 (13422) [006] dn.3 24577.674151: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145812              ps-13422 (13422) [006] d..2 24577.674153: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145813 shell svc 13418-13419 ( 1007) [006] d..2 24577.674159: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145814              ps-13422 (13422) [006] d..2 24577.674162: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145815              ps-13422 (13422) [006] dn.3 24577.674164: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145816              ps-13422 (13422) [006] d..2 24577.674167: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145817            adbd-23485 ( 1007) [000] d..2 24577.674169: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145818 shell svc 13418-13419 ( 1007) [006] d..2 24577.674173: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145819          <idle>-0     (-----) [000] d..1 24577.674175: cpu_idle: state=0 cpu_id=0
145820              ps-13422 (13422) [006] d..2 24577.674176: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145821          <idle>-0     (-----) [001] d.h3 24577.674178: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
145822              ps-13422 (13422) [006] dn.3 24577.674178: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145823              ps-13422 (13422) [006] d..2 24577.674180: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145824          <idle>-0     (-----) [001] dnh4 24577.674185: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
145825 shell svc 13418-13419 ( 1007) [006] d..2 24577.674186: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145826              ps-13422 (13422) [006] d..2 24577.674190: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145827          <idle>-0     (-----) [001] .n.1 24577.674191: cpu_idle: state=4294967295 cpu_id=1
145828              ps-13422 (13422) [006] dn.3 24577.674193: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145829              ps-13422 (13422) [006] d..2 24577.674195: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145830          <idle>-0     (-----) [001] d..2 24577.674197: 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
145831 shell svc 13418-13419 ( 1007) [006] d..2 24577.674200: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145832              ps-13422 (13422) [006] d..2 24577.674205: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145833   kworker/u17:2-23076 (23076) [001] d..2 24577.674205: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
145834              ps-13422 (13422) [006] dn.3 24577.674207: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145835              ps-13422 (13422) [006] d..2 24577.674209: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145836   kworker/u17:2-23076 (23076) [001] d..3 24577.674211: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
145837 shell svc 13418-13419 ( 1007) [006] d.s2 24577.674221: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
145838 shell svc 13418-13419 ( 1007) [006] d..2 24577.674234: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145839          <idle>-0     (-----) [000] dnH3 24577.674237: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
145840              ps-13422 (13422) [006] d..2 24577.674238: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145841          <idle>-0     (-----) [000] dns2 24577.674240: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
145842              ps-13422 (13422) [006] dn.3 24577.674241: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145843              ps-13422 (13422) [006] d..2 24577.674243: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145844   kworker/u17:2-23076 (23076) [001] d..2 24577.674247: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
145845          <idle>-0     (-----) [000] dns3 24577.674250: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
145846 shell svc 13418-13419 ( 1007) [006] d..2 24577.674250: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145847     kworker/1:1-13091 (13091) [001] d..2 24577.674253: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
145848              ps-13422 (13422) [006] d..2 24577.674254: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145849              ps-13422 (13422) [006] dn.3 24577.674256: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145850              ps-13422 (13422) [006] d..2 24577.674258: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145851          <idle>-0     (-----) [000] .n.1 24577.674262: cpu_idle: state=4294967295 cpu_id=0
145852     kworker/1:1-13091 (13091) [001] d..3 24577.674264: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
145853 shell svc 13418-13419 ( 1007) [006] d..2 24577.674264: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145854              ps-13422 (13422) [006] d..2 24577.674268: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145855          <idle>-0     (-----) [000] d..2 24577.674269: 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
145856              ps-13422 (13422) [006] dn.3 24577.674271: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145857              ps-13422 (13422) [006] d..2 24577.674272: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145858     rcu_preempt-7     (    7) [000] d..2 24577.674276: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
145859 shell svc 13418-13419 ( 1007) [006] d..2 24577.674278: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145860              ps-13422 (13422) [006] d..2 24577.674282: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145861              ps-13422 (13422) [006] dn.3 24577.674284: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145862              ps-13422 (13422) [006] d..2 24577.674286: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145863     kworker/1:1-13091 (13091) [001] d..2 24577.674289: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145864 shell svc 13418-13419 ( 1007) [006] d..2 24577.674292: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145865              ps-13422 (13422) [006] d..2 24577.674297: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145866          <idle>-0     (-----) [001] d..1 24577.674298: cpu_idle: state=0 cpu_id=1
145867              ps-13422 (13422) [006] dn.3 24577.674299: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145868              ps-13422 (13422) [006] d..2 24577.674301: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145869 shell svc 13418-13419 ( 1007) [006] d..2 24577.674306: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145870     rcu_preempt-7     (    7) [000] d..3 24577.674307: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
145871     rcu_preempt-7     (    7) [000] d..2 24577.674309: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=003
145872              ps-13422 (13422) [006] d..2 24577.674310: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145873              ps-13422 (13422) [006] dn.3 24577.674312: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145874          <idle>-0     (-----) [001] .n.1 24577.674312: cpu_idle: state=4294967295 cpu_id=1
145875              ps-13422 (13422) [006] d..2 24577.674314: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145876 shell svc 13418-13419 ( 1007) [006] d..2 24577.674320: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145877          <idle>-0     (-----) [001] d..2 24577.674320: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
145878              ps-13422 (13422) [006] d..2 24577.674324: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145879              ps-13422 (13422) [006] dn.3 24577.674326: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145880              ps-13422 (13422) [006] d..2 24577.674328: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145881 shell svc 13418-13419 ( 1007) [006] d..2 24577.674334: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145882     rcu_preempt-7     (    7) [000] d..3 24577.674336: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=001
145883              ps-13422 (13422) [006] d..2 24577.674338: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145884     rcu_preempt-7     (    7) [000] d..2 24577.674338: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
145885              ps-13422 (13422) [006] dn.3 24577.674340: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145886              ps-13422 (13422) [006] d..2 24577.674342: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145887 shell svc 13418-13419 ( 1007) [006] d..2 24577.674348: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145888     rcu_preempt-7     (    7) [000] d..3 24577.674351: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
145889              ps-13422 (13422) [006] d..2 24577.674352: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145890              ps-13422 (13422) [006] dn.3 24577.674354: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145891              ps-13422 (13422) [006] d..2 24577.674356: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145892     rcu_preempt-7     (    7) [000] d..2 24577.674360: 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
145893 shell svc 13418-13419 ( 1007) [006] d..2 24577.674361: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145894              ps-13422 (13422) [006] d..2 24577.674365: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145895         rcuop/2-29    (   29) [001] d.h3 24577.674367: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
145896              ps-13422 (13422) [006] dn.3 24577.674367: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145897              ps-13422 (13422) [006] d..2 24577.674369: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145898 shell svc 13418-13419 ( 1007) [006] d..2 24577.674375: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145899         rcuop/2-29    (   29) [001] dnh4 24577.674378: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
145900              ps-13422 (13422) [006] d..2 24577.674378: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145901              ps-13422 (13422) [006] dn.3 24577.674381: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145902              ps-13422 (13422) [006] d..2 24577.674383: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145903 shell svc 13418-13419 ( 1007) [006] d..2 24577.674388: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145904         rcuop/2-29    (   29) [001] d..2 24577.674390: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
145905              ps-13422 (13422) [006] d..2 24577.674393: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145906              ps-13422 (13422) [006] dn.3 24577.674395: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145907              ps-13422 (13422) [006] d..2 24577.674397: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145908   kworker/u17:2-23076 (23076) [001] d..2 24577.674402: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
145909 shell svc 13418-13419 ( 1007) [006] d..2 24577.674403: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145910              ps-13422 (13422) [006] d..2 24577.674407: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145911   kworker/u17:2-23076 (23076) [001] d..3 24577.674408: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
145912              ps-13422 (13422) [006] dn.3 24577.674409: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145913              ps-13422 (13422) [006] d..2 24577.674411: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145914 shell svc 13418-13419 ( 1007) [006] d..2 24577.674417: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145915              ps-13422 (13422) [006] d..2 24577.674421: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145916              ps-13422 (13422) [006] dn.3 24577.674423: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145917              ps-13422 (13422) [006] d..2 24577.674425: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145918   kworker/u17:2-23076 (23076) [001] d..2 24577.674429: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
145919 shell svc 13418-13419 ( 1007) [006] d..2 24577.674430: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145920         rcuop/2-29    (   29) [001] d..2 24577.674432: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
145921              ps-13422 (13422) [006] d..2 24577.674434: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145922              ps-13422 (13422) [006] dn.3 24577.674436: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145923              ps-13422 (13422) [006] d..2 24577.674438: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145924 shell svc 13418-13419 ( 1007) [006] d..2 24577.674443: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145925         rcuop/2-29    (   29) [001] d..3 24577.674444: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
145926              ps-13422 (13422) [006] d..2 24577.674447: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145927         rcuop/2-29    (   29) [001] d..2 24577.674448: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
145928              ps-13422 (13422) [006] dn.3 24577.674449: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145929              ps-13422 (13422) [006] d..2 24577.674451: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145930 shell svc 13418-13419 ( 1007) [006] d..2 24577.674461: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145931              ps-13422 (13422) [006] d..2 24577.674467: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145932              ps-13422 (13422) [006] dn.3 24577.674469: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145933         rcuop/2-29    (   29) [001] d..3 24577.674470: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
145934              ps-13422 (13422) [006] d..2 24577.674474: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145935         rcuop/2-29    (   29) [001] d..2 24577.674477: 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
145936 shell svc 13418-13419 ( 1007) [006] d..2 24577.674480: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145937              ps-13422 (13422) [006] d..2 24577.674483: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145938              ps-13422 (13422) [006] dn.3 24577.674486: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145939              ps-13422 (13422) [006] d..2 24577.674488: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145940 shell svc 13418-13419 ( 1007) [006] d..2 24577.674496: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145941              ps-13422 (13422) [006] d..2 24577.674502: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145942              ps-13422 (13422) [006] dn.3 24577.674504: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145943              ps-13422 (13422) [006] d..2 24577.674509: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145944 shell svc 13418-13419 ( 1007) [006] d..2 24577.674515: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145945  kworker/u16:10-23868 (23868) [000] .... 24577.674516: clk_set_rate: l3_cluster1_vote_clk 1478400000
145946              ps-13422 (13422) [006] d..2 24577.674518: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145947              ps-13422 (13422) [006] dn.3 24577.674521: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145948  kworker/u16:10-23868 (23868) [000] .... 24577.674521: clk_set_rate: l3_clk 1478400000
145949              ps-13422 (13422) [006] d..2 24577.674522: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145950 shell svc 13418-13419 ( 1007) [006] d..2 24577.674528: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145951              ps-13422 (13422) [006] d..2 24577.674532: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145952              ps-13422 (13422) [006] dn.3 24577.674534: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145953              ps-13422 (13422) [006] d..2 24577.674536: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145954 shell svc 13418-13419 ( 1007) [006] d..2 24577.674542: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145955              ps-13422 (13422) [006] d..2 24577.674545: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145956              ps-13422 (13422) [006] dn.3 24577.674547: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145957              ps-13422 (13422) [006] d..2 24577.674549: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145958 shell svc 13418-13419 ( 1007) [006] d..2 24577.674555: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145959              ps-13422 (13422) [006] d..2 24577.674558: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145960              ps-13422 (13422) [006] dn.3 24577.674560: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145961              ps-13422 (13422) [006] d..2 24577.674562: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145962 shell svc 13418-13419 ( 1007) [006] d..2 24577.674568: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145963              ps-13422 (13422) [006] d..2 24577.674572: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145964              ps-13422 (13422) [006] dn.3 24577.674574: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145965              ps-13422 (13422) [006] d..2 24577.674576: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145966 shell svc 13418-13419 ( 1007) [006] d..2 24577.674582: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
145967  kworker/u16:10-23868 (23868) [000] d..2 24577.674587: 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
145968            adbd-23485 ( 1007) [000] d..2 24577.674609: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145969          <idle>-0     (-----) [003] d.s3 24577.674612: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
145970          <idle>-0     (-----) [000] d..1 24577.674619: cpu_idle: state=0 cpu_id=0
145971          <idle>-0     (-----) [003] d.s4 24577.674619: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
145972          <idle>-0     (-----) [003] d.s4 24577.674626: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
145973          <idle>-0     (-----) [000] .n.1 24577.674631: cpu_idle: state=4294967295 cpu_id=0
145974          <idle>-0     (-----) [003] ...1 24577.674633: cpu_idle: state=4294967295 cpu_id=3
145975          <idle>-0     (-----) [003] d..1 24577.674637: cpu_idle: state=0 cpu_id=3
145976          <idle>-0     (-----) [000] d..2 24577.674638: 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
145977  kworker/u16:10-23868 (23868) [000] d..2 24577.674706: 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
145978          <idle>-0     (-----) [000] d..1 24577.674714: cpu_idle: state=0 cpu_id=0
145979         rcuop/6-61    (   61) [001] d..2 24577.674827: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
145980         rcuop/0-10    (   10) [001] d..2 24577.674832: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
145981         rcuop/0-10    (   10) [001] d..3 24577.674859: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
145982          <idle>-0     (-----) [000] .n.1 24577.674865: cpu_idle: state=4294967295 cpu_id=0
145983         rcuop/0-10    (   10) [001] d..2 24577.674868: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
145984          <idle>-0     (-----) [000] d..2 24577.674872: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
145985         rcuop/3-37    (   37) [001] d..2 24577.674878: 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
145986     rcu_preempt-7     (    7) [001] d..2 24577.674888: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
145987         rcuop/1-21    (   21) [000] d..2 24577.674891: 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
145988     kworker/1:1-13091 (13091) [001] d..2 24577.674896: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
145989          <idle>-0     (-----) [000] d..1 24577.674898: cpu_idle: state=0 cpu_id=0
145990     kworker/1:1-13091 (13091) [001] d..3 24577.674913: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
145991          <idle>-0     (-----) [000] .n.1 24577.674918: cpu_idle: state=4294967295 cpu_id=0
145992          <idle>-0     (-----) [000] d..2 24577.674924: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
145993     kworker/1:1-13091 (13091) [001] d..2 24577.674930: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145994              ps-13422 (13422) [006] d..2 24577.674931: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145995              ps-13422 (13422) [006] dn.3 24577.674935: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
145996            adbd-23484 ( 1007) [000] d..2 24577.674937: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
145997              ps-13422 (13422) [006] d..2 24577.674938: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
145998          <idle>-0     (-----) [001] d..1 24577.674939: cpu_idle: state=0 cpu_id=1
145999            adbd-23484 ( 1007) [000] d..3 24577.674944: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
146000 shell svc 13418-13419 ( 1007) [006] d..2 24577.674946: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146001              ps-13422 (13422) [006] d..2 24577.674951: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146002              ps-13422 (13422) [006] dn.3 24577.674954: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146003              ps-13422 (13422) [006] d..2 24577.674956: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146004 shell svc 13418-13419 ( 1007) [006] d..2 24577.674962: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146005              ps-13422 (13422) [006] d..2 24577.674966: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146006              ps-13422 (13422) [006] dn.3 24577.674969: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146007              ps-13422 (13422) [006] d..2 24577.674971: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146008 shell svc 13418-13419 ( 1007) [006] d..2 24577.674976: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146009              ps-13422 (13422) [006] d..2 24577.674980: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146010              ps-13422 (13422) [006] dn.3 24577.674983: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146011              ps-13422 (13422) [006] d..2 24577.674984: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146012 shell svc 13418-13419 ( 1007) [006] d..2 24577.674990: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146013            adbd-23484 ( 1007) [000] d..2 24577.674992: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
146014              ps-13422 (13422) [006] d..2 24577.674994: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146015              ps-13422 (13422) [006] dn.3 24577.674996: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146016              ps-13422 (13422) [006] d..2 24577.674998: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146017 shell svc 13418-13419 ( 1007) [006] d..2 24577.675004: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146018              ps-13422 (13422) [006] d..2 24577.675007: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146019              ps-13422 (13422) [006] dn.3 24577.675009: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146020              ps-13422 (13422) [006] d..2 24577.675011: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146021 shell svc 13418-13419 ( 1007) [006] d..2 24577.675017: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146022              ps-13422 (13422) [006] d..2 24577.675021: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146023              ps-13422 (13422) [006] dn.3 24577.675023: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146024              ps-13422 (13422) [006] d..2 24577.675025: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146025 shell svc 13418-13419 ( 1007) [006] d..2 24577.675031: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146026              ps-13422 (13422) [006] d..2 24577.675035: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146027              ps-13422 (13422) [006] dn.3 24577.675037: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146028              ps-13422 (13422) [006] d..2 24577.675039: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146029 shell svc 13418-13419 ( 1007) [006] d..2 24577.675045: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146030              ps-13422 (13422) [006] d..2 24577.675049: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146031              ps-13422 (13422) [006] dn.3 24577.675051: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146032              ps-13422 (13422) [006] d..2 24577.675053: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146033 shell svc 13418-13419 ( 1007) [006] d..2 24577.675059: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146034              ps-13422 (13422) [006] d..2 24577.675063: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146035              ps-13422 (13422) [006] dn.3 24577.675065: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146036              ps-13422 (13422) [006] d..2 24577.675067: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146037 shell svc 13418-13419 ( 1007) [006] d..2 24577.675073: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146038              ps-13422 (13422) [006] d..2 24577.675077: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146039              ps-13422 (13422) [006] dn.3 24577.675079: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146040              ps-13422 (13422) [006] d..2 24577.675081: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146041 shell svc 13418-13419 ( 1007) [006] d..2 24577.675087: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146042              ps-13422 (13422) [006] d..2 24577.675091: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146043              ps-13422 (13422) [006] dn.3 24577.675093: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146044              ps-13422 (13422) [006] d..2 24577.675095: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146045 shell svc 13418-13419 ( 1007) [006] d..2 24577.675101: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146046              ps-13422 (13422) [006] d..2 24577.675105: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146047              ps-13422 (13422) [006] dn.3 24577.675108: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146048              ps-13422 (13422) [006] d..2 24577.675110: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146049 shell svc 13418-13419 ( 1007) [006] d..2 24577.675116: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146050              ps-13422 (13422) [006] d..2 24577.675119: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146051              ps-13422 (13422) [006] dn.3 24577.675122: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146052              ps-13422 (13422) [006] d..2 24577.675123: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146053 shell svc 13418-13419 ( 1007) [006] d..2 24577.675129: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146054              ps-13422 (13422) [006] d..2 24577.675133: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146055            adbd-1007  ( 1007) [000] d..1 24577.675135: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
146056              ps-13422 (13422) [006] dn.3 24577.675136: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146057              ps-13422 (13422) [006] d..2 24577.675138: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146058 shell svc 13418-13419 ( 1007) [006] d..2 24577.675144: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146059            adbd-1007  ( 1007) [000] d..2 24577.675156: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
146060          <idle>-0     (-----) [001] .n.1 24577.675161: cpu_idle: state=4294967295 cpu_id=1
146061          <idle>-0     (-----) [001] d..2 24577.675168: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
146062            adbd-1007  ( 1007) [000] d..2 24577.675197: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146063          <idle>-0     (-----) [000] d..1 24577.675206: cpu_idle: state=0 cpu_id=0
146064            adbd-23485 ( 1007) [001] d..2 24577.675223: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146065          <idle>-0     (-----) [001] d.h4 24577.675240: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146066          <idle>-0     (-----) [001] dnh5 24577.675247: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146067          <idle>-0     (-----) [001] d..2 24577.675256: 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
146068   kworker/u17:2-23076 (23076) [001] d..2 24577.675263: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146069   kworker/u17:2-23076 (23076) [001] d..3 24577.675269: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146070   kworker/u17:2-23076 (23076) [001] d..2 24577.675286: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
146071     kworker/1:1-13091 (13091) [001] d..2 24577.675291: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
146072     kworker/1:1-13091 (13091) [001] d..3 24577.675308: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
146073          <idle>-0     (-----) [000] .n.1 24577.675314: cpu_idle: state=4294967295 cpu_id=0
146074          <idle>-0     (-----) [000] d..2 24577.675321: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
146075     kworker/1:1-13091 (13091) [001] d..2 24577.675323: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146076          <idle>-0     (-----) [001] d..1 24577.675331: cpu_idle: state=0 cpu_id=1
146077            adbd-23485 ( 1007) [000] d..2 24577.675380: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146078          <idle>-0     (-----) [000] d..1 24577.675388: cpu_idle: state=0 cpu_id=0
146079          <idle>-0     (-----) [001] d.h3 24577.675456: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146080          <idle>-0     (-----) [001] dnh4 24577.675462: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146081          <idle>-0     (-----) [001] .n.1 24577.675468: cpu_idle: state=4294967295 cpu_id=1
146082          <idle>-0     (-----) [001] d..2 24577.675475: 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
146083   kworker/u17:2-23076 (23076) [001] d..2 24577.675482: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146084   kworker/u17:2-23076 (23076) [001] d..3 24577.675488: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146085   kworker/u17:2-23076 (23076) [001] d..2 24577.675505: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
146086     kworker/1:1-13091 (13091) [001] d..2 24577.675511: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
146087              ps-13422 (13422) [006] d..2 24577.675513: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146088              ps-13422 (13422) [006] dn.3 24577.675516: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146089              ps-13422 (13422) [006] d..2 24577.675519: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146090     kworker/1:1-13091 (13091) [001] d..3 24577.675524: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
146091 shell svc 13418-13419 ( 1007) [006] d..2 24577.675528: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146092          <idle>-0     (-----) [000] .n.1 24577.675529: cpu_idle: state=4294967295 cpu_id=0
146093              ps-13422 (13422) [006] d..2 24577.675533: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146094              ps-13422 (13422) [006] dn.3 24577.675535: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146095              ps-13422 (13422) [006] d..2 24577.675537: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146096          <idle>-0     (-----) [000] d..2 24577.675538: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
146097     kworker/1:1-13091 (13091) [001] d..2 24577.675541: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146098 shell svc 13418-13419 ( 1007) [006] d..2 24577.675543: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146099              ps-13422 (13422) [006] d..2 24577.675548: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146100          <idle>-0     (-----) [001] d..1 24577.675548: cpu_idle: state=0 cpu_id=1
146101              ps-13422 (13422) [006] dn.3 24577.675550: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146102              ps-13422 (13422) [006] d..2 24577.675552: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146103 shell svc 13418-13419 ( 1007) [006] d..2 24577.675558: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146104            adbd-23485 ( 1007) [000] d..2 24577.675559: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146105              ps-13422 (13422) [006] d..2 24577.675562: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146106              ps-13422 (13422) [006] dn.3 24577.675564: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146107              ps-13422 (13422) [006] d..2 24577.675566: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146108          <idle>-0     (-----) [000] d..1 24577.675566: cpu_idle: state=0 cpu_id=0
146109 shell svc 13418-13419 ( 1007) [006] d..2 24577.675572: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146110              ps-13422 (13422) [006] d..2 24577.675576: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146111              ps-13422 (13422) [006] dn.3 24577.675578: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146112              ps-13422 (13422) [006] d..2 24577.675580: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146113 shell svc 13418-13419 ( 1007) [006] d..2 24577.675586: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146114              ps-13422 (13422) [006] d..2 24577.675589: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146115              ps-13422 (13422) [006] dn.3 24577.675592: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146116              ps-13422 (13422) [006] d..2 24577.675594: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146117 shell svc 13418-13419 ( 1007) [006] d..2 24577.675599: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146118              ps-13422 (13422) [006] d..2 24577.675603: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146119              ps-13422 (13422) [006] dn.3 24577.675605: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146120              ps-13422 (13422) [006] d..2 24577.675607: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146121 shell svc 13418-13419 ( 1007) [006] d..2 24577.675613: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146122              ps-13422 (13422) [006] d..2 24577.675617: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146123              ps-13422 (13422) [006] dn.3 24577.675619: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146124              ps-13422 (13422) [006] d..2 24577.675621: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146125 shell svc 13418-13419 ( 1007) [006] d..2 24577.675627: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146126              ps-13422 (13422) [006] d..2 24577.675631: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146127              ps-13422 (13422) [006] dn.3 24577.675633: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146128              ps-13422 (13422) [006] d..2 24577.675635: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146129 shell svc 13418-13419 ( 1007) [006] d..2 24577.675641: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146130              ps-13422 (13422) [006] d..2 24577.675645: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146131              ps-13422 (13422) [006] dn.3 24577.675647: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146132          <idle>-0     (-----) [001] d.h3 24577.675647: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146133              ps-13422 (13422) [006] d..2 24577.675649: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146134          <idle>-0     (-----) [001] dnh4 24577.675653: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146135 shell svc 13418-13419 ( 1007) [006] d..2 24577.675655: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146136          <idle>-0     (-----) [001] .n.1 24577.675659: cpu_idle: state=4294967295 cpu_id=1
146137              ps-13422 (13422) [006] d..2 24577.675659: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146138              ps-13422 (13422) [006] dn.3 24577.675661: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146139              ps-13422 (13422) [006] d..2 24577.675663: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146140          <idle>-0     (-----) [001] d..2 24577.675666: 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
146141 shell svc 13418-13419 ( 1007) [006] d..2 24577.675669: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146142              ps-13422 (13422) [006] d..2 24577.675673: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146143   kworker/u17:2-23076 (23076) [001] d..2 24577.675673: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146144              ps-13422 (13422) [006] dn.3 24577.675675: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146145              ps-13422 (13422) [006] d..2 24577.675677: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146146   kworker/u17:2-23076 (23076) [001] d..3 24577.675679: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146147 shell svc 13418-13419 ( 1007) [006] d..2 24577.675683: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146148              ps-13422 (13422) [006] d..2 24577.675686: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146149              ps-13422 (13422) [006] dn.3 24577.675689: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146150              ps-13422 (13422) [006] d..2 24577.675690: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146151   kworker/u17:2-23076 (23076) [001] d..2 24577.675696: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
146152 shell svc 13418-13419 ( 1007) [006] d..2 24577.675697: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146153              ps-13422 (13422) [006] d..2 24577.675701: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146154     kworker/1:1-13091 (13091) [001] d..2 24577.675703: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
146155              ps-13422 (13422) [006] dn.3 24577.675703: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146156              ps-13422 (13422) [006] d..2 24577.675705: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146157 shell svc 13418-13419 ( 1007) [006] d..2 24577.675710: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146158     kworker/1:1-13091 (13091) [001] d..3 24577.675717: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
146159          <idle>-0     (-----) [000] .n.1 24577.675720: cpu_idle: state=4294967295 cpu_id=0
146160          <idle>-0     (-----) [000] d..2 24577.675727: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
146161     kworker/1:1-13091 (13091) [001] d..2 24577.675733: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146162            adbd-23484 ( 1007) [000] d..2 24577.675739: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
146163          <idle>-0     (-----) [001] d..1 24577.675740: cpu_idle: state=0 cpu_id=1
146164            adbd-23484 ( 1007) [000] d..3 24577.675746: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
146165              ps-13422 (13422) [006] d..2 24577.675753: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146166              ps-13422 (13422) [006] dn.3 24577.675756: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146167              ps-13422 (13422) [006] d..2 24577.675758: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146168 shell svc 13418-13419 ( 1007) [006] d..2 24577.675765: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146169            adbd-23484 ( 1007) [000] d..2 24577.675792: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
146170              ps-13422 (13422) [006] d..2 24577.675804: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146171              ps-13422 (13422) [006] dn.3 24577.675807: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146172              ps-13422 (13422) [006] d..2 24577.675809: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146173 shell svc 13418-13419 ( 1007) [006] d..2 24577.675816: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146174            adbd-1007  ( 1007) [000] d..1 24577.675876: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
146175            adbd-1007  ( 1007) [000] d..2 24577.675897: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
146176          <idle>-0     (-----) [001] .n.1 24577.675901: cpu_idle: state=4294967295 cpu_id=1
146177          <idle>-0     (-----) [001] d..2 24577.675909: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
146178            adbd-1007  ( 1007) [000] d..2 24577.675936: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146179          <idle>-0     (-----) [000] d..1 24577.675946: cpu_idle: state=0 cpu_id=0
146180            adbd-23485 ( 1007) [001] d..2 24577.675962: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146181          <idle>-0     (-----) [001] d.h4 24577.675979: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146182          <idle>-0     (-----) [001] dnh5 24577.675986: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146183          <idle>-0     (-----) [001] d..2 24577.675994: 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
146184   kworker/u17:2-23076 (23076) [001] d..2 24577.676002: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146185   kworker/u17:2-23076 (23076) [001] d..3 24577.676007: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146186   kworker/u17:2-23076 (23076) [001] d..2 24577.676024: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
146187     kworker/1:1-13091 (13091) [001] d..2 24577.676030: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
146188     kworker/1:1-13091 (13091) [001] d..3 24577.676047: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
146189          <idle>-0     (-----) [000] .n.1 24577.676052: cpu_idle: state=4294967295 cpu_id=0
146190          <idle>-0     (-----) [000] d..2 24577.676060: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
146191     kworker/1:1-13091 (13091) [001] d..2 24577.676063: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146192          <idle>-0     (-----) [001] d..1 24577.676070: cpu_idle: state=0 cpu_id=1
146193            adbd-23485 ( 1007) [000] d..2 24577.676117: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146194          <idle>-0     (-----) [000] d..1 24577.676125: cpu_idle: state=0 cpu_id=0
146195          <idle>-0     (-----) [001] d.h3 24577.676151: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146196          <idle>-0     (-----) [001] dnh4 24577.676160: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146197          <idle>-0     (-----) [001] .n.1 24577.676166: cpu_idle: state=4294967295 cpu_id=1
146198          <idle>-0     (-----) [001] d..2 24577.676173: 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
146199   kworker/u17:2-23076 (23076) [001] d..2 24577.676181: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146200   kworker/u17:2-23076 (23076) [001] d..3 24577.676187: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146201              ps-13422 (13422) [006] d..2 24577.676194: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146202              ps-13422 (13422) [006] dn.3 24577.676197: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146203              ps-13422 (13422) [006] d..2 24577.676200: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146204   kworker/u17:2-23076 (23076) [001] d..2 24577.676204: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
146205 shell svc 13418-13419 ( 1007) [006] d..2 24577.676209: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146206     kworker/1:1-13091 (13091) [001] d..2 24577.676210: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
146207              ps-13422 (13422) [006] d..2 24577.676213: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146208              ps-13422 (13422) [006] dn.3 24577.676215: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146209              ps-13422 (13422) [006] d..2 24577.676217: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146210     kworker/1:1-13091 (13091) [001] d..3 24577.676219: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
146211 shell svc 13418-13419 ( 1007) [006] d..2 24577.676224: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146212          <idle>-0     (-----) [000] .n.1 24577.676224: cpu_idle: state=4294967295 cpu_id=0
146213              ps-13422 (13422) [006] d..2 24577.676227: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146214              ps-13422 (13422) [006] dn.3 24577.676230: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146215              ps-13422 (13422) [006] d..2 24577.676231: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146216          <idle>-0     (-----) [000] d..2 24577.676232: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
146217     kworker/1:1-13091 (13091) [001] d..2 24577.676235: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146218 shell svc 13418-13419 ( 1007) [006] d..2 24577.676237: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146219              ps-13422 (13422) [006] d..2 24577.676241: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146220          <idle>-0     (-----) [001] d..1 24577.676242: cpu_idle: state=0 cpu_id=1
146221              ps-13422 (13422) [006] dn.3 24577.676243: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146222              ps-13422 (13422) [006] d..2 24577.676245: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146223 shell svc 13418-13419 ( 1007) [006] d..2 24577.676251: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146224            adbd-23485 ( 1007) [000] d..2 24577.676252: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146225              ps-13422 (13422) [006] d..2 24577.676255: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146226              ps-13422 (13422) [006] dn.3 24577.676257: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146227          <idle>-0     (-----) [000] d..1 24577.676259: cpu_idle: state=0 cpu_id=0
146228              ps-13422 (13422) [006] d..2 24577.676259: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146229 shell svc 13418-13419 ( 1007) [006] d..2 24577.676266: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146230              ps-13422 (13422) [006] d..2 24577.676269: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146231              ps-13422 (13422) [006] dn.3 24577.676271: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146232              ps-13422 (13422) [006] d..2 24577.676273: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146233 shell svc 13418-13419 ( 1007) [006] d..2 24577.676279: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146234              ps-13422 (13422) [006] d..2 24577.676283: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146235              ps-13422 (13422) [006] dn.3 24577.676285: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146236              ps-13422 (13422) [006] d..2 24577.676287: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146237 shell svc 13418-13419 ( 1007) [006] d..2 24577.676293: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146238              ps-13422 (13422) [006] d..2 24577.676297: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146239              ps-13422 (13422) [006] dn.3 24577.676299: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146240              ps-13422 (13422) [006] d..2 24577.676301: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146241 shell svc 13418-13419 ( 1007) [006] d..2 24577.676307: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146242              ps-13422 (13422) [006] d..2 24577.676310: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146243              ps-13422 (13422) [006] dn.3 24577.676313: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146244              ps-13422 (13422) [006] d..2 24577.676314: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146245 shell svc 13418-13419 ( 1007) [006] d..2 24577.676320: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146246              ps-13422 (13422) [006] d..2 24577.676324: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146247              ps-13422 (13422) [006] dn.3 24577.676326: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146248              ps-13422 (13422) [006] d..2 24577.676328: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146249 shell svc 13418-13419 ( 1007) [006] d..2 24577.676334: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146250          <idle>-0     (-----) [001] d.h3 24577.676337: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146251              ps-13422 (13422) [006] d..2 24577.676338: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146252              ps-13422 (13422) [006] dn.3 24577.676340: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146253              ps-13422 (13422) [006] d..2 24577.676342: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146254          <idle>-0     (-----) [001] dnh4 24577.676343: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146255 shell svc 13418-13419 ( 1007) [006] d..2 24577.676348: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146256          <idle>-0     (-----) [001] .n.1 24577.676348: cpu_idle: state=4294967295 cpu_id=1
146257              ps-13422 (13422) [006] d..2 24577.676352: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146258              ps-13422 (13422) [006] dn.3 24577.676354: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146259          <idle>-0     (-----) [001] d..2 24577.676355: 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
146260              ps-13422 (13422) [006] d..2 24577.676356: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146261 shell svc 13418-13419 ( 1007) [006] d..2 24577.676362: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146262   kworker/u17:2-23076 (23076) [001] d..2 24577.676363: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146263              ps-13422 (13422) [006] d..2 24577.676366: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146264              ps-13422 (13422) [006] dn.3 24577.676368: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146265   kworker/u17:2-23076 (23076) [001] d..3 24577.676368: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146266              ps-13422 (13422) [006] d..2 24577.676370: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146267 shell svc 13418-13419 ( 1007) [006] d..2 24577.676376: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146268              ps-13422 (13422) [006] d..2 24577.676379: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146269              ps-13422 (13422) [006] dn.3 24577.676381: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146270              ps-13422 (13422) [006] d..2 24577.676383: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146271   kworker/u17:2-23076 (23076) [001] d..2 24577.676386: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
146272 shell svc 13418-13419 ( 1007) [006] d..2 24577.676389: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146273              ps-13422 (13422) [006] d..2 24577.676392: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146274     kworker/1:1-13091 (13091) [001] d..2 24577.676394: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
146275              ps-13422 (13422) [006] dn.3 24577.676394: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146276              ps-13422 (13422) [006] d..2 24577.676396: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146277 shell svc 13418-13419 ( 1007) [006] d..2 24577.676402: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146278     kworker/1:1-13091 (13091) [001] d..3 24577.676404: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
146279              ps-13422 (13422) [006] d..2 24577.676406: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146280              ps-13422 (13422) [006] dn.3 24577.676408: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146281          <idle>-0     (-----) [000] .n.1 24577.676409: cpu_idle: state=4294967295 cpu_id=0
146282              ps-13422 (13422) [006] d..2 24577.676410: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146283          <idle>-0     (-----) [000] d..2 24577.676416: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
146284 shell svc 13418-13419 ( 1007) [006] d..2 24577.676416: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146285     kworker/1:1-13091 (13091) [001] d..2 24577.676419: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146286          <idle>-0     (-----) [001] d..1 24577.676426: cpu_idle: state=0 cpu_id=1
146287            adbd-23484 ( 1007) [000] d..2 24577.676427: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
146288            adbd-23484 ( 1007) [000] d..3 24577.676434: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
146289            adbd-23484 ( 1007) [000] d..2 24577.676481: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
146290            adbd-1007  ( 1007) [000] d..1 24577.676564: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
146291            adbd-1007  ( 1007) [000] d..2 24577.676585: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
146292          <idle>-0     (-----) [001] .n.1 24577.676590: cpu_idle: state=4294967295 cpu_id=1
146293          <idle>-0     (-----) [001] d..2 24577.676597: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
146294            adbd-1007  ( 1007) [000] d..2 24577.676625: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146295          <idle>-0     (-----) [000] d..1 24577.676635: cpu_idle: state=0 cpu_id=0
146296            adbd-23485 ( 1007) [001] d..2 24577.676650: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146297          <idle>-0     (-----) [001] d.h4 24577.676668: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146298          <idle>-0     (-----) [001] dnh5 24577.676674: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146299          <idle>-0     (-----) [001] d..2 24577.676683: 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
146300   kworker/u17:2-23076 (23076) [001] d..2 24577.676690: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146301   kworker/u17:2-23076 (23076) [001] d..3 24577.676695: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146302   kworker/u17:2-23076 (23076) [001] d..2 24577.676713: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
146303     kworker/1:1-13091 (13091) [001] d..2 24577.676718: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
146304     kworker/1:1-13091 (13091) [001] d..3 24577.676735: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
146305          <idle>-0     (-----) [000] .n.1 24577.676740: cpu_idle: state=4294967295 cpu_id=0
146306          <idle>-0     (-----) [000] d..2 24577.676748: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
146307     kworker/1:1-13091 (13091) [001] d..2 24577.676750: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146308          <idle>-0     (-----) [001] d..1 24577.676758: cpu_idle: state=0 cpu_id=1
146309            adbd-23485 ( 1007) [000] d..2 24577.676804: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146310          <idle>-0     (-----) [000] d..1 24577.676813: cpu_idle: state=0 cpu_id=0
146311          <idle>-0     (-----) [001] d.h3 24577.676836: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146312          <idle>-0     (-----) [001] dnh4 24577.676843: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146313              ps-13422 (13422) [006] d..2 24577.676845: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146314          <idle>-0     (-----) [001] .n.1 24577.676848: cpu_idle: state=4294967295 cpu_id=1
146315              ps-13422 (13422) [006] dn.3 24577.676849: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146316              ps-13422 (13422) [006] d..2 24577.676851: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146317          <idle>-0     (-----) [001] d..2 24577.676855: 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
146318 shell svc 13418-13419 ( 1007) [006] d..2 24577.676860: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146319   kworker/u17:2-23076 (23076) [001] d..2 24577.676863: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146320              ps-13422 (13422) [006] d..2 24577.676865: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146321              ps-13422 (13422) [006] dn.3 24577.676867: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146322   kworker/u17:2-23076 (23076) [001] d..3 24577.676868: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146323              ps-13422 (13422) [006] d..2 24577.676869: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146324 shell svc 13418-13419 ( 1007) [006] d..2 24577.676875: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146325              ps-13422 (13422) [006] d..2 24577.676879: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146326              ps-13422 (13422) [006] dn.3 24577.676881: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146327              ps-13422 (13422) [006] d..2 24577.676883: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146328   kworker/u17:2-23076 (23076) [001] d..2 24577.676886: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
146329 shell svc 13418-13419 ( 1007) [006] d..2 24577.676889: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146330     kworker/1:1-13091 (13091) [001] d..2 24577.676891: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
146331              ps-13422 (13422) [006] d..2 24577.676892: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146332              ps-13422 (13422) [006] dn.3 24577.676894: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146333              ps-13422 (13422) [006] d..2 24577.676896: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146334     kworker/1:1-13091 (13091) [001] d..3 24577.676901: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
146335 shell svc 13418-13419 ( 1007) [006] d..2 24577.676902: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146336              ps-13422 (13422) [006] d..2 24577.676905: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146337          <idle>-0     (-----) [000] .n.1 24577.676907: cpu_idle: state=4294967295 cpu_id=0
146338              ps-13422 (13422) [006] dn.3 24577.676908: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146339              ps-13422 (13422) [006] d..2 24577.676909: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146340          <idle>-0     (-----) [000] d..2 24577.676914: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
146341 shell svc 13418-13419 ( 1007) [006] d..2 24577.676915: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146342     kworker/1:1-13091 (13091) [001] d..2 24577.676918: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146343              ps-13422 (13422) [006] d..2 24577.676919: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146344              ps-13422 (13422) [006] dn.3 24577.676921: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146345              ps-13422 (13422) [006] d..2 24577.676923: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146346          <idle>-0     (-----) [001] d..1 24577.676925: cpu_idle: state=0 cpu_id=1
146347 shell svc 13418-13419 ( 1007) [006] d..2 24577.676928: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146348              ps-13422 (13422) [006] d..2 24577.676932: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146349            adbd-23485 ( 1007) [000] d..2 24577.676934: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146350              ps-13422 (13422) [006] dn.3 24577.676934: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146351              ps-13422 (13422) [006] d..2 24577.676936: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146352          <idle>-0     (-----) [000] d..1 24577.676941: cpu_idle: state=0 cpu_id=0
146353 shell svc 13418-13419 ( 1007) [006] d..2 24577.676942: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146354              ps-13422 (13422) [006] d..2 24577.676946: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146355              ps-13422 (13422) [006] dn.3 24577.676948: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146356              ps-13422 (13422) [006] d..2 24577.676950: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146357 shell svc 13418-13419 ( 1007) [006] d..2 24577.676956: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146358              ps-13422 (13422) [006] d..2 24577.676960: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146359              ps-13422 (13422) [006] dn.3 24577.676962: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146360              ps-13422 (13422) [006] d..2 24577.676964: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146361 shell svc 13418-13419 ( 1007) [006] d..2 24577.676969: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146362              ps-13422 (13422) [006] d..2 24577.676973: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146363              ps-13422 (13422) [006] dn.3 24577.676975: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146364              ps-13422 (13422) [006] d..2 24577.676977: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146365 shell svc 13418-13419 ( 1007) [006] d..2 24577.676983: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146366              ps-13422 (13422) [006] d..2 24577.676987: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146367              ps-13422 (13422) [006] dn.3 24577.676989: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146368              ps-13422 (13422) [006] d..2 24577.676990: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146369          <idle>-0     (-----) [001] d.h3 24577.676992: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146370 shell svc 13418-13419 ( 1007) [006] d..2 24577.676996: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146371          <idle>-0     (-----) [001] dnh4 24577.676998: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146372              ps-13422 (13422) [006] d..2 24577.677000: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146373              ps-13422 (13422) [006] dn.3 24577.677002: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146374          <idle>-0     (-----) [001] .n.1 24577.677003: cpu_idle: state=4294967295 cpu_id=1
146375              ps-13422 (13422) [006] d..2 24577.677004: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146376 shell svc 13418-13419 ( 1007) [006] d..2 24577.677010: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146377          <idle>-0     (-----) [001] d..2 24577.677010: 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
146378              ps-13422 (13422) [006] d..2 24577.677014: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146379              ps-13422 (13422) [006] dn.3 24577.677016: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146380   kworker/u17:2-23076 (23076) [001] d..2 24577.677017: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146381              ps-13422 (13422) [006] d..2 24577.677018: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146382   kworker/u17:2-23076 (23076) [001] d..3 24577.677023: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146383 shell svc 13418-13419 ( 1007) [006] d..2 24577.677023: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146384              ps-13422 (13422) [006] d..2 24577.677027: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146385              ps-13422 (13422) [006] dn.3 24577.677029: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146386              ps-13422 (13422) [006] d..2 24577.677032: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146387 shell svc 13418-13419 ( 1007) [006] d..2 24577.677037: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146388   kworker/u17:2-23076 (23076) [001] d..2 24577.677040: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
146389              ps-13422 (13422) [006] d..2 24577.677041: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146390              ps-13422 (13422) [006] dn.3 24577.677043: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146391              ps-13422 (13422) [006] d..2 24577.677045: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146392     kworker/1:1-13091 (13091) [001] d..2 24577.677047: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
146393 shell svc 13418-13419 ( 1007) [006] d..2 24577.677051: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146394              ps-13422 (13422) [006] d..2 24577.677055: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146395     kworker/1:1-13091 (13091) [001] d..3 24577.677056: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
146396              ps-13422 (13422) [006] dn.3 24577.677057: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146397              ps-13422 (13422) [006] d..2 24577.677059: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146398          <idle>-0     (-----) [000] .n.1 24577.677061: cpu_idle: state=4294967295 cpu_id=0
146399 shell svc 13418-13419 ( 1007) [006] d..2 24577.677064: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146400          <idle>-0     (-----) [000] d..2 24577.677068: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
146401              ps-13422 (13422) [006] d..2 24577.677068: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146402              ps-13422 (13422) [006] dn.3 24577.677070: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146403     kworker/1:1-13091 (13091) [001] d..2 24577.677072: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146404              ps-13422 (13422) [006] d..2 24577.677072: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146405 shell svc 13418-13419 ( 1007) [006] d..2 24577.677078: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146406            adbd-23484 ( 1007) [000] d..2 24577.677079: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
146407          <idle>-0     (-----) [001] d..1 24577.677079: cpu_idle: state=0 cpu_id=1
146408              ps-13422 (13422) [006] d..2 24577.677081: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146409              ps-13422 (13422) [006] dn.3 24577.677083: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146410              ps-13422 (13422) [006] d..2 24577.677086: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146411            adbd-23484 ( 1007) [000] d..3 24577.677087: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
146412 shell svc 13418-13419 ( 1007) [006] d..2 24577.677091: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146413              ps-13422 (13422) [006] d..2 24577.677095: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146414              ps-13422 (13422) [006] dn.3 24577.677097: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146415              ps-13422 (13422) [006] d..2 24577.677099: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146416 shell svc 13418-13419 ( 1007) [006] d..2 24577.677105: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146417            adbd-23484 ( 1007) [000] d..2 24577.677133: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
146418            adbd-1007  ( 1007) [000] d..1 24577.677218: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
146419            adbd-1007  ( 1007) [000] d..2 24577.677239: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
146420          <idle>-0     (-----) [001] .n.1 24577.677244: cpu_idle: state=4294967295 cpu_id=1
146421          <idle>-0     (-----) [001] d..2 24577.677251: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
146422            adbd-1007  ( 1007) [000] d..2 24577.677278: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146423          <idle>-0     (-----) [000] d..1 24577.677287: cpu_idle: state=0 cpu_id=0
146424            adbd-23485 ( 1007) [001] d..2 24577.677304: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146425          <idle>-0     (-----) [001] d.h3 24577.677324: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146426          <idle>-0     (-----) [001] dnh4 24577.677331: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146427          <idle>-0     (-----) [001] d..2 24577.677342: 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
146428   kworker/u17:2-23076 (23076) [001] d..2 24577.677349: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146429   kworker/u17:2-23076 (23076) [001] d..3 24577.677355: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146430   kworker/u17:2-23076 (23076) [001] d..2 24577.677373: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
146431     kworker/1:1-13091 (13091) [001] d..2 24577.677378: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
146432     kworker/1:1-13091 (13091) [001] d..3 24577.677395: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
146433          <idle>-0     (-----) [000] .n.1 24577.677401: cpu_idle: state=4294967295 cpu_id=0
146434          <idle>-0     (-----) [000] d..2 24577.677408: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
146435     kworker/1:1-13091 (13091) [001] d..2 24577.677411: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146436          <idle>-0     (-----) [001] d..1 24577.677419: cpu_idle: state=0 cpu_id=1
146437              ps-13422 (13422) [006] d..2 24577.677434: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146438              ps-13422 (13422) [006] dn.3 24577.677437: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146439              ps-13422 (13422) [006] d..2 24577.677440: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146440 shell svc 13418-13419 ( 1007) [006] d..2 24577.677449: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146441              ps-13422 (13422) [006] d..2 24577.677453: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146442              ps-13422 (13422) [006] dn.3 24577.677455: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146443              ps-13422 (13422) [006] d..2 24577.677457: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146444 shell svc 13418-13419 ( 1007) [006] d..2 24577.677464: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146445            adbd-23485 ( 1007) [000] d..2 24577.677464: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146446              ps-13422 (13422) [006] d..2 24577.677468: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146447              ps-13422 (13422) [006] dn.3 24577.677470: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146448              ps-13422 (13422) [006] d..2 24577.677472: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146449          <idle>-0     (-----) [000] d..1 24577.677473: cpu_idle: state=0 cpu_id=0
146450 shell svc 13418-13419 ( 1007) [006] d..2 24577.677478: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146451              ps-13422 (13422) [006] d..2 24577.677482: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146452              ps-13422 (13422) [006] dn.3 24577.677484: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146453              ps-13422 (13422) [006] d..2 24577.677486: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146454 shell svc 13418-13419 ( 1007) [006] d..2 24577.677492: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146455              ps-13422 (13422) [006] d..2 24577.677495: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146456              ps-13422 (13422) [006] dn.3 24577.677497: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146457              ps-13422 (13422) [006] d..2 24577.677499: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146458 shell svc 13418-13419 ( 1007) [006] d..2 24577.677505: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146459              ps-13422 (13422) [006] d..2 24577.677508: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146460              ps-13422 (13422) [006] dn.3 24577.677511: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146461              ps-13422 (13422) [006] d..2 24577.677512: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146462          <idle>-0     (-----) [001] d.h3 24577.677513: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146463 shell svc 13418-13419 ( 1007) [006] d..2 24577.677518: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146464          <idle>-0     (-----) [001] dnh4 24577.677520: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146465              ps-13422 (13422) [006] d..2 24577.677522: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146466              ps-13422 (13422) [006] dn.3 24577.677524: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146467          <idle>-0     (-----) [001] .n.1 24577.677525: cpu_idle: state=4294967295 cpu_id=1
146468              ps-13422 (13422) [006] d..2 24577.677526: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146469 shell svc 13418-13419 ( 1007) [006] d..2 24577.677532: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146470          <idle>-0     (-----) [001] d..2 24577.677532: 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
146471              ps-13422 (13422) [006] d..2 24577.677535: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146472              ps-13422 (13422) [006] dn.3 24577.677537: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146473              ps-13422 (13422) [006] d..2 24577.677539: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146474   kworker/u17:2-23076 (23076) [001] d..2 24577.677540: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146475   kworker/u17:2-23076 (23076) [001] d..3 24577.677546: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146476 shell svc 13418-13419 ( 1007) [006] d..2 24577.677549: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146477              ps-13422 (13422) [006] d.H4 24577.677596: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
146478              ps-13422 (13422) [006] d.H5 24577.677603: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
146479   kworker/u17:2-23076 (23076) [001] d..2 24577.677603: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
146480          <idle>-0     (-----) [007] .n.1 24577.677606: cpu_idle: state=4294967295 cpu_id=7
146481          <idle>-0     (-----) [007] d..2 24577.677609: 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
146482     kworker/1:1-13091 (13091) [001] d..2 24577.677609: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
146483              ps-13422 (13422) [006] d..2 24577.677610: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146484              ps-13422 (13422) [006] dn.3 24577.677612: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146485              ps-13422 (13422) [006] d..2 24577.677615: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146486         sugov:4-560   (  560) [007] d..2 24577.677616: 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
146487          <idle>-0     (-----) [007] d..1 24577.677618: cpu_idle: state=0 cpu_id=7
146488 shell svc 13418-13419 ( 1007) [006] d..2 24577.677622: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146489              ps-13422 (13422) [006] d..2 24577.677627: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146490              ps-13422 (13422) [006] dn.3 24577.677629: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146491              ps-13422 (13422) [006] d..2 24577.677631: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146492     kworker/1:1-13091 (13091) [001] d..3 24577.677635: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
146493 shell svc 13418-13419 ( 1007) [006] d..2 24577.677637: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146494              ps-13422 (13422) [006] d..2 24577.677641: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146495              ps-13422 (13422) [006] dn.3 24577.677643: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146496     kworker/1:1-13091 (13091) [001] d..2 24577.677645: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
146497              ps-13422 (13422) [006] d..2 24577.677645: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146498 shell svc 13418-13419 ( 1007) [006] d..2 24577.677651: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146499              ps-13422 (13422) [006] d..2 24577.677654: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146500              ps-13422 (13422) [006] dn.3 24577.677656: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146501              ps-13422 (13422) [006] d..2 24577.677658: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146502 shell svc 13418-13419 ( 1007) [006] d..2 24577.677664: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146503              ps-13422 (13422) [006] d..2 24577.677668: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146504            adbd-23485 ( 1007) [001] d.h2 24577.677669: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146505              ps-13422 (13422) [006] dn.3 24577.677670: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146506              ps-13422 (13422) [006] d..2 24577.677672: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146507 shell svc 13418-13419 ( 1007) [006] d..2 24577.677678: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146508            adbd-23485 ( 1007) [001] dnh3 24577.677679: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146509              ps-13422 (13422) [006] d..2 24577.677682: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146510              ps-13422 (13422) [006] dn.3 24577.677684: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146511              ps-13422 (13422) [006] d..2 24577.677686: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146512            adbd-23485 ( 1007) [001] d..2 24577.677687: 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
146513 shell svc 13418-13419 ( 1007) [006] d..2 24577.677692: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13422 next_prio=120
146514   kworker/u17:2-23076 (23076) [001] d..2 24577.677694: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146515   kworker/u17:2-23076 (23076) [001] d..3 24577.677699: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146516   kworker/u17:2-23076 (23076) [001] d..2 24577.677716: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
146517     kworker/1:1-13091 (13091) [001] d..2 24577.677723: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
146518     kworker/1:1-13091 (13091) [001] d..3 24577.677736: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
146519          <idle>-0     (-----) [000] .n.1 24577.677741: cpu_idle: state=4294967295 cpu_id=0
146520     kworker/1:1-13091 (13091) [001] d..2 24577.677745: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
146521          <idle>-0     (-----) [000] d..2 24577.677749: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
146522            adbd-23484 ( 1007) [000] d..2 24577.677761: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
146523            adbd-23485 ( 1007) [001] d..2 24577.677766: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146524            adbd-23484 ( 1007) [000] d..3 24577.677769: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
146525          <idle>-0     (-----) [001] d..1 24577.677772: cpu_idle: state=0 cpu_id=1
146526            adbd-23484 ( 1007) [000] d..2 24577.677815: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
146527            adbd-1007  ( 1007) [000] d..1 24577.677894: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
146528            adbd-1007  ( 1007) [000] d..2 24577.677906: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
146529          <idle>-0     (-----) [001] .n.1 24577.677911: cpu_idle: state=4294967295 cpu_id=1
146530          <idle>-0     (-----) [001] d..2 24577.677917: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
146531            adbd-1007  ( 1007) [000] d..2 24577.677946: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146532          <idle>-0     (-----) [000] d..1 24577.677958: cpu_idle: state=0 cpu_id=0
146533            adbd-23485 ( 1007) [001] d..2 24577.677971: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146534          <idle>-0     (-----) [001] d.h3 24577.677990: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146535          <idle>-0     (-----) [001] dnh4 24577.677997: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146536          <idle>-0     (-----) [001] d..2 24577.678010: 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
146537   kworker/u17:2-23076 (23076) [001] d..2 24577.678017: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146538   kworker/u17:2-23076 (23076) [001] d..3 24577.678023: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146539   kworker/u17:2-23076 (23076) [001] d..2 24577.678039: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
146540     kworker/1:1-13091 (13091) [001] d..2 24577.678045: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
146541     kworker/1:1-13091 (13091) [001] d..3 24577.678054: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
146542     kworker/1:1-13091 (13091) [001] d..2 24577.678063: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
146543              ps-13422 (13422) [006] d..3 24577.678104: sched_waking: comm=sh pid=13420 prio=120 target_cpu=002
146544            adbd-23485 ( 1007) [001] d..2 24577.678117: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146545          <idle>-0     (-----) [001] d..1 24577.678123: cpu_idle: state=0 cpu_id=1
146546              ps-13422 (13422) [006] d..2 24577.678127: sched_switch: prev_comm=ps prev_pid=13422 prev_prio=120 prev_state=x ==> next_comm=swapper/6 next_pid=0 next_prio=120
146547          <idle>-0     (-----) [000] dnh2 24577.678129: sched_wakeup: comm=sh pid=13420 prio=120 target_cpu=000
146548          <idle>-0     (-----) [000] .n.1 24577.678134: cpu_idle: state=4294967295 cpu_id=0
146549          <idle>-0     (-----) [006] d..1 24577.678138: cpu_idle: state=0 cpu_id=6
146550          <idle>-0     (-----) [000] d..2 24577.678141: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=13420 next_prio=120
146551          <idle>-0     (-----) [001] d.h3 24577.678147: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146552          <idle>-0     (-----) [001] dnh4 24577.678154: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146553          <idle>-0     (-----) [001] .n.1 24577.678159: cpu_idle: state=4294967295 cpu_id=1
146554          <idle>-0     (-----) [001] d..2 24577.678165: 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
146555   kworker/u17:2-23076 (23076) [001] d..2 24577.678172: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146556   kworker/u17:2-23076 (23076) [001] d..3 24577.678178: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146557   kworker/u17:2-23076 (23076) [001] d..2 24577.678196: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
146558     kworker/1:1-13091 (13091) [001] d..2 24577.678201: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
146559     kworker/1:1-13091 (13091) [001] d..3 24577.678210: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
146560     kworker/1:1-13091 (13091) [001] d..2 24577.678219: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
146561            adbd-23485 ( 1007) [001] d..2 24577.678241: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146562          <idle>-0     (-----) [001] d..1 24577.678247: cpu_idle: state=0 cpu_id=1
146563          <idle>-0     (-----) [001] d.h3 24577.678303: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146564          <idle>-0     (-----) [001] dnh4 24577.678314: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146565          <idle>-0     (-----) [001] .n.1 24577.678319: cpu_idle: state=4294967295 cpu_id=1
146566          <idle>-0     (-----) [001] d..2 24577.678325: 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
146567              sh-13420 (13420) [000] d.h5 24577.678326: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
146568   kworker/u17:2-23076 (23076) [001] d..2 24577.678332: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146569   kworker/u17:2-23076 (23076) [001] d..3 24577.678337: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146570              sh-13420 (13420) [000] d.h6 24577.678343: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
146571              sh-13420 (13420) [000] d.h5 24577.678348: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
146572          <idle>-0     (-----) [003] .n.1 24577.678348: cpu_idle: state=4294967295 cpu_id=3
146573   kworker/u17:2-23076 (23076) [001] d..2 24577.678355: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
146574          <idle>-0     (-----) [003] d..2 24577.678357: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
146575              sh-13420 (13420) [000] d.h6 24577.678357: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
146576          <idle>-0     (-----) [002] .n.1 24577.678362: cpu_idle: state=4294967295 cpu_id=2
146577     kworker/1:1-13091 (13091) [001] d..2 24577.678362: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
146578          <idle>-0     (-----) [002] d..2 24577.678369: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
146579  crtc_event:111-254   (  254) [003] d..2 24577.678385: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146580     kworker/1:1-13091 (13091) [001] d..3 24577.678392: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
146581          <idle>-0     (-----) [003] d..2 24577.678397: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
146582     kworker/1:1-13091 (13091) [001] d..2 24577.678414: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146583            adbd-23484 ( 1007) [003] d..2 24577.678416: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
146584          <idle>-0     (-----) [001] d..1 24577.678420: cpu_idle: state=0 cpu_id=1
146585            adbd-23484 ( 1007) [003] d..3 24577.678429: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
146586            adbd-23484 ( 1007) [003] d..2 24577.678479: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
146587 crtc_commit:111-253   (  253) [002] d..2 24577.678491: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
146588          <idle>-0     (-----) [002] d..1 24577.678496: cpu_idle: state=0 cpu_id=2
146589            adbd-1007  ( 1007) [003] d..2 24577.678556: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146590          <idle>-0     (-----) [003] d..1 24577.678565: cpu_idle: state=0 cpu_id=3
146591              sh-13420 (13420) [000] d..3 24577.679199: sched_waking: comm=sh pid=13418 prio=120 target_cpu=001
146592              sh-13420 (13420) [000] d..4 24577.679229: sched_wakeup: comm=sh pid=13418 prio=120 target_cpu=000
146593              sh-13420 (13420) [000] d..2 24577.679238: sched_switch: prev_comm=sh prev_pid=13420 prev_prio=120 prev_state=x ==> next_comm=sh next_pid=13418 next_prio=120
146594              sh-13418 (13418) [000] d..2 24577.679443: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=006
146595              sh-13418 (13418) [000] d..3 24577.679463: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=000
146596              sh-13418 (13418) [000] d.h3 24577.679500: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
146597              sh-13418 (13418) [000] d.h3 24577.679510: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
146598          <idle>-0     (-----) [007] dnh2 24577.679513: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
146599          <idle>-0     (-----) [007] .n.1 24577.679515: cpu_idle: state=4294967295 cpu_id=7
146600          <idle>-0     (-----) [007] d..2 24577.679517: 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
146601              sh-13418 (13418) [000] d.h4 24577.679522: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
146602          <idle>-0     (-----) [002] .n.1 24577.679527: cpu_idle: state=4294967295 cpu_id=2
146603         sugov:4-560   (  560) [007] d..2 24577.679532: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146604          <idle>-0     (-----) [002] d..2 24577.679532: 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
146605         sugov:0-559   (  559) [002] .... 24577.679555: clk_set_rate: pwrcl_clk 1766400000
146606 shell svc 13418-13419 ( 1007) [007] d..2 24577.679558: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
146607         sugov:0-559   (  559) [002] .... 24577.679564: clk_set_rate: cpu3_pwrcl_clk 1324800000
146608 shell svc 13418-13419 ( 1007) [007] d..3 24577.679567: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=007
146609         sugov:0-559   (  559) [002] .... 24577.679572: clk_set_rate: cpu2_pwrcl_clk 1324800000
146610         sugov:0-559   (  559) [002] .... 24577.679579: clk_set_rate: cpu1_pwrcl_clk 1324800000
146611         sugov:0-559   (  559) [002] .... 24577.679585: clk_set_rate: cpu0_pwrcl_clk 1766400000
146612 shell svc 13418-13419 ( 1007) [007] d..2 24577.679587: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
146613         sugov:0-559   (  559) [002] .... 24577.679592: cpu_frequency: state=1766400 cpu_id=0
146614         sugov:0-559   (  559) [002] .... 24577.679607: cpu_frequency: state=1766400 cpu_id=1
146615         sugov:0-559   (  559) [002] .... 24577.679610: cpu_frequency: state=1766400 cpu_id=2
146616         sugov:0-559   (  559) [002] .... 24577.679613: cpu_frequency: state=1766400 cpu_id=3
146617            adbd-1007  ( 1007) [007] d..1 24577.679615: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
146618         sugov:0-559   (  559) [002] d..2 24577.679633: 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
146619          <idle>-0     (-----) [002] dnh3 24577.679644: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
146620            adbd-1007  ( 1007) [007] d..2 24577.679644: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
146621          <idle>-0     (-----) [007] d..1 24577.679647: cpu_idle: state=0 cpu_id=7
146622          <idle>-0     (-----) [002] d..2 24577.679650: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
146623              sh-13418 (13418) [000] d..2 24577.679695: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=007
146624            adbd-23485 ( 1007) [002] d..2 24577.679698: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146625          <idle>-0     (-----) [002] d..1 24577.679702: cpu_idle: state=0 cpu_id=2
146626          <idle>-0     (-----) [001] d.h3 24577.679720: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146627          <idle>-0     (-----) [001] dnh4 24577.679726: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146628              sh-13418 (13418) [000] d..3 24577.679729: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
146629          <idle>-0     (-----) [001] .n.1 24577.679730: cpu_idle: state=4294967295 cpu_id=1
146630          <idle>-0     (-----) [002] .n.1 24577.679734: cpu_idle: state=4294967295 cpu_id=2
146631          <idle>-0     (-----) [001] d..2 24577.679735: 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
146632          <idle>-0     (-----) [002] d..2 24577.679739: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146633   kworker/u17:2-23076 (23076) [001] d..2 24577.679741: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146634   kworker/u17:2-23076 (23076) [001] d..3 24577.679763: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146635   kworker/u17:2-23076 (23076) [001] d..2 24577.679778: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
146636 shell svc 13418-13419 ( 1007) [002] d..2 24577.679780: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146637              sh-13418 (13418) [000] d..2 24577.679781: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
146638     kworker/1:1-13091 (13091) [001] d..2 24577.679782: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
146639          <idle>-0     (-----) [002] d..1 24577.679785: cpu_idle: state=0 cpu_id=2
146640              sh-13418 (13418) [000] d..3 24577.679791: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
146641     kworker/1:1-13091 (13091) [001] d..3 24577.679795: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
146642          <idle>-0     (-----) [002] .n.1 24577.679796: cpu_idle: state=4294967295 cpu_id=2
146643          <idle>-0     (-----) [002] d..2 24577.679801: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146644     kworker/1:1-13091 (13091) [001] d..2 24577.679815: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
146645 shell svc 13418-13419 ( 1007) [002] d..2 24577.679835: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146646          <idle>-0     (-----) [002] d..1 24577.679839: cpu_idle: state=0 cpu_id=2
146647            adbd-23485 ( 1007) [001] d..2 24577.679861: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146648          <idle>-0     (-----) [001] d..1 24577.679866: cpu_idle: state=0 cpu_id=1
146649          <idle>-0     (-----) [001] d.h3 24577.679882: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146650          <idle>-0     (-----) [001] dnh4 24577.679888: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146651          <idle>-0     (-----) [001] .n.1 24577.679892: cpu_idle: state=4294967295 cpu_id=1
146652          <idle>-0     (-----) [001] d..2 24577.679897: 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
146653   kworker/u17:2-23076 (23076) [001] d..2 24577.679903: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146654   kworker/u17:2-23076 (23076) [001] d..3 24577.679908: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146655   kworker/u17:2-23076 (23076) [001] d..2 24577.679923: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
146656     kworker/1:1-13091 (13091) [001] d..2 24577.679927: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
146657     kworker/1:1-13091 (13091) [001] d..3 24577.679946: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
146658     kworker/1:1-13091 (13091) [001] d..2 24577.679958: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146659          <idle>-0     (-----) [001] d..1 24577.679963: cpu_idle: state=0 cpu_id=1
146660          <idle>-0     (-----) [001] d.h3 24577.680076: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146661          <idle>-0     (-----) [001] dnh4 24577.680082: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146662          <idle>-0     (-----) [001] .n.1 24577.680086: cpu_idle: state=4294967295 cpu_id=1
146663          <idle>-0     (-----) [001] d..2 24577.680091: 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
146664   kworker/u17:2-23076 (23076) [001] d..2 24577.680096: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146665   kworker/u17:2-23076 (23076) [001] d..3 24577.680101: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146666   kworker/u17:2-23076 (23076) [001] d..2 24577.680116: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
146667     kworker/1:1-13091 (13091) [001] d..2 24577.680121: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
146668     kworker/1:1-13091 (13091) [001] d..3 24577.680142: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
146669          <idle>-0     (-----) [002] .n.1 24577.680146: cpu_idle: state=4294967295 cpu_id=2
146670          <idle>-0     (-----) [002] d..2 24577.680151: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
146671     kworker/1:1-13091 (13091) [001] d..2 24577.680154: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146672          <idle>-0     (-----) [001] d..1 24577.680159: cpu_idle: state=0 cpu_id=1
146673            adbd-23484 ( 1007) [002] d..2 24577.680161: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=007
146674            adbd-23484 ( 1007) [002] d..3 24577.680175: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
146675              sh-13418 (13418) [000] d..4 24577.680182: sched_waking: comm=shell svc 13418 pid=13419 prio=120 target_cpu=002
146676            adbd-23484 ( 1007) [002] d.h3 24577.680208: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
146677          <idle>-0     (-----) [007] dnh2 24577.680221: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
146678          <idle>-0     (-----) [007] .n.1 24577.680223: cpu_idle: state=4294967295 cpu_id=7
146679          <idle>-0     (-----) [007] d..2 24577.680226: 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
146680              sh-13418 (13418) [000] d..5 24577.680227: sched_wakeup: comm=shell svc 13418 pid=13419 prio=120 target_cpu=001
146681         sugov:4-560   (  560) [007] d..2 24577.680231: 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
146682          <idle>-0     (-----) [001] .n.1 24577.680232: cpu_idle: state=4294967295 cpu_id=1
146683          <idle>-0     (-----) [007] d..1 24577.680233: cpu_idle: state=0 cpu_id=7
146684              sh-13418 (13418) [000] d..2 24577.680234: sched_switch: prev_comm=sh prev_pid=13418 prev_prio=120 prev_state=x ==> next_comm=adbd next_pid=23485 next_prio=120
146685          <idle>-0     (-----) [001] d..2 24577.680237: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146686            adbd-23484 ( 1007) [002] d..2 24577.680259: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
146687            adbd-23485 ( 1007) [000] d..2 24577.680273: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146688          <idle>-0     (-----) [000] d..1 24577.680282: cpu_idle: state=0 cpu_id=0
146689            adbd-1007  ( 1007) [002] d..1 24577.680337: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
146690            adbd-1007  ( 1007) [002] d..2 24577.680348: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
146691          <idle>-0     (-----) [000] .n.1 24577.680354: cpu_idle: state=4294967295 cpu_id=0
146692          <idle>-0     (-----) [000] d..2 24577.680360: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
146693            adbd-23485 ( 1007) [000] d..2 24577.680406: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146694            adbd-1007  ( 1007) [002] d..2 24577.680408: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146695          <idle>-0     (-----) [000] d..1 24577.680413: cpu_idle: state=0 cpu_id=0
146696          <idle>-0     (-----) [002] d..1 24577.680414: cpu_idle: state=0 cpu_id=2
146697 shell svc 13418-13419 ( 1007) [001] d.h3 24577.680425: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146698 shell svc 13418-13419 ( 1007) [001] dnh4 24577.680435: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146699 shell svc 13418-13419 ( 1007) [001] d..2 24577.680442: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
146700   kworker/u17:2-23076 (23076) [001] d..2 24577.680450: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146701   kworker/u17:2-23076 (23076) [001] d..3 24577.680454: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146702   kworker/u17:2-23076 (23076) [001] d..2 24577.680470: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=shell svc 13418 next_pid=13419 next_prio=120
146703 shell svc 13418-13419 ( 1007) [001] d..2 24577.680496: sched_switch: prev_comm=shell svc 13418 prev_pid=13419 prev_prio=120 prev_state=x ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
146704     kworker/1:1-13091 (13091) [001] d..2 24577.680505: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
146705     kworker/1:1-13091 (13091) [001] d..3 24577.680513: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
146706          <idle>-0     (-----) [000] .n.1 24577.680518: cpu_idle: state=4294967295 cpu_id=0
146707          <idle>-0     (-----) [000] d..2 24577.680525: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
146708     kworker/1:1-13091 (13091) [001] d..2 24577.680527: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146709          <idle>-0     (-----) [001] d..1 24577.680535: cpu_idle: state=0 cpu_id=1
146710            adbd-23485 ( 1007) [000] d..2 24577.680567: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146711          <idle>-0     (-----) [000] d..1 24577.680573: cpu_idle: state=0 cpu_id=0
146712          <idle>-0     (-----) [001] d.h3 24577.680582: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146713          <idle>-0     (-----) [001] dnh4 24577.680590: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146714          <idle>-0     (-----) [001] .n.1 24577.680594: cpu_idle: state=4294967295 cpu_id=1
146715          <idle>-0     (-----) [001] d..2 24577.680599: 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
146716   kworker/u17:2-23076 (23076) [001] d..2 24577.680606: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146717   kworker/u17:2-23076 (23076) [001] d..3 24577.680611: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146718   kworker/u17:2-23076 (23076) [001] d..2 24577.680630: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
146719     kworker/1:1-13091 (13091) [001] d..2 24577.680634: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
146720     kworker/1:1-13091 (13091) [001] d..3 24577.680641: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
146721     kworker/1:1-13091 (13091) [001] d..2 24577.680653: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146722          <idle>-0     (-----) [001] d..1 24577.680658: cpu_idle: state=0 cpu_id=1
146723          <idle>-0     (-----) [000] dnh5 24577.680672: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
146724          <idle>-0     (-----) [000] dnh6 24577.680683: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
146725          <idle>-0     (-----) [002] .n.1 24577.680688: cpu_idle: state=4294967295 cpu_id=2
146726          <idle>-0     (-----) [002] d..2 24577.680693: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
146727          <idle>-0     (-----) [000] .n.1 24577.680695: cpu_idle: state=4294967295 cpu_id=0
146728          <idle>-0     (-----) [000] d..2 24577.680701: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
146729 crtc_commit:111-253   (  253) [002] d..2 24577.680745: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146730            adbd-23485 ( 1007) [000] d..2 24577.680747: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146731          <idle>-0     (-----) [002] d..1 24577.680749: cpu_idle: state=0 cpu_id=2
146732          <idle>-0     (-----) [000] d..1 24577.680754: cpu_idle: state=0 cpu_id=0
146733          <idle>-0     (-----) [001] d.h3 24577.680758: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146734          <idle>-0     (-----) [001] dnh4 24577.680763: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146735          <idle>-0     (-----) [001] .n.1 24577.680768: cpu_idle: state=4294967295 cpu_id=1
146736          <idle>-0     (-----) [001] d..2 24577.680772: 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
146737   kworker/u17:2-23076 (23076) [001] d..2 24577.680778: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146738   kworker/u17:2-23076 (23076) [001] d..3 24577.680783: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146739   kworker/u17:2-23076 (23076) [001] d.h3 24577.680806: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146740   kworker/u17:2-23076 (23076) [001] d.h4 24577.680807: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146741   kworker/u17:2-23076 (23076) [001] d..2 24577.680830: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
146742     kworker/1:1-13091 (13091) [001] d..2 24577.680835: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
146743     kworker/1:1-13091 (13091) [001] d..3 24577.680844: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
146744          <idle>-0     (-----) [000] .n.1 24577.680849: cpu_idle: state=4294967295 cpu_id=0
146745     kworker/1:1-13091 (13091) [001] d..2 24577.680852: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
146746          <idle>-0     (-----) [000] d..2 24577.680855: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
146747     kworker/1:1-13091 (13091) [001] d..3 24577.680861: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
146748          <idle>-0     (-----) [002] .n.1 24577.680865: cpu_idle: state=4294967295 cpu_id=2
146749            adbd-23485 ( 1007) [000] d..2 24577.680868: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146750          <idle>-0     (-----) [002] d..2 24577.680870: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
146751     kworker/1:1-13091 (13091) [001] d..2 24577.680874: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146752          <idle>-0     (-----) [000] d..1 24577.680874: cpu_idle: state=0 cpu_id=0
146753          <idle>-0     (-----) [001] d..1 24577.680878: cpu_idle: state=0 cpu_id=1
146754          <idle>-0     (-----) [001] d.s2 24577.680895: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
146755            adbd-23484 ( 1007) [002] d.s2 24577.680896: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
146756          <idle>-0     (-----) [001] dns3 24577.680904: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
146757            adbd-23484 ( 1007) [002] d.s3 24577.680907: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
146758          <idle>-0     (-----) [003] .n.1 24577.680912: cpu_idle: state=4294967295 cpu_id=3
146759          <idle>-0     (-----) [001] .n.1 24577.680912: cpu_idle: state=4294967295 cpu_id=1
146760            adbd-23484 ( 1007) [002] d..2 24577.680914: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
146761          <idle>-0     (-----) [001] d..2 24577.680919: 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
146762            adbd-23484 ( 1007) [002] d..3 24577.680919: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
146763          <idle>-0     (-----) [003] d..2 24577.680920: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
146764     rcu_preempt-7     (    7) [001] d..2 24577.680940: 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
146765  crtc_event:111-254   (  254) [003] d..2 24577.680942: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146766          <idle>-0     (-----) [001] d..1 24577.680946: cpu_idle: state=0 cpu_id=1
146767          <idle>-0     (-----) [003] d..1 24577.680946: cpu_idle: state=0 cpu_id=3
146768            adbd-23484 ( 1007) [002] d..2 24577.680961: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
146769          <idle>-0     (-----) [000] d.h5 24577.680972: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
146770          <idle>-0     (-----) [000] d.h6 24577.680982: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
146771          <idle>-0     (-----) [003] .n.1 24577.680987: cpu_idle: state=4294967295 cpu_id=3
146772            adbd-1007  ( 1007) [002] d..1 24577.680988: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
146773          <idle>-0     (-----) [003] d..2 24577.680993: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
146774          <idle>-0     (-----) [000] .n.1 24577.680996: cpu_idle: state=4294967295 cpu_id=0
146775            adbd-1007  ( 1007) [002] d..2 24577.680999: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
146776  crtc_event:111-254   (  254) [003] d..2 24577.681006: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146777          <idle>-0     (-----) [001] d.h3 24577.681006: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146778          <idle>-0     (-----) [000] d..2 24577.681007: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
146779          <idle>-0     (-----) [003] d..1 24577.681010: cpu_idle: state=0 cpu_id=3
146780          <idle>-0     (-----) [001] dnh4 24577.681012: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146781          <idle>-0     (-----) [001] .n.1 24577.681016: cpu_idle: state=4294967295 cpu_id=1
146782          <idle>-0     (-----) [001] d..2 24577.681022: 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
146783            adbd-1007  ( 1007) [002] d..2 24577.681030: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146784          <idle>-0     (-----) [002] d..1 24577.681038: cpu_idle: state=0 cpu_id=2
146785   kworker/u17:2-23076 (23076) [001] d..2 24577.681043: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146786   kworker/u17:2-23076 (23076) [001] d..3 24577.681048: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
146787            adbd-23485 ( 1007) [000] d..2 24577.681052: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146788          <idle>-0     (-----) [000] d..1 24577.681058: cpu_idle: state=0 cpu_id=0
146789   kworker/u17:2-23076 (23076) [001] d.h3 24577.681071: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146790   kworker/u17:2-23076 (23076) [001] d.h4 24577.681072: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
146791   kworker/u17:2-23076 (23076) [001] d..2 24577.681095: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
146792     kworker/1:1-13091 (13091) [001] d..2 24577.681101: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
146793     kworker/1:1-13091 (13091) [001] d..3 24577.681109: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
146794          <idle>-0     (-----) [002] .n.1 24577.681114: cpu_idle: state=4294967295 cpu_id=2
146795     kworker/1:1-13091 (13091) [001] d..2 24577.681115: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
146796          <idle>-0     (-----) [002] d..2 24577.681120: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
146797     kworker/1:1-13091 (13091) [001] d..3 24577.681123: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
146798          <idle>-0     (-----) [000] .n.1 24577.681128: cpu_idle: state=4294967295 cpu_id=0
146799            adbd-23484 ( 1007) [002] d..2 24577.681130: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
146800          <idle>-0     (-----) [000] d..2 24577.681134: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
146801     kworker/1:1-13091 (13091) [001] d..2 24577.681135: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146802            adbd-23484 ( 1007) [002] d..3 24577.681136: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
146803          <idle>-0     (-----) [001] d..1 24577.681142: cpu_idle: state=0 cpu_id=1
146804            adbd-23485 ( 1007) [000] d..2 24577.681149: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146805          <idle>-0     (-----) [000] d..1 24577.681155: cpu_idle: state=0 cpu_id=0
146806            adbd-23484 ( 1007) [002] d..2 24577.681177: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
146807            adbd-1007  ( 1007) [002] d..2 24577.681229: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146808          <idle>-0     (-----) [002] d..1 24577.681237: cpu_idle: state=0 cpu_id=2
146809          <idle>-0     (-----) [000] ...1 24577.682266: cpu_idle: state=4294967295 cpu_id=0
146810          <idle>-0     (-----) [000] d..1 24577.682268: cpu_idle: state=0 cpu_id=0
146811          <idle>-0     (-----) [002] ...1 24577.682399: cpu_idle: state=4294967295 cpu_id=2
146812          <idle>-0     (-----) [002] d..1 24577.682402: cpu_idle: state=0 cpu_id=2
146813          <idle>-0     (-----) [003] d.h2 24577.682700: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
146814          <idle>-0     (-----) [003] dnh3 24577.682709: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
146815          <idle>-0     (-----) [003] .n.1 24577.682714: cpu_idle: state=4294967295 cpu_id=3
146816          <idle>-0     (-----) [003] d..2 24577.682719: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
146817        DispSync-23904 (23896) [003] d..1 24577.682735: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
146818        DispSync-23904 (23896) [003] d..2 24577.682752: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=000
146819          <idle>-0     (-----) [000] .n.1 24577.682757: cpu_idle: state=4294967295 cpu_id=0
146820          <idle>-0     (-----) [000] d..2 24577.682762: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
146821        DispSync-23904 (23896) [003] d..2 24577.682770: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146822          <idle>-0     (-----) [003] d..1 24577.682775: cpu_idle: state=0 cpu_id=3
146823  appEventThread-23905 (23896) [000] d..3 24577.682804: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
146824  appEventThread-23905 (23896) [000] d..4 24577.682820: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
146825          <idle>-0     (-----) [001] .n.1 24577.682825: cpu_idle: state=4294967295 cpu_id=1
146826          <idle>-0     (-----) [001] d..2 24577.682832: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
146827  appEventThread-23905 (23896) [000] d..2 24577.682842: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146828          <idle>-0     (-----) [000] d..1 24577.682849: cpu_idle: state=0 cpu_id=0
146829 s.nexuslauncher-24827 (24827) [001] .... 24577.683135: binder_transaction: transaction=1671721 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
146830 s.nexuslauncher-24827 (24827) [001] d..4 24577.683143: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
146831 s.nexuslauncher-24827 (24827) [001] d..5 24577.683163: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
146832          <idle>-0     (-----) [000] .n.1 24577.683168: cpu_idle: state=4294967295 cpu_id=0
146833          <idle>-0     (-----) [000] d..2 24577.683173: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
146834  Binder:23896_4-24423 (23896) [000] .... 24577.683178: binder_transaction_received: transaction=1671721
146835 s.nexuslauncher-24827 (24827) [001] d..3 24577.683190: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
146836  Binder:23896_4-24423 (23896) [000] d..1 24577.683201: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=000
146837 s.nexuslauncher-24827 (24827) [001] d..4 24577.683207: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
146838          <idle>-0     (-----) [002] .n.1 24577.683211: cpu_idle: state=4294967295 cpu_id=2
146839  Binder:23896_4-24423 (23896) [000] d..2 24577.683215: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
146840          <idle>-0     (-----) [002] d..2 24577.683218: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
146841          <idle>-0     (-----) [003] .n.1 24577.683220: cpu_idle: state=4294967295 cpu_id=3
146842          <idle>-0     (-----) [003] d..2 24577.683225: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
146843  Binder:23896_4-24423 (23896) [000] d..2 24577.683238: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146844          <idle>-0     (-----) [000] d..1 24577.683244: cpu_idle: state=0 cpu_id=0
146845    RenderThread-25194 (24827) [002] d..2 24577.683250: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146846  appEventThread-23905 (23896) [003] d..2 24577.683252: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146847          <idle>-0     (-----) [003] d..1 24577.683256: cpu_idle: state=0 cpu_id=3
146848          <idle>-0     (-----) [002] d..1 24577.683258: cpu_idle: state=0 cpu_id=2
146849 s.nexuslauncher-24827 (24827) [001] d..3 24577.683492: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
146850 s.nexuslauncher-24827 (24827) [001] d..4 24577.683509: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
146851          <idle>-0     (-----) [000] .n.1 24577.683514: cpu_idle: state=4294967295 cpu_id=0
146852          <idle>-0     (-----) [000] d..2 24577.683520: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
146853 s.nexuslauncher-24827 (24827) [001] d..2 24577.683528: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146854          <idle>-0     (-----) [001] d..1 24577.683536: cpu_idle: state=0 cpu_id=1
146855    RenderThread-25194 (24827) [000] d..1 24577.683710: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
146856    RenderThread-25194 (24827) [000] d..2 24577.683721: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
146857          <idle>-0     (-----) [001] .n.1 24577.683726: cpu_idle: state=4294967295 cpu_id=1
146858          <idle>-0     (-----) [001] d..2 24577.683733: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
146859    RenderThread-25194 (24827) [000] .... 24577.683768: binder_transaction: transaction=1671722 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
146860    RenderThread-25194 (24827) [000] ...2 24577.683773: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
146861    RenderThread-25194 (24827) [000] d..4 24577.683775: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
146862    RenderThread-25194 (24827) [000] d..5 24577.683783: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
146863    RenderThread-25194 (24827) [000] d..2 24577.683791: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
146864 s.nexuslauncher-24827 (24827) [001] d..2 24577.683793: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146865  Binder:23896_4-24423 (23896) [000] .... 24577.683796: binder_transaction_received: transaction=1671722
146866          <idle>-0     (-----) [001] d..1 24577.683799: cpu_idle: state=0 cpu_id=1
146867  Binder:23896_4-24423 (23896) [000] .... 24577.683845: binder_transaction: transaction=1671723 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
146868  Binder:23896_4-24423 (23896) [000] d..2 24577.683853: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
146869  Binder:23896_4-24423 (23896) [000] d..3 24577.683860: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
146870  Binder:23896_4-24423 (23896) [000] .... 24577.683862: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
146871  Binder:23896_4-24423 (23896) [000] d..2 24577.683871: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
146872    RenderThread-25194 (24827) [000] .... 24577.683875: binder_transaction_received: transaction=1671723
146873    RenderThread-25194 (24827) [000] d.s2 24577.684233: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
146874    RenderThread-25194 (24827) [000] d.s3 24577.684245: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
146875          <idle>-0     (-----) [002] ...1 24577.684456: cpu_idle: state=4294967295 cpu_id=2
146876          <idle>-0     (-----) [002] d..1 24577.684458: cpu_idle: state=0 cpu_id=2
146877    RenderThread-25194 (24827) [000] d..2 24577.685606: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
146878  Binder:23896_4-24423 (23896) [000] d..2 24577.685637: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
146879  kworker/u16:10-23868 (23868) [000] .... 24577.685674: clk_set_rate: l3_cluster1_vote_clk 748800000
146880  kworker/u16:10-23868 (23868) [000] .... 24577.685679: clk_set_rate: l3_clk 748800000
146881  kworker/u16:10-23868 (23868) [000] d.h1 24577.685703: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
146882  kworker/u16:10-23868 (23868) [000] d.h2 24577.685719: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
146883  kworker/u16:10-23868 (23868) [000] d.h2 24577.685725: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
146884          <idle>-0     (-----) [001] .n.1 24577.685730: cpu_idle: state=4294967295 cpu_id=1
146885          <idle>-0     (-----) [001] d..2 24577.685741: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
146886  kworker/u16:10-23868 (23868) [000] .... 24577.685849: clk_set_rate: l3_cluster0_vote_clk 748800000
146887  kworker/u16:10-23868 (23868) [000] d..2 24577.685871: 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
146888          <idle>-0     (-----) [000] d..1 24577.685881: cpu_idle: state=0 cpu_id=0
146889    RenderThread-25194 (24827) [001] .... 24577.685937: binder_transaction: transaction=1671724 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
146890    RenderThread-25194 (24827) [001] ...2 24577.685948: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
146891    RenderThread-25194 (24827) [001] d..4 24577.685951: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
146892    RenderThread-25194 (24827) [001] d..5 24577.685967: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
146893    RenderThread-25194 (24827) [001] d..2 24577.685976: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
146894  Binder:23896_4-24423 (23896) [001] .... 24577.685982: binder_transaction_received: transaction=1671724
146895  Binder:23896_4-24423 (23896) [001] .... 24577.686093: binder_transaction: transaction=1671725 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
146896  Binder:23896_4-24423 (23896) [001] d..2 24577.686099: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
146897  Binder:23896_4-24423 (23896) [001] d..3 24577.686109: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
146898  Binder:23896_4-24423 (23896) [001] .... 24577.686111: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
146899  Binder:23896_4-24423 (23896) [001] d..2 24577.686140: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
146900    RenderThread-25194 (24827) [001] .... 24577.686144: binder_transaction_received: transaction=1671725
146901    RenderThread-25194 (24827) [001] d..2 24577.686208: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146902          <idle>-0     (-----) [001] d..1 24577.686216: cpu_idle: state=0 cpu_id=1
146903          <idle>-0     (-----) [003] d.h2 24577.686710: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
146904          <idle>-0     (-----) [003] dnh3 24577.686717: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
146905          <idle>-0     (-----) [003] .n.1 24577.686722: cpu_idle: state=4294967295 cpu_id=3
146906          <idle>-0     (-----) [003] d..2 24577.686728: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
146907        DispSync-23904 (23896) [003] d..1 24577.686737: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
146908        DispSync-23904 (23896) [003] d..2 24577.686747: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
146909          <idle>-0     (-----) [001] .n.1 24577.686753: cpu_idle: state=4294967295 cpu_id=1
146910          <idle>-0     (-----) [001] d..2 24577.686758: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
146911        DispSync-23904 (23896) [003] d..2 24577.686764: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146912          <idle>-0     (-----) [003] d..1 24577.686770: cpu_idle: state=0 cpu_id=3
146913   sfEventThread-23906 (23896) [001] d..3 24577.686790: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
146914   sfEventThread-23906 (23896) [001] d..4 24577.686805: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
146915          <idle>-0     (-----) [003] .n.1 24577.686809: cpu_idle: state=4294967295 cpu_id=3
146916          <idle>-0     (-----) [003] d..2 24577.686815: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
146917   sfEventThread-23906 (23896) [001] d..2 24577.686827: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146918          <idle>-0     (-----) [001] d..1 24577.686833: cpu_idle: state=0 cpu_id=1
146919  surfaceflinger-23896 (23896) [003] d..1 24577.687055: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
146920          <idle>-0     (-----) [000] ...1 24577.687063: cpu_idle: state=4294967295 cpu_id=0
146921          <idle>-0     (-----) [000] d..1 24577.687065: cpu_idle: state=0 cpu_id=0
146922  surfaceflinger-23896 (23896) [003] d..2 24577.687069: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
146923          <idle>-0     (-----) [001] .n.1 24577.687074: cpu_idle: state=4294967295 cpu_id=1
146924          <idle>-0     (-----) [001] d..2 24577.687079: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
146925   sfEventThread-23906 (23896) [001] d..2 24577.687098: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146926          <idle>-0     (-----) [001] d..1 24577.687102: cpu_idle: state=0 cpu_id=1
146927          <idle>-0     (-----) [000] d.h3 24577.687143: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
146928          <idle>-0     (-----) [000] d.h4 24577.687157: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
146929          <idle>-0     (-----) [002] .n.1 24577.687161: cpu_idle: state=4294967295 cpu_id=2
146930          <idle>-0     (-----) [000] ...1 24577.687167: cpu_idle: state=4294967295 cpu_id=0
146931          <idle>-0     (-----) [002] d..2 24577.687169: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
146932          <idle>-0     (-----) [000] d..1 24577.687171: cpu_idle: state=0 cpu_id=0
146933  surfaceflinger-23896 (23896) [003] ...1 24577.687200: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
146934  surfaceflinger-23896 (23896) [003] ...1 24577.687206: tracing_mark_write: E|23896
146935 kgsl_worker_thr-246   (  246) [002] d..2 24577.687210: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
146936 kgsl_worker_thr-246   (  246) [002] d..3 24577.687234: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
146937  surfaceflinger-23896 (23896) [003] .... 24577.687247: binder_transaction: transaction=1671726 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
146938 kgsl_worker_thr-246   (  246) [002] d..2 24577.687249: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
146939  surfaceflinger-23896 (23896) [003] ...2 24577.687266: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
146940  surfaceflinger-23896 (23896) [003] d..4 24577.687272: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
146941  surfaceflinger-23896 (23896) [003] d..5 24577.687286: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
146942          <idle>-0     (-----) [001] .n.1 24577.687290: cpu_idle: state=4294967295 cpu_id=1
146943          <idle>-0     (-----) [001] d..2 24577.687295: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
146944  HwBinder:598_3-633   (  598) [001] .... 24577.687303: binder_transaction_received: transaction=1671726
146945  surfaceflinger-23896 (23896) [003] d..2 24577.687306: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146946          <idle>-0     (-----) [003] d..1 24577.687315: cpu_idle: state=0 cpu_id=3
146947  HwBinder:598_3-633   (  598) [001] ...1 24577.687342: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
146948  kworker/u16:10-23868 (23868) [002] d..2 24577.687417: 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
146949  HwBinder:598_3-633   (  598) [001] ...1 24577.687426: tracing_mark_write: B|598|HWCSession::PresentDisplay::
146950          <idle>-0     (-----) [002] d..1 24577.687426: cpu_idle: state=0 cpu_id=2
146951  HwBinder:598_3-633   (  598) [001] d.s1 24577.687570: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
146952  HwBinder:598_3-633   (  598) [001] d.s2 24577.687583: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
146953  HwBinder:598_3-633   (  598) [001] ...1 24577.687607: tracing_mark_write: B|598|HWDeviceDRM::Commit::
146954  HwBinder:598_3-633   (  598) [001] ...1 24577.687617: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
146955  HwBinder:598_3-633   (  598) [001] d..2 24577.688033: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
146956  HwBinder:598_3-633   (  598) [001] d..3 24577.688048: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
146957          <idle>-0     (-----) [002] .n.1 24577.688052: cpu_idle: state=4294967295 cpu_id=2
146958          <idle>-0     (-----) [002] d..2 24577.688060: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
146959  HwBinder:598_3-633   (  598) [001] ...1 24577.688112: tracing_mark_write: E|598
146960  HwBinder:598_3-633   (  598) [001] ...1 24577.688115: tracing_mark_write: E|598
146961  HwBinder:598_3-633   (  598) [001] ...1 24577.688162: tracing_mark_write: E|598
146962  HwBinder:598_3-633   (  598) [001] ...1 24577.688201: tracing_mark_write: E|598
146963  HwBinder:598_3-633   (  598) [001] .... 24577.688212: binder_transaction: transaction=1671727 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
146964  HwBinder:598_3-633   (  598) [001] d..2 24577.688227: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
146965  HwBinder:598_3-633   (  598) [001] d..3 24577.688239: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
146966  HwBinder:598_3-633   (  598) [001] .... 24577.688242: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
146967          <idle>-0     (-----) [003] .n.1 24577.688244: cpu_idle: state=4294967295 cpu_id=3
146968          <idle>-0     (-----) [003] d..2 24577.688251: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
146969  surfaceflinger-23896 (23896) [003] .... 24577.688256: binder_transaction_received: transaction=1671727
146970  HwBinder:598_3-633   (  598) [001] d..2 24577.688287: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
146971     rcu_preempt-7     (    7) [001] d..2 24577.688297: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
146972     rcu_preempt-7     (    7) [001] d..3 24577.688310: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
146973     rcu_preempt-7     (    7) [001] d..2 24577.688313: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=001
146974     rcu_preempt-7     (    7) [001] d..3 24577.688321: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=001
146975     rcu_preempt-7     (    7) [001] d..2 24577.688322: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
146976     rcu_preempt-7     (    7) [001] d..3 24577.688343: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
146977     rcu_preempt-7     (    7) [001] d..2 24577.688350: 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
146978         rcuop/0-10    (   10) [001] d..2 24577.688358: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
146979         rcuop/0-10    (   10) [001] d..3 24577.688366: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
146980         rcuop/0-10    (   10) [001] d..2 24577.688371: 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
146981  surfaceflinger-23896 (23896) [003] d..2 24577.688519: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146982          <idle>-0     (-----) [003] d..1 24577.688529: cpu_idle: state=0 cpu_id=3
146983          <idle>-0     (-----) [000] ...1 24577.688645: cpu_idle: state=4294967295 cpu_id=0
146984          <idle>-0     (-----) [000] d..1 24577.688648: cpu_idle: state=0 cpu_id=0
146985 crtc_commit:111-253   (  253) [002] d..2 24577.688687: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcuop/2 next_pid=29 next_prio=120
146986         rcuop/6-61    (   61) [001] d..2 24577.688689: 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
146987         rcuop/2-29    (   29) [002] d..2 24577.688692: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
146988         rcuop/2-29    (   29) [002] d..3 24577.688708: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
146989     rcu_preempt-7     (    7) [001] d..2 24577.688713: 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
146990         rcuop/2-29    (   29) [002] d..2 24577.688729: 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
146991         rcuop/3-37    (   37) [001] d..2 24577.688731: 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
146992          <idle>-0     (-----) [002] d..1 24577.688737: cpu_idle: state=0 cpu_id=2
146993          <idle>-0     (-----) [001] d..1 24577.688741: cpu_idle: state=0 cpu_id=1
146994          <idle>-0     (-----) [001] d.s2 24577.694231: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
146995          <idle>-0     (-----) [001] dns3 24577.694240: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
146996          <idle>-0     (-----) [001] dns3 24577.694243: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
146997          <idle>-0     (-----) [001] dns4 24577.694263: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
146998          <idle>-0     (-----) [000] .n.1 24577.694267: cpu_idle: state=4294967295 cpu_id=0
146999          <idle>-0     (-----) [001] .n.1 24577.694273: cpu_idle: state=4294967295 cpu_id=1
147000          <idle>-0     (-----) [000] d..2 24577.694276: 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
147001          <idle>-0     (-----) [001] d..2 24577.694280: 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
147002     rcu_preempt-7     (    7) [001] d..2 24577.694298: 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
147003          <idle>-0     (-----) [001] d..1 24577.694319: cpu_idle: state=0 cpu_id=1
147004          <idle>-0     (-----) [001] ...1 24577.694328: cpu_idle: state=4294967295 cpu_id=1
147005          <idle>-0     (-----) [001] d..1 24577.694331: cpu_idle: state=0 cpu_id=1
147006  kworker/u16:10-23868 (23868) [000] .... 24577.694333: clk_set_rate: l3_cluster0_vote_clk 403200000
147007  kworker/u16:10-23868 (23868) [000] .... 24577.694353: clk_set_rate: l3_cluster1_vote_clk 300000000
147008  kworker/u16:10-23868 (23868) [000] .... 24577.694355: clk_set_rate: l3_clk 403200000
147009  kworker/u16:10-23868 (23868) [000] d..2 24577.694569: 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
147010          <idle>-0     (-----) [000] d..1 24577.694580: cpu_idle: state=0 cpu_id=0
147011          <idle>-0     (-----) [003] d.s3 24577.694604: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
147012          <idle>-0     (-----) [003] d.s4 24577.694613: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
147013          <idle>-0     (-----) [003] d.s4 24577.694621: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
147014          <idle>-0     (-----) [000] .n.1 24577.694626: cpu_idle: state=4294967295 cpu_id=0
147015          <idle>-0     (-----) [003] ...1 24577.694630: cpu_idle: state=4294967295 cpu_id=3
147016          <idle>-0     (-----) [003] d..1 24577.694633: cpu_idle: state=0 cpu_id=3
147017          <idle>-0     (-----) [000] d..2 24577.694635: 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
147018  kworker/u16:10-23868 (23868) [000] d..2 24577.694657: 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
147019          <idle>-0     (-----) [000] d..1 24577.694664: cpu_idle: state=0 cpu_id=0
147020          <idle>-0     (-----) [000] d.h5 24577.694815: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
147021          <idle>-0     (-----) [000] d.h6 24577.694830: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
147022          <idle>-0     (-----) [000] d.h5 24577.694834: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
147023          <idle>-0     (-----) [003] .n.1 24577.694834: cpu_idle: state=4294967295 cpu_id=3
147024          <idle>-0     (-----) [000] d.h6 24577.694843: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
147025          <idle>-0     (-----) [003] d..2 24577.694844: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
147026          <idle>-0     (-----) [002] .n.1 24577.694849: cpu_idle: state=4294967295 cpu_id=2
147027          <idle>-0     (-----) [000] ...1 24577.694857: cpu_idle: state=4294967295 cpu_id=0
147028          <idle>-0     (-----) [002] d..2 24577.694858: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
147029          <idle>-0     (-----) [000] d..1 24577.694860: cpu_idle: state=0 cpu_id=0
147030  crtc_event:111-254   (  254) [003] d..2 24577.694873: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147031          <idle>-0     (-----) [003] d..1 24577.694879: cpu_idle: state=0 cpu_id=3
147032 crtc_commit:111-253   (  253) [002] d..2 24577.695004: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
147033          <idle>-0     (-----) [002] d..1 24577.695010: cpu_idle: state=0 cpu_id=2
147034          <idle>-0     (-----) [000] d.h5 24577.697141: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
147035          <idle>-0     (-----) [000] d.h6 24577.697152: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
147036          <idle>-0     (-----) [002] .n.1 24577.697157: cpu_idle: state=4294967295 cpu_id=2
147037          <idle>-0     (-----) [002] d..2 24577.697162: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
147038          <idle>-0     (-----) [000] ...1 24577.697163: cpu_idle: state=4294967295 cpu_id=0
147039          <idle>-0     (-----) [000] d..1 24577.697166: cpu_idle: state=0 cpu_id=0
147040 crtc_commit:111-253   (  253) [002] d..2 24577.697214: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147041          <idle>-0     (-----) [002] d..1 24577.697219: cpu_idle: state=0 cpu_id=2
147042          <idle>-0     (-----) [000] d.h5 24577.697458: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
147043          <idle>-0     (-----) [000] d.h6 24577.697469: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
147044          <idle>-0     (-----) [003] .n.1 24577.697474: cpu_idle: state=4294967295 cpu_id=3
147045          <idle>-0     (-----) [003] d..2 24577.697480: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
147046          <idle>-0     (-----) [000] ...1 24577.697483: cpu_idle: state=4294967295 cpu_id=0
147047          <idle>-0     (-----) [000] d..1 24577.697486: cpu_idle: state=0 cpu_id=0
147048  crtc_event:111-254   (  254) [003] d..2 24577.697497: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147049          <idle>-0     (-----) [003] d..1 24577.697501: cpu_idle: state=0 cpu_id=3
147050          <idle>-0     (-----) [002] d.H3 24577.697638: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
147051          <idle>-0     (-----) [002] d.s3 24577.697655: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
147052          <idle>-0     (-----) [007] dnh2 24577.697656: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
147053          <idle>-0     (-----) [007] .n.1 24577.697659: cpu_idle: state=4294967295 cpu_id=7
147054          <idle>-0     (-----) [007] d..2 24577.697662: 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
147055          <idle>-0     (-----) [002] d.s4 24577.697667: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
147056         sugov:4-560   (  560) [007] d..2 24577.697670: 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
147057          <idle>-0     (-----) [003] .n.1 24577.697672: cpu_idle: state=4294967295 cpu_id=3
147058          <idle>-0     (-----) [007] d..1 24577.697673: cpu_idle: state=0 cpu_id=7
147059          <idle>-0     (-----) [003] d..2 24577.697679: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
147060          <idle>-0     (-----) [002] ...1 24577.697687: cpu_idle: state=4294967295 cpu_id=2
147061          <idle>-0     (-----) [002] d..1 24577.697691: cpu_idle: state=0 cpu_id=2
147062  crtc_event:111-254   (  254) [003] d..2 24577.697699: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147063          <idle>-0     (-----) [003] d..1 24577.697704: cpu_idle: state=0 cpu_id=3
147064          <idle>-0     (-----) [003] d.h2 24577.699181: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
147065          <idle>-0     (-----) [003] dnh3 24577.699191: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
147066          <idle>-0     (-----) [003] .n.1 24577.699196: cpu_idle: state=4294967295 cpu_id=3
147067          <idle>-0     (-----) [003] d..2 24577.699202: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
147068        DispSync-23904 (23896) [003] d..1 24577.699215: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
147069        DispSync-23904 (23896) [003] d..2 24577.699230: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
147070          <idle>-0     (-----) [002] .n.1 24577.699235: cpu_idle: state=4294967295 cpu_id=2
147071          <idle>-0     (-----) [002] d..2 24577.699243: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
147072        DispSync-23904 (23896) [003] d..2 24577.699252: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147073          <idle>-0     (-----) [003] d..1 24577.699258: cpu_idle: state=0 cpu_id=3
147074  appEventThread-23905 (23896) [002] d..3 24577.699285: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
147075  appEventThread-23905 (23896) [002] d..4 24577.699309: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
147076          <idle>-0     (-----) [000] .n.1 24577.699313: cpu_idle: state=4294967295 cpu_id=0
147077          <idle>-0     (-----) [000] d..2 24577.699325: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
147078  appEventThread-23905 (23896) [002] d..2 24577.699340: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147079          <idle>-0     (-----) [002] d..1 24577.699350: cpu_idle: state=0 cpu_id=2
147080 s.nexuslauncher-24827 (24827) [000] .... 24577.699565: binder_transaction: transaction=1671728 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
147081 s.nexuslauncher-24827 (24827) [000] d..4 24577.699574: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
147082 s.nexuslauncher-24827 (24827) [000] d..5 24577.699595: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
147083          <idle>-0     (-----) [001] .n.1 24577.699598: cpu_idle: state=4294967295 cpu_id=1
147084          <idle>-0     (-----) [001] d..2 24577.699607: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
147085  Binder:23896_4-24423 (23896) [001] .... 24577.699615: binder_transaction_received: transaction=1671728
147086 s.nexuslauncher-24827 (24827) [000] d..3 24577.699623: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
147087 s.nexuslauncher-24827 (24827) [000] d..4 24577.699645: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
147088  Binder:23896_4-24423 (23896) [001] d..1 24577.699646: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
147089          <idle>-0     (-----) [002] .n.1 24577.699650: cpu_idle: state=4294967295 cpu_id=2
147090          <idle>-0     (-----) [002] d..2 24577.699659: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
147091  Binder:23896_4-24423 (23896) [001] d..2 24577.699675: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
147092          <idle>-0     (-----) [003] .n.1 24577.699681: cpu_idle: state=4294967295 cpu_id=3
147093          <idle>-0     (-----) [003] d..2 24577.699687: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
147094    RenderThread-25194 (24827) [002] d..2 24577.699702: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147095          <idle>-0     (-----) [002] d..1 24577.699710: cpu_idle: state=0 cpu_id=2
147096  Binder:23896_4-24423 (23896) [001] d..2 24577.699711: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147097          <idle>-0     (-----) [001] d..1 24577.699719: cpu_idle: state=0 cpu_id=1
147098  appEventThread-23905 (23896) [003] d..2 24577.699723: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147099          <idle>-0     (-----) [003] d..1 24577.699730: cpu_idle: state=0 cpu_id=3
147100 s.nexuslauncher-24827 (24827) [000] d..3 24577.699903: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
147101 s.nexuslauncher-24827 (24827) [000] d..4 24577.699929: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
147102          <idle>-0     (-----) [001] .n.1 24577.699934: cpu_idle: state=4294967295 cpu_id=1
147103          <idle>-0     (-----) [001] d..2 24577.699941: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
147104 s.nexuslauncher-24827 (24827) [000] d..2 24577.699957: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147105          <idle>-0     (-----) [000] d..1 24577.699971: cpu_idle: state=0 cpu_id=0
147106    RenderThread-25194 (24827) [001] d..1 24577.700121: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
147107    RenderThread-25194 (24827) [001] d..2 24577.700139: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
147108          <idle>-0     (-----) [000] .n.1 24577.700145: cpu_idle: state=4294967295 cpu_id=0
147109          <idle>-0     (-----) [000] d..2 24577.700154: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
147110    RenderThread-25194 (24827) [001] .... 24577.700187: binder_transaction: transaction=1671729 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
147111    RenderThread-25194 (24827) [001] ...2 24577.700193: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
147112    RenderThread-25194 (24827) [001] d..4 24577.700196: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
147113    RenderThread-25194 (24827) [001] d..5 24577.700207: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
147114    RenderThread-25194 (24827) [001] d..2 24577.700218: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
147115  Binder:23896_4-24423 (23896) [001] .... 24577.700224: binder_transaction_received: transaction=1671729
147116 s.nexuslauncher-24827 (24827) [000] d..2 24577.700232: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147117          <idle>-0     (-----) [000] d..1 24577.700243: cpu_idle: state=0 cpu_id=0
147118  Binder:23896_4-24423 (23896) [001] .... 24577.700275: binder_transaction: transaction=1671730 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
147119  Binder:23896_4-24423 (23896) [001] d..2 24577.700285: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
147120  Binder:23896_4-24423 (23896) [001] d..3 24577.700295: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
147121  Binder:23896_4-24423 (23896) [001] .... 24577.700298: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
147122  Binder:23896_4-24423 (23896) [001] d..2 24577.700331: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
147123    RenderThread-25194 (24827) [001] .... 24577.700337: binder_transaction_received: transaction=1671730
147124    RenderThread-25194 (24827) [001] d.s1 24577.700913: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
147125    RenderThread-25194 (24827) [001] d.s2 24577.700931: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
147126    RenderThread-25194 (24827) [001] d..2 24577.702016: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
147127     rcu_preempt-7     (    7) [001] d..2 24577.702024: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=001
147128     rcu_preempt-7     (    7) [001] d..3 24577.702040: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=001
147129     rcu_preempt-7     (    7) [001] d..2 24577.702043: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
147130     rcu_preempt-7     (    7) [001] d..3 24577.702052: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
147131     rcu_preempt-7     (    7) [001] d..2 24577.702061: 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
147132         rcuop/0-10    (   10) [001] d..2 24577.702065: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
147133         rcuop/0-10    (   10) [001] d..3 24577.702088: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
147134         rcuop/0-10    (   10) [001] d.h1 24577.702106: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
147135         rcuop/0-10    (   10) [001] d.h2 24577.702118: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
147136         rcuop/0-10    (   10) [001] d.h2 24577.702125: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
147137          <idle>-0     (-----) [000] .n.1 24577.702131: cpu_idle: state=4294967295 cpu_id=0
147138          <idle>-0     (-----) [000] d..2 24577.702141: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
147139         rcuop/0-10    (   10) [001] d..2 24577.702198: 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
147140         rcuop/1-21    (   21) [001] d..2 24577.702252: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
147141    RenderThread-25194 (24827) [000] .... 24577.702306: binder_transaction: transaction=1671731 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
147142    RenderThread-25194 (24827) [000] ...2 24577.702316: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
147143    RenderThread-25194 (24827) [000] d..4 24577.702319: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
147144         rcuop/6-61    (   61) [001] d..2 24577.702335: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147145    RenderThread-25194 (24827) [000] d..5 24577.702339: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
147146          <idle>-0     (-----) [001] d..1 24577.702348: cpu_idle: state=0 cpu_id=1
147147    RenderThread-25194 (24827) [000] d..2 24577.702351: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
147148  Binder:23896_4-24423 (23896) [000] .... 24577.702357: binder_transaction_received: transaction=1671731
147149  Binder:23896_4-24423 (23896) [000] .... 24577.702462: binder_transaction: transaction=1671732 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
147150  Binder:23896_4-24423 (23896) [000] d..2 24577.702468: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
147151  Binder:23896_4-24423 (23896) [000] d..3 24577.702480: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
147152  Binder:23896_4-24423 (23896) [000] .... 24577.702483: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
147153  Binder:23896_4-24423 (23896) [000] d..2 24577.702516: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
147154    RenderThread-25194 (24827) [000] .... 24577.702522: binder_transaction_received: transaction=1671732
147155    RenderThread-25194 (24827) [000] d..2 24577.702597: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147156          <idle>-0     (-----) [000] d..1 24577.702611: cpu_idle: state=0 cpu_id=0
147157          <idle>-0     (-----) [003] d.h2 24577.703194: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
147158          <idle>-0     (-----) [003] dnh3 24577.703203: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
147159          <idle>-0     (-----) [003] .n.1 24577.703208: cpu_idle: state=4294967295 cpu_id=3
147160          <idle>-0     (-----) [003] d..2 24577.703215: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
147161        DispSync-23904 (23896) [003] d..1 24577.703226: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
147162        DispSync-23904 (23896) [003] d..2 24577.703238: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
147163          <idle>-0     (-----) [001] .n.1 24577.703243: cpu_idle: state=4294967295 cpu_id=1
147164          <idle>-0     (-----) [001] d..2 24577.703251: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
147165        DispSync-23904 (23896) [003] d..2 24577.703257: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147166          <idle>-0     (-----) [003] d..1 24577.703264: cpu_idle: state=0 cpu_id=3
147167   sfEventThread-23906 (23896) [001] d..3 24577.703286: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
147168   sfEventThread-23906 (23896) [001] d..4 24577.703303: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
147169          <idle>-0     (-----) [003] .n.1 24577.703309: cpu_idle: state=4294967295 cpu_id=3
147170          <idle>-0     (-----) [003] d..2 24577.703316: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
147171   sfEventThread-23906 (23896) [001] d..2 24577.703329: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147172          <idle>-0     (-----) [001] d..1 24577.703339: cpu_idle: state=0 cpu_id=1
147173  surfaceflinger-23896 (23896) [003] d..1 24577.703525: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
147174  surfaceflinger-23896 (23896) [003] d..2 24577.703543: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
147175          <idle>-0     (-----) [000] d.h3 24577.703545: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
147176          <idle>-0     (-----) [001] .n.1 24577.703548: cpu_idle: state=4294967295 cpu_id=1
147177          <idle>-0     (-----) [001] d..2 24577.703554: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
147178          <idle>-0     (-----) [000] d.h4 24577.703560: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
147179          <idle>-0     (-----) [002] .n.1 24577.703565: cpu_idle: state=4294967295 cpu_id=2
147180          <idle>-0     (-----) [000] ...1 24577.703573: cpu_idle: state=4294967295 cpu_id=0
147181          <idle>-0     (-----) [002] d..2 24577.703574: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
147182          <idle>-0     (-----) [000] d..1 24577.703576: cpu_idle: state=0 cpu_id=0
147183   sfEventThread-23906 (23896) [001] d..2 24577.703577: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147184          <idle>-0     (-----) [001] d..1 24577.703584: cpu_idle: state=0 cpu_id=1
147185 kgsl_worker_thr-246   (  246) [002] d..2 24577.703613: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
147186 kgsl_worker_thr-246   (  246) [002] d..3 24577.703640: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
147187 kgsl_worker_thr-246   (  246) [002] d..2 24577.703657: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
147188  surfaceflinger-23896 (23896) [003] ...1 24577.703666: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
147189  surfaceflinger-23896 (23896) [003] ...1 24577.703671: tracing_mark_write: E|23896
147190  surfaceflinger-23896 (23896) [003] .... 24577.703706: binder_transaction: transaction=1671733 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
147191  surfaceflinger-23896 (23896) [003] ...2 24577.703722: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
147192  surfaceflinger-23896 (23896) [003] d..4 24577.703727: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
147193  surfaceflinger-23896 (23896) [003] d..5 24577.703744: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
147194          <idle>-0     (-----) [001] .n.1 24577.703748: cpu_idle: state=4294967295 cpu_id=1
147195          <idle>-0     (-----) [001] d..2 24577.703755: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
147196  HwBinder:598_3-633   (  598) [001] .... 24577.703763: binder_transaction_received: transaction=1671733
147197  surfaceflinger-23896 (23896) [003] d..2 24577.703768: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147198          <idle>-0     (-----) [003] d..1 24577.703781: cpu_idle: state=0 cpu_id=3
147199  HwBinder:598_3-633   (  598) [001] ...1 24577.703795: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
147200  kworker/u16:10-23868 (23868) [002] d..2 24577.703828: 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
147201          <idle>-0     (-----) [002] d..1 24577.703838: cpu_idle: state=0 cpu_id=2
147202  HwBinder:598_3-633   (  598) [001] ...1 24577.703867: tracing_mark_write: B|598|HWCSession::PresentDisplay::
147203  HwBinder:598_3-633   (  598) [001] ...1 24577.703978: tracing_mark_write: B|598|HWDeviceDRM::Commit::
147204  HwBinder:598_3-633   (  598) [001] ...1 24577.703986: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
147205  HwBinder:598_3-633   (  598) [001] d.s2 24577.704246: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
147206  HwBinder:598_3-633   (  598) [001] d.s3 24577.704263: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
147207          <idle>-0     (-----) [002] .n.1 24577.704268: cpu_idle: state=4294967295 cpu_id=2
147208  HwBinder:598_3-633   (  598) [001] d.s2 24577.704271: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
147209          <idle>-0     (-----) [002] d..2 24577.704278: 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
147210  HwBinder:598_3-633   (  598) [001] d.s3 24577.704281: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
147211  kworker/u16:10-23868 (23868) [002] .... 24577.704384: clk_set_rate: l3_cluster0_vote_clk 480000000
147212  kworker/u16:10-23868 (23868) [002] .... 24577.704388: clk_set_rate: l3_clk 480000000
147213  HwBinder:598_3-633   (  598) [001] d..2 24577.704455: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
147214  HwBinder:598_3-633   (  598) [001] d..3 24577.704479: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
147215          <idle>-0     (-----) [003] .n.1 24577.704484: cpu_idle: state=4294967295 cpu_id=3
147216          <idle>-0     (-----) [003] d..2 24577.704492: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
147217  HwBinder:598_3-633   (  598) [001] ...1 24577.704545: tracing_mark_write: E|598
147218  HwBinder:598_3-633   (  598) [001] ...1 24577.704549: tracing_mark_write: E|598
147219  HwBinder:598_3-633   (  598) [001] ...1 24577.704588: tracing_mark_write: E|598
147220  kworker/u16:10-23868 (23868) [002] d..2 24577.704608: 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
147221 crtc_commit:111-253   (  253) [003] d.s1 24577.704618: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
147222  HwBinder:598_3-633   (  598) [001] ...1 24577.704618: tracing_mark_write: E|598
147223          <idle>-0     (-----) [002] d..1 24577.704618: cpu_idle: state=0 cpu_id=2
147224  HwBinder:598_3-633   (  598) [001] .... 24577.704629: binder_transaction: transaction=1671734 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
147225 crtc_commit:111-253   (  253) [003] d.s2 24577.704630: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
147226  HwBinder:598_3-633   (  598) [001] d..2 24577.704643: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
147227  HwBinder:598_3-633   (  598) [001] d..3 24577.704664: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
147228  HwBinder:598_3-633   (  598) [001] .... 24577.704667: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
147229          <idle>-0     (-----) [002] .n.1 24577.704669: cpu_idle: state=4294967295 cpu_id=2
147230          <idle>-0     (-----) [002] d..2 24577.704676: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
147231  surfaceflinger-23896 (23896) [002] .... 24577.704684: binder_transaction_received: transaction=1671734
147232  HwBinder:598_3-633   (  598) [001] d..2 24577.704717: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
147233     kworker/1:1-13091 (13091) [001] d..2 24577.704749: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147234          <idle>-0     (-----) [001] d..1 24577.704758: cpu_idle: state=0 cpu_id=1
147235  surfaceflinger-23896 (23896) [002] d..2 24577.704971: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147236          <idle>-0     (-----) [002] d..1 24577.704985: cpu_idle: state=0 cpu_id=2
147237 crtc_commit:111-253   (  253) [003] d..2 24577.705181: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
147238     ksoftirqd/3-34    (   34) [003] d.s2 24577.705196: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
147239     ksoftirqd/3-34    (   34) [003] d.s3 24577.705204: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
147240     ksoftirqd/3-34    (   34) [003] d.s3 24577.705211: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
147241          <idle>-0     (-----) [002] .n.1 24577.705216: cpu_idle: state=4294967295 cpu_id=2
147242          <idle>-0     (-----) [002] d..2 24577.705225: 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
147243     ksoftirqd/3-34    (   34) [003] d..2 24577.705231: 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
147244          <idle>-0     (-----) [003] d..1 24577.705241: cpu_idle: state=0 cpu_id=3
147245  kworker/u16:10-23868 (23868) [002] d..2 24577.705251: 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
147246          <idle>-0     (-----) [002] d..1 24577.705259: cpu_idle: state=0 cpu_id=2
147247          <idle>-0     (-----) [002] ...1 24577.706518: cpu_idle: state=4294967295 cpu_id=2
147248          <idle>-0     (-----) [002] d..1 24577.706521: cpu_idle: state=0 cpu_id=2
147249          <idle>-0     (-----) [001] d.s2 24577.707569: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
147250          <idle>-0     (-----) [001] dns3 24577.707581: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
147251          <idle>-0     (-----) [001] .n.1 24577.707593: cpu_idle: state=4294967295 cpu_id=1
147252          <idle>-0     (-----) [001] d..2 24577.707599: 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
147253     rcu_preempt-7     (    7) [001] d..2 24577.707607: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
147254     rcu_preempt-7     (    7) [001] d..3 24577.707630: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
147255     rcu_preempt-7     (    7) [001] d..2 24577.707640: 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
147256         rcuop/2-29    (   29) [001] d..2 24577.707643: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
147257         rcuop/2-29    (   29) [001] d..3 24577.707653: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
147258         rcuop/2-29    (   29) [001] d..2 24577.707665: 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
147259         rcuop/3-37    (   37) [001] d..2 24577.707684: 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
147260          <idle>-0     (-----) [001] d..1 24577.707694: cpu_idle: state=0 cpu_id=1
147261          <idle>-0     (-----) [000] d.h5 24577.711292: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
147262          <idle>-0     (-----) [000] d.h6 24577.711304: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
147263          <idle>-0     (-----) [000] d.h5 24577.711307: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
147264          <idle>-0     (-----) [003] .n.1 24577.711310: cpu_idle: state=4294967295 cpu_id=3
147265          <idle>-0     (-----) [000] dnh6 24577.711318: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
147266          <idle>-0     (-----) [003] d..2 24577.711323: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
147267          <idle>-0     (-----) [000] .n.1 24577.711328: cpu_idle: state=4294967295 cpu_id=0
147268          <idle>-0     (-----) [000] d..2 24577.711337: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
147269  crtc_event:111-254   (  254) [003] d..2 24577.711349: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147270          <idle>-0     (-----) [003] d..2 24577.711352: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
147271          <idle>-0     (-----) [003] dn.3 24577.711357: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
147272          <idle>-0     (-----) [003] d..2 24577.711362: 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
147273     ksoftirqd/3-34    (   34) [003] d..2 24577.711375: 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
147274          <idle>-0     (-----) [003] d..1 24577.711381: cpu_idle: state=0 cpu_id=3
147275 crtc_commit:111-253   (  253) [000] d..2 24577.711466: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
147276          <idle>-0     (-----) [000] d..1 24577.711472: cpu_idle: state=0 cpu_id=0
147277          <idle>-0     (-----) [000] d.h5 24577.713631: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
147278          <idle>-0     (-----) [000] dnh6 24577.713638: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
147279          <idle>-0     (-----) [000] .n.1 24577.713646: cpu_idle: state=4294967295 cpu_id=0
147280          <idle>-0     (-----) [000] d..2 24577.713650: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
147281 crtc_commit:111-253   (  253) [000] d..2 24577.713694: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147282          <idle>-0     (-----) [000] d..1 24577.713700: cpu_idle: state=0 cpu_id=0
147283          <idle>-0     (-----) [000] d.h5 24577.713938: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
147284          <idle>-0     (-----) [000] d.h6 24577.713950: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
147285          <idle>-0     (-----) [003] .n.1 24577.713955: cpu_idle: state=4294967295 cpu_id=3
147286          <idle>-0     (-----) [003] d..2 24577.713961: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
147287          <idle>-0     (-----) [000] ...1 24577.713964: cpu_idle: state=4294967295 cpu_id=0
147288          <idle>-0     (-----) [000] d..1 24577.713966: cpu_idle: state=0 cpu_id=0
147289  crtc_event:111-254   (  254) [003] d..2 24577.713978: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147290          <idle>-0     (-----) [003] d..1 24577.713983: cpu_idle: state=0 cpu_id=3
147291          <idle>-0     (-----) [001] d.s2 24577.714232: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
147292          <idle>-0     (-----) [000] d.s3 24577.714234: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
147293          <idle>-0     (-----) [001] dns3 24577.714241: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
147294          <idle>-0     (-----) [000] d.s4 24577.714245: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
147295          <idle>-0     (-----) [001] .n.1 24577.714248: cpu_idle: state=4294967295 cpu_id=1
147296          <idle>-0     (-----) [003] .n.1 24577.714250: cpu_idle: state=4294967295 cpu_id=3
147297          <idle>-0     (-----) [000] d.s3 24577.714250: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
147298          <idle>-0     (-----) [001] d..2 24577.714255: 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
147299          <idle>-0     (-----) [003] d..2 24577.714256: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
147300          <idle>-0     (-----) [000] dns4 24577.714273: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
147301     rcu_preempt-7     (    7) [001] d..2 24577.714277: 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
147302  crtc_event:111-254   (  254) [003] d..2 24577.714278: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147303          <idle>-0     (-----) [003] d..1 24577.714283: cpu_idle: state=0 cpu_id=3
147304          <idle>-0     (-----) [001] d..1 24577.714284: cpu_idle: state=0 cpu_id=1
147305          <idle>-0     (-----) [000] .n.1 24577.714288: cpu_idle: state=4294967295 cpu_id=0
147306          <idle>-0     (-----) [000] d..2 24577.714295: 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
147307  kworker/u16:10-23868 (23868) [000] .... 24577.714316: clk_set_rate: l3_cluster0_vote_clk 300000000
147308  kworker/u16:10-23868 (23868) [000] .... 24577.714320: clk_set_rate: l3_clk 300000000
147309  kworker/u16:10-23868 (23868) [000] d..2 24577.714529: 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
147310          <idle>-0     (-----) [000] d..1 24577.714543: cpu_idle: state=0 cpu_id=0
147311          <idle>-0     (-----) [003] d.s3 24577.714557: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
147312          <idle>-0     (-----) [003] d.s4 24577.714566: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
147313          <idle>-0     (-----) [003] d.s4 24577.714574: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
147314          <idle>-0     (-----) [000] .n.1 24577.714580: cpu_idle: state=4294967295 cpu_id=0
147315          <idle>-0     (-----) [003] ...1 24577.714581: cpu_idle: state=4294967295 cpu_id=3
147316          <idle>-0     (-----) [003] d..1 24577.714585: cpu_idle: state=0 cpu_id=3
147317          <idle>-0     (-----) [000] d..2 24577.714590: 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
147318  kworker/u16:10-23868 (23868) [000] d..2 24577.714613: 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
147319          <idle>-0     (-----) [000] d..1 24577.714619: cpu_idle: state=0 cpu_id=0
147320          <idle>-0     (-----) [003] d.h2 24577.715671: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
147321          <idle>-0     (-----) [003] dnh3 24577.715682: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
147322          <idle>-0     (-----) [003] .n.1 24577.715687: cpu_idle: state=4294967295 cpu_id=3
147323          <idle>-0     (-----) [003] d..2 24577.715693: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
147324        DispSync-23904 (23896) [003] d..1 24577.715709: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
147325        DispSync-23904 (23896) [003] d..2 24577.715727: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
147326          <idle>-0     (-----) [002] .n.1 24577.715732: cpu_idle: state=4294967295 cpu_id=2
147327          <idle>-0     (-----) [002] d..2 24577.715742: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
147328        DispSync-23904 (23896) [003] d..2 24577.715753: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147329          <idle>-0     (-----) [003] d..1 24577.715761: cpu_idle: state=0 cpu_id=3
147330  appEventThread-23905 (23896) [002] d..3 24577.715778: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
147331  appEventThread-23905 (23896) [002] d..4 24577.715798: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
147332          <idle>-0     (-----) [000] .n.1 24577.715802: cpu_idle: state=4294967295 cpu_id=0
147333          <idle>-0     (-----) [000] d..2 24577.715811: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
147334  appEventThread-23905 (23896) [002] d..2 24577.715831: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147335          <idle>-0     (-----) [002] d..1 24577.715842: cpu_idle: state=0 cpu_id=2
147336 s.nexuslauncher-24827 (24827) [000] .... 24577.716071: binder_transaction: transaction=1671735 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
147337 s.nexuslauncher-24827 (24827) [000] d..4 24577.716080: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
147338 s.nexuslauncher-24827 (24827) [000] d..5 24577.716110: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
147339          <idle>-0     (-----) [001] .n.1 24577.716115: cpu_idle: state=4294967295 cpu_id=1
147340          <idle>-0     (-----) [001] d..2 24577.716124: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
147341  Binder:23896_4-24423 (23896) [001] .... 24577.716133: binder_transaction_received: transaction=1671735
147342 s.nexuslauncher-24827 (24827) [000] d..3 24577.716145: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
147343 s.nexuslauncher-24827 (24827) [000] d..4 24577.716168: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
147344  Binder:23896_4-24423 (23896) [001] d..1 24577.716168: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
147345          <idle>-0     (-----) [002] .n.1 24577.716173: cpu_idle: state=4294967295 cpu_id=2
147346          <idle>-0     (-----) [002] d..2 24577.716182: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
147347  Binder:23896_4-24423 (23896) [001] d..2 24577.716201: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
147348          <idle>-0     (-----) [003] .n.1 24577.716206: cpu_idle: state=4294967295 cpu_id=3
147349          <idle>-0     (-----) [003] d..2 24577.716213: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
147350    RenderThread-25194 (24827) [002] d..2 24577.716237: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147351  Binder:23896_4-24423 (23896) [001] d..2 24577.716243: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147352          <idle>-0     (-----) [002] d..1 24577.716248: cpu_idle: state=0 cpu_id=2
147353          <idle>-0     (-----) [001] d..1 24577.716256: cpu_idle: state=0 cpu_id=1
147354  appEventThread-23905 (23896) [003] d..2 24577.716257: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147355          <idle>-0     (-----) [003] d..1 24577.716264: cpu_idle: state=0 cpu_id=3
147356 s.nexuslauncher-24827 (24827) [000] d..3 24577.716460: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
147357 s.nexuslauncher-24827 (24827) [000] d..4 24577.716490: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
147358          <idle>-0     (-----) [001] .n.1 24577.716495: cpu_idle: state=4294967295 cpu_id=1
147359          <idle>-0     (-----) [001] d..2 24577.716505: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
147360 s.nexuslauncher-24827 (24827) [000] d..2 24577.716523: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147361          <idle>-0     (-----) [000] d..1 24577.716541: cpu_idle: state=0 cpu_id=0
147362    RenderThread-25194 (24827) [001] d..1 24577.716681: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
147363    RenderThread-25194 (24827) [001] d..2 24577.716702: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
147364          <idle>-0     (-----) [000] .n.1 24577.716710: cpu_idle: state=4294967295 cpu_id=0
147365          <idle>-0     (-----) [000] d..2 24577.716720: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
147366    RenderThread-25194 (24827) [001] .... 24577.716758: binder_transaction: transaction=1671736 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
147367    RenderThread-25194 (24827) [001] ...2 24577.716766: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
147368    RenderThread-25194 (24827) [001] d..4 24577.716769: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
147369    RenderThread-25194 (24827) [001] d..5 24577.716782: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
147370    RenderThread-25194 (24827) [001] d..2 24577.716795: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
147371  Binder:23896_4-24423 (23896) [001] .... 24577.716803: binder_transaction_received: transaction=1671736
147372 s.nexuslauncher-24827 (24827) [000] d..2 24577.716813: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147373          <idle>-0     (-----) [000] d..1 24577.716825: cpu_idle: state=0 cpu_id=0
147374  Binder:23896_4-24423 (23896) [001] .... 24577.716862: binder_transaction: transaction=1671737 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
147375  Binder:23896_4-24423 (23896) [001] d..2 24577.716873: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
147376  Binder:23896_4-24423 (23896) [001] d..3 24577.716885: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
147377  Binder:23896_4-24423 (23896) [001] .... 24577.716888: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
147378  Binder:23896_4-24423 (23896) [001] d..2 24577.716925: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
147379    RenderThread-25194 (24827) [001] .... 24577.716931: binder_transaction_received: transaction=1671737
147380          <idle>-0     (-----) [002] ...1 24577.717517: cpu_idle: state=4294967295 cpu_id=2
147381          <idle>-0     (-----) [002] d..1 24577.717520: cpu_idle: state=0 cpu_id=2
147382    RenderThread-25194 (24827) [001] d.H2 24577.717659: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
147383    RenderThread-25194 (24827) [001] d.H2 24577.717675: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
147384          <idle>-0     (-----) [007] dnh2 24577.717678: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
147385          <idle>-0     (-----) [007] .n.1 24577.717681: cpu_idle: state=4294967295 cpu_id=7
147386          <idle>-0     (-----) [007] d..2 24577.717684: 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
147387    RenderThread-25194 (24827) [001] d.H3 24577.717690: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
147388          <idle>-0     (-----) [002] .n.1 24577.717693: cpu_idle: state=4294967295 cpu_id=2
147389         sugov:4-560   (  560) [007] .... 24577.717701: clk_set_rate: perfcl_clk 825600000
147390         sugov:4-560   (  560) [007] .... 24577.717702: clk_set_rate: cpu7_perfcl_clk 2803200000
147391          <idle>-0     (-----) [002] d..2 24577.717703: 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
147392         sugov:4-560   (  560) [007] .... 24577.717708: clk_set_rate: cpu6_perfcl_clk 2803200000
147393         sugov:4-560   (  560) [007] .... 24577.717713: clk_set_rate: cpu5_perfcl_clk 2803200000
147394         sugov:4-560   (  560) [007] .... 24577.717718: clk_set_rate: cpu4_perfcl_clk 825600000
147395         sugov:4-560   (  560) [007] .... 24577.717723: cpu_frequency: state=825600 cpu_id=4
147396         sugov:0-559   (  559) [002] .... 24577.717741: clk_set_rate: pwrcl_clk 902400000
147397         sugov:0-559   (  559) [002] .... 24577.717820: clk_set_rate: cpu3_pwrcl_clk 1766400000
147398         sugov:0-559   (  559) [002] .... 24577.717831: clk_set_rate: cpu2_pwrcl_clk 1766400000
147399         sugov:0-559   (  559) [002] .... 24577.717838: clk_set_rate: cpu1_pwrcl_clk 1766400000
147400         sugov:0-559   (  559) [002] .... 24577.717845: clk_set_rate: cpu0_pwrcl_clk 902400000
147401          <idle>-0     (-----) [003] ...1 24577.717862: cpu_idle: state=4294967295 cpu_id=3
147402          <idle>-0     (-----) [003] d..1 24577.717868: cpu_idle: state=0 cpu_id=3
147403         sugov:4-560   (  560) [007] d..2 24577.717917: 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
147404          <idle>-0     (-----) [007] d..1 24577.717928: cpu_idle: state=0 cpu_id=7
147405          <idle>-0     (-----) [003] d.s3 24577.717965: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
147406          <idle>-0     (-----) [003] ...1 24577.717990: cpu_idle: state=4294967295 cpu_id=3
147407          <idle>-0     (-----) [007] dnh2 24577.717990: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
147408          <idle>-0     (-----) [007] .n.1 24577.717994: cpu_idle: state=4294967295 cpu_id=7
147409          <idle>-0     (-----) [003] d..1 24577.717995: cpu_idle: state=0 cpu_id=3
147410          <idle>-0     (-----) [007] d..2 24577.717999: 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
147411         sugov:4-560   (  560) [007] .... 24577.718005: cpu_frequency: state=825600 cpu_id=5
147412         sugov:4-560   (  560) [007] .... 24577.718008: cpu_frequency: state=825600 cpu_id=6
147413         sugov:0-559   (  559) [002] .... 24577.718010: cpu_frequency: state=902400 cpu_id=0
147414         sugov:4-560   (  560) [007] .... 24577.718011: cpu_frequency: state=825600 cpu_id=7
147415         sugov:4-560   (  560) [007] d..2 24577.718025: 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
147416          <idle>-0     (-----) [007] d..1 24577.718032: cpu_idle: state=0 cpu_id=7
147417          <idle>-0     (-----) [000] ...1 24577.718204: cpu_idle: state=4294967295 cpu_id=0
147418          <idle>-0     (-----) [000] d..1 24577.718209: cpu_idle: state=0 cpu_id=0
147419         sugov:0-559   (  559) [002] d..2 24577.718212: 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
147420          <idle>-0     (-----) [003] d.s3 24577.718226: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
147421          <idle>-0     (-----) [002] d..1 24577.718230: cpu_idle: state=0 cpu_id=2
147422          <idle>-0     (-----) [003] d.s4 24577.718244: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
147423          <idle>-0     (-----) [002] .n.1 24577.718251: cpu_idle: state=4294967295 cpu_id=2
147424          <idle>-0     (-----) [003] ...1 24577.718253: cpu_idle: state=4294967295 cpu_id=3
147425          <idle>-0     (-----) [003] d..1 24577.718258: cpu_idle: state=0 cpu_id=3
147426          <idle>-0     (-----) [002] d..2 24577.718262: 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
147427         sugov:0-559   (  559) [002] .... 24577.718275: cpu_frequency: state=902400 cpu_id=1
147428         sugov:0-559   (  559) [002] .... 24577.718283: cpu_frequency: state=902400 cpu_id=2
147429         sugov:0-559   (  559) [002] .... 24577.718288: cpu_frequency: state=902400 cpu_id=3
147430         sugov:0-559   (  559) [002] d..2 24577.718316: 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
147431          <idle>-0     (-----) [002] d..1 24577.718327: cpu_idle: state=0 cpu_id=2
147432    RenderThread-25194 (24827) [001] d..2 24577.719182: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
147433          <idle>-0     (-----) [001] d..1 24577.719200: cpu_idle: state=0 cpu_id=1
147434          <idle>-0     (-----) [001] d.h2 24577.719256: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
147435          <idle>-0     (-----) [001] d.h3 24577.719280: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
147436          <idle>-0     (-----) [001] d.h3 24577.719290: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
147437          <idle>-0     (-----) [000] .n.1 24577.719295: cpu_idle: state=4294967295 cpu_id=0
147438          <idle>-0     (-----) [001] ...1 24577.719303: cpu_idle: state=4294967295 cpu_id=1
147439          <idle>-0     (-----) [001] d..1 24577.719308: cpu_idle: state=0 cpu_id=1
147440          <idle>-0     (-----) [000] d..2 24577.719311: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
147441    RenderThread-25194 (24827) [000] .... 24577.719638: binder_transaction: transaction=1671738 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
147442    RenderThread-25194 (24827) [000] ...2 24577.719654: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
147443    RenderThread-25194 (24827) [000] d..4 24577.719661: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
147444          <idle>-0     (-----) [003] d.h2 24577.719686: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
147445    RenderThread-25194 (24827) [000] dn.5 24577.719693: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
147446          <idle>-0     (-----) [003] dnh3 24577.719701: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
147447    RenderThread-25194 (24827) [000] d..2 24577.719706: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
147448          <idle>-0     (-----) [003] .n.1 24577.719709: cpu_idle: state=4294967295 cpu_id=3
147449  Binder:23896_4-24423 (23896) [000] .... 24577.719717: binder_transaction_received: transaction=1671738
147450          <idle>-0     (-----) [003] d..2 24577.719722: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
147451        DispSync-23904 (23896) [003] d..1 24577.719740: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
147452        DispSync-23904 (23896) [003] d..2 24577.719756: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
147453          <idle>-0     (-----) [001] .n.1 24577.719762: cpu_idle: state=4294967295 cpu_id=1
147454          <idle>-0     (-----) [001] d..2 24577.719773: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
147455        DispSync-23904 (23896) [003] d..2 24577.719798: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147456          <idle>-0     (-----) [003] d..1 24577.719812: cpu_idle: state=0 cpu_id=3
147457   sfEventThread-23906 (23896) [001] d..3 24577.719831: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
147458  Binder:23896_4-24423 (23896) [000] d..2 24577.719850: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
147459   sfEventThread-23906 (23896) [001] d..4 24577.719857: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
147460          <idle>-0     (-----) [002] .n.1 24577.719863: cpu_idle: state=4294967295 cpu_id=2
147461   sfEventThread-23906 (23896) [001] d..1 24577.719872: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
147462          <idle>-0     (-----) [002] d..2 24577.719875: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
147463    RenderThread-25194 (24827) [000] d..2 24577.719887: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147464   sfEventThread-23906 (23896) [001] d..2 24577.719907: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=003
147465          <idle>-0     (-----) [000] d..1 24577.719910: cpu_idle: state=0 cpu_id=0
147466          <idle>-0     (-----) [003] .n.1 24577.719913: cpu_idle: state=4294967295 cpu_id=3
147467          <idle>-0     (-----) [003] d..2 24577.719928: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
147468   sfEventThread-23906 (23896) [001] d..2 24577.719943: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147469  Binder:23896_4-24423 (23896) [003] d..1 24577.719948: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
147470          <idle>-0     (-----) [001] d..1 24577.719956: cpu_idle: state=0 cpu_id=1
147471  Binder:23896_4-24423 (23896) [003] d..2 24577.719966: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
147472          <idle>-0     (-----) [001] .n.1 24577.719973: cpu_idle: state=4294967295 cpu_id=1
147473          <idle>-0     (-----) [001] d..2 24577.719982: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
147474   sfEventThread-23906 (23896) [001] d..2 24577.720026: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147475          <idle>-0     (-----) [001] d..1 24577.720034: cpu_idle: state=0 cpu_id=1
147476  Binder:23896_4-24423 (23896) [003] .... 24577.720069: binder_transaction: transaction=1671739 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
147477  Binder:23896_4-24423 (23896) [003] d..2 24577.720080: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
147478  Binder:23896_4-24423 (23896) [003] d..3 24577.720109: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=003
147479  Binder:23896_4-24423 (23896) [003] .... 24577.720114: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
147480  Binder:23896_4-24423 (23896) [003] d..2 24577.720182: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
147481    RenderThread-25194 (24827) [003] .... 24577.720195: binder_transaction_received: transaction=1671739
147482    RenderThread-25194 (24827) [003] d..2 24577.720335: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147483          <idle>-0     (-----) [003] d..1 24577.720357: cpu_idle: state=0 cpu_id=3
147484  surfaceflinger-23896 (23896) [002] ...1 24577.720489: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
147485  surfaceflinger-23896 (23896) [002] ...1 24577.720501: tracing_mark_write: E|23896
147486  surfaceflinger-23896 (23896) [002] .... 24577.720576: binder_transaction: transaction=1671740 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
147487  surfaceflinger-23896 (23896) [002] ...2 24577.720613: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
147488  surfaceflinger-23896 (23896) [002] d..4 24577.720623: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
147489  surfaceflinger-23896 (23896) [002] d..5 24577.720653: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
147490          <idle>-0     (-----) [001] .n.1 24577.720658: cpu_idle: state=4294967295 cpu_id=1
147491          <idle>-0     (-----) [001] d..2 24577.720669: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
147492  HwBinder:598_3-633   (  598) [001] .... 24577.720683: binder_transaction_received: transaction=1671740
147493  surfaceflinger-23896 (23896) [002] d..2 24577.720694: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147494          <idle>-0     (-----) [002] d..1 24577.720716: cpu_idle: state=0 cpu_id=2
147495  HwBinder:598_3-633   (  598) [001] ...1 24577.720745: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
147496          <idle>-0     (-----) [000] d.h3 24577.720876: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
147497          <idle>-0     (-----) [000] d.h4 24577.720901: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
147498          <idle>-0     (-----) [002] .n.1 24577.720909: cpu_idle: state=4294967295 cpu_id=2
147499          <idle>-0     (-----) [000] ...1 24577.720922: cpu_idle: state=4294967295 cpu_id=0
147500          <idle>-0     (-----) [002] d..2 24577.720924: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
147501  HwBinder:598_3-633   (  598) [001] d.s1 24577.720924: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
147502          <idle>-0     (-----) [000] d..1 24577.720931: cpu_idle: state=0 cpu_id=0
147503  HwBinder:598_3-633   (  598) [001] d.s2 24577.720976: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
147504 kgsl_worker_thr-246   (  246) [002] d..2 24577.721002: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
147505  HwBinder:598_3-633   (  598) [001] ...1 24577.721004: tracing_mark_write: B|598|HWCSession::PresentDisplay::
147506 kgsl_worker_thr-246   (  246) [002] d..3 24577.721051: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
147507 kgsl_worker_thr-246   (  246) [002] d..2 24577.721083: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
147508     rcu_preempt-7     (    7) [002] d..2 24577.721097: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
147509     rcu_preempt-7     (    7) [002] d..3 24577.721123: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
147510     rcu_preempt-7     (    7) [002] d..2 24577.721146: 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
147511  HwBinder:598_3-633   (  598) [001] ...1 24577.721208: tracing_mark_write: B|598|HWDeviceDRM::Commit::
147512  HwBinder:598_3-633   (  598) [001] ...1 24577.721223: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
147513  kworker/u16:10-23868 (23868) [002] d..2 24577.721695: 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
147514          <idle>-0     (-----) [002] d..1 24577.721713: cpu_idle: state=0 cpu_id=2
147515  HwBinder:598_3-633   (  598) [001] d..2 24577.721900: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
147516  HwBinder:598_3-633   (  598) [001] d..3 24577.721933: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
147517          <idle>-0     (-----) [000] .n.1 24577.721937: cpu_idle: state=4294967295 cpu_id=0
147518          <idle>-0     (-----) [000] d..2 24577.721952: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
147519  HwBinder:598_3-633   (  598) [001] ...1 24577.722061: tracing_mark_write: E|598
147520  HwBinder:598_3-633   (  598) [001] ...1 24577.722067: tracing_mark_write: E|598
147521  HwBinder:598_3-633   (  598) [001] ...1 24577.722146: tracing_mark_write: E|598
147522  HwBinder:598_3-633   (  598) [001] ...1 24577.722209: tracing_mark_write: E|598
147523  HwBinder:598_3-633   (  598) [001] .... 24577.722228: binder_transaction: transaction=1671741 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
147524  HwBinder:598_3-633   (  598) [001] d..2 24577.722257: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
147525  HwBinder:598_3-633   (  598) [001] d..3 24577.722279: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
147526  HwBinder:598_3-633   (  598) [001] .... 24577.722285: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
147527          <idle>-0     (-----) [002] .n.1 24577.722286: cpu_idle: state=4294967295 cpu_id=2
147528          <idle>-0     (-----) [002] d..2 24577.722298: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
147529  surfaceflinger-23896 (23896) [002] .... 24577.722308: binder_transaction_received: transaction=1671741
147530  HwBinder:598_3-633   (  598) [001] d..2 24577.722380: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
147531         rcuop/0-10    (   10) [001] d..2 24577.722391: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
147532         rcuop/0-10    (   10) [001] d..3 24577.722420: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
147533         rcuop/0-10    (   10) [001] d..2 24577.722433: 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
147534         rcuop/1-21    (   21) [001] d..2 24577.722481: 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
147535          <idle>-0     (-----) [001] d..1 24577.722504: cpu_idle: state=0 cpu_id=1
147536  surfaceflinger-23896 (23896) [002] d..2 24577.722838: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147537 crtc_commit:111-253   (  253) [000] d..2 24577.722859: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
147538          <idle>-0     (-----) [002] d..1 24577.722859: cpu_idle: state=0 cpu_id=2
147539          <idle>-0     (-----) [000] d..1 24577.722878: cpu_idle: state=0 cpu_id=0
147540          <idle>-0     (-----) [001] ...1 24577.723794: cpu_idle: state=4294967295 cpu_id=1
147541          <idle>-0     (-----) [001] d..1 24577.723800: cpu_idle: state=0 cpu_id=1
147542          <idle>-0     (-----) [000] d..2 24577.724715: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
147543          <idle>-0     (-----) [000] dn.3 24577.724736: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
147544          <idle>-0     (-----) [000] .n.1 24577.724742: cpu_idle: state=4294967295 cpu_id=0
147545          <idle>-0     (-----) [000] d..2 24577.724758: 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
147546     ksoftirqd/0-3     (    3) [000] d.s2 24577.724777: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
147547     ksoftirqd/0-3     (    3) [000] d.s3 24577.724823: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
147548     ksoftirqd/0-3     (    3) [000] d..2 24577.724842: 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
147549  kworker/u16:10-23868 (23868) [000] d..2 24577.725069: 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
147550          <idle>-0     (-----) [000] d..1 24577.725087: cpu_idle: state=0 cpu_id=0
147551          <idle>-0     (-----) [003] d.s3 24577.725554: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
147552          <idle>-0     (-----) [003] d.s4 24577.725569: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
147553          <idle>-0     (-----) [003] d.s4 24577.725580: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
147554          <idle>-0     (-----) [000] .n.1 24577.725587: cpu_idle: state=4294967295 cpu_id=0
147555          <idle>-0     (-----) [003] ...1 24577.725592: cpu_idle: state=4294967295 cpu_id=3
147556          <idle>-0     (-----) [003] d..1 24577.725599: cpu_idle: state=0 cpu_id=3
147557          <idle>-0     (-----) [000] d..2 24577.725601: 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
147558  kworker/u16:10-23868 (23868) [000] .... 24577.725701: clk_set_rate: l3_cluster0_vote_clk 480000000
147559  kworker/u16:10-23868 (23868) [000] .... 24577.725712: clk_set_rate: l3_clk 480000000
147560  kworker/u16:10-23868 (23868) [000] d..2 24577.725778: 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
147561          <idle>-0     (-----) [000] d..1 24577.725793: cpu_idle: state=0 cpu_id=0
147562          <idle>-0     (-----) [002] d.s2 24577.727583: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
147563          <idle>-0     (-----) [002] dns3 24577.727603: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
147564          <idle>-0     (-----) [002] .n.1 24577.727625: cpu_idle: state=4294967295 cpu_id=2
147565          <idle>-0     (-----) [002] d..2 24577.727639: 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
147566     rcu_preempt-7     (    7) [002] d..2 24577.727653: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
147567     rcu_preempt-7     (    7) [002] d..3 24577.727692: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
147568     rcu_preempt-7     (    7) [002] d..2 24577.727707: 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
147569         rcuop/2-29    (   29) [002] d..2 24577.727714: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
147570         rcuop/2-29    (   29) [002] d..3 24577.727748: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
147571         rcuop/2-29    (   29) [002] d..2 24577.727764: 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
147572         rcuop/3-37    (   37) [002] d..2 24577.727793: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147573          <idle>-0     (-----) [000] d.h5 24577.727796: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
147574          <idle>-0     (-----) [002] d..1 24577.727806: cpu_idle: state=0 cpu_id=2
147575          <idle>-0     (-----) [000] d.h6 24577.727817: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
147576          <idle>-0     (-----) [003] .n.1 24577.727822: cpu_idle: state=4294967295 cpu_id=3
147577          <idle>-0     (-----) [000] d.h5 24577.727824: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
147578          <idle>-0     (-----) [000] dnh6 24577.727834: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
147579          <idle>-0     (-----) [003] d..2 24577.727835: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
147580          <idle>-0     (-----) [000] .n.1 24577.727849: cpu_idle: state=4294967295 cpu_id=0
147581          <idle>-0     (-----) [000] d..2 24577.727861: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
147582  crtc_event:111-254   (  254) [003] d..2 24577.727880: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147583          <idle>-0     (-----) [003] d..1 24577.727890: cpu_idle: state=0 cpu_id=3
147584 crtc_commit:111-253   (  253) [000] d..2 24577.728047: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
147585          <idle>-0     (-----) [000] d..1 24577.728056: cpu_idle: state=0 cpu_id=0
147586          <idle>-0     (-----) [000] d.h5 24577.730124: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
147587          <idle>-0     (-----) [000] dnh6 24577.730136: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
147588          <idle>-0     (-----) [000] .n.1 24577.730148: cpu_idle: state=4294967295 cpu_id=0
147589          <idle>-0     (-----) [000] d..2 24577.730155: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
147590 crtc_commit:111-253   (  253) [000] d..2 24577.730231: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147591          <idle>-0     (-----) [000] d..1 24577.730240: cpu_idle: state=0 cpu_id=0
147592          <idle>-0     (-----) [000] d.h5 24577.730440: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
147593          <idle>-0     (-----) [000] d.h6 24577.730456: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
147594          <idle>-0     (-----) [003] .n.1 24577.730462: cpu_idle: state=4294967295 cpu_id=3
147595          <idle>-0     (-----) [003] d..2 24577.730471: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
147596          <idle>-0     (-----) [000] ...1 24577.730477: cpu_idle: state=4294967295 cpu_id=0
147597          <idle>-0     (-----) [000] d..1 24577.730482: cpu_idle: state=0 cpu_id=0
147598  crtc_event:111-254   (  254) [003] d..2 24577.730497: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147599          <idle>-0     (-----) [003] d..1 24577.730506: cpu_idle: state=0 cpu_id=3
147600          <idle>-0     (-----) [000] d.s3 24577.730914: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
147601          <idle>-0     (-----) [000] d.s4 24577.730930: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
147602          <idle>-0     (-----) [003] .n.1 24577.730935: cpu_idle: state=4294967295 cpu_id=3
147603          <idle>-0     (-----) [003] d..2 24577.730946: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
147604          <idle>-0     (-----) [000] ...1 24577.730957: cpu_idle: state=4294967295 cpu_id=0
147605          <idle>-0     (-----) [000] d..1 24577.730964: cpu_idle: state=0 cpu_id=0
147606  crtc_event:111-254   (  254) [003] d..2 24577.730977: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147607          <idle>-0     (-----) [003] d..1 24577.730985: cpu_idle: state=0 cpu_id=3
147608          <idle>-0     (-----) [003] d.h2 24577.732174: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
147609          <idle>-0     (-----) [003] dnh3 24577.732187: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
147610          <idle>-0     (-----) [003] .n.1 24577.732195: cpu_idle: state=4294967295 cpu_id=3
147611          <idle>-0     (-----) [003] d..2 24577.732204: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
147612        DispSync-23904 (23896) [003] d..1 24577.732224: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
147613        DispSync-23904 (23896) [003] d..2 24577.732249: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
147614          <idle>-0     (-----) [001] .n.1 24577.732254: cpu_idle: state=4294967295 cpu_id=1
147615          <idle>-0     (-----) [001] d..2 24577.732267: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
147616        DispSync-23904 (23896) [003] d..2 24577.732282: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147617          <idle>-0     (-----) [003] d..1 24577.732293: cpu_idle: state=0 cpu_id=3
147618  appEventThread-23905 (23896) [001] d..3 24577.732319: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
147619  appEventThread-23905 (23896) [001] d..4 24577.732344: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
147620          <idle>-0     (-----) [000] .n.1 24577.732349: cpu_idle: state=4294967295 cpu_id=0
147621          <idle>-0     (-----) [000] d..2 24577.732364: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
147622  appEventThread-23905 (23896) [001] d..2 24577.732388: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147623          <idle>-0     (-----) [001] d..1 24577.732405: cpu_idle: state=0 cpu_id=1
147624 s.nexuslauncher-24827 (24827) [000] .... 24577.732754: binder_transaction: transaction=1671742 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
147625 s.nexuslauncher-24827 (24827) [000] d..4 24577.732764: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=003
147626 s.nexuslauncher-24827 (24827) [000] d..5 24577.732796: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
147627          <idle>-0     (-----) [001] .n.1 24577.732803: cpu_idle: state=4294967295 cpu_id=1
147628          <idle>-0     (-----) [001] d..2 24577.732816: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
147629  Binder:23896_4-24423 (23896) [001] .... 24577.732823: binder_transaction_received: transaction=1671742
147630 s.nexuslauncher-24827 (24827) [000] d..3 24577.732834: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=003
147631  Binder:23896_4-24423 (23896) [001] d..1 24577.732855: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
147632 s.nexuslauncher-24827 (24827) [000] d..4 24577.732861: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
147633          <idle>-0     (-----) [002] .n.1 24577.732867: cpu_idle: state=4294967295 cpu_id=2
147634          <idle>-0     (-----) [002] d..2 24577.732880: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
147635  Binder:23896_4-24423 (23896) [001] d..2 24577.732881: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
147636          <idle>-0     (-----) [003] .n.1 24577.732887: cpu_idle: state=4294967295 cpu_id=3
147637          <idle>-0     (-----) [003] d..2 24577.732897: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
147638  Binder:23896_4-24423 (23896) [001] d..2 24577.732925: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147639    RenderThread-25194 (24827) [002] d..2 24577.732938: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147640          <idle>-0     (-----) [001] d..1 24577.732940: cpu_idle: state=0 cpu_id=1
147641  appEventThread-23905 (23896) [003] d..2 24577.732947: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147642          <idle>-0     (-----) [002] d..1 24577.732950: cpu_idle: state=0 cpu_id=2
147643          <idle>-0     (-----) [003] d..1 24577.732958: cpu_idle: state=0 cpu_id=3
147644 s.nexuslauncher-24827 (24827) [000] d..3 24577.733290: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
147645 s.nexuslauncher-24827 (24827) [000] d..4 24577.733312: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
147646          <idle>-0     (-----) [002] .n.1 24577.733317: cpu_idle: state=4294967295 cpu_id=2
147647          <idle>-0     (-----) [002] d..2 24577.733327: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
147648 s.nexuslauncher-24827 (24827) [000] d..2 24577.733352: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147649          <idle>-0     (-----) [000] d..1 24577.733370: cpu_idle: state=0 cpu_id=0
147650    RenderThread-25194 (24827) [002] d..1 24577.733562: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
147651    RenderThread-25194 (24827) [002] d..2 24577.733584: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
147652          <idle>-0     (-----) [000] .n.1 24577.733591: cpu_idle: state=4294967295 cpu_id=0
147653          <idle>-0     (-----) [000] d..2 24577.733604: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
147654    RenderThread-25194 (24827) [002] .... 24577.733655: binder_transaction: transaction=1671743 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
147655    RenderThread-25194 (24827) [002] ...2 24577.733665: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
147656    RenderThread-25194 (24827) [002] d..4 24577.733669: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
147657    RenderThread-25194 (24827) [002] d..5 24577.733691: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
147658    RenderThread-25194 (24827) [002] d..2 24577.733708: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
147659 s.nexuslauncher-24827 (24827) [000] d..2 24577.733718: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147660  Binder:23896_4-24423 (23896) [002] .... 24577.733718: binder_transaction_received: transaction=1671743
147661          <idle>-0     (-----) [000] d..1 24577.733732: cpu_idle: state=0 cpu_id=0
147662  Binder:23896_4-24423 (23896) [002] .... 24577.733804: binder_transaction: transaction=1671744 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
147663  Binder:23896_4-24423 (23896) [002] d..2 24577.733820: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
147664  Binder:23896_4-24423 (23896) [002] d..3 24577.733836: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
147665  Binder:23896_4-24423 (23896) [002] .... 24577.733840: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
147666  Binder:23896_4-24423 (23896) [002] d..2 24577.733893: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
147667    RenderThread-25194 (24827) [002] .... 24577.733901: binder_transaction_received: transaction=1671744
147668    RenderThread-25194 (24827) [002] d.s1 24577.734256: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
147669    RenderThread-25194 (24827) [002] d.s2 24577.734278: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
147670    RenderThread-25194 (24827) [002] d.s2 24577.734284: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
147671    RenderThread-25194 (24827) [002] d.s3 24577.734302: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
147672          <idle>-0     (-----) [000] .n.1 24577.734309: cpu_idle: state=4294967295 cpu_id=0
147673          <idle>-0     (-----) [000] d..2 24577.734324: 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
147674          <idle>-0     (-----) [001] ...1 24577.734324: cpu_idle: state=4294967295 cpu_id=1
147675          <idle>-0     (-----) [001] d..1 24577.734329: cpu_idle: state=0 cpu_id=1
147676  kworker/u16:10-23868 (23868) [000] .... 24577.734388: clk_set_rate: l3_cluster0_vote_clk 300000000
147677  kworker/u16:10-23868 (23868) [000] .... 24577.734396: clk_set_rate: l3_clk 300000000
147678  kworker/u16:10-23868 (23868) [000] d..2 24577.734720: 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
147679          <idle>-0     (-----) [003] d.s3 24577.734734: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
147680          <idle>-0     (-----) [003] d.s4 24577.734766: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
147681     rcu_preempt-7     (    7) [000] d..2 24577.734767: 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
147682          <idle>-0     (-----) [003] dns4 24577.734772: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
147683          <idle>-0     (-----) [003] .n.1 24577.734781: cpu_idle: state=4294967295 cpu_id=3
147684          <idle>-0     (-----) [000] d..1 24577.734785: cpu_idle: state=0 cpu_id=0
147685          <idle>-0     (-----) [003] d..2 24577.734795: 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
147686  kworker/u16:10-23868 (23868) [003] d..2 24577.734841: 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
147687          <idle>-0     (-----) [003] d..1 24577.734852: cpu_idle: state=0 cpu_id=3
147688          <idle>-0     (-----) [003] d.h2 24577.736183: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
147689          <idle>-0     (-----) [003] dnh3 24577.736197: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
147690          <idle>-0     (-----) [003] .n.1 24577.736207: cpu_idle: state=4294967295 cpu_id=3
147691          <idle>-0     (-----) [003] d..2 24577.736217: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
147692        DispSync-23904 (23896) [003] d..1 24577.736236: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
147693        DispSync-23904 (23896) [003] d..2 24577.736251: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
147694          <idle>-0     (-----) [001] .n.1 24577.736257: cpu_idle: state=4294967295 cpu_id=1
147695          <idle>-0     (-----) [001] d..2 24577.736270: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
147696        DispSync-23904 (23896) [003] d..2 24577.736285: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147697          <idle>-0     (-----) [003] d..1 24577.736301: cpu_idle: state=0 cpu_id=3
147698   sfEventThread-23906 (23896) [001] d..3 24577.736314: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
147699   sfEventThread-23906 (23896) [001] d..4 24577.736346: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
147700          <idle>-0     (-----) [003] .n.1 24577.736352: cpu_idle: state=4294967295 cpu_id=3
147701          <idle>-0     (-----) [003] d..2 24577.736365: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
147702   sfEventThread-23906 (23896) [001] d..2 24577.736384: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147703          <idle>-0     (-----) [001] d..1 24577.736399: cpu_idle: state=0 cpu_id=1
147704    RenderThread-25194 (24827) [002] d..2 24577.736687: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
147705          <idle>-0     (-----) [002] d..1 24577.736708: cpu_idle: state=0 cpu_id=2
147706          <idle>-0     (-----) [002] d.h2 24577.736758: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
147707          <idle>-0     (-----) [002] d.h3 24577.736783: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
147708          <idle>-0     (-----) [002] d.h3 24577.736793: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
147709          <idle>-0     (-----) [000] .n.1 24577.736799: cpu_idle: state=4294967295 cpu_id=0
147710          <idle>-0     (-----) [002] ...1 24577.736805: cpu_idle: state=4294967295 cpu_id=2
147711          <idle>-0     (-----) [002] d..1 24577.736812: cpu_idle: state=0 cpu_id=2
147712          <idle>-0     (-----) [000] d..2 24577.736813: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
147713  surfaceflinger-23896 (23896) [003] d..1 24577.736825: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
147714  surfaceflinger-23896 (23896) [003] d..2 24577.736851: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
147715          <idle>-0     (-----) [001] .n.1 24577.736857: cpu_idle: state=4294967295 cpu_id=1
147716          <idle>-0     (-----) [001] d..2 24577.736867: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
147717   sfEventThread-23906 (23896) [001] d..2 24577.736908: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147718          <idle>-0     (-----) [001] d..1 24577.736919: cpu_idle: state=0 cpu_id=1
147719  surfaceflinger-23896 (23896) [003] ...1 24577.736974: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
147720  surfaceflinger-23896 (23896) [003] ...1 24577.736982: tracing_mark_write: E|23896
147721  surfaceflinger-23896 (23896) [003] .... 24577.737044: binder_transaction: transaction=1671745 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
147722  surfaceflinger-23896 (23896) [003] ...2 24577.737073: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
147723  surfaceflinger-23896 (23896) [003] d..4 24577.737081: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
147724  surfaceflinger-23896 (23896) [003] d..5 24577.737107: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
147725          <idle>-0     (-----) [001] .n.1 24577.737112: cpu_idle: state=4294967295 cpu_id=1
147726    RenderThread-25194 (24827) [000] .... 24577.737124: binder_transaction: transaction=1671746 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
147727          <idle>-0     (-----) [001] d..2 24577.737124: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
147728  HwBinder:598_3-633   (  598) [001] .... 24577.737136: binder_transaction_received: transaction=1671745
147729    RenderThread-25194 (24827) [000] ...2 24577.737143: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
147730  surfaceflinger-23896 (23896) [003] d..2 24577.737148: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147731    RenderThread-25194 (24827) [000] d..4 24577.737148: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=002
147732          <idle>-0     (-----) [003] d..1 24577.737169: cpu_idle: state=0 cpu_id=3
147733    RenderThread-25194 (24827) [000] dn.5 24577.737178: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
147734  HwBinder:598_3-633   (  598) [001] ...1 24577.737183: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
147735    RenderThread-25194 (24827) [000] d..2 24577.737190: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
147736  Binder:23896_4-24423 (23896) [000] .... 24577.737201: binder_transaction_received: transaction=1671746
147737  HwBinder:598_3-633   (  598) [001] ...1 24577.737292: tracing_mark_write: B|598|HWCSession::PresentDisplay::
147738  Binder:23896_4-24423 (23896) [000] .... 24577.737365: binder_transaction: transaction=1671747 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
147739  Binder:23896_4-24423 (23896) [000] .... 24577.737377: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
147740  Binder:23896_4-24423 (23896) [000] d..2 24577.737449: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
147741    RenderThread-25194 (24827) [000] .... 24577.737462: binder_transaction_received: transaction=1671747
147742  HwBinder:598_3-633   (  598) [001] ...1 24577.737470: tracing_mark_write: B|598|HWDeviceDRM::Commit::
147743  HwBinder:598_3-633   (  598) [001] ...1 24577.737483: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
147744    RenderThread-25194 (24827) [000] d.H2 24577.737703: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
147745    RenderThread-25194 (24827) [000] d.H2 24577.737725: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
147746          <idle>-0     (-----) [007] dnh2 24577.737731: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
147747          <idle>-0     (-----) [007] .n.1 24577.737735: cpu_idle: state=4294967295 cpu_id=7
147748          <idle>-0     (-----) [007] d..2 24577.737741: 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
147749    RenderThread-25194 (24827) [000] d.H3 24577.737743: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
147750          <idle>-0     (-----) [002] .n.1 24577.737748: cpu_idle: state=4294967295 cpu_id=2
147751         sugov:4-560   (  560) [007] d..2 24577.737756: 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
147752          <idle>-0     (-----) [007] d..1 24577.737763: cpu_idle: state=0 cpu_id=7
147753          <idle>-0     (-----) [002] d..2 24577.737763: 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
147754    RenderThread-25194 (24827) [000] d..2 24577.737791: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147755         sugov:0-559   (  559) [002] .... 24577.737797: clk_set_rate: pwrcl_clk 1132800000
147756          <idle>-0     (-----) [000] d..1 24577.737807: cpu_idle: state=0 cpu_id=0
147757         sugov:0-559   (  559) [002] .... 24577.737813: clk_set_rate: cpu3_pwrcl_clk 902400000
147758         sugov:0-559   (  559) [002] .... 24577.737826: clk_set_rate: cpu2_pwrcl_clk 902400000
147759         sugov:0-559   (  559) [002] .... 24577.737836: clk_set_rate: cpu1_pwrcl_clk 902400000
147760         sugov:0-559   (  559) [002] .... 24577.737845: clk_set_rate: cpu0_pwrcl_clk 1132800000
147761         sugov:0-559   (  559) [002] .... 24577.737856: cpu_frequency: state=1132800 cpu_id=0
147762         sugov:0-559   (  559) [002] .... 24577.737877: cpu_frequency: state=1132800 cpu_id=1
147763         sugov:0-559   (  559) [002] .... 24577.737881: cpu_frequency: state=1132800 cpu_id=2
147764         sugov:0-559   (  559) [002] .... 24577.737885: cpu_frequency: state=1132800 cpu_id=3
147765         sugov:0-559   (  559) [002] d..2 24577.737924: 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
147766          <idle>-0     (-----) [002] d..1 24577.737937: cpu_idle: state=0 cpu_id=2
147767  HwBinder:598_3-633   (  598) [001] d..2 24577.738199: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
147768  HwBinder:598_3-633   (  598) [001] d..3 24577.738229: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
147769          <idle>-0     (-----) [000] .n.1 24577.738235: cpu_idle: state=4294967295 cpu_id=0
147770          <idle>-0     (-----) [000] d..2 24577.738246: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
147771  HwBinder:598_3-633   (  598) [001] ...1 24577.738335: tracing_mark_write: E|598
147772  HwBinder:598_3-633   (  598) [001] ...1 24577.738342: tracing_mark_write: E|598
147773 crtc_commit:111-253   (  253) [000] d.h2 24577.738359: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
147774 crtc_commit:111-253   (  253) [000] d.h3 24577.738378: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
147775          <idle>-0     (-----) [002] .n.1 24577.738384: cpu_idle: state=4294967295 cpu_id=2
147776          <idle>-0     (-----) [002] d..2 24577.738394: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
147777  HwBinder:598_3-633   (  598) [001] ...1 24577.738404: tracing_mark_write: E|598
147778  HwBinder:598_3-633   (  598) [001] ...1 24577.738454: tracing_mark_write: E|598
147779 kgsl_worker_thr-246   (  246) [002] d..2 24577.738460: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
147780  HwBinder:598_3-633   (  598) [001] .... 24577.738471: binder_transaction: transaction=1671748 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
147781  HwBinder:598_3-633   (  598) [001] d..2 24577.738495: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
147782 kgsl_worker_thr-246   (  246) [002] d..3 24577.738500: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
147783  HwBinder:598_3-633   (  598) [001] d..3 24577.738517: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
147784  HwBinder:598_3-633   (  598) [001] .... 24577.738522: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
147785          <idle>-0     (-----) [003] .n.1 24577.738523: cpu_idle: state=4294967295 cpu_id=3
147786 kgsl_worker_thr-246   (  246) [002] d..2 24577.738526: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
147787          <idle>-0     (-----) [003] d..2 24577.738536: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
147788  surfaceflinger-23896 (23896) [003] .... 24577.738545: binder_transaction_received: transaction=1671748
147789  HwBinder:598_3-633   (  598) [001] d..2 24577.738617: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147790          <idle>-0     (-----) [001] d..1 24577.738638: cpu_idle: state=0 cpu_id=1
147791  surfaceflinger-23896 (23896) [003] d..2 24577.739004: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147792          <idle>-0     (-----) [003] d..1 24577.739025: cpu_idle: state=0 cpu_id=3
147793  kworker/u16:10-23868 (23868) [002] d..2 24577.739060: 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
147794          <idle>-0     (-----) [002] d..1 24577.739078: cpu_idle: state=0 cpu_id=2
147795 crtc_commit:111-253   (  253) [000] d..2 24577.739181: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
147796          <idle>-0     (-----) [000] d..1 24577.739193: cpu_idle: state=0 cpu_id=0
147797          <idle>-0     (-----) [002] ...1 24577.740535: cpu_idle: state=4294967295 cpu_id=2
147798          <idle>-0     (-----) [002] d..1 24577.740539: cpu_idle: state=0 cpu_id=2
147799          <idle>-0     (-----) [000] d.s2 24577.740920: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
147800          <idle>-0     (-----) [000] dns3 24577.740941: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
147801          <idle>-0     (-----) [000] .n.1 24577.740958: cpu_idle: state=4294967295 cpu_id=0
147802          <idle>-0     (-----) [000] d..2 24577.740968: 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
147803     rcu_preempt-7     (    7) [000] d..2 24577.740979: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
147804     rcu_preempt-7     (    7) [000] d..3 24577.741017: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
147805     rcu_preempt-7     (    7) [000] d..2 24577.741033: 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
147806         rcuop/0-10    (   10) [000] d..2 24577.741042: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
147807         rcuop/0-10    (   10) [000] d..3 24577.741072: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
147808         rcuop/0-10    (   10) [000] d..2 24577.741082: 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
147809         rcuop/1-21    (   21) [000] d..2 24577.741156: 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
147810          <idle>-0     (-----) [000] d..1 24577.741172: cpu_idle: state=0 cpu_id=0
147811          <idle>-0     (-----) [000] d.h5 24577.744280: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
147812          <idle>-0     (-----) [000] d.h6 24577.744300: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
147813          <idle>-0     (-----) [000] d.h5 24577.744306: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
147814          <idle>-0     (-----) [003] .n.1 24577.744308: cpu_idle: state=4294967295 cpu_id=3
147815          <idle>-0     (-----) [000] dnh6 24577.744315: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
147816          <idle>-0     (-----) [003] d..2 24577.744325: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
147817          <idle>-0     (-----) [000] .n.1 24577.744329: cpu_idle: state=4294967295 cpu_id=0
147818          <idle>-0     (-----) [000] d..2 24577.744342: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
147819  crtc_event:111-254   (  254) [003] d..2 24577.744369: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147820          <idle>-0     (-----) [003] d..2 24577.744374: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
147821          <idle>-0     (-----) [003] dn.3 24577.744391: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
147822          <idle>-0     (-----) [003] d..2 24577.744399: 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
147823     ksoftirqd/3-34    (   34) [003] d.s2 24577.744413: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
147824     ksoftirqd/3-34    (   34) [003] d.s3 24577.744449: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
147825     ksoftirqd/3-34    (   34) [003] d..2 24577.744464: 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
147826 crtc_commit:111-253   (  253) [000] d..2 24577.744550: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
147827          <idle>-0     (-----) [000] d..1 24577.744560: cpu_idle: state=0 cpu_id=0
147828  kworker/u16:10-23868 (23868) [003] d..2 24577.744707: 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
147829          <idle>-0     (-----) [003] d..1 24577.744724: cpu_idle: state=0 cpu_id=3
147830          <idle>-0     (-----) [003] d.s3 24577.745192: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
147831          <idle>-0     (-----) [003] d.s4 24577.745203: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
147832          <idle>-0     (-----) [003] dns4 24577.745208: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
147833          <idle>-0     (-----) [003] .n.1 24577.745215: cpu_idle: state=4294967295 cpu_id=3
147834          <idle>-0     (-----) [003] d..2 24577.745227: 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
147835  kworker/u16:10-23868 (23868) [003] d..2 24577.745335: 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
147836          <idle>-0     (-----) [003] d..1 24577.745347: cpu_idle: state=0 cpu_id=3
147837          <idle>-0     (-----) [000] d.h5 24577.746606: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
147838          <idle>-0     (-----) [000] dnh6 24577.746617: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
147839          <idle>-0     (-----) [000] .n.1 24577.746629: cpu_idle: state=4294967295 cpu_id=0
147840          <idle>-0     (-----) [000] d..2 24577.746636: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
147841 crtc_commit:111-253   (  253) [000] d..2 24577.746714: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147842          <idle>-0     (-----) [000] d..1 24577.746724: cpu_idle: state=0 cpu_id=0
147843          <idle>-0     (-----) [000] d.h5 24577.746918: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
147844          <idle>-0     (-----) [000] d.h6 24577.746935: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
147845          <idle>-0     (-----) [003] .n.1 24577.746942: cpu_idle: state=4294967295 cpu_id=3
147846          <idle>-0     (-----) [003] d..2 24577.746952: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
147847          <idle>-0     (-----) [000] ...1 24577.746956: cpu_idle: state=4294967295 cpu_id=0
147848          <idle>-0     (-----) [000] d..1 24577.746960: cpu_idle: state=0 cpu_id=0
147849  crtc_event:111-254   (  254) [003] d..2 24577.746984: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147850          <idle>-0     (-----) [003] d..1 24577.746992: cpu_idle: state=0 cpu_id=3
147851          <idle>-0     (-----) [000] d.s3 24577.747578: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
147852          <idle>-0     (-----) [000] d.s4 24577.747595: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
147853          <idle>-0     (-----) [000] d.s2 24577.747598: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
147854          <idle>-0     (-----) [003] .n.1 24577.747600: cpu_idle: state=4294967295 cpu_id=3
147855          <idle>-0     (-----) [003] d..2 24577.747610: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
147856          <idle>-0     (-----) [000] dns3 24577.747614: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
147857          <idle>-0     (-----) [000] .n.1 24577.747627: cpu_idle: state=4294967295 cpu_id=0
147858          <idle>-0     (-----) [000] d..2 24577.747637: 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
147859  crtc_event:111-254   (  254) [003] d..2 24577.747639: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147860          <idle>-0     (-----) [003] d..1 24577.747646: cpu_idle: state=0 cpu_id=3
147861     rcu_preempt-7     (    7) [000] d..2 24577.747669: 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
147862          <idle>-0     (-----) [000] d..1 24577.747682: cpu_idle: state=0 cpu_id=0
147863          <idle>-0     (-----) [003] d.h2 24577.748655: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
147864          <idle>-0     (-----) [003] dnh3 24577.748671: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
147865          <idle>-0     (-----) [003] .n.1 24577.748679: cpu_idle: state=4294967295 cpu_id=3
147866          <idle>-0     (-----) [003] d..2 24577.748688: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
147867        DispSync-23904 (23896) [003] d..1 24577.748706: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
147868        DispSync-23904 (23896) [003] d..2 24577.748728: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
147869          <idle>-0     (-----) [002] .n.1 24577.748733: cpu_idle: state=4294967295 cpu_id=2
147870          <idle>-0     (-----) [002] d..2 24577.748746: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
147871        DispSync-23904 (23896) [003] d..2 24577.748760: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147872          <idle>-0     (-----) [003] d..1 24577.748771: cpu_idle: state=0 cpu_id=3
147873  appEventThread-23905 (23896) [002] d..3 24577.748800: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
147874  appEventThread-23905 (23896) [002] d..4 24577.748827: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
147875          <idle>-0     (-----) [000] .n.1 24577.748833: cpu_idle: state=4294967295 cpu_id=0
147876          <idle>-0     (-----) [000] d..2 24577.748845: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
147877  appEventThread-23905 (23896) [002] d..2 24577.748874: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147878          <idle>-0     (-----) [002] d..1 24577.748891: cpu_idle: state=0 cpu_id=2
147879 s.nexuslauncher-24827 (24827) [000] .... 24577.749222: binder_transaction: transaction=1671749 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
147880 s.nexuslauncher-24827 (24827) [000] d..4 24577.749234: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
147881 s.nexuslauncher-24827 (24827) [000] d..5 24577.749271: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
147882          <idle>-0     (-----) [001] .n.1 24577.749278: cpu_idle: state=4294967295 cpu_id=1
147883          <idle>-0     (-----) [001] d..2 24577.749294: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
147884  Binder:23896_4-24423 (23896) [001] .... 24577.749304: binder_transaction_received: transaction=1671749
147885 s.nexuslauncher-24827 (24827) [000] d..3 24577.749314: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
147886 s.nexuslauncher-24827 (24827) [000] d..4 24577.749340: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
147887  Binder:23896_4-24423 (23896) [001] d..1 24577.749342: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=002
147888          <idle>-0     (-----) [002] .n.1 24577.749348: cpu_idle: state=4294967295 cpu_id=2
147889          <idle>-0     (-----) [002] d..2 24577.749360: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
147890  Binder:23896_4-24423 (23896) [001] d..2 24577.749382: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
147891          <idle>-0     (-----) [003] .n.1 24577.749388: cpu_idle: state=4294967295 cpu_id=3
147892          <idle>-0     (-----) [003] d..2 24577.749396: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
147893    RenderThread-25194 (24827) [002] d..2 24577.749422: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147894  Binder:23896_4-24423 (23896) [001] d..2 24577.749433: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147895          <idle>-0     (-----) [002] d..1 24577.749434: cpu_idle: state=0 cpu_id=2
147896  appEventThread-23905 (23896) [003] d..2 24577.749448: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147897          <idle>-0     (-----) [001] d..1 24577.749449: cpu_idle: state=0 cpu_id=1
147898          <idle>-0     (-----) [003] d..1 24577.749456: cpu_idle: state=0 cpu_id=3
147899 s.nexuslauncher-24827 (24827) [000] d..3 24577.749782: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
147900 s.nexuslauncher-24827 (24827) [000] d..4 24577.749817: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
147901          <idle>-0     (-----) [001] .n.1 24577.749823: cpu_idle: state=4294967295 cpu_id=1
147902          <idle>-0     (-----) [001] d..2 24577.749836: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
147903 s.nexuslauncher-24827 (24827) [000] d..2 24577.749859: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147904          <idle>-0     (-----) [000] d..1 24577.749879: cpu_idle: state=0 cpu_id=0
147905    RenderThread-25194 (24827) [001] d..1 24577.750092: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
147906    RenderThread-25194 (24827) [001] d..2 24577.750120: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
147907          <idle>-0     (-----) [000] .n.1 24577.750124: cpu_idle: state=4294967295 cpu_id=0
147908          <idle>-0     (-----) [000] d..2 24577.750137: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
147909    RenderThread-25194 (24827) [001] .... 24577.750188: binder_transaction: transaction=1671750 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
147910    RenderThread-25194 (24827) [001] ...2 24577.750198: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
147911    RenderThread-25194 (24827) [001] d..4 24577.750202: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
147912    RenderThread-25194 (24827) [001] dn.5 24577.750218: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
147913    RenderThread-25194 (24827) [001] d..2 24577.750228: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
147914  Binder:23896_4-24423 (23896) [001] .... 24577.750237: binder_transaction_received: transaction=1671750
147915 s.nexuslauncher-24827 (24827) [000] d..2 24577.750258: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147916          <idle>-0     (-----) [000] d..1 24577.750272: cpu_idle: state=0 cpu_id=0
147917  Binder:23896_4-24423 (23896) [001] .... 24577.750310: binder_transaction: transaction=1671751 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
147918  Binder:23896_4-24423 (23896) [001] .... 24577.750324: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
147919  Binder:23896_4-24423 (23896) [001] d..2 24577.750383: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
147920    RenderThread-25194 (24827) [001] .... 24577.750393: binder_transaction_received: transaction=1671751
147921          <idle>-0     (-----) [002] ...1 24577.750916: cpu_idle: state=4294967295 cpu_id=2
147922          <idle>-0     (-----) [002] d..1 24577.750920: cpu_idle: state=0 cpu_id=2
147923          <idle>-0     (-----) [003] d.h2 24577.752664: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
147924          <idle>-0     (-----) [003] dnh3 24577.752676: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
147925          <idle>-0     (-----) [003] .n.1 24577.752684: cpu_idle: state=4294967295 cpu_id=3
147926          <idle>-0     (-----) [003] d..2 24577.752693: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
147927        DispSync-23904 (23896) [003] d..1 24577.752709: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
147928        DispSync-23904 (23896) [003] d..2 24577.752732: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
147929          <idle>-0     (-----) [002] .n.1 24577.752736: cpu_idle: state=4294967295 cpu_id=2
147930          <idle>-0     (-----) [002] d..2 24577.752749: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
147931        DispSync-23904 (23896) [003] d..2 24577.752764: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147932          <idle>-0     (-----) [003] d..1 24577.752777: cpu_idle: state=0 cpu_id=3
147933   sfEventThread-23906 (23896) [002] d..3 24577.752793: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
147934   sfEventThread-23906 (23896) [002] d..4 24577.752814: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
147935          <idle>-0     (-----) [003] .n.1 24577.752820: cpu_idle: state=4294967295 cpu_id=3
147936          <idle>-0     (-----) [003] d..2 24577.752830: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
147937   sfEventThread-23906 (23896) [002] d..2 24577.752850: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147938          <idle>-0     (-----) [002] d..1 24577.752865: cpu_idle: state=0 cpu_id=2
147939    RenderThread-25194 (24827) [001] d..2 24577.752969: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
147940          <idle>-0     (-----) [001] d..1 24577.752987: cpu_idle: state=0 cpu_id=1
147941          <idle>-0     (-----) [001] d.h2 24577.753042: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
147942          <idle>-0     (-----) [001] d.h3 24577.753063: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
147943          <idle>-0     (-----) [001] d.h3 24577.753072: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
147944          <idle>-0     (-----) [000] .n.1 24577.753078: cpu_idle: state=4294967295 cpu_id=0
147945          <idle>-0     (-----) [001] ...1 24577.753084: cpu_idle: state=4294967295 cpu_id=1
147946          <idle>-0     (-----) [001] d..1 24577.753091: cpu_idle: state=0 cpu_id=1
147947          <idle>-0     (-----) [000] d..2 24577.753094: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
147948  surfaceflinger-23896 (23896) [003] d..1 24577.753243: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
147949  surfaceflinger-23896 (23896) [003] d..2 24577.753269: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
147950          <idle>-0     (-----) [002] .n.1 24577.753275: cpu_idle: state=4294967295 cpu_id=2
147951          <idle>-0     (-----) [002] d..2 24577.753285: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
147952   sfEventThread-23906 (23896) [002] d..2 24577.753322: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147953          <idle>-0     (-----) [002] d..1 24577.753332: cpu_idle: state=0 cpu_id=2
147954    RenderThread-25194 (24827) [000] .... 24577.753362: binder_transaction: transaction=1671752 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
147955  surfaceflinger-23896 (23896) [003] ...1 24577.753377: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
147956    RenderThread-25194 (24827) [000] ...2 24577.753378: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
147957    RenderThread-25194 (24827) [000] d..4 24577.753382: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
147958  surfaceflinger-23896 (23896) [003] ...1 24577.753384: tracing_mark_write: E|23896
147959    RenderThread-25194 (24827) [000] dn.5 24577.753410: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
147960    RenderThread-25194 (24827) [000] d..2 24577.753422: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
147961  Binder:23896_4-24423 (23896) [000] .... 24577.753431: binder_transaction_received: transaction=1671752
147962  surfaceflinger-23896 (23896) [003] .... 24577.753443: binder_transaction: transaction=1671753 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
147963  surfaceflinger-23896 (23896) [003] ...2 24577.753470: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
147964  surfaceflinger-23896 (23896) [003] d..4 24577.753477: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
147965  surfaceflinger-23896 (23896) [003] d..5 24577.753499: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
147966          <idle>-0     (-----) [001] .n.1 24577.753505: cpu_idle: state=4294967295 cpu_id=1
147967          <idle>-0     (-----) [001] d..2 24577.753516: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
147968  HwBinder:598_3-633   (  598) [001] .... 24577.753529: binder_transaction_received: transaction=1671753
147969  surfaceflinger-23896 (23896) [003] d..2 24577.753539: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147970          <idle>-0     (-----) [003] d..1 24577.753561: cpu_idle: state=0 cpu_id=3
147971  HwBinder:598_3-633   (  598) [001] ...1 24577.753581: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
147972  Binder:23896_4-24423 (23896) [000] .... 24577.753582: binder_transaction: transaction=1671754 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
147973  Binder:23896_4-24423 (23896) [000] .... 24577.753593: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
147974  Binder:23896_4-24423 (23896) [000] d..2 24577.753660: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
147975    RenderThread-25194 (24827) [000] .... 24577.753672: binder_transaction_received: transaction=1671754
147976  HwBinder:598_3-633   (  598) [001] ...1 24577.753690: tracing_mark_write: B|598|HWCSession::PresentDisplay::
147977    RenderThread-25194 (24827) [000] d..2 24577.753779: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147978          <idle>-0     (-----) [000] d..1 24577.753793: cpu_idle: state=0 cpu_id=0
147979  HwBinder:598_3-633   (  598) [001] ...1 24577.753855: tracing_mark_write: B|598|HWDeviceDRM::Commit::
147980  HwBinder:598_3-633   (  598) [001] ...1 24577.753868: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
147981          <idle>-0     (-----) [000] d.s2 24577.754250: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
147982  HwBinder:598_3-633   (  598) [001] d.s2 24577.754260: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
147983          <idle>-0     (-----) [000] dns3 24577.754270: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
147984          <idle>-0     (-----) [000] .n.1 24577.754287: cpu_idle: state=4294967295 cpu_id=0
147985          <idle>-0     (-----) [000] d..2 24577.754296: 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
147986     rcu_preempt-7     (    7) [000] d..2 24577.754308: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
147987  HwBinder:598_3-633   (  598) [001] d.s3 24577.754315: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
147988     rcu_preempt-7     (    7) [000] d..3 24577.754347: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
147989     rcu_preempt-7     (    7) [000] d..2 24577.754363: 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
147990  kworker/u16:10-23868 (23868) [000] .... 24577.754430: clk_set_rate: l3_cluster0_vote_clk 480000000
147991  kworker/u16:10-23868 (23868) [000] .... 24577.754439: clk_set_rate: l3_clk 480000000
147992  HwBinder:598_3-633   (  598) [001] d..2 24577.754622: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
147993  kworker/u16:10-23868 (23868) [000] d.h3 24577.754632: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
147994  kworker/u16:10-23868 (23868) [000] d.h4 24577.754651: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=002
147995          <idle>-0     (-----) [002] .n.1 24577.754656: cpu_idle: state=4294967295 cpu_id=2
147996  HwBinder:598_3-633   (  598) [001] d..3 24577.754660: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
147997          <idle>-0     (-----) [002] d..2 24577.754671: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
147998          <idle>-0     (-----) [003] .n.1 24577.754707: cpu_idle: state=4294967295 cpu_id=3
147999          <idle>-0     (-----) [003] d..2 24577.754719: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
148000  HwBinder:598_3-633   (  598) [001] ...1 24577.754751: tracing_mark_write: E|598
148001  HwBinder:598_3-633   (  598) [001] ...1 24577.754756: tracing_mark_write: E|598
148002 kgsl_worker_thr-246   (  246) [003] d..2 24577.754777: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
148003  HwBinder:598_3-633   (  598) [001] ...1 24577.754814: tracing_mark_write: E|598
148004 kgsl_worker_thr-246   (  246) [003] d..3 24577.754821: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
148005 kgsl_worker_thr-246   (  246) [003] d..2 24577.754844: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
148006  HwBinder:598_3-633   (  598) [001] ...1 24577.754862: tracing_mark_write: E|598
148007  kworker/u16:10-23868 (23868) [000] d..2 24577.754872: 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
148008  HwBinder:598_3-633   (  598) [001] .... 24577.754876: binder_transaction: transaction=1671755 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
148009  kworker/u16:15-18488 (18488) [003] d.s2 24577.754888: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
148010          <idle>-0     (-----) [000] d..1 24577.754888: cpu_idle: state=0 cpu_id=0
148011  HwBinder:598_3-633   (  598) [001] d..2 24577.754896: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
148012  kworker/u16:15-18488 (18488) [003] d.s3 24577.754898: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
148013  kworker/u16:15-18488 (18488) [003] d.s3 24577.754906: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
148014          <idle>-0     (-----) [000] .n.1 24577.754912: cpu_idle: state=4294967295 cpu_id=0
148015  HwBinder:598_3-633   (  598) [001] d..3 24577.754920: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
148016          <idle>-0     (-----) [000] d..2 24577.754927: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
148017  HwBinder:598_3-633   (  598) [001] .... 24577.754933: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
148018  surfaceflinger-23896 (23896) [000] .... 24577.754938: binder_transaction_received: transaction=1671755
148019  HwBinder:598_3-633   (  598) [001] d..2 24577.755002: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
148020         rcuop/2-29    (   29) [001] d..2 24577.755019: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
148021         rcuop/2-29    (   29) [001] d..3 24577.755051: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
148022         rcuop/2-29    (   29) [001] d..2 24577.755061: 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
148023     rcu_preempt-7     (    7) [001] d..2 24577.755091: 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
148024          <idle>-0     (-----) [001] d..1 24577.755105: cpu_idle: state=0 cpu_id=1
148025  surfaceflinger-23896 (23896) [000] d..2 24577.755118: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
148026  surfaceflinger-23896 (23896) [000] d..3 24577.755168: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
148027  surfaceflinger-23896 (23896) [000] d..2 24577.755387: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
148028  kworker/u16:15-18488 (18488) [003] d..2 24577.755400: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
148029  kworker/u16:10-23868 (23868) [000] d..2 24577.755426: 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
148030         rcuop/0-10    (   10) [003] d..2 24577.755427: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148031          <idle>-0     (-----) [000] d..1 24577.755442: cpu_idle: state=0 cpu_id=0
148032          <idle>-0     (-----) [003] d..1 24577.755442: cpu_idle: state=0 cpu_id=3
148033 crtc_commit:111-253   (  253) [002] d..2 24577.755515: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
148034          <idle>-0     (-----) [002] d..1 24577.755528: cpu_idle: state=0 cpu_id=2
148035          <idle>-0     (-----) [001] d.h3 24577.756789: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
148036          <idle>-0     (-----) [001] dnh4 24577.756811: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
148037          <idle>-0     (-----) [001] .n.1 24577.756821: cpu_idle: state=4294967295 cpu_id=1
148038          <idle>-0     (-----) [001] d..2 24577.756832: 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
148039   kworker/u17:2-23076 (23076) [001] d..2 24577.756879: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
148040   kworker/u17:2-23076 (23076) [001] d..3 24577.756898: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
148041          <idle>-0     (-----) [000] ...1 24577.756912: cpu_idle: state=4294967295 cpu_id=0
148042          <idle>-0     (-----) [000] d..1 24577.756916: cpu_idle: state=0 cpu_id=0
148043   kworker/u17:2-23076 (23076) [001] d..2 24577.756929: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
148044     kworker/1:1-13091 (13091) [001] d..2 24577.756961: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
148045     kworker/1:1-13091 (13091) [001] d..3 24577.757009: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
148046          <idle>-0     (-----) [000] .n.1 24577.757014: cpu_idle: state=4294967295 cpu_id=0
148047          <idle>-0     (-----) [000] d..2 24577.757026: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
148048     kworker/1:1-13091 (13091) [001] d..2 24577.757040: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148049          <idle>-0     (-----) [001] d..1 24577.757053: cpu_idle: state=0 cpu_id=1
148050          <idle>-0     (-----) [003] ...1 24577.757154: cpu_idle: state=4294967295 cpu_id=3
148051          <idle>-0     (-----) [003] d..1 24577.757158: cpu_idle: state=0 cpu_id=3
148052            adbd-23484 ( 1007) [000] d..2 24577.757206: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148053          <idle>-0     (-----) [001] d.h3 24577.757211: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
148054          <idle>-0     (-----) [000] d..1 24577.757219: cpu_idle: state=0 cpu_id=0
148055          <idle>-0     (-----) [001] dnh4 24577.757220: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
148056          <idle>-0     (-----) [001] .n.1 24577.757228: cpu_idle: state=4294967295 cpu_id=1
148057          <idle>-0     (-----) [001] d..2 24577.757238: 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
148058   kworker/u17:2-23076 (23076) [001] d..2 24577.757252: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
148059   kworker/u17:2-23076 (23076) [001] d..3 24577.757260: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
148060   kworker/u17:2-23076 (23076) [001] d..2 24577.757284: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
148061     kworker/1:1-13091 (13091) [001] d..2 24577.757321: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
148062     kworker/1:1-13091 (13091) [001] d..3 24577.757335: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
148063          <idle>-0     (-----) [000] .n.1 24577.757341: cpu_idle: state=4294967295 cpu_id=0
148064          <idle>-0     (-----) [000] d..2 24577.757352: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
148065     kworker/1:1-13091 (13091) [001] d..2 24577.757358: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148066          <idle>-0     (-----) [001] d..1 24577.757368: cpu_idle: state=0 cpu_id=1
148067            adbd-23484 ( 1007) [000] d..2 24577.757393: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
148068            adbd-23484 ( 1007) [000] d..3 24577.757417: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
148069            adbd-23484 ( 1007) [000] d..2 24577.757495: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
148070            adbd-1007  ( 1007) [000] d.H2 24577.757669: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
148071          <idle>-0     (-----) [007] dnh2 24577.757690: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
148072          <idle>-0     (-----) [007] .n.1 24577.757694: cpu_idle: state=4294967295 cpu_id=7
148073          <idle>-0     (-----) [007] d..2 24577.757699: 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
148074         sugov:4-560   (  560) [007] d..2 24577.757713: 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
148075          <idle>-0     (-----) [007] d..1 24577.757719: cpu_idle: state=0 cpu_id=7
148076          <idle>-0     (-----) [001] .n.1 24577.759350: cpu_idle: state=4294967295 cpu_id=1
148077          <idle>-0     (-----) [001] d..2 24577.759363: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=13423 next_prio=120
148078            adbd-1007  ( 1007) [000] d..2 24577.759545: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148079          <idle>-0     (-----) [000] d..1 24577.759562: cpu_idle: state=0 cpu_id=0
148080              sh-13423 (13423) [001] d..2 24577.759906: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
148081              sh-13423 (13423) [001] dn.3 24577.759924: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
148082              sh-13423 (13423) [001] d..2 24577.759935: sched_switch: prev_comm=adbd prev_pid=13423 prev_prio=120 prev_state=R+ ==> next_comm=migration/1 next_pid=17 next_prio=0
148083          <idle>-0     (-----) [000] .n.1 24577.759979: cpu_idle: state=4294967295 cpu_id=0
148084          <idle>-0     (-----) [000] d..2 24577.759991: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=13423 next_prio=120
148085     migration/1-17    (   17) [001] d..2 24577.759995: 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
148086          <idle>-0     (-----) [001] d..1 24577.760006: cpu_idle: state=0 cpu_id=1
148087              sh-13423 (13423) [000] d.h4 24577.760760: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
148088              sh-13423 (13423) [000] d.h5 24577.760786: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
148089          <idle>-0     (-----) [003] .n.1 24577.760791: cpu_idle: state=4294967295 cpu_id=3
148090              sh-13423 (13423) [000] d.h4 24577.760792: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
148091          <idle>-0     (-----) [003] d..2 24577.760802: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
148092              sh-13423 (13423) [000] d.h5 24577.760805: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
148093          <idle>-0     (-----) [002] .n.1 24577.760810: cpu_idle: state=4294967295 cpu_id=2
148094          <idle>-0     (-----) [002] d..2 24577.760823: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
148095  crtc_event:111-254   (  254) [003] d..2 24577.760845: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148096          <idle>-0     (-----) [003] d..1 24577.760853: cpu_idle: state=0 cpu_id=3
148097          <idle>-0     (-----) [001] d.s2 24577.760907: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
148098              sh-13423 (13423) [000] d.s3 24577.760917: sched_waking: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
148099          <idle>-0     (-----) [001] dns3 24577.760923: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
148100              sh-13423 (13423) [000] dns4 24577.760935: sched_wakeup: comm=kworker/0:1 pid=13012 prio=120 target_cpu=000
148101          <idle>-0     (-----) [001] .n.1 24577.760940: cpu_idle: state=4294967295 cpu_id=1
148102              sh-13423 (13423) [000] d..2 24577.760949: sched_switch: prev_comm=adbd prev_pid=13423 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:1 next_pid=13012 next_prio=120
148103          <idle>-0     (-----) [001] d..2 24577.760950: 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
148104     rcu_preempt-7     (    7) [001] d..2 24577.760979: 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
148105          <idle>-0     (-----) [001] d..1 24577.760991: cpu_idle: state=0 cpu_id=1
148106     kworker/0:1-13012 (13012) [000] d..2 24577.761033: sched_switch: prev_comm=kworker/0:1 prev_pid=13012 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=13423 next_prio=120
148107 crtc_commit:111-253   (  253) [002] d..2 24577.761037: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
148108          <idle>-0     (-----) [002] d..1 24577.761045: cpu_idle: state=0 cpu_id=2
148109              sh-13423 (13423) [000] d..2 24577.761480: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
148110              sh-13423 (13423) [000] d..3 24577.761513: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
148111          <idle>-0     (-----) [001] .n.1 24577.761518: cpu_idle: state=4294967295 cpu_id=1
148112          <idle>-0     (-----) [001] d..2 24577.761528: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
148113          <idle>-0     (-----) [002] .n.1 24577.761915: cpu_idle: state=4294967295 cpu_id=2
148114          <idle>-0     (-----) [002] d..2 24577.761926: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=13424 next_prio=120
148115 shell svc 13423-13424 ( 1007) [002] d..1 24577.761956: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
148116            adbd-1007  ( 1007) [001] d..2 24577.761966: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
148117 shell svc 13423-13424 ( 1007) [002] d..2 24577.761986: sched_blocked_reason: pid=1007 iowait=0 caller=do_page_fault+0x4e0/0x594
148118          <idle>-0     (-----) [001] d..1 24577.761989: cpu_idle: state=0 cpu_id=1
148119          <idle>-0     (-----) [001] .n.1 24577.761993: cpu_idle: state=4294967295 cpu_id=1
148120 shell svc 13423-13424 ( 1007) [002] d..2 24577.761995: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
148121          <idle>-0     (-----) [001] d..2 24577.762008: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
148122            adbd-1007  ( 1007) [001] d..1 24577.762016: sched_waking: comm=adbd pid=13424 prio=120 target_cpu=002
148123 shell svc 13423-13424 ( 1007) [002] d..2 24577.762023: sched_switch: prev_comm=adbd prev_pid=13424 prev_prio=120 prev_state=D|K ==> next_comm=swapper/2 next_pid=0 next_prio=120
148124          <idle>-0     (-----) [002] d..1 24577.762031: cpu_idle: state=0 cpu_id=2
148125            adbd-1007  ( 1007) [001] d..2 24577.762049: sched_blocked_reason: pid=13424 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
148126            adbd-1007  ( 1007) [001] d..2 24577.762057: sched_wakeup: comm=adbd pid=13424 prio=120 target_cpu=002
148127          <idle>-0     (-----) [002] .n.1 24577.762063: cpu_idle: state=4294967295 cpu_id=2
148128          <idle>-0     (-----) [002] d..2 24577.762072: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=13424 next_prio=120
148129            adbd-1007  ( 1007) [001] d..2 24577.762080: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
148130 shell svc 13423-13424 ( 1007) [002] d..1 24577.762084: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
148131          <idle>-0     (-----) [001] d..1 24577.762089: cpu_idle: state=0 cpu_id=1
148132 shell svc 13423-13424 ( 1007) [002] d..2 24577.762092: sched_blocked_reason: pid=1007 iowait=0 caller=do_page_fault+0x4e0/0x594
148133 shell svc 13423-13424 ( 1007) [002] d..2 24577.762099: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
148134          <idle>-0     (-----) [001] .n.1 24577.762105: cpu_idle: state=4294967295 cpu_id=1
148135          <idle>-0     (-----) [001] d..2 24577.762114: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
148136            adbd-1007  ( 1007) [001] d..1 24577.762120: sched_waking: comm=adbd pid=13424 prio=120 target_cpu=002
148137 shell svc 13423-13424 ( 1007) [002] d..2 24577.762125: sched_switch: prev_comm=adbd prev_pid=13424 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
148138          <idle>-0     (-----) [002] d..1 24577.762131: cpu_idle: state=0 cpu_id=2
148139            adbd-1007  ( 1007) [001] d..2 24577.762133: sched_blocked_reason: pid=13424 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
148140            adbd-1007  ( 1007) [001] d..2 24577.762142: sched_wakeup: comm=adbd pid=13424 prio=120 target_cpu=002
148141          <idle>-0     (-----) [002] .n.1 24577.762151: cpu_idle: state=4294967295 cpu_id=2
148142          <idle>-0     (-----) [002] d..2 24577.762159: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=13424 next_prio=120
148143 shell svc 13423-13424 ( 1007) [002] d..1 24577.762163: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
148144            adbd-1007  ( 1007) [001] d..2 24577.762167: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
148145 shell svc 13423-13424 ( 1007) [002] d..2 24577.762175: sched_blocked_reason: pid=1007 iowait=0 caller=do_page_fault+0x4e0/0x594
148146          <idle>-0     (-----) [001] d..1 24577.762175: cpu_idle: state=0 cpu_id=1
148147 shell svc 13423-13424 ( 1007) [002] d..2 24577.762183: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
148148          <idle>-0     (-----) [001] .n.1 24577.762188: cpu_idle: state=4294967295 cpu_id=1
148149          <idle>-0     (-----) [001] d..2 24577.762197: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
148150 shell svc 13423-13424 ( 1007) [002] d..2 24577.762200: sched_switch: prev_comm=adbd prev_pid=13424 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
148151            adbd-1007  ( 1007) [001] d..1 24577.762205: sched_waking: comm=adbd pid=13424 prio=120 target_cpu=002
148152          <idle>-0     (-----) [002] d..1 24577.762206: cpu_idle: state=0 cpu_id=2
148153            adbd-1007  ( 1007) [001] d..2 24577.762213: sched_blocked_reason: pid=13424 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
148154            adbd-1007  ( 1007) [001] d..2 24577.762221: sched_wakeup: comm=adbd pid=13424 prio=120 target_cpu=002
148155          <idle>-0     (-----) [002] .n.1 24577.762226: cpu_idle: state=4294967295 cpu_id=2
148156          <idle>-0     (-----) [002] d..2 24577.762233: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=13424 next_prio=120
148157 shell svc 13423-13424 ( 1007) [002] d..1 24577.762237: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
148158            adbd-1007  ( 1007) [001] d..2 24577.762240: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
148159 shell svc 13423-13424 ( 1007) [002] d..2 24577.762250: sched_blocked_reason: pid=1007 iowait=0 caller=do_page_fault+0x4e0/0x594
148160          <idle>-0     (-----) [001] d..1 24577.762250: cpu_idle: state=0 cpu_id=1
148161 shell svc 13423-13424 ( 1007) [002] d..2 24577.762259: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
148162          <idle>-0     (-----) [001] .n.1 24577.762264: cpu_idle: state=4294967295 cpu_id=1
148163          <idle>-0     (-----) [001] d..2 24577.762276: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
148164            adbd-1007  ( 1007) [001] d..1 24577.762333: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
148165 shell svc 13423-13424 ( 1007) [002] d..2 24577.762339: sched_switch: prev_comm=shell svc 13423 prev_pid=13424 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148166          <idle>-0     (-----) [002] d..1 24577.762346: cpu_idle: state=0 cpu_id=2
148167            adbd-1007  ( 1007) [001] dn.2 24577.762377: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
148168            adbd-1007  ( 1007) [001] d..2 24577.762386: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=23485 next_prio=120
148169            adbd-23485 ( 1007) [001] d..2 24577.762501: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
148170            adbd-1007  ( 1007) [001] d.h4 24577.762524: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
148171            adbd-1007  ( 1007) [001] dnh5 24577.762540: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
148172            adbd-1007  ( 1007) [001] d..2 24577.762551: 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
148173   kworker/u17:2-23076 (23076) [001] d..2 24577.762568: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
148174   kworker/u17:2-23076 (23076) [001] d..3 24577.762578: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
148175   kworker/u17:2-23076 (23076) [001] d..2 24577.762602: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
148176     kworker/1:1-13091 (13091) [001] d..2 24577.762612: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
148177     kworker/1:1-13091 (13091) [001] d..3 24577.762624: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
148178     kworker/1:1-13091 (13091) [001] d..2 24577.762638: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
148179            adbd-23485 ( 1007) [001] d..2 24577.762668: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
148180            adbd-1007  ( 1007) [001] d..2 24577.762798: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148181          <idle>-0     (-----) [001] d..1 24577.762813: cpu_idle: state=0 cpu_id=1
148182              sh-13423 (13423) [000] d.h4 24577.763100: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
148183          <idle>-0     (-----) [001] d.h3 24577.763115: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
148184              sh-13423 (13423) [000] d.h5 24577.763121: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
148185          <idle>-0     (-----) [002] .n.1 24577.763126: cpu_idle: state=4294967295 cpu_id=2
148186          <idle>-0     (-----) [001] dnh4 24577.763130: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
148187          <idle>-0     (-----) [002] d..2 24577.763133: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
148188          <idle>-0     (-----) [001] .n.1 24577.763139: cpu_idle: state=4294967295 cpu_id=1
148189          <idle>-0     (-----) [001] d..2 24577.763150: 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
148190   kworker/u17:2-23076 (23076) [001] d..2 24577.763164: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
148191   kworker/u17:2-23076 (23076) [001] d..3 24577.763172: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
148192   kworker/u17:2-23076 (23076) [001] d..2 24577.763195: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
148193     kworker/1:1-13091 (13091) [001] d..2 24577.763208: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
148194 crtc_commit:111-253   (  253) [002] d..2 24577.763229: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148195          <idle>-0     (-----) [002] d..1 24577.763236: cpu_idle: state=0 cpu_id=2
148196     kworker/1:1-13091 (13091) [001] d..3 24577.763247: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
148197          <idle>-0     (-----) [002] .n.1 24577.763252: cpu_idle: state=4294967295 cpu_id=2
148198          <idle>-0     (-----) [002] d..2 24577.763261: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
148199     kworker/1:1-13091 (13091) [001] d..2 24577.763271: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148200          <idle>-0     (-----) [001] d..1 24577.763282: cpu_idle: state=0 cpu_id=1
148201            adbd-23484 ( 1007) [002] d..2 24577.763371: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148202          <idle>-0     (-----) [002] d..1 24577.763380: cpu_idle: state=0 cpu_id=2
148203          <idle>-0     (-----) [001] d.h3 24577.763390: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
148204              sh-13423 (13423) [000] d.h4 24577.763391: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
148205          <idle>-0     (-----) [001] dnh4 24577.763398: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
148206          <idle>-0     (-----) [001] .n.1 24577.763405: cpu_idle: state=4294967295 cpu_id=1
148207              sh-13423 (13423) [000] d.h5 24577.763411: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
148208          <idle>-0     (-----) [001] d..2 24577.763414: 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
148209          <idle>-0     (-----) [003] .n.1 24577.763415: cpu_idle: state=4294967295 cpu_id=3
148210          <idle>-0     (-----) [003] d..2 24577.763424: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
148211   kworker/u17:2-23076 (23076) [001] d..2 24577.763427: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
148212   kworker/u17:2-23076 (23076) [001] d..3 24577.763434: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
148213  crtc_event:111-254   (  254) [003] d..2 24577.763449: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148214          <idle>-0     (-----) [003] d..1 24577.763456: cpu_idle: state=0 cpu_id=3
148215   kworker/u17:2-23076 (23076) [001] d..2 24577.763457: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
148216     kworker/1:1-13091 (13091) [001] d..2 24577.763467: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
148217     kworker/1:1-13091 (13091) [001] d..3 24577.763498: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
148218     kworker/1:1-13091 (13091) [001] d..2 24577.763512: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
148219            adbd-23484 ( 1007) [001] d..2 24577.763544: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
148220            adbd-23484 ( 1007) [001] d..3 24577.763553: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
148221            adbd-23484 ( 1007) [001] d..2 24577.763627: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
148222            adbd-1007  ( 1007) [001] d..2 24577.763725: sched_waking: comm=shell svc 13423 pid=13424 prio=120 target_cpu=002
148223            adbd-1007  ( 1007) [001] d..3 24577.763744: sched_wakeup: comm=shell svc 13423 pid=13424 prio=120 target_cpu=001
148224            adbd-1007  ( 1007) [001] d..1 24577.763762: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
148225            adbd-1007  ( 1007) [001] d..2 24577.763798: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
148226          <idle>-0     (-----) [002] .n.1 24577.763803: cpu_idle: state=4294967295 cpu_id=2
148227          <idle>-0     (-----) [002] d..2 24577.763811: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
148228            adbd-1007  ( 1007) [001] d..2 24577.763849: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=shell svc 13423 next_pid=13424 next_prio=120
148229            adbd-23485 ( 1007) [002] d..2 24577.763887: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148230 shell svc 13423-13424 ( 1007) [001] d.h2 24577.763892: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
148231          <idle>-0     (-----) [002] d..1 24577.763895: cpu_idle: state=0 cpu_id=2
148232 shell svc 13423-13424 ( 1007) [001] dnh3 24577.763909: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
148233 shell svc 13423-13424 ( 1007) [001] d..2 24577.763920: sched_switch: prev_comm=shell svc 13423 prev_pid=13424 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
148234   kworker/u17:2-23076 (23076) [001] d..2 24577.763935: sched_waking: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
148235   kworker/u17:2-23076 (23076) [001] d..3 24577.763943: sched_wakeup: comm=kworker/1:1 pid=13091 prio=120 target_cpu=001
148236   kworker/u17:2-23076 (23076) [001] d..2 24577.763966: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13091 next_prio=120
148237     kworker/1:1-13091 (13091) [001] d..2 24577.763977: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
148238     kworker/1:1-13091 (13091) [001] d..3 24577.764005: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
148239          <idle>-0     (-----) [002] .n.1 24577.764011: cpu_idle: state=4294967295 cpu_id=2
148240          <idle>-0     (-----) [002] d..2 24577.764019: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
148241     kworker/1:1-13091 (13091) [001] d..2 24577.764021: sched_switch: prev_comm=kworker/1:1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=shell svc 13423 next_pid=13424 next_prio=120
148242            adbd-23485 ( 1007) [002] d..2 24577.764043: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148243          <idle>-0     (-----) [002] d..1 24577.764049: cpu_idle: state=0 cpu_id=2
148244 shell svc 13423-13424 ( 1007) [001] d..2 24577.764089: sched_switch: prev_comm=shell svc 13423 prev_pid=13424 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148245          <idle>-0     (-----) [001] d..1 24577.764103: cpu_idle: state=0 cpu_id=1
148246          <idle>-0     (-----) [002] d.s3 24577.764242: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
148247              sh-13423 (13423) [000] d.s2 24577.764248: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
148248          <idle>-0     (-----) [002] d.s4 24577.764259: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
148249          <idle>-0     (-----) [003] .n.1 24577.764264: cpu_idle: state=4294967295 cpu_id=3
148250          <idle>-0     (-----) [002] d.s3 24577.764269: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
148251          <idle>-0     (-----) [003] d..2 24577.764273: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
148252              sh-13423 (13423) [000] d.s3 24577.764293: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
148253          <idle>-0     (-----) [002] dns4 24577.764300: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
148254  crtc_event:111-254   (  254) [003] d..2 24577.764307: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
148255          <idle>-0     (-----) [002] .n.1 24577.764309: cpu_idle: state=4294967295 cpu_id=2
148256          <idle>-0     (-----) [002] d..2 24577.764317: 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
148257     rcu_preempt-7     (    7) [002] d..2 24577.764324: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
148258     rcu_preempt-7     (    7) [002] d..3 24577.764353: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
148259     rcu_preempt-7     (    7) [002] d..2 24577.764379: 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
148260         rcuop/2-29    (   29) [002] d..2 24577.764391: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
148261         rcuop/2-29    (   29) [002] d..3 24577.764410: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
148262         rcuop/2-29    (   29) [002] d..2 24577.764418: 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
148263         rcuop/3-37    (   37) [002] d..2 24577.764452: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148264          <idle>-0     (-----) [002] d..1 24577.764464: cpu_idle: state=0 cpu_id=2
148265  kworker/u16:10-23868 (23868) [003] d..2 24577.764564: 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
148266          <idle>-0     (-----) [003] d..1 24577.764575: cpu_idle: state=0 cpu_id=3
148267              sh-13423 (13423) [000] d.h1 24577.764623: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
148268              sh-13423 (13423) [000] dnh2 24577.764640: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
148269              sh-13423 (13423) [000] d..2 24577.764655: sched_switch: prev_comm=sh prev_pid=13423 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
148270 irq/79-1436400.-24613 (24613) [000] d..3 24577.764719: sched_pi_setprio: comm=kworker/u16:10 pid=23868 oldprio=120 newprio=49
148271 irq/79-1436400.-24613 (24613) [000] d..2 24577.764741: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=sh next_pid=13423 next_prio=120
148272          <idle>-0     (-----) [003] d.s3 24577.765104: sched_waking: comm=kworker/u16:10 pid=23868 prio=49 target_cpu=003
148273          <idle>-0     (-----) [003] d.s4 24577.765127: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=49 target_cpu=002
148274          <idle>-0     (-----) [002] .n.1 24577.765132: cpu_idle: state=4294967295 cpu_id=2
148275          <idle>-0     (-----) [002] d..2 24577.765142: 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=49
148276          <idle>-0     (-----) [003] d.h2 24577.765142: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
148277          <idle>-0     (-----) [003] dnh3 24577.765153: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
148278  kworker/u16:10-23868 (23868) [002] d..1 24577.765155: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
148279          <idle>-0     (-----) [003] .n.1 24577.765160: cpu_idle: state=4294967295 cpu_id=3
148280  kworker/u16:10-23868 (23868) [002] d..2 24577.765169: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
148281          <idle>-0     (-----) [003] d..2 24577.765169: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
148282  kworker/u16:10-23868 (23868) [002] d..2 24577.765172: sched_pi_setprio: comm=kworker/u16:10 pid=23868 oldprio=49 newprio=120
148283              sh-13423 (13423) [000] d..2 24577.765185: sched_switch: prev_comm=sh prev_pid=13423 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
148284        DispSync-23904 (23896) [003] d..1 24577.765192: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
148285        DispSync-23904 (23896) [003] d..2 24577.765213: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
148286          <idle>-0     (-----) [001] .n.1 24577.765219: cpu_idle: state=4294967295 cpu_id=1
148287          <idle>-0     (-----) [001] d..2 24577.765230: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
148288        DispSync-23904 (23896) [003] d..2 24577.765246: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148289          <idle>-0     (-----) [003] d..1 24577.765255: cpu_idle: state=0 cpu_id=3
148290  appEventThread-23905 (23896) [001] d..3 24577.765288: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
148291  appEventThread-23905 (23896) [001] d..4 24577.765320: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=003
148292 irq/79-1436400.-24613 (24613) [000] d..2 24577.765323: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=sh next_pid=13423 next_prio=120
148293          <idle>-0     (-----) [003] dns3 24577.765336: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
148294          <idle>-0     (-----) [003] dns4 24577.765348: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
148295              sh-13423 (13423) [000] d..2 24577.765356: sched_switch: prev_comm=sh prev_pid=13423 prev_prio=120 prev_state=R+ ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
148296          <idle>-0     (-----) [003] .n.1 24577.765364: cpu_idle: state=4294967295 cpu_id=3
148297  appEventThread-23905 (23896) [001] d..2 24577.765373: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148298          <idle>-0     (-----) [003] d..2 24577.765374: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
148299 irq/79-1436400.-24613 (24613) [000] d..2 24577.765389: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=sh next_pid=13423 next_prio=120
148300          <idle>-0     (-----) [001] d..1 24577.765396: cpu_idle: state=0 cpu_id=1
148301  kworker/u16:10-23868 (23868) [002] .... 24577.765419: clk_set_rate: l3_cluster0_vote_clk 748800000
148302  kworker/u16:10-23868 (23868) [002] .... 24577.765426: clk_set_rate: l3_clk 748800000
148303  kworker/u16:10-23868 (23868) [002] d..2 24577.765476: 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
148304          <idle>-0     (-----) [002] d..1 24577.765491: cpu_idle: state=0 cpu_id=2
148305 s.nexuslauncher-24827 (24827) [003] .... 24577.765852: binder_transaction: transaction=1671756 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
148306 s.nexuslauncher-24827 (24827) [003] d..4 24577.765864: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
148307 s.nexuslauncher-24827 (24827) [003] d..5 24577.765894: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
148308          <idle>-0     (-----) [001] .n.1 24577.765900: cpu_idle: state=4294967295 cpu_id=1
148309          <idle>-0     (-----) [001] d..2 24577.765910: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
148310  Binder:23896_4-24423 (23896) [001] .... 24577.765918: binder_transaction_received: transaction=1671756
148311 s.nexuslauncher-24827 (24827) [003] d..3 24577.765935: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
148312  Binder:23896_4-24423 (23896) [001] d..1 24577.765952: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
148313 s.nexuslauncher-24827 (24827) [003] d..4 24577.765958: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=002
148314          <idle>-0     (-----) [002] .n.1 24577.765963: cpu_idle: state=4294967295 cpu_id=2
148315  Binder:23896_4-24423 (23896) [001] d..2 24577.765972: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
148316          <idle>-0     (-----) [002] d..2 24577.765973: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
148317 s.nexuslauncher-24827 (24827) [003] d..2 24577.765986: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
148318  Binder:23896_4-24423 (23896) [001] d..2 24577.766009: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148319          <idle>-0     (-----) [001] d..1 24577.766020: cpu_idle: state=0 cpu_id=1
148320    RenderThread-25194 (24827) [002] d..2 24577.766023: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148321  appEventThread-23905 (23896) [003] d..2 24577.766024: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
148322          <idle>-0     (-----) [002] d..1 24577.766032: cpu_idle: state=0 cpu_id=2
148323 s.nexuslauncher-24827 (24827) [003] d..3 24577.766504: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=002
148324 s.nexuslauncher-24827 (24827) [003] d..4 24577.766530: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
148325          <idle>-0     (-----) [001] .n.1 24577.766537: cpu_idle: state=4294967295 cpu_id=1
148326          <idle>-0     (-----) [001] d..2 24577.766546: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
148327 s.nexuslauncher-24827 (24827) [003] d..2 24577.766557: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148328          <idle>-0     (-----) [003] d..1 24577.766569: cpu_idle: state=0 cpu_id=3
148329    RenderThread-25194 (24827) [001] d..1 24577.766818: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=003
148330    RenderThread-25194 (24827) [001] d..2 24577.766845: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
148331          <idle>-0     (-----) [002] .n.1 24577.766850: cpu_idle: state=4294967295 cpu_id=2
148332          <idle>-0     (-----) [002] d..2 24577.766859: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
148333    RenderThread-25194 (24827) [001] .... 24577.766918: binder_transaction: transaction=1671757 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
148334    RenderThread-25194 (24827) [001] ...2 24577.766928: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
148335    RenderThread-25194 (24827) [001] d..4 24577.766931: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
148336    RenderThread-25194 (24827) [001] d..5 24577.766942: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
148337    RenderThread-25194 (24827) [001] d..2 24577.766954: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
148338  Binder:23896_4-24423 (23896) [001] .... 24577.766962: binder_transaction_received: transaction=1671757
148339 s.nexuslauncher-24827 (24827) [002] d..2 24577.766970: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148340          <idle>-0     (-----) [002] d..1 24577.766980: cpu_idle: state=0 cpu_id=2
148341  Binder:23896_4-24423 (23896) [001] .... 24577.767034: binder_transaction: transaction=1671758 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
148342  Binder:23896_4-24423 (23896) [001] d..2 24577.767047: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
148343  Binder:23896_4-24423 (23896) [001] d..3 24577.767058: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
148344  Binder:23896_4-24423 (23896) [001] .... 24577.767061: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
148345  Binder:23896_4-24423 (23896) [001] d..2 24577.767073: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
148346    RenderThread-25194 (24827) [001] .... 24577.767079: binder_transaction_received: transaction=1671758
148347          <idle>-0     (-----) [003] d.h2 24577.769148: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
148348          <idle>-0     (-----) [003] dnh3 24577.769160: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
148349          <idle>-0     (-----) [003] .n.1 24577.769166: cpu_idle: state=4294967295 cpu_id=3
148350          <idle>-0     (-----) [003] d..2 24577.769176: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
148351        DispSync-23904 (23896) [003] d..1 24577.769196: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
148352        DispSync-23904 (23896) [003] d..2 24577.769210: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
148353          <idle>-0     (-----) [002] .n.1 24577.769216: cpu_idle: state=4294967295 cpu_id=2
148354          <idle>-0     (-----) [002] d..2 24577.769226: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
148355        DispSync-23904 (23896) [003] d..2 24577.769249: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
148356   sfEventThread-23906 (23896) [002] d..3 24577.769268: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
148357   sfEventThread-23906 (23896) [002] d..4 24577.769296: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
148358  Binder:23896_4-24423 (23896) [003] d..2 24577.769307: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
148359   sfEventThread-23906 (23896) [002] d..2 24577.769328: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148360          <idle>-0     (-----) [002] d..1 24577.769335: cpu_idle: state=0 cpu_id=2
148361    RenderThread-25194 (24827) [001] d..2 24577.769614: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
148362          <idle>-0     (-----) [001] d..1 24577.769627: cpu_idle: state=0 cpu_id=1
148363  surfaceflinger-23896 (23896) [003] d..2 24577.769651: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
148364  surfaceflinger-23896 (23896) [003] d..3 24577.769690: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
148365          <idle>-0     (-----) [001] d.h2 24577.769697: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
148366          <idle>-0     (-----) [001] d.h3 24577.769708: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
148367          <idle>-0     (-----) [001] dnh3 24577.769712: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
148368          <idle>-0     (-----) [001] dnh2 24577.769716: sched_waking: comm=wpa_supplicant pid=2697 prio=120 target_cpu=001
148369          <idle>-0     (-----) [001] dnh3 24577.769749: sched_wakeup: comm=wpa_supplicant pid=2697 prio=120 target_cpu=003
148370          <idle>-0     (-----) [001] .n.1 24577.769757: cpu_idle: state=4294967295 cpu_id=1
148371          <idle>-0     (-----) [001] d..2 24577.769768: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
148372  surfaceflinger-23896 (23896) [003] d..1 24577.769796: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
148373  surfaceflinger-23896 (23896) [003] d..2 24577.769811: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=002
148374          <idle>-0     (-----) [002] .n.1 24577.769816: cpu_idle: state=4294967295 cpu_id=2
148375          <idle>-0     (-----) [002] d..2 24577.769823: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
148376   sfEventThread-23906 (23896) [002] d..2 24577.769852: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148377          <idle>-0     (-----) [002] d..1 24577.769857: cpu_idle: state=0 cpu_id=2
148378  surfaceflinger-23896 (23896) [003] ...1 24577.769928: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
148379  surfaceflinger-23896 (23896) [003] ...1 24577.769936: tracing_mark_write: E|23896
148380  surfaceflinger-23896 (23896) [003] .... 24577.769997: binder_transaction: transaction=1671759 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
148381    RenderThread-25194 (24827) [001] .... 24577.770015: binder_transaction: transaction=1671760 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
148382  surfaceflinger-23896 (23896) [003] ...2 24577.770025: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
148383    RenderThread-25194 (24827) [001] ...2 24577.770028: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
148384    RenderThread-25194 (24827) [001] d..4 24577.770031: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=003
148385  surfaceflinger-23896 (23896) [003] d..4 24577.770034: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
148386    RenderThread-25194 (24827) [001] d..5 24577.770058: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
148387  surfaceflinger-23896 (23896) [003] d..5 24577.770060: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
148388          <idle>-0     (-----) [002] .n.1 24577.770065: cpu_idle: state=4294967295 cpu_id=2
148389    RenderThread-25194 (24827) [001] d..2 24577.770071: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
148390          <idle>-0     (-----) [002] d..2 24577.770073: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
148391  surfaceflinger-23896 (23896) [003] d..2 24577.770078: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=wpa_supplicant next_pid=2697 next_prio=120
148392  Binder:23896_4-24423 (23896) [001] .... 24577.770078: binder_transaction_received: transaction=1671760
148393  HwBinder:598_3-633   (  598) [002] .... 24577.770083: binder_transaction_received: transaction=1671759
148394  HwBinder:598_3-633   (  598) [002] ...1 24577.770142: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
148395  wpa_supplicant-2697  ( 2697) [003] d..2 24577.770201: sched_switch: prev_comm=wpa_supplicant prev_pid=2697 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
148396  Binder:23896_4-24423 (23896) [001] .... 24577.770204: binder_transaction: transaction=1671761 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
148397  Binder:23896_4-24423 (23896) [001] d..2 24577.770211: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
148398  Binder:23896_4-24423 (23896) [001] d..3 24577.770223: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
148399         rcuop/2-29    (   29) [003] d..2 24577.770224: 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
148400  Binder:23896_4-24423 (23896) [001] .... 24577.770226: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
148401          <idle>-0     (-----) [003] d..1 24577.770237: cpu_idle: state=0 cpu_id=3
148402  Binder:23896_4-24423 (23896) [001] d..2 24577.770264: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
148403  HwBinder:598_3-633   (  598) [002] ...1 24577.770266: tracing_mark_write: B|598|HWCSession::PresentDisplay::
148404    RenderThread-25194 (24827) [001] .... 24577.770270: binder_transaction_received: transaction=1671761
148405    RenderThread-25194 (24827) [001] d..2 24577.770357: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148406          <idle>-0     (-----) [001] d..1 24577.770372: cpu_idle: state=0 cpu_id=1
148407  HwBinder:598_3-633   (  598) [002] ...1 24577.770452: tracing_mark_write: B|598|HWDeviceDRM::Commit::
148408  HwBinder:598_3-633   (  598) [002] ...1 24577.770467: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
148409  HwBinder:598_3-633   (  598) [002] d.s1 24577.770909: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
148410  HwBinder:598_3-633   (  598) [002] d.s2 24577.770928: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
148411  HwBinder:598_3-633   (  598) [002] d..2 24577.771192: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=002
148412  HwBinder:598_3-633   (  598) [002] d..3 24577.771216: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
148413          <idle>-0     (-----) [003] .n.1 24577.771222: cpu_idle: state=4294967295 cpu_id=3
148414          <idle>-0     (-----) [003] d..2 24577.771232: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
148415              sh-13423 (13423) [000] d.h2 24577.771239: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=003
148416              sh-13423 (13423) [000] d.h3 24577.771266: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
148417          <idle>-0     (-----) [001] .n.1 24577.771273: cpu_idle: state=4294967295 cpu_id=1
148418          <idle>-0     (-----) [001] d..2 24577.771283: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
148419  HwBinder:598_3-633   (  598) [002] ...1 24577.771322: tracing_mark_write: E|598
148420  HwBinder:598_3-633   (  598) [002] ...1 24577.771328: tracing_mark_write: E|598
148421 kgsl_worker_thr-246   (  246) [001] d..2 24577.771341: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
148422 kgsl_worker_thr-246   (  246) [001] d..3 24577.771368: sched_blocked_reason: pid=23868 iowait=0 caller=worker_thread+0x578/0x788
148423 kgsl_worker_thr-246   (  246) [001] d..3 24577.771374: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
148424 kgsl_worker_thr-246   (  246) [001] d..2 24577.771398: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
148425  HwBinder:598_3-633   (  598) [002] ...1 24577.771405: tracing_mark_write: E|598
148426  HwBinder:598_3-633   (  598) [002] ...1 24577.771473: tracing_mark_write: E|598
148427  HwBinder:598_3-633   (  598) [002] .... 24577.771489: binder_transaction: transaction=1671762 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
148428  HwBinder:598_3-633   (  598) [002] d..2 24577.771509: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
148429  HwBinder:598_3-633   (  598) [002] d..3 24577.771530: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
148430  HwBinder:598_3-633   (  598) [002] .... 24577.771534: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
148431  HwBinder:598_3-633   (  598) [002] d..2 24577.771605: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
148432     rcu_preempt-7     (    7) [002] d..2 24577.771637: 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
148433          <idle>-0     (-----) [002] d..1 24577.771649: cpu_idle: state=0 cpu_id=2
148434  kworker/u16:10-23868 (23868) [001] d..2 24577.771697: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
148435  surfaceflinger-23896 (23896) [001] .... 24577.771705: binder_transaction_received: transaction=1671762
148436 crtc_commit:111-253   (  253) [003] d..2 24577.772010: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
148437          <idle>-0     (-----) [003] d..1 24577.772023: cpu_idle: state=0 cpu_id=3
148438  surfaceflinger-23896 (23896) [001] d..2 24577.772165: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
148439  kworker/u16:10-23868 (23868) [001] d..2 24577.772204: 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
148440          <idle>-0     (-----) [001] d..1 24577.772219: cpu_idle: state=0 cpu_id=1
148441          <idle>-0     (-----) [003] ...1 24577.773614: cpu_idle: state=4294967295 cpu_id=3
148442          <idle>-0     (-----) [003] d..1 24577.773618: cpu_idle: state=0 cpu_id=3
148443          <idle>-0     (-----) [001] ...1 24577.773848: cpu_idle: state=4294967295 cpu_id=1
148444          <idle>-0     (-----) [001] d..1 24577.773852: cpu_idle: state=0 cpu_id=1
148445              sh-13423 (13423) [000] d.s2 24577.774244: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
148446              sh-13423 (13423) [000] d.s3 24577.774266: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
148447          <idle>-0     (-----) [001] .n.1 24577.774270: cpu_idle: state=4294967295 cpu_id=1
148448          <idle>-0     (-----) [001] d..2 24577.774281: 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
148449  kworker/u16:10-23868 (23868) [001] .... 24577.774346: clk_set_rate: l3_cluster0_vote_clk 844800000
148450  kworker/u16:10-23868 (23868) [001] .... 24577.774354: clk_set_rate: l3_clk 844800000
148451  kworker/u16:10-23868 (23868) [001] d..2 24577.774498: 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
148452          <idle>-0     (-----) [001] d..1 24577.774509: cpu_idle: state=0 cpu_id=1
148453          <idle>-0     (-----) [001] ...1 24577.776012: cpu_idle: state=4294967295 cpu_id=1
148454          <idle>-0     (-----) [001] d..1 24577.776015: cpu_idle: state=0 cpu_id=1
148455          <idle>-0     (-----) [001] .n.1 24577.776190: cpu_idle: state=4294967295 cpu_id=1
148456          <idle>-0     (-----) [001] d..2 24577.776200: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=13425 next_prio=120
148457              sh-13423 (13423) [000] d..2 24577.776316: sched_switch: prev_comm=sh prev_pid=13423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148458          <idle>-0     (-----) [000] d..1 24577.776340: cpu_idle: state=0 cpu_id=0
148459          <idle>-0     (-----) [000] d.h5 24577.777229: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
148460          <idle>-0     (-----) [000] d.h6 24577.777245: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
148461          <idle>-0     (-----) [003] .n.1 24577.777250: cpu_idle: state=4294967295 cpu_id=3
148462          <idle>-0     (-----) [000] d.h5 24577.777252: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
148463          <idle>-0     (-----) [003] d..2 24577.777260: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
148464          <idle>-0     (-----) [000] dnh6 24577.777273: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
148465          <idle>-0     (-----) [000] .n.1 24577.777288: cpu_idle: state=4294967295 cpu_id=0
148466          <idle>-0     (-----) [000] d..2 24577.777298: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
148467  crtc_event:111-254   (  254) [003] d..2 24577.777300: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148468          <idle>-0     (-----) [003] d..1 24577.777307: cpu_idle: state=0 cpu_id=3
148469 crtc_commit:111-253   (  253) [000] d..2 24577.777476: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
148470          <idle>-0     (-----) [000] d..1 24577.777484: cpu_idle: state=0 cpu_id=0
148471          <idle>-0     (-----) [002] d.s2 24577.777575: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
148472          <idle>-0     (-----) [002] dns3 24577.777645: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
148473          <idle>-0     (-----) [002] .n.1 24577.777652: cpu_idle: state=4294967295 cpu_id=2
148474          <idle>-0     (-----) [002] d..2 24577.777661: 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
148475     rcu_preempt-7     (    7) [002] d..2 24577.777670: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
148476          <idle>-0     (-----) [000] d.H3 24577.777675: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
148477          <idle>-0     (-----) [000] d.H3 24577.777689: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
148478          <idle>-0     (-----) [007] dnh2 24577.777695: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
148479          <idle>-0     (-----) [007] .n.1 24577.777699: cpu_idle: state=4294967295 cpu_id=7
148480          <idle>-0     (-----) [007] d..2 24577.777704: 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
148481     rcu_preempt-7     (    7) [002] d..3 24577.777709: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
148482          <idle>-0     (-----) [000] dnH4 24577.777711: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
148483         sugov:4-560   (  560) [007] d..2 24577.777717: 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
148484          <idle>-0     (-----) [000] dns3 24577.777718: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
148485          <idle>-0     (-----) [007] d..1 24577.777723: cpu_idle: state=0 cpu_id=7
148486     rcu_preempt-7     (    7) [002] d..2 24577.777726: 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
148487          <idle>-0     (-----) [000] dns4 24577.777729: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
148488          <idle>-0     (-----) [003] .n.1 24577.777735: cpu_idle: state=4294967295 cpu_id=3
148489          <idle>-0     (-----) [003] d..2 24577.777743: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
148490          <idle>-0     (-----) [000] .n.1 24577.777748: cpu_idle: state=4294967295 cpu_id=0
148491          <idle>-0     (-----) [000] d..2 24577.777755: 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
148492         rcuop/0-10    (   10) [002] d..2 24577.777756: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148493          <idle>-0     (-----) [002] d..1 24577.777766: cpu_idle: state=0 cpu_id=2
148494  crtc_event:111-254   (  254) [003] d..2 24577.777766: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148495          <idle>-0     (-----) [003] d..1 24577.777773: cpu_idle: state=0 cpu_id=3
148496         sugov:0-559   (  559) [000] .... 24577.777788: clk_set_rate: pwrcl_clk 1766400000
148497          atrace-13425 (13425) [001] d..2 24577.777844: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
148498          atrace-13425 (13425) [001] dn.3 24577.777857: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
148499          atrace-13425 (13425) [001] d..2 24577.777867: sched_switch: prev_comm=sh prev_pid=13425 prev_prio=120 prev_state=R+ ==> next_comm=migration/1 next_pid=17 next_prio=0
148500         sugov:0-559   (  559) [000] d..2 24577.777891: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
148501          <idle>-0     (-----) [000] d..1 24577.777904: cpu_idle: state=0 cpu_id=0
148502          <idle>-0     (-----) [002] .n.1 24577.777906: cpu_idle: state=4294967295 cpu_id=2
148503          <idle>-0     (-----) [002] d..2 24577.777915: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=13425 next_prio=120
148504     migration/1-17    (   17) [001] d..2 24577.777921: 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
148505          <idle>-0     (-----) [001] d..1 24577.777939: cpu_idle: state=0 cpu_id=1
148506          <idle>-0     (-----) [003] d.s3 24577.778032: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
148507          <idle>-0     (-----) [003] d.s4 24577.778047: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
148508          <idle>-0     (-----) [000] .n.1 24577.778053: cpu_idle: state=4294967295 cpu_id=0
148509          <idle>-0     (-----) [003] ...1 24577.778056: cpu_idle: state=4294967295 cpu_id=3
148510          <idle>-0     (-----) [000] d..2 24577.778061: 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
148511          <idle>-0     (-----) [003] d..1 24577.778062: cpu_idle: state=0 cpu_id=3
148512         sugov:0-559   (  559) [000] .... 24577.778074: clk_set_rate: cpu3_pwrcl_clk 1132800000
148513         sugov:0-559   (  559) [000] .... 24577.778084: clk_set_rate: cpu2_pwrcl_clk 1132800000
148514         sugov:0-559   (  559) [000] .... 24577.778092: clk_set_rate: cpu1_pwrcl_clk 1132800000
148515         sugov:0-559   (  559) [000] .... 24577.778099: clk_set_rate: cpu0_pwrcl_clk 1766400000
148516         sugov:0-559   (  559) [000] .... 24577.778108: cpu_frequency: state=1766400 cpu_id=0
148517         sugov:0-559   (  559) [000] d..2 24577.778274: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
148518          <idle>-0     (-----) [000] d..1 24577.778283: cpu_idle: state=0 cpu_id=0
148519          <idle>-0     (-----) [003] d.s3 24577.778303: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
148520          <idle>-0     (-----) [003] d.s4 24577.778312: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
148521          <idle>-0     (-----) [003] ...1 24577.778317: cpu_idle: state=4294967295 cpu_id=3
148522          <idle>-0     (-----) [000] .n.1 24577.778317: cpu_idle: state=4294967295 cpu_id=0
148523          <idle>-0     (-----) [003] d..1 24577.778320: cpu_idle: state=0 cpu_id=3
148524          <idle>-0     (-----) [000] d..2 24577.778323: 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
148525         sugov:0-559   (  559) [000] .... 24577.778330: cpu_frequency: state=1766400 cpu_id=1
148526         sugov:0-559   (  559) [000] .... 24577.778334: cpu_frequency: state=1766400 cpu_id=2
148527         sugov:0-559   (  559) [000] .... 24577.778336: cpu_frequency: state=1766400 cpu_id=3
148528         sugov:0-559   (  559) [000] d..2 24577.778350: 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
148529          <idle>-0     (-----) [000] d..1 24577.778356: cpu_idle: state=0 cpu_id=0
148530          <idle>-0     (-----) [000] d.h5 24577.779564: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
148531          <idle>-0     (-----) [000] dnh6 24577.779573: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
148532          <idle>-0     (-----) [000] .n.1 24577.779583: cpu_idle: state=4294967295 cpu_id=0
148533          <idle>-0     (-----) [000] d..2 24577.779589: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
148534 crtc_commit:111-253   (  253) [000] d..2 24577.779668: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148535          <idle>-0     (-----) [000] d..1 24577.779675: cpu_idle: state=0 cpu_id=0
148536          <idle>-0     (-----) [000] d.h5 24577.779858: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
148537          <idle>-0     (-----) [000] d.h6 24577.779868: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
148538          <idle>-0     (-----) [003] .n.1 24577.779873: cpu_idle: state=4294967295 cpu_id=3
148539          <idle>-0     (-----) [003] d..2 24577.779879: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
148540          <idle>-0     (-----) [000] ...1 24577.779885: cpu_idle: state=4294967295 cpu_id=0
148541          <idle>-0     (-----) [000] d..1 24577.779887: cpu_idle: state=0 cpu_id=0
148542  crtc_event:111-254   (  254) [003] d..2 24577.779896: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148543          <idle>-0     (-----) [003] d..1 24577.779900: cpu_idle: state=0 cpu_id=3
148544          <idle>-0     (-----) [003] d.h2 24577.781616: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
148545          <idle>-0     (-----) [003] dnh3 24577.781625: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
148546          <idle>-0     (-----) [003] .n.1 24577.781631: cpu_idle: state=4294967295 cpu_id=3
148547          <idle>-0     (-----) [003] d..2 24577.781637: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
148548        DispSync-23904 (23896) [003] d..1 24577.781662: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
148549        DispSync-23904 (23896) [003] d..2 24577.781681: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
148550          <idle>-0     (-----) [001] .n.1 24577.781686: cpu_idle: state=4294967295 cpu_id=1
148551          <idle>-0     (-----) [001] d..2 24577.781694: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
148552        DispSync-23904 (23896) [003] d..2 24577.781705: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148553          <idle>-0     (-----) [003] d..1 24577.781711: cpu_idle: state=0 cpu_id=3
148554  appEventThread-23905 (23896) [001] d..3 24577.781765: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
148555  appEventThread-23905 (23896) [001] d..4 24577.781788: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
148556          <idle>-0     (-----) [000] .n.1 24577.781793: cpu_idle: state=4294967295 cpu_id=0
148557          <idle>-0     (-----) [000] d..2 24577.781801: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
148558  appEventThread-23905 (23896) [001] d..2 24577.781815: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148559          <idle>-0     (-----) [001] d..1 24577.781823: cpu_idle: state=0 cpu_id=1
148560 s.nexuslauncher-24827 (24827) [000] .... 24577.782255: binder_transaction: transaction=1671763 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
148561 s.nexuslauncher-24827 (24827) [000] d..4 24577.782264: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
148562 s.nexuslauncher-24827 (24827) [000] d..5 24577.782281: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=001
148563          <idle>-0     (-----) [001] .n.1 24577.782286: cpu_idle: state=4294967295 cpu_id=1
148564          <idle>-0     (-----) [001] d..2 24577.782293: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
148565  Binder:23896_4-24423 (23896) [001] .... 24577.782298: binder_transaction_received: transaction=1671763
148566 s.nexuslauncher-24827 (24827) [000] d..3 24577.782318: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
148567  Binder:23896_4-24423 (23896) [001] d..1 24577.782324: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
148568 s.nexuslauncher-24827 (24827) [000] d..4 24577.782344: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=003
148569  Binder:23896_4-24423 (23896) [001] d..2 24577.782348: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
148570          <idle>-0     (-----) [003] .n.1 24577.782349: cpu_idle: state=4294967295 cpu_id=3
148571          <idle>-0     (-----) [003] d..2 24577.782355: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
148572  Binder:23896_4-24423 (23896) [001] d..2 24577.782378: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148573  appEventThread-23905 (23896) [003] d..2 24577.782383: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
148574          <idle>-0     (-----) [001] d..1 24577.782386: cpu_idle: state=0 cpu_id=1
148575    RenderThread-25194 (24827) [003] d..2 24577.782423: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148576          <idle>-0     (-----) [003] d..1 24577.782431: cpu_idle: state=0 cpu_id=3
148577 s.nexuslauncher-24827 (24827) [000] d..3 24577.782815: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=003
148578 s.nexuslauncher-24827 (24827) [000] d..4 24577.782837: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
148579          <idle>-0     (-----) [001] .n.1 24577.782842: cpu_idle: state=4294967295 cpu_id=1
148580          <idle>-0     (-----) [001] d..2 24577.782849: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
148581 s.nexuslauncher-24827 (24827) [000] d..2 24577.782860: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148582          <idle>-0     (-----) [000] d..1 24577.782872: cpu_idle: state=0 cpu_id=0
148583    RenderThread-25194 (24827) [001] d..1 24577.783140: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
148584    RenderThread-25194 (24827) [001] d..2 24577.783155: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
148585          <idle>-0     (-----) [000] .n.1 24577.783161: cpu_idle: state=4294967295 cpu_id=0
148586          <idle>-0     (-----) [000] d..2 24577.783170: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
148587    RenderThread-25194 (24827) [001] .... 24577.783216: binder_transaction: transaction=1671764 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
148588    RenderThread-25194 (24827) [001] ...2 24577.783223: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
148589    RenderThread-25194 (24827) [001] d..4 24577.783226: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
148590    RenderThread-25194 (24827) [001] d..5 24577.783235: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
148591    RenderThread-25194 (24827) [001] d..2 24577.783245: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
148592  Binder:23896_4-24423 (23896) [001] .... 24577.783250: binder_transaction_received: transaction=1671764
148593 s.nexuslauncher-24827 (24827) [000] d..2 24577.783252: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148594          <idle>-0     (-----) [000] d..1 24577.783261: cpu_idle: state=0 cpu_id=0
148595  Binder:23896_4-24423 (23896) [001] .... 24577.783315: binder_transaction: transaction=1671765 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
148596  Binder:23896_4-24423 (23896) [001] d..2 24577.783326: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
148597  Binder:23896_4-24423 (23896) [001] d..3 24577.783335: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
148598  Binder:23896_4-24423 (23896) [001] .... 24577.783337: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
148599  Binder:23896_4-24423 (23896) [001] d..2 24577.783347: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=25194 next_prio=110
148600    RenderThread-25194 (24827) [001] .... 24577.783353: binder_transaction_received: transaction=1671765
148601          atrace-13425 (13425) [002] d.s1 24577.784236: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
148602          atrace-13425 (13425) [002] d.s2 24577.784265: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
148603          atrace-13425 (13425) [002] d.s2 24577.784269: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
148604          <idle>-0     (-----) [000] .n.1 24577.784270: cpu_idle: state=4294967295 cpu_id=0
148605          <idle>-0     (-----) [000] d..2 24577.784278: 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
148606          atrace-13425 (13425) [002] d.s3 24577.784292: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
148607     rcu_preempt-7     (    7) [000] d..2 24577.784299: 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
148608          atrace-13425 (13425) [002] d.s2 24577.784304: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=003
148609          atrace-13425 (13425) [002] d.s3 24577.784327: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
148610  kworker/u16:10-23868 (23868) [000] d..2 24577.784482: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
148611  kworker/u16:15-18488 (18488) [000] d..2 24577.784505: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148612          <idle>-0     (-----) [000] d..1 24577.784513: cpu_idle: state=0 cpu_id=0
148613          <idle>-0     (-----) [003] d.s3 24577.784801: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
148614          <idle>-0     (-----) [003] d.s4 24577.784822: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
148615          <idle>-0     (-----) [003] dns4 24577.784826: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
148616          <idle>-0     (-----) [003] .n.1 24577.784831: cpu_idle: state=4294967295 cpu_id=3
148617          <idle>-0     (-----) [003] d..2 24577.784838: 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
148618  kworker/u16:10-23868 (23868) [003] .... 24577.784957: clk_set_rate: l3_cluster0_vote_clk 940800000
148619  kworker/u16:10-23868 (23868) [003] .... 24577.784963: clk_set_rate: l3_clk 940800000
148620  kworker/u16:10-23868 (23868) [003] d..2 24577.785002: 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
148621          <idle>-0     (-----) [003] d..1 24577.785009: cpu_idle: state=0 cpu_id=3
148622          <idle>-0     (-----) [003] d.h2 24577.785627: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
148623          <idle>-0     (-----) [003] dnh3 24577.785635: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
148624          <idle>-0     (-----) [003] .n.1 24577.785640: cpu_idle: state=4294967295 cpu_id=3
148625          <idle>-0     (-----) [003] d..2 24577.785645: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
148626        DispSync-23904 (23896) [003] d..1 24577.785661: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=002
148627        DispSync-23904 (23896) [003] d..2 24577.785677: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=000
148628          <idle>-0     (-----) [000] .n.1 24577.785682: cpu_idle: state=4294967295 cpu_id=0
148629          <idle>-0     (-----) [000] d..2 24577.785688: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
148630        DispSync-23904 (23896) [003] d..2 24577.785697: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148631          <idle>-0     (-----) [003] d..1 24577.785704: cpu_idle: state=0 cpu_id=3
148632   sfEventThread-23906 (23896) [000] d..3 24577.785740: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
148633   sfEventThread-23906 (23896) [000] d..4 24577.785762: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
148634          <idle>-0     (-----) [003] .n.1 24577.785766: cpu_idle: state=4294967295 cpu_id=3
148635          <idle>-0     (-----) [003] d..2 24577.785771: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
148636   sfEventThread-23906 (23896) [000] d..2 24577.785786: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148637          <idle>-0     (-----) [000] d..1 24577.785794: cpu_idle: state=0 cpu_id=0
148638    RenderThread-25194 (24827) [001] d..2 24577.785863: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
148639  Binder:23896_4-24423 (23896) [001] d..2 24577.785910: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148640          <idle>-0     (-----) [001] d..1 24577.785918: cpu_idle: state=0 cpu_id=1
148641          <idle>-0     (-----) [001] d.h2 24577.785960: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
148642          <idle>-0     (-----) [001] d.h3 24577.785972: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
148643          <idle>-0     (-----) [001] d.h3 24577.785979: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
148644          <idle>-0     (-----) [000] .n.1 24577.785983: cpu_idle: state=4294967295 cpu_id=0
148645          <idle>-0     (-----) [001] ...1 24577.785986: cpu_idle: state=4294967295 cpu_id=1
148646          <idle>-0     (-----) [001] d..1 24577.785989: cpu_idle: state=0 cpu_id=1
148647          <idle>-0     (-----) [000] d..2 24577.785990: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
148648  surfaceflinger-23896 (23896) [003] d..1 24577.786203: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=000
148649    RenderThread-25194 (24827) [000] .... 24577.786221: binder_transaction: transaction=1671766 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
148650  surfaceflinger-23896 (23896) [003] d..2 24577.786223: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
148651          <idle>-0     (-----) [001] .n.1 24577.786227: cpu_idle: state=4294967295 cpu_id=1
148652    RenderThread-25194 (24827) [000] ...2 24577.786231: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
148653          <idle>-0     (-----) [001] d..2 24577.786234: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
148654    RenderThread-25194 (24827) [000] d..4 24577.786237: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=001
148655    RenderThread-25194 (24827) [000] d..5 24577.786252: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
148656    RenderThread-25194 (24827) [000] d..2 24577.786262: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
148657   sfEventThread-23906 (23896) [001] d..2 24577.786265: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148658  Binder:23896_4-24423 (23896) [000] .... 24577.786267: binder_transaction_received: transaction=1671766
148659          <idle>-0     (-----) [001] d..1 24577.786272: cpu_idle: state=0 cpu_id=1
148660  surfaceflinger-23896 (23896) [003] ...1 24577.786332: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
148661  surfaceflinger-23896 (23896) [003] ...1 24577.786339: tracing_mark_write: E|23896
148662  Binder:23896_4-24423 (23896) [000] .... 24577.786379: binder_transaction: transaction=1671767 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
148663  Binder:23896_4-24423 (23896) [000] d..2 24577.786383: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
148664  Binder:23896_4-24423 (23896) [000] d..3 24577.786393: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
148665  Binder:23896_4-24423 (23896) [000] .... 24577.786395: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
148666  surfaceflinger-23896 (23896) [003] .... 24577.786401: binder_transaction: transaction=1671768 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
148667  Binder:23896_4-24423 (23896) [000] d..2 24577.786422: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
148668  surfaceflinger-23896 (23896) [003] ...2 24577.786423: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
148669    RenderThread-25194 (24827) [000] .... 24577.786426: binder_transaction_received: transaction=1671767
148670  surfaceflinger-23896 (23896) [003] d..4 24577.786434: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=002
148671  surfaceflinger-23896 (23896) [003] d..5 24577.786453: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
148672          <idle>-0     (-----) [001] .n.1 24577.786457: cpu_idle: state=4294967295 cpu_id=1
148673          <idle>-0     (-----) [001] d..2 24577.786464: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
148674  surfaceflinger-23896 (23896) [003] d..2 24577.786472: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148675  HwBinder:598_3-633   (  598) [001] .... 24577.786474: binder_transaction_received: transaction=1671768
148676          <idle>-0     (-----) [003] d..1 24577.786480: cpu_idle: state=0 cpu_id=3
148677    RenderThread-25194 (24827) [000] d..2 24577.786499: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148678          <idle>-0     (-----) [000] d..1 24577.786507: cpu_idle: state=0 cpu_id=0
148679  HwBinder:598_3-633   (  598) [001] ...1 24577.786545: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
148680  HwBinder:598_3-633   (  598) [001] ...1 24577.786706: tracing_mark_write: B|598|HWCSession::PresentDisplay::
148681  HwBinder:598_3-633   (  598) [001] ...1 24577.786925: tracing_mark_write: B|598|HWDeviceDRM::Commit::
148682  HwBinder:598_3-633   (  598) [001] ...1 24577.786938: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
148683          <idle>-0     (-----) [000] d.h3 24577.787498: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=001
148684          <idle>-0     (-----) [000] dnh4 24577.787518: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
148685          <idle>-0     (-----) [000] .n.1 24577.787529: cpu_idle: state=4294967295 cpu_id=0
148686          <idle>-0     (-----) [000] d..2 24577.787535: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
148687  HwBinder:598_3-633   (  598) [001] d.s2 24577.787572: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
148688  HwBinder:598_3-633   (  598) [001] d.s3 24577.787586: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
148689 kgsl_worker_thr-246   (  246) [000] d..2 24577.787622: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
148690  HwBinder:598_3-633   (  598) [001] d..2 24577.787626: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
148691  HwBinder:598_3-633   (  598) [001] d..3 24577.787642: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
148692          <idle>-0     (-----) [003] .n.1 24577.787648: cpu_idle: state=4294967295 cpu_id=3
148693 kgsl_worker_thr-246   (  246) [000] d..3 24577.787652: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
148694          <idle>-0     (-----) [003] d..2 24577.787655: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
148695 kgsl_worker_thr-246   (  246) [000] d..2 24577.787671: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
148696     rcu_preempt-7     (    7) [000] d..2 24577.787679: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
148697     rcu_preempt-7     (    7) [000] d..3 24577.787692: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
148698     rcu_preempt-7     (    7) [000] d..2 24577.787706: 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
148699  HwBinder:598_3-633   (  598) [001] ...1 24577.787739: tracing_mark_write: E|598
148700  HwBinder:598_3-633   (  598) [001] ...1 24577.787743: tracing_mark_write: E|598
148701  HwBinder:598_3-633   (  598) [001] ...1 24577.787816: tracing_mark_write: E|598
148702  HwBinder:598_3-633   (  598) [001] ...1 24577.787881: tracing_mark_write: E|598
148703  HwBinder:598_3-633   (  598) [001] .... 24577.787895: binder_transaction: transaction=1671769 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
148704  HwBinder:598_3-633   (  598) [001] d..2 24577.787909: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=003
148705  HwBinder:598_3-633   (  598) [001] d..3 24577.787926: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=000
148706  HwBinder:598_3-633   (  598) [001] .... 24577.787929: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
148707  HwBinder:598_3-633   (  598) [001] d..2 24577.787991: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148708          <idle>-0     (-----) [001] d..1 24577.788002: cpu_idle: state=0 cpu_id=1
148709  kworker/u16:10-23868 (23868) [000] dnh1 24577.788060: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
148710  kworker/u16:10-23868 (23868) [000] dnh2 24577.788070: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
148711  kworker/u16:10-23868 (23868) [000] d..2 24577.788079: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
148712          <idle>-0     (-----) [001] .n.1 24577.788108: cpu_idle: state=4294967295 cpu_id=1
148713          <idle>-0     (-----) [001] d..2 24577.788115: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
148714  surfaceflinger-23896 (23896) [001] .... 24577.788120: binder_transaction_received: transaction=1671769
148715 irq/79-1436400.-24613 (24613) [000] d..2 24577.788247: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
148716 crtc_commit:111-253   (  253) [003] d.s1 24577.788265: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148717  kworker/u16:10-23868 (23868) [000] d..2 24577.788277: 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
148718 crtc_commit:111-253   (  253) [003] d.s2 24577.788279: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148719          <idle>-0     (-----) [000] d..1 24577.788285: cpu_idle: state=0 cpu_id=0
148720 crtc_commit:111-253   (  253) [003] d..2 24577.788422: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=rcuop/2 next_pid=29 next_prio=120
148721         rcuop/2-29    (   29) [003] d..2 24577.788431: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
148722         rcuop/2-29    (   29) [003] d..3 24577.788463: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
148723         rcuop/2-29    (   29) [003] d..2 24577.788473: 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
148724         rcuop/3-37    (   37) [003] d.s3 24577.788492: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
148725         rcuop/3-37    (   37) [003] d.s4 24577.788501: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=000
148726          <idle>-0     (-----) [000] .n.1 24577.788505: cpu_idle: state=4294967295 cpu_id=0
148727         rcuop/3-37    (   37) [003] d..2 24577.788510: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
148728          <idle>-0     (-----) [000] d..2 24577.788511: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
148729     ksoftirqd/3-34    (   34) [003] d..2 24577.788532: 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
148730 irq/79-1436400.-24613 (24613) [000] d..2 24577.788539: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148731          <idle>-0     (-----) [003] d..1 24577.788541: cpu_idle: state=0 cpu_id=3
148732          <idle>-0     (-----) [000] d..1 24577.788544: cpu_idle: state=0 cpu_id=0
148733  surfaceflinger-23896 (23896) [001] d..2 24577.788609: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148734          <idle>-0     (-----) [001] d..1 24577.788623: cpu_idle: state=0 cpu_id=1
148735          <idle>-0     (-----) [001] ...1 24577.789835: cpu_idle: state=4294967295 cpu_id=1
148736          <idle>-0     (-----) [001] d..1 24577.789837: cpu_idle: state=0 cpu_id=1
148737          <idle>-0     (-----) [003] ...1 24577.790168: cpu_idle: state=4294967295 cpu_id=3
148738          <idle>-0     (-----) [003] d..1 24577.790170: cpu_idle: state=0 cpu_id=3
148739          <idle>-0     (-----) [000] d.h5 24577.793708: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
148740          <idle>-0     (-----) [000] d.h6 24577.793721: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
148741          <idle>-0     (-----) [000] d.h5 24577.793725: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
148742          <idle>-0     (-----) [003] .n.1 24577.793725: cpu_idle: state=4294967295 cpu_id=3
148743          <idle>-0     (-----) [000] dnh6 24577.793736: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
148744          <idle>-0     (-----) [003] d..2 24577.793737: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
148745          <idle>-0     (-----) [000] .n.1 24577.793746: cpu_idle: state=4294967295 cpu_id=0
148746          <idle>-0     (-----) [000] d..2 24577.793753: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
148747  crtc_event:111-254   (  254) [003] d..2 24577.793770: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148748          <idle>-0     (-----) [003] d..1 24577.793775: cpu_idle: state=0 cpu_id=3
148749 crtc_commit:111-253   (  253) [000] d..2 24577.793931: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
148750          <idle>-0     (-----) [000] d..1 24577.793936: cpu_idle: state=0 cpu_id=0
148751          <idle>-0     (-----) [000] d.s3 24577.794232: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
148752          atrace-13425 (13425) [002] d.s2 24577.794234: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
148753          <idle>-0     (-----) [000] d.s4 24577.794242: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
148754          <idle>-0     (-----) [000] d.s2 24577.794244: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
148755          <idle>-0     (-----) [003] .n.1 24577.794247: cpu_idle: state=4294967295 cpu_id=3
148756          <idle>-0     (-----) [003] d..2 24577.794253: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
148757          <idle>-0     (-----) [000] dns3 24577.794253: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
148758          atrace-13425 (13425) [002] d.s3 24577.794263: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
148759          <idle>-0     (-----) [000] .n.1 24577.794269: cpu_idle: state=4294967295 cpu_id=0
148760  crtc_event:111-254   (  254) [003] d..2 24577.794270: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
148761          atrace-13425 (13425) [002] d.s2 24577.794274: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
148762          <idle>-0     (-----) [000] d..2 24577.794274: 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
148763          atrace-13425 (13425) [002] d.s3 24577.794284: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
148764     rcu_preempt-7     (    7) [000] d..2 24577.794294: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
148765  kworker/u16:15-18488 (18488) [000] d..2 24577.794315: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148766          <idle>-0     (-----) [000] d..1 24577.794328: cpu_idle: state=0 cpu_id=0
148767  kworker/u16:10-23868 (23868) [003] .... 24577.794367: clk_set_rate: l3_cluster0_vote_clk 1401600000
148768  kworker/u16:10-23868 (23868) [003] .... 24577.794374: clk_set_rate: l3_clk 1401600000
148769  kworker/u16:10-23868 (23868) [003] d..2 24577.794587: 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
148770          <idle>-0     (-----) [003] d.s4 24577.794618: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
148771          <idle>-0     (-----) [003] d.s5 24577.794623: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
148772          <idle>-0     (-----) [003] dns5 24577.794626: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
148773          <idle>-0     (-----) [003] d..2 24577.794633: 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
148774  kworker/u16:10-23868 (23868) [003] d..2 24577.794649: 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
148775          <idle>-0     (-----) [003] d..1 24577.794656: cpu_idle: state=0 cpu_id=3
148776          <idle>-0     (-----) [000] d.h5 24577.796045: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
148777          <idle>-0     (-----) [000] dnh6 24577.796052: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
148778          <idle>-0     (-----) [000] .n.1 24577.796061: cpu_idle: state=4294967295 cpu_id=0
148779          <idle>-0     (-----) [000] d..2 24577.796067: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
148780 crtc_commit:111-253   (  253) [000] d..2 24577.796137: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148781          <idle>-0     (-----) [000] d..1 24577.796143: cpu_idle: state=0 cpu_id=0
148782          <idle>-0     (-----) [000] d.h5 24577.796341: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
148783          <idle>-0     (-----) [000] d.h6 24577.796351: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
148784          <idle>-0     (-----) [003] .n.1 24577.796356: cpu_idle: state=4294967295 cpu_id=3
148785          <idle>-0     (-----) [003] d..2 24577.796362: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
148786          <idle>-0     (-----) [000] ...1 24577.796367: cpu_idle: state=4294967295 cpu_id=0
148787          <idle>-0     (-----) [000] d..1 24577.796369: cpu_idle: state=0 cpu_id=0
148788  crtc_event:111-254   (  254) [003] d..2 24577.796378: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148789          <idle>-0     (-----) [003] d..1 24577.796383: cpu_idle: state=0 cpu_id=3
148790          atrace-13425 (13425) [002] d.h2 24577.797580: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
148791          atrace-13425 (13425) [002] dnh3 24577.797591: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
148792          <idle>-0     (-----) [000] ...1 24577.797671: cpu_idle: state=4294967295 cpu_id=0
148793          <idle>-0     (-----) [000] d..1 24577.797674: cpu_idle: state=0 cpu_id=0
148794          atrace-13425 (13425) [002] dnH2 24577.797690: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
148795          atrace-13425 (13425) [002] dnH2 24577.797703: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
148796          <idle>-0     (-----) [007] dnh2 24577.797708: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
148797          <idle>-0     (-----) [007] .n.1 24577.797711: cpu_idle: state=4294967295 cpu_id=7
148798          atrace-13425 (13425) [002] dnH3 24577.797714: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
148799          <idle>-0     (-----) [007] d..2 24577.797717: 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
148800          <idle>-0     (-----) [000] .n.1 24577.797718: cpu_idle: state=4294967295 cpu_id=0
148801          atrace-13425 (13425) [002] d..2 24577.797723: sched_switch: prev_comm=atrace prev_pid=13425 prev_prio=120 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
148802          <idle>-0     (-----) [000] d..2 24577.797726: 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
148803         sugov:4-560   (  560) [007] d..2 24577.797748: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=atrace next_pid=13425 next_prio=120
148804         sugov:0-559   (  559) [000] .... 24577.797755: clk_set_rate: pwrcl_clk 979200000
148805     migration/2-25    (   25) [002] d..2 24577.797785: 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
148806          <idle>-0     (-----) [002] d..1 24577.797802: cpu_idle: state=0 cpu_id=2
148807         sugov:0-559   (  559) [000] .... 24577.797825: clk_set_rate: cpu3_pwrcl_clk 1766400000
148808         sugov:0-559   (  559) [000] .... 24577.797836: clk_set_rate: cpu2_pwrcl_clk 1766400000
148809         sugov:0-559   (  559) [000] .... 24577.797844: clk_set_rate: cpu1_pwrcl_clk 1766400000
148810         sugov:0-559   (  559) [000] .... 24577.797851: clk_set_rate: cpu0_pwrcl_clk 979200000
148811          <idle>-0     (-----) [003] ...1 24577.797853: cpu_idle: state=4294967295 cpu_id=3
148812          <idle>-0     (-----) [003] d..1 24577.797856: cpu_idle: state=0 cpu_id=3
148813         sugov:0-559   (  559) [000] .... 24577.797967: cpu_frequency: state=979200 cpu_id=0
148814          <idle>-0     (-----) [003] d.h2 24577.798100: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
148815          <idle>-0     (-----) [003] dnh3 24577.798114: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
148816          <idle>-0     (-----) [003] .n.1 24577.798121: cpu_idle: state=4294967295 cpu_id=3
148817          <idle>-0     (-----) [003] d..2 24577.798130: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
148818         sugov:0-559   (  559) [000] d..2 24577.798135: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
148819          <idle>-0     (-----) [000] d..1 24577.798143: cpu_idle: state=0 cpu_id=0
148820        DispSync-23904 (23896) [003] d.s3 24577.798159: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148821        DispSync-23904 (23896) [003] d.s4 24577.798169: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148822        DispSync-23904 (23896) [003] d..1 24577.798189: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
148823        DispSync-23904 (23896) [003] d..2 24577.798212: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=001
148824          <idle>-0     (-----) [001] .n.1 24577.798217: cpu_idle: state=4294967295 cpu_id=1
148825          <idle>-0     (-----) [001] d..2 24577.798229: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
148826        DispSync-23904 (23896) [003] d..2 24577.798232: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
148827     ksoftirqd/3-34    (   34) [003] d.s2 24577.798242: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
148828     ksoftirqd/3-34    (   34) [003] d.s3 24577.798255: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
148829          <idle>-0     (-----) [000] .n.1 24577.798260: cpu_idle: state=4294967295 cpu_id=0
148830          <idle>-0     (-----) [000] d..2 24577.798266: 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
148831     ksoftirqd/3-34    (   34) [003] d..2 24577.798274: 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
148832         sugov:0-559   (  559) [000] .... 24577.798277: cpu_frequency: state=979200 cpu_id=1
148833         sugov:0-559   (  559) [000] .... 24577.798282: cpu_frequency: state=979200 cpu_id=2
148834          <idle>-0     (-----) [003] d..1 24577.798283: cpu_idle: state=0 cpu_id=3
148835         sugov:0-559   (  559) [000] .... 24577.798286: cpu_frequency: state=979200 cpu_id=3
148836  appEventThread-23905 (23896) [001] d..3 24577.798292: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
148837         sugov:0-559   (  559) [000] d..2 24577.798316: 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
148838  appEventThread-23905 (23896) [001] d..4 24577.798321: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
148839          <idle>-0     (-----) [000] d..1 24577.798322: cpu_idle: state=0 cpu_id=0
148840          <idle>-0     (-----) [002] .n.1 24577.798328: cpu_idle: state=4294967295 cpu_id=2
148841          <idle>-0     (-----) [002] d..2 24577.798340: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
148842  appEventThread-23905 (23896) [001] d..2 24577.798353: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148843          <idle>-0     (-----) [001] d..1 24577.798365: cpu_idle: state=0 cpu_id=1
148844 s.nexuslauncher-24827 (24827) [002] .... 24577.798938: binder_transaction: transaction=1671770 dest_node=1308824 dest_proc=23896 dest_thread=0 reply=0 flags=0x11 code=0x3
148845 s.nexuslauncher-24827 (24827) [002] d..4 24577.798948: sched_waking: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
148846 s.nexuslauncher-24827 (24827) [002] d..5 24577.798972: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=120 target_cpu=000
148847          <idle>-0     (-----) [000] .n.1 24577.798977: cpu_idle: state=4294967295 cpu_id=0
148848          <idle>-0     (-----) [000] d..2 24577.798986: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=120
148849  Binder:23896_4-24423 (23896) [000] .... 24577.798993: binder_transaction_received: transaction=1671770
148850 s.nexuslauncher-24827 (24827) [002] d..3 24577.799013: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
148851  Binder:23896_4-24423 (23896) [000] d..1 24577.799026: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=001
148852 s.nexuslauncher-24827 (24827) [002] d..4 24577.799040: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=001
148853          <idle>-0     (-----) [001] .n.1 24577.799046: cpu_idle: state=4294967295 cpu_id=1
148854  Binder:23896_4-24423 (23896) [000] d..2 24577.799055: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=003
148855          <idle>-0     (-----) [001] d..2 24577.799056: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
148856          <idle>-0     (-----) [003] .n.1 24577.799060: cpu_idle: state=4294967295 cpu_id=3
148857          <idle>-0     (-----) [003] d..2 24577.799069: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
148858  Binder:23896_4-24423 (23896) [000] d..2 24577.799094: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148859          <idle>-0     (-----) [000] d..1 24577.799103: cpu_idle: state=0 cpu_id=0
148860    RenderThread-25194 (24827) [001] d..2 24577.799106: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148861  appEventThread-23905 (23896) [003] d..2 24577.799112: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148862          <idle>-0     (-----) [001] d..1 24577.799118: cpu_idle: state=0 cpu_id=1
148863          <idle>-0     (-----) [003] d..1 24577.799120: cpu_idle: state=0 cpu_id=3
148864 s.nexuslauncher-24827 (24827) [002] d..3 24577.799637: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=001
148865 s.nexuslauncher-24827 (24827) [002] d..4 24577.799662: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
148866          <idle>-0     (-----) [000] .n.1 24577.799667: cpu_idle: state=4294967295 cpu_id=0
148867          <idle>-0     (-----) [000] d..2 24577.799675: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
148868 s.nexuslauncher-24827 (24827) [002] d..2 24577.799693: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148869          <idle>-0     (-----) [002] d..1 24577.799710: cpu_idle: state=0 cpu_id=2
148870    RenderThread-25194 (24827) [000] d..1 24577.799995: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=002
148871    RenderThread-25194 (24827) [000] d..2 24577.800020: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
148872          <idle>-0     (-----) [001] .n.1 24577.800026: cpu_idle: state=4294967295 cpu_id=1
148873          <idle>-0     (-----) [001] d..2 24577.800035: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
148874    RenderThread-25194 (24827) [000] .... 24577.800091: binder_transaction: transaction=1671771 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x2
148875    RenderThread-25194 (24827) [000] ...2 24577.800098: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
148876    RenderThread-25194 (24827) [000] d..4 24577.800102: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
148877    RenderThread-25194 (24827) [000] d..5 24577.800113: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
148878    RenderThread-25194 (24827) [000] d..2 24577.800126: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
148879  Binder:23896_4-24423 (23896) [000] .... 24577.800133: binder_transaction_received: transaction=1671771
148880 s.nexuslauncher-24827 (24827) [001] d..2 24577.800159: sched_switch: prev_comm=s.nexuslauncher prev_pid=24827 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148881          <idle>-0     (-----) [001] d..1 24577.800172: cpu_idle: state=0 cpu_id=1
148882  Binder:23896_4-24423 (23896) [000] .... 24577.800204: binder_transaction: transaction=1671772 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
148883  Binder:23896_4-24423 (23896) [000] d..2 24577.800215: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
148884  Binder:23896_4-24423 (23896) [000] d..3 24577.800226: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
148885  Binder:23896_4-24423 (23896) [000] .... 24577.800229: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
148886  Binder:23896_4-24423 (23896) [000] d..2 24577.800270: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
148887    RenderThread-25194 (24827) [000] .... 24577.800277: binder_transaction_received: transaction=1671772
148888    RenderThread-25194 (24827) [000] d.s1 24577.800910: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
148889    RenderThread-25194 (24827) [000] d.s2 24577.800928: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
148890          <idle>-0     (-----) [002] ...1 24577.801058: cpu_idle: state=4294967295 cpu_id=2
148891          <idle>-0     (-----) [002] d..1 24577.801063: cpu_idle: state=0 cpu_id=2
148892          <idle>-0     (-----) [001] ...1 24577.801651: cpu_idle: state=4294967295 cpu_id=1
148893          <idle>-0     (-----) [001] d..1 24577.801655: cpu_idle: state=0 cpu_id=1
148894          <idle>-0     (-----) [003] d.h2 24577.802114: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
148895          <idle>-0     (-----) [003] dnh3 24577.802125: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
148896          <idle>-0     (-----) [003] .n.1 24577.802132: cpu_idle: state=4294967295 cpu_id=3
148897          <idle>-0     (-----) [003] d..2 24577.802141: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
148898        DispSync-23904 (23896) [003] d..1 24577.802154: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
148899        DispSync-23904 (23896) [003] d..2 24577.802166: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
148900          <idle>-0     (-----) [001] .n.1 24577.802172: cpu_idle: state=4294967295 cpu_id=1
148901          <idle>-0     (-----) [001] d..2 24577.802182: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
148902        DispSync-23904 (23896) [003] d..2 24577.802203: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
148903     rcu_preempt-7     (    7) [003] d..2 24577.802215: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
148904   sfEventThread-23906 (23896) [001] d..3 24577.802222: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=001
148905   sfEventThread-23906 (23896) [001] d..4 24577.802245: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
148906          <idle>-0     (-----) [002] .n.1 24577.802250: cpu_idle: state=4294967295 cpu_id=2
148907     rcu_preempt-7     (    7) [003] d..3 24577.802258: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
148908          <idle>-0     (-----) [002] d..2 24577.802261: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
148909   sfEventThread-23906 (23896) [001] d..2 24577.802271: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
148910         rcuop/0-10    (   10) [001] d..2 24577.802281: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
148911     rcu_preempt-7     (    7) [003] d..2 24577.802300: 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
148912          <idle>-0     (-----) [003] d..1 24577.802309: cpu_idle: state=0 cpu_id=3
148913         rcuop/0-10    (   10) [001] d..3 24577.802321: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
148914          <idle>-0     (-----) [003] .n.1 24577.802327: cpu_idle: state=4294967295 cpu_id=3
148915          <idle>-0     (-----) [003] d..2 24577.802338: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
148916         rcuop/0-10    (   10) [001] d..2 24577.802382: 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
148917          <idle>-0     (-----) [001] d..1 24577.802394: cpu_idle: state=0 cpu_id=1
148918         rcuop/1-21    (   21) [003] d..2 24577.802407: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148919          <idle>-0     (-----) [003] d..1 24577.802416: cpu_idle: state=0 cpu_id=3
148920  surfaceflinger-23896 (23896) [002] d..1 24577.802678: sched_waking: comm=sfEventThread pid=23906 prio=97 target_cpu=001
148921  surfaceflinger-23896 (23896) [002] d..2 24577.802696: sched_wakeup: comm=sfEventThread pid=23906 prio=97 target_cpu=001
148922          <idle>-0     (-----) [001] .n.1 24577.802702: cpu_idle: state=4294967295 cpu_id=1
148923          <idle>-0     (-----) [001] d..2 24577.802710: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=23906 next_prio=97
148924   sfEventThread-23906 (23896) [001] d..2 24577.802740: sched_switch: prev_comm=sfEventThread prev_pid=23906 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148925          <idle>-0     (-----) [001] d..1 24577.802750: cpu_idle: state=0 cpu_id=1
148926  surfaceflinger-23896 (23896) [002] ...1 24577.802818: tracing_mark_write: B|23896|HIDL::IComposerClient::executeCommands_2_2::client
148927  surfaceflinger-23896 (23896) [002] ...1 24577.802826: tracing_mark_write: E|23896
148928  surfaceflinger-23896 (23896) [002] .... 24577.802883: binder_transaction: transaction=1671773 dest_node=1270359 dest_proc=598 dest_thread=0 reply=0 flags=0x10 code=0x23
148929  surfaceflinger-23896 (23896) [002] ...2 24577.802908: binder_set_priority: proc=598 thread=633 old=97 => new=98 desired=98
148930  surfaceflinger-23896 (23896) [002] d..4 24577.802916: sched_waking: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
148931  surfaceflinger-23896 (23896) [002] d..5 24577.802933: sched_wakeup: comm=HwBinder:598_3 pid=633 prio=98 target_cpu=001
148932          <idle>-0     (-----) [001] .n.1 24577.802937: cpu_idle: state=4294967295 cpu_id=1
148933          <idle>-0     (-----) [001] d..2 24577.802946: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:598_3 next_pid=633 next_prio=98
148934  HwBinder:598_3-633   (  598) [001] .... 24577.802954: binder_transaction_received: transaction=1671773
148935  surfaceflinger-23896 (23896) [002] d..2 24577.802960: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148936          <idle>-0     (-----) [002] d..1 24577.802974: cpu_idle: state=0 cpu_id=2
148937  HwBinder:598_3-633   (  598) [001] ...1 24577.803006: tracing_mark_write: B|598|HIDL::IComposerClient::executeCommands_2_2::server
148938  HwBinder:598_3-633   (  598) [001] ...1 24577.803126: tracing_mark_write: B|598|HWCSession::PresentDisplay::
148939    RenderThread-25194 (24827) [000] d..2 24577.803289: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
148940          <idle>-0     (-----) [000] d..1 24577.803301: cpu_idle: state=0 cpu_id=0
148941  HwBinder:598_3-633   (  598) [001] ...1 24577.803314: tracing_mark_write: B|598|HWDeviceDRM::Commit::
148942  HwBinder:598_3-633   (  598) [001] ...1 24577.803327: tracing_mark_write: B|598|HWDeviceDRM::AtomicCommit::
148943          <idle>-0     (-----) [000] d.h2 24577.803374: sched_waking: comm=RenderThread pid=25194 prio=110 target_cpu=000
148944          <idle>-0     (-----) [000] d.h3 24577.803384: sched_blocked_reason: pid=25194 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
148945          <idle>-0     (-----) [000] dnh3 24577.803389: sched_wakeup: comm=RenderThread pid=25194 prio=110 target_cpu=000
148946          <idle>-0     (-----) [000] .n.1 24577.803396: cpu_idle: state=4294967295 cpu_id=0
148947          <idle>-0     (-----) [000] d..2 24577.803406: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=25194 next_prio=110
148948    RenderThread-25194 (24827) [000] .... 24577.803692: binder_transaction: transaction=1671774 dest_node=1670375 dest_proc=23896 dest_thread=0 reply=0 flags=0x10 code=0x6
148949    RenderThread-25194 (24827) [000] ...2 24577.803704: binder_set_priority: proc=23896 thread=24423 old=120 => new=110 desired=110
148950    RenderThread-25194 (24827) [000] d..4 24577.803708: sched_waking: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
148951    RenderThread-25194 (24827) [000] dn.5 24577.803722: sched_wakeup: comm=Binder:23896_4 pid=24423 prio=110 target_cpu=000
148952    RenderThread-25194 (24827) [000] d..2 24577.803730: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=R+ ==> next_comm=Binder:23896_4 next_pid=24423 next_prio=110
148953  Binder:23896_4-24423 (23896) [000] .... 24577.803738: binder_transaction_received: transaction=1671774
148954  Binder:23896_4-24423 (23896) [000] .... 24577.803940: binder_transaction: transaction=1671775 dest_node=0 dest_proc=24827 dest_thread=25194 reply=1 flags=0x0 code=0x0
148955  Binder:23896_4-24423 (23896) [000] .... 24577.803948: binder_set_priority: proc=23896 thread=24423 old=110 => new=120 desired=120
148956  HwBinder:598_3-633   (  598) [001] d..2 24577.803950: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
148957  HwBinder:598_3-633   (  598) [001] d..3 24577.803984: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
148958          <idle>-0     (-----) [003] .n.1 24577.803989: cpu_idle: state=4294967295 cpu_id=3
148959          <idle>-0     (-----) [003] d..2 24577.803998: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
148960  Binder:23896_4-24423 (23896) [000] d..2 24577.804000: sched_switch: prev_comm=Binder:23896_4 prev_pid=24423 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=25194 next_prio=110
148961    RenderThread-25194 (24827) [000] .... 24577.804008: binder_transaction_received: transaction=1671775
148962  HwBinder:598_3-633   (  598) [001] ...1 24577.804076: tracing_mark_write: E|598
148963  HwBinder:598_3-633   (  598) [001] ...1 24577.804082: tracing_mark_write: E|598
148964    RenderThread-25194 (24827) [000] d..2 24577.804109: sched_switch: prev_comm=RenderThread prev_pid=25194 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148965          <idle>-0     (-----) [000] d..1 24577.804124: cpu_idle: state=0 cpu_id=0
148966  HwBinder:598_3-633   (  598) [001] ...1 24577.804151: tracing_mark_write: E|598
148967          atrace-13425 (13425) [007] d.s2 24577.804234: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
148968  HwBinder:598_3-633   (  598) [001] ...1 24577.804252: tracing_mark_write: E|598
148969 crtc_commit:111-253   (  253) [003] d.h1 24577.804258: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
148970  HwBinder:598_3-633   (  598) [001] .... 24577.804272: binder_transaction: transaction=1671776 dest_node=0 dest_proc=23896 dest_thread=23896 reply=1 flags=0x0 code=0x0
148971  HwBinder:598_3-633   (  598) [001] d..2 24577.804294: sched_waking: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
148972  HwBinder:598_3-633   (  598) [001] d..3 24577.804308: sched_wakeup: comm=surfaceflinger pid=23896 prio=98 target_cpu=002
148973  HwBinder:598_3-633   (  598) [001] .... 24577.804312: binder_set_priority: proc=598 thread=633 old=98 => new=97 desired=97
148974          <idle>-0     (-----) [002] .n.1 24577.804315: cpu_idle: state=4294967295 cpu_id=2
148975          <idle>-0     (-----) [002] d..2 24577.804326: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=23896 next_prio=98
148976  surfaceflinger-23896 (23896) [002] .... 24577.804332: binder_transaction_received: transaction=1671776
148977  HwBinder:598_3-633   (  598) [001] d..2 24577.804401: sched_switch: prev_comm=HwBinder:598_3 prev_pid=633 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148978          <idle>-0     (-----) [001] d..1 24577.804416: cpu_idle: state=0 cpu_id=1
148979  surfaceflinger-23896 (23896) [002] d..2 24577.804801: sched_switch: prev_comm=surfaceflinger prev_pid=23896 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148980          <idle>-0     (-----) [002] d..1 24577.804814: cpu_idle: state=0 cpu_id=2
148981 crtc_commit:111-253   (  253) [003] d..2 24577.804851: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
148982          <idle>-0     (-----) [000] d.h3 24577.805017: sched_waking: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
148983          <idle>-0     (-----) [000] dnh4 24577.805034: sched_wakeup: comm=kgsl_worker_thr pid=246 prio=97 target_cpu=000
148984          <idle>-0     (-----) [000] .n.1 24577.805050: cpu_idle: state=4294967295 cpu_id=0
148985  kworker/u16:10-23868 (23868) [003] d..2 24577.805058: 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
148986          <idle>-0     (-----) [000] d..2 24577.805060: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=246 next_prio=97
148987          <idle>-0     (-----) [003] d..1 24577.805067: cpu_idle: state=0 cpu_id=3
148988 kgsl_worker_thr-246   (  246) [000] d..2 24577.805135: sched_waking: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
148989 kgsl_worker_thr-246   (  246) [000] d..3 24577.805154: sched_wakeup: comm=kworker/u16:15 pid=18488 prio=120 target_cpu=000
148990 kgsl_worker_thr-246   (  246) [000] d..2 24577.805178: sched_switch: prev_comm=kgsl_worker_thr prev_pid=246 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=18488 next_prio=120
148991  kworker/u16:15-18488 (18488) [000] d..2 24577.805531: sched_switch: prev_comm=kworker/u16:15 prev_pid=18488 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148992          <idle>-0     (-----) [000] d..1 24577.805543: cpu_idle: state=0 cpu_id=0
148993          <idle>-0     (-----) [003] d.s3 24577.805588: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
148994          <idle>-0     (-----) [003] d.s4 24577.805600: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
148995          <idle>-0     (-----) [003] dns4 24577.805604: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
148996          <idle>-0     (-----) [003] .n.1 24577.805611: cpu_idle: state=4294967295 cpu_id=3
148997          <idle>-0     (-----) [003] d..2 24577.805618: 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
148998  kworker/u16:10-23868 (23868) [003] .... 24577.805688: clk_set_rate: l3_cluster1_vote_clk 576000000
148999  kworker/u16:10-23868 (23868) [003] .... 24577.805756: clk_set_rate: l3_cluster0_vote_clk 652800000
149000  kworker/u16:10-23868 (23868) [003] .... 24577.805760: clk_set_rate: l3_clk 652800000
149001  kworker/u16:10-23868 (23868) [003] d..2 24577.805881: 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
149002          <idle>-0     (-----) [003] d..1 24577.805896: cpu_idle: state=0 cpu_id=3
149003          <idle>-0     (-----) [001] ...1 24577.805946: cpu_idle: state=4294967295 cpu_id=1
149004          <idle>-0     (-----) [001] d..1 24577.805951: cpu_idle: state=0 cpu_id=1
149005          <idle>-0     (-----) [000] ...1 24577.807005: cpu_idle: state=4294967295 cpu_id=0
149006          <idle>-0     (-----) [000] d..1 24577.807010: cpu_idle: state=0 cpu_id=0
149007          <idle>-0     (-----) [003] d.s2 24577.807571: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
149008          <idle>-0     (-----) [003] dns3 24577.807587: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
149009          <idle>-0     (-----) [003] .n.1 24577.807600: cpu_idle: state=4294967295 cpu_id=3
149010          <idle>-0     (-----) [003] d..2 24577.807609: 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
149011     rcu_preempt-7     (    7) [003] d..2 24577.807622: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
149012     rcu_preempt-7     (    7) [003] d..3 24577.807641: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
149013     rcu_preempt-7     (    7) [003] d..2 24577.807656: 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
149014         rcuop/2-29    (   29) [003] d..2 24577.807664: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
149015         rcuop/2-29    (   29) [003] d..3 24577.807682: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
149016         rcuop/2-29    (   29) [003] d..2 24577.807706: 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
149017         rcuop/3-37    (   37) [003] d..2 24577.807734: 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
149018          <idle>-0     (-----) [003] d..1 24577.807746: cpu_idle: state=0 cpu_id=3
149019          <idle>-0     (-----) [000] d.h5 24577.810195: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
149020          <idle>-0     (-----) [000] d.h6 24577.810213: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
149021          <idle>-0     (-----) [003] .n.1 24577.810219: cpu_idle: state=4294967295 cpu_id=3
149022          <idle>-0     (-----) [000] d.h5 24577.810220: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=003
149023          <idle>-0     (-----) [003] d..2 24577.810229: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
149024          <idle>-0     (-----) [000] dnh6 24577.810241: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
149025          <idle>-0     (-----) [000] .n.1 24577.810254: cpu_idle: state=4294967295 cpu_id=0
149026  crtc_event:111-254   (  254) [003] d..2 24577.810264: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149027          <idle>-0     (-----) [000] d..2 24577.810265: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
149028          <idle>-0     (-----) [003] d..1 24577.810273: cpu_idle: state=0 cpu_id=3
149029 crtc_commit:111-253   (  253) [000] d..2 24577.810447: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
149030          <idle>-0     (-----) [000] d..1 24577.810455: cpu_idle: state=0 cpu_id=0
149031          <idle>-0     (-----) [000] d.s3 24577.810904: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
149032          <idle>-0     (-----) [000] d.s4 24577.810919: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
149033          <idle>-0     (-----) [003] .n.1 24577.810924: cpu_idle: state=4294967295 cpu_id=3
149034          <idle>-0     (-----) [003] d..2 24577.810934: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
149035          <idle>-0     (-----) [000] ...1 24577.810943: cpu_idle: state=4294967295 cpu_id=0
149036          <idle>-0     (-----) [000] d..1 24577.810950: cpu_idle: state=0 cpu_id=0
149037  crtc_event:111-254   (  254) [003] d..2 24577.810961: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149038          <idle>-0     (-----) [003] d..1 24577.810967: cpu_idle: state=0 cpu_id=3
149039          atrace-13425 (13425) [007] d..2 24577.812277: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=001
149040          <idle>-0     (-----) [000] dnh2 24577.812319: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=000
149041          <idle>-0     (-----) [000] .n.1 24577.812326: cpu_idle: state=4294967295 cpu_id=0
149042          <idle>-0     (-----) [000] d..2 24577.812337: 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
149043         rcuop/6-61    (   61) [000] d..2 24577.812363: 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
149044          <idle>-0     (-----) [000] d..1 24577.812373: cpu_idle: state=0 cpu_id=0
149045          <idle>-0     (-----) [000] d.h5 24577.812523: sched_waking: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
149046          <idle>-0     (-----) [000] dnh6 24577.812533: sched_wakeup: comm=crtc_commit:111 pid=253 prio=83 target_cpu=000
149047          <idle>-0     (-----) [000] .n.1 24577.812545: cpu_idle: state=4294967295 cpu_id=0
149048          <idle>-0     (-----) [000] d..2 24577.812553: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=253 next_prio=83
149049 crtc_commit:111-253   (  253) [000] d..2 24577.812634: sched_switch: prev_comm=crtc_commit:111 prev_pid=253 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
149050          <idle>-0     (-----) [000] d..1 24577.812646: cpu_idle: state=0 cpu_id=0
149051          <idle>-0     (-----) [000] d.h5 24577.812820: sched_waking: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
149052          <idle>-0     (-----) [000] d.h6 24577.812834: sched_wakeup: comm=crtc_event:111 pid=254 prio=83 target_cpu=003
149053          <idle>-0     (-----) [003] .n.1 24577.812840: cpu_idle: state=4294967295 cpu_id=3
149054          <idle>-0     (-----) [003] d..2 24577.812846: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=254 next_prio=83
149055          <idle>-0     (-----) [000] ...1 24577.812854: cpu_idle: state=4294967295 cpu_id=0
149056          <idle>-0     (-----) [000] d..1 24577.812858: cpu_idle: state=0 cpu_id=0
149057  crtc_event:111-254   (  254) [003] d..2 24577.812868: sched_switch: prev_comm=crtc_event:111 prev_pid=254 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149058          <idle>-0     (-----) [003] d..1 24577.812874: cpu_idle: state=0 cpu_id=3
149059          <idle>-0     (-----) [003] d.s2 24577.814235: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
149060          atrace-13425 (13425) [007] d.s2 24577.814239: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
149061          <idle>-0     (-----) [003] dns3 24577.814250: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
149062          <idle>-0     (-----) [003] .n.1 24577.814266: cpu_idle: state=4294967295 cpu_id=3
149063          <idle>-0     (-----) [003] d..2 24577.814275: 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
149064          <idle>-0     (-----) [000] dnh2 24577.814278: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
149065          <idle>-0     (-----) [000] .n.1 24577.814284: cpu_idle: state=4294967295 cpu_id=0
149066          <idle>-0     (-----) [000] d..2 24577.814300: 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
149067     rcu_preempt-7     (    7) [003] d..2 24577.814307: 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
149068          <idle>-0     (-----) [003] d..1 24577.814317: cpu_idle: state=0 cpu_id=3
149069  kworker/u16:10-23868 (23868) [000] .... 24577.814333: clk_set_rate: l3_cluster0_vote_clk 300000000
149070  kworker/u16:10-23868 (23868) [000] .... 24577.814339: clk_set_rate: l3_clk 576000000
149071          <idle>-0     (-----) [003] d.h2 24577.814579: sched_waking: comm=DispSync pid=23904 prio=97 target_cpu=003
149072          <idle>-0     (-----) [003] dnh3 24577.814592: sched_wakeup: comm=DispSync pid=23904 prio=97 target_cpu=003
149073  kworker/u16:10-23868 (23868) [000] d..2 24577.814596: 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
149074          <idle>-0     (-----) [003] .n.1 24577.814599: cpu_idle: state=4294967295 cpu_id=3
149075          <idle>-0     (-----) [003] d..2 24577.814607: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=23904 next_prio=97
149076          <idle>-0     (-----) [000] d..1 24577.814610: cpu_idle: state=0 cpu_id=0
149077        DispSync-23904 (23896) [003] d..1 24577.814629: sched_waking: comm=appEventThread pid=23905 prio=97 target_cpu=003
149078        DispSync-23904 (23896) [003] d..2 24577.814650: sched_wakeup: comm=appEventThread pid=23905 prio=97 target_cpu=002
149079          <idle>-0     (-----) [002] .n.1 24577.814657: cpu_idle: state=4294967295 cpu_id=2
149080          <idle>-0     (-----) [002] d..2 24577.814669: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=23905 next_prio=97
149081        DispSync-23904 (23896) [003] d..2 24577.814680: sched_switch: prev_comm=DispSync prev_pid=23904 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149082          <idle>-0     (-----) [003] d..1 24577.814690: cpu_idle: state=0 cpu_id=3
149083  appEventThread-23905 (23896) [002] d..3 24577.814735: sched_waking: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=001
149084  appEventThread-23905 (23896) [002] d..4 24577.814765: sched_wakeup: comm=s.nexuslauncher pid=24827 prio=110 target_cpu=000
149085          <idle>-0     (-----) [000] .n.1 24577.814771: cpu_idle: state=4294967295 cpu_id=0
149086          <idle>-0     (-----) [000] d..2 24577.814783: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=24827 next_prio=110
149087  appEventThread-23905 (23896) [002] d..2 24577.814803: sched_switch: prev_comm=appEventThread prev_pid=23905 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149088          <idle>-0     (-----) [002] d..1 24577.814815: cpu_idle: state=0 cpu_id=2
149089  </script>
149090  <script class="trace-data" type="application/text">
149091{"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": 73620, "ts": 4958597450447.6, "tid": 139770026804992, "ph": "M"}, {"category": "python", "name": "clock_sync", "args": {"issue_ts": 4958615526453.389, "sync_id": "dc63ee24-d40b-47fa-b141-a53900002c9c"}, "pid": 73620, "ts": 4958615534807.001, "tid": 139770075649792, "ph": "c"}], "metadata": {"clock-domain": "SYSTRACE"}}  </script>
149092<!-- END TRACE -->
149093</body>
149094</html>
149095